-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·36 lines (36 loc) · 937 Bytes
/
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
{
"name": "vite-plugin-magical-svg",
"license": "BSD-3-Clause",
"version": "1.3.0",
"description": "An all-in-one Vite plugin that magically makes working with SVGs and bundling them a breeze",
"author": "Cynthia <[email protected]> (https://cynthia.dev)",
"repository": "github:cyyynthia/vite-plugin-magical-svg",
"bugs": "https://github.com/cyyynthia/vite-plugin-magical-svg/issues",
"funding": "https://github.com/sponsors/cyyynthia",
"keywords": [
"vite-plugin",
"svg"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"packageManager": "[email protected]",
"scripts": {
"prepack": "tsc",
"build": "tsc"
},
"dependencies": {
"magic-string": "^0.30.10",
"svgo": "^3.3.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@types/xml2js": "^0.4.14",
"rollup": "^2.79.1",
"typescript": "^5.5.3",
"vite": "^3.2.10"
},
"peerDependencies": {
"vite": ">= 3.0.0"
}
}