-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.91 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
{
"name": "ai-tutorials",
"version": "0.0.5",
"description": "面向中文读者的开源 AI 学习与实践教程知识库。",
"private": true,
"license": "MIT",
"homepage": "https://90le.github.io/ai-tutorials",
"repository": {
"type": "git",
"url": "git+https://github.com/90le/ai-tutorials.git"
},
"bugs": {
"url": "https://github.com/90le/ai-tutorials/issues"
},
"scripts": {
"build": "next build",
"check": "npm run verify:content && npm test && npm run lint && npm run types:check && npm run build && npm run verify:output",
"dev": "next dev",
"test": "vitest run",
"start": "serve out",
"types:check": "fumadocs-mdx && next typegen && tsc --noEmit",
"verify:content": "node scripts/verify-content.mjs",
"verify:output": "node scripts/verify-static-output.mjs",
"postinstall": "fumadocs-mdx",
"lint": "eslint"
},
"dependencies": {
"@orama/orama": "^3.1.18",
"@orama/stopwords": "^3.1.18",
"@orama/tokenizers": "^3.1.18",
"@phosphor-icons/react": "^2.1.10",
"cnfast": "^0.0.8",
"echarts": "^6.1.0",
"fumadocs-core": "16.11.4",
"fumadocs-mdx": "15.1.1",
"fumadocs-ui": "npm:@fumadocs/base-ui@16.11.4",
"gsap": "^3.15.0",
"katex": "^0.17.0",
"lenis": "^1.3.25",
"lucide-react": "^1.24.0",
"mermaid": "^11.16.0",
"next": "16.2.10",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"three": "^0.178.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.2",
"@types/mdx": "^2.0.14",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.178.1",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.10",
"postcss": "^8.5.17",
"serve": "^14.2.6",
"tailwindcss": "^4.3.2",
"typescript": "^6.0.3",
"vitest": "^4.1.10",
"zod": "^4.4.3"
}
}