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,2839 @@
1
+ PODS:
2
+ - boost (1.84.0)
3
+ - DoubleConversion (1.1.6)
4
+ - fast_float (8.0.0)
5
+ - FBLazyVector (0.82.1)
6
+ - fmt (11.0.2)
7
+ - glog (0.3.5)
8
+ - hermes-engine (0.82.1):
9
+ - hermes-engine/Pre-built (= 0.82.1)
10
+ - hermes-engine/Pre-built (0.82.1)
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 (= 8.0.0)
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 (= 8.0.0)
28
+ - fmt (= 11.0.2)
29
+ - glog
30
+ - RCT-Folly/Fabric (2024.11.18.00):
31
+ - boost
32
+ - DoubleConversion
33
+ - fast_float (= 8.0.0)
34
+ - fmt (= 11.0.2)
35
+ - glog
36
+ - RCTDeprecation (0.82.1)
37
+ - RCTRequired (0.82.1)
38
+ - RCTTypeSafety (0.82.1):
39
+ - FBLazyVector (= 0.82.1)
40
+ - RCTRequired (= 0.82.1)
41
+ - React-Core (= 0.82.1)
42
+ - React (0.82.1):
43
+ - React-Core (= 0.82.1)
44
+ - React-Core/DevSupport (= 0.82.1)
45
+ - React-Core/RCTWebSocket (= 0.82.1)
46
+ - React-RCTActionSheet (= 0.82.1)
47
+ - React-RCTAnimation (= 0.82.1)
48
+ - React-RCTBlob (= 0.82.1)
49
+ - React-RCTImage (= 0.82.1)
50
+ - React-RCTLinking (= 0.82.1)
51
+ - React-RCTNetwork (= 0.82.1)
52
+ - React-RCTSettings (= 0.82.1)
53
+ - React-RCTText (= 0.82.1)
54
+ - React-RCTVibration (= 0.82.1)
55
+ - React-callinvoker (0.82.1)
56
+ - React-Core (0.82.1):
57
+ - boost
58
+ - DoubleConversion
59
+ - fast_float
60
+ - fmt
61
+ - glog
62
+ - hermes-engine
63
+ - RCT-Folly
64
+ - RCT-Folly/Fabric
65
+ - RCTDeprecation
66
+ - React-Core/Default (= 0.82.1)
67
+ - React-cxxreact
68
+ - React-featureflags
69
+ - React-hermes
70
+ - React-jsi
71
+ - React-jsiexecutor
72
+ - React-jsinspector
73
+ - React-jsinspectorcdp
74
+ - React-jsitooling
75
+ - React-perflogger
76
+ - React-runtimeexecutor
77
+ - React-runtimescheduler
78
+ - React-utils
79
+ - SocketRocket
80
+ - Yoga
81
+ - React-Core/CoreModulesHeaders (0.82.1):
82
+ - boost
83
+ - DoubleConversion
84
+ - fast_float
85
+ - fmt
86
+ - glog
87
+ - hermes-engine
88
+ - RCT-Folly
89
+ - RCT-Folly/Fabric
90
+ - RCTDeprecation
91
+ - React-Core/Default
92
+ - React-cxxreact
93
+ - React-featureflags
94
+ - React-hermes
95
+ - React-jsi
96
+ - React-jsiexecutor
97
+ - React-jsinspector
98
+ - React-jsinspectorcdp
99
+ - React-jsitooling
100
+ - React-perflogger
101
+ - React-runtimeexecutor
102
+ - React-runtimescheduler
103
+ - React-utils
104
+ - SocketRocket
105
+ - Yoga
106
+ - React-Core/Default (0.82.1):
107
+ - boost
108
+ - DoubleConversion
109
+ - fast_float
110
+ - fmt
111
+ - glog
112
+ - hermes-engine
113
+ - RCT-Folly
114
+ - RCT-Folly/Fabric
115
+ - RCTDeprecation
116
+ - React-cxxreact
117
+ - React-featureflags
118
+ - React-hermes
119
+ - React-jsi
120
+ - React-jsiexecutor
121
+ - React-jsinspector
122
+ - React-jsinspectorcdp
123
+ - React-jsitooling
124
+ - React-perflogger
125
+ - React-runtimeexecutor
126
+ - React-runtimescheduler
127
+ - React-utils
128
+ - SocketRocket
129
+ - Yoga
130
+ - React-Core/DevSupport (0.82.1):
131
+ - boost
132
+ - DoubleConversion
133
+ - fast_float
134
+ - fmt
135
+ - glog
136
+ - hermes-engine
137
+ - RCT-Folly
138
+ - RCT-Folly/Fabric
139
+ - RCTDeprecation
140
+ - React-Core/Default (= 0.82.1)
141
+ - React-Core/RCTWebSocket (= 0.82.1)
142
+ - React-cxxreact
143
+ - React-featureflags
144
+ - React-hermes
145
+ - React-jsi
146
+ - React-jsiexecutor
147
+ - React-jsinspector
148
+ - React-jsinspectorcdp
149
+ - React-jsitooling
150
+ - React-perflogger
151
+ - React-runtimeexecutor
152
+ - React-runtimescheduler
153
+ - React-utils
154
+ - SocketRocket
155
+ - Yoga
156
+ - React-Core/RCTActionSheetHeaders (0.82.1):
157
+ - boost
158
+ - DoubleConversion
159
+ - fast_float
160
+ - fmt
161
+ - glog
162
+ - hermes-engine
163
+ - RCT-Folly
164
+ - RCT-Folly/Fabric
165
+ - RCTDeprecation
166
+ - React-Core/Default
167
+ - React-cxxreact
168
+ - React-featureflags
169
+ - React-hermes
170
+ - React-jsi
171
+ - React-jsiexecutor
172
+ - React-jsinspector
173
+ - React-jsinspectorcdp
174
+ - React-jsitooling
175
+ - React-perflogger
176
+ - React-runtimeexecutor
177
+ - React-runtimescheduler
178
+ - React-utils
179
+ - SocketRocket
180
+ - Yoga
181
+ - React-Core/RCTAnimationHeaders (0.82.1):
182
+ - boost
183
+ - DoubleConversion
184
+ - fast_float
185
+ - fmt
186
+ - glog
187
+ - hermes-engine
188
+ - RCT-Folly
189
+ - RCT-Folly/Fabric
190
+ - RCTDeprecation
191
+ - React-Core/Default
192
+ - React-cxxreact
193
+ - React-featureflags
194
+ - React-hermes
195
+ - React-jsi
196
+ - React-jsiexecutor
197
+ - React-jsinspector
198
+ - React-jsinspectorcdp
199
+ - React-jsitooling
200
+ - React-perflogger
201
+ - React-runtimeexecutor
202
+ - React-runtimescheduler
203
+ - React-utils
204
+ - SocketRocket
205
+ - Yoga
206
+ - React-Core/RCTBlobHeaders (0.82.1):
207
+ - boost
208
+ - DoubleConversion
209
+ - fast_float
210
+ - fmt
211
+ - glog
212
+ - hermes-engine
213
+ - RCT-Folly
214
+ - RCT-Folly/Fabric
215
+ - RCTDeprecation
216
+ - React-Core/Default
217
+ - React-cxxreact
218
+ - React-featureflags
219
+ - React-hermes
220
+ - React-jsi
221
+ - React-jsiexecutor
222
+ - React-jsinspector
223
+ - React-jsinspectorcdp
224
+ - React-jsitooling
225
+ - React-perflogger
226
+ - React-runtimeexecutor
227
+ - React-runtimescheduler
228
+ - React-utils
229
+ - SocketRocket
230
+ - Yoga
231
+ - React-Core/RCTImageHeaders (0.82.1):
232
+ - boost
233
+ - DoubleConversion
234
+ - fast_float
235
+ - fmt
236
+ - glog
237
+ - hermes-engine
238
+ - RCT-Folly
239
+ - RCT-Folly/Fabric
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-jsinspectorcdp
249
+ - React-jsitooling
250
+ - React-perflogger
251
+ - React-runtimeexecutor
252
+ - React-runtimescheduler
253
+ - React-utils
254
+ - SocketRocket
255
+ - Yoga
256
+ - React-Core/RCTLinkingHeaders (0.82.1):
257
+ - boost
258
+ - DoubleConversion
259
+ - fast_float
260
+ - fmt
261
+ - glog
262
+ - hermes-engine
263
+ - RCT-Folly
264
+ - RCT-Folly/Fabric
265
+ - RCTDeprecation
266
+ - React-Core/Default
267
+ - React-cxxreact
268
+ - React-featureflags
269
+ - React-hermes
270
+ - React-jsi
271
+ - React-jsiexecutor
272
+ - React-jsinspector
273
+ - React-jsinspectorcdp
274
+ - React-jsitooling
275
+ - React-perflogger
276
+ - React-runtimeexecutor
277
+ - React-runtimescheduler
278
+ - React-utils
279
+ - SocketRocket
280
+ - Yoga
281
+ - React-Core/RCTNetworkHeaders (0.82.1):
282
+ - boost
283
+ - DoubleConversion
284
+ - fast_float
285
+ - fmt
286
+ - glog
287
+ - hermes-engine
288
+ - RCT-Folly
289
+ - RCT-Folly/Fabric
290
+ - RCTDeprecation
291
+ - React-Core/Default
292
+ - React-cxxreact
293
+ - React-featureflags
294
+ - React-hermes
295
+ - React-jsi
296
+ - React-jsiexecutor
297
+ - React-jsinspector
298
+ - React-jsinspectorcdp
299
+ - React-jsitooling
300
+ - React-perflogger
301
+ - React-runtimeexecutor
302
+ - React-runtimescheduler
303
+ - React-utils
304
+ - SocketRocket
305
+ - Yoga
306
+ - React-Core/RCTSettingsHeaders (0.82.1):
307
+ - boost
308
+ - DoubleConversion
309
+ - fast_float
310
+ - fmt
311
+ - glog
312
+ - hermes-engine
313
+ - RCT-Folly
314
+ - RCT-Folly/Fabric
315
+ - RCTDeprecation
316
+ - React-Core/Default
317
+ - React-cxxreact
318
+ - React-featureflags
319
+ - React-hermes
320
+ - React-jsi
321
+ - React-jsiexecutor
322
+ - React-jsinspector
323
+ - React-jsinspectorcdp
324
+ - React-jsitooling
325
+ - React-perflogger
326
+ - React-runtimeexecutor
327
+ - React-runtimescheduler
328
+ - React-utils
329
+ - SocketRocket
330
+ - Yoga
331
+ - React-Core/RCTTextHeaders (0.82.1):
332
+ - boost
333
+ - DoubleConversion
334
+ - fast_float
335
+ - fmt
336
+ - glog
337
+ - hermes-engine
338
+ - RCT-Folly
339
+ - RCT-Folly/Fabric
340
+ - RCTDeprecation
341
+ - React-Core/Default
342
+ - React-cxxreact
343
+ - React-featureflags
344
+ - React-hermes
345
+ - React-jsi
346
+ - React-jsiexecutor
347
+ - React-jsinspector
348
+ - React-jsinspectorcdp
349
+ - React-jsitooling
350
+ - React-perflogger
351
+ - React-runtimeexecutor
352
+ - React-runtimescheduler
353
+ - React-utils
354
+ - SocketRocket
355
+ - Yoga
356
+ - React-Core/RCTVibrationHeaders (0.82.1):
357
+ - boost
358
+ - DoubleConversion
359
+ - fast_float
360
+ - fmt
361
+ - glog
362
+ - hermes-engine
363
+ - RCT-Folly
364
+ - RCT-Folly/Fabric
365
+ - RCTDeprecation
366
+ - React-Core/Default
367
+ - React-cxxreact
368
+ - React-featureflags
369
+ - React-hermes
370
+ - React-jsi
371
+ - React-jsiexecutor
372
+ - React-jsinspector
373
+ - React-jsinspectorcdp
374
+ - React-jsitooling
375
+ - React-perflogger
376
+ - React-runtimeexecutor
377
+ - React-runtimescheduler
378
+ - React-utils
379
+ - SocketRocket
380
+ - Yoga
381
+ - React-Core/RCTWebSocket (0.82.1):
382
+ - boost
383
+ - DoubleConversion
384
+ - fast_float
385
+ - fmt
386
+ - glog
387
+ - hermes-engine
388
+ - RCT-Folly
389
+ - RCT-Folly/Fabric
390
+ - RCTDeprecation
391
+ - React-Core/Default (= 0.82.1)
392
+ - React-cxxreact
393
+ - React-featureflags
394
+ - React-hermes
395
+ - React-jsi
396
+ - React-jsiexecutor
397
+ - React-jsinspector
398
+ - React-jsinspectorcdp
399
+ - React-jsitooling
400
+ - React-perflogger
401
+ - React-runtimeexecutor
402
+ - React-runtimescheduler
403
+ - React-utils
404
+ - SocketRocket
405
+ - Yoga
406
+ - React-CoreModules (0.82.1):
407
+ - boost
408
+ - DoubleConversion
409
+ - fast_float
410
+ - fmt
411
+ - glog
412
+ - RCT-Folly
413
+ - RCT-Folly/Fabric
414
+ - RCTTypeSafety (= 0.82.1)
415
+ - React-Core/CoreModulesHeaders (= 0.82.1)
416
+ - React-debug
417
+ - React-jsi (= 0.82.1)
418
+ - React-jsinspector
419
+ - React-jsinspectorcdp
420
+ - React-jsinspectortracing
421
+ - React-NativeModulesApple
422
+ - React-RCTBlob
423
+ - React-RCTFBReactNativeSpec
424
+ - React-RCTImage (= 0.82.1)
425
+ - React-runtimeexecutor
426
+ - ReactCommon
427
+ - SocketRocket
428
+ - React-cxxreact (0.82.1):
429
+ - boost
430
+ - DoubleConversion
431
+ - fast_float
432
+ - fmt
433
+ - glog
434
+ - hermes-engine
435
+ - RCT-Folly
436
+ - RCT-Folly/Fabric
437
+ - React-callinvoker (= 0.82.1)
438
+ - React-debug (= 0.82.1)
439
+ - React-jsi (= 0.82.1)
440
+ - React-jsinspector
441
+ - React-jsinspectorcdp
442
+ - React-jsinspectortracing
443
+ - React-logger (= 0.82.1)
444
+ - React-perflogger (= 0.82.1)
445
+ - React-runtimeexecutor
446
+ - React-timing (= 0.82.1)
447
+ - SocketRocket
448
+ - React-debug (0.82.1)
449
+ - React-defaultsnativemodule (0.82.1):
450
+ - boost
451
+ - DoubleConversion
452
+ - fast_float
453
+ - fmt
454
+ - glog
455
+ - hermes-engine
456
+ - RCT-Folly
457
+ - RCT-Folly/Fabric
458
+ - React-domnativemodule
459
+ - React-featureflagsnativemodule
460
+ - React-idlecallbacksnativemodule
461
+ - React-jsi
462
+ - React-jsiexecutor
463
+ - React-microtasksnativemodule
464
+ - React-RCTFBReactNativeSpec
465
+ - React-webperformancenativemodule
466
+ - SocketRocket
467
+ - React-domnativemodule (0.82.1):
468
+ - boost
469
+ - DoubleConversion
470
+ - fast_float
471
+ - fmt
472
+ - glog
473
+ - hermes-engine
474
+ - RCT-Folly
475
+ - RCT-Folly/Fabric
476
+ - React-Fabric
477
+ - React-Fabric/bridging
478
+ - React-FabricComponents
479
+ - React-graphics
480
+ - React-jsi
481
+ - React-jsiexecutor
482
+ - React-RCTFBReactNativeSpec
483
+ - React-runtimeexecutor
484
+ - ReactCommon/turbomodule/core
485
+ - SocketRocket
486
+ - Yoga
487
+ - React-Fabric (0.82.1):
488
+ - boost
489
+ - DoubleConversion
490
+ - fast_float
491
+ - fmt
492
+ - glog
493
+ - hermes-engine
494
+ - RCT-Folly
495
+ - RCT-Folly/Fabric
496
+ - RCTRequired
497
+ - RCTTypeSafety
498
+ - React-Core
499
+ - React-cxxreact
500
+ - React-debug
501
+ - React-Fabric/animations (= 0.82.1)
502
+ - React-Fabric/attributedstring (= 0.82.1)
503
+ - React-Fabric/bridging (= 0.82.1)
504
+ - React-Fabric/componentregistry (= 0.82.1)
505
+ - React-Fabric/componentregistrynative (= 0.82.1)
506
+ - React-Fabric/components (= 0.82.1)
507
+ - React-Fabric/consistency (= 0.82.1)
508
+ - React-Fabric/core (= 0.82.1)
509
+ - React-Fabric/dom (= 0.82.1)
510
+ - React-Fabric/imagemanager (= 0.82.1)
511
+ - React-Fabric/leakchecker (= 0.82.1)
512
+ - React-Fabric/mounting (= 0.82.1)
513
+ - React-Fabric/observers (= 0.82.1)
514
+ - React-Fabric/scheduler (= 0.82.1)
515
+ - React-Fabric/telemetry (= 0.82.1)
516
+ - React-Fabric/templateprocessor (= 0.82.1)
517
+ - React-Fabric/uimanager (= 0.82.1)
518
+ - React-featureflags
519
+ - React-graphics
520
+ - React-jsi
521
+ - React-jsiexecutor
522
+ - React-logger
523
+ - React-rendererdebug
524
+ - React-runtimeexecutor
525
+ - React-runtimescheduler
526
+ - React-utils
527
+ - ReactCommon/turbomodule/core
528
+ - SocketRocket
529
+ - React-Fabric/animations (0.82.1):
530
+ - boost
531
+ - DoubleConversion
532
+ - fast_float
533
+ - fmt
534
+ - glog
535
+ - hermes-engine
536
+ - RCT-Folly
537
+ - RCT-Folly/Fabric
538
+ - RCTRequired
539
+ - RCTTypeSafety
540
+ - React-Core
541
+ - React-cxxreact
542
+ - React-debug
543
+ - React-featureflags
544
+ - React-graphics
545
+ - React-jsi
546
+ - React-jsiexecutor
547
+ - React-logger
548
+ - React-rendererdebug
549
+ - React-runtimeexecutor
550
+ - React-runtimescheduler
551
+ - React-utils
552
+ - ReactCommon/turbomodule/core
553
+ - SocketRocket
554
+ - React-Fabric/attributedstring (0.82.1):
555
+ - boost
556
+ - DoubleConversion
557
+ - fast_float
558
+ - fmt
559
+ - glog
560
+ - hermes-engine
561
+ - RCT-Folly
562
+ - RCT-Folly/Fabric
563
+ - RCTRequired
564
+ - RCTTypeSafety
565
+ - React-Core
566
+ - React-cxxreact
567
+ - React-debug
568
+ - React-featureflags
569
+ - React-graphics
570
+ - React-jsi
571
+ - React-jsiexecutor
572
+ - React-logger
573
+ - React-rendererdebug
574
+ - React-runtimeexecutor
575
+ - React-runtimescheduler
576
+ - React-utils
577
+ - ReactCommon/turbomodule/core
578
+ - SocketRocket
579
+ - React-Fabric/bridging (0.82.1):
580
+ - boost
581
+ - DoubleConversion
582
+ - fast_float
583
+ - fmt
584
+ - glog
585
+ - hermes-engine
586
+ - RCT-Folly
587
+ - RCT-Folly/Fabric
588
+ - RCTRequired
589
+ - RCTTypeSafety
590
+ - React-Core
591
+ - React-cxxreact
592
+ - React-debug
593
+ - React-featureflags
594
+ - React-graphics
595
+ - React-jsi
596
+ - React-jsiexecutor
597
+ - React-logger
598
+ - React-rendererdebug
599
+ - React-runtimeexecutor
600
+ - React-runtimescheduler
601
+ - React-utils
602
+ - ReactCommon/turbomodule/core
603
+ - SocketRocket
604
+ - React-Fabric/componentregistry (0.82.1):
605
+ - boost
606
+ - DoubleConversion
607
+ - fast_float
608
+ - fmt
609
+ - glog
610
+ - hermes-engine
611
+ - RCT-Folly
612
+ - RCT-Folly/Fabric
613
+ - RCTRequired
614
+ - RCTTypeSafety
615
+ - React-Core
616
+ - React-cxxreact
617
+ - React-debug
618
+ - React-featureflags
619
+ - React-graphics
620
+ - React-jsi
621
+ - React-jsiexecutor
622
+ - React-logger
623
+ - React-rendererdebug
624
+ - React-runtimeexecutor
625
+ - React-runtimescheduler
626
+ - React-utils
627
+ - ReactCommon/turbomodule/core
628
+ - SocketRocket
629
+ - React-Fabric/componentregistrynative (0.82.1):
630
+ - boost
631
+ - DoubleConversion
632
+ - fast_float
633
+ - fmt
634
+ - glog
635
+ - hermes-engine
636
+ - RCT-Folly
637
+ - RCT-Folly/Fabric
638
+ - RCTRequired
639
+ - RCTTypeSafety
640
+ - React-Core
641
+ - React-cxxreact
642
+ - React-debug
643
+ - React-featureflags
644
+ - React-graphics
645
+ - React-jsi
646
+ - React-jsiexecutor
647
+ - React-logger
648
+ - React-rendererdebug
649
+ - React-runtimeexecutor
650
+ - React-runtimescheduler
651
+ - React-utils
652
+ - ReactCommon/turbomodule/core
653
+ - SocketRocket
654
+ - React-Fabric/components (0.82.1):
655
+ - boost
656
+ - DoubleConversion
657
+ - fast_float
658
+ - fmt
659
+ - glog
660
+ - hermes-engine
661
+ - RCT-Folly
662
+ - RCT-Folly/Fabric
663
+ - RCTRequired
664
+ - RCTTypeSafety
665
+ - React-Core
666
+ - React-cxxreact
667
+ - React-debug
668
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.82.1)
669
+ - React-Fabric/components/root (= 0.82.1)
670
+ - React-Fabric/components/scrollview (= 0.82.1)
671
+ - React-Fabric/components/view (= 0.82.1)
672
+ - React-featureflags
673
+ - React-graphics
674
+ - React-jsi
675
+ - React-jsiexecutor
676
+ - React-logger
677
+ - React-rendererdebug
678
+ - React-runtimeexecutor
679
+ - React-runtimescheduler
680
+ - React-utils
681
+ - ReactCommon/turbomodule/core
682
+ - SocketRocket
683
+ - React-Fabric/components/legacyviewmanagerinterop (0.82.1):
684
+ - boost
685
+ - DoubleConversion
686
+ - fast_float
687
+ - fmt
688
+ - glog
689
+ - hermes-engine
690
+ - RCT-Folly
691
+ - RCT-Folly/Fabric
692
+ - RCTRequired
693
+ - RCTTypeSafety
694
+ - React-Core
695
+ - React-cxxreact
696
+ - React-debug
697
+ - React-featureflags
698
+ - React-graphics
699
+ - React-jsi
700
+ - React-jsiexecutor
701
+ - React-logger
702
+ - React-rendererdebug
703
+ - React-runtimeexecutor
704
+ - React-runtimescheduler
705
+ - React-utils
706
+ - ReactCommon/turbomodule/core
707
+ - SocketRocket
708
+ - React-Fabric/components/root (0.82.1):
709
+ - boost
710
+ - DoubleConversion
711
+ - fast_float
712
+ - fmt
713
+ - glog
714
+ - hermes-engine
715
+ - RCT-Folly
716
+ - RCT-Folly/Fabric
717
+ - RCTRequired
718
+ - RCTTypeSafety
719
+ - React-Core
720
+ - React-cxxreact
721
+ - React-debug
722
+ - React-featureflags
723
+ - React-graphics
724
+ - React-jsi
725
+ - React-jsiexecutor
726
+ - React-logger
727
+ - React-rendererdebug
728
+ - React-runtimeexecutor
729
+ - React-runtimescheduler
730
+ - React-utils
731
+ - ReactCommon/turbomodule/core
732
+ - SocketRocket
733
+ - React-Fabric/components/scrollview (0.82.1):
734
+ - boost
735
+ - DoubleConversion
736
+ - fast_float
737
+ - fmt
738
+ - glog
739
+ - hermes-engine
740
+ - RCT-Folly
741
+ - RCT-Folly/Fabric
742
+ - RCTRequired
743
+ - RCTTypeSafety
744
+ - React-Core
745
+ - React-cxxreact
746
+ - React-debug
747
+ - React-featureflags
748
+ - React-graphics
749
+ - React-jsi
750
+ - React-jsiexecutor
751
+ - React-logger
752
+ - React-rendererdebug
753
+ - React-runtimeexecutor
754
+ - React-runtimescheduler
755
+ - React-utils
756
+ - ReactCommon/turbomodule/core
757
+ - SocketRocket
758
+ - React-Fabric/components/view (0.82.1):
759
+ - boost
760
+ - DoubleConversion
761
+ - fast_float
762
+ - fmt
763
+ - glog
764
+ - hermes-engine
765
+ - RCT-Folly
766
+ - RCT-Folly/Fabric
767
+ - RCTRequired
768
+ - RCTTypeSafety
769
+ - React-Core
770
+ - React-cxxreact
771
+ - React-debug
772
+ - React-featureflags
773
+ - React-graphics
774
+ - React-jsi
775
+ - React-jsiexecutor
776
+ - React-logger
777
+ - React-renderercss
778
+ - React-rendererdebug
779
+ - React-runtimeexecutor
780
+ - React-runtimescheduler
781
+ - React-utils
782
+ - ReactCommon/turbomodule/core
783
+ - SocketRocket
784
+ - Yoga
785
+ - React-Fabric/consistency (0.82.1):
786
+ - boost
787
+ - DoubleConversion
788
+ - fast_float
789
+ - fmt
790
+ - glog
791
+ - hermes-engine
792
+ - RCT-Folly
793
+ - RCT-Folly/Fabric
794
+ - RCTRequired
795
+ - RCTTypeSafety
796
+ - React-Core
797
+ - React-cxxreact
798
+ - React-debug
799
+ - React-featureflags
800
+ - React-graphics
801
+ - React-jsi
802
+ - React-jsiexecutor
803
+ - React-logger
804
+ - React-rendererdebug
805
+ - React-runtimeexecutor
806
+ - React-runtimescheduler
807
+ - React-utils
808
+ - ReactCommon/turbomodule/core
809
+ - SocketRocket
810
+ - React-Fabric/core (0.82.1):
811
+ - boost
812
+ - DoubleConversion
813
+ - fast_float
814
+ - fmt
815
+ - glog
816
+ - hermes-engine
817
+ - RCT-Folly
818
+ - RCT-Folly/Fabric
819
+ - RCTRequired
820
+ - RCTTypeSafety
821
+ - React-Core
822
+ - React-cxxreact
823
+ - React-debug
824
+ - React-featureflags
825
+ - React-graphics
826
+ - React-jsi
827
+ - React-jsiexecutor
828
+ - React-logger
829
+ - React-rendererdebug
830
+ - React-runtimeexecutor
831
+ - React-runtimescheduler
832
+ - React-utils
833
+ - ReactCommon/turbomodule/core
834
+ - SocketRocket
835
+ - React-Fabric/dom (0.82.1):
836
+ - boost
837
+ - DoubleConversion
838
+ - fast_float
839
+ - fmt
840
+ - glog
841
+ - hermes-engine
842
+ - RCT-Folly
843
+ - RCT-Folly/Fabric
844
+ - RCTRequired
845
+ - RCTTypeSafety
846
+ - React-Core
847
+ - React-cxxreact
848
+ - React-debug
849
+ - React-featureflags
850
+ - React-graphics
851
+ - React-jsi
852
+ - React-jsiexecutor
853
+ - React-logger
854
+ - React-rendererdebug
855
+ - React-runtimeexecutor
856
+ - React-runtimescheduler
857
+ - React-utils
858
+ - ReactCommon/turbomodule/core
859
+ - SocketRocket
860
+ - React-Fabric/imagemanager (0.82.1):
861
+ - boost
862
+ - DoubleConversion
863
+ - fast_float
864
+ - fmt
865
+ - glog
866
+ - hermes-engine
867
+ - RCT-Folly
868
+ - RCT-Folly/Fabric
869
+ - RCTRequired
870
+ - RCTTypeSafety
871
+ - React-Core
872
+ - React-cxxreact
873
+ - React-debug
874
+ - React-featureflags
875
+ - React-graphics
876
+ - React-jsi
877
+ - React-jsiexecutor
878
+ - React-logger
879
+ - React-rendererdebug
880
+ - React-runtimeexecutor
881
+ - React-runtimescheduler
882
+ - React-utils
883
+ - ReactCommon/turbomodule/core
884
+ - SocketRocket
885
+ - React-Fabric/leakchecker (0.82.1):
886
+ - boost
887
+ - DoubleConversion
888
+ - fast_float
889
+ - fmt
890
+ - glog
891
+ - hermes-engine
892
+ - RCT-Folly
893
+ - RCT-Folly/Fabric
894
+ - RCTRequired
895
+ - RCTTypeSafety
896
+ - React-Core
897
+ - React-cxxreact
898
+ - React-debug
899
+ - React-featureflags
900
+ - React-graphics
901
+ - React-jsi
902
+ - React-jsiexecutor
903
+ - React-logger
904
+ - React-rendererdebug
905
+ - React-runtimeexecutor
906
+ - React-runtimescheduler
907
+ - React-utils
908
+ - ReactCommon/turbomodule/core
909
+ - SocketRocket
910
+ - React-Fabric/mounting (0.82.1):
911
+ - boost
912
+ - DoubleConversion
913
+ - fast_float
914
+ - fmt
915
+ - glog
916
+ - hermes-engine
917
+ - RCT-Folly
918
+ - RCT-Folly/Fabric
919
+ - RCTRequired
920
+ - RCTTypeSafety
921
+ - React-Core
922
+ - React-cxxreact
923
+ - React-debug
924
+ - React-featureflags
925
+ - React-graphics
926
+ - React-jsi
927
+ - React-jsiexecutor
928
+ - React-logger
929
+ - React-rendererdebug
930
+ - React-runtimeexecutor
931
+ - React-runtimescheduler
932
+ - React-utils
933
+ - ReactCommon/turbomodule/core
934
+ - SocketRocket
935
+ - React-Fabric/observers (0.82.1):
936
+ - boost
937
+ - DoubleConversion
938
+ - fast_float
939
+ - fmt
940
+ - glog
941
+ - hermes-engine
942
+ - RCT-Folly
943
+ - RCT-Folly/Fabric
944
+ - RCTRequired
945
+ - RCTTypeSafety
946
+ - React-Core
947
+ - React-cxxreact
948
+ - React-debug
949
+ - React-Fabric/observers/events (= 0.82.1)
950
+ - React-featureflags
951
+ - React-graphics
952
+ - React-jsi
953
+ - React-jsiexecutor
954
+ - React-logger
955
+ - React-rendererdebug
956
+ - React-runtimeexecutor
957
+ - React-runtimescheduler
958
+ - React-utils
959
+ - ReactCommon/turbomodule/core
960
+ - SocketRocket
961
+ - React-Fabric/observers/events (0.82.1):
962
+ - boost
963
+ - DoubleConversion
964
+ - fast_float
965
+ - fmt
966
+ - glog
967
+ - hermes-engine
968
+ - RCT-Folly
969
+ - RCT-Folly/Fabric
970
+ - RCTRequired
971
+ - RCTTypeSafety
972
+ - React-Core
973
+ - React-cxxreact
974
+ - React-debug
975
+ - React-featureflags
976
+ - React-graphics
977
+ - React-jsi
978
+ - React-jsiexecutor
979
+ - React-logger
980
+ - React-rendererdebug
981
+ - React-runtimeexecutor
982
+ - React-runtimescheduler
983
+ - React-utils
984
+ - ReactCommon/turbomodule/core
985
+ - SocketRocket
986
+ - React-Fabric/scheduler (0.82.1):
987
+ - boost
988
+ - DoubleConversion
989
+ - fast_float
990
+ - fmt
991
+ - glog
992
+ - hermes-engine
993
+ - RCT-Folly
994
+ - RCT-Folly/Fabric
995
+ - RCTRequired
996
+ - RCTTypeSafety
997
+ - React-Core
998
+ - React-cxxreact
999
+ - React-debug
1000
+ - React-Fabric/observers/events
1001
+ - React-featureflags
1002
+ - React-graphics
1003
+ - React-jsi
1004
+ - React-jsiexecutor
1005
+ - React-logger
1006
+ - React-performancecdpmetrics
1007
+ - React-performancetimeline
1008
+ - React-rendererdebug
1009
+ - React-runtimeexecutor
1010
+ - React-runtimescheduler
1011
+ - React-utils
1012
+ - ReactCommon/turbomodule/core
1013
+ - SocketRocket
1014
+ - React-Fabric/telemetry (0.82.1):
1015
+ - boost
1016
+ - DoubleConversion
1017
+ - fast_float
1018
+ - fmt
1019
+ - glog
1020
+ - hermes-engine
1021
+ - RCT-Folly
1022
+ - RCT-Folly/Fabric
1023
+ - RCTRequired
1024
+ - RCTTypeSafety
1025
+ - React-Core
1026
+ - React-cxxreact
1027
+ - React-debug
1028
+ - React-featureflags
1029
+ - React-graphics
1030
+ - React-jsi
1031
+ - React-jsiexecutor
1032
+ - React-logger
1033
+ - React-rendererdebug
1034
+ - React-runtimeexecutor
1035
+ - React-runtimescheduler
1036
+ - React-utils
1037
+ - ReactCommon/turbomodule/core
1038
+ - SocketRocket
1039
+ - React-Fabric/templateprocessor (0.82.1):
1040
+ - boost
1041
+ - DoubleConversion
1042
+ - fast_float
1043
+ - fmt
1044
+ - glog
1045
+ - hermes-engine
1046
+ - RCT-Folly
1047
+ - RCT-Folly/Fabric
1048
+ - RCTRequired
1049
+ - RCTTypeSafety
1050
+ - React-Core
1051
+ - React-cxxreact
1052
+ - React-debug
1053
+ - React-featureflags
1054
+ - React-graphics
1055
+ - React-jsi
1056
+ - React-jsiexecutor
1057
+ - React-logger
1058
+ - React-rendererdebug
1059
+ - React-runtimeexecutor
1060
+ - React-runtimescheduler
1061
+ - React-utils
1062
+ - ReactCommon/turbomodule/core
1063
+ - SocketRocket
1064
+ - React-Fabric/uimanager (0.82.1):
1065
+ - boost
1066
+ - DoubleConversion
1067
+ - fast_float
1068
+ - fmt
1069
+ - glog
1070
+ - hermes-engine
1071
+ - RCT-Folly
1072
+ - RCT-Folly/Fabric
1073
+ - RCTRequired
1074
+ - RCTTypeSafety
1075
+ - React-Core
1076
+ - React-cxxreact
1077
+ - React-debug
1078
+ - React-Fabric/uimanager/consistency (= 0.82.1)
1079
+ - React-featureflags
1080
+ - React-graphics
1081
+ - React-jsi
1082
+ - React-jsiexecutor
1083
+ - React-logger
1084
+ - React-rendererconsistency
1085
+ - React-rendererdebug
1086
+ - React-runtimeexecutor
1087
+ - React-runtimescheduler
1088
+ - React-utils
1089
+ - ReactCommon/turbomodule/core
1090
+ - SocketRocket
1091
+ - React-Fabric/uimanager/consistency (0.82.1):
1092
+ - boost
1093
+ - DoubleConversion
1094
+ - fast_float
1095
+ - fmt
1096
+ - glog
1097
+ - hermes-engine
1098
+ - RCT-Folly
1099
+ - RCT-Folly/Fabric
1100
+ - RCTRequired
1101
+ - RCTTypeSafety
1102
+ - React-Core
1103
+ - React-cxxreact
1104
+ - React-debug
1105
+ - React-featureflags
1106
+ - React-graphics
1107
+ - React-jsi
1108
+ - React-jsiexecutor
1109
+ - React-logger
1110
+ - React-rendererconsistency
1111
+ - React-rendererdebug
1112
+ - React-runtimeexecutor
1113
+ - React-runtimescheduler
1114
+ - React-utils
1115
+ - ReactCommon/turbomodule/core
1116
+ - SocketRocket
1117
+ - React-FabricComponents (0.82.1):
1118
+ - boost
1119
+ - DoubleConversion
1120
+ - fast_float
1121
+ - fmt
1122
+ - glog
1123
+ - hermes-engine
1124
+ - RCT-Folly
1125
+ - RCT-Folly/Fabric
1126
+ - RCTRequired
1127
+ - RCTTypeSafety
1128
+ - React-Core
1129
+ - React-cxxreact
1130
+ - React-debug
1131
+ - React-Fabric
1132
+ - React-FabricComponents/components (= 0.82.1)
1133
+ - React-FabricComponents/textlayoutmanager (= 0.82.1)
1134
+ - React-featureflags
1135
+ - React-graphics
1136
+ - React-jsi
1137
+ - React-jsiexecutor
1138
+ - React-logger
1139
+ - React-RCTFBReactNativeSpec
1140
+ - React-rendererdebug
1141
+ - React-runtimescheduler
1142
+ - React-utils
1143
+ - ReactCommon/turbomodule/core
1144
+ - SocketRocket
1145
+ - Yoga
1146
+ - React-FabricComponents/components (0.82.1):
1147
+ - boost
1148
+ - DoubleConversion
1149
+ - fast_float
1150
+ - fmt
1151
+ - glog
1152
+ - hermes-engine
1153
+ - RCT-Folly
1154
+ - RCT-Folly/Fabric
1155
+ - RCTRequired
1156
+ - RCTTypeSafety
1157
+ - React-Core
1158
+ - React-cxxreact
1159
+ - React-debug
1160
+ - React-Fabric
1161
+ - React-FabricComponents/components/inputaccessory (= 0.82.1)
1162
+ - React-FabricComponents/components/iostextinput (= 0.82.1)
1163
+ - React-FabricComponents/components/modal (= 0.82.1)
1164
+ - React-FabricComponents/components/rncore (= 0.82.1)
1165
+ - React-FabricComponents/components/safeareaview (= 0.82.1)
1166
+ - React-FabricComponents/components/scrollview (= 0.82.1)
1167
+ - React-FabricComponents/components/switch (= 0.82.1)
1168
+ - React-FabricComponents/components/text (= 0.82.1)
1169
+ - React-FabricComponents/components/textinput (= 0.82.1)
1170
+ - React-FabricComponents/components/unimplementedview (= 0.82.1)
1171
+ - React-FabricComponents/components/virtualview (= 0.82.1)
1172
+ - React-FabricComponents/components/virtualviewexperimental (= 0.82.1)
1173
+ - React-featureflags
1174
+ - React-graphics
1175
+ - React-jsi
1176
+ - React-jsiexecutor
1177
+ - React-logger
1178
+ - React-RCTFBReactNativeSpec
1179
+ - React-rendererdebug
1180
+ - React-runtimescheduler
1181
+ - React-utils
1182
+ - ReactCommon/turbomodule/core
1183
+ - SocketRocket
1184
+ - Yoga
1185
+ - React-FabricComponents/components/inputaccessory (0.82.1):
1186
+ - boost
1187
+ - DoubleConversion
1188
+ - fast_float
1189
+ - fmt
1190
+ - glog
1191
+ - hermes-engine
1192
+ - RCT-Folly
1193
+ - RCT-Folly/Fabric
1194
+ - RCTRequired
1195
+ - RCTTypeSafety
1196
+ - React-Core
1197
+ - React-cxxreact
1198
+ - React-debug
1199
+ - React-Fabric
1200
+ - React-featureflags
1201
+ - React-graphics
1202
+ - React-jsi
1203
+ - React-jsiexecutor
1204
+ - React-logger
1205
+ - React-RCTFBReactNativeSpec
1206
+ - React-rendererdebug
1207
+ - React-runtimescheduler
1208
+ - React-utils
1209
+ - ReactCommon/turbomodule/core
1210
+ - SocketRocket
1211
+ - Yoga
1212
+ - React-FabricComponents/components/iostextinput (0.82.1):
1213
+ - boost
1214
+ - DoubleConversion
1215
+ - fast_float
1216
+ - fmt
1217
+ - glog
1218
+ - hermes-engine
1219
+ - RCT-Folly
1220
+ - RCT-Folly/Fabric
1221
+ - RCTRequired
1222
+ - RCTTypeSafety
1223
+ - React-Core
1224
+ - React-cxxreact
1225
+ - React-debug
1226
+ - React-Fabric
1227
+ - React-featureflags
1228
+ - React-graphics
1229
+ - React-jsi
1230
+ - React-jsiexecutor
1231
+ - React-logger
1232
+ - React-RCTFBReactNativeSpec
1233
+ - React-rendererdebug
1234
+ - React-runtimescheduler
1235
+ - React-utils
1236
+ - ReactCommon/turbomodule/core
1237
+ - SocketRocket
1238
+ - Yoga
1239
+ - React-FabricComponents/components/modal (0.82.1):
1240
+ - boost
1241
+ - DoubleConversion
1242
+ - fast_float
1243
+ - fmt
1244
+ - glog
1245
+ - hermes-engine
1246
+ - RCT-Folly
1247
+ - RCT-Folly/Fabric
1248
+ - RCTRequired
1249
+ - RCTTypeSafety
1250
+ - React-Core
1251
+ - React-cxxreact
1252
+ - React-debug
1253
+ - React-Fabric
1254
+ - React-featureflags
1255
+ - React-graphics
1256
+ - React-jsi
1257
+ - React-jsiexecutor
1258
+ - React-logger
1259
+ - React-RCTFBReactNativeSpec
1260
+ - React-rendererdebug
1261
+ - React-runtimescheduler
1262
+ - React-utils
1263
+ - ReactCommon/turbomodule/core
1264
+ - SocketRocket
1265
+ - Yoga
1266
+ - React-FabricComponents/components/rncore (0.82.1):
1267
+ - boost
1268
+ - DoubleConversion
1269
+ - fast_float
1270
+ - fmt
1271
+ - glog
1272
+ - hermes-engine
1273
+ - RCT-Folly
1274
+ - RCT-Folly/Fabric
1275
+ - RCTRequired
1276
+ - RCTTypeSafety
1277
+ - React-Core
1278
+ - React-cxxreact
1279
+ - React-debug
1280
+ - React-Fabric
1281
+ - React-featureflags
1282
+ - React-graphics
1283
+ - React-jsi
1284
+ - React-jsiexecutor
1285
+ - React-logger
1286
+ - React-RCTFBReactNativeSpec
1287
+ - React-rendererdebug
1288
+ - React-runtimescheduler
1289
+ - React-utils
1290
+ - ReactCommon/turbomodule/core
1291
+ - SocketRocket
1292
+ - Yoga
1293
+ - React-FabricComponents/components/safeareaview (0.82.1):
1294
+ - boost
1295
+ - DoubleConversion
1296
+ - fast_float
1297
+ - fmt
1298
+ - glog
1299
+ - hermes-engine
1300
+ - RCT-Folly
1301
+ - RCT-Folly/Fabric
1302
+ - RCTRequired
1303
+ - RCTTypeSafety
1304
+ - React-Core
1305
+ - React-cxxreact
1306
+ - React-debug
1307
+ - React-Fabric
1308
+ - React-featureflags
1309
+ - React-graphics
1310
+ - React-jsi
1311
+ - React-jsiexecutor
1312
+ - React-logger
1313
+ - React-RCTFBReactNativeSpec
1314
+ - React-rendererdebug
1315
+ - React-runtimescheduler
1316
+ - React-utils
1317
+ - ReactCommon/turbomodule/core
1318
+ - SocketRocket
1319
+ - Yoga
1320
+ - React-FabricComponents/components/scrollview (0.82.1):
1321
+ - boost
1322
+ - DoubleConversion
1323
+ - fast_float
1324
+ - fmt
1325
+ - glog
1326
+ - hermes-engine
1327
+ - RCT-Folly
1328
+ - RCT-Folly/Fabric
1329
+ - RCTRequired
1330
+ - RCTTypeSafety
1331
+ - React-Core
1332
+ - React-cxxreact
1333
+ - React-debug
1334
+ - React-Fabric
1335
+ - React-featureflags
1336
+ - React-graphics
1337
+ - React-jsi
1338
+ - React-jsiexecutor
1339
+ - React-logger
1340
+ - React-RCTFBReactNativeSpec
1341
+ - React-rendererdebug
1342
+ - React-runtimescheduler
1343
+ - React-utils
1344
+ - ReactCommon/turbomodule/core
1345
+ - SocketRocket
1346
+ - Yoga
1347
+ - React-FabricComponents/components/switch (0.82.1):
1348
+ - boost
1349
+ - DoubleConversion
1350
+ - fast_float
1351
+ - fmt
1352
+ - glog
1353
+ - hermes-engine
1354
+ - RCT-Folly
1355
+ - RCT-Folly/Fabric
1356
+ - RCTRequired
1357
+ - RCTTypeSafety
1358
+ - React-Core
1359
+ - React-cxxreact
1360
+ - React-debug
1361
+ - React-Fabric
1362
+ - React-featureflags
1363
+ - React-graphics
1364
+ - React-jsi
1365
+ - React-jsiexecutor
1366
+ - React-logger
1367
+ - React-RCTFBReactNativeSpec
1368
+ - React-rendererdebug
1369
+ - React-runtimescheduler
1370
+ - React-utils
1371
+ - ReactCommon/turbomodule/core
1372
+ - SocketRocket
1373
+ - Yoga
1374
+ - React-FabricComponents/components/text (0.82.1):
1375
+ - boost
1376
+ - DoubleConversion
1377
+ - fast_float
1378
+ - fmt
1379
+ - glog
1380
+ - hermes-engine
1381
+ - RCT-Folly
1382
+ - RCT-Folly/Fabric
1383
+ - RCTRequired
1384
+ - RCTTypeSafety
1385
+ - React-Core
1386
+ - React-cxxreact
1387
+ - React-debug
1388
+ - React-Fabric
1389
+ - React-featureflags
1390
+ - React-graphics
1391
+ - React-jsi
1392
+ - React-jsiexecutor
1393
+ - React-logger
1394
+ - React-RCTFBReactNativeSpec
1395
+ - React-rendererdebug
1396
+ - React-runtimescheduler
1397
+ - React-utils
1398
+ - ReactCommon/turbomodule/core
1399
+ - SocketRocket
1400
+ - Yoga
1401
+ - React-FabricComponents/components/textinput (0.82.1):
1402
+ - boost
1403
+ - DoubleConversion
1404
+ - fast_float
1405
+ - fmt
1406
+ - glog
1407
+ - hermes-engine
1408
+ - RCT-Folly
1409
+ - RCT-Folly/Fabric
1410
+ - RCTRequired
1411
+ - RCTTypeSafety
1412
+ - React-Core
1413
+ - React-cxxreact
1414
+ - React-debug
1415
+ - React-Fabric
1416
+ - React-featureflags
1417
+ - React-graphics
1418
+ - React-jsi
1419
+ - React-jsiexecutor
1420
+ - React-logger
1421
+ - React-RCTFBReactNativeSpec
1422
+ - React-rendererdebug
1423
+ - React-runtimescheduler
1424
+ - React-utils
1425
+ - ReactCommon/turbomodule/core
1426
+ - SocketRocket
1427
+ - Yoga
1428
+ - React-FabricComponents/components/unimplementedview (0.82.1):
1429
+ - boost
1430
+ - DoubleConversion
1431
+ - fast_float
1432
+ - fmt
1433
+ - glog
1434
+ - hermes-engine
1435
+ - RCT-Folly
1436
+ - RCT-Folly/Fabric
1437
+ - RCTRequired
1438
+ - RCTTypeSafety
1439
+ - React-Core
1440
+ - React-cxxreact
1441
+ - React-debug
1442
+ - React-Fabric
1443
+ - React-featureflags
1444
+ - React-graphics
1445
+ - React-jsi
1446
+ - React-jsiexecutor
1447
+ - React-logger
1448
+ - React-RCTFBReactNativeSpec
1449
+ - React-rendererdebug
1450
+ - React-runtimescheduler
1451
+ - React-utils
1452
+ - ReactCommon/turbomodule/core
1453
+ - SocketRocket
1454
+ - Yoga
1455
+ - React-FabricComponents/components/virtualview (0.82.1):
1456
+ - boost
1457
+ - DoubleConversion
1458
+ - fast_float
1459
+ - fmt
1460
+ - glog
1461
+ - hermes-engine
1462
+ - RCT-Folly
1463
+ - RCT-Folly/Fabric
1464
+ - RCTRequired
1465
+ - RCTTypeSafety
1466
+ - React-Core
1467
+ - React-cxxreact
1468
+ - React-debug
1469
+ - React-Fabric
1470
+ - React-featureflags
1471
+ - React-graphics
1472
+ - React-jsi
1473
+ - React-jsiexecutor
1474
+ - React-logger
1475
+ - React-RCTFBReactNativeSpec
1476
+ - React-rendererdebug
1477
+ - React-runtimescheduler
1478
+ - React-utils
1479
+ - ReactCommon/turbomodule/core
1480
+ - SocketRocket
1481
+ - Yoga
1482
+ - React-FabricComponents/components/virtualviewexperimental (0.82.1):
1483
+ - boost
1484
+ - DoubleConversion
1485
+ - fast_float
1486
+ - fmt
1487
+ - glog
1488
+ - hermes-engine
1489
+ - RCT-Folly
1490
+ - RCT-Folly/Fabric
1491
+ - RCTRequired
1492
+ - RCTTypeSafety
1493
+ - React-Core
1494
+ - React-cxxreact
1495
+ - React-debug
1496
+ - React-Fabric
1497
+ - React-featureflags
1498
+ - React-graphics
1499
+ - React-jsi
1500
+ - React-jsiexecutor
1501
+ - React-logger
1502
+ - React-RCTFBReactNativeSpec
1503
+ - React-rendererdebug
1504
+ - React-runtimescheduler
1505
+ - React-utils
1506
+ - ReactCommon/turbomodule/core
1507
+ - SocketRocket
1508
+ - Yoga
1509
+ - React-FabricComponents/textlayoutmanager (0.82.1):
1510
+ - boost
1511
+ - DoubleConversion
1512
+ - fast_float
1513
+ - fmt
1514
+ - glog
1515
+ - hermes-engine
1516
+ - RCT-Folly
1517
+ - RCT-Folly/Fabric
1518
+ - RCTRequired
1519
+ - RCTTypeSafety
1520
+ - React-Core
1521
+ - React-cxxreact
1522
+ - React-debug
1523
+ - React-Fabric
1524
+ - React-featureflags
1525
+ - React-graphics
1526
+ - React-jsi
1527
+ - React-jsiexecutor
1528
+ - React-logger
1529
+ - React-RCTFBReactNativeSpec
1530
+ - React-rendererdebug
1531
+ - React-runtimescheduler
1532
+ - React-utils
1533
+ - ReactCommon/turbomodule/core
1534
+ - SocketRocket
1535
+ - Yoga
1536
+ - React-FabricImage (0.82.1):
1537
+ - boost
1538
+ - DoubleConversion
1539
+ - fast_float
1540
+ - fmt
1541
+ - glog
1542
+ - hermes-engine
1543
+ - RCT-Folly
1544
+ - RCT-Folly/Fabric
1545
+ - RCTRequired (= 0.82.1)
1546
+ - RCTTypeSafety (= 0.82.1)
1547
+ - React-Fabric
1548
+ - React-featureflags
1549
+ - React-graphics
1550
+ - React-ImageManager
1551
+ - React-jsi
1552
+ - React-jsiexecutor (= 0.82.1)
1553
+ - React-logger
1554
+ - React-rendererdebug
1555
+ - React-utils
1556
+ - ReactCommon
1557
+ - SocketRocket
1558
+ - Yoga
1559
+ - React-featureflags (0.82.1):
1560
+ - boost
1561
+ - DoubleConversion
1562
+ - fast_float
1563
+ - fmt
1564
+ - glog
1565
+ - RCT-Folly
1566
+ - RCT-Folly/Fabric
1567
+ - SocketRocket
1568
+ - React-featureflagsnativemodule (0.82.1):
1569
+ - boost
1570
+ - DoubleConversion
1571
+ - fast_float
1572
+ - fmt
1573
+ - glog
1574
+ - hermes-engine
1575
+ - RCT-Folly
1576
+ - RCT-Folly/Fabric
1577
+ - React-featureflags
1578
+ - React-jsi
1579
+ - React-jsiexecutor
1580
+ - React-RCTFBReactNativeSpec
1581
+ - ReactCommon/turbomodule/core
1582
+ - SocketRocket
1583
+ - React-graphics (0.82.1):
1584
+ - boost
1585
+ - DoubleConversion
1586
+ - fast_float
1587
+ - fmt
1588
+ - glog
1589
+ - hermes-engine
1590
+ - RCT-Folly
1591
+ - RCT-Folly/Fabric
1592
+ - React-jsi
1593
+ - React-jsiexecutor
1594
+ - React-utils
1595
+ - SocketRocket
1596
+ - React-hermes (0.82.1):
1597
+ - boost
1598
+ - DoubleConversion
1599
+ - fast_float
1600
+ - fmt
1601
+ - glog
1602
+ - hermes-engine
1603
+ - RCT-Folly
1604
+ - RCT-Folly/Fabric
1605
+ - React-cxxreact (= 0.82.1)
1606
+ - React-jsi
1607
+ - React-jsiexecutor (= 0.82.1)
1608
+ - React-jsinspector
1609
+ - React-jsinspectorcdp
1610
+ - React-jsinspectortracing
1611
+ - React-oscompat
1612
+ - React-perflogger (= 0.82.1)
1613
+ - React-runtimeexecutor
1614
+ - SocketRocket
1615
+ - React-idlecallbacksnativemodule (0.82.1):
1616
+ - boost
1617
+ - DoubleConversion
1618
+ - fast_float
1619
+ - fmt
1620
+ - glog
1621
+ - hermes-engine
1622
+ - RCT-Folly
1623
+ - RCT-Folly/Fabric
1624
+ - React-jsi
1625
+ - React-jsiexecutor
1626
+ - React-RCTFBReactNativeSpec
1627
+ - React-runtimeexecutor
1628
+ - React-runtimescheduler
1629
+ - ReactCommon/turbomodule/core
1630
+ - SocketRocket
1631
+ - React-ImageManager (0.82.1):
1632
+ - boost
1633
+ - DoubleConversion
1634
+ - fast_float
1635
+ - fmt
1636
+ - glog
1637
+ - RCT-Folly
1638
+ - RCT-Folly/Fabric
1639
+ - React-Core/Default
1640
+ - React-debug
1641
+ - React-Fabric
1642
+ - React-graphics
1643
+ - React-rendererdebug
1644
+ - React-utils
1645
+ - SocketRocket
1646
+ - React-jserrorhandler (0.82.1):
1647
+ - boost
1648
+ - DoubleConversion
1649
+ - fast_float
1650
+ - fmt
1651
+ - glog
1652
+ - hermes-engine
1653
+ - RCT-Folly
1654
+ - RCT-Folly/Fabric
1655
+ - React-cxxreact
1656
+ - React-debug
1657
+ - React-featureflags
1658
+ - React-jsi
1659
+ - ReactCommon/turbomodule/bridging
1660
+ - SocketRocket
1661
+ - React-jsi (0.82.1):
1662
+ - boost
1663
+ - DoubleConversion
1664
+ - fast_float
1665
+ - fmt
1666
+ - glog
1667
+ - hermes-engine
1668
+ - RCT-Folly
1669
+ - RCT-Folly/Fabric
1670
+ - SocketRocket
1671
+ - React-jsiexecutor (0.82.1):
1672
+ - boost
1673
+ - DoubleConversion
1674
+ - fast_float
1675
+ - fmt
1676
+ - glog
1677
+ - hermes-engine
1678
+ - RCT-Folly
1679
+ - RCT-Folly/Fabric
1680
+ - React-cxxreact
1681
+ - React-debug
1682
+ - React-jsi
1683
+ - React-jsinspector
1684
+ - React-jsinspectorcdp
1685
+ - React-jsinspectortracing
1686
+ - React-perflogger
1687
+ - React-runtimeexecutor
1688
+ - SocketRocket
1689
+ - React-jsinspector (0.82.1):
1690
+ - boost
1691
+ - DoubleConversion
1692
+ - fast_float
1693
+ - fmt
1694
+ - glog
1695
+ - hermes-engine
1696
+ - RCT-Folly
1697
+ - RCT-Folly/Fabric
1698
+ - React-featureflags
1699
+ - React-jsi
1700
+ - React-jsinspectorcdp
1701
+ - React-jsinspectornetwork
1702
+ - React-jsinspectortracing
1703
+ - React-oscompat
1704
+ - React-perflogger (= 0.82.1)
1705
+ - React-runtimeexecutor
1706
+ - SocketRocket
1707
+ - React-jsinspectorcdp (0.82.1):
1708
+ - boost
1709
+ - DoubleConversion
1710
+ - fast_float
1711
+ - fmt
1712
+ - glog
1713
+ - RCT-Folly
1714
+ - RCT-Folly/Fabric
1715
+ - SocketRocket
1716
+ - React-jsinspectornetwork (0.82.1):
1717
+ - boost
1718
+ - DoubleConversion
1719
+ - fast_float
1720
+ - fmt
1721
+ - glog
1722
+ - RCT-Folly
1723
+ - RCT-Folly/Fabric
1724
+ - React-featureflags
1725
+ - React-jsinspectorcdp
1726
+ - React-performancetimeline
1727
+ - React-timing
1728
+ - SocketRocket
1729
+ - React-jsinspectortracing (0.82.1):
1730
+ - boost
1731
+ - DoubleConversion
1732
+ - fast_float
1733
+ - fmt
1734
+ - glog
1735
+ - RCT-Folly
1736
+ - RCT-Folly/Fabric
1737
+ - React-oscompat
1738
+ - React-timing
1739
+ - SocketRocket
1740
+ - React-jsitooling (0.82.1):
1741
+ - boost
1742
+ - DoubleConversion
1743
+ - fast_float
1744
+ - fmt
1745
+ - glog
1746
+ - RCT-Folly
1747
+ - RCT-Folly/Fabric
1748
+ - React-cxxreact (= 0.82.1)
1749
+ - React-debug
1750
+ - React-jsi (= 0.82.1)
1751
+ - React-jsinspector
1752
+ - React-jsinspectorcdp
1753
+ - React-jsinspectortracing
1754
+ - React-runtimeexecutor
1755
+ - SocketRocket
1756
+ - React-jsitracing (0.82.1):
1757
+ - React-jsi
1758
+ - React-logger (0.82.1):
1759
+ - boost
1760
+ - DoubleConversion
1761
+ - fast_float
1762
+ - fmt
1763
+ - glog
1764
+ - RCT-Folly
1765
+ - RCT-Folly/Fabric
1766
+ - SocketRocket
1767
+ - React-Mapbuffer (0.82.1):
1768
+ - boost
1769
+ - DoubleConversion
1770
+ - fast_float
1771
+ - fmt
1772
+ - glog
1773
+ - RCT-Folly
1774
+ - RCT-Folly/Fabric
1775
+ - React-debug
1776
+ - SocketRocket
1777
+ - React-microtasksnativemodule (0.82.1):
1778
+ - boost
1779
+ - DoubleConversion
1780
+ - fast_float
1781
+ - fmt
1782
+ - glog
1783
+ - hermes-engine
1784
+ - RCT-Folly
1785
+ - RCT-Folly/Fabric
1786
+ - React-jsi
1787
+ - React-jsiexecutor
1788
+ - React-RCTFBReactNativeSpec
1789
+ - ReactCommon/turbomodule/core
1790
+ - SocketRocket
1791
+ - react-native-get-random-values (1.11.0):
1792
+ - React-Core
1793
+ - react-native-safe-area-context (5.6.2):
1794
+ - boost
1795
+ - DoubleConversion
1796
+ - fast_float
1797
+ - fmt
1798
+ - glog
1799
+ - hermes-engine
1800
+ - RCT-Folly
1801
+ - RCT-Folly/Fabric
1802
+ - RCTRequired
1803
+ - RCTTypeSafety
1804
+ - React-Core
1805
+ - React-debug
1806
+ - React-Fabric
1807
+ - React-featureflags
1808
+ - React-graphics
1809
+ - React-ImageManager
1810
+ - React-jsi
1811
+ - react-native-safe-area-context/common (= 5.6.2)
1812
+ - react-native-safe-area-context/fabric (= 5.6.2)
1813
+ - React-NativeModulesApple
1814
+ - React-RCTFabric
1815
+ - React-renderercss
1816
+ - React-rendererdebug
1817
+ - React-utils
1818
+ - ReactCodegen
1819
+ - ReactCommon/turbomodule/bridging
1820
+ - ReactCommon/turbomodule/core
1821
+ - SocketRocket
1822
+ - Yoga
1823
+ - react-native-safe-area-context/common (5.6.2):
1824
+ - boost
1825
+ - DoubleConversion
1826
+ - fast_float
1827
+ - fmt
1828
+ - glog
1829
+ - hermes-engine
1830
+ - RCT-Folly
1831
+ - RCT-Folly/Fabric
1832
+ - RCTRequired
1833
+ - RCTTypeSafety
1834
+ - React-Core
1835
+ - React-debug
1836
+ - React-Fabric
1837
+ - React-featureflags
1838
+ - React-graphics
1839
+ - React-ImageManager
1840
+ - React-jsi
1841
+ - React-NativeModulesApple
1842
+ - React-RCTFabric
1843
+ - React-renderercss
1844
+ - React-rendererdebug
1845
+ - React-utils
1846
+ - ReactCodegen
1847
+ - ReactCommon/turbomodule/bridging
1848
+ - ReactCommon/turbomodule/core
1849
+ - SocketRocket
1850
+ - Yoga
1851
+ - react-native-safe-area-context/fabric (5.6.2):
1852
+ - boost
1853
+ - DoubleConversion
1854
+ - fast_float
1855
+ - fmt
1856
+ - glog
1857
+ - hermes-engine
1858
+ - RCT-Folly
1859
+ - RCT-Folly/Fabric
1860
+ - RCTRequired
1861
+ - RCTTypeSafety
1862
+ - React-Core
1863
+ - React-debug
1864
+ - React-Fabric
1865
+ - React-featureflags
1866
+ - React-graphics
1867
+ - React-ImageManager
1868
+ - React-jsi
1869
+ - react-native-safe-area-context/common
1870
+ - React-NativeModulesApple
1871
+ - React-RCTFabric
1872
+ - React-renderercss
1873
+ - React-rendererdebug
1874
+ - React-utils
1875
+ - ReactCodegen
1876
+ - ReactCommon/turbomodule/bridging
1877
+ - ReactCommon/turbomodule/core
1878
+ - SocketRocket
1879
+ - Yoga
1880
+ - React-NativeModulesApple (0.82.1):
1881
+ - boost
1882
+ - DoubleConversion
1883
+ - fast_float
1884
+ - fmt
1885
+ - glog
1886
+ - hermes-engine
1887
+ - RCT-Folly
1888
+ - RCT-Folly/Fabric
1889
+ - React-callinvoker
1890
+ - React-Core
1891
+ - React-cxxreact
1892
+ - React-debug
1893
+ - React-featureflags
1894
+ - React-jsi
1895
+ - React-jsinspector
1896
+ - React-jsinspectorcdp
1897
+ - React-runtimeexecutor
1898
+ - ReactCommon/turbomodule/bridging
1899
+ - ReactCommon/turbomodule/core
1900
+ - SocketRocket
1901
+ - React-oscompat (0.82.1)
1902
+ - React-perflogger (0.82.1):
1903
+ - boost
1904
+ - DoubleConversion
1905
+ - fast_float
1906
+ - fmt
1907
+ - glog
1908
+ - RCT-Folly
1909
+ - RCT-Folly/Fabric
1910
+ - SocketRocket
1911
+ - React-performancecdpmetrics (0.82.1):
1912
+ - boost
1913
+ - DoubleConversion
1914
+ - fast_float
1915
+ - fmt
1916
+ - glog
1917
+ - hermes-engine
1918
+ - RCT-Folly
1919
+ - RCT-Folly/Fabric
1920
+ - React-jsi
1921
+ - React-performancetimeline
1922
+ - React-runtimeexecutor
1923
+ - React-timing
1924
+ - SocketRocket
1925
+ - React-performancetimeline (0.82.1):
1926
+ - boost
1927
+ - DoubleConversion
1928
+ - fast_float
1929
+ - fmt
1930
+ - glog
1931
+ - RCT-Folly
1932
+ - RCT-Folly/Fabric
1933
+ - React-featureflags
1934
+ - React-jsinspectortracing
1935
+ - React-perflogger
1936
+ - React-timing
1937
+ - SocketRocket
1938
+ - React-RCTActionSheet (0.82.1):
1939
+ - React-Core/RCTActionSheetHeaders (= 0.82.1)
1940
+ - React-RCTAnimation (0.82.1):
1941
+ - boost
1942
+ - DoubleConversion
1943
+ - fast_float
1944
+ - fmt
1945
+ - glog
1946
+ - RCT-Folly
1947
+ - RCT-Folly/Fabric
1948
+ - RCTTypeSafety
1949
+ - React-Core/RCTAnimationHeaders
1950
+ - React-featureflags
1951
+ - React-jsi
1952
+ - React-NativeModulesApple
1953
+ - React-RCTFBReactNativeSpec
1954
+ - ReactCommon
1955
+ - SocketRocket
1956
+ - React-RCTAppDelegate (0.82.1):
1957
+ - boost
1958
+ - DoubleConversion
1959
+ - fast_float
1960
+ - fmt
1961
+ - glog
1962
+ - hermes-engine
1963
+ - RCT-Folly
1964
+ - RCT-Folly/Fabric
1965
+ - RCTRequired
1966
+ - RCTTypeSafety
1967
+ - React-Core
1968
+ - React-CoreModules
1969
+ - React-debug
1970
+ - React-defaultsnativemodule
1971
+ - React-Fabric
1972
+ - React-featureflags
1973
+ - React-graphics
1974
+ - React-hermes
1975
+ - React-jsitooling
1976
+ - React-NativeModulesApple
1977
+ - React-RCTFabric
1978
+ - React-RCTFBReactNativeSpec
1979
+ - React-RCTImage
1980
+ - React-RCTNetwork
1981
+ - React-RCTRuntime
1982
+ - React-rendererdebug
1983
+ - React-RuntimeApple
1984
+ - React-RuntimeCore
1985
+ - React-runtimeexecutor
1986
+ - React-runtimescheduler
1987
+ - React-utils
1988
+ - ReactCommon
1989
+ - SocketRocket
1990
+ - React-RCTBlob (0.82.1):
1991
+ - boost
1992
+ - DoubleConversion
1993
+ - fast_float
1994
+ - fmt
1995
+ - glog
1996
+ - hermes-engine
1997
+ - RCT-Folly
1998
+ - RCT-Folly/Fabric
1999
+ - React-Core/RCTBlobHeaders
2000
+ - React-Core/RCTWebSocket
2001
+ - React-jsi
2002
+ - React-jsinspector
2003
+ - React-jsinspectorcdp
2004
+ - React-NativeModulesApple
2005
+ - React-RCTFBReactNativeSpec
2006
+ - React-RCTNetwork
2007
+ - ReactCommon
2008
+ - SocketRocket
2009
+ - React-RCTFabric (0.82.1):
2010
+ - boost
2011
+ - DoubleConversion
2012
+ - fast_float
2013
+ - fmt
2014
+ - glog
2015
+ - hermes-engine
2016
+ - RCT-Folly
2017
+ - RCT-Folly/Fabric
2018
+ - React-Core
2019
+ - React-debug
2020
+ - React-Fabric
2021
+ - React-FabricComponents
2022
+ - React-FabricImage
2023
+ - React-featureflags
2024
+ - React-graphics
2025
+ - React-ImageManager
2026
+ - React-jsi
2027
+ - React-jsinspector
2028
+ - React-jsinspectorcdp
2029
+ - React-jsinspectornetwork
2030
+ - React-jsinspectortracing
2031
+ - React-performancecdpmetrics
2032
+ - React-performancetimeline
2033
+ - React-RCTAnimation
2034
+ - React-RCTFBReactNativeSpec
2035
+ - React-RCTImage
2036
+ - React-RCTText
2037
+ - React-rendererconsistency
2038
+ - React-renderercss
2039
+ - React-rendererdebug
2040
+ - React-runtimeexecutor
2041
+ - React-runtimescheduler
2042
+ - React-utils
2043
+ - SocketRocket
2044
+ - Yoga
2045
+ - React-RCTFBReactNativeSpec (0.82.1):
2046
+ - boost
2047
+ - DoubleConversion
2048
+ - fast_float
2049
+ - fmt
2050
+ - glog
2051
+ - hermes-engine
2052
+ - RCT-Folly
2053
+ - RCT-Folly/Fabric
2054
+ - RCTRequired
2055
+ - RCTTypeSafety
2056
+ - React-Core
2057
+ - React-jsi
2058
+ - React-NativeModulesApple
2059
+ - React-RCTFBReactNativeSpec/components (= 0.82.1)
2060
+ - ReactCommon
2061
+ - SocketRocket
2062
+ - React-RCTFBReactNativeSpec/components (0.82.1):
2063
+ - boost
2064
+ - DoubleConversion
2065
+ - fast_float
2066
+ - fmt
2067
+ - glog
2068
+ - hermes-engine
2069
+ - RCT-Folly
2070
+ - RCT-Folly/Fabric
2071
+ - RCTRequired
2072
+ - RCTTypeSafety
2073
+ - React-Core
2074
+ - React-debug
2075
+ - React-Fabric
2076
+ - React-featureflags
2077
+ - React-graphics
2078
+ - React-jsi
2079
+ - React-NativeModulesApple
2080
+ - React-rendererdebug
2081
+ - React-utils
2082
+ - ReactCommon
2083
+ - SocketRocket
2084
+ - Yoga
2085
+ - React-RCTImage (0.82.1):
2086
+ - boost
2087
+ - DoubleConversion
2088
+ - fast_float
2089
+ - fmt
2090
+ - glog
2091
+ - RCT-Folly
2092
+ - RCT-Folly/Fabric
2093
+ - RCTTypeSafety
2094
+ - React-Core/RCTImageHeaders
2095
+ - React-jsi
2096
+ - React-NativeModulesApple
2097
+ - React-RCTFBReactNativeSpec
2098
+ - React-RCTNetwork
2099
+ - ReactCommon
2100
+ - SocketRocket
2101
+ - React-RCTLinking (0.82.1):
2102
+ - React-Core/RCTLinkingHeaders (= 0.82.1)
2103
+ - React-jsi (= 0.82.1)
2104
+ - React-NativeModulesApple
2105
+ - React-RCTFBReactNativeSpec
2106
+ - ReactCommon
2107
+ - ReactCommon/turbomodule/core (= 0.82.1)
2108
+ - React-RCTNetwork (0.82.1):
2109
+ - boost
2110
+ - DoubleConversion
2111
+ - fast_float
2112
+ - fmt
2113
+ - glog
2114
+ - RCT-Folly
2115
+ - RCT-Folly/Fabric
2116
+ - RCTTypeSafety
2117
+ - React-Core/RCTNetworkHeaders
2118
+ - React-debug
2119
+ - React-featureflags
2120
+ - React-jsi
2121
+ - React-jsinspectorcdp
2122
+ - React-jsinspectornetwork
2123
+ - React-NativeModulesApple
2124
+ - React-RCTFBReactNativeSpec
2125
+ - ReactCommon
2126
+ - SocketRocket
2127
+ - React-RCTRuntime (0.82.1):
2128
+ - boost
2129
+ - DoubleConversion
2130
+ - fast_float
2131
+ - fmt
2132
+ - glog
2133
+ - hermes-engine
2134
+ - RCT-Folly
2135
+ - RCT-Folly/Fabric
2136
+ - React-Core
2137
+ - React-debug
2138
+ - React-jsi
2139
+ - React-jsinspector
2140
+ - React-jsinspectorcdp
2141
+ - React-jsinspectortracing
2142
+ - React-jsitooling
2143
+ - React-RuntimeApple
2144
+ - React-RuntimeCore
2145
+ - React-runtimeexecutor
2146
+ - React-RuntimeHermes
2147
+ - SocketRocket
2148
+ - React-RCTSettings (0.82.1):
2149
+ - boost
2150
+ - DoubleConversion
2151
+ - fast_float
2152
+ - fmt
2153
+ - glog
2154
+ - RCT-Folly
2155
+ - RCT-Folly/Fabric
2156
+ - RCTTypeSafety
2157
+ - React-Core/RCTSettingsHeaders
2158
+ - React-jsi
2159
+ - React-NativeModulesApple
2160
+ - React-RCTFBReactNativeSpec
2161
+ - ReactCommon
2162
+ - SocketRocket
2163
+ - React-RCTText (0.82.1):
2164
+ - React-Core/RCTTextHeaders (= 0.82.1)
2165
+ - Yoga
2166
+ - React-RCTVibration (0.82.1):
2167
+ - boost
2168
+ - DoubleConversion
2169
+ - fast_float
2170
+ - fmt
2171
+ - glog
2172
+ - RCT-Folly
2173
+ - RCT-Folly/Fabric
2174
+ - React-Core/RCTVibrationHeaders
2175
+ - React-jsi
2176
+ - React-NativeModulesApple
2177
+ - React-RCTFBReactNativeSpec
2178
+ - ReactCommon
2179
+ - SocketRocket
2180
+ - React-rendererconsistency (0.82.1)
2181
+ - React-renderercss (0.82.1):
2182
+ - React-debug
2183
+ - React-utils
2184
+ - React-rendererdebug (0.82.1):
2185
+ - boost
2186
+ - DoubleConversion
2187
+ - fast_float
2188
+ - fmt
2189
+ - glog
2190
+ - RCT-Folly
2191
+ - RCT-Folly/Fabric
2192
+ - React-debug
2193
+ - SocketRocket
2194
+ - React-RuntimeApple (0.82.1):
2195
+ - boost
2196
+ - DoubleConversion
2197
+ - fast_float
2198
+ - fmt
2199
+ - glog
2200
+ - hermes-engine
2201
+ - RCT-Folly
2202
+ - RCT-Folly/Fabric
2203
+ - React-callinvoker
2204
+ - React-Core/Default
2205
+ - React-CoreModules
2206
+ - React-cxxreact
2207
+ - React-featureflags
2208
+ - React-jserrorhandler
2209
+ - React-jsi
2210
+ - React-jsiexecutor
2211
+ - React-jsinspector
2212
+ - React-jsitooling
2213
+ - React-Mapbuffer
2214
+ - React-NativeModulesApple
2215
+ - React-RCTFabric
2216
+ - React-RCTFBReactNativeSpec
2217
+ - React-RuntimeCore
2218
+ - React-runtimeexecutor
2219
+ - React-RuntimeHermes
2220
+ - React-runtimescheduler
2221
+ - React-utils
2222
+ - SocketRocket
2223
+ - React-RuntimeCore (0.82.1):
2224
+ - boost
2225
+ - DoubleConversion
2226
+ - fast_float
2227
+ - fmt
2228
+ - glog
2229
+ - hermes-engine
2230
+ - RCT-Folly
2231
+ - RCT-Folly/Fabric
2232
+ - React-cxxreact
2233
+ - React-Fabric
2234
+ - React-featureflags
2235
+ - React-jserrorhandler
2236
+ - React-jsi
2237
+ - React-jsiexecutor
2238
+ - React-jsinspector
2239
+ - React-jsitooling
2240
+ - React-performancetimeline
2241
+ - React-runtimeexecutor
2242
+ - React-runtimescheduler
2243
+ - React-utils
2244
+ - SocketRocket
2245
+ - React-runtimeexecutor (0.82.1):
2246
+ - boost
2247
+ - DoubleConversion
2248
+ - fast_float
2249
+ - fmt
2250
+ - glog
2251
+ - RCT-Folly
2252
+ - RCT-Folly/Fabric
2253
+ - React-debug
2254
+ - React-featureflags
2255
+ - React-jsi (= 0.82.1)
2256
+ - React-utils
2257
+ - SocketRocket
2258
+ - React-RuntimeHermes (0.82.1):
2259
+ - boost
2260
+ - DoubleConversion
2261
+ - fast_float
2262
+ - fmt
2263
+ - glog
2264
+ - hermes-engine
2265
+ - RCT-Folly
2266
+ - RCT-Folly/Fabric
2267
+ - React-featureflags
2268
+ - React-hermes
2269
+ - React-jsi
2270
+ - React-jsinspector
2271
+ - React-jsinspectorcdp
2272
+ - React-jsinspectortracing
2273
+ - React-jsitooling
2274
+ - React-jsitracing
2275
+ - React-RuntimeCore
2276
+ - React-runtimeexecutor
2277
+ - React-utils
2278
+ - SocketRocket
2279
+ - React-runtimescheduler (0.82.1):
2280
+ - boost
2281
+ - DoubleConversion
2282
+ - fast_float
2283
+ - fmt
2284
+ - glog
2285
+ - hermes-engine
2286
+ - RCT-Folly
2287
+ - RCT-Folly/Fabric
2288
+ - React-callinvoker
2289
+ - React-cxxreact
2290
+ - React-debug
2291
+ - React-featureflags
2292
+ - React-jsi
2293
+ - React-jsinspectortracing
2294
+ - React-performancetimeline
2295
+ - React-rendererconsistency
2296
+ - React-rendererdebug
2297
+ - React-runtimeexecutor
2298
+ - React-timing
2299
+ - React-utils
2300
+ - SocketRocket
2301
+ - React-timing (0.82.1):
2302
+ - React-debug
2303
+ - React-utils (0.82.1):
2304
+ - boost
2305
+ - DoubleConversion
2306
+ - fast_float
2307
+ - fmt
2308
+ - glog
2309
+ - hermes-engine
2310
+ - RCT-Folly
2311
+ - RCT-Folly/Fabric
2312
+ - React-debug
2313
+ - React-jsi (= 0.82.1)
2314
+ - SocketRocket
2315
+ - React-webperformancenativemodule (0.82.1):
2316
+ - boost
2317
+ - DoubleConversion
2318
+ - fast_float
2319
+ - fmt
2320
+ - glog
2321
+ - hermes-engine
2322
+ - RCT-Folly
2323
+ - RCT-Folly/Fabric
2324
+ - React-jsi
2325
+ - React-jsiexecutor
2326
+ - React-performancetimeline
2327
+ - React-RCTFBReactNativeSpec
2328
+ - React-runtimeexecutor
2329
+ - ReactCommon/turbomodule/core
2330
+ - SocketRocket
2331
+ - ReactAppDependencyProvider (0.82.1):
2332
+ - ReactCodegen
2333
+ - ReactCodegen (0.82.1):
2334
+ - boost
2335
+ - DoubleConversion
2336
+ - fast_float
2337
+ - fmt
2338
+ - glog
2339
+ - hermes-engine
2340
+ - RCT-Folly
2341
+ - RCT-Folly/Fabric
2342
+ - RCTRequired
2343
+ - RCTTypeSafety
2344
+ - React-Core
2345
+ - React-debug
2346
+ - React-Fabric
2347
+ - React-FabricImage
2348
+ - React-featureflags
2349
+ - React-graphics
2350
+ - React-jsi
2351
+ - React-jsiexecutor
2352
+ - React-NativeModulesApple
2353
+ - React-RCTAppDelegate
2354
+ - React-rendererdebug
2355
+ - React-utils
2356
+ - ReactCommon/turbomodule/bridging
2357
+ - ReactCommon/turbomodule/core
2358
+ - SocketRocket
2359
+ - ReactCommon (0.82.1):
2360
+ - boost
2361
+ - DoubleConversion
2362
+ - fast_float
2363
+ - fmt
2364
+ - glog
2365
+ - RCT-Folly
2366
+ - RCT-Folly/Fabric
2367
+ - ReactCommon/turbomodule (= 0.82.1)
2368
+ - SocketRocket
2369
+ - ReactCommon/turbomodule (0.82.1):
2370
+ - boost
2371
+ - DoubleConversion
2372
+ - fast_float
2373
+ - fmt
2374
+ - glog
2375
+ - hermes-engine
2376
+ - RCT-Folly
2377
+ - RCT-Folly/Fabric
2378
+ - React-callinvoker (= 0.82.1)
2379
+ - React-cxxreact (= 0.82.1)
2380
+ - React-jsi (= 0.82.1)
2381
+ - React-logger (= 0.82.1)
2382
+ - React-perflogger (= 0.82.1)
2383
+ - ReactCommon/turbomodule/bridging (= 0.82.1)
2384
+ - ReactCommon/turbomodule/core (= 0.82.1)
2385
+ - SocketRocket
2386
+ - ReactCommon/turbomodule/bridging (0.82.1):
2387
+ - boost
2388
+ - DoubleConversion
2389
+ - fast_float
2390
+ - fmt
2391
+ - glog
2392
+ - hermes-engine
2393
+ - RCT-Folly
2394
+ - RCT-Folly/Fabric
2395
+ - React-callinvoker (= 0.82.1)
2396
+ - React-cxxreact (= 0.82.1)
2397
+ - React-jsi (= 0.82.1)
2398
+ - React-logger (= 0.82.1)
2399
+ - React-perflogger (= 0.82.1)
2400
+ - SocketRocket
2401
+ - ReactCommon/turbomodule/core (0.82.1):
2402
+ - boost
2403
+ - DoubleConversion
2404
+ - fast_float
2405
+ - fmt
2406
+ - glog
2407
+ - hermes-engine
2408
+ - RCT-Folly
2409
+ - RCT-Folly/Fabric
2410
+ - React-callinvoker (= 0.82.1)
2411
+ - React-cxxreact (= 0.82.1)
2412
+ - React-debug (= 0.82.1)
2413
+ - React-featureflags (= 0.82.1)
2414
+ - React-jsi (= 0.82.1)
2415
+ - React-logger (= 0.82.1)
2416
+ - React-perflogger (= 0.82.1)
2417
+ - React-utils (= 0.82.1)
2418
+ - SocketRocket
2419
+ - RNCAsyncStorage (2.2.0):
2420
+ - boost
2421
+ - DoubleConversion
2422
+ - fast_float
2423
+ - fmt
2424
+ - glog
2425
+ - hermes-engine
2426
+ - RCT-Folly
2427
+ - RCT-Folly/Fabric
2428
+ - RCTRequired
2429
+ - RCTTypeSafety
2430
+ - React-Core
2431
+ - React-debug
2432
+ - React-Fabric
2433
+ - React-featureflags
2434
+ - React-graphics
2435
+ - React-ImageManager
2436
+ - React-jsi
2437
+ - React-NativeModulesApple
2438
+ - React-RCTFabric
2439
+ - React-renderercss
2440
+ - React-rendererdebug
2441
+ - React-utils
2442
+ - ReactCodegen
2443
+ - ReactCommon/turbomodule/bridging
2444
+ - ReactCommon/turbomodule/core
2445
+ - SocketRocket
2446
+ - Yoga
2447
+ - RNScreens (4.18.0):
2448
+ - boost
2449
+ - DoubleConversion
2450
+ - fast_float
2451
+ - fmt
2452
+ - glog
2453
+ - hermes-engine
2454
+ - RCT-Folly
2455
+ - RCT-Folly/Fabric
2456
+ - RCTRequired
2457
+ - RCTTypeSafety
2458
+ - React-Core
2459
+ - React-debug
2460
+ - React-Fabric
2461
+ - React-featureflags
2462
+ - React-graphics
2463
+ - React-ImageManager
2464
+ - React-jsi
2465
+ - React-NativeModulesApple
2466
+ - React-RCTFabric
2467
+ - React-RCTImage
2468
+ - React-renderercss
2469
+ - React-rendererdebug
2470
+ - React-utils
2471
+ - ReactCodegen
2472
+ - ReactCommon/turbomodule/bridging
2473
+ - ReactCommon/turbomodule/core
2474
+ - RNScreens/common (= 4.18.0)
2475
+ - SocketRocket
2476
+ - Yoga
2477
+ - RNScreens/common (4.18.0):
2478
+ - boost
2479
+ - DoubleConversion
2480
+ - fast_float
2481
+ - fmt
2482
+ - glog
2483
+ - hermes-engine
2484
+ - RCT-Folly
2485
+ - RCT-Folly/Fabric
2486
+ - RCTRequired
2487
+ - RCTTypeSafety
2488
+ - React-Core
2489
+ - React-debug
2490
+ - React-Fabric
2491
+ - React-featureflags
2492
+ - React-graphics
2493
+ - React-ImageManager
2494
+ - React-jsi
2495
+ - React-NativeModulesApple
2496
+ - React-RCTFabric
2497
+ - React-RCTImage
2498
+ - React-renderercss
2499
+ - React-rendererdebug
2500
+ - React-utils
2501
+ - ReactCodegen
2502
+ - ReactCommon/turbomodule/bridging
2503
+ - ReactCommon/turbomodule/core
2504
+ - SocketRocket
2505
+ - Yoga
2506
+ - SocketRocket (0.7.1)
2507
+ - Yoga (0.0.0)
2508
+
2509
+ DEPENDENCIES:
2510
+ - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
2511
+ - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
2512
+ - fast_float (from `../node_modules/react-native/third-party-podspecs/fast_float.podspec`)
2513
+ - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
2514
+ - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
2515
+ - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
2516
+ - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
2517
+ - MixpanelReactNative (from `../node_modules/mixpanel-react-native`)
2518
+ - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
2519
+ - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
2520
+ - RCTRequired (from `../node_modules/react-native/Libraries/Required`)
2521
+ - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
2522
+ - React (from `../node_modules/react-native/`)
2523
+ - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
2524
+ - React-Core (from `../node_modules/react-native/`)
2525
+ - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
2526
+ - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
2527
+ - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
2528
+ - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
2529
+ - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`)
2530
+ - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`)
2531
+ - React-Fabric (from `../node_modules/react-native/ReactCommon`)
2532
+ - React-FabricComponents (from `../node_modules/react-native/ReactCommon`)
2533
+ - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
2534
+ - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
2535
+ - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`)
2536
+ - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
2537
+ - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
2538
+ - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`)
2539
+ - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
2540
+ - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
2541
+ - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
2542
+ - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
2543
+ - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
2544
+ - React-jsinspectorcdp (from `../node_modules/react-native/ReactCommon/jsinspector-modern/cdp`)
2545
+ - React-jsinspectornetwork (from `../node_modules/react-native/ReactCommon/jsinspector-modern/network`)
2546
+ - React-jsinspectortracing (from `../node_modules/react-native/ReactCommon/jsinspector-modern/tracing`)
2547
+ - React-jsitooling (from `../node_modules/react-native/ReactCommon/jsitooling`)
2548
+ - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
2549
+ - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
2550
+ - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
2551
+ - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
2552
+ - react-native-get-random-values (from `../node_modules/react-native-get-random-values`)
2553
+ - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
2554
+ - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
2555
+ - React-oscompat (from `../node_modules/react-native/ReactCommon/oscompat`)
2556
+ - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
2557
+ - React-performancecdpmetrics (from `../node_modules/react-native/ReactCommon/react/performance/cdpmetrics`)
2558
+ - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)
2559
+ - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
2560
+ - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
2561
+ - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
2562
+ - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
2563
+ - React-RCTFabric (from `../node_modules/react-native/React`)
2564
+ - React-RCTFBReactNativeSpec (from `../node_modules/react-native/React`)
2565
+ - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
2566
+ - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
2567
+ - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
2568
+ - React-RCTRuntime (from `../node_modules/react-native/React/Runtime`)
2569
+ - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
2570
+ - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
2571
+ - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
2572
+ - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)
2573
+ - React-renderercss (from `../node_modules/react-native/ReactCommon/react/renderer/css`)
2574
+ - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
2575
+ - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
2576
+ - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
2577
+ - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
2578
+ - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)
2579
+ - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
2580
+ - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`)
2581
+ - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
2582
+ - React-webperformancenativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/webperformance`)
2583
+ - ReactAppDependencyProvider (from `build/generated/ios`)
2584
+ - ReactCodegen (from `build/generated/ios`)
2585
+ - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
2586
+ - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
2587
+ - RNScreens (from `../node_modules/react-native-screens`)
2588
+ - SocketRocket (~> 0.7.1)
2589
+ - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
2590
+
2591
+ SPEC REPOS:
2592
+ trunk:
2593
+ - Mixpanel-swift
2594
+ - SocketRocket
2595
+
2596
+ EXTERNAL SOURCES:
2597
+ boost:
2598
+ :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
2599
+ DoubleConversion:
2600
+ :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
2601
+ fast_float:
2602
+ :podspec: "../node_modules/react-native/third-party-podspecs/fast_float.podspec"
2603
+ FBLazyVector:
2604
+ :path: "../node_modules/react-native/Libraries/FBLazyVector"
2605
+ fmt:
2606
+ :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"
2607
+ glog:
2608
+ :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
2609
+ hermes-engine:
2610
+ :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
2611
+ :tag: hermes-2025-09-01-RNv0.82.0-265ef62ff3eb7289d17e366664ac0da82303e101
2612
+ MixpanelReactNative:
2613
+ :path: "../node_modules/mixpanel-react-native"
2614
+ RCT-Folly:
2615
+ :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
2616
+ RCTDeprecation:
2617
+ :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
2618
+ RCTRequired:
2619
+ :path: "../node_modules/react-native/Libraries/Required"
2620
+ RCTTypeSafety:
2621
+ :path: "../node_modules/react-native/Libraries/TypeSafety"
2622
+ React:
2623
+ :path: "../node_modules/react-native/"
2624
+ React-callinvoker:
2625
+ :path: "../node_modules/react-native/ReactCommon/callinvoker"
2626
+ React-Core:
2627
+ :path: "../node_modules/react-native/"
2628
+ React-CoreModules:
2629
+ :path: "../node_modules/react-native/React/CoreModules"
2630
+ React-cxxreact:
2631
+ :path: "../node_modules/react-native/ReactCommon/cxxreact"
2632
+ React-debug:
2633
+ :path: "../node_modules/react-native/ReactCommon/react/debug"
2634
+ React-defaultsnativemodule:
2635
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults"
2636
+ React-domnativemodule:
2637
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom"
2638
+ React-Fabric:
2639
+ :path: "../node_modules/react-native/ReactCommon"
2640
+ React-FabricComponents:
2641
+ :path: "../node_modules/react-native/ReactCommon"
2642
+ React-FabricImage:
2643
+ :path: "../node_modules/react-native/ReactCommon"
2644
+ React-featureflags:
2645
+ :path: "../node_modules/react-native/ReactCommon/react/featureflags"
2646
+ React-featureflagsnativemodule:
2647
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags"
2648
+ React-graphics:
2649
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
2650
+ React-hermes:
2651
+ :path: "../node_modules/react-native/ReactCommon/hermes"
2652
+ React-idlecallbacksnativemodule:
2653
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks"
2654
+ React-ImageManager:
2655
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
2656
+ React-jserrorhandler:
2657
+ :path: "../node_modules/react-native/ReactCommon/jserrorhandler"
2658
+ React-jsi:
2659
+ :path: "../node_modules/react-native/ReactCommon/jsi"
2660
+ React-jsiexecutor:
2661
+ :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
2662
+ React-jsinspector:
2663
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
2664
+ React-jsinspectorcdp:
2665
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/cdp"
2666
+ React-jsinspectornetwork:
2667
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/network"
2668
+ React-jsinspectortracing:
2669
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/tracing"
2670
+ React-jsitooling:
2671
+ :path: "../node_modules/react-native/ReactCommon/jsitooling"
2672
+ React-jsitracing:
2673
+ :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
2674
+ React-logger:
2675
+ :path: "../node_modules/react-native/ReactCommon/logger"
2676
+ React-Mapbuffer:
2677
+ :path: "../node_modules/react-native/ReactCommon"
2678
+ React-microtasksnativemodule:
2679
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
2680
+ react-native-get-random-values:
2681
+ :path: "../node_modules/react-native-get-random-values"
2682
+ react-native-safe-area-context:
2683
+ :path: "../node_modules/react-native-safe-area-context"
2684
+ React-NativeModulesApple:
2685
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
2686
+ React-oscompat:
2687
+ :path: "../node_modules/react-native/ReactCommon/oscompat"
2688
+ React-perflogger:
2689
+ :path: "../node_modules/react-native/ReactCommon/reactperflogger"
2690
+ React-performancecdpmetrics:
2691
+ :path: "../node_modules/react-native/ReactCommon/react/performance/cdpmetrics"
2692
+ React-performancetimeline:
2693
+ :path: "../node_modules/react-native/ReactCommon/react/performance/timeline"
2694
+ React-RCTActionSheet:
2695
+ :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
2696
+ React-RCTAnimation:
2697
+ :path: "../node_modules/react-native/Libraries/NativeAnimation"
2698
+ React-RCTAppDelegate:
2699
+ :path: "../node_modules/react-native/Libraries/AppDelegate"
2700
+ React-RCTBlob:
2701
+ :path: "../node_modules/react-native/Libraries/Blob"
2702
+ React-RCTFabric:
2703
+ :path: "../node_modules/react-native/React"
2704
+ React-RCTFBReactNativeSpec:
2705
+ :path: "../node_modules/react-native/React"
2706
+ React-RCTImage:
2707
+ :path: "../node_modules/react-native/Libraries/Image"
2708
+ React-RCTLinking:
2709
+ :path: "../node_modules/react-native/Libraries/LinkingIOS"
2710
+ React-RCTNetwork:
2711
+ :path: "../node_modules/react-native/Libraries/Network"
2712
+ React-RCTRuntime:
2713
+ :path: "../node_modules/react-native/React/Runtime"
2714
+ React-RCTSettings:
2715
+ :path: "../node_modules/react-native/Libraries/Settings"
2716
+ React-RCTText:
2717
+ :path: "../node_modules/react-native/Libraries/Text"
2718
+ React-RCTVibration:
2719
+ :path: "../node_modules/react-native/Libraries/Vibration"
2720
+ React-rendererconsistency:
2721
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency"
2722
+ React-renderercss:
2723
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/css"
2724
+ React-rendererdebug:
2725
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
2726
+ React-RuntimeApple:
2727
+ :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
2728
+ React-RuntimeCore:
2729
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
2730
+ React-runtimeexecutor:
2731
+ :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
2732
+ React-RuntimeHermes:
2733
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
2734
+ React-runtimescheduler:
2735
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
2736
+ React-timing:
2737
+ :path: "../node_modules/react-native/ReactCommon/react/timing"
2738
+ React-utils:
2739
+ :path: "../node_modules/react-native/ReactCommon/react/utils"
2740
+ React-webperformancenativemodule:
2741
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/webperformance"
2742
+ ReactAppDependencyProvider:
2743
+ :path: build/generated/ios
2744
+ ReactCodegen:
2745
+ :path: build/generated/ios
2746
+ ReactCommon:
2747
+ :path: "../node_modules/react-native/ReactCommon"
2748
+ RNCAsyncStorage:
2749
+ :path: "../node_modules/@react-native-async-storage/async-storage"
2750
+ RNScreens:
2751
+ :path: "../node_modules/react-native-screens"
2752
+ Yoga:
2753
+ :path: "../node_modules/react-native/ReactCommon/yoga"
2754
+
2755
+ SPEC CHECKSUMS:
2756
+ boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90
2757
+ DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
2758
+ fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6
2759
+ FBLazyVector: 0aa6183b9afe3c31fc65b5d1eeef1f3c19b63bfa
2760
+ fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd
2761
+ glog: 5683914934d5b6e4240e497e0f4a3b42d1854183
2762
+ hermes-engine: 273e30e7fb618279934b0b95ffab60ecedb7acf5
2763
+ Mixpanel-swift: 630484a1b61cb90820aa34492798d542d9f1d0f1
2764
+ MixpanelReactNative: 30f767dd9aab033e24821454874afaa35c20e293
2765
+ RCT-Folly: 59ec0ac1f2f39672a0c6e6cecdd39383b764646f
2766
+ RCTDeprecation: f17e2ebc07876ca9ab8eb6e4b0a4e4647497ae3a
2767
+ RCTRequired: e2c574c1b45231f7efb0834936bd609d75072b63
2768
+ RCTTypeSafety: c693294e3993056955c3010eb1ebc574f1fcded6
2769
+ React: aeece948ccf155182ea86a2395786ed31cf21c61
2770
+ React-callinvoker: 05ad789505922d68c06cde1c8060e734df9fe182
2771
+ React-Core: 727a48090292599bda380e05c9f1318e21578837
2772
+ React-CoreModules: b26015efc6c222479e6939c0d7497cfac08a1a24
2773
+ React-cxxreact: 1e6640d1e9a36744c4ce861bf2a5c8cee4abe9cf
2774
+ React-debug: 1dfa1d1cbd93bdaffa3b140190829f9fd9e27985
2775
+ React-defaultsnativemodule: 5a7a0b2575032cd1ce8fac5d5e0611cf55d3bf2c
2776
+ React-domnativemodule: 9e86dc9883b569f169e1e9da8c0e34292c469014
2777
+ React-Fabric: bc78d9349f6385cb619e901911be752fb076730b
2778
+ React-FabricComponents: 74412b4e4f29cfa8057edaf59fb3d7fc8d082b46
2779
+ React-FabricImage: e5f1599f50d2c122c220744ed00ef1a271619938
2780
+ React-featureflags: 773391abff0339af3697f8a987890191c122b320
2781
+ React-featureflagsnativemodule: 4ffcace380a76af8982bdcf64ed29a02cea4fb75
2782
+ React-graphics: 5d44b20c935d17bea4712edf5ce4834c4dead85d
2783
+ React-hermes: 5c2453ae5a3c2f34a15eaefb229375998e365810
2784
+ React-idlecallbacksnativemodule: e2b63f28f0b14a8ab01ba922b1611426b3999301
2785
+ React-ImageManager: c50c501798a2bb89109db71ce74345bd9d6671d1
2786
+ React-jserrorhandler: f773f1866064afd558506f9cd4cac19e6fcf9147
2787
+ React-jsi: 389d2e9fe9bd935bdaff38e0d72eb2cad1ad3071
2788
+ React-jsiexecutor: 0821fa7695e1a6a868aa47a40a0fc5036552128b
2789
+ React-jsinspector: 9040cfa67dcaefbc856d8c79ab42e9be92736935
2790
+ React-jsinspectorcdp: bf0403947b41a3fccab67cb11fd54f39a6d85351
2791
+ React-jsinspectornetwork: f06ebe5a22316242b0f7b2b9514f03f3732306c5
2792
+ React-jsinspectortracing: 6e22744e791cde5b4cd91343946dfa536f49f795
2793
+ React-jsitooling: e9a0bab6a6ca8a0a5ee700d19e067bdb214eb5b5
2794
+ React-jsitracing: af2ee8a89f5aa7495aae1f27edc422e00f5a6880
2795
+ React-logger: fceaaedb9c715923a1900af68a7534e9b3a601a1
2796
+ React-Mapbuffer: 7e7ca4c53288117e7e0406e9eaa804bf259b4b30
2797
+ React-microtasksnativemodule: 885bebe5c5f25035e1fd0920776078840a0e3a76
2798
+ react-native-get-random-values: 21325b2244dfa6b58878f51f9aa42821e7ba3d06
2799
+ react-native-safe-area-context: 54d812805f3c4e08a4580ad086cbde1d8780c2e4
2800
+ React-NativeModulesApple: c4bee6aa736092cd347456488a4f97a8e7517604
2801
+ React-oscompat: 95875e81f5d4b3c7b2c888d5bd2c9d83450d8bdb
2802
+ React-perflogger: d5b5677902d23a6611b700601634271b29356ac6
2803
+ React-performancecdpmetrics: f20287f906b00a05070fce0bc400ea492991f13e
2804
+ React-performancetimeline: c1f898134defda04623db379d57d9024d52ef63d
2805
+ React-RCTActionSheet: 2399bb6cc8adaef2e5850878102fea2ad1788a0e
2806
+ React-RCTAnimation: a7e596bacb4706501556dcaaa8cd4062c8858d40
2807
+ React-RCTAppDelegate: 40a84753dc9d7c2535b9e748c30bae50d39c6580
2808
+ React-RCTBlob: e3264ae55b1b856db8e654bb7066b8343e030a67
2809
+ React-RCTFabric: e5bf005693c6edd581657979624bd33db479b008
2810
+ React-RCTFBReactNativeSpec: 3984efab208a7d570cb2a5a8b94921ff61189307
2811
+ React-RCTImage: fb1d64345bb2e26af63e06e1ffc2cf99d572e2e1
2812
+ React-RCTLinking: cb91127e75ee2d081f1abffd08d63db185805439
2813
+ React-RCTNetwork: f38a98b030faedf2dc5c9061d6ed0074b3513c72
2814
+ React-RCTRuntime: fb2eb8fd62a7b9b3e8a29ad0ecf000b453070cb0
2815
+ React-RCTSettings: 00cc62efb88ec24608cefaa7db4ad04461a511b4
2816
+ React-RCTText: 2b963648a99f49875349bd18c0dd7f2a4acf50c1
2817
+ React-RCTVibration: 16e31c7f90f13bec10385aeb5cc61e8a45e591e4
2818
+ React-rendererconsistency: 3c3e198aba0255524ed7126aa812d22ce750d217
2819
+ React-renderercss: d07e645ab9f2b411513c9d3947ad627a1ef3bec7
2820
+ React-rendererdebug: 79ba04c9662222da80b140e75550e050c0520630
2821
+ React-RuntimeApple: ab93dc2863d621b085788dc3781d141fd4d410f7
2822
+ React-RuntimeCore: 301320b1d544ba82e8edb8c5e57f245cbc8bb2c0
2823
+ React-runtimeexecutor: aa09562cd04c048b4246ef3997806df0ce0e7ff2
2824
+ React-RuntimeHermes: e5b85c57ffd7d2913b4c85e96e133428ac6cb46d
2825
+ React-runtimescheduler: 15a7e3d5b5d18d2e4def7c7cd937be2085fe9245
2826
+ React-timing: 5d765a145ac47783de0bf116d4dd9cfa0c498819
2827
+ React-utils: a9abebe9dc25642955b5d2cec8c16bbf55a1bc52
2828
+ React-webperformancenativemodule: 85dce57a9e73457a3686aee0d8e929518713fc05
2829
+ ReactAppDependencyProvider: cc2795efe30a023c3a505676b9c748b664b9c0a1
2830
+ ReactCodegen: 897bad2d2f722ff4dc46fc144f9cc018db0e2ce4
2831
+ ReactCommon: c5803af00bd3737dc1631749b1f1da5beba5b049
2832
+ RNCAsyncStorage: 302f2fac014fd450046c120567ca364632da682b
2833
+ RNScreens: 3693ec4bbc0065151b843269e50e9807644e9918
2834
+ SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
2835
+ Yoga: 689c8e04277f3ad631e60fe2a08e41d411daf8eb
2836
+
2837
+ PODFILE CHECKSUM: 1b41d2009cf022336650cf927dfa081cec0125b4
2838
+
2839
+ COCOAPODS: 1.16.2