-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 2.66 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "unplugin-vue2",
"version": "0.1.1",
"packageManager": "[email protected]",
"author": "Ray <[email protected]> (@so1ve)",
"description": "Unplugin for Vue 2.7+.",
"keywords": [
"nuxt",
"rollup",
"rspack",
"transform",
"unplugin",
"vite",
"webpack"
],
"homepage": "https://github.com/unplugin/unplugin-vue2#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-vue2.git"
},
"bugs": {
"url": "https://github.com/unplugin/unplugin-vue2/issues"
},
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./*": "./*",
"./esbuild": {
"types": "./dist/esbuild.d.ts",
"require": "./dist/esbuild.cjs",
"import": "./dist/esbuild.mjs"
},
"./rollup": {
"types": "./dist/rollup.d.ts",
"require": "./dist/rollup.cjs",
"import": "./dist/rollup.mjs"
},
"./rspack": {
"types": "./dist/rspack.d.ts",
"require": "./dist/rspack.cjs",
"import": "./dist/rspack.mjs"
},
"./vite": {
"types": "./dist/vite.d.ts",
"require": "./dist/vite.cjs",
"import": "./dist/vite.mjs"
},
"./webpack": {
"types": "./dist/webpack.d.ts",
"require": "./dist/webpack.cjs",
"import": "./dist/webpack.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"engines": {
"node": "^14.18.0 || >= 16.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "unbuild",
"lint": "eslint . && prettier . --check",
"lint:fix": "eslint . --fix && prettier . --write",
"prepublishOnly": "nr build",
"release": "bumpp --commit --push --tag && pnpm publish",
"stub": "unbuild --stub",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"unplugin": "^1.3.1"
},
"devDependencies": {
"@antfu/ni": "^0.21.3",
"@so1ve/eslint-config": "^0.120.2",
"@so1ve/prettier-config": "^0.120.2",
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.15.11",
"bumpp": "^9.1.0",
"conventional-changelog-cli": "^2.2.2",
"debug": "^4.3.4",
"enquirer": "^2.3.6",
"eslint": "^8.48.0",
"execa": "^4.1.0",
"fs-extra": "^10.1.0",
"hash-sum": "^2.0.0",
"minimist": "^1.2.6",
"picocolors": "^1.0.0",
"puppeteer": "^14.4.0",
"rollup": "^3.20.4",
"semver": "^7.3.7",
"slash": "^3.0.0",
"source-map-js": "^1.0.2",
"typescript": "^5.0.4",
"unbuild": "^2.0.0",
"vite": "^4.2.1",
"vitest": "^0.33.0",
"vue": "^2.7.0-beta.8",
"webpack": "^5.79.0"
},
"peerDependencies": {
"vue": "^2.7.0-0"
}
}