-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.55 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.55 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
{
"name": "sentinel-cre",
"version": "0.1.0",
"description": "Autonomous Risk Monitoring Infrastructure for AI Agents On-Chain — 3-layer defense with Chainlink CRE + Confidential Compute",
"author": "Willis Tang (@ProjectWaja)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ProjectWaja/SentinelCRE"
},
"type": "module",
"scripts": {
"build": "cre workflow build sentinel-workflow/main.ts",
"simulate": "cre workflow simulate sentinel-workflow/main.ts --config config/sentinel.config.json",
"simulate:local": "cre workflow simulate sentinel-workflow/main.ts --config config/sentinel.local.config.json",
"deploy:workflow": "cre workflow deploy sentinel-workflow/main.ts --config config/sentinel.config.json",
"deploy:contracts": "bun run scripts/deploy-guardian.ts",
"dev": "bun run api-server/server.ts & cd dashboard && bun run dev",
"mock-api": "bun run api-server/server.ts",
"demo:normal": "bun run agent-simulator/normal-agent.ts",
"demo:rogue": "bun run agent-simulator/rogue-agent.ts",
"demo:probing": "bun run agent-simulator/probing-agent.ts",
"demo:drift": "bun run agent-simulator/drift-agent.ts",
"behavioral:reset": "curl -X DELETE http://localhost:3002/behavioral/reset",
"dashboard": "cd dashboard && bun run dev",
"dashboard:build": "cd dashboard && bun run build"
},
"dependencies": {
"@chainlink/cre-sdk": "^1.0.9",
"viem": "^2.21.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.6.0"
}
}