forge/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

19 lines
466 B
JSON

{
"name": "forge-webui",
"private": true,
"devDependencies": {
"html-minifier-terser": "^7.2.0",
"lightningcss": "^1.29.3",
"postcss": "^8.5.6",
"postcss-nested": "^7.0.2",
"prettier": "^3.6.2",
"terser": "^5.44.0"
},
"scripts": {
"build:webui": "node tools/build-webui.mjs",
"docs:sync": "node tools/sync-docus-docs.mjs",
"docs:dev": "npm --prefix docus run dev",
"docs:build": "npm --prefix docus run build"
}
}