@rific/splash-gate 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rific/splash-gate",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Name every async condition an Expo app's first screen depends on (theme, fonts, saved preferences, auth, ...) and hold the splash screen up until all of them report ready — instead of hand-rolling a fresh ad hoc gate per project",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"expo",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"type": "commonjs",
|
|
24
24
|
"exports": {
|
|
25
25
|
".": {
|
|
26
|
-
"react-native": "./
|
|
26
|
+
"react-native": "./src/index.ts",
|
|
27
27
|
"types": "./dist/index.d.ts",
|
|
28
28
|
"import": "./dist/index.mjs",
|
|
29
29
|
"require": "./dist/index.js"
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"main": "dist/index.js",
|
|
33
33
|
"module": "dist/index.mjs",
|
|
34
|
+
"react-native": "src/index.ts",
|
|
34
35
|
"types": "dist/index.d.ts",
|
|
35
36
|
"files": [
|
|
36
37
|
"dist",
|
|
@@ -76,8 +77,8 @@
|
|
|
76
77
|
"typescript-eslint": "^8.59.3"
|
|
77
78
|
},
|
|
78
79
|
"peerDependencies": {
|
|
79
|
-
"expo-splash-screen": ">=0.
|
|
80
|
-
"react": ">=
|
|
80
|
+
"expo-splash-screen": ">=57.0.0",
|
|
81
|
+
"react": ">=19.0.0"
|
|
81
82
|
},
|
|
82
83
|
"publishConfig": {
|
|
83
84
|
"access": "public"
|