-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) 路 2.68 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) 路 2.68 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-native-cover",
"version": "0.1.10",
"description": "馃敀 Native privacy cover for React Native. Hides your app behind an overlay in the iOS App Switcher and Android Recents screen.",
"main": "./lib/commonjs/index.js",
"module": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"scripts": {
"typecheck": "tsc --noEmit",
"clean": "git clean -dfX",
"build": "npm run typecheck && bob build",
"specs": "nitrogen --logLevel=\"debug\"",
"codegen": "nitrogen --logLevel=\"debug\" && npm run build",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepublishOnly": "npm run codegen"
},
"engines": {
"node": ">=22"
},
"keywords": [
"react-native",
"privacy",
"cover",
"app-switcher",
"recents",
"overlay",
"ios",
"android"
],
"files": [
"src",
"react-native.config.js",
"lib",
"nitrogen",
"nitro.json",
"android/build.gradle",
"android/fix-prefab.gradle",
"android/gradle.properties",
"android/CMakeLists.txt",
"android/src",
"ios/**/*.h",
"ios/**/*.m",
"ios/**/*.mm",
"ios/**/*.cpp",
"ios/**/*.swift",
"*.podspec",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/amillez/react-native-cover.git"
},
"author": "amillez",
"license": "MIT",
"bugs": {
"url": "https://github.com/amillez/react-native-cover/issues"
},
"homepage": "https://github.com/amillez/react-native-cover#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@types/react": "19.2.0",
"nitrogen": "0.35.6",
"react": "19.2.5",
"react-native": "0.85.3",
"react-native-builder-bob": "^0.40.18",
"react-native-nitro-modules": "0.35.6",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-nitro-modules": "*"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.json"
}
]
]
}
}