@brightlayer-ui/react-native-template-routing-typescript 2.2.0-alpha.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 (89) hide show
  1. package/README.md +15 -8
  2. package/package.json +1 -1
  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 +1 -2
  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/routingtemplate/MainActivity.kt +28 -0
  18. package/template/android/app/src/main/java/com/routingtemplate/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 +1 -2
  48. package/template/eslint.config.mjs +10 -0
  49. package/template/index.js +10 -0
  50. package/template/ios/.xcode.env +11 -0
  51. package/template/ios/Podfile +40 -0
  52. package/template/ios/Podfile.lock +1496 -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 +61 -0
  71. package/template/src/navigation/index.tsx +14 -14
  72. package/template/src/navigation/navigation-drawer.tsx +1 -2
  73. package/template/src/screens/home.tsx +77 -58
  74. package/template/src/screens/pageOne.tsx +3 -5
  75. package/template/src/screens/pageTwo.tsx +3 -5
  76. package/template/tsconfig.json +60 -0
  77. package/template/yarn.lock +7255 -0
  78. package/template.config.js +4 -0
  79. package/CHANGELOG.md +0 -62
  80. package/dependencies.json +0 -23
  81. package/images/Logo.svg +0 -11
  82. package/template/__mocks__/svgMock.js +0 -8
  83. package/template/jestSetupFile.js +0 -15
  84. package/template/react-native.config.js +0 -3
  85. /package/{fonts → template/android/app/src/main/assets/fonts}/OpenSans-Bold.ttf +0 -0
  86. /package/{fonts → template/android/app/src/main/assets/fonts}/OpenSans-ExtraBold.ttf +0 -0
  87. /package/{fonts → template/android/app/src/main/assets/fonts}/OpenSans-Light.ttf +0 -0
  88. /package/{fonts → template/android/app/src/main/assets/fonts}/OpenSans-Regular.ttf +0 -0
  89. /package/{fonts → template/android/app/src/main/assets/fonts}/OpenSans-SemiBold.ttf +0 -0
