-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 897 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 897 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
35
36
37
38
39
40
41
42
{
"name": "agent-shield",
"version": "1.0.0",
"description": "Production-ready security scanner for AI agent skills and plugins",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest",
"lint": "eslint ."
},
"keywords": [
"ai",
"agent",
"security",
"scanner",
"vulnerability",
"skills"
],
"author": "Socrates <socrates@clawd.bot>",
"license": "MIT",
"dependencies": {
"@libsql/client": "^0.14.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"node-fetch": "^2.7.0",
"stripe": "^20.3.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"eslint": "^8.57.1",
"jest": "^29.7.0",
"nodemon": "^3.0.2"
},
"engines": {
"node": ">=18.0.0"
}
}