-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "vite-plugin-svgr-component",
"version": "1.0.1",
"description": "⚛️ Vite zero-config customizable plugin to import SVG and transform it to a React component in a simple way",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"client.d.ts"
],
"scripts": {
"build": "rm -rf lib && tsc",
"prepublish": "npm run build",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chempogonzalez/vite-plugin-svgr-component.git"
},
"keywords": [
"vite",
"plugin",
"svgr",
"react",
"svg",
"component"
],
"author": "Chempo",
"license": "ISC",
"bugs": {
"url": "https://github.com/chempogonzalez/vite-plugin-svgr-component/issues"
},
"homepage": "https://github.com/chempogonzalez/vite-plugin-svgr-component#readme",
"devDependencies": {
"@types/micromatch": "^4.0.2",
"@types/node": "17.0.16",
"typescript": "4.5.5",
"vite": "2.7.13"
},
"dependencies": {
"@svgr/core": "6.2.1",
"micromatch": "4.0.4"
},
"peerDependencies": {
"react": ">= 17.0.2",
"vite": ">= 2.7.13"
}
}