-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 924 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
37
38
39
40
41
42
43
44
{
"name": "vite-plugin-svgo",
"version": "1.6.2",
"description": "Vite plugin to import and compress svg files with SVGO",
"main": "dist/index.js",
"exports": {
"import": "./exports/import.mjs",
"require": "./exports/require.cjs",
"types": "./dist/index.d.ts"
},
"files": [
"/dist",
"/exports"
],
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/r3dDoX/vite-plugin-svgo.git"
},
"keywords": [
"vite",
"vite-plugin",
"svg",
"svgo"
],
"author": "r3dDoX",
"license": "ISC",
"bugs": {
"url": "https://github.com/r3dDoX/vite-plugin-svgo/issues"
},
"homepage": "https://github.com/r3dDoX/vite-plugin-svgo#readme",
"devDependencies": {
"@types/node": "20.10.0"
},
"dependencies": {
"svgo": "3.0.4"
},
"peerDependencies": {
"typescript": ">=4.9.4",
"vite": ">=4.0.2"
}
}