forge/docus/package.json
Jacob Schmidt 827f3303a2 feat: add initial Docus setup and sync tool for documentation generation
- 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.
2026-04-21 16:07:27 -05:00

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"
}
}