@brightlayer-ui/react-native-template-blank-typescript 2.1.0-beta.0 → 3.0.0-alpha.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 (84) hide show
  1. package/README.md +3 -3
  2. package/package.json +3 -3
  3. package/template/.bundle/config +2 -0
  4. package/template/.eslintrc.js +57 -0
  5. package/template/.prettierrc.js +7 -0
  6. package/template/.watchmanconfig +1 -0
  7. package/template/App.tsx +26 -19
  8. package/template/Gemfile +9 -0
  9. package/template/Gemfile.lock +105 -0
  10. package/template/README.md +79 -0
  11. package/template/__tests__/App.test.tsx +17 -0
  12. package/template/android/app/build.gradle +120 -0
  13. package/template/android/app/debug.keystore +0 -0
  14. package/template/android/app/proguard-rules.pro +10 -0
  15. package/template/android/app/src/debug/AndroidManifest.xml +9 -0
  16. package/template/android/app/src/main/AndroidManifest.xml +25 -0
  17. package/template/android/app/src/main/java/com/blanktemplate/MainActivity.kt +22 -0
  18. package/template/android/app/src/main/java/com/blanktemplate/MainApplication.kt +43 -0
  19. package/template/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  20. package/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  21. package/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  22. package/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  23. package/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  24. package/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  25. package/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  26. package/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  27. package/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  28. package/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  29. package/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  30. package/template/android/app/src/main/res/values/strings.xml +3 -0
  31. package/template/android/app/src/main/res/values/styles.xml +9 -0
  32. package/template/android/build.gradle +21 -0
  33. package/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  34. package/template/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  35. package/template/android/gradle.properties +41 -0
  36. package/template/android/gradlew +249 -0
  37. package/template/android/gradlew.bat +92 -0
  38. package/template/android/link-assets-manifest.json +25 -0
  39. package/template/android/settings.gradle +4 -0
  40. package/template/app.json +4 -0
  41. package/template/assets/fonts/OpenSans-Bold.ttf +0 -0
  42. package/template/assets/fonts/OpenSans-ExtraBold.ttf +0 -0
  43. package/template/assets/fonts/OpenSans-Light.ttf +0 -0
  44. package/template/assets/fonts/OpenSans-Regular.ttf +0 -0
  45. package/template/assets/fonts/OpenSans-SemiBold.ttf +0 -0
  46. package/template/assets/images/Logo.png +0 -0
  47. package/template/babel.config.js +3 -0
  48. package/template/eslint.config.mjs +10 -0
  49. package/template/index.js +9 -0
  50. package/template/ios/.xcode.env +11 -0
  51. package/template/ios/Podfile +40 -0
  52. package/template/ios/Podfile.lock +1402 -0
  53. package/template/ios/blankTemplate/AppDelegate.h +6 -0
  54. package/template/ios/blankTemplate/AppDelegate.mm +31 -0
  55. package/template/ios/blankTemplate/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  56. package/template/ios/blankTemplate/Images.xcassets/Contents.json +6 -0
  57. package/template/ios/blankTemplate/Info.plist +75 -0
  58. package/template/ios/blankTemplate/LaunchScreen.storyboard +47 -0
  59. package/template/ios/blankTemplate/PrivacyInfo.xcprivacy +37 -0
  60. package/template/ios/blankTemplate/main.m +10 -0
  61. package/template/ios/blankTemplate.xcodeproj/project.pbxproj +741 -0
  62. package/template/ios/blankTemplate.xcodeproj/xcshareddata/xcschemes/blankTemplate.xcscheme +88 -0
  63. package/template/ios/blankTemplate.xcworkspace/contents.xcworkspacedata +10 -0
  64. package/template/ios/blankTemplate.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  65. package/template/ios/blankTemplateTests/Info.plist +24 -0
  66. package/template/ios/blankTemplateTests/blankTemplateTests.m +66 -0
  67. package/template/ios/link-assets-manifest.json +25 -0
  68. package/template/jest.config.js +3 -0
  69. package/template/metro.config.js +7 -25
  70. package/template/package.json +54 -0
  71. package/template/tsconfig.json +60 -0
  72. package/template/yarn.lock +7127 -0
  73. package/template.config.js +4 -0
  74. package/CHANGELOG.md +0 -54
  75. package/dependencies.json +0 -17
  76. package/images/Logo.svg +0 -11
  77. package/template/__mocks__/svgMock.js +0 -8
  78. package/template/jestSetupFile.js +0 -2
  79. package/template/react-native.config.js +0 -3
  80. /package/{fonts → template/android/app/src/main/assets/fonts}/OpenSans-Bold.ttf +0 -0
  81. /package/{fonts → template/android/app/src/main/assets/fonts}/OpenSans-ExtraBold.ttf +0 -0
  82. /package/{fonts → template/android/app/src/main/assets/fonts}/OpenSans-Light.ttf +0 -0
  83. /package/{fonts → template/android/app/src/main/assets/fonts}/OpenSans-Regular.ttf +0 -0
  84. /package/{fonts → template/android/app/src/main/assets/fonts}/OpenSans-SemiBold.ttf +0 -0
