-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.06 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
{
"name": "mogplex-docs",
"version": "0.0.0",
"license": "Apache-2.0",
"private": true,
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"gen:models": "tsx --env-file=.env.local scripts/gen-models-table.ts",
"test": "node --test tests/*.test.mjs",
"types:check": "fumadocs-mdx && next typegen && tsc --noEmit",
"postinstall": "fumadocs-mdx",
"lint": "eslint",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,mjs}": "pnpm exec eslint --fix",
"*.{json,md,mdx}": []
},
"dependencies": {
"@ai-sdk/react": "^4.0.87",
"@openrouter/ai-sdk-provider": "^3.0.0",
"@radix-ui/react-presence": "^1.1.10",
"ai": "^7.0.84",
"class-variance-authority": "^0.7.1",
"flexsearch": "^0.8.212",
"fumadocs-core": "16.14.3",
"fumadocs-mdx": "15.2.3",
"fumadocs-ui": "16.14.3",
"geist": "^1.7.2",
"hast-util-to-jsx-runtime": "^2.3.6",
"lucide-react": "^1.31.0",
"next": "16.3.0",
"next-themes": "^0.4.6",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-rehype": "^11.1.2",
"tailwind-merge": "^3.6.0",
"unist-util-visit": "^5.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/hast": "^3.0.5",
"@types/mdx": "^2.0.14",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"eslint": "^9.39.4",
"eslint-config-next": "16.3.0",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"postcss": "^8.5.26",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.12",
"typescript": "^6.0.2"
},
"pnpm": {
"overrides": {
"sharp@<0.35.0": "^0.35.0",
"js-yaml@>=4.0.0 <4.3.0": "^4.3.0",
"brace-expansion@<1.1.16": "^1.1.16",
"brace-expansion@>=3.0.0 <5.0.8": "^5.0.8",
"@babel/core@<=7.29.0": "^7.29.6",
"esbuild@>=0.27.3 <0.28.1": "^0.28.1",
"postcss@<8.5.10": "^8.5.10"
}
}
}