package.json (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
{
"name": "web",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"fmt": "bunx --bun @biomejs/biome format --write --staged",
"fmt:all": "bunx --bun @biomejs/biome format --write",
"lint": "bunx --bun @biomejs/biome lint --write --staged",
"lint:all": "bunx --bun @biomejs/biome lint --write",
"check": "bunx --bun @biomejs/biome check --write --staged",
"check:all": "bunx --bun @biomejs/biome check --write"
},
"dependencies": {
"astro": "^6.2.2"
},
"devDependencies": {
"@biomejs/biome": "2.4.15"
},
"engines": {
"node": ">=22.12.0"
}
}
|