-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.97 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.97 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "docs",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build:embeddings": "tsx scripts/embeddings.ts",
"build:openapi": "tsx scripts/sync-openapi.ts && tsx scripts/generate-openapi.ts && prettier --write \"docs/reference/endpoints/**/*.mdx\"",
"prebuild": "pnpm run build:openapi && pnpm run build:embeddings && pnpm run link-check",
"link-check": "python3 scripts/check-links.py",
"lint:mdx": "tsx scripts/lint-mdx.ts",
"build": "pnpm run lint:mdx && next build",
"dev": "pnpm run build:openapi && 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",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch"
},
"dependencies": {
"@ai-sdk/openai": "^1.1.9",
"@next/third-parties": "^15.1.9",
"@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": "^3.2.2",
"@shikijs/rehype": "^3.2.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.2.8",
"fumadocs-docgen": "^2.0.0",
"fumadocs-mdx": "11.6.0",
"fumadocs-openapi": "^8.0.2",
"fumadocs-twoslash": "^3.1.1",
"fumadocs-ui": "15.2.8",
"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.5.9",
"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-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": "^3.2.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^12.1.0",
"@eslint/js": "^9.19.0",
"@fumadocs/cli": "^0.1.1",
"@jest/globals": "^30.2.0",
"@next/eslint-plugin-next": "^15.5.7",
"@tailwindcss/postcss": "^4.0.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/hast": "^3.0.4",
"@types/jest": "^30.0.0",
"@types/mdast": "^4.0.4",
"@types/mdx": "^2.0.13",
"@types/node": "22.10.9",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@types/unist": "^3.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.5.7",
"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",
"glob": "^11.0.3",
"globals": "^15.14.0",
"jest": "^30.2.0",
"mdast-util-mdx-jsx": "^3.2.0",
"mdast-util-to-string": "^4.0.0",
"openapi-types": "^12.1.3",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"remark": "^15.0.1",
"remark-cli": "^12.0.1",
"remark-lint": "^10.0.1",
"remark-lint-heading-style": "^4.0.1",
"tailwind-merge": "^3.0.1",
"tailwindcss": "^4.0.1",
"tailwindcss-animate": "^1.0.7",
"ts-jest": "^29.4.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.3"
}
}