mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
10a9c3412b
As the first step to not bundling renderers in the core `astro` package the examples show usage with renderers as dependencies.
26 lines
656 B
JSON
26 lines
656 B
JSON
{
|
|
"name": "@example/with-nanostores",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"start": "astro dev",
|
|
"build": "astro build",
|
|
"preview": "astro preview"
|
|
},
|
|
"dependencies": {
|
|
"@nanostores/preact": "^0.1.2",
|
|
"@nanostores/react": "^0.1.5",
|
|
"@nanostores/vue": "^0.4.1",
|
|
"nanostores": "^0.5.7",
|
|
"solid-nanostores": "0.0.6"
|
|
},
|
|
"devDependencies": {
|
|
"@astrojs/renderer-solid": "^0.4.0",
|
|
"astro": "^0.23.7",
|
|
"@astrojs/renderer-preact": "^0.5.0",
|
|
"@astrojs/renderer-react": "^0.5.0",
|
|
"@astrojs/renderer-svelte": "^0.5.1",
|
|
"@astrojs/renderer-vue": "^0.4.0"
|
|
}
|
|
}
|