clawdie-iso/docs/website/package.json
Sam & Claude fdd0d260d0 feat: version-aware docs built + staged on ISO
- Copy Astro landing page source into docs/website/ (20K, no node_modules)
- Add ISO version badge to LandingBody.astro (only shown when
  ASTRO_ISO_VERSION is set during build)
- Add build_and_stage_docs() to build.sh: builds the Astro site with
  the ISO version, stages output at /usr/local/share/clawdie-iso/docs/
- Skips gracefully when node/npm unavailable
- On the booted USB: open docs/index.html to see version-matched docs
2026-06-23 11:58:03 +02:00

23 lines
529 B
JSON

{
"name": "clawdie-si",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "astro dev --host 0.0.0.0",
"start": "astro dev --host 0.0.0.0",
"build": "astro build",
"predeploy": "npm run build",
"deploy": "node scripts/deploy.mjs",
"preview": "astro preview --host 0.0.0.0",
"astro": "astro"
},
"dependencies": {
"@astrojs/sitemap": "^3.2.1",
"astro": "^5.16.11"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"typescript": "^5.9.3"
}
}