实现打包
Some checks failed
CI Pipeline / build (push) Failing after 1m9s

This commit is contained in:
2025-08-11 20:13:16 +08:00
parent ba2ec3611f
commit 6e6f51765c
896 changed files with 39834 additions and 186776 deletions

View File

@@ -1,23 +1,24 @@
{
"name": "@vitejs/plugin-vue",
"version": "5.2.4",
"type": "commonjs",
"version": "6.0.1",
"type": "module",
"license": "MIT",
"author": "Evan You",
"description": "The official plugin for Vue SFC support in Vite.",
"keywords": [
"vite",
"vite-plugin",
"vue"
],
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
".": "./dist/index.js",
"./package.json": "./package.json"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
"node": "^20.19.0 || >=22.12.0"
},
"repository": {
"type": "git",
@@ -29,22 +30,25 @@
},
"homepage": "https://github.com/vitejs/vite-plugin-vue/tree/main/packages/plugin-vue#readme",
"peerDependencies": {
"vite": "^5.0.0 || ^6.0.0",
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0",
"vue": "^3.2.25"
},
"devDependencies": {
"@jridgewell/gen-mapping": "^0.3.8",
"@jridgewell/trace-mapping": "^0.3.25",
"debug": "^4.4.0",
"rollup": "^4.40.2",
"@jridgewell/gen-mapping": "^0.3.12",
"@jridgewell/trace-mapping": "^0.3.29",
"debug": "^4.4.1",
"rollup": "^4.45.1",
"slash": "^5.1.0",
"source-map-js": "^1.2.1",
"vite": "^6.3.5",
"vue": "^3.5.13"
"tsdown": "^0.13.0",
"vite": "^7.0.5",
"vue": "^3.5.18"
},
"dependencies": {
"@rolldown/pluginutils": "1.0.0-beta.29"
},
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild && pnpm run patch-cjs",
"patch-cjs": "tsx ../../scripts/patchCJS.ts"
"dev": "tsdown --watch",
"build": "tsdown"
}
}