-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 2.95 KB
/
package.json
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
92
93
94
95
{
"name": "docs",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build:embeddings": "tsx scripts/embeddings.ts",
"prebuild": "pnpm run build:embeddings",
"build": "next build",
"dev": "next dev",
"start": "next start",
"postinstall": "fumadocs-mdx",
"eject": "fumadocs add --config ./fumadocs.cli.json",
"lint": "eslint . --max-warnings 0",
"format:check": "prettier --check \"**/*.{ts,tsx,md,mdx}\"",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx}\"",
"clean": "rm -rf .next .source node_modules"
},
"dependencies": {
"@ai-sdk/openai": "^1.1.9",
"@next/third-parties": "^15.1.6",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-popover": "^1.1.5",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-slot": "^1.1.1",
"@shikijs/langs-precompiled": "^2.3.2",
"@shikijs/rehype": "^2.3.2",
"@superagent-ai/reag": "^0.0.3",
"@theguild/remark-mermaid": "^0.2.0",
"@typeform/embed-react": "^4.3.0",
"@vercel/analytics": "^1.5.0",
"ai": "^4.1.25",
"class-variance-authority": "^0.7.1",
"fast-glob": "^3.3.3",
"fumadocs-core": "15.0.0",
"fumadocs-docgen": "^1.3.5",
"fumadocs-mdx": "11.3.2",
"fumadocs-twoslash": "^3.0.0",
"fumadocs-ui": "15.0.0",
"gray-matter": "^4.0.3",
"hast": "^1.0.0",
"hast-util-to-jsx-runtime": "^2.3.2",
"katex": "^0.16.21",
"lucide-react": "^0.474.0",
"next": "15.1.6",
"next-themes": "^0.4.4",
"openai": "^4.83.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"rehype-katex": "^7.0.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-mdx": "^3.1.0",
"remark-rehype": "^11.1.1",
"remark-stringify": "^11.0.0",
"rimraf": "^6.0.1",
"shiki": "^2.1.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@fumadocs/cli": "^0.0.7",
"@next/eslint-plugin-next": "^15.1.6",
"@tailwindcss/postcss": "^4.0.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/hast": "^3.0.4",
"@types/mdx": "^2.0.13",
"@types/node": "22.10.9",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwind-merge": "^3.0.1",
"tailwindcss": "^4.0.1",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
}
}