-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 846 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 846 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
{
"name": "c3ide2-cli",
"description": "A simple CLI for scaffolding construct 3 addons using c3ide2-framework",
"version": "1.2.2",
"main": "index.js",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.3.0",
"conf": "^10.0.3",
"cors": "^2.8.5",
"degit": "^2.8.4",
"express": "^4.18.2",
"inquirer": "^8.0.0",
"pkg": "^5.8.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "pkg . --out-path dist",
"run": "node index.js",
"serve": "node index.js server"
},
"bin": "index.js",
"pkg": {
"scripts": [
"index.js",
"commands/*.js"
],
"outputPath": "dist",
"targets": [
"node16-linux-x64",
"node16-macos-x64",
"node16-win-x64"
]
},
"engines": {
"node": ">=0.16.9"
}
}