astro/packages/integrations/vue/package.json
Tony Sullivan 3b621f7a61
chore: integration keywords (#2847)
* updating integration package keywords

* adding a changeset
2022-03-21 19:31:15 +00:00

46 lines
1.1 KiB
JSON

{
"name": "@astrojs/vue",
"version": "0.0.1",
"description": "Use Vue components within Astro",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/withastro/astro.git",
"directory": "packages/integrations/vue"
},
"keywords": [
"astro-component",
"renderer",
"vue"
],
"bugs": "https://github.com/withastro/astro/issues",
"homepage": "https://astro.build",
"exports": {
".": "./dist/index.js",
"./*": "./*",
"./client.js": "./client.js",
"./server.js": "./server.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"dev": "astro-scripts dev \"src/**/*.ts\""
},
"dependencies": {
"@vitejs/plugin-vue": "^2.2.4"
},
"devDependencies": {
"astro": "workspace:*",
"astro-scripts": "workspace:*",
"vue": "^3.2.31"
},
"peerDependencies": {
"vue": "^3.2.30"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
}