forked from unplugin/unplugin-vue-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.08 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
124
125
126
{
"name": "unplugin-vue-components",
"version": "0.19.6",
"packageManager": "pnpm@7.1.5",
"description": "Components auto importing for Vue",
"homepage": "https://github.com/antfu/unplugin-vue-components",
"bugs": "https://github.com/antfu/unplugin-vue-components/issues",
"license": "MIT",
"author": "antfu <anthonyfu117@hotmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/antfu/unplugin-vue-components"
},
"funding": "https://github.com/sponsors/antfu",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./*": "./*",
"./nuxt": {
"require": "./dist/nuxt.js",
"import": "./dist/nuxt.mjs"
},
"./resolvers": {
"require": "./dist/resolvers.js",
"import": "./dist/resolvers.mjs"
},
"./rollup": {
"require": "./dist/rollup.js",
"import": "./dist/rollup.mjs"
},
"./types": {
"require": "./dist/types.js",
"import": "./dist/types.mjs"
},
"./vite": {
"require": "./dist/vite.js",
"import": "./dist/vite.mjs"
},
"./webpack": {
"require": "./dist/webpack.js",
"import": "./dist/webpack.mjs"
},
"./esbuild": {
"require": "./dist/esbuild.js",
"import": "./dist/esbuild.mjs"
}
},
"files": [
"dist",
"*.d.ts"
],
"typesVersions": {
"*": {
"*": [
"./dist/*"
]
}
},
"scripts": {
"build": "tsup && esno scripts/postbuild.ts",
"dev": "tsup --watch src",
"example:build": "npm -C examples/vite-vue3 run build",
"example:dev": "npm -C examples/vite-vue3 run dev",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"release": "bumpp --commit --tag --push",
"test": "vitest",
"test:update": "vitest --u"
},
"peerDependencies": {
"@babel/parser": "^7.15.8",
"@babel/traverse": "^7.15.4",
"vue": "2 || 3"
},
"peerDependenciesMeta": {
"@babel/parser": {
"optional": true
},
"@babel/traverse": {
"optional": true
}
},
"dependencies": {
"@antfu/utils": "^0.5.1",
"@rollup/pluginutils": "^4.2.1",
"chokidar": "^3.5.3",
"debug": "^4.3.4",
"fast-glob": "^3.2.11",
"local-pkg": "^0.4.1",
"magic-string": "^0.26.1",
"minimatch": "^5.0.1",
"resolve": "^1.22.0",
"unplugin": "^0.6.3"
},
"devDependencies": {
"@antfu/eslint-config": "^0.23.0",
"@babel/parser": "^7.17.10",
"@babel/traverse": "^7.17.10",
"@babel/types": "^7.17.10",
"@types/debug": "^4.1.7",
"@types/minimatch": "^3.0.5",
"@types/node": "^17.0.31",
"@types/resolve": "^1.20.2",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"bumpp": "^7.1.1",
"compare-versions": "^4.1.3",
"element-plus": "^2.2.0",
"eslint": "^8.15.0",
"esno": "^0.14.1",
"pathe": "^0.3.0",
"rollup": "^2.72.1",
"tsup": "5.12.7",
"typescript": "^4.6.4",
"vite": "^2.9.8",
"vitest": "^0.12.1",
"vue": "3.2.33"
},
"engines": {
"node": ">=14"
}
}