@xrnjs/app-template 0.0.6 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (124) hide show
  1. package/$package.json +30 -36
  2. package/android/app/build.gradle +56 -73
  3. package/android/app/src/debug/java/com/xrn/template/ReactNativeFlipper.java +23 -44
  4. package/android/app/src/main/assets/xrn-manifest.json +1 -1
  5. package/android/app/src/main/java/com/xrn/template/MainApplication.kt +54 -65
  6. package/android/app/src/main/java/com/xrn/template/multibundle/CodePushBundleActivity.kt +65 -0
  7. package/android/app/src/main/java/com/xrn/template/multibundle/CodePushJSBundleLoader.kt +18 -0
  8. package/android/app/src/main/java/com/xrn/template/multibundle/CodePushUtils.kt +263 -0
  9. package/android/app/src/main/java/com/xrn/template/multibundle/XBundleTool.kt +9 -0
  10. package/android/app/src/main/java/com/xrn/template/multibundle/XRNReactHostDelegate.kt +56 -0
  11. package/android/app/src/main/java/com/xrn/template/navigation/XBundleActivity.kt +10 -7
  12. package/android/app/src/main/res/raw/bundle_config.json +2 -6
  13. package/android/build.gradle +40 -39
  14. package/android/buildSrc/build.gradle.kts +15 -0
  15. package/android/gradle/wrapper/gradle-wrapper.properties +3 -1
  16. package/android/gradle.properties +17 -10
  17. package/android/settings.gradle +40 -12
  18. package/harmony/.clang-tidy +1 -1
  19. package/harmony/.clangd +3 -1
  20. package/harmony/AppScope/app.json5 +1 -1
  21. package/harmony/build-profile.json5 +8 -8
  22. package/harmony/entry/oh-package-lock.json5 +283 -262
  23. package/harmony/entry/oh-package.json5 +35 -36
  24. package/harmony/entry/src/main/cpp/CMakeLists.txt +37 -17
  25. package/harmony/entry/src/main/cpp/PackageProvider.cpp +20 -2
  26. package/harmony/entry/src/main/cpp/generated/BundleNavigation.cpp +3 -0
  27. package/harmony/entry/src/main/cpp/generated/RNOHGeneratedPackage.h +31 -87
  28. package/harmony/entry/src/main/cpp/generated/RTNCodePush.cpp +7 -1
  29. package/harmony/entry/src/main/cpp/generated/XRNBundleModule.cpp +9 -0
  30. package/harmony/entry/src/main/cpp/generated/XRNDebugToolsModule.cpp +10 -0
  31. package/harmony/entry/src/main/cpp/generated/{ImageResizer.cpp → XRNImageView.cpp} +6 -3
  32. package/harmony/entry/src/main/cpp/generated/{ImageResizer.h → XRNImageView.h} +2 -2
  33. package/harmony/entry/src/main/cpp/generated/{RNCWebViewComponentDescriptor.h → XRNImageViewComponentDescriptor.h} +11 -10
  34. package/harmony/entry/src/main/cpp/generated/XRNImageViewJSIBinder.h +58 -0
  35. package/harmony/entry/src/main/cpp/generated/XRNKeyboard.cpp +23 -0
  36. package/harmony/entry/src/main/cpp/generated/{RNLocalize.h → XRNKeyboard.h} +2 -2
  37. package/harmony/entry/src/main/cpp/generated/XRNNavigation.cpp +5 -0
  38. package/harmony/entry/src/main/cpp/generated/{RNCWebViewModule.cpp → XRNNetworkModule.cpp} +2 -4
  39. package/harmony/entry/src/main/cpp/generated/{RNCWebViewModule.h → XRNNetworkModule.h} +2 -2
  40. package/harmony/entry/src/main/ets/BundleHelper.ets +41 -45
  41. package/harmony/entry/src/main/ets/MainAbilityStage.ets +9 -4
  42. package/harmony/entry/src/main/ets/entryability/EntryAbility.ets +1 -1
  43. package/harmony/entry/src/main/ets/navDestination/BizModuleContainer.ets +2 -2
  44. package/harmony/entry/src/main/ets/navDestination/MainModuleContainer.ets +2 -2
  45. package/harmony/entry/src/main/ets/navDestination/Splash.ets +1 -2
  46. package/harmony/entry/src/main/ets/pages/Index.ets +4 -4
  47. package/harmony/entry/src/main/resources/rawfile/bundle_config.json5 +2 -6
  48. package/harmony/entry/src/main/resources/rawfile/xrn-manifest.json +1 -0
  49. package/harmony/oh-package-lock.json5 +2 -1
  50. package/harmony/oh-package.json5 +12 -4
  51. package/index.ts +0 -0
  52. package/ios/BundleEventCenter/Hooks/XRNCustomKeyborad+XTHooks.h +16 -0
  53. package/ios/BundleEventCenter/Hooks/XRNCustomKeyborad+XTHooks.mm +40 -0
  54. package/ios/BundleEventCenter/Hooks/XTIQKeyboardManagerBridge.h +15 -0
  55. package/ios/BundleEventCenter/Hooks/XTIQKeyboardManagerBridge.m +22 -0
  56. package/ios/BundleEventCenter/XTBundleProvider.m +98 -72
  57. package/ios/BundleEventCenter/XTBundleViewControllerFactory.m +4 -15
  58. package/ios/BundleEventCenter/bundleController/XTBundleViewController.mm +43 -0
  59. package/ios/BundleEventCenter/bundleController/XTMainBundleViewController.mm +48 -0
  60. package/ios/BundleEventCenter/bundleController/xtBundles.plist +1 -1
  61. package/ios/Podfile +234 -151
  62. package/ios/Podfile.lock +2810 -594
  63. package/ios/RNDebug/DebugPlugin/XTPluginManage.m +5 -5
  64. package/ios/RNDebug/MotroTools/XTMetroAutoConnector.h +21 -0
  65. package/ios/RNDebug/MotroTools/XTMetroAutoConnector.m +124 -0
  66. package/ios/RNDebug/MotroTools/XTReloadCommandHelper.h +30 -0
  67. package/ios/RNDebug/MotroTools/XTReloadCommandHelper.mm +128 -0
  68. package/ios/RNDebug/Views/XTScanQRPlugin.swift +9 -4
  69. package/ios/XRNTemplate/AppDelegate.h +3 -3
  70. package/ios/XRNTemplate/AppDelegate.mm +40 -102
  71. package/ios/XRNTemplate/Info.plist +4 -4
  72. package/ios/XRNTemplate/PrivacyInfo.xcprivacy +48 -0
  73. package/ios/XRNTemplate-Bridging-Header.h +2 -1
  74. package/ios/XRNTemplate.xcodeproj/project.pbxproj +68 -77
  75. package/ios/ios_patches/fixed_glog_config.h +195 -0
  76. package/ios/ios_patches/xt_IQKeyboardManager+Position.swift +1341 -0
  77. package/ios/ios_patches/xt_IQKeyboardManager.swift +454 -0
  78. package/ios/subBundles/.gitkeep +0 -0
  79. package/main-bundle/babel.config.js +2 -2
  80. package/main-bundle/package.json +11 -20
  81. package/main-bundle/yarn.lock +14655 -9651
  82. package/metro.config.js +21 -0
  83. package/package.json +2 -2
  84. package/react-native.config.js +3 -45
  85. package/src/.gitkeep +0 -0
  86. package/sub-bundle/babel.config.js +2 -2
  87. package/sub-bundle/package.json +11 -20
  88. package/sub-bundle/react-native.config.js +4 -0
  89. package/sub-bundle/yarn.lock +14655 -9651
  90. package/xrn.config.json +12 -12
  91. package/android/app/src/main/java/com/xrn/template/multibundle/XDevSupportParams.kt +0 -6
  92. package/android/app/src/main/java/com/xrn/template/multibundle/XRNHostParams.kt +0 -82
  93. package/harmony/entry/src/main/cpp/generated/ConfigNativeModule.cpp +0 -21
  94. package/harmony/entry/src/main/cpp/generated/ConfigNativeModule.h +0 -21
  95. package/harmony/entry/src/main/cpp/generated/GetRandomValuesNativeModule.cpp +0 -21
  96. package/harmony/entry/src/main/cpp/generated/GetRandomValuesNativeModule.h +0 -21
  97. package/harmony/entry/src/main/cpp/generated/NativeHarmonyTouchId.cpp +0 -22
  98. package/harmony/entry/src/main/cpp/generated/NativeHarmonyTouchId.h +0 -21
  99. package/harmony/entry/src/main/cpp/generated/OreitationLockerNativeModule.cpp +0 -31
  100. package/harmony/entry/src/main/cpp/generated/OreitationLockerNativeModule.h +0 -21
  101. package/harmony/entry/src/main/cpp/generated/RNCCameraRoll.cpp +0 -28
  102. package/harmony/entry/src/main/cpp/generated/RNCCameraRoll.h +0 -21
  103. package/harmony/entry/src/main/cpp/generated/RNCCameraRollPermission.cpp +0 -26
  104. package/harmony/entry/src/main/cpp/generated/RNCCameraRollPermission.h +0 -21
  105. package/harmony/entry/src/main/cpp/generated/RNCWebViewJSIBinder.h +0 -120
  106. package/harmony/entry/src/main/cpp/generated/RNDeviceInfo.cpp +0 -164
  107. package/harmony/entry/src/main/cpp/generated/RNDeviceInfo.h +0 -21
  108. package/harmony/entry/src/main/cpp/generated/RNDocumentPicker.cpp +0 -24
  109. package/harmony/entry/src/main/cpp/generated/RNDocumentPicker.h +0 -21
  110. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerButtonComponentDescriptor.h +0 -43
  111. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerButtonJSIBinder.h +0 -38
  112. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerModule.cpp +0 -28
  113. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerModule.h +0 -21
  114. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerRootViewComponentDescriptor.h +0 -43
  115. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerRootViewJSIBinder.h +0 -31
  116. package/harmony/entry/src/main/cpp/generated/RNLocalize.cpp +0 -31
  117. package/harmony/entry/src/main/cpp/generated/ReactNativeBlobUtil.cpp +0 -51
  118. package/harmony/entry/src/main/cpp/generated/ReactNativeBlobUtil.h +0 -21
  119. package/harmony/entry/src/main/cpp/generated/XRNAssetLoaderModule.cpp +0 -21
  120. package/harmony/entry/src/main/cpp/generated/XRNAssetLoaderModule.h +0 -21
  121. package/harmony/entry/src/main/cpp/generated/XRNFileModule.cpp +0 -22
  122. package/harmony/entry/src/main/cpp/generated/XRNFileModule.h +0 -21
  123. package/ios/BundleEventCenter/bundleController/XTBundleViewController.m +0 -35
  124. package/ios/BundleEventCenter/bundleController/XTMainBundleViewController.m +0 -41
