2022-03-18 17:35:45 -05:00
|
|
|
{
|
|
|
|
"name": "@astrojs/vue",
|
2024-04-09 01:42:19 -05:00
|
|
|
"version": "4.0.11",
|
2022-03-18 17:35:45 -05: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 14:31:15 -05:00
|
|
|
"keywords": [
|
2022-07-08 15:55:33 -05:00
|
|
|
"astro-integration",
|
2022-03-21 14:31:15 -05:00
|
|
|
"astro-component",
|
|
|
|
"renderer",
|
|
|
|
"vue"
|
|
|
|
],
|
2022-03-18 17:35:45 -05:00
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
2022-07-11 14:10:34 -05:00
|
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/vue/",
|
2022-03-18 17:35:45 -05:00
|
|
|
"exports": {
|
|
|
|
".": "./dist/index.js",
|
2022-07-08 16:47:01 -05:00
|
|
|
"./editor": "./dist/editor.cjs",
|
2022-03-18 17:35:45 -05:00
|
|
|
"./*": "./*",
|
|
|
|
"./client.js": "./client.js",
|
|
|
|
"./server.js": "./server.js",
|
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
2023-05-17 03:54:00 -05:00
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"client.js",
|
|
|
|
"server.js",
|
|
|
|
"static-html.js"
|
|
|
|
],
|
2022-03-18 17:35:45 -05:00
|
|
|
"scripts": {
|
2022-07-08 16:47:01 -05: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 14:15:57 -05:00
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
2024-01-31 09:58:44 -05:00
|
|
|
"test": "astro-scripts test \"test/**/*.test.js\""
|
2022-03-18 17:35:45 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-03-14 03:54:05 -05:00
|
|
|
"@vitejs/plugin-vue": "^5.0.4",
|
2023-11-17 09:02:05 -05:00
|
|
|
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
2023-11-20 23:09:19 -05:00
|
|
|
"@vue/compiler-sfc": "^3.3.8"
|
2022-03-18 17:35:45 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-11-20 23:09:19 -05:00
|
|
|
"@types/chai": "^4.3.10",
|
2022-03-18 17:35:45 -05:00
|
|
|
"astro": "workspace:*",
|
|
|
|
"astro-scripts": "workspace:*",
|
2023-11-08 02:44:02 -05:00
|
|
|
"cheerio": "1.0.0-rc.12",
|
2023-11-20 23:09:19 -05:00
|
|
|
"linkedom": "^0.16.4",
|
2024-02-28 10:20:17 -05:00
|
|
|
"vite": "^5.1.4",
|
2023-11-20 23:09:19 -05:00
|
|
|
"vue": "^3.3.8"
|
2022-03-18 17:35:45 -05:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2023-12-07 10:34:14 -05:00
|
|
|
"astro": "^4.0.0",
|
2023-02-17 09:16:25 -05:00
|
|
|
"vue": "^3.2.30"
|
2022-03-18 17:35:45 -05:00
|
|
|
},
|
|
|
|
"engines": {
|
2023-07-24 13:47:07 -05:00
|
|
|
"node": ">=18.14.1"
|
2023-10-03 09:25:25 -05:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"provenance": true
|
2022-03-18 17:35:45 -05:00
|
|
|
}
|
|
|
|
}
|