This repository has been archived by the owner on Jun 29, 2022. It is now read-only.
forked from zoontek/react-native-edge-to-edge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.56 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
{
"name": "react-native-bars",
"version": "1.1.1",
"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": [
"/android",
"/src",
"/dist",
"package.json"
],
"repository": {
"type": "git",
"url": "https://github.com/zoontek/react-native-bars.git"
},
"keywords": [
"navigation-bar",
"navigationbar",
"react",
"react-native",
"status-bar",
"statusbar",
"system-bar",
"system-bars",
"systembar",
"systembars"
],
"scripts": {
"format": "prettier '**/*.{js,json,md,ts,tsx}' --write",
"setup-hooks": "git config --local core.hooksPath .hooks",
"prepare": "yarn setup-hooks && bob build"
},
"react-native-builder-bob": {
"source": "src",
"output": "dist",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"prettier": {
"trailingComma": "all"
},
"lint-staged": {
"**/*.{js,json,md,ts,tsx}": "prettier --write"
},
"peerDependencies": {
"react-native": ">=0.65.0"
},
"devDependencies": {
"@types/react-native": "^0.66.8",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"react": "^17.0.2",
"react-native": "^0.66.4",
"react-native-builder-bob": "^0.18.2",
"typescript": "^4.5.3"
}
}