{ "scripts": { "organize": "node scripts/organize-content.mjs", "render:layout": "node scripts/render-shared-layout.mjs", "clean:wp": "node scripts/clean-wordpress-residue.mjs", "extract:content": "node scripts/extract-content.mjs", "extract:theme": "node scripts/extract-theme-css.mjs", "prepare:source": "npm run organize && npm run clean:wp && npm run render:layout", "dev": "npm run prepare:source && astro dev --host 0.0.0.0", "build": "npm run prepare:source && astro build && node scripts/copy-static-assets.mjs", "audit:links": "node scripts/audit-static-links.mjs", "preview": "astro preview --host 0.0.0.0", "start": "npm run preview", "check": "npm run build && npm run audit:links" }, "devDependencies": { "astro": "^6.4.6" } }