react-native-qrcode-svg 6.3.2 → 6.3.12

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 (91) hide show
  1. package/Example/.bundle/config +2 -0
  2. package/Example/.eslintrc.js +4 -0
  3. package/Example/.prettierrc.js +7 -0
  4. package/Example/.watchmanconfig +1 -0
  5. package/Example/Gemfile +9 -0
  6. package/Example/Gemfile.lock +103 -0
  7. package/Example/README.md +48 -0
  8. package/Example/__tests__/App.test.tsx +17 -0
  9. package/Example/android/app/build.gradle +119 -0
  10. package/Example/android/app/debug.keystore +0 -0
  11. package/Example/android/app/proguard-rules.pro +10 -0
  12. package/Example/android/app/src/debug/AndroidManifest.xml +9 -0
  13. package/Example/android/app/src/main/AndroidManifest.xml +25 -0
  14. package/Example/android/app/src/main/java/com/example/MainActivity.kt +22 -0
  15. package/Example/android/app/src/main/java/com/example/MainApplication.kt +45 -0
  16. package/Example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
  17. package/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  18. package/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  19. package/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  20. package/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  21. package/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  22. package/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  23. package/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  24. package/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  25. package/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  26. package/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  27. package/Example/android/app/src/main/res/values/strings.xml +3 -0
  28. package/Example/android/app/src/main/res/values/styles.xml +9 -0
  29. package/Example/android/build.gradle +21 -0
  30. package/Example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  31. package/Example/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  32. package/Example/android/gradle.properties +41 -0
  33. package/Example/android/gradlew +249 -0
  34. package/Example/android/gradlew.bat +92 -0
  35. package/Example/android/settings.gradle +4 -0
  36. package/Example/app.json +4 -0
  37. package/Example/babel.config.js +4 -0
  38. package/Example/dist/index.html +24 -0
  39. package/Example/global.d.ts +7 -0
  40. package/Example/index.js +14 -0
  41. package/Example/ios/.xcode.env +11 -0
  42. package/Example/ios/Example/AppDelegate.h +6 -0
  43. package/Example/ios/Example/AppDelegate.mm +31 -0
  44. package/Example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  45. package/Example/ios/Example/Images.xcassets/Contents.json +6 -0
  46. package/Example/ios/Example/Info.plist +52 -0
  47. package/Example/ios/Example/LaunchScreen.storyboard +47 -0
  48. package/Example/ios/Example/main.m +10 -0
  49. package/Example/ios/Example.xcodeproj/project.pbxproj +698 -0
  50. package/Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme +88 -0
  51. package/Example/ios/Example.xcworkspace/contents.xcworkspacedata +10 -0
  52. package/Example/ios/ExampleTests/ExampleTests.m +66 -0
  53. package/Example/ios/ExampleTests/Info.plist +24 -0
  54. package/Example/ios/Podfile +55 -0
  55. package/Example/ios/Podfile.lock +1378 -0
  56. package/Example/jest.config.js +3 -0
  57. package/Example/macos/.xcode.env +1 -0
  58. package/Example/macos/.xcode.env.local +2 -0
  59. package/Example/macos/Example-macOS/AppDelegate.h +6 -0
  60. package/Example/macos/Example-macOS/AppDelegate.mm +40 -0
  61. package/Example/macos/Example-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
  62. package/Example/macos/Example-macOS/Assets.xcassets/Contents.json +6 -0
  63. package/Example/macos/Example-macOS/Base.lproj/Main.storyboard +684 -0
  64. package/Example/macos/Example-macOS/Example.entitlements +12 -0
  65. package/Example/macos/Example-macOS/Info.plist +47 -0
  66. package/Example/macos/Example-macOS/main.m +5 -0
  67. package/Example/macos/Example.xcodeproj/project.pbxproj +567 -0
  68. package/Example/macos/Example.xcodeproj/xcshareddata/xcschemes/Example-macOS.xcscheme +78 -0
  69. package/Example/macos/Example.xcworkspace/contents.xcworkspacedata +10 -0
  70. package/Example/macos/Podfile +26 -0
  71. package/Example/macos/Podfile.lock +1233 -0
  72. package/Example/metro.config.js +47 -0
  73. package/Example/package.json +53 -0
  74. package/Example/src/App.tsx +130 -0
  75. package/Example/src/assets/google.png +0 -0
  76. package/Example/src/assets/ruby.svg +12 -0
  77. package/Example/src/components/Description.tsx +16 -0
  78. package/Example/src/styles.ts +21 -0
  79. package/Example/tsconfig.json +9 -0
  80. package/Example/webpack.config.js +60 -0
  81. package/Example/yarn.lock +8957 -0
  82. package/README.md +0 -6
  83. package/index.d.ts +10 -2
  84. package/package.json +11 -2
  85. package/src/LogoSVG/index.js +22 -0
  86. package/src/LogoSVG/index.native.js +24 -0
  87. package/src/index.js +158 -125
  88. package/src/utils.js +7 -0
  89. package/.github/workflows/npmpublish.yml +0 -31
  90. package/.huskyrc +0 -5
  91. package/.lintstagedrc +0 -3
