Enhance project structure and functionality by adding new components and integrations. Updated .gitignore to exclude history and transformed images. Integrated Svelte, sitemap, and icon support in astro.config.mjs. Added multiple new components including BlogOverview, ContentRows, Footer, Header, and various block components for improved content management. Updated package.json with new dependencies and modified scripts for build and development processes.

This commit is contained in:
Peter Meier
2026-02-22 12:14:43 +01:00
parent 054b5719e5
commit bb6ec20d45
52 changed files with 12536 additions and 179 deletions
+17 -4
View File
@@ -3,19 +3,32 @@
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"dev": "yarn generate:api-types; astro dev",
"build": "yarn generate:api-types && astro build && pagefind --site dist && cp -r dist/pagefind public/",
"preview": "astro preview",
"astro": "astro",
"generate:api-types": "node scripts/generate-api-types.mjs"
"generate:api-types": "node scripts/generate-api-types.mjs",
"postinstall": "yarn generate:api-types || true"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.0",
"@astrojs/svelte": "^7.2.5",
"@fontsource-variable/lora": "^5.2.8",
"@fontsource-variable/rubik": "^5.2.8",
"@iconify/svelte": "^5.2.1",
"@tailwindcss/vite": "^4.1.18",
"astro": "^5.17.1",
"marked": "^17.0.2",
"svelte": "^5.51.2",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"openapi-typescript": "^7.4.0"
"@iconify-json/mdi": "^1.2.3",
"@types/node": "^22.10.0",
"astro-icon": "^1.1.5",
"openapi-typescript": "^7.4.0",
"pagefind": "^1.4.0",
"typescript": "^5.9.3"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}