-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.23 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.23 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
{
"name": "agentwall",
"version": "0.1.0",
"description": "Agentwall: provenance-aware policy enforcement for agent egress, tools, content, and approvals",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"onboard": "ts-node src/onboarding.ts",
"uninstall:system": "bash ./scripts/agentwall-uninstall.sh",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"lint": "tsc --noEmit",
"cli": "node dist/cli.js",
"init": "node dist/cli.js init",
"doctor": "node dist/cli.js doctor"
},
"keywords": [
"agent",
"firewall",
"agentwall",
"control-plane",
"ai-safety"
],
"license": "MIT",
"dependencies": {
"fastify": "^5.8.4",
"js-yaml": "^4.1.0",
"pino": "^8.19.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.ts"
]
},
"bin": {
"agentwall": "dist/cli.js"
}
}