-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@morgan-stanley/composeui-fdc3",
"version": "0.1.0-alpha.13",
"private": false,
"description": "FDC3 DesktopAgent implementation for Compose UI",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"clean:dist": "rimraf dist",
"clean:output": "rimraf output",
"clean": "npm run clean:dist && npm run clean:output",
"bundle": "rollup -c",
"build": "npm run clean && tsc && npm run bundle",
"test": "vitest run"
},
"author": "Morgan Stanley",
"license": "Apache-2.0",
"dependencies": {
"@finos/fdc3": "~2.0.3",
"@morgan-stanley/composeui-messaging-abstractions": "*",
"rxjs": "7.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/morganstanley/ComposeUI.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"devDependencies": {
"@rollup/plugin-commonjs": "29.0.2",
"@rollup/plugin-node-resolve": "16.0.3",
"@types/node": "^24.5.2",
"jsdom": "^28.1.0",
"rimraf": "6.1.3",
"rollup": "4.60.3",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.9.3",
"vitest": "4.0.18"
}
}