mixpanel-react-native 3.1.2 → 3.2.0-beta.0

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.
Files changed (93) hide show
  1. package/.claude/settings.local.json +12 -1
  2. package/.github/dependabot.yml +7 -0
  3. package/.github/workflows/node.js.yml +24 -1
  4. package/.vscode/settings.json +2 -1
  5. package/MixpanelReactNative.podspec +1 -1
  6. package/Samples/MixpanelExample/ios/MixpanelExample.xcworkspace/contents.xcworkspacedata +10 -0
  7. package/Samples/MixpanelExample/ios/Podfile.lock +1996 -0
  8. package/Samples/MixpanelStarter/.bundle/config +2 -0
  9. package/Samples/MixpanelStarter/.env.example +4 -0
  10. package/Samples/MixpanelStarter/.eslintrc.js +4 -0
  11. package/Samples/MixpanelStarter/.prettierrc.js +5 -0
  12. package/Samples/MixpanelStarter/.watchmanconfig +1 -0
  13. package/Samples/MixpanelStarter/App.tsx +10 -0
  14. package/Samples/MixpanelStarter/CLAUDE.md +538 -0
  15. package/Samples/MixpanelStarter/Gemfile +16 -0
  16. package/Samples/MixpanelStarter/INTEGRATION_GUIDE.md +606 -0
  17. package/Samples/MixpanelStarter/README.md +406 -0
  18. package/Samples/MixpanelStarter/__tests__/MixpanelContext.test.tsx +63 -0
  19. package/Samples/MixpanelStarter/android/app/build.gradle +119 -0
  20. package/Samples/MixpanelStarter/android/app/debug.keystore +0 -0
  21. package/Samples/MixpanelStarter/android/app/proguard-rules.pro +10 -0
  22. package/Samples/MixpanelStarter/android/app/src/main/AndroidManifest.xml +27 -0
  23. package/Samples/MixpanelStarter/android/app/src/main/java/com/mixpanelstarter/MainActivity.kt +22 -0
  24. package/Samples/MixpanelStarter/android/app/src/main/java/com/mixpanelstarter/MainApplication.kt +27 -0
  25. package/Samples/MixpanelStarter/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  26. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  27. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  28. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  29. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  30. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  31. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  32. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  33. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  34. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  35. package/Samples/MixpanelStarter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  36. package/Samples/MixpanelStarter/android/app/src/main/res/values/strings.xml +3 -0
  37. package/Samples/MixpanelStarter/android/app/src/main/res/values/styles.xml +9 -0
  38. package/Samples/MixpanelStarter/android/build.gradle +21 -0
  39. package/Samples/MixpanelStarter/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  40. package/Samples/MixpanelStarter/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  41. package/Samples/MixpanelStarter/android/gradle.properties +44 -0
  42. package/Samples/MixpanelStarter/android/gradlew +251 -0
  43. package/Samples/MixpanelStarter/android/gradlew.bat +99 -0
  44. package/Samples/MixpanelStarter/android/settings.gradle +6 -0
  45. package/Samples/MixpanelStarter/app.json +4 -0
  46. package/Samples/MixpanelStarter/babel.config.js +14 -0
  47. package/Samples/MixpanelStarter/index.js +9 -0
  48. package/Samples/MixpanelStarter/ios/.xcode.env +11 -0
  49. package/Samples/MixpanelStarter/ios/MixpanelStarter/AppDelegate.swift +48 -0
  50. package/Samples/MixpanelStarter/ios/MixpanelStarter/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  51. package/Samples/MixpanelStarter/ios/MixpanelStarter/Images.xcassets/Contents.json +6 -0
  52. package/Samples/MixpanelStarter/ios/MixpanelStarter/Info.plist +55 -0
  53. package/Samples/MixpanelStarter/ios/MixpanelStarter/LaunchScreen.storyboard +47 -0
  54. package/Samples/MixpanelStarter/ios/MixpanelStarter/PrivacyInfo.xcprivacy +38 -0
  55. package/Samples/MixpanelStarter/ios/MixpanelStarter.xcodeproj/project.pbxproj +482 -0
  56. package/Samples/MixpanelStarter/ios/MixpanelStarter.xcodeproj/xcshareddata/xcschemes/MixpanelStarter.xcscheme +88 -0
  57. package/Samples/MixpanelStarter/ios/MixpanelStarter.xcworkspace/contents.xcworkspacedata +10 -0
  58. package/Samples/MixpanelStarter/ios/Podfile +34 -0
  59. package/Samples/MixpanelStarter/ios/Podfile.lock +2839 -0
  60. package/Samples/MixpanelStarter/jest.config.js +3 -0
  61. package/Samples/MixpanelStarter/metro.config.js +42 -0
  62. package/Samples/MixpanelStarter/package-lock.json +12141 -0
  63. package/Samples/MixpanelStarter/package.json +51 -0
  64. package/Samples/MixpanelStarter/src/@types/env.d.ts +3 -0
  65. package/Samples/MixpanelStarter/src/App.tsx +83 -0
  66. package/Samples/MixpanelStarter/src/components/ActionButton.tsx +92 -0
  67. package/Samples/MixpanelStarter/src/components/ErrorBoundary.tsx +81 -0
  68. package/Samples/MixpanelStarter/src/components/EventTrackingLog.tsx +163 -0
  69. package/Samples/MixpanelStarter/src/components/FlagCard.tsx +199 -0
  70. package/Samples/MixpanelStarter/src/components/InfoCard.tsx +77 -0
  71. package/Samples/MixpanelStarter/src/components/TestResultDisplay.tsx +181 -0
  72. package/Samples/MixpanelStarter/src/constants/tracking.ts +77 -0
  73. package/Samples/MixpanelStarter/src/contexts/MixpanelContext.tsx +159 -0
  74. package/Samples/MixpanelStarter/src/screens/FeatureFlagsScreen.tsx +1011 -0
  75. package/Samples/MixpanelStarter/src/screens/HomeScreen.tsx +307 -0
  76. package/Samples/MixpanelStarter/src/screens/OnboardingScreen.tsx +253 -0
  77. package/Samples/MixpanelStarter/src/screens/SettingsScreen.tsx +316 -0
  78. package/Samples/MixpanelStarter/src/types/flags.types.ts +42 -0
  79. package/Samples/MixpanelStarter/src/types/mixpanel.types.ts +26 -0
  80. package/Samples/MixpanelStarter/tsconfig.json +13 -0
  81. package/__tests__/flags.test.js +730 -0
  82. package/__tests__/index.test.js +7 -3
  83. package/__tests__/jest_setup.js +18 -0
  84. package/android/build.gradle +1 -1
  85. package/android/src/main/java/com/mixpanel/reactnative/MixpanelReactNativeModule.java +272 -2
  86. package/index.d.ts +64 -1
  87. package/index.js +42 -3
  88. package/ios/MixpanelReactNative.m +19 -1
  89. package/ios/MixpanelReactNative.swift +183 -5
  90. package/javascript/mixpanel-flags-js.js +463 -0
  91. package/javascript/mixpanel-flags.js +290 -0
  92. package/javascript/mixpanel-main.js +13 -1
  93. package/package.json +2 -2
