astro/packages/integrations/vue/package.json
Fred K. Bot 1785e568a0
[ci] release (#3850)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2022-07-08 20:54:39 -04:00

50 lines
1.3 KiB
JSON

{
"name": "@astrojs/vue",
"version": "0.2.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-integration",
"astro-component",
"renderer",
"vue"
],
"bugs": "https://github.com/withastro/astro/issues",
"homepage": "https://astro.build",
"exports": {
".": "./dist/index.js",
"./editor": "./dist/editor.cjs",
"./*": "./*",
"./client.js": "./client.js",
"./server.js": "./server.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "astro-scripts build \"src/index.ts\" && astro-scripts build \"src/editor.cts\" --force-cjs --no-clean-dist && tsc",
"build:ci": "astro-scripts build \"src/**/*.ts\" && astro-scripts build \"src/editor.cts\" --force-cjs --no-clean-dist",
"dev": "astro-scripts dev \"src/**/*.ts\""
},
"dependencies": {
"@vitejs/plugin-vue": "^2.3.3",
"vite": "^2.9.10"
},
"devDependencies": {
"astro": "workspace:*",
"astro-scripts": "workspace:*",
"vue": "^3.2.37"
},
"peerDependencies": {
"vue": "^3.2.30"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
}