jalil.arfaoui.net/package.json
Jalil Arfaoui 41699e5d03 Ajout de sharp en devDependency explicite pour corriger le build Clever Cloud
sharp était uniquement en optionalDependency d'Astro, ce qui faisait
qu'il n'était pas installé sur Clever Cloud. Le build échouait avec
"Rollup failed to resolve import sharp".
2026-02-18 18:58:03 +01:00

29 lines
704 B
JSON

{
"name": "jalil.arfaoui.net",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"fetch-images": "tsx scripts/fetch-images.ts",
"prebuild": "npm run fetch-images",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"check": "biome check --apply-unsafe ."
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/tailwind": "^6.0.2",
"@biomejs/biome": "1.7.3",
"@tailwindcss/typography": "^0.5.13",
"@types/node": "^25.0.3",
"astro": "^5.17.2",
"dotenv": "^17.2.3",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.3",
"tsx": "^4.21.0",
"typescript": "^5.7.3",
"webdav": "^5.8.0"
}
}