forked from zoontek/react-native-bootsplash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.86 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
{
"name": "react-native-smooth-bootsplash",
"version": "4.5.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/solydhq/react-native-smooth-bootsplash",
"main": "dist/commonjs/index.js",
"module": "dist/module/index.js",
"types": "dist/typescript/index.d.ts",
"files": [
"/android",
"/dist",
"/ios",
"/src",
"RNBootSplash.podspec",
"RNBootSplash.res",
"bsconfig.json",
"package.json",
"react-native.config.js"
],
"repository": {
"type": "git",
"url": "https://github.com/solydhq/react-native-smooth-bootsplash.git"
},
"keywords": [
"react-native-bootsplash",
"react-native-smooth-bootsplash",
"react-native",
"boot-splash",
"bootsplash",
"boot-screen",
"bootscreen",
"splash-screen",
"splashscreen",
"launch-screen",
"launchscreen"
],
"scripts": {
"format": "prettier '**/*' -u -w",
"setup-hooks": "git config --local core.hooksPath .hooks",
"prepack": "bob build"
},
"react-native-builder-bob": {
"source": "src",
"output": "dist",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"prettier": {
"trailingComma": "all"
},
"lint-staged": {
"*": "prettier -u -w"
},
"peerDependencies": {
"react-native": ">=0.65.0"
},
"dependencies": {
"fs-extra": "^11.1.0",
"picocolors": "^1.0.0",
"sharp": "^0.31.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/sharp": "^0.31.1",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"react": "18.2.0",
"react-native": "0.71.3",
"react-native-builder-bob": "^0.20.3",
"rescript": "^10.1.2",
"typescript": "^4.9.5"
}
}