-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 995 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 995 Bytes
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
{
"name": "@morgan-stanley/composeui-node-launcher",
"version": "0.1.0-alpha.12",
"private": false,
"description": "Package to launch ComposeUI from Node.js",
"main": "output/index.js",
"module": "output/index.js",
"type": "module",
"author": "Morgan Stanley",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/morganstanley/ComposeUI.git"
},
"scripts": {
"clean": "rimraf output",
"build": "npm run clean && tsc",
"install": "node ./src/cli/install.js",
"test": "jest"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"bin": {
"composeui": "./output/cli/cli.js"
},
"dependencies": {
"axios": "1.15.0",
"extract-zip": "^2.0.1"
},
"devDependencies": {
"@types/jest": "30.0.0",
"@types/node": "^24.5.2",
"jest": "30.2.0",
"rimraf": "6.1.3",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.9.3"
}
}