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 |
{
"name": "web",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "astro dev --host",
"build": "astro build",
"preview": "astro preview --host",
"astro": "astro",
"astro:sync": "bunx astro sync",
"fmt": "bunx prettier . --write"
},
"dependencies": {
"@astrojs/mdx": "^6.0.3",
"astro": "^6.2.2",
"prettier-plugin-astro": "^0.14.1"
},
"devDependencies": {
"prettier": "^3.8.4"
},
"engines": {
"node": ">=22.12.0"
}
}
|