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