@@ -0,0 +1,1996 @@
1
+ PODS:
2
+ - boost (1.84.0)
3
+ - DoubleConversion (1.1.6)
4
+ - fast_float (6.1.4)
5
+ - FBLazyVector (0.79.3)
6
+ - fmt (11.0.2)
7
+ - glog (0.3.5)
8
+ - hermes-engine (0.79.3):
9
+ - hermes-engine/Pre-built (= 0.79.3)
10
+ - hermes-engine/Pre-built (0.79.3)
11
+ - Mixpanel-swift (5.1.3):
12
+ - Mixpanel-swift/Complete (= 5.1.3)
13
+ - Mixpanel-swift/Complete (5.1.3)
14
+ - MixpanelReactNative (3.1.2):
15
+ - Mixpanel-swift (= 5.1.3)
16
+ - React-Core
17
+ - RCT-Folly (2024.11.18.00):
18
+ - boost
19
+ - DoubleConversion
20
+ - fast_float (= 6.1.4)
21
+ - fmt (= 11.0.2)
22
+ - glog
23
+ - RCT-Folly/Default (= 2024.11.18.00)
24
+ - RCT-Folly/Default (2024.11.18.00):
25
+ - boost
26
+ - DoubleConversion
27
+ - fast_float (= 6.1.4)
28
+ - fmt (= 11.0.2)
29
+ - glog
30
+ - RCT-Folly/Fabric (2024.11.18.00):
31
+ - boost
32
+ - DoubleConversion
33
+ - fast_float (= 6.1.4)
34
+ - fmt (= 11.0.2)
35
+ - glog
36
+ - RCTDeprecation (0.79.3)
37
+ - RCTRequired (0.79.3)
38
+ - RCTTypeSafety (0.79.3):
39
+ - FBLazyVector (= 0.79.3)
40
+ - RCTRequired (= 0.79.3)
41
+ - React-Core (= 0.79.3)
42
+ - React (0.79.3):
43
+ - React-Core (= 0.79.3)
44
+ - React-Core/DevSupport (= 0.79.3)
45
+ - React-Core/RCTWebSocket (= 0.79.3)
46
+ - React-RCTActionSheet (= 0.79.3)
47
+ - React-RCTAnimation (= 0.79.3)
48
+ - React-RCTBlob (= 0.79.3)
49
+ - React-RCTImage (= 0.79.3)
50
+ - React-RCTLinking (= 0.79.3)
51
+ - React-RCTNetwork (= 0.79.3)
52
+ - React-RCTSettings (= 0.79.3)
53
+ - React-RCTText (= 0.79.3)
54
+ - React-RCTVibration (= 0.79.3)
55
+ - React-callinvoker (0.79.3)
56
+ - React-Core (0.79.3):
57
+ - glog
58
+ - hermes-engine
59
+ - RCT-Folly (= 2024.11.18.00)
60
+ - RCTDeprecation
61
+ - React-Core/Default (= 0.79.3)
62
+ - React-cxxreact
63
+ - React-featureflags
64
+ - React-hermes
65
+ - React-jsi
66
+ - React-jsiexecutor
67
+ - React-jsinspector
68
+ - React-jsitooling
69
+ - React-perflogger
70
+ - React-runtimescheduler
71
+ - React-utils
72
+ - SocketRocket (= 0.7.1)
73
+ - Yoga
74
+ - React-Core/CoreModulesHeaders (0.79.3):
75
+ - glog
76
+ - hermes-engine
77
+ - RCT-Folly (= 2024.11.18.00)
78
+ - RCTDeprecation
79
+ - React-Core/Default
80
+ - React-cxxreact
81
+ - React-featureflags
82
+ - React-hermes
83
+ - React-jsi
84
+ - React-jsiexecutor
85
+ - React-jsinspector
86
+ - React-jsitooling
87
+ - React-perflogger
88
+ - React-runtimescheduler
89
+ - React-utils
90
+ - SocketRocket (= 0.7.1)
91
+ - Yoga
92
+ - React-Core/Default (0.79.3):
93
+ - glog
94
+ - hermes-engine
95
+ - RCT-Folly (= 2024.11.18.00)
96
+ - RCTDeprecation
97
+ - React-cxxreact
98
+ - React-featureflags
99
+ - React-hermes
100
+ - React-jsi
101
+ - React-jsiexecutor
102
+ - React-jsinspector
103
+ - React-jsitooling
104
+ - React-perflogger
105
+ - React-runtimescheduler
106
+ - React-utils
107
+ - SocketRocket (= 0.7.1)
108
+ - Yoga
109
+ - React-Core/DevSupport (0.79.3):
110
+ - glog
111
+ - hermes-engine
112
+ - RCT-Folly (= 2024.11.18.00)
113
+ - RCTDeprecation
114
+ - React-Core/Default (= 0.79.3)
115
+ - React-Core/RCTWebSocket (= 0.79.3)
116
+ - React-cxxreact
117
+ - React-featureflags
118
+ - React-hermes
119
+ - React-jsi
120
+ - React-jsiexecutor
121
+ - React-jsinspector
122
+ - React-jsitooling
123
+ - React-perflogger
124
+ - React-runtimescheduler
125
+ - React-utils
126
+ - SocketRocket (= 0.7.1)
127
+ - Yoga
128
+ - React-Core/RCTActionSheetHeaders (0.79.3):
129
+ - glog
130
+ - hermes-engine
131
+ - RCT-Folly (= 2024.11.18.00)
132
+ - RCTDeprecation
133
+ - React-Core/Default
134
+ - React-cxxreact
135
+ - React-featureflags
136
+ - React-hermes
137
+ - React-jsi
138
+ - React-jsiexecutor
139
+ - React-jsinspector
140
+ - React-jsitooling
141
+ - React-perflogger
142
+ - React-runtimescheduler
143
+ - React-utils
144
+ - SocketRocket (= 0.7.1)
145
+ - Yoga
146
+ - React-Core/RCTAnimationHeaders (0.79.3):
147
+ - glog
148
+ - hermes-engine
149
+ - RCT-Folly (= 2024.11.18.00)
150
+ - RCTDeprecation
151
+ - React-Core/Default
152
+ - React-cxxreact
153
+ - React-featureflags
154
+ - React-hermes
155
+ - React-jsi
156
+ - React-jsiexecutor
157
+ - React-jsinspector
158
+ - React-jsitooling
159
+ - React-perflogger
160
+ - React-runtimescheduler
161
+ - React-utils
162
+ - SocketRocket (= 0.7.1)
163
+ - Yoga
164
+ - React-Core/RCTBlobHeaders (0.79.3):
165
+ - glog
166
+ - hermes-engine
167
+ - RCT-Folly (= 2024.11.18.00)
168
+ - RCTDeprecation
169
+ - React-Core/Default
170
+ - React-cxxreact
171
+ - React-featureflags
172
+ - React-hermes
173
+ - React-jsi
174
+ - React-jsiexecutor
175
+ - React-jsinspector
176
+ - React-jsitooling
177
+ - React-perflogger
178
+ - React-runtimescheduler
179
+ - React-utils
180
+ - SocketRocket (= 0.7.1)
181
+ - Yoga
182
+ - React-Core/RCTImageHeaders (0.79.3):
183
+ - glog
184
+ - hermes-engine
185
+ - RCT-Folly (= 2024.11.18.00)
186
+ - RCTDeprecation
187
+ - React-Core/Default
188
+ - React-cxxreact
189
+ - React-featureflags
190
+ - React-hermes
191
+ - React-jsi
192
+ - React-jsiexecutor
193
+ - React-jsinspector
194
+ - React-jsitooling
195
+ - React-perflogger
196
+ - React-runtimescheduler
197
+ - React-utils
198
+ - SocketRocket (= 0.7.1)
199
+ - Yoga
200
+ - React-Core/RCTLinkingHeaders (0.79.3):
201
+ - glog
202
+ - hermes-engine
203
+ - RCT-Folly (= 2024.11.18.00)
204
+ - RCTDeprecation
205
+ - React-Core/Default
206
+ - React-cxxreact
207
+ - React-featureflags
208
+ - React-hermes
209
+ - React-jsi
210
+ - React-jsiexecutor
211
+ - React-jsinspector
212
+ - React-jsitooling
213
+ - React-perflogger
214
+ - React-runtimescheduler
215
+ - React-utils
216
+ - SocketRocket (= 0.7.1)
217
+ - Yoga
218
+ - React-Core/RCTNetworkHeaders (0.79.3):
219
+ - glog
220
+ - hermes-engine
221
+ - RCT-Folly (= 2024.11.18.00)
222
+ - RCTDeprecation
223
+ - React-Core/Default
224
+ - React-cxxreact
225
+ - React-featureflags
226
+ - React-hermes
227
+ - React-jsi
228
+ - React-jsiexecutor
229
+ - React-jsinspector
230
+ - React-jsitooling
231
+ - React-perflogger
232
+ - React-runtimescheduler
233
+ - React-utils
234
+ - SocketRocket (= 0.7.1)
235
+ - Yoga
236
+ - React-Core/RCTSettingsHeaders (0.79.3):
237
+ - glog
238
+ - hermes-engine
239
+ - RCT-Folly (= 2024.11.18.00)
240
+ - RCTDeprecation
241
+ - React-Core/Default
242
+ - React-cxxreact
243
+ - React-featureflags
244
+ - React-hermes
245
+ - React-jsi
246
+ - React-jsiexecutor
247
+ - React-jsinspector
248
+ - React-jsitooling
249
+ - React-perflogger
250
+ - React-runtimescheduler
251
+ - React-utils
252
+ - SocketRocket (= 0.7.1)
253
+ - Yoga
254
+ - React-Core/RCTTextHeaders (0.79.3):
255
+ - glog
256
+ - hermes-engine
257
+ - RCT-Folly (= 2024.11.18.00)
258
+ - RCTDeprecation
259
+ - React-Core/Default
260
+ - React-cxxreact
261
+ - React-featureflags
262
+ - React-hermes
263
+ - React-jsi
264
+ - React-jsiexecutor
265
+ - React-jsinspector
266
+ - React-jsitooling
267
+ - React-perflogger
268
+ - React-runtimescheduler
269
+ - React-utils
270
+ - SocketRocket (= 0.7.1)
271
+ - Yoga
272
+ - React-Core/RCTVibrationHeaders (0.79.3):
273
+ - glog
274
+ - hermes-engine
275
+ - RCT-Folly (= 2024.11.18.00)
276
+ - RCTDeprecation
277
+ - React-Core/Default
278
+ - React-cxxreact
279
+ - React-featureflags
280
+ - React-hermes
281
+ - React-jsi
282
+ - React-jsiexecutor
283
+ - React-jsinspector
284
+ - React-jsitooling
285
+ - React-perflogger
286
+ - React-runtimescheduler
287
+ - React-utils
288
+ - SocketRocket (= 0.7.1)
289
+ - Yoga
290
+ - React-Core/RCTWebSocket (0.79.3):
291
+ - glog
292
+ - hermes-engine
293
+ - RCT-Folly (= 2024.11.18.00)
294
+ - RCTDeprecation
295
+ - React-Core/Default (= 0.79.3)
296
+ - React-cxxreact
297
+ - React-featureflags
298
+ - React-hermes
299
+ - React-jsi
300
+ - React-jsiexecutor
301
+ - React-jsinspector
302
+ - React-jsitooling
303
+ - React-perflogger
304
+ - React-runtimescheduler
305
+ - React-utils
306
+ - SocketRocket (= 0.7.1)
307
+ - Yoga
308
+ - React-CoreModules (0.79.3):
309
+ - DoubleConversion
310
+ - fast_float (= 6.1.4)
311
+ - fmt (= 11.0.2)
312
+ - RCT-Folly (= 2024.11.18.00)
313
+ - RCTTypeSafety (= 0.79.3)
314
+ - React-Core/CoreModulesHeaders (= 0.79.3)
315
+ - React-jsi (= 0.79.3)
316
+ - React-jsinspector
317
+ - React-jsinspectortracing
318
+ - React-NativeModulesApple
319
+ - React-RCTBlob
320
+ - React-RCTFBReactNativeSpec
321
+ - React-RCTImage (= 0.79.3)
322
+ - ReactCommon
323
+ - SocketRocket (= 0.7.1)
324
+ - React-cxxreact (0.79.3):
325
+ - boost
326
+ - DoubleConversion
327
+ - fast_float (= 6.1.4)
328
+ - fmt (= 11.0.2)
329
+ - glog
330
+ - hermes-engine
331
+ - RCT-Folly (= 2024.11.18.00)
332
+ - React-callinvoker (= 0.79.3)
333
+ - React-debug (= 0.79.3)
334
+ - React-jsi (= 0.79.3)
335
+ - React-jsinspector
336
+ - React-jsinspectortracing
337
+ - React-logger (= 0.79.3)
338
+ - React-perflogger (= 0.79.3)
339
+ - React-runtimeexecutor (= 0.79.3)
340
+ - React-timing (= 0.79.3)
341
+ - React-debug (0.79.3)
342
+ - React-defaultsnativemodule (0.79.3):
343
+ - hermes-engine
344
+ - RCT-Folly
345
+ - React-domnativemodule
346
+ - React-featureflagsnativemodule
347
+ - React-hermes
348
+ - React-idlecallbacksnativemodule
349
+ - React-jsi
350
+ - React-jsiexecutor
351
+ - React-microtasksnativemodule
352
+ - React-RCTFBReactNativeSpec
353
+ - React-domnativemodule (0.79.3):
354
+ - hermes-engine
355
+ - RCT-Folly
356
+ - React-Fabric
357
+ - React-FabricComponents
358
+ - React-graphics
359
+ - React-hermes
360
+ - React-jsi
361
+ - React-jsiexecutor
362
+ - React-RCTFBReactNativeSpec
363
+ - ReactCommon/turbomodule/core
364
+ - Yoga
365
+ - React-Fabric (0.79.3):
366
+ - DoubleConversion
367
+ - fast_float (= 6.1.4)
368
+ - fmt (= 11.0.2)
369
+ - glog
370
+ - hermes-engine
371
+ - RCT-Folly/Fabric (= 2024.11.18.00)
372
+ - RCTRequired
373
+ - RCTTypeSafety
374
+ - React-Core
375
+ - React-cxxreact
376
+ - React-debug
377
+ - React-Fabric/animations (= 0.79.3)
378
+ - React-Fabric/attributedstring (= 0.79.3)
379
+ - React-Fabric/componentregistry (= 0.79.3)
380
+ - React-Fabric/componentregistrynative (= 0.79.3)
381
+ - React-Fabric/components (= 0.79.3)
382
+ - React-Fabric/consistency (= 0.79.3)
383
+ - React-Fabric/core (= 0.79.3)
384
+ - React-Fabric/dom (= 0.79.3)
385
+ - React-Fabric/imagemanager (= 0.79.3)
386
+ - React-Fabric/leakchecker (= 0.79.3)
387
+ - React-Fabric/mounting (= 0.79.3)
388
+ - React-Fabric/observers (= 0.79.3)
389
+ - React-Fabric/scheduler (= 0.79.3)
390
+ - React-Fabric/telemetry (= 0.79.3)
391
+ - React-Fabric/templateprocessor (= 0.79.3)
392
+ - React-Fabric/uimanager (= 0.79.3)
393
+ - React-featureflags
394
+ - React-graphics
395
+ - React-hermes
396
+ - React-jsi
397
+ - React-jsiexecutor
398
+ - React-logger
399
+ - React-rendererdebug
400
+ - React-runtimescheduler
401
+ - React-utils
402
+ - ReactCommon/turbomodule/core
403
+ - React-Fabric/animations (0.79.3):
404
+ - DoubleConversion
405
+ - fast_float (= 6.1.4)
406
+ - fmt (= 11.0.2)
407
+ - glog
408
+ - hermes-engine
409
+ - RCT-Folly/Fabric (= 2024.11.18.00)
410
+ - RCTRequired
411
+ - RCTTypeSafety
412
+ - React-Core
413
+ - React-cxxreact
414
+ - React-debug
415
+ - React-featureflags
416
+ - React-graphics
417
+ - React-hermes
418
+ - React-jsi
419
+ - React-jsiexecutor
420
+ - React-logger
421
+ - React-rendererdebug
422
+ - React-runtimescheduler
423
+ - React-utils
424
+ - ReactCommon/turbomodule/core
425
+ - React-Fabric/attributedstring (0.79.3):
426
+ - DoubleConversion
427
+ - fast_float (= 6.1.4)
428
+ - fmt (= 11.0.2)
429
+ - glog
430
+ - hermes-engine
431
+ - RCT-Folly/Fabric (= 2024.11.18.00)
432
+ - RCTRequired
433
+ - RCTTypeSafety
434
+ - React-Core
435
+ - React-cxxreact
436
+ - React-debug
437
+ - React-featureflags
438
+ - React-graphics
439
+ - React-hermes
440
+ - React-jsi
441
+ - React-jsiexecutor
442
+ - React-logger
443
+ - React-rendererdebug
444
+ - React-runtimescheduler
445
+ - React-utils
446
+ - ReactCommon/turbomodule/core
447
+ - React-Fabric/componentregistry (0.79.3):
448
+ - DoubleConversion
449
+ - fast_float (= 6.1.4)
450
+ - fmt (= 11.0.2)
451
+ - glog
452
+ - hermes-engine
453
+ - RCT-Folly/Fabric (= 2024.11.18.00)
454
+ - RCTRequired
455
+ - RCTTypeSafety
456
+ - React-Core
457
+ - React-cxxreact
458
+ - React-debug
459
+ - React-featureflags
460
+ - React-graphics
461
+ - React-hermes
462
+ - React-jsi
463
+ - React-jsiexecutor
464
+ - React-logger
465
+ - React-rendererdebug
466
+ - React-runtimescheduler
467
+ - React-utils
468
+ - ReactCommon/turbomodule/core
469
+ - React-Fabric/componentregistrynative (0.79.3):
470
+ - DoubleConversion
471
+ - fast_float (= 6.1.4)
472
+ - fmt (= 11.0.2)
473
+ - glog
474
+ - hermes-engine
475
+ - RCT-Folly/Fabric (= 2024.11.18.00)
476
+ - RCTRequired
477
+ - RCTTypeSafety
478
+ - React-Core
479
+ - React-cxxreact
480
+ - React-debug
481
+ - React-featureflags
482
+ - React-graphics
483
+ - React-hermes
484
+ - React-jsi
485
+ - React-jsiexecutor
486
+ - React-logger
487
+ - React-rendererdebug
488
+ - React-runtimescheduler
489
+ - React-utils
490
+ - ReactCommon/turbomodule/core
491
+ - React-Fabric/components (0.79.3):
492
+ - DoubleConversion
493
+ - fast_float (= 6.1.4)
494
+ - fmt (= 11.0.2)
495
+ - glog
496
+ - hermes-engine
497
+ - RCT-Folly/Fabric (= 2024.11.18.00)
498
+ - RCTRequired
499
+ - RCTTypeSafety
500
+ - React-Core
501
+ - React-cxxreact
502
+ - React-debug
503
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.79.3)
504
+ - React-Fabric/components/root (= 0.79.3)
505
+ - React-Fabric/components/scrollview (= 0.79.3)
506
+ - React-Fabric/components/view (= 0.79.3)
507
+ - React-featureflags
508
+ - React-graphics
509
+ - React-hermes
510
+ - React-jsi
511
+ - React-jsiexecutor
512
+ - React-logger
513
+ - React-rendererdebug
514
+ - React-runtimescheduler
515
+ - React-utils
516
+ - ReactCommon/turbomodule/core
517
+ - React-Fabric/components/legacyviewmanagerinterop (0.79.3):
518
+ - DoubleConversion
519
+ - fast_float (= 6.1.4)
520
+ - fmt (= 11.0.2)
521
+ - glog
522
+ - hermes-engine
523
+ - RCT-Folly/Fabric (= 2024.11.18.00)
524
+ - RCTRequired
525
+ - RCTTypeSafety
526
+ - React-Core
527
+ - React-cxxreact
528
+ - React-debug
529
+ - React-featureflags
530
+ - React-graphics
531
+ - React-hermes
532
+ - React-jsi
533
+ - React-jsiexecutor
534
+ - React-logger
535
+ - React-rendererdebug
536
+ - React-runtimescheduler
537
+ - React-utils
538
+ - ReactCommon/turbomodule/core
539
+ - React-Fabric/components/root (0.79.3):
540
+ - DoubleConversion
541
+ - fast_float (= 6.1.4)
542
+ - fmt (= 11.0.2)
543
+ - glog
544
+ - hermes-engine
545
+ - RCT-Folly/Fabric (= 2024.11.18.00)
546
+ - RCTRequired
547
+ - RCTTypeSafety
548
+ - React-Core
549
+ - React-cxxreact
550
+ - React-debug
551
+ - React-featureflags
552
+ - React-graphics
553
+ - React-hermes
554
+ - React-jsi
555
+ - React-jsiexecutor
556
+ - React-logger
557
+ - React-rendererdebug
558
+ - React-runtimescheduler
559
+ - React-utils
560
+ - ReactCommon/turbomodule/core
561
+ - React-Fabric/components/scrollview (0.79.3):
562
+ - DoubleConversion
563
+ - fast_float (= 6.1.4)
564
+ - fmt (= 11.0.2)
565
+ - glog
566
+ - hermes-engine
567
+ - RCT-Folly/Fabric (= 2024.11.18.00)
568
+ - RCTRequired
569
+ - RCTTypeSafety
570
+ - React-Core
571
+ - React-cxxreact
572
+ - React-debug
573
+ - React-featureflags
574
+ - React-graphics
575
+ - React-hermes
576
+ - React-jsi
577
+ - React-jsiexecutor
578
+ - React-logger
579
+ - React-rendererdebug
580
+ - React-runtimescheduler
581
+ - React-utils
582
+ - ReactCommon/turbomodule/core
583
+ - React-Fabric/components/view (0.79.3):
584
+ - DoubleConversion
585
+ - fast_float (= 6.1.4)
586
+ - fmt (= 11.0.2)
587
+ - glog
588
+ - hermes-engine
589
+ - RCT-Folly/Fabric (= 2024.11.18.00)
590
+ - RCTRequired
591
+ - RCTTypeSafety
592
+ - React-Core
593
+ - React-cxxreact
594
+ - React-debug
595
+ - React-featureflags
596
+ - React-graphics
597
+ - React-hermes
598
+ - React-jsi
599
+ - React-jsiexecutor
600
+ - React-logger
601
+ - React-renderercss
602
+ - React-rendererdebug
603
+ - React-runtimescheduler
604
+ - React-utils
605
+ - ReactCommon/turbomodule/core
606
+ - Yoga
607
+ - React-Fabric/consistency (0.79.3):
608
+ - DoubleConversion
609
+ - fast_float (= 6.1.4)
610
+ - fmt (= 11.0.2)
611
+ - glog
612
+ - hermes-engine
613
+ - RCT-Folly/Fabric (= 2024.11.18.00)
614
+ - RCTRequired
615
+ - RCTTypeSafety
616
+ - React-Core
617
+ - React-cxxreact
618
+ - React-debug
619
+ - React-featureflags
620
+ - React-graphics
621
+ - React-hermes
622
+ - React-jsi
623
+ - React-jsiexecutor
624
+ - React-logger
625
+ - React-rendererdebug
626
+ - React-runtimescheduler
627
+ - React-utils
628
+ - ReactCommon/turbomodule/core
629
+ - React-Fabric/core (0.79.3):
630
+ - DoubleConversion
631
+ - fast_float (= 6.1.4)
632
+ - fmt (= 11.0.2)
633
+ - glog
634
+ - hermes-engine
635
+ - RCT-Folly/Fabric (= 2024.11.18.00)
636
+ - RCTRequired
637
+ - RCTTypeSafety
638
+ - React-Core
639
+ - React-cxxreact
640
+ - React-debug
641
+ - React-featureflags
642
+ - React-graphics
643
+ - React-hermes
644
+ - React-jsi
645
+ - React-jsiexecutor
646
+ - React-logger
647
+ - React-rendererdebug
648
+ - React-runtimescheduler
649
+ - React-utils
650
+ - ReactCommon/turbomodule/core
651
+ - React-Fabric/dom (0.79.3):
652
+ - DoubleConversion
653
+ - fast_float (= 6.1.4)
654
+ - fmt (= 11.0.2)
655
+ - glog
656
+ - hermes-engine
657
+ - RCT-Folly/Fabric (= 2024.11.18.00)
658
+ - RCTRequired
659
+ - RCTTypeSafety
660
+ - React-Core
661
+ - React-cxxreact
662
+ - React-debug
663
+ - React-featureflags
664
+ - React-graphics
665
+ - React-hermes
666
+ - React-jsi
667
+ - React-jsiexecutor
668
+ - React-logger
669
+ - React-rendererdebug
670
+ - React-runtimescheduler
671
+ - React-utils
672
+ - ReactCommon/turbomodule/core
673
+ - React-Fabric/imagemanager (0.79.3):
674
+ - DoubleConversion
675
+ - fast_float (= 6.1.4)
676
+ - fmt (= 11.0.2)
677
+ - glog
678
+ - hermes-engine
679
+ - RCT-Folly/Fabric (= 2024.11.18.00)
680
+ - RCTRequired
681
+ - RCTTypeSafety
682
+ - React-Core
683
+ - React-cxxreact
684
+ - React-debug
685
+ - React-featureflags
686
+ - React-graphics
687
+ - React-hermes
688
+ - React-jsi
689
+ - React-jsiexecutor
690
+ - React-logger
691
+ - React-rendererdebug
692
+ - React-runtimescheduler
693
+ - React-utils
694
+ - ReactCommon/turbomodule/core
695
+ - React-Fabric/leakchecker (0.79.3):
696
+ - DoubleConversion
697
+ - fast_float (= 6.1.4)
698
+ - fmt (= 11.0.2)
699
+ - glog
700
+ - hermes-engine
701
+ - RCT-Folly/Fabric (= 2024.11.18.00)
702
+ - RCTRequired
703
+ - RCTTypeSafety
704
+ - React-Core
705
+ - React-cxxreact
706
+ - React-debug
707
+ - React-featureflags
708
+ - React-graphics
709
+ - React-hermes
710
+ - React-jsi
711
+ - React-jsiexecutor
712
+ - React-logger
713
+ - React-rendererdebug
714
+ - React-runtimescheduler
715
+ - React-utils
716
+ - ReactCommon/turbomodule/core
717
+ - React-Fabric/mounting (0.79.3):
718
+ - DoubleConversion
719
+ - fast_float (= 6.1.4)
720
+ - fmt (= 11.0.2)
721
+ - glog
722
+ - hermes-engine
723
+ - RCT-Folly/Fabric (= 2024.11.18.00)
724
+ - RCTRequired
725
+ - RCTTypeSafety
726
+ - React-Core
727
+ - React-cxxreact
728
+ - React-debug
729
+ - React-featureflags
730
+ - React-graphics
731
+ - React-hermes
732
+ - React-jsi
733
+ - React-jsiexecutor
734
+ - React-logger
735
+ - React-rendererdebug
736
+ - React-runtimescheduler
737
+ - React-utils
738
+ - ReactCommon/turbomodule/core
739
+ - React-Fabric/observers (0.79.3):
740
+ - DoubleConversion
741
+ - fast_float (= 6.1.4)
742
+ - fmt (= 11.0.2)
743
+ - glog
744
+ - hermes-engine
745
+ - RCT-Folly/Fabric (= 2024.11.18.00)
746
+ - RCTRequired
747
+ - RCTTypeSafety
748
+ - React-Core
749
+ - React-cxxreact
750
+ - React-debug
751
+ - React-Fabric/observers/events (= 0.79.3)
752
+ - React-featureflags
753
+ - React-graphics
754
+ - React-hermes
755
+ - React-jsi
756
+ - React-jsiexecutor
757
+ - React-logger
758
+ - React-rendererdebug
759
+ - React-runtimescheduler
760
+ - React-utils
761
+ - ReactCommon/turbomodule/core
762
+ - React-Fabric/observers/events (0.79.3):
763
+ - DoubleConversion
764
+ - fast_float (= 6.1.4)
765
+ - fmt (= 11.0.2)
766
+ - glog
767
+ - hermes-engine
768
+ - RCT-Folly/Fabric (= 2024.11.18.00)
769
+ - RCTRequired
770
+ - RCTTypeSafety
771
+ - React-Core
772
+ - React-cxxreact
773
+ - React-debug
774
+ - React-featureflags
775
+ - React-graphics
776
+ - React-hermes
777
+ - React-jsi
778
+ - React-jsiexecutor
779
+ - React-logger
780
+ - React-rendererdebug
781
+ - React-runtimescheduler
782
+ - React-utils
783
+ - ReactCommon/turbomodule/core
784
+ - React-Fabric/scheduler (0.79.3):
785
+ - DoubleConversion
786
+ - fast_float (= 6.1.4)
787
+ - fmt (= 11.0.2)
788
+ - glog
789
+ - hermes-engine
790
+ - RCT-Folly/Fabric (= 2024.11.18.00)
791
+ - RCTRequired
792
+ - RCTTypeSafety
793
+ - React-Core
794
+ - React-cxxreact
795
+ - React-debug
796
+ - React-Fabric/observers/events
797
+ - React-featureflags
798
+ - React-graphics
799
+ - React-hermes
800
+ - React-jsi
801
+ - React-jsiexecutor
802
+ - React-logger
803
+ - React-performancetimeline
804
+ - React-rendererdebug
805
+ - React-runtimescheduler
806
+ - React-utils
807
+ - ReactCommon/turbomodule/core
808
+ - React-Fabric/telemetry (0.79.3):
809
+ - DoubleConversion
810
+ - fast_float (= 6.1.4)
811
+ - fmt (= 11.0.2)
812
+ - glog
813
+ - hermes-engine
814
+ - RCT-Folly/Fabric (= 2024.11.18.00)
815
+ - RCTRequired
816
+ - RCTTypeSafety
817
+ - React-Core
818
+ - React-cxxreact
819
+ - React-debug
820
+ - React-featureflags
821
+ - React-graphics
822
+ - React-hermes
823
+ - React-jsi
824
+ - React-jsiexecutor
825
+ - React-logger
826
+ - React-rendererdebug
827
+ - React-runtimescheduler
828
+ - React-utils
829
+ - ReactCommon/turbomodule/core
830
+ - React-Fabric/templateprocessor (0.79.3):
831
+ - DoubleConversion
832
+ - fast_float (= 6.1.4)
833
+ - fmt (= 11.0.2)
834
+ - glog
835
+ - hermes-engine
836
+ - RCT-Folly/Fabric (= 2024.11.18.00)
837
+ - RCTRequired
838
+ - RCTTypeSafety
839
+ - React-Core
840
+ - React-cxxreact
841
+ - React-debug
842
+ - React-featureflags
843
+ - React-graphics
844
+ - React-hermes
845
+ - React-jsi
846
+ - React-jsiexecutor
847
+ - React-logger
848
+ - React-rendererdebug
849
+ - React-runtimescheduler
850
+ - React-utils
851
+ - ReactCommon/turbomodule/core
852
+ - React-Fabric/uimanager (0.79.3):
853
+ - DoubleConversion
854
+ - fast_float (= 6.1.4)
855
+ - fmt (= 11.0.2)
856
+ - glog
857
+ - hermes-engine
858
+ - RCT-Folly/Fabric (= 2024.11.18.00)
859
+ - RCTRequired
860
+ - RCTTypeSafety
861
+ - React-Core
862
+ - React-cxxreact
863
+ - React-debug
864
+ - React-Fabric/uimanager/consistency (= 0.79.3)
865
+ - React-featureflags
866
+ - React-graphics
867
+ - React-hermes
868
+ - React-jsi
869
+ - React-jsiexecutor
870
+ - React-logger
871
+ - React-rendererconsistency
872
+ - React-rendererdebug
873
+ - React-runtimescheduler
874
+ - React-utils
875
+ - ReactCommon/turbomodule/core
876
+ - React-Fabric/uimanager/consistency (0.79.3):
877
+ - DoubleConversion
878
+ - fast_float (= 6.1.4)
879
+ - fmt (= 11.0.2)
880
+ - glog
881
+ - hermes-engine
882
+ - RCT-Folly/Fabric (= 2024.11.18.00)
883
+ - RCTRequired
884
+ - RCTTypeSafety
885
+ - React-Core
886
+ - React-cxxreact
887
+ - React-debug
888
+ - React-featureflags
889
+ - React-graphics
890
+ - React-hermes
891
+ - React-jsi
892
+ - React-jsiexecutor
893
+ - React-logger
894
+ - React-rendererconsistency
895
+ - React-rendererdebug
896
+ - React-runtimescheduler
897
+ - React-utils
898
+ - ReactCommon/turbomodule/core
899
+ - React-FabricComponents (0.79.3):
900
+ - DoubleConversion
901
+ - fast_float (= 6.1.4)
902
+ - fmt (= 11.0.2)
903
+ - glog
904
+ - hermes-engine
905
+ - RCT-Folly/Fabric (= 2024.11.18.00)
906
+ - RCTRequired
907
+ - RCTTypeSafety
908
+ - React-Core
909
+ - React-cxxreact
910
+ - React-debug
911
+ - React-Fabric
912
+ - React-FabricComponents/components (= 0.79.3)
913
+ - React-FabricComponents/textlayoutmanager (= 0.79.3)
914
+ - React-featureflags
915
+ - React-graphics
916
+ - React-hermes
917
+ - React-jsi
918
+ - React-jsiexecutor
919
+ - React-logger
920
+ - React-rendererdebug
921
+ - React-runtimescheduler
922
+ - React-utils
923
+ - ReactCommon/turbomodule/core
924
+ - Yoga
925
+ - React-FabricComponents/components (0.79.3):
926
+ - DoubleConversion
927
+ - fast_float (= 6.1.4)
928
+ - fmt (= 11.0.2)
929
+ - glog
930
+ - hermes-engine
931
+ - RCT-Folly/Fabric (= 2024.11.18.00)
932
+ - RCTRequired
933
+ - RCTTypeSafety
934
+ - React-Core
935
+ - React-cxxreact
936
+ - React-debug
937
+ - React-Fabric
938
+ - React-FabricComponents/components/inputaccessory (= 0.79.3)
939
+ - React-FabricComponents/components/iostextinput (= 0.79.3)
940
+ - React-FabricComponents/components/modal (= 0.79.3)
941
+ - React-FabricComponents/components/rncore (= 0.79.3)
942
+ - React-FabricComponents/components/safeareaview (= 0.79.3)
943
+ - React-FabricComponents/components/scrollview (= 0.79.3)
944
+ - React-FabricComponents/components/text (= 0.79.3)
945
+ - React-FabricComponents/components/textinput (= 0.79.3)
946
+ - React-FabricComponents/components/unimplementedview (= 0.79.3)
947
+ - React-featureflags
948
+ - React-graphics
949
+ - React-hermes
950
+ - React-jsi
951
+ - React-jsiexecutor
952
+ - React-logger
953
+ - React-rendererdebug
954
+ - React-runtimescheduler
955
+ - React-utils
956
+ - ReactCommon/turbomodule/core
957
+ - Yoga
958
+ - React-FabricComponents/components/inputaccessory (0.79.3):
959
+ - DoubleConversion
960
+ - fast_float (= 6.1.4)
961
+ - fmt (= 11.0.2)
962
+ - glog
963
+ - hermes-engine
964
+ - RCT-Folly/Fabric (= 2024.11.18.00)
965
+ - RCTRequired
966
+ - RCTTypeSafety
967
+ - React-Core
968
+ - React-cxxreact
969
+ - React-debug
970
+ - React-Fabric
971
+ - React-featureflags
972
+ - React-graphics
973
+ - React-hermes
974
+ - React-jsi
975
+ - React-jsiexecutor
976
+ - React-logger
977
+ - React-rendererdebug
978
+ - React-runtimescheduler
979
+ - React-utils
980
+ - ReactCommon/turbomodule/core
981
+ - Yoga
982
+ - React-FabricComponents/components/iostextinput (0.79.3):
983
+ - DoubleConversion
984
+ - fast_float (= 6.1.4)
985
+ - fmt (= 11.0.2)
986
+ - glog
987
+ - hermes-engine
988
+ - RCT-Folly/Fabric (= 2024.11.18.00)
989
+ - RCTRequired
990
+ - RCTTypeSafety
991
+ - React-Core
992
+ - React-cxxreact
993
+ - React-debug
994
+ - React-Fabric
995
+ - React-featureflags
996
+ - React-graphics
997
+ - React-hermes
998
+ - React-jsi
999
+ - React-jsiexecutor
1000
+ - React-logger
1001
+ - React-rendererdebug
1002
+ - React-runtimescheduler
1003
+ - React-utils
1004
+ - ReactCommon/turbomodule/core
1005
+ - Yoga
1006
+ - React-FabricComponents/components/modal (0.79.3):
1007
+ - DoubleConversion
1008
+ - fast_float (= 6.1.4)
1009
+ - fmt (= 11.0.2)
1010
+ - glog
1011
+ - hermes-engine
1012
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1013
+ - RCTRequired
1014
+ - RCTTypeSafety
1015
+ - React-Core
1016
+ - React-cxxreact
1017
+ - React-debug
1018
+ - React-Fabric
1019
+ - React-featureflags
1020
+ - React-graphics
1021
+ - React-hermes
1022
+ - React-jsi
1023
+ - React-jsiexecutor
1024
+ - React-logger
1025
+ - React-rendererdebug
1026
+ - React-runtimescheduler
1027
+ - React-utils
1028
+ - ReactCommon/turbomodule/core
1029
+ - Yoga
1030
+ - React-FabricComponents/components/rncore (0.79.3):
1031
+ - DoubleConversion
1032
+ - fast_float (= 6.1.4)
1033
+ - fmt (= 11.0.2)
1034
+ - glog
1035
+ - hermes-engine
1036
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1037
+ - RCTRequired
1038
+ - RCTTypeSafety
1039
+ - React-Core
1040
+ - React-cxxreact
1041
+ - React-debug
1042
+ - React-Fabric
1043
+ - React-featureflags
1044
+ - React-graphics
1045
+ - React-hermes
1046
+ - React-jsi
1047
+ - React-jsiexecutor
1048
+ - React-logger
1049
+ - React-rendererdebug
1050
+ - React-runtimescheduler
1051
+ - React-utils
1052
+ - ReactCommon/turbomodule/core
1053
+ - Yoga
1054
+ - React-FabricComponents/components/safeareaview (0.79.3):
1055
+ - DoubleConversion
1056
+ - fast_float (= 6.1.4)
1057
+ - fmt (= 11.0.2)
1058
+ - glog
1059
+ - hermes-engine
1060
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1061
+ - RCTRequired
1062
+ - RCTTypeSafety
1063
+ - React-Core
1064
+ - React-cxxreact
1065
+ - React-debug
1066
+ - React-Fabric
1067
+ - React-featureflags
1068
+ - React-graphics
1069
+ - React-hermes
1070
+ - React-jsi
1071
+ - React-jsiexecutor
1072
+ - React-logger
1073
+ - React-rendererdebug
1074
+ - React-runtimescheduler
1075
+ - React-utils
1076
+ - ReactCommon/turbomodule/core
1077
+ - Yoga
1078
+ - React-FabricComponents/components/scrollview (0.79.3):
1079
+ - DoubleConversion
1080
+ - fast_float (= 6.1.4)
1081
+ - fmt (= 11.0.2)
1082
+ - glog
1083
+ - hermes-engine
1084
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1085
+ - RCTRequired
1086
+ - RCTTypeSafety
1087
+ - React-Core
1088
+ - React-cxxreact
1089
+ - React-debug
1090
+ - React-Fabric
1091
+ - React-featureflags
1092
+ - React-graphics
1093
+ - React-hermes
1094
+ - React-jsi
1095
+ - React-jsiexecutor
1096
+ - React-logger
1097
+ - React-rendererdebug
1098
+ - React-runtimescheduler
1099
+ - React-utils
1100
+ - ReactCommon/turbomodule/core
1101
+ - Yoga
1102
+ - React-FabricComponents/components/text (0.79.3):
1103
+ - DoubleConversion
1104
+ - fast_float (= 6.1.4)
1105
+ - fmt (= 11.0.2)
1106
+ - glog
1107
+ - hermes-engine
1108
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1109
+ - RCTRequired
1110
+ - RCTTypeSafety
1111
+ - React-Core
1112
+ - React-cxxreact
1113
+ - React-debug
1114
+ - React-Fabric
1115
+ - React-featureflags
1116
+ - React-graphics
1117
+ - React-hermes
1118
+ - React-jsi
1119
+ - React-jsiexecutor
1120
+ - React-logger
1121
+ - React-rendererdebug
1122
+ - React-runtimescheduler
1123
+ - React-utils
1124
+ - ReactCommon/turbomodule/core
1125
+ - Yoga
1126
+ - React-FabricComponents/components/textinput (0.79.3):
1127
+ - DoubleConversion
1128
+ - fast_float (= 6.1.4)
1129
+ - fmt (= 11.0.2)
1130
+ - glog
1131
+ - hermes-engine
1132
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1133
+ - RCTRequired
1134
+ - RCTTypeSafety
1135
+ - React-Core
1136
+ - React-cxxreact
1137
+ - React-debug
1138
+ - React-Fabric
1139
+ - React-featureflags
1140
+ - React-graphics
1141
+ - React-hermes
1142
+ - React-jsi
1143
+ - React-jsiexecutor
1144
+ - React-logger
1145
+ - React-rendererdebug
1146
+ - React-runtimescheduler
1147
+ - React-utils
1148
+ - ReactCommon/turbomodule/core
1149
+ - Yoga
1150
+ - React-FabricComponents/components/unimplementedview (0.79.3):
1151
+ - DoubleConversion
1152
+ - fast_float (= 6.1.4)
1153
+ - fmt (= 11.0.2)
1154
+ - glog
1155
+ - hermes-engine
1156
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1157
+ - RCTRequired
1158
+ - RCTTypeSafety
1159
+ - React-Core
1160
+ - React-cxxreact
1161
+ - React-debug
1162
+ - React-Fabric
1163
+ - React-featureflags
1164
+ - React-graphics
1165
+ - React-hermes
1166
+ - React-jsi
1167
+ - React-jsiexecutor
1168
+ - React-logger
1169
+ - React-rendererdebug
1170
+ - React-runtimescheduler
1171
+ - React-utils
1172
+ - ReactCommon/turbomodule/core
1173
+ - Yoga
1174
+ - React-FabricComponents/textlayoutmanager (0.79.3):
1175
+ - DoubleConversion
1176
+ - fast_float (= 6.1.4)
1177
+ - fmt (= 11.0.2)
1178
+ - glog
1179
+ - hermes-engine
1180
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1181
+ - RCTRequired
1182
+ - RCTTypeSafety
1183
+ - React-Core
1184
+ - React-cxxreact
1185
+ - React-debug
1186
+ - React-Fabric
1187
+ - React-featureflags
1188
+ - React-graphics
1189
+ - React-hermes
1190
+ - React-jsi
1191
+ - React-jsiexecutor
1192
+ - React-logger
1193
+ - React-rendererdebug
1194
+ - React-runtimescheduler
1195
+ - React-utils
1196
+ - ReactCommon/turbomodule/core
1197
+ - Yoga
1198
+ - React-FabricImage (0.79.3):
1199
+ - DoubleConversion
1200
+ - fast_float (= 6.1.4)
1201
+ - fmt (= 11.0.2)
1202
+ - glog
1203
+ - hermes-engine
1204
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1205
+ - RCTRequired (= 0.79.3)
1206
+ - RCTTypeSafety (= 0.79.3)
1207
+ - React-Fabric
1208
+ - React-featureflags
1209
+ - React-graphics
1210
+ - React-hermes
1211
+ - React-ImageManager
1212
+ - React-jsi
1213
+ - React-jsiexecutor (= 0.79.3)
1214
+ - React-logger
1215
+ - React-rendererdebug
1216
+ - React-utils
1217
+ - ReactCommon
1218
+ - Yoga
1219
+ - React-featureflags (0.79.3):
1220
+ - RCT-Folly (= 2024.11.18.00)
1221
+ - React-featureflagsnativemodule (0.79.3):
1222
+ - hermes-engine
1223
+ - RCT-Folly
1224
+ - React-featureflags
1225
+ - React-hermes
1226
+ - React-jsi
1227
+ - React-jsiexecutor
1228
+ - React-RCTFBReactNativeSpec
1229
+ - ReactCommon/turbomodule/core
1230
+ - React-graphics (0.79.3):
1231
+ - DoubleConversion
1232
+ - fast_float (= 6.1.4)
1233
+ - fmt (= 11.0.2)
1234
+ - glog
1235
+ - hermes-engine
1236
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1237
+ - React-hermes
1238
+ - React-jsi
1239
+ - React-jsiexecutor
1240
+ - React-utils
1241
+ - React-hermes (0.79.3):
1242
+ - DoubleConversion
1243
+ - fast_float (= 6.1.4)
1244
+ - fmt (= 11.0.2)
1245
+ - glog
1246
+ - hermes-engine
1247
+ - RCT-Folly (= 2024.11.18.00)
1248
+ - React-cxxreact (= 0.79.3)
1249
+ - React-jsi
1250
+ - React-jsiexecutor (= 0.79.3)
1251
+ - React-jsinspector
1252
+ - React-jsinspectortracing
1253
+ - React-perflogger (= 0.79.3)
1254
+ - React-runtimeexecutor
1255
+ - React-idlecallbacksnativemodule (0.79.3):
1256
+ - glog
1257
+ - hermes-engine
1258
+ - RCT-Folly
1259
+ - React-hermes
1260
+ - React-jsi
1261
+ - React-jsiexecutor
1262
+ - React-RCTFBReactNativeSpec
1263
+ - React-runtimescheduler
1264
+ - ReactCommon/turbomodule/core
1265
+ - React-ImageManager (0.79.3):
1266
+ - glog
1267
+ - RCT-Folly/Fabric
1268
+ - React-Core/Default
1269
+ - React-debug
1270
+ - React-Fabric
1271
+ - React-graphics
1272
+ - React-rendererdebug
1273
+ - React-utils
1274
+ - React-jserrorhandler (0.79.3):
1275
+ - glog
1276
+ - hermes-engine
1277
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1278
+ - React-cxxreact
1279
+ - React-debug
1280
+ - React-featureflags
1281
+ - React-jsi
1282
+ - ReactCommon/turbomodule/bridging
1283
+ - React-jsi (0.79.3):
1284
+ - boost
1285
+ - DoubleConversion
1286
+ - fast_float (= 6.1.4)
1287
+ - fmt (= 11.0.2)
1288
+ - glog
1289
+ - hermes-engine
1290
+ - RCT-Folly (= 2024.11.18.00)
1291
+ - React-jsiexecutor (0.79.3):
1292
+ - DoubleConversion
1293
+ - fast_float (= 6.1.4)
1294
+ - fmt (= 11.0.2)
1295
+ - glog
1296
+ - hermes-engine
1297
+ - RCT-Folly (= 2024.11.18.00)
1298
+ - React-cxxreact (= 0.79.3)
1299
+ - React-jsi (= 0.79.3)
1300
+ - React-jsinspector
1301
+ - React-jsinspectortracing
1302
+ - React-perflogger (= 0.79.3)
1303
+ - React-jsinspector (0.79.3):
1304
+ - DoubleConversion
1305
+ - glog
1306
+ - hermes-engine
1307
+ - RCT-Folly
1308
+ - React-featureflags
1309
+ - React-jsi
1310
+ - React-jsinspectortracing
1311
+ - React-perflogger (= 0.79.3)
1312
+ - React-runtimeexecutor (= 0.79.3)
1313
+ - React-jsinspectortracing (0.79.3):
1314
+ - RCT-Folly
1315
+ - React-oscompat
1316
+ - React-jsitooling (0.79.3):
1317
+ - DoubleConversion
1318
+ - fast_float (= 6.1.4)
1319
+ - fmt (= 11.0.2)
1320
+ - glog
1321
+ - RCT-Folly (= 2024.11.18.00)
1322
+ - React-cxxreact (= 0.79.3)
1323
+ - React-jsi (= 0.79.3)
1324
+ - React-jsinspector
1325
+ - React-jsinspectortracing
1326
+ - React-jsitracing (0.79.3):
1327
+ - React-jsi
1328
+ - React-logger (0.79.3):
1329
+ - glog
1330
+ - React-Mapbuffer (0.79.3):
1331
+ - glog
1332
+ - React-debug
1333
+ - React-microtasksnativemodule (0.79.3):
1334
+ - hermes-engine
1335
+ - RCT-Folly
1336
+ - React-hermes
1337
+ - React-jsi
1338
+ - React-jsiexecutor
1339
+ - React-RCTFBReactNativeSpec
1340
+ - ReactCommon/turbomodule/core
1341
+ - React-NativeModulesApple (0.79.3):
1342
+ - glog
1343
+ - hermes-engine
1344
+ - React-callinvoker
1345
+ - React-Core
1346
+ - React-cxxreact
1347
+ - React-featureflags
1348
+ - React-hermes
1349
+ - React-jsi
1350
+ - React-jsinspector
1351
+ - React-runtimeexecutor
1352
+ - ReactCommon/turbomodule/bridging
1353
+ - ReactCommon/turbomodule/core
1354
+ - React-oscompat (0.79.3)
1355
+ - React-perflogger (0.79.3):
1356
+ - DoubleConversion
1357
+ - RCT-Folly (= 2024.11.18.00)
1358
+ - React-performancetimeline (0.79.3):
1359
+ - RCT-Folly (= 2024.11.18.00)
1360
+ - React-cxxreact
1361
+ - React-featureflags
1362
+ - React-jsinspectortracing
1363
+ - React-perflogger
1364
+ - React-timing
1365
+ - React-RCTActionSheet (0.79.3):
1366
+ - React-Core/RCTActionSheetHeaders (= 0.79.3)
1367
+ - React-RCTAnimation (0.79.3):
1368
+ - RCT-Folly (= 2024.11.18.00)
1369
+ - RCTTypeSafety
1370
+ - React-Core/RCTAnimationHeaders
1371
+ - React-jsi
1372
+ - React-NativeModulesApple
1373
+ - React-RCTFBReactNativeSpec
1374
+ - ReactCommon
1375
+ - React-RCTAppDelegate (0.79.3):
1376
+ - hermes-engine
1377
+ - RCT-Folly (= 2024.11.18.00)
1378
+ - RCTRequired
1379
+ - RCTTypeSafety
1380
+ - React-Core
1381
+ - React-CoreModules
1382
+ - React-debug
1383
+ - React-defaultsnativemodule
1384
+ - React-Fabric
1385
+ - React-featureflags
1386
+ - React-graphics
1387
+ - React-hermes
1388
+ - React-jsitooling
1389
+ - React-NativeModulesApple
1390
+ - React-RCTFabric
1391
+ - React-RCTFBReactNativeSpec
1392
+ - React-RCTImage
1393
+ - React-RCTNetwork
1394
+ - React-RCTRuntime
1395
+ - React-rendererdebug
1396
+ - React-RuntimeApple
1397
+ - React-RuntimeCore
1398
+ - React-runtimescheduler
1399
+ - React-utils
1400
+ - ReactCommon
1401
+ - React-RCTBlob (0.79.3):
1402
+ - DoubleConversion
1403
+ - fast_float (= 6.1.4)
1404
+ - fmt (= 11.0.2)
1405
+ - hermes-engine
1406
+ - RCT-Folly (= 2024.11.18.00)
1407
+ - React-Core/RCTBlobHeaders
1408
+ - React-Core/RCTWebSocket
1409
+ - React-jsi
1410
+ - React-jsinspector
1411
+ - React-NativeModulesApple
1412
+ - React-RCTFBReactNativeSpec
1413
+ - React-RCTNetwork
1414
+ - ReactCommon
1415
+ - React-RCTFabric (0.79.3):
1416
+ - glog
1417
+ - hermes-engine
1418
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1419
+ - React-Core
1420
+ - React-debug
1421
+ - React-Fabric
1422
+ - React-FabricComponents
1423
+ - React-FabricImage
1424
+ - React-featureflags
1425
+ - React-graphics
1426
+ - React-hermes
1427
+ - React-ImageManager
1428
+ - React-jsi
1429
+ - React-jsinspector
1430
+ - React-jsinspectortracing
1431
+ - React-performancetimeline
1432
+ - React-RCTAnimation
1433
+ - React-RCTImage
1434
+ - React-RCTText
1435
+ - React-rendererconsistency
1436
+ - React-renderercss
1437
+ - React-rendererdebug
1438
+ - React-runtimescheduler
1439
+ - React-utils
1440
+ - Yoga
1441
+ - React-RCTFBReactNativeSpec (0.79.3):
1442
+ - hermes-engine
1443
+ - RCT-Folly
1444
+ - RCTRequired
1445
+ - RCTTypeSafety
1446
+ - React-Core
1447
+ - React-hermes
1448
+ - React-jsi
1449
+ - React-jsiexecutor
1450
+ - React-NativeModulesApple
1451
+ - ReactCommon
1452
+ - React-RCTImage (0.79.3):
1453
+ - RCT-Folly (= 2024.11.18.00)
1454
+ - RCTTypeSafety
1455
+ - React-Core/RCTImageHeaders
1456
+ - React-jsi
1457
+ - React-NativeModulesApple
1458
+ - React-RCTFBReactNativeSpec
1459
+ - React-RCTNetwork
1460
+ - ReactCommon
1461
+ - React-RCTLinking (0.79.3):
1462
+ - React-Core/RCTLinkingHeaders (= 0.79.3)
1463
+ - React-jsi (= 0.79.3)
1464
+ - React-NativeModulesApple
1465
+ - React-RCTFBReactNativeSpec
1466
+ - ReactCommon
1467
+ - ReactCommon/turbomodule/core (= 0.79.3)
1468
+ - React-RCTNetwork (0.79.3):
1469
+ - RCT-Folly (= 2024.11.18.00)
1470
+ - RCTTypeSafety
1471
+ - React-Core/RCTNetworkHeaders
1472
+ - React-jsi
1473
+ - React-NativeModulesApple
1474
+ - React-RCTFBReactNativeSpec
1475
+ - ReactCommon
1476
+ - React-RCTRuntime (0.79.3):
1477
+ - glog
1478
+ - hermes-engine
1479
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1480
+ - React-Core
1481
+ - React-hermes
1482
+ - React-jsi
1483
+ - React-jsinspector
1484
+ - React-jsinspectortracing
1485
+ - React-jsitooling
1486
+ - React-RuntimeApple
1487
+ - React-RuntimeCore
1488
+ - React-RuntimeHermes
1489
+ - React-RCTSettings (0.79.3):
1490
+ - RCT-Folly (= 2024.11.18.00)
1491
+ - RCTTypeSafety
1492
+ - React-Core/RCTSettingsHeaders
1493
+ - React-jsi
1494
+ - React-NativeModulesApple
1495
+ - React-RCTFBReactNativeSpec
1496
+ - ReactCommon
1497
+ - React-RCTText (0.79.3):
1498
+ - React-Core/RCTTextHeaders (= 0.79.3)
1499
+ - Yoga
1500
+ - React-RCTVibration (0.79.3):
1501
+ - RCT-Folly (= 2024.11.18.00)
1502
+ - React-Core/RCTVibrationHeaders
1503
+ - React-jsi
1504
+ - React-NativeModulesApple
1505
+ - React-RCTFBReactNativeSpec
1506
+ - ReactCommon
1507
+ - React-rendererconsistency (0.79.3)
1508
+ - React-renderercss (0.79.3):
1509
+ - React-debug
1510
+ - React-utils
1511
+ - React-rendererdebug (0.79.3):
1512
+ - DoubleConversion
1513
+ - fast_float (= 6.1.4)
1514
+ - fmt (= 11.0.2)
1515
+ - RCT-Folly (= 2024.11.18.00)
1516
+ - React-debug
1517
+ - React-rncore (0.79.3)
1518
+ - React-RuntimeApple (0.79.3):
1519
+ - hermes-engine
1520
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1521
+ - React-callinvoker
1522
+ - React-Core/Default
1523
+ - React-CoreModules
1524
+ - React-cxxreact
1525
+ - React-featureflags
1526
+ - React-jserrorhandler
1527
+ - React-jsi
1528
+ - React-jsiexecutor
1529
+ - React-jsinspector
1530
+ - React-jsitooling
1531
+ - React-Mapbuffer
1532
+ - React-NativeModulesApple
1533
+ - React-RCTFabric
1534
+ - React-RCTFBReactNativeSpec
1535
+ - React-RuntimeCore
1536
+ - React-runtimeexecutor
1537
+ - React-RuntimeHermes
1538
+ - React-runtimescheduler
1539
+ - React-utils
1540
+ - React-RuntimeCore (0.79.3):
1541
+ - glog
1542
+ - hermes-engine
1543
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1544
+ - React-cxxreact
1545
+ - React-Fabric
1546
+ - React-featureflags
1547
+ - React-hermes
1548
+ - React-jserrorhandler
1549
+ - React-jsi
1550
+ - React-jsiexecutor
1551
+ - React-jsinspector
1552
+ - React-jsitooling
1553
+ - React-performancetimeline
1554
+ - React-runtimeexecutor
1555
+ - React-runtimescheduler
1556
+ - React-utils
1557
+ - React-runtimeexecutor (0.79.3):
1558
+ - React-jsi (= 0.79.3)
1559
+ - React-RuntimeHermes (0.79.3):
1560
+ - hermes-engine
1561
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1562
+ - React-featureflags
1563
+ - React-hermes
1564
+ - React-jsi
1565
+ - React-jsinspector
1566
+ - React-jsinspectortracing
1567
+ - React-jsitooling
1568
+ - React-jsitracing
1569
+ - React-RuntimeCore
1570
+ - React-utils
1571
+ - React-runtimescheduler (0.79.3):
1572
+ - glog
1573
+ - hermes-engine
1574
+ - RCT-Folly (= 2024.11.18.00)
1575
+ - React-callinvoker
1576
+ - React-cxxreact
1577
+ - React-debug
1578
+ - React-featureflags
1579
+ - React-hermes
1580
+ - React-jsi
1581
+ - React-jsinspectortracing
1582
+ - React-performancetimeline
1583
+ - React-rendererconsistency
1584
+ - React-rendererdebug
1585
+ - React-runtimeexecutor
1586
+ - React-timing
1587
+ - React-utils
1588
+ - React-timing (0.79.3)
1589
+ - React-utils (0.79.3):
1590
+ - glog
1591
+ - hermes-engine
1592
+ - RCT-Folly (= 2024.11.18.00)
1593
+ - React-debug
1594
+ - React-hermes
1595
+ - React-jsi (= 0.79.3)
1596
+ - ReactAppDependencyProvider (0.79.3):
1597
+ - ReactCodegen
1598
+ - ReactCodegen (0.79.3):
1599
+ - DoubleConversion
1600
+ - glog
1601
+ - hermes-engine
1602
+ - RCT-Folly
1603
+ - RCTRequired
1604
+ - RCTTypeSafety
1605
+ - React-Core
1606
+ - React-debug
1607
+ - React-Fabric
1608
+ - React-FabricImage
1609
+ - React-featureflags
1610
+ - React-graphics
1611
+ - React-hermes
1612
+ - React-jsi
1613
+ - React-jsiexecutor
1614
+ - React-NativeModulesApple
1615
+ - React-RCTAppDelegate
1616
+ - React-rendererdebug
1617
+ - React-utils
1618
+ - ReactCommon/turbomodule/bridging
1619
+ - ReactCommon/turbomodule/core
1620
+ - ReactCommon (0.79.3):
1621
+ - ReactCommon/turbomodule (= 0.79.3)
1622
+ - ReactCommon/turbomodule (0.79.3):
1623
+ - DoubleConversion
1624
+ - fast_float (= 6.1.4)
1625
+ - fmt (= 11.0.2)
1626
+ - glog
1627
+ - hermes-engine
1628
+ - RCT-Folly (= 2024.11.18.00)
1629
+ - React-callinvoker (= 0.79.3)
1630
+ - React-cxxreact (= 0.79.3)
1631
+ - React-jsi (= 0.79.3)
1632
+ - React-logger (= 0.79.3)
1633
+ - React-perflogger (= 0.79.3)
1634
+ - ReactCommon/turbomodule/bridging (= 0.79.3)
1635
+ - ReactCommon/turbomodule/core (= 0.79.3)
1636
+ - ReactCommon/turbomodule/bridging (0.79.3):
1637
+ - DoubleConversion
1638
+ - fast_float (= 6.1.4)
1639
+ - fmt (= 11.0.2)
1640
+ - glog
1641
+ - hermes-engine
1642
+ - RCT-Folly (= 2024.11.18.00)
1643
+ - React-callinvoker (= 0.79.3)
1644
+ - React-cxxreact (= 0.79.3)
1645
+ - React-jsi (= 0.79.3)
1646
+ - React-logger (= 0.79.3)
1647
+ - React-perflogger (= 0.79.3)
1648
+ - ReactCommon/turbomodule/core (0.79.3):
1649
+ - DoubleConversion
1650
+ - fast_float (= 6.1.4)
1651
+ - fmt (= 11.0.2)
1652
+ - glog
1653
+ - hermes-engine
1654
+ - RCT-Folly (= 2024.11.18.00)
1655
+ - React-callinvoker (= 0.79.3)
1656
+ - React-cxxreact (= 0.79.3)
1657
+ - React-debug (= 0.79.3)
1658
+ - React-featureflags (= 0.79.3)
1659
+ - React-jsi (= 0.79.3)
1660
+ - React-logger (= 0.79.3)
1661
+ - React-perflogger (= 0.79.3)
1662
+ - React-utils (= 0.79.3)
1663
+ - RNCAsyncStorage (1.24.0):
1664
+ - DoubleConversion
1665
+ - glog
1666
+ - hermes-engine
1667
+ - RCT-Folly (= 2024.11.18.00)
1668
+ - RCTRequired
1669
+ - RCTTypeSafety
1670
+ - React-Core
1671
+ - React-debug
1672
+ - React-Fabric
1673
+ - React-featureflags
1674
+ - React-graphics
1675
+ - React-hermes
1676
+ - React-ImageManager
1677
+ - React-jsi
1678
+ - React-NativeModulesApple
1679
+ - React-RCTFabric
1680
+ - React-renderercss
1681
+ - React-rendererdebug
1682
+ - React-utils
1683
+ - ReactCodegen
1684
+ - ReactCommon/turbomodule/bridging
1685
+ - ReactCommon/turbomodule/core
1686
+ - Yoga
1687
+ - SocketRocket (0.7.1)
1688
+ - Yoga (0.0.0)
1689
+
1690
+ DEPENDENCIES:
1691
+ - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
1692
+ - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
1693
+ - fast_float (from `../node_modules/react-native/third-party-podspecs/fast_float.podspec`)
1694
+ - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
1695
+ - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
1696
+ - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
1697
+ - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
1698
+ - MixpanelReactNative (from `../node_modules/mixpanel-react-native`)
1699
+ - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1700
+ - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1701
+ - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
1702
+ - RCTRequired (from `../node_modules/react-native/Libraries/Required`)
1703
+ - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
1704
+ - React (from `../node_modules/react-native/`)
1705
+ - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
1706
+ - React-Core (from `../node_modules/react-native/`)
1707
+ - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
1708
+ - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
1709
+ - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
1710
+ - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
1711
+ - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`)
1712
+ - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`)
1713
+ - React-Fabric (from `../node_modules/react-native/ReactCommon`)
1714
+ - React-FabricComponents (from `../node_modules/react-native/ReactCommon`)
1715
+ - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
1716
+ - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
1717
+ - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`)
1718
+ - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
1719
+ - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
1720
+ - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`)
1721
+ - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
1722
+ - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
1723
+ - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
1724
+ - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
1725
+ - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
1726
+ - React-jsinspectortracing (from `../node_modules/react-native/ReactCommon/jsinspector-modern/tracing`)
1727
+ - React-jsitooling (from `../node_modules/react-native/ReactCommon/jsitooling`)
1728
+ - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
1729
+ - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
1730
+ - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
1731
+ - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
1732
+ - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
1733
+ - React-oscompat (from `../node_modules/react-native/ReactCommon/oscompat`)
1734
+ - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
1735
+ - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)
1736
+ - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
1737
+ - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
1738
+ - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
1739
+ - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
1740
+ - React-RCTFabric (from `../node_modules/react-native/React`)
1741
+ - React-RCTFBReactNativeSpec (from `../node_modules/react-native/React`)
1742
+ - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
1743
+ - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
1744
+ - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
1745
+ - React-RCTRuntime (from `../node_modules/react-native/React/Runtime`)
1746
+ - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
1747
+ - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
1748
+ - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
1749
+ - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)
1750
+ - React-renderercss (from `../node_modules/react-native/ReactCommon/react/renderer/css`)
1751
+ - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
1752
+ - React-rncore (from `../node_modules/react-native/ReactCommon`)
1753
+ - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
1754
+ - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
1755
+ - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
1756
+ - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)
1757
+ - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
1758
+ - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`)
1759
+ - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
1760
+ - ReactAppDependencyProvider (from `build/generated/ios`)
1761
+ - ReactCodegen (from `build/generated/ios`)
1762
+ - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
1763
+ - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
1764
+ - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
1765
+
1766
+ SPEC REPOS:
1767
+ trunk:
1768
+ - Mixpanel-swift
1769
+ - SocketRocket
1770
+
1771
+ EXTERNAL SOURCES:
1772
+ boost:
1773
+ :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
1774
+ DoubleConversion:
1775
+ :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
1776
+ fast_float:
1777
+ :podspec: "../node_modules/react-native/third-party-podspecs/fast_float.podspec"
1778
+ FBLazyVector:
1779
+ :path: "../node_modules/react-native/Libraries/FBLazyVector"
1780
+ fmt:
1781
+ :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"
1782
+ glog:
1783
+ :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
1784
+ hermes-engine:
1785
+ :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
1786
+ :tag: hermes-2025-06-04-RNv0.79.3-7f9a871eefeb2c3852365ee80f0b6733ec12ac3b
1787
+ MixpanelReactNative:
1788
+ :path: "../node_modules/mixpanel-react-native"
1789
+ RCT-Folly:
1790
+ :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
1791
+ RCTDeprecation:
1792
+ :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
1793
+ RCTRequired:
1794
+ :path: "../node_modules/react-native/Libraries/Required"
1795
+ RCTTypeSafety:
1796
+ :path: "../node_modules/react-native/Libraries/TypeSafety"
1797
+ React:
1798
+ :path: "../node_modules/react-native/"
1799
+ React-callinvoker:
1800
+ :path: "../node_modules/react-native/ReactCommon/callinvoker"
1801
+ React-Core:
1802
+ :path: "../node_modules/react-native/"
1803
+ React-CoreModules:
1804
+ :path: "../node_modules/react-native/React/CoreModules"
1805
+ React-cxxreact:
1806
+ :path: "../node_modules/react-native/ReactCommon/cxxreact"
1807
+ React-debug:
1808
+ :path: "../node_modules/react-native/ReactCommon/react/debug"
1809
+ React-defaultsnativemodule:
1810
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults"
1811
+ React-domnativemodule:
1812
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom"
1813
+ React-Fabric:
1814
+ :path: "../node_modules/react-native/ReactCommon"
1815
+ React-FabricComponents:
1816
+ :path: "../node_modules/react-native/ReactCommon"
1817
+ React-FabricImage:
1818
+ :path: "../node_modules/react-native/ReactCommon"
1819
+ React-featureflags:
1820
+ :path: "../node_modules/react-native/ReactCommon/react/featureflags"
1821
+ React-featureflagsnativemodule:
1822
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags"
1823
+ React-graphics:
1824
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
1825
+ React-hermes:
1826
+ :path: "../node_modules/react-native/ReactCommon/hermes"
1827
+ React-idlecallbacksnativemodule:
1828
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks"
1829
+ React-ImageManager:
1830
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
1831
+ React-jserrorhandler:
1832
+ :path: "../node_modules/react-native/ReactCommon/jserrorhandler"
1833
+ React-jsi:
1834
+ :path: "../node_modules/react-native/ReactCommon/jsi"
1835
+ React-jsiexecutor:
1836
+ :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
1837
+ React-jsinspector:
1838
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
1839
+ React-jsinspectortracing:
1840
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/tracing"
1841
+ React-jsitooling:
1842
+ :path: "../node_modules/react-native/ReactCommon/jsitooling"
1843
+ React-jsitracing:
1844
+ :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
1845
+ React-logger:
1846
+ :path: "../node_modules/react-native/ReactCommon/logger"
1847
+ React-Mapbuffer:
1848
+ :path: "../node_modules/react-native/ReactCommon"
1849
+ React-microtasksnativemodule:
1850
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
1851
+ React-NativeModulesApple:
1852
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
1853
+ React-oscompat:
1854
+ :path: "../node_modules/react-native/ReactCommon/oscompat"
1855
+ React-perflogger:
1856
+ :path: "../node_modules/react-native/ReactCommon/reactperflogger"
1857
+ React-performancetimeline:
1858
+ :path: "../node_modules/react-native/ReactCommon/react/performance/timeline"
1859
+ React-RCTActionSheet:
1860
+ :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
1861
+ React-RCTAnimation:
1862
+ :path: "../node_modules/react-native/Libraries/NativeAnimation"
1863
+ React-RCTAppDelegate:
1864
+ :path: "../node_modules/react-native/Libraries/AppDelegate"
1865
+ React-RCTBlob:
1866
+ :path: "../node_modules/react-native/Libraries/Blob"
1867
+ React-RCTFabric:
1868
+ :path: "../node_modules/react-native/React"
1869
+ React-RCTFBReactNativeSpec:
1870
+ :path: "../node_modules/react-native/React"
1871
+ React-RCTImage:
1872
+ :path: "../node_modules/react-native/Libraries/Image"
1873
+ React-RCTLinking:
1874
+ :path: "../node_modules/react-native/Libraries/LinkingIOS"
1875
+ React-RCTNetwork:
1876
+ :path: "../node_modules/react-native/Libraries/Network"
1877
+ React-RCTRuntime:
1878
+ :path: "../node_modules/react-native/React/Runtime"
1879
+ React-RCTSettings:
1880
+ :path: "../node_modules/react-native/Libraries/Settings"
1881
+ React-RCTText:
1882
+ :path: "../node_modules/react-native/Libraries/Text"
1883
+ React-RCTVibration:
1884
+ :path: "../node_modules/react-native/Libraries/Vibration"
1885
+ React-rendererconsistency:
1886
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency"
1887
+ React-renderercss:
1888
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/css"
1889
+ React-rendererdebug:
1890
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
1891
+ React-rncore:
1892
+ :path: "../node_modules/react-native/ReactCommon"
1893
+ React-RuntimeApple:
1894
+ :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
1895
+ React-RuntimeCore:
1896
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
1897
+ React-runtimeexecutor:
1898
+ :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
1899
+ React-RuntimeHermes:
1900
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
1901
+ React-runtimescheduler:
1902
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
1903
+ React-timing:
1904
+ :path: "../node_modules/react-native/ReactCommon/react/timing"
1905
+ React-utils:
1906
+ :path: "../node_modules/react-native/ReactCommon/react/utils"
1907
+ ReactAppDependencyProvider:
1908
+ :path: build/generated/ios
1909
+ ReactCodegen:
1910
+ :path: build/generated/ios
1911
+ ReactCommon:
1912
+ :path: "../node_modules/react-native/ReactCommon"
1913
+ RNCAsyncStorage:
1914
+ :path: "../node_modules/@react-native-async-storage/async-storage"
1915
+ Yoga:
1916
+ :path: "../node_modules/react-native/ReactCommon/yoga"
1917
+
1918
+ SPEC CHECKSUMS:
1919
+ boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90
1920
+ DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
1921
+ fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6
1922
+ FBLazyVector: a62a7a5760929b6265e27bc01ab7598dde93ebd3
1923
+ fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd
1924
+ glog: 5683914934d5b6e4240e497e0f4a3b42d1854183
1925
+ hermes-engine: 94ed01537bdeccaab1adbf94b040d115d6fa1a7f
1926
+ Mixpanel-swift: 630484a1b61cb90820aa34492798d542d9f1d0f1
1927
+ MixpanelReactNative: 30f767dd9aab033e24821454874afaa35c20e293
1928
+ RCT-Folly: 36fe2295e44b10d831836cc0d1daec5f8abcf809
1929
+ RCTDeprecation: c3e3f5b4ea83e7ff3bc86ce09e2a54b7affd687d
1930
+ RCTRequired: ee438439880dffc9425930d1dd1a3c883ee6879c
1931
+ RCTTypeSafety: fe728195791e1a0222aa83596a570cf377cd475e
1932
+ React: 114ee161feb204412580928b743e6716aebac987
1933
+ React-callinvoker: d175cf3640a993f6cd960044a7657543157f0ba9
1934
+ React-Core: e84d47ce3df8dde567f5b9668f6103f8e562d72a
1935
+ React-CoreModules: ce8e588dca54cd790e2d424d0e678924e62b41b1
1936
+ React-cxxreact: 2c10954abacc35e876adf46e25ebfd74a0106521
1937
+ React-debug: 5414189118050ebad6c701942c01c63bb499f5a6
1938
+ React-defaultsnativemodule: fdde92d2e675382f275cd2e4d09adf553d67cad8
1939
+ React-domnativemodule: 8557aaaaf238dede0f717d1d8af5a0738301ab2b
1940
+ React-Fabric: c7e8258e0a2b059f52fa17c43e73840f11dcebc0
1941
+ React-FabricComponents: 64f9152449dcd5b5e56109bed1b8fccd502c7ea3
1942
+ React-FabricImage: 0357eaaa48d9faae8250647ed843379c33b8e9e9
1943
+ React-featureflags: 670eb7cdf1495ea7bf392f653c19268291acaad1
1944
+ React-featureflagsnativemodule: 7c00e55641b40f8b756a8782daa19d905762381d
1945
+ React-graphics: c90ff68c04d51c184afb6d60646bddb049a2fe10
1946
+ React-hermes: 2a9fb8df8a1be5e5b065c91d7b0fad072554055e
1947
+ React-idlecallbacksnativemodule: 740dd584b66c31fe5f728b8dff4bf6b423074bce
1948
+ React-ImageManager: 57474ab8176ce1778188326912370ed452712fe2
1949
+ React-jserrorhandler: e1c5c0eb4c307ee8bea7e4ce5c34f9952a771060
1950
+ React-jsi: 606a42a46f9a7299c1757686c6856eca8346754b
1951
+ React-jsiexecutor: 762ee9c7962597d2f168afee00a0cac7573e6e48
1952
+ React-jsinspector: 1c392e230b5a7bb58081021f3be5d17858eb1ef5
1953
+ React-jsinspectortracing: 09132689843f824945b68895daf5fc7e27d71742
1954
+ React-jsitooling: 9f834140bdeebb07b1503790b1066acb862e1c53
1955
+ React-jsitracing: 9535edb956a9784fa406e35c05c83a45a64ca403
1956
+ React-logger: 44e070aefe084568c02b544b9d7d436703be1a47
1957
+ React-Mapbuffer: b25dedf7fe8923898c44b217ee2ef75c837d0e6a
1958
+ React-microtasksnativemodule: 22bd119cb27aa28ff15a4e9311e1a53034c14eab
1959
+ React-NativeModulesApple: 28df2c2241d8e2be46db34179f86ad76a3663068
1960
+ React-oscompat: f26aa2a4adc84c34212ab12c07988fe19e9cf16a
1961
+ React-perflogger: fb196ad3fa3263afc55f773a10c2741517a27f7c
1962
+ React-performancetimeline: 4979f4bf1c13bd4b8050e5599c92c0c8a5f4f7ad
1963
+ React-RCTActionSheet: c89c8b9b7c3ef87cb6a67e20f5eaea271f4b5f67
1964
+ React-RCTAnimation: 8cff4eda84c7e70c674c50763c724c660ae7e56c
1965
+ React-RCTAppDelegate: 12b784fb29e25a606aaf869d11efb4ae97bb81b3
1966
+ React-RCTBlob: 105ead00cc3cb7ed4180481cec7cb68829c0c16b
1967
+ React-RCTFabric: 1b51a08f06f61bd757b3b3bf8e38240cbd969056
1968
+ React-RCTFBReactNativeSpec: c3bfd143e072358d0d8b7efc97fb6a09e77f8f46
1969
+ React-RCTImage: ef3831114706dbb9ccab839abe804edef1e1faab
1970
+ React-RCTLinking: eadceef820a11dd2bc7b4b569406eacc637c7f82
1971
+ React-RCTNetwork: 9e1323f0cdfaf0f561d8a6667363cc8deadf41e8
1972
+ React-RCTRuntime: 2427ecba97fbfdd430b443ee4e5cb1ca195897b2
1973
+ React-RCTSettings: 482bb7da0e94823cd1a36edd408c85abb2d2e42a
1974
+ React-RCTText: d103fac423b92be0ed295767ea4c2ecc1f4389fd
1975
+ React-RCTVibration: 816504f335105f0682467823400436e18ec98b7b
1976
+ React-rendererconsistency: 6a79c0a31890942940480f6e761365c4f604394f
1977
+ React-renderercss: 7635fe6c07a8e2e2e428c022bdc8475986e714d2
1978
+ React-rendererdebug: cc2fb12e1a64342a970c1b45e88549fe8a41d7e4
1979
+ React-rncore: 91456f1e8feadf5216b37073968c16c14061f8d7
1980
+ React-RuntimeApple: 0bbd2594e65b794e3ca8c678008b7b9a746c03eb
1981
+ React-RuntimeCore: 9feee9dbf2e7d6db7770655026c4a7577c5b21ab
1982
+ React-runtimeexecutor: 4e7bc0119ff38f80df43d109ef9508497cac1eee
1983
+ React-RuntimeHermes: 177ec426c0307f4eda0d9ece5a5d7424aaf2ce6c
1984
+ React-runtimescheduler: 0d063fb7f7b4dcc1032503f2180e2537ad710e40
1985
+ React-timing: 4e298a80e9a41c31d884df0422c9eb73a240ec0d
1986
+ React-utils: f2cfe205e3206aac6a263ce749f5ddb62d0b238d
1987
+ ReactAppDependencyProvider: 552391af67c115d8ee20f9359711e7821145cd96
1988
+ ReactCodegen: 1807bcf4715beaa540417d139032b54e57cdd005
1989
+ ReactCommon: b7062f81f6ea61ec29e03aab1d439fb56c49372c
1990
+ RNCAsyncStorage: aa2fec76310ebe0c7fe159a26755e099170116bb
1991
+ SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
1992
+ Yoga: 29f74a5b77dca8c37669e1e1e867e5f4e12407df
1993
+
1994
+ PODFILE CHECKSUM: 09368e0e09ea5acc15ad985bc4a0f866f3892ff7
1995
+
1996
+ COCOAPODS: 1.16.2