@ccrf01/react-native-template 0.0.16

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 (233) hide show
  1. package/.github/workflows/npm-publish.yml +28 -0
  2. package/.vscode/settings.json +15 -0
  3. package/README.md +58 -0
  4. package/package.json +16 -0
  5. package/template/.bundle/config +2 -0
  6. package/template/.env.development +1 -0
  7. package/template/.env.production +1 -0
  8. package/template/.eslintrc.js +392 -0
  9. package/template/.java-version +1 -0
  10. package/template/.prettierrc.js +5 -0
  11. package/template/.ruby-version +1 -0
  12. package/template/.watchmanconfig +1 -0
  13. package/template/Gemfile +23 -0
  14. package/template/Gemfile.lock +330 -0
  15. package/template/README.md +97 -0
  16. package/template/ReactotronConfig.js +17 -0
  17. package/template/__tests__/App.test.tsx +13 -0
  18. package/template/_gitignore +75 -0
  19. package/template/_node-version +1 -0
  20. package/template/android/app/build.gradle +162 -0
  21. package/template/android/app/debug.keystore +0 -0
  22. package/template/android/app/proguard-rules.pro +10 -0
  23. package/template/android/app/src/debug/AndroidManifest.xml +9 -0
  24. package/template/android/app/src/main/AndroidManifest.xml +26 -0
  25. package/template/android/app/src/main/java/com/projectname/MainActivity.kt +30 -0
  26. package/template/android/app/src/main/java/com/projectname/MainApplication.kt +27 -0
  27. package/template/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  28. package/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  29. package/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  30. package/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  31. package/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  32. package/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  33. package/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  34. package/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  35. package/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  36. package/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  37. package/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  38. package/template/android/app/src/main/res/values/strings.xml +3 -0
  39. package/template/android/app/src/main/res/values/styles.xml +9 -0
  40. package/template/android/build.gradle +37 -0
  41. package/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  42. package/template/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  43. package/template/android/gradle.properties +48 -0
  44. package/template/android/gradlew +251 -0
  45. package/template/android/gradlew.bat +99 -0
  46. package/template/android/keystore/keystore.properties +4 -0
  47. package/template/android/settings.gradle +6 -0
  48. package/template/android/version.properties +2 -0
  49. package/template/app.json +4 -0
  50. package/template/babel.config.js +38 -0
  51. package/template/fastlane/Fastfile +136 -0
  52. package/template/fastlane/Pluginfile +9 -0
  53. package/template/fastlane/README.md +46 -0
  54. package/template/index.js +9 -0
  55. package/template/ios/.xcode.env +11 -0
  56. package/template/ios/Podfile +35 -0
  57. package/template/ios/Podfile.lock +3669 -0
  58. package/template/ios/ProjectName/AppDelegate.swift +48 -0
  59. package/template/ios/ProjectName/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  60. package/template/ios/ProjectName/Images.xcassets/Contents.json +6 -0
  61. package/template/ios/ProjectName/Info.plist +66 -0
  62. package/template/ios/ProjectName/LaunchScreen.storyboard +47 -0
  63. package/template/ios/ProjectName/PrivacyInfo.xcprivacy +47 -0
  64. package/template/ios/ProjectName.xcodeproj/project.pbxproj +482 -0
  65. package/template/ios/ProjectName.xcodeproj/xcshareddata/xcschemes/ProjectName.xcscheme +88 -0
  66. package/template/ios/ProjectName.xcworkspace/contents.xcworkspacedata +10 -0
  67. package/template/jest.config.js +3 -0
  68. package/template/metro.config.js +20 -0
  69. package/template/package-lock.json +17073 -0
  70. package/template/package.json +156 -0
  71. package/template/src/@types/emotion.d.ts +12 -0
  72. package/template/src/@types/env.d.ts +3 -0
  73. package/template/src/@types/redux-persist-transform-immutable.d.ts +1 -0
  74. package/template/src/@types/typing.d.ts +17 -0
  75. package/template/src/AppContainer.tsx +109 -0
  76. package/template/src/assets/images/143.png +0 -0
  77. package/template/src/assets/index.ts +13 -0
  78. package/template/src/components/basic/BackButton/index.tsx +34 -0
  79. package/template/src/components/basic/Body/index.tsx +68 -0
  80. package/template/src/components/basic/Button/index.tsx +181 -0
  81. package/template/src/components/basic/Button/utils.ts +78 -0
  82. package/template/src/components/basic/ButtonGroup/index.tsx +182 -0
  83. package/template/src/components/basic/Card/index.tsx +3 -0
  84. package/template/src/components/basic/Container/index.tsx +38 -0
  85. package/template/src/components/basic/Content/index.tsx +87 -0
  86. package/template/src/components/basic/DropDown/index.tsx +354 -0
  87. package/template/src/components/basic/ExpandableOverlay/index.tsx +113 -0
  88. package/template/src/components/basic/Header/index.tsx +216 -0
  89. package/template/src/components/basic/Header/styles.ts +0 -0
  90. package/template/src/components/basic/Icons/index.tsx +131 -0
  91. package/template/src/components/basic/InputLabel/index.tsx +19 -0
  92. package/template/src/components/basic/LoadingOverlay/index.tsx +68 -0
  93. package/template/src/components/basic/MaterialTextInput/index.tsx +153 -0
  94. package/template/src/components/basic/NumberInput/index.tsx +53 -0
  95. package/template/src/components/basic/Picker/PickerContext.ts +7 -0
  96. package/template/src/components/basic/Picker/PickerHeader.tsx +130 -0
  97. package/template/src/components/basic/Picker/PickerItem.tsx +105 -0
  98. package/template/src/components/basic/Picker/PickerItemsList.tsx +135 -0
  99. package/template/src/components/basic/Picker/PickerPresenter.ts +54 -0
  100. package/template/src/components/basic/Picker/hooks/useImperativePickerHandle.ts +27 -0
  101. package/template/src/components/basic/Picker/hooks/usePickerLabel.ts +74 -0
  102. package/template/src/components/basic/Picker/hooks/usePickerSearch.ts +37 -0
  103. package/template/src/components/basic/Picker/hooks/usePickerSelection.ts +57 -0
  104. package/template/src/components/basic/Picker/index.tsx +284 -0
  105. package/template/src/components/basic/Picker/types.tsx +229 -0
  106. package/template/src/components/basic/PressableOpacity/index.tsx +20 -0
  107. package/template/src/components/basic/RootDialog/Dialog.tsx +246 -0
  108. package/template/src/components/basic/RootDialog/Manager.tsx +110 -0
  109. package/template/src/components/basic/RootDialog/animations/Animation.ts +29 -0
  110. package/template/src/components/basic/RootDialog/animations/FadeAnimation.ts +40 -0
  111. package/template/src/components/basic/RootDialog/animations/ScaleAnimation.ts +37 -0
  112. package/template/src/components/basic/RootDialog/animations/SlideAnimation.ts +89 -0
  113. package/template/src/components/basic/RootDialog/components/Backdrop.tsx +60 -0
  114. package/template/src/components/basic/RootDialog/components/BaseDialog.tsx +564 -0
  115. package/template/src/components/basic/RootDialog/components/BottomDialog.tsx +32 -0
  116. package/template/src/components/basic/RootDialog/components/DialogButton.tsx +87 -0
  117. package/template/src/components/basic/RootDialog/components/DialogContent.tsx +26 -0
  118. package/template/src/components/basic/RootDialog/components/DialogContext.tsx +8 -0
  119. package/template/src/components/basic/RootDialog/components/DialogFooter.tsx +42 -0
  120. package/template/src/components/basic/RootDialog/components/DialogTitle.tsx +53 -0
  121. package/template/src/components/basic/RootDialog/components/DraggableView.tsx +271 -0
  122. package/template/src/components/basic/RootDialog/index.ts +21 -0
  123. package/template/src/components/basic/RootDialog/type.ts +102 -0
  124. package/template/src/components/basic/Text/index.tsx +8 -0
  125. package/template/src/components/basic/index.ts +35 -0
  126. package/template/src/configs/constants/type/APIStatus.type.ts +8 -0
  127. package/template/src/configs/constants/type/Locale.type.ts +7 -0
  128. package/template/src/configs/constants/type/StorageKey.type.ts +7 -0
  129. package/template/src/configs/constants/type/ThemeType.type.ts +6 -0
  130. package/template/src/configs/constants/type/index.ts +11 -0
  131. package/template/src/configs/index.ts +22 -0
  132. package/template/src/contexts/ThemeContext.ts +6 -0
  133. package/template/src/hooks/useAppLoading.ts +26 -0
  134. package/template/src/hooks/useAppState.ts +36 -0
  135. package/template/src/hooks/useArray.ts +47 -0
  136. package/template/src/hooks/useAsync.ts +42 -0
  137. package/template/src/hooks/useAsyncStorage.ts +41 -0
  138. package/template/src/hooks/useBoolean.ts +21 -0
  139. package/template/src/hooks/useBuildTheme.ts +249 -0
  140. package/template/src/hooks/useCountDown.ts +111 -0
  141. package/template/src/hooks/useCounter.ts +27 -0
  142. package/template/src/hooks/useDebounce.ts +25 -0
  143. package/template/src/hooks/useDebouncedValidate.ts +32 -0
  144. package/template/src/hooks/useDebugInformation.ts +38 -0
  145. package/template/src/hooks/useDeviceToken.ts +20 -0
  146. package/template/src/hooks/useEncryptedStorage.ts +41 -0
  147. package/template/src/hooks/useFontFamily.ts +13 -0
  148. package/template/src/hooks/useHttp.ts +18 -0
  149. package/template/src/hooks/useInterval.ts +24 -0
  150. package/template/src/hooks/useIsForeground.ts +17 -0
  151. package/template/src/hooks/useMMKVStorage.ts +0 -0
  152. package/template/src/hooks/usePrevious.ts +12 -0
  153. package/template/src/hooks/useRenderCount.ts +10 -0
  154. package/template/src/hooks/useTheme.ts +17 -0
  155. package/template/src/hooks/useTimeCountDown.ts +91 -0
  156. package/template/src/index.tsx +65 -0
  157. package/template/src/infrastructures/NetClient/AbstractClient.ts +66 -0
  158. package/template/src/infrastructures/NetClient/ApiResponse.ts +16 -0
  159. package/template/src/infrastructures/NetClient/ApisauceClient.ts +76 -0
  160. package/template/src/infrastructures/NetClient/AxiosClient.ts +80 -0
  161. package/template/src/infrastructures/NetClient/FetchNetClient.ts +120 -0
  162. package/template/src/infrastructures/NetClient/config.ts +3 -0
  163. package/template/src/infrastructures/NetClient/interfaces/INetClient.ts +6 -0
  164. package/template/src/infrastructures/Storage/IStorage.ts +7 -0
  165. package/template/src/infrastructures/Storage/MMKVStorage.ts +41 -0
  166. package/template/src/infrastructures/common/Timeout.ts +27 -0
  167. package/template/src/infrastructures/common/colorUtils.ts +82 -0
  168. package/template/src/infrastructures/common/dateUtils.ts +39 -0
  169. package/template/src/infrastructures/common/logger.ts +115 -0
  170. package/template/src/locales/en-US/general.json +26 -0
  171. package/template/src/locales/en-US/index.ts +9 -0
  172. package/template/src/locales/en-US/screens.json +4 -0
  173. package/template/src/locales/en-US/setting.json +3 -0
  174. package/template/src/locales/i18n.ts +109 -0
  175. package/template/src/locales/zh-TW/general.json +26 -0
  176. package/template/src/locales/zh-TW/index.ts +9 -0
  177. package/template/src/locales/zh-TW/screens.json +4 -0
  178. package/template/src/locales/zh-TW/setting.json +3 -0
  179. package/template/src/models/index.ts +5 -0
  180. package/template/src/models/request.model.ts +50 -0
  181. package/template/src/navigators/DrawerNav/DrawerContent.tsx +66 -0
  182. package/template/src/navigators/DrawerNav/DrawerItem.tsx +261 -0
  183. package/template/src/navigators/DrawerNav/index.tsx +39 -0
  184. package/template/src/navigators/DrawerNav/props.ts +12 -0
  185. package/template/src/navigators/DrawerNav/types.ts +8 -0
  186. package/template/src/navigators/MainBottomTabNav/index.tsx +83 -0
  187. package/template/src/navigators/MainBottomTabNav/props.ts +16 -0
  188. package/template/src/navigators/MainBottomTabNav/types.ts +6 -0
  189. package/template/src/navigators/RootStack.tsx +43 -0
  190. package/template/src/navigators/index.tsx +40 -0
  191. package/template/src/navigators/props.ts +14 -0
  192. package/template/src/navigators/types.ts +18 -0
  193. package/template/src/navigators/utils.ts +68 -0
  194. package/template/src/redux/api/api.ts +41 -0
  195. package/template/src/redux/reducers/appSlice.ts +26 -0
  196. package/template/src/redux/reducers/index.ts +21 -0
  197. package/template/src/redux/reducers/nonPersistSlice.ts +51 -0
  198. package/template/src/redux/reducers/settingSlice.ts +48 -0
  199. package/template/src/redux/reducers/themeSlice.ts +55 -0
  200. package/template/src/redux/saga/index.ts +5 -0
  201. package/template/src/redux/saga/settingSaga.ts +21 -0
  202. package/template/src/redux/selectors/app.ts +9 -0
  203. package/template/src/redux/selectors/nonPersist.ts +23 -0
  204. package/template/src/redux/selectors/setting.ts +29 -0
  205. package/template/src/redux/selectors/theme.ts +13 -0
  206. package/template/src/redux/store/index.ts +79 -0
  207. package/template/src/redux/store/types.d.ts +5 -0
  208. package/template/src/screens/Home/index.tsx +146 -0
  209. package/template/src/screens/Settings/components/Item.tsx +45 -0
  210. package/template/src/screens/Settings/index.tsx +97 -0
  211. package/template/src/screens/Splash/index.tsx +53 -0
  212. package/template/src/services/Dialogs.tsx +226 -0
  213. package/template/src/services/PermissionCheck.ts +257 -0
  214. package/template/src/theme/Common.ts +48 -0
  215. package/template/src/theme/Fonts.ts +196 -0
  216. package/template/src/theme/Gutters.ts +63 -0
  217. package/template/src/theme/Icons.ts +28 -0
  218. package/template/src/theme/Images.ts +13 -0
  219. package/template/src/theme/Layout.ts +106 -0
  220. package/template/src/theme/Variables.ts +167 -0
  221. package/template/src/theme/components/Buttons.ts +37 -0
  222. package/template/src/theme/index.ts +8 -0
  223. package/template/src/theme/metrics.ts +57 -0
  224. package/template/src/theme/themes/default_dark/Images.ts +7 -0
  225. package/template/src/theme/themes/default_dark/Variables.ts +84 -0
  226. package/template/src/theme/themes/default_dark/index.ts +2 -0
  227. package/template/src/theme/themes/index.ts +8 -0
  228. package/template/src/theme/types.ts +152 -0
  229. package/template/src/utils/encrypt-helper.ts +118 -0
  230. package/template/src/utils/index.ts +76 -0
  231. package/template/src/utils/sys-info-data.ts +17 -0
  232. package/template/tsconfig.json +44 -0
  233. package/template.config.js +8 -0
