forked from Asyboi/agentic-hack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.32 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
{
"name": "policyguard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start",
"demo": "tsx scripts/demo-three-actions.ts",
"agent": "tsx --env-file-if-exists=.env scripts/agent-demo.ts",
"test:senso": "tsx scripts/test-senso.ts",
"test:senso:live": "tsx scripts/test-live-senso.ts",
"test:nimble": "tsx scripts/test-nimble.ts",
"nimble:sample": "tsx scripts/save-nimble-sample.ts",
"demo:research": "tsx scripts/demo-research.ts",
"kb:ingest": "tsx scripts/ingest-kb-from-nimble.ts",
"kb:list": "tsx scripts/ingest-kb-from-nimble.ts -- --list",
"test:planner": "tsx scripts/test-planner.ts",
"clickhouse:init": "tsx scripts/init-clickhouse.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@clickhouse/client": "^1.18.5",
"@coinbase/x402": "^2.1.0",
"@x402/core": "^2.13.0",
"@x402/evm": "^2.13.0",
"@x402/extensions": "^2.13.0",
"ai": "^4.3.16",
"next": "^15.3.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"x402-fetch": "^1.2.0",
"x402-next": "^1.2.0",
"zod": "^3.25.28"
},
"devDependencies": {
"@types/node": "^22.15.21",
"@types/react": "^19.1.4",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}