-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.3 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
{
"name": "new-api-docs-v1",
"version": "0.0.0",
"private": true,
"scripts": {
"prebuild": "tsx scripts/prebuild.ts",
"build": "next build",
"dev": "next dev",
"start": "next start",
"postinstall": "fumadocs-mdx",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test:plugins": "node --import tsx --test tests/plugins/*.test.ts",
"test:community:browser": "playwright test --config playwright.community.config.ts",
"test:seo:browser": "playwright test --config playwright.seo.config.ts",
"test:plugins:browser": "playwright test --config playwright.plugins.config.ts",
"translate": "bun scripts/translate-docs.ts",
"translate:all": "bun scripts/translate-docs.ts",
"translate:force": "bun run translate",
"generate:openapi:schemas": "bun scripts/generate-openapi-from-http.ts",
"generate:openapi": "bun scripts/generate-openapi-from-http.ts && bun scripts/generate-openapi-docs.ts"
},
"dependencies": {
"@ai-sdk/openai-compatible": "^1.0.27",
"@ai-sdk/react": "^2.0.93",
"@next/third-parties": "^16.0.7",
"@orama/orama": "^3.1.16",
"@orama/tokenizers": "^3.1.16",
"@paper-design/shaders-react": "^0.0.63",
"@radix-ui/react-presence": "^1.1.5",
"ai": "^5.0.93",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"fumadocs-core": "16.0.10",
"fumadocs-mdx": "13.0.7",
"fumadocs-openapi": "^10.1.0",
"fumadocs-ui": "16.0.10",
"hast-util-to-jsx-runtime": "^2.3.6",
"katex": "^0.16.25",
"lucide-react": "^0.552.0",
"next": "16.0.7",
"next-themes": "^0.4.6",
"octokit": "^5.0.5",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-rehype": "^11.1.2",
"shiki": "3.15.0",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"unist-util-visit": "^5.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@playwright/test": "^1.63.0",
"@tailwindcss/postcss": "^4.1.16",
"@types/mdx": "^2.0.13",
"@types/node": "^24.10.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"postcss": "^8.5.6",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.1.16",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
}
}