@coinbase/create-cdp-app 0.0.26 → 0.0.28

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