-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 890 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 890 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
{
"name": "sentinel",
"version": "1.0.0",
"description": "Autonomous AI Security Team — drop-in security monitoring for any environment",
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"dashboard": "node dashboard/server.js",
"migrate": "node schemas/migrate.js",
"scan": "node src/cli.js scan",
"ask": "node src/cli.js ask",
"report": "node src/cli.js report"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"better-sqlite3": "^12.6.2",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"express": "^4.21.0",
"marked": "^15.0.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.0",
"pdf-lib": "^1.17.1",
"pg": "^8.13.0",
"redis": "^4.7.0",
"uuid": "^10.0.0",
"ws": "^8.18.0"
},
"engines": {
"node": ">=20.0.0"
}
}