-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.48 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
{
"name": "openchainbench",
"version": "0.1.0",
"private": true,
"description": "Open benchmarks for crypto infrastructure — aggregators, bridges, price feeds.",
"scripts": {
"dev": "next dev",
"prebuild": "tsx scripts/emit-page-mtimes.ts",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "bun test src/",
"typecheck": "tsc --noEmit",
"validate": "tsx scripts/validate-specs.ts",
"spec:dry-run": "tsx scripts/dry-run-spec.ts",
"rpc-hub:dry-run": "tsx scripts/dry-run-rpc-hub.ts",
"check": "pnpm validate && pnpm typecheck && pnpm lint && pnpm test",
"worker": "tsx worker/index.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"@react-three/fiber": "^9.6.1",
"@vercel/analytics": "^2.0.1",
"cmdk": "^1.1.1",
"fuse.js": "^7.4.2",
"ioredis": "^5.11.1",
"js-yaml": "^4.1.1",
"lucide-react": "^1.11.0",
"mcp-handler": "^1.1.0",
"next": "16.2.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"three": "^0.184.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bun": "^1.3.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.184.1",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
},
"pnpm": {
"overrides": {
"postcss": "^8.5.10"
}
}
}