familyfedie-website/package.json
Loyyd 1d55bdb691
All checks were successful
Publish static bundles / publish (push) Successful in 3m19s
Modernize frontend assets and security baseline
2026-07-15 10:28:06 +02:00

21 lines
910 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",
"optimize:images": "node scripts/optimize-images.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 && npm run optimize:images",
"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",
"sharp": "^0.35.3"
}
}