@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.
- package/$package.json +30 -36
- package/android/app/build.gradle +56 -73
- package/android/app/src/debug/java/com/xrn/template/ReactNativeFlipper.java +23 -44
- package/android/app/src/main/assets/xrn-manifest.json +1 -1
- package/android/app/src/main/java/com/xrn/template/MainApplication.kt +54 -65
- package/android/app/src/main/java/com/xrn/template/multibundle/CodePushBundleActivity.kt +65 -0
- package/android/app/src/main/java/com/xrn/template/multibundle/CodePushJSBundleLoader.kt +18 -0
- package/android/app/src/main/java/com/xrn/template/multibundle/CodePushUtils.kt +263 -0
- package/android/app/src/main/java/com/xrn/template/multibundle/XBundleTool.kt +9 -0
- package/android/app/src/main/java/com/xrn/template/multibundle/XRNReactHostDelegate.kt +56 -0
- package/android/app/src/main/java/com/xrn/template/navigation/XBundleActivity.kt +10 -7
- package/android/app/src/main/res/raw/bundle_config.json +2 -6
- package/android/build.gradle +40 -39
- package/android/buildSrc/build.gradle.kts +15 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +3 -1
- package/android/gradle.properties +17 -10
- package/android/settings.gradle +40 -12
- package/harmony/.clang-tidy +1 -1
- package/harmony/.clangd +3 -1
- package/harmony/AppScope/app.json5 +1 -1
- package/harmony/build-profile.json5 +8 -8
- package/harmony/entry/oh-package-lock.json5 +283 -262
- package/harmony/entry/oh-package.json5 +35 -36
- package/harmony/entry/src/main/cpp/CMakeLists.txt +37 -17
- package/harmony/entry/src/main/cpp/PackageProvider.cpp +20 -2
- package/harmony/entry/src/main/cpp/generated/BundleNavigation.cpp +3 -0
- package/harmony/entry/src/main/cpp/generated/RNOHGeneratedPackage.h +31 -87
- package/harmony/entry/src/main/cpp/generated/RTNCodePush.cpp +7 -1
- package/harmony/entry/src/main/cpp/generated/XRNBundleModule.cpp +9 -0
- package/harmony/entry/src/main/cpp/generated/XRNDebugToolsModule.cpp +10 -0
- package/harmony/entry/src/main/cpp/generated/{ImageResizer.cpp → XRNImageView.cpp} +6 -3
- package/harmony/entry/src/main/cpp/generated/{ImageResizer.h → XRNImageView.h} +2 -2
- package/harmony/entry/src/main/cpp/generated/{RNCWebViewComponentDescriptor.h → XRNImageViewComponentDescriptor.h} +11 -10
- package/harmony/entry/src/main/cpp/generated/XRNImageViewJSIBinder.h +58 -0
- package/harmony/entry/src/main/cpp/generated/XRNKeyboard.cpp +23 -0
- package/harmony/entry/src/main/cpp/generated/{RNLocalize.h → XRNKeyboard.h} +2 -2
- package/harmony/entry/src/main/cpp/generated/XRNNavigation.cpp +5 -0
- package/harmony/entry/src/main/cpp/generated/{RNCWebViewModule.cpp → XRNNetworkModule.cpp} +2 -4
- package/harmony/entry/src/main/cpp/generated/{RNCWebViewModule.h → XRNNetworkModule.h} +2 -2
- package/harmony/entry/src/main/ets/BundleHelper.ets +41 -45
- package/harmony/entry/src/main/ets/MainAbilityStage.ets +9 -4
- package/harmony/entry/src/main/ets/entryability/EntryAbility.ets +1 -1
- package/harmony/entry/src/main/ets/navDestination/BizModuleContainer.ets +2 -2
- package/harmony/entry/src/main/ets/navDestination/MainModuleContainer.ets +2 -2
- package/harmony/entry/src/main/ets/navDestination/Splash.ets +1 -2
- package/harmony/entry/src/main/ets/pages/Index.ets +4 -4
- package/harmony/entry/src/main/resources/rawfile/bundle_config.json5 +2 -6
- package/harmony/entry/src/main/resources/rawfile/xrn-manifest.json +1 -0
- package/harmony/oh-package-lock.json5 +2 -1
- package/harmony/oh-package.json5 +12 -4
- package/index.ts +0 -0
- package/ios/BundleEventCenter/Hooks/XRNCustomKeyborad+XTHooks.h +16 -0
- package/ios/BundleEventCenter/Hooks/XRNCustomKeyborad+XTHooks.mm +40 -0
- package/ios/BundleEventCenter/Hooks/XTIQKeyboardManagerBridge.h +15 -0
- package/ios/BundleEventCenter/Hooks/XTIQKeyboardManagerBridge.m +22 -0
- package/ios/BundleEventCenter/XTBundleProvider.m +98 -72
- package/ios/BundleEventCenter/XTBundleViewControllerFactory.m +4 -15
- package/ios/BundleEventCenter/bundleController/XTBundleViewController.mm +43 -0
- package/ios/BundleEventCenter/bundleController/XTMainBundleViewController.mm +48 -0
- package/ios/BundleEventCenter/bundleController/xtBundles.plist +1 -1
- package/ios/Podfile +234 -151
- package/ios/Podfile.lock +2810 -594
- package/ios/RNDebug/DebugPlugin/XTPluginManage.m +5 -5
- package/ios/RNDebug/MotroTools/XTMetroAutoConnector.h +21 -0
- package/ios/RNDebug/MotroTools/XTMetroAutoConnector.m +124 -0
- package/ios/RNDebug/MotroTools/XTReloadCommandHelper.h +30 -0
- package/ios/RNDebug/MotroTools/XTReloadCommandHelper.mm +128 -0
- package/ios/RNDebug/Views/XTScanQRPlugin.swift +9 -4
- package/ios/XRNTemplate/AppDelegate.h +3 -3
- package/ios/XRNTemplate/AppDelegate.mm +40 -102
- package/ios/XRNTemplate/Info.plist +4 -4
- package/ios/XRNTemplate/PrivacyInfo.xcprivacy +48 -0
- package/ios/XRNTemplate-Bridging-Header.h +2 -1
- package/ios/XRNTemplate.xcodeproj/project.pbxproj +68 -77
- package/ios/ios_patches/fixed_glog_config.h +195 -0
- package/ios/ios_patches/xt_IQKeyboardManager+Position.swift +1341 -0
- package/ios/ios_patches/xt_IQKeyboardManager.swift +454 -0
- package/ios/subBundles/.gitkeep +0 -0
- package/main-bundle/babel.config.js +2 -2
- package/main-bundle/package.json +11 -20
- package/main-bundle/yarn.lock +14655 -9651
- package/metro.config.js +21 -0
- package/package.json +2 -2
- package/react-native.config.js +3 -45
- package/src/.gitkeep +0 -0
- package/sub-bundle/babel.config.js +2 -2
- package/sub-bundle/package.json +11 -20
- package/sub-bundle/react-native.config.js +4 -0
- package/sub-bundle/yarn.lock +14655 -9651
- package/xrn.config.json +12 -12
- package/android/app/src/main/java/com/xrn/template/multibundle/XDevSupportParams.kt +0 -6
- package/android/app/src/main/java/com/xrn/template/multibundle/XRNHostParams.kt +0 -82
- package/harmony/entry/src/main/cpp/generated/ConfigNativeModule.cpp +0 -21
- package/harmony/entry/src/main/cpp/generated/ConfigNativeModule.h +0 -21
- package/harmony/entry/src/main/cpp/generated/GetRandomValuesNativeModule.cpp +0 -21
- package/harmony/entry/src/main/cpp/generated/GetRandomValuesNativeModule.h +0 -21
- package/harmony/entry/src/main/cpp/generated/NativeHarmonyTouchId.cpp +0 -22
- package/harmony/entry/src/main/cpp/generated/NativeHarmonyTouchId.h +0 -21
- package/harmony/entry/src/main/cpp/generated/OreitationLockerNativeModule.cpp +0 -31
- package/harmony/entry/src/main/cpp/generated/OreitationLockerNativeModule.h +0 -21
- package/harmony/entry/src/main/cpp/generated/RNCCameraRoll.cpp +0 -28
- package/harmony/entry/src/main/cpp/generated/RNCCameraRoll.h +0 -21
- package/harmony/entry/src/main/cpp/generated/RNCCameraRollPermission.cpp +0 -26
- package/harmony/entry/src/main/cpp/generated/RNCCameraRollPermission.h +0 -21
- package/harmony/entry/src/main/cpp/generated/RNCWebViewJSIBinder.h +0 -120
- package/harmony/entry/src/main/cpp/generated/RNDeviceInfo.cpp +0 -164
- package/harmony/entry/src/main/cpp/generated/RNDeviceInfo.h +0 -21
- package/harmony/entry/src/main/cpp/generated/RNDocumentPicker.cpp +0 -24
- package/harmony/entry/src/main/cpp/generated/RNDocumentPicker.h +0 -21
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerButtonComponentDescriptor.h +0 -43
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerButtonJSIBinder.h +0 -38
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerModule.cpp +0 -28
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerModule.h +0 -21
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerRootViewComponentDescriptor.h +0 -43
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerRootViewJSIBinder.h +0 -31
- package/harmony/entry/src/main/cpp/generated/RNLocalize.cpp +0 -31
- package/harmony/entry/src/main/cpp/generated/ReactNativeBlobUtil.cpp +0 -51
- package/harmony/entry/src/main/cpp/generated/ReactNativeBlobUtil.h +0 -21
- package/harmony/entry/src/main/cpp/generated/XRNAssetLoaderModule.cpp +0 -21
- package/harmony/entry/src/main/cpp/generated/XRNAssetLoaderModule.h +0 -21
- package/harmony/entry/src/main/cpp/generated/XRNFileModule.cpp +0 -22
- package/harmony/entry/src/main/cpp/generated/XRNFileModule.h +0 -21
- package/ios/BundleEventCenter/bundleController/XTBundleViewController.m +0 -35
- 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.
|
|
10
|
-
"@ohos/
|
|
11
|
-
"@
|
|
12
|
-
"@pura/harmony-utils
|
|
13
|
-
"@react-native-
|
|
14
|
-
"@react-native-
|
|
15
|
-
"@react-native-
|
|
16
|
-
"@react-native-
|
|
17
|
-
"@react-native-
|
|
18
|
-
"@react-native-
|
|
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
|
-
"@
|
|
45
|
-
"@umeng/
|
|
46
|
-
"@umeng/
|
|
47
|
-
"@
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
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.
|
|
69
|
+
"@ohos/lottie@2.0.25": {
|
|
68
70
|
"name": "@ohos/lottie",
|
|
69
|
-
"version": "2.0.
|
|
70
|
-
"integrity": "sha512-
|
|
71
|
-
"resolved": "https://ohpm.openharmony.cn/ohpm/@ohos/lottie/-/lottie-2.0.
|
|
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
|
-
"@
|
|
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
|
|
77
|
-
"integrity": "sha512-
|
|
78
|
-
"resolved": "https://ohpm.openharmony.cn/ohpm/@pura/harmony-utils/-/harmony-utils-1.2.
|
|
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-
|
|
82
|
-
"name": "@react-native-
|
|
83
|
-
"version": "
|
|
84
|
-
"resolved": "../../node_modules/@react-native-
|
|
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-
|
|
91
|
-
"name": "@react-native-
|
|
92
|
-
"version": "7.
|
|
93
|
-
"resolved": "../../node_modules/@react-native-
|
|
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
|
|
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-
|
|
100
|
-
"name": "@react-native-
|
|
101
|
-
"version": "1.
|
|
102
|
-
"resolved": "../../node_modules/@react-native-
|
|
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
|
|
117
|
+
"@rnoh/react-native-openharmony": "file:../../example/node_modules/react-native-harmony/harmony/react_native_openharmony.har"
|
|
106
118
|
}
|
|
107
119
|
},
|
|
108
|
-
"@react-native-
|
|
109
|
-
"name": "@react-native-
|
|
110
|
-
"version": "6.
|
|
111
|
-
"resolved": "../../node_modules/@react-native-
|
|
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-
|
|
118
|
-
"name": "@react-native-
|
|
119
|
-
"version": "
|
|
120
|
-
"resolved": "../../node_modules/@react-native-
|
|
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": "
|
|
124
|
-
"@ohos/lottie": "2.0.
|
|
135
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony",
|
|
136
|
+
"@ohos/lottie": "2.0.25-rc.1"
|
|
125
137
|
}
|
|
126
138
|
},
|
|
127
|
-
"@react-native-
|
|
128
|
-
"name": "@react-native-
|
|
129
|
-
"version": "11.
|
|
130
|
-
"resolved": "../../node_modules/@react-native-
|
|
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-
|
|
137
|
-
"name": "@react-native-
|
|
138
|
-
"version": "
|
|
139
|
-
"resolved": "../../node_modules/@react-native-
|
|
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": "
|
|
154
|
+
"@rnoh/react-native-openharmony": "^0.72.38"
|
|
143
155
|
}
|
|
144
156
|
},
|
|
145
|
-
"@react-native-
|
|
146
|
-
"name": "@react-native-
|
|
147
|
-
"version": "
|
|
148
|
-
"resolved": "../../node_modules/@react-native-
|
|
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-
|
|
155
|
-
"name": "@react-native-
|
|
156
|
-
"version": "
|
|
157
|
-
"resolved": "../../node_modules/@react-native-
|
|
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-
|
|
164
|
-
"name": "@react-native-
|
|
165
|
-
"version": "
|
|
166
|
-
"resolved": "../../node_modules/@react-native-
|
|
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
|
|
170
|
-
"mime": "^3.0.0"
|
|
181
|
+
"@rnoh/react-native-openharmony": "file:../../../react_native_openharmony"
|
|
171
182
|
}
|
|
172
183
|
},
|
|
173
|
-
"@react-native-
|
|
174
|
-
"name": "@react-native-
|
|
175
|
-
"version": "
|
|
176
|
-
"resolved": "../../node_modules/@react-native-
|
|
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-
|
|
183
|
-
"name": "@react-native-
|
|
184
|
-
"version": "
|
|
185
|
-
"resolved": "../../node_modules/@react-native-
|
|
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": "
|
|
200
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony"
|
|
189
201
|
}
|
|
190
202
|
},
|
|
191
|
-
"@react-native-
|
|
192
|
-
"name": "@react-native-
|
|
193
|
-
"version": "
|
|
194
|
-
"resolved": "../../node_modules/@react-native-
|
|
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": "
|
|
209
|
+
"@rnoh/react-native-openharmony": "0.72.38"
|
|
198
210
|
}
|
|
199
211
|
},
|
|
200
|
-
"@react-native-
|
|
201
|
-
"name": "@react-native-
|
|
202
|
-
"version": "
|
|
203
|
-
"resolved": "../../node_modules/@react-native-
|
|
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": "
|
|
218
|
+
"@rnoh/react-native-openharmony": "0.77.40"
|
|
207
219
|
}
|
|
208
220
|
},
|
|
209
|
-
"@react-native-
|
|
210
|
-
"name": "@react-native-
|
|
211
|
-
"version": "
|
|
212
|
-
"resolved": "../../node_modules/@react-native-
|
|
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-
|
|
219
|
-
"name": "@react-native-
|
|
220
|
-
"version": "
|
|
221
|
-
"resolved": "../../node_modules/@react-native-
|
|
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-
|
|
228
|
-
"name": "@react-native-
|
|
229
|
-
"version": "
|
|
230
|
-
"resolved": "../../node_modules/@react-native-
|
|
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-
|
|
237
|
-
"name": "@react-native-
|
|
238
|
-
"version": "
|
|
239
|
-
"resolved": "../../node_modules/@react-native-
|
|
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
|
|
260
|
+
"@rnoh/react-native-openharmony": "file:../react_native_openharmony.har"
|
|
243
261
|
}
|
|
244
262
|
},
|
|
245
|
-
"@react-native-
|
|
246
|
-
"name": "@react-native-
|
|
247
|
-
"version": "
|
|
248
|
-
"resolved": "../../node_modules/@react-native-
|
|
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-
|
|
255
|
-
"name": "@react-native-
|
|
256
|
-
"version": "
|
|
257
|
-
"resolved": "../../node_modules/@react-native-
|
|
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-
|
|
264
|
-
"name": "@react-native-
|
|
265
|
-
"version": "
|
|
266
|
-
"resolved": "../../node_modules/@react-native-
|
|
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-
|
|
273
|
-
"name": "@react-native-
|
|
274
|
-
"version": "
|
|
275
|
-
"resolved": "../../node_modules/@react-native-
|
|
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-
|
|
282
|
-
"name": "@react-native-
|
|
283
|
-
"version": "
|
|
284
|
-
"resolved": "../../node_modules/@react-native-
|
|
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": "
|
|
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-
|
|
291
|
-
"name": "@react-native-
|
|
292
|
-
"version": "
|
|
293
|
-
"resolved": "../../node_modules/@react-native-
|
|
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
|
|
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-
|
|
300
|
-
"name": "@react-native-
|
|
301
|
-
"version": "
|
|
302
|
-
"resolved": "../../node_modules/@react-native-
|
|
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
|
|
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-
|
|
309
|
-
"name": "@react-native-
|
|
310
|
-
"version": "
|
|
311
|
-
"resolved": "../../node_modules/@react-native-
|
|
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": "
|
|
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/
|
|
327
|
-
"name": "@react-native-ohos/
|
|
328
|
-
"version": "
|
|
329
|
-
"resolved": "../../node_modules/@react-native-ohos/
|
|
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": "
|
|
341
|
+
"@rnoh/react-native-openharmony": "0.77.22",
|
|
342
|
+
"@ohos/mp4parser": "^2.0.6"
|
|
333
343
|
}
|
|
334
344
|
},
|
|
335
|
-
"@react-native-ohos/react-native-
|
|
336
|
-
"name": "@react-native-ohos/react-native-
|
|
337
|
-
"version": "
|
|
338
|
-
"resolved": "../../node_modules/@react-native-ohos/react-native-
|
|
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": "
|
|
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.
|
|
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
|
-
"@
|
|
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.
|
|
359
|
-
"integrity": "sha512-
|
|
360
|
-
"resolved": "https://ohpm.openharmony.cn/ohpm/@umeng/analytics/-/analytics-1.2.
|
|
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.
|
|
373
|
+
"@umeng/apm@1.4.1": {
|
|
364
374
|
"name": "@umeng/apm",
|
|
365
|
-
"version": "1.
|
|
366
|
-
"integrity": "sha512-
|
|
367
|
-
"resolved": "https://ohpm.openharmony.cn/ohpm/@umeng/apm/-/apm-1.
|
|
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.
|
|
380
|
+
"@umeng/common@1.2.0": {
|
|
371
381
|
"name": "@umeng/common",
|
|
372
|
-
"version": "1.
|
|
373
|
-
"integrity": "sha512
|
|
374
|
-
"resolved": "https://ohpm.openharmony.cn/ohpm/@umeng/common/-/common-1.
|
|
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
|
-
"
|
|
388
|
-
"name": "
|
|
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
|
-
"
|
|
412
|
-
"name": "
|
|
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
|
-
"
|
|
419
|
-
"
|
|
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
|
-
"
|
|
433
|
-
"name": "
|
|
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
|
-
"
|
|
440
|
-
"
|
|
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
|
-
"
|
|
444
|
-
"name": "
|
|
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
|
-
"
|
|
455
|
-
"name": "
|
|
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
|
-
"
|
|
466
|
-
"name": "
|
|
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
|
-
"
|
|
475
|
-
"name": "
|
|
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.
|
|
482
|
-
"
|
|
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
|
}
|