-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 822 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 822 Bytes
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
{
"name": "imkit-doc-website",
"version": "1.0.0",
"description": "IMKit API Documentation Website",
"scripts": {
"dev": "next dev",
"build": "next build && node scripts/post-build.js && node scripts/generate-llms.js && node scripts/generate-sitemap.js && pagefind --site out --output-subdir pagefind",
"build:next": "next build",
"start": "next start"
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.4.4",
"next": "^15.4.4",
"nextra": "^3.3.1",
"nextra-theme-docs": "^3.3.1",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@pagefind/default-ui": "^1.5.2",
"@types/node": "24.1.0",
"pagefind": "^1.5.2",
"typescript": "5.8.3"
},
"engines": {
"node": ">=18.0.0"
}
}