1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "name": "@vitejs/plugin-vue",
- "version": "5.1.4",
- "type": "commonjs",
- "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.5",
- "@jridgewell/trace-mapping": "^0.3.25",
- "debug": "^4.3.6",
- "rollup": "^4.21.3",
- "slash": "^5.1.0",
- "source-map-js": "^1.2.0",
- "vite": "^5.4.3",
- "vue": "^3.5.3"
- },
- "scripts": {
- "dev": "unbuild --stub",
- "build": "unbuild && pnpm run patch-cjs",
- "patch-cjs": "tsx ../../scripts/patchCJS.ts"
- }
- }
|