-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
71 lines (71 loc) · 2.08 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "react-native-heroicons",
"version": "4.0.0",
"description": "React Native components for heroicons",
"files": [
"solid",
"outline",
"mini",
"micro"
],
"sideEffects": false,
"scripts": {
"fetch": "rimraf heroicons/ && git clone https://github.com/tailwindlabs/heroicons/",
"gen": "npm run fetch && ts-node --project bin/tsconfig.json --files bin/build.ts",
"gen:no": "ts-node --project bin/tsconfig.json --files bin/build.ts",
"cleanup": "./cleanup.sh",
"compile": "rimraf solid && rimraf outline && rimraf mini && rimraf micro && node compile.js && tsc --emitDeclarationOnly --outDir . && cp solid/*.d.ts solid/esm && cp outline/*.d.ts outline/esm && cp mini/*.d.ts mini/esm && cp micro/*.d.ts micro/esm",
"build:fetch": "npm run gen && npm run compile && npm run cleanup",
"build": "npm run compile && npm run cleanup",
"release": "npm run build:fetch && release-it"
},
"keywords": [
"react",
"react native",
"heroicons",
"heroiconsui"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ecklf/react-native-heroicons"
},
"bugs": {
"url": "https://github.com/ecklf/react-native-heroicons/issues"
},
"author": "ecklf",
"license": "MIT",
"devDependencies": {
"@svgr/babel-preset": "^8.1.0",
"@svgr/core": "^6.5.1",
"@svgr/plugin-jsx": "^6.5.1",
"@svgr/plugin-prettier": "^6.5.1",
"@svgr/plugin-svgo": "^6.5.1",
"@types/node": "^18.19.3",
"@types/react": "^18.2.45",
"@types/react-native": "^0.70.19",
"camelcase": "^6.3.0",
"esbuild": "^0.13.15",
"junk": "^3.1.0",
"react": "^18.2.0",
"react-native-svg": "^13.14.0",
"release-it": "^15.6.0",
"rimraf": "^3.0.2",
"tiny-glob": "^0.2.9",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": ">=16.8",
"react-native-svg": ">=9"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": false
},
"github": {
"release": true
}
}
}