-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "dethrone-console",
"version": "0.1.0",
"private": true,
"description": "A single-tenant operator console for the Dethrone arena. One wallet, held server-side, that signs and pays on your behalf.",
"license": "MIT",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.12.4",
"scripts": {
"dev": "HOST=127.0.0.1 next dev --hostname 127.0.0.1 --port 3939",
"build": "tsx scripts/assert-config.ts && next build",
"start": "HOST=127.0.0.1 next start --hostname 127.0.0.1 --port 3939",
"start:hosted": "HOST=0.0.0.0 next start --hostname 0.0.0.0 --port ${PORT:-3939}",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:live": "DETHRONE_LIVE=1 vitest run --config vitest.live.config.mts",
"assert:config": "tsx scripts/assert-config.ts",
"canon:sync": "tsx scripts/sync-canon-routes.ts",
"scan:bundle": "tsx scripts/scan-bundle.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.116.0",
"@x402/core": "^2.20.0",
"@x402/evm": "^2.20.0",
"@x402/fetch": "^2.20.0",
"next": "16.2.12",
"react": "19.2.4",
"react-dom": "19.2.4",
"server-only": "^0.0.1",
"viem": "^2.55.10",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@upstash/redis": "^1.35.0",
"eslint": "^9",
"eslint-config-next": "16.2.12",
"tsx": "^4.23.1",
"typescript": "^5",
"vitest": "^4.1.10"
},
"optionalDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.226"
}
}