-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 1.94 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
{
"name": "vite-plugin-svg4vue",
"version": "4.0.0",
"description": "A vite plugin which can transform svg icon to vue component, support optimization via SVGO, easy to customize svg color and size.",
"type": "module",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.esm.js",
"require": "./lib/index.cjs.js"
}
},
"files": [
"lib",
"client.d.ts",
"types"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"release": "npm run build && changelogen --release && npm publish --access=public && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yisibell/vite-plugin-svg4vue.git"
},
"keywords": [
"vite",
"vite-plugin",
"vue",
"svg",
"svgo",
"svg-component",
"svg-icon",
"icon",
"vite-svg-loader"
],
"author": {
"name": "elenh",
"email": "yisiwings@163.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/yisibell/vite-plugin-svg4vue/issues"
},
"homepage": "https://github.com/yisibell/vite-plugin-svg4vue#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-typescript": "^11.1.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"changelogen": "~0.5.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"rollup": "^4.4.1",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.6.2",
"typescript": "~5.2.2",
"vite": "~6.0.1",
"vue": "^3.3.8"
},
"dependencies": {
"svgo": "^3.0.3",
"svgo-extra": "^2.1.0",
"ufo": "^1.3.2"
},
"peerDependencies": {
"vite": "^4.0.2 || >=5.0.0",
"vue": "^2.7.14 || ^3.2.45"
}
}