-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "react-icon-system",
"description": "A simple no-nonsense icon system for React",
"keywords": [
"react",
"icons",
"icon system",
"inline svg",
"svg",
"react-icon-system"
],
"version": "1.3.0",
"main": "/lib",
"author": "Kevin Østerkilde <kevin@oesterkilde.dk> (https://oesterkilde.dk/)",
"license": "MIT",
"repository": "git+https://github.com/Kosai106/react-icon-system.git",
"bugs": {
"url": "https://github.com/Kosai106/react-icon-system/issues"
},
"homepage": "https://kosai106.github.io/react-icon-system/",
"files": [
"lib/"
],
"scripts": {
"build": "tsc",
"prepublish": "rm -rf ./lib && npm run build"
},
"peerDependencies": {
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"devDependencies": {
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/webpack-env": "^1.15.2",
"prettier": "^2.1.1",
"typescript": "^3.9.7"
},
"dependencies": {
"svg-inline-loader": "^0.8.2",
"tslib": "^2.0.0"
}
}