@@ -0,0 +1,1496 @@
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-native-safe-area-context (4.10.1):
939
+ - React-Core
940
+ - React-nativeconfig (0.74.1)
941
+ - React-NativeModulesApple (0.74.1):
942
+ - glog
943
+ - hermes-engine
944
+ - React-callinvoker
945
+ - React-Core
946
+ - React-cxxreact
947
+ - React-jsi
948
+ - React-jsinspector
949
+ - React-runtimeexecutor
950
+ - ReactCommon/turbomodule/bridging
951
+ - ReactCommon/turbomodule/core
952
+ - React-perflogger (0.74.1)
953
+ - React-RCTActionSheet (0.74.1):
954
+ - React-Core/RCTActionSheetHeaders (= 0.74.1)
955
+ - React-RCTAnimation (0.74.1):
956
+ - RCT-Folly (= 2024.01.01.00)
957
+ - RCTTypeSafety
958
+ - React-Codegen
959
+ - React-Core/RCTAnimationHeaders
960
+ - React-jsi
961
+ - React-NativeModulesApple
962
+ - ReactCommon
963
+ - React-RCTAppDelegate (0.74.1):
964
+ - RCT-Folly (= 2024.01.01.00)
965
+ - RCTRequired
966
+ - RCTTypeSafety
967
+ - React-Codegen
968
+ - React-Core
969
+ - React-CoreModules
970
+ - React-debug
971
+ - React-Fabric
972
+ - React-featureflags
973
+ - React-graphics
974
+ - React-hermes
975
+ - React-nativeconfig
976
+ - React-NativeModulesApple
977
+ - React-RCTFabric
978
+ - React-RCTImage
979
+ - React-RCTNetwork
980
+ - React-rendererdebug
981
+ - React-RuntimeApple
982
+ - React-RuntimeCore
983
+ - React-RuntimeHermes
984
+ - React-runtimescheduler
985
+ - React-utils
986
+ - ReactCommon
987
+ - React-RCTBlob (0.74.1):
988
+ - DoubleConversion
989
+ - fmt (= 9.1.0)
990
+ - hermes-engine
991
+ - RCT-Folly (= 2024.01.01.00)
992
+ - React-Codegen
993
+ - React-Core/RCTBlobHeaders
994
+ - React-Core/RCTWebSocket
995
+ - React-jsi
996
+ - React-jsinspector
997
+ - React-NativeModulesApple
998
+ - React-RCTNetwork
999
+ - ReactCommon
1000
+ - React-RCTFabric (0.74.1):
1001
+ - glog
1002
+ - hermes-engine
1003
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1004
+ - React-Core
1005
+ - React-debug
1006
+ - React-Fabric
1007
+ - React-FabricImage
1008
+ - React-featureflags
1009
+ - React-graphics
1010
+ - React-ImageManager
1011
+ - React-jsi
1012
+ - React-jsinspector
1013
+ - React-nativeconfig
1014
+ - React-RCTImage
1015
+ - React-RCTText
1016
+ - React-rendererdebug
1017
+ - React-runtimescheduler
1018
+ - React-utils
1019
+ - Yoga
1020
+ - React-RCTImage (0.74.1):
1021
+ - RCT-Folly (= 2024.01.01.00)
1022
+ - RCTTypeSafety
1023
+ - React-Codegen
1024
+ - React-Core/RCTImageHeaders
1025
+ - React-jsi
1026
+ - React-NativeModulesApple
1027
+ - React-RCTNetwork
1028
+ - ReactCommon
1029
+ - React-RCTLinking (0.74.1):
1030
+ - React-Codegen
1031
+ - React-Core/RCTLinkingHeaders (= 0.74.1)
1032
+ - React-jsi (= 0.74.1)
1033
+ - React-NativeModulesApple
1034
+ - ReactCommon
1035
+ - ReactCommon/turbomodule/core (= 0.74.1)
1036
+ - React-RCTNetwork (0.74.1):
1037
+ - RCT-Folly (= 2024.01.01.00)
1038
+ - RCTTypeSafety
1039
+ - React-Codegen
1040
+ - React-Core/RCTNetworkHeaders
1041
+ - React-jsi
1042
+ - React-NativeModulesApple
1043
+ - ReactCommon
1044
+ - React-RCTSettings (0.74.1):
1045
+ - RCT-Folly (= 2024.01.01.00)
1046
+ - RCTTypeSafety
1047
+ - React-Codegen
1048
+ - React-Core/RCTSettingsHeaders
1049
+ - React-jsi
1050
+ - React-NativeModulesApple
1051
+ - ReactCommon
1052
+ - React-RCTText (0.74.1):
1053
+ - React-Core/RCTTextHeaders (= 0.74.1)
1054
+ - Yoga
1055
+ - React-RCTVibration (0.74.1):
1056
+ - RCT-Folly (= 2024.01.01.00)
1057
+ - React-Codegen
1058
+ - React-Core/RCTVibrationHeaders
1059
+ - React-jsi
1060
+ - React-NativeModulesApple
1061
+ - ReactCommon
1062
+ - React-rendererdebug (0.74.1):
1063
+ - DoubleConversion
1064
+ - fmt (= 9.1.0)
1065
+ - RCT-Folly (= 2024.01.01.00)
1066
+ - React-debug
1067
+ - React-rncore (0.74.1)
1068
+ - React-RuntimeApple (0.74.1):
1069
+ - hermes-engine
1070
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1071
+ - React-callinvoker
1072
+ - React-Core/Default
1073
+ - React-CoreModules
1074
+ - React-cxxreact
1075
+ - React-jserrorhandler
1076
+ - React-jsi
1077
+ - React-jsiexecutor
1078
+ - React-jsinspector
1079
+ - React-Mapbuffer
1080
+ - React-NativeModulesApple
1081
+ - React-RCTFabric
1082
+ - React-RuntimeCore
1083
+ - React-runtimeexecutor
1084
+ - React-RuntimeHermes
1085
+ - React-utils
1086
+ - React-RuntimeCore (0.74.1):
1087
+ - glog
1088
+ - hermes-engine
1089
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1090
+ - React-cxxreact
1091
+ - React-featureflags
1092
+ - React-jserrorhandler
1093
+ - React-jsi
1094
+ - React-jsiexecutor
1095
+ - React-jsinspector
1096
+ - React-runtimeexecutor
1097
+ - React-runtimescheduler
1098
+ - React-utils
1099
+ - React-runtimeexecutor (0.74.1):
1100
+ - React-jsi (= 0.74.1)
1101
+ - React-RuntimeHermes (0.74.1):
1102
+ - hermes-engine
1103
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1104
+ - React-featureflags
1105
+ - React-hermes
1106
+ - React-jsi
1107
+ - React-jsinspector
1108
+ - React-jsitracing
1109
+ - React-nativeconfig
1110
+ - React-RuntimeCore
1111
+ - React-utils
1112
+ - React-runtimescheduler (0.74.1):
1113
+ - glog
1114
+ - hermes-engine
1115
+ - RCT-Folly (= 2024.01.01.00)
1116
+ - React-callinvoker
1117
+ - React-cxxreact
1118
+ - React-debug
1119
+ - React-featureflags
1120
+ - React-jsi
1121
+ - React-rendererdebug
1122
+ - React-runtimeexecutor
1123
+ - React-utils
1124
+ - React-utils (0.74.1):
1125
+ - glog
1126
+ - hermes-engine
1127
+ - RCT-Folly (= 2024.01.01.00)
1128
+ - React-debug
1129
+ - React-jsi (= 0.74.1)
1130
+ - ReactCommon (0.74.1):
1131
+ - ReactCommon/turbomodule (= 0.74.1)
1132
+ - ReactCommon/turbomodule (0.74.1):
1133
+ - DoubleConversion
1134
+ - fmt (= 9.1.0)
1135
+ - glog
1136
+ - hermes-engine
1137
+ - RCT-Folly (= 2024.01.01.00)
1138
+ - React-callinvoker (= 0.74.1)
1139
+ - React-cxxreact (= 0.74.1)
1140
+ - React-jsi (= 0.74.1)
1141
+ - React-logger (= 0.74.1)
1142
+ - React-perflogger (= 0.74.1)
1143
+ - ReactCommon/turbomodule/bridging (= 0.74.1)
1144
+ - ReactCommon/turbomodule/core (= 0.74.1)
1145
+ - ReactCommon/turbomodule/bridging (0.74.1):
1146
+ - DoubleConversion
1147
+ - fmt (= 9.1.0)
1148
+ - glog
1149
+ - hermes-engine
1150
+ - RCT-Folly (= 2024.01.01.00)
1151
+ - React-callinvoker (= 0.74.1)
1152
+ - React-cxxreact (= 0.74.1)
1153
+ - React-jsi (= 0.74.1)
1154
+ - React-logger (= 0.74.1)
1155
+ - React-perflogger (= 0.74.1)
1156
+ - ReactCommon/turbomodule/core (0.74.1):
1157
+ - DoubleConversion
1158
+ - fmt (= 9.1.0)
1159
+ - glog
1160
+ - hermes-engine
1161
+ - RCT-Folly (= 2024.01.01.00)
1162
+ - React-callinvoker (= 0.74.1)
1163
+ - React-cxxreact (= 0.74.1)
1164
+ - React-debug (= 0.74.1)
1165
+ - React-jsi (= 0.74.1)
1166
+ - React-logger (= 0.74.1)
1167
+ - React-perflogger (= 0.74.1)
1168
+ - React-utils (= 0.74.1)
1169
+ - RNBLUIVectorIcons (2.3.0):
1170
+ - React
1171
+ - RNGestureHandler (2.16.2):
1172
+ - DoubleConversion
1173
+ - glog
1174
+ - hermes-engine
1175
+ - RCT-Folly (= 2024.01.01.00)
1176
+ - RCTRequired
1177
+ - RCTTypeSafety
1178
+ - React-Codegen
1179
+ - React-Core
1180
+ - React-debug
1181
+ - React-Fabric
1182
+ - React-featureflags
1183
+ - React-graphics
1184
+ - React-ImageManager
1185
+ - React-NativeModulesApple
1186
+ - React-RCTFabric
1187
+ - React-rendererdebug
1188
+ - React-utils
1189
+ - ReactCommon/turbomodule/bridging
1190
+ - ReactCommon/turbomodule/core
1191
+ - Yoga
1192
+ - RNReanimated (3.11.0):
1193
+ - DoubleConversion
1194
+ - glog
1195
+ - hermes-engine
1196
+ - RCT-Folly (= 2024.01.01.00)
1197
+ - RCTRequired
1198
+ - RCTTypeSafety
1199
+ - React-Codegen
1200
+ - React-Core
1201
+ - React-debug
1202
+ - React-Fabric
1203
+ - React-featureflags
1204
+ - React-graphics
1205
+ - React-ImageManager
1206
+ - React-NativeModulesApple
1207
+ - React-RCTFabric
1208
+ - React-rendererdebug
1209
+ - React-utils
1210
+ - ReactCommon/turbomodule/bridging
1211
+ - ReactCommon/turbomodule/core
1212
+ - Yoga
1213
+ - RNScreens (3.31.1):
1214
+ - DoubleConversion
1215
+ - glog
1216
+ - hermes-engine
1217
+ - RCT-Folly (= 2024.01.01.00)
1218
+ - RCTRequired
1219
+ - RCTTypeSafety
1220
+ - React-Codegen
1221
+ - React-Core
1222
+ - React-debug
1223
+ - React-Fabric
1224
+ - React-featureflags
1225
+ - React-graphics
1226
+ - React-ImageManager
1227
+ - React-NativeModulesApple
1228
+ - React-RCTFabric
1229
+ - React-RCTImage
1230
+ - React-rendererdebug
1231
+ - React-utils
1232
+ - ReactCommon/turbomodule/bridging
1233
+ - ReactCommon/turbomodule/core
1234
+ - Yoga
1235
+ - RNVectorIcons (9.2.0):
1236
+ - React-Core
1237
+ - SocketRocket (0.7.0)
1238
+ - Yoga (0.0.0)
1239
+
1240
+ DEPENDENCIES:
1241
+ - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
1242
+ - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
1243
+ - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
1244
+ - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
1245
+ - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
1246
+ - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
1247
+ - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1248
+ - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1249
+ - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
1250
+ - RCTRequired (from `../node_modules/react-native/Libraries/Required`)
1251
+ - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
1252
+ - React (from `../node_modules/react-native/`)
1253
+ - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
1254
+ - React-Codegen (from `build/generated/ios`)
1255
+ - React-Core (from `../node_modules/react-native/`)
1256
+ - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
1257
+ - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
1258
+ - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
1259
+ - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
1260
+ - React-Fabric (from `../node_modules/react-native/ReactCommon`)
1261
+ - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
1262
+ - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
1263
+ - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
1264
+ - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
1265
+ - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
1266
+ - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
1267
+ - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
1268
+ - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
1269
+ - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
1270
+ - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
1271
+ - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
1272
+ - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
1273
+ - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
1274
+ - React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
1275
+ - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
1276
+ - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
1277
+ - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
1278
+ - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
1279
+ - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
1280
+ - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
1281
+ - React-RCTFabric (from `../node_modules/react-native/React`)
1282
+ - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
1283
+ - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
1284
+ - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
1285
+ - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
1286
+ - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
1287
+ - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
1288
+ - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
1289
+ - React-rncore (from `../node_modules/react-native/ReactCommon`)
1290
+ - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
1291
+ - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
1292
+ - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
1293
+ - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)
1294
+ - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
1295
+ - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
1296
+ - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
1297
+ - "RNBLUIVectorIcons (from `../node_modules/@brightlayer-ui/react-native-vector-icons`)"
1298
+ - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
1299
+ - RNReanimated (from `../node_modules/react-native-reanimated`)
1300
+ - RNScreens (from `../node_modules/react-native-screens`)
1301
+ - RNVectorIcons (from `../node_modules/react-native-vector-icons`)
1302
+ - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
1303
+
1304
+ SPEC REPOS:
1305
+ trunk:
1306
+ - SocketRocket
1307
+
1308
+ EXTERNAL SOURCES:
1309
+ boost:
1310
+ :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
1311
+ DoubleConversion:
1312
+ :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
1313
+ FBLazyVector:
1314
+ :path: "../node_modules/react-native/Libraries/FBLazyVector"
1315
+ fmt:
1316
+ :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"
1317
+ glog:
1318
+ :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
1319
+ hermes-engine:
1320
+ :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
1321
+ :tag: hermes-2024-04-25-RNv0.74.1-b54a3a01c531f4f5f1904cb0770033e8b7153dff
1322
+ RCT-Folly:
1323
+ :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
1324
+ RCTDeprecation:
1325
+ :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
1326
+ RCTRequired:
1327
+ :path: "../node_modules/react-native/Libraries/Required"
1328
+ RCTTypeSafety:
1329
+ :path: "../node_modules/react-native/Libraries/TypeSafety"
1330
+ React:
1331
+ :path: "../node_modules/react-native/"
1332
+ React-callinvoker:
1333
+ :path: "../node_modules/react-native/ReactCommon/callinvoker"
1334
+ React-Codegen:
1335
+ :path: build/generated/ios
1336
+ React-Core:
1337
+ :path: "../node_modules/react-native/"
1338
+ React-CoreModules:
1339
+ :path: "../node_modules/react-native/React/CoreModules"
1340
+ React-cxxreact:
1341
+ :path: "../node_modules/react-native/ReactCommon/cxxreact"
1342
+ React-debug:
1343
+ :path: "../node_modules/react-native/ReactCommon/react/debug"
1344
+ React-Fabric:
1345
+ :path: "../node_modules/react-native/ReactCommon"
1346
+ React-FabricImage:
1347
+ :path: "../node_modules/react-native/ReactCommon"
1348
+ React-featureflags:
1349
+ :path: "../node_modules/react-native/ReactCommon/react/featureflags"
1350
+ React-graphics:
1351
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
1352
+ React-hermes:
1353
+ :path: "../node_modules/react-native/ReactCommon/hermes"
1354
+ React-ImageManager:
1355
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
1356
+ React-jserrorhandler:
1357
+ :path: "../node_modules/react-native/ReactCommon/jserrorhandler"
1358
+ React-jsi:
1359
+ :path: "../node_modules/react-native/ReactCommon/jsi"
1360
+ React-jsiexecutor:
1361
+ :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
1362
+ React-jsinspector:
1363
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
1364
+ React-jsitracing:
1365
+ :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
1366
+ React-logger:
1367
+ :path: "../node_modules/react-native/ReactCommon/logger"
1368
+ React-Mapbuffer:
1369
+ :path: "../node_modules/react-native/ReactCommon"
1370
+ react-native-safe-area-context:
1371
+ :path: "../node_modules/react-native-safe-area-context"
1372
+ React-nativeconfig:
1373
+ :path: "../node_modules/react-native/ReactCommon"
1374
+ React-NativeModulesApple:
1375
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
1376
+ React-perflogger:
1377
+ :path: "../node_modules/react-native/ReactCommon/reactperflogger"
1378
+ React-RCTActionSheet:
1379
+ :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
1380
+ React-RCTAnimation:
1381
+ :path: "../node_modules/react-native/Libraries/NativeAnimation"
1382
+ React-RCTAppDelegate:
1383
+ :path: "../node_modules/react-native/Libraries/AppDelegate"
1384
+ React-RCTBlob:
1385
+ :path: "../node_modules/react-native/Libraries/Blob"
1386
+ React-RCTFabric:
1387
+ :path: "../node_modules/react-native/React"
1388
+ React-RCTImage:
1389
+ :path: "../node_modules/react-native/Libraries/Image"
1390
+ React-RCTLinking:
1391
+ :path: "../node_modules/react-native/Libraries/LinkingIOS"
1392
+ React-RCTNetwork:
1393
+ :path: "../node_modules/react-native/Libraries/Network"
1394
+ React-RCTSettings:
1395
+ :path: "../node_modules/react-native/Libraries/Settings"
1396
+ React-RCTText:
1397
+ :path: "../node_modules/react-native/Libraries/Text"
1398
+ React-RCTVibration:
1399
+ :path: "../node_modules/react-native/Libraries/Vibration"
1400
+ React-rendererdebug:
1401
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
1402
+ React-rncore:
1403
+ :path: "../node_modules/react-native/ReactCommon"
1404
+ React-RuntimeApple:
1405
+ :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
1406
+ React-RuntimeCore:
1407
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
1408
+ React-runtimeexecutor:
1409
+ :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
1410
+ React-RuntimeHermes:
1411
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
1412
+ React-runtimescheduler:
1413
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
1414
+ React-utils:
1415
+ :path: "../node_modules/react-native/ReactCommon/react/utils"
1416
+ ReactCommon:
1417
+ :path: "../node_modules/react-native/ReactCommon"
1418
+ RNBLUIVectorIcons:
1419
+ :path: "../node_modules/@brightlayer-ui/react-native-vector-icons"
1420
+ RNGestureHandler:
1421
+ :path: "../node_modules/react-native-gesture-handler"
1422
+ RNReanimated:
1423
+ :path: "../node_modules/react-native-reanimated"
1424
+ RNScreens:
1425
+ :path: "../node_modules/react-native-screens"
1426
+ RNVectorIcons:
1427
+ :path: "../node_modules/react-native-vector-icons"
1428
+ Yoga:
1429
+ :path: "../node_modules/react-native/ReactCommon/yoga"
1430
+
1431
+ SPEC CHECKSUMS:
1432
+ boost: d3f49c53809116a5d38da093a8aa78bf551aed09
1433
+ DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5
1434
+ FBLazyVector: 898d14d17bf19e2435cafd9ea2a1033efe445709
1435
+ fmt: 4c2741a687cc09f0634a2e2c72a838b99f1ff120
1436
+ glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2
1437
+ hermes-engine: 16b8530de1b383cdada1476cf52d1b52f0692cbc
1438
+ RCT-Folly: 02617c592a293bd6d418e0a88ff4ee1f88329b47
1439
+ RCTDeprecation: efb313d8126259e9294dc4ee0002f44a6f676aba
1440
+ RCTRequired: f49ea29cece52aee20db633ae7edc4b271435562
1441
+ RCTTypeSafety: a11979ff0570d230d74de9f604f7d19692157bc4
1442
+ React: 88794fad7f460349dbc9df8a274d95f37a009f5d
1443
+ React-callinvoker: 7a7023e34a55c89ea2aa62486bb3c1164ab0be0c
1444
+ React-Codegen: af31a9323ce23988c255c9afd0ae9415ff894939
1445
+ React-Core: 60075333bc22b5a793d3f62e207368b79bff2e64
1446
+ React-CoreModules: 147c314d6b3b1e069c9ad64cbbbeba604854ff86
1447
+ React-cxxreact: 5de27fd8bff4764acb2eac3ee66001e0e2b910e7
1448
+ React-debug: 6397f0baf751b40511d01e984b01467d7e6d8127
1449
+ React-Fabric: 6fa475e16e0a37b38d462cec32b70fd5cf886305
1450
+ React-FabricImage: 7e09b3704e3fa084b4d44b5b5ef6e2e3d3334ec0
1451
+ React-featureflags: 2eb79dd9df4095bff519379f2a4c915069e330bb
1452
+ React-graphics: 82a482a3aa5d9659b74cdf2c8b57faf67eaa10fb
1453
+ React-hermes: d93936b02de2fd7e67c11e92c16d4278a14d0134
1454
+ React-ImageManager: ebb3c4812e2c5acba5a89728c2d77729471329ad
1455
+ React-jserrorhandler: a08e0adcf1612900dde82b8bf8e93e7d2ad953b3
1456
+ React-jsi: f46d09ee5079a4f3b637d30d0e59b8ea6470632c
1457
+ React-jsiexecutor: e73579560957aa3ca9dc02ab90e163454279d48c
1458
+ React-jsinspector: e8ba20dde269c7c1d45784b858fa1cf4383f0bbb
1459
+ React-jsitracing: 233d1a798fe0ff33b8e630b8f00f62c4a8115fbc
1460
+ React-logger: 7e7403a2b14c97f847d90763af76b84b152b6fce
1461
+ React-Mapbuffer: 11029dcd47c5c9e057a4092ab9c2a8d10a496a33
1462
+ react-native-safe-area-context: dcab599c527c2d7de2d76507a523d20a0b83823d
1463
+ React-nativeconfig: b0073a590774e8b35192fead188a36d1dca23dec
1464
+ React-NativeModulesApple: df46ff3e3de5b842b30b4ca8a6caae6d7c8ab09f
1465
+ React-perflogger: 3d31e0d1e8ad891e43a09ac70b7b17a79773003a
1466
+ React-RCTActionSheet: c4a3a134f3434c9d7b0c1054f1a8cfed30c7a093
1467
+ React-RCTAnimation: 0e5d15320eeece667fcceb6c785acf9a184e9da1
1468
+ React-RCTAppDelegate: c4f6c0700b8950a8b18c2e004996eec1807d430a
1469
+ React-RCTBlob: c46aaaee693d371a1c7cae2a8c8ee2aa7fbc1adb
1470
+ React-RCTFabric: 0dbf28ce96c7f2843483e32a725a5b5793584ff3
1471
+ React-RCTImage: a04dba5fcc823244f5822192c130ecf09623a57f
1472
+ React-RCTLinking: 533bf13c745fcb2a0c14e0e49fd149586a7f0d14
1473
+ React-RCTNetwork: a29e371e0d363d7b4c10ab907bc4d6ae610541e9
1474
+ React-RCTSettings: 127813224780861d0d30ecda17a40d1dfebe7d73
1475
+ React-RCTText: 8a823f245ecf82edb7569646e3c4d8041deb800a
1476
+ React-RCTVibration: 46b5fae74e63f240f22f39de16ad6433da3b65d9
1477
+ React-rendererdebug: 4653f8da6ab1d7b01af796bdf8ca47a927539e39
1478
+ React-rncore: 4f1e645acb5107bd4b4cf29eff17b04a7cd422f3
1479
+ React-RuntimeApple: 013b606e743efb5ee14ef03c32379b78bfe74354
1480
+ React-RuntimeCore: 7205be45a25713b5418bbf2db91ddfcca0761d8b
1481
+ React-runtimeexecutor: a278d4249921853d4a3f24e4d6e0ff30688f3c16
1482
+ React-RuntimeHermes: 44c628568ce8feedc3acfbd48fc07b7f0f6d2731
1483
+ React-runtimescheduler: e2152ed146b6a35c07386fc2ac4827b27e6aad12
1484
+ React-utils: 3285151c9d1e3a28a9586571fc81d521678c196d
1485
+ ReactCommon: f42444e384d82ab89184aed5d6f3142748b54768
1486
+ RNBLUIVectorIcons: 0dc15add83510147ebbadfbaa089ab1258cdf510
1487
+ RNGestureHandler: 2282cfbcf86c360d29f44ace393203afd5c6cff7
1488
+ RNReanimated: 7ad0f08a845cb60955ee5d461d2156d7b9707118
1489
+ RNScreens: b32a9ff15bea7fcdbe5dff6477bc503f792b1208
1490
+ RNVectorIcons: fcc2f6cb32f5735b586e66d14103a74ce6ad61f8
1491
+ SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d
1492
+ Yoga: b9a182ab00cf25926e7f79657d08c5d23c2d03b0
1493
+
1494
+ PODFILE CHECKSUM: 980b1578341d1d3a3ebea3183c35bb27b4eb9c16
1495
+
1496
+ COCOAPODS: 1.15.2