-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "@pivanov/vite-plugin-svg-sprite",
"version": "2.1.2",
"description": "A versatile and lightweight Vite plugin for generating SVG sprites from your SVG files, enabling efficient use of SVG symbols in your application.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist && tsc",
"prepublishOnly": "rm -rf dist && npm run build"
},
"keywords": [
"vite",
"vite plugin",
"svg",
"svg sprite"
],
"author": "pivanov",
"license": "MIT",
"homepage": "https://github.com/pivanov/vite-plugin-svg-sprite",
"bugs": {
"url": "https://github.com/pivanov/vite-plugin-svg-sprite/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pivanov/vite-plugin-svg-sprite.git"
},
"peerDependencies": {
"vite": "^2 || ^3 || ^4 || ^5 || ^6"
},
"dependencies": {
"cheerio": "^1.0.0",
"chokidar": "^4.0.1",
"lodash.debounce": "^4.0.8",
"svgo": "^3.3.2",
"typescript": "^5.4.5"
},
"devDependencies": {
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^22.7.4",
"vite": "^5.4.8"
},
"contributors": [
{
"name": "Dennis Wissel",
"email": "[email protected]"
}
]
}