2022-03-18 22:35:45 +00:00
|
|
|
{
|
|
|
|
"name": "@astrojs/vue",
|
2023-05-30 20:53:55 +00:00
|
|
|
"version": "2.2.1",
|
2022-03-18 22:35:45 +00:00
|
|
|
"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"
|
|
|
|
},
|
2022-03-21 19:31:15 +00:00
|
|
|
"keywords": [
|
2022-07-08 20:55:33 +00:00
|
|
|
"astro-integration",
|
2022-03-21 19:31:15 +00:00
|
|
|
"astro-component",
|
|
|
|
"renderer",
|
|
|
|
"vue"
|
|
|
|
],
|
2022-03-18 22:35:45 +00:00
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
2022-07-11 19:10:34 +00:00
|
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/vue/",
|
2022-03-18 22:35:45 +00:00
|
|
|
"exports": {
|
|
|
|
".": "./dist/index.js",
|
2022-07-08 21:47:01 +00:00
|
|
|
"./editor": "./dist/editor.cjs",
|
2022-03-18 22:35:45 +00:00
|
|
|
"./*": "./*",
|
|
|
|
"./client.js": "./client.js",
|
|
|
|
"./server.js": "./server.js",
|
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
2023-05-17 08:54:00 +00:00
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"client.js",
|
|
|
|
"server.js",
|
|
|
|
"static-html.js"
|
|
|
|
],
|
2022-03-18 22:35:45 +00:00
|
|
|
"scripts": {
|
2022-07-08 21:47:01 +00:00
|
|
|
"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",
|
2022-10-13 19:15:57 +00:00
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
|
|
|
"test": "mocha --timeout 20000"
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-06-21 13:09:49 +00:00
|
|
|
"@vitejs/plugin-vue": "^4.2.3",
|
|
|
|
"@vitejs/plugin-vue-jsx": "^3.0.1",
|
2022-09-29 03:25:45 +00:00
|
|
|
"@vue/babel-plugin-jsx": "^1.1.1",
|
2023-06-21 13:09:49 +00:00
|
|
|
"@vue/compiler-sfc": "^3.3.4"
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-06-21 13:09:49 +00:00
|
|
|
"@types/chai": "^4.3.5",
|
2022-03-18 22:35:45 +00:00
|
|
|
"astro": "workspace:*",
|
|
|
|
"astro-scripts": "workspace:*",
|
2023-06-21 13:09:49 +00:00
|
|
|
"chai": "^4.3.7",
|
|
|
|
"linkedom": "^0.14.26",
|
2022-10-13 19:15:57 +00:00
|
|
|
"mocha": "^9.2.2",
|
2023-07-24 08:21:17 +00:00
|
|
|
"vite": "^4.4.6",
|
2023-06-21 13:09:49 +00:00
|
|
|
"vue": "^3.3.4"
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2023-08-03 14:54:48 +00:00
|
|
|
"astro": "workspace:^2.10.0",
|
2023-02-17 14:16:25 +00:00
|
|
|
"vue": "^3.2.30"
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2023-01-09 21:59:20 +00:00
|
|
|
"node": ">=16.12.0"
|
2022-03-18 22:35:45 +00:00
|
|
|
}
|
|
|
|
}
|