-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.34 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
45
46
47
48
49
{
"name": "@morgan-stanley/composeui-messaging-client",
"version": "0.1.0-alpha.13",
"private": false,
"description": "JavaScript client for ComposeUI's Message Router",
"type": "module",
"files": [
"dist/**/*"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:clean && npm run build:rollup",
"build:clean": "rimraf dist",
"build:rollup": "rollup -c",
"test": "jest"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/morganstanley/ComposeUI.git"
},
"author": "Morgan Stanley",
"license": "Apache-2.0",
"devDependencies": {
"@jest/expect-utils": "30.3.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-typescript": "12.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.5.2",
"expect": "^30.4.1",
"glob": "13.0.6",
"jest": "^30.2.0",
"jest-extended": "7.0.0",
"rimraf": "6.1.3",
"rollup": "4.60.2",
"rollup-plugin-dts": "6.4.1",
"ts-jest": "29.4.6",
"tslib": "2.8.1",
"typescript": "5.9.3"
},
"dependencies": {
"rxjs": "7.8.2"
}
}