-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 974 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 974 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
{
"name": "agentic-ai-security-starter",
"version": "1.0.0",
"description": "Reference implementation for securing agentic AI apps with guardrails, tool permissions, and audit logs.",
"main": "src/server.ts",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx src/server.ts",
"inventory": "tsx src/security/power-inventory.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"agentic-ai",
"ai-security",
"guardrails",
"tool-permissions",
"audit-logs"
],
"license": "MIT",
"dependencies": {
"express": "^4.21.0",
"express-rate-limit": "^7.4.0",
"pino": "^9.4.0",
"pino-http": "^10.3.0",
"zod": "^3.23.0"
},
"optionalDependencies": {
"pg": "^8.12.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/pg": "^8.11.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}