-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1020 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1020 Bytes
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
{
"name": "react-native-config-info",
"version": "1.0.0",
"description": "Read configuration values from Info.plist (iOS) or from resources strings.xml (Android)",
"license": "MIT",
"author": {
"name": "Rémy Abitbol",
"url": "https://github.com/remscodes"
},
"scripts": {},
"type": "module",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src",
"ios",
"android/src",
"android/build.gradle",
"RNConfigInfo.podspec"
],
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/remscodes/react-native-config-info",
"repository": {
"type": "git",
"url": "https://github.com/remscodes/react-native-config-info"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"react-native": ">=0.70.15"
},
"devDependencies": {
"@react-native/typescript-config": "^0.76.1"
},
"keywords": [
"react-native",
"config",
"info",
"ios",
"android"
],
"packageManager": "pnpm@9.12.3"
}