-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.71 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "security-audit-agent",
"version": "1.0.0",
"description": "Autonomous security audit specialist agent powered by Claude Agent SDK",
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"monitor": "tsx src/monitoring/server.ts",
"monitor:prod": "node dist/monitoring/server.js",
"check-report": "tsx src/report/check-cli.ts",
"add-cve": "tsx scripts/add-cve.ts",
"seed-poc-db": "tsx scripts/seed-poc-db.ts",
"train-ml-model": "tsx src/ml/train-ml-model.ts",
"clean": "rm -rf dist",
"prebuild": "npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyberdiagram/agent.git"
},
"keywords": [
"security",
"penetration-testing",
"vulnerability-assessment",
"claude-agent-sdk",
"automation"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyberdiagram/agent/issues"
},
"homepage": "https://github.com/cyberdiagram/agent#readme",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
"ajv": "^8.12.0",
"axios": "^1.6.2",
"better-sqlite3": "^9.2.2",
"ccusage": "^17.2.0",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"socket.io": "^4.6.1",
"xml2js": "^0.6.2",
"yaml": "^2.3.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.10.5",
"@types/xml2js": "^0.4.14",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}