-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.16 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.16 KB
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
{
"name": "icongo",
"version": "1.2.0",
"homepage": "http://icongo.github.io",
"description": "SVG icon to react component.",
"sideEffects": false,
"author": "jaywcjlove",
"license": "MIT",
"type": "module",
"main": "./lib/index.js",
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"s2r": "lib/cli.js",
"icongo": "lib/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/icongo.git"
},
"scripts": {
"watch": "tsbb watch",
"build": "tsbb build"
},
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"keywords": [
"icongo",
"react",
"svg",
"svg-to-react"
],
"files": [
"README.md",
"lib",
"src"
],
"dependencies": {
"@svgr/babel-plugin-remove-jsx-attribute": "^7.0.0",
"@svgr/babel-preset": "^7.0.0",
"@svgr/core": "^8.0.0",
"@svgr/plugin-jsx": "^7.0.0",
"@svgr/plugin-prettier": "^7.0.0",
"@svgr/plugin-svgo": "^7.0.0",
"@types/fs-extra": "^11.0.0",
"@types/minimist": "^1.2.2",
"@types/svgo": "^3.0.0",
"fs-extra": "^11.0.0",
"minimist": "^1.2.6",
"recursive-readdir-files": "^2.3.0"
}
}