forked from zoontek/react-native-edge-to-edge
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 1.99 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
79
80
81
82
83
84
85
86
{
"name": "@react-native-oh-tpl/react-native-bars",
"version": "2.4.3-0.0.3",
"license": "MIT",
"description": "Components to control your app status and navigation bars.",
"author": "Mathieu Acthernoene <[email protected]>",
"homepage": "https://github.com/zoontek/react-native-bars",
"main": "dist/commonjs/index.js",
"module": "dist/module/index.js",
"types": "dist/typescript/index.d.ts",
"files": [
"harmony",
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/react-native-oh-library/react-native-bars.git"
},
"harmony": {
"alias": "react-native-bars",
"codegenConfig": {
"specPaths": [
"./src"
]
}
},
"keywords": [
"navigation-bar",
"navigationbar",
"react",
"react-native",
"status-bar",
"statusbar",
"system-bar",
"system-bars",
"systembar",
"systembars",
"harmony"
],
"scripts": {
"format": "prettier '**/*' --ignore-unknown --write",
"typecheck": "tsc --noEmit",
"build": "bob build",
"prepack": "yarn format --write=false --check && 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.1.0",
"react-native": ">=0.70.0",
"react-native-bars": "^2.4.3"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@types/react": "^18.2.47",
"prettier": "^3.1.1",
"prettier-plugin-organize-imports": "^3.2.4",
"react": "18.2.0",
"react-native": "0.73.1",
"react-native-builder-bob": "^0.23.2",
"react-native-bars": "^2.4.3",
"typescript": "^5.3.3"
},
"codegenConfig": {
"name": "RNBarsSpec",
"type": "modules",
"jsSrcsDir": "./src",
"android": {
"javaPackageName": "com.zoontek.rnbars"
}
}
}