@umituz/react-native-firebase 2.4.50 → 2.4.52
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/dist/scripts/cli.js +0 -0
- package/package.json +29 -6
package/dist/scripts/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-firebase",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.52",
|
|
4
4
|
"description": "Unified Firebase package for React Native apps - Auth and Firestore services using Firebase JS SDK (no native modules).",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -119,15 +119,38 @@
|
|
|
119
119
|
"README.md",
|
|
120
120
|
"LICENSE"
|
|
121
121
|
],
|
|
122
|
+
"sideEffects": false,
|
|
122
123
|
"exports": {
|
|
123
|
-
".":
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
124
|
+
".": {
|
|
125
|
+
"react-native": "./src/index.ts",
|
|
126
|
+
"types": "./src/index.ts",
|
|
127
|
+
"default": "./src/index.ts"
|
|
128
|
+
},
|
|
129
|
+
"./auth": {
|
|
130
|
+
"react-native": "./src/auth/index.ts",
|
|
131
|
+
"types": "./src/auth/index.ts",
|
|
132
|
+
"default": "./src/auth/index.ts"
|
|
133
|
+
},
|
|
134
|
+
"./firestore": {
|
|
135
|
+
"react-native": "./src/firestore/index.ts",
|
|
136
|
+
"types": "./src/firestore/index.ts",
|
|
137
|
+
"default": "./src/firestore/index.ts"
|
|
138
|
+
},
|
|
139
|
+
"./storage": {
|
|
140
|
+
"react-native": "./src/storage/index.ts",
|
|
141
|
+
"types": "./src/storage/index.ts",
|
|
142
|
+
"default": "./src/storage/index.ts"
|
|
143
|
+
},
|
|
144
|
+
"./init": {
|
|
145
|
+
"react-native": "./src/init/index.ts",
|
|
146
|
+
"types": "./src/init/index.ts",
|
|
147
|
+
"default": "./src/init/index.ts"
|
|
148
|
+
},
|
|
127
149
|
"./scripts": {
|
|
128
150
|
"require": "./dist/scripts/index.js",
|
|
129
151
|
"import": "./dist/scripts/index.js",
|
|
130
152
|
"types": "./dist/scripts/index.d.ts"
|
|
131
|
-
}
|
|
153
|
+
},
|
|
154
|
+
"./package.json": "./package.json"
|
|
132
155
|
}
|
|
133
156
|
}
|