-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.14 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.14 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
{
"name": "docs",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "node scripts/generate-discovery.ts && node scripts/build-diagrams.ts && node scripts/copy-vocs-theme.ts && node scripts/generate-cli-help.ts && node scripts/generate-og-descriptions.ts && vite build",
"check": "biome check --write",
"check:ci": "biome check",
"check:sdk-drift": "npx tsx .github/actions/sdk-drift-check/check-sdk-drift.ts",
"check:types": "tsc --noEmit",
"dev": "node scripts/generate-discovery.ts && vite dev",
"generate:discovery": "node scripts/generate-discovery.ts",
"preinstall": "pnpx only-allow pnpm",
"prepare": "pnpm simple-git-hooks",
"preview": "vite preview",
"sync:vocs": "node scripts/copy-vocs-theme.ts && pnpm check",
"test": "vitest run",
"test:e2e": "VITE_SKIP_ANIMATION=true VITE_DEMO_LIVE=false vitest run --config vitest.config.e2e.ts",
"test:watch": "viest"
},
"dependencies": {
"@base-ui/react": "^1.1.0",
"@resvg/resvg-wasm": "^2.6.2",
"@stripe/stripe-js": "^8.9.0",
"@vercel/blob": "^2.3.1",
"mermaid": "^11.12.2",
"mppx": "~0.4.2",
"react": "^19",
"react-dom": "^19",
"stripe": "^20.4.1",
"tailwindcss": "^4.1.18",
"viem": "^2.46.2",
"vocs": "https://pkg.pr.new/wevm/vocs@319c55c",
"wagmi": "^3.4.2",
"waku": "^1.0.0-alpha.4"
},
"devDependencies": {
"@biomejs/biome": "^2.4.1",
"@iconify/json": "^2.2.433",
"@playwright/test": "^1.58.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5",
"ajv": "8",
"ajv-formats": "^3.0.1",
"happy-dom": "^20.7.0",
"playwright": "^1.58.2",
"simple-git-hooks": "^2.13.1",
"tiktoken": "^1.0.22",
"typescript": "^5",
"unplugin-icons": "^23.0.1",
"vite": "^7",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.22.0",
"engines": {
"node": ">=24"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm check"
}
}