-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
62 lines (62 loc) · 1.37 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
{
"name": "react-native-hole-view",
"version": "3.0.0-alpha4",
"description": "Component to made an overlay with touch-through hole",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "rm -rf ./dist && tsc -p tsconfig.json",
"preversion": "npm run build",
"prepare": "install-peers"
},
"files": [
"android",
"ios",
"src",
"dist",
"react-native-hole-view.podspec"
],
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react",
"mobile",
"ios",
"android",
"ui",
"vector",
"retina",
"hole",
"mask"
],
"author": "ibitcy",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.3.2",
"@types/react-native": "^0.69.2",
"install-peers-cli": "2.2.0",
"typescript": "4.2.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/ibitcy/react-native-hole-view.git"
},
"bugs": {
"url": "https://github.com/ibitcy/react-native-hole-view/issues"
},
"homepage": "https://github.com/ibitcy/react-native-hole-view#readme",
"codegenConfig": {
"name": "RNHoleView",
"type": "components",
"jsSrcsDir": "./src/codegenSpec"
}
}