@@ -1,60 +1,62 @@
1
1
  {
2
2
  "meta": {
3
- "stableOrder": true
3
+ "stableOrder": true,
4
+ "enableUnifiedLockfile": false
4
5
  },
5
6
  "lockfileVersion": 3,
6
7
  "ATTENTION": "THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.",
7
8
  "specifiers": {
8
9
  "@jxt/xt_hud@3.3.0": "@jxt/xt_hud@3.3.0",
9
- "@ohos/lottie@2.0.15": "@ohos/lottie@2.0.22",
10
- "@ohos/lottie@2.0.16-rc.1": "@ohos/lottie@2.0.22",
11
- "@ohos/lottie@^2.0.15": "@ohos/lottie@2.0.22",
12
- "@pura/harmony-utils@1.2.6": "@pura/harmony-utils@1.2.6",
13
- "@react-native-oh-tpl/async-storage@../../node_modules/@react-native-oh-tpl/async-storage/harmony/async_storage.har": "@react-native-oh-tpl/async-storage@../../node_modules/@react-native-oh-tpl/async-storage/harmony/async_storage.har",
14
- "@react-native-oh-tpl/camera-roll@../../node_modules/@react-native-oh-tpl/camera-roll/harmony/camera_roll.har": "@react-native-oh-tpl/camera-roll@../../node_modules/@react-native-oh-tpl/camera-roll/harmony/camera_roll.har",
15
- "@react-native-oh-tpl/clipboard@../../node_modules/@react-native-oh-tpl/clipboard/harmony/clipboard.har": "@react-native-oh-tpl/clipboard@../../node_modules/@react-native-oh-tpl/clipboard/harmony/clipboard.har",
16
- "@react-native-oh-tpl/cookies@../../node_modules/@react-native-oh-tpl/cookies/harmony/rn_cookies.har": "@react-native-oh-tpl/cookies@../../node_modules/@react-native-oh-tpl/cookies/harmony/rn_cookies.har",
17
- "@react-native-oh-tpl/lottie-react-native@../../node_modules/@react-native-oh-tpl/lottie-react-native/harmony/lottie.har": "@react-native-oh-tpl/lottie-react-native@../../node_modules/@react-native-oh-tpl/lottie-react-native/harmony/lottie.har",
18
- "@react-native-oh-tpl/netinfo@../../node_modules/@react-native-oh-tpl/netinfo/harmony/netinfo.har": "@react-native-oh-tpl/netinfo@../../node_modules/@react-native-oh-tpl/netinfo/harmony/netinfo.har",
19
- "@react-native-oh-tpl/react-native-blob-util@../../node_modules/@react-native-oh-tpl/react-native-blob-util/harmony/blobUtil.har": "@react-native-oh-tpl/react-native-blob-util@../../node_modules/@react-native-oh-tpl/react-native-blob-util/harmony/blobUtil.har",
20
- "@react-native-oh-tpl/react-native-config@../../node_modules/@react-native-oh-tpl/react-native-config/harmony/config": "@react-native-oh-tpl/react-native-config@../../node_modules/@react-native-oh-tpl/react-native-config/harmony/config",
21
- "@react-native-oh-tpl/react-native-device-info@../../node_modules/@react-native-oh-tpl/react-native-device-info/harmony/device_info": "@react-native-oh-tpl/react-native-device-info@../../node_modules/@react-native-oh-tpl/react-native-device-info/harmony/device_info",
22
- "@react-native-oh-tpl/react-native-document-picker@../../node_modules/@react-native-oh-tpl/react-native-document-picker/harmony/document_picker.har": "@react-native-oh-tpl/react-native-document-picker@../../node_modules/@react-native-oh-tpl/react-native-document-picker/harmony/document_picker.har",
23
- "@react-native-oh-tpl/react-native-fast-image@../../node_modules/@react-native-oh-tpl/react-native-fast-image/harmony/fast_image.har": "@react-native-oh-tpl/react-native-fast-image@../../node_modules/@react-native-oh-tpl/react-native-fast-image/harmony/fast_image.har",
24
- "@react-native-oh-tpl/react-native-gesture-handler@../../node_modules/@react-native-oh-tpl/react-native-gesture-handler/harmony/gesture_handler.har": "@react-native-oh-tpl/react-native-gesture-handler@../../node_modules/@react-native-oh-tpl/react-native-gesture-handler/harmony/gesture_handler.har",
25
- "@react-native-oh-tpl/react-native-get-random-values@../../node_modules/@react-native-oh-tpl/react-native-get-random-values/harmony/get_random_values.har": "@react-native-oh-tpl/react-native-get-random-values@../../node_modules/@react-native-oh-tpl/react-native-get-random-values/harmony/get_random_values.har",
26
- "@react-native-oh-tpl/react-native-image-picker@../../node_modules/@react-native-oh-tpl/react-native-image-picker/harmony/image_picker.har": "@react-native-oh-tpl/react-native-image-picker@../../node_modules/@react-native-oh-tpl/react-native-image-picker/harmony/image_picker.har",
27
- "@react-native-oh-tpl/react-native-image-resizer@../../node_modules/@react-native-oh-tpl/react-native-image-resizer/harmony/image_resizer.har": "@react-native-oh-tpl/react-native-image-resizer@../../node_modules/@react-native-oh-tpl/react-native-image-resizer/harmony/image_resizer.har",
28
- "@react-native-oh-tpl/react-native-localize@../../node_modules/@react-native-oh-tpl/react-native-localize/harmony/rn_localize.har": "@react-native-oh-tpl/react-native-localize@../../node_modules/@react-native-oh-tpl/react-native-localize/harmony/rn_localize.har",
29
- "@react-native-oh-tpl/react-native-orientation-locker@../../node_modules/@react-native-oh-tpl/react-native-orientation-locker/harmony/orientation_locker.har": "@react-native-oh-tpl/react-native-orientation-locker@../../node_modules/@react-native-oh-tpl/react-native-orientation-locker/harmony/orientation_locker.har",
30
- "@react-native-oh-tpl/react-native-pdf@../../node_modules/@react-native-oh-tpl/react-native-pdf/harmony/pdfview.har": "@react-native-oh-tpl/react-native-pdf@../../node_modules/@react-native-oh-tpl/react-native-pdf/harmony/pdfview.har",
31
- "@react-native-oh-tpl/react-native-permissions@../../node_modules/@react-native-oh-tpl/react-native-permissions/harmony/permissions.har": "@react-native-oh-tpl/react-native-permissions@../../node_modules/@react-native-oh-tpl/react-native-permissions/harmony/permissions.har",
32
- "@react-native-oh-tpl/react-native-reanimated@../../node_modules/@react-native-oh-tpl/react-native-reanimated/harmony/reanimated.har": "@react-native-oh-tpl/react-native-reanimated@../../node_modules/@react-native-oh-tpl/react-native-reanimated/harmony/reanimated.har",
33
- "@react-native-oh-tpl/react-native-safe-area-context@../../node_modules/@react-native-oh-tpl/react-native-safe-area-context/harmony/safe_area.har": "@react-native-oh-tpl/react-native-safe-area-context@../../node_modules/@react-native-oh-tpl/react-native-safe-area-context/harmony/safe_area.har",
34
- "@react-native-oh-tpl/react-native-smartrefreshlayout@../../node_modules/@react-native-oh-tpl/react-native-smartrefreshlayout/harmony/smart_refresh_layout.har": "@react-native-oh-tpl/react-native-smartrefreshlayout@../../node_modules/@react-native-oh-tpl/react-native-smartrefreshlayout/harmony/smart_refresh_layout.har",
35
- "@react-native-oh-tpl/react-native-svg@../../node_modules/@react-native-oh-tpl/react-native-svg/harmony/svg.har": "@react-native-oh-tpl/react-native-svg@../../node_modules/@react-native-oh-tpl/react-native-svg/harmony/svg.har",
36
- "@react-native-oh-tpl/react-native-touch-id@../../node_modules/@react-native-oh-tpl/react-native-touch-id/harmony/touch_id.har": "@react-native-oh-tpl/react-native-touch-id@../../node_modules/@react-native-oh-tpl/react-native-touch-id/harmony/touch_id.har",
37
- "@react-native-oh-tpl/react-native-video@../../node_modules/@react-native-oh-tpl/react-native-video/harmony/rn_video.har": "@react-native-oh-tpl/react-native-video@../../node_modules/@react-native-oh-tpl/react-native-video/harmony/rn_video.har",
38
- "@react-native-oh-tpl/react-native-vision-camera@../../node_modules/@react-native-oh-tpl/react-native-vision-camera/harmony/vision_camera.har": "@react-native-oh-tpl/react-native-vision-camera@../../node_modules/@react-native-oh-tpl/react-native-vision-camera/harmony/vision_camera.har",
39
- "@react-native-oh-tpl/react-native-webview@../../node_modules/@react-native-oh-tpl/react-native-webview/harmony/rn_webview.har": "@react-native-oh-tpl/react-native-webview@../../node_modules/@react-native-oh-tpl/react-native-webview/harmony/rn_webview.har",
10
+ "@ohos/lottie@2.0.25": "@ohos/lottie@2.0.25",
11
+ "@ohos/mp4parser@^2.0.6": "@ohos/mp4parser@2.0.9",
12
+ "@pura/harmony-utils@1.2.5": "@pura/harmony-utils@1.4.2",
13
+ "@pura/harmony-utils@^1.2.6": "@pura/harmony-utils@1.4.2",
14
+ "@react-native-ohos/async-storage@../../node_modules/@react-native-ohos/async-storage/harmony/async_storage.har": "@react-native-ohos/async-storage@../../node_modules/@react-native-ohos/async-storage/harmony/async_storage.har",
15
+ "@react-native-ohos/camera-roll@../../node_modules/@react-native-ohos/camera-roll/harmony/camera_roll.har": "@react-native-ohos/camera-roll@../../node_modules/@react-native-ohos/camera-roll/harmony/camera_roll.har",
16
+ "@react-native-ohos/clipboard@../../node_modules/@react-native-ohos/clipboard/harmony/clipboard.har": "@react-native-ohos/clipboard@../../node_modules/@react-native-ohos/clipboard/harmony/clipboard.har",
17
+ "@react-native-ohos/cookies@../../node_modules/@react-native-ohos/cookies/harmony/rn_cookies.har": "@react-native-ohos/cookies@../../node_modules/@react-native-ohos/cookies/harmony/rn_cookies.har",
18
+ "@react-native-ohos/lottie-react-native@../../node_modules/@react-native-ohos/lottie-react-native/harmony/lottie.har": "@react-native-ohos/lottie-react-native@../../node_modules/@react-native-ohos/lottie-react-native/harmony/lottie.har",
19
+ "@react-native-ohos/netinfo@../../node_modules/@react-native-ohos/netinfo/harmony/netinfo.har": "@react-native-ohos/netinfo@../../node_modules/@react-native-ohos/netinfo/harmony/netinfo.har",
40
20
  "@react-native-ohos/push-notification-ios@../../node_modules/@react-native-ohos/push-notification-ios/harmony/push_notification.har": "@react-native-ohos/push-notification-ios@../../node_modules/@react-native-ohos/push-notification-ios/harmony/push_notification.har",
21
+ "@react-native-ohos/react-native-blob-util@../../node_modules/@react-native-ohos/react-native-blob-util/harmony/blobUtil.har": "@react-native-ohos/react-native-blob-util@../../node_modules/@react-native-ohos/react-native-blob-util/harmony/blobUtil.har",
22
+ "@react-native-ohos/react-native-config@../../node_modules/@react-native-ohos/react-native-config/harmony/config": "@react-native-ohos/react-native-config@../../node_modules/@react-native-ohos/react-native-config/harmony/config",
23
+ "@react-native-ohos/react-native-device-info@../../node_modules/@react-native-ohos/react-native-device-info/harmony/device_info": "@react-native-ohos/react-native-device-info@../../node_modules/@react-native-ohos/react-native-device-info/harmony/device_info",
24
+ "@react-native-ohos/react-native-document-picker@../../node_modules/@react-native-ohos/react-native-document-picker/harmony/document_picker.har": "@react-native-ohos/react-native-document-picker@../../node_modules/@react-native-ohos/react-native-document-picker/harmony/document_picker.har",
25
+ "@react-native-ohos/react-native-fast-image@../../node_modules/@react-native-ohos/react-native-fast-image/harmony/fast_image.har": "@react-native-ohos/react-native-fast-image@../../node_modules/@react-native-ohos/react-native-fast-image/harmony/fast_image.har",
41
26
  "@react-native-ohos/react-native-fs@../../node_modules/@react-native-ohos/react-native-fs/harmony/fs.har": "@react-native-ohos/react-native-fs@../../node_modules/@react-native-ohos/react-native-fs/harmony/fs.har",
27
+ "@react-native-ohos/react-native-gesture-handler@../../node_modules/@react-native-ohos/react-native-gesture-handler/harmony/gesture_handler.har": "@react-native-ohos/react-native-gesture-handler@../../node_modules/@react-native-ohos/react-native-gesture-handler/harmony/gesture_handler.har",
28
+ "@react-native-ohos/react-native-get-random-values@../../node_modules/@react-native-ohos/react-native-get-random-values/harmony/get_random_values.har": "@react-native-ohos/react-native-get-random-values@../../node_modules/@react-native-ohos/react-native-get-random-values/harmony/get_random_values.har",
29
+ "@react-native-ohos/react-native-image-picker@../../node_modules/@react-native-ohos/react-native-image-picker/harmony/image_picker.har": "@react-native-ohos/react-native-image-picker@../../node_modules/@react-native-ohos/react-native-image-picker/harmony/image_picker.har",
30
+ "@react-native-ohos/react-native-image-resizer@../../node_modules/@react-native-ohos/react-native-image-resizer/harmony/image_resizer.har": "@react-native-ohos/react-native-image-resizer@../../node_modules/@react-native-ohos/react-native-image-resizer/harmony/image_resizer.har",
42
31
  "@react-native-ohos/react-native-linear-gradient@../../node_modules/@react-native-ohos/react-native-linear-gradient/harmony/linear_gradient.har": "@react-native-ohos/react-native-linear-gradient@../../node_modules/@react-native-ohos/react-native-linear-gradient/harmony/linear_gradient.har",
32
+ "@react-native-ohos/react-native-localize@../../node_modules/@react-native-ohos/react-native-localize/harmony/rn_localize.har": "@react-native-ohos/react-native-localize@../../node_modules/@react-native-ohos/react-native-localize/harmony/rn_localize.har",
33
+ "@react-native-ohos/react-native-orientation-locker@../../node_modules/@react-native-ohos/react-native-orientation-locker/harmony/orientation_locker.har": "@react-native-ohos/react-native-orientation-locker@../../node_modules/@react-native-ohos/react-native-orientation-locker/harmony/orientation_locker.har",
34
+ "@react-native-ohos/react-native-pdf@../../node_modules/@react-native-ohos/react-native-pdf/harmony/pdfview.har": "@react-native-ohos/react-native-pdf@../../node_modules/@react-native-ohos/react-native-pdf/harmony/pdfview.har",
35
+ "@react-native-ohos/react-native-permissions@../../node_modules/@react-native-ohos/react-native-permissions/harmony/permissions.har": "@react-native-ohos/react-native-permissions@../../node_modules/@react-native-ohos/react-native-permissions/harmony/permissions.har",
36
+ "@react-native-ohos/react-native-reanimated@../../node_modules/@react-native-ohos/react-native-reanimated/harmony/reanimated.har": "@react-native-ohos/react-native-reanimated@../../node_modules/@react-native-ohos/react-native-reanimated/harmony/reanimated.har",
37
+ "@react-native-ohos/react-native-safe-area-context@../../node_modules/@react-native-ohos/react-native-safe-area-context/harmony/safe_area.har": "@react-native-ohos/react-native-safe-area-context@../../node_modules/@react-native-ohos/react-native-safe-area-context/harmony/safe_area.har",
38
+ "@react-native-ohos/react-native-smartrefreshlayout@../../node_modules/@react-native-ohos/react-native-smartrefreshlayout/harmony/smart_refresh_layout.har": "@react-native-ohos/react-native-smartrefreshlayout@../../node_modules/@react-native-ohos/react-native-smartrefreshlayout/harmony/smart_refresh_layout.har",
39
+ "@react-native-ohos/react-native-svg@../../node_modules/@react-native-ohos/react-native-svg/harmony/svg.har": "@react-native-ohos/react-native-svg@../../node_modules/@react-native-ohos/react-native-svg/harmony/svg.har",
40
+ "@react-native-ohos/react-native-video@../../node_modules/@react-native-ohos/react-native-video/harmony/rn_video.har": "@react-native-ohos/react-native-video@../../node_modules/@react-native-ohos/react-native-video/harmony/rn_video.har",
41
+ "@react-native-ohos/react-native-vision-camera@../../node_modules/@react-native-ohos/react-native-vision-camera/harmony/vision_camera.har": "@react-native-ohos/react-native-vision-camera@../../node_modules/@react-native-ohos/react-native-vision-camera/harmony/vision_camera.har",
42
+ "@react-native-ohos/react-native-webview@../../node_modules/@react-native-ohos/react-native-webview/harmony/rn_webview.har": "@react-native-ohos/react-native-webview@../../node_modules/@react-native-ohos/react-native-webview/harmony/rn_webview.har",
43
43
  "@rnoh/react-native-openharmony@../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har": "@rnoh/react-native-openharmony@../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har",
44
- "@umeng/analytics@^1.2.4": "@umeng/analytics@1.2.4",
45
- "@umeng/apm@^1.1.1": "@umeng/apm@1.1.1",
46
- "@umeng/common@^1.1.3": "@umeng/common@1.1.3",
47
- "@wolfx/json5@^2.2.3-rc.1": "@wolfx/json5@2.2.3-rc.1",
48
- "libcommon.so@../oh_modules/.ohpm/@umeng+common@1.1.3/oh_modules/@umeng/common/src/main/cpp/types/libcommon": "libcommon.so@../oh_modules/.ohpm/@umeng+common@1.1.3/oh_modules/@umeng/common/src/main/cpp/types/libcommon",
49
- "mime@^3.0.0": "mime@3.0.0",
50
- "xrn-app-utils@../../node_modules/@xrnjs/app-utils/harmony/xrn_app_utils": "xrn-app-utils@../../node_modules/@xrnjs/app-utils/harmony/xrn_app_utils",
51
- "xrn-bundle@../../node_modules/@xrnjs/bundle/harmony/xrn_bundle": "xrn-bundle@../../node_modules/@xrnjs/bundle/harmony/xrn_bundle",
52
- "xrn-code-push@../../node_modules/@xrnjs/react-native-code-push/harmony/codePush": "xrn-code-push@../../node_modules/@xrnjs/react-native-code-push/harmony/codePush",
53
- "xrn-debug-tools@../../node_modules/@xrnjs/debug-tools/harmony/xrn_debug_tools": "xrn-debug-tools@../../node_modules/@xrnjs/debug-tools/harmony/xrn_debug_tools",
54
- "xrn-loading@../../node_modules/@xrnjs/loading/harmony/xrn_loading": "xrn-loading@../../node_modules/@xrnjs/loading/harmony/xrn_loading",
55
- "xrn-multi-bundle@../../node_modules/@xrnjs/multi-bundle/harmony/xrn_multi_bundle": "xrn-multi-bundle@../../node_modules/@xrnjs/multi-bundle/harmony/xrn_multi_bundle",
56
- "xrn-native-storage@../../node_modules/@xrnjs/native-storage/harmony/xrn_native_storage": "xrn-native-storage@../../node_modules/@xrnjs/native-storage/harmony/xrn_native_storage",
57
- "xrn-navigation@../../node_modules/@xrnjs/navigation/harmony/xrn_navigation": "xrn-navigation@../../node_modules/@xrnjs/navigation/harmony/xrn_navigation"
44
+ "@types/libmp4parser_napi.so@../oh_modules/.ohpm/@ohos+mp4parser@2.0.9/oh_modules/@ohos/mp4parser/src/main/cpp/types/libmp4parser_napi": "@types/libmp4parser_napi.so@../oh_modules/.ohpm/@ohos+mp4parser@2.0.9/oh_modules/@ohos/mp4parser/src/main/cpp/types/libmp4parser_napi",
45
+ "@umeng/analytics@^1.2.4": "@umeng/analytics@1.2.12",
46
+ "@umeng/apm@^1.1.1": "@umeng/apm@1.4.1",
47
+ "@umeng/common@^1.1.3": "@umeng/common@1.2.0",
48
+ "@wolfx/json5@2.2.3-rc.1": "@wolfx/json5@2.2.3-rc.1",
49
+ "@xrnjs/app-utils@../../node_modules/@xrnjs/app-utils/harmony/xrn_app_utils": "@xrnjs/app-utils@../../node_modules/@xrnjs/app-utils/harmony/xrn_app_utils",
50
+ "@xrnjs/bundle@../../node_modules/@xrnjs/bundle/harmony/xrn_bundle": "@xrnjs/bundle@../../node_modules/@xrnjs/bundle/harmony/xrn_bundle",
51
+ "@xrnjs/debug-tools@../../node_modules/@xrnjs/debug-tools/harmony/xrn_debug_tools": "@xrnjs/debug-tools@../../node_modules/@xrnjs/debug-tools/harmony/xrn_debug_tools",
52
+ "@xrnjs/loading@../../node_modules/@xrnjs/loading/harmony/xrn_loading": "@xrnjs/loading@../../node_modules/@xrnjs/loading/harmony/xrn_loading",
53
+ "@xrnjs/modules-core@../../node_modules/@xrnjs/modules-core/harmony/xrn_modules_core": "@xrnjs/modules-core@../../node_modules/@xrnjs/modules-core/harmony/xrn_modules_core",
54
+ "@xrnjs/multi-bundle@../../node_modules/@xrnjs/multi-bundle/harmony/xrn_multi_bundle": "@xrnjs/multi-bundle@../../node_modules/@xrnjs/multi-bundle/harmony/xrn_multi_bundle",
55
+ "@xrnjs/native-storage@../../node_modules/@xrnjs/native-storage/harmony/xrn_native_storage": "@xrnjs/native-storage@../../node_modules/@xrnjs/native-storage/harmony/xrn_native_storage",
56
+ "@xrnjs/navigation@../../node_modules/@xrnjs/navigation/harmony/xrn_navigation": "@xrnjs/navigation@../../node_modules/@xrnjs/navigation/harmony/xrn_navigation",
57
+ "@xrnjs/react-native-code-push@../../node_modules/@xrnjs/react-native-code-push/harmony/codePush": "@xrnjs/react-native-code-push@../../node_modules/@xrnjs/react-native-code-push/harmony/codePush",
58
+ "libcommon.so@../oh_modules/.ohpm/@umeng+common@1.2.0/oh_modules/@umeng/common/src/main/cpp/types/libcommon": "libcommon.so@../oh_modules/.ohpm/@umeng+common@1.2.0/oh_modules/@umeng/common/src/main/cpp/types/libcommon",
59
+ "mime@^3.0.0": "mime@3.0.0"
58
60
  },
59
61
  "packages": {
60
62
  "@jxt/xt_hud@3.3.0": {
@@ -64,314 +66,322 @@
64
66
  "resolved": "https://ohpm.openharmony.cn/ohpm/@jxt/xt_hud/-/xt_hud-3.3.0.har",
65
67
  "registryType": "ohpm"
66
68
  },
67
- "@ohos/lottie@2.0.22": {
69
+ "@ohos/lottie@2.0.25": {
68
70
  "name": "@ohos/lottie",
69
- "version": "2.0.22",
70
- "integrity": "sha512-2f/ZnlYsjZfFftq6ukwZaI8XOuFyHWLqDtBcanuGMcX8jBN68iLBLDddkxeSbPZT4mNyOdfvMJHhF482RgKitw==",
71
- "resolved": "https://ohpm.openharmony.cn/ohpm/@ohos/lottie/-/lottie-2.0.22.har",
71
+ "version": "2.0.25",
72
+ "integrity": "sha512-6Ulb8VorVE1YOKRMRzmRv2ZAEuaJkItU3T/Zq63kQs89bRfc+vuTzrJNQRQmfzWzAMoU3J0F5ueYkzSX7Vmitg==",
73
+ "resolved": "https://ohpm.openharmony.cn/ohpm/@ohos/lottie/-/lottie-2.0.25.har",
72
74
  "registryType": "ohpm"
73
75
  },
74
- "@pura/harmony-utils@1.2.6": {
76
+ "@ohos/mp4parser@2.0.9": {
77
+ "name": "@ohos/mp4parser",
78
+ "version": "2.0.9",
79
+ "integrity": "sha512-b7zRGU3jPQzbN4QZo0OTp8GAFsupPbVHosSTmH4MiT3g8Jv4boNENtlMU82UqKhHJzj2H9UZok7k8/Raa1zovg==",
80
+ "resolved": "https://ohpm.openharmony.cn/ohpm/@ohos/mp4parser/-/mp4parser-2.0.9.har",
81
+ "registryType": "ohpm",
82
+ "dependencies": {
83
+ "@types/libmp4parser_napi.so": "file:./src/main/cpp/types/libmp4parser_napi"
84
+ }
85
+ },
86
+ "@pura/harmony-utils@1.4.2": {
75
87
  "name": "@pura/harmony-utils",
76
- "version": "1.2.6",
77
- "integrity": "sha512-0Ob6WPKu79272iNzpUfvJqjSHvWbMWKNVyR73WR+EV0/N+jHnyibPc3kuhfWD1jupYqSNyh+8nmuK+fbtHpCtg==",
78
- "resolved": "https://ohpm.openharmony.cn/ohpm/@pura/harmony-utils/-/harmony-utils-1.2.6.har",
88
+ "version": "1.4.2",
89
+ "integrity": "sha512-3q+w1UEIVGg5ZstTm595HxArU+etltBEoerSBGd5Ed8m5Ddl5U+FNt2BWyE1+voinU0I66Fijt6J2uyi9fUMGw==",
90
+ "resolved": "https://ohpm.openharmony.cn/ohpm/@pura/harmony-utils/-/harmony-utils-1.4.2.har",
79
91
  "registryType": "ohpm"
80
92
  },
81
- "@react-native-oh-tpl/async-storage@../../node_modules/@react-native-oh-tpl/async-storage/harmony/async_storage.har": {
82
- "name": "@react-native-oh-tpl/async-storage",
83
- "version": "1.21.0-0.2.2",
84
- "resolved": "../../node_modules/@react-native-oh-tpl/async-storage/harmony/async_storage.har",
93
+ "@react-native-ohos/async-storage@../../node_modules/@react-native-ohos/async-storage/harmony/async_storage.har": {
94
+ "name": "@react-native-ohos/async-storage",
95
+ "version": "2.2.1-rc.2",
96
+ "resolved": "../../node_modules/@react-native-ohos/async-storage/harmony/async_storage.har",
85
97
  "registryType": "local",
86
98
  "dependencies": {
87
- "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
99
+ "@rnoh/react-native-openharmony": "file:../react_native_openharmony/react_native_openharmony.har"
88
100
  }
89
101
  },
90
- "@react-native-oh-tpl/camera-roll@../../node_modules/@react-native-oh-tpl/camera-roll/harmony/camera_roll.har": {
91
- "name": "@react-native-oh-tpl/camera-roll",
92
- "version": "7.8.3-0.1.3",
93
- "resolved": "../../node_modules/@react-native-oh-tpl/camera-roll/harmony/camera_roll.har",
102
+ "@react-native-ohos/camera-roll@../../node_modules/@react-native-ohos/camera-roll/harmony/camera_roll.har": {
103
+ "name": "@react-native-ohos/camera-roll",
104
+ "version": "7.10.1-rc.3",
105
+ "resolved": "../../node_modules/@react-native-ohos/camera-roll/harmony/camera_roll.har",
94
106
  "registryType": "local",
95
107
  "dependencies": {
96
- "@rnoh/react-native-openharmony": "file:../libs/react_native_openharmony-5.0.0.500.har"
108
+ "@rnoh/react-native-openharmony": "file:../../node_modules/@react-native-oh/react-native-harmony/harmony/react_native_openharmony.har"
97
109
  }
98
110
  },
99
- "@react-native-oh-tpl/clipboard@../../node_modules/@react-native-oh-tpl/clipboard/harmony/clipboard.har": {
100
- "name": "@react-native-oh-tpl/clipboard",
101
- "version": "1.13.2-0.0.9",
102
- "resolved": "../../node_modules/@react-native-oh-tpl/clipboard/harmony/clipboard.har",
111
+ "@react-native-ohos/clipboard@../../node_modules/@react-native-ohos/clipboard/harmony/clipboard.har": {
112
+ "name": "@react-native-ohos/clipboard",
113
+ "version": "1.16.3-rc.2",
114
+ "resolved": "../../node_modules/@react-native-ohos/clipboard/harmony/clipboard.har",
103
115
  "registryType": "local",
104
116
  "dependencies": {
105
- "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
117
+ "@rnoh/react-native-openharmony": "file:../../example/node_modules/react-native-harmony/harmony/react_native_openharmony.har"
106
118
  }
107
119
  },
108
- "@react-native-oh-tpl/cookies@../../node_modules/@react-native-oh-tpl/cookies/harmony/rn_cookies.har": {
109
- "name": "@react-native-oh-tpl/cookies",
110
- "version": "6.2.1-0.0.8",
111
- "resolved": "../../node_modules/@react-native-oh-tpl/cookies/harmony/rn_cookies.har",
120
+ "@react-native-ohos/cookies@../../node_modules/@react-native-ohos/cookies/harmony/rn_cookies.har": {
121
+ "name": "@react-native-ohos/cookies",
122
+ "version": "6.3.0-rc.2",
123
+ "resolved": "../../node_modules/@react-native-ohos/cookies/harmony/rn_cookies.har",
112
124
  "registryType": "local",
113
125
  "dependencies": {
114
126
  "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
115
127
  }
116
128
  },
117
- "@react-native-oh-tpl/lottie-react-native@../../node_modules/@react-native-oh-tpl/lottie-react-native/harmony/lottie.har": {
118
- "name": "@react-native-oh-tpl/lottie-react-native",
119
- "version": "6.4.1-0.1.15",
120
- "resolved": "../../node_modules/@react-native-oh-tpl/lottie-react-native/harmony/lottie.har",
129
+ "@react-native-ohos/lottie-react-native@../../node_modules/@react-native-ohos/lottie-react-native/harmony/lottie.har": {
130
+ "name": "@react-native-ohos/lottie-react-native",
131
+ "version": "7.2.3-rc.4",
132
+ "resolved": "../../node_modules/@react-native-ohos/lottie-react-native/harmony/lottie.har",
121
133
  "registryType": "local",
122
134
  "dependencies": {
123
- "@rnoh/react-native-openharmony": "^0.72.38",
124
- "@ohos/lottie": "2.0.16-rc.1"
135
+ "@rnoh/react-native-openharmony": "file:../react_native_openharmony",
136
+ "@ohos/lottie": "2.0.25-rc.1"
125
137
  }
126
138
  },
127
- "@react-native-oh-tpl/netinfo@../../node_modules/@react-native-oh-tpl/netinfo/harmony/netinfo.har": {
128
- "name": "@react-native-oh-tpl/netinfo",
129
- "version": "11.1.0-0.0.8",
130
- "resolved": "../../node_modules/@react-native-oh-tpl/netinfo/harmony/netinfo.har",
139
+ "@react-native-ohos/netinfo@../../node_modules/@react-native-ohos/netinfo/harmony/netinfo.har": {
140
+ "name": "@react-native-ohos/netinfo",
141
+ "version": "11.4.2-rc.1",
142
+ "resolved": "../../node_modules/@react-native-ohos/netinfo/harmony/netinfo.har",
131
143
  "registryType": "local",
132
144
  "dependencies": {
133
145
  "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
134
146
  }
135
147
  },
136
- "@react-native-oh-tpl/react-native-blob-util@../../node_modules/@react-native-oh-tpl/react-native-blob-util/harmony/blobUtil.har": {
137
- "name": "@react-native-oh-tpl/react-native-blob-util",
138
- "version": "0.19.6-0.0.15",
139
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-blob-util/harmony/blobUtil.har",
148
+ "@react-native-ohos/push-notification-ios@../../node_modules/@react-native-ohos/push-notification-ios/harmony/push_notification.har": {
149
+ "name": "@react-native-ohos/push-notification-ios",
150
+ "version": "1.12.0-rc.1",
151
+ "resolved": "../../node_modules/@react-native-ohos/push-notification-ios/harmony/push_notification.har",
140
152
  "registryType": "local",
141
153
  "dependencies": {
142
- "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
154
+ "@rnoh/react-native-openharmony": "^0.72.38"
143
155
  }
144
156
  },
145
- "@react-native-oh-tpl/react-native-config@../../node_modules/@react-native-oh-tpl/react-native-config/harmony/config": {
146
- "name": "@react-native-oh-tpl/react-native-config",
147
- "version": "1.5.3-0.0.2",
148
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-config/harmony/config",
157
+ "@react-native-ohos/react-native-blob-util@../../node_modules/@react-native-ohos/react-native-blob-util/harmony/blobUtil.har": {
158
+ "name": "@react-native-ohos/react-native-blob-util",
159
+ "version": "0.22.2-rc.1",
160
+ "resolved": "../../node_modules/@react-native-ohos/react-native-blob-util/harmony/blobUtil.har",
149
161
  "registryType": "local",
150
162
  "dependencies": {
151
- "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
163
+ "@rnoh/react-native-openharmony": "file:../react_native_openharmony.har"
152
164
  }
153
165
  },
154
- "@react-native-oh-tpl/react-native-device-info@../../node_modules/@react-native-oh-tpl/react-native-device-info/harmony/device_info": {
155
- "name": "@react-native-oh-tpl/react-native-device-info",
156
- "version": "11.1.0-0.0.5",
157
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-device-info/harmony/device_info",
166
+ "@react-native-ohos/react-native-config@../../node_modules/@react-native-ohos/react-native-config/harmony/config": {
167
+ "name": "@react-native-ohos/react-native-config",
168
+ "version": "1.6.0-rc.1",
169
+ "resolved": "../../node_modules/@react-native-ohos/react-native-config/harmony/config",
158
170
  "registryType": "local",
159
171
  "dependencies": {
160
172
  "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
161
173
  }
162
174
  },
163
- "@react-native-oh-tpl/react-native-document-picker@../../node_modules/@react-native-oh-tpl/react-native-document-picker/harmony/document_picker.har": {
164
- "name": "@react-native-oh-tpl/react-native-document-picker",
165
- "version": "9.2.0-0.0.2",
166
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-document-picker/harmony/document_picker.har",
175
+ "@react-native-ohos/react-native-device-info@../../node_modules/@react-native-ohos/react-native-device-info/harmony/device_info": {
176
+ "name": "@react-native-ohos/react-native-device-info",
177
+ "version": "14.0.5-rc.5",
178
+ "resolved": "../../node_modules/@react-native-ohos/react-native-device-info/harmony/device_info",
167
179
  "registryType": "local",
168
180
  "dependencies": {
169
- "@rnoh/react-native-openharmony": "file:../react_native_openharmony",
170
- "mime": "^3.0.0"
181
+ "@rnoh/react-native-openharmony": "file:../../../react_native_openharmony"
171
182
  }
172
183
  },
173
- "@react-native-oh-tpl/react-native-fast-image@../../node_modules/@react-native-oh-tpl/react-native-fast-image/harmony/fast_image.har": {
174
- "name": "@react-native-oh-tpl/react-native-fast-image",
175
- "version": "8.6.3-0.4.16",
176
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-fast-image/harmony/fast_image.har",
184
+ "@react-native-ohos/react-native-document-picker@../../node_modules/@react-native-ohos/react-native-document-picker/harmony/document_picker.har": {
185
+ "name": "@react-native-ohos/react-native-document-picker",
186
+ "version": "9.3.2-rc.1",
187
+ "resolved": "../../node_modules/@react-native-ohos/react-native-document-picker/harmony/document_picker.har",
177
188
  "registryType": "local",
178
189
  "dependencies": {
179
- "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
190
+ "@rnoh/react-native-openharmony": "file:../react_native_openharmony.har",
191
+ "mime": "^3.0.0"
180
192
  }
181
193
  },
182
- "@react-native-oh-tpl/react-native-gesture-handler@../../node_modules/@react-native-oh-tpl/react-native-gesture-handler/harmony/gesture_handler.har": {
183
- "name": "@react-native-oh-tpl/react-native-gesture-handler",
184
- "version": "2.14.16",
185
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-gesture-handler/harmony/gesture_handler.har",
194
+ "@react-native-ohos/react-native-fast-image@../../node_modules/@react-native-ohos/react-native-fast-image/harmony/fast_image.har": {
195
+ "name": "@react-native-ohos/react-native-fast-image",
196
+ "version": "8.7.0-rc.2",
197
+ "resolved": "../../node_modules/@react-native-ohos/react-native-fast-image/harmony/fast_image.har",
186
198
  "registryType": "local",
187
199
  "dependencies": {
188
- "@rnoh/react-native-openharmony": "^0.72.32"
200
+ "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
189
201
  }
190
202
  },
191
- "@react-native-oh-tpl/react-native-get-random-values@../../node_modules/@react-native-oh-tpl/react-native-get-random-values/harmony/get_random_values.har": {
192
- "name": "@react-native-oh-tpl/react-native-get-random-values",
193
- "version": "1.11.0-0.0.1",
194
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-get-random-values/harmony/get_random_values.har",
203
+ "@react-native-ohos/react-native-fs@../../node_modules/@react-native-ohos/react-native-fs/harmony/fs.har": {
204
+ "name": "@react-native-ohos/react-native-fs",
205
+ "version": "2.21.0-rc.1",
206
+ "resolved": "../../node_modules/@react-native-ohos/react-native-fs/harmony/fs.har",
195
207
  "registryType": "local",
196
208
  "dependencies": {
197
- "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
209
+ "@rnoh/react-native-openharmony": "0.72.38"
198
210
  }
199
211
  },
200
- "@react-native-oh-tpl/react-native-image-picker@../../node_modules/@react-native-oh-tpl/react-native-image-picker/harmony/image_picker.har": {
201
- "name": "@react-native-oh-tpl/react-native-image-picker",
202
- "version": "7.0.3-0.1.6",
203
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-image-picker/harmony/image_picker.har",
212
+ "@react-native-ohos/react-native-gesture-handler@../../node_modules/@react-native-ohos/react-native-gesture-handler/harmony/gesture_handler.har": {
213
+ "name": "@react-native-ohos/react-native-gesture-handler",
214
+ "version": "2.23.2-rc.5",
215
+ "resolved": "../../node_modules/@react-native-ohos/react-native-gesture-handler/harmony/gesture_handler.har",
204
216
  "registryType": "local",
205
217
  "dependencies": {
206
- "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
218
+ "@rnoh/react-native-openharmony": "0.77.40"
207
219
  }
208
220
  },
209
- "@react-native-oh-tpl/react-native-image-resizer@../../node_modules/@react-native-oh-tpl/react-native-image-resizer/harmony/image_resizer.har": {
210
- "name": "@react-native-oh-tpl/react-native-image-resizer",
211
- "version": "3.0.9-0.0.3",
212
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-image-resizer/harmony/image_resizer.har",
221
+ "@react-native-ohos/react-native-get-random-values@../../node_modules/@react-native-ohos/react-native-get-random-values/harmony/get_random_values.har": {
222
+ "name": "@react-native-ohos/react-native-get-random-values",
223
+ "version": "1.12.0-rc.1",
224
+ "resolved": "../../node_modules/@react-native-ohos/react-native-get-random-values/harmony/get_random_values.har",
213
225
  "registryType": "local",
214
226
  "dependencies": {
215
227
  "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
216
228
  }
217
229
  },
218
- "@react-native-oh-tpl/react-native-localize@../../node_modules/@react-native-oh-tpl/react-native-localize/harmony/rn_localize.har": {
219
- "name": "@react-native-oh-tpl/react-native-localize",
220
- "version": "3.1.0-0.0.1",
221
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-localize/harmony/rn_localize.har",
230
+ "@react-native-ohos/react-native-image-picker@../../node_modules/@react-native-ohos/react-native-image-picker/harmony/image_picker.har": {
231
+ "name": "@react-native-ohos/react-native-image-picker",
232
+ "version": "8.2.2-rc.4",
233
+ "resolved": "../../node_modules/@react-native-ohos/react-native-image-picker/harmony/image_picker.har",
222
234
  "registryType": "local",
223
235
  "dependencies": {
224
236
  "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
225
237
  }
226
238
  },
227
- "@react-native-oh-tpl/react-native-orientation-locker@../../node_modules/@react-native-oh-tpl/react-native-orientation-locker/harmony/orientation_locker.har": {
228
- "name": "@react-native-oh-tpl/react-native-orientation-locker",
229
- "version": "1.7.0-0.0.4",
230
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-orientation-locker/harmony/orientation_locker.har",
239
+ "@react-native-ohos/react-native-image-resizer@../../node_modules/@react-native-ohos/react-native-image-resizer/harmony/image_resizer.har": {
240
+ "name": "@react-native-ohos/react-native-image-resizer",
241
+ "version": "3.0.11-0.0.4",
242
+ "resolved": "../../node_modules/@react-native-ohos/react-native-image-resizer/harmony/image_resizer.har",
231
243
  "registryType": "local",
232
244
  "dependencies": {
233
245
  "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
234
246
  }
235
247
  },
236
- "@react-native-oh-tpl/react-native-pdf@../../node_modules/@react-native-oh-tpl/react-native-pdf/harmony/pdfview.har": {
237
- "name": "@react-native-oh-tpl/react-native-pdf",
238
- "version": "6.7.4-0.3.2",
239
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-pdf/harmony/pdfview.har",
248
+ "@react-native-ohos/react-native-linear-gradient@../../node_modules/@react-native-ohos/react-native-linear-gradient/harmony/linear_gradient.har": {
249
+ "name": "@react-native-ohos/react-native-linear-gradient",
250
+ "version": "3.1.0-rc.1",
251
+ "resolved": "../../node_modules/@react-native-ohos/react-native-linear-gradient/harmony/linear_gradient.har",
252
+ "registryType": "local"
253
+ },
254
+ "@react-native-ohos/react-native-localize@../../node_modules/@react-native-ohos/react-native-localize/harmony/rn_localize.har": {
255
+ "name": "@react-native-ohos/react-native-localize",
256
+ "version": "3.4.2-rc.3",
257
+ "resolved": "../../node_modules/@react-native-ohos/react-native-localize/harmony/rn_localize.har",
240
258
  "registryType": "local",
241
259
  "dependencies": {
242
- "@rnoh/react-native-openharmony": "file:../../../libs/react_native_openharmony-5.0.0.802.har"
260
+ "@rnoh/react-native-openharmony": "file:../react_native_openharmony.har"
243
261
  }
244
262
  },
245
- "@react-native-oh-tpl/react-native-permissions@../../node_modules/@react-native-oh-tpl/react-native-permissions/harmony/permissions.har": {
246
- "name": "@react-native-oh-tpl/react-native-permissions",
247
- "version": "4.1.2-0.1.6",
248
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-permissions/harmony/permissions.har",
263
+ "@react-native-ohos/react-native-orientation-locker@../../node_modules/@react-native-ohos/react-native-orientation-locker/harmony/orientation_locker.har": {
264
+ "name": "@react-native-ohos/react-native-orientation-locker",
265
+ "version": "1.8.0-rc.3",
266
+ "resolved": "../../node_modules/@react-native-ohos/react-native-orientation-locker/harmony/orientation_locker.har",
249
267
  "registryType": "local",
250
268
  "dependencies": {
251
269
  "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
252
270
  }
253
271
  },
254
- "@react-native-oh-tpl/react-native-reanimated@../../node_modules/@react-native-oh-tpl/react-native-reanimated/harmony/reanimated.har": {
255
- "name": "@react-native-oh-tpl/react-native-reanimated",
256
- "version": "3.6.2",
257
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-reanimated/harmony/reanimated.har",
272
+ "@react-native-ohos/react-native-pdf@../../node_modules/@react-native-ohos/react-native-pdf/harmony/pdfview.har": {
273
+ "name": "@react-native-ohos/react-native-pdf",
274
+ "version": "6.8.0-rc.3",
275
+ "resolved": "../../node_modules/@react-native-ohos/react-native-pdf/harmony/pdfview.har",
258
276
  "registryType": "local",
259
277
  "dependencies": {
260
- "@rnoh/react-native-openharmony": "file:../../node_modules/react-native-harmony/harmony/react_native_openharmony.har"
278
+ "@rnoh/react-native-openharmony": "\"file:../../node_modules/react-native-harmony/harmony/react_native_openharmony.har\""
261
279
  }
262
280
  },
263
- "@react-native-oh-tpl/react-native-safe-area-context@../../node_modules/@react-native-oh-tpl/react-native-safe-area-context/harmony/safe_area.har": {
264
- "name": "@react-native-oh-tpl/react-native-safe-area-context",
265
- "version": "4.7.4-0.2.0",
266
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-safe-area-context/harmony/safe_area.har",
281
+ "@react-native-ohos/react-native-permissions@../../node_modules/@react-native-ohos/react-native-permissions/harmony/permissions.har": {
282
+ "name": "@react-native-ohos/react-native-permissions",
283
+ "version": "5.3.1-rc.2",
284
+ "resolved": "../../node_modules/@react-native-ohos/react-native-permissions/harmony/permissions.har",
267
285
  "registryType": "local",
268
286
  "dependencies": {
269
287
  "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
270
288
  }
271
289
  },
272
- "@react-native-oh-tpl/react-native-smartrefreshlayout@../../node_modules/@react-native-oh-tpl/react-native-smartrefreshlayout/harmony/smart_refresh_layout.har": {
273
- "name": "@react-native-oh-tpl/react-native-smartrefreshlayout",
274
- "version": "0.6.7-0.2.15",
275
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-smartrefreshlayout/harmony/smart_refresh_layout.har",
290
+ "@react-native-ohos/react-native-reanimated@../../node_modules/@react-native-ohos/react-native-reanimated/harmony/reanimated.har": {
291
+ "name": "@react-native-ohos/react-native-reanimated",
292
+ "version": "3.18.1-rc.5",
293
+ "resolved": "../../node_modules/@react-native-ohos/react-native-reanimated/harmony/reanimated.har",
276
294
  "registryType": "local",
277
295
  "dependencies": {
278
- "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
296
+ "@rnoh/react-native-openharmony": "file:../react_native_openharmony.har"
279
297
  }
280
298
  },
281
- "@react-native-oh-tpl/react-native-svg@../../node_modules/@react-native-oh-tpl/react-native-svg/harmony/svg.har": {
282
- "name": "@react-native-oh-tpl/react-native-svg",
283
- "version": "15.0.0-0.7.1",
284
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-svg/harmony/svg.har",
299
+ "@react-native-ohos/react-native-safe-area-context@../../node_modules/@react-native-ohos/react-native-safe-area-context/harmony/safe_area.har": {
300
+ "name": "@react-native-ohos/react-native-safe-area-context",
301
+ "version": "5.1.1-rc.1",
302
+ "resolved": "../../node_modules/@react-native-ohos/react-native-safe-area-context/harmony/safe_area.har",
285
303
  "registryType": "local",
286
304
  "dependencies": {
287
- "@rnoh/react-native-openharmony": "^0.72.32"
305
+ "@rnoh/react-native-openharmony": "file:../../node_modules/@react-native-oh/react-native-harmony/harmony/react_native_openharmony.har"
288
306
  }
289
307
  },
290
- "@react-native-oh-tpl/react-native-touch-id@../../node_modules/@react-native-oh-tpl/react-native-touch-id/harmony/touch_id.har": {
291
- "name": "@react-native-oh-tpl/react-native-touch-id",
292
- "version": "4.4.1-0.0.3",
293
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-touch-id/harmony/touch_id.har",
308
+ "@react-native-ohos/react-native-smartrefreshlayout@../../node_modules/@react-native-ohos/react-native-smartrefreshlayout/harmony/smart_refresh_layout.har": {
309
+ "name": "@react-native-ohos/react-native-smartrefreshlayout",
310
+ "version": "0.7.0-rc.1",
311
+ "resolved": "../../node_modules/@react-native-ohos/react-native-smartrefreshlayout/harmony/smart_refresh_layout.har",
294
312
  "registryType": "local",
295
313
  "dependencies": {
296
- "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
314
+ "@rnoh/react-native-openharmony": "file:../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har"
297
315
  }
298
316
  },
299
- "@react-native-oh-tpl/react-native-video@../../node_modules/@react-native-oh-tpl/react-native-video/harmony/rn_video.har": {
300
- "name": "@react-native-oh-tpl/react-native-video",
301
- "version": "5.2.1-0.2.36",
302
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-video/harmony/rn_video.har",
317
+ "@react-native-ohos/react-native-svg@../../node_modules/@react-native-ohos/react-native-svg/harmony/svg.har": {
318
+ "name": "@react-native-ohos/react-native-svg",
319
+ "version": "15.12.1-rc.9",
320
+ "resolved": "../../node_modules/@react-native-ohos/react-native-svg/harmony/svg.har",
303
321
  "registryType": "local",
304
322
  "dependencies": {
305
- "@rnoh/react-native-openharmony": "file:../react_native_openharmony.har"
323
+ "@rnoh/react-native-openharmony": "file:../../node_modules/@react-native-oh/react-native-harmony/harmony/react_native_openharmony.har"
306
324
  }
307
325
  },
308
- "@react-native-oh-tpl/react-native-vision-camera@../../node_modules/@react-native-oh-tpl/react-native-vision-camera/harmony/vision_camera.har": {
309
- "name": "@react-native-oh-tpl/react-native-vision-camera",
310
- "version": "4.0.1-0.0.20",
311
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-vision-camera/harmony/vision_camera.har",
326
+ "@react-native-ohos/react-native-video@../../node_modules/@react-native-ohos/react-native-video/harmony/rn_video.har": {
327
+ "name": "@react-native-ohos/react-native-video",
328
+ "version": "6.14.0-rc.3",
329
+ "resolved": "../../node_modules/@react-native-ohos/react-native-video/harmony/rn_video.har",
312
330
  "registryType": "local",
313
331
  "dependencies": {
314
- "@rnoh/react-native-openharmony": "0.72.38"
315
- }
316
- },
317
- "@react-native-oh-tpl/react-native-webview@../../node_modules/@react-native-oh-tpl/react-native-webview/harmony/rn_webview.har": {
318
- "name": "@react-native-oh-tpl/react-native-webview",
319
- "version": "13.10.2-0.2.36",
320
- "resolved": "../../node_modules/@react-native-oh-tpl/react-native-webview/harmony/rn_webview.har",
321
- "registryType": "local",
322
- "dependencies": {
323
- "@rnoh/react-native-openharmony": "file:../react_native_openharmony"
332
+ "@rnoh/react-native-openharmony": "file:../react_native_openharmony.har"
324
333
  }
325
334
  },
326
- "@react-native-ohos/push-notification-ios@../../node_modules/@react-native-ohos/push-notification-ios/harmony/push_notification.har": {
327
- "name": "@react-native-ohos/push-notification-ios",
328
- "version": "1.11.1-rc.1",
329
- "resolved": "../../node_modules/@react-native-ohos/push-notification-ios/harmony/push_notification.har",
335
+ "@react-native-ohos/react-native-vision-camera@../../node_modules/@react-native-ohos/react-native-vision-camera/harmony/vision_camera.har": {
336
+ "name": "@react-native-ohos/react-native-vision-camera",
337
+ "version": "4.7.1-rc.5",
338
+ "resolved": "../../node_modules/@react-native-ohos/react-native-vision-camera/harmony/vision_camera.har",
330
339
  "registryType": "local",
331
340
  "dependencies": {
332
- "@rnoh/react-native-openharmony": "^0.72.38"
341
+ "@rnoh/react-native-openharmony": "0.77.22",
342
+ "@ohos/mp4parser": "^2.0.6"
333
343
  }
334
344
  },
335
- "@react-native-ohos/react-native-fs@../../node_modules/@react-native-ohos/react-native-fs/harmony/fs.har": {
336
- "name": "@react-native-ohos/react-native-fs",
337
- "version": "2.20.1-rc.2",
338
- "resolved": "../../node_modules/@react-native-ohos/react-native-fs/harmony/fs.har",
345
+ "@react-native-ohos/react-native-webview@../../node_modules/@react-native-ohos/react-native-webview/harmony/rn_webview.har": {
346
+ "name": "@react-native-ohos/react-native-webview",
347
+ "version": "13.15.1-rc.7",
348
+ "resolved": "../../node_modules/@react-native-ohos/react-native-webview/harmony/rn_webview.har",
339
349
  "registryType": "local",
340
350
  "dependencies": {
341
- "@rnoh/react-native-openharmony": "0.72.38"
351
+ "@rnoh/react-native-openharmony": "../react_native_openharmony.har"
342
352
  }
343
353
  },
344
- "@react-native-ohos/react-native-linear-gradient@../../node_modules/@react-native-ohos/react-native-linear-gradient/harmony/linear_gradient.har": {
345
- "name": "@react-native-ohos/react-native-linear-gradient",
346
- "version": "3.0.1-rc.1",
347
- "resolved": "../../node_modules/@react-native-ohos/react-native-linear-gradient/harmony/linear_gradient.har",
348
- "registryType": "local"
349
- },
350
354
  "@rnoh/react-native-openharmony@../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har": {
351
355
  "name": "@rnoh/react-native-openharmony",
352
- "version": "0.72.38",
356
+ "version": "0.77.33",
353
357
  "resolved": "../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har",
354
358
  "registryType": "local"
355
359
  },
356
- "@umeng/analytics@1.2.4": {
360
+ "@types/libmp4parser_napi.so@../oh_modules/.ohpm/@ohos+mp4parser@2.0.9/oh_modules/@ohos/mp4parser/src/main/cpp/types/libmp4parser_napi": {
361
+ "name": "libmp4parser_napi.so",
362
+ "version": "0.0.0",
363
+ "resolved": "../oh_modules/.ohpm/@ohos+mp4parser@2.0.9/oh_modules/@ohos/mp4parser/src/main/cpp/types/libmp4parser_napi",
364
+ "registryType": "local"
365
+ },
366
+ "@umeng/analytics@1.2.12": {
357
367
  "name": "@umeng/analytics",
358
- "version": "1.2.4",
359
- "integrity": "sha512-qth9hSUkHtgL9NBSZYHznmZpgU9uFK6LDKyRvqjih6+HRtOi7lXl6PblN8993x5i+hfBgSWMdDxqD0wgl7tWdQ==",
360
- "resolved": "https://ohpm.openharmony.cn/ohpm/@umeng/analytics/-/analytics-1.2.4.har",
368
+ "version": "1.2.12",
369
+ "integrity": "sha512-cQqOh/fAKshxAxBRhQMnVJkK/oqDM/tehjobS2RrQlpw8ZwJcBKKo/iBDC3HiEpuZxhzGzKVx4ZLqcaNfjhgAw==",
370
+ "resolved": "https://ohpm.openharmony.cn/ohpm/@umeng/analytics/-/analytics-1.2.12.har",
361
371
  "registryType": "ohpm"
362
372
  },
363
- "@umeng/apm@1.1.1": {
373
+ "@umeng/apm@1.4.1": {
364
374
  "name": "@umeng/apm",
365
- "version": "1.1.1",
366
- "integrity": "sha512-VJ2/os2lUVEqlNg4aErsv1bItZxwemqJJS5JgMU4AtaVaBrKSy78Exf1nnQEqRUeZxd2AHnnRpc3V7UzE1g3Gg==",
367
- "resolved": "https://ohpm.openharmony.cn/ohpm/@umeng/apm/-/apm-1.1.1.har",
375
+ "version": "1.4.1",
376
+ "integrity": "sha512-pX9oZdtRvobeIWZkn6BCfHJr77o6kIZmX0RZvwvaXSNBgNL74ReVVMJbIL122f/eCveL9orx2VtpwALfcIxzGg==",
377
+ "resolved": "https://ohpm.openharmony.cn/ohpm/@umeng/apm/-/apm-1.4.1.har",
368
378
  "registryType": "ohpm"
369
379
  },
370
- "@umeng/common@1.1.3": {
380
+ "@umeng/common@1.2.0": {
371
381
  "name": "@umeng/common",
372
- "version": "1.1.3",
373
- "integrity": "sha512-0pYi/JuQzZ8Gsy97Bw5lqCwkTUIK+vImQC+4mgWYbZKH+OxKu4HOoKds0bz+9xbVIyfx88dR7lEdcGeQfR6eug==",
374
- "resolved": "https://ohpm.openharmony.cn/ohpm/@umeng/common/-/common-1.1.3.har",
382
+ "version": "1.2.0",
383
+ "integrity": "sha512-/OJ6PbxqajTKin503cxEeR65Ld43vapfGNuQVl24I/1sByOFP02rNqcXqZWDNK3hSyAUpdYHPhQhzEkSqCSZAw==",
384
+ "resolved": "https://ohpm.openharmony.cn/ohpm/@umeng/common/-/common-1.2.0.har",
375
385
  "registryType": "ohpm",
376
386
  "dependencies": {
377
387
  "libcommon.so": "./src/main/cpp/types/libcommon"
@@ -384,64 +394,41 @@
384
394
  "resolved": "https://ohpm.openharmony.cn/ohpm/@wolfx/json5/-/json5-2.2.3-rc.1.har",
385
395
  "registryType": "ohpm"
386
396
  },
387
- "libcommon.so@../oh_modules/.ohpm/@umeng+common@1.1.3/oh_modules/@umeng/common/src/main/cpp/types/libcommon": {
388
- "name": "libcommon.so",
389
- "version": "1.0.0",
390
- "resolved": "../oh_modules/.ohpm/@umeng+common@1.1.3/oh_modules/@umeng/common/src/main/cpp/types/libcommon",
391
- "registryType": "local"
392
- },
393
- "mime@3.0.0": {
394
- "name": "mime",
395
- "version": "3.0.0",
396
- "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==",
397
- "resolved": "https://ohpm.openharmony.cn/ohpm/mime/-/mime-3.0.0.tgz",
398
- "shasum": "b374550dca3a0c18443b0c950a6a58f1931cf7a7",
399
- "registryType": "ohpm"
400
- },
401
- "xrn-app-utils@../../node_modules/@xrnjs/app-utils/harmony/xrn_app_utils": {
402
- "name": "xrn-app-utils",
397
+ "@xrnjs/app-utils@../../node_modules/@xrnjs/app-utils/harmony/xrn_app_utils": {
398
+ "name": "@xrnjs/app-utils",
403
399
  "version": "1.0.0",
404
400
  "resolved": "../../node_modules/@xrnjs/app-utils/harmony/xrn_app_utils",
405
401
  "registryType": "local",
406
402
  "dependencies": {
407
403
  "@rnoh/react-native-openharmony": "../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har",
408
- "@pura/harmony-utils": "1.2.6"
404
+ "@pura/harmony-utils": "^1.2.6"
409
405
  }
410
406
  },
411
- "xrn-bundle@../../node_modules/@xrnjs/bundle/harmony/xrn_bundle": {
412
- "name": "xrn-bundle",
407
+ "@xrnjs/bundle@../../node_modules/@xrnjs/bundle/harmony/xrn_bundle": {
408
+ "name": "@xrnjs/bundle",
413
409
  "version": "1.0.0",
414
410
  "resolved": "../../node_modules/@xrnjs/bundle/harmony/xrn_bundle",
415
411
  "registryType": "local",
416
412
  "dependencies": {
417
413
  "@rnoh/react-native-openharmony": "../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har",
418
- "xrn-multi-bundle": "../../../../packages/@xrnjs/multi-bundle/harmony/xrn_multi_bundle",
419
- "xrn-code-push": "../../../../node_modules/@xrnjs/react-native-code-push/harmony/codePush"
420
- }
421
- },
422
- "xrn-code-push@../../node_modules/@xrnjs/react-native-code-push/harmony/codePush": {
423
- "name": "xrn-code-push",
424
- "version": "8.2.2-0.0.10",
425
- "resolved": "../../node_modules/@xrnjs/react-native-code-push/harmony/codePush",
426
- "registryType": "local",
427
- "dependencies": {
428
- "@rnoh/react-native-openharmony": "file:../react_native_openharmony",
429
- "xrn-multi-bundle": "file:../xrn_multi_bundle"
414
+ "@xrnjs/multi-bundle": "../../../@xrnjs/bundle/harmony/xrn_multi_bundle.har",
415
+ "@xrnjs/react-native-code-push": "../../../../node_modules/@xrnjs/react-native-code-push/harmony/codePush",
416
+ "@xrnjs/modules-core": "../../../@xrnjs/modules-core/harmony/xrn_modules_core"
430
417
  }
431
418
  },
432
- "xrn-debug-tools@../../node_modules/@xrnjs/debug-tools/harmony/xrn_debug_tools": {
433
- "name": "xrn-debug-tools",
419
+ "@xrnjs/debug-tools@../../node_modules/@xrnjs/debug-tools/harmony/xrn_debug_tools": {
420
+ "name": "@xrnjs/debug-tools",
434
421
  "version": "1.0.0",
435
422
  "resolved": "../../node_modules/@xrnjs/debug-tools/harmony/xrn_debug_tools",
436
423
  "registryType": "local",
437
424
  "dependencies": {
438
425
  "@rnoh/react-native-openharmony": "../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har",
439
- "xrn-multi-bundle": "../../node_modules/@xrnjs/multi-bundle/harmony/xrn_multi_bundle",
440
- "xrn-navigation": "../../node_modules/@xrnjs/navigation/harmony/xrn_navigation"
426
+ "@xrnjs/multi-bundle": "../../node_modules/@xrnjs/multi-bundle/harmony/xrn_multi_bundle.har",
427
+ "@xrnjs/modules-core": "../../../@xrnjs/modules-core/harmony/xrn_modules_core"
441
428
  }
442
429
  },
443
- "xrn-loading@../../node_modules/@xrnjs/loading/harmony/xrn_loading": {
444
- "name": "xrn-loading",
430
+ "@xrnjs/loading@../../node_modules/@xrnjs/loading/harmony/xrn_loading": {
431
+ "name": "@xrnjs/loading",
445
432
  "version": "1.0.0",
446
433
  "resolved": "../../node_modules/@xrnjs/loading/harmony/xrn_loading",
447
434
  "registryType": "local",
@@ -451,19 +438,28 @@
451
438
  "@jxt/xt_hud": "3.3.0"
452
439
  }
453
440
  },
454
- "xrn-multi-bundle@../../node_modules/@xrnjs/multi-bundle/harmony/xrn_multi_bundle": {
455
- "name": "xrn-multi-bundle",
441
+ "@xrnjs/modules-core@../../node_modules/@xrnjs/modules-core/harmony/xrn_modules_core": {
442
+ "name": "@xrnjs/modules-core",
443
+ "version": "1.0.0",
444
+ "resolved": "../../node_modules/@xrnjs/modules-core/harmony/xrn_modules_core",
445
+ "registryType": "local",
446
+ "dependencies": {
447
+ "@rnoh/react-native-openharmony": "../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har"
448
+ }
449
+ },
450
+ "@xrnjs/multi-bundle@../../node_modules/@xrnjs/multi-bundle/harmony/xrn_multi_bundle": {
451
+ "name": "@xrnjs/multi-bundle",
456
452
  "version": "1.0.0",
457
453
  "resolved": "../../node_modules/@xrnjs/multi-bundle/harmony/xrn_multi_bundle",
458
454
  "registryType": "local",
459
455
  "dependencies": {
460
456
  "@rnoh/react-native-openharmony": "../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har",
461
457
  "@wolfx/json5": "^2.2.3-rc.1",
462
- "@pura/harmony-utils": "1.2.6"
458
+ "@pura/harmony-utils": "^1.2.6"
463
459
  }
464
460
  },
465
- "xrn-native-storage@../../node_modules/@xrnjs/native-storage/harmony/xrn_native_storage": {
466
- "name": "xrn-native-storage",
461
+ "@xrnjs/native-storage@../../node_modules/@xrnjs/native-storage/harmony/xrn_native_storage": {
462
+ "name": "@xrnjs/native-storage",
467
463
  "version": "1.0.0",
468
464
  "resolved": "../../node_modules/@xrnjs/native-storage/harmony/xrn_native_storage",
469
465
  "registryType": "local",
@@ -471,16 +467,41 @@
471
467
  "@rnoh/react-native-openharmony": "../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har"
472
468
  }
473
469
  },
474
- "xrn-navigation@../../node_modules/@xrnjs/navigation/harmony/xrn_navigation": {
475
- "name": "xrn-navigation",
470
+ "@xrnjs/navigation@../../node_modules/@xrnjs/navigation/harmony/xrn_navigation": {
471
+ "name": "@xrnjs/navigation",
476
472
  "version": "1.0.0",
477
473
  "resolved": "../../node_modules/@xrnjs/navigation/harmony/xrn_navigation",
478
474
  "registryType": "local",
479
475
  "dependencies": {
480
476
  "@rnoh/react-native-openharmony": "../../node_modules/@react-native-oh/react-native-harmony/react_native_openharmony.har",
481
- "@pura/harmony-utils": "1.2.6",
482
- "xrn-multi-bundle": "../../node_modules/xrn-multi-bundle/harmony/xrn_multi_bundle.har"
477
+ "@pura/harmony-utils": "1.2.5",
478
+ "@xrnjs/multi-bundle": "../../node_modules/@xrnjs/multi-bundle/harmony/xrn_multi_bundle.har"
479
+ }
480
+ },
481
+ "@xrnjs/react-native-code-push@../../node_modules/@xrnjs/react-native-code-push/harmony/codePush": {
482
+ "name": "@xrnjs/react-native-code-push",
483
+ "version": "8.2.2-0.0.10",
484
+ "resolved": "../../node_modules/@xrnjs/react-native-code-push/harmony/codePush",
485
+ "registryType": "local",
486
+ "dependencies": {
487
+ "@rnoh/react-native-openharmony": "../../../../@react-native-oh/react-native-harmony/react_native_openharmony.har",
488
+ "@xrnjs/multi-bundle": "../../../multi-bundle/harmony/xrn_multi_bundle",
489
+ "@xrnjs/modules-core": "../../../modules-core/harmony/xrn_modules_core"
483
490
  }
491
+ },
492
+ "libcommon.so@../oh_modules/.ohpm/@umeng+common@1.2.0/oh_modules/@umeng/common/src/main/cpp/types/libcommon": {
493
+ "name": "libcommon.so",
494
+ "version": "1.0.0",
495
+ "resolved": "../oh_modules/.ohpm/@umeng+common@1.2.0/oh_modules/@umeng/common/src/main/cpp/types/libcommon",
496
+ "registryType": "local"
497
+ },
498
+ "mime@3.0.0": {
499
+ "name": "mime",
500
+ "version": "3.0.0",
501
+ "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==",
502
+ "resolved": "https://ohpm.openharmony.cn/ohpm/mime/-/mime-3.0.0.tgz",
503
+ "shasum": "b374550dca3a0c18443b0c950a6a58f1931cf7a7",
504
+ "registryType": "ohpm"
484
505
  }
485
506
  }
486
507
  }