Warp/node_modules/@vitejs/plugin-vue/package.json

49 lines
1.2 KiB
JSON
Raw Normal View History

2024-01-05 12:14:38 +00:00
{
"name": "@vitejs/plugin-vue",
2024-01-31 06:33:19 +00:00
"version": "5.0.3",
2024-01-05 12:14:38 +00:00
"license": "MIT",
"author": "Evan You",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vitejs/vite-plugin-vue.git",
"directory": "packages/plugin-vue"
},
"bugs": {
"url": "https://github.com/vitejs/vite-plugin-vue/issues"
},
"homepage": "https://github.com/vitejs/vite-plugin-vue/tree/main/packages/plugin-vue#readme",
"peerDependencies": {
"vite": "^5.0.0",
"vue": "^3.2.25"
},
"devDependencies": {
"@jridgewell/gen-mapping": "^0.3.3",
"@jridgewell/trace-mapping": "^0.3.20",
"debug": "^4.3.4",
2024-01-31 06:33:19 +00:00
"rollup": "^4.9.2",
2024-01-05 12:14:38 +00:00
"slash": "^5.1.0",
"source-map-js": "^1.0.2",
2024-01-31 06:33:19 +00:00
"vite": "^5.0.10",
"vue": "^3.4.5"
2024-01-05 12:14:38 +00:00
},
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild && pnpm run patch-cjs",
"patch-cjs": "tsx ../../scripts/patchCJS.ts"
}
}