-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.51 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "unplugin-vue",
"type": "module",
"version": "7.1.1",
"packageManager": "pnpm@10.28.1",
"description": "Transform Vue 3 SFC to JavaScript.",
"author": "Kevin Deng <sxzz@sxzz.moe>",
"license": "MIT",
"funding": "https://github.com/sponsors/sxzz",
"homepage": "https://github.com/unplugin/unplugin-vue#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-vue.git"
},
"bugs": {
"url": "https://github.com/unplugin/unplugin-vue/issues"
},
"keywords": [
"vue",
"sfc",
"unplugin",
"vite",
"webpack",
"rollup",
"esbuild"
],
"exports": {
".": "./dist/index.mjs",
"./api": "./dist/api.mjs",
"./esbuild": "./dist/esbuild.mjs",
"./farm": "./dist/farm.mjs",
"./rolldown": "./dist/rolldown.mjs",
"./rollup": "./dist/rollup.mjs",
"./rspack": "./dist/rspack.mjs",
"./vite": "./dist/vite.mjs",
"./webpack": "./dist/webpack.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"typesVersions": {
"*": {
"*": [
"./dist/*.d.mts",
"./*"
]
}
},
"files": [
"dist"
],
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"test": "vitest",
"build": "tsdown",
"dev": "tsdown --watch",
"release": "bumpp",
"lint": "eslint --max-warnings 0 .",
"typecheck": "tsgo --noEmit",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"vue": "^3.2.25"
},
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.13",
"@jridgewell/trace-mapping": "^0.3.31",
"@vue/reactivity": "^3.5.27",
"obug": "^2.1.1",
"unplugin": "^3.0.0",
"vite": "^8.0.0-beta.9"
},
"devDependencies": {
"@babel/types": "^7.28.6",
"@farmfe/core": "2.0.0-nightly-20250411141103",
"@sxzz/eslint-config": "^7.5.0",
"@sxzz/prettier-config": "^2.2.6",
"@sxzz/test-utils": "^0.5.15",
"@types/node": "^25.0.10",
"@typescript/native-preview": "7.0.0-dev.20260122.3",
"@vitejs/plugin-vue": "^6.0.3",
"@vitest/ui": "^4.0.17",
"bumpp": "^10.4.0",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"fast-glob": "^3.3.3",
"premove": "^4.0.0",
"prettier": "^3.8.1",
"rollup": "^4.56.0",
"slash": "^5.1.0",
"source-map-js": "^1.2.1",
"tsdown": "^0.20.0",
"tsdown-preset-sxzz": "^0.3.1",
"typescript": "^5.9.3",
"unplugin-oxc": "^0.5.7",
"vitest": "^4.0.17",
"vue": "^3.6.0-alpha.2",
"webpack": "^5.104.1"
},
"prettier": "@sxzz/prettier-config"
}