-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.2 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
{
"name": "aps-cli",
"version": "0.0.1",
"description": "an APS cli utility",
"main": "dist/index.js",
"scripts": {
"start": "npx ts-node src/index.ts",
"build": "npx tsc --diagnostics && npm install -g . && aps || echo 'Build failed!' >&2",
"test": "npx tsc && node ./dist/index.js"
},
"author": "Geng Wang",
"license": "Apache-2.0",
"bin": {
"aps": "./dist/index.js"
},
"dependencies": {
"body-parser": "^1.20.2",
"boxen": "4.0",
"chalk": "2.4",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.5",
"colors": "^1.4.0",
"commander": "^10.0.1",
"console": "^0.7.2",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"figlet": "^1.6.0",
"forge-apis": "^0.9.10",
"fs": "^0.0.1-security",
"http": "^0.0.1-security",
"inquirer": "^8.2.6",
"inquirer-autocomplete-prompt": "^2.0.1",
"opn": "^6.0.0",
"request": "^2.88.2"
},
"devDependencies": {
"@types/boxen": "^3.0.1",
"@types/cli-progress": "^3.11.0",
"@types/figlet": "^1.5.6",
"@types/forge-apis": "^0.9.0",
"@types/inquirer": "^9.0.7",
"@types/inquirer-autocomplete-prompt": "^3.0.3",
"@types/node": "^20.2.5",
"typescript": "^5.1.3"
}
}