10a9c3412b
As the first step to not bundling renderers in the core `astro` package the examples show usage with renderers as dependencies.
19 lines
496 B
JSON
19 lines
496 B
JSON
{
|
|
"name": "@example/fast-build",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "astro dev --experimental-static-build",
|
|
"start": "astro dev --experimental-static-build",
|
|
"build": "astro build --experimental-static-build",
|
|
"scan-build": "astro build",
|
|
"preview": "astro preview"
|
|
},
|
|
"devDependencies": {
|
|
"astro": "^0.23.7",
|
|
"preact": "~10.6.5",
|
|
"unocss": "^0.15.5",
|
|
"vite-imagetools": "^4.0.1",
|
|
"@astrojs/renderer-vue": "^0.4.0"
|
|
}
|
|
}
|