@@ -0,0 +1,3669 @@
1
+ PODS:
2
+ - boost (1.84.0)
3
+ - BVLinearGradient (2.8.3):
4
+ - React-Core
5
+ - DoubleConversion (1.1.6)
6
+ - fast_float (8.0.0)
7
+ - FBLazyVector (0.83.1)
8
+ - fmt (11.0.2)
9
+ - glog (0.3.5)
10
+ - hermes-engine (0.14.0):
11
+ - hermes-engine/Pre-built (= 0.14.0)
12
+ - hermes-engine/Pre-built (0.14.0)
13
+ - RCT-Folly (2024.11.18.00):
14
+ - boost
15
+ - DoubleConversion
16
+ - fast_float (= 8.0.0)
17
+ - fmt (= 11.0.2)
18
+ - glog
19
+ - RCT-Folly/Default (= 2024.11.18.00)
20
+ - RCT-Folly/Default (2024.11.18.00):
21
+ - boost
22
+ - DoubleConversion
23
+ - fast_float (= 8.0.0)
24
+ - fmt (= 11.0.2)
25
+ - glog
26
+ - RCT-Folly/Fabric (2024.11.18.00):
27
+ - boost
28
+ - DoubleConversion
29
+ - fast_float (= 8.0.0)
30
+ - fmt (= 11.0.2)
31
+ - glog
32
+ - RCTDeprecation (0.83.1)
33
+ - RCTRequired (0.83.1)
34
+ - RCTSwiftUI (0.83.1)
35
+ - RCTSwiftUIWrapper (0.83.1):
36
+ - RCTSwiftUI
37
+ - RCTTypeSafety (0.83.1):
38
+ - FBLazyVector (= 0.83.1)
39
+ - RCTRequired (= 0.83.1)
40
+ - React-Core (= 0.83.1)
41
+ - React (0.83.1):
42
+ - React-Core (= 0.83.1)
43
+ - React-Core/DevSupport (= 0.83.1)
44
+ - React-Core/RCTWebSocket (= 0.83.1)
45
+ - React-RCTActionSheet (= 0.83.1)
46
+ - React-RCTAnimation (= 0.83.1)
47
+ - React-RCTBlob (= 0.83.1)
48
+ - React-RCTImage (= 0.83.1)
49
+ - React-RCTLinking (= 0.83.1)
50
+ - React-RCTNetwork (= 0.83.1)
51
+ - React-RCTSettings (= 0.83.1)
52
+ - React-RCTText (= 0.83.1)
53
+ - React-RCTVibration (= 0.83.1)
54
+ - React-callinvoker (0.83.1)
55
+ - React-Core (0.83.1):
56
+ - boost
57
+ - DoubleConversion
58
+ - fast_float
59
+ - fmt
60
+ - glog
61
+ - hermes-engine
62
+ - RCT-Folly
63
+ - RCT-Folly/Fabric
64
+ - RCTDeprecation
65
+ - React-Core/Default (= 0.83.1)
66
+ - React-cxxreact
67
+ - React-featureflags
68
+ - React-hermes
69
+ - React-jsi
70
+ - React-jsiexecutor
71
+ - React-jsinspector
72
+ - React-jsinspectorcdp
73
+ - React-jsitooling
74
+ - React-perflogger
75
+ - React-runtimeexecutor
76
+ - React-runtimescheduler
77
+ - React-utils
78
+ - SocketRocket
79
+ - Yoga
80
+ - React-Core/CoreModulesHeaders (0.83.1):
81
+ - boost
82
+ - DoubleConversion
83
+ - fast_float
84
+ - fmt
85
+ - glog
86
+ - hermes-engine
87
+ - RCT-Folly
88
+ - RCT-Folly/Fabric
89
+ - RCTDeprecation
90
+ - React-Core/Default
91
+ - React-cxxreact
92
+ - React-featureflags
93
+ - React-hermes
94
+ - React-jsi
95
+ - React-jsiexecutor
96
+ - React-jsinspector
97
+ - React-jsinspectorcdp
98
+ - React-jsitooling
99
+ - React-perflogger
100
+ - React-runtimeexecutor
101
+ - React-runtimescheduler
102
+ - React-utils
103
+ - SocketRocket
104
+ - Yoga
105
+ - React-Core/Default (0.83.1):
106
+ - boost
107
+ - DoubleConversion
108
+ - fast_float
109
+ - fmt
110
+ - glog
111
+ - hermes-engine
112
+ - RCT-Folly
113
+ - RCT-Folly/Fabric
114
+ - RCTDeprecation
115
+ - React-cxxreact
116
+ - React-featureflags
117
+ - React-hermes
118
+ - React-jsi
119
+ - React-jsiexecutor
120
+ - React-jsinspector
121
+ - React-jsinspectorcdp
122
+ - React-jsitooling
123
+ - React-perflogger
124
+ - React-runtimeexecutor
125
+ - React-runtimescheduler
126
+ - React-utils
127
+ - SocketRocket
128
+ - Yoga
129
+ - React-Core/DevSupport (0.83.1):
130
+ - boost
131
+ - DoubleConversion
132
+ - fast_float
133
+ - fmt
134
+ - glog
135
+ - hermes-engine
136
+ - RCT-Folly
137
+ - RCT-Folly/Fabric
138
+ - RCTDeprecation
139
+ - React-Core/Default (= 0.83.1)
140
+ - React-Core/RCTWebSocket (= 0.83.1)
141
+ - React-cxxreact
142
+ - React-featureflags
143
+ - React-hermes
144
+ - React-jsi
145
+ - React-jsiexecutor
146
+ - React-jsinspector
147
+ - React-jsinspectorcdp
148
+ - React-jsitooling
149
+ - React-perflogger
150
+ - React-runtimeexecutor
151
+ - React-runtimescheduler
152
+ - React-utils
153
+ - SocketRocket
154
+ - Yoga
155
+ - React-Core/RCTActionSheetHeaders (0.83.1):
156
+ - boost
157
+ - DoubleConversion
158
+ - fast_float
159
+ - fmt
160
+ - glog
161
+ - hermes-engine
162
+ - RCT-Folly
163
+ - RCT-Folly/Fabric
164
+ - RCTDeprecation
165
+ - React-Core/Default
166
+ - React-cxxreact
167
+ - React-featureflags
168
+ - React-hermes
169
+ - React-jsi
170
+ - React-jsiexecutor
171
+ - React-jsinspector
172
+ - React-jsinspectorcdp
173
+ - React-jsitooling
174
+ - React-perflogger
175
+ - React-runtimeexecutor
176
+ - React-runtimescheduler
177
+ - React-utils
178
+ - SocketRocket
179
+ - Yoga
180
+ - React-Core/RCTAnimationHeaders (0.83.1):
181
+ - boost
182
+ - DoubleConversion
183
+ - fast_float
184
+ - fmt
185
+ - glog
186
+ - hermes-engine
187
+ - RCT-Folly
188
+ - RCT-Folly/Fabric
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-jsinspectorcdp
198
+ - React-jsitooling
199
+ - React-perflogger
200
+ - React-runtimeexecutor
201
+ - React-runtimescheduler
202
+ - React-utils
203
+ - SocketRocket
204
+ - Yoga
205
+ - React-Core/RCTBlobHeaders (0.83.1):
206
+ - boost
207
+ - DoubleConversion
208
+ - fast_float
209
+ - fmt
210
+ - glog
211
+ - hermes-engine
212
+ - RCT-Folly
213
+ - RCT-Folly/Fabric
214
+ - RCTDeprecation
215
+ - React-Core/Default
216
+ - React-cxxreact
217
+ - React-featureflags
218
+ - React-hermes
219
+ - React-jsi
220
+ - React-jsiexecutor
221
+ - React-jsinspector
222
+ - React-jsinspectorcdp
223
+ - React-jsitooling
224
+ - React-perflogger
225
+ - React-runtimeexecutor
226
+ - React-runtimescheduler
227
+ - React-utils
228
+ - SocketRocket
229
+ - Yoga
230
+ - React-Core/RCTImageHeaders (0.83.1):
231
+ - boost
232
+ - DoubleConversion
233
+ - fast_float
234
+ - fmt
235
+ - glog
236
+ - hermes-engine
237
+ - RCT-Folly
238
+ - RCT-Folly/Fabric
239
+ - RCTDeprecation
240
+ - React-Core/Default
241
+ - React-cxxreact
242
+ - React-featureflags
243
+ - React-hermes
244
+ - React-jsi
245
+ - React-jsiexecutor
246
+ - React-jsinspector
247
+ - React-jsinspectorcdp
248
+ - React-jsitooling
249
+ - React-perflogger
250
+ - React-runtimeexecutor
251
+ - React-runtimescheduler
252
+ - React-utils
253
+ - SocketRocket
254
+ - Yoga
255
+ - React-Core/RCTLinkingHeaders (0.83.1):
256
+ - boost
257
+ - DoubleConversion
258
+ - fast_float
259
+ - fmt
260
+ - glog
261
+ - hermes-engine
262
+ - RCT-Folly
263
+ - RCT-Folly/Fabric
264
+ - RCTDeprecation
265
+ - React-Core/Default
266
+ - React-cxxreact
267
+ - React-featureflags
268
+ - React-hermes
269
+ - React-jsi
270
+ - React-jsiexecutor
271
+ - React-jsinspector
272
+ - React-jsinspectorcdp
273
+ - React-jsitooling
274
+ - React-perflogger
275
+ - React-runtimeexecutor
276
+ - React-runtimescheduler
277
+ - React-utils
278
+ - SocketRocket
279
+ - Yoga
280
+ - React-Core/RCTNetworkHeaders (0.83.1):
281
+ - boost
282
+ - DoubleConversion
283
+ - fast_float
284
+ - fmt
285
+ - glog
286
+ - hermes-engine
287
+ - RCT-Folly
288
+ - RCT-Folly/Fabric
289
+ - RCTDeprecation
290
+ - React-Core/Default
291
+ - React-cxxreact
292
+ - React-featureflags
293
+ - React-hermes
294
+ - React-jsi
295
+ - React-jsiexecutor
296
+ - React-jsinspector
297
+ - React-jsinspectorcdp
298
+ - React-jsitooling
299
+ - React-perflogger
300
+ - React-runtimeexecutor
301
+ - React-runtimescheduler
302
+ - React-utils
303
+ - SocketRocket
304
+ - Yoga
305
+ - React-Core/RCTSettingsHeaders (0.83.1):
306
+ - boost
307
+ - DoubleConversion
308
+ - fast_float
309
+ - fmt
310
+ - glog
311
+ - hermes-engine
312
+ - RCT-Folly
313
+ - RCT-Folly/Fabric
314
+ - RCTDeprecation
315
+ - React-Core/Default
316
+ - React-cxxreact
317
+ - React-featureflags
318
+ - React-hermes
319
+ - React-jsi
320
+ - React-jsiexecutor
321
+ - React-jsinspector
322
+ - React-jsinspectorcdp
323
+ - React-jsitooling
324
+ - React-perflogger
325
+ - React-runtimeexecutor
326
+ - React-runtimescheduler
327
+ - React-utils
328
+ - SocketRocket
329
+ - Yoga
330
+ - React-Core/RCTTextHeaders (0.83.1):
331
+ - boost
332
+ - DoubleConversion
333
+ - fast_float
334
+ - fmt
335
+ - glog
336
+ - hermes-engine
337
+ - RCT-Folly
338
+ - RCT-Folly/Fabric
339
+ - RCTDeprecation
340
+ - React-Core/Default
341
+ - React-cxxreact
342
+ - React-featureflags
343
+ - React-hermes
344
+ - React-jsi
345
+ - React-jsiexecutor
346
+ - React-jsinspector
347
+ - React-jsinspectorcdp
348
+ - React-jsitooling
349
+ - React-perflogger
350
+ - React-runtimeexecutor
351
+ - React-runtimescheduler
352
+ - React-utils
353
+ - SocketRocket
354
+ - Yoga
355
+ - React-Core/RCTVibrationHeaders (0.83.1):
356
+ - boost
357
+ - DoubleConversion
358
+ - fast_float
359
+ - fmt
360
+ - glog
361
+ - hermes-engine
362
+ - RCT-Folly
363
+ - RCT-Folly/Fabric
364
+ - RCTDeprecation
365
+ - React-Core/Default
366
+ - React-cxxreact
367
+ - React-featureflags
368
+ - React-hermes
369
+ - React-jsi
370
+ - React-jsiexecutor
371
+ - React-jsinspector
372
+ - React-jsinspectorcdp
373
+ - React-jsitooling
374
+ - React-perflogger
375
+ - React-runtimeexecutor
376
+ - React-runtimescheduler
377
+ - React-utils
378
+ - SocketRocket
379
+ - Yoga
380
+ - React-Core/RCTWebSocket (0.83.1):
381
+ - boost
382
+ - DoubleConversion
383
+ - fast_float
384
+ - fmt
385
+ - glog
386
+ - hermes-engine
387
+ - RCT-Folly
388
+ - RCT-Folly/Fabric
389
+ - RCTDeprecation
390
+ - React-Core/Default (= 0.83.1)
391
+ - React-cxxreact
392
+ - React-featureflags
393
+ - React-hermes
394
+ - React-jsi
395
+ - React-jsiexecutor
396
+ - React-jsinspector
397
+ - React-jsinspectorcdp
398
+ - React-jsitooling
399
+ - React-perflogger
400
+ - React-runtimeexecutor
401
+ - React-runtimescheduler
402
+ - React-utils
403
+ - SocketRocket
404
+ - Yoga
405
+ - React-CoreModules (0.83.1):
406
+ - boost
407
+ - DoubleConversion
408
+ - fast_float
409
+ - fmt
410
+ - glog
411
+ - RCT-Folly
412
+ - RCT-Folly/Fabric
413
+ - RCTTypeSafety (= 0.83.1)
414
+ - React-Core/CoreModulesHeaders (= 0.83.1)
415
+ - React-debug
416
+ - React-jsi (= 0.83.1)
417
+ - React-jsinspector
418
+ - React-jsinspectorcdp
419
+ - React-jsinspectortracing
420
+ - React-NativeModulesApple
421
+ - React-RCTBlob
422
+ - React-RCTFBReactNativeSpec
423
+ - React-RCTImage (= 0.83.1)
424
+ - React-runtimeexecutor
425
+ - React-utils
426
+ - ReactCommon
427
+ - SocketRocket
428
+ - React-cxxreact (0.83.1):
429
+ - boost
430
+ - DoubleConversion
431
+ - fast_float
432
+ - fmt
433
+ - glog
434
+ - hermes-engine
435
+ - RCT-Folly
436
+ - RCT-Folly/Fabric
437
+ - React-callinvoker (= 0.83.1)
438
+ - React-debug (= 0.83.1)
439
+ - React-jsi (= 0.83.1)
440
+ - React-jsinspector
441
+ - React-jsinspectorcdp
442
+ - React-jsinspectortracing
443
+ - React-logger (= 0.83.1)
444
+ - React-perflogger (= 0.83.1)
445
+ - React-runtimeexecutor
446
+ - React-timing (= 0.83.1)
447
+ - React-utils
448
+ - SocketRocket
449
+ - React-debug (0.83.1)
450
+ - React-defaultsnativemodule (0.83.1):
451
+ - boost
452
+ - DoubleConversion
453
+ - fast_float
454
+ - fmt
455
+ - glog
456
+ - hermes-engine
457
+ - RCT-Folly
458
+ - RCT-Folly/Fabric
459
+ - React-domnativemodule
460
+ - React-featureflags
461
+ - React-featureflagsnativemodule
462
+ - React-idlecallbacksnativemodule
463
+ - React-intersectionobservernativemodule
464
+ - React-jsi
465
+ - React-jsiexecutor
466
+ - React-microtasksnativemodule
467
+ - React-RCTFBReactNativeSpec
468
+ - React-webperformancenativemodule
469
+ - SocketRocket
470
+ - Yoga
471
+ - React-domnativemodule (0.83.1):
472
+ - boost
473
+ - DoubleConversion
474
+ - fast_float
475
+ - fmt
476
+ - glog
477
+ - hermes-engine
478
+ - RCT-Folly
479
+ - RCT-Folly/Fabric
480
+ - React-Fabric
481
+ - React-Fabric/bridging
482
+ - React-FabricComponents
483
+ - React-graphics
484
+ - React-jsi
485
+ - React-jsiexecutor
486
+ - React-RCTFBReactNativeSpec
487
+ - React-runtimeexecutor
488
+ - ReactCommon/turbomodule/core
489
+ - SocketRocket
490
+ - Yoga
491
+ - React-Fabric (0.83.1):
492
+ - boost
493
+ - DoubleConversion
494
+ - fast_float
495
+ - fmt
496
+ - glog
497
+ - hermes-engine
498
+ - RCT-Folly
499
+ - RCT-Folly/Fabric
500
+ - RCTRequired
501
+ - RCTTypeSafety
502
+ - React-Core
503
+ - React-cxxreact
504
+ - React-debug
505
+ - React-Fabric/animated (= 0.83.1)
506
+ - React-Fabric/animationbackend (= 0.83.1)
507
+ - React-Fabric/animations (= 0.83.1)
508
+ - React-Fabric/attributedstring (= 0.83.1)
509
+ - React-Fabric/bridging (= 0.83.1)
510
+ - React-Fabric/componentregistry (= 0.83.1)
511
+ - React-Fabric/componentregistrynative (= 0.83.1)
512
+ - React-Fabric/components (= 0.83.1)
513
+ - React-Fabric/consistency (= 0.83.1)
514
+ - React-Fabric/core (= 0.83.1)
515
+ - React-Fabric/dom (= 0.83.1)
516
+ - React-Fabric/imagemanager (= 0.83.1)
517
+ - React-Fabric/leakchecker (= 0.83.1)
518
+ - React-Fabric/mounting (= 0.83.1)
519
+ - React-Fabric/observers (= 0.83.1)
520
+ - React-Fabric/scheduler (= 0.83.1)
521
+ - React-Fabric/telemetry (= 0.83.1)
522
+ - React-Fabric/templateprocessor (= 0.83.1)
523
+ - React-Fabric/uimanager (= 0.83.1)
524
+ - React-featureflags
525
+ - React-graphics
526
+ - React-jsi
527
+ - React-jsiexecutor
528
+ - React-logger
529
+ - React-rendererdebug
530
+ - React-runtimeexecutor
531
+ - React-runtimescheduler
532
+ - React-utils
533
+ - ReactCommon/turbomodule/core
534
+ - SocketRocket
535
+ - React-Fabric/animated (0.83.1):
536
+ - boost
537
+ - DoubleConversion
538
+ - fast_float
539
+ - fmt
540
+ - glog
541
+ - hermes-engine
542
+ - RCT-Folly
543
+ - RCT-Folly/Fabric
544
+ - RCTRequired
545
+ - RCTTypeSafety
546
+ - React-Core
547
+ - React-cxxreact
548
+ - React-debug
549
+ - React-featureflags
550
+ - React-graphics
551
+ - React-jsi
552
+ - React-jsiexecutor
553
+ - React-logger
554
+ - React-rendererdebug
555
+ - React-runtimeexecutor
556
+ - React-runtimescheduler
557
+ - React-utils
558
+ - ReactCommon/turbomodule/core
559
+ - SocketRocket
560
+ - React-Fabric/animationbackend (0.83.1):
561
+ - boost
562
+ - DoubleConversion
563
+ - fast_float
564
+ - fmt
565
+ - glog
566
+ - hermes-engine
567
+ - RCT-Folly
568
+ - RCT-Folly/Fabric
569
+ - RCTRequired
570
+ - RCTTypeSafety
571
+ - React-Core
572
+ - React-cxxreact
573
+ - React-debug
574
+ - React-featureflags
575
+ - React-graphics
576
+ - React-jsi
577
+ - React-jsiexecutor
578
+ - React-logger
579
+ - React-rendererdebug
580
+ - React-runtimeexecutor
581
+ - React-runtimescheduler
582
+ - React-utils
583
+ - ReactCommon/turbomodule/core
584
+ - SocketRocket
585
+ - React-Fabric/animations (0.83.1):
586
+ - boost
587
+ - DoubleConversion
588
+ - fast_float
589
+ - fmt
590
+ - glog
591
+ - hermes-engine
592
+ - RCT-Folly
593
+ - RCT-Folly/Fabric
594
+ - RCTRequired
595
+ - RCTTypeSafety
596
+ - React-Core
597
+ - React-cxxreact
598
+ - React-debug
599
+ - React-featureflags
600
+ - React-graphics
601
+ - React-jsi
602
+ - React-jsiexecutor
603
+ - React-logger
604
+ - React-rendererdebug
605
+ - React-runtimeexecutor
606
+ - React-runtimescheduler
607
+ - React-utils
608
+ - ReactCommon/turbomodule/core
609
+ - SocketRocket
610
+ - React-Fabric/attributedstring (0.83.1):
611
+ - boost
612
+ - DoubleConversion
613
+ - fast_float
614
+ - fmt
615
+ - glog
616
+ - hermes-engine
617
+ - RCT-Folly
618
+ - RCT-Folly/Fabric
619
+ - RCTRequired
620
+ - RCTTypeSafety
621
+ - React-Core
622
+ - React-cxxreact
623
+ - React-debug
624
+ - React-featureflags
625
+ - React-graphics
626
+ - React-jsi
627
+ - React-jsiexecutor
628
+ - React-logger
629
+ - React-rendererdebug
630
+ - React-runtimeexecutor
631
+ - React-runtimescheduler
632
+ - React-utils
633
+ - ReactCommon/turbomodule/core
634
+ - SocketRocket
635
+ - React-Fabric/bridging (0.83.1):
636
+ - boost
637
+ - DoubleConversion
638
+ - fast_float
639
+ - fmt
640
+ - glog
641
+ - hermes-engine
642
+ - RCT-Folly
643
+ - RCT-Folly/Fabric
644
+ - RCTRequired
645
+ - RCTTypeSafety
646
+ - React-Core
647
+ - React-cxxreact
648
+ - React-debug
649
+ - React-featureflags
650
+ - React-graphics
651
+ - React-jsi
652
+ - React-jsiexecutor
653
+ - React-logger
654
+ - React-rendererdebug
655
+ - React-runtimeexecutor
656
+ - React-runtimescheduler
657
+ - React-utils
658
+ - ReactCommon/turbomodule/core
659
+ - SocketRocket
660
+ - React-Fabric/componentregistry (0.83.1):
661
+ - boost
662
+ - DoubleConversion
663
+ - fast_float
664
+ - fmt
665
+ - glog
666
+ - hermes-engine
667
+ - RCT-Folly
668
+ - RCT-Folly/Fabric
669
+ - RCTRequired
670
+ - RCTTypeSafety
671
+ - React-Core
672
+ - React-cxxreact
673
+ - React-debug
674
+ - React-featureflags
675
+ - React-graphics
676
+ - React-jsi
677
+ - React-jsiexecutor
678
+ - React-logger
679
+ - React-rendererdebug
680
+ - React-runtimeexecutor
681
+ - React-runtimescheduler
682
+ - React-utils
683
+ - ReactCommon/turbomodule/core
684
+ - SocketRocket
685
+ - React-Fabric/componentregistrynative (0.83.1):
686
+ - boost
687
+ - DoubleConversion
688
+ - fast_float
689
+ - fmt
690
+ - glog
691
+ - hermes-engine
692
+ - RCT-Folly
693
+ - RCT-Folly/Fabric
694
+ - RCTRequired
695
+ - RCTTypeSafety
696
+ - React-Core
697
+ - React-cxxreact
698
+ - React-debug
699
+ - React-featureflags
700
+ - React-graphics
701
+ - React-jsi
702
+ - React-jsiexecutor
703
+ - React-logger
704
+ - React-rendererdebug
705
+ - React-runtimeexecutor
706
+ - React-runtimescheduler
707
+ - React-utils
708
+ - ReactCommon/turbomodule/core
709
+ - SocketRocket
710
+ - React-Fabric/components (0.83.1):
711
+ - boost
712
+ - DoubleConversion
713
+ - fast_float
714
+ - fmt
715
+ - glog
716
+ - hermes-engine
717
+ - RCT-Folly
718
+ - RCT-Folly/Fabric
719
+ - RCTRequired
720
+ - RCTTypeSafety
721
+ - React-Core
722
+ - React-cxxreact
723
+ - React-debug
724
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.83.1)
725
+ - React-Fabric/components/root (= 0.83.1)
726
+ - React-Fabric/components/scrollview (= 0.83.1)
727
+ - React-Fabric/components/view (= 0.83.1)
728
+ - React-featureflags
729
+ - React-graphics
730
+ - React-jsi
731
+ - React-jsiexecutor
732
+ - React-logger
733
+ - React-rendererdebug
734
+ - React-runtimeexecutor
735
+ - React-runtimescheduler
736
+ - React-utils
737
+ - ReactCommon/turbomodule/core
738
+ - SocketRocket
739
+ - React-Fabric/components/legacyviewmanagerinterop (0.83.1):
740
+ - boost
741
+ - DoubleConversion
742
+ - fast_float
743
+ - fmt
744
+ - glog
745
+ - hermes-engine
746
+ - RCT-Folly
747
+ - RCT-Folly/Fabric
748
+ - RCTRequired
749
+ - RCTTypeSafety
750
+ - React-Core
751
+ - React-cxxreact
752
+ - React-debug
753
+ - React-featureflags
754
+ - React-graphics
755
+ - React-jsi
756
+ - React-jsiexecutor
757
+ - React-logger
758
+ - React-rendererdebug
759
+ - React-runtimeexecutor
760
+ - React-runtimescheduler
761
+ - React-utils
762
+ - ReactCommon/turbomodule/core
763
+ - SocketRocket
764
+ - React-Fabric/components/root (0.83.1):
765
+ - boost
766
+ - DoubleConversion
767
+ - fast_float
768
+ - fmt
769
+ - glog
770
+ - hermes-engine
771
+ - RCT-Folly
772
+ - RCT-Folly/Fabric
773
+ - RCTRequired
774
+ - RCTTypeSafety
775
+ - React-Core
776
+ - React-cxxreact
777
+ - React-debug
778
+ - React-featureflags
779
+ - React-graphics
780
+ - React-jsi
781
+ - React-jsiexecutor
782
+ - React-logger
783
+ - React-rendererdebug
784
+ - React-runtimeexecutor
785
+ - React-runtimescheduler
786
+ - React-utils
787
+ - ReactCommon/turbomodule/core
788
+ - SocketRocket
789
+ - React-Fabric/components/scrollview (0.83.1):
790
+ - boost
791
+ - DoubleConversion
792
+ - fast_float
793
+ - fmt
794
+ - glog
795
+ - hermes-engine
796
+ - RCT-Folly
797
+ - RCT-Folly/Fabric
798
+ - RCTRequired
799
+ - RCTTypeSafety
800
+ - React-Core
801
+ - React-cxxreact
802
+ - React-debug
803
+ - React-featureflags
804
+ - React-graphics
805
+ - React-jsi
806
+ - React-jsiexecutor
807
+ - React-logger
808
+ - React-rendererdebug
809
+ - React-runtimeexecutor
810
+ - React-runtimescheduler
811
+ - React-utils
812
+ - ReactCommon/turbomodule/core
813
+ - SocketRocket
814
+ - React-Fabric/components/view (0.83.1):
815
+ - boost
816
+ - DoubleConversion
817
+ - fast_float
818
+ - fmt
819
+ - glog
820
+ - hermes-engine
821
+ - RCT-Folly
822
+ - RCT-Folly/Fabric
823
+ - RCTRequired
824
+ - RCTTypeSafety
825
+ - React-Core
826
+ - React-cxxreact
827
+ - React-debug
828
+ - React-featureflags
829
+ - React-graphics
830
+ - React-jsi
831
+ - React-jsiexecutor
832
+ - React-logger
833
+ - React-renderercss
834
+ - React-rendererdebug
835
+ - React-runtimeexecutor
836
+ - React-runtimescheduler
837
+ - React-utils
838
+ - ReactCommon/turbomodule/core
839
+ - SocketRocket
840
+ - Yoga
841
+ - React-Fabric/consistency (0.83.1):
842
+ - boost
843
+ - DoubleConversion
844
+ - fast_float
845
+ - fmt
846
+ - glog
847
+ - hermes-engine
848
+ - RCT-Folly
849
+ - RCT-Folly/Fabric
850
+ - RCTRequired
851
+ - RCTTypeSafety
852
+ - React-Core
853
+ - React-cxxreact
854
+ - React-debug
855
+ - React-featureflags
856
+ - React-graphics
857
+ - React-jsi
858
+ - React-jsiexecutor
859
+ - React-logger
860
+ - React-rendererdebug
861
+ - React-runtimeexecutor
862
+ - React-runtimescheduler
863
+ - React-utils
864
+ - ReactCommon/turbomodule/core
865
+ - SocketRocket
866
+ - React-Fabric/core (0.83.1):
867
+ - boost
868
+ - DoubleConversion
869
+ - fast_float
870
+ - fmt
871
+ - glog
872
+ - hermes-engine
873
+ - RCT-Folly
874
+ - RCT-Folly/Fabric
875
+ - RCTRequired
876
+ - RCTTypeSafety
877
+ - React-Core
878
+ - React-cxxreact
879
+ - React-debug
880
+ - React-featureflags
881
+ - React-graphics
882
+ - React-jsi
883
+ - React-jsiexecutor
884
+ - React-logger
885
+ - React-rendererdebug
886
+ - React-runtimeexecutor
887
+ - React-runtimescheduler
888
+ - React-utils
889
+ - ReactCommon/turbomodule/core
890
+ - SocketRocket
891
+ - React-Fabric/dom (0.83.1):
892
+ - boost
893
+ - DoubleConversion
894
+ - fast_float
895
+ - fmt
896
+ - glog
897
+ - hermes-engine
898
+ - RCT-Folly
899
+ - RCT-Folly/Fabric
900
+ - RCTRequired
901
+ - RCTTypeSafety
902
+ - React-Core
903
+ - React-cxxreact
904
+ - React-debug
905
+ - React-featureflags
906
+ - React-graphics
907
+ - React-jsi
908
+ - React-jsiexecutor
909
+ - React-logger
910
+ - React-rendererdebug
911
+ - React-runtimeexecutor
912
+ - React-runtimescheduler
913
+ - React-utils
914
+ - ReactCommon/turbomodule/core
915
+ - SocketRocket
916
+ - React-Fabric/imagemanager (0.83.1):
917
+ - boost
918
+ - DoubleConversion
919
+ - fast_float
920
+ - fmt
921
+ - glog
922
+ - hermes-engine
923
+ - RCT-Folly
924
+ - RCT-Folly/Fabric
925
+ - RCTRequired
926
+ - RCTTypeSafety
927
+ - React-Core
928
+ - React-cxxreact
929
+ - React-debug
930
+ - React-featureflags
931
+ - React-graphics
932
+ - React-jsi
933
+ - React-jsiexecutor
934
+ - React-logger
935
+ - React-rendererdebug
936
+ - React-runtimeexecutor
937
+ - React-runtimescheduler
938
+ - React-utils
939
+ - ReactCommon/turbomodule/core
940
+ - SocketRocket
941
+ - React-Fabric/leakchecker (0.83.1):
942
+ - boost
943
+ - DoubleConversion
944
+ - fast_float
945
+ - fmt
946
+ - glog
947
+ - hermes-engine
948
+ - RCT-Folly
949
+ - RCT-Folly/Fabric
950
+ - RCTRequired
951
+ - RCTTypeSafety
952
+ - React-Core
953
+ - React-cxxreact
954
+ - React-debug
955
+ - React-featureflags
956
+ - React-graphics
957
+ - React-jsi
958
+ - React-jsiexecutor
959
+ - React-logger
960
+ - React-rendererdebug
961
+ - React-runtimeexecutor
962
+ - React-runtimescheduler
963
+ - React-utils
964
+ - ReactCommon/turbomodule/core
965
+ - SocketRocket
966
+ - React-Fabric/mounting (0.83.1):
967
+ - boost
968
+ - DoubleConversion
969
+ - fast_float
970
+ - fmt
971
+ - glog
972
+ - hermes-engine
973
+ - RCT-Folly
974
+ - RCT-Folly/Fabric
975
+ - RCTRequired
976
+ - RCTTypeSafety
977
+ - React-Core
978
+ - React-cxxreact
979
+ - React-debug
980
+ - React-featureflags
981
+ - React-graphics
982
+ - React-jsi
983
+ - React-jsiexecutor
984
+ - React-logger
985
+ - React-rendererdebug
986
+ - React-runtimeexecutor
987
+ - React-runtimescheduler
988
+ - React-utils
989
+ - ReactCommon/turbomodule/core
990
+ - SocketRocket
991
+ - React-Fabric/observers (0.83.1):
992
+ - boost
993
+ - DoubleConversion
994
+ - fast_float
995
+ - fmt
996
+ - glog
997
+ - hermes-engine
998
+ - RCT-Folly
999
+ - RCT-Folly/Fabric
1000
+ - RCTRequired
1001
+ - RCTTypeSafety
1002
+ - React-Core
1003
+ - React-cxxreact
1004
+ - React-debug
1005
+ - React-Fabric/observers/events (= 0.83.1)
1006
+ - React-Fabric/observers/intersection (= 0.83.1)
1007
+ - React-featureflags
1008
+ - React-graphics
1009
+ - React-jsi
1010
+ - React-jsiexecutor
1011
+ - React-logger
1012
+ - React-rendererdebug
1013
+ - React-runtimeexecutor
1014
+ - React-runtimescheduler
1015
+ - React-utils
1016
+ - ReactCommon/turbomodule/core
1017
+ - SocketRocket
1018
+ - React-Fabric/observers/events (0.83.1):
1019
+ - boost
1020
+ - DoubleConversion
1021
+ - fast_float
1022
+ - fmt
1023
+ - glog
1024
+ - hermes-engine
1025
+ - RCT-Folly
1026
+ - RCT-Folly/Fabric
1027
+ - RCTRequired
1028
+ - RCTTypeSafety
1029
+ - React-Core
1030
+ - React-cxxreact
1031
+ - React-debug
1032
+ - React-featureflags
1033
+ - React-graphics
1034
+ - React-jsi
1035
+ - React-jsiexecutor
1036
+ - React-logger
1037
+ - React-rendererdebug
1038
+ - React-runtimeexecutor
1039
+ - React-runtimescheduler
1040
+ - React-utils
1041
+ - ReactCommon/turbomodule/core
1042
+ - SocketRocket
1043
+ - React-Fabric/observers/intersection (0.83.1):
1044
+ - boost
1045
+ - DoubleConversion
1046
+ - fast_float
1047
+ - fmt
1048
+ - glog
1049
+ - hermes-engine
1050
+ - RCT-Folly
1051
+ - RCT-Folly/Fabric
1052
+ - RCTRequired
1053
+ - RCTTypeSafety
1054
+ - React-Core
1055
+ - React-cxxreact
1056
+ - React-debug
1057
+ - React-featureflags
1058
+ - React-graphics
1059
+ - React-jsi
1060
+ - React-jsiexecutor
1061
+ - React-logger
1062
+ - React-rendererdebug
1063
+ - React-runtimeexecutor
1064
+ - React-runtimescheduler
1065
+ - React-utils
1066
+ - ReactCommon/turbomodule/core
1067
+ - SocketRocket
1068
+ - React-Fabric/scheduler (0.83.1):
1069
+ - boost
1070
+ - DoubleConversion
1071
+ - fast_float
1072
+ - fmt
1073
+ - glog
1074
+ - hermes-engine
1075
+ - RCT-Folly
1076
+ - RCT-Folly/Fabric
1077
+ - RCTRequired
1078
+ - RCTTypeSafety
1079
+ - React-Core
1080
+ - React-cxxreact
1081
+ - React-debug
1082
+ - React-Fabric/observers/events
1083
+ - React-featureflags
1084
+ - React-graphics
1085
+ - React-jsi
1086
+ - React-jsiexecutor
1087
+ - React-logger
1088
+ - React-performancecdpmetrics
1089
+ - React-performancetimeline
1090
+ - React-rendererdebug
1091
+ - React-runtimeexecutor
1092
+ - React-runtimescheduler
1093
+ - React-utils
1094
+ - ReactCommon/turbomodule/core
1095
+ - SocketRocket
1096
+ - React-Fabric/telemetry (0.83.1):
1097
+ - boost
1098
+ - DoubleConversion
1099
+ - fast_float
1100
+ - fmt
1101
+ - glog
1102
+ - hermes-engine
1103
+ - RCT-Folly
1104
+ - RCT-Folly/Fabric
1105
+ - RCTRequired
1106
+ - RCTTypeSafety
1107
+ - React-Core
1108
+ - React-cxxreact
1109
+ - React-debug
1110
+ - React-featureflags
1111
+ - React-graphics
1112
+ - React-jsi
1113
+ - React-jsiexecutor
1114
+ - React-logger
1115
+ - React-rendererdebug
1116
+ - React-runtimeexecutor
1117
+ - React-runtimescheduler
1118
+ - React-utils
1119
+ - ReactCommon/turbomodule/core
1120
+ - SocketRocket
1121
+ - React-Fabric/templateprocessor (0.83.1):
1122
+ - boost
1123
+ - DoubleConversion
1124
+ - fast_float
1125
+ - fmt
1126
+ - glog
1127
+ - hermes-engine
1128
+ - RCT-Folly
1129
+ - RCT-Folly/Fabric
1130
+ - RCTRequired
1131
+ - RCTTypeSafety
1132
+ - React-Core
1133
+ - React-cxxreact
1134
+ - React-debug
1135
+ - React-featureflags
1136
+ - React-graphics
1137
+ - React-jsi
1138
+ - React-jsiexecutor
1139
+ - React-logger
1140
+ - React-rendererdebug
1141
+ - React-runtimeexecutor
1142
+ - React-runtimescheduler
1143
+ - React-utils
1144
+ - ReactCommon/turbomodule/core
1145
+ - SocketRocket
1146
+ - React-Fabric/uimanager (0.83.1):
1147
+ - boost
1148
+ - DoubleConversion
1149
+ - fast_float
1150
+ - fmt
1151
+ - glog
1152
+ - hermes-engine
1153
+ - RCT-Folly
1154
+ - RCT-Folly/Fabric
1155
+ - RCTRequired
1156
+ - RCTTypeSafety
1157
+ - React-Core
1158
+ - React-cxxreact
1159
+ - React-debug
1160
+ - React-Fabric/uimanager/consistency (= 0.83.1)
1161
+ - React-featureflags
1162
+ - React-graphics
1163
+ - React-jsi
1164
+ - React-jsiexecutor
1165
+ - React-logger
1166
+ - React-rendererconsistency
1167
+ - React-rendererdebug
1168
+ - React-runtimeexecutor
1169
+ - React-runtimescheduler
1170
+ - React-utils
1171
+ - ReactCommon/turbomodule/core
1172
+ - SocketRocket
1173
+ - React-Fabric/uimanager/consistency (0.83.1):
1174
+ - boost
1175
+ - DoubleConversion
1176
+ - fast_float
1177
+ - fmt
1178
+ - glog
1179
+ - hermes-engine
1180
+ - RCT-Folly
1181
+ - RCT-Folly/Fabric
1182
+ - RCTRequired
1183
+ - RCTTypeSafety
1184
+ - React-Core
1185
+ - React-cxxreact
1186
+ - React-debug
1187
+ - React-featureflags
1188
+ - React-graphics
1189
+ - React-jsi
1190
+ - React-jsiexecutor
1191
+ - React-logger
1192
+ - React-rendererconsistency
1193
+ - React-rendererdebug
1194
+ - React-runtimeexecutor
1195
+ - React-runtimescheduler
1196
+ - React-utils
1197
+ - ReactCommon/turbomodule/core
1198
+ - SocketRocket
1199
+ - React-FabricComponents (0.83.1):
1200
+ - boost
1201
+ - DoubleConversion
1202
+ - fast_float
1203
+ - fmt
1204
+ - glog
1205
+ - hermes-engine
1206
+ - RCT-Folly
1207
+ - RCT-Folly/Fabric
1208
+ - RCTRequired
1209
+ - RCTTypeSafety
1210
+ - React-Core
1211
+ - React-cxxreact
1212
+ - React-debug
1213
+ - React-Fabric
1214
+ - React-FabricComponents/components (= 0.83.1)
1215
+ - React-FabricComponents/textlayoutmanager (= 0.83.1)
1216
+ - React-featureflags
1217
+ - React-graphics
1218
+ - React-jsi
1219
+ - React-jsiexecutor
1220
+ - React-logger
1221
+ - React-RCTFBReactNativeSpec
1222
+ - React-rendererdebug
1223
+ - React-runtimescheduler
1224
+ - React-utils
1225
+ - ReactCommon/turbomodule/core
1226
+ - SocketRocket
1227
+ - Yoga
1228
+ - React-FabricComponents/components (0.83.1):
1229
+ - boost
1230
+ - DoubleConversion
1231
+ - fast_float
1232
+ - fmt
1233
+ - glog
1234
+ - hermes-engine
1235
+ - RCT-Folly
1236
+ - RCT-Folly/Fabric
1237
+ - RCTRequired
1238
+ - RCTTypeSafety
1239
+ - React-Core
1240
+ - React-cxxreact
1241
+ - React-debug
1242
+ - React-Fabric
1243
+ - React-FabricComponents/components/inputaccessory (= 0.83.1)
1244
+ - React-FabricComponents/components/iostextinput (= 0.83.1)
1245
+ - React-FabricComponents/components/modal (= 0.83.1)
1246
+ - React-FabricComponents/components/rncore (= 0.83.1)
1247
+ - React-FabricComponents/components/safeareaview (= 0.83.1)
1248
+ - React-FabricComponents/components/scrollview (= 0.83.1)
1249
+ - React-FabricComponents/components/switch (= 0.83.1)
1250
+ - React-FabricComponents/components/text (= 0.83.1)
1251
+ - React-FabricComponents/components/textinput (= 0.83.1)
1252
+ - React-FabricComponents/components/unimplementedview (= 0.83.1)
1253
+ - React-FabricComponents/components/virtualview (= 0.83.1)
1254
+ - React-FabricComponents/components/virtualviewexperimental (= 0.83.1)
1255
+ - React-featureflags
1256
+ - React-graphics
1257
+ - React-jsi
1258
+ - React-jsiexecutor
1259
+ - React-logger
1260
+ - React-RCTFBReactNativeSpec
1261
+ - React-rendererdebug
1262
+ - React-runtimescheduler
1263
+ - React-utils
1264
+ - ReactCommon/turbomodule/core
1265
+ - SocketRocket
1266
+ - Yoga
1267
+ - React-FabricComponents/components/inputaccessory (0.83.1):
1268
+ - boost
1269
+ - DoubleConversion
1270
+ - fast_float
1271
+ - fmt
1272
+ - glog
1273
+ - hermes-engine
1274
+ - RCT-Folly
1275
+ - RCT-Folly/Fabric
1276
+ - RCTRequired
1277
+ - RCTTypeSafety
1278
+ - React-Core
1279
+ - React-cxxreact
1280
+ - React-debug
1281
+ - React-Fabric
1282
+ - React-featureflags
1283
+ - React-graphics
1284
+ - React-jsi
1285
+ - React-jsiexecutor
1286
+ - React-logger
1287
+ - React-RCTFBReactNativeSpec
1288
+ - React-rendererdebug
1289
+ - React-runtimescheduler
1290
+ - React-utils
1291
+ - ReactCommon/turbomodule/core
1292
+ - SocketRocket
1293
+ - Yoga
1294
+ - React-FabricComponents/components/iostextinput (0.83.1):
1295
+ - boost
1296
+ - DoubleConversion
1297
+ - fast_float
1298
+ - fmt
1299
+ - glog
1300
+ - hermes-engine
1301
+ - RCT-Folly
1302
+ - RCT-Folly/Fabric
1303
+ - RCTRequired
1304
+ - RCTTypeSafety
1305
+ - React-Core
1306
+ - React-cxxreact
1307
+ - React-debug
1308
+ - React-Fabric
1309
+ - React-featureflags
1310
+ - React-graphics
1311
+ - React-jsi
1312
+ - React-jsiexecutor
1313
+ - React-logger
1314
+ - React-RCTFBReactNativeSpec
1315
+ - React-rendererdebug
1316
+ - React-runtimescheduler
1317
+ - React-utils
1318
+ - ReactCommon/turbomodule/core
1319
+ - SocketRocket
1320
+ - Yoga
1321
+ - React-FabricComponents/components/modal (0.83.1):
1322
+ - boost
1323
+ - DoubleConversion
1324
+ - fast_float
1325
+ - fmt
1326
+ - glog
1327
+ - hermes-engine
1328
+ - RCT-Folly
1329
+ - RCT-Folly/Fabric
1330
+ - RCTRequired
1331
+ - RCTTypeSafety
1332
+ - React-Core
1333
+ - React-cxxreact
1334
+ - React-debug
1335
+ - React-Fabric
1336
+ - React-featureflags
1337
+ - React-graphics
1338
+ - React-jsi
1339
+ - React-jsiexecutor
1340
+ - React-logger
1341
+ - React-RCTFBReactNativeSpec
1342
+ - React-rendererdebug
1343
+ - React-runtimescheduler
1344
+ - React-utils
1345
+ - ReactCommon/turbomodule/core
1346
+ - SocketRocket
1347
+ - Yoga
1348
+ - React-FabricComponents/components/rncore (0.83.1):
1349
+ - boost
1350
+ - DoubleConversion
1351
+ - fast_float
1352
+ - fmt
1353
+ - glog
1354
+ - hermes-engine
1355
+ - RCT-Folly
1356
+ - RCT-Folly/Fabric
1357
+ - RCTRequired
1358
+ - RCTTypeSafety
1359
+ - React-Core
1360
+ - React-cxxreact
1361
+ - React-debug
1362
+ - React-Fabric
1363
+ - React-featureflags
1364
+ - React-graphics
1365
+ - React-jsi
1366
+ - React-jsiexecutor
1367
+ - React-logger
1368
+ - React-RCTFBReactNativeSpec
1369
+ - React-rendererdebug
1370
+ - React-runtimescheduler
1371
+ - React-utils
1372
+ - ReactCommon/turbomodule/core
1373
+ - SocketRocket
1374
+ - Yoga
1375
+ - React-FabricComponents/components/safeareaview (0.83.1):
1376
+ - boost
1377
+ - DoubleConversion
1378
+ - fast_float
1379
+ - fmt
1380
+ - glog
1381
+ - hermes-engine
1382
+ - RCT-Folly
1383
+ - RCT-Folly/Fabric
1384
+ - RCTRequired
1385
+ - RCTTypeSafety
1386
+ - React-Core
1387
+ - React-cxxreact
1388
+ - React-debug
1389
+ - React-Fabric
1390
+ - React-featureflags
1391
+ - React-graphics
1392
+ - React-jsi
1393
+ - React-jsiexecutor
1394
+ - React-logger
1395
+ - React-RCTFBReactNativeSpec
1396
+ - React-rendererdebug
1397
+ - React-runtimescheduler
1398
+ - React-utils
1399
+ - ReactCommon/turbomodule/core
1400
+ - SocketRocket
1401
+ - Yoga
1402
+ - React-FabricComponents/components/scrollview (0.83.1):
1403
+ - boost
1404
+ - DoubleConversion
1405
+ - fast_float
1406
+ - fmt
1407
+ - glog
1408
+ - hermes-engine
1409
+ - RCT-Folly
1410
+ - RCT-Folly/Fabric
1411
+ - RCTRequired
1412
+ - RCTTypeSafety
1413
+ - React-Core
1414
+ - React-cxxreact
1415
+ - React-debug
1416
+ - React-Fabric
1417
+ - React-featureflags
1418
+ - React-graphics
1419
+ - React-jsi
1420
+ - React-jsiexecutor
1421
+ - React-logger
1422
+ - React-RCTFBReactNativeSpec
1423
+ - React-rendererdebug
1424
+ - React-runtimescheduler
1425
+ - React-utils
1426
+ - ReactCommon/turbomodule/core
1427
+ - SocketRocket
1428
+ - Yoga
1429
+ - React-FabricComponents/components/switch (0.83.1):
1430
+ - boost
1431
+ - DoubleConversion
1432
+ - fast_float
1433
+ - fmt
1434
+ - glog
1435
+ - hermes-engine
1436
+ - RCT-Folly
1437
+ - RCT-Folly/Fabric
1438
+ - RCTRequired
1439
+ - RCTTypeSafety
1440
+ - React-Core
1441
+ - React-cxxreact
1442
+ - React-debug
1443
+ - React-Fabric
1444
+ - React-featureflags
1445
+ - React-graphics
1446
+ - React-jsi
1447
+ - React-jsiexecutor
1448
+ - React-logger
1449
+ - React-RCTFBReactNativeSpec
1450
+ - React-rendererdebug
1451
+ - React-runtimescheduler
1452
+ - React-utils
1453
+ - ReactCommon/turbomodule/core
1454
+ - SocketRocket
1455
+ - Yoga
1456
+ - React-FabricComponents/components/text (0.83.1):
1457
+ - boost
1458
+ - DoubleConversion
1459
+ - fast_float
1460
+ - fmt
1461
+ - glog
1462
+ - hermes-engine
1463
+ - RCT-Folly
1464
+ - RCT-Folly/Fabric
1465
+ - RCTRequired
1466
+ - RCTTypeSafety
1467
+ - React-Core
1468
+ - React-cxxreact
1469
+ - React-debug
1470
+ - React-Fabric
1471
+ - React-featureflags
1472
+ - React-graphics
1473
+ - React-jsi
1474
+ - React-jsiexecutor
1475
+ - React-logger
1476
+ - React-RCTFBReactNativeSpec
1477
+ - React-rendererdebug
1478
+ - React-runtimescheduler
1479
+ - React-utils
1480
+ - ReactCommon/turbomodule/core
1481
+ - SocketRocket
1482
+ - Yoga
1483
+ - React-FabricComponents/components/textinput (0.83.1):
1484
+ - boost
1485
+ - DoubleConversion
1486
+ - fast_float
1487
+ - fmt
1488
+ - glog
1489
+ - hermes-engine
1490
+ - RCT-Folly
1491
+ - RCT-Folly/Fabric
1492
+ - RCTRequired
1493
+ - RCTTypeSafety
1494
+ - React-Core
1495
+ - React-cxxreact
1496
+ - React-debug
1497
+ - React-Fabric
1498
+ - React-featureflags
1499
+ - React-graphics
1500
+ - React-jsi
1501
+ - React-jsiexecutor
1502
+ - React-logger
1503
+ - React-RCTFBReactNativeSpec
1504
+ - React-rendererdebug
1505
+ - React-runtimescheduler
1506
+ - React-utils
1507
+ - ReactCommon/turbomodule/core
1508
+ - SocketRocket
1509
+ - Yoga
1510
+ - React-FabricComponents/components/unimplementedview (0.83.1):
1511
+ - boost
1512
+ - DoubleConversion
1513
+ - fast_float
1514
+ - fmt
1515
+ - glog
1516
+ - hermes-engine
1517
+ - RCT-Folly
1518
+ - RCT-Folly/Fabric
1519
+ - RCTRequired
1520
+ - RCTTypeSafety
1521
+ - React-Core
1522
+ - React-cxxreact
1523
+ - React-debug
1524
+ - React-Fabric
1525
+ - React-featureflags
1526
+ - React-graphics
1527
+ - React-jsi
1528
+ - React-jsiexecutor
1529
+ - React-logger
1530
+ - React-RCTFBReactNativeSpec
1531
+ - React-rendererdebug
1532
+ - React-runtimescheduler
1533
+ - React-utils
1534
+ - ReactCommon/turbomodule/core
1535
+ - SocketRocket
1536
+ - Yoga
1537
+ - React-FabricComponents/components/virtualview (0.83.1):
1538
+ - boost
1539
+ - DoubleConversion
1540
+ - fast_float
1541
+ - fmt
1542
+ - glog
1543
+ - hermes-engine
1544
+ - RCT-Folly
1545
+ - RCT-Folly/Fabric
1546
+ - RCTRequired
1547
+ - RCTTypeSafety
1548
+ - React-Core
1549
+ - React-cxxreact
1550
+ - React-debug
1551
+ - React-Fabric
1552
+ - React-featureflags
1553
+ - React-graphics
1554
+ - React-jsi
1555
+ - React-jsiexecutor
1556
+ - React-logger
1557
+ - React-RCTFBReactNativeSpec
1558
+ - React-rendererdebug
1559
+ - React-runtimescheduler
1560
+ - React-utils
1561
+ - ReactCommon/turbomodule/core
1562
+ - SocketRocket
1563
+ - Yoga
1564
+ - React-FabricComponents/components/virtualviewexperimental (0.83.1):
1565
+ - boost
1566
+ - DoubleConversion
1567
+ - fast_float
1568
+ - fmt
1569
+ - glog
1570
+ - hermes-engine
1571
+ - RCT-Folly
1572
+ - RCT-Folly/Fabric
1573
+ - RCTRequired
1574
+ - RCTTypeSafety
1575
+ - React-Core
1576
+ - React-cxxreact
1577
+ - React-debug
1578
+ - React-Fabric
1579
+ - React-featureflags
1580
+ - React-graphics
1581
+ - React-jsi
1582
+ - React-jsiexecutor
1583
+ - React-logger
1584
+ - React-RCTFBReactNativeSpec
1585
+ - React-rendererdebug
1586
+ - React-runtimescheduler
1587
+ - React-utils
1588
+ - ReactCommon/turbomodule/core
1589
+ - SocketRocket
1590
+ - Yoga
1591
+ - React-FabricComponents/textlayoutmanager (0.83.1):
1592
+ - boost
1593
+ - DoubleConversion
1594
+ - fast_float
1595
+ - fmt
1596
+ - glog
1597
+ - hermes-engine
1598
+ - RCT-Folly
1599
+ - RCT-Folly/Fabric
1600
+ - RCTRequired
1601
+ - RCTTypeSafety
1602
+ - React-Core
1603
+ - React-cxxreact
1604
+ - React-debug
1605
+ - React-Fabric
1606
+ - React-featureflags
1607
+ - React-graphics
1608
+ - React-jsi
1609
+ - React-jsiexecutor
1610
+ - React-logger
1611
+ - React-RCTFBReactNativeSpec
1612
+ - React-rendererdebug
1613
+ - React-runtimescheduler
1614
+ - React-utils
1615
+ - ReactCommon/turbomodule/core
1616
+ - SocketRocket
1617
+ - Yoga
1618
+ - React-FabricImage (0.83.1):
1619
+ - boost
1620
+ - DoubleConversion
1621
+ - fast_float
1622
+ - fmt
1623
+ - glog
1624
+ - hermes-engine
1625
+ - RCT-Folly
1626
+ - RCT-Folly/Fabric
1627
+ - RCTRequired (= 0.83.1)
1628
+ - RCTTypeSafety (= 0.83.1)
1629
+ - React-Fabric
1630
+ - React-featureflags
1631
+ - React-graphics
1632
+ - React-ImageManager
1633
+ - React-jsi
1634
+ - React-jsiexecutor (= 0.83.1)
1635
+ - React-logger
1636
+ - React-rendererdebug
1637
+ - React-utils
1638
+ - ReactCommon
1639
+ - SocketRocket
1640
+ - Yoga
1641
+ - React-featureflags (0.83.1):
1642
+ - boost
1643
+ - DoubleConversion
1644
+ - fast_float
1645
+ - fmt
1646
+ - glog
1647
+ - RCT-Folly
1648
+ - RCT-Folly/Fabric
1649
+ - SocketRocket
1650
+ - React-featureflagsnativemodule (0.83.1):
1651
+ - boost
1652
+ - DoubleConversion
1653
+ - fast_float
1654
+ - fmt
1655
+ - glog
1656
+ - hermes-engine
1657
+ - RCT-Folly
1658
+ - RCT-Folly/Fabric
1659
+ - React-featureflags
1660
+ - React-jsi
1661
+ - React-jsiexecutor
1662
+ - React-RCTFBReactNativeSpec
1663
+ - ReactCommon/turbomodule/core
1664
+ - SocketRocket
1665
+ - React-graphics (0.83.1):
1666
+ - boost
1667
+ - DoubleConversion
1668
+ - fast_float
1669
+ - fmt
1670
+ - glog
1671
+ - hermes-engine
1672
+ - RCT-Folly
1673
+ - RCT-Folly/Fabric
1674
+ - React-jsi
1675
+ - React-jsiexecutor
1676
+ - React-utils
1677
+ - SocketRocket
1678
+ - React-hermes (0.83.1):
1679
+ - boost
1680
+ - DoubleConversion
1681
+ - fast_float
1682
+ - fmt
1683
+ - glog
1684
+ - hermes-engine
1685
+ - RCT-Folly
1686
+ - RCT-Folly/Fabric
1687
+ - React-cxxreact (= 0.83.1)
1688
+ - React-jsi
1689
+ - React-jsiexecutor (= 0.83.1)
1690
+ - React-jsinspector
1691
+ - React-jsinspectorcdp
1692
+ - React-jsinspectortracing
1693
+ - React-oscompat
1694
+ - React-perflogger (= 0.83.1)
1695
+ - React-runtimeexecutor
1696
+ - SocketRocket
1697
+ - React-idlecallbacksnativemodule (0.83.1):
1698
+ - boost
1699
+ - DoubleConversion
1700
+ - fast_float
1701
+ - fmt
1702
+ - glog
1703
+ - hermes-engine
1704
+ - RCT-Folly
1705
+ - RCT-Folly/Fabric
1706
+ - React-jsi
1707
+ - React-jsiexecutor
1708
+ - React-RCTFBReactNativeSpec
1709
+ - React-runtimeexecutor
1710
+ - React-runtimescheduler
1711
+ - ReactCommon/turbomodule/core
1712
+ - SocketRocket
1713
+ - React-ImageManager (0.83.1):
1714
+ - boost
1715
+ - DoubleConversion
1716
+ - fast_float
1717
+ - fmt
1718
+ - glog
1719
+ - RCT-Folly
1720
+ - RCT-Folly/Fabric
1721
+ - React-Core/Default
1722
+ - React-debug
1723
+ - React-Fabric
1724
+ - React-graphics
1725
+ - React-rendererdebug
1726
+ - React-utils
1727
+ - SocketRocket
1728
+ - React-intersectionobservernativemodule (0.83.1):
1729
+ - boost
1730
+ - DoubleConversion
1731
+ - fast_float
1732
+ - fmt
1733
+ - glog
1734
+ - hermes-engine
1735
+ - RCT-Folly
1736
+ - RCT-Folly/Fabric
1737
+ - React-cxxreact
1738
+ - React-Fabric
1739
+ - React-Fabric/bridging
1740
+ - React-graphics
1741
+ - React-jsi
1742
+ - React-jsiexecutor
1743
+ - React-RCTFBReactNativeSpec
1744
+ - React-runtimeexecutor
1745
+ - React-runtimescheduler
1746
+ - ReactCommon/turbomodule/core
1747
+ - SocketRocket
1748
+ - Yoga
1749
+ - React-jserrorhandler (0.83.1):
1750
+ - boost
1751
+ - DoubleConversion
1752
+ - fast_float
1753
+ - fmt
1754
+ - glog
1755
+ - hermes-engine
1756
+ - RCT-Folly
1757
+ - RCT-Folly/Fabric
1758
+ - React-cxxreact
1759
+ - React-debug
1760
+ - React-featureflags
1761
+ - React-jsi
1762
+ - ReactCommon/turbomodule/bridging
1763
+ - SocketRocket
1764
+ - React-jsi (0.83.1):
1765
+ - boost
1766
+ - DoubleConversion
1767
+ - fast_float
1768
+ - fmt
1769
+ - glog
1770
+ - hermes-engine
1771
+ - RCT-Folly
1772
+ - RCT-Folly/Fabric
1773
+ - SocketRocket
1774
+ - React-jsiexecutor (0.83.1):
1775
+ - boost
1776
+ - DoubleConversion
1777
+ - fast_float
1778
+ - fmt
1779
+ - glog
1780
+ - hermes-engine
1781
+ - RCT-Folly
1782
+ - RCT-Folly/Fabric
1783
+ - React-cxxreact
1784
+ - React-debug
1785
+ - React-jsi
1786
+ - React-jsinspector
1787
+ - React-jsinspectorcdp
1788
+ - React-jsinspectortracing
1789
+ - React-perflogger
1790
+ - React-runtimeexecutor
1791
+ - React-utils
1792
+ - SocketRocket
1793
+ - React-jsinspector (0.83.1):
1794
+ - boost
1795
+ - DoubleConversion
1796
+ - fast_float
1797
+ - fmt
1798
+ - glog
1799
+ - hermes-engine
1800
+ - RCT-Folly
1801
+ - RCT-Folly/Fabric
1802
+ - React-featureflags
1803
+ - React-jsi
1804
+ - React-jsinspectorcdp
1805
+ - React-jsinspectornetwork
1806
+ - React-jsinspectortracing
1807
+ - React-oscompat
1808
+ - React-perflogger (= 0.83.1)
1809
+ - React-runtimeexecutor
1810
+ - React-utils
1811
+ - SocketRocket
1812
+ - React-jsinspectorcdp (0.83.1):
1813
+ - boost
1814
+ - DoubleConversion
1815
+ - fast_float
1816
+ - fmt
1817
+ - glog
1818
+ - RCT-Folly
1819
+ - RCT-Folly/Fabric
1820
+ - SocketRocket
1821
+ - React-jsinspectornetwork (0.83.1):
1822
+ - boost
1823
+ - DoubleConversion
1824
+ - fast_float
1825
+ - fmt
1826
+ - glog
1827
+ - RCT-Folly
1828
+ - RCT-Folly/Fabric
1829
+ - React-jsinspectorcdp
1830
+ - SocketRocket
1831
+ - React-jsinspectortracing (0.83.1):
1832
+ - boost
1833
+ - DoubleConversion
1834
+ - fast_float
1835
+ - fmt
1836
+ - glog
1837
+ - hermes-engine
1838
+ - RCT-Folly
1839
+ - RCT-Folly/Fabric
1840
+ - React-jsi
1841
+ - React-jsinspectornetwork
1842
+ - React-oscompat
1843
+ - React-timing
1844
+ - SocketRocket
1845
+ - React-jsitooling (0.83.1):
1846
+ - boost
1847
+ - DoubleConversion
1848
+ - fast_float
1849
+ - fmt
1850
+ - glog
1851
+ - RCT-Folly
1852
+ - RCT-Folly/Fabric
1853
+ - React-cxxreact (= 0.83.1)
1854
+ - React-debug
1855
+ - React-jsi (= 0.83.1)
1856
+ - React-jsinspector
1857
+ - React-jsinspectorcdp
1858
+ - React-jsinspectortracing
1859
+ - React-runtimeexecutor
1860
+ - React-utils
1861
+ - SocketRocket
1862
+ - React-jsitracing (0.83.1):
1863
+ - React-jsi
1864
+ - React-logger (0.83.1):
1865
+ - boost
1866
+ - DoubleConversion
1867
+ - fast_float
1868
+ - fmt
1869
+ - glog
1870
+ - RCT-Folly
1871
+ - RCT-Folly/Fabric
1872
+ - SocketRocket
1873
+ - React-Mapbuffer (0.83.1):
1874
+ - boost
1875
+ - DoubleConversion
1876
+ - fast_float
1877
+ - fmt
1878
+ - glog
1879
+ - RCT-Folly
1880
+ - RCT-Folly/Fabric
1881
+ - React-debug
1882
+ - SocketRocket
1883
+ - React-microtasksnativemodule (0.83.1):
1884
+ - boost
1885
+ - DoubleConversion
1886
+ - fast_float
1887
+ - fmt
1888
+ - glog
1889
+ - hermes-engine
1890
+ - RCT-Folly
1891
+ - RCT-Folly/Fabric
1892
+ - React-jsi
1893
+ - React-jsiexecutor
1894
+ - React-RCTFBReactNativeSpec
1895
+ - ReactCommon/turbomodule/core
1896
+ - SocketRocket
1897
+ - react-native-blob-util (0.24.6):
1898
+ - boost
1899
+ - DoubleConversion
1900
+ - fast_float
1901
+ - fmt
1902
+ - glog
1903
+ - hermes-engine
1904
+ - RCT-Folly
1905
+ - RCT-Folly/Fabric
1906
+ - RCTRequired
1907
+ - RCTTypeSafety
1908
+ - React-Core
1909
+ - React-debug
1910
+ - React-Fabric
1911
+ - React-featureflags
1912
+ - React-graphics
1913
+ - React-ImageManager
1914
+ - React-jsi
1915
+ - React-NativeModulesApple
1916
+ - React-RCTFabric
1917
+ - React-renderercss
1918
+ - React-rendererdebug
1919
+ - React-utils
1920
+ - ReactCodegen
1921
+ - ReactCommon/turbomodule/bridging
1922
+ - ReactCommon/turbomodule/core
1923
+ - SocketRocket
1924
+ - Yoga
1925
+ - react-native-blur (4.4.1):
1926
+ - boost
1927
+ - DoubleConversion
1928
+ - fast_float
1929
+ - fmt
1930
+ - glog
1931
+ - hermes-engine
1932
+ - RCT-Folly
1933
+ - RCT-Folly/Fabric
1934
+ - RCTRequired
1935
+ - RCTTypeSafety
1936
+ - React-Core
1937
+ - React-debug
1938
+ - React-Fabric
1939
+ - React-featureflags
1940
+ - React-graphics
1941
+ - React-ImageManager
1942
+ - React-jsi
1943
+ - React-NativeModulesApple
1944
+ - React-RCTFabric
1945
+ - React-renderercss
1946
+ - React-rendererdebug
1947
+ - React-utils
1948
+ - ReactCodegen
1949
+ - ReactCommon/turbomodule/bridging
1950
+ - ReactCommon/turbomodule/core
1951
+ - SocketRocket
1952
+ - Yoga
1953
+ - react-native-encrypted-storage (4.0.3):
1954
+ - React-Core
1955
+ - react-native-encryption (3.0.7):
1956
+ - boost
1957
+ - DoubleConversion
1958
+ - fast_float
1959
+ - fmt
1960
+ - glog
1961
+ - hermes-engine
1962
+ - RCT-Folly
1963
+ - RCT-Folly/Fabric
1964
+ - RCTRequired
1965
+ - RCTTypeSafety
1966
+ - React-Core
1967
+ - React-debug
1968
+ - React-Fabric
1969
+ - React-featureflags
1970
+ - React-graphics
1971
+ - React-ImageManager
1972
+ - React-jsi
1973
+ - React-NativeModulesApple
1974
+ - React-RCTFabric
1975
+ - React-renderercss
1976
+ - React-rendererdebug
1977
+ - React-utils
1978
+ - ReactCodegen
1979
+ - ReactCommon/turbomodule/bridging
1980
+ - ReactCommon/turbomodule/core
1981
+ - SocketRocket
1982
+ - Yoga
1983
+ - react-native-get-random-values (2.0.0):
1984
+ - boost
1985
+ - DoubleConversion
1986
+ - fast_float
1987
+ - fmt
1988
+ - glog
1989
+ - hermes-engine
1990
+ - RCT-Folly
1991
+ - RCT-Folly/Fabric
1992
+ - RCTRequired
1993
+ - RCTTypeSafety
1994
+ - React-Core
1995
+ - React-debug
1996
+ - React-Fabric
1997
+ - React-featureflags
1998
+ - React-graphics
1999
+ - React-ImageManager
2000
+ - React-jsi
2001
+ - React-NativeModulesApple
2002
+ - React-RCTFabric
2003
+ - React-renderercss
2004
+ - React-rendererdebug
2005
+ - React-utils
2006
+ - ReactCodegen
2007
+ - ReactCommon/turbomodule/bridging
2008
+ - ReactCommon/turbomodule/core
2009
+ - SocketRocket
2010
+ - Yoga
2011
+ - react-native-mmkv (3.3.1):
2012
+ - boost
2013
+ - DoubleConversion
2014
+ - fast_float
2015
+ - fmt
2016
+ - glog
2017
+ - hermes-engine
2018
+ - RCT-Folly
2019
+ - RCT-Folly/Fabric
2020
+ - RCTRequired
2021
+ - RCTTypeSafety
2022
+ - React-Core
2023
+ - React-debug
2024
+ - React-Fabric
2025
+ - React-featureflags
2026
+ - React-graphics
2027
+ - React-ImageManager
2028
+ - React-jsi
2029
+ - React-NativeModulesApple
2030
+ - React-RCTFabric
2031
+ - React-renderercss
2032
+ - React-rendererdebug
2033
+ - React-utils
2034
+ - ReactCodegen
2035
+ - ReactCommon/turbomodule/bridging
2036
+ - ReactCommon/turbomodule/core
2037
+ - SocketRocket
2038
+ - Yoga
2039
+ - react-native-netinfo (11.4.1):
2040
+ - React-Core
2041
+ - react-native-pager-view (8.0.0):
2042
+ - boost
2043
+ - DoubleConversion
2044
+ - fast_float
2045
+ - fmt
2046
+ - glog
2047
+ - hermes-engine
2048
+ - RCT-Folly
2049
+ - RCT-Folly/Fabric
2050
+ - RCTRequired
2051
+ - RCTTypeSafety
2052
+ - React-Core
2053
+ - React-debug
2054
+ - React-Fabric
2055
+ - React-featureflags
2056
+ - React-graphics
2057
+ - React-ImageManager
2058
+ - React-jsi
2059
+ - React-NativeModulesApple
2060
+ - React-RCTFabric
2061
+ - React-renderercss
2062
+ - React-rendererdebug
2063
+ - React-utils
2064
+ - ReactCodegen
2065
+ - ReactCommon/turbomodule/bridging
2066
+ - ReactCommon/turbomodule/core
2067
+ - SocketRocket
2068
+ - SwiftUIIntrospect (~> 1.0)
2069
+ - Yoga
2070
+ - react-native-render-html (6.3.4):
2071
+ - React-Core
2072
+ - react-native-safe-area-context (5.6.2):
2073
+ - boost
2074
+ - DoubleConversion
2075
+ - fast_float
2076
+ - fmt
2077
+ - glog
2078
+ - hermes-engine
2079
+ - RCT-Folly
2080
+ - RCT-Folly/Fabric
2081
+ - RCTRequired
2082
+ - RCTTypeSafety
2083
+ - React-Core
2084
+ - React-debug
2085
+ - React-Fabric
2086
+ - React-featureflags
2087
+ - React-graphics
2088
+ - React-ImageManager
2089
+ - React-jsi
2090
+ - react-native-safe-area-context/common (= 5.6.2)
2091
+ - react-native-safe-area-context/fabric (= 5.6.2)
2092
+ - React-NativeModulesApple
2093
+ - React-RCTFabric
2094
+ - React-renderercss
2095
+ - React-rendererdebug
2096
+ - React-utils
2097
+ - ReactCodegen
2098
+ - ReactCommon/turbomodule/bridging
2099
+ - ReactCommon/turbomodule/core
2100
+ - SocketRocket
2101
+ - Yoga
2102
+ - react-native-safe-area-context/common (5.6.2):
2103
+ - boost
2104
+ - DoubleConversion
2105
+ - fast_float
2106
+ - fmt
2107
+ - glog
2108
+ - hermes-engine
2109
+ - RCT-Folly
2110
+ - RCT-Folly/Fabric
2111
+ - RCTRequired
2112
+ - RCTTypeSafety
2113
+ - React-Core
2114
+ - React-debug
2115
+ - React-Fabric
2116
+ - React-featureflags
2117
+ - React-graphics
2118
+ - React-ImageManager
2119
+ - React-jsi
2120
+ - React-NativeModulesApple
2121
+ - React-RCTFabric
2122
+ - React-renderercss
2123
+ - React-rendererdebug
2124
+ - React-utils
2125
+ - ReactCodegen
2126
+ - ReactCommon/turbomodule/bridging
2127
+ - ReactCommon/turbomodule/core
2128
+ - SocketRocket
2129
+ - Yoga
2130
+ - react-native-safe-area-context/fabric (5.6.2):
2131
+ - boost
2132
+ - DoubleConversion
2133
+ - fast_float
2134
+ - fmt
2135
+ - glog
2136
+ - hermes-engine
2137
+ - RCT-Folly
2138
+ - RCT-Folly/Fabric
2139
+ - RCTRequired
2140
+ - RCTTypeSafety
2141
+ - React-Core
2142
+ - React-debug
2143
+ - React-Fabric
2144
+ - React-featureflags
2145
+ - React-graphics
2146
+ - React-ImageManager
2147
+ - React-jsi
2148
+ - react-native-safe-area-context/common
2149
+ - React-NativeModulesApple
2150
+ - React-RCTFabric
2151
+ - React-renderercss
2152
+ - React-rendererdebug
2153
+ - React-utils
2154
+ - ReactCodegen
2155
+ - ReactCommon/turbomodule/bridging
2156
+ - ReactCommon/turbomodule/core
2157
+ - SocketRocket
2158
+ - Yoga
2159
+ - react-native-vector-icons-ant-design (12.4.0)
2160
+ - react-native-vector-icons-evil-icons (12.4.0)
2161
+ - react-native-vector-icons-fontawesome6 (12.3.0)
2162
+ - react-native-vector-icons-ionicons (12.3.0)
2163
+ - react-native-vector-icons-lucide (12.4.0)
2164
+ - react-native-vector-icons-material-design-icons (12.4.0)
2165
+ - React-NativeModulesApple (0.83.1):
2166
+ - boost
2167
+ - DoubleConversion
2168
+ - fast_float
2169
+ - fmt
2170
+ - glog
2171
+ - hermes-engine
2172
+ - RCT-Folly
2173
+ - RCT-Folly/Fabric
2174
+ - React-callinvoker
2175
+ - React-Core
2176
+ - React-cxxreact
2177
+ - React-debug
2178
+ - React-featureflags
2179
+ - React-jsi
2180
+ - React-jsinspector
2181
+ - React-jsinspectorcdp
2182
+ - React-runtimeexecutor
2183
+ - ReactCommon/turbomodule/bridging
2184
+ - ReactCommon/turbomodule/core
2185
+ - SocketRocket
2186
+ - React-networking (0.83.1):
2187
+ - boost
2188
+ - DoubleConversion
2189
+ - fast_float
2190
+ - fmt
2191
+ - glog
2192
+ - RCT-Folly
2193
+ - RCT-Folly/Fabric
2194
+ - React-featureflags
2195
+ - React-jsinspectornetwork
2196
+ - React-jsinspectortracing
2197
+ - React-performancetimeline
2198
+ - React-timing
2199
+ - SocketRocket
2200
+ - React-oscompat (0.83.1)
2201
+ - React-perflogger (0.83.1):
2202
+ - boost
2203
+ - DoubleConversion
2204
+ - fast_float
2205
+ - fmt
2206
+ - glog
2207
+ - RCT-Folly
2208
+ - RCT-Folly/Fabric
2209
+ - SocketRocket
2210
+ - React-performancecdpmetrics (0.83.1):
2211
+ - boost
2212
+ - DoubleConversion
2213
+ - fast_float
2214
+ - fmt
2215
+ - glog
2216
+ - hermes-engine
2217
+ - RCT-Folly
2218
+ - RCT-Folly/Fabric
2219
+ - React-jsi
2220
+ - React-performancetimeline
2221
+ - React-runtimeexecutor
2222
+ - React-timing
2223
+ - SocketRocket
2224
+ - React-performancetimeline (0.83.1):
2225
+ - boost
2226
+ - DoubleConversion
2227
+ - fast_float
2228
+ - fmt
2229
+ - glog
2230
+ - RCT-Folly
2231
+ - RCT-Folly/Fabric
2232
+ - React-featureflags
2233
+ - React-jsinspectortracing
2234
+ - React-perflogger
2235
+ - React-timing
2236
+ - SocketRocket
2237
+ - React-RCTActionSheet (0.83.1):
2238
+ - React-Core/RCTActionSheetHeaders (= 0.83.1)
2239
+ - React-RCTAnimation (0.83.1):
2240
+ - boost
2241
+ - DoubleConversion
2242
+ - fast_float
2243
+ - fmt
2244
+ - glog
2245
+ - RCT-Folly
2246
+ - RCT-Folly/Fabric
2247
+ - RCTTypeSafety
2248
+ - React-Core/RCTAnimationHeaders
2249
+ - React-featureflags
2250
+ - React-jsi
2251
+ - React-NativeModulesApple
2252
+ - React-RCTFBReactNativeSpec
2253
+ - ReactCommon
2254
+ - SocketRocket
2255
+ - React-RCTAppDelegate (0.83.1):
2256
+ - boost
2257
+ - DoubleConversion
2258
+ - fast_float
2259
+ - fmt
2260
+ - glog
2261
+ - hermes-engine
2262
+ - RCT-Folly
2263
+ - RCT-Folly/Fabric
2264
+ - RCTRequired
2265
+ - RCTTypeSafety
2266
+ - React-Core
2267
+ - React-CoreModules
2268
+ - React-debug
2269
+ - React-defaultsnativemodule
2270
+ - React-Fabric
2271
+ - React-featureflags
2272
+ - React-graphics
2273
+ - React-hermes
2274
+ - React-jsitooling
2275
+ - React-NativeModulesApple
2276
+ - React-RCTFabric
2277
+ - React-RCTFBReactNativeSpec
2278
+ - React-RCTImage
2279
+ - React-RCTNetwork
2280
+ - React-RCTRuntime
2281
+ - React-rendererdebug
2282
+ - React-RuntimeApple
2283
+ - React-RuntimeCore
2284
+ - React-runtimeexecutor
2285
+ - React-runtimescheduler
2286
+ - React-utils
2287
+ - ReactCommon
2288
+ - SocketRocket
2289
+ - React-RCTBlob (0.83.1):
2290
+ - boost
2291
+ - DoubleConversion
2292
+ - fast_float
2293
+ - fmt
2294
+ - glog
2295
+ - hermes-engine
2296
+ - RCT-Folly
2297
+ - RCT-Folly/Fabric
2298
+ - React-Core/RCTBlobHeaders
2299
+ - React-Core/RCTWebSocket
2300
+ - React-jsi
2301
+ - React-jsinspector
2302
+ - React-jsinspectorcdp
2303
+ - React-NativeModulesApple
2304
+ - React-RCTFBReactNativeSpec
2305
+ - React-RCTNetwork
2306
+ - ReactCommon
2307
+ - SocketRocket
2308
+ - React-RCTFabric (0.83.1):
2309
+ - boost
2310
+ - DoubleConversion
2311
+ - fast_float
2312
+ - fmt
2313
+ - glog
2314
+ - hermes-engine
2315
+ - RCT-Folly
2316
+ - RCT-Folly/Fabric
2317
+ - RCTSwiftUIWrapper
2318
+ - React-Core
2319
+ - React-debug
2320
+ - React-Fabric
2321
+ - React-FabricComponents
2322
+ - React-FabricImage
2323
+ - React-featureflags
2324
+ - React-graphics
2325
+ - React-ImageManager
2326
+ - React-jsi
2327
+ - React-jsinspector
2328
+ - React-jsinspectorcdp
2329
+ - React-jsinspectortracing
2330
+ - React-networking
2331
+ - React-performancecdpmetrics
2332
+ - React-performancetimeline
2333
+ - React-RCTAnimation
2334
+ - React-RCTFBReactNativeSpec
2335
+ - React-RCTImage
2336
+ - React-RCTText
2337
+ - React-rendererconsistency
2338
+ - React-renderercss
2339
+ - React-rendererdebug
2340
+ - React-runtimeexecutor
2341
+ - React-runtimescheduler
2342
+ - React-utils
2343
+ - SocketRocket
2344
+ - Yoga
2345
+ - React-RCTFBReactNativeSpec (0.83.1):
2346
+ - boost
2347
+ - DoubleConversion
2348
+ - fast_float
2349
+ - fmt
2350
+ - glog
2351
+ - hermes-engine
2352
+ - RCT-Folly
2353
+ - RCT-Folly/Fabric
2354
+ - RCTRequired
2355
+ - RCTTypeSafety
2356
+ - React-Core
2357
+ - React-jsi
2358
+ - React-NativeModulesApple
2359
+ - React-RCTFBReactNativeSpec/components (= 0.83.1)
2360
+ - ReactCommon
2361
+ - SocketRocket
2362
+ - React-RCTFBReactNativeSpec/components (0.83.1):
2363
+ - boost
2364
+ - DoubleConversion
2365
+ - fast_float
2366
+ - fmt
2367
+ - glog
2368
+ - hermes-engine
2369
+ - RCT-Folly
2370
+ - RCT-Folly/Fabric
2371
+ - RCTRequired
2372
+ - RCTTypeSafety
2373
+ - React-Core
2374
+ - React-debug
2375
+ - React-Fabric
2376
+ - React-featureflags
2377
+ - React-graphics
2378
+ - React-jsi
2379
+ - React-NativeModulesApple
2380
+ - React-rendererdebug
2381
+ - React-utils
2382
+ - ReactCommon
2383
+ - SocketRocket
2384
+ - Yoga
2385
+ - React-RCTImage (0.83.1):
2386
+ - boost
2387
+ - DoubleConversion
2388
+ - fast_float
2389
+ - fmt
2390
+ - glog
2391
+ - RCT-Folly
2392
+ - RCT-Folly/Fabric
2393
+ - RCTTypeSafety
2394
+ - React-Core/RCTImageHeaders
2395
+ - React-jsi
2396
+ - React-NativeModulesApple
2397
+ - React-RCTFBReactNativeSpec
2398
+ - React-RCTNetwork
2399
+ - ReactCommon
2400
+ - SocketRocket
2401
+ - React-RCTLinking (0.83.1):
2402
+ - React-Core/RCTLinkingHeaders (= 0.83.1)
2403
+ - React-jsi (= 0.83.1)
2404
+ - React-NativeModulesApple
2405
+ - React-RCTFBReactNativeSpec
2406
+ - ReactCommon
2407
+ - ReactCommon/turbomodule/core (= 0.83.1)
2408
+ - React-RCTNetwork (0.83.1):
2409
+ - boost
2410
+ - DoubleConversion
2411
+ - fast_float
2412
+ - fmt
2413
+ - glog
2414
+ - RCT-Folly
2415
+ - RCT-Folly/Fabric
2416
+ - RCTTypeSafety
2417
+ - React-Core/RCTNetworkHeaders
2418
+ - React-debug
2419
+ - React-featureflags
2420
+ - React-jsi
2421
+ - React-jsinspectorcdp
2422
+ - React-jsinspectornetwork
2423
+ - React-NativeModulesApple
2424
+ - React-networking
2425
+ - React-RCTFBReactNativeSpec
2426
+ - ReactCommon
2427
+ - SocketRocket
2428
+ - React-RCTRuntime (0.83.1):
2429
+ - boost
2430
+ - DoubleConversion
2431
+ - fast_float
2432
+ - fmt
2433
+ - glog
2434
+ - hermes-engine
2435
+ - RCT-Folly
2436
+ - RCT-Folly/Fabric
2437
+ - React-Core
2438
+ - React-debug
2439
+ - React-jsi
2440
+ - React-jsinspector
2441
+ - React-jsinspectorcdp
2442
+ - React-jsinspectortracing
2443
+ - React-jsitooling
2444
+ - React-RuntimeApple
2445
+ - React-RuntimeCore
2446
+ - React-runtimeexecutor
2447
+ - React-RuntimeHermes
2448
+ - React-utils
2449
+ - SocketRocket
2450
+ - React-RCTSettings (0.83.1):
2451
+ - boost
2452
+ - DoubleConversion
2453
+ - fast_float
2454
+ - fmt
2455
+ - glog
2456
+ - RCT-Folly
2457
+ - RCT-Folly/Fabric
2458
+ - RCTTypeSafety
2459
+ - React-Core/RCTSettingsHeaders
2460
+ - React-jsi
2461
+ - React-NativeModulesApple
2462
+ - React-RCTFBReactNativeSpec
2463
+ - ReactCommon
2464
+ - SocketRocket
2465
+ - React-RCTText (0.83.1):
2466
+ - React-Core/RCTTextHeaders (= 0.83.1)
2467
+ - Yoga
2468
+ - React-RCTVibration (0.83.1):
2469
+ - boost
2470
+ - DoubleConversion
2471
+ - fast_float
2472
+ - fmt
2473
+ - glog
2474
+ - RCT-Folly
2475
+ - RCT-Folly/Fabric
2476
+ - React-Core/RCTVibrationHeaders
2477
+ - React-jsi
2478
+ - React-NativeModulesApple
2479
+ - React-RCTFBReactNativeSpec
2480
+ - ReactCommon
2481
+ - SocketRocket
2482
+ - React-rendererconsistency (0.83.1)
2483
+ - React-renderercss (0.83.1):
2484
+ - React-debug
2485
+ - React-utils
2486
+ - React-rendererdebug (0.83.1):
2487
+ - boost
2488
+ - DoubleConversion
2489
+ - fast_float
2490
+ - fmt
2491
+ - glog
2492
+ - RCT-Folly
2493
+ - RCT-Folly/Fabric
2494
+ - React-debug
2495
+ - SocketRocket
2496
+ - React-RuntimeApple (0.83.1):
2497
+ - boost
2498
+ - DoubleConversion
2499
+ - fast_float
2500
+ - fmt
2501
+ - glog
2502
+ - hermes-engine
2503
+ - RCT-Folly
2504
+ - RCT-Folly/Fabric
2505
+ - React-callinvoker
2506
+ - React-Core/Default
2507
+ - React-CoreModules
2508
+ - React-cxxreact
2509
+ - React-featureflags
2510
+ - React-jserrorhandler
2511
+ - React-jsi
2512
+ - React-jsiexecutor
2513
+ - React-jsinspector
2514
+ - React-jsitooling
2515
+ - React-Mapbuffer
2516
+ - React-NativeModulesApple
2517
+ - React-RCTFabric
2518
+ - React-RCTFBReactNativeSpec
2519
+ - React-RuntimeCore
2520
+ - React-runtimeexecutor
2521
+ - React-RuntimeHermes
2522
+ - React-runtimescheduler
2523
+ - React-utils
2524
+ - SocketRocket
2525
+ - React-RuntimeCore (0.83.1):
2526
+ - boost
2527
+ - DoubleConversion
2528
+ - fast_float
2529
+ - fmt
2530
+ - glog
2531
+ - hermes-engine
2532
+ - RCT-Folly
2533
+ - RCT-Folly/Fabric
2534
+ - React-cxxreact
2535
+ - React-Fabric
2536
+ - React-featureflags
2537
+ - React-jserrorhandler
2538
+ - React-jsi
2539
+ - React-jsiexecutor
2540
+ - React-jsinspector
2541
+ - React-jsitooling
2542
+ - React-performancetimeline
2543
+ - React-runtimeexecutor
2544
+ - React-runtimescheduler
2545
+ - React-utils
2546
+ - SocketRocket
2547
+ - React-runtimeexecutor (0.83.1):
2548
+ - boost
2549
+ - DoubleConversion
2550
+ - fast_float
2551
+ - fmt
2552
+ - glog
2553
+ - RCT-Folly
2554
+ - RCT-Folly/Fabric
2555
+ - React-debug
2556
+ - React-featureflags
2557
+ - React-jsi (= 0.83.1)
2558
+ - React-utils
2559
+ - SocketRocket
2560
+ - React-RuntimeHermes (0.83.1):
2561
+ - boost
2562
+ - DoubleConversion
2563
+ - fast_float
2564
+ - fmt
2565
+ - glog
2566
+ - hermes-engine
2567
+ - RCT-Folly
2568
+ - RCT-Folly/Fabric
2569
+ - React-featureflags
2570
+ - React-hermes
2571
+ - React-jsi
2572
+ - React-jsinspector
2573
+ - React-jsinspectorcdp
2574
+ - React-jsinspectortracing
2575
+ - React-jsitooling
2576
+ - React-jsitracing
2577
+ - React-RuntimeCore
2578
+ - React-runtimeexecutor
2579
+ - React-utils
2580
+ - SocketRocket
2581
+ - React-runtimescheduler (0.83.1):
2582
+ - boost
2583
+ - DoubleConversion
2584
+ - fast_float
2585
+ - fmt
2586
+ - glog
2587
+ - hermes-engine
2588
+ - RCT-Folly
2589
+ - RCT-Folly/Fabric
2590
+ - React-callinvoker
2591
+ - React-cxxreact
2592
+ - React-debug
2593
+ - React-featureflags
2594
+ - React-jsi
2595
+ - React-jsinspectortracing
2596
+ - React-performancetimeline
2597
+ - React-rendererconsistency
2598
+ - React-rendererdebug
2599
+ - React-runtimeexecutor
2600
+ - React-timing
2601
+ - React-utils
2602
+ - SocketRocket
2603
+ - React-timing (0.83.1):
2604
+ - React-debug
2605
+ - React-utils (0.83.1):
2606
+ - boost
2607
+ - DoubleConversion
2608
+ - fast_float
2609
+ - fmt
2610
+ - glog
2611
+ - hermes-engine
2612
+ - RCT-Folly
2613
+ - RCT-Folly/Fabric
2614
+ - React-debug
2615
+ - React-jsi (= 0.83.1)
2616
+ - SocketRocket
2617
+ - React-webperformancenativemodule (0.83.1):
2618
+ - boost
2619
+ - DoubleConversion
2620
+ - fast_float
2621
+ - fmt
2622
+ - glog
2623
+ - hermes-engine
2624
+ - RCT-Folly
2625
+ - RCT-Folly/Fabric
2626
+ - React-cxxreact
2627
+ - React-jsi
2628
+ - React-jsiexecutor
2629
+ - React-performancetimeline
2630
+ - React-RCTFBReactNativeSpec
2631
+ - React-runtimeexecutor
2632
+ - ReactCommon/turbomodule/core
2633
+ - SocketRocket
2634
+ - ReactAppDependencyProvider (0.83.1):
2635
+ - ReactCodegen
2636
+ - ReactCodegen (0.83.1):
2637
+ - boost
2638
+ - DoubleConversion
2639
+ - fast_float
2640
+ - fmt
2641
+ - glog
2642
+ - hermes-engine
2643
+ - RCT-Folly
2644
+ - RCT-Folly/Fabric
2645
+ - RCTRequired
2646
+ - RCTTypeSafety
2647
+ - React-Core
2648
+ - React-debug
2649
+ - React-Fabric
2650
+ - React-FabricImage
2651
+ - React-featureflags
2652
+ - React-graphics
2653
+ - React-jsi
2654
+ - React-jsiexecutor
2655
+ - React-NativeModulesApple
2656
+ - React-RCTAppDelegate
2657
+ - React-rendererdebug
2658
+ - React-utils
2659
+ - ReactCommon/turbomodule/bridging
2660
+ - ReactCommon/turbomodule/core
2661
+ - SocketRocket
2662
+ - ReactCommon (0.83.1):
2663
+ - boost
2664
+ - DoubleConversion
2665
+ - fast_float
2666
+ - fmt
2667
+ - glog
2668
+ - RCT-Folly
2669
+ - RCT-Folly/Fabric
2670
+ - ReactCommon/turbomodule (= 0.83.1)
2671
+ - SocketRocket
2672
+ - ReactCommon/turbomodule (0.83.1):
2673
+ - boost
2674
+ - DoubleConversion
2675
+ - fast_float
2676
+ - fmt
2677
+ - glog
2678
+ - hermes-engine
2679
+ - RCT-Folly
2680
+ - RCT-Folly/Fabric
2681
+ - React-callinvoker (= 0.83.1)
2682
+ - React-cxxreact (= 0.83.1)
2683
+ - React-jsi (= 0.83.1)
2684
+ - React-logger (= 0.83.1)
2685
+ - React-perflogger (= 0.83.1)
2686
+ - ReactCommon/turbomodule/bridging (= 0.83.1)
2687
+ - ReactCommon/turbomodule/core (= 0.83.1)
2688
+ - SocketRocket
2689
+ - ReactCommon/turbomodule/bridging (0.83.1):
2690
+ - boost
2691
+ - DoubleConversion
2692
+ - fast_float
2693
+ - fmt
2694
+ - glog
2695
+ - hermes-engine
2696
+ - RCT-Folly
2697
+ - RCT-Folly/Fabric
2698
+ - React-callinvoker (= 0.83.1)
2699
+ - React-cxxreact (= 0.83.1)
2700
+ - React-jsi (= 0.83.1)
2701
+ - React-logger (= 0.83.1)
2702
+ - React-perflogger (= 0.83.1)
2703
+ - SocketRocket
2704
+ - ReactCommon/turbomodule/core (0.83.1):
2705
+ - boost
2706
+ - DoubleConversion
2707
+ - fast_float
2708
+ - fmt
2709
+ - glog
2710
+ - hermes-engine
2711
+ - RCT-Folly
2712
+ - RCT-Folly/Fabric
2713
+ - React-callinvoker (= 0.83.1)
2714
+ - React-cxxreact (= 0.83.1)
2715
+ - React-debug (= 0.83.1)
2716
+ - React-featureflags (= 0.83.1)
2717
+ - React-jsi (= 0.83.1)
2718
+ - React-logger (= 0.83.1)
2719
+ - React-perflogger (= 0.83.1)
2720
+ - React-utils (= 0.83.1)
2721
+ - SocketRocket
2722
+ - RNCAsyncStorage (2.2.0):
2723
+ - boost
2724
+ - DoubleConversion
2725
+ - fast_float
2726
+ - fmt
2727
+ - glog
2728
+ - hermes-engine
2729
+ - RCT-Folly
2730
+ - RCT-Folly/Fabric
2731
+ - RCTRequired
2732
+ - RCTTypeSafety
2733
+ - React-Core
2734
+ - React-debug
2735
+ - React-Fabric
2736
+ - React-featureflags
2737
+ - React-graphics
2738
+ - React-ImageManager
2739
+ - React-jsi
2740
+ - React-NativeModulesApple
2741
+ - React-RCTFabric
2742
+ - React-renderercss
2743
+ - React-rendererdebug
2744
+ - React-utils
2745
+ - ReactCodegen
2746
+ - ReactCommon/turbomodule/bridging
2747
+ - ReactCommon/turbomodule/core
2748
+ - SocketRocket
2749
+ - Yoga
2750
+ - RNCMaskedView (0.3.2):
2751
+ - boost
2752
+ - DoubleConversion
2753
+ - fast_float
2754
+ - fmt
2755
+ - glog
2756
+ - hermes-engine
2757
+ - RCT-Folly
2758
+ - RCT-Folly/Fabric
2759
+ - RCTRequired
2760
+ - RCTTypeSafety
2761
+ - React-Core
2762
+ - React-debug
2763
+ - React-Fabric
2764
+ - React-featureflags
2765
+ - React-graphics
2766
+ - React-ImageManager
2767
+ - React-jsi
2768
+ - React-NativeModulesApple
2769
+ - React-RCTFabric
2770
+ - React-renderercss
2771
+ - React-rendererdebug
2772
+ - React-utils
2773
+ - ReactCodegen
2774
+ - ReactCommon/turbomodule/bridging
2775
+ - ReactCommon/turbomodule/core
2776
+ - SocketRocket
2777
+ - Yoga
2778
+ - RNCPicker (2.11.4):
2779
+ - boost
2780
+ - DoubleConversion
2781
+ - fast_float
2782
+ - fmt
2783
+ - glog
2784
+ - hermes-engine
2785
+ - RCT-Folly
2786
+ - RCT-Folly/Fabric
2787
+ - RCTRequired
2788
+ - RCTTypeSafety
2789
+ - React-Core
2790
+ - React-debug
2791
+ - React-Fabric
2792
+ - React-featureflags
2793
+ - React-graphics
2794
+ - React-ImageManager
2795
+ - React-jsi
2796
+ - React-NativeModulesApple
2797
+ - React-RCTFabric
2798
+ - React-renderercss
2799
+ - React-rendererdebug
2800
+ - React-utils
2801
+ - ReactCodegen
2802
+ - ReactCommon/turbomodule/bridging
2803
+ - ReactCommon/turbomodule/core
2804
+ - SocketRocket
2805
+ - Yoga
2806
+ - RNDateTimePicker (8.6.0):
2807
+ - boost
2808
+ - DoubleConversion
2809
+ - fast_float
2810
+ - fmt
2811
+ - glog
2812
+ - hermes-engine
2813
+ - RCT-Folly
2814
+ - RCT-Folly/Fabric
2815
+ - RCTRequired
2816
+ - RCTTypeSafety
2817
+ - React-Core
2818
+ - React-debug
2819
+ - React-Fabric
2820
+ - React-featureflags
2821
+ - React-graphics
2822
+ - React-ImageManager
2823
+ - React-jsi
2824
+ - React-NativeModulesApple
2825
+ - React-RCTFabric
2826
+ - React-renderercss
2827
+ - React-rendererdebug
2828
+ - React-utils
2829
+ - ReactCodegen
2830
+ - ReactCommon/turbomodule/bridging
2831
+ - ReactCommon/turbomodule/core
2832
+ - SocketRocket
2833
+ - Yoga
2834
+ - RNDeviceInfo (15.0.1):
2835
+ - React-Core
2836
+ - RNGestureHandler (2.30.0):
2837
+ - boost
2838
+ - DoubleConversion
2839
+ - fast_float
2840
+ - fmt
2841
+ - glog
2842
+ - hermes-engine
2843
+ - RCT-Folly
2844
+ - RCT-Folly/Fabric
2845
+ - RCTRequired
2846
+ - RCTTypeSafety
2847
+ - React-Core
2848
+ - React-debug
2849
+ - React-Fabric
2850
+ - React-featureflags
2851
+ - React-graphics
2852
+ - React-ImageManager
2853
+ - React-jsi
2854
+ - React-NativeModulesApple
2855
+ - React-RCTFabric
2856
+ - React-renderercss
2857
+ - React-rendererdebug
2858
+ - React-utils
2859
+ - ReactCodegen
2860
+ - ReactCommon/turbomodule/bridging
2861
+ - ReactCommon/turbomodule/core
2862
+ - SocketRocket
2863
+ - Yoga
2864
+ - RNLocalize (3.6.1):
2865
+ - boost
2866
+ - DoubleConversion
2867
+ - fast_float
2868
+ - fmt
2869
+ - glog
2870
+ - hermes-engine
2871
+ - RCT-Folly
2872
+ - RCT-Folly/Fabric
2873
+ - RCTRequired
2874
+ - RCTTypeSafety
2875
+ - React-Core
2876
+ - React-debug
2877
+ - React-Fabric
2878
+ - React-featureflags
2879
+ - React-graphics
2880
+ - React-ImageManager
2881
+ - React-jsi
2882
+ - React-NativeModulesApple
2883
+ - React-RCTFabric
2884
+ - React-renderercss
2885
+ - React-rendererdebug
2886
+ - React-utils
2887
+ - ReactCodegen
2888
+ - ReactCommon/turbomodule/bridging
2889
+ - ReactCommon/turbomodule/core
2890
+ - SocketRocket
2891
+ - Yoga
2892
+ - RNPermissions (5.4.4):
2893
+ - boost
2894
+ - DoubleConversion
2895
+ - fast_float
2896
+ - fmt
2897
+ - glog
2898
+ - hermes-engine
2899
+ - RCT-Folly
2900
+ - RCT-Folly/Fabric
2901
+ - RCTRequired
2902
+ - RCTTypeSafety
2903
+ - React-Core
2904
+ - React-debug
2905
+ - React-Fabric
2906
+ - React-featureflags
2907
+ - React-graphics
2908
+ - React-ImageManager
2909
+ - React-jsi
2910
+ - React-NativeModulesApple
2911
+ - React-RCTFabric
2912
+ - React-renderercss
2913
+ - React-rendererdebug
2914
+ - React-utils
2915
+ - ReactCodegen
2916
+ - ReactCommon/turbomodule/bridging
2917
+ - ReactCommon/turbomodule/core
2918
+ - SocketRocket
2919
+ - Yoga
2920
+ - RNReanimated (4.2.1):
2921
+ - boost
2922
+ - DoubleConversion
2923
+ - fast_float
2924
+ - fmt
2925
+ - glog
2926
+ - hermes-engine
2927
+ - RCT-Folly
2928
+ - RCT-Folly/Fabric
2929
+ - RCTRequired
2930
+ - RCTTypeSafety
2931
+ - React-Core
2932
+ - React-debug
2933
+ - React-Fabric
2934
+ - React-featureflags
2935
+ - React-graphics
2936
+ - React-hermes
2937
+ - React-ImageManager
2938
+ - React-jsi
2939
+ - React-NativeModulesApple
2940
+ - React-RCTFabric
2941
+ - React-renderercss
2942
+ - React-rendererdebug
2943
+ - React-utils
2944
+ - ReactCodegen
2945
+ - ReactCommon/turbomodule/bridging
2946
+ - ReactCommon/turbomodule/core
2947
+ - RNReanimated/reanimated (= 4.2.1)
2948
+ - RNWorklets
2949
+ - SocketRocket
2950
+ - Yoga
2951
+ - RNReanimated/reanimated (4.2.1):
2952
+ - boost
2953
+ - DoubleConversion
2954
+ - fast_float
2955
+ - fmt
2956
+ - glog
2957
+ - hermes-engine
2958
+ - RCT-Folly
2959
+ - RCT-Folly/Fabric
2960
+ - RCTRequired
2961
+ - RCTTypeSafety
2962
+ - React-Core
2963
+ - React-debug
2964
+ - React-Fabric
2965
+ - React-featureflags
2966
+ - React-graphics
2967
+ - React-hermes
2968
+ - React-ImageManager
2969
+ - React-jsi
2970
+ - React-NativeModulesApple
2971
+ - React-RCTFabric
2972
+ - React-renderercss
2973
+ - React-rendererdebug
2974
+ - React-utils
2975
+ - ReactCodegen
2976
+ - ReactCommon/turbomodule/bridging
2977
+ - ReactCommon/turbomodule/core
2978
+ - RNReanimated/reanimated/apple (= 4.2.1)
2979
+ - RNWorklets
2980
+ - SocketRocket
2981
+ - Yoga
2982
+ - RNReanimated/reanimated/apple (4.2.1):
2983
+ - boost
2984
+ - DoubleConversion
2985
+ - fast_float
2986
+ - fmt
2987
+ - glog
2988
+ - hermes-engine
2989
+ - RCT-Folly
2990
+ - RCT-Folly/Fabric
2991
+ - RCTRequired
2992
+ - RCTTypeSafety
2993
+ - React-Core
2994
+ - React-debug
2995
+ - React-Fabric
2996
+ - React-featureflags
2997
+ - React-graphics
2998
+ - React-hermes
2999
+ - React-ImageManager
3000
+ - React-jsi
3001
+ - React-NativeModulesApple
3002
+ - React-RCTFabric
3003
+ - React-renderercss
3004
+ - React-rendererdebug
3005
+ - React-utils
3006
+ - ReactCodegen
3007
+ - ReactCommon/turbomodule/bridging
3008
+ - ReactCommon/turbomodule/core
3009
+ - RNWorklets
3010
+ - SocketRocket
3011
+ - Yoga
3012
+ - RNScreens (4.20.0):
3013
+ - boost
3014
+ - DoubleConversion
3015
+ - fast_float
3016
+ - fmt
3017
+ - glog
3018
+ - hermes-engine
3019
+ - RCT-Folly
3020
+ - RCT-Folly/Fabric
3021
+ - RCTRequired
3022
+ - RCTTypeSafety
3023
+ - React-Core
3024
+ - React-debug
3025
+ - React-Fabric
3026
+ - React-featureflags
3027
+ - React-graphics
3028
+ - React-ImageManager
3029
+ - React-jsi
3030
+ - React-NativeModulesApple
3031
+ - React-RCTFabric
3032
+ - React-RCTImage
3033
+ - React-renderercss
3034
+ - React-rendererdebug
3035
+ - React-utils
3036
+ - ReactCodegen
3037
+ - ReactCommon/turbomodule/bridging
3038
+ - ReactCommon/turbomodule/core
3039
+ - RNScreens/common (= 4.20.0)
3040
+ - SocketRocket
3041
+ - Yoga
3042
+ - RNScreens/common (4.20.0):
3043
+ - boost
3044
+ - DoubleConversion
3045
+ - fast_float
3046
+ - fmt
3047
+ - glog
3048
+ - hermes-engine
3049
+ - RCT-Folly
3050
+ - RCT-Folly/Fabric
3051
+ - RCTRequired
3052
+ - RCTTypeSafety
3053
+ - React-Core
3054
+ - React-debug
3055
+ - React-Fabric
3056
+ - React-featureflags
3057
+ - React-graphics
3058
+ - React-ImageManager
3059
+ - React-jsi
3060
+ - React-NativeModulesApple
3061
+ - React-RCTFabric
3062
+ - React-RCTImage
3063
+ - React-renderercss
3064
+ - React-rendererdebug
3065
+ - React-utils
3066
+ - ReactCodegen
3067
+ - ReactCommon/turbomodule/bridging
3068
+ - ReactCommon/turbomodule/core
3069
+ - SocketRocket
3070
+ - Yoga
3071
+ - RNSVG (15.15.1):
3072
+ - boost
3073
+ - DoubleConversion
3074
+ - fast_float
3075
+ - fmt
3076
+ - glog
3077
+ - hermes-engine
3078
+ - RCT-Folly
3079
+ - RCT-Folly/Fabric
3080
+ - RCTRequired
3081
+ - RCTTypeSafety
3082
+ - React-Core
3083
+ - React-debug
3084
+ - React-Fabric
3085
+ - React-featureflags
3086
+ - React-graphics
3087
+ - React-ImageManager
3088
+ - React-jsi
3089
+ - React-NativeModulesApple
3090
+ - React-RCTFabric
3091
+ - React-renderercss
3092
+ - React-rendererdebug
3093
+ - React-utils
3094
+ - ReactCodegen
3095
+ - ReactCommon/turbomodule/bridging
3096
+ - ReactCommon/turbomodule/core
3097
+ - RNSVG/common (= 15.15.1)
3098
+ - SocketRocket
3099
+ - Yoga
3100
+ - RNSVG/common (15.15.1):
3101
+ - boost
3102
+ - DoubleConversion
3103
+ - fast_float
3104
+ - fmt
3105
+ - glog
3106
+ - hermes-engine
3107
+ - RCT-Folly
3108
+ - RCT-Folly/Fabric
3109
+ - RCTRequired
3110
+ - RCTTypeSafety
3111
+ - React-Core
3112
+ - React-debug
3113
+ - React-Fabric
3114
+ - React-featureflags
3115
+ - React-graphics
3116
+ - React-ImageManager
3117
+ - React-jsi
3118
+ - React-NativeModulesApple
3119
+ - React-RCTFabric
3120
+ - React-renderercss
3121
+ - React-rendererdebug
3122
+ - React-utils
3123
+ - ReactCodegen
3124
+ - ReactCommon/turbomodule/bridging
3125
+ - ReactCommon/turbomodule/core
3126
+ - SocketRocket
3127
+ - Yoga
3128
+ - RNWorklets (0.7.2):
3129
+ - boost
3130
+ - DoubleConversion
3131
+ - fast_float
3132
+ - fmt
3133
+ - glog
3134
+ - hermes-engine
3135
+ - RCT-Folly
3136
+ - RCT-Folly/Fabric
3137
+ - RCTRequired
3138
+ - RCTTypeSafety
3139
+ - React-Core
3140
+ - React-debug
3141
+ - React-Fabric
3142
+ - React-featureflags
3143
+ - React-graphics
3144
+ - React-hermes
3145
+ - React-ImageManager
3146
+ - React-jsi
3147
+ - React-NativeModulesApple
3148
+ - React-RCTFabric
3149
+ - React-renderercss
3150
+ - React-rendererdebug
3151
+ - React-utils
3152
+ - ReactCodegen
3153
+ - ReactCommon/turbomodule/bridging
3154
+ - ReactCommon/turbomodule/core
3155
+ - RNWorklets/worklets (= 0.7.2)
3156
+ - SocketRocket
3157
+ - Yoga
3158
+ - RNWorklets/worklets (0.7.2):
3159
+ - boost
3160
+ - DoubleConversion
3161
+ - fast_float
3162
+ - fmt
3163
+ - glog
3164
+ - hermes-engine
3165
+ - RCT-Folly
3166
+ - RCT-Folly/Fabric
3167
+ - RCTRequired
3168
+ - RCTTypeSafety
3169
+ - React-Core
3170
+ - React-debug
3171
+ - React-Fabric
3172
+ - React-featureflags
3173
+ - React-graphics
3174
+ - React-hermes
3175
+ - React-ImageManager
3176
+ - React-jsi
3177
+ - React-NativeModulesApple
3178
+ - React-RCTFabric
3179
+ - React-renderercss
3180
+ - React-rendererdebug
3181
+ - React-utils
3182
+ - ReactCodegen
3183
+ - ReactCommon/turbomodule/bridging
3184
+ - ReactCommon/turbomodule/core
3185
+ - RNWorklets/worklets/apple (= 0.7.2)
3186
+ - SocketRocket
3187
+ - Yoga
3188
+ - RNWorklets/worklets/apple (0.7.2):
3189
+ - boost
3190
+ - DoubleConversion
3191
+ - fast_float
3192
+ - fmt
3193
+ - glog
3194
+ - hermes-engine
3195
+ - RCT-Folly
3196
+ - RCT-Folly/Fabric
3197
+ - RCTRequired
3198
+ - RCTTypeSafety
3199
+ - React-Core
3200
+ - React-debug
3201
+ - React-Fabric
3202
+ - React-featureflags
3203
+ - React-graphics
3204
+ - React-hermes
3205
+ - React-ImageManager
3206
+ - React-jsi
3207
+ - React-NativeModulesApple
3208
+ - React-RCTFabric
3209
+ - React-renderercss
3210
+ - React-rendererdebug
3211
+ - React-utils
3212
+ - ReactCodegen
3213
+ - ReactCommon/turbomodule/bridging
3214
+ - ReactCommon/turbomodule/core
3215
+ - SocketRocket
3216
+ - Yoga
3217
+ - SocketRocket (0.7.1)
3218
+ - SwiftUIIntrospect (1.3.0)
3219
+ - toolbar-android (0.2.1):
3220
+ - React
3221
+ - Yoga (0.0.0)
3222
+
3223
+ DEPENDENCIES:
3224
+ - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
3225
+ - BVLinearGradient (from `../node_modules/react-native-linear-gradient`)
3226
+ - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
3227
+ - fast_float (from `../node_modules/react-native/third-party-podspecs/fast_float.podspec`)
3228
+ - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
3229
+ - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
3230
+ - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
3231
+ - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
3232
+ - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
3233
+ - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
3234
+ - RCTRequired (from `../node_modules/react-native/Libraries/Required`)
3235
+ - RCTSwiftUI (from `../node_modules/react-native/ReactApple/RCTSwiftUI`)
3236
+ - RCTSwiftUIWrapper (from `../node_modules/react-native/ReactApple/RCTSwiftUIWrapper`)
3237
+ - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
3238
+ - React (from `../node_modules/react-native/`)
3239
+ - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
3240
+ - React-Core (from `../node_modules/react-native/`)
3241
+ - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
3242
+ - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
3243
+ - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
3244
+ - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
3245
+ - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`)
3246
+ - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`)
3247
+ - React-Fabric (from `../node_modules/react-native/ReactCommon`)
3248
+ - React-FabricComponents (from `../node_modules/react-native/ReactCommon`)
3249
+ - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
3250
+ - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
3251
+ - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`)
3252
+ - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
3253
+ - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
3254
+ - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`)
3255
+ - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
3256
+ - React-intersectionobservernativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/intersectionobserver`)
3257
+ - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
3258
+ - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
3259
+ - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
3260
+ - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
3261
+ - React-jsinspectorcdp (from `../node_modules/react-native/ReactCommon/jsinspector-modern/cdp`)
3262
+ - React-jsinspectornetwork (from `../node_modules/react-native/ReactCommon/jsinspector-modern/network`)
3263
+ - React-jsinspectortracing (from `../node_modules/react-native/ReactCommon/jsinspector-modern/tracing`)
3264
+ - React-jsitooling (from `../node_modules/react-native/ReactCommon/jsitooling`)
3265
+ - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
3266
+ - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
3267
+ - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
3268
+ - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
3269
+ - react-native-blob-util (from `../node_modules/react-native-blob-util`)
3270
+ - "react-native-blur (from `../node_modules/@react-native-community/blur`)"
3271
+ - react-native-encrypted-storage (from `../node_modules/react-native-encrypted-storage`)
3272
+ - react-native-encryption (from `../node_modules/rn-encryption`)
3273
+ - react-native-get-random-values (from `../node_modules/react-native-get-random-values`)
3274
+ - react-native-mmkv (from `../node_modules/react-native-mmkv`)
3275
+ - "react-native-netinfo (from `../node_modules/@react-native-community/netinfo`)"
3276
+ - react-native-pager-view (from `../node_modules/react-native-pager-view`)
3277
+ - react-native-render-html (from `../node_modules/react-native-render-html`)
3278
+ - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
3279
+ - "react-native-vector-icons-ant-design (from `../node_modules/@react-native-vector-icons/ant-design`)"
3280
+ - "react-native-vector-icons-evil-icons (from `../node_modules/@react-native-vector-icons/evil-icons`)"
3281
+ - "react-native-vector-icons-fontawesome6 (from `../node_modules/@react-native-vector-icons/fontawesome6`)"
3282
+ - "react-native-vector-icons-ionicons (from `../node_modules/@react-native-vector-icons/ionicons`)"
3283
+ - "react-native-vector-icons-lucide (from `../node_modules/@react-native-vector-icons/lucide`)"
3284
+ - "react-native-vector-icons-material-design-icons (from `../node_modules/@react-native-vector-icons/material-design-icons`)"
3285
+ - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
3286
+ - React-networking (from `../node_modules/react-native/ReactCommon/react/networking`)
3287
+ - React-oscompat (from `../node_modules/react-native/ReactCommon/oscompat`)
3288
+ - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
3289
+ - React-performancecdpmetrics (from `../node_modules/react-native/ReactCommon/react/performance/cdpmetrics`)
3290
+ - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)
3291
+ - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
3292
+ - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
3293
+ - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
3294
+ - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
3295
+ - React-RCTFabric (from `../node_modules/react-native/React`)
3296
+ - React-RCTFBReactNativeSpec (from `../node_modules/react-native/React`)
3297
+ - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
3298
+ - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
3299
+ - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
3300
+ - React-RCTRuntime (from `../node_modules/react-native/React/Runtime`)
3301
+ - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
3302
+ - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
3303
+ - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
3304
+ - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)
3305
+ - React-renderercss (from `../node_modules/react-native/ReactCommon/react/renderer/css`)
3306
+ - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
3307
+ - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
3308
+ - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
3309
+ - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
3310
+ - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)
3311
+ - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
3312
+ - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`)
3313
+ - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
3314
+ - React-webperformancenativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/webperformance`)
3315
+ - ReactAppDependencyProvider (from `build/generated/ios/ReactAppDependencyProvider`)
3316
+ - ReactCodegen (from `build/generated/ios/ReactCodegen`)
3317
+ - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
3318
+ - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
3319
+ - "RNCMaskedView (from `../node_modules/@react-native-masked-view/masked-view`)"
3320
+ - "RNCPicker (from `../node_modules/@react-native-picker/picker`)"
3321
+ - "RNDateTimePicker (from `../node_modules/@react-native-community/datetimepicker`)"
3322
+ - RNDeviceInfo (from `../node_modules/react-native-device-info`)
3323
+ - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
3324
+ - RNLocalize (from `../node_modules/react-native-localize`)
3325
+ - RNPermissions (from `../node_modules/react-native-permissions`)
3326
+ - RNReanimated (from `../node_modules/react-native-reanimated`)
3327
+ - RNScreens (from `../node_modules/react-native-screens`)
3328
+ - RNSVG (from `../node_modules/react-native-svg`)
3329
+ - RNWorklets (from `../node_modules/react-native-worklets`)
3330
+ - SocketRocket (~> 0.7.1)
3331
+ - "toolbar-android (from `../node_modules/@react-native-community/toolbar-android`)"
3332
+ - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
3333
+
3334
+ SPEC REPOS:
3335
+ trunk:
3336
+ - SocketRocket
3337
+ - SwiftUIIntrospect
3338
+
3339
+ EXTERNAL SOURCES:
3340
+ boost:
3341
+ :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
3342
+ BVLinearGradient:
3343
+ :path: "../node_modules/react-native-linear-gradient"
3344
+ DoubleConversion:
3345
+ :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
3346
+ fast_float:
3347
+ :podspec: "../node_modules/react-native/third-party-podspecs/fast_float.podspec"
3348
+ FBLazyVector:
3349
+ :path: "../node_modules/react-native/Libraries/FBLazyVector"
3350
+ fmt:
3351
+ :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"
3352
+ glog:
3353
+ :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
3354
+ hermes-engine:
3355
+ :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
3356
+ :tag: hermes-v0.14.0
3357
+ RCT-Folly:
3358
+ :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
3359
+ RCTDeprecation:
3360
+ :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
3361
+ RCTRequired:
3362
+ :path: "../node_modules/react-native/Libraries/Required"
3363
+ RCTSwiftUI:
3364
+ :path: "../node_modules/react-native/ReactApple/RCTSwiftUI"
3365
+ RCTSwiftUIWrapper:
3366
+ :path: "../node_modules/react-native/ReactApple/RCTSwiftUIWrapper"
3367
+ RCTTypeSafety:
3368
+ :path: "../node_modules/react-native/Libraries/TypeSafety"
3369
+ React:
3370
+ :path: "../node_modules/react-native/"
3371
+ React-callinvoker:
3372
+ :path: "../node_modules/react-native/ReactCommon/callinvoker"
3373
+ React-Core:
3374
+ :path: "../node_modules/react-native/"
3375
+ React-CoreModules:
3376
+ :path: "../node_modules/react-native/React/CoreModules"
3377
+ React-cxxreact:
3378
+ :path: "../node_modules/react-native/ReactCommon/cxxreact"
3379
+ React-debug:
3380
+ :path: "../node_modules/react-native/ReactCommon/react/debug"
3381
+ React-defaultsnativemodule:
3382
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults"
3383
+ React-domnativemodule:
3384
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom"
3385
+ React-Fabric:
3386
+ :path: "../node_modules/react-native/ReactCommon"
3387
+ React-FabricComponents:
3388
+ :path: "../node_modules/react-native/ReactCommon"
3389
+ React-FabricImage:
3390
+ :path: "../node_modules/react-native/ReactCommon"
3391
+ React-featureflags:
3392
+ :path: "../node_modules/react-native/ReactCommon/react/featureflags"
3393
+ React-featureflagsnativemodule:
3394
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags"
3395
+ React-graphics:
3396
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
3397
+ React-hermes:
3398
+ :path: "../node_modules/react-native/ReactCommon/hermes"
3399
+ React-idlecallbacksnativemodule:
3400
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks"
3401
+ React-ImageManager:
3402
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
3403
+ React-intersectionobservernativemodule:
3404
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/intersectionobserver"
3405
+ React-jserrorhandler:
3406
+ :path: "../node_modules/react-native/ReactCommon/jserrorhandler"
3407
+ React-jsi:
3408
+ :path: "../node_modules/react-native/ReactCommon/jsi"
3409
+ React-jsiexecutor:
3410
+ :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
3411
+ React-jsinspector:
3412
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
3413
+ React-jsinspectorcdp:
3414
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/cdp"
3415
+ React-jsinspectornetwork:
3416
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/network"
3417
+ React-jsinspectortracing:
3418
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/tracing"
3419
+ React-jsitooling:
3420
+ :path: "../node_modules/react-native/ReactCommon/jsitooling"
3421
+ React-jsitracing:
3422
+ :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
3423
+ React-logger:
3424
+ :path: "../node_modules/react-native/ReactCommon/logger"
3425
+ React-Mapbuffer:
3426
+ :path: "../node_modules/react-native/ReactCommon"
3427
+ React-microtasksnativemodule:
3428
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
3429
+ react-native-blob-util:
3430
+ :path: "../node_modules/react-native-blob-util"
3431
+ react-native-blur:
3432
+ :path: "../node_modules/@react-native-community/blur"
3433
+ react-native-encrypted-storage:
3434
+ :path: "../node_modules/react-native-encrypted-storage"
3435
+ react-native-encryption:
3436
+ :path: "../node_modules/rn-encryption"
3437
+ react-native-get-random-values:
3438
+ :path: "../node_modules/react-native-get-random-values"
3439
+ react-native-mmkv:
3440
+ :path: "../node_modules/react-native-mmkv"
3441
+ react-native-netinfo:
3442
+ :path: "../node_modules/@react-native-community/netinfo"
3443
+ react-native-pager-view:
3444
+ :path: "../node_modules/react-native-pager-view"
3445
+ react-native-render-html:
3446
+ :path: "../node_modules/react-native-render-html"
3447
+ react-native-safe-area-context:
3448
+ :path: "../node_modules/react-native-safe-area-context"
3449
+ react-native-vector-icons-ant-design:
3450
+ :path: "../node_modules/@react-native-vector-icons/ant-design"
3451
+ react-native-vector-icons-evil-icons:
3452
+ :path: "../node_modules/@react-native-vector-icons/evil-icons"
3453
+ react-native-vector-icons-fontawesome6:
3454
+ :path: "../node_modules/@react-native-vector-icons/fontawesome6"
3455
+ react-native-vector-icons-ionicons:
3456
+ :path: "../node_modules/@react-native-vector-icons/ionicons"
3457
+ react-native-vector-icons-lucide:
3458
+ :path: "../node_modules/@react-native-vector-icons/lucide"
3459
+ react-native-vector-icons-material-design-icons:
3460
+ :path: "../node_modules/@react-native-vector-icons/material-design-icons"
3461
+ React-NativeModulesApple:
3462
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
3463
+ React-networking:
3464
+ :path: "../node_modules/react-native/ReactCommon/react/networking"
3465
+ React-oscompat:
3466
+ :path: "../node_modules/react-native/ReactCommon/oscompat"
3467
+ React-perflogger:
3468
+ :path: "../node_modules/react-native/ReactCommon/reactperflogger"
3469
+ React-performancecdpmetrics:
3470
+ :path: "../node_modules/react-native/ReactCommon/react/performance/cdpmetrics"
3471
+ React-performancetimeline:
3472
+ :path: "../node_modules/react-native/ReactCommon/react/performance/timeline"
3473
+ React-RCTActionSheet:
3474
+ :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
3475
+ React-RCTAnimation:
3476
+ :path: "../node_modules/react-native/Libraries/NativeAnimation"
3477
+ React-RCTAppDelegate:
3478
+ :path: "../node_modules/react-native/Libraries/AppDelegate"
3479
+ React-RCTBlob:
3480
+ :path: "../node_modules/react-native/Libraries/Blob"
3481
+ React-RCTFabric:
3482
+ :path: "../node_modules/react-native/React"
3483
+ React-RCTFBReactNativeSpec:
3484
+ :path: "../node_modules/react-native/React"
3485
+ React-RCTImage:
3486
+ :path: "../node_modules/react-native/Libraries/Image"
3487
+ React-RCTLinking:
3488
+ :path: "../node_modules/react-native/Libraries/LinkingIOS"
3489
+ React-RCTNetwork:
3490
+ :path: "../node_modules/react-native/Libraries/Network"
3491
+ React-RCTRuntime:
3492
+ :path: "../node_modules/react-native/React/Runtime"
3493
+ React-RCTSettings:
3494
+ :path: "../node_modules/react-native/Libraries/Settings"
3495
+ React-RCTText:
3496
+ :path: "../node_modules/react-native/Libraries/Text"
3497
+ React-RCTVibration:
3498
+ :path: "../node_modules/react-native/Libraries/Vibration"
3499
+ React-rendererconsistency:
3500
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency"
3501
+ React-renderercss:
3502
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/css"
3503
+ React-rendererdebug:
3504
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
3505
+ React-RuntimeApple:
3506
+ :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
3507
+ React-RuntimeCore:
3508
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
3509
+ React-runtimeexecutor:
3510
+ :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
3511
+ React-RuntimeHermes:
3512
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
3513
+ React-runtimescheduler:
3514
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
3515
+ React-timing:
3516
+ :path: "../node_modules/react-native/ReactCommon/react/timing"
3517
+ React-utils:
3518
+ :path: "../node_modules/react-native/ReactCommon/react/utils"
3519
+ React-webperformancenativemodule:
3520
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/webperformance"
3521
+ ReactAppDependencyProvider:
3522
+ :path: build/generated/ios/ReactAppDependencyProvider
3523
+ ReactCodegen:
3524
+ :path: build/generated/ios/ReactCodegen
3525
+ ReactCommon:
3526
+ :path: "../node_modules/react-native/ReactCommon"
3527
+ RNCAsyncStorage:
3528
+ :path: "../node_modules/@react-native-async-storage/async-storage"
3529
+ RNCMaskedView:
3530
+ :path: "../node_modules/@react-native-masked-view/masked-view"
3531
+ RNCPicker:
3532
+ :path: "../node_modules/@react-native-picker/picker"
3533
+ RNDateTimePicker:
3534
+ :path: "../node_modules/@react-native-community/datetimepicker"
3535
+ RNDeviceInfo:
3536
+ :path: "../node_modules/react-native-device-info"
3537
+ RNGestureHandler:
3538
+ :path: "../node_modules/react-native-gesture-handler"
3539
+ RNLocalize:
3540
+ :path: "../node_modules/react-native-localize"
3541
+ RNPermissions:
3542
+ :path: "../node_modules/react-native-permissions"
3543
+ RNReanimated:
3544
+ :path: "../node_modules/react-native-reanimated"
3545
+ RNScreens:
3546
+ :path: "../node_modules/react-native-screens"
3547
+ RNSVG:
3548
+ :path: "../node_modules/react-native-svg"
3549
+ RNWorklets:
3550
+ :path: "../node_modules/react-native-worklets"
3551
+ toolbar-android:
3552
+ :path: "../node_modules/@react-native-community/toolbar-android"
3553
+ Yoga:
3554
+ :path: "../node_modules/react-native/ReactCommon/yoga"
3555
+
3556
+ SPEC CHECKSUMS:
3557
+ boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90
3558
+ BVLinearGradient: cb006ba232a1f3e4f341bb62c42d1098c284da70
3559
+ DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
3560
+ fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6
3561
+ FBLazyVector: 309703e71d3f2f1ed7dc7889d58309c9d77a95a4
3562
+ fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd
3563
+ glog: 5683914934d5b6e4240e497e0f4a3b42d1854183
3564
+ hermes-engine: 2cbc7a82733e7a1018630b38fc48c46905130d31
3565
+ RCT-Folly: 846fda9475e61ec7bcbf8a3fe81edfcaeb090669
3566
+ RCTDeprecation: a41bbdd9af30bf2e5715796b313e44ec43eefff1
3567
+ RCTRequired: 7be34aabb0b77c3cefe644528df0fa0afad4e4d0
3568
+ RCTSwiftUI: a6c7271c39098bf00dbdad8f8ed997a59bbfbe44
3569
+ RCTSwiftUIWrapper: ff9098ccf7727e58218f2f8ea110349863f43438
3570
+ RCTTypeSafety: 27927d0ca04e419ed9467578b3e6297e37210b5c
3571
+ React: 4bc1f928568ad4bcfd147260f907b4ea5873a03b
3572
+ React-callinvoker: 87f8728235a0dc62e9dc19b3851c829d9347d015
3573
+ React-Core: 76bed73b02821e5630e7f2cb2e82432ee964695d
3574
+ React-CoreModules: 752dbfdaeb096658aa0adc4a03ba6214815a08df
3575
+ React-cxxreact: b6798528aa601c6db66e6adc7e2da2b059c8be74
3576
+ React-debug: 8978deb306f6f38c28b5091e52b0ac9f942b157e
3577
+ React-defaultsnativemodule: 682b77ef4acfb298017be15f4f93c1d998deb174
3578
+ React-domnativemodule: 4c4b44f7eb68dbc3a2218db088bef318a7302017
3579
+ React-Fabric: b6f82a4d8498ce4475586f71ca8397a771fe292d
3580
+ React-FabricComponents: c8695f4b11918a127c4560d66f7d3fdb01a17986
3581
+ React-FabricImage: d64f48830f63830e8ffaaf69fa487116856fbbf1
3582
+ React-featureflags: 2a46b229903e906d33dbaf9207ce57c59306c369
3583
+ React-featureflagsnativemodule: cba6c0814051a0934f8bcee4a436ee2a6bcc9754
3584
+ React-graphics: 3d0435051e1ab8904d065f8ffbe981a9fc202841
3585
+ React-hermes: 32fc9c231c1aa5c2fcfe851b0d19ee9269f88f4c
3586
+ React-idlecallbacksnativemodule: f8ee42581795c4844d97147596bcc2d824c0f188
3587
+ React-ImageManager: e8f7377ef0585fd2df05559a17e01a03e187d5cf
3588
+ React-intersectionobservernativemodule: b1bea12ca29accdd2eda60c87605a6030b894eb9
3589
+ React-jserrorhandler: 1a86df895b4eaf4e771abe8cf34cbb26d821f771
3590
+ React-jsi: adf8527fec197ad9d0480cc5b8945eb56de627f0
3591
+ React-jsiexecutor: 315fa2f879b43e3a9ca08f5f4b733472f7e4e8a4
3592
+ React-jsinspector: b4fd1933666bcb2549b566b40656c1e45e9d7632
3593
+ React-jsinspectorcdp: 80141710f2668e5b8f00417298d9b76b4abf90fa
3594
+ React-jsinspectornetwork: 1d3ea717dbbec316cd8c21a0af53928a7bf74901
3595
+ React-jsinspectortracing: 4ce745374d4b2bfbd164cce9f8de8383d3d818a0
3596
+ React-jsitooling: fc4ac4c3b1f3f9f7fedf0c777c6ff3f244f568bd
3597
+ React-jsitracing: bff08a6faeef4a9bd286487da191f5e5329e21a9
3598
+ React-logger: b8483fa08e0d62e430c76d864309d90576ca2f68
3599
+ React-Mapbuffer: 7b72a669e94662359dad4f42b5af005eb24b4e83
3600
+ React-microtasksnativemodule: cdc02da075f2857803ed63f24f5f72fc40e094c0
3601
+ react-native-blob-util: 04189c38b188b2b76ee453be34765241c552547f
3602
+ react-native-blur: 6af83e7e3c4c1446a188d9b2c493600fc4beb173
3603
+ react-native-encrypted-storage: 569d114e329b1c2c2d9f8c84bcdbe4478dda2258
3604
+ react-native-encryption: 20e2f115611cb2265e7f007b2269b3f11fac37b7
3605
+ react-native-get-random-values: e2acf4070fe4b7325705a05af047449637a27a21
3606
+ react-native-mmkv: a46b0a6df32c179997628085b3a5e0f3386d4053
3607
+ react-native-netinfo: cec9c4e86083cb5b6aba0e0711f563e2fbbff187
3608
+ react-native-pager-view: d7d2aa47f54343bf55fdcee3973503dd27c2bd37
3609
+ react-native-render-html: 5afc4751f1a98621b3009432ef84c47019dcb2bd
3610
+ react-native-safe-area-context: c00143b4823773bba23f2f19f85663ae89ceb460
3611
+ react-native-vector-icons-ant-design: a309d03f837c62c60c74ce5fd82dc0da3f1e7bbe
3612
+ react-native-vector-icons-evil-icons: 5160157a6b05251812d4b74702efc84130fe52a3
3613
+ react-native-vector-icons-fontawesome6: 1a73ea16a698f70851ad47e94521a99499e8e974
3614
+ react-native-vector-icons-ionicons: ad07e944a092a5cf71b8b569d8f5ce2bf674c415
3615
+ react-native-vector-icons-lucide: 86e93d2468e533f5f0594371b9108972b3d92762
3616
+ react-native-vector-icons-material-design-icons: 76cd460b3540b80527b4a80fb7f867f7deedb498
3617
+ React-NativeModulesApple: a2c3d2cbec893956a5b3e4060322db2984fff75b
3618
+ React-networking: 3f98bd96893a294376e7e03730947a08d474c380
3619
+ React-oscompat: 80166b66da22e7af7fad94474e9997bd52d4c8c6
3620
+ React-perflogger: d6797918d2b1031e91a9d8f5e7fdd2c8728fb390
3621
+ React-performancecdpmetrics: 5570be61e2f97c4741c5d432c91570e8e5a39892
3622
+ React-performancetimeline: 5763499ae1991fc18dcf416e340ce7bc829bb298
3623
+ React-RCTActionSheet: 3bd5f5db9f983cf38d51bb9a7a198e2ebea94821
3624
+ React-RCTAnimation: 46a9978f27dc434dbeed16afa7b82619b690a9af
3625
+ React-RCTAppDelegate: 62ecd60a2b2a8cae26ce6a066bfa59cfde97af01
3626
+ React-RCTBlob: 8285c859513023ee3cc8c806d9b59d4da078c4ba
3627
+ React-RCTFabric: 05ed09347e938de985052f791a6a0698816d5761
3628
+ React-RCTFBReactNativeSpec: 83ba579fca9a51e774ac32578ef5dd3262edd7e2
3629
+ React-RCTImage: a5364d0f098692cfbf5bef1e8a63e7712ecb14b7
3630
+ React-RCTLinking: 34b63b0aa0e92d30f5d7aa2c255a8f95fa75ee8f
3631
+ React-RCTNetwork: 1ef88b7a5310b8f915d3556b5b247def113191ed
3632
+ React-RCTRuntime: ed29cf68a46782fec891e5afe1d8d758ca6ccd9b
3633
+ React-RCTSettings: 2c45623d6c0f30851a123f621eb9d32298bcbb0c
3634
+ React-RCTText: 0ee70f5dc18004b4d81b2c214267c6cbec058587
3635
+ React-RCTVibration: 88557e21e7cc3fe76b5b174cba28ff45c6def997
3636
+ React-rendererconsistency: d280314a3e7f0097152f89e815b4de821c2be8b9
3637
+ React-renderercss: f8cbf83d95c2c2bbf893d37fe50c73f046584411
3638
+ React-rendererdebug: 37216ddfcd38e49d1e92bf9052ea4bc9d7b932e5
3639
+ React-RuntimeApple: 1c0e7cb8e1c2c5775585afcaaa666ec151629a8d
3640
+ React-RuntimeCore: 925fe2ca24cf8e6ed87586dbb92827306b93b83f
3641
+ React-runtimeexecutor: 962dae024f6df760d029512a7d99e3f73d570935
3642
+ React-RuntimeHermes: 19a7c59ec1bc9908516f0bbc29b49425f6ec64ba
3643
+ React-runtimescheduler: 62f21127cd97f4d8f164eee5150d3ce53dd36f66
3644
+ React-timing: 8757bf6fb96227c264f2d1609f4ba5c68217b8ce
3645
+ React-utils: 8ab26781c2f5c2f7fafb2022c8ab39d39f231b80
3646
+ React-webperformancenativemodule: 7953b7fe519f76fa595111fe18ff3d5de131bfe9
3647
+ ReactAppDependencyProvider: 0eb286cc274abb059ee601b862ebddac2e681d01
3648
+ ReactCodegen: 3d48510bcef445f6403c0004047d4d9cbb915435
3649
+ ReactCommon: ac934cb340aee91282ecd6f273a26d24d4c55cae
3650
+ RNCAsyncStorage: 29f0230e1a25f36c20b05f65e2eb8958d6526e82
3651
+ RNCMaskedView: 5ef8c95cbab95334a32763b72896a7b7d07e6299
3652
+ RNCPicker: bf95ec4b2483e2ab256047130bc536b437cd916c
3653
+ RNDateTimePicker: 97a86d7c8b51f2d51f694a9dddfe5996dfd9a407
3654
+ RNDeviceInfo: 36d7f232bfe7c9b5c494cb7793230424ed32c388
3655
+ RNGestureHandler: cd4be101cfa17ea6bbd438710caa02e286a84381
3656
+ RNLocalize: 23e6689ec46c6cba49eb8cde959e30e49160a35b
3657
+ RNPermissions: e5dd84f29e7a3871451f88efa83dfa6227806b51
3658
+ RNReanimated: 292cd58688552a22b3fc1cefcfbc49b336dfed68
3659
+ RNScreens: 714e10b6b554f7dc7ad9f78dcf36dc8e3fc73415
3660
+ RNSVG: ba3c3bc3cf413f32d1a7012274fe503c6fc1eadd
3661
+ RNWorklets: 01efdd402d236a13651ea5ea5437ca85a44e7afa
3662
+ SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
3663
+ SwiftUIIntrospect: fee9aa07293ee280373a591e1824e8ddc869ba5d
3664
+ toolbar-android: c426ed5bd3dcccfed20fd79533efc0d1ae0ef018
3665
+ Yoga: 5456bb010373068fc92221140921b09d126b116e
3666
+
3667
+ PODFILE CHECKSUM: 02b68afd7d14bdde1c6824ea619f3de97710ccd0
3668
+
3669
+ COCOAPODS: 1.16.2