Fable clean up

This commit is contained in:
Andras Schmelczer 2026-06-11 21:35:45 +01:00
parent 3441a7e4af
commit 4ce8a4f41d
46 changed files with 642 additions and 911 deletions

View file

@ -10,8 +10,8 @@
"scripts": {
"dev": "astro dev --host 0.0.0.0 --port 5173",
"typecheck": "astro check",
"lint": "prettier --check \"astro.config.mjs\" \"src/**/*.{astro,ts,md,css}\" \"scripts/*.mjs\" \"*.md\" \"*.json\"",
"format": "prettier --write \"astro.config.mjs\" \"src/**/*.{astro,ts,md,css}\" \"scripts/*.mjs\" \"*.md\" \"*.json\"",
"lint": "prettier --check \"astro.config.mjs\" \"src/**/*.{astro,ts,md,css}\" \"scripts/**/*.mjs\" \"*.md\" \"*.json\"",
"format": "prettier --write \"astro.config.mjs\" \"src/**/*.{astro,ts,md,css}\" \"scripts/**/*.mjs\" \"*.md\" \"*.json\"",
"build": "astro build",
"preview": "astro preview",
"audit:astro": "npm run build && node scripts/install-playwright-deps.mjs && node scripts/export-astro-audit.mjs",
@ -43,6 +43,7 @@
"@astrojs/check": "^0.9.9",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@types/node": "^22.13.0",
"astro": "^6.3.1",
"playwright": "^1.59.1",
"prettier": "^3.8.3",
@ -50,13 +51,13 @@
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"typescript": "^5.9.3",
"unist-util-visit": "^5.1.0",
"sharp": "^0.34.5"
"unist-util-visit": "^5.1.0"
},
"overrides": {
"yaml": "^2.9.0"
},
"dependencies": {
"@plausible-analytics/tracker": "^0.4.5"
"@plausible-analytics/tracker": "^0.4.5",
"sharp": "^0.34.5"
}
}