-
-
Notifications
You must be signed in to change notification settings - Fork 260
/
package.json
114 lines (114 loc) · 3.01 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "react-native-bootsplash",
"version": "6.3.2",
"license": "MIT",
"description": "Display a bootsplash on your app starts. Hide it when you want.",
"author": "Mathieu Acthernoene <[email protected]>",
"homepage": "https://github.com/zoontek/react-native-bootsplash",
"main": "dist/commonjs/index.js",
"module": "dist/module/index.js",
"types": "dist/typescript/index.d.ts",
"files": [
"dist",
"android",
"ios",
"src",
"!android/build",
"!android/.cxx",
"!android/.gradle",
"!ios/build",
"!src/addon",
"RNBootSplash.podspec",
"app.plugin.js",
"cli.js",
"react-native.config.js"
],
"bin": {
"react-native-bootsplash": "./cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/zoontek/react-native-bootsplash.git"
},
"keywords": [
"react-native-bootsplash",
"react-native",
"boot-splash",
"bootsplash",
"boot-screen",
"bootscreen",
"splash-screen",
"splashscreen",
"launch-screen",
"launchscreen"
],
"scripts": {
"clean": "rm -rf dist",
"format": "prettier '**/*' -u -w",
"lint": "eslint --ext ts,tsx ./src",
"typecheck": "tsc --noEmit",
"build": "yarn clean && bob build && rm -rf dist/*/package.json",
"prepack": "prettier '**/*' -u -c && yarn lint && yarn typecheck && yarn build && node ../obfuscator"
},
"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"
},
"dependencies": {
"@expo/config-plugins": "^8.0.0 || ^9.0.0",
"@react-native-community/cli-config-android": "^15.0.0",
"@react-native-community/cli-config-apple": "^15.0.0",
"@react-native-community/cli-tools": "^15.0.0",
"commander": "^12.1.0",
"detect-indent": "^6.1.0",
"fs-extra": "^11.2.0",
"node-html-parser": "^6.1.13",
"picocolors": "^1.1.1",
"prettier": "^3.3.3",
"react-native-is-edge-to-edge": "^1.1.6",
"sharp": "^0.32.6",
"ts-dedent": "^2.2.0",
"xml-formatter": "^3.6.3"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@react-native-community/cli-types": "^15.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.17.6",
"@types/react": "^18.2.6",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier-plugin-organize-imports": "^4.1.0",
"react": "18.3.1",
"react-native": "0.76.1",
"react-native-builder-bob": "^0.31.0",
"semver": "^7.6.3",
"typescript": "^5.6.3"
},
"codegenConfig": {
"name": "RNBootSplashSpec",
"type": "modules",
"jsSrcsDir": "./src",
"android": {
"javaPackageName": "com.zoontek.rnbootsplash"
}
}
}