-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.13 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
{
"name": "@zerothreatai/cli",
"version": "6.0.8",
"main": "dist/index.js",
"scripts": {
"build": "node build.js",
"start": "cross-env WORKING_ENVIRONMENT=DEV node dist/index.js",
"dev": "node build.js && cross-env WORKING_ENVIRONMENT=DEV node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^0.27.2",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.2",
"cross-env": "^10.1.0",
"dockerode": "^4.0.2",
"dotenv": "^17.2.3",
"figlet": "^1.9.4",
"inquirer": "^8.2.5",
"js-yaml": "^4.1.1",
"node-machine-id": "^1.1.12"
},
"files": [
"dist"
],
"bin": {
"zt": "./dist/index.js"
},
"devDependencies": {
"@types/chalk": "^2.2.4",
"@types/commander": "^2.12.5",
"@types/dockerode": "^3.3.46",
"@types/figlet": "^1.5.0",
"@types/inquirer": "^9.0.9",
"@types/js-yaml": "^4.0.0",
"@types/node": "^24.10.1",
"@types/ora": "^3.2.0",
"@types/prompt-sync": "^4.2.3",
"@types/readline-sync": "^1.4.8",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}