familyfedie-website/package.json
Loyyd 9d0a823351
Some checks are pending
/ deploy (push) Waiting to run
checks
2026-06-11 09:54:39 +02:00

19 lines
800 B
JSON

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