-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 999 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "react-native-prevent-screenshots",
"title": "React Native Prevent Screenshot",
"version": "1.0.0",
"description": "Prevent Screenshots in your React Native app when needed. 🦄",
"main": "lib/index.js",
"files": [
"README.md",
"LICENSE",
"android",
"lib"
],
"scripts": {
"dev": "tsc -w",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a7med-mahmoud/react-native-prevent-screenshots.git",
"baseUrl": "https://github.com/a7med-mahmoud/react-native-prevent-screenshots"
},
"keywords": [
"react-native"
],
"author": {
"name": "Ahmed Mahmoud",
"email": "[email protected]"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": ">=16.8.1",
"react-native": ">=0.60.0-rc.0 <1.0.x"
},
"devDependencies": {
"@types/react": "*",
"@types/react-native": "*",
"typescript": "^4.4.4"
}
}