-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
27 lines (27 loc) · 911 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
{
"name": "tempo-quill-icons",
"version": "1.0.0",
"main": "web/index.jsx",
"repository": "https://github.com/yourtempo/tempo-iconset.git",
"author": "Leo Bernard <[email protected]>",
"license": "MIT",
"devDependencies": {
"@svgr/cli": "^5.5.0",
"@types/lodash": "^4.14.172",
"@types/node": "^16.7.1",
"@types/react": "^17.0.19",
"lodash": "^4.17.21",
"react-native-svg": "^12.1.1",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": ">= 16"
},
"scripts": {
"build:web": "yarn svgr --typescript --replace-attr-values \"#535358=currentColor\" -d .build/web icons",
"build:rn": "yarn svgr --native --typescript --replace-attr-values \"#535358=currentColor\" -d .build/rn icons",
"build": "yarn build:web && yarn build:rn && yarn tsc && rm -rf .build",
"publish": "yarn build && (cd dist && npm publish)"
}
}