-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.74 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
{
"name": "vite-plugin-svg-spritemap",
"version": "1.0.1",
"description": "Generates a SVG spritemap from multiple .svg files",
"author": "German Makarov <cxdcjs@gmail.com>",
"private": false,
"license": "MIT",
"homepage": "https://github.com/g-makarov/vite-plugin-svg-spritemap",
"repository": {
"type": "git",
"url": "https://github.com/g-makarov/vite-plugin-svg-spritemap"
},
"bugs": {
"url": "https://github.com/g-makarov/vite-plugin-svg-spritemap/issues"
},
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.esm.js",
"types": "./dist/index.d.ts"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.esm.js",
"unpkg": "./dist/index.umd.js",
"files": [
"dist",
"src",
"tsconfig.json"
],
"scripts": {
"build": "microbundle",
"prettier": "prettier --write src/**/*",
"prepublishOnly": "vitest --run && npm run build",
"postversion": "git push && git push --tags",
"test": "vitest --run",
"test:watch": "vitest"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"microbundle": "^0.15.1",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"vite": "^5.4.7",
"vitest": "^2.1.1"
},
"dependencies": {
"chokidar": "^4.0.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"node-html-parser": "^6.1.13",
"svgo": "^3.3.2"
},
"peerDependencies": {
"vite": "^2 || ^3 || ^4 || ^5"
},
"keywords": [
"vite-plugin",
"vite",
"plugin",
"svg",
"spritemap",
"svg-spritemap",
"symbol",
"symbols",
"svg-symbol",
"svg-sprite",
"sprite",
"sprites",
"icon",
"icons",
"typescript"
]
}