-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
99 lines (99 loc) · 2.29 KB
/
package.json
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
{
"name": "unplugin-vue",
"version": "6.0.0",
"packageManager": "[email protected]",
"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": "三咲智子 <[email protected]>",
"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",
"./api": "./dist/api.js",
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"scripts": {
"test": "vitest",
"build": "tsdown",
"dev": "tsdown --watch",
"release": "bumpp",
"lint": "eslint --max-warnings 0 .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"vue": "^3.2.25"
},
"dependencies": {
"@vue/reactivity": "^3.5.13",
"debug": "^4.4.0",
"unplugin": "^2.1.2",
"vite": "^6.1.0"
},
"devDependencies": {
"@babel/types": "^7.26.7",
"@jridgewell/gen-mapping": "^0.3.8",
"@jridgewell/trace-mapping": "^0.3.25",
"@sxzz/eslint-config": "^5.0.1",
"@sxzz/prettier-config": "^2.1.1",
"@sxzz/test-utils": "^0.5.1",
"@types/debug": "^4.1.12",
"@types/node": "^22.13.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/ui": "^3.0.5",
"bumpp": "^10.0.2",
"esbuild": "^0.24.2",
"eslint": "^9.19.0",
"fast-glob": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.34.4",
"rollup-plugin-esbuild": "^6.2.0",
"slash": "^5.1.0",
"source-map-js": "^1.2.1",
"tsdown": "^0.5.7",
"typescript": "^5.7.3",
"vitest": "^3.0.5",
"webpack": "^5.97.1"
},
"engines": {
"node": ">=18.0.0"
},
"prettier": "@sxzz/prettier-config"
}