-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.06 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
{
"name": "vite-plugin-iconfont-css",
"version": "0.1.3",
"description": "A Plugin for auto import iconfont css.",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"dev": "unbuild --stub",
"build": "rimraf dist && unbuild",
"play": "vite playground",
"test:unit": "vitest",
"prepublishOnly": "bumpp --commit --push --tag && pnpm build",
"release": "pnpm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BTBMan/vite-plugin-iconfont-css.git"
},
"keywords": [
"@ant-design/icons-vue",
"iconfont",
"css"
],
"files": [
"dist",
"package.json",
"README.md"
],
"author": "BTB",
"license": "MIT",
"devDependencies": {
"@types/estree": "^0.0.51",
"@types/micromatch": "^4.0.2",
"bumpp": "^7.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"typescript": "^4.6.2",
"unbuild": "^0.7.2",
"vite": "^2.9.0",
"vitest": "^0.8.1"
},
"dependencies": {
"acorn": "^8.7.0",
"micromatch": "^4.0.5"
}
}