forked from unplugin/unplugin-vue-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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
{
"name": "vite-plugin-components",
"version": "0.10.3",
"description": "Components auto importing for Vite",
"homepage": "https://github.com/antfu/vite-plugin-components",
"bugs": "https://github.com/antfu/vite-plugin-components/issues",
"repository": {
"type": "git",
"url": "https://github.com/antfu/vite-plugin-components"
},
"funding": "https://github.com/sponsors/antfu",
"license": "MIT",
"author": "antfu <[email protected]>",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm",
"dev": "npm run build -- --watch",
"example:build": "npm -C examples/vue3 run build",
"example:dev": "npm -C examples/vue3 run dev",
"prepublishOnly": "npm run build",
"release": "npx git-ensure -a && npx bumpp --commit --tag --push",
"test": "jest",
"test:update": "jest --u"
},
"dependencies": {
"chokidar": "^3.5.1",
"debug": "^4.3.2",
"fast-glob": "^3.2.5",
"magic-string": "^0.25.7",
"minimatch": "^3.0.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.6.5",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.23",
"@types/minimatch": "^3.0.4",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"eslint": "^7.27.0",
"jest": "^27.0.1",
"rollup": "^2.50.2",
"standard-version": "^9.3.0",
"ts-jest": "^27.0.1",
"tsup": "^4.11.1",
"typescript": "^4.3.2",
"vite": "^2.3.4"
},
"peerDependencies": {
"vite": "^2.0.0-beta.69"
}
}