@@ -0,0 +1,1402 @@
1
+ PODS:
2
+ - boost (1.83.0)
3
+ - DoubleConversion (1.1.6)
4
+ - FBLazyVector (0.74.1)
5
+ - fmt (9.1.0)
6
+ - glog (0.3.5)
7
+ - hermes-engine (0.74.1):
8
+ - hermes-engine/Pre-built (= 0.74.1)
9
+ - hermes-engine/Pre-built (0.74.1)
10
+ - RCT-Folly (2024.01.01.00):
11
+ - boost
12
+ - DoubleConversion
13
+ - fmt (= 9.1.0)
14
+ - glog
15
+ - RCT-Folly/Default (= 2024.01.01.00)
16
+ - RCT-Folly/Default (2024.01.01.00):
17
+ - boost
18
+ - DoubleConversion
19
+ - fmt (= 9.1.0)
20
+ - glog
21
+ - RCT-Folly/Fabric (2024.01.01.00):
22
+ - boost
23
+ - DoubleConversion
24
+ - fmt (= 9.1.0)
25
+ - glog
26
+ - RCTDeprecation (0.74.1)
27
+ - RCTRequired (0.74.1)
28
+ - RCTTypeSafety (0.74.1):
29
+ - FBLazyVector (= 0.74.1)
30
+ - RCTRequired (= 0.74.1)
31
+ - React-Core (= 0.74.1)
32
+ - React (0.74.1):
33
+ - React-Core (= 0.74.1)
34
+ - React-Core/DevSupport (= 0.74.1)
35
+ - React-Core/RCTWebSocket (= 0.74.1)
36
+ - React-RCTActionSheet (= 0.74.1)
37
+ - React-RCTAnimation (= 0.74.1)
38
+ - React-RCTBlob (= 0.74.1)
39
+ - React-RCTImage (= 0.74.1)
40
+ - React-RCTLinking (= 0.74.1)
41
+ - React-RCTNetwork (= 0.74.1)
42
+ - React-RCTSettings (= 0.74.1)
43
+ - React-RCTText (= 0.74.1)
44
+ - React-RCTVibration (= 0.74.1)
45
+ - React-callinvoker (0.74.1)
46
+ - React-Codegen (0.74.1):
47
+ - DoubleConversion
48
+ - glog
49
+ - hermes-engine
50
+ - RCT-Folly
51
+ - RCTRequired
52
+ - RCTTypeSafety
53
+ - React-Core
54
+ - React-debug
55
+ - React-Fabric
56
+ - React-FabricImage
57
+ - React-featureflags
58
+ - React-graphics
59
+ - React-jsi
60
+ - React-jsiexecutor
61
+ - React-NativeModulesApple
62
+ - React-rendererdebug
63
+ - React-utils
64
+ - ReactCommon/turbomodule/bridging
65
+ - ReactCommon/turbomodule/core
66
+ - React-Core (0.74.1):
67
+ - glog
68
+ - hermes-engine
69
+ - RCT-Folly (= 2024.01.01.00)
70
+ - RCTDeprecation
71
+ - React-Core/Default (= 0.74.1)
72
+ - React-cxxreact
73
+ - React-featureflags
74
+ - React-hermes
75
+ - React-jsi
76
+ - React-jsiexecutor
77
+ - React-jsinspector
78
+ - React-perflogger
79
+ - React-runtimescheduler
80
+ - React-utils
81
+ - SocketRocket (= 0.7.0)
82
+ - Yoga
83
+ - React-Core/CoreModulesHeaders (0.74.1):
84
+ - glog
85
+ - hermes-engine
86
+ - RCT-Folly (= 2024.01.01.00)
87
+ - RCTDeprecation
88
+ - React-Core/Default
89
+ - React-cxxreact
90
+ - React-featureflags
91
+ - React-hermes
92
+ - React-jsi
93
+ - React-jsiexecutor
94
+ - React-jsinspector
95
+ - React-perflogger
96
+ - React-runtimescheduler
97
+ - React-utils
98
+ - SocketRocket (= 0.7.0)
99
+ - Yoga
100
+ - React-Core/Default (0.74.1):
101
+ - glog
102
+ - hermes-engine
103
+ - RCT-Folly (= 2024.01.01.00)
104
+ - RCTDeprecation
105
+ - React-cxxreact
106
+ - React-featureflags
107
+ - React-hermes
108
+ - React-jsi
109
+ - React-jsiexecutor
110
+ - React-jsinspector
111
+ - React-perflogger
112
+ - React-runtimescheduler
113
+ - React-utils
114
+ - SocketRocket (= 0.7.0)
115
+ - Yoga
116
+ - React-Core/DevSupport (0.74.1):
117
+ - glog
118
+ - hermes-engine
119
+ - RCT-Folly (= 2024.01.01.00)
120
+ - RCTDeprecation
121
+ - React-Core/Default (= 0.74.1)
122
+ - React-Core/RCTWebSocket (= 0.74.1)
123
+ - React-cxxreact
124
+ - React-featureflags
125
+ - React-hermes
126
+ - React-jsi
127
+ - React-jsiexecutor
128
+ - React-jsinspector
129
+ - React-perflogger
130
+ - React-runtimescheduler
131
+ - React-utils
132
+ - SocketRocket (= 0.7.0)
133
+ - Yoga
134
+ - React-Core/RCTActionSheetHeaders (0.74.1):
135
+ - glog
136
+ - hermes-engine
137
+ - RCT-Folly (= 2024.01.01.00)
138
+ - RCTDeprecation
139
+ - React-Core/Default
140
+ - React-cxxreact
141
+ - React-featureflags
142
+ - React-hermes
143
+ - React-jsi
144
+ - React-jsiexecutor
145
+ - React-jsinspector
146
+ - React-perflogger
147
+ - React-runtimescheduler
148
+ - React-utils
149
+ - SocketRocket (= 0.7.0)
150
+ - Yoga
151
+ - React-Core/RCTAnimationHeaders (0.74.1):
152
+ - glog
153
+ - hermes-engine
154
+ - RCT-Folly (= 2024.01.01.00)
155
+ - RCTDeprecation
156
+ - React-Core/Default
157
+ - React-cxxreact
158
+ - React-featureflags
159
+ - React-hermes
160
+ - React-jsi
161
+ - React-jsiexecutor
162
+ - React-jsinspector
163
+ - React-perflogger
164
+ - React-runtimescheduler
165
+ - React-utils
166
+ - SocketRocket (= 0.7.0)
167
+ - Yoga
168
+ - React-Core/RCTBlobHeaders (0.74.1):
169
+ - glog
170
+ - hermes-engine
171
+ - RCT-Folly (= 2024.01.01.00)
172
+ - RCTDeprecation
173
+ - React-Core/Default
174
+ - React-cxxreact
175
+ - React-featureflags
176
+ - React-hermes
177
+ - React-jsi
178
+ - React-jsiexecutor
179
+ - React-jsinspector
180
+ - React-perflogger
181
+ - React-runtimescheduler
182
+ - React-utils
183
+ - SocketRocket (= 0.7.0)
184
+ - Yoga
185
+ - React-Core/RCTImageHeaders (0.74.1):
186
+ - glog
187
+ - hermes-engine
188
+ - RCT-Folly (= 2024.01.01.00)
189
+ - RCTDeprecation
190
+ - React-Core/Default
191
+ - React-cxxreact
192
+ - React-featureflags
193
+ - React-hermes
194
+ - React-jsi
195
+ - React-jsiexecutor
196
+ - React-jsinspector
197
+ - React-perflogger
198
+ - React-runtimescheduler
199
+ - React-utils
200
+ - SocketRocket (= 0.7.0)
201
+ - Yoga
202
+ - React-Core/RCTLinkingHeaders (0.74.1):
203
+ - glog
204
+ - hermes-engine
205
+ - RCT-Folly (= 2024.01.01.00)
206
+ - RCTDeprecation
207
+ - React-Core/Default
208
+ - React-cxxreact
209
+ - React-featureflags
210
+ - React-hermes
211
+ - React-jsi
212
+ - React-jsiexecutor
213
+ - React-jsinspector
214
+ - React-perflogger
215
+ - React-runtimescheduler
216
+ - React-utils
217
+ - SocketRocket (= 0.7.0)
218
+ - Yoga
219
+ - React-Core/RCTNetworkHeaders (0.74.1):
220
+ - glog
221
+ - hermes-engine
222
+ - RCT-Folly (= 2024.01.01.00)
223
+ - RCTDeprecation
224
+ - React-Core/Default
225
+ - React-cxxreact
226
+ - React-featureflags
227
+ - React-hermes
228
+ - React-jsi
229
+ - React-jsiexecutor
230
+ - React-jsinspector
231
+ - React-perflogger
232
+ - React-runtimescheduler
233
+ - React-utils
234
+ - SocketRocket (= 0.7.0)
235
+ - Yoga
236
+ - React-Core/RCTSettingsHeaders (0.74.1):
237
+ - glog
238
+ - hermes-engine
239
+ - RCT-Folly (= 2024.01.01.00)
240
+ - RCTDeprecation
241
+ - React-Core/Default
242
+ - React-cxxreact
243
+ - React-featureflags
244
+ - React-hermes
245
+ - React-jsi
246
+ - React-jsiexecutor
247
+ - React-jsinspector
248
+ - React-perflogger
249
+ - React-runtimescheduler
250
+ - React-utils
251
+ - SocketRocket (= 0.7.0)
252
+ - Yoga
253
+ - React-Core/RCTTextHeaders (0.74.1):
254
+ - glog
255
+ - hermes-engine
256
+ - RCT-Folly (= 2024.01.01.00)
257
+ - RCTDeprecation
258
+ - React-Core/Default
259
+ - React-cxxreact
260
+ - React-featureflags
261
+ - React-hermes
262
+ - React-jsi
263
+ - React-jsiexecutor
264
+ - React-jsinspector
265
+ - React-perflogger
266
+ - React-runtimescheduler
267
+ - React-utils
268
+ - SocketRocket (= 0.7.0)
269
+ - Yoga
270
+ - React-Core/RCTVibrationHeaders (0.74.1):
271
+ - glog
272
+ - hermes-engine
273
+ - RCT-Folly (= 2024.01.01.00)
274
+ - RCTDeprecation
275
+ - React-Core/Default
276
+ - React-cxxreact
277
+ - React-featureflags
278
+ - React-hermes
279
+ - React-jsi
280
+ - React-jsiexecutor
281
+ - React-jsinspector
282
+ - React-perflogger
283
+ - React-runtimescheduler
284
+ - React-utils
285
+ - SocketRocket (= 0.7.0)
286
+ - Yoga
287
+ - React-Core/RCTWebSocket (0.74.1):
288
+ - glog
289
+ - hermes-engine
290
+ - RCT-Folly (= 2024.01.01.00)
291
+ - RCTDeprecation
292
+ - React-Core/Default (= 0.74.1)
293
+ - React-cxxreact
294
+ - React-featureflags
295
+ - React-hermes
296
+ - React-jsi
297
+ - React-jsiexecutor
298
+ - React-jsinspector
299
+ - React-perflogger
300
+ - React-runtimescheduler
301
+ - React-utils
302
+ - SocketRocket (= 0.7.0)
303
+ - Yoga
304
+ - React-CoreModules (0.74.1):
305
+ - DoubleConversion
306
+ - fmt (= 9.1.0)
307
+ - RCT-Folly (= 2024.01.01.00)
308
+ - RCTTypeSafety (= 0.74.1)
309
+ - React-Codegen
310
+ - React-Core/CoreModulesHeaders (= 0.74.1)
311
+ - React-jsi (= 0.74.1)
312
+ - React-jsinspector
313
+ - React-NativeModulesApple
314
+ - React-RCTBlob
315
+ - React-RCTImage (= 0.74.1)
316
+ - ReactCommon
317
+ - SocketRocket (= 0.7.0)
318
+ - React-cxxreact (0.74.1):
319
+ - boost (= 1.83.0)
320
+ - DoubleConversion
321
+ - fmt (= 9.1.0)
322
+ - glog
323
+ - hermes-engine
324
+ - RCT-Folly (= 2024.01.01.00)
325
+ - React-callinvoker (= 0.74.1)
326
+ - React-debug (= 0.74.1)
327
+ - React-jsi (= 0.74.1)
328
+ - React-jsinspector
329
+ - React-logger (= 0.74.1)
330
+ - React-perflogger (= 0.74.1)
331
+ - React-runtimeexecutor (= 0.74.1)
332
+ - React-debug (0.74.1)
333
+ - React-Fabric (0.74.1):
334
+ - DoubleConversion
335
+ - fmt (= 9.1.0)
336
+ - glog
337
+ - hermes-engine
338
+ - RCT-Folly/Fabric (= 2024.01.01.00)
339
+ - RCTRequired
340
+ - RCTTypeSafety
341
+ - React-Core
342
+ - React-cxxreact
343
+ - React-debug
344
+ - React-Fabric/animations (= 0.74.1)
345
+ - React-Fabric/attributedstring (= 0.74.1)
346
+ - React-Fabric/componentregistry (= 0.74.1)
347
+ - React-Fabric/componentregistrynative (= 0.74.1)
348
+ - React-Fabric/components (= 0.74.1)
349
+ - React-Fabric/core (= 0.74.1)
350
+ - React-Fabric/imagemanager (= 0.74.1)
351
+ - React-Fabric/leakchecker (= 0.74.1)
352
+ - React-Fabric/mounting (= 0.74.1)
353
+ - React-Fabric/scheduler (= 0.74.1)
354
+ - React-Fabric/telemetry (= 0.74.1)
355
+ - React-Fabric/templateprocessor (= 0.74.1)
356
+ - React-Fabric/textlayoutmanager (= 0.74.1)
357
+ - React-Fabric/uimanager (= 0.74.1)
358
+ - React-graphics
359
+ - React-jsi
360
+ - React-jsiexecutor
361
+ - React-logger
362
+ - React-rendererdebug
363
+ - React-runtimescheduler
364
+ - React-utils
365
+ - ReactCommon/turbomodule/core
366
+ - React-Fabric/animations (0.74.1):
367
+ - DoubleConversion
368
+ - fmt (= 9.1.0)
369
+ - glog
370
+ - hermes-engine
371
+ - RCT-Folly/Fabric (= 2024.01.01.00)
372
+ - RCTRequired
373
+ - RCTTypeSafety
374
+ - React-Core
375
+ - React-cxxreact
376
+ - React-debug
377
+ - React-graphics
378
+ - React-jsi
379
+ - React-jsiexecutor
380
+ - React-logger
381
+ - React-rendererdebug
382
+ - React-runtimescheduler
383
+ - React-utils
384
+ - ReactCommon/turbomodule/core
385
+ - React-Fabric/attributedstring (0.74.1):
386
+ - DoubleConversion
387
+ - fmt (= 9.1.0)
388
+ - glog
389
+ - hermes-engine
390
+ - RCT-Folly/Fabric (= 2024.01.01.00)
391
+ - RCTRequired
392
+ - RCTTypeSafety
393
+ - React-Core
394
+ - React-cxxreact
395
+ - React-debug
396
+ - React-graphics
397
+ - React-jsi
398
+ - React-jsiexecutor
399
+ - React-logger
400
+ - React-rendererdebug
401
+ - React-runtimescheduler
402
+ - React-utils
403
+ - ReactCommon/turbomodule/core
404
+ - React-Fabric/componentregistry (0.74.1):
405
+ - DoubleConversion
406
+ - fmt (= 9.1.0)
407
+ - glog
408
+ - hermes-engine
409
+ - RCT-Folly/Fabric (= 2024.01.01.00)
410
+ - RCTRequired
411
+ - RCTTypeSafety
412
+ - React-Core
413
+ - React-cxxreact
414
+ - React-debug
415
+ - React-graphics
416
+ - React-jsi
417
+ - React-jsiexecutor
418
+ - React-logger
419
+ - React-rendererdebug
420
+ - React-runtimescheduler
421
+ - React-utils
422
+ - ReactCommon/turbomodule/core
423
+ - React-Fabric/componentregistrynative (0.74.1):
424
+ - DoubleConversion
425
+ - fmt (= 9.1.0)
426
+ - glog
427
+ - hermes-engine
428
+ - RCT-Folly/Fabric (= 2024.01.01.00)
429
+ - RCTRequired
430
+ - RCTTypeSafety
431
+ - React-Core
432
+ - React-cxxreact
433
+ - React-debug
434
+ - React-graphics
435
+ - React-jsi
436
+ - React-jsiexecutor
437
+ - React-logger
438
+ - React-rendererdebug
439
+ - React-runtimescheduler
440
+ - React-utils
441
+ - ReactCommon/turbomodule/core
442
+ - React-Fabric/components (0.74.1):
443
+ - DoubleConversion
444
+ - fmt (= 9.1.0)
445
+ - glog
446
+ - hermes-engine
447
+ - RCT-Folly/Fabric (= 2024.01.01.00)
448
+ - RCTRequired
449
+ - RCTTypeSafety
450
+ - React-Core
451
+ - React-cxxreact
452
+ - React-debug
453
+ - React-Fabric/components/inputaccessory (= 0.74.1)
454
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.74.1)
455
+ - React-Fabric/components/modal (= 0.74.1)
456
+ - React-Fabric/components/rncore (= 0.74.1)
457
+ - React-Fabric/components/root (= 0.74.1)
458
+ - React-Fabric/components/safeareaview (= 0.74.1)
459
+ - React-Fabric/components/scrollview (= 0.74.1)
460
+ - React-Fabric/components/text (= 0.74.1)
461
+ - React-Fabric/components/textinput (= 0.74.1)
462
+ - React-Fabric/components/unimplementedview (= 0.74.1)
463
+ - React-Fabric/components/view (= 0.74.1)
464
+ - React-graphics
465
+ - React-jsi
466
+ - React-jsiexecutor
467
+ - React-logger
468
+ - React-rendererdebug
469
+ - React-runtimescheduler
470
+ - React-utils
471
+ - ReactCommon/turbomodule/core
472
+ - React-Fabric/components/inputaccessory (0.74.1):
473
+ - DoubleConversion
474
+ - fmt (= 9.1.0)
475
+ - glog
476
+ - hermes-engine
477
+ - RCT-Folly/Fabric (= 2024.01.01.00)
478
+ - RCTRequired
479
+ - RCTTypeSafety
480
+ - React-Core
481
+ - React-cxxreact
482
+ - React-debug
483
+ - React-graphics
484
+ - React-jsi
485
+ - React-jsiexecutor
486
+ - React-logger
487
+ - React-rendererdebug
488
+ - React-runtimescheduler
489
+ - React-utils
490
+ - ReactCommon/turbomodule/core
491
+ - React-Fabric/components/legacyviewmanagerinterop (0.74.1):
492
+ - DoubleConversion
493
+ - fmt (= 9.1.0)
494
+ - glog
495
+ - hermes-engine
496
+ - RCT-Folly/Fabric (= 2024.01.01.00)
497
+ - RCTRequired
498
+ - RCTTypeSafety
499
+ - React-Core
500
+ - React-cxxreact
501
+ - React-debug
502
+ - React-graphics
503
+ - React-jsi
504
+ - React-jsiexecutor
505
+ - React-logger
506
+ - React-rendererdebug
507
+ - React-runtimescheduler
508
+ - React-utils
509
+ - ReactCommon/turbomodule/core
510
+ - React-Fabric/components/modal (0.74.1):
511
+ - DoubleConversion
512
+ - fmt (= 9.1.0)
513
+ - glog
514
+ - hermes-engine
515
+ - RCT-Folly/Fabric (= 2024.01.01.00)
516
+ - RCTRequired
517
+ - RCTTypeSafety
518
+ - React-Core
519
+ - React-cxxreact
520
+ - React-debug
521
+ - React-graphics
522
+ - React-jsi
523
+ - React-jsiexecutor
524
+ - React-logger
525
+ - React-rendererdebug
526
+ - React-runtimescheduler
527
+ - React-utils
528
+ - ReactCommon/turbomodule/core
529
+ - React-Fabric/components/rncore (0.74.1):
530
+ - DoubleConversion
531
+ - fmt (= 9.1.0)
532
+ - glog
533
+ - hermes-engine
534
+ - RCT-Folly/Fabric (= 2024.01.01.00)
535
+ - RCTRequired
536
+ - RCTTypeSafety
537
+ - React-Core
538
+ - React-cxxreact
539
+ - React-debug
540
+ - React-graphics
541
+ - React-jsi
542
+ - React-jsiexecutor
543
+ - React-logger
544
+ - React-rendererdebug
545
+ - React-runtimescheduler
546
+ - React-utils
547
+ - ReactCommon/turbomodule/core
548
+ - React-Fabric/components/root (0.74.1):
549
+ - DoubleConversion
550
+ - fmt (= 9.1.0)
551
+ - glog
552
+ - hermes-engine
553
+ - RCT-Folly/Fabric (= 2024.01.01.00)
554
+ - RCTRequired
555
+ - RCTTypeSafety
556
+ - React-Core
557
+ - React-cxxreact
558
+ - React-debug
559
+ - React-graphics
560
+ - React-jsi
561
+ - React-jsiexecutor
562
+ - React-logger
563
+ - React-rendererdebug
564
+ - React-runtimescheduler
565
+ - React-utils
566
+ - ReactCommon/turbomodule/core
567
+ - React-Fabric/components/safeareaview (0.74.1):
568
+ - DoubleConversion
569
+ - fmt (= 9.1.0)
570
+ - glog
571
+ - hermes-engine
572
+ - RCT-Folly/Fabric (= 2024.01.01.00)
573
+ - RCTRequired
574
+ - RCTTypeSafety
575
+ - React-Core
576
+ - React-cxxreact
577
+ - React-debug
578
+ - React-graphics
579
+ - React-jsi
580
+ - React-jsiexecutor
581
+ - React-logger
582
+ - React-rendererdebug
583
+ - React-runtimescheduler
584
+ - React-utils
585
+ - ReactCommon/turbomodule/core
586
+ - React-Fabric/components/scrollview (0.74.1):
587
+ - DoubleConversion
588
+ - fmt (= 9.1.0)
589
+ - glog
590
+ - hermes-engine
591
+ - RCT-Folly/Fabric (= 2024.01.01.00)
592
+ - RCTRequired
593
+ - RCTTypeSafety
594
+ - React-Core
595
+ - React-cxxreact
596
+ - React-debug
597
+ - React-graphics
598
+ - React-jsi
599
+ - React-jsiexecutor
600
+ - React-logger
601
+ - React-rendererdebug
602
+ - React-runtimescheduler
603
+ - React-utils
604
+ - ReactCommon/turbomodule/core
605
+ - React-Fabric/components/text (0.74.1):
606
+ - DoubleConversion
607
+ - fmt (= 9.1.0)
608
+ - glog
609
+ - hermes-engine
610
+ - RCT-Folly/Fabric (= 2024.01.01.00)
611
+ - RCTRequired
612
+ - RCTTypeSafety
613
+ - React-Core
614
+ - React-cxxreact
615
+ - React-debug
616
+ - React-graphics
617
+ - React-jsi
618
+ - React-jsiexecutor
619
+ - React-logger
620
+ - React-rendererdebug
621
+ - React-runtimescheduler
622
+ - React-utils
623
+ - ReactCommon/turbomodule/core
624
+ - React-Fabric/components/textinput (0.74.1):
625
+ - DoubleConversion
626
+ - fmt (= 9.1.0)
627
+ - glog
628
+ - hermes-engine
629
+ - RCT-Folly/Fabric (= 2024.01.01.00)
630
+ - RCTRequired
631
+ - RCTTypeSafety
632
+ - React-Core
633
+ - React-cxxreact
634
+ - React-debug
635
+ - React-graphics
636
+ - React-jsi
637
+ - React-jsiexecutor
638
+ - React-logger
639
+ - React-rendererdebug
640
+ - React-runtimescheduler
641
+ - React-utils
642
+ - ReactCommon/turbomodule/core
643
+ - React-Fabric/components/unimplementedview (0.74.1):
644
+ - DoubleConversion
645
+ - fmt (= 9.1.0)
646
+ - glog
647
+ - hermes-engine
648
+ - RCT-Folly/Fabric (= 2024.01.01.00)
649
+ - RCTRequired
650
+ - RCTTypeSafety
651
+ - React-Core
652
+ - React-cxxreact
653
+ - React-debug
654
+ - React-graphics
655
+ - React-jsi
656
+ - React-jsiexecutor
657
+ - React-logger
658
+ - React-rendererdebug
659
+ - React-runtimescheduler
660
+ - React-utils
661
+ - ReactCommon/turbomodule/core
662
+ - React-Fabric/components/view (0.74.1):
663
+ - DoubleConversion
664
+ - fmt (= 9.1.0)
665
+ - glog
666
+ - hermes-engine
667
+ - RCT-Folly/Fabric (= 2024.01.01.00)
668
+ - RCTRequired
669
+ - RCTTypeSafety
670
+ - React-Core
671
+ - React-cxxreact
672
+ - React-debug
673
+ - React-graphics
674
+ - React-jsi
675
+ - React-jsiexecutor
676
+ - React-logger
677
+ - React-rendererdebug
678
+ - React-runtimescheduler
679
+ - React-utils
680
+ - ReactCommon/turbomodule/core
681
+ - Yoga
682
+ - React-Fabric/core (0.74.1):
683
+ - DoubleConversion
684
+ - fmt (= 9.1.0)
685
+ - glog
686
+ - hermes-engine
687
+ - RCT-Folly/Fabric (= 2024.01.01.00)
688
+ - RCTRequired
689
+ - RCTTypeSafety
690
+ - React-Core
691
+ - React-cxxreact
692
+ - React-debug
693
+ - React-graphics
694
+ - React-jsi
695
+ - React-jsiexecutor
696
+ - React-logger
697
+ - React-rendererdebug
698
+ - React-runtimescheduler
699
+ - React-utils
700
+ - ReactCommon/turbomodule/core
701
+ - React-Fabric/imagemanager (0.74.1):
702
+ - DoubleConversion
703
+ - fmt (= 9.1.0)
704
+ - glog
705
+ - hermes-engine
706
+ - RCT-Folly/Fabric (= 2024.01.01.00)
707
+ - RCTRequired
708
+ - RCTTypeSafety
709
+ - React-Core
710
+ - React-cxxreact
711
+ - React-debug
712
+ - React-graphics
713
+ - React-jsi
714
+ - React-jsiexecutor
715
+ - React-logger
716
+ - React-rendererdebug
717
+ - React-runtimescheduler
718
+ - React-utils
719
+ - ReactCommon/turbomodule/core
720
+ - React-Fabric/leakchecker (0.74.1):
721
+ - DoubleConversion
722
+ - fmt (= 9.1.0)
723
+ - glog
724
+ - hermes-engine
725
+ - RCT-Folly/Fabric (= 2024.01.01.00)
726
+ - RCTRequired
727
+ - RCTTypeSafety
728
+ - React-Core
729
+ - React-cxxreact
730
+ - React-debug
731
+ - React-graphics
732
+ - React-jsi
733
+ - React-jsiexecutor
734
+ - React-logger
735
+ - React-rendererdebug
736
+ - React-runtimescheduler
737
+ - React-utils
738
+ - ReactCommon/turbomodule/core
739
+ - React-Fabric/mounting (0.74.1):
740
+ - DoubleConversion
741
+ - fmt (= 9.1.0)
742
+ - glog
743
+ - hermes-engine
744
+ - RCT-Folly/Fabric (= 2024.01.01.00)
745
+ - RCTRequired
746
+ - RCTTypeSafety
747
+ - React-Core
748
+ - React-cxxreact
749
+ - React-debug
750
+ - React-graphics
751
+ - React-jsi
752
+ - React-jsiexecutor
753
+ - React-logger
754
+ - React-rendererdebug
755
+ - React-runtimescheduler
756
+ - React-utils
757
+ - ReactCommon/turbomodule/core
758
+ - React-Fabric/scheduler (0.74.1):
759
+ - DoubleConversion
760
+ - fmt (= 9.1.0)
761
+ - glog
762
+ - hermes-engine
763
+ - RCT-Folly/Fabric (= 2024.01.01.00)
764
+ - RCTRequired
765
+ - RCTTypeSafety
766
+ - React-Core
767
+ - React-cxxreact
768
+ - React-debug
769
+ - React-graphics
770
+ - React-jsi
771
+ - React-jsiexecutor
772
+ - React-logger
773
+ - React-rendererdebug
774
+ - React-runtimescheduler
775
+ - React-utils
776
+ - ReactCommon/turbomodule/core
777
+ - React-Fabric/telemetry (0.74.1):
778
+ - DoubleConversion
779
+ - fmt (= 9.1.0)
780
+ - glog
781
+ - hermes-engine
782
+ - RCT-Folly/Fabric (= 2024.01.01.00)
783
+ - RCTRequired
784
+ - RCTTypeSafety
785
+ - React-Core
786
+ - React-cxxreact
787
+ - React-debug
788
+ - React-graphics
789
+ - React-jsi
790
+ - React-jsiexecutor
791
+ - React-logger
792
+ - React-rendererdebug
793
+ - React-runtimescheduler
794
+ - React-utils
795
+ - ReactCommon/turbomodule/core
796
+ - React-Fabric/templateprocessor (0.74.1):
797
+ - DoubleConversion
798
+ - fmt (= 9.1.0)
799
+ - glog
800
+ - hermes-engine
801
+ - RCT-Folly/Fabric (= 2024.01.01.00)
802
+ - RCTRequired
803
+ - RCTTypeSafety
804
+ - React-Core
805
+ - React-cxxreact
806
+ - React-debug
807
+ - React-graphics
808
+ - React-jsi
809
+ - React-jsiexecutor
810
+ - React-logger
811
+ - React-rendererdebug
812
+ - React-runtimescheduler
813
+ - React-utils
814
+ - ReactCommon/turbomodule/core
815
+ - React-Fabric/textlayoutmanager (0.74.1):
816
+ - DoubleConversion
817
+ - fmt (= 9.1.0)
818
+ - glog
819
+ - hermes-engine
820
+ - RCT-Folly/Fabric (= 2024.01.01.00)
821
+ - RCTRequired
822
+ - RCTTypeSafety
823
+ - React-Core
824
+ - React-cxxreact
825
+ - React-debug
826
+ - React-Fabric/uimanager
827
+ - React-graphics
828
+ - React-jsi
829
+ - React-jsiexecutor
830
+ - React-logger
831
+ - React-rendererdebug
832
+ - React-runtimescheduler
833
+ - React-utils
834
+ - ReactCommon/turbomodule/core
835
+ - React-Fabric/uimanager (0.74.1):
836
+ - DoubleConversion
837
+ - fmt (= 9.1.0)
838
+ - glog
839
+ - hermes-engine
840
+ - RCT-Folly/Fabric (= 2024.01.01.00)
841
+ - RCTRequired
842
+ - RCTTypeSafety
843
+ - React-Core
844
+ - React-cxxreact
845
+ - React-debug
846
+ - React-graphics
847
+ - React-jsi
848
+ - React-jsiexecutor
849
+ - React-logger
850
+ - React-rendererdebug
851
+ - React-runtimescheduler
852
+ - React-utils
853
+ - ReactCommon/turbomodule/core
854
+ - React-FabricImage (0.74.1):
855
+ - DoubleConversion
856
+ - fmt (= 9.1.0)
857
+ - glog
858
+ - hermes-engine
859
+ - RCT-Folly/Fabric (= 2024.01.01.00)
860
+ - RCTRequired (= 0.74.1)
861
+ - RCTTypeSafety (= 0.74.1)
862
+ - React-Fabric
863
+ - React-graphics
864
+ - React-ImageManager
865
+ - React-jsi
866
+ - React-jsiexecutor (= 0.74.1)
867
+ - React-logger
868
+ - React-rendererdebug
869
+ - React-utils
870
+ - ReactCommon
871
+ - Yoga
872
+ - React-featureflags (0.74.1)
873
+ - React-graphics (0.74.1):
874
+ - DoubleConversion
875
+ - fmt (= 9.1.0)
876
+ - glog
877
+ - RCT-Folly/Fabric (= 2024.01.01.00)
878
+ - React-Core/Default (= 0.74.1)
879
+ - React-utils
880
+ - React-hermes (0.74.1):
881
+ - DoubleConversion
882
+ - fmt (= 9.1.0)
883
+ - glog
884
+ - hermes-engine
885
+ - RCT-Folly (= 2024.01.01.00)
886
+ - React-cxxreact (= 0.74.1)
887
+ - React-jsi
888
+ - React-jsiexecutor (= 0.74.1)
889
+ - React-jsinspector
890
+ - React-perflogger (= 0.74.1)
891
+ - React-runtimeexecutor
892
+ - React-ImageManager (0.74.1):
893
+ - glog
894
+ - RCT-Folly/Fabric
895
+ - React-Core/Default
896
+ - React-debug
897
+ - React-Fabric
898
+ - React-graphics
899
+ - React-rendererdebug
900
+ - React-utils
901
+ - React-jserrorhandler (0.74.1):
902
+ - RCT-Folly/Fabric (= 2024.01.01.00)
903
+ - React-debug
904
+ - React-jsi
905
+ - React-Mapbuffer
906
+ - React-jsi (0.74.1):
907
+ - boost (= 1.83.0)
908
+ - DoubleConversion
909
+ - fmt (= 9.1.0)
910
+ - glog
911
+ - hermes-engine
912
+ - RCT-Folly (= 2024.01.01.00)
913
+ - React-jsiexecutor (0.74.1):
914
+ - DoubleConversion
915
+ - fmt (= 9.1.0)
916
+ - glog
917
+ - hermes-engine
918
+ - RCT-Folly (= 2024.01.01.00)
919
+ - React-cxxreact (= 0.74.1)
920
+ - React-jsi (= 0.74.1)
921
+ - React-jsinspector
922
+ - React-perflogger (= 0.74.1)
923
+ - React-jsinspector (0.74.1):
924
+ - DoubleConversion
925
+ - glog
926
+ - hermes-engine
927
+ - RCT-Folly (= 2024.01.01.00)
928
+ - React-featureflags
929
+ - React-jsi
930
+ - React-runtimeexecutor (= 0.74.1)
931
+ - React-jsitracing (0.74.1):
932
+ - React-jsi
933
+ - React-logger (0.74.1):
934
+ - glog
935
+ - React-Mapbuffer (0.74.1):
936
+ - glog
937
+ - React-debug
938
+ - React-nativeconfig (0.74.1)
939
+ - React-NativeModulesApple (0.74.1):
940
+ - glog
941
+ - hermes-engine
942
+ - React-callinvoker
943
+ - React-Core
944
+ - React-cxxreact
945
+ - React-jsi
946
+ - React-jsinspector
947
+ - React-runtimeexecutor
948
+ - ReactCommon/turbomodule/bridging
949
+ - ReactCommon/turbomodule/core
950
+ - React-perflogger (0.74.1)
951
+ - React-RCTActionSheet (0.74.1):
952
+ - React-Core/RCTActionSheetHeaders (= 0.74.1)
953
+ - React-RCTAnimation (0.74.1):
954
+ - RCT-Folly (= 2024.01.01.00)
955
+ - RCTTypeSafety
956
+ - React-Codegen
957
+ - React-Core/RCTAnimationHeaders
958
+ - React-jsi
959
+ - React-NativeModulesApple
960
+ - ReactCommon
961
+ - React-RCTAppDelegate (0.74.1):
962
+ - RCT-Folly (= 2024.01.01.00)
963
+ - RCTRequired
964
+ - RCTTypeSafety
965
+ - React-Codegen
966
+ - React-Core
967
+ - React-CoreModules
968
+ - React-debug
969
+ - React-Fabric
970
+ - React-featureflags
971
+ - React-graphics
972
+ - React-hermes
973
+ - React-nativeconfig
974
+ - React-NativeModulesApple
975
+ - React-RCTFabric
976
+ - React-RCTImage
977
+ - React-RCTNetwork
978
+ - React-rendererdebug
979
+ - React-RuntimeApple
980
+ - React-RuntimeCore
981
+ - React-RuntimeHermes
982
+ - React-runtimescheduler
983
+ - React-utils
984
+ - ReactCommon
985
+ - React-RCTBlob (0.74.1):
986
+ - DoubleConversion
987
+ - fmt (= 9.1.0)
988
+ - hermes-engine
989
+ - RCT-Folly (= 2024.01.01.00)
990
+ - React-Codegen
991
+ - React-Core/RCTBlobHeaders
992
+ - React-Core/RCTWebSocket
993
+ - React-jsi
994
+ - React-jsinspector
995
+ - React-NativeModulesApple
996
+ - React-RCTNetwork
997
+ - ReactCommon
998
+ - React-RCTFabric (0.74.1):
999
+ - glog
1000
+ - hermes-engine
1001
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1002
+ - React-Core
1003
+ - React-debug
1004
+ - React-Fabric
1005
+ - React-FabricImage
1006
+ - React-featureflags
1007
+ - React-graphics
1008
+ - React-ImageManager
1009
+ - React-jsi
1010
+ - React-jsinspector
1011
+ - React-nativeconfig
1012
+ - React-RCTImage
1013
+ - React-RCTText
1014
+ - React-rendererdebug
1015
+ - React-runtimescheduler
1016
+ - React-utils
1017
+ - Yoga
1018
+ - React-RCTImage (0.74.1):
1019
+ - RCT-Folly (= 2024.01.01.00)
1020
+ - RCTTypeSafety
1021
+ - React-Codegen
1022
+ - React-Core/RCTImageHeaders
1023
+ - React-jsi
1024
+ - React-NativeModulesApple
1025
+ - React-RCTNetwork
1026
+ - ReactCommon
1027
+ - React-RCTLinking (0.74.1):
1028
+ - React-Codegen
1029
+ - React-Core/RCTLinkingHeaders (= 0.74.1)
1030
+ - React-jsi (= 0.74.1)
1031
+ - React-NativeModulesApple
1032
+ - ReactCommon
1033
+ - ReactCommon/turbomodule/core (= 0.74.1)
1034
+ - React-RCTNetwork (0.74.1):
1035
+ - RCT-Folly (= 2024.01.01.00)
1036
+ - RCTTypeSafety
1037
+ - React-Codegen
1038
+ - React-Core/RCTNetworkHeaders
1039
+ - React-jsi
1040
+ - React-NativeModulesApple
1041
+ - ReactCommon
1042
+ - React-RCTSettings (0.74.1):
1043
+ - RCT-Folly (= 2024.01.01.00)
1044
+ - RCTTypeSafety
1045
+ - React-Codegen
1046
+ - React-Core/RCTSettingsHeaders
1047
+ - React-jsi
1048
+ - React-NativeModulesApple
1049
+ - ReactCommon
1050
+ - React-RCTText (0.74.1):
1051
+ - React-Core/RCTTextHeaders (= 0.74.1)
1052
+ - Yoga
1053
+ - React-RCTVibration (0.74.1):
1054
+ - RCT-Folly (= 2024.01.01.00)
1055
+ - React-Codegen
1056
+ - React-Core/RCTVibrationHeaders
1057
+ - React-jsi
1058
+ - React-NativeModulesApple
1059
+ - ReactCommon
1060
+ - React-rendererdebug (0.74.1):
1061
+ - DoubleConversion
1062
+ - fmt (= 9.1.0)
1063
+ - RCT-Folly (= 2024.01.01.00)
1064
+ - React-debug
1065
+ - React-rncore (0.74.1)
1066
+ - React-RuntimeApple (0.74.1):
1067
+ - hermes-engine
1068
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1069
+ - React-callinvoker
1070
+ - React-Core/Default
1071
+ - React-CoreModules
1072
+ - React-cxxreact
1073
+ - React-jserrorhandler
1074
+ - React-jsi
1075
+ - React-jsiexecutor
1076
+ - React-jsinspector
1077
+ - React-Mapbuffer
1078
+ - React-NativeModulesApple
1079
+ - React-RCTFabric
1080
+ - React-RuntimeCore
1081
+ - React-runtimeexecutor
1082
+ - React-RuntimeHermes
1083
+ - React-utils
1084
+ - React-RuntimeCore (0.74.1):
1085
+ - glog
1086
+ - hermes-engine
1087
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1088
+ - React-cxxreact
1089
+ - React-featureflags
1090
+ - React-jserrorhandler
1091
+ - React-jsi
1092
+ - React-jsiexecutor
1093
+ - React-jsinspector
1094
+ - React-runtimeexecutor
1095
+ - React-runtimescheduler
1096
+ - React-utils
1097
+ - React-runtimeexecutor (0.74.1):
1098
+ - React-jsi (= 0.74.1)
1099
+ - React-RuntimeHermes (0.74.1):
1100
+ - hermes-engine
1101
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1102
+ - React-featureflags
1103
+ - React-hermes
1104
+ - React-jsi
1105
+ - React-jsinspector
1106
+ - React-jsitracing
1107
+ - React-nativeconfig
1108
+ - React-RuntimeCore
1109
+ - React-utils
1110
+ - React-runtimescheduler (0.74.1):
1111
+ - glog
1112
+ - hermes-engine
1113
+ - RCT-Folly (= 2024.01.01.00)
1114
+ - React-callinvoker
1115
+ - React-cxxreact
1116
+ - React-debug
1117
+ - React-featureflags
1118
+ - React-jsi
1119
+ - React-rendererdebug
1120
+ - React-runtimeexecutor
1121
+ - React-utils
1122
+ - React-utils (0.74.1):
1123
+ - glog
1124
+ - hermes-engine
1125
+ - RCT-Folly (= 2024.01.01.00)
1126
+ - React-debug
1127
+ - React-jsi (= 0.74.1)
1128
+ - ReactCommon (0.74.1):
1129
+ - ReactCommon/turbomodule (= 0.74.1)
1130
+ - ReactCommon/turbomodule (0.74.1):
1131
+ - DoubleConversion
1132
+ - fmt (= 9.1.0)
1133
+ - glog
1134
+ - hermes-engine
1135
+ - RCT-Folly (= 2024.01.01.00)
1136
+ - React-callinvoker (= 0.74.1)
1137
+ - React-cxxreact (= 0.74.1)
1138
+ - React-jsi (= 0.74.1)
1139
+ - React-logger (= 0.74.1)
1140
+ - React-perflogger (= 0.74.1)
1141
+ - ReactCommon/turbomodule/bridging (= 0.74.1)
1142
+ - ReactCommon/turbomodule/core (= 0.74.1)
1143
+ - ReactCommon/turbomodule/bridging (0.74.1):
1144
+ - DoubleConversion
1145
+ - fmt (= 9.1.0)
1146
+ - glog
1147
+ - hermes-engine
1148
+ - RCT-Folly (= 2024.01.01.00)
1149
+ - React-callinvoker (= 0.74.1)
1150
+ - React-cxxreact (= 0.74.1)
1151
+ - React-jsi (= 0.74.1)
1152
+ - React-logger (= 0.74.1)
1153
+ - React-perflogger (= 0.74.1)
1154
+ - ReactCommon/turbomodule/core (0.74.1):
1155
+ - DoubleConversion
1156
+ - fmt (= 9.1.0)
1157
+ - glog
1158
+ - hermes-engine
1159
+ - RCT-Folly (= 2024.01.01.00)
1160
+ - React-callinvoker (= 0.74.1)
1161
+ - React-cxxreact (= 0.74.1)
1162
+ - React-debug (= 0.74.1)
1163
+ - React-jsi (= 0.74.1)
1164
+ - React-logger (= 0.74.1)
1165
+ - React-perflogger (= 0.74.1)
1166
+ - React-utils (= 0.74.1)
1167
+ - SocketRocket (0.7.0)
1168
+ - Yoga (0.0.0)
1169
+
1170
+ DEPENDENCIES:
1171
+ - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
1172
+ - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
1173
+ - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
1174
+ - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
1175
+ - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
1176
+ - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
1177
+ - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1178
+ - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1179
+ - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
1180
+ - RCTRequired (from `../node_modules/react-native/Libraries/Required`)
1181
+ - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
1182
+ - React (from `../node_modules/react-native/`)
1183
+ - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
1184
+ - React-Codegen (from `build/generated/ios`)
1185
+ - React-Core (from `../node_modules/react-native/`)
1186
+ - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
1187
+ - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
1188
+ - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
1189
+ - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
1190
+ - React-Fabric (from `../node_modules/react-native/ReactCommon`)
1191
+ - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
1192
+ - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
1193
+ - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
1194
+ - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
1195
+ - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
1196
+ - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
1197
+ - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
1198
+ - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
1199
+ - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
1200
+ - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
1201
+ - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
1202
+ - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
1203
+ - React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
1204
+ - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
1205
+ - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
1206
+ - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
1207
+ - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
1208
+ - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
1209
+ - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
1210
+ - React-RCTFabric (from `../node_modules/react-native/React`)
1211
+ - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
1212
+ - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
1213
+ - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
1214
+ - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
1215
+ - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
1216
+ - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
1217
+ - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
1218
+ - React-rncore (from `../node_modules/react-native/ReactCommon`)
1219
+ - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
1220
+ - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
1221
+ - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
1222
+ - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)
1223
+ - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
1224
+ - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
1225
+ - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
1226
+ - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
1227
+
1228
+ SPEC REPOS:
1229
+ trunk:
1230
+ - SocketRocket
1231
+
1232
+ EXTERNAL SOURCES:
1233
+ boost:
1234
+ :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
1235
+ DoubleConversion:
1236
+ :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
1237
+ FBLazyVector:
1238
+ :path: "../node_modules/react-native/Libraries/FBLazyVector"
1239
+ fmt:
1240
+ :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"
1241
+ glog:
1242
+ :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
1243
+ hermes-engine:
1244
+ :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
1245
+ :tag: hermes-2024-04-25-RNv0.74.1-b54a3a01c531f4f5f1904cb0770033e8b7153dff
1246
+ RCT-Folly:
1247
+ :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
1248
+ RCTDeprecation:
1249
+ :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
1250
+ RCTRequired:
1251
+ :path: "../node_modules/react-native/Libraries/Required"
1252
+ RCTTypeSafety:
1253
+ :path: "../node_modules/react-native/Libraries/TypeSafety"
1254
+ React:
1255
+ :path: "../node_modules/react-native/"
1256
+ React-callinvoker:
1257
+ :path: "../node_modules/react-native/ReactCommon/callinvoker"
1258
+ React-Codegen:
1259
+ :path: build/generated/ios
1260
+ React-Core:
1261
+ :path: "../node_modules/react-native/"
1262
+ React-CoreModules:
1263
+ :path: "../node_modules/react-native/React/CoreModules"
1264
+ React-cxxreact:
1265
+ :path: "../node_modules/react-native/ReactCommon/cxxreact"
1266
+ React-debug:
1267
+ :path: "../node_modules/react-native/ReactCommon/react/debug"
1268
+ React-Fabric:
1269
+ :path: "../node_modules/react-native/ReactCommon"
1270
+ React-FabricImage:
1271
+ :path: "../node_modules/react-native/ReactCommon"
1272
+ React-featureflags:
1273
+ :path: "../node_modules/react-native/ReactCommon/react/featureflags"
1274
+ React-graphics:
1275
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
1276
+ React-hermes:
1277
+ :path: "../node_modules/react-native/ReactCommon/hermes"
1278
+ React-ImageManager:
1279
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
1280
+ React-jserrorhandler:
1281
+ :path: "../node_modules/react-native/ReactCommon/jserrorhandler"
1282
+ React-jsi:
1283
+ :path: "../node_modules/react-native/ReactCommon/jsi"
1284
+ React-jsiexecutor:
1285
+ :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
1286
+ React-jsinspector:
1287
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
1288
+ React-jsitracing:
1289
+ :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
1290
+ React-logger:
1291
+ :path: "../node_modules/react-native/ReactCommon/logger"
1292
+ React-Mapbuffer:
1293
+ :path: "../node_modules/react-native/ReactCommon"
1294
+ React-nativeconfig:
1295
+ :path: "../node_modules/react-native/ReactCommon"
1296
+ React-NativeModulesApple:
1297
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
1298
+ React-perflogger:
1299
+ :path: "../node_modules/react-native/ReactCommon/reactperflogger"
1300
+ React-RCTActionSheet:
1301
+ :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
1302
+ React-RCTAnimation:
1303
+ :path: "../node_modules/react-native/Libraries/NativeAnimation"
1304
+ React-RCTAppDelegate:
1305
+ :path: "../node_modules/react-native/Libraries/AppDelegate"
1306
+ React-RCTBlob:
1307
+ :path: "../node_modules/react-native/Libraries/Blob"
1308
+ React-RCTFabric:
1309
+ :path: "../node_modules/react-native/React"
1310
+ React-RCTImage:
1311
+ :path: "../node_modules/react-native/Libraries/Image"
1312
+ React-RCTLinking:
1313
+ :path: "../node_modules/react-native/Libraries/LinkingIOS"
1314
+ React-RCTNetwork:
1315
+ :path: "../node_modules/react-native/Libraries/Network"
1316
+ React-RCTSettings:
1317
+ :path: "../node_modules/react-native/Libraries/Settings"
1318
+ React-RCTText:
1319
+ :path: "../node_modules/react-native/Libraries/Text"
1320
+ React-RCTVibration:
1321
+ :path: "../node_modules/react-native/Libraries/Vibration"
1322
+ React-rendererdebug:
1323
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
1324
+ React-rncore:
1325
+ :path: "../node_modules/react-native/ReactCommon"
1326
+ React-RuntimeApple:
1327
+ :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
1328
+ React-RuntimeCore:
1329
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
1330
+ React-runtimeexecutor:
1331
+ :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
1332
+ React-RuntimeHermes:
1333
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
1334
+ React-runtimescheduler:
1335
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
1336
+ React-utils:
1337
+ :path: "../node_modules/react-native/ReactCommon/react/utils"
1338
+ ReactCommon:
1339
+ :path: "../node_modules/react-native/ReactCommon"
1340
+ Yoga:
1341
+ :path: "../node_modules/react-native/ReactCommon/yoga"
1342
+
1343
+ SPEC CHECKSUMS:
1344
+ boost: d3f49c53809116a5d38da093a8aa78bf551aed09
1345
+ DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5
1346
+ FBLazyVector: 898d14d17bf19e2435cafd9ea2a1033efe445709
1347
+ fmt: 4c2741a687cc09f0634a2e2c72a838b99f1ff120
1348
+ glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2
1349
+ hermes-engine: 16b8530de1b383cdada1476cf52d1b52f0692cbc
1350
+ RCT-Folly: 02617c592a293bd6d418e0a88ff4ee1f88329b47
1351
+ RCTDeprecation: efb313d8126259e9294dc4ee0002f44a6f676aba
1352
+ RCTRequired: f49ea29cece52aee20db633ae7edc4b271435562
1353
+ RCTTypeSafety: a11979ff0570d230d74de9f604f7d19692157bc4
1354
+ React: 88794fad7f460349dbc9df8a274d95f37a009f5d
1355
+ React-callinvoker: 7a7023e34a55c89ea2aa62486bb3c1164ab0be0c
1356
+ React-Codegen: af31a9323ce23988c255c9afd0ae9415ff894939
1357
+ React-Core: 60075333bc22b5a793d3f62e207368b79bff2e64
1358
+ React-CoreModules: 147c314d6b3b1e069c9ad64cbbbeba604854ff86
1359
+ React-cxxreact: 5de27fd8bff4764acb2eac3ee66001e0e2b910e7
1360
+ React-debug: 6397f0baf751b40511d01e984b01467d7e6d8127
1361
+ React-Fabric: 6fa475e16e0a37b38d462cec32b70fd5cf886305
1362
+ React-FabricImage: 7e09b3704e3fa084b4d44b5b5ef6e2e3d3334ec0
1363
+ React-featureflags: 2eb79dd9df4095bff519379f2a4c915069e330bb
1364
+ React-graphics: 82a482a3aa5d9659b74cdf2c8b57faf67eaa10fb
1365
+ React-hermes: d93936b02de2fd7e67c11e92c16d4278a14d0134
1366
+ React-ImageManager: ebb3c4812e2c5acba5a89728c2d77729471329ad
1367
+ React-jserrorhandler: a08e0adcf1612900dde82b8bf8e93e7d2ad953b3
1368
+ React-jsi: f46d09ee5079a4f3b637d30d0e59b8ea6470632c
1369
+ React-jsiexecutor: e73579560957aa3ca9dc02ab90e163454279d48c
1370
+ React-jsinspector: e8ba20dde269c7c1d45784b858fa1cf4383f0bbb
1371
+ React-jsitracing: 233d1a798fe0ff33b8e630b8f00f62c4a8115fbc
1372
+ React-logger: 7e7403a2b14c97f847d90763af76b84b152b6fce
1373
+ React-Mapbuffer: 11029dcd47c5c9e057a4092ab9c2a8d10a496a33
1374
+ React-nativeconfig: b0073a590774e8b35192fead188a36d1dca23dec
1375
+ React-NativeModulesApple: df46ff3e3de5b842b30b4ca8a6caae6d7c8ab09f
1376
+ React-perflogger: 3d31e0d1e8ad891e43a09ac70b7b17a79773003a
1377
+ React-RCTActionSheet: c4a3a134f3434c9d7b0c1054f1a8cfed30c7a093
1378
+ React-RCTAnimation: 0e5d15320eeece667fcceb6c785acf9a184e9da1
1379
+ React-RCTAppDelegate: c4f6c0700b8950a8b18c2e004996eec1807d430a
1380
+ React-RCTBlob: c46aaaee693d371a1c7cae2a8c8ee2aa7fbc1adb
1381
+ React-RCTFabric: 0dbf28ce96c7f2843483e32a725a5b5793584ff3
1382
+ React-RCTImage: a04dba5fcc823244f5822192c130ecf09623a57f
1383
+ React-RCTLinking: 533bf13c745fcb2a0c14e0e49fd149586a7f0d14
1384
+ React-RCTNetwork: a29e371e0d363d7b4c10ab907bc4d6ae610541e9
1385
+ React-RCTSettings: 127813224780861d0d30ecda17a40d1dfebe7d73
1386
+ React-RCTText: 8a823f245ecf82edb7569646e3c4d8041deb800a
1387
+ React-RCTVibration: 46b5fae74e63f240f22f39de16ad6433da3b65d9
1388
+ React-rendererdebug: 4653f8da6ab1d7b01af796bdf8ca47a927539e39
1389
+ React-rncore: 4f1e645acb5107bd4b4cf29eff17b04a7cd422f3
1390
+ React-RuntimeApple: 013b606e743efb5ee14ef03c32379b78bfe74354
1391
+ React-RuntimeCore: 7205be45a25713b5418bbf2db91ddfcca0761d8b
1392
+ React-runtimeexecutor: a278d4249921853d4a3f24e4d6e0ff30688f3c16
1393
+ React-RuntimeHermes: 44c628568ce8feedc3acfbd48fc07b7f0f6d2731
1394
+ React-runtimescheduler: e2152ed146b6a35c07386fc2ac4827b27e6aad12
1395
+ React-utils: 3285151c9d1e3a28a9586571fc81d521678c196d
1396
+ ReactCommon: f42444e384d82ab89184aed5d6f3142748b54768
1397
+ SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d
1398
+ Yoga: b9a182ab00cf25926e7f79657d08c5d23c2d03b0
1399
+
1400
+ PODFILE CHECKSUM: 980b1578341d1d3a3ebea3183c35bb27b4eb9c16
1401
+
1402
+ COCOAPODS: 1.14.3