-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.74 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
49
50
51
52
53
54
55
56
57
58
{
"name": "@ifrc-go/icons",
"version": "2.0.1",
"description": "IFRC-GO icons library for React.",
"keywords": [
"ifrc-go",
"icons",
"react"
],
"homepage": "https://github.com/IFRCGo/go-icons#readme",
"repository": {
"type": "git",
"url": "https://github.com/IFRCGo/go-icons.git"
},
"bugs": {
"url": "https://github.com/IFRCGo/go-icons/issues"
},
"author": "samshara <[email protected]",
"license": "MIT",
"files": [
"/dist"
],
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/index.js",
"types": "./dist/*.d.ts"
},
"scripts": {
"prepack": "yarn build",
"build": "rimraf ./dist && rimraf ./build && tsc && node ./build/build.js",
"optimize": "svgo --config=svgo.config.js -f ./new -o ./icons-optimized --pretty --indent=4"
},
"peerDependencies": {
"react": ">= 16"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-transform-react-jsx": "^7.21.0",
"@svgr/core": "^7.0.0",
"@svgr/plugin-jsx": "^7.0.0",
"@svgr/plugin-svgo": "^7.0.0",
"@types/babel__core": "^7.20.0",
"@types/node": "^18.16.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"rimraf": "^5.0.0",
"svgo": "^3.0.2",
"typescript": "^5.0.4"
}
}