-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.49 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.49 KB
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
{
"name": "react-native-hole-view",
"version": "5.0.0",
"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",
"web",
"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",
"ios": {
"components": {
"RNHoleView": {
"className": "RNHoleView"
}
}
}
}
}