unplugin-vue
Version:
Transform Vue 3 SFC to JavaScript.
105 lines • 2.51 kB
JSON
{
"name": "unplugin-vue",
"version": "7.0.1",
"description": "Transform Vue 3 SFC to JavaScript.",
"type": "module",
"keywords": [
"vue",
"sfc",
"unplugin",
"vite",
"webpack",
"rollup",
"esbuild"
],
"license": "MIT",
"homepage": "https://github.com/unplugin/unplugin-vue#readme",
"bugs": {
"url": "https://github.com/unplugin/unplugin-vue/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-vue.git"
},
"author": "三咲智子 Kevin Deng <sxzz@sxzz.moe>",
"funding": "https://github.com/sponsors/sxzz",
"files": [
"*.d.ts",
"dist"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./vite": "./dist/vite.js",
"./webpack": "./dist/webpack.js",
"./rspack": "./dist/rspack.js",
"./rollup": "./dist/rollup.js",
"./rolldown": "./dist/rolldown.js",
"./esbuild": "./dist/esbuild.js",
"./farm": "./dist/farm.js",
"./api": "./dist/api.js",
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"peerDependencies": {
"vue": "^3.2.25"
},
"dependencies": {
"@vue/reactivity": "^3.5.18",
"debug": "^4.4.1",
"unplugin": "^2.3.5",
"vite": "^7.0.6"
},
"devDependencies": {
"@babel/types": "^7.28.2",
"@farmfe/core": "2.0.0-nightly-20250411141103",
"@jridgewell/gen-mapping": "^0.3.12",
"@jridgewell/trace-mapping": "^0.3.29",
"@sxzz/eslint-config": "^7.1.2",
"@sxzz/prettier-config": "^2.2.3",
"@sxzz/test-utils": "^0.5.9",
"@types/debug": "^4.1.12",
"@types/node": "^24.2.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/ui": "^3.2.4",
"bumpp": "^10.2.2",
"esbuild": "^0.25.8",
"eslint": "^9.32.0",
"fast-glob": "^3.3.3",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"rollup": "^4.46.2",
"slash": "^5.1.0",
"source-map-js": "^1.2.1",
"tsdown": "^0.13.3",
"typescript": "^5.9.2",
"unplugin-oxc": "^0.4.8",
"vitest": "^3.2.4",
"vue": "^3.6.0-alpha.2",
"webpack": "^5.101.0"
},
"engines": {
"node": ">=20.19.0"
},
"resolutions": {
"rolldown": "nightly"
},
"prettier": "@sxzz/prettier-config",
"scripts": {
"test": "vitest",
"build": "tsdown",
"dev": "tsdown --watch",
"release": "bumpp",
"lint": "eslint --max-warnings 0 .",
"typecheck": "tsc --noEmit"
}
}