- Replace the ambiguous Guide section with explicit overview, reference, and development routes while preserving legacy URLs with redirects - Route missing localized content to maintained canonical pages and emit SEO alternates only for real translations - Add parser-backed documentation integrity checks and make the optimized local build the default while retaining a complete production build
29 lines
850 B
JSON
29 lines
850 B
JSON
{
|
|
"name": "@open-pencil/docs",
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"type": "module",
|
|
"imports": {
|
|
"#docs/*": "./.vitepress/*"
|
|
},
|
|
"scripts": {
|
|
"dev": "vitepress dev",
|
|
"build": "OPENPENCIL_DOCS_FAST_BUILD=1 NODE_OPTIONS=--max-old-space-size=8192 vitepress build --minify=false --buildConcurrency=8",
|
|
"build:production": "NODE_OPTIONS=--max-old-space-size=8192 vitepress build --minify=esbuild --buildConcurrency=8",
|
|
"check": "bun ../../tools/docs/src/check.ts",
|
|
"preview": "vitepress preview"
|
|
},
|
|
"devDependencies": {
|
|
"@shikijs/vitepress-twoslash": "^4.3.1",
|
|
"@tailwindcss/vite": "^4.2.1",
|
|
"vitepress": "^2.0.0-alpha.17",
|
|
"vitepress-plugin-llms": "1.12.2",
|
|
"vue": "^3.5.29",
|
|
"vue-component-meta": "^3.3.7"
|
|
},
|
|
"dependencies": {
|
|
"@iconify/vue": "^5.0.0"
|
|
}
|
|
}
|