This repository was archived by the owner on Mar 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 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
{
"name": "docs",
"version": "0.2.0",
"license": "MIT",
"private": true,
"engines": {
"node": "22.x"
},
"scripts": {
"clean": "rm -rf node_modules .next && rm pnpm-lock.yaml",
"prebuild": "node ./scripts/export-markdown.mjs && node ./scripts/export-full-markdown.mjs && node ./scripts/generate-llms-txt.mjs",
"postbuild": "next-sitemap && pagefind --site .next/server/app --output-path public/_pagefind",
"clean:full": "pnpm clean && pnpm install && pnpm build",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next build && next export"
},
"keywords": [],
"dependencies": {
"@tailwindcss/postcss": "^4.0.8",
"@types/node": "^22.13.5",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"eslint": "^9.21.0",
"eslint-config-next": "^15.4.8",
"next": "15.4.10",
"nextra": "^4.4.0",
"nextra-theme-docs": "^4.4.0",
"postcss": "^8.5.3",
"posthog-js": "^1.223.3",
"react": "^19.0.1",
"react-dom": "^19.0.1",
"react-icons": "^5.5.0",
"tailwindcss": "^4.0.8",
"typescript": "5.7.3"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"fast-glob": "^3.3.3",
"next-sitemap": "^4.2.3",
"pagefind": "^1.3.0"
}
}