-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.11 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.11 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
{
"name": "snekroll-docs",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev --port 8000",
"start": "next start",
"postinstall": "fumadocs-mdx",
"lint": "next lint && node scripts/check-mdx-content.mjs",
"type-check": "tsc --noEmit",
"content-check": "node scripts/check-mdx-content.mjs",
"content:sync-zh-tw": "node scripts/generate-zh-tw-from-zh-cn.mjs",
"seo-check": "npm run build && npm run start & sleep 10 && curl -s http://localhost:3000/sitemap.xml | head -20 && curl -s http://localhost:3000/robots.txt && pkill -f 'next start'",
"analyze": "ANALYZE=true npm run build"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@orama/orama": "^3.1.1",
"@orama/tokenizers": "^3.1.1",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"codehike": "^1.0.7",
"critters": "^0.0.25",
"fumadocs-core": "15.6.1",
"fumadocs-mdx": "11.6.10",
"fumadocs-ui": "15.6.1",
"kotlin-playground": "^1.30.0",
"lucide-react": "^0.525.0",
"next": "15.5.9",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-syntax-highlighter": "^15.6.1",
"tailwind-merge": "^3.3.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@tailwindcss/postcss": "^4.0.9",
"@types/mdx": "^2.0.13",
"@types/node": "22.13.8",
"@types/react": "^19.2.3",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.30.1",
"eslint-config-next": "^15.5.7",
"opencc-js": "^1.0.5",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.9",
"typescript": "^5.8.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"Chrome >= 110",
"Firefox >= 110",
"Safari >= 15.4",
"Edge >= 110"
]
}