-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.71 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.71 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "sentinai",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3002",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:coverage:check": "vitest run --coverage --reporter=verbose",
"test:e2e": "playwright test",
"test:real-rpc:onboarding": "vitest run src/app/api/v2/onboarding/complete/route.real-rpc.test.ts",
"prod:gate:tier1": "bash scripts/prod-gate-tier1.sh",
"prod:gate:tier3": "bash scripts/prod-gate-tier3.sh",
"verify": "bash scripts/verify-e2e.sh",
"verify:connect-env": "bash scripts/verify-connect-env.sh",
"verify:playbooks": "npx tsx scripts/verify-playbooks.ts",
"verify:report": "npx tsx scripts/verify-report.ts",
"verify:report:rpc": "npx tsx scripts/verify-report.ts --check-rpc",
"verify:client-profile": "bash scripts/verify-client-profile.sh",
"verify:client-profile:live": "bash scripts/verify-client-profile.sh --phase 4",
"smoke:runtime:core": "bash scripts/smoke-runtime-core.sh",
"smoke:ton:facilitator": "npx tsx scripts/smoke-ton-facilitator.ts",
"probe:zk:settlement": "node scripts/zk-settlement-probe.mjs",
"benchmark": "npx tsx scripts/benchmark-models.ts",
"smoke:metrics:optimism": "bash scripts/smoke-optimism-metrics.sh",
"monitor:agent-heartbeat": "node scripts/check-agent-heartbeat.mjs",
"monitor:agent-heartbeat:alert": "node scripts/monitor-agent-heartbeat-alert.mjs",
"ops:profile": "bash scripts/check-ops-profile.sh",
"ops:profile:json": "bash scripts/check-ops-profile.sh --json",
"mcp:bridge:stdio": "npx tsx scripts/mcp-stdio-bridge.ts",
"autonomy:eval": "npx tsx scripts/autonomy-eval.ts --strict",
"goal:train-policy": "npx tsx scripts/train-goal-policy.ts",
"l2:arbitrum": "bash scripts/start-arbitrum-orbit.sh",
"demo:anomaly:immediate": "bash scripts/repro-anomaly-immediate-activity.sh"
},
"dependencies": {
"@iarna/toml": "^3.0.0",
"@kubernetes/client-node": "^1.4.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@vercel/postgres": "^0.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.34.4",
"highlight.js": "^11.11.1",
"ioredis": "^5.9.2",
"lucide-react": "^0.563.0",
"next": "16.1.6",
"next-themes": "^0.4.6",
"node-cron": "^4.2.1",
"pg": "^8.20.0",
"pino": "^10.3.1",
"playwright": "^1.58.2",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"recharts": "^2.15.4",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"three": "^0.183.2",
"viem": "^2.45.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@types/iarna__toml": "^2.0.5",
"@types/node": "^20",
"@types/node-cron": "^3.0.11",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.183.1",
"@vitest/coverage-v8": "^3.1.4",
"chalk": "^5.0.0",
"eslint": "^9.0.0",
"eslint-config-next": "^16.1.6",
"firebase-tools": "^3.18.2",
"pino-pretty": "^13.1.3",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^3.1.4"
},
"workspaces": [
"docs-site"
]
}