forked from Cortex-EDR/cortex-attack
-
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.16 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.16 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": "cortex-attack",
"version": "0.1.0",
"description": "Terminal-native security intelligence and attack orchestration engine.",
"main": "dist/index.js",
"bin": {
"cortex": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"commander": "^12.1.0",
"openai": "^4.52.0",
"chalk": "^5.3.0",
"ora": "^8.0.1",
"boxen": "^8.0.1",
"figlet": "^1.7.0",
"fs-extra": "^11.2.0",
"uuid": "^10.0.0",
"dotenv": "^16.4.5",
"inquirer": "^10.1.8",
"cli-table3": "^0.6.5",
"which": "^4.0.0"
},
"devDependencies": {
"typescript": "^5.5.3",
"@types/node": "^20.14.10",
"@types/figlet": "^1.5.8",
"@types/fs-extra": "^11.0.4",
"@types/uuid": "^10.0.0",
"@types/which": "^3.0.4",
"@types/inquirer": "^9.0.7",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"README.md"
]
}