10a9c3412b
As the first step to not bundling renderers in the core `astro` package the examples show usage with renderers as dependencies.
16 lines
333 B
JSON
16 lines
333 B
JSON
{
|
|
"name": "@example/blog-multiple-authors",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"start": "astro dev",
|
|
"build": "astro build",
|
|
"preview": "astro preview"
|
|
},
|
|
"devDependencies": {
|
|
"astro": "^0.23.7",
|
|
"sass": "^1.49.8",
|
|
"@astrojs/renderer-preact": "^0.5.0"
|
|
}
|
|
}
|