@@ -0,0 +1,1233 @@
1
+ PODS:
2
+ - boost (1.83.0)
3
+ - DoubleConversion (1.1.6)
4
+ - FBLazyVector (0.73.24)
5
+ - FBReactNativeSpec (0.73.24):
6
+ - RCT-Folly (= 2022.05.16.00)
7
+ - RCTRequired (= 0.73.24)
8
+ - RCTTypeSafety (= 0.73.24)
9
+ - React-Core (= 0.73.24)
10
+ - React-jsi (= 0.73.24)
11
+ - ReactCommon/turbomodule/core (= 0.73.24)
12
+ - fmt (9.1.0)
13
+ - glog (0.3.5)
14
+ - RCT-Folly (2022.05.16.00):
15
+ - boost
16
+ - DoubleConversion
17
+ - fmt (= 9.1.0)
18
+ - glog
19
+ - RCT-Folly/Default (= 2022.05.16.00)
20
+ - RCT-Folly/Default (2022.05.16.00):
21
+ - boost
22
+ - DoubleConversion
23
+ - fmt (= 9.1.0)
24
+ - glog
25
+ - RCT-Folly/Fabric (2022.05.16.00):
26
+ - boost
27
+ - DoubleConversion
28
+ - fmt (= 9.1.0)
29
+ - glog
30
+ - RCTRequired (0.73.24)
31
+ - RCTTypeSafety (0.73.24):
32
+ - FBLazyVector (= 0.73.24)
33
+ - RCTRequired (= 0.73.24)
34
+ - React-Core (= 0.73.24)
35
+ - React (0.73.24):
36
+ - React-Core (= 0.73.24)
37
+ - React-Core/DevSupport (= 0.73.24)
38
+ - React-Core/RCTWebSocket (= 0.73.24)
39
+ - React-RCTActionSheet (= 0.73.24)
40
+ - React-RCTAnimation (= 0.73.24)
41
+ - React-RCTBlob (= 0.73.24)
42
+ - React-RCTImage (= 0.73.24)
43
+ - React-RCTLinking (= 0.73.24)
44
+ - React-RCTNetwork (= 0.73.24)
45
+ - React-RCTSettings (= 0.73.24)
46
+ - React-RCTText (= 0.73.24)
47
+ - React-RCTVibration (= 0.73.24)
48
+ - React-callinvoker (0.73.24)
49
+ - React-Codegen (0.73.24):
50
+ - DoubleConversion
51
+ - FBReactNativeSpec
52
+ - glog
53
+ - RCT-Folly
54
+ - RCTRequired
55
+ - RCTTypeSafety
56
+ - React-Core
57
+ - React-jsc
58
+ - React-jsi
59
+ - React-jsiexecutor
60
+ - React-NativeModulesApple
61
+ - React-rncore
62
+ - ReactCommon/turbomodule/bridging
63
+ - ReactCommon/turbomodule/core
64
+ - React-Core (0.73.24):
65
+ - glog
66
+ - RCT-Folly (= 2022.05.16.00)
67
+ - React-Core/Default (= 0.73.24)
68
+ - React-cxxreact
69
+ - React-jsc
70
+ - React-jsi
71
+ - React-jsiexecutor
72
+ - React-perflogger
73
+ - React-runtimescheduler
74
+ - React-utils
75
+ - SocketRocket (= 0.7.0)
76
+ - Yoga
77
+ - React-Core/CoreModulesHeaders (0.73.24):
78
+ - glog
79
+ - RCT-Folly (= 2022.05.16.00)
80
+ - React-Core/Default
81
+ - React-cxxreact
82
+ - React-jsc
83
+ - React-jsi
84
+ - React-jsiexecutor
85
+ - React-perflogger
86
+ - React-runtimescheduler
87
+ - React-utils
88
+ - SocketRocket (= 0.7.0)
89
+ - Yoga
90
+ - React-Core/Default (0.73.24):
91
+ - glog
92
+ - RCT-Folly (= 2022.05.16.00)
93
+ - React-cxxreact
94
+ - React-jsc
95
+ - React-jsi
96
+ - React-jsiexecutor
97
+ - React-perflogger
98
+ - React-runtimescheduler
99
+ - React-utils
100
+ - SocketRocket (= 0.7.0)
101
+ - Yoga
102
+ - React-Core/DevSupport (0.73.24):
103
+ - glog
104
+ - RCT-Folly (= 2022.05.16.00)
105
+ - React-Core/Default (= 0.73.24)
106
+ - React-Core/RCTWebSocket (= 0.73.24)
107
+ - React-cxxreact
108
+ - React-jsc
109
+ - React-jsi
110
+ - React-jsiexecutor
111
+ - React-jsinspector (= 0.73.24)
112
+ - React-perflogger
113
+ - React-runtimescheduler
114
+ - React-utils
115
+ - SocketRocket (= 0.7.0)
116
+ - Yoga
117
+ - React-Core/RCTActionSheetHeaders (0.73.24):
118
+ - glog
119
+ - RCT-Folly (= 2022.05.16.00)
120
+ - React-Core/Default
121
+ - React-cxxreact
122
+ - React-jsc
123
+ - React-jsi
124
+ - React-jsiexecutor
125
+ - React-perflogger
126
+ - React-runtimescheduler
127
+ - React-utils
128
+ - SocketRocket (= 0.7.0)
129
+ - Yoga
130
+ - React-Core/RCTAnimationHeaders (0.73.24):
131
+ - glog
132
+ - RCT-Folly (= 2022.05.16.00)
133
+ - React-Core/Default
134
+ - React-cxxreact
135
+ - React-jsc
136
+ - React-jsi
137
+ - React-jsiexecutor
138
+ - React-perflogger
139
+ - React-runtimescheduler
140
+ - React-utils
141
+ - SocketRocket (= 0.7.0)
142
+ - Yoga
143
+ - React-Core/RCTBlobHeaders (0.73.24):
144
+ - glog
145
+ - RCT-Folly (= 2022.05.16.00)
146
+ - React-Core/Default
147
+ - React-cxxreact
148
+ - React-jsc
149
+ - React-jsi
150
+ - React-jsiexecutor
151
+ - React-perflogger
152
+ - React-runtimescheduler
153
+ - React-utils
154
+ - SocketRocket (= 0.7.0)
155
+ - Yoga
156
+ - React-Core/RCTImageHeaders (0.73.24):
157
+ - glog
158
+ - RCT-Folly (= 2022.05.16.00)
159
+ - React-Core/Default
160
+ - React-cxxreact
161
+ - React-jsc
162
+ - React-jsi
163
+ - React-jsiexecutor
164
+ - React-perflogger
165
+ - React-runtimescheduler
166
+ - React-utils
167
+ - SocketRocket (= 0.7.0)
168
+ - Yoga
169
+ - React-Core/RCTLinkingHeaders (0.73.24):
170
+ - glog
171
+ - RCT-Folly (= 2022.05.16.00)
172
+ - React-Core/Default
173
+ - React-cxxreact
174
+ - React-jsc
175
+ - React-jsi
176
+ - React-jsiexecutor
177
+ - React-perflogger
178
+ - React-runtimescheduler
179
+ - React-utils
180
+ - SocketRocket (= 0.7.0)
181
+ - Yoga
182
+ - React-Core/RCTNetworkHeaders (0.73.24):
183
+ - glog
184
+ - RCT-Folly (= 2022.05.16.00)
185
+ - React-Core/Default
186
+ - React-cxxreact
187
+ - React-jsc
188
+ - React-jsi
189
+ - React-jsiexecutor
190
+ - React-perflogger
191
+ - React-runtimescheduler
192
+ - React-utils
193
+ - SocketRocket (= 0.7.0)
194
+ - Yoga
195
+ - React-Core/RCTSettingsHeaders (0.73.24):
196
+ - glog
197
+ - RCT-Folly (= 2022.05.16.00)
198
+ - React-Core/Default
199
+ - React-cxxreact
200
+ - React-jsc
201
+ - React-jsi
202
+ - React-jsiexecutor
203
+ - React-perflogger
204
+ - React-runtimescheduler
205
+ - React-utils
206
+ - SocketRocket (= 0.7.0)
207
+ - Yoga
208
+ - React-Core/RCTTextHeaders (0.73.24):
209
+ - glog
210
+ - RCT-Folly (= 2022.05.16.00)
211
+ - React-Core/Default
212
+ - React-cxxreact
213
+ - React-jsc
214
+ - React-jsi
215
+ - React-jsiexecutor
216
+ - React-perflogger
217
+ - React-runtimescheduler
218
+ - React-utils
219
+ - SocketRocket (= 0.7.0)
220
+ - Yoga
221
+ - React-Core/RCTVibrationHeaders (0.73.24):
222
+ - glog
223
+ - RCT-Folly (= 2022.05.16.00)
224
+ - React-Core/Default
225
+ - React-cxxreact
226
+ - React-jsc
227
+ - React-jsi
228
+ - React-jsiexecutor
229
+ - React-perflogger
230
+ - React-runtimescheduler
231
+ - React-utils
232
+ - SocketRocket (= 0.7.0)
233
+ - Yoga
234
+ - React-Core/RCTWebSocket (0.73.24):
235
+ - glog
236
+ - RCT-Folly (= 2022.05.16.00)
237
+ - React-Core/Default (= 0.73.24)
238
+ - React-cxxreact
239
+ - React-jsc
240
+ - React-jsi
241
+ - React-jsiexecutor
242
+ - React-perflogger
243
+ - React-runtimescheduler
244
+ - React-utils
245
+ - SocketRocket (= 0.7.0)
246
+ - Yoga
247
+ - React-CoreModules (0.73.24):
248
+ - RCT-Folly (= 2022.05.16.00)
249
+ - RCTTypeSafety (= 0.73.24)
250
+ - React-Codegen
251
+ - React-Core/CoreModulesHeaders (= 0.73.24)
252
+ - React-jsi (= 0.73.24)
253
+ - React-NativeModulesApple
254
+ - React-RCTBlob
255
+ - React-RCTImage (= 0.73.24)
256
+ - ReactCommon
257
+ - SocketRocket (= 0.7.0)
258
+ - React-cxxreact (0.73.24):
259
+ - boost (= 1.83.0)
260
+ - DoubleConversion
261
+ - fmt (= 9.1.0)
262
+ - glog
263
+ - RCT-Folly (= 2022.05.16.00)
264
+ - React-callinvoker (= 0.73.24)
265
+ - React-debug (= 0.73.24)
266
+ - React-jsi (= 0.73.24)
267
+ - React-jsinspector (= 0.73.24)
268
+ - React-logger (= 0.73.24)
269
+ - React-perflogger (= 0.73.24)
270
+ - React-runtimeexecutor (= 0.73.24)
271
+ - React-debug (0.73.24)
272
+ - React-Fabric (0.73.24):
273
+ - DoubleConversion
274
+ - fmt (= 9.1.0)
275
+ - glog
276
+ - RCT-Folly/Fabric (= 2022.05.16.00)
277
+ - RCTRequired
278
+ - RCTTypeSafety
279
+ - React-Core
280
+ - React-cxxreact
281
+ - React-debug
282
+ - React-Fabric/animations (= 0.73.24)
283
+ - React-Fabric/attributedstring (= 0.73.24)
284
+ - React-Fabric/componentregistry (= 0.73.24)
285
+ - React-Fabric/componentregistrynative (= 0.73.24)
286
+ - React-Fabric/components (= 0.73.24)
287
+ - React-Fabric/core (= 0.73.24)
288
+ - React-Fabric/imagemanager (= 0.73.24)
289
+ - React-Fabric/leakchecker (= 0.73.24)
290
+ - React-Fabric/mounting (= 0.73.24)
291
+ - React-Fabric/scheduler (= 0.73.24)
292
+ - React-Fabric/telemetry (= 0.73.24)
293
+ - React-Fabric/templateprocessor (= 0.73.24)
294
+ - React-Fabric/textlayoutmanager (= 0.73.24)
295
+ - React-Fabric/uimanager (= 0.73.24)
296
+ - React-graphics
297
+ - React-jsc
298
+ - React-jsi
299
+ - React-jsiexecutor
300
+ - React-logger
301
+ - React-rendererdebug
302
+ - React-runtimescheduler
303
+ - React-utils
304
+ - ReactCommon/turbomodule/core
305
+ - React-Fabric/animations (0.73.24):
306
+ - DoubleConversion
307
+ - fmt (= 9.1.0)
308
+ - glog
309
+ - RCT-Folly/Fabric (= 2022.05.16.00)
310
+ - RCTRequired
311
+ - RCTTypeSafety
312
+ - React-Core
313
+ - React-cxxreact
314
+ - React-debug
315
+ - React-graphics
316
+ - React-jsc
317
+ - React-jsi
318
+ - React-jsiexecutor
319
+ - React-logger
320
+ - React-rendererdebug
321
+ - React-runtimescheduler
322
+ - React-utils
323
+ - ReactCommon/turbomodule/core
324
+ - React-Fabric/attributedstring (0.73.24):
325
+ - DoubleConversion
326
+ - fmt (= 9.1.0)
327
+ - glog
328
+ - RCT-Folly/Fabric (= 2022.05.16.00)
329
+ - RCTRequired
330
+ - RCTTypeSafety
331
+ - React-Core
332
+ - React-cxxreact
333
+ - React-debug
334
+ - React-graphics
335
+ - React-jsc
336
+ - React-jsi
337
+ - React-jsiexecutor
338
+ - React-logger
339
+ - React-rendererdebug
340
+ - React-runtimescheduler
341
+ - React-utils
342
+ - ReactCommon/turbomodule/core
343
+ - React-Fabric/componentregistry (0.73.24):
344
+ - DoubleConversion
345
+ - fmt (= 9.1.0)
346
+ - glog
347
+ - RCT-Folly/Fabric (= 2022.05.16.00)
348
+ - RCTRequired
349
+ - RCTTypeSafety
350
+ - React-Core
351
+ - React-cxxreact
352
+ - React-debug
353
+ - React-graphics
354
+ - React-jsc
355
+ - React-jsi
356
+ - React-jsiexecutor
357
+ - React-logger
358
+ - React-rendererdebug
359
+ - React-runtimescheduler
360
+ - React-utils
361
+ - ReactCommon/turbomodule/core
362
+ - React-Fabric/componentregistrynative (0.73.24):
363
+ - DoubleConversion
364
+ - fmt (= 9.1.0)
365
+ - glog
366
+ - RCT-Folly/Fabric (= 2022.05.16.00)
367
+ - RCTRequired
368
+ - RCTTypeSafety
369
+ - React-Core
370
+ - React-cxxreact
371
+ - React-debug
372
+ - React-graphics
373
+ - React-jsc
374
+ - React-jsi
375
+ - React-jsiexecutor
376
+ - React-logger
377
+ - React-rendererdebug
378
+ - React-runtimescheduler
379
+ - React-utils
380
+ - ReactCommon/turbomodule/core
381
+ - React-Fabric/components (0.73.24):
382
+ - DoubleConversion
383
+ - fmt (= 9.1.0)
384
+ - glog
385
+ - RCT-Folly/Fabric (= 2022.05.16.00)
386
+ - RCTRequired
387
+ - RCTTypeSafety
388
+ - React-Core
389
+ - React-cxxreact
390
+ - React-debug
391
+ - React-Fabric/components/inputaccessory (= 0.73.24)
392
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.73.24)
393
+ - React-Fabric/components/modal (= 0.73.24)
394
+ - React-Fabric/components/rncore (= 0.73.24)
395
+ - React-Fabric/components/root (= 0.73.24)
396
+ - React-Fabric/components/safeareaview (= 0.73.24)
397
+ - React-Fabric/components/scrollview (= 0.73.24)
398
+ - React-Fabric/components/text (= 0.73.24)
399
+ - React-Fabric/components/textinput (= 0.73.24)
400
+ - React-Fabric/components/unimplementedview (= 0.73.24)
401
+ - React-Fabric/components/view (= 0.73.24)
402
+ - React-graphics
403
+ - React-jsc
404
+ - React-jsi
405
+ - React-jsiexecutor
406
+ - React-logger
407
+ - React-rendererdebug
408
+ - React-runtimescheduler
409
+ - React-utils
410
+ - ReactCommon/turbomodule/core
411
+ - React-Fabric/components/inputaccessory (0.73.24):
412
+ - DoubleConversion
413
+ - fmt (= 9.1.0)
414
+ - glog
415
+ - RCT-Folly/Fabric (= 2022.05.16.00)
416
+ - RCTRequired
417
+ - RCTTypeSafety
418
+ - React-Core
419
+ - React-cxxreact
420
+ - React-debug
421
+ - React-graphics
422
+ - React-jsc
423
+ - React-jsi
424
+ - React-jsiexecutor
425
+ - React-logger
426
+ - React-rendererdebug
427
+ - React-runtimescheduler
428
+ - React-utils
429
+ - ReactCommon/turbomodule/core
430
+ - React-Fabric/components/legacyviewmanagerinterop (0.73.24):
431
+ - DoubleConversion
432
+ - fmt (= 9.1.0)
433
+ - glog
434
+ - RCT-Folly/Fabric (= 2022.05.16.00)
435
+ - RCTRequired
436
+ - RCTTypeSafety
437
+ - React-Core
438
+ - React-cxxreact
439
+ - React-debug
440
+ - React-graphics
441
+ - React-jsc
442
+ - React-jsi
443
+ - React-jsiexecutor
444
+ - React-logger
445
+ - React-rendererdebug
446
+ - React-runtimescheduler
447
+ - React-utils
448
+ - ReactCommon/turbomodule/core
449
+ - React-Fabric/components/modal (0.73.24):
450
+ - DoubleConversion
451
+ - fmt (= 9.1.0)
452
+ - glog
453
+ - RCT-Folly/Fabric (= 2022.05.16.00)
454
+ - RCTRequired
455
+ - RCTTypeSafety
456
+ - React-Core
457
+ - React-cxxreact
458
+ - React-debug
459
+ - React-graphics
460
+ - React-jsc
461
+ - React-jsi
462
+ - React-jsiexecutor
463
+ - React-logger
464
+ - React-rendererdebug
465
+ - React-runtimescheduler
466
+ - React-utils
467
+ - ReactCommon/turbomodule/core
468
+ - React-Fabric/components/rncore (0.73.24):
469
+ - DoubleConversion
470
+ - fmt (= 9.1.0)
471
+ - glog
472
+ - RCT-Folly/Fabric (= 2022.05.16.00)
473
+ - RCTRequired
474
+ - RCTTypeSafety
475
+ - React-Core
476
+ - React-cxxreact
477
+ - React-debug
478
+ - React-graphics
479
+ - React-jsc
480
+ - React-jsi
481
+ - React-jsiexecutor
482
+ - React-logger
483
+ - React-rendererdebug
484
+ - React-runtimescheduler
485
+ - React-utils
486
+ - ReactCommon/turbomodule/core
487
+ - React-Fabric/components/root (0.73.24):
488
+ - DoubleConversion
489
+ - fmt (= 9.1.0)
490
+ - glog
491
+ - RCT-Folly/Fabric (= 2022.05.16.00)
492
+ - RCTRequired
493
+ - RCTTypeSafety
494
+ - React-Core
495
+ - React-cxxreact
496
+ - React-debug
497
+ - React-graphics
498
+ - React-jsc
499
+ - React-jsi
500
+ - React-jsiexecutor
501
+ - React-logger
502
+ - React-rendererdebug
503
+ - React-runtimescheduler
504
+ - React-utils
505
+ - ReactCommon/turbomodule/core
506
+ - React-Fabric/components/safeareaview (0.73.24):
507
+ - DoubleConversion
508
+ - fmt (= 9.1.0)
509
+ - glog
510
+ - RCT-Folly/Fabric (= 2022.05.16.00)
511
+ - RCTRequired
512
+ - RCTTypeSafety
513
+ - React-Core
514
+ - React-cxxreact
515
+ - React-debug
516
+ - React-graphics
517
+ - React-jsc
518
+ - React-jsi
519
+ - React-jsiexecutor
520
+ - React-logger
521
+ - React-rendererdebug
522
+ - React-runtimescheduler
523
+ - React-utils
524
+ - ReactCommon/turbomodule/core
525
+ - React-Fabric/components/scrollview (0.73.24):
526
+ - DoubleConversion
527
+ - fmt (= 9.1.0)
528
+ - glog
529
+ - RCT-Folly/Fabric (= 2022.05.16.00)
530
+ - RCTRequired
531
+ - RCTTypeSafety
532
+ - React-Core
533
+ - React-cxxreact
534
+ - React-debug
535
+ - React-graphics
536
+ - React-jsc
537
+ - React-jsi
538
+ - React-jsiexecutor
539
+ - React-logger
540
+ - React-rendererdebug
541
+ - React-runtimescheduler
542
+ - React-utils
543
+ - ReactCommon/turbomodule/core
544
+ - React-Fabric/components/text (0.73.24):
545
+ - DoubleConversion
546
+ - fmt (= 9.1.0)
547
+ - glog
548
+ - RCT-Folly/Fabric (= 2022.05.16.00)
549
+ - RCTRequired
550
+ - RCTTypeSafety
551
+ - React-Core
552
+ - React-cxxreact
553
+ - React-debug
554
+ - React-graphics
555
+ - React-jsc
556
+ - React-jsi
557
+ - React-jsiexecutor
558
+ - React-logger
559
+ - React-rendererdebug
560
+ - React-runtimescheduler
561
+ - React-utils
562
+ - ReactCommon/turbomodule/core
563
+ - React-Fabric/components/textinput (0.73.24):
564
+ - DoubleConversion
565
+ - fmt (= 9.1.0)
566
+ - glog
567
+ - RCT-Folly/Fabric (= 2022.05.16.00)
568
+ - RCTRequired
569
+ - RCTTypeSafety
570
+ - React-Core
571
+ - React-cxxreact
572
+ - React-debug
573
+ - React-graphics
574
+ - React-jsc
575
+ - React-jsi
576
+ - React-jsiexecutor
577
+ - React-logger
578
+ - React-rendererdebug
579
+ - React-runtimescheduler
580
+ - React-utils
581
+ - ReactCommon/turbomodule/core
582
+ - React-Fabric/components/unimplementedview (0.73.24):
583
+ - DoubleConversion
584
+ - fmt (= 9.1.0)
585
+ - glog
586
+ - RCT-Folly/Fabric (= 2022.05.16.00)
587
+ - RCTRequired
588
+ - RCTTypeSafety
589
+ - React-Core
590
+ - React-cxxreact
591
+ - React-debug
592
+ - React-graphics
593
+ - React-jsc
594
+ - React-jsi
595
+ - React-jsiexecutor
596
+ - React-logger
597
+ - React-rendererdebug
598
+ - React-runtimescheduler
599
+ - React-utils
600
+ - ReactCommon/turbomodule/core
601
+ - React-Fabric/components/view (0.73.24):
602
+ - DoubleConversion
603
+ - fmt (= 9.1.0)
604
+ - glog
605
+ - RCT-Folly/Fabric (= 2022.05.16.00)
606
+ - RCTRequired
607
+ - RCTTypeSafety
608
+ - React-Core
609
+ - React-cxxreact
610
+ - React-debug
611
+ - React-graphics
612
+ - React-jsc
613
+ - React-jsi
614
+ - React-jsiexecutor
615
+ - React-logger
616
+ - React-rendererdebug
617
+ - React-runtimescheduler
618
+ - React-utils
619
+ - ReactCommon/turbomodule/core
620
+ - Yoga
621
+ - React-Fabric/core (0.73.24):
622
+ - DoubleConversion
623
+ - fmt (= 9.1.0)
624
+ - glog
625
+ - RCT-Folly/Fabric (= 2022.05.16.00)
626
+ - RCTRequired
627
+ - RCTTypeSafety
628
+ - React-Core
629
+ - React-cxxreact
630
+ - React-debug
631
+ - React-graphics
632
+ - React-jsc
633
+ - React-jsi
634
+ - React-jsiexecutor
635
+ - React-logger
636
+ - React-rendererdebug
637
+ - React-runtimescheduler
638
+ - React-utils
639
+ - ReactCommon/turbomodule/core
640
+ - React-Fabric/imagemanager (0.73.24):
641
+ - DoubleConversion
642
+ - fmt (= 9.1.0)
643
+ - glog
644
+ - RCT-Folly/Fabric (= 2022.05.16.00)
645
+ - RCTRequired
646
+ - RCTTypeSafety
647
+ - React-Core
648
+ - React-cxxreact
649
+ - React-debug
650
+ - React-graphics
651
+ - React-jsc
652
+ - React-jsi
653
+ - React-jsiexecutor
654
+ - React-logger
655
+ - React-rendererdebug
656
+ - React-runtimescheduler
657
+ - React-utils
658
+ - ReactCommon/turbomodule/core
659
+ - React-Fabric/leakchecker (0.73.24):
660
+ - DoubleConversion
661
+ - fmt (= 9.1.0)
662
+ - glog
663
+ - RCT-Folly/Fabric (= 2022.05.16.00)
664
+ - RCTRequired
665
+ - RCTTypeSafety
666
+ - React-Core
667
+ - React-cxxreact
668
+ - React-debug
669
+ - React-graphics
670
+ - React-jsc
671
+ - React-jsi
672
+ - React-jsiexecutor
673
+ - React-logger
674
+ - React-rendererdebug
675
+ - React-runtimescheduler
676
+ - React-utils
677
+ - ReactCommon/turbomodule/core
678
+ - React-Fabric/mounting (0.73.24):
679
+ - DoubleConversion
680
+ - fmt (= 9.1.0)
681
+ - glog
682
+ - RCT-Folly/Fabric (= 2022.05.16.00)
683
+ - RCTRequired
684
+ - RCTTypeSafety
685
+ - React-Core
686
+ - React-cxxreact
687
+ - React-debug
688
+ - React-graphics
689
+ - React-jsc
690
+ - React-jsi
691
+ - React-jsiexecutor
692
+ - React-logger
693
+ - React-rendererdebug
694
+ - React-runtimescheduler
695
+ - React-utils
696
+ - ReactCommon/turbomodule/core
697
+ - React-Fabric/scheduler (0.73.24):
698
+ - DoubleConversion
699
+ - fmt (= 9.1.0)
700
+ - glog
701
+ - RCT-Folly/Fabric (= 2022.05.16.00)
702
+ - RCTRequired
703
+ - RCTTypeSafety
704
+ - React-Core
705
+ - React-cxxreact
706
+ - React-debug
707
+ - React-graphics
708
+ - React-jsc
709
+ - React-jsi
710
+ - React-jsiexecutor
711
+ - React-logger
712
+ - React-rendererdebug
713
+ - React-runtimescheduler
714
+ - React-utils
715
+ - ReactCommon/turbomodule/core
716
+ - React-Fabric/telemetry (0.73.24):
717
+ - DoubleConversion
718
+ - fmt (= 9.1.0)
719
+ - glog
720
+ - RCT-Folly/Fabric (= 2022.05.16.00)
721
+ - RCTRequired
722
+ - RCTTypeSafety
723
+ - React-Core
724
+ - React-cxxreact
725
+ - React-debug
726
+ - React-graphics
727
+ - React-jsc
728
+ - React-jsi
729
+ - React-jsiexecutor
730
+ - React-logger
731
+ - React-rendererdebug
732
+ - React-runtimescheduler
733
+ - React-utils
734
+ - ReactCommon/turbomodule/core
735
+ - React-Fabric/templateprocessor (0.73.24):
736
+ - DoubleConversion
737
+ - fmt (= 9.1.0)
738
+ - glog
739
+ - RCT-Folly/Fabric (= 2022.05.16.00)
740
+ - RCTRequired
741
+ - RCTTypeSafety
742
+ - React-Core
743
+ - React-cxxreact
744
+ - React-debug
745
+ - React-graphics
746
+ - React-jsc
747
+ - React-jsi
748
+ - React-jsiexecutor
749
+ - React-logger
750
+ - React-rendererdebug
751
+ - React-runtimescheduler
752
+ - React-utils
753
+ - ReactCommon/turbomodule/core
754
+ - React-Fabric/textlayoutmanager (0.73.24):
755
+ - DoubleConversion
756
+ - fmt (= 9.1.0)
757
+ - glog
758
+ - RCT-Folly/Fabric (= 2022.05.16.00)
759
+ - RCTRequired
760
+ - RCTTypeSafety
761
+ - React-Core
762
+ - React-cxxreact
763
+ - React-debug
764
+ - React-Fabric/uimanager
765
+ - React-graphics
766
+ - React-jsc
767
+ - React-jsi
768
+ - React-jsiexecutor
769
+ - React-logger
770
+ - React-rendererdebug
771
+ - React-runtimescheduler
772
+ - React-utils
773
+ - ReactCommon/turbomodule/core
774
+ - React-Fabric/uimanager (0.73.24):
775
+ - DoubleConversion
776
+ - fmt (= 9.1.0)
777
+ - glog
778
+ - RCT-Folly/Fabric (= 2022.05.16.00)
779
+ - RCTRequired
780
+ - RCTTypeSafety
781
+ - React-Core
782
+ - React-cxxreact
783
+ - React-debug
784
+ - React-graphics
785
+ - React-jsc
786
+ - React-jsi
787
+ - React-jsiexecutor
788
+ - React-logger
789
+ - React-rendererdebug
790
+ - React-runtimescheduler
791
+ - React-utils
792
+ - ReactCommon/turbomodule/core
793
+ - React-FabricImage (0.73.24):
794
+ - DoubleConversion
795
+ - fmt (= 9.1.0)
796
+ - glog
797
+ - RCT-Folly/Fabric (= 2022.05.16.00)
798
+ - RCTRequired (= 0.73.24)
799
+ - RCTTypeSafety (= 0.73.24)
800
+ - React-Fabric
801
+ - React-graphics
802
+ - React-ImageManager
803
+ - React-jsc
804
+ - React-jsi
805
+ - React-jsiexecutor (= 0.73.24)
806
+ - React-logger
807
+ - React-rendererdebug
808
+ - React-utils
809
+ - ReactCommon
810
+ - Yoga
811
+ - React-graphics (0.73.24):
812
+ - glog
813
+ - RCT-Folly/Fabric (= 2022.05.16.00)
814
+ - React-Core/Default (= 0.73.24)
815
+ - React-utils
816
+ - React-ImageManager (0.73.24):
817
+ - glog
818
+ - RCT-Folly/Fabric
819
+ - React-Core/Default
820
+ - React-debug
821
+ - React-Fabric
822
+ - React-graphics
823
+ - React-rendererdebug
824
+ - React-utils
825
+ - React-jsc (0.73.24):
826
+ - React-jsc/Fabric (= 0.73.24)
827
+ - React-jsi (= 0.73.24)
828
+ - React-jsc/Fabric (0.73.24):
829
+ - React-jsi (= 0.73.24)
830
+ - React-jserrorhandler (0.73.24):
831
+ - RCT-Folly/Fabric (= 2022.05.16.00)
832
+ - React-debug
833
+ - React-jsi
834
+ - React-Mapbuffer
835
+ - React-jsi (0.73.24):
836
+ - boost (= 1.83.0)
837
+ - DoubleConversion
838
+ - fmt (= 9.1.0)
839
+ - glog
840
+ - RCT-Folly (= 2022.05.16.00)
841
+ - React-jsiexecutor (0.73.24):
842
+ - DoubleConversion
843
+ - fmt (= 9.1.0)
844
+ - glog
845
+ - RCT-Folly (= 2022.05.16.00)
846
+ - React-cxxreact (= 0.73.24)
847
+ - React-jsi (= 0.73.24)
848
+ - React-perflogger (= 0.73.24)
849
+ - React-jsinspector (0.73.24)
850
+ - React-logger (0.73.24):
851
+ - glog
852
+ - React-Mapbuffer (0.73.24):
853
+ - glog
854
+ - React-debug
855
+ - React-nativeconfig (0.73.24)
856
+ - React-NativeModulesApple (0.73.24):
857
+ - glog
858
+ - React-callinvoker
859
+ - React-Core
860
+ - React-cxxreact
861
+ - React-jsc
862
+ - React-jsi
863
+ - React-runtimeexecutor
864
+ - ReactCommon/turbomodule/bridging
865
+ - ReactCommon/turbomodule/core
866
+ - React-perflogger (0.73.24)
867
+ - React-RCTActionSheet (0.73.24):
868
+ - React-Core/RCTActionSheetHeaders (= 0.73.24)
869
+ - React-RCTAnimation (0.73.24):
870
+ - RCT-Folly (= 2022.05.16.00)
871
+ - RCTTypeSafety
872
+ - React-Codegen
873
+ - React-Core/RCTAnimationHeaders
874
+ - React-jsi
875
+ - React-NativeModulesApple
876
+ - ReactCommon
877
+ - React-RCTAppDelegate (0.73.24):
878
+ - RCT-Folly
879
+ - RCTRequired
880
+ - RCTTypeSafety
881
+ - React-Core
882
+ - React-CoreModules
883
+ - React-jsc
884
+ - React-nativeconfig
885
+ - React-NativeModulesApple
886
+ - React-RCTFabric
887
+ - React-RCTImage
888
+ - React-RCTNetwork
889
+ - React-runtimescheduler
890
+ - ReactCommon
891
+ - React-RCTBlob (0.73.24):
892
+ - RCT-Folly (= 2022.05.16.00)
893
+ - React-Codegen
894
+ - React-Core/RCTBlobHeaders
895
+ - React-Core/RCTWebSocket
896
+ - React-jsi
897
+ - React-NativeModulesApple
898
+ - React-RCTNetwork
899
+ - ReactCommon
900
+ - React-RCTFabric (0.73.24):
901
+ - glog
902
+ - RCT-Folly/Fabric (= 2022.05.16.00)
903
+ - React-Core
904
+ - React-debug
905
+ - React-Fabric
906
+ - React-FabricImage
907
+ - React-graphics
908
+ - React-ImageManager
909
+ - React-jsc
910
+ - React-jsi
911
+ - React-nativeconfig
912
+ - React-RCTImage
913
+ - React-RCTText
914
+ - React-rendererdebug
915
+ - React-runtimescheduler
916
+ - React-utils
917
+ - Yoga
918
+ - React-RCTImage (0.73.24):
919
+ - RCT-Folly (= 2022.05.16.00)
920
+ - RCTTypeSafety
921
+ - React-Codegen
922
+ - React-Core/RCTImageHeaders
923
+ - React-jsi
924
+ - React-NativeModulesApple
925
+ - React-RCTNetwork
926
+ - ReactCommon
927
+ - React-RCTLinking (0.73.24):
928
+ - React-Codegen
929
+ - React-Core/RCTLinkingHeaders (= 0.73.24)
930
+ - React-jsi (= 0.73.24)
931
+ - React-NativeModulesApple
932
+ - ReactCommon
933
+ - ReactCommon/turbomodule/core (= 0.73.24)
934
+ - React-RCTNetwork (0.73.24):
935
+ - RCT-Folly (= 2022.05.16.00)
936
+ - RCTTypeSafety
937
+ - React-Codegen
938
+ - React-Core/RCTNetworkHeaders
939
+ - React-jsi
940
+ - React-NativeModulesApple
941
+ - ReactCommon
942
+ - React-RCTSettings (0.73.24):
943
+ - RCT-Folly (= 2022.05.16.00)
944
+ - RCTTypeSafety
945
+ - React-Codegen
946
+ - React-Core/RCTSettingsHeaders
947
+ - React-jsi
948
+ - React-NativeModulesApple
949
+ - ReactCommon
950
+ - React-RCTText (0.73.24):
951
+ - React-Core/RCTTextHeaders (= 0.73.24)
952
+ - Yoga
953
+ - React-RCTVibration (0.73.24):
954
+ - RCT-Folly (= 2022.05.16.00)
955
+ - React-Codegen
956
+ - React-Core/RCTVibrationHeaders
957
+ - React-jsi
958
+ - React-NativeModulesApple
959
+ - ReactCommon
960
+ - React-rendererdebug (0.73.24):
961
+ - DoubleConversion
962
+ - fmt (= 9.1.0)
963
+ - RCT-Folly (= 2022.05.16.00)
964
+ - React-debug
965
+ - React-rncore (0.73.24)
966
+ - React-runtimeexecutor (0.73.24):
967
+ - React-jsi (= 0.73.24)
968
+ - React-runtimescheduler (0.73.24):
969
+ - glog
970
+ - RCT-Folly (= 2022.05.16.00)
971
+ - React-callinvoker
972
+ - React-cxxreact
973
+ - React-debug
974
+ - React-jsc
975
+ - React-jsi
976
+ - React-rendererdebug
977
+ - React-runtimeexecutor
978
+ - React-utils
979
+ - React-utils (0.73.24):
980
+ - glog
981
+ - RCT-Folly (= 2022.05.16.00)
982
+ - React-debug
983
+ - ReactCommon (0.73.24):
984
+ - React-logger (= 0.73.24)
985
+ - ReactCommon/turbomodule (= 0.73.24)
986
+ - ReactCommon/turbomodule (0.73.24):
987
+ - DoubleConversion
988
+ - fmt (= 9.1.0)
989
+ - glog
990
+ - RCT-Folly (= 2022.05.16.00)
991
+ - React-callinvoker (= 0.73.24)
992
+ - React-cxxreact (= 0.73.24)
993
+ - React-jsi (= 0.73.24)
994
+ - React-logger (= 0.73.24)
995
+ - React-perflogger (= 0.73.24)
996
+ - ReactCommon/turbomodule/bridging (= 0.73.24)
997
+ - ReactCommon/turbomodule/core (= 0.73.24)
998
+ - ReactCommon/turbomodule/bridging (0.73.24):
999
+ - DoubleConversion
1000
+ - fmt (= 9.1.0)
1001
+ - glog
1002
+ - RCT-Folly (= 2022.05.16.00)
1003
+ - React-callinvoker (= 0.73.24)
1004
+ - React-cxxreact (= 0.73.24)
1005
+ - React-jsi (= 0.73.24)
1006
+ - React-logger (= 0.73.24)
1007
+ - React-perflogger (= 0.73.24)
1008
+ - ReactCommon/turbomodule/core (0.73.24):
1009
+ - DoubleConversion
1010
+ - fmt (= 9.1.0)
1011
+ - glog
1012
+ - RCT-Folly (= 2022.05.16.00)
1013
+ - React-callinvoker (= 0.73.24)
1014
+ - React-cxxreact (= 0.73.24)
1015
+ - React-jsi (= 0.73.24)
1016
+ - React-logger (= 0.73.24)
1017
+ - React-perflogger (= 0.73.24)
1018
+ - RNSVG (15.1.0):
1019
+ - React-Core
1020
+ - SocketRocket (0.7.0)
1021
+ - Yoga (1.14.0)
1022
+
1023
+ DEPENDENCIES:
1024
+ - boost (from `../node_modules/react-native-macos/third-party-podspecs/boost.podspec`)
1025
+ - DoubleConversion (from `../node_modules/react-native-macos/third-party-podspecs/DoubleConversion.podspec`)
1026
+ - FBLazyVector (from `../node_modules/react-native-macos/Libraries/FBLazyVector`)
1027
+ - FBReactNativeSpec (from `../node_modules/react-native-macos/React/FBReactNativeSpec`)
1028
+ - fmt (from `../node_modules/react-native-macos/third-party-podspecs/fmt.podspec`)
1029
+ - glog (from `../node_modules/react-native-macos/third-party-podspecs/glog.podspec`)
1030
+ - RCT-Folly (from `../node_modules/react-native-macos/third-party-podspecs/RCT-Folly.podspec`)
1031
+ - RCT-Folly/Fabric (from `../node_modules/react-native-macos/third-party-podspecs/RCT-Folly.podspec`)
1032
+ - RCTRequired (from `../node_modules/react-native-macos/Libraries/RCTRequired`)
1033
+ - RCTTypeSafety (from `../node_modules/react-native-macos/Libraries/TypeSafety`)
1034
+ - React (from `../node_modules/react-native-macos/`)
1035
+ - React-callinvoker (from `../node_modules/react-native-macos/ReactCommon/callinvoker`)
1036
+ - React-Codegen (from `build/generated/ios`)
1037
+ - React-Core (from `../node_modules/react-native-macos/`)
1038
+ - React-Core/RCTWebSocket (from `../node_modules/react-native-macos/`)
1039
+ - React-CoreModules (from `../node_modules/react-native-macos/React/CoreModules`)
1040
+ - React-cxxreact (from `../node_modules/react-native-macos/ReactCommon/cxxreact`)
1041
+ - React-debug (from `../node_modules/react-native-macos/ReactCommon/react/debug`)
1042
+ - React-Fabric (from `../node_modules/react-native-macos/ReactCommon`)
1043
+ - React-FabricImage (from `../node_modules/react-native-macos/ReactCommon`)
1044
+ - React-graphics (from `../node_modules/react-native-macos/ReactCommon/react/renderer/graphics`)
1045
+ - React-ImageManager (from `../node_modules/react-native-macos/ReactCommon/react/renderer/imagemanager/platform/ios`)
1046
+ - React-jsc (from `../node_modules/react-native-macos/ReactCommon/jsc`)
1047
+ - React-jserrorhandler (from `../node_modules/react-native-macos/ReactCommon/jserrorhandler`)
1048
+ - React-jsi (from `../node_modules/react-native-macos/ReactCommon/jsi`)
1049
+ - React-jsiexecutor (from `../node_modules/react-native-macos/ReactCommon/jsiexecutor`)
1050
+ - React-jsinspector (from `../node_modules/react-native-macos/ReactCommon/jsinspector-modern`)
1051
+ - React-logger (from `../node_modules/react-native-macos/ReactCommon/logger`)
1052
+ - React-Mapbuffer (from `../node_modules/react-native-macos/ReactCommon`)
1053
+ - React-nativeconfig (from `../node_modules/react-native-macos/ReactCommon`)
1054
+ - React-NativeModulesApple (from `../node_modules/react-native-macos/ReactCommon/react/nativemodule/core/platform/ios`)
1055
+ - React-perflogger (from `../node_modules/react-native-macos/ReactCommon/reactperflogger`)
1056
+ - React-RCTActionSheet (from `../node_modules/react-native-macos/Libraries/ActionSheetIOS`)
1057
+ - React-RCTAnimation (from `../node_modules/react-native-macos/Libraries/NativeAnimation`)
1058
+ - React-RCTAppDelegate (from `../node_modules/react-native-macos/Libraries/AppDelegate`)
1059
+ - React-RCTBlob (from `../node_modules/react-native-macos/Libraries/Blob`)
1060
+ - React-RCTFabric (from `../node_modules/react-native-macos/React`)
1061
+ - React-RCTImage (from `../node_modules/react-native-macos/Libraries/Image`)
1062
+ - React-RCTLinking (from `../node_modules/react-native-macos/Libraries/LinkingIOS`)
1063
+ - React-RCTNetwork (from `../node_modules/react-native-macos/Libraries/Network`)
1064
+ - React-RCTSettings (from `../node_modules/react-native-macos/Libraries/Settings`)
1065
+ - React-RCTText (from `../node_modules/react-native-macos/Libraries/Text`)
1066
+ - React-RCTVibration (from `../node_modules/react-native-macos/Libraries/Vibration`)
1067
+ - React-rendererdebug (from `../node_modules/react-native-macos/ReactCommon/react/renderer/debug`)
1068
+ - React-rncore (from `../node_modules/react-native-macos/ReactCommon`)
1069
+ - React-runtimeexecutor (from `../node_modules/react-native-macos/ReactCommon/runtimeexecutor`)
1070
+ - React-runtimescheduler (from `../node_modules/react-native-macos/ReactCommon/react/renderer/runtimescheduler`)
1071
+ - React-utils (from `../node_modules/react-native-macos/ReactCommon/react/utils`)
1072
+ - ReactCommon/turbomodule/core (from `../node_modules/react-native-macos/ReactCommon`)
1073
+ - RNSVG (from `../node_modules/react-native-svg`)
1074
+ - SocketRocket (from `../node_modules/react-native-macos/third-party-podspecs/SocketRocket.podspec`)
1075
+ - Yoga (from `../node_modules/react-native-macos/ReactCommon/yoga`)
1076
+
1077
+ EXTERNAL SOURCES:
1078
+ boost:
1079
+ :podspec: "../node_modules/react-native-macos/third-party-podspecs/boost.podspec"
1080
+ DoubleConversion:
1081
+ :podspec: "../node_modules/react-native-macos/third-party-podspecs/DoubleConversion.podspec"
1082
+ FBLazyVector:
1083
+ :path: "../node_modules/react-native-macos/Libraries/FBLazyVector"
1084
+ FBReactNativeSpec:
1085
+ :path: "../node_modules/react-native-macos/React/FBReactNativeSpec"
1086
+ fmt:
1087
+ :podspec: "../node_modules/react-native-macos/third-party-podspecs/fmt.podspec"
1088
+ glog:
1089
+ :podspec: "../node_modules/react-native-macos/third-party-podspecs/glog.podspec"
1090
+ RCT-Folly:
1091
+ :podspec: "../node_modules/react-native-macos/third-party-podspecs/RCT-Folly.podspec"
1092
+ RCTRequired:
1093
+ :path: "../node_modules/react-native-macos/Libraries/RCTRequired"
1094
+ RCTTypeSafety:
1095
+ :path: "../node_modules/react-native-macos/Libraries/TypeSafety"
1096
+ React:
1097
+ :path: "../node_modules/react-native-macos/"
1098
+ React-callinvoker:
1099
+ :path: "../node_modules/react-native-macos/ReactCommon/callinvoker"
1100
+ React-Codegen:
1101
+ :path: build/generated/ios
1102
+ React-Core:
1103
+ :path: "../node_modules/react-native-macos/"
1104
+ React-CoreModules:
1105
+ :path: "../node_modules/react-native-macos/React/CoreModules"
1106
+ React-cxxreact:
1107
+ :path: "../node_modules/react-native-macos/ReactCommon/cxxreact"
1108
+ React-debug:
1109
+ :path: "../node_modules/react-native-macos/ReactCommon/react/debug"
1110
+ React-Fabric:
1111
+ :path: "../node_modules/react-native-macos/ReactCommon"
1112
+ React-FabricImage:
1113
+ :path: "../node_modules/react-native-macos/ReactCommon"
1114
+ React-graphics:
1115
+ :path: "../node_modules/react-native-macos/ReactCommon/react/renderer/graphics"
1116
+ React-ImageManager:
1117
+ :path: "../node_modules/react-native-macos/ReactCommon/react/renderer/imagemanager/platform/ios"
1118
+ React-jsc:
1119
+ :path: "../node_modules/react-native-macos/ReactCommon/jsc"
1120
+ React-jserrorhandler:
1121
+ :path: "../node_modules/react-native-macos/ReactCommon/jserrorhandler"
1122
+ React-jsi:
1123
+ :path: "../node_modules/react-native-macos/ReactCommon/jsi"
1124
+ React-jsiexecutor:
1125
+ :path: "../node_modules/react-native-macos/ReactCommon/jsiexecutor"
1126
+ React-jsinspector:
1127
+ :path: "../node_modules/react-native-macos/ReactCommon/jsinspector-modern"
1128
+ React-logger:
1129
+ :path: "../node_modules/react-native-macos/ReactCommon/logger"
1130
+ React-Mapbuffer:
1131
+ :path: "../node_modules/react-native-macos/ReactCommon"
1132
+ React-nativeconfig:
1133
+ :path: "../node_modules/react-native-macos/ReactCommon"
1134
+ React-NativeModulesApple:
1135
+ :path: "../node_modules/react-native-macos/ReactCommon/react/nativemodule/core/platform/ios"
1136
+ React-perflogger:
1137
+ :path: "../node_modules/react-native-macos/ReactCommon/reactperflogger"
1138
+ React-RCTActionSheet:
1139
+ :path: "../node_modules/react-native-macos/Libraries/ActionSheetIOS"
1140
+ React-RCTAnimation:
1141
+ :path: "../node_modules/react-native-macos/Libraries/NativeAnimation"
1142
+ React-RCTAppDelegate:
1143
+ :path: "../node_modules/react-native-macos/Libraries/AppDelegate"
1144
+ React-RCTBlob:
1145
+ :path: "../node_modules/react-native-macos/Libraries/Blob"
1146
+ React-RCTFabric:
1147
+ :path: "../node_modules/react-native-macos/React"
1148
+ React-RCTImage:
1149
+ :path: "../node_modules/react-native-macos/Libraries/Image"
1150
+ React-RCTLinking:
1151
+ :path: "../node_modules/react-native-macos/Libraries/LinkingIOS"
1152
+ React-RCTNetwork:
1153
+ :path: "../node_modules/react-native-macos/Libraries/Network"
1154
+ React-RCTSettings:
1155
+ :path: "../node_modules/react-native-macos/Libraries/Settings"
1156
+ React-RCTText:
1157
+ :path: "../node_modules/react-native-macos/Libraries/Text"
1158
+ React-RCTVibration:
1159
+ :path: "../node_modules/react-native-macos/Libraries/Vibration"
1160
+ React-rendererdebug:
1161
+ :path: "../node_modules/react-native-macos/ReactCommon/react/renderer/debug"
1162
+ React-rncore:
1163
+ :path: "../node_modules/react-native-macos/ReactCommon"
1164
+ React-runtimeexecutor:
1165
+ :path: "../node_modules/react-native-macos/ReactCommon/runtimeexecutor"
1166
+ React-runtimescheduler:
1167
+ :path: "../node_modules/react-native-macos/ReactCommon/react/renderer/runtimescheduler"
1168
+ React-utils:
1169
+ :path: "../node_modules/react-native-macos/ReactCommon/react/utils"
1170
+ ReactCommon:
1171
+ :path: "../node_modules/react-native-macos/ReactCommon"
1172
+ RNSVG:
1173
+ :path: "../node_modules/react-native-svg"
1174
+ SocketRocket:
1175
+ :podspec: "../node_modules/react-native-macos/third-party-podspecs/SocketRocket.podspec"
1176
+ Yoga:
1177
+ :path: "../node_modules/react-native-macos/ReactCommon/yoga"
1178
+
1179
+ SPEC CHECKSUMS:
1180
+ boost: 0686b6af8cbd638c784fea5afb789be66699823c
1181
+ DoubleConversion: ca54355f8932558971f6643521d62b9bc8231cee
1182
+ FBLazyVector: 6d4868013ba47ee362b596a3ccc6f256a0412519
1183
+ FBReactNativeSpec: 030e69b320c718834248085bfd0bd6652141c28c
1184
+ fmt: 03574da4b7ba40de39da59677ca66610ce8c4a02
1185
+ glog: 3a72874c0322c7caf24931d3a2777cb7a3090529
1186
+ RCT-Folly: 68e9c0fd4c0f05964afd447041d3ac2d67298f27
1187
+ RCTRequired: 80f6978c000be199cc243f876974fd848651a247
1188
+ RCTTypeSafety: cf3c24b03624d8ed3b7a1723f25ac159ff19ad70
1189
+ React: fb69001383ecdd0ebb7c9282acadf970ca1a3e88
1190
+ React-callinvoker: c8f46ba759794eff6f17f4f6f30c5ae0839dca0b
1191
+ React-Codegen: 3253e71b9da6466c30701d5cbf777d28b1f7ef86
1192
+ React-Core: c6602cf0bb3e630f9c683235dc0e3745acda5537
1193
+ React-CoreModules: 8b0b6ef6876ff450c182919f9914072e8942e7e4
1194
+ React-cxxreact: f7d01785333d0f1db4d2dbe86cf7ea3d27336d4e
1195
+ React-debug: 509056a30640ee068c5543f75638dd5b96c93910
1196
+ React-Fabric: 6886e037fbaf896c8f1b0d0472b157e3b5bc9f3e
1197
+ React-FabricImage: a4616d0fd248f59f78c005d4818aeb5cff159c62
1198
+ React-graphics: 61973f4cee610ab9a787da2feeef9cc049ea9c43
1199
+ React-ImageManager: 872c1961a4ab1f42641b71ca7ae6396795875c50
1200
+ React-jsc: dcd5be1fc922f441a41211bd69090cf84ab939c5
1201
+ React-jserrorhandler: 307fc7495c7aedb2758155c564d688740c9b24e3
1202
+ React-jsi: 3242c04ef526d635627202454f9ff14310de36d2
1203
+ React-jsiexecutor: 7033e5015a768c45dc8586cd4f568175e0e73523
1204
+ React-jsinspector: 4fd38f54e53e1695f800dd520e9ca7d4fa21d912
1205
+ React-logger: 2d01c93a8547acabafe19df4f98055a05b178c45
1206
+ React-Mapbuffer: ff9c7733ae0b3036613af2d973d6818a0a8763dc
1207
+ React-nativeconfig: b865de30cded2e6a24f248514b8962d7ee070de5
1208
+ React-NativeModulesApple: 4ad0827e367838e83613c46cda9bff6a74acb908
1209
+ React-perflogger: 93d744092a0c25cc7edd34babef619c180ca89b5
1210
+ React-RCTActionSheet: 1a343c3a1d33995e24bad5571685cb5b44312a1a
1211
+ React-RCTAnimation: cbcab7290b989e04fadc26c32e4bf123e0840bf8
1212
+ React-RCTAppDelegate: 07e70022fa0d4b8dd2d6e0495284a47526da9abc
1213
+ React-RCTBlob: f529fba669a1ee229fdd45c087fa012f363aa25b
1214
+ React-RCTFabric: 0e04ff2234a6b3e33e7223eda2a29a1aabfbe4d2
1215
+ React-RCTImage: 6f1fcb7fe428931a9974ddc24e4e9e11f0ec67fc
1216
+ React-RCTLinking: 8628ae06b6e3b7e06c624454419afe1f11e700b4
1217
+ React-RCTNetwork: 2938f1ec54273d3f205ee75493efb3ac6c479598
1218
+ React-RCTSettings: 15084f505e72ccb50a93395212660dca1b9651be
1219
+ React-RCTText: c995f61d1391a6c773efd84108f2d20f26d11019
1220
+ React-RCTVibration: 7632c700a179cd58e3fd08a6464b04a81ae78616
1221
+ React-rendererdebug: e8ea49e9eefd0d600479f2cd72d689134fcb8360
1222
+ React-rncore: 73dee69ccf53fc8cf891b08e1766ad73ab402f9a
1223
+ React-runtimeexecutor: 1fd45f1e0f2faadd2db6176710af89e01115c704
1224
+ React-runtimescheduler: 265991752129c54256f223defa0272509fe81ad7
1225
+ React-utils: fad5a988b6e23d8b98a4450408bfcc56d63ac85c
1226
+ ReactCommon: 67c1d3a5dafe396de7d497fe224c12217f8b6f49
1227
+ RNSVG: 50cf2c7018e57cf5d3522d98d0a3a4dd6bf9d093
1228
+ SocketRocket: f6c6249082c011e6de2de60ed641ef8bbe0cfac9
1229
+ Yoga: 24ddb4963e2a3330df762423f0a9de2096325401
1230
+
1231
+ PODFILE CHECKSUM: 8314a989ac1c9965ae099e2dde80ba249c2fd077
1232
+
1233
+ COCOAPODS: 1.15.2