astro/examples/framework-vue/package.json

25 lines
600 B
JSON
Raw Normal View History

{
"name": "@example/framework-vue",
"version": "0.0.1",
2021-08-10 01:24:25 +01:00
"keywords": ["framework","template","astro"],
"private": true,
2021-08-10 01:24:25 +01:00
"description": "View our demonstration where we use Vue to create UI components for Astro",
"repository": {
"directory": "/examples/framework-vue",
"type": "github",
"url": "https://github.com/snowpackjs/astro/tree/main"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.20.4"
},
"snowpack": {
"workspaceRoot": "../.."
}
}