-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
31 lines (31 loc) · 838 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
{
"name": "esbuild-plugin-svgr",
"description": "A plugin for esbuild that enables importing *.svg files as React components.",
"version": "3.1.0",
"license": "MIT",
"author": "Kazi Jawad",
"types": "index.d.ts",
"main": "src/index.js",
"files": [
"src",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kazijawad/esbuild-plugin-svgr.git"
},
"bugs": {
"url": "https://github.com/kazijawad/esbuild-plugin-svgr/issues"
},
"homepage": "https://github.com/kazijawad/esbuild-plugin-svgr#readme",
"dependencies": {
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0"
},
"devDependencies": {
"esbuild": "^0.23.0"
},
"peerDependencies": {
"esbuild": "^0.23.0"
}
}