-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
78 lines (78 loc) · 1.91 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-native-edge-to-edge",
"version": "1.4.3",
"license": "MIT",
"description": "Effortlessly enable edge-to-edge display in React Native",
"author": "Mathieu Acthernoene <zoontek@gmail.com>",
"homepage": "https://github.com/zoontek/react-native-edge-to-edge",
"main": "dist/commonjs/index.js",
"module": "dist/module/index.js",
"types": "dist/typescript/index.d.ts",
"files": [
"dist",
"src",
"app.plugin.js",
"android",
"!android/build",
"!android/.cxx",
"!android/.gradle"
],
"repository": {
"type": "git",
"url": "https://github.com/zoontek/react-native-edge-to-edge.git"
},
"keywords": [
"react",
"react-native",
"edge-to-edge",
"status-bar",
"navigation-bar",
"system-bar",
"system-bars"
],
"scripts": {
"clean": "rm -rf dist",
"format": "prettier '**/*' -u -w",
"typecheck": "tsc --noEmit",
"build": "yarn clean && bob build && rm -rf dist/*/package.json",
"prepack": "prettier '**/*' -u -c && yarn typecheck && yarn build"
},
"react-native-builder-bob": {
"source": "src",
"output": "dist",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports"
]
},
"peerDependencies": {
"react": ">=18.2.0",
"react-native": ">=0.74.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@expo/config-plugins": "^7.0.0 || ^8.0.0 || ^9.0.0",
"@types/react": "^18.2.6",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"react": "18.3.1",
"react-native": "0.77.0",
"react-native-builder-bob": "^0.35.2",
"typescript": "^5.7.2"
},
"codegenConfig": {
"name": "RNEdgeToEdge",
"type": "modules",
"jsSrcsDir": "./src/specs",
"android": {
"javaPackageName": "com.zoontek.rnedgetoedge"
}
}
}