- Created package.json for Docus with necessary scripts and dependencies. - Implemented sync-docus-docs.mjs to automate the generation of documentation files from source markdown. - Defined mappings for generated pages and virtual routes to ensure proper linking in documentation. - Added static content files for the documentation structure, including navigation and index pages.
21 lines
466 B
JSON
21 lines
466 B
JSON
{
|
|
"name": "forge-docus",
|
|
"private": true,
|
|
"scripts": {
|
|
"sync:content": "node ../tools/sync-docus-docs.mjs",
|
|
"predev": "npm run sync:content",
|
|
"dev": "nuxt dev --extends docus",
|
|
"prebuild": "npm run sync:content",
|
|
"build": "nuxt build --extends docus"
|
|
},
|
|
"dependencies": {
|
|
"@takumi-rs/core": "^1.0.15",
|
|
"better-sqlite3": "^12.9.0",
|
|
"docus": "^5.10.0",
|
|
"nuxt": "^4.4.2"
|
|
},
|
|
"overrides": {
|
|
"esbuild": "0.27.7"
|
|
}
|
|
}
|