-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.93 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
{
"name": "docs-next",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@10.28.1",
"scripts": {
"dev": "node --env-file-if-exists=.env --import=tsx node_modules/vite/bin/vite.js",
"build": "node scripts/guard-vocs-config.mjs && pnpm run check:types && vite build",
"check": "biome check --write --unsafe .",
"check:types": "tsgo --project tsconfig.json --noEmit",
"preview": "node dist/preview.js",
"search:benchmark": "bun search-benchmark/run.ts",
"test": "vitest run --dir src",
"test:e2e": "playwright test",
"bundle:analyze": "node --experimental-strip-types scripts/bundle-diff.ts --skip-build",
"bundle:diff": "node --experimental-strip-types scripts/bundle-diff.ts",
"bundle:save": "node --experimental-strip-types scripts/bundle-diff.ts --save",
"lighthouse": "node --experimental-strip-types scripts/lighthouse.ts",
"lighthouse:mobile": "node --experimental-strip-types scripts/lighthouse.ts --mobile",
"og:probe": "node --experimental-strip-types scripts/probe-og.ts"
},
"dependencies": {
"@iconify-json/lucide": "^1.2.114",
"@iconify-json/simple-icons": "^1.2.87",
"@monaco-editor/react": "^4.7.0",
"@shikijs/rehype": "^4.3.0",
"@takumi-rs/image-response": "0.62.8",
"@takumi-rs/wasm": "0.62.8",
"@tanstack/react-query": "^5.101.1",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"@wagmi/core": "3.5.4",
"abitype": "^1.2.4",
"accounts": "^0.14.11",
"cva": "1.0.0-beta.4",
"hono": "^4.12.27",
"mermaid": "^11.14.0",
"minisearch": "7.2.0",
"monaco-editor": "^0.55.1",
"ox": "0.14.30",
"posthog-js": "^1.393.5",
"posthog-node": "^5.38.5",
"prool": "^0.2.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-server-dom-webpack": "~19.2.7",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"shiki": "^4.3.0",
"sonner": "^2.0.7",
"sql-formatter": "^15.8.2",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.1",
"tapimo": "0.0.1",
"unified": "^11.0.5",
"unplugin-auto-import": "^21.0.0",
"unplugin-icons": "^23.0.1",
"viem": "^2.54.6",
"vocs": "^2.5.3",
"wagmi": "3.6.20",
"waku": "^1.0.0-beta.6",
"webauthx": "~0.1.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@playwright/test": "^1.61.1",
"@tailwindcss/vite": "^4.3.1",
"@types/node": "^26.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260624.1",
"@vitejs/plugin-react": "^6.0.3",
"anser": "^2.3.5",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vite": "^8.1.0",
"vite-plugin-mkcert": "^2.1.0",
"vitest": "^4.1.9"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.12.0",
"onFail": "download"
}
}
}