Compare commits
1 Commits
dependabot
...
feat/carpl
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
da9653cfe8 |
@@ -1,48 +0,0 @@
|
|||||||
import UIKit
|
|
||||||
import React
|
|
||||||
import React_RCTAppDelegate
|
|
||||||
import ReactAppDependencyProvider
|
|
||||||
|
|
||||||
@main
|
|
||||||
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
||||||
var window: UIWindow?
|
|
||||||
|
|
||||||
var reactNativeDelegate: ReactNativeDelegate?
|
|
||||||
var reactNativeFactory: RCTReactNativeFactory?
|
|
||||||
|
|
||||||
func application(
|
|
||||||
_ application: UIApplication,
|
|
||||||
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil
|
|
||||||
) -> Bool {
|
|
||||||
let delegate = ReactNativeDelegate()
|
|
||||||
let factory = RCTReactNativeFactory(delegate: delegate)
|
|
||||||
delegate.dependencyProvider = RCTAppDependencyProvider()
|
|
||||||
|
|
||||||
reactNativeDelegate = delegate
|
|
||||||
reactNativeFactory = factory
|
|
||||||
|
|
||||||
window = UIWindow(frame: UIScreen.main.bounds)
|
|
||||||
|
|
||||||
factory.startReactNative(
|
|
||||||
withModuleName: "Fintunes",
|
|
||||||
in: window,
|
|
||||||
launchOptions: launchOptions
|
|
||||||
)
|
|
||||||
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ReactNativeDelegate: RCTDefaultReactNativeFactoryDelegate {
|
|
||||||
override func sourceURL(for bridge: RCTBridge) -> URL? {
|
|
||||||
self.bundleURL()
|
|
||||||
}
|
|
||||||
|
|
||||||
override func bundleURL() -> URL? {
|
|
||||||
#if DEBUG
|
|
||||||
RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: "index")
|
|
||||||
#else
|
|
||||||
Bundle.main.url(forResource: "main", withExtension: "jsbundle")
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -13,7 +13,9 @@
|
|||||||
4C04FC6E055249ABB204D3BC /* Inter-VariableFont_slnt,wght.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4B4A0465FF364579B28CF5D7 /* Inter-VariableFont_slnt,wght.ttf */; };
|
4C04FC6E055249ABB204D3BC /* Inter-VariableFont_slnt,wght.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4B4A0465FF364579B28CF5D7 /* Inter-VariableFont_slnt,wght.ttf */; };
|
||||||
AB393FCA2857CC8400773469 /* SnapshotHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB393FC92857CC8400773469 /* SnapshotHelper.swift */; };
|
AB393FCA2857CC8400773469 /* SnapshotHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB393FC92857CC8400773469 /* SnapshotHelper.swift */; };
|
||||||
AB4A8DFE2857C8DA005A1ED0 /* FintunesUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB4A8DFD2857C8DA005A1ED0 /* FintunesUITests.swift */; };
|
AB4A8DFE2857C8DA005A1ED0 /* FintunesUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB4A8DFD2857C8DA005A1ED0 /* FintunesUITests.swift */; };
|
||||||
AB7AA5F92DC8E5D600578CAC /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB7AA5F82DC8E5D600578CAC /* AppDelegate.swift */; };
|
ABB40BB92DE211A6002112FC /* PhoneSceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABB40BB82DE211A6002112FC /* PhoneSceneDelegate.swift */; };
|
||||||
|
ABB40BBA2DE211A6002112FC /* CarSceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABB40BB72DE211A6002112FC /* CarSceneDelegate.swift */; };
|
||||||
|
ABB40BBC2DE2137E002112FC /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABB40BBB2DE2137E002112FC /* AppDelegate.swift */; };
|
||||||
FA01635F2599C28FC19F2EC3 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 3896494129CBC30258D9BB1C /* PrivacyInfo.xcprivacy */; };
|
FA01635F2599C28FC19F2EC3 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 3896494129CBC30258D9BB1C /* PrivacyInfo.xcprivacy */; };
|
||||||
/* End PBXBuildFile section */
|
/* End PBXBuildFile section */
|
||||||
|
|
||||||
@@ -40,7 +42,10 @@
|
|||||||
AB393FC92857CC8400773469 /* SnapshotHelper.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SnapshotHelper.swift; sourceTree = "<group>"; };
|
AB393FC92857CC8400773469 /* SnapshotHelper.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SnapshotHelper.swift; sourceTree = "<group>"; };
|
||||||
AB4A8DFB2857C8DA005A1ED0 /* FintunesUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FintunesUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
AB4A8DFB2857C8DA005A1ED0 /* FintunesUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FintunesUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
AB4A8DFD2857C8DA005A1ED0 /* FintunesUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FintunesUITests.swift; sourceTree = "<group>"; };
|
AB4A8DFD2857C8DA005A1ED0 /* FintunesUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FintunesUITests.swift; sourceTree = "<group>"; };
|
||||||
AB7AA5F82DC8E5D600578CAC /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
ABB40BB42DE20F50002112FC /* Fintunes-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "Fintunes-Bridging-Header.h"; path = "Fintunes/Fintunes-Bridging-Header.h"; sourceTree = "<group>"; };
|
||||||
|
ABB40BB72DE211A6002112FC /* CarSceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = CarSceneDelegate.swift; path = Fintunes/CarSceneDelegate.swift; sourceTree = "<group>"; };
|
||||||
|
ABB40BB82DE211A6002112FC /* PhoneSceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = PhoneSceneDelegate.swift; path = Fintunes/PhoneSceneDelegate.swift; sourceTree = "<group>"; };
|
||||||
|
ABB40BBB2DE2137E002112FC /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = Fintunes/AppDelegate.swift; sourceTree = "<group>"; };
|
||||||
E22EC545298DA9F9017776C0 /* libPods-Fintunes.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Fintunes.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
E22EC545298DA9F9017776C0 /* libPods-Fintunes.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Fintunes.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
||||||
ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
|
ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
|
||||||
@@ -68,7 +73,10 @@
|
|||||||
13B07FAE1A68108700A75B9A /* Fintunes */ = {
|
13B07FAE1A68108700A75B9A /* Fintunes */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
AB7AA5F82DC8E5D600578CAC /* AppDelegate.swift */,
|
ABB40BBB2DE2137E002112FC /* AppDelegate.swift */,
|
||||||
|
ABB40BB72DE211A6002112FC /* CarSceneDelegate.swift */,
|
||||||
|
ABB40BB82DE211A6002112FC /* PhoneSceneDelegate.swift */,
|
||||||
|
ABB40BB42DE20F50002112FC /* Fintunes-Bridging-Header.h */,
|
||||||
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
||||||
13B07FB61A68108700A75B9A /* Info.plist */,
|
13B07FB61A68108700A75B9A /* Info.plist */,
|
||||||
13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
|
13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
|
||||||
@@ -348,7 +356,9 @@
|
|||||||
isa = PBXSourcesBuildPhase;
|
isa = PBXSourcesBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
AB7AA5F92DC8E5D600578CAC /* AppDelegate.swift in Sources */,
|
ABB40BBC2DE2137E002112FC /* AppDelegate.swift in Sources */,
|
||||||
|
ABB40BB92DE211A6002112FC /* PhoneSceneDelegate.swift in Sources */,
|
||||||
|
ABB40BBA2DE211A6002112FC /* CarSceneDelegate.swift in Sources */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
@@ -414,6 +424,7 @@
|
|||||||
PRODUCT_BUNDLE_IDENTIFIER = nl.moeilijkedingen.jellyfinaudioplayer;
|
PRODUCT_BUNDLE_IDENTIFIER = nl.moeilijkedingen.jellyfinaudioplayer;
|
||||||
PRODUCT_NAME = Fintunes;
|
PRODUCT_NAME = Fintunes;
|
||||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||||
|
SWIFT_OBJC_BRIDGING_HEADER = "Fintunes/Fintunes-Bridging-Header.h";
|
||||||
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
||||||
SWIFT_VERSION = 5.0;
|
SWIFT_VERSION = 5.0;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
@@ -449,6 +460,7 @@
|
|||||||
PROVISIONING_PROFILE = "915c5213-22f6-4f9d-8065-2a06300f9bfb";
|
PROVISIONING_PROFILE = "915c5213-22f6-4f9d-8065-2a06300f9bfb";
|
||||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||||
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "nl.moeilijkedingen.jellyfinaudioplayer AppStore";
|
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "nl.moeilijkedingen.jellyfinaudioplayer AppStore";
|
||||||
|
SWIFT_OBJC_BRIDGING_HEADER = "Fintunes/Fintunes-Bridging-Header.h";
|
||||||
SWIFT_VERSION = 5.0;
|
SWIFT_VERSION = 5.0;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,19 +1,20 @@
|
|||||||
import UIKit
|
import UIKit
|
||||||
|
import CarPlay
|
||||||
import React
|
import React
|
||||||
import React_RCTAppDelegate
|
import React_RCTAppDelegate
|
||||||
import ReactAppDependencyProvider
|
import ReactAppDependencyProvider
|
||||||
|
|
||||||
|
|
||||||
@main
|
@main
|
||||||
class AppDelegate: UIResponder, UIApplicationDelegate {
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
||||||
|
|
||||||
var window: UIWindow?
|
var window: UIWindow?
|
||||||
|
|
||||||
var reactNativeDelegate: ReactNativeDelegate?
|
var reactNativeDelegate: ReactNativeDelegate?
|
||||||
var reactNativeFactory: RCTReactNativeFactory?
|
var reactNativeFactory: RCTReactNativeFactory?
|
||||||
|
|
||||||
func application(
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
|
||||||
_ application: UIApplication,
|
|
||||||
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil
|
|
||||||
) -> Bool {
|
|
||||||
let delegate = ReactNativeDelegate()
|
let delegate = ReactNativeDelegate()
|
||||||
let factory = RCTReactNativeFactory(delegate: delegate)
|
let factory = RCTReactNativeFactory(delegate: delegate)
|
||||||
delegate.dependencyProvider = RCTAppDependencyProvider()
|
delegate.dependencyProvider = RCTAppDependencyProvider()
|
||||||
@@ -31,6 +32,21 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
|
|||||||
|
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
|
||||||
|
if (connectingSceneSession.role == UISceneSession.Role.carTemplateApplication) {
|
||||||
|
let scene = UISceneConfiguration(name: "CarPlay", sessionRole: connectingSceneSession.role)
|
||||||
|
scene.delegateClass = CarSceneDelegate.self
|
||||||
|
return scene
|
||||||
|
} else {
|
||||||
|
let scene = UISceneConfiguration(name: "Phone", sessionRole: connectingSceneSession.role)
|
||||||
|
scene.delegateClass = PhoneSceneDelegate.self
|
||||||
|
return scene
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class ReactNativeDelegate: RCTDefaultReactNativeFactoryDelegate {
|
class ReactNativeDelegate: RCTDefaultReactNativeFactoryDelegate {
|
||||||
|
|||||||
17
ios/Fintunes/CarSceneDelegate.swift
Normal file
17
ios/Fintunes/CarSceneDelegate.swift
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
import CarPlay
|
||||||
|
|
||||||
|
class CarSceneDelegate: UIResponder, CPTemplateApplicationSceneDelegate {
|
||||||
|
func templateApplicationScene(_ templateApplicationScene: CPTemplateApplicationScene, didConnect interfaceController: CPInterfaceController) {
|
||||||
|
print("CarPlay: Scene did connect")
|
||||||
|
print("CarPlay: About to connect to RNCarPlay")
|
||||||
|
// Dispatch connect to RNCarPlay
|
||||||
|
RNCarPlay.connect(with: interfaceController, window: templateApplicationScene.carWindow)
|
||||||
|
print("CarPlay: RNCarPlay.connect called")
|
||||||
|
}
|
||||||
|
|
||||||
|
func templateApplicationScene(_ templateApplicationScene: CPTemplateApplicationScene, didDisconnect interfaceController: CPInterfaceController) {
|
||||||
|
print("CarPlay: Scene did disconnect")
|
||||||
|
// Dispatch disconnect to RNCarPlay
|
||||||
|
RNCarPlay.disconnect()
|
||||||
|
}
|
||||||
|
}
|
||||||
1
ios/Fintunes/Fintunes-Bridging-Header.h
Normal file
1
ios/Fintunes/Fintunes-Bridging-Header.h
Normal file
@@ -0,0 +1 @@
|
|||||||
|
#import "RNCarPlay.h"
|
||||||
@@ -60,5 +60,41 @@
|
|||||||
<true/>
|
<true/>
|
||||||
<key>UIViewControllerBasedStatusBarAppearance</key>
|
<key>UIViewControllerBasedStatusBarAppearance</key>
|
||||||
<false/>
|
<false/>
|
||||||
|
<key>UIApplicationSceneManifest</key>
|
||||||
|
<dict>
|
||||||
|
<key>UIApplicationSupportsMultipleScenes</key>
|
||||||
|
<true/>
|
||||||
|
<key>UISceneConfigurations</key>
|
||||||
|
<dict>
|
||||||
|
<key>CPTemplateApplicationSceneSessionRoleApplication</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>UISceneClassName</key>
|
||||||
|
<string>CPTemplateApplicationScene</string>
|
||||||
|
<key>UISceneConfigurationName</key>
|
||||||
|
<string>CarPlay</string>
|
||||||
|
<key>UISceneDelegateClassName</key>
|
||||||
|
<string>$(PRODUCT_MODULE_NAME).CarSceneDelegate</string>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>UIWindowSceneSessionRoleApplication</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>UISceneClassName</key>
|
||||||
|
<string>UIWindowScene</string>
|
||||||
|
<key>UISceneConfigurationName</key>
|
||||||
|
<string>Phone</string>
|
||||||
|
<key>UISceneDelegateClassName</key>
|
||||||
|
<string>$(PRODUCT_MODULE_NAME).PhoneSceneDelegate</string>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>CPApplicationIdentifier</key>
|
||||||
|
<string>nl.moeilijkedingen.fintunes.carplay</string>
|
||||||
|
<key>CPApplicationName</key>
|
||||||
|
<string>Fintunes</string>
|
||||||
|
<key>CPApplicationCategory</key>
|
||||||
|
<string>CPApplicationCategoryAudio</string>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|||||||
24
ios/Fintunes/PhoneSceneDelegate.swift
Normal file
24
ios/Fintunes/PhoneSceneDelegate.swift
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
import UIKit
|
||||||
|
import React
|
||||||
|
|
||||||
|
class PhoneSceneDelegate: UIResponder, UIWindowSceneDelegate {
|
||||||
|
var window: UIWindow?
|
||||||
|
|
||||||
|
func scene(
|
||||||
|
_ scene: UIScene, willConnectTo session: UISceneSession,
|
||||||
|
options connectionOptions: UIScene.ConnectionOptions
|
||||||
|
) {
|
||||||
|
guard let appDelegate = UIApplication.shared.delegate as? AppDelegate else { return }
|
||||||
|
guard let windowScene = scene as? UIWindowScene else { return }
|
||||||
|
guard let appRootView = appDelegate.window?.rootViewController?.view else { return }
|
||||||
|
|
||||||
|
let containerViewController = UIViewController()
|
||||||
|
containerViewController.view.addSubview(appRootView)
|
||||||
|
appRootView.frame = containerViewController.view.bounds
|
||||||
|
|
||||||
|
let window = UIWindow(windowScene: windowScene)
|
||||||
|
window.rootViewController = containerViewController
|
||||||
|
self.window = window
|
||||||
|
window.makeKeyAndVisible()
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1399,6 +1399,8 @@ PODS:
|
|||||||
- ReactCommon/turbomodule/bridging
|
- ReactCommon/turbomodule/bridging
|
||||||
- ReactCommon/turbomodule/core
|
- ReactCommon/turbomodule/core
|
||||||
- Yoga
|
- Yoga
|
||||||
|
- react-native-carplay (2.4.1-beta.0):
|
||||||
|
- React
|
||||||
- react-native-netinfo (11.4.1):
|
- react-native-netinfo (11.4.1):
|
||||||
- React-Core
|
- React-Core
|
||||||
- react-native-safe-area-context (5.4.0):
|
- react-native-safe-area-context (5.4.0):
|
||||||
@@ -2310,6 +2312,7 @@ DEPENDENCIES:
|
|||||||
- React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
|
- React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
|
||||||
- react-native-accessibility-settings (from `../node_modules/react-native-accessibility-settings`)
|
- react-native-accessibility-settings (from `../node_modules/react-native-accessibility-settings`)
|
||||||
- "react-native-blur (from `../node_modules/@react-native-community/blur`)"
|
- "react-native-blur (from `../node_modules/@react-native-community/blur`)"
|
||||||
|
- react-native-carplay (from `../node_modules/react-native-carplay`)
|
||||||
- "react-native-netinfo (from `../node_modules/@react-native-community/netinfo`)"
|
- "react-native-netinfo (from `../node_modules/@react-native-community/netinfo`)"
|
||||||
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
|
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
|
||||||
- "react-native-skia (from `../node_modules/@shopify/react-native-skia`)"
|
- "react-native-skia (from `../node_modules/@shopify/react-native-skia`)"
|
||||||
@@ -2455,6 +2458,8 @@ EXTERNAL SOURCES:
|
|||||||
:path: "../node_modules/react-native-accessibility-settings"
|
:path: "../node_modules/react-native-accessibility-settings"
|
||||||
react-native-blur:
|
react-native-blur:
|
||||||
:path: "../node_modules/@react-native-community/blur"
|
:path: "../node_modules/@react-native-community/blur"
|
||||||
|
react-native-carplay:
|
||||||
|
:path: "../node_modules/react-native-carplay"
|
||||||
react-native-netinfo:
|
react-native-netinfo:
|
||||||
:path: "../node_modules/@react-native-community/netinfo"
|
:path: "../node_modules/@react-native-community/netinfo"
|
||||||
react-native-safe-area-context:
|
react-native-safe-area-context:
|
||||||
@@ -2597,6 +2602,7 @@ SPEC CHECKSUMS:
|
|||||||
React-microtasksnativemodule: 054f34e9b82f02bd40f09cebd4083828b5b2beb6
|
React-microtasksnativemodule: 054f34e9b82f02bd40f09cebd4083828b5b2beb6
|
||||||
react-native-accessibility-settings: 87f2276eb146ed5656bef2073e0c077e94a83f88
|
react-native-accessibility-settings: 87f2276eb146ed5656bef2073e0c077e94a83f88
|
||||||
react-native-blur: 06d0f9906ecd6cde3a42de16c6cd829a2bf0710c
|
react-native-blur: 06d0f9906ecd6cde3a42de16c6cd829a2bf0710c
|
||||||
|
react-native-carplay: 8f388f6f73e5e0f73ed154ad8794371343ee20c0
|
||||||
react-native-netinfo: cec9c4e86083cb5b6aba0e0711f563e2fbbff187
|
react-native-netinfo: cec9c4e86083cb5b6aba0e0711f563e2fbbff187
|
||||||
react-native-safe-area-context: 562163222d999b79a51577eda2ea8ad2c32b4d06
|
react-native-safe-area-context: 562163222d999b79a51577eda2ea8ad2c32b4d06
|
||||||
react-native-skia: 2f725d0747756d57f0a51417c91e33bc42272c56
|
react-native-skia: 2f725d0747756d57f0a51417c91e33bc42272c56
|
||||||
@@ -2654,4 +2660,4 @@ SPEC CHECKSUMS:
|
|||||||
|
|
||||||
PODFILE CHECKSUM: eb809ce42bd87a82dedb7b209e4bec32e9be4528
|
PODFILE CHECKSUM: eb809ce42bd87a82dedb7b209e4bec32e9be4528
|
||||||
|
|
||||||
COCOAPODS: 1.15.2
|
COCOAPODS: 1.16.2
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
"react-airplay": "^1.2.0",
|
"react-airplay": "^1.2.0",
|
||||||
"react-native": "^0.79.2",
|
"react-native": "^0.79.2",
|
||||||
"react-native-accessibility-settings": "^0.1.2",
|
"react-native-accessibility-settings": "^0.1.2",
|
||||||
|
"react-native-carplay": "2.4.1-beta.0",
|
||||||
"react-native-collapsible": "^1.6.2",
|
"react-native-collapsible": "^1.6.2",
|
||||||
"react-native-dotenv": "^3.4.11",
|
"react-native-dotenv": "^3.4.11",
|
||||||
"react-native-fs": "^2.20.0",
|
"react-native-fs": "^2.20.0",
|
||||||
|
|||||||
416
pnpm-lock.yaml
generated
416
pnpm-lock.yaml
generated
@@ -88,6 +88,9 @@ importers:
|
|||||||
react-native-accessibility-settings:
|
react-native-accessibility-settings:
|
||||||
specifier: ^0.1.2
|
specifier: ^0.1.2
|
||||||
version: 0.1.2(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0)
|
version: 0.1.2(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0)
|
||||||
|
react-native-carplay:
|
||||||
|
specifier: 2.4.1-beta.0
|
||||||
|
version: 2.4.1-beta.0(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0)
|
||||||
react-native-collapsible:
|
react-native-collapsible:
|
||||||
specifier: ^1.6.2
|
specifier: ^1.6.2
|
||||||
version: 1.6.2(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0)
|
version: 1.6.2(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0)
|
||||||
@@ -235,42 +238,22 @@ packages:
|
|||||||
resolution: {integrity: sha512-Q+E+rd/yBzNQhXkG+zQnF58e4zoZfBedaxwzPmicKsiK3nt8iJYrSrDbjwFFDGC4f+rPafqRaPH6TsDoSvMf7A==}
|
resolution: {integrity: sha512-Q+E+rd/yBzNQhXkG+zQnF58e4zoZfBedaxwzPmicKsiK3nt8iJYrSrDbjwFFDGC4f+rPafqRaPH6TsDoSvMf7A==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
|
|
||||||
'@babel/compat-data@7.27.5':
|
|
||||||
resolution: {integrity: sha512-KiRAp/VoJaWkkte84TvUd9qjdbZAdiqyvMxrGl1N6vzFogKmaLgoM3L1kgtLicp2HP5fBJS8JrZKLVIZGVJAVg==}
|
|
||||||
engines: {node: '>=6.9.0'}
|
|
||||||
|
|
||||||
'@babel/core@7.27.1':
|
'@babel/core@7.27.1':
|
||||||
resolution: {integrity: sha512-IaaGWsQqfsQWVLqMn9OB92MNN7zukfVA4s7KKAI0KfrrDsZ0yhi5uV4baBuLuN7n3vsZpwP8asPPcVwApxvjBQ==}
|
resolution: {integrity: sha512-IaaGWsQqfsQWVLqMn9OB92MNN7zukfVA4s7KKAI0KfrrDsZ0yhi5uV4baBuLuN7n3vsZpwP8asPPcVwApxvjBQ==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
|
|
||||||
'@babel/core@7.27.4':
|
|
||||||
resolution: {integrity: sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g==}
|
|
||||||
engines: {node: '>=6.9.0'}
|
|
||||||
|
|
||||||
'@babel/generator@7.27.1':
|
'@babel/generator@7.27.1':
|
||||||
resolution: {integrity: sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==}
|
resolution: {integrity: sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
|
|
||||||
'@babel/generator@7.27.5':
|
|
||||||
resolution: {integrity: sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==}
|
|
||||||
engines: {node: '>=6.9.0'}
|
|
||||||
|
|
||||||
'@babel/helper-annotate-as-pure@7.27.1':
|
'@babel/helper-annotate-as-pure@7.27.1':
|
||||||
resolution: {integrity: sha512-WnuuDILl9oOBbKnb4L+DyODx7iC47XfzmNCpTttFsSp6hTG7XZxu60+4IO+2/hPfcGOoKbFiwoI/+zwARbNQow==}
|
resolution: {integrity: sha512-WnuuDILl9oOBbKnb4L+DyODx7iC47XfzmNCpTttFsSp6hTG7XZxu60+4IO+2/hPfcGOoKbFiwoI/+zwARbNQow==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
|
|
||||||
'@babel/helper-annotate-as-pure@7.27.3':
|
|
||||||
resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
|
|
||||||
engines: {node: '>=6.9.0'}
|
|
||||||
|
|
||||||
'@babel/helper-compilation-targets@7.27.1':
|
'@babel/helper-compilation-targets@7.27.1':
|
||||||
resolution: {integrity: sha512-2YaDd/Rd9E598B5+WIc8wJPmWETiiJXFYVE60oX8FDohv7rAUU3CQj+A1MgeEmcsk2+dQuEjIe/GDvig0SqL4g==}
|
resolution: {integrity: sha512-2YaDd/Rd9E598B5+WIc8wJPmWETiiJXFYVE60oX8FDohv7rAUU3CQj+A1MgeEmcsk2+dQuEjIe/GDvig0SqL4g==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
|
|
||||||
'@babel/helper-compilation-targets@7.27.2':
|
|
||||||
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
|
|
||||||
engines: {node: '>=6.9.0'}
|
|
||||||
|
|
||||||
'@babel/helper-create-class-features-plugin@7.27.1':
|
'@babel/helper-create-class-features-plugin@7.27.1':
|
||||||
resolution: {integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==}
|
resolution: {integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
@@ -306,12 +289,6 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@babel/core': ^7.0.0
|
'@babel/core': ^7.0.0
|
||||||
|
|
||||||
'@babel/helper-module-transforms@7.27.3':
|
|
||||||
resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==}
|
|
||||||
engines: {node: '>=6.9.0'}
|
|
||||||
peerDependencies:
|
|
||||||
'@babel/core': ^7.0.0
|
|
||||||
|
|
||||||
'@babel/helper-optimise-call-expression@7.27.1':
|
'@babel/helper-optimise-call-expression@7.27.1':
|
||||||
resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
|
resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
@@ -356,10 +333,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-FCvFTm0sWV8Fxhpp2McP5/W53GPllQ9QeQ7SiqGWjMf/LVG07lFa5+pgK05IRhVwtvafT22KF+ZSnM9I545CvQ==}
|
resolution: {integrity: sha512-FCvFTm0sWV8Fxhpp2McP5/W53GPllQ9QeQ7SiqGWjMf/LVG07lFa5+pgK05IRhVwtvafT22KF+ZSnM9I545CvQ==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
|
|
||||||
'@babel/helpers@7.27.6':
|
|
||||||
resolution: {integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==}
|
|
||||||
engines: {node: '>=6.9.0'}
|
|
||||||
|
|
||||||
'@babel/highlight@7.25.9':
|
'@babel/highlight@7.25.9':
|
||||||
resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==}
|
resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
@@ -369,11 +342,6 @@ packages:
|
|||||||
engines: {node: '>=6.0.0'}
|
engines: {node: '>=6.0.0'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
'@babel/parser@7.27.5':
|
|
||||||
resolution: {integrity: sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg==}
|
|
||||||
engines: {node: '>=6.0.0'}
|
|
||||||
hasBin: true
|
|
||||||
|
|
||||||
'@babel/plugin-proposal-async-generator-functions@7.20.7':
|
'@babel/plugin-proposal-async-generator-functions@7.20.7':
|
||||||
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
|
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
@@ -603,12 +571,6 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@babel/core': ^7.0.0-0
|
'@babel/core': ^7.0.0-0
|
||||||
|
|
||||||
'@babel/plugin-transform-destructuring@7.27.3':
|
|
||||||
resolution: {integrity: sha512-s4Jrok82JpiaIprtY2nHsYmrThKvvwgHwjgd7UMiYhZaN0asdXNLr0y+NjTfkA7SyQE5i2Fb7eawUOZmLvyqOA==}
|
|
||||||
engines: {node: '>=6.9.0'}
|
|
||||||
peerDependencies:
|
|
||||||
'@babel/core': ^7.0.0-0
|
|
||||||
|
|
||||||
'@babel/plugin-transform-export-namespace-from@7.27.1':
|
'@babel/plugin-transform-export-namespace-from@7.27.1':
|
||||||
resolution: {integrity: sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==}
|
resolution: {integrity: sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
@@ -681,12 +643,6 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@babel/core': ^7.0.0-0
|
'@babel/core': ^7.0.0-0
|
||||||
|
|
||||||
'@babel/plugin-transform-object-rest-spread@7.27.3':
|
|
||||||
resolution: {integrity: sha512-7ZZtznF9g4l2JCImCo5LNKFHB5eXnN39lLtLY5Tg+VkR0jwOt7TBciMckuiQIOIW7L5tkQOCh3bVGYeXgMx52Q==}
|
|
||||||
engines: {node: '>=6.9.0'}
|
|
||||||
peerDependencies:
|
|
||||||
'@babel/core': ^7.0.0-0
|
|
||||||
|
|
||||||
'@babel/plugin-transform-object-super@7.27.1':
|
'@babel/plugin-transform-object-super@7.27.1':
|
||||||
resolution: {integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==}
|
resolution: {integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
@@ -777,12 +733,6 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@babel/core': ^7.0.0-0
|
'@babel/core': ^7.0.0-0
|
||||||
|
|
||||||
'@babel/plugin-transform-runtime@7.27.4':
|
|
||||||
resolution: {integrity: sha512-D68nR5zxU64EUzV8i7T3R5XP0Xhrou/amNnddsRQssx6GrTLdZl1rLxyjtVZBd+v/NVX4AbTPOB5aU8thAZV1A==}
|
|
||||||
engines: {node: '>=6.9.0'}
|
|
||||||
peerDependencies:
|
|
||||||
'@babel/core': ^7.0.0-0
|
|
||||||
|
|
||||||
'@babel/plugin-transform-shorthand-properties@7.27.1':
|
'@babel/plugin-transform-shorthand-properties@7.27.1':
|
||||||
resolution: {integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==}
|
resolution: {integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
@@ -835,34 +785,18 @@ packages:
|
|||||||
resolution: {integrity: sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==}
|
resolution: {integrity: sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
|
|
||||||
'@babel/runtime@7.27.6':
|
|
||||||
resolution: {integrity: sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==}
|
|
||||||
engines: {node: '>=6.9.0'}
|
|
||||||
|
|
||||||
'@babel/template@7.27.1':
|
'@babel/template@7.27.1':
|
||||||
resolution: {integrity: sha512-Fyo3ghWMqkHHpHQCoBs2VnYjR4iWFFjguTDEqA5WgZDOrFesVjMhMM2FSqTKSoUSDO1VQtavj8NFpdRBEvJTtg==}
|
resolution: {integrity: sha512-Fyo3ghWMqkHHpHQCoBs2VnYjR4iWFFjguTDEqA5WgZDOrFesVjMhMM2FSqTKSoUSDO1VQtavj8NFpdRBEvJTtg==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
|
|
||||||
'@babel/template@7.27.2':
|
|
||||||
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
|
|
||||||
engines: {node: '>=6.9.0'}
|
|
||||||
|
|
||||||
'@babel/traverse@7.27.1':
|
'@babel/traverse@7.27.1':
|
||||||
resolution: {integrity: sha512-ZCYtZciz1IWJB4U61UPu4KEaqyfj+r5T1Q5mqPo+IBpcG9kHv30Z0aD8LXPgC1trYa6rK0orRyAhqUgk4MjmEg==}
|
resolution: {integrity: sha512-ZCYtZciz1IWJB4U61UPu4KEaqyfj+r5T1Q5mqPo+IBpcG9kHv30Z0aD8LXPgC1trYa6rK0orRyAhqUgk4MjmEg==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
|
|
||||||
'@babel/traverse@7.27.4':
|
|
||||||
resolution: {integrity: sha512-oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA==}
|
|
||||||
engines: {node: '>=6.9.0'}
|
|
||||||
|
|
||||||
'@babel/types@7.27.1':
|
'@babel/types@7.27.1':
|
||||||
resolution: {integrity: sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==}
|
resolution: {integrity: sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
|
|
||||||
'@babel/types@7.27.6':
|
|
||||||
resolution: {integrity: sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q==}
|
|
||||||
engines: {node: '>=6.9.0'}
|
|
||||||
|
|
||||||
'@d11/react-native-fast-image@8.9.2':
|
'@d11/react-native-fast-image@8.9.2':
|
||||||
resolution: {integrity: sha512-7d0O5mA17SCbIAYq9D0WxDlS3HXf5v9vg9ltphDfP/3R57sBEf6/wby/sHkOmrQGwvgUlz2oSo5Ld8hgocLJeQ==}
|
resolution: {integrity: sha512-7d0O5mA17SCbIAYq9D0WxDlS3HXf5v9vg9ltphDfP/3R57sBEf6/wby/sHkOmrQGwvgUlz2oSo5Ld8hgocLJeQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -910,11 +844,11 @@ packages:
|
|||||||
'@expo/config-plugins@10.0.2':
|
'@expo/config-plugins@10.0.2':
|
||||||
resolution: {integrity: sha512-TzUn3pPdpwCS0yYaSlZOClgDmCX8N4I2lfgitX5oStqmvpPtB+vqtdyqsVM02fQ2tlJIAqwBW+NHaHqqy8Jv7g==}
|
resolution: {integrity: sha512-TzUn3pPdpwCS0yYaSlZOClgDmCX8N4I2lfgitX5oStqmvpPtB+vqtdyqsVM02fQ2tlJIAqwBW+NHaHqqy8Jv7g==}
|
||||||
|
|
||||||
'@expo/config-types@53.0.4':
|
'@expo/config-types@53.0.3':
|
||||||
resolution: {integrity: sha512-0s+9vFx83WIToEr0Iwy4CcmiUXa5BgwBmEjylBB2eojX5XAMm9mJvw9KpjAb8m7zq2G0Q6bRbeufkzgbipuNQg==}
|
resolution: {integrity: sha512-V1e6CiM4TXtGxG/W2Msjp/QOx/vikLo5IUGMvEMjgAglBfGYx3PXfqsUb5aZDt6kqA3bDDwFuZoS5vNm/SYwSg==}
|
||||||
|
|
||||||
'@expo/config@11.0.10':
|
'@expo/config@11.0.8':
|
||||||
resolution: {integrity: sha512-8S8Krr/c5lnl0eF03tA2UGY9rGBhZcbWKz2UWw5dpL/+zstwUmog8oyuuC8aRcn7GiTQLlbBkxcMeT8sOGlhbA==}
|
resolution: {integrity: sha512-udLrpW4SvXUwF+ntJ0RzEjRbFoSS7Tr/rMrvhfISHWGbcZ09+c+QkI0O8y1sEBWQDpI/IlC9REPqGm5b7HweDw==}
|
||||||
|
|
||||||
'@expo/devcert@1.2.0':
|
'@expo/devcert@1.2.0':
|
||||||
resolution: {integrity: sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==}
|
resolution: {integrity: sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==}
|
||||||
@@ -945,8 +879,8 @@ packages:
|
|||||||
'@expo/plist@0.3.4':
|
'@expo/plist@0.3.4':
|
||||||
resolution: {integrity: sha512-MhBLaUJNe9FQDDU2xhSNS4SAolr6K2wuyi4+A79vYuXLkAoICsbTwcGEQJN5jPY6D9izO/jsXh5k0h+mIWQMdw==}
|
resolution: {integrity: sha512-MhBLaUJNe9FQDDU2xhSNS4SAolr6K2wuyi4+A79vYuXLkAoICsbTwcGEQJN5jPY6D9izO/jsXh5k0h+mIWQMdw==}
|
||||||
|
|
||||||
'@expo/prebuild-config@9.0.6':
|
'@expo/prebuild-config@9.0.5':
|
||||||
resolution: {integrity: sha512-HDTdlMkTQZ95rd6EpvuLM+xkZV03yGLc38FqI37qKFLJtUN1WnYVaWsuXKoljd1OrVEVsHe6CfqKwaPZ52D56Q==}
|
resolution: {integrity: sha512-oiSVU5ePu9lsOvn5p4xplqjzPlcZHzKYwzuonTa9GCH1GxcOEIBsvMVQiHBXHtqvgV2dztjm34kdXV//+9jtCA==}
|
||||||
|
|
||||||
'@expo/sdk-runtime-versions@1.0.0':
|
'@expo/sdk-runtime-versions@1.0.0':
|
||||||
resolution: {integrity: sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==}
|
resolution: {integrity: sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==}
|
||||||
@@ -1971,9 +1905,6 @@ packages:
|
|||||||
brace-expansion@2.0.1:
|
brace-expansion@2.0.1:
|
||||||
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
|
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
|
||||||
|
|
||||||
brace-expansion@2.0.2:
|
|
||||||
resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
|
|
||||||
|
|
||||||
braces@3.0.3:
|
braces@3.0.3:
|
||||||
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@@ -1983,11 +1914,6 @@ packages:
|
|||||||
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
browserslist@4.25.0:
|
|
||||||
resolution: {integrity: sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA==}
|
|
||||||
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
||||||
hasBin: true
|
|
||||||
|
|
||||||
bser@2.1.1:
|
bser@2.1.1:
|
||||||
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
|
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
|
||||||
|
|
||||||
@@ -2043,9 +1969,6 @@ packages:
|
|||||||
caniuse-lite@1.0.30001717:
|
caniuse-lite@1.0.30001717:
|
||||||
resolution: {integrity: sha512-auPpttCq6BDEG8ZAuHJIplGw6GODhjw+/11e7IjpnYCxZcW/ONgPs0KVBJ0d1bY3e2+7PRe5RCLyP+PfwVgkYw==}
|
resolution: {integrity: sha512-auPpttCq6BDEG8ZAuHJIplGw6GODhjw+/11e7IjpnYCxZcW/ONgPs0KVBJ0d1bY3e2+7PRe5RCLyP+PfwVgkYw==}
|
||||||
|
|
||||||
caniuse-lite@1.0.30001722:
|
|
||||||
resolution: {integrity: sha512-DCQHBBZtiK6JVkAGw7drvAMK0Q0POD/xZvEmDp6baiMMP6QXXk9HpD6mNYBZWhOPG6LvIDb82ITqtWjhDckHCA==}
|
|
||||||
|
|
||||||
canvaskit-wasm@0.40.0:
|
canvaskit-wasm@0.40.0:
|
||||||
resolution: {integrity: sha512-Od2o+ZmoEw9PBdN/yCGvzfu0WVqlufBPEWNG452wY7E9aT8RBE+ChpZF526doOlg7zumO4iCS+RAeht4P0Gbpw==}
|
resolution: {integrity: sha512-Od2o+ZmoEw9PBdN/yCGvzfu0WVqlufBPEWNG452wY7E9aT8RBE+ChpZF526doOlg7zumO4iCS+RAeht4P0Gbpw==}
|
||||||
|
|
||||||
@@ -2278,15 +2201,6 @@ packages:
|
|||||||
supports-color:
|
supports-color:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
debug@4.4.1:
|
|
||||||
resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
|
|
||||||
engines: {node: '>=6.0'}
|
|
||||||
peerDependencies:
|
|
||||||
supports-color: '*'
|
|
||||||
peerDependenciesMeta:
|
|
||||||
supports-color:
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
decamelize@1.2.0:
|
decamelize@1.2.0:
|
||||||
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
|
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
@@ -2387,9 +2301,6 @@ packages:
|
|||||||
electron-to-chromium@1.5.149:
|
electron-to-chromium@1.5.149:
|
||||||
resolution: {integrity: sha512-UyiO82eb9dVOx8YO3ajDf9jz2kKyt98DEITRdeLPstOEuTlLzDA4Gyq5K9he71TQziU5jUVu2OAu5N48HmQiyQ==}
|
resolution: {integrity: sha512-UyiO82eb9dVOx8YO3ajDf9jz2kKyt98DEITRdeLPstOEuTlLzDA4Gyq5K9he71TQziU5jUVu2OAu5N48HmQiyQ==}
|
||||||
|
|
||||||
electron-to-chromium@1.5.166:
|
|
||||||
resolution: {integrity: sha512-QPWqHL0BglzPYyJJ1zSSmwFFL6MFXhbACOCcsCdUMCkzPdS9/OIBVxg516X/Ado2qwAq8k0nJJ7phQPCqiaFAw==}
|
|
||||||
|
|
||||||
emoji-regex@8.0.0:
|
emoji-regex@8.0.0:
|
||||||
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
||||||
|
|
||||||
@@ -2559,14 +2470,14 @@ packages:
|
|||||||
react: '*'
|
react: '*'
|
||||||
react-native: '*'
|
react-native: '*'
|
||||||
|
|
||||||
expo-constants@17.1.6:
|
expo-constants@17.1.5:
|
||||||
resolution: {integrity: sha512-q5mLvJiLtPcaZ7t2diSOlQ2AyxIO8YMVEJsEfI/ExkGj15JrflNQ7CALEW6IF/uNae/76qI/XcjEuuAyjdaCNw==}
|
resolution: {integrity: sha512-9kjfQjVG6RgBQjFOo7LewxuZgTnYufXPuqpF00Ju5q2dAFW9Eh1SyJpFxbt7KoN+Wwu0hcIr/nQ0lPQugkg07Q==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
expo: '*'
|
expo: '*'
|
||||||
react-native: '*'
|
react-native: '*'
|
||||||
|
|
||||||
expo-file-system@18.1.10:
|
expo-file-system@18.1.9:
|
||||||
resolution: {integrity: sha512-SyaWg+HitScLuyEeSG9gMSDT0hIxbM9jiZjSBP9l9zMnwZjmQwsusE6+7qGiddxJzdOhTP4YGUfvEzeeS0YL3Q==}
|
resolution: {integrity: sha512-2i8IpaXpLVSI/dmT6TBfvRkl1+YkbWI07NCsQX1Myh33AF8xaJ4jv3Hz6WK1JArqDagCmrQUB2mW9SYnWYqLHg==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
expo: '*'
|
expo: '*'
|
||||||
react-native: '*'
|
react-native: '*'
|
||||||
@@ -3208,8 +3119,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
|
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
|
||||||
engines: {node: '>=6'}
|
engines: {node: '>=6'}
|
||||||
|
|
||||||
lan-network@0.1.7:
|
lan-network@0.1.5:
|
||||||
resolution: {integrity: sha512-mnIlAEMu4OyEvUNdzco9xpuB9YVcPkQec+QsgycBCtPZvEqWPCDPfbAE4OJMdBBWpZWtpCn1xw9jJYlwjWI5zQ==}
|
resolution: {integrity: sha512-CV3k7l8jW0Z1b+G41tB7JInVyJEKQzh/YPl2v9uXpZMusp0aa+rh3OqG77xWuX7+eVBa8PsdTuMznTAssF4qwg==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
launch-editor@2.10.0:
|
launch-editor@2.10.0:
|
||||||
@@ -3921,6 +3832,17 @@ packages:
|
|||||||
react: '*'
|
react: '*'
|
||||||
react-native: '*'
|
react-native: '*'
|
||||||
|
|
||||||
|
react-native-carplay@2.4.1-beta.0:
|
||||||
|
resolution: {integrity: sha512-tYJymLgJi+0516niv4ApGVC+VgENX/uCYqCX81tewSILWnS6KR7M0A9+bHyNk8xoheFyYGruX7onYxU2U8ykPA==}
|
||||||
|
peerDependencies:
|
||||||
|
react: ^17.0.2 || ^18.0.0
|
||||||
|
react-native: ^0.60.0
|
||||||
|
peerDependenciesMeta:
|
||||||
|
react:
|
||||||
|
optional: true
|
||||||
|
react-native:
|
||||||
|
optional: true
|
||||||
|
|
||||||
react-native-collapsible@1.6.2:
|
react-native-collapsible@1.6.2:
|
||||||
resolution: {integrity: sha512-MCOBVJWqHNjnDaGkvxX997VONmJeebh6wyJxnHEgg0L1PrlcXU1e/bo6eK+CDVFuMrCafw8Qh4DOv/C4V/+Iew==}
|
resolution: {integrity: sha512-MCOBVJWqHNjnDaGkvxX997VONmJeebh6wyJxnHEgg0L1PrlcXU1e/bo6eK+CDVFuMrCafw8Qh4DOv/C4V/+Iew==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -4228,19 +4150,10 @@ packages:
|
|||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
semver@7.7.2:
|
|
||||||
resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
|
|
||||||
engines: {node: '>=10'}
|
|
||||||
hasBin: true
|
|
||||||
|
|
||||||
send@0.19.0:
|
send@0.19.0:
|
||||||
resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
|
resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
|
||||||
engines: {node: '>= 0.8.0'}
|
engines: {node: '>= 0.8.0'}
|
||||||
|
|
||||||
send@0.19.1:
|
|
||||||
resolution: {integrity: sha512-p4rRk4f23ynFEfcD9LA0xRYngj+IyGiEYyqqOak8kaN0TvNmuxC2dcVeBn62GpCeR2CpWqyHCNScTP91QbAVFg==}
|
|
||||||
engines: {node: '>= 0.8.0'}
|
|
||||||
|
|
||||||
serialize-error@2.1.0:
|
serialize-error@2.1.0:
|
||||||
resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==}
|
resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
@@ -4607,8 +4520,8 @@ packages:
|
|||||||
undici-types@6.19.8:
|
undici-types@6.19.8:
|
||||||
resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
|
resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
|
||||||
|
|
||||||
undici@6.21.3:
|
undici@6.21.2:
|
||||||
resolution: {integrity: sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw==}
|
resolution: {integrity: sha512-uROZWze0R0itiAKVPsYhFov9LxrPMHLMEQFszeI2gCN6bnIIZ8twzBCJcN2LJrBBLfrP0t1FW0g+JmKVl8Vk1g==}
|
||||||
engines: {node: '>=18.17'}
|
engines: {node: '>=18.17'}
|
||||||
|
|
||||||
unicode-canonical-property-names-ecmascript@2.0.1:
|
unicode-canonical-property-names-ecmascript@2.0.1:
|
||||||
@@ -4876,9 +4789,6 @@ snapshots:
|
|||||||
|
|
||||||
'@babel/compat-data@7.27.1': {}
|
'@babel/compat-data@7.27.1': {}
|
||||||
|
|
||||||
'@babel/compat-data@7.27.5':
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
'@babel/core@7.27.1':
|
'@babel/core@7.27.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@ampproject/remapping': 2.3.0
|
'@ampproject/remapping': 2.3.0
|
||||||
@@ -4899,27 +4809,6 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@babel/core@7.27.4':
|
|
||||||
dependencies:
|
|
||||||
'@ampproject/remapping': 2.3.0
|
|
||||||
'@babel/code-frame': 7.27.1
|
|
||||||
'@babel/generator': 7.27.5
|
|
||||||
'@babel/helper-compilation-targets': 7.27.2
|
|
||||||
'@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4)
|
|
||||||
'@babel/helpers': 7.27.6
|
|
||||||
'@babel/parser': 7.27.5
|
|
||||||
'@babel/template': 7.27.2
|
|
||||||
'@babel/traverse': 7.27.4
|
|
||||||
'@babel/types': 7.27.6
|
|
||||||
convert-source-map: 2.0.0
|
|
||||||
debug: 4.4.1
|
|
||||||
gensync: 1.0.0-beta.2
|
|
||||||
json5: 2.2.3
|
|
||||||
semver: 6.3.1
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- supports-color
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
'@babel/generator@7.27.1':
|
'@babel/generator@7.27.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/parser': 7.27.1
|
'@babel/parser': 7.27.1
|
||||||
@@ -4928,23 +4817,10 @@ snapshots:
|
|||||||
'@jridgewell/trace-mapping': 0.3.25
|
'@jridgewell/trace-mapping': 0.3.25
|
||||||
jsesc: 3.1.0
|
jsesc: 3.1.0
|
||||||
|
|
||||||
'@babel/generator@7.27.5':
|
|
||||||
dependencies:
|
|
||||||
'@babel/parser': 7.27.5
|
|
||||||
'@babel/types': 7.27.6
|
|
||||||
'@jridgewell/gen-mapping': 0.3.8
|
|
||||||
'@jridgewell/trace-mapping': 0.3.25
|
|
||||||
jsesc: 3.1.0
|
|
||||||
|
|
||||||
'@babel/helper-annotate-as-pure@7.27.1':
|
'@babel/helper-annotate-as-pure@7.27.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/types': 7.27.1
|
'@babel/types': 7.27.1
|
||||||
|
|
||||||
'@babel/helper-annotate-as-pure@7.27.3':
|
|
||||||
dependencies:
|
|
||||||
'@babel/types': 7.27.6
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
'@babel/helper-compilation-targets@7.27.1':
|
'@babel/helper-compilation-targets@7.27.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/compat-data': 7.27.1
|
'@babel/compat-data': 7.27.1
|
||||||
@@ -4953,15 +4829,6 @@ snapshots:
|
|||||||
lru-cache: 5.1.1
|
lru-cache: 5.1.1
|
||||||
semver: 6.3.1
|
semver: 6.3.1
|
||||||
|
|
||||||
'@babel/helper-compilation-targets@7.27.2':
|
|
||||||
dependencies:
|
|
||||||
'@babel/compat-data': 7.27.5
|
|
||||||
'@babel/helper-validator-option': 7.27.1
|
|
||||||
browserslist: 4.25.0
|
|
||||||
lru-cache: 5.1.1
|
|
||||||
semver: 6.3.1
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
'@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.27.1)':
|
'@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.27.1)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/core': 7.27.1
|
'@babel/core': 7.27.1
|
||||||
@@ -5020,16 +4887,6 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@babel/helper-module-transforms@7.27.3(@babel/core@7.27.4)':
|
|
||||||
dependencies:
|
|
||||||
'@babel/core': 7.27.4
|
|
||||||
'@babel/helper-module-imports': 7.27.1
|
|
||||||
'@babel/helper-validator-identifier': 7.27.1
|
|
||||||
'@babel/traverse': 7.27.4
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- supports-color
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
'@babel/helper-optimise-call-expression@7.27.1':
|
'@babel/helper-optimise-call-expression@7.27.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/types': 7.27.1
|
'@babel/types': 7.27.1
|
||||||
@@ -5080,12 +4937,6 @@ snapshots:
|
|||||||
'@babel/template': 7.27.1
|
'@babel/template': 7.27.1
|
||||||
'@babel/types': 7.27.1
|
'@babel/types': 7.27.1
|
||||||
|
|
||||||
'@babel/helpers@7.27.6':
|
|
||||||
dependencies:
|
|
||||||
'@babel/template': 7.27.2
|
|
||||||
'@babel/types': 7.27.6
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
'@babel/highlight@7.25.9':
|
'@babel/highlight@7.25.9':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/helper-validator-identifier': 7.27.1
|
'@babel/helper-validator-identifier': 7.27.1
|
||||||
@@ -5098,10 +4949,6 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@babel/types': 7.27.1
|
'@babel/types': 7.27.1
|
||||||
|
|
||||||
'@babel/parser@7.27.5':
|
|
||||||
dependencies:
|
|
||||||
'@babel/types': 7.27.6
|
|
||||||
|
|
||||||
'@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.27.1)':
|
'@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.27.1)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/core': 7.27.1
|
'@babel/core': 7.27.1
|
||||||
@@ -5341,12 +5188,6 @@ snapshots:
|
|||||||
'@babel/core': 7.27.1
|
'@babel/core': 7.27.1
|
||||||
'@babel/helper-plugin-utils': 7.27.1
|
'@babel/helper-plugin-utils': 7.27.1
|
||||||
|
|
||||||
'@babel/plugin-transform-destructuring@7.27.3(@babel/core@7.27.1)':
|
|
||||||
dependencies:
|
|
||||||
'@babel/core': 7.27.1
|
|
||||||
'@babel/helper-plugin-utils': 7.27.1
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
'@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.27.1)':
|
'@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.27.1)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/core': 7.27.1
|
'@babel/core': 7.27.1
|
||||||
@@ -5422,15 +5263,6 @@ snapshots:
|
|||||||
'@babel/helper-plugin-utils': 7.27.1
|
'@babel/helper-plugin-utils': 7.27.1
|
||||||
'@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.1)
|
'@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.1)
|
||||||
|
|
||||||
'@babel/plugin-transform-object-rest-spread@7.27.3(@babel/core@7.27.1)':
|
|
||||||
dependencies:
|
|
||||||
'@babel/core': 7.27.1
|
|
||||||
'@babel/helper-compilation-targets': 7.27.2
|
|
||||||
'@babel/helper-plugin-utils': 7.27.1
|
|
||||||
'@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.27.1)
|
|
||||||
'@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.1)
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
'@babel/plugin-transform-object-super@7.27.1(@babel/core@7.27.1)':
|
'@babel/plugin-transform-object-super@7.27.1(@babel/core@7.27.1)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/core': 7.27.1
|
'@babel/core': 7.27.1
|
||||||
@@ -5516,7 +5348,7 @@ snapshots:
|
|||||||
'@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.27.1)':
|
'@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.27.1)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/core': 7.27.1
|
'@babel/core': 7.27.1
|
||||||
'@babel/helper-annotate-as-pure': 7.27.3
|
'@babel/helper-annotate-as-pure': 7.27.1
|
||||||
'@babel/helper-plugin-utils': 7.27.1
|
'@babel/helper-plugin-utils': 7.27.1
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
@@ -5537,19 +5369,6 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@babel/plugin-transform-runtime@7.27.4(@babel/core@7.27.1)':
|
|
||||||
dependencies:
|
|
||||||
'@babel/core': 7.27.1
|
|
||||||
'@babel/helper-module-imports': 7.27.1
|
|
||||||
'@babel/helper-plugin-utils': 7.27.1
|
|
||||||
babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.27.1)
|
|
||||||
babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.1)
|
|
||||||
babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.27.1)
|
|
||||||
semver: 6.3.1
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- supports-color
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
'@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.27.1)':
|
'@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.27.1)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/core': 7.27.1
|
'@babel/core': 7.27.1
|
||||||
@@ -5616,21 +5435,12 @@ snapshots:
|
|||||||
|
|
||||||
'@babel/runtime@7.27.1': {}
|
'@babel/runtime@7.27.1': {}
|
||||||
|
|
||||||
'@babel/runtime@7.27.6':
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
'@babel/template@7.27.1':
|
'@babel/template@7.27.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/code-frame': 7.27.1
|
'@babel/code-frame': 7.27.1
|
||||||
'@babel/parser': 7.27.1
|
'@babel/parser': 7.27.1
|
||||||
'@babel/types': 7.27.1
|
'@babel/types': 7.27.1
|
||||||
|
|
||||||
'@babel/template@7.27.2':
|
|
||||||
dependencies:
|
|
||||||
'@babel/code-frame': 7.27.1
|
|
||||||
'@babel/parser': 7.27.5
|
|
||||||
'@babel/types': 7.27.6
|
|
||||||
|
|
||||||
'@babel/traverse@7.27.1':
|
'@babel/traverse@7.27.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/code-frame': 7.27.1
|
'@babel/code-frame': 7.27.1
|
||||||
@@ -5643,28 +5453,11 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@babel/traverse@7.27.4':
|
|
||||||
dependencies:
|
|
||||||
'@babel/code-frame': 7.27.1
|
|
||||||
'@babel/generator': 7.27.5
|
|
||||||
'@babel/parser': 7.27.5
|
|
||||||
'@babel/template': 7.27.2
|
|
||||||
'@babel/types': 7.27.6
|
|
||||||
debug: 4.4.1
|
|
||||||
globals: 11.12.0
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- supports-color
|
|
||||||
|
|
||||||
'@babel/types@7.27.1':
|
'@babel/types@7.27.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/helper-string-parser': 7.27.1
|
'@babel/helper-string-parser': 7.27.1
|
||||||
'@babel/helper-validator-identifier': 7.27.1
|
'@babel/helper-validator-identifier': 7.27.1
|
||||||
|
|
||||||
'@babel/types@7.27.6':
|
|
||||||
dependencies:
|
|
||||||
'@babel/helper-string-parser': 7.27.1
|
|
||||||
'@babel/helper-validator-identifier': 7.27.1
|
|
||||||
|
|
||||||
'@d11/react-native-fast-image@8.9.2(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0)':
|
'@d11/react-native-fast-image@8.9.2(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0)':
|
||||||
dependencies:
|
dependencies:
|
||||||
react: 19.0.0
|
react: 19.0.0
|
||||||
@@ -5708,9 +5501,9 @@ snapshots:
|
|||||||
'@expo/cli@0.24.11':
|
'@expo/cli@0.24.11':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@0no-co/graphql.web': 1.1.2
|
'@0no-co/graphql.web': 1.1.2
|
||||||
'@babel/runtime': 7.27.6
|
'@babel/runtime': 7.27.1
|
||||||
'@expo/code-signing-certificates': 0.0.5
|
'@expo/code-signing-certificates': 0.0.5
|
||||||
'@expo/config': 11.0.10
|
'@expo/config': 11.0.8
|
||||||
'@expo/config-plugins': 10.0.2
|
'@expo/config-plugins': 10.0.2
|
||||||
'@expo/devcert': 1.2.0
|
'@expo/devcert': 1.2.0
|
||||||
'@expo/env': 1.0.5
|
'@expo/env': 1.0.5
|
||||||
@@ -5720,7 +5513,7 @@ snapshots:
|
|||||||
'@expo/osascript': 2.2.4
|
'@expo/osascript': 2.2.4
|
||||||
'@expo/package-manager': 1.8.4
|
'@expo/package-manager': 1.8.4
|
||||||
'@expo/plist': 0.3.4
|
'@expo/plist': 0.3.4
|
||||||
'@expo/prebuild-config': 9.0.6
|
'@expo/prebuild-config': 9.0.5
|
||||||
'@expo/spawn-async': 1.7.2
|
'@expo/spawn-async': 1.7.2
|
||||||
'@expo/ws-tunnel': 1.0.6
|
'@expo/ws-tunnel': 1.0.6
|
||||||
'@expo/xcpretty': 4.3.2
|
'@expo/xcpretty': 4.3.2
|
||||||
@@ -5736,12 +5529,12 @@ snapshots:
|
|||||||
ci-info: 3.9.0
|
ci-info: 3.9.0
|
||||||
compression: 1.8.0
|
compression: 1.8.0
|
||||||
connect: 3.7.0
|
connect: 3.7.0
|
||||||
debug: 4.4.1
|
debug: 4.4.0
|
||||||
env-editor: 0.4.2
|
env-editor: 0.4.2
|
||||||
freeport-async: 2.0.0
|
freeport-async: 2.0.0
|
||||||
getenv: 1.0.0
|
getenv: 1.0.0
|
||||||
glob: 10.4.5
|
glob: 10.4.5
|
||||||
lan-network: 0.1.7
|
lan-network: 0.1.5
|
||||||
minimatch: 9.0.5
|
minimatch: 9.0.5
|
||||||
node-forge: 1.3.1
|
node-forge: 1.3.1
|
||||||
npm-package-arg: 11.0.3
|
npm-package-arg: 11.0.3
|
||||||
@@ -5757,15 +5550,15 @@ snapshots:
|
|||||||
resolve: 1.22.10
|
resolve: 1.22.10
|
||||||
resolve-from: 5.0.0
|
resolve-from: 5.0.0
|
||||||
resolve.exports: 2.0.3
|
resolve.exports: 2.0.3
|
||||||
semver: 7.7.2
|
semver: 7.7.1
|
||||||
send: 0.19.1
|
send: 0.19.0
|
||||||
slugify: 1.6.6
|
slugify: 1.6.6
|
||||||
source-map-support: 0.5.21
|
source-map-support: 0.5.21
|
||||||
stacktrace-parser: 0.1.11
|
stacktrace-parser: 0.1.11
|
||||||
structured-headers: 0.4.1
|
structured-headers: 0.4.1
|
||||||
tar: 7.4.3
|
tar: 7.4.3
|
||||||
terminal-link: 2.1.1
|
terminal-link: 2.1.1
|
||||||
undici: 6.21.3
|
undici: 6.21.2
|
||||||
wrap-ansi: 7.0.0
|
wrap-ansi: 7.0.0
|
||||||
ws: 8.18.2
|
ws: 8.18.2
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@@ -5783,16 +5576,16 @@ snapshots:
|
|||||||
|
|
||||||
'@expo/config-plugins@10.0.2':
|
'@expo/config-plugins@10.0.2':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@expo/config-types': 53.0.4
|
'@expo/config-types': 53.0.3
|
||||||
'@expo/json-file': 9.1.4
|
'@expo/json-file': 9.1.4
|
||||||
'@expo/plist': 0.3.4
|
'@expo/plist': 0.3.4
|
||||||
'@expo/sdk-runtime-versions': 1.0.0
|
'@expo/sdk-runtime-versions': 1.0.0
|
||||||
chalk: 4.1.2
|
chalk: 4.1.2
|
||||||
debug: 4.4.1
|
debug: 4.4.0
|
||||||
getenv: 1.0.0
|
getenv: 1.0.0
|
||||||
glob: 10.4.5
|
glob: 10.4.5
|
||||||
resolve-from: 5.0.0
|
resolve-from: 5.0.0
|
||||||
semver: 7.7.2
|
semver: 7.7.1
|
||||||
slash: 3.0.0
|
slash: 3.0.0
|
||||||
slugify: 1.6.6
|
slugify: 1.6.6
|
||||||
xcode: 3.0.1
|
xcode: 3.0.1
|
||||||
@@ -5801,14 +5594,14 @@ snapshots:
|
|||||||
- supports-color
|
- supports-color
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@expo/config-types@53.0.4':
|
'@expo/config-types@53.0.3':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@expo/config@11.0.10':
|
'@expo/config@11.0.8':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/code-frame': 7.10.4
|
'@babel/code-frame': 7.10.4
|
||||||
'@expo/config-plugins': 10.0.2
|
'@expo/config-plugins': 10.0.2
|
||||||
'@expo/config-types': 53.0.4
|
'@expo/config-types': 53.0.3
|
||||||
'@expo/json-file': 9.1.4
|
'@expo/json-file': 9.1.4
|
||||||
deepmerge: 4.3.1
|
deepmerge: 4.3.1
|
||||||
getenv: 1.0.0
|
getenv: 1.0.0
|
||||||
@@ -5816,7 +5609,7 @@ snapshots:
|
|||||||
require-from-string: 2.0.2
|
require-from-string: 2.0.2
|
||||||
resolve-from: 5.0.0
|
resolve-from: 5.0.0
|
||||||
resolve-workspace-root: 2.0.0
|
resolve-workspace-root: 2.0.0
|
||||||
semver: 7.7.2
|
semver: 7.7.1
|
||||||
slugify: 1.6.6
|
slugify: 1.6.6
|
||||||
sucrase: 3.35.0
|
sucrase: 3.35.0
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@@ -5835,7 +5628,7 @@ snapshots:
|
|||||||
'@expo/env@1.0.5':
|
'@expo/env@1.0.5':
|
||||||
dependencies:
|
dependencies:
|
||||||
chalk: 4.1.2
|
chalk: 4.1.2
|
||||||
debug: 4.4.1
|
debug: 4.4.0
|
||||||
dotenv: 16.4.7
|
dotenv: 16.4.7
|
||||||
dotenv-expand: 11.0.7
|
dotenv-expand: 11.0.7
|
||||||
getenv: 1.0.0
|
getenv: 1.0.0
|
||||||
@@ -5848,13 +5641,13 @@ snapshots:
|
|||||||
'@expo/spawn-async': 1.7.2
|
'@expo/spawn-async': 1.7.2
|
||||||
arg: 5.0.2
|
arg: 5.0.2
|
||||||
chalk: 4.1.2
|
chalk: 4.1.2
|
||||||
debug: 4.4.1
|
debug: 4.4.0
|
||||||
find-up: 5.0.0
|
find-up: 5.0.0
|
||||||
getenv: 1.0.0
|
getenv: 1.0.0
|
||||||
minimatch: 9.0.5
|
minimatch: 9.0.5
|
||||||
p-limit: 3.1.0
|
p-limit: 3.1.0
|
||||||
resolve-from: 5.0.0
|
resolve-from: 5.0.0
|
||||||
semver: 7.7.2
|
semver: 7.7.1
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
optional: true
|
optional: true
|
||||||
@@ -5867,7 +5660,7 @@ snapshots:
|
|||||||
jimp-compact: 0.16.1
|
jimp-compact: 0.16.1
|
||||||
parse-png: 2.1.0
|
parse-png: 2.1.0
|
||||||
resolve-from: 5.0.0
|
resolve-from: 5.0.0
|
||||||
semver: 7.7.2
|
semver: 7.7.1
|
||||||
temp-dir: 2.0.0
|
temp-dir: 2.0.0
|
||||||
unique-string: 2.0.0
|
unique-string: 2.0.0
|
||||||
optional: true
|
optional: true
|
||||||
@@ -5880,16 +5673,16 @@ snapshots:
|
|||||||
|
|
||||||
'@expo/metro-config@0.20.13':
|
'@expo/metro-config@0.20.13':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/core': 7.27.4
|
'@babel/core': 7.27.1
|
||||||
'@babel/generator': 7.27.5
|
'@babel/generator': 7.27.1
|
||||||
'@babel/parser': 7.27.5
|
'@babel/parser': 7.27.1
|
||||||
'@babel/types': 7.27.6
|
'@babel/types': 7.27.1
|
||||||
'@expo/config': 11.0.10
|
'@expo/config': 11.0.8
|
||||||
'@expo/env': 1.0.5
|
'@expo/env': 1.0.5
|
||||||
'@expo/json-file': 9.1.4
|
'@expo/json-file': 9.1.4
|
||||||
'@expo/spawn-async': 1.7.2
|
'@expo/spawn-async': 1.7.2
|
||||||
chalk: 4.1.2
|
chalk: 4.1.2
|
||||||
debug: 4.4.1
|
debug: 4.4.0
|
||||||
dotenv: 16.4.7
|
dotenv: 16.4.7
|
||||||
dotenv-expand: 11.0.7
|
dotenv-expand: 11.0.7
|
||||||
getenv: 1.0.0
|
getenv: 1.0.0
|
||||||
@@ -5926,17 +5719,17 @@ snapshots:
|
|||||||
xmlbuilder: 15.1.1
|
xmlbuilder: 15.1.1
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@expo/prebuild-config@9.0.6':
|
'@expo/prebuild-config@9.0.5':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@expo/config': 11.0.10
|
'@expo/config': 11.0.8
|
||||||
'@expo/config-plugins': 10.0.2
|
'@expo/config-plugins': 10.0.2
|
||||||
'@expo/config-types': 53.0.4
|
'@expo/config-types': 53.0.3
|
||||||
'@expo/image-utils': 0.7.4
|
'@expo/image-utils': 0.7.4
|
||||||
'@expo/json-file': 9.1.4
|
'@expo/json-file': 9.1.4
|
||||||
'@react-native/normalize-colors': 0.79.2
|
'@react-native/normalize-colors': 0.79.2
|
||||||
debug: 4.4.1
|
debug: 4.4.0
|
||||||
resolve-from: 5.0.0
|
resolve-from: 5.0.0
|
||||||
semver: 7.7.2
|
semver: 7.7.1
|
||||||
xml2js: 0.6.0
|
xml2js: 0.6.0
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
@@ -7198,18 +6991,18 @@ snapshots:
|
|||||||
'@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.27.1)
|
'@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.27.1)
|
||||||
'@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.27.1)
|
'@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.27.1)
|
||||||
'@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.1)
|
'@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.1)
|
||||||
'@babel/plugin-transform-object-rest-spread': 7.27.3(@babel/core@7.27.1)
|
'@babel/plugin-transform-object-rest-spread': 7.27.1(@babel/core@7.27.1)
|
||||||
'@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.1)
|
'@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.1)
|
||||||
'@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.27.1)
|
'@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.27.1)
|
||||||
'@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.27.1)
|
'@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.27.1)
|
||||||
'@babel/plugin-transform-runtime': 7.27.4(@babel/core@7.27.1)
|
'@babel/plugin-transform-runtime': 7.27.1(@babel/core@7.27.1)
|
||||||
'@babel/preset-react': 7.27.1(@babel/core@7.27.1)
|
'@babel/preset-react': 7.27.1(@babel/core@7.27.1)
|
||||||
'@babel/preset-typescript': 7.27.1(@babel/core@7.27.1)
|
'@babel/preset-typescript': 7.27.1(@babel/core@7.27.1)
|
||||||
'@react-native/babel-preset': 0.79.2(@babel/core@7.27.1)
|
'@react-native/babel-preset': 0.79.2(@babel/core@7.27.1)
|
||||||
babel-plugin-react-native-web: 0.19.13
|
babel-plugin-react-native-web: 0.19.13
|
||||||
babel-plugin-syntax-hermes-parser: 0.25.1
|
babel-plugin-syntax-hermes-parser: 0.25.1
|
||||||
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.27.1)
|
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.27.1)
|
||||||
debug: 4.4.1
|
debug: 4.4.0
|
||||||
react-refresh: 0.14.2
|
react-refresh: 0.14.2
|
||||||
resolve-from: 5.0.0
|
resolve-from: 5.0.0
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@@ -7321,11 +7114,6 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
balanced-match: 1.0.2
|
balanced-match: 1.0.2
|
||||||
|
|
||||||
brace-expansion@2.0.2:
|
|
||||||
dependencies:
|
|
||||||
balanced-match: 1.0.2
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
braces@3.0.3:
|
braces@3.0.3:
|
||||||
dependencies:
|
dependencies:
|
||||||
fill-range: 7.1.1
|
fill-range: 7.1.1
|
||||||
@@ -7337,14 +7125,6 @@ snapshots:
|
|||||||
node-releases: 2.0.19
|
node-releases: 2.0.19
|
||||||
update-browserslist-db: 1.1.3(browserslist@4.24.5)
|
update-browserslist-db: 1.1.3(browserslist@4.24.5)
|
||||||
|
|
||||||
browserslist@4.25.0:
|
|
||||||
dependencies:
|
|
||||||
caniuse-lite: 1.0.30001722
|
|
||||||
electron-to-chromium: 1.5.166
|
|
||||||
node-releases: 2.0.19
|
|
||||||
update-browserslist-db: 1.1.3(browserslist@4.25.0)
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
bser@2.1.1:
|
bser@2.1.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
node-int64: 0.4.0
|
node-int64: 0.4.0
|
||||||
@@ -7395,9 +7175,6 @@ snapshots:
|
|||||||
|
|
||||||
caniuse-lite@1.0.30001717: {}
|
caniuse-lite@1.0.30001717: {}
|
||||||
|
|
||||||
caniuse-lite@1.0.30001722:
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
canvaskit-wasm@0.40.0:
|
canvaskit-wasm@0.40.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@webgpu/types': 0.1.21
|
'@webgpu/types': 0.1.21
|
||||||
@@ -7648,10 +7425,6 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
ms: 2.1.3
|
ms: 2.1.3
|
||||||
|
|
||||||
debug@4.4.1:
|
|
||||||
dependencies:
|
|
||||||
ms: 2.1.3
|
|
||||||
|
|
||||||
decamelize@1.2.0: {}
|
decamelize@1.2.0: {}
|
||||||
|
|
||||||
decode-uri-component@0.2.2: {}
|
decode-uri-component@0.2.2: {}
|
||||||
@@ -7726,7 +7499,7 @@ snapshots:
|
|||||||
|
|
||||||
dotenv-expand@11.0.7:
|
dotenv-expand@11.0.7:
|
||||||
dependencies:
|
dependencies:
|
||||||
dotenv: 16.4.7
|
dotenv: 16.5.0
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
dotenv@16.4.7:
|
dotenv@16.4.7:
|
||||||
@@ -7747,9 +7520,6 @@ snapshots:
|
|||||||
|
|
||||||
electron-to-chromium@1.5.149: {}
|
electron-to-chromium@1.5.149: {}
|
||||||
|
|
||||||
electron-to-chromium@1.5.166:
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
emoji-regex@8.0.0: {}
|
emoji-regex@8.0.0: {}
|
||||||
|
|
||||||
emoji-regex@9.2.2:
|
emoji-regex@9.2.2:
|
||||||
@@ -8011,16 +7781,16 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@expo/image-utils': 0.7.4
|
'@expo/image-utils': 0.7.4
|
||||||
expo: 53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0)
|
expo: 53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0)
|
||||||
expo-constants: 17.1.6(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))
|
expo-constants: 17.1.5(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))
|
||||||
react: 19.0.0
|
react: 19.0.0
|
||||||
react-native: 0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0)
|
react-native: 0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
expo-constants@17.1.6(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0)):
|
expo-constants@17.1.5(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0)):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@expo/config': 11.0.10
|
'@expo/config': 11.0.8
|
||||||
'@expo/env': 1.0.5
|
'@expo/env': 1.0.5
|
||||||
expo: 53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0)
|
expo: 53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0)
|
||||||
react-native: 0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0)
|
react-native: 0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0)
|
||||||
@@ -8028,7 +7798,7 @@ snapshots:
|
|||||||
- supports-color
|
- supports-color
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
expo-file-system@18.1.10(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0)):
|
expo-file-system@18.1.9(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0)):
|
||||||
dependencies:
|
dependencies:
|
||||||
expo: 53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0)
|
expo: 53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0)
|
||||||
react-native: 0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0)
|
react-native: 0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0)
|
||||||
@@ -8065,17 +7835,17 @@ snapshots:
|
|||||||
|
|
||||||
expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0):
|
expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.27.6
|
'@babel/runtime': 7.27.1
|
||||||
'@expo/cli': 0.24.11
|
'@expo/cli': 0.24.11
|
||||||
'@expo/config': 11.0.10
|
'@expo/config': 11.0.8
|
||||||
'@expo/config-plugins': 10.0.2
|
'@expo/config-plugins': 10.0.2
|
||||||
'@expo/fingerprint': 0.12.4
|
'@expo/fingerprint': 0.12.4
|
||||||
'@expo/metro-config': 0.20.13
|
'@expo/metro-config': 0.20.13
|
||||||
'@expo/vector-icons': 14.1.0(expo-font@13.3.1(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0)
|
'@expo/vector-icons': 14.1.0(expo-font@13.3.1(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0)
|
||||||
babel-preset-expo: 13.1.11(@babel/core@7.27.1)
|
babel-preset-expo: 13.1.11(@babel/core@7.27.1)
|
||||||
expo-asset: 11.1.5(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0)
|
expo-asset: 11.1.5(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0)
|
||||||
expo-constants: 17.1.6(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))
|
expo-constants: 17.1.5(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))
|
||||||
expo-file-system: 18.1.10(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))
|
expo-file-system: 18.1.9(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))
|
||||||
expo-font: 13.3.1(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react@19.0.0)
|
expo-font: 13.3.1(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react@19.0.0)
|
||||||
expo-keep-awake: 14.1.4(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react@19.0.0)
|
expo-keep-awake: 14.1.4(expo@53.0.7(@babel/core@7.27.1)(react-native-webview@13.13.5(patch_hash=2bf2ed0feba988e3f2d2ebc497218220b351ab5157dc5fedf7085f8525cacb65)(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0))(react@19.0.0)
|
||||||
expo-modules-autolinking: 2.1.9
|
expo-modules-autolinking: 2.1.9
|
||||||
@@ -8765,7 +8535,7 @@ snapshots:
|
|||||||
|
|
||||||
kleur@3.0.3: {}
|
kleur@3.0.3: {}
|
||||||
|
|
||||||
lan-network@0.1.7:
|
lan-network@0.1.5:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
launch-editor@2.10.0:
|
launch-editor@2.10.0:
|
||||||
@@ -9042,7 +8812,7 @@ snapshots:
|
|||||||
metro-source-map@0.82.2:
|
metro-source-map@0.82.2:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/traverse': 7.27.1
|
'@babel/traverse': 7.27.1
|
||||||
'@babel/traverse--for-generate-function-map': '@babel/traverse@7.27.4'
|
'@babel/traverse--for-generate-function-map': '@babel/traverse@7.27.1'
|
||||||
'@babel/types': 7.27.1
|
'@babel/types': 7.27.1
|
||||||
flow-enums-runtime: 0.0.6
|
flow-enums-runtime: 0.0.6
|
||||||
invariant: 2.2.4
|
invariant: 2.2.4
|
||||||
@@ -9181,7 +8951,7 @@ snapshots:
|
|||||||
|
|
||||||
minimatch@9.0.5:
|
minimatch@9.0.5:
|
||||||
dependencies:
|
dependencies:
|
||||||
brace-expansion: 2.0.2
|
brace-expansion: 2.0.1
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
minimist@1.2.8: {}
|
minimist@1.2.8: {}
|
||||||
@@ -9248,7 +9018,7 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
hosted-git-info: 7.0.2
|
hosted-git-info: 7.0.2
|
||||||
proc-log: 4.2.0
|
proc-log: 4.2.0
|
||||||
semver: 7.7.2
|
semver: 7.7.1
|
||||||
validate-npm-package-name: 5.0.1
|
validate-npm-package-name: 5.0.1
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
@@ -9610,6 +9380,11 @@ snapshots:
|
|||||||
react: 19.0.0
|
react: 19.0.0
|
||||||
react-native: 0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0)
|
react-native: 0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0)
|
||||||
|
|
||||||
|
react-native-carplay@2.4.1-beta.0(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0):
|
||||||
|
optionalDependencies:
|
||||||
|
react: 19.0.0
|
||||||
|
react-native: 0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0)
|
||||||
|
|
||||||
react-native-collapsible@1.6.2(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0):
|
react-native-collapsible@1.6.2(react-native@0.79.2(@babel/core@7.27.1)(@react-native-community/cli@18.0.0(typescript@5.8.3))(@types/react@18.3.20)(react@19.0.0))(react@19.0.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
react: 19.0.0
|
react: 19.0.0
|
||||||
@@ -9964,9 +9739,6 @@ snapshots:
|
|||||||
|
|
||||||
semver@7.7.1: {}
|
semver@7.7.1: {}
|
||||||
|
|
||||||
semver@7.7.2:
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
send@0.19.0:
|
send@0.19.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
debug: 2.6.9
|
debug: 2.6.9
|
||||||
@@ -9985,25 +9757,6 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
send@0.19.1:
|
|
||||||
dependencies:
|
|
||||||
debug: 2.6.9
|
|
||||||
depd: 2.0.0
|
|
||||||
destroy: 1.2.0
|
|
||||||
encodeurl: 2.0.0
|
|
||||||
escape-html: 1.0.3
|
|
||||||
etag: 1.8.1
|
|
||||||
fresh: 0.5.2
|
|
||||||
http-errors: 2.0.0
|
|
||||||
mime: 1.6.0
|
|
||||||
ms: 2.1.3
|
|
||||||
on-finished: 2.4.1
|
|
||||||
range-parser: 1.2.1
|
|
||||||
statuses: 2.0.1
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- supports-color
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
serialize-error@2.1.0: {}
|
serialize-error@2.1.0: {}
|
||||||
|
|
||||||
serve-static@1.16.2:
|
serve-static@1.16.2:
|
||||||
@@ -10430,7 +10183,7 @@ snapshots:
|
|||||||
|
|
||||||
undici-types@6.19.8: {}
|
undici-types@6.19.8: {}
|
||||||
|
|
||||||
undici@6.21.3:
|
undici@6.21.2:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
unicode-canonical-property-names-ecmascript@2.0.1: {}
|
unicode-canonical-property-names-ecmascript@2.0.1: {}
|
||||||
@@ -10461,13 +10214,6 @@ snapshots:
|
|||||||
escalade: 3.2.0
|
escalade: 3.2.0
|
||||||
picocolors: 1.1.1
|
picocolors: 1.1.1
|
||||||
|
|
||||||
update-browserslist-db@1.1.3(browserslist@4.25.0):
|
|
||||||
dependencies:
|
|
||||||
browserslist: 4.25.0
|
|
||||||
escalade: 3.2.0
|
|
||||||
picocolors: 1.1.1
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
uri-js@4.4.1:
|
uri-js@4.4.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
punycode: 2.3.1
|
punycode: 2.3.1
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ import {
|
|||||||
import { ColorSchemeProvider, themes, useUserOrSystemScheme } from './Colors';
|
import { ColorSchemeProvider, themes, useUserOrSystemScheme } from './Colors';
|
||||||
import DownloadManager from './DownloadManager';
|
import DownloadManager from './DownloadManager';
|
||||||
import AppLoading from './AppLoading';
|
import AppLoading from './AppLoading';
|
||||||
import { captureException } from '@sentry/react-native';
|
import CarPlayScreen from '@/screens/carplay';
|
||||||
|
|
||||||
const LightTheme = {
|
const LightTheme = {
|
||||||
...DefaultTheme,
|
...DefaultTheme,
|
||||||
@@ -53,9 +53,7 @@ export default function App(): JSX.Element | null {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
async function setupTrackPlayer() {
|
async function setupTrackPlayer() {
|
||||||
await TrackPlayer.setupPlayer({
|
await TrackPlayer.setupPlayer({ autoHandleInterruptions: true });
|
||||||
autoHandleInterruptions: true,
|
|
||||||
});
|
|
||||||
await TrackPlayer.updateOptions({
|
await TrackPlayer.updateOptions({
|
||||||
capabilities: [
|
capabilities: [
|
||||||
Capability.Play,
|
Capability.Play,
|
||||||
@@ -71,12 +69,7 @@ export default function App(): JSX.Element | null {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!hasSetupPlayer) {
|
if (!hasSetupPlayer) {
|
||||||
setupTrackPlayer()
|
setupTrackPlayer();
|
||||||
.catch((e: unknown) => {
|
|
||||||
console.error(e);
|
|
||||||
captureException(e);
|
|
||||||
setHasSetupPlayer(true);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}, [hasSetupPlayer]);
|
}, [hasSetupPlayer]);
|
||||||
|
|
||||||
@@ -92,6 +85,7 @@ export default function App(): JSX.Element | null {
|
|||||||
<ThemedNavigationContainer>
|
<ThemedNavigationContainer>
|
||||||
<Routes />
|
<Routes />
|
||||||
<DownloadManager />
|
<DownloadManager />
|
||||||
|
<CarPlayScreen />
|
||||||
</ThemedNavigationContainer>
|
</ThemedNavigationContainer>
|
||||||
</ColorSchemeProvider>
|
</ColorSchemeProvider>
|
||||||
</PersistGate>
|
</PersistGate>
|
||||||
|
|||||||
62
src/screens/carplay/index.tsx
Normal file
62
src/screens/carplay/index.tsx
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
import React, { useEffect } from 'react';
|
||||||
|
import { View, Text } from 'react-native';
|
||||||
|
import { CarPlay, ListTemplate, ListItem } from 'react-native-carplay';
|
||||||
|
|
||||||
|
const CarPlayScreen: React.FC = () => {
|
||||||
|
useEffect(() => {
|
||||||
|
console.log('CarPlay: Screen mounted');
|
||||||
|
|
||||||
|
const onConnect = () => {
|
||||||
|
console.log('CarPlay: React Native connected');
|
||||||
|
|
||||||
|
// Create a list template with some items
|
||||||
|
const template = new ListTemplate({
|
||||||
|
title: 'Fintunes',
|
||||||
|
sections: [
|
||||||
|
{
|
||||||
|
header: 'Library',
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
text: 'Songs',
|
||||||
|
detailText: 'Browse your music library',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: 'Albums',
|
||||||
|
detailText: 'Browse your albums',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: 'Artists',
|
||||||
|
detailText: 'Browse your artists',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
onItemSelect: (item) => {
|
||||||
|
console.log('Selected item:', item);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// Set the template as root
|
||||||
|
CarPlay.setRootTemplate(template);
|
||||||
|
};
|
||||||
|
|
||||||
|
const onDisconnect = () => {
|
||||||
|
console.log('CarPlay: React Native disconnected');
|
||||||
|
};
|
||||||
|
|
||||||
|
// Register for CarPlay connection events
|
||||||
|
CarPlay.registerOnConnect(onConnect);
|
||||||
|
CarPlay.registerOnDisconnect(onDisconnect);
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
console.log('CarPlay: Screen unmounting');
|
||||||
|
// Cleanup listeners
|
||||||
|
CarPlay.unregisterOnConnect(onConnect);
|
||||||
|
CarPlay.unregisterOnDisconnect(onDisconnect);
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default CarPlayScreen;
|
||||||
Reference in New Issue
Block a user