This repository was archived by the owner on Nov 25, 2025. It is now read-only.
forked from zoontek/react-native-bootsplash
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.56 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.56 KB
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
{
"name": "@react-native-oh-tpl/react-native-bootsplash",
"version": "6.1.1-0.0.3",
"license": "MIT",
"description": "Display a bootsplash on your app starts. Hide it when you want.",
"author": "Mathieu Acthernoene <zoontek@gmail.com>",
"homepage": "https://github.com/react-native-oh-library/react-native-bootsplash",
"main": "dist/commonjs/index.js",
"module": "dist/module/index.js",
"types": "dist/typescript/index.d.ts",
"files": [
"dist",
"src",
"harmony",
"!src/addon",
"RNBootSplash.podspec",
"app.plugin.js",
"react-native.config.js"
],
"repository": {
"type": "git",
"url": "https://github.com/react-native-oh-library/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/commonjs/package.json",
"prepack": "bob 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"
},
"dependencies": {
"@expo/config-plugins": "^8.0.4",
"detect-indent": "^6.1.0",
"fs-extra": "^11.2.0",
"json5": "^2.2.3",
"node-html-parser": "^6.1.13",
"picocolors": "^1.0.0",
"prettier": "^3.2.5",
"sharp": "^0.32.6",
"ts-dedent": "^2.2.0",
"xml-formatter": "^3.6.2",
"react-native-bootsplash": "6.1.1"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.12.7",
"@types/react": "^18.2.60",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier-plugin-organize-imports": "^3.2.4",
"react": "18.2.0",
"react-native": "0.74.3",
"react-native-builder-bob": "^0.23.2",
"semver": "^7.6.2",
"typescript": "^5.4.5"
},
"harmony": {
"alias": "react-native-bootsplash",
"codegenConfig": {
"specPaths": [
"./src"
]
}
}
}