astro/packages/integrations/vue/package.json
Chris Swithinbank bf5d1cc1e7
More integration README fixes (#3885)
* Integration README fixes

* More tweaks (mostly code backticks for filenames)

* Update changeset

* Few more tweaks

* Make sure code blocks all have a code language

* Use URLs of new docs pages for package homepage

* One more stray `<br>` 👢

* Standardise to `sh` instead of `shell`
2022-07-11 21:10:34 +02:00

50 lines
1.4 KiB
JSON

{
"name": "@astrojs/vue",
"version": "0.3.0",
"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://docs.astro.build/en/guides/integrations-guide/vue/",
"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.20.0 || >=16.16.0"
}
}