this repo has no description

Initial commit

Generated by create-expo-app 3.4.2.

hailey.at 176dfcfd

+39
.gitignore
··· 1 + # Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files 2 + 3 + # dependencies 4 + node_modules/ 5 + 6 + # Expo 7 + .expo/ 8 + dist/ 9 + web-build/ 10 + expo-env.d.ts 11 + 12 + # Native 13 + .kotlin/ 14 + *.orig.* 15 + *.jks 16 + *.p8 17 + *.p12 18 + *.key 19 + *.mobileprovision 20 + 21 + # Metro 22 + .metro-health-check* 23 + 24 + # debug 25 + npm-debug.* 26 + yarn-debug.* 27 + yarn-error.* 28 + 29 + # macOS 30 + .DS_Store 31 + *.pem 32 + 33 + # local env files 34 + .env*.local 35 + 36 + # typescript 37 + *.tsbuildinfo 38 + 39 + app-example
+7
.vscode/settings.json
··· 1 + { 2 + "editor.codeActionsOnSave": { 3 + "source.fixAll": "explicit", 4 + "source.organizeImports": "explicit", 5 + "source.sortMembers": "explicit" 6 + } 7 + }
+50
README.md
··· 1 + # Welcome to your Expo app 👋 2 + 3 + This is an [Expo](https://expo.dev) project created with [`create-expo-app`](https://www.npmjs.com/package/create-expo-app). 4 + 5 + ## Get started 6 + 7 + 1. Install dependencies 8 + 9 + ```bash 10 + npm install 11 + ``` 12 + 13 + 2. Start the app 14 + 15 + ```bash 16 + npx expo start 17 + ``` 18 + 19 + In the output, you'll find options to open the app in a 20 + 21 + - [development build](https://docs.expo.dev/develop/development-builds/introduction/) 22 + - [Android emulator](https://docs.expo.dev/workflow/android-studio-emulator/) 23 + - [iOS simulator](https://docs.expo.dev/workflow/ios-simulator/) 24 + - [Expo Go](https://expo.dev/go), a limited sandbox for trying out app development with Expo 25 + 26 + You can start developing by editing the files inside the **app** directory. This project uses [file-based routing](https://docs.expo.dev/router/introduction). 27 + 28 + ## Get a fresh project 29 + 30 + When you're ready, run: 31 + 32 + ```bash 33 + npm run reset-project 34 + ``` 35 + 36 + This command will move the starter code to the **app-example** directory and create a blank **app** directory where you can start developing. 37 + 38 + ## Learn more 39 + 40 + To learn more about developing your project with Expo, look at the following resources: 41 + 42 + - [Expo documentation](https://docs.expo.dev/): Learn fundamentals, or go into advanced topics with our [guides](https://docs.expo.dev/guides). 43 + - [Learn Expo tutorial](https://docs.expo.dev/tutorial/introduction/): Follow a step-by-step tutorial where you'll create a project that runs on Android, iOS, and the web. 44 + 45 + ## Join the community 46 + 47 + Join our community of developers creating universal apps. 48 + 49 + - [Expo on GitHub](https://github.com/expo/expo): View our open source platform and contribute. 50 + - [Discord community](https://chat.expo.dev): Chat with Expo users and ask questions.
+42
app.json
··· 1 + { 2 + "expo": { 3 + "name": "atproto-auth-demo", 4 + "slug": "atproto-auth-demo", 5 + "version": "1.0.0", 6 + "orientation": "portrait", 7 + "icon": "./assets/images/icon.png", 8 + "scheme": "atprotoauthdemo", 9 + "userInterfaceStyle": "automatic", 10 + "newArchEnabled": true, 11 + "ios": { 12 + "supportsTablet": true 13 + }, 14 + "android": { 15 + "adaptiveIcon": { 16 + "foregroundImage": "./assets/images/adaptive-icon.png", 17 + "backgroundColor": "#ffffff" 18 + }, 19 + "edgeToEdgeEnabled": true 20 + }, 21 + "web": { 22 + "bundler": "metro", 23 + "output": "static", 24 + "favicon": "./assets/images/favicon.png" 25 + }, 26 + "plugins": [ 27 + "expo-router", 28 + [ 29 + "expo-splash-screen", 30 + { 31 + "image": "./assets/images/splash-icon.png", 32 + "imageWidth": 200, 33 + "resizeMode": "contain", 34 + "backgroundColor": "#ffffff" 35 + } 36 + ] 37 + ], 38 + "experiments": { 39 + "typedRoutes": true 40 + } 41 + } 42 + }
+45
app/(tabs)/_layout.tsx
··· 1 + import { Tabs } from 'expo-router'; 2 + import React from 'react'; 3 + import { Platform } from 'react-native'; 4 + 5 + import { HapticTab } from '@/components/HapticTab'; 6 + import { IconSymbol } from '@/components/ui/IconSymbol'; 7 + import TabBarBackground from '@/components/ui/TabBarBackground'; 8 + import { Colors } from '@/constants/Colors'; 9 + import { useColorScheme } from '@/hooks/useColorScheme'; 10 + 11 + export default function TabLayout() { 12 + const colorScheme = useColorScheme(); 13 + 14 + return ( 15 + <Tabs 16 + screenOptions={{ 17 + tabBarActiveTintColor: Colors[colorScheme ?? 'light'].tint, 18 + headerShown: false, 19 + tabBarButton: HapticTab, 20 + tabBarBackground: TabBarBackground, 21 + tabBarStyle: Platform.select({ 22 + ios: { 23 + // Use a transparent background on iOS to show the blur effect 24 + position: 'absolute', 25 + }, 26 + default: {}, 27 + }), 28 + }}> 29 + <Tabs.Screen 30 + name="index" 31 + options={{ 32 + title: 'Home', 33 + tabBarIcon: ({ color }) => <IconSymbol size={28} name="house.fill" color={color} />, 34 + }} 35 + /> 36 + <Tabs.Screen 37 + name="explore" 38 + options={{ 39 + title: 'Explore', 40 + tabBarIcon: ({ color }) => <IconSymbol size={28} name="paperplane.fill" color={color} />, 41 + }} 42 + /> 43 + </Tabs> 44 + ); 45 + }
+110
app/(tabs)/explore.tsx
··· 1 + import { Image } from 'expo-image'; 2 + import { Platform, StyleSheet } from 'react-native'; 3 + 4 + import { Collapsible } from '@/components/Collapsible'; 5 + import { ExternalLink } from '@/components/ExternalLink'; 6 + import ParallaxScrollView from '@/components/ParallaxScrollView'; 7 + import { ThemedText } from '@/components/ThemedText'; 8 + import { ThemedView } from '@/components/ThemedView'; 9 + import { IconSymbol } from '@/components/ui/IconSymbol'; 10 + 11 + export default function TabTwoScreen() { 12 + return ( 13 + <ParallaxScrollView 14 + headerBackgroundColor={{ light: '#D0D0D0', dark: '#353636' }} 15 + headerImage={ 16 + <IconSymbol 17 + size={310} 18 + color="#808080" 19 + name="chevron.left.forwardslash.chevron.right" 20 + style={styles.headerImage} 21 + /> 22 + }> 23 + <ThemedView style={styles.titleContainer}> 24 + <ThemedText type="title">Explore</ThemedText> 25 + </ThemedView> 26 + <ThemedText>This app includes example code to help you get started.</ThemedText> 27 + <Collapsible title="File-based routing"> 28 + <ThemedText> 29 + This app has two screens:{' '} 30 + <ThemedText type="defaultSemiBold">app/(tabs)/index.tsx</ThemedText> and{' '} 31 + <ThemedText type="defaultSemiBold">app/(tabs)/explore.tsx</ThemedText> 32 + </ThemedText> 33 + <ThemedText> 34 + The layout file in <ThemedText type="defaultSemiBold">app/(tabs)/_layout.tsx</ThemedText>{' '} 35 + sets up the tab navigator. 36 + </ThemedText> 37 + <ExternalLink href="https://docs.expo.dev/router/introduction"> 38 + <ThemedText type="link">Learn more</ThemedText> 39 + </ExternalLink> 40 + </Collapsible> 41 + <Collapsible title="Android, iOS, and web support"> 42 + <ThemedText> 43 + You can open this project on Android, iOS, and the web. To open the web version, press{' '} 44 + <ThemedText type="defaultSemiBold">w</ThemedText> in the terminal running this project. 45 + </ThemedText> 46 + </Collapsible> 47 + <Collapsible title="Images"> 48 + <ThemedText> 49 + For static images, you can use the <ThemedText type="defaultSemiBold">@2x</ThemedText> and{' '} 50 + <ThemedText type="defaultSemiBold">@3x</ThemedText> suffixes to provide files for 51 + different screen densities 52 + </ThemedText> 53 + <Image source={require('@/assets/images/react-logo.png')} style={{ alignSelf: 'center' }} /> 54 + <ExternalLink href="https://reactnative.dev/docs/images"> 55 + <ThemedText type="link">Learn more</ThemedText> 56 + </ExternalLink> 57 + </Collapsible> 58 + <Collapsible title="Custom fonts"> 59 + <ThemedText> 60 + Open <ThemedText type="defaultSemiBold">app/_layout.tsx</ThemedText> to see how to load{' '} 61 + <ThemedText style={{ fontFamily: 'SpaceMono' }}> 62 + custom fonts such as this one. 63 + </ThemedText> 64 + </ThemedText> 65 + <ExternalLink href="https://docs.expo.dev/versions/latest/sdk/font"> 66 + <ThemedText type="link">Learn more</ThemedText> 67 + </ExternalLink> 68 + </Collapsible> 69 + <Collapsible title="Light and dark mode components"> 70 + <ThemedText> 71 + This template has light and dark mode support. The{' '} 72 + <ThemedText type="defaultSemiBold">useColorScheme()</ThemedText> hook lets you inspect 73 + what the user&apos;s current color scheme is, and so you can adjust UI colors accordingly. 74 + </ThemedText> 75 + <ExternalLink href="https://docs.expo.dev/develop/user-interface/color-themes/"> 76 + <ThemedText type="link">Learn more</ThemedText> 77 + </ExternalLink> 78 + </Collapsible> 79 + <Collapsible title="Animations"> 80 + <ThemedText> 81 + This template includes an example of an animated component. The{' '} 82 + <ThemedText type="defaultSemiBold">components/HelloWave.tsx</ThemedText> component uses 83 + the powerful <ThemedText type="defaultSemiBold">react-native-reanimated</ThemedText>{' '} 84 + library to create a waving hand animation. 85 + </ThemedText> 86 + {Platform.select({ 87 + ios: ( 88 + <ThemedText> 89 + The <ThemedText type="defaultSemiBold">components/ParallaxScrollView.tsx</ThemedText>{' '} 90 + component provides a parallax effect for the header image. 91 + </ThemedText> 92 + ), 93 + })} 94 + </Collapsible> 95 + </ParallaxScrollView> 96 + ); 97 + } 98 + 99 + const styles = StyleSheet.create({ 100 + headerImage: { 101 + color: '#808080', 102 + bottom: -90, 103 + left: -35, 104 + position: 'absolute', 105 + }, 106 + titleContainer: { 107 + flexDirection: 'row', 108 + gap: 8, 109 + }, 110 + });
+75
app/(tabs)/index.tsx
··· 1 + import { Image } from 'expo-image'; 2 + import { Platform, StyleSheet } from 'react-native'; 3 + 4 + import { HelloWave } from '@/components/HelloWave'; 5 + import ParallaxScrollView from '@/components/ParallaxScrollView'; 6 + import { ThemedText } from '@/components/ThemedText'; 7 + import { ThemedView } from '@/components/ThemedView'; 8 + 9 + export default function HomeScreen() { 10 + return ( 11 + <ParallaxScrollView 12 + headerBackgroundColor={{ light: '#A1CEDC', dark: '#1D3D47' }} 13 + headerImage={ 14 + <Image 15 + source={require('@/assets/images/partial-react-logo.png')} 16 + style={styles.reactLogo} 17 + /> 18 + }> 19 + <ThemedView style={styles.titleContainer}> 20 + <ThemedText type="title">Welcome!</ThemedText> 21 + <HelloWave /> 22 + </ThemedView> 23 + <ThemedView style={styles.stepContainer}> 24 + <ThemedText type="subtitle">Step 1: Try it</ThemedText> 25 + <ThemedText> 26 + Edit <ThemedText type="defaultSemiBold">app/(tabs)/index.tsx</ThemedText> to see changes. 27 + Press{' '} 28 + <ThemedText type="defaultSemiBold"> 29 + {Platform.select({ 30 + ios: 'cmd + d', 31 + android: 'cmd + m', 32 + web: 'F12', 33 + })} 34 + </ThemedText>{' '} 35 + to open developer tools. 36 + </ThemedText> 37 + </ThemedView> 38 + <ThemedView style={styles.stepContainer}> 39 + <ThemedText type="subtitle">Step 2: Explore</ThemedText> 40 + <ThemedText> 41 + {`Tap the Explore tab to learn more about what's included in this starter app.`} 42 + </ThemedText> 43 + </ThemedView> 44 + <ThemedView style={styles.stepContainer}> 45 + <ThemedText type="subtitle">Step 3: Get a fresh start</ThemedText> 46 + <ThemedText> 47 + {`When you're ready, run `} 48 + <ThemedText type="defaultSemiBold">npm run reset-project</ThemedText> to get a fresh{' '} 49 + <ThemedText type="defaultSemiBold">app</ThemedText> directory. This will move the current{' '} 50 + <ThemedText type="defaultSemiBold">app</ThemedText> to{' '} 51 + <ThemedText type="defaultSemiBold">app-example</ThemedText>. 52 + </ThemedText> 53 + </ThemedView> 54 + </ParallaxScrollView> 55 + ); 56 + } 57 + 58 + const styles = StyleSheet.create({ 59 + titleContainer: { 60 + flexDirection: 'row', 61 + alignItems: 'center', 62 + gap: 8, 63 + }, 64 + stepContainer: { 65 + gap: 8, 66 + marginBottom: 8, 67 + }, 68 + reactLogo: { 69 + height: 178, 70 + width: 290, 71 + bottom: 0, 72 + left: 0, 73 + position: 'absolute', 74 + }, 75 + });
+32
app/+not-found.tsx
··· 1 + import { Link, Stack } from 'expo-router'; 2 + import { StyleSheet } from 'react-native'; 3 + 4 + import { ThemedText } from '@/components/ThemedText'; 5 + import { ThemedView } from '@/components/ThemedView'; 6 + 7 + export default function NotFoundScreen() { 8 + return ( 9 + <> 10 + <Stack.Screen options={{ title: 'Oops!' }} /> 11 + <ThemedView style={styles.container}> 12 + <ThemedText type="title">This screen does not exist.</ThemedText> 13 + <Link href="/" style={styles.link}> 14 + <ThemedText type="link">Go to home screen!</ThemedText> 15 + </Link> 16 + </ThemedView> 17 + </> 18 + ); 19 + } 20 + 21 + const styles = StyleSheet.create({ 22 + container: { 23 + flex: 1, 24 + alignItems: 'center', 25 + justifyContent: 'center', 26 + padding: 20, 27 + }, 28 + link: { 29 + marginTop: 15, 30 + paddingVertical: 15, 31 + }, 32 + });
+29
app/_layout.tsx
··· 1 + import { DarkTheme, DefaultTheme, ThemeProvider } from '@react-navigation/native'; 2 + import { useFonts } from 'expo-font'; 3 + import { Stack } from 'expo-router'; 4 + import { StatusBar } from 'expo-status-bar'; 5 + import 'react-native-reanimated'; 6 + 7 + import { useColorScheme } from '@/hooks/useColorScheme'; 8 + 9 + export default function RootLayout() { 10 + const colorScheme = useColorScheme(); 11 + const [loaded] = useFonts({ 12 + SpaceMono: require('../assets/fonts/SpaceMono-Regular.ttf'), 13 + }); 14 + 15 + if (!loaded) { 16 + // Async font loading only occurs in development. 17 + return null; 18 + } 19 + 20 + return ( 21 + <ThemeProvider value={colorScheme === 'dark' ? DarkTheme : DefaultTheme}> 22 + <Stack> 23 + <Stack.Screen name="(tabs)" options={{ headerShown: false }} /> 24 + <Stack.Screen name="+not-found" /> 25 + </Stack> 26 + <StatusBar style="auto" /> 27 + </ThemeProvider> 28 + ); 29 + }
assets/fonts/SpaceMono-Regular.ttf

This is a binary file and will not be displayed.

assets/images/adaptive-icon.png

This is a binary file and will not be displayed.

assets/images/favicon.png

This is a binary file and will not be displayed.

assets/images/icon.png

This is a binary file and will not be displayed.

assets/images/partial-react-logo.png

This is a binary file and will not be displayed.

assets/images/react-logo.png

This is a binary file and will not be displayed.

assets/images/react-logo@2x.png

This is a binary file and will not be displayed.

assets/images/react-logo@3x.png

This is a binary file and will not be displayed.

assets/images/splash-icon.png

This is a binary file and will not be displayed.

+45
components/Collapsible.tsx
··· 1 + import { PropsWithChildren, useState } from 'react'; 2 + import { StyleSheet, TouchableOpacity } from 'react-native'; 3 + 4 + import { ThemedText } from '@/components/ThemedText'; 5 + import { ThemedView } from '@/components/ThemedView'; 6 + import { IconSymbol } from '@/components/ui/IconSymbol'; 7 + import { Colors } from '@/constants/Colors'; 8 + import { useColorScheme } from '@/hooks/useColorScheme'; 9 + 10 + export function Collapsible({ children, title }: PropsWithChildren & { title: string }) { 11 + const [isOpen, setIsOpen] = useState(false); 12 + const theme = useColorScheme() ?? 'light'; 13 + 14 + return ( 15 + <ThemedView> 16 + <TouchableOpacity 17 + style={styles.heading} 18 + onPress={() => setIsOpen((value) => !value)} 19 + activeOpacity={0.8}> 20 + <IconSymbol 21 + name="chevron.right" 22 + size={18} 23 + weight="medium" 24 + color={theme === 'light' ? Colors.light.icon : Colors.dark.icon} 25 + style={{ transform: [{ rotate: isOpen ? '90deg' : '0deg' }] }} 26 + /> 27 + 28 + <ThemedText type="defaultSemiBold">{title}</ThemedText> 29 + </TouchableOpacity> 30 + {isOpen && <ThemedView style={styles.content}>{children}</ThemedView>} 31 + </ThemedView> 32 + ); 33 + } 34 + 35 + const styles = StyleSheet.create({ 36 + heading: { 37 + flexDirection: 'row', 38 + alignItems: 'center', 39 + gap: 6, 40 + }, 41 + content: { 42 + marginTop: 6, 43 + marginLeft: 24, 44 + }, 45 + });
+24
components/ExternalLink.tsx
··· 1 + import { Href, Link } from 'expo-router'; 2 + import { openBrowserAsync } from 'expo-web-browser'; 3 + import { type ComponentProps } from 'react'; 4 + import { Platform } from 'react-native'; 5 + 6 + type Props = Omit<ComponentProps<typeof Link>, 'href'> & { href: Href & string }; 7 + 8 + export function ExternalLink({ href, ...rest }: Props) { 9 + return ( 10 + <Link 11 + target="_blank" 12 + {...rest} 13 + href={href} 14 + onPress={async (event) => { 15 + if (Platform.OS !== 'web') { 16 + // Prevent the default behavior of linking to the default browser on native. 17 + event.preventDefault(); 18 + // Open the link in an in-app browser. 19 + await openBrowserAsync(href); 20 + } 21 + }} 22 + /> 23 + ); 24 + }
+18
components/HapticTab.tsx
··· 1 + import { BottomTabBarButtonProps } from '@react-navigation/bottom-tabs'; 2 + import { PlatformPressable } from '@react-navigation/elements'; 3 + import * as Haptics from 'expo-haptics'; 4 + 5 + export function HapticTab(props: BottomTabBarButtonProps) { 6 + return ( 7 + <PlatformPressable 8 + {...props} 9 + onPressIn={(ev) => { 10 + if (process.env.EXPO_OS === 'ios') { 11 + // Add a soft haptic feedback when pressing down on the tabs. 12 + Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light); 13 + } 14 + props.onPressIn?.(ev); 15 + }} 16 + /> 17 + ); 18 + }
+40
components/HelloWave.tsx
··· 1 + import { useEffect } from 'react'; 2 + import { StyleSheet } from 'react-native'; 3 + import Animated, { 4 + useAnimatedStyle, 5 + useSharedValue, 6 + withRepeat, 7 + withSequence, 8 + withTiming, 9 + } from 'react-native-reanimated'; 10 + 11 + import { ThemedText } from '@/components/ThemedText'; 12 + 13 + export function HelloWave() { 14 + const rotationAnimation = useSharedValue(0); 15 + 16 + useEffect(() => { 17 + rotationAnimation.value = withRepeat( 18 + withSequence(withTiming(25, { duration: 150 }), withTiming(0, { duration: 150 })), 19 + 4 // Run the animation 4 times 20 + ); 21 + }, [rotationAnimation]); 22 + 23 + const animatedStyle = useAnimatedStyle(() => ({ 24 + transform: [{ rotate: `${rotationAnimation.value}deg` }], 25 + })); 26 + 27 + return ( 28 + <Animated.View style={animatedStyle}> 29 + <ThemedText style={styles.text}>👋</ThemedText> 30 + </Animated.View> 31 + ); 32 + } 33 + 34 + const styles = StyleSheet.create({ 35 + text: { 36 + fontSize: 28, 37 + lineHeight: 32, 38 + marginTop: -6, 39 + }, 40 + });
+82
components/ParallaxScrollView.tsx
··· 1 + import type { PropsWithChildren, ReactElement } from 'react'; 2 + import { StyleSheet } from 'react-native'; 3 + import Animated, { 4 + interpolate, 5 + useAnimatedRef, 6 + useAnimatedStyle, 7 + useScrollViewOffset, 8 + } from 'react-native-reanimated'; 9 + 10 + import { ThemedView } from '@/components/ThemedView'; 11 + import { useBottomTabOverflow } from '@/components/ui/TabBarBackground'; 12 + import { useColorScheme } from '@/hooks/useColorScheme'; 13 + 14 + const HEADER_HEIGHT = 250; 15 + 16 + type Props = PropsWithChildren<{ 17 + headerImage: ReactElement; 18 + headerBackgroundColor: { dark: string; light: string }; 19 + }>; 20 + 21 + export default function ParallaxScrollView({ 22 + children, 23 + headerImage, 24 + headerBackgroundColor, 25 + }: Props) { 26 + const colorScheme = useColorScheme() ?? 'light'; 27 + const scrollRef = useAnimatedRef<Animated.ScrollView>(); 28 + const scrollOffset = useScrollViewOffset(scrollRef); 29 + const bottom = useBottomTabOverflow(); 30 + const headerAnimatedStyle = useAnimatedStyle(() => { 31 + return { 32 + transform: [ 33 + { 34 + translateY: interpolate( 35 + scrollOffset.value, 36 + [-HEADER_HEIGHT, 0, HEADER_HEIGHT], 37 + [-HEADER_HEIGHT / 2, 0, HEADER_HEIGHT * 0.75] 38 + ), 39 + }, 40 + { 41 + scale: interpolate(scrollOffset.value, [-HEADER_HEIGHT, 0, HEADER_HEIGHT], [2, 1, 1]), 42 + }, 43 + ], 44 + }; 45 + }); 46 + 47 + return ( 48 + <ThemedView style={styles.container}> 49 + <Animated.ScrollView 50 + ref={scrollRef} 51 + scrollEventThrottle={16} 52 + scrollIndicatorInsets={{ bottom }} 53 + contentContainerStyle={{ paddingBottom: bottom }}> 54 + <Animated.View 55 + style={[ 56 + styles.header, 57 + { backgroundColor: headerBackgroundColor[colorScheme] }, 58 + headerAnimatedStyle, 59 + ]}> 60 + {headerImage} 61 + </Animated.View> 62 + <ThemedView style={styles.content}>{children}</ThemedView> 63 + </Animated.ScrollView> 64 + </ThemedView> 65 + ); 66 + } 67 + 68 + const styles = StyleSheet.create({ 69 + container: { 70 + flex: 1, 71 + }, 72 + header: { 73 + height: HEADER_HEIGHT, 74 + overflow: 'hidden', 75 + }, 76 + content: { 77 + flex: 1, 78 + padding: 32, 79 + gap: 16, 80 + overflow: 'hidden', 81 + }, 82 + });
+60
components/ThemedText.tsx
··· 1 + import { StyleSheet, Text, type TextProps } from 'react-native'; 2 + 3 + import { useThemeColor } from '@/hooks/useThemeColor'; 4 + 5 + export type ThemedTextProps = TextProps & { 6 + lightColor?: string; 7 + darkColor?: string; 8 + type?: 'default' | 'title' | 'defaultSemiBold' | 'subtitle' | 'link'; 9 + }; 10 + 11 + export function ThemedText({ 12 + style, 13 + lightColor, 14 + darkColor, 15 + type = 'default', 16 + ...rest 17 + }: ThemedTextProps) { 18 + const color = useThemeColor({ light: lightColor, dark: darkColor }, 'text'); 19 + 20 + return ( 21 + <Text 22 + style={[ 23 + { color }, 24 + type === 'default' ? styles.default : undefined, 25 + type === 'title' ? styles.title : undefined, 26 + type === 'defaultSemiBold' ? styles.defaultSemiBold : undefined, 27 + type === 'subtitle' ? styles.subtitle : undefined, 28 + type === 'link' ? styles.link : undefined, 29 + style, 30 + ]} 31 + {...rest} 32 + /> 33 + ); 34 + } 35 + 36 + const styles = StyleSheet.create({ 37 + default: { 38 + fontSize: 16, 39 + lineHeight: 24, 40 + }, 41 + defaultSemiBold: { 42 + fontSize: 16, 43 + lineHeight: 24, 44 + fontWeight: '600', 45 + }, 46 + title: { 47 + fontSize: 32, 48 + fontWeight: 'bold', 49 + lineHeight: 32, 50 + }, 51 + subtitle: { 52 + fontSize: 20, 53 + fontWeight: 'bold', 54 + }, 55 + link: { 56 + lineHeight: 30, 57 + fontSize: 16, 58 + color: '#0a7ea4', 59 + }, 60 + });
+14
components/ThemedView.tsx
··· 1 + import { View, type ViewProps } from 'react-native'; 2 + 3 + import { useThemeColor } from '@/hooks/useThemeColor'; 4 + 5 + export type ThemedViewProps = ViewProps & { 6 + lightColor?: string; 7 + darkColor?: string; 8 + }; 9 + 10 + export function ThemedView({ style, lightColor, darkColor, ...otherProps }: ThemedViewProps) { 11 + const backgroundColor = useThemeColor({ light: lightColor, dark: darkColor }, 'background'); 12 + 13 + return <View style={[{ backgroundColor }, style]} {...otherProps} />; 14 + }
+32
components/ui/IconSymbol.ios.tsx
··· 1 + import { SymbolView, SymbolViewProps, SymbolWeight } from 'expo-symbols'; 2 + import { StyleProp, ViewStyle } from 'react-native'; 3 + 4 + export function IconSymbol({ 5 + name, 6 + size = 24, 7 + color, 8 + style, 9 + weight = 'regular', 10 + }: { 11 + name: SymbolViewProps['name']; 12 + size?: number; 13 + color: string; 14 + style?: StyleProp<ViewStyle>; 15 + weight?: SymbolWeight; 16 + }) { 17 + return ( 18 + <SymbolView 19 + weight={weight} 20 + tintColor={color} 21 + resizeMode="scaleAspectFit" 22 + name={name} 23 + style={[ 24 + { 25 + width: size, 26 + height: size, 27 + }, 28 + style, 29 + ]} 30 + /> 31 + ); 32 + }
+41
components/ui/IconSymbol.tsx
··· 1 + // Fallback for using MaterialIcons on Android and web. 2 + 3 + import MaterialIcons from '@expo/vector-icons/MaterialIcons'; 4 + import { SymbolWeight, SymbolViewProps } from 'expo-symbols'; 5 + import { ComponentProps } from 'react'; 6 + import { OpaqueColorValue, type StyleProp, type TextStyle } from 'react-native'; 7 + 8 + type IconMapping = Record<SymbolViewProps['name'], ComponentProps<typeof MaterialIcons>['name']>; 9 + type IconSymbolName = keyof typeof MAPPING; 10 + 11 + /** 12 + * Add your SF Symbols to Material Icons mappings here. 13 + * - see Material Icons in the [Icons Directory](https://icons.expo.fyi). 14 + * - see SF Symbols in the [SF Symbols](https://developer.apple.com/sf-symbols/) app. 15 + */ 16 + const MAPPING = { 17 + 'house.fill': 'home', 18 + 'paperplane.fill': 'send', 19 + 'chevron.left.forwardslash.chevron.right': 'code', 20 + 'chevron.right': 'chevron-right', 21 + } as IconMapping; 22 + 23 + /** 24 + * An icon component that uses native SF Symbols on iOS, and Material Icons on Android and web. 25 + * This ensures a consistent look across platforms, and optimal resource usage. 26 + * Icon `name`s are based on SF Symbols and require manual mapping to Material Icons. 27 + */ 28 + export function IconSymbol({ 29 + name, 30 + size = 24, 31 + color, 32 + style, 33 + }: { 34 + name: IconSymbolName; 35 + size?: number; 36 + color: string | OpaqueColorValue; 37 + style?: StyleProp<TextStyle>; 38 + weight?: SymbolWeight; 39 + }) { 40 + return <MaterialIcons color={color} size={size} name={MAPPING[name]} style={style} />; 41 + }
+19
components/ui/TabBarBackground.ios.tsx
··· 1 + import { useBottomTabBarHeight } from '@react-navigation/bottom-tabs'; 2 + import { BlurView } from 'expo-blur'; 3 + import { StyleSheet } from 'react-native'; 4 + 5 + export default function BlurTabBarBackground() { 6 + return ( 7 + <BlurView 8 + // System chrome material automatically adapts to the system's theme 9 + // and matches the native tab bar appearance on iOS. 10 + tint="systemChromeMaterial" 11 + intensity={100} 12 + style={StyleSheet.absoluteFill} 13 + /> 14 + ); 15 + } 16 + 17 + export function useBottomTabOverflow() { 18 + return useBottomTabBarHeight(); 19 + }
+6
components/ui/TabBarBackground.tsx
··· 1 + // This is a shim for web and Android where the tab bar is generally opaque. 2 + export default undefined; 3 + 4 + export function useBottomTabOverflow() { 5 + return 0; 6 + }
+26
constants/Colors.ts
··· 1 + /** 2 + * Below are the colors that are used in the app. The colors are defined in the light and dark mode. 3 + * There are many other ways to style your app. For example, [Nativewind](https://www.nativewind.dev/), [Tamagui](https://tamagui.dev/), [unistyles](https://reactnativeunistyles.vercel.app), etc. 4 + */ 5 + 6 + const tintColorLight = '#0a7ea4'; 7 + const tintColorDark = '#fff'; 8 + 9 + export const Colors = { 10 + light: { 11 + text: '#11181C', 12 + background: '#fff', 13 + tint: tintColorLight, 14 + icon: '#687076', 15 + tabIconDefault: '#687076', 16 + tabIconSelected: tintColorLight, 17 + }, 18 + dark: { 19 + text: '#ECEDEE', 20 + background: '#151718', 21 + tint: tintColorDark, 22 + icon: '#9BA1A6', 23 + tabIconDefault: '#9BA1A6', 24 + tabIconSelected: tintColorDark, 25 + }, 26 + };
+10
eslint.config.js
··· 1 + // https://docs.expo.dev/guides/using-eslint/ 2 + const { defineConfig } = require('eslint/config'); 3 + const expoConfig = require('eslint-config-expo/flat'); 4 + 5 + module.exports = defineConfig([ 6 + expoConfig, 7 + { 8 + ignores: ['dist/*'], 9 + }, 10 + ]);
+1
hooks/useColorScheme.ts
··· 1 + export { useColorScheme } from 'react-native';
+21
hooks/useColorScheme.web.ts
··· 1 + import { useEffect, useState } from 'react'; 2 + import { useColorScheme as useRNColorScheme } from 'react-native'; 3 + 4 + /** 5 + * To support static rendering, this value needs to be re-calculated on the client side for web 6 + */ 7 + export function useColorScheme() { 8 + const [hasHydrated, setHasHydrated] = useState(false); 9 + 10 + useEffect(() => { 11 + setHasHydrated(true); 12 + }, []); 13 + 14 + const colorScheme = useRNColorScheme(); 15 + 16 + if (hasHydrated) { 17 + return colorScheme; 18 + } 19 + 20 + return 'light'; 21 + }
+21
hooks/useThemeColor.ts
··· 1 + /** 2 + * Learn more about light and dark modes: 3 + * https://docs.expo.dev/guides/color-schemes/ 4 + */ 5 + 6 + import { Colors } from '@/constants/Colors'; 7 + import { useColorScheme } from '@/hooks/useColorScheme'; 8 + 9 + export function useThemeColor( 10 + props: { light?: string; dark?: string }, 11 + colorName: keyof typeof Colors.light & keyof typeof Colors.dark 12 + ) { 13 + const theme = useColorScheme() ?? 'light'; 14 + const colorFromProps = props[theme]; 15 + 16 + if (colorFromProps) { 17 + return colorFromProps; 18 + } else { 19 + return Colors[theme][colorName]; 20 + } 21 + }
+12848
package-lock.json
··· 1 + { 2 + "name": "atproto-auth-demo", 3 + "version": "1.0.0", 4 + "lockfileVersion": 3, 5 + "requires": true, 6 + "packages": { 7 + "": { 8 + "name": "atproto-auth-demo", 9 + "version": "1.0.0", 10 + "dependencies": { 11 + "@expo/vector-icons": "^14.1.0", 12 + "@react-navigation/bottom-tabs": "^7.3.10", 13 + "@react-navigation/elements": "^2.3.8", 14 + "@react-navigation/native": "^7.1.6", 15 + "expo": "~53.0.20", 16 + "expo-blur": "~14.1.5", 17 + "expo-constants": "~17.1.7", 18 + "expo-font": "~13.3.2", 19 + "expo-haptics": "~14.1.4", 20 + "expo-image": "~2.4.0", 21 + "expo-linking": "~7.1.7", 22 + "expo-router": "~5.1.4", 23 + "expo-splash-screen": "~0.30.10", 24 + "expo-status-bar": "~2.2.3", 25 + "expo-symbols": "~0.4.5", 26 + "expo-system-ui": "~5.0.10", 27 + "expo-web-browser": "~14.2.0", 28 + "react": "19.0.0", 29 + "react-dom": "19.0.0", 30 + "react-native": "0.79.5", 31 + "react-native-gesture-handler": "~2.24.0", 32 + "react-native-reanimated": "~3.17.4", 33 + "react-native-safe-area-context": "5.4.0", 34 + "react-native-screens": "~4.11.1", 35 + "react-native-web": "~0.20.0", 36 + "react-native-webview": "13.13.5" 37 + }, 38 + "devDependencies": { 39 + "@babel/core": "^7.25.2", 40 + "@types/react": "~19.0.10", 41 + "eslint": "^9.25.0", 42 + "eslint-config-expo": "~9.2.0", 43 + "typescript": "~5.8.3" 44 + } 45 + }, 46 + "node_modules/@0no-co/graphql.web": { 47 + "version": "1.2.0", 48 + "resolved": "https://registry.npmjs.org/@0no-co/graphql.web/-/graphql.web-1.2.0.tgz", 49 + "integrity": "sha512-/1iHy9TTr63gE1YcR5idjx8UREz1s0kFhydf3bBLCXyqjhkIc6igAzTOx3zPifCwFR87tsh/4Pa9cNts6d2otw==", 50 + "license": "MIT", 51 + "peerDependencies": { 52 + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" 53 + }, 54 + "peerDependenciesMeta": { 55 + "graphql": { 56 + "optional": true 57 + } 58 + } 59 + }, 60 + "node_modules/@ampproject/remapping": { 61 + "version": "2.3.0", 62 + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 63 + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 64 + "license": "Apache-2.0", 65 + "dependencies": { 66 + "@jridgewell/gen-mapping": "^0.3.5", 67 + "@jridgewell/trace-mapping": "^0.3.24" 68 + }, 69 + "engines": { 70 + "node": ">=6.0.0" 71 + } 72 + }, 73 + "node_modules/@babel/code-frame": { 74 + "version": "7.27.1", 75 + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", 76 + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", 77 + "license": "MIT", 78 + "dependencies": { 79 + "@babel/helper-validator-identifier": "^7.27.1", 80 + "js-tokens": "^4.0.0", 81 + "picocolors": "^1.1.1" 82 + }, 83 + "engines": { 84 + "node": ">=6.9.0" 85 + } 86 + }, 87 + "node_modules/@babel/compat-data": { 88 + "version": "7.28.0", 89 + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.0.tgz", 90 + "integrity": "sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==", 91 + "license": "MIT", 92 + "engines": { 93 + "node": ">=6.9.0" 94 + } 95 + }, 96 + "node_modules/@babel/core": { 97 + "version": "7.28.3", 98 + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.3.tgz", 99 + "integrity": "sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ==", 100 + "license": "MIT", 101 + "dependencies": { 102 + "@ampproject/remapping": "^2.2.0", 103 + "@babel/code-frame": "^7.27.1", 104 + "@babel/generator": "^7.28.3", 105 + "@babel/helper-compilation-targets": "^7.27.2", 106 + "@babel/helper-module-transforms": "^7.28.3", 107 + "@babel/helpers": "^7.28.3", 108 + "@babel/parser": "^7.28.3", 109 + "@babel/template": "^7.27.2", 110 + "@babel/traverse": "^7.28.3", 111 + "@babel/types": "^7.28.2", 112 + "convert-source-map": "^2.0.0", 113 + "debug": "^4.1.0", 114 + "gensync": "^1.0.0-beta.2", 115 + "json5": "^2.2.3", 116 + "semver": "^6.3.1" 117 + }, 118 + "engines": { 119 + "node": ">=6.9.0" 120 + }, 121 + "funding": { 122 + "type": "opencollective", 123 + "url": "https://opencollective.com/babel" 124 + } 125 + }, 126 + "node_modules/@babel/generator": { 127 + "version": "7.28.3", 128 + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.3.tgz", 129 + "integrity": "sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==", 130 + "license": "MIT", 131 + "dependencies": { 132 + "@babel/parser": "^7.28.3", 133 + "@babel/types": "^7.28.2", 134 + "@jridgewell/gen-mapping": "^0.3.12", 135 + "@jridgewell/trace-mapping": "^0.3.28", 136 + "jsesc": "^3.0.2" 137 + }, 138 + "engines": { 139 + "node": ">=6.9.0" 140 + } 141 + }, 142 + "node_modules/@babel/helper-annotate-as-pure": { 143 + "version": "7.27.3", 144 + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", 145 + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", 146 + "license": "MIT", 147 + "dependencies": { 148 + "@babel/types": "^7.27.3" 149 + }, 150 + "engines": { 151 + "node": ">=6.9.0" 152 + } 153 + }, 154 + "node_modules/@babel/helper-compilation-targets": { 155 + "version": "7.27.2", 156 + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", 157 + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", 158 + "license": "MIT", 159 + "dependencies": { 160 + "@babel/compat-data": "^7.27.2", 161 + "@babel/helper-validator-option": "^7.27.1", 162 + "browserslist": "^4.24.0", 163 + "lru-cache": "^5.1.1", 164 + "semver": "^6.3.1" 165 + }, 166 + "engines": { 167 + "node": ">=6.9.0" 168 + } 169 + }, 170 + "node_modules/@babel/helper-create-class-features-plugin": { 171 + "version": "7.28.3", 172 + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.3.tgz", 173 + "integrity": "sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==", 174 + "license": "MIT", 175 + "dependencies": { 176 + "@babel/helper-annotate-as-pure": "^7.27.3", 177 + "@babel/helper-member-expression-to-functions": "^7.27.1", 178 + "@babel/helper-optimise-call-expression": "^7.27.1", 179 + "@babel/helper-replace-supers": "^7.27.1", 180 + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", 181 + "@babel/traverse": "^7.28.3", 182 + "semver": "^6.3.1" 183 + }, 184 + "engines": { 185 + "node": ">=6.9.0" 186 + }, 187 + "peerDependencies": { 188 + "@babel/core": "^7.0.0" 189 + } 190 + }, 191 + "node_modules/@babel/helper-create-regexp-features-plugin": { 192 + "version": "7.27.1", 193 + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.27.1.tgz", 194 + "integrity": "sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==", 195 + "license": "MIT", 196 + "dependencies": { 197 + "@babel/helper-annotate-as-pure": "^7.27.1", 198 + "regexpu-core": "^6.2.0", 199 + "semver": "^6.3.1" 200 + }, 201 + "engines": { 202 + "node": ">=6.9.0" 203 + }, 204 + "peerDependencies": { 205 + "@babel/core": "^7.0.0" 206 + } 207 + }, 208 + "node_modules/@babel/helper-define-polyfill-provider": { 209 + "version": "0.6.5", 210 + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz", 211 + "integrity": "sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==", 212 + "license": "MIT", 213 + "dependencies": { 214 + "@babel/helper-compilation-targets": "^7.27.2", 215 + "@babel/helper-plugin-utils": "^7.27.1", 216 + "debug": "^4.4.1", 217 + "lodash.debounce": "^4.0.8", 218 + "resolve": "^1.22.10" 219 + }, 220 + "peerDependencies": { 221 + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" 222 + } 223 + }, 224 + "node_modules/@babel/helper-globals": { 225 + "version": "7.28.0", 226 + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", 227 + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", 228 + "license": "MIT", 229 + "engines": { 230 + "node": ">=6.9.0" 231 + } 232 + }, 233 + "node_modules/@babel/helper-member-expression-to-functions": { 234 + "version": "7.27.1", 235 + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.27.1.tgz", 236 + "integrity": "sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==", 237 + "license": "MIT", 238 + "dependencies": { 239 + "@babel/traverse": "^7.27.1", 240 + "@babel/types": "^7.27.1" 241 + }, 242 + "engines": { 243 + "node": ">=6.9.0" 244 + } 245 + }, 246 + "node_modules/@babel/helper-module-imports": { 247 + "version": "7.27.1", 248 + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", 249 + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", 250 + "license": "MIT", 251 + "dependencies": { 252 + "@babel/traverse": "^7.27.1", 253 + "@babel/types": "^7.27.1" 254 + }, 255 + "engines": { 256 + "node": ">=6.9.0" 257 + } 258 + }, 259 + "node_modules/@babel/helper-module-transforms": { 260 + "version": "7.28.3", 261 + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", 262 + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", 263 + "license": "MIT", 264 + "dependencies": { 265 + "@babel/helper-module-imports": "^7.27.1", 266 + "@babel/helper-validator-identifier": "^7.27.1", 267 + "@babel/traverse": "^7.28.3" 268 + }, 269 + "engines": { 270 + "node": ">=6.9.0" 271 + }, 272 + "peerDependencies": { 273 + "@babel/core": "^7.0.0" 274 + } 275 + }, 276 + "node_modules/@babel/helper-optimise-call-expression": { 277 + "version": "7.27.1", 278 + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", 279 + "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", 280 + "license": "MIT", 281 + "dependencies": { 282 + "@babel/types": "^7.27.1" 283 + }, 284 + "engines": { 285 + "node": ">=6.9.0" 286 + } 287 + }, 288 + "node_modules/@babel/helper-plugin-utils": { 289 + "version": "7.27.1", 290 + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", 291 + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", 292 + "license": "MIT", 293 + "engines": { 294 + "node": ">=6.9.0" 295 + } 296 + }, 297 + "node_modules/@babel/helper-remap-async-to-generator": { 298 + "version": "7.27.1", 299 + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz", 300 + "integrity": "sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==", 301 + "license": "MIT", 302 + "dependencies": { 303 + "@babel/helper-annotate-as-pure": "^7.27.1", 304 + "@babel/helper-wrap-function": "^7.27.1", 305 + "@babel/traverse": "^7.27.1" 306 + }, 307 + "engines": { 308 + "node": ">=6.9.0" 309 + }, 310 + "peerDependencies": { 311 + "@babel/core": "^7.0.0" 312 + } 313 + }, 314 + "node_modules/@babel/helper-replace-supers": { 315 + "version": "7.27.1", 316 + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz", 317 + "integrity": "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==", 318 + "license": "MIT", 319 + "dependencies": { 320 + "@babel/helper-member-expression-to-functions": "^7.27.1", 321 + "@babel/helper-optimise-call-expression": "^7.27.1", 322 + "@babel/traverse": "^7.27.1" 323 + }, 324 + "engines": { 325 + "node": ">=6.9.0" 326 + }, 327 + "peerDependencies": { 328 + "@babel/core": "^7.0.0" 329 + } 330 + }, 331 + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { 332 + "version": "7.27.1", 333 + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", 334 + "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", 335 + "license": "MIT", 336 + "dependencies": { 337 + "@babel/traverse": "^7.27.1", 338 + "@babel/types": "^7.27.1" 339 + }, 340 + "engines": { 341 + "node": ">=6.9.0" 342 + } 343 + }, 344 + "node_modules/@babel/helper-string-parser": { 345 + "version": "7.27.1", 346 + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", 347 + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", 348 + "license": "MIT", 349 + "engines": { 350 + "node": ">=6.9.0" 351 + } 352 + }, 353 + "node_modules/@babel/helper-validator-identifier": { 354 + "version": "7.27.1", 355 + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", 356 + "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", 357 + "license": "MIT", 358 + "engines": { 359 + "node": ">=6.9.0" 360 + } 361 + }, 362 + "node_modules/@babel/helper-validator-option": { 363 + "version": "7.27.1", 364 + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", 365 + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", 366 + "license": "MIT", 367 + "engines": { 368 + "node": ">=6.9.0" 369 + } 370 + }, 371 + "node_modules/@babel/helper-wrap-function": { 372 + "version": "7.28.3", 373 + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.28.3.tgz", 374 + "integrity": "sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==", 375 + "license": "MIT", 376 + "dependencies": { 377 + "@babel/template": "^7.27.2", 378 + "@babel/traverse": "^7.28.3", 379 + "@babel/types": "^7.28.2" 380 + }, 381 + "engines": { 382 + "node": ">=6.9.0" 383 + } 384 + }, 385 + "node_modules/@babel/helpers": { 386 + "version": "7.28.3", 387 + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.3.tgz", 388 + "integrity": "sha512-PTNtvUQihsAsDHMOP5pfobP8C6CM4JWXmP8DrEIt46c3r2bf87Ua1zoqevsMo9g+tWDwgWrFP5EIxuBx5RudAw==", 389 + "license": "MIT", 390 + "dependencies": { 391 + "@babel/template": "^7.27.2", 392 + "@babel/types": "^7.28.2" 393 + }, 394 + "engines": { 395 + "node": ">=6.9.0" 396 + } 397 + }, 398 + "node_modules/@babel/highlight": { 399 + "version": "7.25.9", 400 + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.9.tgz", 401 + "integrity": "sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==", 402 + "license": "MIT", 403 + "dependencies": { 404 + "@babel/helper-validator-identifier": "^7.25.9", 405 + "chalk": "^2.4.2", 406 + "js-tokens": "^4.0.0", 407 + "picocolors": "^1.0.0" 408 + }, 409 + "engines": { 410 + "node": ">=6.9.0" 411 + } 412 + }, 413 + "node_modules/@babel/highlight/node_modules/ansi-styles": { 414 + "version": "3.2.1", 415 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 416 + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 417 + "license": "MIT", 418 + "dependencies": { 419 + "color-convert": "^1.9.0" 420 + }, 421 + "engines": { 422 + "node": ">=4" 423 + } 424 + }, 425 + "node_modules/@babel/highlight/node_modules/chalk": { 426 + "version": "2.4.2", 427 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 428 + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 429 + "license": "MIT", 430 + "dependencies": { 431 + "ansi-styles": "^3.2.1", 432 + "escape-string-regexp": "^1.0.5", 433 + "supports-color": "^5.3.0" 434 + }, 435 + "engines": { 436 + "node": ">=4" 437 + } 438 + }, 439 + "node_modules/@babel/highlight/node_modules/color-convert": { 440 + "version": "1.9.3", 441 + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 442 + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 443 + "license": "MIT", 444 + "dependencies": { 445 + "color-name": "1.1.3" 446 + } 447 + }, 448 + "node_modules/@babel/highlight/node_modules/color-name": { 449 + "version": "1.1.3", 450 + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 451 + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 452 + "license": "MIT" 453 + }, 454 + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { 455 + "version": "1.0.5", 456 + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 457 + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 458 + "license": "MIT", 459 + "engines": { 460 + "node": ">=0.8.0" 461 + } 462 + }, 463 + "node_modules/@babel/highlight/node_modules/has-flag": { 464 + "version": "3.0.0", 465 + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 466 + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 467 + "license": "MIT", 468 + "engines": { 469 + "node": ">=4" 470 + } 471 + }, 472 + "node_modules/@babel/highlight/node_modules/supports-color": { 473 + "version": "5.5.0", 474 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 475 + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 476 + "license": "MIT", 477 + "dependencies": { 478 + "has-flag": "^3.0.0" 479 + }, 480 + "engines": { 481 + "node": ">=4" 482 + } 483 + }, 484 + "node_modules/@babel/parser": { 485 + "version": "7.28.3", 486 + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.3.tgz", 487 + "integrity": "sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==", 488 + "license": "MIT", 489 + "dependencies": { 490 + "@babel/types": "^7.28.2" 491 + }, 492 + "bin": { 493 + "parser": "bin/babel-parser.js" 494 + }, 495 + "engines": { 496 + "node": ">=6.0.0" 497 + } 498 + }, 499 + "node_modules/@babel/plugin-proposal-decorators": { 500 + "version": "7.28.0", 501 + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.28.0.tgz", 502 + "integrity": "sha512-zOiZqvANjWDUaUS9xMxbMcK/Zccztbe/6ikvUXaG9nsPH3w6qh5UaPGAnirI/WhIbZ8m3OHU0ReyPrknG+ZKeg==", 503 + "license": "MIT", 504 + "dependencies": { 505 + "@babel/helper-create-class-features-plugin": "^7.27.1", 506 + "@babel/helper-plugin-utils": "^7.27.1", 507 + "@babel/plugin-syntax-decorators": "^7.27.1" 508 + }, 509 + "engines": { 510 + "node": ">=6.9.0" 511 + }, 512 + "peerDependencies": { 513 + "@babel/core": "^7.0.0-0" 514 + } 515 + }, 516 + "node_modules/@babel/plugin-proposal-export-default-from": { 517 + "version": "7.27.1", 518 + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.27.1.tgz", 519 + "integrity": "sha512-hjlsMBl1aJc5lp8MoCDEZCiYzlgdRAShOjAfRw6X+GlpLpUPU7c3XNLsKFZbQk/1cRzBlJ7CXg3xJAJMrFa1Uw==", 520 + "license": "MIT", 521 + "dependencies": { 522 + "@babel/helper-plugin-utils": "^7.27.1" 523 + }, 524 + "engines": { 525 + "node": ">=6.9.0" 526 + }, 527 + "peerDependencies": { 528 + "@babel/core": "^7.0.0-0" 529 + } 530 + }, 531 + "node_modules/@babel/plugin-syntax-async-generators": { 532 + "version": "7.8.4", 533 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", 534 + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", 535 + "license": "MIT", 536 + "dependencies": { 537 + "@babel/helper-plugin-utils": "^7.8.0" 538 + }, 539 + "peerDependencies": { 540 + "@babel/core": "^7.0.0-0" 541 + } 542 + }, 543 + "node_modules/@babel/plugin-syntax-bigint": { 544 + "version": "7.8.3", 545 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", 546 + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", 547 + "license": "MIT", 548 + "dependencies": { 549 + "@babel/helper-plugin-utils": "^7.8.0" 550 + }, 551 + "peerDependencies": { 552 + "@babel/core": "^7.0.0-0" 553 + } 554 + }, 555 + "node_modules/@babel/plugin-syntax-class-properties": { 556 + "version": "7.12.13", 557 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", 558 + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", 559 + "license": "MIT", 560 + "dependencies": { 561 + "@babel/helper-plugin-utils": "^7.12.13" 562 + }, 563 + "peerDependencies": { 564 + "@babel/core": "^7.0.0-0" 565 + } 566 + }, 567 + "node_modules/@babel/plugin-syntax-class-static-block": { 568 + "version": "7.14.5", 569 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", 570 + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", 571 + "license": "MIT", 572 + "dependencies": { 573 + "@babel/helper-plugin-utils": "^7.14.5" 574 + }, 575 + "engines": { 576 + "node": ">=6.9.0" 577 + }, 578 + "peerDependencies": { 579 + "@babel/core": "^7.0.0-0" 580 + } 581 + }, 582 + "node_modules/@babel/plugin-syntax-decorators": { 583 + "version": "7.27.1", 584 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.27.1.tgz", 585 + "integrity": "sha512-YMq8Z87Lhl8EGkmb0MwYkt36QnxC+fzCgrl66ereamPlYToRpIk5nUjKUY3QKLWq8mwUB1BgbeXcTJhZOCDg5A==", 586 + "license": "MIT", 587 + "dependencies": { 588 + "@babel/helper-plugin-utils": "^7.27.1" 589 + }, 590 + "engines": { 591 + "node": ">=6.9.0" 592 + }, 593 + "peerDependencies": { 594 + "@babel/core": "^7.0.0-0" 595 + } 596 + }, 597 + "node_modules/@babel/plugin-syntax-dynamic-import": { 598 + "version": "7.8.3", 599 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", 600 + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", 601 + "license": "MIT", 602 + "dependencies": { 603 + "@babel/helper-plugin-utils": "^7.8.0" 604 + }, 605 + "peerDependencies": { 606 + "@babel/core": "^7.0.0-0" 607 + } 608 + }, 609 + "node_modules/@babel/plugin-syntax-export-default-from": { 610 + "version": "7.27.1", 611 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.27.1.tgz", 612 + "integrity": "sha512-eBC/3KSekshx19+N40MzjWqJd7KTEdOoLesAfa4IDFI8eRz5a47i5Oszus6zG/cwIXN63YhgLOMSSNJx49sENg==", 613 + "license": "MIT", 614 + "dependencies": { 615 + "@babel/helper-plugin-utils": "^7.27.1" 616 + }, 617 + "engines": { 618 + "node": ">=6.9.0" 619 + }, 620 + "peerDependencies": { 621 + "@babel/core": "^7.0.0-0" 622 + } 623 + }, 624 + "node_modules/@babel/plugin-syntax-flow": { 625 + "version": "7.27.1", 626 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.27.1.tgz", 627 + "integrity": "sha512-p9OkPbZ5G7UT1MofwYFigGebnrzGJacoBSQM0/6bi/PUMVE+qlWDD/OalvQKbwgQzU6dl0xAv6r4X7Jme0RYxA==", 628 + "license": "MIT", 629 + "dependencies": { 630 + "@babel/helper-plugin-utils": "^7.27.1" 631 + }, 632 + "engines": { 633 + "node": ">=6.9.0" 634 + }, 635 + "peerDependencies": { 636 + "@babel/core": "^7.0.0-0" 637 + } 638 + }, 639 + "node_modules/@babel/plugin-syntax-import-attributes": { 640 + "version": "7.27.1", 641 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz", 642 + "integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==", 643 + "license": "MIT", 644 + "dependencies": { 645 + "@babel/helper-plugin-utils": "^7.27.1" 646 + }, 647 + "engines": { 648 + "node": ">=6.9.0" 649 + }, 650 + "peerDependencies": { 651 + "@babel/core": "^7.0.0-0" 652 + } 653 + }, 654 + "node_modules/@babel/plugin-syntax-import-meta": { 655 + "version": "7.10.4", 656 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", 657 + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", 658 + "license": "MIT", 659 + "dependencies": { 660 + "@babel/helper-plugin-utils": "^7.10.4" 661 + }, 662 + "peerDependencies": { 663 + "@babel/core": "^7.0.0-0" 664 + } 665 + }, 666 + "node_modules/@babel/plugin-syntax-json-strings": { 667 + "version": "7.8.3", 668 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", 669 + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", 670 + "license": "MIT", 671 + "dependencies": { 672 + "@babel/helper-plugin-utils": "^7.8.0" 673 + }, 674 + "peerDependencies": { 675 + "@babel/core": "^7.0.0-0" 676 + } 677 + }, 678 + "node_modules/@babel/plugin-syntax-jsx": { 679 + "version": "7.27.1", 680 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz", 681 + "integrity": "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==", 682 + "license": "MIT", 683 + "dependencies": { 684 + "@babel/helper-plugin-utils": "^7.27.1" 685 + }, 686 + "engines": { 687 + "node": ">=6.9.0" 688 + }, 689 + "peerDependencies": { 690 + "@babel/core": "^7.0.0-0" 691 + } 692 + }, 693 + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { 694 + "version": "7.10.4", 695 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", 696 + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", 697 + "license": "MIT", 698 + "dependencies": { 699 + "@babel/helper-plugin-utils": "^7.10.4" 700 + }, 701 + "peerDependencies": { 702 + "@babel/core": "^7.0.0-0" 703 + } 704 + }, 705 + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { 706 + "version": "7.8.3", 707 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", 708 + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", 709 + "license": "MIT", 710 + "dependencies": { 711 + "@babel/helper-plugin-utils": "^7.8.0" 712 + }, 713 + "peerDependencies": { 714 + "@babel/core": "^7.0.0-0" 715 + } 716 + }, 717 + "node_modules/@babel/plugin-syntax-numeric-separator": { 718 + "version": "7.10.4", 719 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", 720 + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", 721 + "license": "MIT", 722 + "dependencies": { 723 + "@babel/helper-plugin-utils": "^7.10.4" 724 + }, 725 + "peerDependencies": { 726 + "@babel/core": "^7.0.0-0" 727 + } 728 + }, 729 + "node_modules/@babel/plugin-syntax-object-rest-spread": { 730 + "version": "7.8.3", 731 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", 732 + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", 733 + "license": "MIT", 734 + "dependencies": { 735 + "@babel/helper-plugin-utils": "^7.8.0" 736 + }, 737 + "peerDependencies": { 738 + "@babel/core": "^7.0.0-0" 739 + } 740 + }, 741 + "node_modules/@babel/plugin-syntax-optional-catch-binding": { 742 + "version": "7.8.3", 743 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", 744 + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", 745 + "license": "MIT", 746 + "dependencies": { 747 + "@babel/helper-plugin-utils": "^7.8.0" 748 + }, 749 + "peerDependencies": { 750 + "@babel/core": "^7.0.0-0" 751 + } 752 + }, 753 + "node_modules/@babel/plugin-syntax-optional-chaining": { 754 + "version": "7.8.3", 755 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", 756 + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", 757 + "license": "MIT", 758 + "dependencies": { 759 + "@babel/helper-plugin-utils": "^7.8.0" 760 + }, 761 + "peerDependencies": { 762 + "@babel/core": "^7.0.0-0" 763 + } 764 + }, 765 + "node_modules/@babel/plugin-syntax-private-property-in-object": { 766 + "version": "7.14.5", 767 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", 768 + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", 769 + "license": "MIT", 770 + "dependencies": { 771 + "@babel/helper-plugin-utils": "^7.14.5" 772 + }, 773 + "engines": { 774 + "node": ">=6.9.0" 775 + }, 776 + "peerDependencies": { 777 + "@babel/core": "^7.0.0-0" 778 + } 779 + }, 780 + "node_modules/@babel/plugin-syntax-top-level-await": { 781 + "version": "7.14.5", 782 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", 783 + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", 784 + "license": "MIT", 785 + "dependencies": { 786 + "@babel/helper-plugin-utils": "^7.14.5" 787 + }, 788 + "engines": { 789 + "node": ">=6.9.0" 790 + }, 791 + "peerDependencies": { 792 + "@babel/core": "^7.0.0-0" 793 + } 794 + }, 795 + "node_modules/@babel/plugin-syntax-typescript": { 796 + "version": "7.27.1", 797 + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz", 798 + "integrity": "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==", 799 + "license": "MIT", 800 + "dependencies": { 801 + "@babel/helper-plugin-utils": "^7.27.1" 802 + }, 803 + "engines": { 804 + "node": ">=6.9.0" 805 + }, 806 + "peerDependencies": { 807 + "@babel/core": "^7.0.0-0" 808 + } 809 + }, 810 + "node_modules/@babel/plugin-transform-arrow-functions": { 811 + "version": "7.27.1", 812 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz", 813 + "integrity": "sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==", 814 + "license": "MIT", 815 + "dependencies": { 816 + "@babel/helper-plugin-utils": "^7.27.1" 817 + }, 818 + "engines": { 819 + "node": ">=6.9.0" 820 + }, 821 + "peerDependencies": { 822 + "@babel/core": "^7.0.0-0" 823 + } 824 + }, 825 + "node_modules/@babel/plugin-transform-async-generator-functions": { 826 + "version": "7.28.0", 827 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz", 828 + "integrity": "sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==", 829 + "license": "MIT", 830 + "dependencies": { 831 + "@babel/helper-plugin-utils": "^7.27.1", 832 + "@babel/helper-remap-async-to-generator": "^7.27.1", 833 + "@babel/traverse": "^7.28.0" 834 + }, 835 + "engines": { 836 + "node": ">=6.9.0" 837 + }, 838 + "peerDependencies": { 839 + "@babel/core": "^7.0.0-0" 840 + } 841 + }, 842 + "node_modules/@babel/plugin-transform-async-to-generator": { 843 + "version": "7.27.1", 844 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz", 845 + "integrity": "sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==", 846 + "license": "MIT", 847 + "dependencies": { 848 + "@babel/helper-module-imports": "^7.27.1", 849 + "@babel/helper-plugin-utils": "^7.27.1", 850 + "@babel/helper-remap-async-to-generator": "^7.27.1" 851 + }, 852 + "engines": { 853 + "node": ">=6.9.0" 854 + }, 855 + "peerDependencies": { 856 + "@babel/core": "^7.0.0-0" 857 + } 858 + }, 859 + "node_modules/@babel/plugin-transform-block-scoping": { 860 + "version": "7.28.0", 861 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.0.tgz", 862 + "integrity": "sha512-gKKnwjpdx5sER/wl0WN0efUBFzF/56YZO0RJrSYP4CljXnP31ByY7fol89AzomdlLNzI36AvOTmYHsnZTCkq8Q==", 863 + "license": "MIT", 864 + "dependencies": { 865 + "@babel/helper-plugin-utils": "^7.27.1" 866 + }, 867 + "engines": { 868 + "node": ">=6.9.0" 869 + }, 870 + "peerDependencies": { 871 + "@babel/core": "^7.0.0-0" 872 + } 873 + }, 874 + "node_modules/@babel/plugin-transform-class-properties": { 875 + "version": "7.27.1", 876 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz", 877 + "integrity": "sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==", 878 + "license": "MIT", 879 + "dependencies": { 880 + "@babel/helper-create-class-features-plugin": "^7.27.1", 881 + "@babel/helper-plugin-utils": "^7.27.1" 882 + }, 883 + "engines": { 884 + "node": ">=6.9.0" 885 + }, 886 + "peerDependencies": { 887 + "@babel/core": "^7.0.0-0" 888 + } 889 + }, 890 + "node_modules/@babel/plugin-transform-classes": { 891 + "version": "7.28.3", 892 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.3.tgz", 893 + "integrity": "sha512-DoEWC5SuxuARF2KdKmGUq3ghfPMO6ZzR12Dnp5gubwbeWJo4dbNWXJPVlwvh4Zlq6Z7YVvL8VFxeSOJgjsx4Sg==", 894 + "license": "MIT", 895 + "dependencies": { 896 + "@babel/helper-annotate-as-pure": "^7.27.3", 897 + "@babel/helper-compilation-targets": "^7.27.2", 898 + "@babel/helper-globals": "^7.28.0", 899 + "@babel/helper-plugin-utils": "^7.27.1", 900 + "@babel/helper-replace-supers": "^7.27.1", 901 + "@babel/traverse": "^7.28.3" 902 + }, 903 + "engines": { 904 + "node": ">=6.9.0" 905 + }, 906 + "peerDependencies": { 907 + "@babel/core": "^7.0.0-0" 908 + } 909 + }, 910 + "node_modules/@babel/plugin-transform-computed-properties": { 911 + "version": "7.27.1", 912 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz", 913 + "integrity": "sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==", 914 + "license": "MIT", 915 + "dependencies": { 916 + "@babel/helper-plugin-utils": "^7.27.1", 917 + "@babel/template": "^7.27.1" 918 + }, 919 + "engines": { 920 + "node": ">=6.9.0" 921 + }, 922 + "peerDependencies": { 923 + "@babel/core": "^7.0.0-0" 924 + } 925 + }, 926 + "node_modules/@babel/plugin-transform-destructuring": { 927 + "version": "7.28.0", 928 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.0.tgz", 929 + "integrity": "sha512-v1nrSMBiKcodhsyJ4Gf+Z0U/yawmJDBOTpEB3mcQY52r9RIyPneGyAS/yM6seP/8I+mWI3elOMtT5dB8GJVs+A==", 930 + "license": "MIT", 931 + "dependencies": { 932 + "@babel/helper-plugin-utils": "^7.27.1", 933 + "@babel/traverse": "^7.28.0" 934 + }, 935 + "engines": { 936 + "node": ">=6.9.0" 937 + }, 938 + "peerDependencies": { 939 + "@babel/core": "^7.0.0-0" 940 + } 941 + }, 942 + "node_modules/@babel/plugin-transform-export-namespace-from": { 943 + "version": "7.27.1", 944 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz", 945 + "integrity": "sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==", 946 + "license": "MIT", 947 + "dependencies": { 948 + "@babel/helper-plugin-utils": "^7.27.1" 949 + }, 950 + "engines": { 951 + "node": ">=6.9.0" 952 + }, 953 + "peerDependencies": { 954 + "@babel/core": "^7.0.0-0" 955 + } 956 + }, 957 + "node_modules/@babel/plugin-transform-flow-strip-types": { 958 + "version": "7.27.1", 959 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.27.1.tgz", 960 + "integrity": "sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg==", 961 + "license": "MIT", 962 + "dependencies": { 963 + "@babel/helper-plugin-utils": "^7.27.1", 964 + "@babel/plugin-syntax-flow": "^7.27.1" 965 + }, 966 + "engines": { 967 + "node": ">=6.9.0" 968 + }, 969 + "peerDependencies": { 970 + "@babel/core": "^7.0.0-0" 971 + } 972 + }, 973 + "node_modules/@babel/plugin-transform-for-of": { 974 + "version": "7.27.1", 975 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz", 976 + "integrity": "sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==", 977 + "license": "MIT", 978 + "dependencies": { 979 + "@babel/helper-plugin-utils": "^7.27.1", 980 + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" 981 + }, 982 + "engines": { 983 + "node": ">=6.9.0" 984 + }, 985 + "peerDependencies": { 986 + "@babel/core": "^7.0.0-0" 987 + } 988 + }, 989 + "node_modules/@babel/plugin-transform-function-name": { 990 + "version": "7.27.1", 991 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz", 992 + "integrity": "sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==", 993 + "license": "MIT", 994 + "dependencies": { 995 + "@babel/helper-compilation-targets": "^7.27.1", 996 + "@babel/helper-plugin-utils": "^7.27.1", 997 + "@babel/traverse": "^7.27.1" 998 + }, 999 + "engines": { 1000 + "node": ">=6.9.0" 1001 + }, 1002 + "peerDependencies": { 1003 + "@babel/core": "^7.0.0-0" 1004 + } 1005 + }, 1006 + "node_modules/@babel/plugin-transform-literals": { 1007 + "version": "7.27.1", 1008 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz", 1009 + "integrity": "sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==", 1010 + "license": "MIT", 1011 + "dependencies": { 1012 + "@babel/helper-plugin-utils": "^7.27.1" 1013 + }, 1014 + "engines": { 1015 + "node": ">=6.9.0" 1016 + }, 1017 + "peerDependencies": { 1018 + "@babel/core": "^7.0.0-0" 1019 + } 1020 + }, 1021 + "node_modules/@babel/plugin-transform-logical-assignment-operators": { 1022 + "version": "7.27.1", 1023 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.27.1.tgz", 1024 + "integrity": "sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==", 1025 + "license": "MIT", 1026 + "dependencies": { 1027 + "@babel/helper-plugin-utils": "^7.27.1" 1028 + }, 1029 + "engines": { 1030 + "node": ">=6.9.0" 1031 + }, 1032 + "peerDependencies": { 1033 + "@babel/core": "^7.0.0-0" 1034 + } 1035 + }, 1036 + "node_modules/@babel/plugin-transform-modules-commonjs": { 1037 + "version": "7.27.1", 1038 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz", 1039 + "integrity": "sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==", 1040 + "license": "MIT", 1041 + "dependencies": { 1042 + "@babel/helper-module-transforms": "^7.27.1", 1043 + "@babel/helper-plugin-utils": "^7.27.1" 1044 + }, 1045 + "engines": { 1046 + "node": ">=6.9.0" 1047 + }, 1048 + "peerDependencies": { 1049 + "@babel/core": "^7.0.0-0" 1050 + } 1051 + }, 1052 + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { 1053 + "version": "7.27.1", 1054 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz", 1055 + "integrity": "sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==", 1056 + "license": "MIT", 1057 + "dependencies": { 1058 + "@babel/helper-create-regexp-features-plugin": "^7.27.1", 1059 + "@babel/helper-plugin-utils": "^7.27.1" 1060 + }, 1061 + "engines": { 1062 + "node": ">=6.9.0" 1063 + }, 1064 + "peerDependencies": { 1065 + "@babel/core": "^7.0.0" 1066 + } 1067 + }, 1068 + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { 1069 + "version": "7.27.1", 1070 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz", 1071 + "integrity": "sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==", 1072 + "license": "MIT", 1073 + "dependencies": { 1074 + "@babel/helper-plugin-utils": "^7.27.1" 1075 + }, 1076 + "engines": { 1077 + "node": ">=6.9.0" 1078 + }, 1079 + "peerDependencies": { 1080 + "@babel/core": "^7.0.0-0" 1081 + } 1082 + }, 1083 + "node_modules/@babel/plugin-transform-numeric-separator": { 1084 + "version": "7.27.1", 1085 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz", 1086 + "integrity": "sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==", 1087 + "license": "MIT", 1088 + "dependencies": { 1089 + "@babel/helper-plugin-utils": "^7.27.1" 1090 + }, 1091 + "engines": { 1092 + "node": ">=6.9.0" 1093 + }, 1094 + "peerDependencies": { 1095 + "@babel/core": "^7.0.0-0" 1096 + } 1097 + }, 1098 + "node_modules/@babel/plugin-transform-object-rest-spread": { 1099 + "version": "7.28.0", 1100 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.0.tgz", 1101 + "integrity": "sha512-9VNGikXxzu5eCiQjdE4IZn8sb9q7Xsk5EXLDBKUYg1e/Tve8/05+KJEtcxGxAgCY5t/BpKQM+JEL/yT4tvgiUA==", 1102 + "license": "MIT", 1103 + "dependencies": { 1104 + "@babel/helper-compilation-targets": "^7.27.2", 1105 + "@babel/helper-plugin-utils": "^7.27.1", 1106 + "@babel/plugin-transform-destructuring": "^7.28.0", 1107 + "@babel/plugin-transform-parameters": "^7.27.7", 1108 + "@babel/traverse": "^7.28.0" 1109 + }, 1110 + "engines": { 1111 + "node": ">=6.9.0" 1112 + }, 1113 + "peerDependencies": { 1114 + "@babel/core": "^7.0.0-0" 1115 + } 1116 + }, 1117 + "node_modules/@babel/plugin-transform-optional-catch-binding": { 1118 + "version": "7.27.1", 1119 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz", 1120 + "integrity": "sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==", 1121 + "license": "MIT", 1122 + "dependencies": { 1123 + "@babel/helper-plugin-utils": "^7.27.1" 1124 + }, 1125 + "engines": { 1126 + "node": ">=6.9.0" 1127 + }, 1128 + "peerDependencies": { 1129 + "@babel/core": "^7.0.0-0" 1130 + } 1131 + }, 1132 + "node_modules/@babel/plugin-transform-optional-chaining": { 1133 + "version": "7.27.1", 1134 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.27.1.tgz", 1135 + "integrity": "sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==", 1136 + "license": "MIT", 1137 + "dependencies": { 1138 + "@babel/helper-plugin-utils": "^7.27.1", 1139 + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" 1140 + }, 1141 + "engines": { 1142 + "node": ">=6.9.0" 1143 + }, 1144 + "peerDependencies": { 1145 + "@babel/core": "^7.0.0-0" 1146 + } 1147 + }, 1148 + "node_modules/@babel/plugin-transform-parameters": { 1149 + "version": "7.27.7", 1150 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz", 1151 + "integrity": "sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==", 1152 + "license": "MIT", 1153 + "dependencies": { 1154 + "@babel/helper-plugin-utils": "^7.27.1" 1155 + }, 1156 + "engines": { 1157 + "node": ">=6.9.0" 1158 + }, 1159 + "peerDependencies": { 1160 + "@babel/core": "^7.0.0-0" 1161 + } 1162 + }, 1163 + "node_modules/@babel/plugin-transform-private-methods": { 1164 + "version": "7.27.1", 1165 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz", 1166 + "integrity": "sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==", 1167 + "license": "MIT", 1168 + "dependencies": { 1169 + "@babel/helper-create-class-features-plugin": "^7.27.1", 1170 + "@babel/helper-plugin-utils": "^7.27.1" 1171 + }, 1172 + "engines": { 1173 + "node": ">=6.9.0" 1174 + }, 1175 + "peerDependencies": { 1176 + "@babel/core": "^7.0.0-0" 1177 + } 1178 + }, 1179 + "node_modules/@babel/plugin-transform-private-property-in-object": { 1180 + "version": "7.27.1", 1181 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz", 1182 + "integrity": "sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==", 1183 + "license": "MIT", 1184 + "dependencies": { 1185 + "@babel/helper-annotate-as-pure": "^7.27.1", 1186 + "@babel/helper-create-class-features-plugin": "^7.27.1", 1187 + "@babel/helper-plugin-utils": "^7.27.1" 1188 + }, 1189 + "engines": { 1190 + "node": ">=6.9.0" 1191 + }, 1192 + "peerDependencies": { 1193 + "@babel/core": "^7.0.0-0" 1194 + } 1195 + }, 1196 + "node_modules/@babel/plugin-transform-react-display-name": { 1197 + "version": "7.28.0", 1198 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.28.0.tgz", 1199 + "integrity": "sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA==", 1200 + "license": "MIT", 1201 + "dependencies": { 1202 + "@babel/helper-plugin-utils": "^7.27.1" 1203 + }, 1204 + "engines": { 1205 + "node": ">=6.9.0" 1206 + }, 1207 + "peerDependencies": { 1208 + "@babel/core": "^7.0.0-0" 1209 + } 1210 + }, 1211 + "node_modules/@babel/plugin-transform-react-jsx": { 1212 + "version": "7.27.1", 1213 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.27.1.tgz", 1214 + "integrity": "sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==", 1215 + "license": "MIT", 1216 + "dependencies": { 1217 + "@babel/helper-annotate-as-pure": "^7.27.1", 1218 + "@babel/helper-module-imports": "^7.27.1", 1219 + "@babel/helper-plugin-utils": "^7.27.1", 1220 + "@babel/plugin-syntax-jsx": "^7.27.1", 1221 + "@babel/types": "^7.27.1" 1222 + }, 1223 + "engines": { 1224 + "node": ">=6.9.0" 1225 + }, 1226 + "peerDependencies": { 1227 + "@babel/core": "^7.0.0-0" 1228 + } 1229 + }, 1230 + "node_modules/@babel/plugin-transform-react-jsx-development": { 1231 + "version": "7.27.1", 1232 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.27.1.tgz", 1233 + "integrity": "sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==", 1234 + "license": "MIT", 1235 + "dependencies": { 1236 + "@babel/plugin-transform-react-jsx": "^7.27.1" 1237 + }, 1238 + "engines": { 1239 + "node": ">=6.9.0" 1240 + }, 1241 + "peerDependencies": { 1242 + "@babel/core": "^7.0.0-0" 1243 + } 1244 + }, 1245 + "node_modules/@babel/plugin-transform-react-jsx-self": { 1246 + "version": "7.27.1", 1247 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", 1248 + "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", 1249 + "license": "MIT", 1250 + "dependencies": { 1251 + "@babel/helper-plugin-utils": "^7.27.1" 1252 + }, 1253 + "engines": { 1254 + "node": ">=6.9.0" 1255 + }, 1256 + "peerDependencies": { 1257 + "@babel/core": "^7.0.0-0" 1258 + } 1259 + }, 1260 + "node_modules/@babel/plugin-transform-react-jsx-source": { 1261 + "version": "7.27.1", 1262 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", 1263 + "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", 1264 + "license": "MIT", 1265 + "dependencies": { 1266 + "@babel/helper-plugin-utils": "^7.27.1" 1267 + }, 1268 + "engines": { 1269 + "node": ">=6.9.0" 1270 + }, 1271 + "peerDependencies": { 1272 + "@babel/core": "^7.0.0-0" 1273 + } 1274 + }, 1275 + "node_modules/@babel/plugin-transform-react-pure-annotations": { 1276 + "version": "7.27.1", 1277 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.27.1.tgz", 1278 + "integrity": "sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA==", 1279 + "license": "MIT", 1280 + "dependencies": { 1281 + "@babel/helper-annotate-as-pure": "^7.27.1", 1282 + "@babel/helper-plugin-utils": "^7.27.1" 1283 + }, 1284 + "engines": { 1285 + "node": ">=6.9.0" 1286 + }, 1287 + "peerDependencies": { 1288 + "@babel/core": "^7.0.0-0" 1289 + } 1290 + }, 1291 + "node_modules/@babel/plugin-transform-regenerator": { 1292 + "version": "7.28.3", 1293 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.3.tgz", 1294 + "integrity": "sha512-K3/M/a4+ESb5LEldjQb+XSrpY0nF+ZBFlTCbSnKaYAMfD8v33O6PMs4uYnOk19HlcsI8WMu3McdFPTiQHF/1/A==", 1295 + "license": "MIT", 1296 + "dependencies": { 1297 + "@babel/helper-plugin-utils": "^7.27.1" 1298 + }, 1299 + "engines": { 1300 + "node": ">=6.9.0" 1301 + }, 1302 + "peerDependencies": { 1303 + "@babel/core": "^7.0.0-0" 1304 + } 1305 + }, 1306 + "node_modules/@babel/plugin-transform-runtime": { 1307 + "version": "7.28.3", 1308 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.28.3.tgz", 1309 + "integrity": "sha512-Y6ab1kGqZ0u42Zv/4a7l0l72n9DKP/MKoKWaUSBylrhNZO2prYuqFOLbn5aW5SIFXwSH93yfjbgllL8lxuGKLg==", 1310 + "license": "MIT", 1311 + "dependencies": { 1312 + "@babel/helper-module-imports": "^7.27.1", 1313 + "@babel/helper-plugin-utils": "^7.27.1", 1314 + "babel-plugin-polyfill-corejs2": "^0.4.14", 1315 + "babel-plugin-polyfill-corejs3": "^0.13.0", 1316 + "babel-plugin-polyfill-regenerator": "^0.6.5", 1317 + "semver": "^6.3.1" 1318 + }, 1319 + "engines": { 1320 + "node": ">=6.9.0" 1321 + }, 1322 + "peerDependencies": { 1323 + "@babel/core": "^7.0.0-0" 1324 + } 1325 + }, 1326 + "node_modules/@babel/plugin-transform-shorthand-properties": { 1327 + "version": "7.27.1", 1328 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz", 1329 + "integrity": "sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==", 1330 + "license": "MIT", 1331 + "dependencies": { 1332 + "@babel/helper-plugin-utils": "^7.27.1" 1333 + }, 1334 + "engines": { 1335 + "node": ">=6.9.0" 1336 + }, 1337 + "peerDependencies": { 1338 + "@babel/core": "^7.0.0-0" 1339 + } 1340 + }, 1341 + "node_modules/@babel/plugin-transform-spread": { 1342 + "version": "7.27.1", 1343 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz", 1344 + "integrity": "sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==", 1345 + "license": "MIT", 1346 + "dependencies": { 1347 + "@babel/helper-plugin-utils": "^7.27.1", 1348 + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" 1349 + }, 1350 + "engines": { 1351 + "node": ">=6.9.0" 1352 + }, 1353 + "peerDependencies": { 1354 + "@babel/core": "^7.0.0-0" 1355 + } 1356 + }, 1357 + "node_modules/@babel/plugin-transform-sticky-regex": { 1358 + "version": "7.27.1", 1359 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz", 1360 + "integrity": "sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==", 1361 + "license": "MIT", 1362 + "dependencies": { 1363 + "@babel/helper-plugin-utils": "^7.27.1" 1364 + }, 1365 + "engines": { 1366 + "node": ">=6.9.0" 1367 + }, 1368 + "peerDependencies": { 1369 + "@babel/core": "^7.0.0-0" 1370 + } 1371 + }, 1372 + "node_modules/@babel/plugin-transform-template-literals": { 1373 + "version": "7.27.1", 1374 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz", 1375 + "integrity": "sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==", 1376 + "license": "MIT", 1377 + "dependencies": { 1378 + "@babel/helper-plugin-utils": "^7.27.1" 1379 + }, 1380 + "engines": { 1381 + "node": ">=6.9.0" 1382 + }, 1383 + "peerDependencies": { 1384 + "@babel/core": "^7.0.0-0" 1385 + } 1386 + }, 1387 + "node_modules/@babel/plugin-transform-typescript": { 1388 + "version": "7.28.0", 1389 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.0.tgz", 1390 + "integrity": "sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==", 1391 + "license": "MIT", 1392 + "dependencies": { 1393 + "@babel/helper-annotate-as-pure": "^7.27.3", 1394 + "@babel/helper-create-class-features-plugin": "^7.27.1", 1395 + "@babel/helper-plugin-utils": "^7.27.1", 1396 + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", 1397 + "@babel/plugin-syntax-typescript": "^7.27.1" 1398 + }, 1399 + "engines": { 1400 + "node": ">=6.9.0" 1401 + }, 1402 + "peerDependencies": { 1403 + "@babel/core": "^7.0.0-0" 1404 + } 1405 + }, 1406 + "node_modules/@babel/plugin-transform-unicode-regex": { 1407 + "version": "7.27.1", 1408 + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz", 1409 + "integrity": "sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==", 1410 + "license": "MIT", 1411 + "dependencies": { 1412 + "@babel/helper-create-regexp-features-plugin": "^7.27.1", 1413 + "@babel/helper-plugin-utils": "^7.27.1" 1414 + }, 1415 + "engines": { 1416 + "node": ">=6.9.0" 1417 + }, 1418 + "peerDependencies": { 1419 + "@babel/core": "^7.0.0-0" 1420 + } 1421 + }, 1422 + "node_modules/@babel/preset-react": { 1423 + "version": "7.27.1", 1424 + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.27.1.tgz", 1425 + "integrity": "sha512-oJHWh2gLhU9dW9HHr42q0cI0/iHHXTLGe39qvpAZZzagHy0MzYLCnCVV0symeRvzmjHyVU7mw2K06E6u/JwbhA==", 1426 + "license": "MIT", 1427 + "dependencies": { 1428 + "@babel/helper-plugin-utils": "^7.27.1", 1429 + "@babel/helper-validator-option": "^7.27.1", 1430 + "@babel/plugin-transform-react-display-name": "^7.27.1", 1431 + "@babel/plugin-transform-react-jsx": "^7.27.1", 1432 + "@babel/plugin-transform-react-jsx-development": "^7.27.1", 1433 + "@babel/plugin-transform-react-pure-annotations": "^7.27.1" 1434 + }, 1435 + "engines": { 1436 + "node": ">=6.9.0" 1437 + }, 1438 + "peerDependencies": { 1439 + "@babel/core": "^7.0.0-0" 1440 + } 1441 + }, 1442 + "node_modules/@babel/preset-typescript": { 1443 + "version": "7.27.1", 1444 + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.27.1.tgz", 1445 + "integrity": "sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==", 1446 + "license": "MIT", 1447 + "dependencies": { 1448 + "@babel/helper-plugin-utils": "^7.27.1", 1449 + "@babel/helper-validator-option": "^7.27.1", 1450 + "@babel/plugin-syntax-jsx": "^7.27.1", 1451 + "@babel/plugin-transform-modules-commonjs": "^7.27.1", 1452 + "@babel/plugin-transform-typescript": "^7.27.1" 1453 + }, 1454 + "engines": { 1455 + "node": ">=6.9.0" 1456 + }, 1457 + "peerDependencies": { 1458 + "@babel/core": "^7.0.0-0" 1459 + } 1460 + }, 1461 + "node_modules/@babel/runtime": { 1462 + "version": "7.28.3", 1463 + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.3.tgz", 1464 + "integrity": "sha512-9uIQ10o0WGdpP6GDhXcdOJPJuDgFtIDtN/9+ArJQ2NAfAmiuhTQdzkaTGR33v43GYS2UrSA0eX2pPPHoFVvpxA==", 1465 + "license": "MIT", 1466 + "engines": { 1467 + "node": ">=6.9.0" 1468 + } 1469 + }, 1470 + "node_modules/@babel/template": { 1471 + "version": "7.27.2", 1472 + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", 1473 + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", 1474 + "license": "MIT", 1475 + "dependencies": { 1476 + "@babel/code-frame": "^7.27.1", 1477 + "@babel/parser": "^7.27.2", 1478 + "@babel/types": "^7.27.1" 1479 + }, 1480 + "engines": { 1481 + "node": ">=6.9.0" 1482 + } 1483 + }, 1484 + "node_modules/@babel/traverse": { 1485 + "version": "7.28.3", 1486 + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.3.tgz", 1487 + "integrity": "sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ==", 1488 + "license": "MIT", 1489 + "dependencies": { 1490 + "@babel/code-frame": "^7.27.1", 1491 + "@babel/generator": "^7.28.3", 1492 + "@babel/helper-globals": "^7.28.0", 1493 + "@babel/parser": "^7.28.3", 1494 + "@babel/template": "^7.27.2", 1495 + "@babel/types": "^7.28.2", 1496 + "debug": "^4.3.1" 1497 + }, 1498 + "engines": { 1499 + "node": ">=6.9.0" 1500 + } 1501 + }, 1502 + "node_modules/@babel/traverse--for-generate-function-map": { 1503 + "name": "@babel/traverse", 1504 + "version": "7.28.3", 1505 + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.3.tgz", 1506 + "integrity": "sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ==", 1507 + "license": "MIT", 1508 + "dependencies": { 1509 + "@babel/code-frame": "^7.27.1", 1510 + "@babel/generator": "^7.28.3", 1511 + "@babel/helper-globals": "^7.28.0", 1512 + "@babel/parser": "^7.28.3", 1513 + "@babel/template": "^7.27.2", 1514 + "@babel/types": "^7.28.2", 1515 + "debug": "^4.3.1" 1516 + }, 1517 + "engines": { 1518 + "node": ">=6.9.0" 1519 + } 1520 + }, 1521 + "node_modules/@babel/types": { 1522 + "version": "7.28.2", 1523 + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.2.tgz", 1524 + "integrity": "sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==", 1525 + "license": "MIT", 1526 + "dependencies": { 1527 + "@babel/helper-string-parser": "^7.27.1", 1528 + "@babel/helper-validator-identifier": "^7.27.1" 1529 + }, 1530 + "engines": { 1531 + "node": ">=6.9.0" 1532 + } 1533 + }, 1534 + "node_modules/@egjs/hammerjs": { 1535 + "version": "2.0.17", 1536 + "resolved": "https://registry.npmjs.org/@egjs/hammerjs/-/hammerjs-2.0.17.tgz", 1537 + "integrity": "sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==", 1538 + "license": "MIT", 1539 + "dependencies": { 1540 + "@types/hammerjs": "^2.0.36" 1541 + }, 1542 + "engines": { 1543 + "node": ">=0.8.0" 1544 + } 1545 + }, 1546 + "node_modules/@emnapi/core": { 1547 + "version": "1.4.5", 1548 + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.4.5.tgz", 1549 + "integrity": "sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q==", 1550 + "dev": true, 1551 + "license": "MIT", 1552 + "optional": true, 1553 + "dependencies": { 1554 + "@emnapi/wasi-threads": "1.0.4", 1555 + "tslib": "^2.4.0" 1556 + } 1557 + }, 1558 + "node_modules/@emnapi/runtime": { 1559 + "version": "1.4.5", 1560 + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.4.5.tgz", 1561 + "integrity": "sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==", 1562 + "dev": true, 1563 + "license": "MIT", 1564 + "optional": true, 1565 + "dependencies": { 1566 + "tslib": "^2.4.0" 1567 + } 1568 + }, 1569 + "node_modules/@emnapi/wasi-threads": { 1570 + "version": "1.0.4", 1571 + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.0.4.tgz", 1572 + "integrity": "sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g==", 1573 + "dev": true, 1574 + "license": "MIT", 1575 + "optional": true, 1576 + "dependencies": { 1577 + "tslib": "^2.4.0" 1578 + } 1579 + }, 1580 + "node_modules/@eslint-community/eslint-utils": { 1581 + "version": "4.7.0", 1582 + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", 1583 + "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", 1584 + "dev": true, 1585 + "license": "MIT", 1586 + "dependencies": { 1587 + "eslint-visitor-keys": "^3.4.3" 1588 + }, 1589 + "engines": { 1590 + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1591 + }, 1592 + "funding": { 1593 + "url": "https://opencollective.com/eslint" 1594 + }, 1595 + "peerDependencies": { 1596 + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 1597 + } 1598 + }, 1599 + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { 1600 + "version": "3.4.3", 1601 + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1602 + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1603 + "dev": true, 1604 + "license": "Apache-2.0", 1605 + "engines": { 1606 + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1607 + }, 1608 + "funding": { 1609 + "url": "https://opencollective.com/eslint" 1610 + } 1611 + }, 1612 + "node_modules/@eslint-community/regexpp": { 1613 + "version": "4.12.1", 1614 + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 1615 + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 1616 + "dev": true, 1617 + "license": "MIT", 1618 + "engines": { 1619 + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 1620 + } 1621 + }, 1622 + "node_modules/@eslint/config-array": { 1623 + "version": "0.21.0", 1624 + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.0.tgz", 1625 + "integrity": "sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==", 1626 + "dev": true, 1627 + "license": "Apache-2.0", 1628 + "dependencies": { 1629 + "@eslint/object-schema": "^2.1.6", 1630 + "debug": "^4.3.1", 1631 + "minimatch": "^3.1.2" 1632 + }, 1633 + "engines": { 1634 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1635 + } 1636 + }, 1637 + "node_modules/@eslint/config-helpers": { 1638 + "version": "0.3.1", 1639 + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.3.1.tgz", 1640 + "integrity": "sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==", 1641 + "dev": true, 1642 + "license": "Apache-2.0", 1643 + "engines": { 1644 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1645 + } 1646 + }, 1647 + "node_modules/@eslint/core": { 1648 + "version": "0.15.2", 1649 + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.2.tgz", 1650 + "integrity": "sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==", 1651 + "dev": true, 1652 + "license": "Apache-2.0", 1653 + "dependencies": { 1654 + "@types/json-schema": "^7.0.15" 1655 + }, 1656 + "engines": { 1657 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1658 + } 1659 + }, 1660 + "node_modules/@eslint/eslintrc": { 1661 + "version": "3.3.1", 1662 + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", 1663 + "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", 1664 + "dev": true, 1665 + "license": "MIT", 1666 + "dependencies": { 1667 + "ajv": "^6.12.4", 1668 + "debug": "^4.3.2", 1669 + "espree": "^10.0.1", 1670 + "globals": "^14.0.0", 1671 + "ignore": "^5.2.0", 1672 + "import-fresh": "^3.2.1", 1673 + "js-yaml": "^4.1.0", 1674 + "minimatch": "^3.1.2", 1675 + "strip-json-comments": "^3.1.1" 1676 + }, 1677 + "engines": { 1678 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1679 + }, 1680 + "funding": { 1681 + "url": "https://opencollective.com/eslint" 1682 + } 1683 + }, 1684 + "node_modules/@eslint/js": { 1685 + "version": "9.33.0", 1686 + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.33.0.tgz", 1687 + "integrity": "sha512-5K1/mKhWaMfreBGJTwval43JJmkip0RmM+3+IuqupeSKNC/Th2Kc7ucaq5ovTSra/OOKB9c58CGSz3QMVbWt0A==", 1688 + "dev": true, 1689 + "license": "MIT", 1690 + "engines": { 1691 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1692 + }, 1693 + "funding": { 1694 + "url": "https://eslint.org/donate" 1695 + } 1696 + }, 1697 + "node_modules/@eslint/object-schema": { 1698 + "version": "2.1.6", 1699 + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", 1700 + "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", 1701 + "dev": true, 1702 + "license": "Apache-2.0", 1703 + "engines": { 1704 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1705 + } 1706 + }, 1707 + "node_modules/@eslint/plugin-kit": { 1708 + "version": "0.3.5", 1709 + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.5.tgz", 1710 + "integrity": "sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==", 1711 + "dev": true, 1712 + "license": "Apache-2.0", 1713 + "dependencies": { 1714 + "@eslint/core": "^0.15.2", 1715 + "levn": "^0.4.1" 1716 + }, 1717 + "engines": { 1718 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1719 + } 1720 + }, 1721 + "node_modules/@expo/cli": { 1722 + "version": "0.24.20", 1723 + "resolved": "https://registry.npmjs.org/@expo/cli/-/cli-0.24.20.tgz", 1724 + "integrity": "sha512-uF1pOVcd+xizNtVTuZqNGzy7I6IJon5YMmQidsURds1Ww96AFDxrR/NEACqeATNAmY60m8wy1VZZpSg5zLNkpw==", 1725 + "license": "MIT", 1726 + "dependencies": { 1727 + "@0no-co/graphql.web": "^1.0.8", 1728 + "@babel/runtime": "^7.20.0", 1729 + "@expo/code-signing-certificates": "^0.0.5", 1730 + "@expo/config": "~11.0.13", 1731 + "@expo/config-plugins": "~10.1.2", 1732 + "@expo/devcert": "^1.1.2", 1733 + "@expo/env": "~1.0.7", 1734 + "@expo/image-utils": "^0.7.6", 1735 + "@expo/json-file": "^9.1.5", 1736 + "@expo/metro-config": "~0.20.17", 1737 + "@expo/osascript": "^2.2.5", 1738 + "@expo/package-manager": "^1.8.6", 1739 + "@expo/plist": "^0.3.5", 1740 + "@expo/prebuild-config": "^9.0.11", 1741 + "@expo/spawn-async": "^1.7.2", 1742 + "@expo/ws-tunnel": "^1.0.1", 1743 + "@expo/xcpretty": "^4.3.0", 1744 + "@react-native/dev-middleware": "0.79.5", 1745 + "@urql/core": "^5.0.6", 1746 + "@urql/exchange-retry": "^1.3.0", 1747 + "accepts": "^1.3.8", 1748 + "arg": "^5.0.2", 1749 + "better-opn": "~3.0.2", 1750 + "bplist-creator": "0.1.0", 1751 + "bplist-parser": "^0.3.1", 1752 + "chalk": "^4.0.0", 1753 + "ci-info": "^3.3.0", 1754 + "compression": "^1.7.4", 1755 + "connect": "^3.7.0", 1756 + "debug": "^4.3.4", 1757 + "env-editor": "^0.4.1", 1758 + "freeport-async": "^2.0.0", 1759 + "getenv": "^2.0.0", 1760 + "glob": "^10.4.2", 1761 + "lan-network": "^0.1.6", 1762 + "minimatch": "^9.0.0", 1763 + "node-forge": "^1.3.1", 1764 + "npm-package-arg": "^11.0.0", 1765 + "ora": "^3.4.0", 1766 + "picomatch": "^3.0.1", 1767 + "pretty-bytes": "^5.6.0", 1768 + "pretty-format": "^29.7.0", 1769 + "progress": "^2.0.3", 1770 + "prompts": "^2.3.2", 1771 + "qrcode-terminal": "0.11.0", 1772 + "require-from-string": "^2.0.2", 1773 + "requireg": "^0.2.2", 1774 + "resolve": "^1.22.2", 1775 + "resolve-from": "^5.0.0", 1776 + "resolve.exports": "^2.0.3", 1777 + "semver": "^7.6.0", 1778 + "send": "^0.19.0", 1779 + "slugify": "^1.3.4", 1780 + "source-map-support": "~0.5.21", 1781 + "stacktrace-parser": "^0.1.10", 1782 + "structured-headers": "^0.4.1", 1783 + "tar": "^7.4.3", 1784 + "terminal-link": "^2.1.1", 1785 + "undici": "^6.18.2", 1786 + "wrap-ansi": "^7.0.0", 1787 + "ws": "^8.12.1" 1788 + }, 1789 + "bin": { 1790 + "expo-internal": "build/bin/cli" 1791 + } 1792 + }, 1793 + "node_modules/@expo/cli/node_modules/brace-expansion": { 1794 + "version": "2.0.2", 1795 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", 1796 + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", 1797 + "license": "MIT", 1798 + "dependencies": { 1799 + "balanced-match": "^1.0.0" 1800 + } 1801 + }, 1802 + "node_modules/@expo/cli/node_modules/minimatch": { 1803 + "version": "9.0.5", 1804 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 1805 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 1806 + "license": "ISC", 1807 + "dependencies": { 1808 + "brace-expansion": "^2.0.1" 1809 + }, 1810 + "engines": { 1811 + "node": ">=16 || 14 >=14.17" 1812 + }, 1813 + "funding": { 1814 + "url": "https://github.com/sponsors/isaacs" 1815 + } 1816 + }, 1817 + "node_modules/@expo/cli/node_modules/semver": { 1818 + "version": "7.7.2", 1819 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 1820 + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 1821 + "license": "ISC", 1822 + "bin": { 1823 + "semver": "bin/semver.js" 1824 + }, 1825 + "engines": { 1826 + "node": ">=10" 1827 + } 1828 + }, 1829 + "node_modules/@expo/code-signing-certificates": { 1830 + "version": "0.0.5", 1831 + "resolved": "https://registry.npmjs.org/@expo/code-signing-certificates/-/code-signing-certificates-0.0.5.tgz", 1832 + "integrity": "sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==", 1833 + "license": "MIT", 1834 + "dependencies": { 1835 + "node-forge": "^1.2.1", 1836 + "nullthrows": "^1.1.1" 1837 + } 1838 + }, 1839 + "node_modules/@expo/config": { 1840 + "version": "11.0.13", 1841 + "resolved": "https://registry.npmjs.org/@expo/config/-/config-11.0.13.tgz", 1842 + "integrity": "sha512-TnGb4u/zUZetpav9sx/3fWK71oCPaOjZHoVED9NaEncktAd0Eonhq5NUghiJmkUGt3gGSjRAEBXiBbbY9/B1LA==", 1843 + "license": "MIT", 1844 + "dependencies": { 1845 + "@babel/code-frame": "~7.10.4", 1846 + "@expo/config-plugins": "~10.1.2", 1847 + "@expo/config-types": "^53.0.5", 1848 + "@expo/json-file": "^9.1.5", 1849 + "deepmerge": "^4.3.1", 1850 + "getenv": "^2.0.0", 1851 + "glob": "^10.4.2", 1852 + "require-from-string": "^2.0.2", 1853 + "resolve-from": "^5.0.0", 1854 + "resolve-workspace-root": "^2.0.0", 1855 + "semver": "^7.6.0", 1856 + "slugify": "^1.3.4", 1857 + "sucrase": "3.35.0" 1858 + } 1859 + }, 1860 + "node_modules/@expo/config-plugins": { 1861 + "version": "10.1.2", 1862 + "resolved": "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-10.1.2.tgz", 1863 + "integrity": "sha512-IMYCxBOcnuFStuK0Ay+FzEIBKrwW8OVUMc65+v0+i7YFIIe8aL342l7T4F8lR4oCfhXn7d6M5QPgXvjtc/gAcw==", 1864 + "license": "MIT", 1865 + "dependencies": { 1866 + "@expo/config-types": "^53.0.5", 1867 + "@expo/json-file": "~9.1.5", 1868 + "@expo/plist": "^0.3.5", 1869 + "@expo/sdk-runtime-versions": "^1.0.0", 1870 + "chalk": "^4.1.2", 1871 + "debug": "^4.3.5", 1872 + "getenv": "^2.0.0", 1873 + "glob": "^10.4.2", 1874 + "resolve-from": "^5.0.0", 1875 + "semver": "^7.5.4", 1876 + "slash": "^3.0.0", 1877 + "slugify": "^1.6.6", 1878 + "xcode": "^3.0.1", 1879 + "xml2js": "0.6.0" 1880 + } 1881 + }, 1882 + "node_modules/@expo/config-plugins/node_modules/semver": { 1883 + "version": "7.7.2", 1884 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 1885 + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 1886 + "license": "ISC", 1887 + "bin": { 1888 + "semver": "bin/semver.js" 1889 + }, 1890 + "engines": { 1891 + "node": ">=10" 1892 + } 1893 + }, 1894 + "node_modules/@expo/config-types": { 1895 + "version": "53.0.5", 1896 + "resolved": "https://registry.npmjs.org/@expo/config-types/-/config-types-53.0.5.tgz", 1897 + "integrity": "sha512-kqZ0w44E+HEGBjy+Lpyn0BVL5UANg/tmNixxaRMLS6nf37YsDrLk2VMAmeKMMk5CKG0NmOdVv3ngeUjRQMsy9g==", 1898 + "license": "MIT" 1899 + }, 1900 + "node_modules/@expo/config/node_modules/@babel/code-frame": { 1901 + "version": "7.10.4", 1902 + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", 1903 + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", 1904 + "license": "MIT", 1905 + "dependencies": { 1906 + "@babel/highlight": "^7.10.4" 1907 + } 1908 + }, 1909 + "node_modules/@expo/config/node_modules/semver": { 1910 + "version": "7.7.2", 1911 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 1912 + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 1913 + "license": "ISC", 1914 + "bin": { 1915 + "semver": "bin/semver.js" 1916 + }, 1917 + "engines": { 1918 + "node": ">=10" 1919 + } 1920 + }, 1921 + "node_modules/@expo/devcert": { 1922 + "version": "1.2.0", 1923 + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.2.0.tgz", 1924 + "integrity": "sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==", 1925 + "license": "MIT", 1926 + "dependencies": { 1927 + "@expo/sudo-prompt": "^9.3.1", 1928 + "debug": "^3.1.0", 1929 + "glob": "^10.4.2" 1930 + } 1931 + }, 1932 + "node_modules/@expo/devcert/node_modules/debug": { 1933 + "version": "3.2.7", 1934 + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1935 + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1936 + "license": "MIT", 1937 + "dependencies": { 1938 + "ms": "^2.1.1" 1939 + } 1940 + }, 1941 + "node_modules/@expo/env": { 1942 + "version": "1.0.7", 1943 + "resolved": "https://registry.npmjs.org/@expo/env/-/env-1.0.7.tgz", 1944 + "integrity": "sha512-qSTEnwvuYJ3umapO9XJtrb1fAqiPlmUUg78N0IZXXGwQRt+bkp0OBls+Y5Mxw/Owj8waAM0Z3huKKskRADR5ow==", 1945 + "license": "MIT", 1946 + "dependencies": { 1947 + "chalk": "^4.0.0", 1948 + "debug": "^4.3.4", 1949 + "dotenv": "~16.4.5", 1950 + "dotenv-expand": "~11.0.6", 1951 + "getenv": "^2.0.0" 1952 + } 1953 + }, 1954 + "node_modules/@expo/fingerprint": { 1955 + "version": "0.13.4", 1956 + "resolved": "https://registry.npmjs.org/@expo/fingerprint/-/fingerprint-0.13.4.tgz", 1957 + "integrity": "sha512-MYfPYBTMfrrNr07DALuLhG6EaLVNVrY/PXjEzsjWdWE4ZFn0yqI0IdHNkJG7t1gePT8iztHc7qnsx+oo/rDo6w==", 1958 + "license": "MIT", 1959 + "dependencies": { 1960 + "@expo/spawn-async": "^1.7.2", 1961 + "arg": "^5.0.2", 1962 + "chalk": "^4.1.2", 1963 + "debug": "^4.3.4", 1964 + "find-up": "^5.0.0", 1965 + "getenv": "^2.0.0", 1966 + "glob": "^10.4.2", 1967 + "ignore": "^5.3.1", 1968 + "minimatch": "^9.0.0", 1969 + "p-limit": "^3.1.0", 1970 + "resolve-from": "^5.0.0", 1971 + "semver": "^7.6.0" 1972 + }, 1973 + "bin": { 1974 + "fingerprint": "bin/cli.js" 1975 + } 1976 + }, 1977 + "node_modules/@expo/fingerprint/node_modules/brace-expansion": { 1978 + "version": "2.0.2", 1979 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", 1980 + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", 1981 + "license": "MIT", 1982 + "dependencies": { 1983 + "balanced-match": "^1.0.0" 1984 + } 1985 + }, 1986 + "node_modules/@expo/fingerprint/node_modules/minimatch": { 1987 + "version": "9.0.5", 1988 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 1989 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 1990 + "license": "ISC", 1991 + "dependencies": { 1992 + "brace-expansion": "^2.0.1" 1993 + }, 1994 + "engines": { 1995 + "node": ">=16 || 14 >=14.17" 1996 + }, 1997 + "funding": { 1998 + "url": "https://github.com/sponsors/isaacs" 1999 + } 2000 + }, 2001 + "node_modules/@expo/fingerprint/node_modules/semver": { 2002 + "version": "7.7.2", 2003 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 2004 + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 2005 + "license": "ISC", 2006 + "bin": { 2007 + "semver": "bin/semver.js" 2008 + }, 2009 + "engines": { 2010 + "node": ">=10" 2011 + } 2012 + }, 2013 + "node_modules/@expo/image-utils": { 2014 + "version": "0.7.6", 2015 + "resolved": "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.7.6.tgz", 2016 + "integrity": "sha512-GKnMqC79+mo/1AFrmAcUcGfbsXXTRqOMNS1umebuevl3aaw+ztsYEFEiuNhHZW7PQ3Xs3URNT513ZxKhznDscw==", 2017 + "license": "MIT", 2018 + "dependencies": { 2019 + "@expo/spawn-async": "^1.7.2", 2020 + "chalk": "^4.0.0", 2021 + "getenv": "^2.0.0", 2022 + "jimp-compact": "0.16.1", 2023 + "parse-png": "^2.1.0", 2024 + "resolve-from": "^5.0.0", 2025 + "semver": "^7.6.0", 2026 + "temp-dir": "~2.0.0", 2027 + "unique-string": "~2.0.0" 2028 + } 2029 + }, 2030 + "node_modules/@expo/image-utils/node_modules/semver": { 2031 + "version": "7.7.2", 2032 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 2033 + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 2034 + "license": "ISC", 2035 + "bin": { 2036 + "semver": "bin/semver.js" 2037 + }, 2038 + "engines": { 2039 + "node": ">=10" 2040 + } 2041 + }, 2042 + "node_modules/@expo/json-file": { 2043 + "version": "9.1.5", 2044 + "resolved": "https://registry.npmjs.org/@expo/json-file/-/json-file-9.1.5.tgz", 2045 + "integrity": "sha512-prWBhLUlmcQtvN6Y7BpW2k9zXGd3ySa3R6rAguMJkp1z22nunLN64KYTUWfijFlprFoxm9r2VNnGkcbndAlgKA==", 2046 + "license": "MIT", 2047 + "dependencies": { 2048 + "@babel/code-frame": "~7.10.4", 2049 + "json5": "^2.2.3" 2050 + } 2051 + }, 2052 + "node_modules/@expo/json-file/node_modules/@babel/code-frame": { 2053 + "version": "7.10.4", 2054 + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", 2055 + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", 2056 + "license": "MIT", 2057 + "dependencies": { 2058 + "@babel/highlight": "^7.10.4" 2059 + } 2060 + }, 2061 + "node_modules/@expo/metro-config": { 2062 + "version": "0.20.17", 2063 + "resolved": "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.20.17.tgz", 2064 + "integrity": "sha512-lpntF2UZn5bTwrPK6guUv00Xv3X9mkN3YYla+IhEHiYXWyG7WKOtDU0U4KR8h3ubkZ6SPH3snDyRyAzMsWtZFA==", 2065 + "license": "MIT", 2066 + "dependencies": { 2067 + "@babel/core": "^7.20.0", 2068 + "@babel/generator": "^7.20.5", 2069 + "@babel/parser": "^7.20.0", 2070 + "@babel/types": "^7.20.0", 2071 + "@expo/config": "~11.0.12", 2072 + "@expo/env": "~1.0.7", 2073 + "@expo/json-file": "~9.1.5", 2074 + "@expo/spawn-async": "^1.7.2", 2075 + "chalk": "^4.1.0", 2076 + "debug": "^4.3.2", 2077 + "dotenv": "~16.4.5", 2078 + "dotenv-expand": "~11.0.6", 2079 + "getenv": "^2.0.0", 2080 + "glob": "^10.4.2", 2081 + "jsc-safe-url": "^0.2.4", 2082 + "lightningcss": "~1.27.0", 2083 + "minimatch": "^9.0.0", 2084 + "postcss": "~8.4.32", 2085 + "resolve-from": "^5.0.0" 2086 + } 2087 + }, 2088 + "node_modules/@expo/metro-config/node_modules/brace-expansion": { 2089 + "version": "2.0.2", 2090 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", 2091 + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", 2092 + "license": "MIT", 2093 + "dependencies": { 2094 + "balanced-match": "^1.0.0" 2095 + } 2096 + }, 2097 + "node_modules/@expo/metro-config/node_modules/minimatch": { 2098 + "version": "9.0.5", 2099 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 2100 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 2101 + "license": "ISC", 2102 + "dependencies": { 2103 + "brace-expansion": "^2.0.1" 2104 + }, 2105 + "engines": { 2106 + "node": ">=16 || 14 >=14.17" 2107 + }, 2108 + "funding": { 2109 + "url": "https://github.com/sponsors/isaacs" 2110 + } 2111 + }, 2112 + "node_modules/@expo/metro-runtime": { 2113 + "version": "5.0.4", 2114 + "resolved": "https://registry.npmjs.org/@expo/metro-runtime/-/metro-runtime-5.0.4.tgz", 2115 + "integrity": "sha512-r694MeO+7Vi8IwOsDIDzH/Q5RPMt1kUDYbiTJwnO15nIqiDwlE8HU55UlRhffKZy6s5FmxQsZ8HA+T8DqUW8cQ==", 2116 + "license": "MIT", 2117 + "peerDependencies": { 2118 + "react-native": "*" 2119 + } 2120 + }, 2121 + "node_modules/@expo/osascript": { 2122 + "version": "2.2.5", 2123 + "resolved": "https://registry.npmjs.org/@expo/osascript/-/osascript-2.2.5.tgz", 2124 + "integrity": "sha512-Bpp/n5rZ0UmpBOnl7Li3LtM7la0AR3H9NNesqL+ytW5UiqV/TbonYW3rDZY38u4u/lG7TnYflVIVQPD+iqZJ5w==", 2125 + "license": "MIT", 2126 + "dependencies": { 2127 + "@expo/spawn-async": "^1.7.2", 2128 + "exec-async": "^2.2.0" 2129 + }, 2130 + "engines": { 2131 + "node": ">=12" 2132 + } 2133 + }, 2134 + "node_modules/@expo/package-manager": { 2135 + "version": "1.8.6", 2136 + "resolved": "https://registry.npmjs.org/@expo/package-manager/-/package-manager-1.8.6.tgz", 2137 + "integrity": "sha512-gcdICLuL+nHKZagPIDC5tX8UoDDB8vNA5/+SaQEqz8D+T2C4KrEJc2Vi1gPAlDnKif834QS6YluHWyxjk0yZlQ==", 2138 + "license": "MIT", 2139 + "dependencies": { 2140 + "@expo/json-file": "^9.1.5", 2141 + "@expo/spawn-async": "^1.7.2", 2142 + "chalk": "^4.0.0", 2143 + "npm-package-arg": "^11.0.0", 2144 + "ora": "^3.4.0", 2145 + "resolve-workspace-root": "^2.0.0" 2146 + } 2147 + }, 2148 + "node_modules/@expo/plist": { 2149 + "version": "0.3.5", 2150 + "resolved": "https://registry.npmjs.org/@expo/plist/-/plist-0.3.5.tgz", 2151 + "integrity": "sha512-9RYVU1iGyCJ7vWfg3e7c/NVyMFs8wbl+dMWZphtFtsqyN9zppGREU3ctlD3i8KUE0sCUTVnLjCWr+VeUIDep2g==", 2152 + "license": "MIT", 2153 + "dependencies": { 2154 + "@xmldom/xmldom": "^0.8.8", 2155 + "base64-js": "^1.2.3", 2156 + "xmlbuilder": "^15.1.1" 2157 + } 2158 + }, 2159 + "node_modules/@expo/prebuild-config": { 2160 + "version": "9.0.11", 2161 + "resolved": "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-9.0.11.tgz", 2162 + "integrity": "sha512-0DsxhhixRbCCvmYskBTq8czsU0YOBsntYURhWPNpkl0IPVpeP9haE5W4OwtHGzXEbmHdzaoDwNmVcWjS/mqbDw==", 2163 + "license": "MIT", 2164 + "dependencies": { 2165 + "@expo/config": "~11.0.13", 2166 + "@expo/config-plugins": "~10.1.2", 2167 + "@expo/config-types": "^53.0.5", 2168 + "@expo/image-utils": "^0.7.6", 2169 + "@expo/json-file": "^9.1.5", 2170 + "@react-native/normalize-colors": "0.79.5", 2171 + "debug": "^4.3.1", 2172 + "resolve-from": "^5.0.0", 2173 + "semver": "^7.6.0", 2174 + "xml2js": "0.6.0" 2175 + } 2176 + }, 2177 + "node_modules/@expo/prebuild-config/node_modules/semver": { 2178 + "version": "7.7.2", 2179 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 2180 + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 2181 + "license": "ISC", 2182 + "bin": { 2183 + "semver": "bin/semver.js" 2184 + }, 2185 + "engines": { 2186 + "node": ">=10" 2187 + } 2188 + }, 2189 + "node_modules/@expo/sdk-runtime-versions": { 2190 + "version": "1.0.0", 2191 + "resolved": "https://registry.npmjs.org/@expo/sdk-runtime-versions/-/sdk-runtime-versions-1.0.0.tgz", 2192 + "integrity": "sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==", 2193 + "license": "MIT" 2194 + }, 2195 + "node_modules/@expo/server": { 2196 + "version": "0.6.3", 2197 + "resolved": "https://registry.npmjs.org/@expo/server/-/server-0.6.3.tgz", 2198 + "integrity": "sha512-Ea7NJn9Xk1fe4YeJ86rObHSv/bm3u/6WiQPXEqXJ2GrfYpVab2Swoh9/PnSM3KjR64JAgKjArDn1HiPjITCfHA==", 2199 + "license": "MIT", 2200 + "dependencies": { 2201 + "abort-controller": "^3.0.0", 2202 + "debug": "^4.3.4", 2203 + "source-map-support": "~0.5.21", 2204 + "undici": "^6.18.2 || ^7.0.0" 2205 + } 2206 + }, 2207 + "node_modules/@expo/spawn-async": { 2208 + "version": "1.7.2", 2209 + "resolved": "https://registry.npmjs.org/@expo/spawn-async/-/spawn-async-1.7.2.tgz", 2210 + "integrity": "sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==", 2211 + "license": "MIT", 2212 + "dependencies": { 2213 + "cross-spawn": "^7.0.3" 2214 + }, 2215 + "engines": { 2216 + "node": ">=12" 2217 + } 2218 + }, 2219 + "node_modules/@expo/sudo-prompt": { 2220 + "version": "9.3.2", 2221 + "resolved": "https://registry.npmjs.org/@expo/sudo-prompt/-/sudo-prompt-9.3.2.tgz", 2222 + "integrity": "sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==", 2223 + "license": "MIT" 2224 + }, 2225 + "node_modules/@expo/vector-icons": { 2226 + "version": "14.1.0", 2227 + "resolved": "https://registry.npmjs.org/@expo/vector-icons/-/vector-icons-14.1.0.tgz", 2228 + "integrity": "sha512-7T09UE9h8QDTsUeMGymB4i+iqvtEeaO5VvUjryFB4tugDTG/bkzViWA74hm5pfjjDEhYMXWaX112mcvhccmIwQ==", 2229 + "license": "MIT", 2230 + "peerDependencies": { 2231 + "expo-font": "*", 2232 + "react": "*", 2233 + "react-native": "*" 2234 + } 2235 + }, 2236 + "node_modules/@expo/ws-tunnel": { 2237 + "version": "1.0.6", 2238 + "resolved": "https://registry.npmjs.org/@expo/ws-tunnel/-/ws-tunnel-1.0.6.tgz", 2239 + "integrity": "sha512-nDRbLmSrJar7abvUjp3smDwH8HcbZcoOEa5jVPUv9/9CajgmWw20JNRwTuBRzWIWIkEJDkz20GoNA+tSwUqk0Q==", 2240 + "license": "MIT" 2241 + }, 2242 + "node_modules/@expo/xcpretty": { 2243 + "version": "4.3.2", 2244 + "resolved": "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-4.3.2.tgz", 2245 + "integrity": "sha512-ReZxZ8pdnoI3tP/dNnJdnmAk7uLT4FjsKDGW7YeDdvdOMz2XCQSmSCM9IWlrXuWtMF9zeSB6WJtEhCQ41gQOfw==", 2246 + "license": "BSD-3-Clause", 2247 + "dependencies": { 2248 + "@babel/code-frame": "7.10.4", 2249 + "chalk": "^4.1.0", 2250 + "find-up": "^5.0.0", 2251 + "js-yaml": "^4.1.0" 2252 + }, 2253 + "bin": { 2254 + "excpretty": "build/cli.js" 2255 + } 2256 + }, 2257 + "node_modules/@expo/xcpretty/node_modules/@babel/code-frame": { 2258 + "version": "7.10.4", 2259 + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", 2260 + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", 2261 + "license": "MIT", 2262 + "dependencies": { 2263 + "@babel/highlight": "^7.10.4" 2264 + } 2265 + }, 2266 + "node_modules/@humanfs/core": { 2267 + "version": "0.19.1", 2268 + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", 2269 + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", 2270 + "dev": true, 2271 + "license": "Apache-2.0", 2272 + "engines": { 2273 + "node": ">=18.18.0" 2274 + } 2275 + }, 2276 + "node_modules/@humanfs/node": { 2277 + "version": "0.16.6", 2278 + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", 2279 + "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", 2280 + "dev": true, 2281 + "license": "Apache-2.0", 2282 + "dependencies": { 2283 + "@humanfs/core": "^0.19.1", 2284 + "@humanwhocodes/retry": "^0.3.0" 2285 + }, 2286 + "engines": { 2287 + "node": ">=18.18.0" 2288 + } 2289 + }, 2290 + "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { 2291 + "version": "0.3.1", 2292 + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", 2293 + "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", 2294 + "dev": true, 2295 + "license": "Apache-2.0", 2296 + "engines": { 2297 + "node": ">=18.18" 2298 + }, 2299 + "funding": { 2300 + "type": "github", 2301 + "url": "https://github.com/sponsors/nzakas" 2302 + } 2303 + }, 2304 + "node_modules/@humanwhocodes/module-importer": { 2305 + "version": "1.0.1", 2306 + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 2307 + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 2308 + "dev": true, 2309 + "license": "Apache-2.0", 2310 + "engines": { 2311 + "node": ">=12.22" 2312 + }, 2313 + "funding": { 2314 + "type": "github", 2315 + "url": "https://github.com/sponsors/nzakas" 2316 + } 2317 + }, 2318 + "node_modules/@humanwhocodes/retry": { 2319 + "version": "0.4.3", 2320 + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", 2321 + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", 2322 + "dev": true, 2323 + "license": "Apache-2.0", 2324 + "engines": { 2325 + "node": ">=18.18" 2326 + }, 2327 + "funding": { 2328 + "type": "github", 2329 + "url": "https://github.com/sponsors/nzakas" 2330 + } 2331 + }, 2332 + "node_modules/@isaacs/cliui": { 2333 + "version": "8.0.2", 2334 + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 2335 + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 2336 + "license": "ISC", 2337 + "dependencies": { 2338 + "string-width": "^5.1.2", 2339 + "string-width-cjs": "npm:string-width@^4.2.0", 2340 + "strip-ansi": "^7.0.1", 2341 + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 2342 + "wrap-ansi": "^8.1.0", 2343 + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 2344 + }, 2345 + "engines": { 2346 + "node": ">=12" 2347 + } 2348 + }, 2349 + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { 2350 + "version": "6.2.1", 2351 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 2352 + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 2353 + "license": "MIT", 2354 + "engines": { 2355 + "node": ">=12" 2356 + }, 2357 + "funding": { 2358 + "url": "https://github.com/chalk/ansi-styles?sponsor=1" 2359 + } 2360 + }, 2361 + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { 2362 + "version": "8.1.0", 2363 + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 2364 + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 2365 + "license": "MIT", 2366 + "dependencies": { 2367 + "ansi-styles": "^6.1.0", 2368 + "string-width": "^5.0.1", 2369 + "strip-ansi": "^7.0.1" 2370 + }, 2371 + "engines": { 2372 + "node": ">=12" 2373 + }, 2374 + "funding": { 2375 + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 2376 + } 2377 + }, 2378 + "node_modules/@isaacs/fs-minipass": { 2379 + "version": "4.0.1", 2380 + "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz", 2381 + "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==", 2382 + "license": "ISC", 2383 + "dependencies": { 2384 + "minipass": "^7.0.4" 2385 + }, 2386 + "engines": { 2387 + "node": ">=18.0.0" 2388 + } 2389 + }, 2390 + "node_modules/@isaacs/ttlcache": { 2391 + "version": "1.4.1", 2392 + "resolved": "https://registry.npmjs.org/@isaacs/ttlcache/-/ttlcache-1.4.1.tgz", 2393 + "integrity": "sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==", 2394 + "license": "ISC", 2395 + "engines": { 2396 + "node": ">=12" 2397 + } 2398 + }, 2399 + "node_modules/@istanbuljs/load-nyc-config": { 2400 + "version": "1.1.0", 2401 + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", 2402 + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", 2403 + "license": "ISC", 2404 + "dependencies": { 2405 + "camelcase": "^5.3.1", 2406 + "find-up": "^4.1.0", 2407 + "get-package-type": "^0.1.0", 2408 + "js-yaml": "^3.13.1", 2409 + "resolve-from": "^5.0.0" 2410 + }, 2411 + "engines": { 2412 + "node": ">=8" 2413 + } 2414 + }, 2415 + "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { 2416 + "version": "1.0.10", 2417 + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 2418 + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 2419 + "license": "MIT", 2420 + "dependencies": { 2421 + "sprintf-js": "~1.0.2" 2422 + } 2423 + }, 2424 + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { 2425 + "version": "4.1.0", 2426 + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", 2427 + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", 2428 + "license": "MIT", 2429 + "dependencies": { 2430 + "locate-path": "^5.0.0", 2431 + "path-exists": "^4.0.0" 2432 + }, 2433 + "engines": { 2434 + "node": ">=8" 2435 + } 2436 + }, 2437 + "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { 2438 + "version": "3.14.1", 2439 + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", 2440 + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", 2441 + "license": "MIT", 2442 + "dependencies": { 2443 + "argparse": "^1.0.7", 2444 + "esprima": "^4.0.0" 2445 + }, 2446 + "bin": { 2447 + "js-yaml": "bin/js-yaml.js" 2448 + } 2449 + }, 2450 + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { 2451 + "version": "5.0.0", 2452 + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", 2453 + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", 2454 + "license": "MIT", 2455 + "dependencies": { 2456 + "p-locate": "^4.1.0" 2457 + }, 2458 + "engines": { 2459 + "node": ">=8" 2460 + } 2461 + }, 2462 + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { 2463 + "version": "2.3.0", 2464 + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 2465 + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 2466 + "license": "MIT", 2467 + "dependencies": { 2468 + "p-try": "^2.0.0" 2469 + }, 2470 + "engines": { 2471 + "node": ">=6" 2472 + }, 2473 + "funding": { 2474 + "url": "https://github.com/sponsors/sindresorhus" 2475 + } 2476 + }, 2477 + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { 2478 + "version": "4.1.0", 2479 + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", 2480 + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", 2481 + "license": "MIT", 2482 + "dependencies": { 2483 + "p-limit": "^2.2.0" 2484 + }, 2485 + "engines": { 2486 + "node": ">=8" 2487 + } 2488 + }, 2489 + "node_modules/@istanbuljs/schema": { 2490 + "version": "0.1.3", 2491 + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", 2492 + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", 2493 + "license": "MIT", 2494 + "engines": { 2495 + "node": ">=8" 2496 + } 2497 + }, 2498 + "node_modules/@jest/create-cache-key-function": { 2499 + "version": "29.7.0", 2500 + "resolved": "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-29.7.0.tgz", 2501 + "integrity": "sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==", 2502 + "license": "MIT", 2503 + "dependencies": { 2504 + "@jest/types": "^29.6.3" 2505 + }, 2506 + "engines": { 2507 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2508 + } 2509 + }, 2510 + "node_modules/@jest/environment": { 2511 + "version": "29.7.0", 2512 + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", 2513 + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", 2514 + "license": "MIT", 2515 + "dependencies": { 2516 + "@jest/fake-timers": "^29.7.0", 2517 + "@jest/types": "^29.6.3", 2518 + "@types/node": "*", 2519 + "jest-mock": "^29.7.0" 2520 + }, 2521 + "engines": { 2522 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2523 + } 2524 + }, 2525 + "node_modules/@jest/fake-timers": { 2526 + "version": "29.7.0", 2527 + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", 2528 + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", 2529 + "license": "MIT", 2530 + "dependencies": { 2531 + "@jest/types": "^29.6.3", 2532 + "@sinonjs/fake-timers": "^10.0.2", 2533 + "@types/node": "*", 2534 + "jest-message-util": "^29.7.0", 2535 + "jest-mock": "^29.7.0", 2536 + "jest-util": "^29.7.0" 2537 + }, 2538 + "engines": { 2539 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2540 + } 2541 + }, 2542 + "node_modules/@jest/schemas": { 2543 + "version": "29.6.3", 2544 + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", 2545 + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", 2546 + "license": "MIT", 2547 + "dependencies": { 2548 + "@sinclair/typebox": "^0.27.8" 2549 + }, 2550 + "engines": { 2551 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2552 + } 2553 + }, 2554 + "node_modules/@jest/transform": { 2555 + "version": "29.7.0", 2556 + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", 2557 + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", 2558 + "license": "MIT", 2559 + "dependencies": { 2560 + "@babel/core": "^7.11.6", 2561 + "@jest/types": "^29.6.3", 2562 + "@jridgewell/trace-mapping": "^0.3.18", 2563 + "babel-plugin-istanbul": "^6.1.1", 2564 + "chalk": "^4.0.0", 2565 + "convert-source-map": "^2.0.0", 2566 + "fast-json-stable-stringify": "^2.1.0", 2567 + "graceful-fs": "^4.2.9", 2568 + "jest-haste-map": "^29.7.0", 2569 + "jest-regex-util": "^29.6.3", 2570 + "jest-util": "^29.7.0", 2571 + "micromatch": "^4.0.4", 2572 + "pirates": "^4.0.4", 2573 + "slash": "^3.0.0", 2574 + "write-file-atomic": "^4.0.2" 2575 + }, 2576 + "engines": { 2577 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2578 + } 2579 + }, 2580 + "node_modules/@jest/types": { 2581 + "version": "29.6.3", 2582 + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", 2583 + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", 2584 + "license": "MIT", 2585 + "dependencies": { 2586 + "@jest/schemas": "^29.6.3", 2587 + "@types/istanbul-lib-coverage": "^2.0.0", 2588 + "@types/istanbul-reports": "^3.0.0", 2589 + "@types/node": "*", 2590 + "@types/yargs": "^17.0.8", 2591 + "chalk": "^4.0.0" 2592 + }, 2593 + "engines": { 2594 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2595 + } 2596 + }, 2597 + "node_modules/@jridgewell/gen-mapping": { 2598 + "version": "0.3.13", 2599 + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", 2600 + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", 2601 + "license": "MIT", 2602 + "dependencies": { 2603 + "@jridgewell/sourcemap-codec": "^1.5.0", 2604 + "@jridgewell/trace-mapping": "^0.3.24" 2605 + } 2606 + }, 2607 + "node_modules/@jridgewell/resolve-uri": { 2608 + "version": "3.1.2", 2609 + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 2610 + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 2611 + "license": "MIT", 2612 + "engines": { 2613 + "node": ">=6.0.0" 2614 + } 2615 + }, 2616 + "node_modules/@jridgewell/source-map": { 2617 + "version": "0.3.11", 2618 + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz", 2619 + "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", 2620 + "license": "MIT", 2621 + "dependencies": { 2622 + "@jridgewell/gen-mapping": "^0.3.5", 2623 + "@jridgewell/trace-mapping": "^0.3.25" 2624 + } 2625 + }, 2626 + "node_modules/@jridgewell/sourcemap-codec": { 2627 + "version": "1.5.5", 2628 + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", 2629 + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", 2630 + "license": "MIT" 2631 + }, 2632 + "node_modules/@jridgewell/trace-mapping": { 2633 + "version": "0.3.30", 2634 + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.30.tgz", 2635 + "integrity": "sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==", 2636 + "license": "MIT", 2637 + "dependencies": { 2638 + "@jridgewell/resolve-uri": "^3.1.0", 2639 + "@jridgewell/sourcemap-codec": "^1.4.14" 2640 + } 2641 + }, 2642 + "node_modules/@napi-rs/wasm-runtime": { 2643 + "version": "0.2.12", 2644 + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz", 2645 + "integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==", 2646 + "dev": true, 2647 + "license": "MIT", 2648 + "optional": true, 2649 + "dependencies": { 2650 + "@emnapi/core": "^1.4.3", 2651 + "@emnapi/runtime": "^1.4.3", 2652 + "@tybys/wasm-util": "^0.10.0" 2653 + } 2654 + }, 2655 + "node_modules/@nodelib/fs.scandir": { 2656 + "version": "2.1.5", 2657 + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 2658 + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 2659 + "dev": true, 2660 + "license": "MIT", 2661 + "dependencies": { 2662 + "@nodelib/fs.stat": "2.0.5", 2663 + "run-parallel": "^1.1.9" 2664 + }, 2665 + "engines": { 2666 + "node": ">= 8" 2667 + } 2668 + }, 2669 + "node_modules/@nodelib/fs.stat": { 2670 + "version": "2.0.5", 2671 + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 2672 + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 2673 + "dev": true, 2674 + "license": "MIT", 2675 + "engines": { 2676 + "node": ">= 8" 2677 + } 2678 + }, 2679 + "node_modules/@nodelib/fs.walk": { 2680 + "version": "1.2.8", 2681 + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 2682 + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 2683 + "dev": true, 2684 + "license": "MIT", 2685 + "dependencies": { 2686 + "@nodelib/fs.scandir": "2.1.5", 2687 + "fastq": "^1.6.0" 2688 + }, 2689 + "engines": { 2690 + "node": ">= 8" 2691 + } 2692 + }, 2693 + "node_modules/@nolyfill/is-core-module": { 2694 + "version": "1.0.39", 2695 + "resolved": "https://registry.npmjs.org/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz", 2696 + "integrity": "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==", 2697 + "dev": true, 2698 + "license": "MIT", 2699 + "engines": { 2700 + "node": ">=12.4.0" 2701 + } 2702 + }, 2703 + "node_modules/@pkgjs/parseargs": { 2704 + "version": "0.11.0", 2705 + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 2706 + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 2707 + "license": "MIT", 2708 + "optional": true, 2709 + "engines": { 2710 + "node": ">=14" 2711 + } 2712 + }, 2713 + "node_modules/@radix-ui/react-compose-refs": { 2714 + "version": "1.1.2", 2715 + "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz", 2716 + "integrity": "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==", 2717 + "license": "MIT", 2718 + "peerDependencies": { 2719 + "@types/react": "*", 2720 + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 2721 + }, 2722 + "peerDependenciesMeta": { 2723 + "@types/react": { 2724 + "optional": true 2725 + } 2726 + } 2727 + }, 2728 + "node_modules/@radix-ui/react-slot": { 2729 + "version": "1.2.0", 2730 + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.0.tgz", 2731 + "integrity": "sha512-ujc+V6r0HNDviYqIK3rW4ffgYiZ8g5DEHrGJVk4x7kTlLXRDILnKX9vAUYeIsLOoDpDJ0ujpqMkjH4w2ofuo6w==", 2732 + "license": "MIT", 2733 + "dependencies": { 2734 + "@radix-ui/react-compose-refs": "1.1.2" 2735 + }, 2736 + "peerDependencies": { 2737 + "@types/react": "*", 2738 + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 2739 + }, 2740 + "peerDependenciesMeta": { 2741 + "@types/react": { 2742 + "optional": true 2743 + } 2744 + } 2745 + }, 2746 + "node_modules/@react-native/assets-registry": { 2747 + "version": "0.79.5", 2748 + "resolved": "https://registry.npmjs.org/@react-native/assets-registry/-/assets-registry-0.79.5.tgz", 2749 + "integrity": "sha512-N4Kt1cKxO5zgM/BLiyzuuDNquZPiIgfktEQ6TqJ/4nKA8zr4e8KJgU6Tb2eleihDO4E24HmkvGc73naybKRz/w==", 2750 + "license": "MIT", 2751 + "engines": { 2752 + "node": ">=18" 2753 + } 2754 + }, 2755 + "node_modules/@react-native/babel-plugin-codegen": { 2756 + "version": "0.79.5", 2757 + "resolved": "https://registry.npmjs.org/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.79.5.tgz", 2758 + "integrity": "sha512-Rt/imdfqXihD/sn0xnV4flxxb1aLLjPtMF1QleQjEhJsTUPpH4TFlfOpoCvsrXoDl4OIcB1k4FVM24Ez92zf5w==", 2759 + "license": "MIT", 2760 + "dependencies": { 2761 + "@babel/traverse": "^7.25.3", 2762 + "@react-native/codegen": "0.79.5" 2763 + }, 2764 + "engines": { 2765 + "node": ">=18" 2766 + } 2767 + }, 2768 + "node_modules/@react-native/babel-preset": { 2769 + "version": "0.79.5", 2770 + "resolved": "https://registry.npmjs.org/@react-native/babel-preset/-/babel-preset-0.79.5.tgz", 2771 + "integrity": "sha512-GDUYIWslMLbdJHEgKNfrOzXk8EDKxKzbwmBXUugoiSlr6TyepVZsj3GZDLEFarOcTwH1EXXHJsixihk8DCRQDA==", 2772 + "license": "MIT", 2773 + "dependencies": { 2774 + "@babel/core": "^7.25.2", 2775 + "@babel/plugin-proposal-export-default-from": "^7.24.7", 2776 + "@babel/plugin-syntax-dynamic-import": "^7.8.3", 2777 + "@babel/plugin-syntax-export-default-from": "^7.24.7", 2778 + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", 2779 + "@babel/plugin-syntax-optional-chaining": "^7.8.3", 2780 + "@babel/plugin-transform-arrow-functions": "^7.24.7", 2781 + "@babel/plugin-transform-async-generator-functions": "^7.25.4", 2782 + "@babel/plugin-transform-async-to-generator": "^7.24.7", 2783 + "@babel/plugin-transform-block-scoping": "^7.25.0", 2784 + "@babel/plugin-transform-class-properties": "^7.25.4", 2785 + "@babel/plugin-transform-classes": "^7.25.4", 2786 + "@babel/plugin-transform-computed-properties": "^7.24.7", 2787 + "@babel/plugin-transform-destructuring": "^7.24.8", 2788 + "@babel/plugin-transform-flow-strip-types": "^7.25.2", 2789 + "@babel/plugin-transform-for-of": "^7.24.7", 2790 + "@babel/plugin-transform-function-name": "^7.25.1", 2791 + "@babel/plugin-transform-literals": "^7.25.2", 2792 + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", 2793 + "@babel/plugin-transform-modules-commonjs": "^7.24.8", 2794 + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", 2795 + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", 2796 + "@babel/plugin-transform-numeric-separator": "^7.24.7", 2797 + "@babel/plugin-transform-object-rest-spread": "^7.24.7", 2798 + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", 2799 + "@babel/plugin-transform-optional-chaining": "^7.24.8", 2800 + "@babel/plugin-transform-parameters": "^7.24.7", 2801 + "@babel/plugin-transform-private-methods": "^7.24.7", 2802 + "@babel/plugin-transform-private-property-in-object": "^7.24.7", 2803 + "@babel/plugin-transform-react-display-name": "^7.24.7", 2804 + "@babel/plugin-transform-react-jsx": "^7.25.2", 2805 + "@babel/plugin-transform-react-jsx-self": "^7.24.7", 2806 + "@babel/plugin-transform-react-jsx-source": "^7.24.7", 2807 + "@babel/plugin-transform-regenerator": "^7.24.7", 2808 + "@babel/plugin-transform-runtime": "^7.24.7", 2809 + "@babel/plugin-transform-shorthand-properties": "^7.24.7", 2810 + "@babel/plugin-transform-spread": "^7.24.7", 2811 + "@babel/plugin-transform-sticky-regex": "^7.24.7", 2812 + "@babel/plugin-transform-typescript": "^7.25.2", 2813 + "@babel/plugin-transform-unicode-regex": "^7.24.7", 2814 + "@babel/template": "^7.25.0", 2815 + "@react-native/babel-plugin-codegen": "0.79.5", 2816 + "babel-plugin-syntax-hermes-parser": "0.25.1", 2817 + "babel-plugin-transform-flow-enums": "^0.0.2", 2818 + "react-refresh": "^0.14.0" 2819 + }, 2820 + "engines": { 2821 + "node": ">=18" 2822 + }, 2823 + "peerDependencies": { 2824 + "@babel/core": "*" 2825 + } 2826 + }, 2827 + "node_modules/@react-native/codegen": { 2828 + "version": "0.79.5", 2829 + "resolved": "https://registry.npmjs.org/@react-native/codegen/-/codegen-0.79.5.tgz", 2830 + "integrity": "sha512-FO5U1R525A1IFpJjy+KVznEinAgcs3u7IbnbRJUG9IH/MBXi2lEU2LtN+JarJ81MCfW4V2p0pg6t/3RGHFRrlQ==", 2831 + "license": "MIT", 2832 + "dependencies": { 2833 + "glob": "^7.1.1", 2834 + "hermes-parser": "0.25.1", 2835 + "invariant": "^2.2.4", 2836 + "nullthrows": "^1.1.1", 2837 + "yargs": "^17.6.2" 2838 + }, 2839 + "engines": { 2840 + "node": ">=18" 2841 + }, 2842 + "peerDependencies": { 2843 + "@babel/core": "*" 2844 + } 2845 + }, 2846 + "node_modules/@react-native/codegen/node_modules/glob": { 2847 + "version": "7.2.3", 2848 + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 2849 + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 2850 + "deprecated": "Glob versions prior to v9 are no longer supported", 2851 + "license": "ISC", 2852 + "dependencies": { 2853 + "fs.realpath": "^1.0.0", 2854 + "inflight": "^1.0.4", 2855 + "inherits": "2", 2856 + "minimatch": "^3.1.1", 2857 + "once": "^1.3.0", 2858 + "path-is-absolute": "^1.0.0" 2859 + }, 2860 + "engines": { 2861 + "node": "*" 2862 + }, 2863 + "funding": { 2864 + "url": "https://github.com/sponsors/isaacs" 2865 + } 2866 + }, 2867 + "node_modules/@react-native/community-cli-plugin": { 2868 + "version": "0.79.5", 2869 + "resolved": "https://registry.npmjs.org/@react-native/community-cli-plugin/-/community-cli-plugin-0.79.5.tgz", 2870 + "integrity": "sha512-ApLO1ARS8JnQglqS3JAHk0jrvB+zNW3dvNJyXPZPoygBpZVbf8sjvqeBiaEYpn8ETbFWddebC4HoQelDndnrrA==", 2871 + "license": "MIT", 2872 + "dependencies": { 2873 + "@react-native/dev-middleware": "0.79.5", 2874 + "chalk": "^4.0.0", 2875 + "debug": "^2.2.0", 2876 + "invariant": "^2.2.4", 2877 + "metro": "^0.82.0", 2878 + "metro-config": "^0.82.0", 2879 + "metro-core": "^0.82.0", 2880 + "semver": "^7.1.3" 2881 + }, 2882 + "engines": { 2883 + "node": ">=18" 2884 + }, 2885 + "peerDependencies": { 2886 + "@react-native-community/cli": "*" 2887 + }, 2888 + "peerDependenciesMeta": { 2889 + "@react-native-community/cli": { 2890 + "optional": true 2891 + } 2892 + } 2893 + }, 2894 + "node_modules/@react-native/community-cli-plugin/node_modules/debug": { 2895 + "version": "2.6.9", 2896 + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 2897 + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 2898 + "license": "MIT", 2899 + "dependencies": { 2900 + "ms": "2.0.0" 2901 + } 2902 + }, 2903 + "node_modules/@react-native/community-cli-plugin/node_modules/ms": { 2904 + "version": "2.0.0", 2905 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 2906 + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 2907 + "license": "MIT" 2908 + }, 2909 + "node_modules/@react-native/community-cli-plugin/node_modules/semver": { 2910 + "version": "7.7.2", 2911 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 2912 + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 2913 + "license": "ISC", 2914 + "bin": { 2915 + "semver": "bin/semver.js" 2916 + }, 2917 + "engines": { 2918 + "node": ">=10" 2919 + } 2920 + }, 2921 + "node_modules/@react-native/debugger-frontend": { 2922 + "version": "0.79.5", 2923 + "resolved": "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.79.5.tgz", 2924 + "integrity": "sha512-WQ49TRpCwhgUYo5/n+6GGykXmnumpOkl4Lr2l2o2buWU9qPOwoiBqJAtmWEXsAug4ciw3eLiVfthn5ufs0VB0A==", 2925 + "license": "BSD-3-Clause", 2926 + "engines": { 2927 + "node": ">=18" 2928 + } 2929 + }, 2930 + "node_modules/@react-native/dev-middleware": { 2931 + "version": "0.79.5", 2932 + "resolved": "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.79.5.tgz", 2933 + "integrity": "sha512-U7r9M/SEktOCP/0uS6jXMHmYjj4ESfYCkNAenBjFjjsRWekiHE+U/vRMeO+fG9gq4UCcBAUISClkQCowlftYBw==", 2934 + "license": "MIT", 2935 + "dependencies": { 2936 + "@isaacs/ttlcache": "^1.4.1", 2937 + "@react-native/debugger-frontend": "0.79.5", 2938 + "chrome-launcher": "^0.15.2", 2939 + "chromium-edge-launcher": "^0.2.0", 2940 + "connect": "^3.6.5", 2941 + "debug": "^2.2.0", 2942 + "invariant": "^2.2.4", 2943 + "nullthrows": "^1.1.1", 2944 + "open": "^7.0.3", 2945 + "serve-static": "^1.16.2", 2946 + "ws": "^6.2.3" 2947 + }, 2948 + "engines": { 2949 + "node": ">=18" 2950 + } 2951 + }, 2952 + "node_modules/@react-native/dev-middleware/node_modules/debug": { 2953 + "version": "2.6.9", 2954 + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 2955 + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 2956 + "license": "MIT", 2957 + "dependencies": { 2958 + "ms": "2.0.0" 2959 + } 2960 + }, 2961 + "node_modules/@react-native/dev-middleware/node_modules/ms": { 2962 + "version": "2.0.0", 2963 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 2964 + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 2965 + "license": "MIT" 2966 + }, 2967 + "node_modules/@react-native/dev-middleware/node_modules/ws": { 2968 + "version": "6.2.3", 2969 + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", 2970 + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", 2971 + "license": "MIT", 2972 + "dependencies": { 2973 + "async-limiter": "~1.0.0" 2974 + } 2975 + }, 2976 + "node_modules/@react-native/gradle-plugin": { 2977 + "version": "0.79.5", 2978 + "resolved": "https://registry.npmjs.org/@react-native/gradle-plugin/-/gradle-plugin-0.79.5.tgz", 2979 + "integrity": "sha512-K3QhfFNKiWKF3HsCZCEoWwJPSMcPJQaeqOmzFP4RL8L3nkpgUwn74PfSCcKHxooVpS6bMvJFQOz7ggUZtNVT+A==", 2980 + "license": "MIT", 2981 + "engines": { 2982 + "node": ">=18" 2983 + } 2984 + }, 2985 + "node_modules/@react-native/js-polyfills": { 2986 + "version": "0.79.5", 2987 + "resolved": "https://registry.npmjs.org/@react-native/js-polyfills/-/js-polyfills-0.79.5.tgz", 2988 + "integrity": "sha512-a2wsFlIhvd9ZqCD5KPRsbCQmbZi6KxhRN++jrqG0FUTEV5vY7MvjjUqDILwJd2ZBZsf7uiDuClCcKqA+EEdbvw==", 2989 + "license": "MIT", 2990 + "engines": { 2991 + "node": ">=18" 2992 + } 2993 + }, 2994 + "node_modules/@react-native/normalize-colors": { 2995 + "version": "0.79.5", 2996 + "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.79.5.tgz", 2997 + "integrity": "sha512-nGXMNMclZgzLUxijQQ38Dm3IAEhgxuySAWQHnljFtfB0JdaMwpe0Ox9H7Tp2OgrEA+EMEv+Od9ElKlHwGKmmvQ==", 2998 + "license": "MIT" 2999 + }, 3000 + "node_modules/@react-navigation/bottom-tabs": { 3001 + "version": "7.4.6", 3002 + "resolved": "https://registry.npmjs.org/@react-navigation/bottom-tabs/-/bottom-tabs-7.4.6.tgz", 3003 + "integrity": "sha512-f4khxwcL70O5aKfZFbxyBo5RnzPFnBNSXmrrT7q9CRmvN4mHov9KFKGQ3H4xD5sLonsTBtyjvyvPfyEC4G7f+g==", 3004 + "license": "MIT", 3005 + "dependencies": { 3006 + "@react-navigation/elements": "^2.6.3", 3007 + "color": "^4.2.3" 3008 + }, 3009 + "peerDependencies": { 3010 + "@react-navigation/native": "^7.1.17", 3011 + "react": ">= 18.2.0", 3012 + "react-native": "*", 3013 + "react-native-safe-area-context": ">= 4.0.0", 3014 + "react-native-screens": ">= 4.0.0" 3015 + } 3016 + }, 3017 + "node_modules/@react-navigation/core": { 3018 + "version": "7.12.4", 3019 + "resolved": "https://registry.npmjs.org/@react-navigation/core/-/core-7.12.4.tgz", 3020 + "integrity": "sha512-xLFho76FA7v500XID5z/8YfGTvjQPw7/fXsq4BIrVSqetNe/o/v+KAocEw4ots6kyv3XvSTyiWKh2g3pN6xZ9Q==", 3021 + "license": "MIT", 3022 + "dependencies": { 3023 + "@react-navigation/routers": "^7.5.1", 3024 + "escape-string-regexp": "^4.0.0", 3025 + "nanoid": "^3.3.11", 3026 + "query-string": "^7.1.3", 3027 + "react-is": "^19.1.0", 3028 + "use-latest-callback": "^0.2.4", 3029 + "use-sync-external-store": "^1.5.0" 3030 + }, 3031 + "peerDependencies": { 3032 + "react": ">= 18.2.0" 3033 + } 3034 + }, 3035 + "node_modules/@react-navigation/elements": { 3036 + "version": "2.6.3", 3037 + "resolved": "https://registry.npmjs.org/@react-navigation/elements/-/elements-2.6.3.tgz", 3038 + "integrity": "sha512-hcPXssZg5bFD5oKX7FP0D9ZXinRgPUHkUJbTegpenSEUJcPooH1qzWJkEP22GrtO+OPDLYrCVZxEX8FcMrn4pA==", 3039 + "license": "MIT", 3040 + "dependencies": { 3041 + "color": "^4.2.3", 3042 + "use-latest-callback": "^0.2.4", 3043 + "use-sync-external-store": "^1.5.0" 3044 + }, 3045 + "peerDependencies": { 3046 + "@react-native-masked-view/masked-view": ">= 0.2.0", 3047 + "@react-navigation/native": "^7.1.17", 3048 + "react": ">= 18.2.0", 3049 + "react-native": "*", 3050 + "react-native-safe-area-context": ">= 4.0.0" 3051 + }, 3052 + "peerDependenciesMeta": { 3053 + "@react-native-masked-view/masked-view": { 3054 + "optional": true 3055 + } 3056 + } 3057 + }, 3058 + "node_modules/@react-navigation/native": { 3059 + "version": "7.1.17", 3060 + "resolved": "https://registry.npmjs.org/@react-navigation/native/-/native-7.1.17.tgz", 3061 + "integrity": "sha512-uEcYWi1NV+2Qe1oELfp9b5hTYekqWATv2cuwcOAg5EvsIsUPtzFrKIasgUXLBRGb9P7yR5ifoJ+ug4u6jdqSTQ==", 3062 + "license": "MIT", 3063 + "dependencies": { 3064 + "@react-navigation/core": "^7.12.4", 3065 + "escape-string-regexp": "^4.0.0", 3066 + "fast-deep-equal": "^3.1.3", 3067 + "nanoid": "^3.3.11", 3068 + "use-latest-callback": "^0.2.4" 3069 + }, 3070 + "peerDependencies": { 3071 + "react": ">= 18.2.0", 3072 + "react-native": "*" 3073 + } 3074 + }, 3075 + "node_modules/@react-navigation/native-stack": { 3076 + "version": "7.3.25", 3077 + "resolved": "https://registry.npmjs.org/@react-navigation/native-stack/-/native-stack-7.3.25.tgz", 3078 + "integrity": "sha512-jGcgUpif0dDGwuqag6rKTdS78MiAVAy8vmQppyaAgjS05VbCfDX+xjhc8dUxSClO5CoWlDoby1c8Hw4kBfL2UA==", 3079 + "license": "MIT", 3080 + "dependencies": { 3081 + "@react-navigation/elements": "^2.6.3", 3082 + "warn-once": "^0.1.1" 3083 + }, 3084 + "peerDependencies": { 3085 + "@react-navigation/native": "^7.1.17", 3086 + "react": ">= 18.2.0", 3087 + "react-native": "*", 3088 + "react-native-safe-area-context": ">= 4.0.0", 3089 + "react-native-screens": ">= 4.0.0" 3090 + } 3091 + }, 3092 + "node_modules/@react-navigation/routers": { 3093 + "version": "7.5.1", 3094 + "resolved": "https://registry.npmjs.org/@react-navigation/routers/-/routers-7.5.1.tgz", 3095 + "integrity": "sha512-pxipMW/iEBSUrjxz2cDD7fNwkqR4xoi0E/PcfTQGCcdJwLoaxzab5kSadBLj1MTJyT0YRrOXL9umHpXtp+Dv4w==", 3096 + "license": "MIT", 3097 + "dependencies": { 3098 + "nanoid": "^3.3.11" 3099 + } 3100 + }, 3101 + "node_modules/@rtsao/scc": { 3102 + "version": "1.1.0", 3103 + "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", 3104 + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", 3105 + "dev": true, 3106 + "license": "MIT" 3107 + }, 3108 + "node_modules/@sinclair/typebox": { 3109 + "version": "0.27.8", 3110 + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", 3111 + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", 3112 + "license": "MIT" 3113 + }, 3114 + "node_modules/@sinonjs/commons": { 3115 + "version": "3.0.1", 3116 + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", 3117 + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", 3118 + "license": "BSD-3-Clause", 3119 + "dependencies": { 3120 + "type-detect": "4.0.8" 3121 + } 3122 + }, 3123 + "node_modules/@sinonjs/fake-timers": { 3124 + "version": "10.3.0", 3125 + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", 3126 + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", 3127 + "license": "BSD-3-Clause", 3128 + "dependencies": { 3129 + "@sinonjs/commons": "^3.0.0" 3130 + } 3131 + }, 3132 + "node_modules/@tybys/wasm-util": { 3133 + "version": "0.10.0", 3134 + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.0.tgz", 3135 + "integrity": "sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==", 3136 + "dev": true, 3137 + "license": "MIT", 3138 + "optional": true, 3139 + "dependencies": { 3140 + "tslib": "^2.4.0" 3141 + } 3142 + }, 3143 + "node_modules/@types/babel__core": { 3144 + "version": "7.20.5", 3145 + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", 3146 + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", 3147 + "license": "MIT", 3148 + "dependencies": { 3149 + "@babel/parser": "^7.20.7", 3150 + "@babel/types": "^7.20.7", 3151 + "@types/babel__generator": "*", 3152 + "@types/babel__template": "*", 3153 + "@types/babel__traverse": "*" 3154 + } 3155 + }, 3156 + "node_modules/@types/babel__generator": { 3157 + "version": "7.27.0", 3158 + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", 3159 + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", 3160 + "license": "MIT", 3161 + "dependencies": { 3162 + "@babel/types": "^7.0.0" 3163 + } 3164 + }, 3165 + "node_modules/@types/babel__template": { 3166 + "version": "7.4.4", 3167 + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", 3168 + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", 3169 + "license": "MIT", 3170 + "dependencies": { 3171 + "@babel/parser": "^7.1.0", 3172 + "@babel/types": "^7.0.0" 3173 + } 3174 + }, 3175 + "node_modules/@types/babel__traverse": { 3176 + "version": "7.28.0", 3177 + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", 3178 + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", 3179 + "license": "MIT", 3180 + "dependencies": { 3181 + "@babel/types": "^7.28.2" 3182 + } 3183 + }, 3184 + "node_modules/@types/estree": { 3185 + "version": "1.0.8", 3186 + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", 3187 + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", 3188 + "dev": true, 3189 + "license": "MIT" 3190 + }, 3191 + "node_modules/@types/graceful-fs": { 3192 + "version": "4.1.9", 3193 + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", 3194 + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", 3195 + "license": "MIT", 3196 + "dependencies": { 3197 + "@types/node": "*" 3198 + } 3199 + }, 3200 + "node_modules/@types/hammerjs": { 3201 + "version": "2.0.46", 3202 + "resolved": "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.46.tgz", 3203 + "integrity": "sha512-ynRvcq6wvqexJ9brDMS4BnBLzmr0e14d6ZJTEShTBWKymQiHwlAyGu0ZPEFI2Fh1U53F7tN9ufClWM5KvqkKOw==", 3204 + "license": "MIT" 3205 + }, 3206 + "node_modules/@types/istanbul-lib-coverage": { 3207 + "version": "2.0.6", 3208 + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", 3209 + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", 3210 + "license": "MIT" 3211 + }, 3212 + "node_modules/@types/istanbul-lib-report": { 3213 + "version": "3.0.3", 3214 + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", 3215 + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", 3216 + "license": "MIT", 3217 + "dependencies": { 3218 + "@types/istanbul-lib-coverage": "*" 3219 + } 3220 + }, 3221 + "node_modules/@types/istanbul-reports": { 3222 + "version": "3.0.4", 3223 + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", 3224 + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", 3225 + "license": "MIT", 3226 + "dependencies": { 3227 + "@types/istanbul-lib-report": "*" 3228 + } 3229 + }, 3230 + "node_modules/@types/json-schema": { 3231 + "version": "7.0.15", 3232 + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 3233 + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 3234 + "license": "MIT" 3235 + }, 3236 + "node_modules/@types/json5": { 3237 + "version": "0.0.29", 3238 + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 3239 + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", 3240 + "dev": true, 3241 + "license": "MIT" 3242 + }, 3243 + "node_modules/@types/node": { 3244 + "version": "24.2.1", 3245 + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.2.1.tgz", 3246 + "integrity": "sha512-DRh5K+ka5eJic8CjH7td8QpYEV6Zo10gfRkjHCO3weqZHWDtAaSTFtl4+VMqOJ4N5jcuhZ9/l+yy8rVgw7BQeQ==", 3247 + "license": "MIT", 3248 + "dependencies": { 3249 + "undici-types": "~7.10.0" 3250 + } 3251 + }, 3252 + "node_modules/@types/react": { 3253 + "version": "19.0.14", 3254 + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.0.14.tgz", 3255 + "integrity": "sha512-ixLZ7zG7j1fM0DijL9hDArwhwcCb4vqmePgwtV0GfnkHRSCUEv4LvzarcTdhoqgyMznUx/EhoTUv31CKZzkQlw==", 3256 + "devOptional": true, 3257 + "license": "MIT", 3258 + "dependencies": { 3259 + "csstype": "^3.0.2" 3260 + } 3261 + }, 3262 + "node_modules/@types/stack-utils": { 3263 + "version": "2.0.3", 3264 + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", 3265 + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", 3266 + "license": "MIT" 3267 + }, 3268 + "node_modules/@types/yargs": { 3269 + "version": "17.0.33", 3270 + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", 3271 + "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", 3272 + "license": "MIT", 3273 + "dependencies": { 3274 + "@types/yargs-parser": "*" 3275 + } 3276 + }, 3277 + "node_modules/@types/yargs-parser": { 3278 + "version": "21.0.3", 3279 + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", 3280 + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", 3281 + "license": "MIT" 3282 + }, 3283 + "node_modules/@typescript-eslint/eslint-plugin": { 3284 + "version": "8.39.1", 3285 + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.39.1.tgz", 3286 + "integrity": "sha512-yYegZ5n3Yr6eOcqgj2nJH8cH/ZZgF+l0YIdKILSDjYFRjgYQMgv/lRjV5Z7Up04b9VYUondt8EPMqg7kTWgJ2g==", 3287 + "dev": true, 3288 + "license": "MIT", 3289 + "dependencies": { 3290 + "@eslint-community/regexpp": "^4.10.0", 3291 + "@typescript-eslint/scope-manager": "8.39.1", 3292 + "@typescript-eslint/type-utils": "8.39.1", 3293 + "@typescript-eslint/utils": "8.39.1", 3294 + "@typescript-eslint/visitor-keys": "8.39.1", 3295 + "graphemer": "^1.4.0", 3296 + "ignore": "^7.0.0", 3297 + "natural-compare": "^1.4.0", 3298 + "ts-api-utils": "^2.1.0" 3299 + }, 3300 + "engines": { 3301 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 3302 + }, 3303 + "funding": { 3304 + "type": "opencollective", 3305 + "url": "https://opencollective.com/typescript-eslint" 3306 + }, 3307 + "peerDependencies": { 3308 + "@typescript-eslint/parser": "^8.39.1", 3309 + "eslint": "^8.57.0 || ^9.0.0", 3310 + "typescript": ">=4.8.4 <6.0.0" 3311 + } 3312 + }, 3313 + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { 3314 + "version": "7.0.5", 3315 + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", 3316 + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", 3317 + "dev": true, 3318 + "license": "MIT", 3319 + "engines": { 3320 + "node": ">= 4" 3321 + } 3322 + }, 3323 + "node_modules/@typescript-eslint/parser": { 3324 + "version": "8.39.1", 3325 + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.39.1.tgz", 3326 + "integrity": "sha512-pUXGCuHnnKw6PyYq93lLRiZm3vjuslIy7tus1lIQTYVK9bL8XBgJnCWm8a0KcTtHC84Yya1Q6rtll+duSMj0dg==", 3327 + "dev": true, 3328 + "license": "MIT", 3329 + "dependencies": { 3330 + "@typescript-eslint/scope-manager": "8.39.1", 3331 + "@typescript-eslint/types": "8.39.1", 3332 + "@typescript-eslint/typescript-estree": "8.39.1", 3333 + "@typescript-eslint/visitor-keys": "8.39.1", 3334 + "debug": "^4.3.4" 3335 + }, 3336 + "engines": { 3337 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 3338 + }, 3339 + "funding": { 3340 + "type": "opencollective", 3341 + "url": "https://opencollective.com/typescript-eslint" 3342 + }, 3343 + "peerDependencies": { 3344 + "eslint": "^8.57.0 || ^9.0.0", 3345 + "typescript": ">=4.8.4 <6.0.0" 3346 + } 3347 + }, 3348 + "node_modules/@typescript-eslint/project-service": { 3349 + "version": "8.39.1", 3350 + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.39.1.tgz", 3351 + "integrity": "sha512-8fZxek3ONTwBu9ptw5nCKqZOSkXshZB7uAxuFF0J/wTMkKydjXCzqqga7MlFMpHi9DoG4BadhmTkITBcg8Aybw==", 3352 + "dev": true, 3353 + "license": "MIT", 3354 + "dependencies": { 3355 + "@typescript-eslint/tsconfig-utils": "^8.39.1", 3356 + "@typescript-eslint/types": "^8.39.1", 3357 + "debug": "^4.3.4" 3358 + }, 3359 + "engines": { 3360 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 3361 + }, 3362 + "funding": { 3363 + "type": "opencollective", 3364 + "url": "https://opencollective.com/typescript-eslint" 3365 + }, 3366 + "peerDependencies": { 3367 + "typescript": ">=4.8.4 <6.0.0" 3368 + } 3369 + }, 3370 + "node_modules/@typescript-eslint/scope-manager": { 3371 + "version": "8.39.1", 3372 + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.39.1.tgz", 3373 + "integrity": "sha512-RkBKGBrjgskFGWuyUGz/EtD8AF/GW49S21J8dvMzpJitOF1slLEbbHnNEtAHtnDAnx8qDEdRrULRnWVx27wGBw==", 3374 + "dev": true, 3375 + "license": "MIT", 3376 + "dependencies": { 3377 + "@typescript-eslint/types": "8.39.1", 3378 + "@typescript-eslint/visitor-keys": "8.39.1" 3379 + }, 3380 + "engines": { 3381 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 3382 + }, 3383 + "funding": { 3384 + "type": "opencollective", 3385 + "url": "https://opencollective.com/typescript-eslint" 3386 + } 3387 + }, 3388 + "node_modules/@typescript-eslint/tsconfig-utils": { 3389 + "version": "8.39.1", 3390 + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.39.1.tgz", 3391 + "integrity": "sha512-ePUPGVtTMR8XMU2Hee8kD0Pu4NDE1CN9Q1sxGSGd/mbOtGZDM7pnhXNJnzW63zk/q+Z54zVzj44HtwXln5CvHA==", 3392 + "dev": true, 3393 + "license": "MIT", 3394 + "engines": { 3395 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 3396 + }, 3397 + "funding": { 3398 + "type": "opencollective", 3399 + "url": "https://opencollective.com/typescript-eslint" 3400 + }, 3401 + "peerDependencies": { 3402 + "typescript": ">=4.8.4 <6.0.0" 3403 + } 3404 + }, 3405 + "node_modules/@typescript-eslint/type-utils": { 3406 + "version": "8.39.1", 3407 + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.39.1.tgz", 3408 + "integrity": "sha512-gu9/ahyatyAdQbKeHnhT4R+y3YLtqqHyvkfDxaBYk97EcbfChSJXyaJnIL3ygUv7OuZatePHmQvuH5ru0lnVeA==", 3409 + "dev": true, 3410 + "license": "MIT", 3411 + "dependencies": { 3412 + "@typescript-eslint/types": "8.39.1", 3413 + "@typescript-eslint/typescript-estree": "8.39.1", 3414 + "@typescript-eslint/utils": "8.39.1", 3415 + "debug": "^4.3.4", 3416 + "ts-api-utils": "^2.1.0" 3417 + }, 3418 + "engines": { 3419 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 3420 + }, 3421 + "funding": { 3422 + "type": "opencollective", 3423 + "url": "https://opencollective.com/typescript-eslint" 3424 + }, 3425 + "peerDependencies": { 3426 + "eslint": "^8.57.0 || ^9.0.0", 3427 + "typescript": ">=4.8.4 <6.0.0" 3428 + } 3429 + }, 3430 + "node_modules/@typescript-eslint/types": { 3431 + "version": "8.39.1", 3432 + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.39.1.tgz", 3433 + "integrity": "sha512-7sPDKQQp+S11laqTrhHqeAbsCfMkwJMrV7oTDvtDds4mEofJYir414bYKUEb8YPUm9QL3U+8f6L6YExSoAGdQw==", 3434 + "dev": true, 3435 + "license": "MIT", 3436 + "engines": { 3437 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 3438 + }, 3439 + "funding": { 3440 + "type": "opencollective", 3441 + "url": "https://opencollective.com/typescript-eslint" 3442 + } 3443 + }, 3444 + "node_modules/@typescript-eslint/typescript-estree": { 3445 + "version": "8.39.1", 3446 + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.39.1.tgz", 3447 + "integrity": "sha512-EKkpcPuIux48dddVDXyQBlKdeTPMmALqBUbEk38McWv0qVEZwOpVJBi7ugK5qVNgeuYjGNQxrrnoM/5+TI/BPw==", 3448 + "dev": true, 3449 + "license": "MIT", 3450 + "dependencies": { 3451 + "@typescript-eslint/project-service": "8.39.1", 3452 + "@typescript-eslint/tsconfig-utils": "8.39.1", 3453 + "@typescript-eslint/types": "8.39.1", 3454 + "@typescript-eslint/visitor-keys": "8.39.1", 3455 + "debug": "^4.3.4", 3456 + "fast-glob": "^3.3.2", 3457 + "is-glob": "^4.0.3", 3458 + "minimatch": "^9.0.4", 3459 + "semver": "^7.6.0", 3460 + "ts-api-utils": "^2.1.0" 3461 + }, 3462 + "engines": { 3463 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 3464 + }, 3465 + "funding": { 3466 + "type": "opencollective", 3467 + "url": "https://opencollective.com/typescript-eslint" 3468 + }, 3469 + "peerDependencies": { 3470 + "typescript": ">=4.8.4 <6.0.0" 3471 + } 3472 + }, 3473 + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { 3474 + "version": "2.0.2", 3475 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", 3476 + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", 3477 + "dev": true, 3478 + "license": "MIT", 3479 + "dependencies": { 3480 + "balanced-match": "^1.0.0" 3481 + } 3482 + }, 3483 + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { 3484 + "version": "9.0.5", 3485 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 3486 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 3487 + "dev": true, 3488 + "license": "ISC", 3489 + "dependencies": { 3490 + "brace-expansion": "^2.0.1" 3491 + }, 3492 + "engines": { 3493 + "node": ">=16 || 14 >=14.17" 3494 + }, 3495 + "funding": { 3496 + "url": "https://github.com/sponsors/isaacs" 3497 + } 3498 + }, 3499 + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { 3500 + "version": "7.7.2", 3501 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 3502 + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 3503 + "dev": true, 3504 + "license": "ISC", 3505 + "bin": { 3506 + "semver": "bin/semver.js" 3507 + }, 3508 + "engines": { 3509 + "node": ">=10" 3510 + } 3511 + }, 3512 + "node_modules/@typescript-eslint/utils": { 3513 + "version": "8.39.1", 3514 + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.39.1.tgz", 3515 + "integrity": "sha512-VF5tZ2XnUSTuiqZFXCZfZs1cgkdd3O/sSYmdo2EpSyDlC86UM/8YytTmKnehOW3TGAlivqTDT6bS87B/GQ/jyg==", 3516 + "dev": true, 3517 + "license": "MIT", 3518 + "dependencies": { 3519 + "@eslint-community/eslint-utils": "^4.7.0", 3520 + "@typescript-eslint/scope-manager": "8.39.1", 3521 + "@typescript-eslint/types": "8.39.1", 3522 + "@typescript-eslint/typescript-estree": "8.39.1" 3523 + }, 3524 + "engines": { 3525 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 3526 + }, 3527 + "funding": { 3528 + "type": "opencollective", 3529 + "url": "https://opencollective.com/typescript-eslint" 3530 + }, 3531 + "peerDependencies": { 3532 + "eslint": "^8.57.0 || ^9.0.0", 3533 + "typescript": ">=4.8.4 <6.0.0" 3534 + } 3535 + }, 3536 + "node_modules/@typescript-eslint/visitor-keys": { 3537 + "version": "8.39.1", 3538 + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.39.1.tgz", 3539 + "integrity": "sha512-W8FQi6kEh2e8zVhQ0eeRnxdvIoOkAp/CPAahcNio6nO9dsIwb9b34z90KOlheoyuVf6LSOEdjlkxSkapNEc+4A==", 3540 + "dev": true, 3541 + "license": "MIT", 3542 + "dependencies": { 3543 + "@typescript-eslint/types": "8.39.1", 3544 + "eslint-visitor-keys": "^4.2.1" 3545 + }, 3546 + "engines": { 3547 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 3548 + }, 3549 + "funding": { 3550 + "type": "opencollective", 3551 + "url": "https://opencollective.com/typescript-eslint" 3552 + } 3553 + }, 3554 + "node_modules/@unrs/resolver-binding-android-arm-eabi": { 3555 + "version": "1.11.1", 3556 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz", 3557 + "integrity": "sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==", 3558 + "cpu": [ 3559 + "arm" 3560 + ], 3561 + "dev": true, 3562 + "license": "MIT", 3563 + "optional": true, 3564 + "os": [ 3565 + "android" 3566 + ] 3567 + }, 3568 + "node_modules/@unrs/resolver-binding-android-arm64": { 3569 + "version": "1.11.1", 3570 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz", 3571 + "integrity": "sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==", 3572 + "cpu": [ 3573 + "arm64" 3574 + ], 3575 + "dev": true, 3576 + "license": "MIT", 3577 + "optional": true, 3578 + "os": [ 3579 + "android" 3580 + ] 3581 + }, 3582 + "node_modules/@unrs/resolver-binding-darwin-arm64": { 3583 + "version": "1.11.1", 3584 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz", 3585 + "integrity": "sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==", 3586 + "cpu": [ 3587 + "arm64" 3588 + ], 3589 + "dev": true, 3590 + "license": "MIT", 3591 + "optional": true, 3592 + "os": [ 3593 + "darwin" 3594 + ] 3595 + }, 3596 + "node_modules/@unrs/resolver-binding-darwin-x64": { 3597 + "version": "1.11.1", 3598 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz", 3599 + "integrity": "sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==", 3600 + "cpu": [ 3601 + "x64" 3602 + ], 3603 + "dev": true, 3604 + "license": "MIT", 3605 + "optional": true, 3606 + "os": [ 3607 + "darwin" 3608 + ] 3609 + }, 3610 + "node_modules/@unrs/resolver-binding-freebsd-x64": { 3611 + "version": "1.11.1", 3612 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz", 3613 + "integrity": "sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==", 3614 + "cpu": [ 3615 + "x64" 3616 + ], 3617 + "dev": true, 3618 + "license": "MIT", 3619 + "optional": true, 3620 + "os": [ 3621 + "freebsd" 3622 + ] 3623 + }, 3624 + "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { 3625 + "version": "1.11.1", 3626 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz", 3627 + "integrity": "sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==", 3628 + "cpu": [ 3629 + "arm" 3630 + ], 3631 + "dev": true, 3632 + "license": "MIT", 3633 + "optional": true, 3634 + "os": [ 3635 + "linux" 3636 + ] 3637 + }, 3638 + "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { 3639 + "version": "1.11.1", 3640 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.11.1.tgz", 3641 + "integrity": "sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==", 3642 + "cpu": [ 3643 + "arm" 3644 + ], 3645 + "dev": true, 3646 + "license": "MIT", 3647 + "optional": true, 3648 + "os": [ 3649 + "linux" 3650 + ] 3651 + }, 3652 + "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { 3653 + "version": "1.11.1", 3654 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.11.1.tgz", 3655 + "integrity": "sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==", 3656 + "cpu": [ 3657 + "arm64" 3658 + ], 3659 + "dev": true, 3660 + "license": "MIT", 3661 + "optional": true, 3662 + "os": [ 3663 + "linux" 3664 + ] 3665 + }, 3666 + "node_modules/@unrs/resolver-binding-linux-arm64-musl": { 3667 + "version": "1.11.1", 3668 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.11.1.tgz", 3669 + "integrity": "sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==", 3670 + "cpu": [ 3671 + "arm64" 3672 + ], 3673 + "dev": true, 3674 + "license": "MIT", 3675 + "optional": true, 3676 + "os": [ 3677 + "linux" 3678 + ] 3679 + }, 3680 + "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { 3681 + "version": "1.11.1", 3682 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.11.1.tgz", 3683 + "integrity": "sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==", 3684 + "cpu": [ 3685 + "ppc64" 3686 + ], 3687 + "dev": true, 3688 + "license": "MIT", 3689 + "optional": true, 3690 + "os": [ 3691 + "linux" 3692 + ] 3693 + }, 3694 + "node_modules/@unrs/resolver-binding-linux-riscv64-gnu": { 3695 + "version": "1.11.1", 3696 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.11.1.tgz", 3697 + "integrity": "sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==", 3698 + "cpu": [ 3699 + "riscv64" 3700 + ], 3701 + "dev": true, 3702 + "license": "MIT", 3703 + "optional": true, 3704 + "os": [ 3705 + "linux" 3706 + ] 3707 + }, 3708 + "node_modules/@unrs/resolver-binding-linux-riscv64-musl": { 3709 + "version": "1.11.1", 3710 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.11.1.tgz", 3711 + "integrity": "sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==", 3712 + "cpu": [ 3713 + "riscv64" 3714 + ], 3715 + "dev": true, 3716 + "license": "MIT", 3717 + "optional": true, 3718 + "os": [ 3719 + "linux" 3720 + ] 3721 + }, 3722 + "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { 3723 + "version": "1.11.1", 3724 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.11.1.tgz", 3725 + "integrity": "sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==", 3726 + "cpu": [ 3727 + "s390x" 3728 + ], 3729 + "dev": true, 3730 + "license": "MIT", 3731 + "optional": true, 3732 + "os": [ 3733 + "linux" 3734 + ] 3735 + }, 3736 + "node_modules/@unrs/resolver-binding-linux-x64-gnu": { 3737 + "version": "1.11.1", 3738 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.11.1.tgz", 3739 + "integrity": "sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==", 3740 + "cpu": [ 3741 + "x64" 3742 + ], 3743 + "dev": true, 3744 + "license": "MIT", 3745 + "optional": true, 3746 + "os": [ 3747 + "linux" 3748 + ] 3749 + }, 3750 + "node_modules/@unrs/resolver-binding-linux-x64-musl": { 3751 + "version": "1.11.1", 3752 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.11.1.tgz", 3753 + "integrity": "sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==", 3754 + "cpu": [ 3755 + "x64" 3756 + ], 3757 + "dev": true, 3758 + "license": "MIT", 3759 + "optional": true, 3760 + "os": [ 3761 + "linux" 3762 + ] 3763 + }, 3764 + "node_modules/@unrs/resolver-binding-wasm32-wasi": { 3765 + "version": "1.11.1", 3766 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.11.1.tgz", 3767 + "integrity": "sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==", 3768 + "cpu": [ 3769 + "wasm32" 3770 + ], 3771 + "dev": true, 3772 + "license": "MIT", 3773 + "optional": true, 3774 + "dependencies": { 3775 + "@napi-rs/wasm-runtime": "^0.2.11" 3776 + }, 3777 + "engines": { 3778 + "node": ">=14.0.0" 3779 + } 3780 + }, 3781 + "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { 3782 + "version": "1.11.1", 3783 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz", 3784 + "integrity": "sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==", 3785 + "cpu": [ 3786 + "arm64" 3787 + ], 3788 + "dev": true, 3789 + "license": "MIT", 3790 + "optional": true, 3791 + "os": [ 3792 + "win32" 3793 + ] 3794 + }, 3795 + "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { 3796 + "version": "1.11.1", 3797 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.11.1.tgz", 3798 + "integrity": "sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==", 3799 + "cpu": [ 3800 + "ia32" 3801 + ], 3802 + "dev": true, 3803 + "license": "MIT", 3804 + "optional": true, 3805 + "os": [ 3806 + "win32" 3807 + ] 3808 + }, 3809 + "node_modules/@unrs/resolver-binding-win32-x64-msvc": { 3810 + "version": "1.11.1", 3811 + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.11.1.tgz", 3812 + "integrity": "sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==", 3813 + "cpu": [ 3814 + "x64" 3815 + ], 3816 + "dev": true, 3817 + "license": "MIT", 3818 + "optional": true, 3819 + "os": [ 3820 + "win32" 3821 + ] 3822 + }, 3823 + "node_modules/@urql/core": { 3824 + "version": "5.2.0", 3825 + "resolved": "https://registry.npmjs.org/@urql/core/-/core-5.2.0.tgz", 3826 + "integrity": "sha512-/n0ieD0mvvDnVAXEQgX/7qJiVcvYvNkOHeBvkwtylfjydar123caCXcl58PXFY11oU1oquJocVXHxLAbtv4x1A==", 3827 + "license": "MIT", 3828 + "dependencies": { 3829 + "@0no-co/graphql.web": "^1.0.13", 3830 + "wonka": "^6.3.2" 3831 + } 3832 + }, 3833 + "node_modules/@urql/exchange-retry": { 3834 + "version": "1.3.2", 3835 + "resolved": "https://registry.npmjs.org/@urql/exchange-retry/-/exchange-retry-1.3.2.tgz", 3836 + "integrity": "sha512-TQMCz2pFJMfpNxmSfX1VSfTjwUIFx/mL+p1bnfM1xjjdla7Z+KnGMW/EhFbpckp3LyWAH4PgOsMwOMnIN+MBFg==", 3837 + "license": "MIT", 3838 + "dependencies": { 3839 + "@urql/core": "^5.1.2", 3840 + "wonka": "^6.3.2" 3841 + }, 3842 + "peerDependencies": { 3843 + "@urql/core": "^5.0.0" 3844 + } 3845 + }, 3846 + "node_modules/@xmldom/xmldom": { 3847 + "version": "0.8.10", 3848 + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", 3849 + "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", 3850 + "license": "MIT", 3851 + "engines": { 3852 + "node": ">=10.0.0" 3853 + } 3854 + }, 3855 + "node_modules/abort-controller": { 3856 + "version": "3.0.0", 3857 + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", 3858 + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", 3859 + "license": "MIT", 3860 + "dependencies": { 3861 + "event-target-shim": "^5.0.0" 3862 + }, 3863 + "engines": { 3864 + "node": ">=6.5" 3865 + } 3866 + }, 3867 + "node_modules/accepts": { 3868 + "version": "1.3.8", 3869 + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 3870 + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 3871 + "license": "MIT", 3872 + "dependencies": { 3873 + "mime-types": "~2.1.34", 3874 + "negotiator": "0.6.3" 3875 + }, 3876 + "engines": { 3877 + "node": ">= 0.6" 3878 + } 3879 + }, 3880 + "node_modules/acorn": { 3881 + "version": "8.15.0", 3882 + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", 3883 + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", 3884 + "license": "MIT", 3885 + "bin": { 3886 + "acorn": "bin/acorn" 3887 + }, 3888 + "engines": { 3889 + "node": ">=0.4.0" 3890 + } 3891 + }, 3892 + "node_modules/acorn-jsx": { 3893 + "version": "5.3.2", 3894 + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 3895 + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 3896 + "dev": true, 3897 + "license": "MIT", 3898 + "peerDependencies": { 3899 + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 3900 + } 3901 + }, 3902 + "node_modules/agent-base": { 3903 + "version": "7.1.4", 3904 + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz", 3905 + "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==", 3906 + "license": "MIT", 3907 + "engines": { 3908 + "node": ">= 14" 3909 + } 3910 + }, 3911 + "node_modules/ajv": { 3912 + "version": "6.12.6", 3913 + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 3914 + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 3915 + "dev": true, 3916 + "license": "MIT", 3917 + "dependencies": { 3918 + "fast-deep-equal": "^3.1.1", 3919 + "fast-json-stable-stringify": "^2.0.0", 3920 + "json-schema-traverse": "^0.4.1", 3921 + "uri-js": "^4.2.2" 3922 + }, 3923 + "funding": { 3924 + "type": "github", 3925 + "url": "https://github.com/sponsors/epoberezkin" 3926 + } 3927 + }, 3928 + "node_modules/ajv-formats": { 3929 + "version": "2.1.1", 3930 + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", 3931 + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", 3932 + "license": "MIT", 3933 + "dependencies": { 3934 + "ajv": "^8.0.0" 3935 + }, 3936 + "peerDependencies": { 3937 + "ajv": "^8.0.0" 3938 + }, 3939 + "peerDependenciesMeta": { 3940 + "ajv": { 3941 + "optional": true 3942 + } 3943 + } 3944 + }, 3945 + "node_modules/ajv-formats/node_modules/ajv": { 3946 + "version": "8.17.1", 3947 + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", 3948 + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", 3949 + "license": "MIT", 3950 + "dependencies": { 3951 + "fast-deep-equal": "^3.1.3", 3952 + "fast-uri": "^3.0.1", 3953 + "json-schema-traverse": "^1.0.0", 3954 + "require-from-string": "^2.0.2" 3955 + }, 3956 + "funding": { 3957 + "type": "github", 3958 + "url": "https://github.com/sponsors/epoberezkin" 3959 + } 3960 + }, 3961 + "node_modules/ajv-formats/node_modules/json-schema-traverse": { 3962 + "version": "1.0.0", 3963 + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", 3964 + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", 3965 + "license": "MIT" 3966 + }, 3967 + "node_modules/anser": { 3968 + "version": "1.4.10", 3969 + "resolved": "https://registry.npmjs.org/anser/-/anser-1.4.10.tgz", 3970 + "integrity": "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==", 3971 + "license": "MIT" 3972 + }, 3973 + "node_modules/ansi-escapes": { 3974 + "version": "4.3.2", 3975 + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", 3976 + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", 3977 + "license": "MIT", 3978 + "dependencies": { 3979 + "type-fest": "^0.21.3" 3980 + }, 3981 + "engines": { 3982 + "node": ">=8" 3983 + }, 3984 + "funding": { 3985 + "url": "https://github.com/sponsors/sindresorhus" 3986 + } 3987 + }, 3988 + "node_modules/ansi-escapes/node_modules/type-fest": { 3989 + "version": "0.21.3", 3990 + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", 3991 + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", 3992 + "license": "(MIT OR CC0-1.0)", 3993 + "engines": { 3994 + "node": ">=10" 3995 + }, 3996 + "funding": { 3997 + "url": "https://github.com/sponsors/sindresorhus" 3998 + } 3999 + }, 4000 + "node_modules/ansi-regex": { 4001 + "version": "5.0.1", 4002 + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 4003 + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 4004 + "license": "MIT", 4005 + "engines": { 4006 + "node": ">=8" 4007 + } 4008 + }, 4009 + "node_modules/ansi-styles": { 4010 + "version": "4.3.0", 4011 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 4012 + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 4013 + "license": "MIT", 4014 + "dependencies": { 4015 + "color-convert": "^2.0.1" 4016 + }, 4017 + "engines": { 4018 + "node": ">=8" 4019 + }, 4020 + "funding": { 4021 + "url": "https://github.com/chalk/ansi-styles?sponsor=1" 4022 + } 4023 + }, 4024 + "node_modules/any-promise": { 4025 + "version": "1.3.0", 4026 + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 4027 + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", 4028 + "license": "MIT" 4029 + }, 4030 + "node_modules/anymatch": { 4031 + "version": "3.1.3", 4032 + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 4033 + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 4034 + "license": "ISC", 4035 + "dependencies": { 4036 + "normalize-path": "^3.0.0", 4037 + "picomatch": "^2.0.4" 4038 + }, 4039 + "engines": { 4040 + "node": ">= 8" 4041 + } 4042 + }, 4043 + "node_modules/anymatch/node_modules/picomatch": { 4044 + "version": "2.3.1", 4045 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 4046 + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 4047 + "license": "MIT", 4048 + "engines": { 4049 + "node": ">=8.6" 4050 + }, 4051 + "funding": { 4052 + "url": "https://github.com/sponsors/jonschlinkert" 4053 + } 4054 + }, 4055 + "node_modules/arg": { 4056 + "version": "5.0.2", 4057 + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 4058 + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", 4059 + "license": "MIT" 4060 + }, 4061 + "node_modules/argparse": { 4062 + "version": "2.0.1", 4063 + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 4064 + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 4065 + "license": "Python-2.0" 4066 + }, 4067 + "node_modules/array-buffer-byte-length": { 4068 + "version": "1.0.2", 4069 + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", 4070 + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", 4071 + "dev": true, 4072 + "license": "MIT", 4073 + "dependencies": { 4074 + "call-bound": "^1.0.3", 4075 + "is-array-buffer": "^3.0.5" 4076 + }, 4077 + "engines": { 4078 + "node": ">= 0.4" 4079 + }, 4080 + "funding": { 4081 + "url": "https://github.com/sponsors/ljharb" 4082 + } 4083 + }, 4084 + "node_modules/array-includes": { 4085 + "version": "3.1.9", 4086 + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz", 4087 + "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==", 4088 + "dev": true, 4089 + "license": "MIT", 4090 + "dependencies": { 4091 + "call-bind": "^1.0.8", 4092 + "call-bound": "^1.0.4", 4093 + "define-properties": "^1.2.1", 4094 + "es-abstract": "^1.24.0", 4095 + "es-object-atoms": "^1.1.1", 4096 + "get-intrinsic": "^1.3.0", 4097 + "is-string": "^1.1.1", 4098 + "math-intrinsics": "^1.1.0" 4099 + }, 4100 + "engines": { 4101 + "node": ">= 0.4" 4102 + }, 4103 + "funding": { 4104 + "url": "https://github.com/sponsors/ljharb" 4105 + } 4106 + }, 4107 + "node_modules/array.prototype.findlast": { 4108 + "version": "1.2.5", 4109 + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", 4110 + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", 4111 + "dev": true, 4112 + "license": "MIT", 4113 + "dependencies": { 4114 + "call-bind": "^1.0.7", 4115 + "define-properties": "^1.2.1", 4116 + "es-abstract": "^1.23.2", 4117 + "es-errors": "^1.3.0", 4118 + "es-object-atoms": "^1.0.0", 4119 + "es-shim-unscopables": "^1.0.2" 4120 + }, 4121 + "engines": { 4122 + "node": ">= 0.4" 4123 + }, 4124 + "funding": { 4125 + "url": "https://github.com/sponsors/ljharb" 4126 + } 4127 + }, 4128 + "node_modules/array.prototype.findlastindex": { 4129 + "version": "1.2.6", 4130 + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz", 4131 + "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==", 4132 + "dev": true, 4133 + "license": "MIT", 4134 + "dependencies": { 4135 + "call-bind": "^1.0.8", 4136 + "call-bound": "^1.0.4", 4137 + "define-properties": "^1.2.1", 4138 + "es-abstract": "^1.23.9", 4139 + "es-errors": "^1.3.0", 4140 + "es-object-atoms": "^1.1.1", 4141 + "es-shim-unscopables": "^1.1.0" 4142 + }, 4143 + "engines": { 4144 + "node": ">= 0.4" 4145 + }, 4146 + "funding": { 4147 + "url": "https://github.com/sponsors/ljharb" 4148 + } 4149 + }, 4150 + "node_modules/array.prototype.flat": { 4151 + "version": "1.3.3", 4152 + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", 4153 + "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", 4154 + "dev": true, 4155 + "license": "MIT", 4156 + "dependencies": { 4157 + "call-bind": "^1.0.8", 4158 + "define-properties": "^1.2.1", 4159 + "es-abstract": "^1.23.5", 4160 + "es-shim-unscopables": "^1.0.2" 4161 + }, 4162 + "engines": { 4163 + "node": ">= 0.4" 4164 + }, 4165 + "funding": { 4166 + "url": "https://github.com/sponsors/ljharb" 4167 + } 4168 + }, 4169 + "node_modules/array.prototype.flatmap": { 4170 + "version": "1.3.3", 4171 + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", 4172 + "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", 4173 + "dev": true, 4174 + "license": "MIT", 4175 + "dependencies": { 4176 + "call-bind": "^1.0.8", 4177 + "define-properties": "^1.2.1", 4178 + "es-abstract": "^1.23.5", 4179 + "es-shim-unscopables": "^1.0.2" 4180 + }, 4181 + "engines": { 4182 + "node": ">= 0.4" 4183 + }, 4184 + "funding": { 4185 + "url": "https://github.com/sponsors/ljharb" 4186 + } 4187 + }, 4188 + "node_modules/array.prototype.tosorted": { 4189 + "version": "1.1.4", 4190 + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", 4191 + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", 4192 + "dev": true, 4193 + "license": "MIT", 4194 + "dependencies": { 4195 + "call-bind": "^1.0.7", 4196 + "define-properties": "^1.2.1", 4197 + "es-abstract": "^1.23.3", 4198 + "es-errors": "^1.3.0", 4199 + "es-shim-unscopables": "^1.0.2" 4200 + }, 4201 + "engines": { 4202 + "node": ">= 0.4" 4203 + } 4204 + }, 4205 + "node_modules/arraybuffer.prototype.slice": { 4206 + "version": "1.0.4", 4207 + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", 4208 + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", 4209 + "dev": true, 4210 + "license": "MIT", 4211 + "dependencies": { 4212 + "array-buffer-byte-length": "^1.0.1", 4213 + "call-bind": "^1.0.8", 4214 + "define-properties": "^1.2.1", 4215 + "es-abstract": "^1.23.5", 4216 + "es-errors": "^1.3.0", 4217 + "get-intrinsic": "^1.2.6", 4218 + "is-array-buffer": "^3.0.4" 4219 + }, 4220 + "engines": { 4221 + "node": ">= 0.4" 4222 + }, 4223 + "funding": { 4224 + "url": "https://github.com/sponsors/ljharb" 4225 + } 4226 + }, 4227 + "node_modules/asap": { 4228 + "version": "2.0.6", 4229 + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", 4230 + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", 4231 + "license": "MIT" 4232 + }, 4233 + "node_modules/async-function": { 4234 + "version": "1.0.0", 4235 + "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", 4236 + "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", 4237 + "dev": true, 4238 + "license": "MIT", 4239 + "engines": { 4240 + "node": ">= 0.4" 4241 + } 4242 + }, 4243 + "node_modules/async-limiter": { 4244 + "version": "1.0.1", 4245 + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", 4246 + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", 4247 + "license": "MIT" 4248 + }, 4249 + "node_modules/available-typed-arrays": { 4250 + "version": "1.0.7", 4251 + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", 4252 + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", 4253 + "dev": true, 4254 + "license": "MIT", 4255 + "dependencies": { 4256 + "possible-typed-array-names": "^1.0.0" 4257 + }, 4258 + "engines": { 4259 + "node": ">= 0.4" 4260 + }, 4261 + "funding": { 4262 + "url": "https://github.com/sponsors/ljharb" 4263 + } 4264 + }, 4265 + "node_modules/babel-jest": { 4266 + "version": "29.7.0", 4267 + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", 4268 + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", 4269 + "license": "MIT", 4270 + "dependencies": { 4271 + "@jest/transform": "^29.7.0", 4272 + "@types/babel__core": "^7.1.14", 4273 + "babel-plugin-istanbul": "^6.1.1", 4274 + "babel-preset-jest": "^29.6.3", 4275 + "chalk": "^4.0.0", 4276 + "graceful-fs": "^4.2.9", 4277 + "slash": "^3.0.0" 4278 + }, 4279 + "engines": { 4280 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 4281 + }, 4282 + "peerDependencies": { 4283 + "@babel/core": "^7.8.0" 4284 + } 4285 + }, 4286 + "node_modules/babel-plugin-istanbul": { 4287 + "version": "6.1.1", 4288 + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", 4289 + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", 4290 + "license": "BSD-3-Clause", 4291 + "dependencies": { 4292 + "@babel/helper-plugin-utils": "^7.0.0", 4293 + "@istanbuljs/load-nyc-config": "^1.0.0", 4294 + "@istanbuljs/schema": "^0.1.2", 4295 + "istanbul-lib-instrument": "^5.0.4", 4296 + "test-exclude": "^6.0.0" 4297 + }, 4298 + "engines": { 4299 + "node": ">=8" 4300 + } 4301 + }, 4302 + "node_modules/babel-plugin-jest-hoist": { 4303 + "version": "29.6.3", 4304 + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", 4305 + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", 4306 + "license": "MIT", 4307 + "dependencies": { 4308 + "@babel/template": "^7.3.3", 4309 + "@babel/types": "^7.3.3", 4310 + "@types/babel__core": "^7.1.14", 4311 + "@types/babel__traverse": "^7.0.6" 4312 + }, 4313 + "engines": { 4314 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 4315 + } 4316 + }, 4317 + "node_modules/babel-plugin-polyfill-corejs2": { 4318 + "version": "0.4.14", 4319 + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz", 4320 + "integrity": "sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==", 4321 + "license": "MIT", 4322 + "dependencies": { 4323 + "@babel/compat-data": "^7.27.7", 4324 + "@babel/helper-define-polyfill-provider": "^0.6.5", 4325 + "semver": "^6.3.1" 4326 + }, 4327 + "peerDependencies": { 4328 + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" 4329 + } 4330 + }, 4331 + "node_modules/babel-plugin-polyfill-corejs3": { 4332 + "version": "0.13.0", 4333 + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz", 4334 + "integrity": "sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==", 4335 + "license": "MIT", 4336 + "dependencies": { 4337 + "@babel/helper-define-polyfill-provider": "^0.6.5", 4338 + "core-js-compat": "^3.43.0" 4339 + }, 4340 + "peerDependencies": { 4341 + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" 4342 + } 4343 + }, 4344 + "node_modules/babel-plugin-polyfill-regenerator": { 4345 + "version": "0.6.5", 4346 + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz", 4347 + "integrity": "sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==", 4348 + "license": "MIT", 4349 + "dependencies": { 4350 + "@babel/helper-define-polyfill-provider": "^0.6.5" 4351 + }, 4352 + "peerDependencies": { 4353 + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" 4354 + } 4355 + }, 4356 + "node_modules/babel-plugin-react-native-web": { 4357 + "version": "0.19.13", 4358 + "resolved": "https://registry.npmjs.org/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.19.13.tgz", 4359 + "integrity": "sha512-4hHoto6xaN23LCyZgL9LJZc3olmAxd7b6jDzlZnKXAh4rRAbZRKNBJoOOdp46OBqgy+K0t0guTj5/mhA8inymQ==", 4360 + "license": "MIT" 4361 + }, 4362 + "node_modules/babel-plugin-syntax-hermes-parser": { 4363 + "version": "0.25.1", 4364 + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-hermes-parser/-/babel-plugin-syntax-hermes-parser-0.25.1.tgz", 4365 + "integrity": "sha512-IVNpGzboFLfXZUAwkLFcI/bnqVbwky0jP3eBno4HKtqvQJAHBLdgxiG6lQ4to0+Q/YCN3PO0od5NZwIKyY4REQ==", 4366 + "license": "MIT", 4367 + "dependencies": { 4368 + "hermes-parser": "0.25.1" 4369 + } 4370 + }, 4371 + "node_modules/babel-plugin-transform-flow-enums": { 4372 + "version": "0.0.2", 4373 + "resolved": "https://registry.npmjs.org/babel-plugin-transform-flow-enums/-/babel-plugin-transform-flow-enums-0.0.2.tgz", 4374 + "integrity": "sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==", 4375 + "license": "MIT", 4376 + "dependencies": { 4377 + "@babel/plugin-syntax-flow": "^7.12.1" 4378 + } 4379 + }, 4380 + "node_modules/babel-preset-current-node-syntax": { 4381 + "version": "1.2.0", 4382 + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.2.0.tgz", 4383 + "integrity": "sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==", 4384 + "license": "MIT", 4385 + "dependencies": { 4386 + "@babel/plugin-syntax-async-generators": "^7.8.4", 4387 + "@babel/plugin-syntax-bigint": "^7.8.3", 4388 + "@babel/plugin-syntax-class-properties": "^7.12.13", 4389 + "@babel/plugin-syntax-class-static-block": "^7.14.5", 4390 + "@babel/plugin-syntax-import-attributes": "^7.24.7", 4391 + "@babel/plugin-syntax-import-meta": "^7.10.4", 4392 + "@babel/plugin-syntax-json-strings": "^7.8.3", 4393 + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", 4394 + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", 4395 + "@babel/plugin-syntax-numeric-separator": "^7.10.4", 4396 + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", 4397 + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", 4398 + "@babel/plugin-syntax-optional-chaining": "^7.8.3", 4399 + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", 4400 + "@babel/plugin-syntax-top-level-await": "^7.14.5" 4401 + }, 4402 + "peerDependencies": { 4403 + "@babel/core": "^7.0.0 || ^8.0.0-0" 4404 + } 4405 + }, 4406 + "node_modules/babel-preset-expo": { 4407 + "version": "13.2.3", 4408 + "resolved": "https://registry.npmjs.org/babel-preset-expo/-/babel-preset-expo-13.2.3.tgz", 4409 + "integrity": "sha512-wQJn92lqj8GKR7Ojg/aW4+GkqI6ZdDNTDyOqhhl7A9bAqk6t0ukUOWLDXQb4p0qKJjMDV1F6gNWasI2KUbuVTQ==", 4410 + "license": "MIT", 4411 + "dependencies": { 4412 + "@babel/helper-module-imports": "^7.25.9", 4413 + "@babel/plugin-proposal-decorators": "^7.12.9", 4414 + "@babel/plugin-proposal-export-default-from": "^7.24.7", 4415 + "@babel/plugin-syntax-export-default-from": "^7.24.7", 4416 + "@babel/plugin-transform-export-namespace-from": "^7.25.9", 4417 + "@babel/plugin-transform-flow-strip-types": "^7.25.2", 4418 + "@babel/plugin-transform-modules-commonjs": "^7.24.8", 4419 + "@babel/plugin-transform-object-rest-spread": "^7.24.7", 4420 + "@babel/plugin-transform-parameters": "^7.24.7", 4421 + "@babel/plugin-transform-private-methods": "^7.24.7", 4422 + "@babel/plugin-transform-private-property-in-object": "^7.24.7", 4423 + "@babel/plugin-transform-runtime": "^7.24.7", 4424 + "@babel/preset-react": "^7.22.15", 4425 + "@babel/preset-typescript": "^7.23.0", 4426 + "@react-native/babel-preset": "0.79.5", 4427 + "babel-plugin-react-native-web": "~0.19.13", 4428 + "babel-plugin-syntax-hermes-parser": "^0.25.1", 4429 + "babel-plugin-transform-flow-enums": "^0.0.2", 4430 + "debug": "^4.3.4", 4431 + "react-refresh": "^0.14.2", 4432 + "resolve-from": "^5.0.0" 4433 + }, 4434 + "peerDependencies": { 4435 + "babel-plugin-react-compiler": "^19.0.0-beta-e993439-20250405" 4436 + }, 4437 + "peerDependenciesMeta": { 4438 + "babel-plugin-react-compiler": { 4439 + "optional": true 4440 + } 4441 + } 4442 + }, 4443 + "node_modules/babel-preset-jest": { 4444 + "version": "29.6.3", 4445 + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", 4446 + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", 4447 + "license": "MIT", 4448 + "dependencies": { 4449 + "babel-plugin-jest-hoist": "^29.6.3", 4450 + "babel-preset-current-node-syntax": "^1.0.0" 4451 + }, 4452 + "engines": { 4453 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 4454 + }, 4455 + "peerDependencies": { 4456 + "@babel/core": "^7.0.0" 4457 + } 4458 + }, 4459 + "node_modules/balanced-match": { 4460 + "version": "1.0.2", 4461 + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 4462 + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 4463 + "license": "MIT" 4464 + }, 4465 + "node_modules/base64-js": { 4466 + "version": "1.5.1", 4467 + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 4468 + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", 4469 + "funding": [ 4470 + { 4471 + "type": "github", 4472 + "url": "https://github.com/sponsors/feross" 4473 + }, 4474 + { 4475 + "type": "patreon", 4476 + "url": "https://www.patreon.com/feross" 4477 + }, 4478 + { 4479 + "type": "consulting", 4480 + "url": "https://feross.org/support" 4481 + } 4482 + ], 4483 + "license": "MIT" 4484 + }, 4485 + "node_modules/better-opn": { 4486 + "version": "3.0.2", 4487 + "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz", 4488 + "integrity": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==", 4489 + "license": "MIT", 4490 + "dependencies": { 4491 + "open": "^8.0.4" 4492 + }, 4493 + "engines": { 4494 + "node": ">=12.0.0" 4495 + } 4496 + }, 4497 + "node_modules/better-opn/node_modules/open": { 4498 + "version": "8.4.2", 4499 + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", 4500 + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", 4501 + "license": "MIT", 4502 + "dependencies": { 4503 + "define-lazy-prop": "^2.0.0", 4504 + "is-docker": "^2.1.1", 4505 + "is-wsl": "^2.2.0" 4506 + }, 4507 + "engines": { 4508 + "node": ">=12" 4509 + }, 4510 + "funding": { 4511 + "url": "https://github.com/sponsors/sindresorhus" 4512 + } 4513 + }, 4514 + "node_modules/big-integer": { 4515 + "version": "1.6.52", 4516 + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", 4517 + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", 4518 + "license": "Unlicense", 4519 + "engines": { 4520 + "node": ">=0.6" 4521 + } 4522 + }, 4523 + "node_modules/bplist-creator": { 4524 + "version": "0.1.0", 4525 + "resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.1.0.tgz", 4526 + "integrity": "sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==", 4527 + "license": "MIT", 4528 + "dependencies": { 4529 + "stream-buffers": "2.2.x" 4530 + } 4531 + }, 4532 + "node_modules/bplist-parser": { 4533 + "version": "0.3.2", 4534 + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.2.tgz", 4535 + "integrity": "sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==", 4536 + "license": "MIT", 4537 + "dependencies": { 4538 + "big-integer": "1.6.x" 4539 + }, 4540 + "engines": { 4541 + "node": ">= 5.10.0" 4542 + } 4543 + }, 4544 + "node_modules/brace-expansion": { 4545 + "version": "1.1.12", 4546 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", 4547 + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", 4548 + "license": "MIT", 4549 + "dependencies": { 4550 + "balanced-match": "^1.0.0", 4551 + "concat-map": "0.0.1" 4552 + } 4553 + }, 4554 + "node_modules/braces": { 4555 + "version": "3.0.3", 4556 + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 4557 + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 4558 + "license": "MIT", 4559 + "dependencies": { 4560 + "fill-range": "^7.1.1" 4561 + }, 4562 + "engines": { 4563 + "node": ">=8" 4564 + } 4565 + }, 4566 + "node_modules/browserslist": { 4567 + "version": "4.25.2", 4568 + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.2.tgz", 4569 + "integrity": "sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==", 4570 + "funding": [ 4571 + { 4572 + "type": "opencollective", 4573 + "url": "https://opencollective.com/browserslist" 4574 + }, 4575 + { 4576 + "type": "tidelift", 4577 + "url": "https://tidelift.com/funding/github/npm/browserslist" 4578 + }, 4579 + { 4580 + "type": "github", 4581 + "url": "https://github.com/sponsors/ai" 4582 + } 4583 + ], 4584 + "license": "MIT", 4585 + "dependencies": { 4586 + "caniuse-lite": "^1.0.30001733", 4587 + "electron-to-chromium": "^1.5.199", 4588 + "node-releases": "^2.0.19", 4589 + "update-browserslist-db": "^1.1.3" 4590 + }, 4591 + "bin": { 4592 + "browserslist": "cli.js" 4593 + }, 4594 + "engines": { 4595 + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 4596 + } 4597 + }, 4598 + "node_modules/bser": { 4599 + "version": "2.1.1", 4600 + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", 4601 + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", 4602 + "license": "Apache-2.0", 4603 + "dependencies": { 4604 + "node-int64": "^0.4.0" 4605 + } 4606 + }, 4607 + "node_modules/buffer": { 4608 + "version": "5.7.1", 4609 + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", 4610 + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", 4611 + "funding": [ 4612 + { 4613 + "type": "github", 4614 + "url": "https://github.com/sponsors/feross" 4615 + }, 4616 + { 4617 + "type": "patreon", 4618 + "url": "https://www.patreon.com/feross" 4619 + }, 4620 + { 4621 + "type": "consulting", 4622 + "url": "https://feross.org/support" 4623 + } 4624 + ], 4625 + "license": "MIT", 4626 + "dependencies": { 4627 + "base64-js": "^1.3.1", 4628 + "ieee754": "^1.1.13" 4629 + } 4630 + }, 4631 + "node_modules/buffer-from": { 4632 + "version": "1.1.2", 4633 + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 4634 + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 4635 + "license": "MIT" 4636 + }, 4637 + "node_modules/bytes": { 4638 + "version": "3.1.2", 4639 + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 4640 + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", 4641 + "license": "MIT", 4642 + "engines": { 4643 + "node": ">= 0.8" 4644 + } 4645 + }, 4646 + "node_modules/call-bind": { 4647 + "version": "1.0.8", 4648 + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", 4649 + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", 4650 + "dev": true, 4651 + "license": "MIT", 4652 + "dependencies": { 4653 + "call-bind-apply-helpers": "^1.0.0", 4654 + "es-define-property": "^1.0.0", 4655 + "get-intrinsic": "^1.2.4", 4656 + "set-function-length": "^1.2.2" 4657 + }, 4658 + "engines": { 4659 + "node": ">= 0.4" 4660 + }, 4661 + "funding": { 4662 + "url": "https://github.com/sponsors/ljharb" 4663 + } 4664 + }, 4665 + "node_modules/call-bind-apply-helpers": { 4666 + "version": "1.0.2", 4667 + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", 4668 + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", 4669 + "dev": true, 4670 + "license": "MIT", 4671 + "dependencies": { 4672 + "es-errors": "^1.3.0", 4673 + "function-bind": "^1.1.2" 4674 + }, 4675 + "engines": { 4676 + "node": ">= 0.4" 4677 + } 4678 + }, 4679 + "node_modules/call-bound": { 4680 + "version": "1.0.4", 4681 + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", 4682 + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", 4683 + "dev": true, 4684 + "license": "MIT", 4685 + "dependencies": { 4686 + "call-bind-apply-helpers": "^1.0.2", 4687 + "get-intrinsic": "^1.3.0" 4688 + }, 4689 + "engines": { 4690 + "node": ">= 0.4" 4691 + }, 4692 + "funding": { 4693 + "url": "https://github.com/sponsors/ljharb" 4694 + } 4695 + }, 4696 + "node_modules/caller-callsite": { 4697 + "version": "2.0.0", 4698 + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", 4699 + "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", 4700 + "license": "MIT", 4701 + "dependencies": { 4702 + "callsites": "^2.0.0" 4703 + }, 4704 + "engines": { 4705 + "node": ">=4" 4706 + } 4707 + }, 4708 + "node_modules/caller-callsite/node_modules/callsites": { 4709 + "version": "2.0.0", 4710 + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", 4711 + "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==", 4712 + "license": "MIT", 4713 + "engines": { 4714 + "node": ">=4" 4715 + } 4716 + }, 4717 + "node_modules/caller-path": { 4718 + "version": "2.0.0", 4719 + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", 4720 + "integrity": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==", 4721 + "license": "MIT", 4722 + "dependencies": { 4723 + "caller-callsite": "^2.0.0" 4724 + }, 4725 + "engines": { 4726 + "node": ">=4" 4727 + } 4728 + }, 4729 + "node_modules/callsites": { 4730 + "version": "3.1.0", 4731 + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 4732 + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 4733 + "dev": true, 4734 + "license": "MIT", 4735 + "engines": { 4736 + "node": ">=6" 4737 + } 4738 + }, 4739 + "node_modules/camelcase": { 4740 + "version": "5.3.1", 4741 + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", 4742 + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", 4743 + "license": "MIT", 4744 + "engines": { 4745 + "node": ">=6" 4746 + } 4747 + }, 4748 + "node_modules/caniuse-lite": { 4749 + "version": "1.0.30001735", 4750 + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001735.tgz", 4751 + "integrity": "sha512-EV/laoX7Wq2J9TQlyIXRxTJqIw4sxfXS4OYgudGxBYRuTv0q7AM6yMEpU/Vo1I94thg9U6EZ2NfZx9GJq83u7w==", 4752 + "funding": [ 4753 + { 4754 + "type": "opencollective", 4755 + "url": "https://opencollective.com/browserslist" 4756 + }, 4757 + { 4758 + "type": "tidelift", 4759 + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 4760 + }, 4761 + { 4762 + "type": "github", 4763 + "url": "https://github.com/sponsors/ai" 4764 + } 4765 + ], 4766 + "license": "CC-BY-4.0" 4767 + }, 4768 + "node_modules/chalk": { 4769 + "version": "4.1.2", 4770 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 4771 + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 4772 + "license": "MIT", 4773 + "dependencies": { 4774 + "ansi-styles": "^4.1.0", 4775 + "supports-color": "^7.1.0" 4776 + }, 4777 + "engines": { 4778 + "node": ">=10" 4779 + }, 4780 + "funding": { 4781 + "url": "https://github.com/chalk/chalk?sponsor=1" 4782 + } 4783 + }, 4784 + "node_modules/chownr": { 4785 + "version": "3.0.0", 4786 + "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", 4787 + "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", 4788 + "license": "BlueOak-1.0.0", 4789 + "engines": { 4790 + "node": ">=18" 4791 + } 4792 + }, 4793 + "node_modules/chrome-launcher": { 4794 + "version": "0.15.2", 4795 + "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.2.tgz", 4796 + "integrity": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==", 4797 + "license": "Apache-2.0", 4798 + "dependencies": { 4799 + "@types/node": "*", 4800 + "escape-string-regexp": "^4.0.0", 4801 + "is-wsl": "^2.2.0", 4802 + "lighthouse-logger": "^1.0.0" 4803 + }, 4804 + "bin": { 4805 + "print-chrome-path": "bin/print-chrome-path.js" 4806 + }, 4807 + "engines": { 4808 + "node": ">=12.13.0" 4809 + } 4810 + }, 4811 + "node_modules/chromium-edge-launcher": { 4812 + "version": "0.2.0", 4813 + "resolved": "https://registry.npmjs.org/chromium-edge-launcher/-/chromium-edge-launcher-0.2.0.tgz", 4814 + "integrity": "sha512-JfJjUnq25y9yg4FABRRVPmBGWPZZi+AQXT4mxupb67766/0UlhG8PAZCz6xzEMXTbW3CsSoE8PcCWA49n35mKg==", 4815 + "license": "Apache-2.0", 4816 + "dependencies": { 4817 + "@types/node": "*", 4818 + "escape-string-regexp": "^4.0.0", 4819 + "is-wsl": "^2.2.0", 4820 + "lighthouse-logger": "^1.0.0", 4821 + "mkdirp": "^1.0.4", 4822 + "rimraf": "^3.0.2" 4823 + } 4824 + }, 4825 + "node_modules/ci-info": { 4826 + "version": "3.9.0", 4827 + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", 4828 + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", 4829 + "funding": [ 4830 + { 4831 + "type": "github", 4832 + "url": "https://github.com/sponsors/sibiraj-s" 4833 + } 4834 + ], 4835 + "license": "MIT", 4836 + "engines": { 4837 + "node": ">=8" 4838 + } 4839 + }, 4840 + "node_modules/cli-cursor": { 4841 + "version": "2.1.0", 4842 + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", 4843 + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", 4844 + "license": "MIT", 4845 + "dependencies": { 4846 + "restore-cursor": "^2.0.0" 4847 + }, 4848 + "engines": { 4849 + "node": ">=4" 4850 + } 4851 + }, 4852 + "node_modules/cli-spinners": { 4853 + "version": "2.9.2", 4854 + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", 4855 + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", 4856 + "license": "MIT", 4857 + "engines": { 4858 + "node": ">=6" 4859 + }, 4860 + "funding": { 4861 + "url": "https://github.com/sponsors/sindresorhus" 4862 + } 4863 + }, 4864 + "node_modules/client-only": { 4865 + "version": "0.0.1", 4866 + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", 4867 + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", 4868 + "license": "MIT" 4869 + }, 4870 + "node_modules/cliui": { 4871 + "version": "8.0.1", 4872 + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 4873 + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 4874 + "license": "ISC", 4875 + "dependencies": { 4876 + "string-width": "^4.2.0", 4877 + "strip-ansi": "^6.0.1", 4878 + "wrap-ansi": "^7.0.0" 4879 + }, 4880 + "engines": { 4881 + "node": ">=12" 4882 + } 4883 + }, 4884 + "node_modules/cliui/node_modules/emoji-regex": { 4885 + "version": "8.0.0", 4886 + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 4887 + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 4888 + "license": "MIT" 4889 + }, 4890 + "node_modules/cliui/node_modules/string-width": { 4891 + "version": "4.2.3", 4892 + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 4893 + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 4894 + "license": "MIT", 4895 + "dependencies": { 4896 + "emoji-regex": "^8.0.0", 4897 + "is-fullwidth-code-point": "^3.0.0", 4898 + "strip-ansi": "^6.0.1" 4899 + }, 4900 + "engines": { 4901 + "node": ">=8" 4902 + } 4903 + }, 4904 + "node_modules/cliui/node_modules/strip-ansi": { 4905 + "version": "6.0.1", 4906 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 4907 + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 4908 + "license": "MIT", 4909 + "dependencies": { 4910 + "ansi-regex": "^5.0.1" 4911 + }, 4912 + "engines": { 4913 + "node": ">=8" 4914 + } 4915 + }, 4916 + "node_modules/clone": { 4917 + "version": "1.0.4", 4918 + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", 4919 + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", 4920 + "license": "MIT", 4921 + "engines": { 4922 + "node": ">=0.8" 4923 + } 4924 + }, 4925 + "node_modules/color": { 4926 + "version": "4.2.3", 4927 + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", 4928 + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", 4929 + "license": "MIT", 4930 + "dependencies": { 4931 + "color-convert": "^2.0.1", 4932 + "color-string": "^1.9.0" 4933 + }, 4934 + "engines": { 4935 + "node": ">=12.5.0" 4936 + } 4937 + }, 4938 + "node_modules/color-convert": { 4939 + "version": "2.0.1", 4940 + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 4941 + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 4942 + "license": "MIT", 4943 + "dependencies": { 4944 + "color-name": "~1.1.4" 4945 + }, 4946 + "engines": { 4947 + "node": ">=7.0.0" 4948 + } 4949 + }, 4950 + "node_modules/color-name": { 4951 + "version": "1.1.4", 4952 + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 4953 + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 4954 + "license": "MIT" 4955 + }, 4956 + "node_modules/color-string": { 4957 + "version": "1.9.1", 4958 + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", 4959 + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", 4960 + "license": "MIT", 4961 + "dependencies": { 4962 + "color-name": "^1.0.0", 4963 + "simple-swizzle": "^0.2.2" 4964 + } 4965 + }, 4966 + "node_modules/commander": { 4967 + "version": "7.2.0", 4968 + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", 4969 + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", 4970 + "license": "MIT", 4971 + "engines": { 4972 + "node": ">= 10" 4973 + } 4974 + }, 4975 + "node_modules/compressible": { 4976 + "version": "2.0.18", 4977 + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", 4978 + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", 4979 + "license": "MIT", 4980 + "dependencies": { 4981 + "mime-db": ">= 1.43.0 < 2" 4982 + }, 4983 + "engines": { 4984 + "node": ">= 0.6" 4985 + } 4986 + }, 4987 + "node_modules/compression": { 4988 + "version": "1.8.1", 4989 + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", 4990 + "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", 4991 + "license": "MIT", 4992 + "dependencies": { 4993 + "bytes": "3.1.2", 4994 + "compressible": "~2.0.18", 4995 + "debug": "2.6.9", 4996 + "negotiator": "~0.6.4", 4997 + "on-headers": "~1.1.0", 4998 + "safe-buffer": "5.2.1", 4999 + "vary": "~1.1.2" 5000 + }, 5001 + "engines": { 5002 + "node": ">= 0.8.0" 5003 + } 5004 + }, 5005 + "node_modules/compression/node_modules/debug": { 5006 + "version": "2.6.9", 5007 + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 5008 + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 5009 + "license": "MIT", 5010 + "dependencies": { 5011 + "ms": "2.0.0" 5012 + } 5013 + }, 5014 + "node_modules/compression/node_modules/ms": { 5015 + "version": "2.0.0", 5016 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 5017 + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 5018 + "license": "MIT" 5019 + }, 5020 + "node_modules/compression/node_modules/negotiator": { 5021 + "version": "0.6.4", 5022 + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", 5023 + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", 5024 + "license": "MIT", 5025 + "engines": { 5026 + "node": ">= 0.6" 5027 + } 5028 + }, 5029 + "node_modules/concat-map": { 5030 + "version": "0.0.1", 5031 + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 5032 + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 5033 + "license": "MIT" 5034 + }, 5035 + "node_modules/connect": { 5036 + "version": "3.7.0", 5037 + "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", 5038 + "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", 5039 + "license": "MIT", 5040 + "dependencies": { 5041 + "debug": "2.6.9", 5042 + "finalhandler": "1.1.2", 5043 + "parseurl": "~1.3.3", 5044 + "utils-merge": "1.0.1" 5045 + }, 5046 + "engines": { 5047 + "node": ">= 0.10.0" 5048 + } 5049 + }, 5050 + "node_modules/connect/node_modules/debug": { 5051 + "version": "2.6.9", 5052 + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 5053 + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 5054 + "license": "MIT", 5055 + "dependencies": { 5056 + "ms": "2.0.0" 5057 + } 5058 + }, 5059 + "node_modules/connect/node_modules/ms": { 5060 + "version": "2.0.0", 5061 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 5062 + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 5063 + "license": "MIT" 5064 + }, 5065 + "node_modules/convert-source-map": { 5066 + "version": "2.0.0", 5067 + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 5068 + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 5069 + "license": "MIT" 5070 + }, 5071 + "node_modules/core-js-compat": { 5072 + "version": "3.45.0", 5073 + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.45.0.tgz", 5074 + "integrity": "sha512-gRoVMBawZg0OnxaVv3zpqLLxaHmsubEGyTnqdpI/CEBvX4JadI1dMSHxagThprYRtSVbuQxvi6iUatdPxohHpA==", 5075 + "license": "MIT", 5076 + "dependencies": { 5077 + "browserslist": "^4.25.1" 5078 + }, 5079 + "funding": { 5080 + "type": "opencollective", 5081 + "url": "https://opencollective.com/core-js" 5082 + } 5083 + }, 5084 + "node_modules/cosmiconfig": { 5085 + "version": "5.2.1", 5086 + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", 5087 + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", 5088 + "license": "MIT", 5089 + "dependencies": { 5090 + "import-fresh": "^2.0.0", 5091 + "is-directory": "^0.3.1", 5092 + "js-yaml": "^3.13.1", 5093 + "parse-json": "^4.0.0" 5094 + }, 5095 + "engines": { 5096 + "node": ">=4" 5097 + } 5098 + }, 5099 + "node_modules/cosmiconfig/node_modules/argparse": { 5100 + "version": "1.0.10", 5101 + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 5102 + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 5103 + "license": "MIT", 5104 + "dependencies": { 5105 + "sprintf-js": "~1.0.2" 5106 + } 5107 + }, 5108 + "node_modules/cosmiconfig/node_modules/import-fresh": { 5109 + "version": "2.0.0", 5110 + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", 5111 + "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", 5112 + "license": "MIT", 5113 + "dependencies": { 5114 + "caller-path": "^2.0.0", 5115 + "resolve-from": "^3.0.0" 5116 + }, 5117 + "engines": { 5118 + "node": ">=4" 5119 + } 5120 + }, 5121 + "node_modules/cosmiconfig/node_modules/js-yaml": { 5122 + "version": "3.14.1", 5123 + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", 5124 + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", 5125 + "license": "MIT", 5126 + "dependencies": { 5127 + "argparse": "^1.0.7", 5128 + "esprima": "^4.0.0" 5129 + }, 5130 + "bin": { 5131 + "js-yaml": "bin/js-yaml.js" 5132 + } 5133 + }, 5134 + "node_modules/cosmiconfig/node_modules/resolve-from": { 5135 + "version": "3.0.0", 5136 + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", 5137 + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", 5138 + "license": "MIT", 5139 + "engines": { 5140 + "node": ">=4" 5141 + } 5142 + }, 5143 + "node_modules/cross-fetch": { 5144 + "version": "3.2.0", 5145 + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.2.0.tgz", 5146 + "integrity": "sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==", 5147 + "license": "MIT", 5148 + "dependencies": { 5149 + "node-fetch": "^2.7.0" 5150 + } 5151 + }, 5152 + "node_modules/cross-spawn": { 5153 + "version": "7.0.6", 5154 + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 5155 + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 5156 + "license": "MIT", 5157 + "dependencies": { 5158 + "path-key": "^3.1.0", 5159 + "shebang-command": "^2.0.0", 5160 + "which": "^2.0.1" 5161 + }, 5162 + "engines": { 5163 + "node": ">= 8" 5164 + } 5165 + }, 5166 + "node_modules/crypto-random-string": { 5167 + "version": "2.0.0", 5168 + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", 5169 + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", 5170 + "license": "MIT", 5171 + "engines": { 5172 + "node": ">=8" 5173 + } 5174 + }, 5175 + "node_modules/css-in-js-utils": { 5176 + "version": "3.1.0", 5177 + "resolved": "https://registry.npmjs.org/css-in-js-utils/-/css-in-js-utils-3.1.0.tgz", 5178 + "integrity": "sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==", 5179 + "license": "MIT", 5180 + "dependencies": { 5181 + "hyphenate-style-name": "^1.0.3" 5182 + } 5183 + }, 5184 + "node_modules/csstype": { 5185 + "version": "3.1.3", 5186 + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", 5187 + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", 5188 + "devOptional": true, 5189 + "license": "MIT" 5190 + }, 5191 + "node_modules/data-view-buffer": { 5192 + "version": "1.0.2", 5193 + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", 5194 + "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", 5195 + "dev": true, 5196 + "license": "MIT", 5197 + "dependencies": { 5198 + "call-bound": "^1.0.3", 5199 + "es-errors": "^1.3.0", 5200 + "is-data-view": "^1.0.2" 5201 + }, 5202 + "engines": { 5203 + "node": ">= 0.4" 5204 + }, 5205 + "funding": { 5206 + "url": "https://github.com/sponsors/ljharb" 5207 + } 5208 + }, 5209 + "node_modules/data-view-byte-length": { 5210 + "version": "1.0.2", 5211 + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", 5212 + "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", 5213 + "dev": true, 5214 + "license": "MIT", 5215 + "dependencies": { 5216 + "call-bound": "^1.0.3", 5217 + "es-errors": "^1.3.0", 5218 + "is-data-view": "^1.0.2" 5219 + }, 5220 + "engines": { 5221 + "node": ">= 0.4" 5222 + }, 5223 + "funding": { 5224 + "url": "https://github.com/sponsors/inspect-js" 5225 + } 5226 + }, 5227 + "node_modules/data-view-byte-offset": { 5228 + "version": "1.0.1", 5229 + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", 5230 + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", 5231 + "dev": true, 5232 + "license": "MIT", 5233 + "dependencies": { 5234 + "call-bound": "^1.0.2", 5235 + "es-errors": "^1.3.0", 5236 + "is-data-view": "^1.0.1" 5237 + }, 5238 + "engines": { 5239 + "node": ">= 0.4" 5240 + }, 5241 + "funding": { 5242 + "url": "https://github.com/sponsors/ljharb" 5243 + } 5244 + }, 5245 + "node_modules/debug": { 5246 + "version": "4.4.1", 5247 + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", 5248 + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", 5249 + "license": "MIT", 5250 + "dependencies": { 5251 + "ms": "^2.1.3" 5252 + }, 5253 + "engines": { 5254 + "node": ">=6.0" 5255 + }, 5256 + "peerDependenciesMeta": { 5257 + "supports-color": { 5258 + "optional": true 5259 + } 5260 + } 5261 + }, 5262 + "node_modules/decode-uri-component": { 5263 + "version": "0.2.2", 5264 + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", 5265 + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", 5266 + "license": "MIT", 5267 + "engines": { 5268 + "node": ">=0.10" 5269 + } 5270 + }, 5271 + "node_modules/deep-extend": { 5272 + "version": "0.6.0", 5273 + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", 5274 + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", 5275 + "license": "MIT", 5276 + "engines": { 5277 + "node": ">=4.0.0" 5278 + } 5279 + }, 5280 + "node_modules/deep-is": { 5281 + "version": "0.1.4", 5282 + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 5283 + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 5284 + "dev": true, 5285 + "license": "MIT" 5286 + }, 5287 + "node_modules/deepmerge": { 5288 + "version": "4.3.1", 5289 + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 5290 + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 5291 + "license": "MIT", 5292 + "engines": { 5293 + "node": ">=0.10.0" 5294 + } 5295 + }, 5296 + "node_modules/defaults": { 5297 + "version": "1.0.4", 5298 + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", 5299 + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", 5300 + "license": "MIT", 5301 + "dependencies": { 5302 + "clone": "^1.0.2" 5303 + }, 5304 + "funding": { 5305 + "url": "https://github.com/sponsors/sindresorhus" 5306 + } 5307 + }, 5308 + "node_modules/define-data-property": { 5309 + "version": "1.1.4", 5310 + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", 5311 + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", 5312 + "dev": true, 5313 + "license": "MIT", 5314 + "dependencies": { 5315 + "es-define-property": "^1.0.0", 5316 + "es-errors": "^1.3.0", 5317 + "gopd": "^1.0.1" 5318 + }, 5319 + "engines": { 5320 + "node": ">= 0.4" 5321 + }, 5322 + "funding": { 5323 + "url": "https://github.com/sponsors/ljharb" 5324 + } 5325 + }, 5326 + "node_modules/define-lazy-prop": { 5327 + "version": "2.0.0", 5328 + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", 5329 + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", 5330 + "license": "MIT", 5331 + "engines": { 5332 + "node": ">=8" 5333 + } 5334 + }, 5335 + "node_modules/define-properties": { 5336 + "version": "1.2.1", 5337 + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", 5338 + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", 5339 + "dev": true, 5340 + "license": "MIT", 5341 + "dependencies": { 5342 + "define-data-property": "^1.0.1", 5343 + "has-property-descriptors": "^1.0.0", 5344 + "object-keys": "^1.1.1" 5345 + }, 5346 + "engines": { 5347 + "node": ">= 0.4" 5348 + }, 5349 + "funding": { 5350 + "url": "https://github.com/sponsors/ljharb" 5351 + } 5352 + }, 5353 + "node_modules/depd": { 5354 + "version": "2.0.0", 5355 + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 5356 + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 5357 + "license": "MIT", 5358 + "engines": { 5359 + "node": ">= 0.8" 5360 + } 5361 + }, 5362 + "node_modules/destroy": { 5363 + "version": "1.2.0", 5364 + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 5365 + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", 5366 + "license": "MIT", 5367 + "engines": { 5368 + "node": ">= 0.8", 5369 + "npm": "1.2.8000 || >= 1.4.16" 5370 + } 5371 + }, 5372 + "node_modules/detect-libc": { 5373 + "version": "1.0.3", 5374 + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", 5375 + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", 5376 + "license": "Apache-2.0", 5377 + "bin": { 5378 + "detect-libc": "bin/detect-libc.js" 5379 + }, 5380 + "engines": { 5381 + "node": ">=0.10" 5382 + } 5383 + }, 5384 + "node_modules/doctrine": { 5385 + "version": "2.1.0", 5386 + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 5387 + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 5388 + "dev": true, 5389 + "license": "Apache-2.0", 5390 + "dependencies": { 5391 + "esutils": "^2.0.2" 5392 + }, 5393 + "engines": { 5394 + "node": ">=0.10.0" 5395 + } 5396 + }, 5397 + "node_modules/dotenv": { 5398 + "version": "16.4.7", 5399 + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.7.tgz", 5400 + "integrity": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==", 5401 + "license": "BSD-2-Clause", 5402 + "engines": { 5403 + "node": ">=12" 5404 + }, 5405 + "funding": { 5406 + "url": "https://dotenvx.com" 5407 + } 5408 + }, 5409 + "node_modules/dotenv-expand": { 5410 + "version": "11.0.7", 5411 + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-11.0.7.tgz", 5412 + "integrity": "sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==", 5413 + "license": "BSD-2-Clause", 5414 + "dependencies": { 5415 + "dotenv": "^16.4.5" 5416 + }, 5417 + "engines": { 5418 + "node": ">=12" 5419 + }, 5420 + "funding": { 5421 + "url": "https://dotenvx.com" 5422 + } 5423 + }, 5424 + "node_modules/dunder-proto": { 5425 + "version": "1.0.1", 5426 + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", 5427 + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", 5428 + "dev": true, 5429 + "license": "MIT", 5430 + "dependencies": { 5431 + "call-bind-apply-helpers": "^1.0.1", 5432 + "es-errors": "^1.3.0", 5433 + "gopd": "^1.2.0" 5434 + }, 5435 + "engines": { 5436 + "node": ">= 0.4" 5437 + } 5438 + }, 5439 + "node_modules/eastasianwidth": { 5440 + "version": "0.2.0", 5441 + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 5442 + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", 5443 + "license": "MIT" 5444 + }, 5445 + "node_modules/ee-first": { 5446 + "version": "1.1.1", 5447 + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 5448 + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", 5449 + "license": "MIT" 5450 + }, 5451 + "node_modules/electron-to-chromium": { 5452 + "version": "1.5.201", 5453 + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.201.tgz", 5454 + "integrity": "sha512-ZG65vsrLClodGqywuigc+7m0gr4ISoTQttfVh7nfpLv0M7SIwF4WbFNEOywcqTiujs12AUeeXbFyQieDICAIxg==", 5455 + "license": "ISC" 5456 + }, 5457 + "node_modules/emoji-regex": { 5458 + "version": "9.2.2", 5459 + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 5460 + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", 5461 + "license": "MIT" 5462 + }, 5463 + "node_modules/encodeurl": { 5464 + "version": "1.0.2", 5465 + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 5466 + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", 5467 + "license": "MIT", 5468 + "engines": { 5469 + "node": ">= 0.8" 5470 + } 5471 + }, 5472 + "node_modules/env-editor": { 5473 + "version": "0.4.2", 5474 + "resolved": "https://registry.npmjs.org/env-editor/-/env-editor-0.4.2.tgz", 5475 + "integrity": "sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==", 5476 + "license": "MIT", 5477 + "engines": { 5478 + "node": ">=8" 5479 + } 5480 + }, 5481 + "node_modules/error-ex": { 5482 + "version": "1.3.2", 5483 + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 5484 + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 5485 + "license": "MIT", 5486 + "dependencies": { 5487 + "is-arrayish": "^0.2.1" 5488 + } 5489 + }, 5490 + "node_modules/error-stack-parser": { 5491 + "version": "2.1.4", 5492 + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", 5493 + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", 5494 + "license": "MIT", 5495 + "dependencies": { 5496 + "stackframe": "^1.3.4" 5497 + } 5498 + }, 5499 + "node_modules/es-abstract": { 5500 + "version": "1.24.0", 5501 + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.0.tgz", 5502 + "integrity": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==", 5503 + "dev": true, 5504 + "license": "MIT", 5505 + "dependencies": { 5506 + "array-buffer-byte-length": "^1.0.2", 5507 + "arraybuffer.prototype.slice": "^1.0.4", 5508 + "available-typed-arrays": "^1.0.7", 5509 + "call-bind": "^1.0.8", 5510 + "call-bound": "^1.0.4", 5511 + "data-view-buffer": "^1.0.2", 5512 + "data-view-byte-length": "^1.0.2", 5513 + "data-view-byte-offset": "^1.0.1", 5514 + "es-define-property": "^1.0.1", 5515 + "es-errors": "^1.3.0", 5516 + "es-object-atoms": "^1.1.1", 5517 + "es-set-tostringtag": "^2.1.0", 5518 + "es-to-primitive": "^1.3.0", 5519 + "function.prototype.name": "^1.1.8", 5520 + "get-intrinsic": "^1.3.0", 5521 + "get-proto": "^1.0.1", 5522 + "get-symbol-description": "^1.1.0", 5523 + "globalthis": "^1.0.4", 5524 + "gopd": "^1.2.0", 5525 + "has-property-descriptors": "^1.0.2", 5526 + "has-proto": "^1.2.0", 5527 + "has-symbols": "^1.1.0", 5528 + "hasown": "^2.0.2", 5529 + "internal-slot": "^1.1.0", 5530 + "is-array-buffer": "^3.0.5", 5531 + "is-callable": "^1.2.7", 5532 + "is-data-view": "^1.0.2", 5533 + "is-negative-zero": "^2.0.3", 5534 + "is-regex": "^1.2.1", 5535 + "is-set": "^2.0.3", 5536 + "is-shared-array-buffer": "^1.0.4", 5537 + "is-string": "^1.1.1", 5538 + "is-typed-array": "^1.1.15", 5539 + "is-weakref": "^1.1.1", 5540 + "math-intrinsics": "^1.1.0", 5541 + "object-inspect": "^1.13.4", 5542 + "object-keys": "^1.1.1", 5543 + "object.assign": "^4.1.7", 5544 + "own-keys": "^1.0.1", 5545 + "regexp.prototype.flags": "^1.5.4", 5546 + "safe-array-concat": "^1.1.3", 5547 + "safe-push-apply": "^1.0.0", 5548 + "safe-regex-test": "^1.1.0", 5549 + "set-proto": "^1.0.0", 5550 + "stop-iteration-iterator": "^1.1.0", 5551 + "string.prototype.trim": "^1.2.10", 5552 + "string.prototype.trimend": "^1.0.9", 5553 + "string.prototype.trimstart": "^1.0.8", 5554 + "typed-array-buffer": "^1.0.3", 5555 + "typed-array-byte-length": "^1.0.3", 5556 + "typed-array-byte-offset": "^1.0.4", 5557 + "typed-array-length": "^1.0.7", 5558 + "unbox-primitive": "^1.1.0", 5559 + "which-typed-array": "^1.1.19" 5560 + }, 5561 + "engines": { 5562 + "node": ">= 0.4" 5563 + }, 5564 + "funding": { 5565 + "url": "https://github.com/sponsors/ljharb" 5566 + } 5567 + }, 5568 + "node_modules/es-define-property": { 5569 + "version": "1.0.1", 5570 + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", 5571 + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", 5572 + "dev": true, 5573 + "license": "MIT", 5574 + "engines": { 5575 + "node": ">= 0.4" 5576 + } 5577 + }, 5578 + "node_modules/es-errors": { 5579 + "version": "1.3.0", 5580 + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 5581 + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 5582 + "dev": true, 5583 + "license": "MIT", 5584 + "engines": { 5585 + "node": ">= 0.4" 5586 + } 5587 + }, 5588 + "node_modules/es-iterator-helpers": { 5589 + "version": "1.2.1", 5590 + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz", 5591 + "integrity": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==", 5592 + "dev": true, 5593 + "license": "MIT", 5594 + "dependencies": { 5595 + "call-bind": "^1.0.8", 5596 + "call-bound": "^1.0.3", 5597 + "define-properties": "^1.2.1", 5598 + "es-abstract": "^1.23.6", 5599 + "es-errors": "^1.3.0", 5600 + "es-set-tostringtag": "^2.0.3", 5601 + "function-bind": "^1.1.2", 5602 + "get-intrinsic": "^1.2.6", 5603 + "globalthis": "^1.0.4", 5604 + "gopd": "^1.2.0", 5605 + "has-property-descriptors": "^1.0.2", 5606 + "has-proto": "^1.2.0", 5607 + "has-symbols": "^1.1.0", 5608 + "internal-slot": "^1.1.0", 5609 + "iterator.prototype": "^1.1.4", 5610 + "safe-array-concat": "^1.1.3" 5611 + }, 5612 + "engines": { 5613 + "node": ">= 0.4" 5614 + } 5615 + }, 5616 + "node_modules/es-object-atoms": { 5617 + "version": "1.1.1", 5618 + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", 5619 + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", 5620 + "dev": true, 5621 + "license": "MIT", 5622 + "dependencies": { 5623 + "es-errors": "^1.3.0" 5624 + }, 5625 + "engines": { 5626 + "node": ">= 0.4" 5627 + } 5628 + }, 5629 + "node_modules/es-set-tostringtag": { 5630 + "version": "2.1.0", 5631 + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", 5632 + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", 5633 + "dev": true, 5634 + "license": "MIT", 5635 + "dependencies": { 5636 + "es-errors": "^1.3.0", 5637 + "get-intrinsic": "^1.2.6", 5638 + "has-tostringtag": "^1.0.2", 5639 + "hasown": "^2.0.2" 5640 + }, 5641 + "engines": { 5642 + "node": ">= 0.4" 5643 + } 5644 + }, 5645 + "node_modules/es-shim-unscopables": { 5646 + "version": "1.1.0", 5647 + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", 5648 + "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", 5649 + "dev": true, 5650 + "license": "MIT", 5651 + "dependencies": { 5652 + "hasown": "^2.0.2" 5653 + }, 5654 + "engines": { 5655 + "node": ">= 0.4" 5656 + } 5657 + }, 5658 + "node_modules/es-to-primitive": { 5659 + "version": "1.3.0", 5660 + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", 5661 + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", 5662 + "dev": true, 5663 + "license": "MIT", 5664 + "dependencies": { 5665 + "is-callable": "^1.2.7", 5666 + "is-date-object": "^1.0.5", 5667 + "is-symbol": "^1.0.4" 5668 + }, 5669 + "engines": { 5670 + "node": ">= 0.4" 5671 + }, 5672 + "funding": { 5673 + "url": "https://github.com/sponsors/ljharb" 5674 + } 5675 + }, 5676 + "node_modules/escalade": { 5677 + "version": "3.2.0", 5678 + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 5679 + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 5680 + "license": "MIT", 5681 + "engines": { 5682 + "node": ">=6" 5683 + } 5684 + }, 5685 + "node_modules/escape-html": { 5686 + "version": "1.0.3", 5687 + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 5688 + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", 5689 + "license": "MIT" 5690 + }, 5691 + "node_modules/escape-string-regexp": { 5692 + "version": "4.0.0", 5693 + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 5694 + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 5695 + "license": "MIT", 5696 + "engines": { 5697 + "node": ">=10" 5698 + }, 5699 + "funding": { 5700 + "url": "https://github.com/sponsors/sindresorhus" 5701 + } 5702 + }, 5703 + "node_modules/eslint": { 5704 + "version": "9.33.0", 5705 + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.33.0.tgz", 5706 + "integrity": "sha512-TS9bTNIryDzStCpJN93aC5VRSW3uTx9sClUn4B87pwiCaJh220otoI0X8mJKr+VcPtniMdN8GKjlwgWGUv5ZKA==", 5707 + "dev": true, 5708 + "license": "MIT", 5709 + "dependencies": { 5710 + "@eslint-community/eslint-utils": "^4.2.0", 5711 + "@eslint-community/regexpp": "^4.12.1", 5712 + "@eslint/config-array": "^0.21.0", 5713 + "@eslint/config-helpers": "^0.3.1", 5714 + "@eslint/core": "^0.15.2", 5715 + "@eslint/eslintrc": "^3.3.1", 5716 + "@eslint/js": "9.33.0", 5717 + "@eslint/plugin-kit": "^0.3.5", 5718 + "@humanfs/node": "^0.16.6", 5719 + "@humanwhocodes/module-importer": "^1.0.1", 5720 + "@humanwhocodes/retry": "^0.4.2", 5721 + "@types/estree": "^1.0.6", 5722 + "@types/json-schema": "^7.0.15", 5723 + "ajv": "^6.12.4", 5724 + "chalk": "^4.0.0", 5725 + "cross-spawn": "^7.0.6", 5726 + "debug": "^4.3.2", 5727 + "escape-string-regexp": "^4.0.0", 5728 + "eslint-scope": "^8.4.0", 5729 + "eslint-visitor-keys": "^4.2.1", 5730 + "espree": "^10.4.0", 5731 + "esquery": "^1.5.0", 5732 + "esutils": "^2.0.2", 5733 + "fast-deep-equal": "^3.1.3", 5734 + "file-entry-cache": "^8.0.0", 5735 + "find-up": "^5.0.0", 5736 + "glob-parent": "^6.0.2", 5737 + "ignore": "^5.2.0", 5738 + "imurmurhash": "^0.1.4", 5739 + "is-glob": "^4.0.0", 5740 + "json-stable-stringify-without-jsonify": "^1.0.1", 5741 + "lodash.merge": "^4.6.2", 5742 + "minimatch": "^3.1.2", 5743 + "natural-compare": "^1.4.0", 5744 + "optionator": "^0.9.3" 5745 + }, 5746 + "bin": { 5747 + "eslint": "bin/eslint.js" 5748 + }, 5749 + "engines": { 5750 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 5751 + }, 5752 + "funding": { 5753 + "url": "https://eslint.org/donate" 5754 + }, 5755 + "peerDependencies": { 5756 + "jiti": "*" 5757 + }, 5758 + "peerDependenciesMeta": { 5759 + "jiti": { 5760 + "optional": true 5761 + } 5762 + } 5763 + }, 5764 + "node_modules/eslint-config-expo": { 5765 + "version": "9.2.0", 5766 + "resolved": "https://registry.npmjs.org/eslint-config-expo/-/eslint-config-expo-9.2.0.tgz", 5767 + "integrity": "sha512-TQgmSx+2mRM7qUS0hB5kTDrHcSC35rA1UzOSgK5YRLmSkSMlKLmXkUrhwOpnyo9D/nHdf4ERRAySRYxgA6dlrw==", 5768 + "dev": true, 5769 + "license": "MIT", 5770 + "dependencies": { 5771 + "@typescript-eslint/eslint-plugin": "^8.18.2", 5772 + "@typescript-eslint/parser": "^8.18.2", 5773 + "eslint-import-resolver-typescript": "^3.6.3", 5774 + "eslint-plugin-expo": "^0.1.4", 5775 + "eslint-plugin-import": "^2.30.0", 5776 + "eslint-plugin-react": "^7.37.3", 5777 + "eslint-plugin-react-hooks": "^5.1.0", 5778 + "globals": "^16.0.0" 5779 + }, 5780 + "peerDependencies": { 5781 + "eslint": ">=8.10" 5782 + } 5783 + }, 5784 + "node_modules/eslint-config-expo/node_modules/globals": { 5785 + "version": "16.3.0", 5786 + "resolved": "https://registry.npmjs.org/globals/-/globals-16.3.0.tgz", 5787 + "integrity": "sha512-bqWEnJ1Nt3neqx2q5SFfGS8r/ahumIakg3HcwtNlrVlwXIeNumWn/c7Pn/wKzGhf6SaW6H6uWXLqC30STCMchQ==", 5788 + "dev": true, 5789 + "license": "MIT", 5790 + "engines": { 5791 + "node": ">=18" 5792 + }, 5793 + "funding": { 5794 + "url": "https://github.com/sponsors/sindresorhus" 5795 + } 5796 + }, 5797 + "node_modules/eslint-import-resolver-node": { 5798 + "version": "0.3.9", 5799 + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", 5800 + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", 5801 + "dev": true, 5802 + "license": "MIT", 5803 + "dependencies": { 5804 + "debug": "^3.2.7", 5805 + "is-core-module": "^2.13.0", 5806 + "resolve": "^1.22.4" 5807 + } 5808 + }, 5809 + "node_modules/eslint-import-resolver-node/node_modules/debug": { 5810 + "version": "3.2.7", 5811 + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 5812 + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 5813 + "dev": true, 5814 + "license": "MIT", 5815 + "dependencies": { 5816 + "ms": "^2.1.1" 5817 + } 5818 + }, 5819 + "node_modules/eslint-import-resolver-typescript": { 5820 + "version": "3.10.1", 5821 + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.1.tgz", 5822 + "integrity": "sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==", 5823 + "dev": true, 5824 + "license": "ISC", 5825 + "dependencies": { 5826 + "@nolyfill/is-core-module": "1.0.39", 5827 + "debug": "^4.4.0", 5828 + "get-tsconfig": "^4.10.0", 5829 + "is-bun-module": "^2.0.0", 5830 + "stable-hash": "^0.0.5", 5831 + "tinyglobby": "^0.2.13", 5832 + "unrs-resolver": "^1.6.2" 5833 + }, 5834 + "engines": { 5835 + "node": "^14.18.0 || >=16.0.0" 5836 + }, 5837 + "funding": { 5838 + "url": "https://opencollective.com/eslint-import-resolver-typescript" 5839 + }, 5840 + "peerDependencies": { 5841 + "eslint": "*", 5842 + "eslint-plugin-import": "*", 5843 + "eslint-plugin-import-x": "*" 5844 + }, 5845 + "peerDependenciesMeta": { 5846 + "eslint-plugin-import": { 5847 + "optional": true 5848 + }, 5849 + "eslint-plugin-import-x": { 5850 + "optional": true 5851 + } 5852 + } 5853 + }, 5854 + "node_modules/eslint-module-utils": { 5855 + "version": "2.12.1", 5856 + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz", 5857 + "integrity": "sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==", 5858 + "dev": true, 5859 + "license": "MIT", 5860 + "dependencies": { 5861 + "debug": "^3.2.7" 5862 + }, 5863 + "engines": { 5864 + "node": ">=4" 5865 + }, 5866 + "peerDependenciesMeta": { 5867 + "eslint": { 5868 + "optional": true 5869 + } 5870 + } 5871 + }, 5872 + "node_modules/eslint-module-utils/node_modules/debug": { 5873 + "version": "3.2.7", 5874 + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 5875 + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 5876 + "dev": true, 5877 + "license": "MIT", 5878 + "dependencies": { 5879 + "ms": "^2.1.1" 5880 + } 5881 + }, 5882 + "node_modules/eslint-plugin-expo": { 5883 + "version": "0.1.4", 5884 + "resolved": "https://registry.npmjs.org/eslint-plugin-expo/-/eslint-plugin-expo-0.1.4.tgz", 5885 + "integrity": "sha512-YA7yiMacQbLJySuyJA0Eb5V65obqp6fVOWtw1JdYDRWC5MeToPrnNvhGDpk01Bv3Vm4ownuzUfvi89MXi1d6cg==", 5886 + "dev": true, 5887 + "license": "MIT", 5888 + "dependencies": { 5889 + "@typescript-eslint/types": "^8.29.1", 5890 + "@typescript-eslint/utils": "^8.29.1", 5891 + "eslint": "^9.24.0" 5892 + }, 5893 + "engines": { 5894 + "node": ">=18.0.0" 5895 + }, 5896 + "peerDependencies": { 5897 + "eslint": ">=8.10" 5898 + } 5899 + }, 5900 + "node_modules/eslint-plugin-import": { 5901 + "version": "2.32.0", 5902 + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz", 5903 + "integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==", 5904 + "dev": true, 5905 + "license": "MIT", 5906 + "dependencies": { 5907 + "@rtsao/scc": "^1.1.0", 5908 + "array-includes": "^3.1.9", 5909 + "array.prototype.findlastindex": "^1.2.6", 5910 + "array.prototype.flat": "^1.3.3", 5911 + "array.prototype.flatmap": "^1.3.3", 5912 + "debug": "^3.2.7", 5913 + "doctrine": "^2.1.0", 5914 + "eslint-import-resolver-node": "^0.3.9", 5915 + "eslint-module-utils": "^2.12.1", 5916 + "hasown": "^2.0.2", 5917 + "is-core-module": "^2.16.1", 5918 + "is-glob": "^4.0.3", 5919 + "minimatch": "^3.1.2", 5920 + "object.fromentries": "^2.0.8", 5921 + "object.groupby": "^1.0.3", 5922 + "object.values": "^1.2.1", 5923 + "semver": "^6.3.1", 5924 + "string.prototype.trimend": "^1.0.9", 5925 + "tsconfig-paths": "^3.15.0" 5926 + }, 5927 + "engines": { 5928 + "node": ">=4" 5929 + }, 5930 + "peerDependencies": { 5931 + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" 5932 + } 5933 + }, 5934 + "node_modules/eslint-plugin-import/node_modules/debug": { 5935 + "version": "3.2.7", 5936 + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 5937 + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 5938 + "dev": true, 5939 + "license": "MIT", 5940 + "dependencies": { 5941 + "ms": "^2.1.1" 5942 + } 5943 + }, 5944 + "node_modules/eslint-plugin-react": { 5945 + "version": "7.37.5", 5946 + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", 5947 + "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==", 5948 + "dev": true, 5949 + "license": "MIT", 5950 + "dependencies": { 5951 + "array-includes": "^3.1.8", 5952 + "array.prototype.findlast": "^1.2.5", 5953 + "array.prototype.flatmap": "^1.3.3", 5954 + "array.prototype.tosorted": "^1.1.4", 5955 + "doctrine": "^2.1.0", 5956 + "es-iterator-helpers": "^1.2.1", 5957 + "estraverse": "^5.3.0", 5958 + "hasown": "^2.0.2", 5959 + "jsx-ast-utils": "^2.4.1 || ^3.0.0", 5960 + "minimatch": "^3.1.2", 5961 + "object.entries": "^1.1.9", 5962 + "object.fromentries": "^2.0.8", 5963 + "object.values": "^1.2.1", 5964 + "prop-types": "^15.8.1", 5965 + "resolve": "^2.0.0-next.5", 5966 + "semver": "^6.3.1", 5967 + "string.prototype.matchall": "^4.0.12", 5968 + "string.prototype.repeat": "^1.0.0" 5969 + }, 5970 + "engines": { 5971 + "node": ">=4" 5972 + }, 5973 + "peerDependencies": { 5974 + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" 5975 + } 5976 + }, 5977 + "node_modules/eslint-plugin-react-hooks": { 5978 + "version": "5.2.0", 5979 + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz", 5980 + "integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==", 5981 + "dev": true, 5982 + "license": "MIT", 5983 + "engines": { 5984 + "node": ">=10" 5985 + }, 5986 + "peerDependencies": { 5987 + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" 5988 + } 5989 + }, 5990 + "node_modules/eslint-plugin-react/node_modules/resolve": { 5991 + "version": "2.0.0-next.5", 5992 + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", 5993 + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", 5994 + "dev": true, 5995 + "license": "MIT", 5996 + "dependencies": { 5997 + "is-core-module": "^2.13.0", 5998 + "path-parse": "^1.0.7", 5999 + "supports-preserve-symlinks-flag": "^1.0.0" 6000 + }, 6001 + "bin": { 6002 + "resolve": "bin/resolve" 6003 + }, 6004 + "funding": { 6005 + "url": "https://github.com/sponsors/ljharb" 6006 + } 6007 + }, 6008 + "node_modules/eslint-scope": { 6009 + "version": "8.4.0", 6010 + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", 6011 + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", 6012 + "dev": true, 6013 + "license": "BSD-2-Clause", 6014 + "dependencies": { 6015 + "esrecurse": "^4.3.0", 6016 + "estraverse": "^5.2.0" 6017 + }, 6018 + "engines": { 6019 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 6020 + }, 6021 + "funding": { 6022 + "url": "https://opencollective.com/eslint" 6023 + } 6024 + }, 6025 + "node_modules/eslint-visitor-keys": { 6026 + "version": "4.2.1", 6027 + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", 6028 + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", 6029 + "dev": true, 6030 + "license": "Apache-2.0", 6031 + "engines": { 6032 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 6033 + }, 6034 + "funding": { 6035 + "url": "https://opencollective.com/eslint" 6036 + } 6037 + }, 6038 + "node_modules/espree": { 6039 + "version": "10.4.0", 6040 + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", 6041 + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", 6042 + "dev": true, 6043 + "license": "BSD-2-Clause", 6044 + "dependencies": { 6045 + "acorn": "^8.15.0", 6046 + "acorn-jsx": "^5.3.2", 6047 + "eslint-visitor-keys": "^4.2.1" 6048 + }, 6049 + "engines": { 6050 + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 6051 + }, 6052 + "funding": { 6053 + "url": "https://opencollective.com/eslint" 6054 + } 6055 + }, 6056 + "node_modules/esprima": { 6057 + "version": "4.0.1", 6058 + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 6059 + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 6060 + "license": "BSD-2-Clause", 6061 + "bin": { 6062 + "esparse": "bin/esparse.js", 6063 + "esvalidate": "bin/esvalidate.js" 6064 + }, 6065 + "engines": { 6066 + "node": ">=4" 6067 + } 6068 + }, 6069 + "node_modules/esquery": { 6070 + "version": "1.6.0", 6071 + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 6072 + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 6073 + "dev": true, 6074 + "license": "BSD-3-Clause", 6075 + "dependencies": { 6076 + "estraverse": "^5.1.0" 6077 + }, 6078 + "engines": { 6079 + "node": ">=0.10" 6080 + } 6081 + }, 6082 + "node_modules/esrecurse": { 6083 + "version": "4.3.0", 6084 + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 6085 + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 6086 + "dev": true, 6087 + "license": "BSD-2-Clause", 6088 + "dependencies": { 6089 + "estraverse": "^5.2.0" 6090 + }, 6091 + "engines": { 6092 + "node": ">=4.0" 6093 + } 6094 + }, 6095 + "node_modules/estraverse": { 6096 + "version": "5.3.0", 6097 + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 6098 + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 6099 + "dev": true, 6100 + "license": "BSD-2-Clause", 6101 + "engines": { 6102 + "node": ">=4.0" 6103 + } 6104 + }, 6105 + "node_modules/esutils": { 6106 + "version": "2.0.3", 6107 + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 6108 + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 6109 + "dev": true, 6110 + "license": "BSD-2-Clause", 6111 + "engines": { 6112 + "node": ">=0.10.0" 6113 + } 6114 + }, 6115 + "node_modules/etag": { 6116 + "version": "1.8.1", 6117 + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 6118 + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", 6119 + "license": "MIT", 6120 + "engines": { 6121 + "node": ">= 0.6" 6122 + } 6123 + }, 6124 + "node_modules/event-target-shim": { 6125 + "version": "5.0.1", 6126 + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", 6127 + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", 6128 + "license": "MIT", 6129 + "engines": { 6130 + "node": ">=6" 6131 + } 6132 + }, 6133 + "node_modules/exec-async": { 6134 + "version": "2.2.0", 6135 + "resolved": "https://registry.npmjs.org/exec-async/-/exec-async-2.2.0.tgz", 6136 + "integrity": "sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==", 6137 + "license": "MIT" 6138 + }, 6139 + "node_modules/expo": { 6140 + "version": "53.0.20", 6141 + "resolved": "https://registry.npmjs.org/expo/-/expo-53.0.20.tgz", 6142 + "integrity": "sha512-Nh+HIywVy9KxT/LtH08QcXqrxtUOA9BZhsXn3KCsAYA+kNb80M8VKN8/jfQF+I6CgeKyFKJoPNsWgI0y0VBGrA==", 6143 + "license": "MIT", 6144 + "dependencies": { 6145 + "@babel/runtime": "^7.20.0", 6146 + "@expo/cli": "0.24.20", 6147 + "@expo/config": "~11.0.13", 6148 + "@expo/config-plugins": "~10.1.2", 6149 + "@expo/fingerprint": "0.13.4", 6150 + "@expo/metro-config": "0.20.17", 6151 + "@expo/vector-icons": "^14.0.0", 6152 + "babel-preset-expo": "~13.2.3", 6153 + "expo-asset": "~11.1.7", 6154 + "expo-constants": "~17.1.7", 6155 + "expo-file-system": "~18.1.11", 6156 + "expo-font": "~13.3.2", 6157 + "expo-keep-awake": "~14.1.4", 6158 + "expo-modules-autolinking": "2.1.14", 6159 + "expo-modules-core": "2.5.0", 6160 + "react-native-edge-to-edge": "1.6.0", 6161 + "whatwg-url-without-unicode": "8.0.0-3" 6162 + }, 6163 + "bin": { 6164 + "expo": "bin/cli", 6165 + "expo-modules-autolinking": "bin/autolinking", 6166 + "fingerprint": "bin/fingerprint" 6167 + }, 6168 + "peerDependencies": { 6169 + "@expo/dom-webview": "*", 6170 + "@expo/metro-runtime": "*", 6171 + "react": "*", 6172 + "react-native": "*", 6173 + "react-native-webview": "*" 6174 + }, 6175 + "peerDependenciesMeta": { 6176 + "@expo/dom-webview": { 6177 + "optional": true 6178 + }, 6179 + "@expo/metro-runtime": { 6180 + "optional": true 6181 + }, 6182 + "react-native-webview": { 6183 + "optional": true 6184 + } 6185 + } 6186 + }, 6187 + "node_modules/expo-asset": { 6188 + "version": "11.1.7", 6189 + "resolved": "https://registry.npmjs.org/expo-asset/-/expo-asset-11.1.7.tgz", 6190 + "integrity": "sha512-b5P8GpjUh08fRCf6m5XPVAh7ra42cQrHBIMgH2UXP+xsj4Wufl6pLy6jRF5w6U7DranUMbsXm8TOyq4EHy7ADg==", 6191 + "license": "MIT", 6192 + "dependencies": { 6193 + "@expo/image-utils": "^0.7.6", 6194 + "expo-constants": "~17.1.7" 6195 + }, 6196 + "peerDependencies": { 6197 + "expo": "*", 6198 + "react": "*", 6199 + "react-native": "*" 6200 + } 6201 + }, 6202 + "node_modules/expo-blur": { 6203 + "version": "14.1.5", 6204 + "resolved": "https://registry.npmjs.org/expo-blur/-/expo-blur-14.1.5.tgz", 6205 + "integrity": "sha512-CCLJHxN4eoAl06ESKT3CbMasJ98WsjF9ZQEJnuxtDb9ffrYbZ+g9ru84fukjNUOTtc8A8yXE5z8NgY1l0OMrmQ==", 6206 + "license": "MIT", 6207 + "peerDependencies": { 6208 + "expo": "*", 6209 + "react": "*", 6210 + "react-native": "*" 6211 + } 6212 + }, 6213 + "node_modules/expo-constants": { 6214 + "version": "17.1.7", 6215 + "resolved": "https://registry.npmjs.org/expo-constants/-/expo-constants-17.1.7.tgz", 6216 + "integrity": "sha512-byBjGsJ6T6FrLlhOBxw4EaiMXrZEn/MlUYIj/JAd+FS7ll5X/S4qVRbIimSJtdW47hXMq0zxPfJX6njtA56hHA==", 6217 + "license": "MIT", 6218 + "dependencies": { 6219 + "@expo/config": "~11.0.12", 6220 + "@expo/env": "~1.0.7" 6221 + }, 6222 + "peerDependencies": { 6223 + "expo": "*", 6224 + "react-native": "*" 6225 + } 6226 + }, 6227 + "node_modules/expo-file-system": { 6228 + "version": "18.1.11", 6229 + "resolved": "https://registry.npmjs.org/expo-file-system/-/expo-file-system-18.1.11.tgz", 6230 + "integrity": "sha512-HJw/m0nVOKeqeRjPjGdvm+zBi5/NxcdPf8M8P3G2JFvH5Z8vBWqVDic2O58jnT1OFEy0XXzoH9UqFu7cHg9DTQ==", 6231 + "license": "MIT", 6232 + "peerDependencies": { 6233 + "expo": "*", 6234 + "react-native": "*" 6235 + } 6236 + }, 6237 + "node_modules/expo-font": { 6238 + "version": "13.3.2", 6239 + "resolved": "https://registry.npmjs.org/expo-font/-/expo-font-13.3.2.tgz", 6240 + "integrity": "sha512-wUlMdpqURmQ/CNKK/+BIHkDA5nGjMqNlYmW0pJFXY/KE/OG80Qcavdu2sHsL4efAIiNGvYdBS10WztuQYU4X0A==", 6241 + "license": "MIT", 6242 + "dependencies": { 6243 + "fontfaceobserver": "^2.1.0" 6244 + }, 6245 + "peerDependencies": { 6246 + "expo": "*", 6247 + "react": "*" 6248 + } 6249 + }, 6250 + "node_modules/expo-haptics": { 6251 + "version": "14.1.4", 6252 + "resolved": "https://registry.npmjs.org/expo-haptics/-/expo-haptics-14.1.4.tgz", 6253 + "integrity": "sha512-QZdE3NMX74rTuIl82I+n12XGwpDWKb8zfs5EpwsnGi/D/n7O2Jd4tO5ivH+muEG/OCJOMq5aeaVDqqaQOhTkcA==", 6254 + "license": "MIT", 6255 + "peerDependencies": { 6256 + "expo": "*" 6257 + } 6258 + }, 6259 + "node_modules/expo-image": { 6260 + "version": "2.4.0", 6261 + "resolved": "https://registry.npmjs.org/expo-image/-/expo-image-2.4.0.tgz", 6262 + "integrity": "sha512-TQ/LvrtJ9JBr+Tf198CAqflxcvdhuj7P24n0LQ1jHaWIVA7Z+zYKbYHnSMPSDMul/y0U46Z5bFLbiZiSidgcNw==", 6263 + "license": "MIT", 6264 + "peerDependencies": { 6265 + "expo": "*", 6266 + "react": "*", 6267 + "react-native": "*", 6268 + "react-native-web": "*" 6269 + }, 6270 + "peerDependenciesMeta": { 6271 + "react-native-web": { 6272 + "optional": true 6273 + } 6274 + } 6275 + }, 6276 + "node_modules/expo-keep-awake": { 6277 + "version": "14.1.4", 6278 + "resolved": "https://registry.npmjs.org/expo-keep-awake/-/expo-keep-awake-14.1.4.tgz", 6279 + "integrity": "sha512-wU9qOnosy4+U4z/o4h8W9PjPvcFMfZXrlUoKTMBW7F4pLqhkkP/5G4EviPZixv4XWFMjn1ExQ5rV6BX8GwJsWA==", 6280 + "license": "MIT", 6281 + "peerDependencies": { 6282 + "expo": "*", 6283 + "react": "*" 6284 + } 6285 + }, 6286 + "node_modules/expo-linking": { 6287 + "version": "7.1.7", 6288 + "resolved": "https://registry.npmjs.org/expo-linking/-/expo-linking-7.1.7.tgz", 6289 + "integrity": "sha512-ZJaH1RIch2G/M3hx2QJdlrKbYFUTOjVVW4g39hfxrE5bPX9xhZUYXqxqQtzMNl1ylAevw9JkgEfWbBWddbZ3UA==", 6290 + "license": "MIT", 6291 + "dependencies": { 6292 + "expo-constants": "~17.1.7", 6293 + "invariant": "^2.2.4" 6294 + }, 6295 + "peerDependencies": { 6296 + "react": "*", 6297 + "react-native": "*" 6298 + } 6299 + }, 6300 + "node_modules/expo-modules-autolinking": { 6301 + "version": "2.1.14", 6302 + "resolved": "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-2.1.14.tgz", 6303 + "integrity": "sha512-nT5ERXwc+0ZT/pozDoJjYZyUQu5RnXMk9jDGm5lg+PiKvsrCTSA/2/eftJGMxLkTjVI2MXp5WjSz3JRjbA7UXA==", 6304 + "license": "MIT", 6305 + "dependencies": { 6306 + "@expo/spawn-async": "^1.7.2", 6307 + "chalk": "^4.1.0", 6308 + "commander": "^7.2.0", 6309 + "find-up": "^5.0.0", 6310 + "glob": "^10.4.2", 6311 + "require-from-string": "^2.0.2", 6312 + "resolve-from": "^5.0.0" 6313 + }, 6314 + "bin": { 6315 + "expo-modules-autolinking": "bin/expo-modules-autolinking.js" 6316 + } 6317 + }, 6318 + "node_modules/expo-modules-core": { 6319 + "version": "2.5.0", 6320 + "resolved": "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-2.5.0.tgz", 6321 + "integrity": "sha512-aIbQxZE2vdCKsolQUl6Q9Farlf8tjh/ROR4hfN1qT7QBGPl1XrJGnaOKkcgYaGrlzCPg/7IBe0Np67GzKMZKKQ==", 6322 + "license": "MIT", 6323 + "dependencies": { 6324 + "invariant": "^2.2.4" 6325 + } 6326 + }, 6327 + "node_modules/expo-router": { 6328 + "version": "5.1.4", 6329 + "resolved": "https://registry.npmjs.org/expo-router/-/expo-router-5.1.4.tgz", 6330 + "integrity": "sha512-8GulCelVN9x+VSOio74K1ZYTG6VyCdJw417gV+M/J8xJOZZTA7rFxAdzujBZZ7jd6aIAG7WEwOUU3oSvUO76Vw==", 6331 + "license": "MIT", 6332 + "dependencies": { 6333 + "@expo/metro-runtime": "5.0.4", 6334 + "@expo/server": "^0.6.3", 6335 + "@radix-ui/react-slot": "1.2.0", 6336 + "@react-navigation/bottom-tabs": "^7.3.10", 6337 + "@react-navigation/native": "^7.1.6", 6338 + "@react-navigation/native-stack": "^7.3.10", 6339 + "client-only": "^0.0.1", 6340 + "invariant": "^2.2.4", 6341 + "react-fast-compare": "^3.2.2", 6342 + "react-native-is-edge-to-edge": "^1.1.6", 6343 + "schema-utils": "^4.0.1", 6344 + "semver": "~7.6.3", 6345 + "server-only": "^0.0.1", 6346 + "shallowequal": "^1.1.0" 6347 + }, 6348 + "peerDependencies": { 6349 + "@react-navigation/drawer": "^7.3.9", 6350 + "expo": "*", 6351 + "expo-constants": "*", 6352 + "expo-linking": "*", 6353 + "react-native-reanimated": "*", 6354 + "react-native-safe-area-context": "*", 6355 + "react-native-screens": "*" 6356 + }, 6357 + "peerDependenciesMeta": { 6358 + "@react-navigation/drawer": { 6359 + "optional": true 6360 + }, 6361 + "@testing-library/jest-native": { 6362 + "optional": true 6363 + }, 6364 + "react-native-reanimated": { 6365 + "optional": true 6366 + } 6367 + } 6368 + }, 6369 + "node_modules/expo-router/node_modules/semver": { 6370 + "version": "7.6.3", 6371 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 6372 + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 6373 + "license": "ISC", 6374 + "bin": { 6375 + "semver": "bin/semver.js" 6376 + }, 6377 + "engines": { 6378 + "node": ">=10" 6379 + } 6380 + }, 6381 + "node_modules/expo-splash-screen": { 6382 + "version": "0.30.10", 6383 + "resolved": "https://registry.npmjs.org/expo-splash-screen/-/expo-splash-screen-0.30.10.tgz", 6384 + "integrity": "sha512-Tt9va/sLENQDQYeOQ6cdLdGvTZ644KR3YG9aRlnpcs2/beYjOX1LHT510EGzVN9ljUTg+1ebEo5GGt2arYtPjw==", 6385 + "license": "MIT", 6386 + "dependencies": { 6387 + "@expo/prebuild-config": "^9.0.10" 6388 + }, 6389 + "peerDependencies": { 6390 + "expo": "*" 6391 + } 6392 + }, 6393 + "node_modules/expo-status-bar": { 6394 + "version": "2.2.3", 6395 + "resolved": "https://registry.npmjs.org/expo-status-bar/-/expo-status-bar-2.2.3.tgz", 6396 + "integrity": "sha512-+c8R3AESBoduunxTJ8353SqKAKpxL6DvcD8VKBuh81zzJyUUbfB4CVjr1GufSJEKsMzNPXZU+HJwXx7Xh7lx8Q==", 6397 + "license": "MIT", 6398 + "dependencies": { 6399 + "react-native-edge-to-edge": "1.6.0", 6400 + "react-native-is-edge-to-edge": "^1.1.6" 6401 + }, 6402 + "peerDependencies": { 6403 + "react": "*", 6404 + "react-native": "*" 6405 + } 6406 + }, 6407 + "node_modules/expo-symbols": { 6408 + "version": "0.4.5", 6409 + "resolved": "https://registry.npmjs.org/expo-symbols/-/expo-symbols-0.4.5.tgz", 6410 + "integrity": "sha512-ZbgvJfACPfWaJxJrUd0YzDmH9X0Ci7vb5m0/ZpDz/tnF1vQJlkovvpFEHLUmCDSLIN7/fNK8t696KSpzfm8/kg==", 6411 + "license": "MIT", 6412 + "dependencies": { 6413 + "sf-symbols-typescript": "^2.0.0" 6414 + }, 6415 + "peerDependencies": { 6416 + "expo": "*", 6417 + "react-native": "*" 6418 + } 6419 + }, 6420 + "node_modules/expo-system-ui": { 6421 + "version": "5.0.10", 6422 + "resolved": "https://registry.npmjs.org/expo-system-ui/-/expo-system-ui-5.0.10.tgz", 6423 + "integrity": "sha512-BTXbSyJr80yuN6VO4XQKZj7BjesZQLHgOYZ0bWyf4VB19GFZq7ZnZOEc/eoKk1B3eIocOMKUfNCrg/Wn8Kfcuw==", 6424 + "license": "MIT", 6425 + "dependencies": { 6426 + "@react-native/normalize-colors": "0.79.5", 6427 + "debug": "^4.3.2" 6428 + }, 6429 + "peerDependencies": { 6430 + "expo": "*", 6431 + "react-native": "*", 6432 + "react-native-web": "*" 6433 + }, 6434 + "peerDependenciesMeta": { 6435 + "react-native-web": { 6436 + "optional": true 6437 + } 6438 + } 6439 + }, 6440 + "node_modules/expo-web-browser": { 6441 + "version": "14.2.0", 6442 + "resolved": "https://registry.npmjs.org/expo-web-browser/-/expo-web-browser-14.2.0.tgz", 6443 + "integrity": "sha512-6S51d8pVlDRDsgGAp8BPpwnxtyKiMWEFdezNz+5jVIyT+ctReW42uxnjRgtsdn5sXaqzhaX+Tzk/CWaKCyC0hw==", 6444 + "license": "MIT", 6445 + "peerDependencies": { 6446 + "expo": "*", 6447 + "react-native": "*" 6448 + } 6449 + }, 6450 + "node_modules/exponential-backoff": { 6451 + "version": "3.1.2", 6452 + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.2.tgz", 6453 + "integrity": "sha512-8QxYTVXUkuy7fIIoitQkPwGonB8F3Zj8eEO8Sqg9Zv/bkI7RJAzowee4gr81Hak/dUTpA2Z7VfQgoijjPNlUZA==", 6454 + "license": "Apache-2.0" 6455 + }, 6456 + "node_modules/fast-deep-equal": { 6457 + "version": "3.1.3", 6458 + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 6459 + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 6460 + "license": "MIT" 6461 + }, 6462 + "node_modules/fast-glob": { 6463 + "version": "3.3.3", 6464 + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", 6465 + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", 6466 + "dev": true, 6467 + "license": "MIT", 6468 + "dependencies": { 6469 + "@nodelib/fs.stat": "^2.0.2", 6470 + "@nodelib/fs.walk": "^1.2.3", 6471 + "glob-parent": "^5.1.2", 6472 + "merge2": "^1.3.0", 6473 + "micromatch": "^4.0.8" 6474 + }, 6475 + "engines": { 6476 + "node": ">=8.6.0" 6477 + } 6478 + }, 6479 + "node_modules/fast-glob/node_modules/glob-parent": { 6480 + "version": "5.1.2", 6481 + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 6482 + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 6483 + "dev": true, 6484 + "license": "ISC", 6485 + "dependencies": { 6486 + "is-glob": "^4.0.1" 6487 + }, 6488 + "engines": { 6489 + "node": ">= 6" 6490 + } 6491 + }, 6492 + "node_modules/fast-json-stable-stringify": { 6493 + "version": "2.1.0", 6494 + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 6495 + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 6496 + "license": "MIT" 6497 + }, 6498 + "node_modules/fast-levenshtein": { 6499 + "version": "2.0.6", 6500 + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 6501 + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 6502 + "dev": true, 6503 + "license": "MIT" 6504 + }, 6505 + "node_modules/fast-uri": { 6506 + "version": "3.0.6", 6507 + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz", 6508 + "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==", 6509 + "funding": [ 6510 + { 6511 + "type": "github", 6512 + "url": "https://github.com/sponsors/fastify" 6513 + }, 6514 + { 6515 + "type": "opencollective", 6516 + "url": "https://opencollective.com/fastify" 6517 + } 6518 + ], 6519 + "license": "BSD-3-Clause" 6520 + }, 6521 + "node_modules/fastq": { 6522 + "version": "1.19.1", 6523 + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", 6524 + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", 6525 + "dev": true, 6526 + "license": "ISC", 6527 + "dependencies": { 6528 + "reusify": "^1.0.4" 6529 + } 6530 + }, 6531 + "node_modules/fb-watchman": { 6532 + "version": "2.0.2", 6533 + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", 6534 + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", 6535 + "license": "Apache-2.0", 6536 + "dependencies": { 6537 + "bser": "2.1.1" 6538 + } 6539 + }, 6540 + "node_modules/fbjs": { 6541 + "version": "3.0.5", 6542 + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz", 6543 + "integrity": "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==", 6544 + "license": "MIT", 6545 + "dependencies": { 6546 + "cross-fetch": "^3.1.5", 6547 + "fbjs-css-vars": "^1.0.0", 6548 + "loose-envify": "^1.0.0", 6549 + "object-assign": "^4.1.0", 6550 + "promise": "^7.1.1", 6551 + "setimmediate": "^1.0.5", 6552 + "ua-parser-js": "^1.0.35" 6553 + } 6554 + }, 6555 + "node_modules/fbjs-css-vars": { 6556 + "version": "1.0.2", 6557 + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", 6558 + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==", 6559 + "license": "MIT" 6560 + }, 6561 + "node_modules/fbjs/node_modules/promise": { 6562 + "version": "7.3.1", 6563 + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", 6564 + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", 6565 + "license": "MIT", 6566 + "dependencies": { 6567 + "asap": "~2.0.3" 6568 + } 6569 + }, 6570 + "node_modules/fdir": { 6571 + "version": "6.5.0", 6572 + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", 6573 + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", 6574 + "dev": true, 6575 + "license": "MIT", 6576 + "engines": { 6577 + "node": ">=12.0.0" 6578 + }, 6579 + "peerDependencies": { 6580 + "picomatch": "^3 || ^4" 6581 + }, 6582 + "peerDependenciesMeta": { 6583 + "picomatch": { 6584 + "optional": true 6585 + } 6586 + } 6587 + }, 6588 + "node_modules/file-entry-cache": { 6589 + "version": "8.0.0", 6590 + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", 6591 + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", 6592 + "dev": true, 6593 + "license": "MIT", 6594 + "dependencies": { 6595 + "flat-cache": "^4.0.0" 6596 + }, 6597 + "engines": { 6598 + "node": ">=16.0.0" 6599 + } 6600 + }, 6601 + "node_modules/fill-range": { 6602 + "version": "7.1.1", 6603 + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 6604 + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 6605 + "license": "MIT", 6606 + "dependencies": { 6607 + "to-regex-range": "^5.0.1" 6608 + }, 6609 + "engines": { 6610 + "node": ">=8" 6611 + } 6612 + }, 6613 + "node_modules/filter-obj": { 6614 + "version": "1.1.0", 6615 + "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz", 6616 + "integrity": "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==", 6617 + "license": "MIT", 6618 + "engines": { 6619 + "node": ">=0.10.0" 6620 + } 6621 + }, 6622 + "node_modules/finalhandler": { 6623 + "version": "1.1.2", 6624 + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", 6625 + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", 6626 + "license": "MIT", 6627 + "dependencies": { 6628 + "debug": "2.6.9", 6629 + "encodeurl": "~1.0.2", 6630 + "escape-html": "~1.0.3", 6631 + "on-finished": "~2.3.0", 6632 + "parseurl": "~1.3.3", 6633 + "statuses": "~1.5.0", 6634 + "unpipe": "~1.0.0" 6635 + }, 6636 + "engines": { 6637 + "node": ">= 0.8" 6638 + } 6639 + }, 6640 + "node_modules/finalhandler/node_modules/debug": { 6641 + "version": "2.6.9", 6642 + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 6643 + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 6644 + "license": "MIT", 6645 + "dependencies": { 6646 + "ms": "2.0.0" 6647 + } 6648 + }, 6649 + "node_modules/finalhandler/node_modules/ms": { 6650 + "version": "2.0.0", 6651 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 6652 + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 6653 + "license": "MIT" 6654 + }, 6655 + "node_modules/find-up": { 6656 + "version": "5.0.0", 6657 + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 6658 + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 6659 + "license": "MIT", 6660 + "dependencies": { 6661 + "locate-path": "^6.0.0", 6662 + "path-exists": "^4.0.0" 6663 + }, 6664 + "engines": { 6665 + "node": ">=10" 6666 + }, 6667 + "funding": { 6668 + "url": "https://github.com/sponsors/sindresorhus" 6669 + } 6670 + }, 6671 + "node_modules/flat-cache": { 6672 + "version": "4.0.1", 6673 + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", 6674 + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", 6675 + "dev": true, 6676 + "license": "MIT", 6677 + "dependencies": { 6678 + "flatted": "^3.2.9", 6679 + "keyv": "^4.5.4" 6680 + }, 6681 + "engines": { 6682 + "node": ">=16" 6683 + } 6684 + }, 6685 + "node_modules/flatted": { 6686 + "version": "3.3.3", 6687 + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", 6688 + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", 6689 + "dev": true, 6690 + "license": "ISC" 6691 + }, 6692 + "node_modules/flow-enums-runtime": { 6693 + "version": "0.0.6", 6694 + "resolved": "https://registry.npmjs.org/flow-enums-runtime/-/flow-enums-runtime-0.0.6.tgz", 6695 + "integrity": "sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==", 6696 + "license": "MIT" 6697 + }, 6698 + "node_modules/fontfaceobserver": { 6699 + "version": "2.3.0", 6700 + "resolved": "https://registry.npmjs.org/fontfaceobserver/-/fontfaceobserver-2.3.0.tgz", 6701 + "integrity": "sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==", 6702 + "license": "BSD-2-Clause" 6703 + }, 6704 + "node_modules/for-each": { 6705 + "version": "0.3.5", 6706 + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", 6707 + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", 6708 + "dev": true, 6709 + "license": "MIT", 6710 + "dependencies": { 6711 + "is-callable": "^1.2.7" 6712 + }, 6713 + "engines": { 6714 + "node": ">= 0.4" 6715 + }, 6716 + "funding": { 6717 + "url": "https://github.com/sponsors/ljharb" 6718 + } 6719 + }, 6720 + "node_modules/foreground-child": { 6721 + "version": "3.3.1", 6722 + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", 6723 + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", 6724 + "license": "ISC", 6725 + "dependencies": { 6726 + "cross-spawn": "^7.0.6", 6727 + "signal-exit": "^4.0.1" 6728 + }, 6729 + "engines": { 6730 + "node": ">=14" 6731 + }, 6732 + "funding": { 6733 + "url": "https://github.com/sponsors/isaacs" 6734 + } 6735 + }, 6736 + "node_modules/freeport-async": { 6737 + "version": "2.0.0", 6738 + "resolved": "https://registry.npmjs.org/freeport-async/-/freeport-async-2.0.0.tgz", 6739 + "integrity": "sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==", 6740 + "license": "MIT", 6741 + "engines": { 6742 + "node": ">=8" 6743 + } 6744 + }, 6745 + "node_modules/fresh": { 6746 + "version": "0.5.2", 6747 + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 6748 + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", 6749 + "license": "MIT", 6750 + "engines": { 6751 + "node": ">= 0.6" 6752 + } 6753 + }, 6754 + "node_modules/fs.realpath": { 6755 + "version": "1.0.0", 6756 + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 6757 + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 6758 + "license": "ISC" 6759 + }, 6760 + "node_modules/fsevents": { 6761 + "version": "2.3.3", 6762 + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 6763 + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 6764 + "hasInstallScript": true, 6765 + "license": "MIT", 6766 + "optional": true, 6767 + "os": [ 6768 + "darwin" 6769 + ], 6770 + "engines": { 6771 + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 6772 + } 6773 + }, 6774 + "node_modules/function-bind": { 6775 + "version": "1.1.2", 6776 + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 6777 + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 6778 + "license": "MIT", 6779 + "funding": { 6780 + "url": "https://github.com/sponsors/ljharb" 6781 + } 6782 + }, 6783 + "node_modules/function.prototype.name": { 6784 + "version": "1.1.8", 6785 + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", 6786 + "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", 6787 + "dev": true, 6788 + "license": "MIT", 6789 + "dependencies": { 6790 + "call-bind": "^1.0.8", 6791 + "call-bound": "^1.0.3", 6792 + "define-properties": "^1.2.1", 6793 + "functions-have-names": "^1.2.3", 6794 + "hasown": "^2.0.2", 6795 + "is-callable": "^1.2.7" 6796 + }, 6797 + "engines": { 6798 + "node": ">= 0.4" 6799 + }, 6800 + "funding": { 6801 + "url": "https://github.com/sponsors/ljharb" 6802 + } 6803 + }, 6804 + "node_modules/functions-have-names": { 6805 + "version": "1.2.3", 6806 + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 6807 + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 6808 + "dev": true, 6809 + "license": "MIT", 6810 + "funding": { 6811 + "url": "https://github.com/sponsors/ljharb" 6812 + } 6813 + }, 6814 + "node_modules/gensync": { 6815 + "version": "1.0.0-beta.2", 6816 + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 6817 + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 6818 + "license": "MIT", 6819 + "engines": { 6820 + "node": ">=6.9.0" 6821 + } 6822 + }, 6823 + "node_modules/get-caller-file": { 6824 + "version": "2.0.5", 6825 + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 6826 + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 6827 + "license": "ISC", 6828 + "engines": { 6829 + "node": "6.* || 8.* || >= 10.*" 6830 + } 6831 + }, 6832 + "node_modules/get-intrinsic": { 6833 + "version": "1.3.0", 6834 + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", 6835 + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", 6836 + "dev": true, 6837 + "license": "MIT", 6838 + "dependencies": { 6839 + "call-bind-apply-helpers": "^1.0.2", 6840 + "es-define-property": "^1.0.1", 6841 + "es-errors": "^1.3.0", 6842 + "es-object-atoms": "^1.1.1", 6843 + "function-bind": "^1.1.2", 6844 + "get-proto": "^1.0.1", 6845 + "gopd": "^1.2.0", 6846 + "has-symbols": "^1.1.0", 6847 + "hasown": "^2.0.2", 6848 + "math-intrinsics": "^1.1.0" 6849 + }, 6850 + "engines": { 6851 + "node": ">= 0.4" 6852 + }, 6853 + "funding": { 6854 + "url": "https://github.com/sponsors/ljharb" 6855 + } 6856 + }, 6857 + "node_modules/get-package-type": { 6858 + "version": "0.1.0", 6859 + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", 6860 + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", 6861 + "license": "MIT", 6862 + "engines": { 6863 + "node": ">=8.0.0" 6864 + } 6865 + }, 6866 + "node_modules/get-proto": { 6867 + "version": "1.0.1", 6868 + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", 6869 + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", 6870 + "dev": true, 6871 + "license": "MIT", 6872 + "dependencies": { 6873 + "dunder-proto": "^1.0.1", 6874 + "es-object-atoms": "^1.0.0" 6875 + }, 6876 + "engines": { 6877 + "node": ">= 0.4" 6878 + } 6879 + }, 6880 + "node_modules/get-symbol-description": { 6881 + "version": "1.1.0", 6882 + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", 6883 + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", 6884 + "dev": true, 6885 + "license": "MIT", 6886 + "dependencies": { 6887 + "call-bound": "^1.0.3", 6888 + "es-errors": "^1.3.0", 6889 + "get-intrinsic": "^1.2.6" 6890 + }, 6891 + "engines": { 6892 + "node": ">= 0.4" 6893 + }, 6894 + "funding": { 6895 + "url": "https://github.com/sponsors/ljharb" 6896 + } 6897 + }, 6898 + "node_modules/get-tsconfig": { 6899 + "version": "4.10.1", 6900 + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.1.tgz", 6901 + "integrity": "sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==", 6902 + "dev": true, 6903 + "license": "MIT", 6904 + "dependencies": { 6905 + "resolve-pkg-maps": "^1.0.0" 6906 + }, 6907 + "funding": { 6908 + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" 6909 + } 6910 + }, 6911 + "node_modules/getenv": { 6912 + "version": "2.0.0", 6913 + "resolved": "https://registry.npmjs.org/getenv/-/getenv-2.0.0.tgz", 6914 + "integrity": "sha512-VilgtJj/ALgGY77fiLam5iD336eSWi96Q15JSAG1zi8NRBysm3LXKdGnHb4m5cuyxvOLQQKWpBZAT6ni4FI2iQ==", 6915 + "license": "MIT", 6916 + "engines": { 6917 + "node": ">=6" 6918 + } 6919 + }, 6920 + "node_modules/glob": { 6921 + "version": "10.4.5", 6922 + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", 6923 + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", 6924 + "license": "ISC", 6925 + "dependencies": { 6926 + "foreground-child": "^3.1.0", 6927 + "jackspeak": "^3.1.2", 6928 + "minimatch": "^9.0.4", 6929 + "minipass": "^7.1.2", 6930 + "package-json-from-dist": "^1.0.0", 6931 + "path-scurry": "^1.11.1" 6932 + }, 6933 + "bin": { 6934 + "glob": "dist/esm/bin.mjs" 6935 + }, 6936 + "funding": { 6937 + "url": "https://github.com/sponsors/isaacs" 6938 + } 6939 + }, 6940 + "node_modules/glob-parent": { 6941 + "version": "6.0.2", 6942 + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 6943 + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 6944 + "dev": true, 6945 + "license": "ISC", 6946 + "dependencies": { 6947 + "is-glob": "^4.0.3" 6948 + }, 6949 + "engines": { 6950 + "node": ">=10.13.0" 6951 + } 6952 + }, 6953 + "node_modules/glob/node_modules/brace-expansion": { 6954 + "version": "2.0.2", 6955 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", 6956 + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", 6957 + "license": "MIT", 6958 + "dependencies": { 6959 + "balanced-match": "^1.0.0" 6960 + } 6961 + }, 6962 + "node_modules/glob/node_modules/minimatch": { 6963 + "version": "9.0.5", 6964 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 6965 + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 6966 + "license": "ISC", 6967 + "dependencies": { 6968 + "brace-expansion": "^2.0.1" 6969 + }, 6970 + "engines": { 6971 + "node": ">=16 || 14 >=14.17" 6972 + }, 6973 + "funding": { 6974 + "url": "https://github.com/sponsors/isaacs" 6975 + } 6976 + }, 6977 + "node_modules/globals": { 6978 + "version": "14.0.0", 6979 + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", 6980 + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", 6981 + "dev": true, 6982 + "license": "MIT", 6983 + "engines": { 6984 + "node": ">=18" 6985 + }, 6986 + "funding": { 6987 + "url": "https://github.com/sponsors/sindresorhus" 6988 + } 6989 + }, 6990 + "node_modules/globalthis": { 6991 + "version": "1.0.4", 6992 + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", 6993 + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", 6994 + "dev": true, 6995 + "license": "MIT", 6996 + "dependencies": { 6997 + "define-properties": "^1.2.1", 6998 + "gopd": "^1.0.1" 6999 + }, 7000 + "engines": { 7001 + "node": ">= 0.4" 7002 + }, 7003 + "funding": { 7004 + "url": "https://github.com/sponsors/ljharb" 7005 + } 7006 + }, 7007 + "node_modules/gopd": { 7008 + "version": "1.2.0", 7009 + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", 7010 + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", 7011 + "dev": true, 7012 + "license": "MIT", 7013 + "engines": { 7014 + "node": ">= 0.4" 7015 + }, 7016 + "funding": { 7017 + "url": "https://github.com/sponsors/ljharb" 7018 + } 7019 + }, 7020 + "node_modules/graceful-fs": { 7021 + "version": "4.2.11", 7022 + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 7023 + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 7024 + "license": "ISC" 7025 + }, 7026 + "node_modules/graphemer": { 7027 + "version": "1.4.0", 7028 + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 7029 + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 7030 + "dev": true, 7031 + "license": "MIT" 7032 + }, 7033 + "node_modules/has-bigints": { 7034 + "version": "1.1.0", 7035 + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", 7036 + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", 7037 + "dev": true, 7038 + "license": "MIT", 7039 + "engines": { 7040 + "node": ">= 0.4" 7041 + }, 7042 + "funding": { 7043 + "url": "https://github.com/sponsors/ljharb" 7044 + } 7045 + }, 7046 + "node_modules/has-flag": { 7047 + "version": "4.0.0", 7048 + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 7049 + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 7050 + "license": "MIT", 7051 + "engines": { 7052 + "node": ">=8" 7053 + } 7054 + }, 7055 + "node_modules/has-property-descriptors": { 7056 + "version": "1.0.2", 7057 + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", 7058 + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", 7059 + "dev": true, 7060 + "license": "MIT", 7061 + "dependencies": { 7062 + "es-define-property": "^1.0.0" 7063 + }, 7064 + "funding": { 7065 + "url": "https://github.com/sponsors/ljharb" 7066 + } 7067 + }, 7068 + "node_modules/has-proto": { 7069 + "version": "1.2.0", 7070 + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", 7071 + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", 7072 + "dev": true, 7073 + "license": "MIT", 7074 + "dependencies": { 7075 + "dunder-proto": "^1.0.0" 7076 + }, 7077 + "engines": { 7078 + "node": ">= 0.4" 7079 + }, 7080 + "funding": { 7081 + "url": "https://github.com/sponsors/ljharb" 7082 + } 7083 + }, 7084 + "node_modules/has-symbols": { 7085 + "version": "1.1.0", 7086 + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", 7087 + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", 7088 + "dev": true, 7089 + "license": "MIT", 7090 + "engines": { 7091 + "node": ">= 0.4" 7092 + }, 7093 + "funding": { 7094 + "url": "https://github.com/sponsors/ljharb" 7095 + } 7096 + }, 7097 + "node_modules/has-tostringtag": { 7098 + "version": "1.0.2", 7099 + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", 7100 + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", 7101 + "dev": true, 7102 + "license": "MIT", 7103 + "dependencies": { 7104 + "has-symbols": "^1.0.3" 7105 + }, 7106 + "engines": { 7107 + "node": ">= 0.4" 7108 + }, 7109 + "funding": { 7110 + "url": "https://github.com/sponsors/ljharb" 7111 + } 7112 + }, 7113 + "node_modules/hasown": { 7114 + "version": "2.0.2", 7115 + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 7116 + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 7117 + "license": "MIT", 7118 + "dependencies": { 7119 + "function-bind": "^1.1.2" 7120 + }, 7121 + "engines": { 7122 + "node": ">= 0.4" 7123 + } 7124 + }, 7125 + "node_modules/hermes-estree": { 7126 + "version": "0.25.1", 7127 + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", 7128 + "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", 7129 + "license": "MIT" 7130 + }, 7131 + "node_modules/hermes-parser": { 7132 + "version": "0.25.1", 7133 + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", 7134 + "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", 7135 + "license": "MIT", 7136 + "dependencies": { 7137 + "hermes-estree": "0.25.1" 7138 + } 7139 + }, 7140 + "node_modules/hoist-non-react-statics": { 7141 + "version": "3.3.2", 7142 + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", 7143 + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", 7144 + "license": "BSD-3-Clause", 7145 + "dependencies": { 7146 + "react-is": "^16.7.0" 7147 + } 7148 + }, 7149 + "node_modules/hoist-non-react-statics/node_modules/react-is": { 7150 + "version": "16.13.1", 7151 + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", 7152 + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", 7153 + "license": "MIT" 7154 + }, 7155 + "node_modules/hosted-git-info": { 7156 + "version": "7.0.2", 7157 + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz", 7158 + "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==", 7159 + "license": "ISC", 7160 + "dependencies": { 7161 + "lru-cache": "^10.0.1" 7162 + }, 7163 + "engines": { 7164 + "node": "^16.14.0 || >=18.0.0" 7165 + } 7166 + }, 7167 + "node_modules/hosted-git-info/node_modules/lru-cache": { 7168 + "version": "10.4.3", 7169 + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", 7170 + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", 7171 + "license": "ISC" 7172 + }, 7173 + "node_modules/http-errors": { 7174 + "version": "2.0.0", 7175 + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 7176 + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 7177 + "license": "MIT", 7178 + "dependencies": { 7179 + "depd": "2.0.0", 7180 + "inherits": "2.0.4", 7181 + "setprototypeof": "1.2.0", 7182 + "statuses": "2.0.1", 7183 + "toidentifier": "1.0.1" 7184 + }, 7185 + "engines": { 7186 + "node": ">= 0.8" 7187 + } 7188 + }, 7189 + "node_modules/http-errors/node_modules/statuses": { 7190 + "version": "2.0.1", 7191 + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 7192 + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 7193 + "license": "MIT", 7194 + "engines": { 7195 + "node": ">= 0.8" 7196 + } 7197 + }, 7198 + "node_modules/https-proxy-agent": { 7199 + "version": "7.0.6", 7200 + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", 7201 + "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", 7202 + "license": "MIT", 7203 + "dependencies": { 7204 + "agent-base": "^7.1.2", 7205 + "debug": "4" 7206 + }, 7207 + "engines": { 7208 + "node": ">= 14" 7209 + } 7210 + }, 7211 + "node_modules/hyphenate-style-name": { 7212 + "version": "1.1.0", 7213 + "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.1.0.tgz", 7214 + "integrity": "sha512-WDC/ui2VVRrz3jOVi+XtjqkDjiVjTtFaAGiW37k6b+ohyQ5wYDOGkvCZa8+H0nx3gyvv0+BST9xuOgIyGQ00gw==", 7215 + "license": "BSD-3-Clause" 7216 + }, 7217 + "node_modules/ieee754": { 7218 + "version": "1.2.1", 7219 + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", 7220 + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", 7221 + "funding": [ 7222 + { 7223 + "type": "github", 7224 + "url": "https://github.com/sponsors/feross" 7225 + }, 7226 + { 7227 + "type": "patreon", 7228 + "url": "https://www.patreon.com/feross" 7229 + }, 7230 + { 7231 + "type": "consulting", 7232 + "url": "https://feross.org/support" 7233 + } 7234 + ], 7235 + "license": "BSD-3-Clause" 7236 + }, 7237 + "node_modules/ignore": { 7238 + "version": "5.3.2", 7239 + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 7240 + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 7241 + "license": "MIT", 7242 + "engines": { 7243 + "node": ">= 4" 7244 + } 7245 + }, 7246 + "node_modules/image-size": { 7247 + "version": "1.2.1", 7248 + "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.2.1.tgz", 7249 + "integrity": "sha512-rH+46sQJ2dlwfjfhCyNx5thzrv+dtmBIhPHk0zgRUukHzZ/kRueTJXoYYsclBaKcSMBWuGbOFXtioLpzTb5euw==", 7250 + "license": "MIT", 7251 + "dependencies": { 7252 + "queue": "6.0.2" 7253 + }, 7254 + "bin": { 7255 + "image-size": "bin/image-size.js" 7256 + }, 7257 + "engines": { 7258 + "node": ">=16.x" 7259 + } 7260 + }, 7261 + "node_modules/import-fresh": { 7262 + "version": "3.3.1", 7263 + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", 7264 + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", 7265 + "dev": true, 7266 + "license": "MIT", 7267 + "dependencies": { 7268 + "parent-module": "^1.0.0", 7269 + "resolve-from": "^4.0.0" 7270 + }, 7271 + "engines": { 7272 + "node": ">=6" 7273 + }, 7274 + "funding": { 7275 + "url": "https://github.com/sponsors/sindresorhus" 7276 + } 7277 + }, 7278 + "node_modules/import-fresh/node_modules/resolve-from": { 7279 + "version": "4.0.0", 7280 + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 7281 + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 7282 + "dev": true, 7283 + "license": "MIT", 7284 + "engines": { 7285 + "node": ">=4" 7286 + } 7287 + }, 7288 + "node_modules/imurmurhash": { 7289 + "version": "0.1.4", 7290 + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 7291 + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 7292 + "license": "MIT", 7293 + "engines": { 7294 + "node": ">=0.8.19" 7295 + } 7296 + }, 7297 + "node_modules/inflight": { 7298 + "version": "1.0.6", 7299 + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 7300 + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 7301 + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", 7302 + "license": "ISC", 7303 + "dependencies": { 7304 + "once": "^1.3.0", 7305 + "wrappy": "1" 7306 + } 7307 + }, 7308 + "node_modules/inherits": { 7309 + "version": "2.0.4", 7310 + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 7311 + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 7312 + "license": "ISC" 7313 + }, 7314 + "node_modules/ini": { 7315 + "version": "1.3.8", 7316 + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", 7317 + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", 7318 + "license": "ISC" 7319 + }, 7320 + "node_modules/inline-style-prefixer": { 7321 + "version": "7.0.1", 7322 + "resolved": "https://registry.npmjs.org/inline-style-prefixer/-/inline-style-prefixer-7.0.1.tgz", 7323 + "integrity": "sha512-lhYo5qNTQp3EvSSp3sRvXMbVQTLrvGV6DycRMJ5dm2BLMiJ30wpXKdDdgX+GmJZ5uQMucwRKHamXSst3Sj/Giw==", 7324 + "license": "MIT", 7325 + "dependencies": { 7326 + "css-in-js-utils": "^3.1.0" 7327 + } 7328 + }, 7329 + "node_modules/internal-slot": { 7330 + "version": "1.1.0", 7331 + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", 7332 + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", 7333 + "dev": true, 7334 + "license": "MIT", 7335 + "dependencies": { 7336 + "es-errors": "^1.3.0", 7337 + "hasown": "^2.0.2", 7338 + "side-channel": "^1.1.0" 7339 + }, 7340 + "engines": { 7341 + "node": ">= 0.4" 7342 + } 7343 + }, 7344 + "node_modules/invariant": { 7345 + "version": "2.2.4", 7346 + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", 7347 + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", 7348 + "license": "MIT", 7349 + "dependencies": { 7350 + "loose-envify": "^1.0.0" 7351 + } 7352 + }, 7353 + "node_modules/is-array-buffer": { 7354 + "version": "3.0.5", 7355 + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", 7356 + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", 7357 + "dev": true, 7358 + "license": "MIT", 7359 + "dependencies": { 7360 + "call-bind": "^1.0.8", 7361 + "call-bound": "^1.0.3", 7362 + "get-intrinsic": "^1.2.6" 7363 + }, 7364 + "engines": { 7365 + "node": ">= 0.4" 7366 + }, 7367 + "funding": { 7368 + "url": "https://github.com/sponsors/ljharb" 7369 + } 7370 + }, 7371 + "node_modules/is-arrayish": { 7372 + "version": "0.2.1", 7373 + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 7374 + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", 7375 + "license": "MIT" 7376 + }, 7377 + "node_modules/is-async-function": { 7378 + "version": "2.1.1", 7379 + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", 7380 + "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", 7381 + "dev": true, 7382 + "license": "MIT", 7383 + "dependencies": { 7384 + "async-function": "^1.0.0", 7385 + "call-bound": "^1.0.3", 7386 + "get-proto": "^1.0.1", 7387 + "has-tostringtag": "^1.0.2", 7388 + "safe-regex-test": "^1.1.0" 7389 + }, 7390 + "engines": { 7391 + "node": ">= 0.4" 7392 + }, 7393 + "funding": { 7394 + "url": "https://github.com/sponsors/ljharb" 7395 + } 7396 + }, 7397 + "node_modules/is-bigint": { 7398 + "version": "1.1.0", 7399 + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", 7400 + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", 7401 + "dev": true, 7402 + "license": "MIT", 7403 + "dependencies": { 7404 + "has-bigints": "^1.0.2" 7405 + }, 7406 + "engines": { 7407 + "node": ">= 0.4" 7408 + }, 7409 + "funding": { 7410 + "url": "https://github.com/sponsors/ljharb" 7411 + } 7412 + }, 7413 + "node_modules/is-boolean-object": { 7414 + "version": "1.2.2", 7415 + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", 7416 + "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", 7417 + "dev": true, 7418 + "license": "MIT", 7419 + "dependencies": { 7420 + "call-bound": "^1.0.3", 7421 + "has-tostringtag": "^1.0.2" 7422 + }, 7423 + "engines": { 7424 + "node": ">= 0.4" 7425 + }, 7426 + "funding": { 7427 + "url": "https://github.com/sponsors/ljharb" 7428 + } 7429 + }, 7430 + "node_modules/is-bun-module": { 7431 + "version": "2.0.0", 7432 + "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz", 7433 + "integrity": "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==", 7434 + "dev": true, 7435 + "license": "MIT", 7436 + "dependencies": { 7437 + "semver": "^7.7.1" 7438 + } 7439 + }, 7440 + "node_modules/is-bun-module/node_modules/semver": { 7441 + "version": "7.7.2", 7442 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 7443 + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 7444 + "dev": true, 7445 + "license": "ISC", 7446 + "bin": { 7447 + "semver": "bin/semver.js" 7448 + }, 7449 + "engines": { 7450 + "node": ">=10" 7451 + } 7452 + }, 7453 + "node_modules/is-callable": { 7454 + "version": "1.2.7", 7455 + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 7456 + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 7457 + "dev": true, 7458 + "license": "MIT", 7459 + "engines": { 7460 + "node": ">= 0.4" 7461 + }, 7462 + "funding": { 7463 + "url": "https://github.com/sponsors/ljharb" 7464 + } 7465 + }, 7466 + "node_modules/is-core-module": { 7467 + "version": "2.16.1", 7468 + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", 7469 + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", 7470 + "license": "MIT", 7471 + "dependencies": { 7472 + "hasown": "^2.0.2" 7473 + }, 7474 + "engines": { 7475 + "node": ">= 0.4" 7476 + }, 7477 + "funding": { 7478 + "url": "https://github.com/sponsors/ljharb" 7479 + } 7480 + }, 7481 + "node_modules/is-data-view": { 7482 + "version": "1.0.2", 7483 + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", 7484 + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", 7485 + "dev": true, 7486 + "license": "MIT", 7487 + "dependencies": { 7488 + "call-bound": "^1.0.2", 7489 + "get-intrinsic": "^1.2.6", 7490 + "is-typed-array": "^1.1.13" 7491 + }, 7492 + "engines": { 7493 + "node": ">= 0.4" 7494 + }, 7495 + "funding": { 7496 + "url": "https://github.com/sponsors/ljharb" 7497 + } 7498 + }, 7499 + "node_modules/is-date-object": { 7500 + "version": "1.1.0", 7501 + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", 7502 + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", 7503 + "dev": true, 7504 + "license": "MIT", 7505 + "dependencies": { 7506 + "call-bound": "^1.0.2", 7507 + "has-tostringtag": "^1.0.2" 7508 + }, 7509 + "engines": { 7510 + "node": ">= 0.4" 7511 + }, 7512 + "funding": { 7513 + "url": "https://github.com/sponsors/ljharb" 7514 + } 7515 + }, 7516 + "node_modules/is-directory": { 7517 + "version": "0.3.1", 7518 + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", 7519 + "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", 7520 + "license": "MIT", 7521 + "engines": { 7522 + "node": ">=0.10.0" 7523 + } 7524 + }, 7525 + "node_modules/is-docker": { 7526 + "version": "2.2.1", 7527 + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", 7528 + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", 7529 + "license": "MIT", 7530 + "bin": { 7531 + "is-docker": "cli.js" 7532 + }, 7533 + "engines": { 7534 + "node": ">=8" 7535 + }, 7536 + "funding": { 7537 + "url": "https://github.com/sponsors/sindresorhus" 7538 + } 7539 + }, 7540 + "node_modules/is-extglob": { 7541 + "version": "2.1.1", 7542 + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 7543 + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 7544 + "dev": true, 7545 + "license": "MIT", 7546 + "engines": { 7547 + "node": ">=0.10.0" 7548 + } 7549 + }, 7550 + "node_modules/is-finalizationregistry": { 7551 + "version": "1.1.1", 7552 + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", 7553 + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", 7554 + "dev": true, 7555 + "license": "MIT", 7556 + "dependencies": { 7557 + "call-bound": "^1.0.3" 7558 + }, 7559 + "engines": { 7560 + "node": ">= 0.4" 7561 + }, 7562 + "funding": { 7563 + "url": "https://github.com/sponsors/ljharb" 7564 + } 7565 + }, 7566 + "node_modules/is-fullwidth-code-point": { 7567 + "version": "3.0.0", 7568 + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 7569 + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 7570 + "license": "MIT", 7571 + "engines": { 7572 + "node": ">=8" 7573 + } 7574 + }, 7575 + "node_modules/is-generator-function": { 7576 + "version": "1.1.0", 7577 + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz", 7578 + "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==", 7579 + "dev": true, 7580 + "license": "MIT", 7581 + "dependencies": { 7582 + "call-bound": "^1.0.3", 7583 + "get-proto": "^1.0.0", 7584 + "has-tostringtag": "^1.0.2", 7585 + "safe-regex-test": "^1.1.0" 7586 + }, 7587 + "engines": { 7588 + "node": ">= 0.4" 7589 + }, 7590 + "funding": { 7591 + "url": "https://github.com/sponsors/ljharb" 7592 + } 7593 + }, 7594 + "node_modules/is-glob": { 7595 + "version": "4.0.3", 7596 + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 7597 + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 7598 + "dev": true, 7599 + "license": "MIT", 7600 + "dependencies": { 7601 + "is-extglob": "^2.1.1" 7602 + }, 7603 + "engines": { 7604 + "node": ">=0.10.0" 7605 + } 7606 + }, 7607 + "node_modules/is-map": { 7608 + "version": "2.0.3", 7609 + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", 7610 + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", 7611 + "dev": true, 7612 + "license": "MIT", 7613 + "engines": { 7614 + "node": ">= 0.4" 7615 + }, 7616 + "funding": { 7617 + "url": "https://github.com/sponsors/ljharb" 7618 + } 7619 + }, 7620 + "node_modules/is-negative-zero": { 7621 + "version": "2.0.3", 7622 + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", 7623 + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", 7624 + "dev": true, 7625 + "license": "MIT", 7626 + "engines": { 7627 + "node": ">= 0.4" 7628 + }, 7629 + "funding": { 7630 + "url": "https://github.com/sponsors/ljharb" 7631 + } 7632 + }, 7633 + "node_modules/is-number": { 7634 + "version": "7.0.0", 7635 + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 7636 + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 7637 + "license": "MIT", 7638 + "engines": { 7639 + "node": ">=0.12.0" 7640 + } 7641 + }, 7642 + "node_modules/is-number-object": { 7643 + "version": "1.1.1", 7644 + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", 7645 + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", 7646 + "dev": true, 7647 + "license": "MIT", 7648 + "dependencies": { 7649 + "call-bound": "^1.0.3", 7650 + "has-tostringtag": "^1.0.2" 7651 + }, 7652 + "engines": { 7653 + "node": ">= 0.4" 7654 + }, 7655 + "funding": { 7656 + "url": "https://github.com/sponsors/ljharb" 7657 + } 7658 + }, 7659 + "node_modules/is-regex": { 7660 + "version": "1.2.1", 7661 + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", 7662 + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", 7663 + "dev": true, 7664 + "license": "MIT", 7665 + "dependencies": { 7666 + "call-bound": "^1.0.2", 7667 + "gopd": "^1.2.0", 7668 + "has-tostringtag": "^1.0.2", 7669 + "hasown": "^2.0.2" 7670 + }, 7671 + "engines": { 7672 + "node": ">= 0.4" 7673 + }, 7674 + "funding": { 7675 + "url": "https://github.com/sponsors/ljharb" 7676 + } 7677 + }, 7678 + "node_modules/is-set": { 7679 + "version": "2.0.3", 7680 + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", 7681 + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", 7682 + "dev": true, 7683 + "license": "MIT", 7684 + "engines": { 7685 + "node": ">= 0.4" 7686 + }, 7687 + "funding": { 7688 + "url": "https://github.com/sponsors/ljharb" 7689 + } 7690 + }, 7691 + "node_modules/is-shared-array-buffer": { 7692 + "version": "1.0.4", 7693 + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", 7694 + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", 7695 + "dev": true, 7696 + "license": "MIT", 7697 + "dependencies": { 7698 + "call-bound": "^1.0.3" 7699 + }, 7700 + "engines": { 7701 + "node": ">= 0.4" 7702 + }, 7703 + "funding": { 7704 + "url": "https://github.com/sponsors/ljharb" 7705 + } 7706 + }, 7707 + "node_modules/is-string": { 7708 + "version": "1.1.1", 7709 + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", 7710 + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", 7711 + "dev": true, 7712 + "license": "MIT", 7713 + "dependencies": { 7714 + "call-bound": "^1.0.3", 7715 + "has-tostringtag": "^1.0.2" 7716 + }, 7717 + "engines": { 7718 + "node": ">= 0.4" 7719 + }, 7720 + "funding": { 7721 + "url": "https://github.com/sponsors/ljharb" 7722 + } 7723 + }, 7724 + "node_modules/is-symbol": { 7725 + "version": "1.1.1", 7726 + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", 7727 + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", 7728 + "dev": true, 7729 + "license": "MIT", 7730 + "dependencies": { 7731 + "call-bound": "^1.0.2", 7732 + "has-symbols": "^1.1.0", 7733 + "safe-regex-test": "^1.1.0" 7734 + }, 7735 + "engines": { 7736 + "node": ">= 0.4" 7737 + }, 7738 + "funding": { 7739 + "url": "https://github.com/sponsors/ljharb" 7740 + } 7741 + }, 7742 + "node_modules/is-typed-array": { 7743 + "version": "1.1.15", 7744 + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", 7745 + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", 7746 + "dev": true, 7747 + "license": "MIT", 7748 + "dependencies": { 7749 + "which-typed-array": "^1.1.16" 7750 + }, 7751 + "engines": { 7752 + "node": ">= 0.4" 7753 + }, 7754 + "funding": { 7755 + "url": "https://github.com/sponsors/ljharb" 7756 + } 7757 + }, 7758 + "node_modules/is-weakmap": { 7759 + "version": "2.0.2", 7760 + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", 7761 + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", 7762 + "dev": true, 7763 + "license": "MIT", 7764 + "engines": { 7765 + "node": ">= 0.4" 7766 + }, 7767 + "funding": { 7768 + "url": "https://github.com/sponsors/ljharb" 7769 + } 7770 + }, 7771 + "node_modules/is-weakref": { 7772 + "version": "1.1.1", 7773 + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", 7774 + "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", 7775 + "dev": true, 7776 + "license": "MIT", 7777 + "dependencies": { 7778 + "call-bound": "^1.0.3" 7779 + }, 7780 + "engines": { 7781 + "node": ">= 0.4" 7782 + }, 7783 + "funding": { 7784 + "url": "https://github.com/sponsors/ljharb" 7785 + } 7786 + }, 7787 + "node_modules/is-weakset": { 7788 + "version": "2.0.4", 7789 + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", 7790 + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", 7791 + "dev": true, 7792 + "license": "MIT", 7793 + "dependencies": { 7794 + "call-bound": "^1.0.3", 7795 + "get-intrinsic": "^1.2.6" 7796 + }, 7797 + "engines": { 7798 + "node": ">= 0.4" 7799 + }, 7800 + "funding": { 7801 + "url": "https://github.com/sponsors/ljharb" 7802 + } 7803 + }, 7804 + "node_modules/is-wsl": { 7805 + "version": "2.2.0", 7806 + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", 7807 + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", 7808 + "license": "MIT", 7809 + "dependencies": { 7810 + "is-docker": "^2.0.0" 7811 + }, 7812 + "engines": { 7813 + "node": ">=8" 7814 + } 7815 + }, 7816 + "node_modules/isarray": { 7817 + "version": "2.0.5", 7818 + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 7819 + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", 7820 + "dev": true, 7821 + "license": "MIT" 7822 + }, 7823 + "node_modules/isexe": { 7824 + "version": "2.0.0", 7825 + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 7826 + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 7827 + "license": "ISC" 7828 + }, 7829 + "node_modules/istanbul-lib-coverage": { 7830 + "version": "3.2.2", 7831 + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", 7832 + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", 7833 + "license": "BSD-3-Clause", 7834 + "engines": { 7835 + "node": ">=8" 7836 + } 7837 + }, 7838 + "node_modules/istanbul-lib-instrument": { 7839 + "version": "5.2.1", 7840 + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", 7841 + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", 7842 + "license": "BSD-3-Clause", 7843 + "dependencies": { 7844 + "@babel/core": "^7.12.3", 7845 + "@babel/parser": "^7.14.7", 7846 + "@istanbuljs/schema": "^0.1.2", 7847 + "istanbul-lib-coverage": "^3.2.0", 7848 + "semver": "^6.3.0" 7849 + }, 7850 + "engines": { 7851 + "node": ">=8" 7852 + } 7853 + }, 7854 + "node_modules/iterator.prototype": { 7855 + "version": "1.1.5", 7856 + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", 7857 + "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", 7858 + "dev": true, 7859 + "license": "MIT", 7860 + "dependencies": { 7861 + "define-data-property": "^1.1.4", 7862 + "es-object-atoms": "^1.0.0", 7863 + "get-intrinsic": "^1.2.6", 7864 + "get-proto": "^1.0.0", 7865 + "has-symbols": "^1.1.0", 7866 + "set-function-name": "^2.0.2" 7867 + }, 7868 + "engines": { 7869 + "node": ">= 0.4" 7870 + } 7871 + }, 7872 + "node_modules/jackspeak": { 7873 + "version": "3.4.3", 7874 + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", 7875 + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", 7876 + "license": "BlueOak-1.0.0", 7877 + "dependencies": { 7878 + "@isaacs/cliui": "^8.0.2" 7879 + }, 7880 + "funding": { 7881 + "url": "https://github.com/sponsors/isaacs" 7882 + }, 7883 + "optionalDependencies": { 7884 + "@pkgjs/parseargs": "^0.11.0" 7885 + } 7886 + }, 7887 + "node_modules/jest-environment-node": { 7888 + "version": "29.7.0", 7889 + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", 7890 + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", 7891 + "license": "MIT", 7892 + "dependencies": { 7893 + "@jest/environment": "^29.7.0", 7894 + "@jest/fake-timers": "^29.7.0", 7895 + "@jest/types": "^29.6.3", 7896 + "@types/node": "*", 7897 + "jest-mock": "^29.7.0", 7898 + "jest-util": "^29.7.0" 7899 + }, 7900 + "engines": { 7901 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 7902 + } 7903 + }, 7904 + "node_modules/jest-get-type": { 7905 + "version": "29.6.3", 7906 + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", 7907 + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", 7908 + "license": "MIT", 7909 + "engines": { 7910 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 7911 + } 7912 + }, 7913 + "node_modules/jest-haste-map": { 7914 + "version": "29.7.0", 7915 + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", 7916 + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", 7917 + "license": "MIT", 7918 + "dependencies": { 7919 + "@jest/types": "^29.6.3", 7920 + "@types/graceful-fs": "^4.1.3", 7921 + "@types/node": "*", 7922 + "anymatch": "^3.0.3", 7923 + "fb-watchman": "^2.0.0", 7924 + "graceful-fs": "^4.2.9", 7925 + "jest-regex-util": "^29.6.3", 7926 + "jest-util": "^29.7.0", 7927 + "jest-worker": "^29.7.0", 7928 + "micromatch": "^4.0.4", 7929 + "walker": "^1.0.8" 7930 + }, 7931 + "engines": { 7932 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 7933 + }, 7934 + "optionalDependencies": { 7935 + "fsevents": "^2.3.2" 7936 + } 7937 + }, 7938 + "node_modules/jest-message-util": { 7939 + "version": "29.7.0", 7940 + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", 7941 + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", 7942 + "license": "MIT", 7943 + "dependencies": { 7944 + "@babel/code-frame": "^7.12.13", 7945 + "@jest/types": "^29.6.3", 7946 + "@types/stack-utils": "^2.0.0", 7947 + "chalk": "^4.0.0", 7948 + "graceful-fs": "^4.2.9", 7949 + "micromatch": "^4.0.4", 7950 + "pretty-format": "^29.7.0", 7951 + "slash": "^3.0.0", 7952 + "stack-utils": "^2.0.3" 7953 + }, 7954 + "engines": { 7955 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 7956 + } 7957 + }, 7958 + "node_modules/jest-mock": { 7959 + "version": "29.7.0", 7960 + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", 7961 + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", 7962 + "license": "MIT", 7963 + "dependencies": { 7964 + "@jest/types": "^29.6.3", 7965 + "@types/node": "*", 7966 + "jest-util": "^29.7.0" 7967 + }, 7968 + "engines": { 7969 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 7970 + } 7971 + }, 7972 + "node_modules/jest-regex-util": { 7973 + "version": "29.6.3", 7974 + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", 7975 + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", 7976 + "license": "MIT", 7977 + "engines": { 7978 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 7979 + } 7980 + }, 7981 + "node_modules/jest-util": { 7982 + "version": "29.7.0", 7983 + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", 7984 + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", 7985 + "license": "MIT", 7986 + "dependencies": { 7987 + "@jest/types": "^29.6.3", 7988 + "@types/node": "*", 7989 + "chalk": "^4.0.0", 7990 + "ci-info": "^3.2.0", 7991 + "graceful-fs": "^4.2.9", 7992 + "picomatch": "^2.2.3" 7993 + }, 7994 + "engines": { 7995 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 7996 + } 7997 + }, 7998 + "node_modules/jest-util/node_modules/picomatch": { 7999 + "version": "2.3.1", 8000 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 8001 + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 8002 + "license": "MIT", 8003 + "engines": { 8004 + "node": ">=8.6" 8005 + }, 8006 + "funding": { 8007 + "url": "https://github.com/sponsors/jonschlinkert" 8008 + } 8009 + }, 8010 + "node_modules/jest-validate": { 8011 + "version": "29.7.0", 8012 + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", 8013 + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", 8014 + "license": "MIT", 8015 + "dependencies": { 8016 + "@jest/types": "^29.6.3", 8017 + "camelcase": "^6.2.0", 8018 + "chalk": "^4.0.0", 8019 + "jest-get-type": "^29.6.3", 8020 + "leven": "^3.1.0", 8021 + "pretty-format": "^29.7.0" 8022 + }, 8023 + "engines": { 8024 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 8025 + } 8026 + }, 8027 + "node_modules/jest-validate/node_modules/camelcase": { 8028 + "version": "6.3.0", 8029 + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", 8030 + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", 8031 + "license": "MIT", 8032 + "engines": { 8033 + "node": ">=10" 8034 + }, 8035 + "funding": { 8036 + "url": "https://github.com/sponsors/sindresorhus" 8037 + } 8038 + }, 8039 + "node_modules/jest-worker": { 8040 + "version": "29.7.0", 8041 + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", 8042 + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", 8043 + "license": "MIT", 8044 + "dependencies": { 8045 + "@types/node": "*", 8046 + "jest-util": "^29.7.0", 8047 + "merge-stream": "^2.0.0", 8048 + "supports-color": "^8.0.0" 8049 + }, 8050 + "engines": { 8051 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 8052 + } 8053 + }, 8054 + "node_modules/jest-worker/node_modules/supports-color": { 8055 + "version": "8.1.1", 8056 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 8057 + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 8058 + "license": "MIT", 8059 + "dependencies": { 8060 + "has-flag": "^4.0.0" 8061 + }, 8062 + "engines": { 8063 + "node": ">=10" 8064 + }, 8065 + "funding": { 8066 + "url": "https://github.com/chalk/supports-color?sponsor=1" 8067 + } 8068 + }, 8069 + "node_modules/jimp-compact": { 8070 + "version": "0.16.1", 8071 + "resolved": "https://registry.npmjs.org/jimp-compact/-/jimp-compact-0.16.1.tgz", 8072 + "integrity": "sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==", 8073 + "license": "MIT" 8074 + }, 8075 + "node_modules/js-tokens": { 8076 + "version": "4.0.0", 8077 + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 8078 + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 8079 + "license": "MIT" 8080 + }, 8081 + "node_modules/js-yaml": { 8082 + "version": "4.1.0", 8083 + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 8084 + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 8085 + "license": "MIT", 8086 + "dependencies": { 8087 + "argparse": "^2.0.1" 8088 + }, 8089 + "bin": { 8090 + "js-yaml": "bin/js-yaml.js" 8091 + } 8092 + }, 8093 + "node_modules/jsc-safe-url": { 8094 + "version": "0.2.4", 8095 + "resolved": "https://registry.npmjs.org/jsc-safe-url/-/jsc-safe-url-0.2.4.tgz", 8096 + "integrity": "sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==", 8097 + "license": "0BSD" 8098 + }, 8099 + "node_modules/jsesc": { 8100 + "version": "3.1.0", 8101 + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", 8102 + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", 8103 + "license": "MIT", 8104 + "bin": { 8105 + "jsesc": "bin/jsesc" 8106 + }, 8107 + "engines": { 8108 + "node": ">=6" 8109 + } 8110 + }, 8111 + "node_modules/json-buffer": { 8112 + "version": "3.0.1", 8113 + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 8114 + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 8115 + "dev": true, 8116 + "license": "MIT" 8117 + }, 8118 + "node_modules/json-parse-better-errors": { 8119 + "version": "1.0.2", 8120 + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", 8121 + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", 8122 + "license": "MIT" 8123 + }, 8124 + "node_modules/json-schema-traverse": { 8125 + "version": "0.4.1", 8126 + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 8127 + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 8128 + "dev": true, 8129 + "license": "MIT" 8130 + }, 8131 + "node_modules/json-stable-stringify-without-jsonify": { 8132 + "version": "1.0.1", 8133 + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 8134 + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 8135 + "dev": true, 8136 + "license": "MIT" 8137 + }, 8138 + "node_modules/json5": { 8139 + "version": "2.2.3", 8140 + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 8141 + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 8142 + "license": "MIT", 8143 + "bin": { 8144 + "json5": "lib/cli.js" 8145 + }, 8146 + "engines": { 8147 + "node": ">=6" 8148 + } 8149 + }, 8150 + "node_modules/jsx-ast-utils": { 8151 + "version": "3.3.5", 8152 + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", 8153 + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", 8154 + "dev": true, 8155 + "license": "MIT", 8156 + "dependencies": { 8157 + "array-includes": "^3.1.6", 8158 + "array.prototype.flat": "^1.3.1", 8159 + "object.assign": "^4.1.4", 8160 + "object.values": "^1.1.6" 8161 + }, 8162 + "engines": { 8163 + "node": ">=4.0" 8164 + } 8165 + }, 8166 + "node_modules/keyv": { 8167 + "version": "4.5.4", 8168 + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 8169 + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 8170 + "dev": true, 8171 + "license": "MIT", 8172 + "dependencies": { 8173 + "json-buffer": "3.0.1" 8174 + } 8175 + }, 8176 + "node_modules/kleur": { 8177 + "version": "3.0.3", 8178 + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", 8179 + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", 8180 + "license": "MIT", 8181 + "engines": { 8182 + "node": ">=6" 8183 + } 8184 + }, 8185 + "node_modules/lan-network": { 8186 + "version": "0.1.7", 8187 + "resolved": "https://registry.npmjs.org/lan-network/-/lan-network-0.1.7.tgz", 8188 + "integrity": "sha512-mnIlAEMu4OyEvUNdzco9xpuB9YVcPkQec+QsgycBCtPZvEqWPCDPfbAE4OJMdBBWpZWtpCn1xw9jJYlwjWI5zQ==", 8189 + "license": "MIT", 8190 + "bin": { 8191 + "lan-network": "dist/lan-network-cli.js" 8192 + } 8193 + }, 8194 + "node_modules/leven": { 8195 + "version": "3.1.0", 8196 + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", 8197 + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", 8198 + "license": "MIT", 8199 + "engines": { 8200 + "node": ">=6" 8201 + } 8202 + }, 8203 + "node_modules/levn": { 8204 + "version": "0.4.1", 8205 + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 8206 + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 8207 + "dev": true, 8208 + "license": "MIT", 8209 + "dependencies": { 8210 + "prelude-ls": "^1.2.1", 8211 + "type-check": "~0.4.0" 8212 + }, 8213 + "engines": { 8214 + "node": ">= 0.8.0" 8215 + } 8216 + }, 8217 + "node_modules/lighthouse-logger": { 8218 + "version": "1.4.2", 8219 + "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz", 8220 + "integrity": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==", 8221 + "license": "Apache-2.0", 8222 + "dependencies": { 8223 + "debug": "^2.6.9", 8224 + "marky": "^1.2.2" 8225 + } 8226 + }, 8227 + "node_modules/lighthouse-logger/node_modules/debug": { 8228 + "version": "2.6.9", 8229 + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 8230 + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 8231 + "license": "MIT", 8232 + "dependencies": { 8233 + "ms": "2.0.0" 8234 + } 8235 + }, 8236 + "node_modules/lighthouse-logger/node_modules/ms": { 8237 + "version": "2.0.0", 8238 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 8239 + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 8240 + "license": "MIT" 8241 + }, 8242 + "node_modules/lightningcss": { 8243 + "version": "1.27.0", 8244 + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.27.0.tgz", 8245 + "integrity": "sha512-8f7aNmS1+etYSLHht0fQApPc2kNO8qGRutifN5rVIc6Xo6ABsEbqOr758UwI7ALVbTt4x1fllKt0PYgzD9S3yQ==", 8246 + "license": "MPL-2.0", 8247 + "dependencies": { 8248 + "detect-libc": "^1.0.3" 8249 + }, 8250 + "engines": { 8251 + "node": ">= 12.0.0" 8252 + }, 8253 + "funding": { 8254 + "type": "opencollective", 8255 + "url": "https://opencollective.com/parcel" 8256 + }, 8257 + "optionalDependencies": { 8258 + "lightningcss-darwin-arm64": "1.27.0", 8259 + "lightningcss-darwin-x64": "1.27.0", 8260 + "lightningcss-freebsd-x64": "1.27.0", 8261 + "lightningcss-linux-arm-gnueabihf": "1.27.0", 8262 + "lightningcss-linux-arm64-gnu": "1.27.0", 8263 + "lightningcss-linux-arm64-musl": "1.27.0", 8264 + "lightningcss-linux-x64-gnu": "1.27.0", 8265 + "lightningcss-linux-x64-musl": "1.27.0", 8266 + "lightningcss-win32-arm64-msvc": "1.27.0", 8267 + "lightningcss-win32-x64-msvc": "1.27.0" 8268 + } 8269 + }, 8270 + "node_modules/lightningcss-darwin-arm64": { 8271 + "version": "1.27.0", 8272 + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.27.0.tgz", 8273 + "integrity": "sha512-Gl/lqIXY+d+ySmMbgDf0pgaWSqrWYxVHoc88q+Vhf2YNzZ8DwoRzGt5NZDVqqIW5ScpSnmmjcgXP87Dn2ylSSQ==", 8274 + "cpu": [ 8275 + "arm64" 8276 + ], 8277 + "license": "MPL-2.0", 8278 + "optional": true, 8279 + "os": [ 8280 + "darwin" 8281 + ], 8282 + "engines": { 8283 + "node": ">= 12.0.0" 8284 + }, 8285 + "funding": { 8286 + "type": "opencollective", 8287 + "url": "https://opencollective.com/parcel" 8288 + } 8289 + }, 8290 + "node_modules/lightningcss-darwin-x64": { 8291 + "version": "1.27.0", 8292 + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.27.0.tgz", 8293 + "integrity": "sha512-0+mZa54IlcNAoQS9E0+niovhyjjQWEMrwW0p2sSdLRhLDc8LMQ/b67z7+B5q4VmjYCMSfnFi3djAAQFIDuj/Tg==", 8294 + "cpu": [ 8295 + "x64" 8296 + ], 8297 + "license": "MPL-2.0", 8298 + "optional": true, 8299 + "os": [ 8300 + "darwin" 8301 + ], 8302 + "engines": { 8303 + "node": ">= 12.0.0" 8304 + }, 8305 + "funding": { 8306 + "type": "opencollective", 8307 + "url": "https://opencollective.com/parcel" 8308 + } 8309 + }, 8310 + "node_modules/lightningcss-freebsd-x64": { 8311 + "version": "1.27.0", 8312 + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.27.0.tgz", 8313 + "integrity": "sha512-n1sEf85fePoU2aDN2PzYjoI8gbBqnmLGEhKq7q0DKLj0UTVmOTwDC7PtLcy/zFxzASTSBlVQYJUhwIStQMIpRA==", 8314 + "cpu": [ 8315 + "x64" 8316 + ], 8317 + "license": "MPL-2.0", 8318 + "optional": true, 8319 + "os": [ 8320 + "freebsd" 8321 + ], 8322 + "engines": { 8323 + "node": ">= 12.0.0" 8324 + }, 8325 + "funding": { 8326 + "type": "opencollective", 8327 + "url": "https://opencollective.com/parcel" 8328 + } 8329 + }, 8330 + "node_modules/lightningcss-linux-arm-gnueabihf": { 8331 + "version": "1.27.0", 8332 + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.27.0.tgz", 8333 + "integrity": "sha512-MUMRmtdRkOkd5z3h986HOuNBD1c2lq2BSQA1Jg88d9I7bmPGx08bwGcnB75dvr17CwxjxD6XPi3Qh8ArmKFqCA==", 8334 + "cpu": [ 8335 + "arm" 8336 + ], 8337 + "license": "MPL-2.0", 8338 + "optional": true, 8339 + "os": [ 8340 + "linux" 8341 + ], 8342 + "engines": { 8343 + "node": ">= 12.0.0" 8344 + }, 8345 + "funding": { 8346 + "type": "opencollective", 8347 + "url": "https://opencollective.com/parcel" 8348 + } 8349 + }, 8350 + "node_modules/lightningcss-linux-arm64-gnu": { 8351 + "version": "1.27.0", 8352 + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.27.0.tgz", 8353 + "integrity": "sha512-cPsxo1QEWq2sfKkSq2Bq5feQDHdUEwgtA9KaB27J5AX22+l4l0ptgjMZZtYtUnteBofjee+0oW1wQ1guv04a7A==", 8354 + "cpu": [ 8355 + "arm64" 8356 + ], 8357 + "license": "MPL-2.0", 8358 + "optional": true, 8359 + "os": [ 8360 + "linux" 8361 + ], 8362 + "engines": { 8363 + "node": ">= 12.0.0" 8364 + }, 8365 + "funding": { 8366 + "type": "opencollective", 8367 + "url": "https://opencollective.com/parcel" 8368 + } 8369 + }, 8370 + "node_modules/lightningcss-linux-arm64-musl": { 8371 + "version": "1.27.0", 8372 + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.27.0.tgz", 8373 + "integrity": "sha512-rCGBm2ax7kQ9pBSeITfCW9XSVF69VX+fm5DIpvDZQl4NnQoMQyRwhZQm9pd59m8leZ1IesRqWk2v/DntMo26lg==", 8374 + "cpu": [ 8375 + "arm64" 8376 + ], 8377 + "license": "MPL-2.0", 8378 + "optional": true, 8379 + "os": [ 8380 + "linux" 8381 + ], 8382 + "engines": { 8383 + "node": ">= 12.0.0" 8384 + }, 8385 + "funding": { 8386 + "type": "opencollective", 8387 + "url": "https://opencollective.com/parcel" 8388 + } 8389 + }, 8390 + "node_modules/lightningcss-linux-x64-gnu": { 8391 + "version": "1.27.0", 8392 + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.27.0.tgz", 8393 + "integrity": "sha512-Dk/jovSI7qqhJDiUibvaikNKI2x6kWPN79AQiD/E/KeQWMjdGe9kw51RAgoWFDi0coP4jinaH14Nrt/J8z3U4A==", 8394 + "cpu": [ 8395 + "x64" 8396 + ], 8397 + "license": "MPL-2.0", 8398 + "optional": true, 8399 + "os": [ 8400 + "linux" 8401 + ], 8402 + "engines": { 8403 + "node": ">= 12.0.0" 8404 + }, 8405 + "funding": { 8406 + "type": "opencollective", 8407 + "url": "https://opencollective.com/parcel" 8408 + } 8409 + }, 8410 + "node_modules/lightningcss-linux-x64-musl": { 8411 + "version": "1.27.0", 8412 + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.27.0.tgz", 8413 + "integrity": "sha512-QKjTxXm8A9s6v9Tg3Fk0gscCQA1t/HMoF7Woy1u68wCk5kS4fR+q3vXa1p3++REW784cRAtkYKrPy6JKibrEZA==", 8414 + "cpu": [ 8415 + "x64" 8416 + ], 8417 + "license": "MPL-2.0", 8418 + "optional": true, 8419 + "os": [ 8420 + "linux" 8421 + ], 8422 + "engines": { 8423 + "node": ">= 12.0.0" 8424 + }, 8425 + "funding": { 8426 + "type": "opencollective", 8427 + "url": "https://opencollective.com/parcel" 8428 + } 8429 + }, 8430 + "node_modules/lightningcss-win32-arm64-msvc": { 8431 + "version": "1.27.0", 8432 + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.27.0.tgz", 8433 + "integrity": "sha512-/wXegPS1hnhkeG4OXQKEMQeJd48RDC3qdh+OA8pCuOPCyvnm/yEayrJdJVqzBsqpy1aJklRCVxscpFur80o6iQ==", 8434 + "cpu": [ 8435 + "arm64" 8436 + ], 8437 + "license": "MPL-2.0", 8438 + "optional": true, 8439 + "os": [ 8440 + "win32" 8441 + ], 8442 + "engines": { 8443 + "node": ">= 12.0.0" 8444 + }, 8445 + "funding": { 8446 + "type": "opencollective", 8447 + "url": "https://opencollective.com/parcel" 8448 + } 8449 + }, 8450 + "node_modules/lightningcss-win32-x64-msvc": { 8451 + "version": "1.27.0", 8452 + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.27.0.tgz", 8453 + "integrity": "sha512-/OJLj94Zm/waZShL8nB5jsNj3CfNATLCTyFxZyouilfTmSoLDX7VlVAmhPHoZWVFp4vdmoiEbPEYC8HID3m6yw==", 8454 + "cpu": [ 8455 + "x64" 8456 + ], 8457 + "license": "MPL-2.0", 8458 + "optional": true, 8459 + "os": [ 8460 + "win32" 8461 + ], 8462 + "engines": { 8463 + "node": ">= 12.0.0" 8464 + }, 8465 + "funding": { 8466 + "type": "opencollective", 8467 + "url": "https://opencollective.com/parcel" 8468 + } 8469 + }, 8470 + "node_modules/lines-and-columns": { 8471 + "version": "1.2.4", 8472 + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 8473 + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 8474 + "license": "MIT" 8475 + }, 8476 + "node_modules/locate-path": { 8477 + "version": "6.0.0", 8478 + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 8479 + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 8480 + "license": "MIT", 8481 + "dependencies": { 8482 + "p-locate": "^5.0.0" 8483 + }, 8484 + "engines": { 8485 + "node": ">=10" 8486 + }, 8487 + "funding": { 8488 + "url": "https://github.com/sponsors/sindresorhus" 8489 + } 8490 + }, 8491 + "node_modules/lodash.debounce": { 8492 + "version": "4.0.8", 8493 + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", 8494 + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", 8495 + "license": "MIT" 8496 + }, 8497 + "node_modules/lodash.merge": { 8498 + "version": "4.6.2", 8499 + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 8500 + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 8501 + "dev": true, 8502 + "license": "MIT" 8503 + }, 8504 + "node_modules/lodash.throttle": { 8505 + "version": "4.1.1", 8506 + "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", 8507 + "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==", 8508 + "license": "MIT" 8509 + }, 8510 + "node_modules/log-symbols": { 8511 + "version": "2.2.0", 8512 + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", 8513 + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", 8514 + "license": "MIT", 8515 + "dependencies": { 8516 + "chalk": "^2.0.1" 8517 + }, 8518 + "engines": { 8519 + "node": ">=4" 8520 + } 8521 + }, 8522 + "node_modules/log-symbols/node_modules/ansi-styles": { 8523 + "version": "3.2.1", 8524 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 8525 + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 8526 + "license": "MIT", 8527 + "dependencies": { 8528 + "color-convert": "^1.9.0" 8529 + }, 8530 + "engines": { 8531 + "node": ">=4" 8532 + } 8533 + }, 8534 + "node_modules/log-symbols/node_modules/chalk": { 8535 + "version": "2.4.2", 8536 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 8537 + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 8538 + "license": "MIT", 8539 + "dependencies": { 8540 + "ansi-styles": "^3.2.1", 8541 + "escape-string-regexp": "^1.0.5", 8542 + "supports-color": "^5.3.0" 8543 + }, 8544 + "engines": { 8545 + "node": ">=4" 8546 + } 8547 + }, 8548 + "node_modules/log-symbols/node_modules/color-convert": { 8549 + "version": "1.9.3", 8550 + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 8551 + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 8552 + "license": "MIT", 8553 + "dependencies": { 8554 + "color-name": "1.1.3" 8555 + } 8556 + }, 8557 + "node_modules/log-symbols/node_modules/color-name": { 8558 + "version": "1.1.3", 8559 + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 8560 + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 8561 + "license": "MIT" 8562 + }, 8563 + "node_modules/log-symbols/node_modules/escape-string-regexp": { 8564 + "version": "1.0.5", 8565 + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 8566 + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 8567 + "license": "MIT", 8568 + "engines": { 8569 + "node": ">=0.8.0" 8570 + } 8571 + }, 8572 + "node_modules/log-symbols/node_modules/has-flag": { 8573 + "version": "3.0.0", 8574 + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 8575 + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 8576 + "license": "MIT", 8577 + "engines": { 8578 + "node": ">=4" 8579 + } 8580 + }, 8581 + "node_modules/log-symbols/node_modules/supports-color": { 8582 + "version": "5.5.0", 8583 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 8584 + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 8585 + "license": "MIT", 8586 + "dependencies": { 8587 + "has-flag": "^3.0.0" 8588 + }, 8589 + "engines": { 8590 + "node": ">=4" 8591 + } 8592 + }, 8593 + "node_modules/loose-envify": { 8594 + "version": "1.4.0", 8595 + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 8596 + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 8597 + "license": "MIT", 8598 + "dependencies": { 8599 + "js-tokens": "^3.0.0 || ^4.0.0" 8600 + }, 8601 + "bin": { 8602 + "loose-envify": "cli.js" 8603 + } 8604 + }, 8605 + "node_modules/lru-cache": { 8606 + "version": "5.1.1", 8607 + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 8608 + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 8609 + "license": "ISC", 8610 + "dependencies": { 8611 + "yallist": "^3.0.2" 8612 + } 8613 + }, 8614 + "node_modules/makeerror": { 8615 + "version": "1.0.12", 8616 + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", 8617 + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", 8618 + "license": "BSD-3-Clause", 8619 + "dependencies": { 8620 + "tmpl": "1.0.5" 8621 + } 8622 + }, 8623 + "node_modules/marky": { 8624 + "version": "1.3.0", 8625 + "resolved": "https://registry.npmjs.org/marky/-/marky-1.3.0.tgz", 8626 + "integrity": "sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==", 8627 + "license": "Apache-2.0" 8628 + }, 8629 + "node_modules/math-intrinsics": { 8630 + "version": "1.1.0", 8631 + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", 8632 + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", 8633 + "dev": true, 8634 + "license": "MIT", 8635 + "engines": { 8636 + "node": ">= 0.4" 8637 + } 8638 + }, 8639 + "node_modules/memoize-one": { 8640 + "version": "5.2.1", 8641 + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", 8642 + "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==", 8643 + "license": "MIT" 8644 + }, 8645 + "node_modules/merge-stream": { 8646 + "version": "2.0.0", 8647 + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 8648 + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", 8649 + "license": "MIT" 8650 + }, 8651 + "node_modules/merge2": { 8652 + "version": "1.4.1", 8653 + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 8654 + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 8655 + "dev": true, 8656 + "license": "MIT", 8657 + "engines": { 8658 + "node": ">= 8" 8659 + } 8660 + }, 8661 + "node_modules/metro": { 8662 + "version": "0.82.5", 8663 + "resolved": "https://registry.npmjs.org/metro/-/metro-0.82.5.tgz", 8664 + "integrity": "sha512-8oAXxL7do8QckID/WZEKaIFuQJFUTLzfVcC48ghkHhNK2RGuQq8Xvf4AVd+TUA0SZtX0q8TGNXZ/eba1ckeGCg==", 8665 + "license": "MIT", 8666 + "dependencies": { 8667 + "@babel/code-frame": "^7.24.7", 8668 + "@babel/core": "^7.25.2", 8669 + "@babel/generator": "^7.25.0", 8670 + "@babel/parser": "^7.25.3", 8671 + "@babel/template": "^7.25.0", 8672 + "@babel/traverse": "^7.25.3", 8673 + "@babel/types": "^7.25.2", 8674 + "accepts": "^1.3.7", 8675 + "chalk": "^4.0.0", 8676 + "ci-info": "^2.0.0", 8677 + "connect": "^3.6.5", 8678 + "debug": "^4.4.0", 8679 + "error-stack-parser": "^2.0.6", 8680 + "flow-enums-runtime": "^0.0.6", 8681 + "graceful-fs": "^4.2.4", 8682 + "hermes-parser": "0.29.1", 8683 + "image-size": "^1.0.2", 8684 + "invariant": "^2.2.4", 8685 + "jest-worker": "^29.7.0", 8686 + "jsc-safe-url": "^0.2.2", 8687 + "lodash.throttle": "^4.1.1", 8688 + "metro-babel-transformer": "0.82.5", 8689 + "metro-cache": "0.82.5", 8690 + "metro-cache-key": "0.82.5", 8691 + "metro-config": "0.82.5", 8692 + "metro-core": "0.82.5", 8693 + "metro-file-map": "0.82.5", 8694 + "metro-resolver": "0.82.5", 8695 + "metro-runtime": "0.82.5", 8696 + "metro-source-map": "0.82.5", 8697 + "metro-symbolicate": "0.82.5", 8698 + "metro-transform-plugins": "0.82.5", 8699 + "metro-transform-worker": "0.82.5", 8700 + "mime-types": "^2.1.27", 8701 + "nullthrows": "^1.1.1", 8702 + "serialize-error": "^2.1.0", 8703 + "source-map": "^0.5.6", 8704 + "throat": "^5.0.0", 8705 + "ws": "^7.5.10", 8706 + "yargs": "^17.6.2" 8707 + }, 8708 + "bin": { 8709 + "metro": "src/cli.js" 8710 + }, 8711 + "engines": { 8712 + "node": ">=18.18" 8713 + } 8714 + }, 8715 + "node_modules/metro-babel-transformer": { 8716 + "version": "0.82.5", 8717 + "resolved": "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.82.5.tgz", 8718 + "integrity": "sha512-W/scFDnwJXSccJYnOFdGiYr9srhbHPdxX9TvvACOFsIXdLilh3XuxQl/wXW6jEJfgIb0jTvoTlwwrqvuwymr6Q==", 8719 + "license": "MIT", 8720 + "dependencies": { 8721 + "@babel/core": "^7.25.2", 8722 + "flow-enums-runtime": "^0.0.6", 8723 + "hermes-parser": "0.29.1", 8724 + "nullthrows": "^1.1.1" 8725 + }, 8726 + "engines": { 8727 + "node": ">=18.18" 8728 + } 8729 + }, 8730 + "node_modules/metro-babel-transformer/node_modules/hermes-estree": { 8731 + "version": "0.29.1", 8732 + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.29.1.tgz", 8733 + "integrity": "sha512-jl+x31n4/w+wEqm0I2r4CMimukLbLQEYpisys5oCre611CI5fc9TxhqkBBCJ1edDG4Kza0f7CgNz8xVMLZQOmQ==", 8734 + "license": "MIT" 8735 + }, 8736 + "node_modules/metro-babel-transformer/node_modules/hermes-parser": { 8737 + "version": "0.29.1", 8738 + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.29.1.tgz", 8739 + "integrity": "sha512-xBHWmUtRC5e/UL0tI7Ivt2riA/YBq9+SiYFU7C1oBa/j2jYGlIF9043oak1F47ihuDIxQ5nbsKueYJDRY02UgA==", 8740 + "license": "MIT", 8741 + "dependencies": { 8742 + "hermes-estree": "0.29.1" 8743 + } 8744 + }, 8745 + "node_modules/metro-cache": { 8746 + "version": "0.82.5", 8747 + "resolved": "https://registry.npmjs.org/metro-cache/-/metro-cache-0.82.5.tgz", 8748 + "integrity": "sha512-AwHV9607xZpedu1NQcjUkua8v7HfOTKfftl6Vc9OGr/jbpiJX6Gpy8E/V9jo/U9UuVYX2PqSUcVNZmu+LTm71Q==", 8749 + "license": "MIT", 8750 + "dependencies": { 8751 + "exponential-backoff": "^3.1.1", 8752 + "flow-enums-runtime": "^0.0.6", 8753 + "https-proxy-agent": "^7.0.5", 8754 + "metro-core": "0.82.5" 8755 + }, 8756 + "engines": { 8757 + "node": ">=18.18" 8758 + } 8759 + }, 8760 + "node_modules/metro-cache-key": { 8761 + "version": "0.82.5", 8762 + "resolved": "https://registry.npmjs.org/metro-cache-key/-/metro-cache-key-0.82.5.tgz", 8763 + "integrity": "sha512-qpVmPbDJuRLrT4kcGlUouyqLGssJnbTllVtvIgXfR7ZuzMKf0mGS+8WzcqzNK8+kCyakombQWR0uDd8qhWGJcA==", 8764 + "license": "MIT", 8765 + "dependencies": { 8766 + "flow-enums-runtime": "^0.0.6" 8767 + }, 8768 + "engines": { 8769 + "node": ">=18.18" 8770 + } 8771 + }, 8772 + "node_modules/metro-config": { 8773 + "version": "0.82.5", 8774 + "resolved": "https://registry.npmjs.org/metro-config/-/metro-config-0.82.5.tgz", 8775 + "integrity": "sha512-/r83VqE55l0WsBf8IhNmc/3z71y2zIPe5kRSuqA5tY/SL/ULzlHUJEMd1szztd0G45JozLwjvrhAzhDPJ/Qo/g==", 8776 + "license": "MIT", 8777 + "dependencies": { 8778 + "connect": "^3.6.5", 8779 + "cosmiconfig": "^5.0.5", 8780 + "flow-enums-runtime": "^0.0.6", 8781 + "jest-validate": "^29.7.0", 8782 + "metro": "0.82.5", 8783 + "metro-cache": "0.82.5", 8784 + "metro-core": "0.82.5", 8785 + "metro-runtime": "0.82.5" 8786 + }, 8787 + "engines": { 8788 + "node": ">=18.18" 8789 + } 8790 + }, 8791 + "node_modules/metro-core": { 8792 + "version": "0.82.5", 8793 + "resolved": "https://registry.npmjs.org/metro-core/-/metro-core-0.82.5.tgz", 8794 + "integrity": "sha512-OJL18VbSw2RgtBm1f2P3J5kb892LCVJqMvslXxuxjAPex8OH7Eb8RBfgEo7VZSjgb/LOf4jhC4UFk5l5tAOHHA==", 8795 + "license": "MIT", 8796 + "dependencies": { 8797 + "flow-enums-runtime": "^0.0.6", 8798 + "lodash.throttle": "^4.1.1", 8799 + "metro-resolver": "0.82.5" 8800 + }, 8801 + "engines": { 8802 + "node": ">=18.18" 8803 + } 8804 + }, 8805 + "node_modules/metro-file-map": { 8806 + "version": "0.82.5", 8807 + "resolved": "https://registry.npmjs.org/metro-file-map/-/metro-file-map-0.82.5.tgz", 8808 + "integrity": "sha512-vpMDxkGIB+MTN8Af5hvSAanc6zXQipsAUO+XUx3PCQieKUfLwdoa8qaZ1WAQYRpaU+CJ8vhBcxtzzo3d9IsCIQ==", 8809 + "license": "MIT", 8810 + "dependencies": { 8811 + "debug": "^4.4.0", 8812 + "fb-watchman": "^2.0.0", 8813 + "flow-enums-runtime": "^0.0.6", 8814 + "graceful-fs": "^4.2.4", 8815 + "invariant": "^2.2.4", 8816 + "jest-worker": "^29.7.0", 8817 + "micromatch": "^4.0.4", 8818 + "nullthrows": "^1.1.1", 8819 + "walker": "^1.0.7" 8820 + }, 8821 + "engines": { 8822 + "node": ">=18.18" 8823 + } 8824 + }, 8825 + "node_modules/metro-minify-terser": { 8826 + "version": "0.82.5", 8827 + "resolved": "https://registry.npmjs.org/metro-minify-terser/-/metro-minify-terser-0.82.5.tgz", 8828 + "integrity": "sha512-v6Nx7A4We6PqPu/ta1oGTqJ4Usz0P7c+3XNeBxW9kp8zayS3lHUKR0sY0wsCHInxZlNAEICx791x+uXytFUuwg==", 8829 + "license": "MIT", 8830 + "dependencies": { 8831 + "flow-enums-runtime": "^0.0.6", 8832 + "terser": "^5.15.0" 8833 + }, 8834 + "engines": { 8835 + "node": ">=18.18" 8836 + } 8837 + }, 8838 + "node_modules/metro-resolver": { 8839 + "version": "0.82.5", 8840 + "resolved": "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.82.5.tgz", 8841 + "integrity": "sha512-kFowLnWACt3bEsuVsaRNgwplT8U7kETnaFHaZePlARz4Fg8tZtmRDUmjaD68CGAwc0rwdwNCkWizLYpnyVcs2g==", 8842 + "license": "MIT", 8843 + "dependencies": { 8844 + "flow-enums-runtime": "^0.0.6" 8845 + }, 8846 + "engines": { 8847 + "node": ">=18.18" 8848 + } 8849 + }, 8850 + "node_modules/metro-runtime": { 8851 + "version": "0.82.5", 8852 + "resolved": "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.82.5.tgz", 8853 + "integrity": "sha512-rQZDoCUf7k4Broyw3Ixxlq5ieIPiR1ULONdpcYpbJQ6yQ5GGEyYjtkztGD+OhHlw81LCR2SUAoPvtTus2WDK5g==", 8854 + "license": "MIT", 8855 + "dependencies": { 8856 + "@babel/runtime": "^7.25.0", 8857 + "flow-enums-runtime": "^0.0.6" 8858 + }, 8859 + "engines": { 8860 + "node": ">=18.18" 8861 + } 8862 + }, 8863 + "node_modules/metro-source-map": { 8864 + "version": "0.82.5", 8865 + "resolved": "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.82.5.tgz", 8866 + "integrity": "sha512-wH+awTOQJVkbhn2SKyaw+0cd+RVSCZ3sHVgyqJFQXIee/yLs3dZqKjjeKKhhVeudgjXo7aE/vSu/zVfcQEcUfw==", 8867 + "license": "MIT", 8868 + "dependencies": { 8869 + "@babel/traverse": "^7.25.3", 8870 + "@babel/traverse--for-generate-function-map": "npm:@babel/traverse@^7.25.3", 8871 + "@babel/types": "^7.25.2", 8872 + "flow-enums-runtime": "^0.0.6", 8873 + "invariant": "^2.2.4", 8874 + "metro-symbolicate": "0.82.5", 8875 + "nullthrows": "^1.1.1", 8876 + "ob1": "0.82.5", 8877 + "source-map": "^0.5.6", 8878 + "vlq": "^1.0.0" 8879 + }, 8880 + "engines": { 8881 + "node": ">=18.18" 8882 + } 8883 + }, 8884 + "node_modules/metro-symbolicate": { 8885 + "version": "0.82.5", 8886 + "resolved": "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.82.5.tgz", 8887 + "integrity": "sha512-1u+07gzrvYDJ/oNXuOG1EXSvXZka/0JSW1q2EYBWerVKMOhvv9JzDGyzmuV7hHbF2Hg3T3S2uiM36sLz1qKsiw==", 8888 + "license": "MIT", 8889 + "dependencies": { 8890 + "flow-enums-runtime": "^0.0.6", 8891 + "invariant": "^2.2.4", 8892 + "metro-source-map": "0.82.5", 8893 + "nullthrows": "^1.1.1", 8894 + "source-map": "^0.5.6", 8895 + "vlq": "^1.0.0" 8896 + }, 8897 + "bin": { 8898 + "metro-symbolicate": "src/index.js" 8899 + }, 8900 + "engines": { 8901 + "node": ">=18.18" 8902 + } 8903 + }, 8904 + "node_modules/metro-transform-plugins": { 8905 + "version": "0.82.5", 8906 + "resolved": "https://registry.npmjs.org/metro-transform-plugins/-/metro-transform-plugins-0.82.5.tgz", 8907 + "integrity": "sha512-57Bqf3rgq9nPqLrT2d9kf/2WVieTFqsQ6qWHpEng5naIUtc/Iiw9+0bfLLWSAw0GH40iJ4yMjFcFJDtNSYynMA==", 8908 + "license": "MIT", 8909 + "dependencies": { 8910 + "@babel/core": "^7.25.2", 8911 + "@babel/generator": "^7.25.0", 8912 + "@babel/template": "^7.25.0", 8913 + "@babel/traverse": "^7.25.3", 8914 + "flow-enums-runtime": "^0.0.6", 8915 + "nullthrows": "^1.1.1" 8916 + }, 8917 + "engines": { 8918 + "node": ">=18.18" 8919 + } 8920 + }, 8921 + "node_modules/metro-transform-worker": { 8922 + "version": "0.82.5", 8923 + "resolved": "https://registry.npmjs.org/metro-transform-worker/-/metro-transform-worker-0.82.5.tgz", 8924 + "integrity": "sha512-mx0grhAX7xe+XUQH6qoHHlWedI8fhSpDGsfga7CpkO9Lk9W+aPitNtJWNGrW8PfjKEWbT9Uz9O50dkI8bJqigw==", 8925 + "license": "MIT", 8926 + "dependencies": { 8927 + "@babel/core": "^7.25.2", 8928 + "@babel/generator": "^7.25.0", 8929 + "@babel/parser": "^7.25.3", 8930 + "@babel/types": "^7.25.2", 8931 + "flow-enums-runtime": "^0.0.6", 8932 + "metro": "0.82.5", 8933 + "metro-babel-transformer": "0.82.5", 8934 + "metro-cache": "0.82.5", 8935 + "metro-cache-key": "0.82.5", 8936 + "metro-minify-terser": "0.82.5", 8937 + "metro-source-map": "0.82.5", 8938 + "metro-transform-plugins": "0.82.5", 8939 + "nullthrows": "^1.1.1" 8940 + }, 8941 + "engines": { 8942 + "node": ">=18.18" 8943 + } 8944 + }, 8945 + "node_modules/metro/node_modules/ci-info": { 8946 + "version": "2.0.0", 8947 + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", 8948 + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", 8949 + "license": "MIT" 8950 + }, 8951 + "node_modules/metro/node_modules/hermes-estree": { 8952 + "version": "0.29.1", 8953 + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.29.1.tgz", 8954 + "integrity": "sha512-jl+x31n4/w+wEqm0I2r4CMimukLbLQEYpisys5oCre611CI5fc9TxhqkBBCJ1edDG4Kza0f7CgNz8xVMLZQOmQ==", 8955 + "license": "MIT" 8956 + }, 8957 + "node_modules/metro/node_modules/hermes-parser": { 8958 + "version": "0.29.1", 8959 + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.29.1.tgz", 8960 + "integrity": "sha512-xBHWmUtRC5e/UL0tI7Ivt2riA/YBq9+SiYFU7C1oBa/j2jYGlIF9043oak1F47ihuDIxQ5nbsKueYJDRY02UgA==", 8961 + "license": "MIT", 8962 + "dependencies": { 8963 + "hermes-estree": "0.29.1" 8964 + } 8965 + }, 8966 + "node_modules/metro/node_modules/ws": { 8967 + "version": "7.5.10", 8968 + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", 8969 + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", 8970 + "license": "MIT", 8971 + "engines": { 8972 + "node": ">=8.3.0" 8973 + }, 8974 + "peerDependencies": { 8975 + "bufferutil": "^4.0.1", 8976 + "utf-8-validate": "^5.0.2" 8977 + }, 8978 + "peerDependenciesMeta": { 8979 + "bufferutil": { 8980 + "optional": true 8981 + }, 8982 + "utf-8-validate": { 8983 + "optional": true 8984 + } 8985 + } 8986 + }, 8987 + "node_modules/micromatch": { 8988 + "version": "4.0.8", 8989 + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 8990 + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 8991 + "license": "MIT", 8992 + "dependencies": { 8993 + "braces": "^3.0.3", 8994 + "picomatch": "^2.3.1" 8995 + }, 8996 + "engines": { 8997 + "node": ">=8.6" 8998 + } 8999 + }, 9000 + "node_modules/micromatch/node_modules/picomatch": { 9001 + "version": "2.3.1", 9002 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 9003 + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 9004 + "license": "MIT", 9005 + "engines": { 9006 + "node": ">=8.6" 9007 + }, 9008 + "funding": { 9009 + "url": "https://github.com/sponsors/jonschlinkert" 9010 + } 9011 + }, 9012 + "node_modules/mime": { 9013 + "version": "1.6.0", 9014 + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 9015 + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", 9016 + "license": "MIT", 9017 + "bin": { 9018 + "mime": "cli.js" 9019 + }, 9020 + "engines": { 9021 + "node": ">=4" 9022 + } 9023 + }, 9024 + "node_modules/mime-db": { 9025 + "version": "1.54.0", 9026 + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", 9027 + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", 9028 + "license": "MIT", 9029 + "engines": { 9030 + "node": ">= 0.6" 9031 + } 9032 + }, 9033 + "node_modules/mime-types": { 9034 + "version": "2.1.35", 9035 + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 9036 + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 9037 + "license": "MIT", 9038 + "dependencies": { 9039 + "mime-db": "1.52.0" 9040 + }, 9041 + "engines": { 9042 + "node": ">= 0.6" 9043 + } 9044 + }, 9045 + "node_modules/mime-types/node_modules/mime-db": { 9046 + "version": "1.52.0", 9047 + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 9048 + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 9049 + "license": "MIT", 9050 + "engines": { 9051 + "node": ">= 0.6" 9052 + } 9053 + }, 9054 + "node_modules/mimic-fn": { 9055 + "version": "1.2.0", 9056 + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", 9057 + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", 9058 + "license": "MIT", 9059 + "engines": { 9060 + "node": ">=4" 9061 + } 9062 + }, 9063 + "node_modules/minimatch": { 9064 + "version": "3.1.2", 9065 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 9066 + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 9067 + "license": "ISC", 9068 + "dependencies": { 9069 + "brace-expansion": "^1.1.7" 9070 + }, 9071 + "engines": { 9072 + "node": "*" 9073 + } 9074 + }, 9075 + "node_modules/minimist": { 9076 + "version": "1.2.8", 9077 + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 9078 + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 9079 + "license": "MIT", 9080 + "funding": { 9081 + "url": "https://github.com/sponsors/ljharb" 9082 + } 9083 + }, 9084 + "node_modules/minipass": { 9085 + "version": "7.1.2", 9086 + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", 9087 + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", 9088 + "license": "ISC", 9089 + "engines": { 9090 + "node": ">=16 || 14 >=14.17" 9091 + } 9092 + }, 9093 + "node_modules/minizlib": { 9094 + "version": "3.0.2", 9095 + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.0.2.tgz", 9096 + "integrity": "sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==", 9097 + "license": "MIT", 9098 + "dependencies": { 9099 + "minipass": "^7.1.2" 9100 + }, 9101 + "engines": { 9102 + "node": ">= 18" 9103 + } 9104 + }, 9105 + "node_modules/mkdirp": { 9106 + "version": "1.0.4", 9107 + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", 9108 + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", 9109 + "license": "MIT", 9110 + "bin": { 9111 + "mkdirp": "bin/cmd.js" 9112 + }, 9113 + "engines": { 9114 + "node": ">=10" 9115 + } 9116 + }, 9117 + "node_modules/ms": { 9118 + "version": "2.1.3", 9119 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 9120 + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 9121 + "license": "MIT" 9122 + }, 9123 + "node_modules/mz": { 9124 + "version": "2.7.0", 9125 + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 9126 + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 9127 + "license": "MIT", 9128 + "dependencies": { 9129 + "any-promise": "^1.0.0", 9130 + "object-assign": "^4.0.1", 9131 + "thenify-all": "^1.0.0" 9132 + } 9133 + }, 9134 + "node_modules/nanoid": { 9135 + "version": "3.3.11", 9136 + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", 9137 + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", 9138 + "funding": [ 9139 + { 9140 + "type": "github", 9141 + "url": "https://github.com/sponsors/ai" 9142 + } 9143 + ], 9144 + "license": "MIT", 9145 + "bin": { 9146 + "nanoid": "bin/nanoid.cjs" 9147 + }, 9148 + "engines": { 9149 + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 9150 + } 9151 + }, 9152 + "node_modules/napi-postinstall": { 9153 + "version": "0.3.3", 9154 + "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.3.tgz", 9155 + "integrity": "sha512-uTp172LLXSxuSYHv/kou+f6KW3SMppU9ivthaVTXian9sOt3XM/zHYHpRZiLgQoxeWfYUnslNWQHF1+G71xcow==", 9156 + "dev": true, 9157 + "license": "MIT", 9158 + "bin": { 9159 + "napi-postinstall": "lib/cli.js" 9160 + }, 9161 + "engines": { 9162 + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" 9163 + }, 9164 + "funding": { 9165 + "url": "https://opencollective.com/napi-postinstall" 9166 + } 9167 + }, 9168 + "node_modules/natural-compare": { 9169 + "version": "1.4.0", 9170 + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 9171 + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 9172 + "dev": true, 9173 + "license": "MIT" 9174 + }, 9175 + "node_modules/negotiator": { 9176 + "version": "0.6.3", 9177 + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 9178 + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", 9179 + "license": "MIT", 9180 + "engines": { 9181 + "node": ">= 0.6" 9182 + } 9183 + }, 9184 + "node_modules/nested-error-stacks": { 9185 + "version": "2.0.1", 9186 + "resolved": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz", 9187 + "integrity": "sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==", 9188 + "license": "MIT" 9189 + }, 9190 + "node_modules/node-fetch": { 9191 + "version": "2.7.0", 9192 + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", 9193 + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", 9194 + "license": "MIT", 9195 + "dependencies": { 9196 + "whatwg-url": "^5.0.0" 9197 + }, 9198 + "engines": { 9199 + "node": "4.x || >=6.0.0" 9200 + }, 9201 + "peerDependencies": { 9202 + "encoding": "^0.1.0" 9203 + }, 9204 + "peerDependenciesMeta": { 9205 + "encoding": { 9206 + "optional": true 9207 + } 9208 + } 9209 + }, 9210 + "node_modules/node-forge": { 9211 + "version": "1.3.1", 9212 + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", 9213 + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", 9214 + "license": "(BSD-3-Clause OR GPL-2.0)", 9215 + "engines": { 9216 + "node": ">= 6.13.0" 9217 + } 9218 + }, 9219 + "node_modules/node-int64": { 9220 + "version": "0.4.0", 9221 + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", 9222 + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", 9223 + "license": "MIT" 9224 + }, 9225 + "node_modules/node-releases": { 9226 + "version": "2.0.19", 9227 + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", 9228 + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", 9229 + "license": "MIT" 9230 + }, 9231 + "node_modules/normalize-path": { 9232 + "version": "3.0.0", 9233 + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 9234 + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 9235 + "license": "MIT", 9236 + "engines": { 9237 + "node": ">=0.10.0" 9238 + } 9239 + }, 9240 + "node_modules/npm-package-arg": { 9241 + "version": "11.0.3", 9242 + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.3.tgz", 9243 + "integrity": "sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==", 9244 + "license": "ISC", 9245 + "dependencies": { 9246 + "hosted-git-info": "^7.0.0", 9247 + "proc-log": "^4.0.0", 9248 + "semver": "^7.3.5", 9249 + "validate-npm-package-name": "^5.0.0" 9250 + }, 9251 + "engines": { 9252 + "node": "^16.14.0 || >=18.0.0" 9253 + } 9254 + }, 9255 + "node_modules/npm-package-arg/node_modules/semver": { 9256 + "version": "7.7.2", 9257 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 9258 + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 9259 + "license": "ISC", 9260 + "bin": { 9261 + "semver": "bin/semver.js" 9262 + }, 9263 + "engines": { 9264 + "node": ">=10" 9265 + } 9266 + }, 9267 + "node_modules/nullthrows": { 9268 + "version": "1.1.1", 9269 + "resolved": "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz", 9270 + "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==", 9271 + "license": "MIT" 9272 + }, 9273 + "node_modules/ob1": { 9274 + "version": "0.82.5", 9275 + "resolved": "https://registry.npmjs.org/ob1/-/ob1-0.82.5.tgz", 9276 + "integrity": "sha512-QyQQ6e66f+Ut/qUVjEce0E/wux5nAGLXYZDn1jr15JWstHsCH3l6VVrg8NKDptW9NEiBXKOJeGF/ydxeSDF3IQ==", 9277 + "license": "MIT", 9278 + "dependencies": { 9279 + "flow-enums-runtime": "^0.0.6" 9280 + }, 9281 + "engines": { 9282 + "node": ">=18.18" 9283 + } 9284 + }, 9285 + "node_modules/object-assign": { 9286 + "version": "4.1.1", 9287 + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 9288 + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 9289 + "license": "MIT", 9290 + "engines": { 9291 + "node": ">=0.10.0" 9292 + } 9293 + }, 9294 + "node_modules/object-inspect": { 9295 + "version": "1.13.4", 9296 + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", 9297 + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", 9298 + "dev": true, 9299 + "license": "MIT", 9300 + "engines": { 9301 + "node": ">= 0.4" 9302 + }, 9303 + "funding": { 9304 + "url": "https://github.com/sponsors/ljharb" 9305 + } 9306 + }, 9307 + "node_modules/object-keys": { 9308 + "version": "1.1.1", 9309 + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 9310 + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 9311 + "dev": true, 9312 + "license": "MIT", 9313 + "engines": { 9314 + "node": ">= 0.4" 9315 + } 9316 + }, 9317 + "node_modules/object.assign": { 9318 + "version": "4.1.7", 9319 + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", 9320 + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", 9321 + "dev": true, 9322 + "license": "MIT", 9323 + "dependencies": { 9324 + "call-bind": "^1.0.8", 9325 + "call-bound": "^1.0.3", 9326 + "define-properties": "^1.2.1", 9327 + "es-object-atoms": "^1.0.0", 9328 + "has-symbols": "^1.1.0", 9329 + "object-keys": "^1.1.1" 9330 + }, 9331 + "engines": { 9332 + "node": ">= 0.4" 9333 + }, 9334 + "funding": { 9335 + "url": "https://github.com/sponsors/ljharb" 9336 + } 9337 + }, 9338 + "node_modules/object.entries": { 9339 + "version": "1.1.9", 9340 + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", 9341 + "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", 9342 + "dev": true, 9343 + "license": "MIT", 9344 + "dependencies": { 9345 + "call-bind": "^1.0.8", 9346 + "call-bound": "^1.0.4", 9347 + "define-properties": "^1.2.1", 9348 + "es-object-atoms": "^1.1.1" 9349 + }, 9350 + "engines": { 9351 + "node": ">= 0.4" 9352 + } 9353 + }, 9354 + "node_modules/object.fromentries": { 9355 + "version": "2.0.8", 9356 + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", 9357 + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", 9358 + "dev": true, 9359 + "license": "MIT", 9360 + "dependencies": { 9361 + "call-bind": "^1.0.7", 9362 + "define-properties": "^1.2.1", 9363 + "es-abstract": "^1.23.2", 9364 + "es-object-atoms": "^1.0.0" 9365 + }, 9366 + "engines": { 9367 + "node": ">= 0.4" 9368 + }, 9369 + "funding": { 9370 + "url": "https://github.com/sponsors/ljharb" 9371 + } 9372 + }, 9373 + "node_modules/object.groupby": { 9374 + "version": "1.0.3", 9375 + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", 9376 + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", 9377 + "dev": true, 9378 + "license": "MIT", 9379 + "dependencies": { 9380 + "call-bind": "^1.0.7", 9381 + "define-properties": "^1.2.1", 9382 + "es-abstract": "^1.23.2" 9383 + }, 9384 + "engines": { 9385 + "node": ">= 0.4" 9386 + } 9387 + }, 9388 + "node_modules/object.values": { 9389 + "version": "1.2.1", 9390 + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", 9391 + "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", 9392 + "dev": true, 9393 + "license": "MIT", 9394 + "dependencies": { 9395 + "call-bind": "^1.0.8", 9396 + "call-bound": "^1.0.3", 9397 + "define-properties": "^1.2.1", 9398 + "es-object-atoms": "^1.0.0" 9399 + }, 9400 + "engines": { 9401 + "node": ">= 0.4" 9402 + }, 9403 + "funding": { 9404 + "url": "https://github.com/sponsors/ljharb" 9405 + } 9406 + }, 9407 + "node_modules/on-finished": { 9408 + "version": "2.3.0", 9409 + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", 9410 + "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", 9411 + "license": "MIT", 9412 + "dependencies": { 9413 + "ee-first": "1.1.1" 9414 + }, 9415 + "engines": { 9416 + "node": ">= 0.8" 9417 + } 9418 + }, 9419 + "node_modules/on-headers": { 9420 + "version": "1.1.0", 9421 + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", 9422 + "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==", 9423 + "license": "MIT", 9424 + "engines": { 9425 + "node": ">= 0.8" 9426 + } 9427 + }, 9428 + "node_modules/once": { 9429 + "version": "1.4.0", 9430 + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 9431 + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 9432 + "license": "ISC", 9433 + "dependencies": { 9434 + "wrappy": "1" 9435 + } 9436 + }, 9437 + "node_modules/onetime": { 9438 + "version": "2.0.1", 9439 + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", 9440 + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", 9441 + "license": "MIT", 9442 + "dependencies": { 9443 + "mimic-fn": "^1.0.0" 9444 + }, 9445 + "engines": { 9446 + "node": ">=4" 9447 + } 9448 + }, 9449 + "node_modules/open": { 9450 + "version": "7.4.2", 9451 + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", 9452 + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", 9453 + "license": "MIT", 9454 + "dependencies": { 9455 + "is-docker": "^2.0.0", 9456 + "is-wsl": "^2.1.1" 9457 + }, 9458 + "engines": { 9459 + "node": ">=8" 9460 + }, 9461 + "funding": { 9462 + "url": "https://github.com/sponsors/sindresorhus" 9463 + } 9464 + }, 9465 + "node_modules/optionator": { 9466 + "version": "0.9.4", 9467 + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 9468 + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 9469 + "dev": true, 9470 + "license": "MIT", 9471 + "dependencies": { 9472 + "deep-is": "^0.1.3", 9473 + "fast-levenshtein": "^2.0.6", 9474 + "levn": "^0.4.1", 9475 + "prelude-ls": "^1.2.1", 9476 + "type-check": "^0.4.0", 9477 + "word-wrap": "^1.2.5" 9478 + }, 9479 + "engines": { 9480 + "node": ">= 0.8.0" 9481 + } 9482 + }, 9483 + "node_modules/ora": { 9484 + "version": "3.4.0", 9485 + "resolved": "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz", 9486 + "integrity": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==", 9487 + "license": "MIT", 9488 + "dependencies": { 9489 + "chalk": "^2.4.2", 9490 + "cli-cursor": "^2.1.0", 9491 + "cli-spinners": "^2.0.0", 9492 + "log-symbols": "^2.2.0", 9493 + "strip-ansi": "^5.2.0", 9494 + "wcwidth": "^1.0.1" 9495 + }, 9496 + "engines": { 9497 + "node": ">=6" 9498 + } 9499 + }, 9500 + "node_modules/ora/node_modules/ansi-regex": { 9501 + "version": "4.1.1", 9502 + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", 9503 + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", 9504 + "license": "MIT", 9505 + "engines": { 9506 + "node": ">=6" 9507 + } 9508 + }, 9509 + "node_modules/ora/node_modules/ansi-styles": { 9510 + "version": "3.2.1", 9511 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 9512 + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 9513 + "license": "MIT", 9514 + "dependencies": { 9515 + "color-convert": "^1.9.0" 9516 + }, 9517 + "engines": { 9518 + "node": ">=4" 9519 + } 9520 + }, 9521 + "node_modules/ora/node_modules/chalk": { 9522 + "version": "2.4.2", 9523 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 9524 + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 9525 + "license": "MIT", 9526 + "dependencies": { 9527 + "ansi-styles": "^3.2.1", 9528 + "escape-string-regexp": "^1.0.5", 9529 + "supports-color": "^5.3.0" 9530 + }, 9531 + "engines": { 9532 + "node": ">=4" 9533 + } 9534 + }, 9535 + "node_modules/ora/node_modules/color-convert": { 9536 + "version": "1.9.3", 9537 + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 9538 + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 9539 + "license": "MIT", 9540 + "dependencies": { 9541 + "color-name": "1.1.3" 9542 + } 9543 + }, 9544 + "node_modules/ora/node_modules/color-name": { 9545 + "version": "1.1.3", 9546 + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 9547 + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 9548 + "license": "MIT" 9549 + }, 9550 + "node_modules/ora/node_modules/escape-string-regexp": { 9551 + "version": "1.0.5", 9552 + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 9553 + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 9554 + "license": "MIT", 9555 + "engines": { 9556 + "node": ">=0.8.0" 9557 + } 9558 + }, 9559 + "node_modules/ora/node_modules/has-flag": { 9560 + "version": "3.0.0", 9561 + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 9562 + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 9563 + "license": "MIT", 9564 + "engines": { 9565 + "node": ">=4" 9566 + } 9567 + }, 9568 + "node_modules/ora/node_modules/strip-ansi": { 9569 + "version": "5.2.0", 9570 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", 9571 + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", 9572 + "license": "MIT", 9573 + "dependencies": { 9574 + "ansi-regex": "^4.1.0" 9575 + }, 9576 + "engines": { 9577 + "node": ">=6" 9578 + } 9579 + }, 9580 + "node_modules/ora/node_modules/supports-color": { 9581 + "version": "5.5.0", 9582 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 9583 + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 9584 + "license": "MIT", 9585 + "dependencies": { 9586 + "has-flag": "^3.0.0" 9587 + }, 9588 + "engines": { 9589 + "node": ">=4" 9590 + } 9591 + }, 9592 + "node_modules/own-keys": { 9593 + "version": "1.0.1", 9594 + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", 9595 + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", 9596 + "dev": true, 9597 + "license": "MIT", 9598 + "dependencies": { 9599 + "get-intrinsic": "^1.2.6", 9600 + "object-keys": "^1.1.1", 9601 + "safe-push-apply": "^1.0.0" 9602 + }, 9603 + "engines": { 9604 + "node": ">= 0.4" 9605 + }, 9606 + "funding": { 9607 + "url": "https://github.com/sponsors/ljharb" 9608 + } 9609 + }, 9610 + "node_modules/p-limit": { 9611 + "version": "3.1.0", 9612 + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 9613 + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 9614 + "license": "MIT", 9615 + "dependencies": { 9616 + "yocto-queue": "^0.1.0" 9617 + }, 9618 + "engines": { 9619 + "node": ">=10" 9620 + }, 9621 + "funding": { 9622 + "url": "https://github.com/sponsors/sindresorhus" 9623 + } 9624 + }, 9625 + "node_modules/p-locate": { 9626 + "version": "5.0.0", 9627 + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 9628 + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 9629 + "license": "MIT", 9630 + "dependencies": { 9631 + "p-limit": "^3.0.2" 9632 + }, 9633 + "engines": { 9634 + "node": ">=10" 9635 + }, 9636 + "funding": { 9637 + "url": "https://github.com/sponsors/sindresorhus" 9638 + } 9639 + }, 9640 + "node_modules/p-try": { 9641 + "version": "2.2.0", 9642 + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 9643 + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 9644 + "license": "MIT", 9645 + "engines": { 9646 + "node": ">=6" 9647 + } 9648 + }, 9649 + "node_modules/package-json-from-dist": { 9650 + "version": "1.0.1", 9651 + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", 9652 + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", 9653 + "license": "BlueOak-1.0.0" 9654 + }, 9655 + "node_modules/parent-module": { 9656 + "version": "1.0.1", 9657 + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 9658 + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 9659 + "dev": true, 9660 + "license": "MIT", 9661 + "dependencies": { 9662 + "callsites": "^3.0.0" 9663 + }, 9664 + "engines": { 9665 + "node": ">=6" 9666 + } 9667 + }, 9668 + "node_modules/parse-json": { 9669 + "version": "4.0.0", 9670 + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", 9671 + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", 9672 + "license": "MIT", 9673 + "dependencies": { 9674 + "error-ex": "^1.3.1", 9675 + "json-parse-better-errors": "^1.0.1" 9676 + }, 9677 + "engines": { 9678 + "node": ">=4" 9679 + } 9680 + }, 9681 + "node_modules/parse-png": { 9682 + "version": "2.1.0", 9683 + "resolved": "https://registry.npmjs.org/parse-png/-/parse-png-2.1.0.tgz", 9684 + "integrity": "sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==", 9685 + "license": "MIT", 9686 + "dependencies": { 9687 + "pngjs": "^3.3.0" 9688 + }, 9689 + "engines": { 9690 + "node": ">=10" 9691 + } 9692 + }, 9693 + "node_modules/parseurl": { 9694 + "version": "1.3.3", 9695 + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 9696 + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 9697 + "license": "MIT", 9698 + "engines": { 9699 + "node": ">= 0.8" 9700 + } 9701 + }, 9702 + "node_modules/path-exists": { 9703 + "version": "4.0.0", 9704 + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 9705 + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 9706 + "license": "MIT", 9707 + "engines": { 9708 + "node": ">=8" 9709 + } 9710 + }, 9711 + "node_modules/path-is-absolute": { 9712 + "version": "1.0.1", 9713 + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 9714 + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 9715 + "license": "MIT", 9716 + "engines": { 9717 + "node": ">=0.10.0" 9718 + } 9719 + }, 9720 + "node_modules/path-key": { 9721 + "version": "3.1.1", 9722 + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 9723 + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 9724 + "license": "MIT", 9725 + "engines": { 9726 + "node": ">=8" 9727 + } 9728 + }, 9729 + "node_modules/path-parse": { 9730 + "version": "1.0.7", 9731 + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 9732 + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 9733 + "license": "MIT" 9734 + }, 9735 + "node_modules/path-scurry": { 9736 + "version": "1.11.1", 9737 + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", 9738 + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", 9739 + "license": "BlueOak-1.0.0", 9740 + "dependencies": { 9741 + "lru-cache": "^10.2.0", 9742 + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 9743 + }, 9744 + "engines": { 9745 + "node": ">=16 || 14 >=14.18" 9746 + }, 9747 + "funding": { 9748 + "url": "https://github.com/sponsors/isaacs" 9749 + } 9750 + }, 9751 + "node_modules/path-scurry/node_modules/lru-cache": { 9752 + "version": "10.4.3", 9753 + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", 9754 + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", 9755 + "license": "ISC" 9756 + }, 9757 + "node_modules/picocolors": { 9758 + "version": "1.1.1", 9759 + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 9760 + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 9761 + "license": "ISC" 9762 + }, 9763 + "node_modules/picomatch": { 9764 + "version": "3.0.1", 9765 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-3.0.1.tgz", 9766 + "integrity": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==", 9767 + "license": "MIT", 9768 + "engines": { 9769 + "node": ">=10" 9770 + }, 9771 + "funding": { 9772 + "url": "https://github.com/sponsors/jonschlinkert" 9773 + } 9774 + }, 9775 + "node_modules/pirates": { 9776 + "version": "4.0.7", 9777 + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", 9778 + "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", 9779 + "license": "MIT", 9780 + "engines": { 9781 + "node": ">= 6" 9782 + } 9783 + }, 9784 + "node_modules/plist": { 9785 + "version": "3.1.0", 9786 + "resolved": "https://registry.npmjs.org/plist/-/plist-3.1.0.tgz", 9787 + "integrity": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==", 9788 + "license": "MIT", 9789 + "dependencies": { 9790 + "@xmldom/xmldom": "^0.8.8", 9791 + "base64-js": "^1.5.1", 9792 + "xmlbuilder": "^15.1.1" 9793 + }, 9794 + "engines": { 9795 + "node": ">=10.4.0" 9796 + } 9797 + }, 9798 + "node_modules/pngjs": { 9799 + "version": "3.4.0", 9800 + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", 9801 + "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==", 9802 + "license": "MIT", 9803 + "engines": { 9804 + "node": ">=4.0.0" 9805 + } 9806 + }, 9807 + "node_modules/possible-typed-array-names": { 9808 + "version": "1.1.0", 9809 + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", 9810 + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", 9811 + "dev": true, 9812 + "license": "MIT", 9813 + "engines": { 9814 + "node": ">= 0.4" 9815 + } 9816 + }, 9817 + "node_modules/postcss": { 9818 + "version": "8.4.49", 9819 + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", 9820 + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", 9821 + "funding": [ 9822 + { 9823 + "type": "opencollective", 9824 + "url": "https://opencollective.com/postcss/" 9825 + }, 9826 + { 9827 + "type": "tidelift", 9828 + "url": "https://tidelift.com/funding/github/npm/postcss" 9829 + }, 9830 + { 9831 + "type": "github", 9832 + "url": "https://github.com/sponsors/ai" 9833 + } 9834 + ], 9835 + "license": "MIT", 9836 + "dependencies": { 9837 + "nanoid": "^3.3.7", 9838 + "picocolors": "^1.1.1", 9839 + "source-map-js": "^1.2.1" 9840 + }, 9841 + "engines": { 9842 + "node": "^10 || ^12 || >=14" 9843 + } 9844 + }, 9845 + "node_modules/postcss-value-parser": { 9846 + "version": "4.2.0", 9847 + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 9848 + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", 9849 + "license": "MIT" 9850 + }, 9851 + "node_modules/prelude-ls": { 9852 + "version": "1.2.1", 9853 + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 9854 + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 9855 + "dev": true, 9856 + "license": "MIT", 9857 + "engines": { 9858 + "node": ">= 0.8.0" 9859 + } 9860 + }, 9861 + "node_modules/pretty-bytes": { 9862 + "version": "5.6.0", 9863 + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", 9864 + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", 9865 + "license": "MIT", 9866 + "engines": { 9867 + "node": ">=6" 9868 + }, 9869 + "funding": { 9870 + "url": "https://github.com/sponsors/sindresorhus" 9871 + } 9872 + }, 9873 + "node_modules/pretty-format": { 9874 + "version": "29.7.0", 9875 + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", 9876 + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", 9877 + "license": "MIT", 9878 + "dependencies": { 9879 + "@jest/schemas": "^29.6.3", 9880 + "ansi-styles": "^5.0.0", 9881 + "react-is": "^18.0.0" 9882 + }, 9883 + "engines": { 9884 + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 9885 + } 9886 + }, 9887 + "node_modules/pretty-format/node_modules/ansi-styles": { 9888 + "version": "5.2.0", 9889 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", 9890 + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", 9891 + "license": "MIT", 9892 + "engines": { 9893 + "node": ">=10" 9894 + }, 9895 + "funding": { 9896 + "url": "https://github.com/chalk/ansi-styles?sponsor=1" 9897 + } 9898 + }, 9899 + "node_modules/pretty-format/node_modules/react-is": { 9900 + "version": "18.3.1", 9901 + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", 9902 + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", 9903 + "license": "MIT" 9904 + }, 9905 + "node_modules/proc-log": { 9906 + "version": "4.2.0", 9907 + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-4.2.0.tgz", 9908 + "integrity": "sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==", 9909 + "license": "ISC", 9910 + "engines": { 9911 + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" 9912 + } 9913 + }, 9914 + "node_modules/progress": { 9915 + "version": "2.0.3", 9916 + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", 9917 + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", 9918 + "license": "MIT", 9919 + "engines": { 9920 + "node": ">=0.4.0" 9921 + } 9922 + }, 9923 + "node_modules/promise": { 9924 + "version": "8.3.0", 9925 + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", 9926 + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", 9927 + "license": "MIT", 9928 + "dependencies": { 9929 + "asap": "~2.0.6" 9930 + } 9931 + }, 9932 + "node_modules/prompts": { 9933 + "version": "2.4.2", 9934 + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", 9935 + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", 9936 + "license": "MIT", 9937 + "dependencies": { 9938 + "kleur": "^3.0.3", 9939 + "sisteransi": "^1.0.5" 9940 + }, 9941 + "engines": { 9942 + "node": ">= 6" 9943 + } 9944 + }, 9945 + "node_modules/prop-types": { 9946 + "version": "15.8.1", 9947 + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", 9948 + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", 9949 + "dev": true, 9950 + "license": "MIT", 9951 + "dependencies": { 9952 + "loose-envify": "^1.4.0", 9953 + "object-assign": "^4.1.1", 9954 + "react-is": "^16.13.1" 9955 + } 9956 + }, 9957 + "node_modules/prop-types/node_modules/react-is": { 9958 + "version": "16.13.1", 9959 + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", 9960 + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", 9961 + "dev": true, 9962 + "license": "MIT" 9963 + }, 9964 + "node_modules/punycode": { 9965 + "version": "2.3.1", 9966 + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 9967 + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 9968 + "license": "MIT", 9969 + "engines": { 9970 + "node": ">=6" 9971 + } 9972 + }, 9973 + "node_modules/qrcode-terminal": { 9974 + "version": "0.11.0", 9975 + "resolved": "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.11.0.tgz", 9976 + "integrity": "sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==", 9977 + "bin": { 9978 + "qrcode-terminal": "bin/qrcode-terminal.js" 9979 + } 9980 + }, 9981 + "node_modules/query-string": { 9982 + "version": "7.1.3", 9983 + "resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.3.tgz", 9984 + "integrity": "sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==", 9985 + "license": "MIT", 9986 + "dependencies": { 9987 + "decode-uri-component": "^0.2.2", 9988 + "filter-obj": "^1.1.0", 9989 + "split-on-first": "^1.0.0", 9990 + "strict-uri-encode": "^2.0.0" 9991 + }, 9992 + "engines": { 9993 + "node": ">=6" 9994 + }, 9995 + "funding": { 9996 + "url": "https://github.com/sponsors/sindresorhus" 9997 + } 9998 + }, 9999 + "node_modules/queue": { 10000 + "version": "6.0.2", 10001 + "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", 10002 + "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==", 10003 + "license": "MIT", 10004 + "dependencies": { 10005 + "inherits": "~2.0.3" 10006 + } 10007 + }, 10008 + "node_modules/queue-microtask": { 10009 + "version": "1.2.3", 10010 + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 10011 + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 10012 + "dev": true, 10013 + "funding": [ 10014 + { 10015 + "type": "github", 10016 + "url": "https://github.com/sponsors/feross" 10017 + }, 10018 + { 10019 + "type": "patreon", 10020 + "url": "https://www.patreon.com/feross" 10021 + }, 10022 + { 10023 + "type": "consulting", 10024 + "url": "https://feross.org/support" 10025 + } 10026 + ], 10027 + "license": "MIT" 10028 + }, 10029 + "node_modules/range-parser": { 10030 + "version": "1.2.1", 10031 + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 10032 + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 10033 + "license": "MIT", 10034 + "engines": { 10035 + "node": ">= 0.6" 10036 + } 10037 + }, 10038 + "node_modules/rc": { 10039 + "version": "1.2.8", 10040 + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", 10041 + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", 10042 + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", 10043 + "dependencies": { 10044 + "deep-extend": "^0.6.0", 10045 + "ini": "~1.3.0", 10046 + "minimist": "^1.2.0", 10047 + "strip-json-comments": "~2.0.1" 10048 + }, 10049 + "bin": { 10050 + "rc": "cli.js" 10051 + } 10052 + }, 10053 + "node_modules/rc/node_modules/strip-json-comments": { 10054 + "version": "2.0.1", 10055 + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", 10056 + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", 10057 + "license": "MIT", 10058 + "engines": { 10059 + "node": ">=0.10.0" 10060 + } 10061 + }, 10062 + "node_modules/react": { 10063 + "version": "19.0.0", 10064 + "resolved": "https://registry.npmjs.org/react/-/react-19.0.0.tgz", 10065 + "integrity": "sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==", 10066 + "license": "MIT", 10067 + "engines": { 10068 + "node": ">=0.10.0" 10069 + } 10070 + }, 10071 + "node_modules/react-devtools-core": { 10072 + "version": "6.1.5", 10073 + "resolved": "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-6.1.5.tgz", 10074 + "integrity": "sha512-ePrwPfxAnB+7hgnEr8vpKxL9cmnp7F322t8oqcPshbIQQhDKgFDW4tjhF2wjVbdXF9O/nyuy3sQWd9JGpiLPvA==", 10075 + "license": "MIT", 10076 + "dependencies": { 10077 + "shell-quote": "^1.6.1", 10078 + "ws": "^7" 10079 + } 10080 + }, 10081 + "node_modules/react-devtools-core/node_modules/ws": { 10082 + "version": "7.5.10", 10083 + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", 10084 + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", 10085 + "license": "MIT", 10086 + "engines": { 10087 + "node": ">=8.3.0" 10088 + }, 10089 + "peerDependencies": { 10090 + "bufferutil": "^4.0.1", 10091 + "utf-8-validate": "^5.0.2" 10092 + }, 10093 + "peerDependenciesMeta": { 10094 + "bufferutil": { 10095 + "optional": true 10096 + }, 10097 + "utf-8-validate": { 10098 + "optional": true 10099 + } 10100 + } 10101 + }, 10102 + "node_modules/react-dom": { 10103 + "version": "19.0.0", 10104 + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.0.0.tgz", 10105 + "integrity": "sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==", 10106 + "license": "MIT", 10107 + "dependencies": { 10108 + "scheduler": "^0.25.0" 10109 + }, 10110 + "peerDependencies": { 10111 + "react": "^19.0.0" 10112 + } 10113 + }, 10114 + "node_modules/react-fast-compare": { 10115 + "version": "3.2.2", 10116 + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", 10117 + "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==", 10118 + "license": "MIT" 10119 + }, 10120 + "node_modules/react-freeze": { 10121 + "version": "1.0.4", 10122 + "resolved": "https://registry.npmjs.org/react-freeze/-/react-freeze-1.0.4.tgz", 10123 + "integrity": "sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA==", 10124 + "license": "MIT", 10125 + "engines": { 10126 + "node": ">=10" 10127 + }, 10128 + "peerDependencies": { 10129 + "react": ">=17.0.0" 10130 + } 10131 + }, 10132 + "node_modules/react-is": { 10133 + "version": "19.1.1", 10134 + "resolved": "https://registry.npmjs.org/react-is/-/react-is-19.1.1.tgz", 10135 + "integrity": "sha512-tr41fA15Vn8p4X9ntI+yCyeGSf1TlYaY5vlTZfQmeLBrFo3psOPX6HhTDnFNL9uj3EhP0KAQ80cugCl4b4BERA==", 10136 + "license": "MIT" 10137 + }, 10138 + "node_modules/react-native": { 10139 + "version": "0.79.5", 10140 + "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.79.5.tgz", 10141 + "integrity": "sha512-jVihwsE4mWEHZ9HkO1J2eUZSwHyDByZOqthwnGrVZCh6kTQBCm4v8dicsyDa6p0fpWNE5KicTcpX/XXl0ASJFg==", 10142 + "license": "MIT", 10143 + "dependencies": { 10144 + "@jest/create-cache-key-function": "^29.7.0", 10145 + "@react-native/assets-registry": "0.79.5", 10146 + "@react-native/codegen": "0.79.5", 10147 + "@react-native/community-cli-plugin": "0.79.5", 10148 + "@react-native/gradle-plugin": "0.79.5", 10149 + "@react-native/js-polyfills": "0.79.5", 10150 + "@react-native/normalize-colors": "0.79.5", 10151 + "@react-native/virtualized-lists": "0.79.5", 10152 + "abort-controller": "^3.0.0", 10153 + "anser": "^1.4.9", 10154 + "ansi-regex": "^5.0.0", 10155 + "babel-jest": "^29.7.0", 10156 + "babel-plugin-syntax-hermes-parser": "0.25.1", 10157 + "base64-js": "^1.5.1", 10158 + "chalk": "^4.0.0", 10159 + "commander": "^12.0.0", 10160 + "event-target-shim": "^5.0.1", 10161 + "flow-enums-runtime": "^0.0.6", 10162 + "glob": "^7.1.1", 10163 + "invariant": "^2.2.4", 10164 + "jest-environment-node": "^29.7.0", 10165 + "memoize-one": "^5.0.0", 10166 + "metro-runtime": "^0.82.0", 10167 + "metro-source-map": "^0.82.0", 10168 + "nullthrows": "^1.1.1", 10169 + "pretty-format": "^29.7.0", 10170 + "promise": "^8.3.0", 10171 + "react-devtools-core": "^6.1.1", 10172 + "react-refresh": "^0.14.0", 10173 + "regenerator-runtime": "^0.13.2", 10174 + "scheduler": "0.25.0", 10175 + "semver": "^7.1.3", 10176 + "stacktrace-parser": "^0.1.10", 10177 + "whatwg-fetch": "^3.0.0", 10178 + "ws": "^6.2.3", 10179 + "yargs": "^17.6.2" 10180 + }, 10181 + "bin": { 10182 + "react-native": "cli.js" 10183 + }, 10184 + "engines": { 10185 + "node": ">=18" 10186 + }, 10187 + "peerDependencies": { 10188 + "@types/react": "^19.0.0", 10189 + "react": "^19.0.0" 10190 + }, 10191 + "peerDependenciesMeta": { 10192 + "@types/react": { 10193 + "optional": true 10194 + } 10195 + } 10196 + }, 10197 + "node_modules/react-native-edge-to-edge": { 10198 + "version": "1.6.0", 10199 + "resolved": "https://registry.npmjs.org/react-native-edge-to-edge/-/react-native-edge-to-edge-1.6.0.tgz", 10200 + "integrity": "sha512-2WCNdE3Qd6Fwg9+4BpbATUxCLcouF6YRY7K+J36KJ4l3y+tWN6XCqAC4DuoGblAAbb2sLkhEDp4FOlbOIot2Og==", 10201 + "license": "MIT", 10202 + "peerDependencies": { 10203 + "react": "*", 10204 + "react-native": "*" 10205 + } 10206 + }, 10207 + "node_modules/react-native-gesture-handler": { 10208 + "version": "2.24.0", 10209 + "resolved": "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-2.24.0.tgz", 10210 + "integrity": "sha512-ZdWyOd1C8axKJHIfYxjJKCcxjWEpUtUWgTOVY2wynbiveSQDm8X/PDyAKXSer/GOtIpjudUbACOndZXCN3vHsw==", 10211 + "license": "MIT", 10212 + "dependencies": { 10213 + "@egjs/hammerjs": "^2.0.17", 10214 + "hoist-non-react-statics": "^3.3.0", 10215 + "invariant": "^2.2.4" 10216 + }, 10217 + "peerDependencies": { 10218 + "react": "*", 10219 + "react-native": "*" 10220 + } 10221 + }, 10222 + "node_modules/react-native-is-edge-to-edge": { 10223 + "version": "1.2.1", 10224 + "resolved": "https://registry.npmjs.org/react-native-is-edge-to-edge/-/react-native-is-edge-to-edge-1.2.1.tgz", 10225 + "integrity": "sha512-FLbPWl/MyYQWz+KwqOZsSyj2JmLKglHatd3xLZWskXOpRaio4LfEDEz8E/A6uD8QoTHW6Aobw1jbEwK7KMgR7Q==", 10226 + "license": "MIT", 10227 + "peerDependencies": { 10228 + "react": "*", 10229 + "react-native": "*" 10230 + } 10231 + }, 10232 + "node_modules/react-native-reanimated": { 10233 + "version": "3.17.5", 10234 + "resolved": "https://registry.npmjs.org/react-native-reanimated/-/react-native-reanimated-3.17.5.tgz", 10235 + "integrity": "sha512-SxBK7wQfJ4UoWoJqQnmIC7ZjuNgVb9rcY5Xc67upXAFKftWg0rnkknTw6vgwnjRcvYThrjzUVti66XoZdDJGtw==", 10236 + "license": "MIT", 10237 + "dependencies": { 10238 + "@babel/plugin-transform-arrow-functions": "^7.0.0-0", 10239 + "@babel/plugin-transform-class-properties": "^7.0.0-0", 10240 + "@babel/plugin-transform-classes": "^7.0.0-0", 10241 + "@babel/plugin-transform-nullish-coalescing-operator": "^7.0.0-0", 10242 + "@babel/plugin-transform-optional-chaining": "^7.0.0-0", 10243 + "@babel/plugin-transform-shorthand-properties": "^7.0.0-0", 10244 + "@babel/plugin-transform-template-literals": "^7.0.0-0", 10245 + "@babel/plugin-transform-unicode-regex": "^7.0.0-0", 10246 + "@babel/preset-typescript": "^7.16.7", 10247 + "convert-source-map": "^2.0.0", 10248 + "invariant": "^2.2.4", 10249 + "react-native-is-edge-to-edge": "1.1.7" 10250 + }, 10251 + "peerDependencies": { 10252 + "@babel/core": "^7.0.0-0", 10253 + "react": "*", 10254 + "react-native": "*" 10255 + } 10256 + }, 10257 + "node_modules/react-native-reanimated/node_modules/react-native-is-edge-to-edge": { 10258 + "version": "1.1.7", 10259 + "resolved": "https://registry.npmjs.org/react-native-is-edge-to-edge/-/react-native-is-edge-to-edge-1.1.7.tgz", 10260 + "integrity": "sha512-EH6i7E8epJGIcu7KpfXYXiV2JFIYITtq+rVS8uEb+92naMRBdxhTuS8Wn2Q7j9sqyO0B+Xbaaf9VdipIAmGW4w==", 10261 + "license": "MIT", 10262 + "peerDependencies": { 10263 + "react": "*", 10264 + "react-native": "*" 10265 + } 10266 + }, 10267 + "node_modules/react-native-safe-area-context": { 10268 + "version": "5.4.0", 10269 + "resolved": "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-5.4.0.tgz", 10270 + "integrity": "sha512-JaEThVyJcLhA+vU0NU8bZ0a1ih6GiF4faZ+ArZLqpYbL6j7R3caRqj+mE3lEtKCuHgwjLg3bCxLL1GPUJZVqUA==", 10271 + "license": "MIT", 10272 + "peerDependencies": { 10273 + "react": "*", 10274 + "react-native": "*" 10275 + } 10276 + }, 10277 + "node_modules/react-native-screens": { 10278 + "version": "4.11.1", 10279 + "resolved": "https://registry.npmjs.org/react-native-screens/-/react-native-screens-4.11.1.tgz", 10280 + "integrity": "sha512-F0zOzRVa3ptZfLpD0J8ROdo+y1fEPw+VBFq1MTY/iyDu08al7qFUO5hLMd+EYMda5VXGaTFCa8q7bOppUszhJw==", 10281 + "license": "MIT", 10282 + "dependencies": { 10283 + "react-freeze": "^1.0.0", 10284 + "react-native-is-edge-to-edge": "^1.1.7", 10285 + "warn-once": "^0.1.0" 10286 + }, 10287 + "peerDependencies": { 10288 + "react": "*", 10289 + "react-native": "*" 10290 + } 10291 + }, 10292 + "node_modules/react-native-web": { 10293 + "version": "0.20.0", 10294 + "resolved": "https://registry.npmjs.org/react-native-web/-/react-native-web-0.20.0.tgz", 10295 + "integrity": "sha512-OOSgrw+aON6R3hRosCau/xVxdLzbjEcsLysYedka0ZON4ZZe6n9xgeN9ZkoejhARM36oTlUgHIQqxGutEJ9Wxg==", 10296 + "license": "MIT", 10297 + "dependencies": { 10298 + "@babel/runtime": "^7.18.6", 10299 + "@react-native/normalize-colors": "^0.74.1", 10300 + "fbjs": "^3.0.4", 10301 + "inline-style-prefixer": "^7.0.1", 10302 + "memoize-one": "^6.0.0", 10303 + "nullthrows": "^1.1.1", 10304 + "postcss-value-parser": "^4.2.0", 10305 + "styleq": "^0.1.3" 10306 + }, 10307 + "peerDependencies": { 10308 + "react": "^18.0.0 || ^19.0.0", 10309 + "react-dom": "^18.0.0 || ^19.0.0" 10310 + } 10311 + }, 10312 + "node_modules/react-native-web/node_modules/@react-native/normalize-colors": { 10313 + "version": "0.74.89", 10314 + "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.74.89.tgz", 10315 + "integrity": "sha512-qoMMXddVKVhZ8PA1AbUCk83trpd6N+1nF2A6k1i6LsQObyS92fELuk8kU/lQs6M7BsMHwqyLCpQJ1uFgNvIQXg==", 10316 + "license": "MIT" 10317 + }, 10318 + "node_modules/react-native-web/node_modules/memoize-one": { 10319 + "version": "6.0.0", 10320 + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", 10321 + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==", 10322 + "license": "MIT" 10323 + }, 10324 + "node_modules/react-native-webview": { 10325 + "version": "13.13.5", 10326 + "resolved": "https://registry.npmjs.org/react-native-webview/-/react-native-webview-13.13.5.tgz", 10327 + "integrity": "sha512-MfC2B+woL4Hlj2WCzcb1USySKk+SteXnUKmKktOk/H/AQy5+LuVdkPKm8SknJ0/RxaxhZ48WBoTRGaqgR137hw==", 10328 + "license": "MIT", 10329 + "dependencies": { 10330 + "escape-string-regexp": "^4.0.0", 10331 + "invariant": "2.2.4" 10332 + }, 10333 + "peerDependencies": { 10334 + "react": "*", 10335 + "react-native": "*" 10336 + } 10337 + }, 10338 + "node_modules/react-native/node_modules/@react-native/virtualized-lists": { 10339 + "version": "0.79.5", 10340 + "resolved": "https://registry.npmjs.org/@react-native/virtualized-lists/-/virtualized-lists-0.79.5.tgz", 10341 + "integrity": "sha512-EUPM2rfGNO4cbI3olAbhPkIt3q7MapwCwAJBzUfWlZ/pu0PRNOnMQ1IvaXTf3TpeozXV52K1OdprLEI/kI5eUA==", 10342 + "license": "MIT", 10343 + "dependencies": { 10344 + "invariant": "^2.2.4", 10345 + "nullthrows": "^1.1.1" 10346 + }, 10347 + "engines": { 10348 + "node": ">=18" 10349 + }, 10350 + "peerDependencies": { 10351 + "@types/react": "^19.0.0", 10352 + "react": "*", 10353 + "react-native": "*" 10354 + }, 10355 + "peerDependenciesMeta": { 10356 + "@types/react": { 10357 + "optional": true 10358 + } 10359 + } 10360 + }, 10361 + "node_modules/react-native/node_modules/commander": { 10362 + "version": "12.1.0", 10363 + "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", 10364 + "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", 10365 + "license": "MIT", 10366 + "engines": { 10367 + "node": ">=18" 10368 + } 10369 + }, 10370 + "node_modules/react-native/node_modules/glob": { 10371 + "version": "7.2.3", 10372 + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 10373 + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 10374 + "deprecated": "Glob versions prior to v9 are no longer supported", 10375 + "license": "ISC", 10376 + "dependencies": { 10377 + "fs.realpath": "^1.0.0", 10378 + "inflight": "^1.0.4", 10379 + "inherits": "2", 10380 + "minimatch": "^3.1.1", 10381 + "once": "^1.3.0", 10382 + "path-is-absolute": "^1.0.0" 10383 + }, 10384 + "engines": { 10385 + "node": "*" 10386 + }, 10387 + "funding": { 10388 + "url": "https://github.com/sponsors/isaacs" 10389 + } 10390 + }, 10391 + "node_modules/react-native/node_modules/semver": { 10392 + "version": "7.7.2", 10393 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 10394 + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 10395 + "license": "ISC", 10396 + "bin": { 10397 + "semver": "bin/semver.js" 10398 + }, 10399 + "engines": { 10400 + "node": ">=10" 10401 + } 10402 + }, 10403 + "node_modules/react-native/node_modules/ws": { 10404 + "version": "6.2.3", 10405 + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", 10406 + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", 10407 + "license": "MIT", 10408 + "dependencies": { 10409 + "async-limiter": "~1.0.0" 10410 + } 10411 + }, 10412 + "node_modules/react-refresh": { 10413 + "version": "0.14.2", 10414 + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", 10415 + "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", 10416 + "license": "MIT", 10417 + "engines": { 10418 + "node": ">=0.10.0" 10419 + } 10420 + }, 10421 + "node_modules/reflect.getprototypeof": { 10422 + "version": "1.0.10", 10423 + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", 10424 + "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", 10425 + "dev": true, 10426 + "license": "MIT", 10427 + "dependencies": { 10428 + "call-bind": "^1.0.8", 10429 + "define-properties": "^1.2.1", 10430 + "es-abstract": "^1.23.9", 10431 + "es-errors": "^1.3.0", 10432 + "es-object-atoms": "^1.0.0", 10433 + "get-intrinsic": "^1.2.7", 10434 + "get-proto": "^1.0.1", 10435 + "which-builtin-type": "^1.2.1" 10436 + }, 10437 + "engines": { 10438 + "node": ">= 0.4" 10439 + }, 10440 + "funding": { 10441 + "url": "https://github.com/sponsors/ljharb" 10442 + } 10443 + }, 10444 + "node_modules/regenerate": { 10445 + "version": "1.4.2", 10446 + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", 10447 + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", 10448 + "license": "MIT" 10449 + }, 10450 + "node_modules/regenerate-unicode-properties": { 10451 + "version": "10.2.0", 10452 + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", 10453 + "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", 10454 + "license": "MIT", 10455 + "dependencies": { 10456 + "regenerate": "^1.4.2" 10457 + }, 10458 + "engines": { 10459 + "node": ">=4" 10460 + } 10461 + }, 10462 + "node_modules/regenerator-runtime": { 10463 + "version": "0.13.11", 10464 + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", 10465 + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", 10466 + "license": "MIT" 10467 + }, 10468 + "node_modules/regexp.prototype.flags": { 10469 + "version": "1.5.4", 10470 + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", 10471 + "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", 10472 + "dev": true, 10473 + "license": "MIT", 10474 + "dependencies": { 10475 + "call-bind": "^1.0.8", 10476 + "define-properties": "^1.2.1", 10477 + "es-errors": "^1.3.0", 10478 + "get-proto": "^1.0.1", 10479 + "gopd": "^1.2.0", 10480 + "set-function-name": "^2.0.2" 10481 + }, 10482 + "engines": { 10483 + "node": ">= 0.4" 10484 + }, 10485 + "funding": { 10486 + "url": "https://github.com/sponsors/ljharb" 10487 + } 10488 + }, 10489 + "node_modules/regexpu-core": { 10490 + "version": "6.2.0", 10491 + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", 10492 + "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", 10493 + "license": "MIT", 10494 + "dependencies": { 10495 + "regenerate": "^1.4.2", 10496 + "regenerate-unicode-properties": "^10.2.0", 10497 + "regjsgen": "^0.8.0", 10498 + "regjsparser": "^0.12.0", 10499 + "unicode-match-property-ecmascript": "^2.0.0", 10500 + "unicode-match-property-value-ecmascript": "^2.1.0" 10501 + }, 10502 + "engines": { 10503 + "node": ">=4" 10504 + } 10505 + }, 10506 + "node_modules/regjsgen": { 10507 + "version": "0.8.0", 10508 + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", 10509 + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", 10510 + "license": "MIT" 10511 + }, 10512 + "node_modules/regjsparser": { 10513 + "version": "0.12.0", 10514 + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", 10515 + "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", 10516 + "license": "BSD-2-Clause", 10517 + "dependencies": { 10518 + "jsesc": "~3.0.2" 10519 + }, 10520 + "bin": { 10521 + "regjsparser": "bin/parser" 10522 + } 10523 + }, 10524 + "node_modules/regjsparser/node_modules/jsesc": { 10525 + "version": "3.0.2", 10526 + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", 10527 + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", 10528 + "license": "MIT", 10529 + "bin": { 10530 + "jsesc": "bin/jsesc" 10531 + }, 10532 + "engines": { 10533 + "node": ">=6" 10534 + } 10535 + }, 10536 + "node_modules/require-directory": { 10537 + "version": "2.1.1", 10538 + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 10539 + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 10540 + "license": "MIT", 10541 + "engines": { 10542 + "node": ">=0.10.0" 10543 + } 10544 + }, 10545 + "node_modules/require-from-string": { 10546 + "version": "2.0.2", 10547 + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", 10548 + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", 10549 + "license": "MIT", 10550 + "engines": { 10551 + "node": ">=0.10.0" 10552 + } 10553 + }, 10554 + "node_modules/requireg": { 10555 + "version": "0.2.2", 10556 + "resolved": "https://registry.npmjs.org/requireg/-/requireg-0.2.2.tgz", 10557 + "integrity": "sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==", 10558 + "dependencies": { 10559 + "nested-error-stacks": "~2.0.1", 10560 + "rc": "~1.2.7", 10561 + "resolve": "~1.7.1" 10562 + }, 10563 + "engines": { 10564 + "node": ">= 4.0.0" 10565 + } 10566 + }, 10567 + "node_modules/requireg/node_modules/resolve": { 10568 + "version": "1.7.1", 10569 + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz", 10570 + "integrity": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==", 10571 + "license": "MIT", 10572 + "dependencies": { 10573 + "path-parse": "^1.0.5" 10574 + } 10575 + }, 10576 + "node_modules/resolve": { 10577 + "version": "1.22.10", 10578 + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", 10579 + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", 10580 + "license": "MIT", 10581 + "dependencies": { 10582 + "is-core-module": "^2.16.0", 10583 + "path-parse": "^1.0.7", 10584 + "supports-preserve-symlinks-flag": "^1.0.0" 10585 + }, 10586 + "bin": { 10587 + "resolve": "bin/resolve" 10588 + }, 10589 + "engines": { 10590 + "node": ">= 0.4" 10591 + }, 10592 + "funding": { 10593 + "url": "https://github.com/sponsors/ljharb" 10594 + } 10595 + }, 10596 + "node_modules/resolve-from": { 10597 + "version": "5.0.0", 10598 + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 10599 + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 10600 + "license": "MIT", 10601 + "engines": { 10602 + "node": ">=8" 10603 + } 10604 + }, 10605 + "node_modules/resolve-pkg-maps": { 10606 + "version": "1.0.0", 10607 + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", 10608 + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", 10609 + "dev": true, 10610 + "license": "MIT", 10611 + "funding": { 10612 + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" 10613 + } 10614 + }, 10615 + "node_modules/resolve-workspace-root": { 10616 + "version": "2.0.0", 10617 + "resolved": "https://registry.npmjs.org/resolve-workspace-root/-/resolve-workspace-root-2.0.0.tgz", 10618 + "integrity": "sha512-IsaBUZETJD5WsI11Wt8PKHwaIe45or6pwNc8yflvLJ4DWtImK9kuLoH5kUva/2Mmx/RdIyr4aONNSa2v9LTJsw==", 10619 + "license": "MIT" 10620 + }, 10621 + "node_modules/resolve.exports": { 10622 + "version": "2.0.3", 10623 + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", 10624 + "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", 10625 + "license": "MIT", 10626 + "engines": { 10627 + "node": ">=10" 10628 + } 10629 + }, 10630 + "node_modules/restore-cursor": { 10631 + "version": "2.0.0", 10632 + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", 10633 + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", 10634 + "license": "MIT", 10635 + "dependencies": { 10636 + "onetime": "^2.0.0", 10637 + "signal-exit": "^3.0.2" 10638 + }, 10639 + "engines": { 10640 + "node": ">=4" 10641 + } 10642 + }, 10643 + "node_modules/restore-cursor/node_modules/signal-exit": { 10644 + "version": "3.0.7", 10645 + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 10646 + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", 10647 + "license": "ISC" 10648 + }, 10649 + "node_modules/reusify": { 10650 + "version": "1.1.0", 10651 + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", 10652 + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", 10653 + "dev": true, 10654 + "license": "MIT", 10655 + "engines": { 10656 + "iojs": ">=1.0.0", 10657 + "node": ">=0.10.0" 10658 + } 10659 + }, 10660 + "node_modules/rimraf": { 10661 + "version": "3.0.2", 10662 + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 10663 + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 10664 + "deprecated": "Rimraf versions prior to v4 are no longer supported", 10665 + "license": "ISC", 10666 + "dependencies": { 10667 + "glob": "^7.1.3" 10668 + }, 10669 + "bin": { 10670 + "rimraf": "bin.js" 10671 + }, 10672 + "funding": { 10673 + "url": "https://github.com/sponsors/isaacs" 10674 + } 10675 + }, 10676 + "node_modules/rimraf/node_modules/glob": { 10677 + "version": "7.2.3", 10678 + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 10679 + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 10680 + "deprecated": "Glob versions prior to v9 are no longer supported", 10681 + "license": "ISC", 10682 + "dependencies": { 10683 + "fs.realpath": "^1.0.0", 10684 + "inflight": "^1.0.4", 10685 + "inherits": "2", 10686 + "minimatch": "^3.1.1", 10687 + "once": "^1.3.0", 10688 + "path-is-absolute": "^1.0.0" 10689 + }, 10690 + "engines": { 10691 + "node": "*" 10692 + }, 10693 + "funding": { 10694 + "url": "https://github.com/sponsors/isaacs" 10695 + } 10696 + }, 10697 + "node_modules/run-parallel": { 10698 + "version": "1.2.0", 10699 + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 10700 + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 10701 + "dev": true, 10702 + "funding": [ 10703 + { 10704 + "type": "github", 10705 + "url": "https://github.com/sponsors/feross" 10706 + }, 10707 + { 10708 + "type": "patreon", 10709 + "url": "https://www.patreon.com/feross" 10710 + }, 10711 + { 10712 + "type": "consulting", 10713 + "url": "https://feross.org/support" 10714 + } 10715 + ], 10716 + "license": "MIT", 10717 + "dependencies": { 10718 + "queue-microtask": "^1.2.2" 10719 + } 10720 + }, 10721 + "node_modules/safe-array-concat": { 10722 + "version": "1.1.3", 10723 + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", 10724 + "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", 10725 + "dev": true, 10726 + "license": "MIT", 10727 + "dependencies": { 10728 + "call-bind": "^1.0.8", 10729 + "call-bound": "^1.0.2", 10730 + "get-intrinsic": "^1.2.6", 10731 + "has-symbols": "^1.1.0", 10732 + "isarray": "^2.0.5" 10733 + }, 10734 + "engines": { 10735 + "node": ">=0.4" 10736 + }, 10737 + "funding": { 10738 + "url": "https://github.com/sponsors/ljharb" 10739 + } 10740 + }, 10741 + "node_modules/safe-buffer": { 10742 + "version": "5.2.1", 10743 + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 10744 + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 10745 + "funding": [ 10746 + { 10747 + "type": "github", 10748 + "url": "https://github.com/sponsors/feross" 10749 + }, 10750 + { 10751 + "type": "patreon", 10752 + "url": "https://www.patreon.com/feross" 10753 + }, 10754 + { 10755 + "type": "consulting", 10756 + "url": "https://feross.org/support" 10757 + } 10758 + ], 10759 + "license": "MIT" 10760 + }, 10761 + "node_modules/safe-push-apply": { 10762 + "version": "1.0.0", 10763 + "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", 10764 + "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", 10765 + "dev": true, 10766 + "license": "MIT", 10767 + "dependencies": { 10768 + "es-errors": "^1.3.0", 10769 + "isarray": "^2.0.5" 10770 + }, 10771 + "engines": { 10772 + "node": ">= 0.4" 10773 + }, 10774 + "funding": { 10775 + "url": "https://github.com/sponsors/ljharb" 10776 + } 10777 + }, 10778 + "node_modules/safe-regex-test": { 10779 + "version": "1.1.0", 10780 + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", 10781 + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", 10782 + "dev": true, 10783 + "license": "MIT", 10784 + "dependencies": { 10785 + "call-bound": "^1.0.2", 10786 + "es-errors": "^1.3.0", 10787 + "is-regex": "^1.2.1" 10788 + }, 10789 + "engines": { 10790 + "node": ">= 0.4" 10791 + }, 10792 + "funding": { 10793 + "url": "https://github.com/sponsors/ljharb" 10794 + } 10795 + }, 10796 + "node_modules/sax": { 10797 + "version": "1.4.1", 10798 + "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", 10799 + "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", 10800 + "license": "ISC" 10801 + }, 10802 + "node_modules/scheduler": { 10803 + "version": "0.25.0", 10804 + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.25.0.tgz", 10805 + "integrity": "sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==", 10806 + "license": "MIT" 10807 + }, 10808 + "node_modules/schema-utils": { 10809 + "version": "4.3.2", 10810 + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", 10811 + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", 10812 + "license": "MIT", 10813 + "dependencies": { 10814 + "@types/json-schema": "^7.0.9", 10815 + "ajv": "^8.9.0", 10816 + "ajv-formats": "^2.1.1", 10817 + "ajv-keywords": "^5.1.0" 10818 + }, 10819 + "engines": { 10820 + "node": ">= 10.13.0" 10821 + }, 10822 + "funding": { 10823 + "type": "opencollective", 10824 + "url": "https://opencollective.com/webpack" 10825 + } 10826 + }, 10827 + "node_modules/schema-utils/node_modules/ajv": { 10828 + "version": "8.17.1", 10829 + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", 10830 + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", 10831 + "license": "MIT", 10832 + "dependencies": { 10833 + "fast-deep-equal": "^3.1.3", 10834 + "fast-uri": "^3.0.1", 10835 + "json-schema-traverse": "^1.0.0", 10836 + "require-from-string": "^2.0.2" 10837 + }, 10838 + "funding": { 10839 + "type": "github", 10840 + "url": "https://github.com/sponsors/epoberezkin" 10841 + } 10842 + }, 10843 + "node_modules/schema-utils/node_modules/ajv-keywords": { 10844 + "version": "5.1.0", 10845 + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", 10846 + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", 10847 + "license": "MIT", 10848 + "dependencies": { 10849 + "fast-deep-equal": "^3.1.3" 10850 + }, 10851 + "peerDependencies": { 10852 + "ajv": "^8.8.2" 10853 + } 10854 + }, 10855 + "node_modules/schema-utils/node_modules/json-schema-traverse": { 10856 + "version": "1.0.0", 10857 + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", 10858 + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", 10859 + "license": "MIT" 10860 + }, 10861 + "node_modules/semver": { 10862 + "version": "6.3.1", 10863 + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 10864 + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 10865 + "license": "ISC", 10866 + "bin": { 10867 + "semver": "bin/semver.js" 10868 + } 10869 + }, 10870 + "node_modules/send": { 10871 + "version": "0.19.1", 10872 + "resolved": "https://registry.npmjs.org/send/-/send-0.19.1.tgz", 10873 + "integrity": "sha512-p4rRk4f23ynFEfcD9LA0xRYngj+IyGiEYyqqOak8kaN0TvNmuxC2dcVeBn62GpCeR2CpWqyHCNScTP91QbAVFg==", 10874 + "license": "MIT", 10875 + "dependencies": { 10876 + "debug": "2.6.9", 10877 + "depd": "2.0.0", 10878 + "destroy": "1.2.0", 10879 + "encodeurl": "~2.0.0", 10880 + "escape-html": "~1.0.3", 10881 + "etag": "~1.8.1", 10882 + "fresh": "0.5.2", 10883 + "http-errors": "2.0.0", 10884 + "mime": "1.6.0", 10885 + "ms": "2.1.3", 10886 + "on-finished": "2.4.1", 10887 + "range-parser": "~1.2.1", 10888 + "statuses": "2.0.1" 10889 + }, 10890 + "engines": { 10891 + "node": ">= 0.8.0" 10892 + } 10893 + }, 10894 + "node_modules/send/node_modules/debug": { 10895 + "version": "2.6.9", 10896 + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 10897 + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 10898 + "license": "MIT", 10899 + "dependencies": { 10900 + "ms": "2.0.0" 10901 + } 10902 + }, 10903 + "node_modules/send/node_modules/debug/node_modules/ms": { 10904 + "version": "2.0.0", 10905 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 10906 + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 10907 + "license": "MIT" 10908 + }, 10909 + "node_modules/send/node_modules/encodeurl": { 10910 + "version": "2.0.0", 10911 + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", 10912 + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", 10913 + "license": "MIT", 10914 + "engines": { 10915 + "node": ">= 0.8" 10916 + } 10917 + }, 10918 + "node_modules/send/node_modules/on-finished": { 10919 + "version": "2.4.1", 10920 + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 10921 + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 10922 + "license": "MIT", 10923 + "dependencies": { 10924 + "ee-first": "1.1.1" 10925 + }, 10926 + "engines": { 10927 + "node": ">= 0.8" 10928 + } 10929 + }, 10930 + "node_modules/send/node_modules/statuses": { 10931 + "version": "2.0.1", 10932 + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 10933 + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 10934 + "license": "MIT", 10935 + "engines": { 10936 + "node": ">= 0.8" 10937 + } 10938 + }, 10939 + "node_modules/serialize-error": { 10940 + "version": "2.1.0", 10941 + "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz", 10942 + "integrity": "sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==", 10943 + "license": "MIT", 10944 + "engines": { 10945 + "node": ">=0.10.0" 10946 + } 10947 + }, 10948 + "node_modules/serve-static": { 10949 + "version": "1.16.2", 10950 + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", 10951 + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", 10952 + "license": "MIT", 10953 + "dependencies": { 10954 + "encodeurl": "~2.0.0", 10955 + "escape-html": "~1.0.3", 10956 + "parseurl": "~1.3.3", 10957 + "send": "0.19.0" 10958 + }, 10959 + "engines": { 10960 + "node": ">= 0.8.0" 10961 + } 10962 + }, 10963 + "node_modules/serve-static/node_modules/debug": { 10964 + "version": "2.6.9", 10965 + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 10966 + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 10967 + "license": "MIT", 10968 + "dependencies": { 10969 + "ms": "2.0.0" 10970 + } 10971 + }, 10972 + "node_modules/serve-static/node_modules/debug/node_modules/ms": { 10973 + "version": "2.0.0", 10974 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 10975 + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 10976 + "license": "MIT" 10977 + }, 10978 + "node_modules/serve-static/node_modules/encodeurl": { 10979 + "version": "2.0.0", 10980 + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", 10981 + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", 10982 + "license": "MIT", 10983 + "engines": { 10984 + "node": ">= 0.8" 10985 + } 10986 + }, 10987 + "node_modules/serve-static/node_modules/on-finished": { 10988 + "version": "2.4.1", 10989 + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 10990 + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 10991 + "license": "MIT", 10992 + "dependencies": { 10993 + "ee-first": "1.1.1" 10994 + }, 10995 + "engines": { 10996 + "node": ">= 0.8" 10997 + } 10998 + }, 10999 + "node_modules/serve-static/node_modules/send": { 11000 + "version": "0.19.0", 11001 + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", 11002 + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", 11003 + "license": "MIT", 11004 + "dependencies": { 11005 + "debug": "2.6.9", 11006 + "depd": "2.0.0", 11007 + "destroy": "1.2.0", 11008 + "encodeurl": "~1.0.2", 11009 + "escape-html": "~1.0.3", 11010 + "etag": "~1.8.1", 11011 + "fresh": "0.5.2", 11012 + "http-errors": "2.0.0", 11013 + "mime": "1.6.0", 11014 + "ms": "2.1.3", 11015 + "on-finished": "2.4.1", 11016 + "range-parser": "~1.2.1", 11017 + "statuses": "2.0.1" 11018 + }, 11019 + "engines": { 11020 + "node": ">= 0.8.0" 11021 + } 11022 + }, 11023 + "node_modules/serve-static/node_modules/send/node_modules/encodeurl": { 11024 + "version": "1.0.2", 11025 + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 11026 + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", 11027 + "license": "MIT", 11028 + "engines": { 11029 + "node": ">= 0.8" 11030 + } 11031 + }, 11032 + "node_modules/serve-static/node_modules/statuses": { 11033 + "version": "2.0.1", 11034 + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 11035 + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 11036 + "license": "MIT", 11037 + "engines": { 11038 + "node": ">= 0.8" 11039 + } 11040 + }, 11041 + "node_modules/server-only": { 11042 + "version": "0.0.1", 11043 + "resolved": "https://registry.npmjs.org/server-only/-/server-only-0.0.1.tgz", 11044 + "integrity": "sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==", 11045 + "license": "MIT" 11046 + }, 11047 + "node_modules/set-function-length": { 11048 + "version": "1.2.2", 11049 + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", 11050 + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", 11051 + "dev": true, 11052 + "license": "MIT", 11053 + "dependencies": { 11054 + "define-data-property": "^1.1.4", 11055 + "es-errors": "^1.3.0", 11056 + "function-bind": "^1.1.2", 11057 + "get-intrinsic": "^1.2.4", 11058 + "gopd": "^1.0.1", 11059 + "has-property-descriptors": "^1.0.2" 11060 + }, 11061 + "engines": { 11062 + "node": ">= 0.4" 11063 + } 11064 + }, 11065 + "node_modules/set-function-name": { 11066 + "version": "2.0.2", 11067 + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", 11068 + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", 11069 + "dev": true, 11070 + "license": "MIT", 11071 + "dependencies": { 11072 + "define-data-property": "^1.1.4", 11073 + "es-errors": "^1.3.0", 11074 + "functions-have-names": "^1.2.3", 11075 + "has-property-descriptors": "^1.0.2" 11076 + }, 11077 + "engines": { 11078 + "node": ">= 0.4" 11079 + } 11080 + }, 11081 + "node_modules/set-proto": { 11082 + "version": "1.0.0", 11083 + "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", 11084 + "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", 11085 + "dev": true, 11086 + "license": "MIT", 11087 + "dependencies": { 11088 + "dunder-proto": "^1.0.1", 11089 + "es-errors": "^1.3.0", 11090 + "es-object-atoms": "^1.0.0" 11091 + }, 11092 + "engines": { 11093 + "node": ">= 0.4" 11094 + } 11095 + }, 11096 + "node_modules/setimmediate": { 11097 + "version": "1.0.5", 11098 + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", 11099 + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", 11100 + "license": "MIT" 11101 + }, 11102 + "node_modules/setprototypeof": { 11103 + "version": "1.2.0", 11104 + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 11105 + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", 11106 + "license": "ISC" 11107 + }, 11108 + "node_modules/sf-symbols-typescript": { 11109 + "version": "2.1.0", 11110 + "resolved": "https://registry.npmjs.org/sf-symbols-typescript/-/sf-symbols-typescript-2.1.0.tgz", 11111 + "integrity": "sha512-ezT7gu/SHTPIOEEoG6TF+O0m5eewl0ZDAO4AtdBi5HjsrUI6JdCG17+Q8+aKp0heM06wZKApRCn5olNbs0Wb/A==", 11112 + "license": "MIT", 11113 + "engines": { 11114 + "node": ">=10" 11115 + } 11116 + }, 11117 + "node_modules/shallowequal": { 11118 + "version": "1.1.0", 11119 + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", 11120 + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==", 11121 + "license": "MIT" 11122 + }, 11123 + "node_modules/shebang-command": { 11124 + "version": "2.0.0", 11125 + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 11126 + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 11127 + "license": "MIT", 11128 + "dependencies": { 11129 + "shebang-regex": "^3.0.0" 11130 + }, 11131 + "engines": { 11132 + "node": ">=8" 11133 + } 11134 + }, 11135 + "node_modules/shebang-regex": { 11136 + "version": "3.0.0", 11137 + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 11138 + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 11139 + "license": "MIT", 11140 + "engines": { 11141 + "node": ">=8" 11142 + } 11143 + }, 11144 + "node_modules/shell-quote": { 11145 + "version": "1.8.3", 11146 + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz", 11147 + "integrity": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==", 11148 + "license": "MIT", 11149 + "engines": { 11150 + "node": ">= 0.4" 11151 + }, 11152 + "funding": { 11153 + "url": "https://github.com/sponsors/ljharb" 11154 + } 11155 + }, 11156 + "node_modules/side-channel": { 11157 + "version": "1.1.0", 11158 + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", 11159 + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", 11160 + "dev": true, 11161 + "license": "MIT", 11162 + "dependencies": { 11163 + "es-errors": "^1.3.0", 11164 + "object-inspect": "^1.13.3", 11165 + "side-channel-list": "^1.0.0", 11166 + "side-channel-map": "^1.0.1", 11167 + "side-channel-weakmap": "^1.0.2" 11168 + }, 11169 + "engines": { 11170 + "node": ">= 0.4" 11171 + }, 11172 + "funding": { 11173 + "url": "https://github.com/sponsors/ljharb" 11174 + } 11175 + }, 11176 + "node_modules/side-channel-list": { 11177 + "version": "1.0.0", 11178 + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", 11179 + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", 11180 + "dev": true, 11181 + "license": "MIT", 11182 + "dependencies": { 11183 + "es-errors": "^1.3.0", 11184 + "object-inspect": "^1.13.3" 11185 + }, 11186 + "engines": { 11187 + "node": ">= 0.4" 11188 + }, 11189 + "funding": { 11190 + "url": "https://github.com/sponsors/ljharb" 11191 + } 11192 + }, 11193 + "node_modules/side-channel-map": { 11194 + "version": "1.0.1", 11195 + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", 11196 + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", 11197 + "dev": true, 11198 + "license": "MIT", 11199 + "dependencies": { 11200 + "call-bound": "^1.0.2", 11201 + "es-errors": "^1.3.0", 11202 + "get-intrinsic": "^1.2.5", 11203 + "object-inspect": "^1.13.3" 11204 + }, 11205 + "engines": { 11206 + "node": ">= 0.4" 11207 + }, 11208 + "funding": { 11209 + "url": "https://github.com/sponsors/ljharb" 11210 + } 11211 + }, 11212 + "node_modules/side-channel-weakmap": { 11213 + "version": "1.0.2", 11214 + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", 11215 + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", 11216 + "dev": true, 11217 + "license": "MIT", 11218 + "dependencies": { 11219 + "call-bound": "^1.0.2", 11220 + "es-errors": "^1.3.0", 11221 + "get-intrinsic": "^1.2.5", 11222 + "object-inspect": "^1.13.3", 11223 + "side-channel-map": "^1.0.1" 11224 + }, 11225 + "engines": { 11226 + "node": ">= 0.4" 11227 + }, 11228 + "funding": { 11229 + "url": "https://github.com/sponsors/ljharb" 11230 + } 11231 + }, 11232 + "node_modules/signal-exit": { 11233 + "version": "4.1.0", 11234 + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 11235 + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 11236 + "license": "ISC", 11237 + "engines": { 11238 + "node": ">=14" 11239 + }, 11240 + "funding": { 11241 + "url": "https://github.com/sponsors/isaacs" 11242 + } 11243 + }, 11244 + "node_modules/simple-plist": { 11245 + "version": "1.3.1", 11246 + "resolved": "https://registry.npmjs.org/simple-plist/-/simple-plist-1.3.1.tgz", 11247 + "integrity": "sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==", 11248 + "license": "MIT", 11249 + "dependencies": { 11250 + "bplist-creator": "0.1.0", 11251 + "bplist-parser": "0.3.1", 11252 + "plist": "^3.0.5" 11253 + } 11254 + }, 11255 + "node_modules/simple-plist/node_modules/bplist-parser": { 11256 + "version": "0.3.1", 11257 + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.1.tgz", 11258 + "integrity": "sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==", 11259 + "license": "MIT", 11260 + "dependencies": { 11261 + "big-integer": "1.6.x" 11262 + }, 11263 + "engines": { 11264 + "node": ">= 5.10.0" 11265 + } 11266 + }, 11267 + "node_modules/simple-swizzle": { 11268 + "version": "0.2.2", 11269 + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", 11270 + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", 11271 + "license": "MIT", 11272 + "dependencies": { 11273 + "is-arrayish": "^0.3.1" 11274 + } 11275 + }, 11276 + "node_modules/simple-swizzle/node_modules/is-arrayish": { 11277 + "version": "0.3.2", 11278 + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", 11279 + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", 11280 + "license": "MIT" 11281 + }, 11282 + "node_modules/sisteransi": { 11283 + "version": "1.0.5", 11284 + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", 11285 + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", 11286 + "license": "MIT" 11287 + }, 11288 + "node_modules/slash": { 11289 + "version": "3.0.0", 11290 + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 11291 + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 11292 + "license": "MIT", 11293 + "engines": { 11294 + "node": ">=8" 11295 + } 11296 + }, 11297 + "node_modules/slugify": { 11298 + "version": "1.6.6", 11299 + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", 11300 + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", 11301 + "license": "MIT", 11302 + "engines": { 11303 + "node": ">=8.0.0" 11304 + } 11305 + }, 11306 + "node_modules/source-map": { 11307 + "version": "0.5.7", 11308 + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", 11309 + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", 11310 + "license": "BSD-3-Clause", 11311 + "engines": { 11312 + "node": ">=0.10.0" 11313 + } 11314 + }, 11315 + "node_modules/source-map-js": { 11316 + "version": "1.2.1", 11317 + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 11318 + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 11319 + "license": "BSD-3-Clause", 11320 + "engines": { 11321 + "node": ">=0.10.0" 11322 + } 11323 + }, 11324 + "node_modules/source-map-support": { 11325 + "version": "0.5.21", 11326 + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", 11327 + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", 11328 + "license": "MIT", 11329 + "dependencies": { 11330 + "buffer-from": "^1.0.0", 11331 + "source-map": "^0.6.0" 11332 + } 11333 + }, 11334 + "node_modules/source-map-support/node_modules/source-map": { 11335 + "version": "0.6.1", 11336 + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 11337 + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 11338 + "license": "BSD-3-Clause", 11339 + "engines": { 11340 + "node": ">=0.10.0" 11341 + } 11342 + }, 11343 + "node_modules/split-on-first": { 11344 + "version": "1.1.0", 11345 + "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", 11346 + "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==", 11347 + "license": "MIT", 11348 + "engines": { 11349 + "node": ">=6" 11350 + } 11351 + }, 11352 + "node_modules/sprintf-js": { 11353 + "version": "1.0.3", 11354 + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 11355 + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", 11356 + "license": "BSD-3-Clause" 11357 + }, 11358 + "node_modules/stable-hash": { 11359 + "version": "0.0.5", 11360 + "resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz", 11361 + "integrity": "sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==", 11362 + "dev": true, 11363 + "license": "MIT" 11364 + }, 11365 + "node_modules/stack-utils": { 11366 + "version": "2.0.6", 11367 + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", 11368 + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", 11369 + "license": "MIT", 11370 + "dependencies": { 11371 + "escape-string-regexp": "^2.0.0" 11372 + }, 11373 + "engines": { 11374 + "node": ">=10" 11375 + } 11376 + }, 11377 + "node_modules/stack-utils/node_modules/escape-string-regexp": { 11378 + "version": "2.0.0", 11379 + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", 11380 + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", 11381 + "license": "MIT", 11382 + "engines": { 11383 + "node": ">=8" 11384 + } 11385 + }, 11386 + "node_modules/stackframe": { 11387 + "version": "1.3.4", 11388 + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", 11389 + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", 11390 + "license": "MIT" 11391 + }, 11392 + "node_modules/stacktrace-parser": { 11393 + "version": "0.1.11", 11394 + "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.11.tgz", 11395 + "integrity": "sha512-WjlahMgHmCJpqzU8bIBy4qtsZdU9lRlcZE3Lvyej6t4tuOuv1vk57OW3MBrj6hXBFx/nNoC9MPMTcr5YA7NQbg==", 11396 + "license": "MIT", 11397 + "dependencies": { 11398 + "type-fest": "^0.7.1" 11399 + }, 11400 + "engines": { 11401 + "node": ">=6" 11402 + } 11403 + }, 11404 + "node_modules/statuses": { 11405 + "version": "1.5.0", 11406 + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", 11407 + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", 11408 + "license": "MIT", 11409 + "engines": { 11410 + "node": ">= 0.6" 11411 + } 11412 + }, 11413 + "node_modules/stop-iteration-iterator": { 11414 + "version": "1.1.0", 11415 + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", 11416 + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", 11417 + "dev": true, 11418 + "license": "MIT", 11419 + "dependencies": { 11420 + "es-errors": "^1.3.0", 11421 + "internal-slot": "^1.1.0" 11422 + }, 11423 + "engines": { 11424 + "node": ">= 0.4" 11425 + } 11426 + }, 11427 + "node_modules/stream-buffers": { 11428 + "version": "2.2.0", 11429 + "resolved": "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz", 11430 + "integrity": "sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==", 11431 + "license": "Unlicense", 11432 + "engines": { 11433 + "node": ">= 0.10.0" 11434 + } 11435 + }, 11436 + "node_modules/strict-uri-encode": { 11437 + "version": "2.0.0", 11438 + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", 11439 + "integrity": "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==", 11440 + "license": "MIT", 11441 + "engines": { 11442 + "node": ">=4" 11443 + } 11444 + }, 11445 + "node_modules/string-width": { 11446 + "version": "5.1.2", 11447 + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 11448 + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 11449 + "license": "MIT", 11450 + "dependencies": { 11451 + "eastasianwidth": "^0.2.0", 11452 + "emoji-regex": "^9.2.2", 11453 + "strip-ansi": "^7.0.1" 11454 + }, 11455 + "engines": { 11456 + "node": ">=12" 11457 + }, 11458 + "funding": { 11459 + "url": "https://github.com/sponsors/sindresorhus" 11460 + } 11461 + }, 11462 + "node_modules/string-width-cjs": { 11463 + "name": "string-width", 11464 + "version": "4.2.3", 11465 + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 11466 + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 11467 + "license": "MIT", 11468 + "dependencies": { 11469 + "emoji-regex": "^8.0.0", 11470 + "is-fullwidth-code-point": "^3.0.0", 11471 + "strip-ansi": "^6.0.1" 11472 + }, 11473 + "engines": { 11474 + "node": ">=8" 11475 + } 11476 + }, 11477 + "node_modules/string-width-cjs/node_modules/emoji-regex": { 11478 + "version": "8.0.0", 11479 + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 11480 + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 11481 + "license": "MIT" 11482 + }, 11483 + "node_modules/string-width-cjs/node_modules/strip-ansi": { 11484 + "version": "6.0.1", 11485 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 11486 + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 11487 + "license": "MIT", 11488 + "dependencies": { 11489 + "ansi-regex": "^5.0.1" 11490 + }, 11491 + "engines": { 11492 + "node": ">=8" 11493 + } 11494 + }, 11495 + "node_modules/string.prototype.matchall": { 11496 + "version": "4.0.12", 11497 + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz", 11498 + "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==", 11499 + "dev": true, 11500 + "license": "MIT", 11501 + "dependencies": { 11502 + "call-bind": "^1.0.8", 11503 + "call-bound": "^1.0.3", 11504 + "define-properties": "^1.2.1", 11505 + "es-abstract": "^1.23.6", 11506 + "es-errors": "^1.3.0", 11507 + "es-object-atoms": "^1.0.0", 11508 + "get-intrinsic": "^1.2.6", 11509 + "gopd": "^1.2.0", 11510 + "has-symbols": "^1.1.0", 11511 + "internal-slot": "^1.1.0", 11512 + "regexp.prototype.flags": "^1.5.3", 11513 + "set-function-name": "^2.0.2", 11514 + "side-channel": "^1.1.0" 11515 + }, 11516 + "engines": { 11517 + "node": ">= 0.4" 11518 + }, 11519 + "funding": { 11520 + "url": "https://github.com/sponsors/ljharb" 11521 + } 11522 + }, 11523 + "node_modules/string.prototype.repeat": { 11524 + "version": "1.0.0", 11525 + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", 11526 + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", 11527 + "dev": true, 11528 + "license": "MIT", 11529 + "dependencies": { 11530 + "define-properties": "^1.1.3", 11531 + "es-abstract": "^1.17.5" 11532 + } 11533 + }, 11534 + "node_modules/string.prototype.trim": { 11535 + "version": "1.2.10", 11536 + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", 11537 + "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", 11538 + "dev": true, 11539 + "license": "MIT", 11540 + "dependencies": { 11541 + "call-bind": "^1.0.8", 11542 + "call-bound": "^1.0.2", 11543 + "define-data-property": "^1.1.4", 11544 + "define-properties": "^1.2.1", 11545 + "es-abstract": "^1.23.5", 11546 + "es-object-atoms": "^1.0.0", 11547 + "has-property-descriptors": "^1.0.2" 11548 + }, 11549 + "engines": { 11550 + "node": ">= 0.4" 11551 + }, 11552 + "funding": { 11553 + "url": "https://github.com/sponsors/ljharb" 11554 + } 11555 + }, 11556 + "node_modules/string.prototype.trimend": { 11557 + "version": "1.0.9", 11558 + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", 11559 + "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", 11560 + "dev": true, 11561 + "license": "MIT", 11562 + "dependencies": { 11563 + "call-bind": "^1.0.8", 11564 + "call-bound": "^1.0.2", 11565 + "define-properties": "^1.2.1", 11566 + "es-object-atoms": "^1.0.0" 11567 + }, 11568 + "engines": { 11569 + "node": ">= 0.4" 11570 + }, 11571 + "funding": { 11572 + "url": "https://github.com/sponsors/ljharb" 11573 + } 11574 + }, 11575 + "node_modules/string.prototype.trimstart": { 11576 + "version": "1.0.8", 11577 + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", 11578 + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", 11579 + "dev": true, 11580 + "license": "MIT", 11581 + "dependencies": { 11582 + "call-bind": "^1.0.7", 11583 + "define-properties": "^1.2.1", 11584 + "es-object-atoms": "^1.0.0" 11585 + }, 11586 + "engines": { 11587 + "node": ">= 0.4" 11588 + }, 11589 + "funding": { 11590 + "url": "https://github.com/sponsors/ljharb" 11591 + } 11592 + }, 11593 + "node_modules/strip-ansi": { 11594 + "version": "7.1.0", 11595 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 11596 + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 11597 + "license": "MIT", 11598 + "dependencies": { 11599 + "ansi-regex": "^6.0.1" 11600 + }, 11601 + "engines": { 11602 + "node": ">=12" 11603 + }, 11604 + "funding": { 11605 + "url": "https://github.com/chalk/strip-ansi?sponsor=1" 11606 + } 11607 + }, 11608 + "node_modules/strip-ansi-cjs": { 11609 + "name": "strip-ansi", 11610 + "version": "6.0.1", 11611 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 11612 + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 11613 + "license": "MIT", 11614 + "dependencies": { 11615 + "ansi-regex": "^5.0.1" 11616 + }, 11617 + "engines": { 11618 + "node": ">=8" 11619 + } 11620 + }, 11621 + "node_modules/strip-ansi/node_modules/ansi-regex": { 11622 + "version": "6.1.0", 11623 + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", 11624 + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", 11625 + "license": "MIT", 11626 + "engines": { 11627 + "node": ">=12" 11628 + }, 11629 + "funding": { 11630 + "url": "https://github.com/chalk/ansi-regex?sponsor=1" 11631 + } 11632 + }, 11633 + "node_modules/strip-bom": { 11634 + "version": "3.0.0", 11635 + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 11636 + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 11637 + "dev": true, 11638 + "license": "MIT", 11639 + "engines": { 11640 + "node": ">=4" 11641 + } 11642 + }, 11643 + "node_modules/strip-json-comments": { 11644 + "version": "3.1.1", 11645 + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 11646 + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 11647 + "dev": true, 11648 + "license": "MIT", 11649 + "engines": { 11650 + "node": ">=8" 11651 + }, 11652 + "funding": { 11653 + "url": "https://github.com/sponsors/sindresorhus" 11654 + } 11655 + }, 11656 + "node_modules/structured-headers": { 11657 + "version": "0.4.1", 11658 + "resolved": "https://registry.npmjs.org/structured-headers/-/structured-headers-0.4.1.tgz", 11659 + "integrity": "sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==", 11660 + "license": "MIT" 11661 + }, 11662 + "node_modules/styleq": { 11663 + "version": "0.1.3", 11664 + "resolved": "https://registry.npmjs.org/styleq/-/styleq-0.1.3.tgz", 11665 + "integrity": "sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==", 11666 + "license": "MIT" 11667 + }, 11668 + "node_modules/sucrase": { 11669 + "version": "3.35.0", 11670 + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", 11671 + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", 11672 + "license": "MIT", 11673 + "dependencies": { 11674 + "@jridgewell/gen-mapping": "^0.3.2", 11675 + "commander": "^4.0.0", 11676 + "glob": "^10.3.10", 11677 + "lines-and-columns": "^1.1.6", 11678 + "mz": "^2.7.0", 11679 + "pirates": "^4.0.1", 11680 + "ts-interface-checker": "^0.1.9" 11681 + }, 11682 + "bin": { 11683 + "sucrase": "bin/sucrase", 11684 + "sucrase-node": "bin/sucrase-node" 11685 + }, 11686 + "engines": { 11687 + "node": ">=16 || 14 >=14.17" 11688 + } 11689 + }, 11690 + "node_modules/sucrase/node_modules/commander": { 11691 + "version": "4.1.1", 11692 + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 11693 + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 11694 + "license": "MIT", 11695 + "engines": { 11696 + "node": ">= 6" 11697 + } 11698 + }, 11699 + "node_modules/supports-color": { 11700 + "version": "7.2.0", 11701 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 11702 + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 11703 + "license": "MIT", 11704 + "dependencies": { 11705 + "has-flag": "^4.0.0" 11706 + }, 11707 + "engines": { 11708 + "node": ">=8" 11709 + } 11710 + }, 11711 + "node_modules/supports-hyperlinks": { 11712 + "version": "2.3.0", 11713 + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", 11714 + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", 11715 + "license": "MIT", 11716 + "dependencies": { 11717 + "has-flag": "^4.0.0", 11718 + "supports-color": "^7.0.0" 11719 + }, 11720 + "engines": { 11721 + "node": ">=8" 11722 + } 11723 + }, 11724 + "node_modules/supports-preserve-symlinks-flag": { 11725 + "version": "1.0.0", 11726 + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 11727 + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 11728 + "license": "MIT", 11729 + "engines": { 11730 + "node": ">= 0.4" 11731 + }, 11732 + "funding": { 11733 + "url": "https://github.com/sponsors/ljharb" 11734 + } 11735 + }, 11736 + "node_modules/tar": { 11737 + "version": "7.4.3", 11738 + "resolved": "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz", 11739 + "integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==", 11740 + "license": "ISC", 11741 + "dependencies": { 11742 + "@isaacs/fs-minipass": "^4.0.0", 11743 + "chownr": "^3.0.0", 11744 + "minipass": "^7.1.2", 11745 + "minizlib": "^3.0.1", 11746 + "mkdirp": "^3.0.1", 11747 + "yallist": "^5.0.0" 11748 + }, 11749 + "engines": { 11750 + "node": ">=18" 11751 + } 11752 + }, 11753 + "node_modules/tar/node_modules/mkdirp": { 11754 + "version": "3.0.1", 11755 + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", 11756 + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", 11757 + "license": "MIT", 11758 + "bin": { 11759 + "mkdirp": "dist/cjs/src/bin.js" 11760 + }, 11761 + "engines": { 11762 + "node": ">=10" 11763 + }, 11764 + "funding": { 11765 + "url": "https://github.com/sponsors/isaacs" 11766 + } 11767 + }, 11768 + "node_modules/tar/node_modules/yallist": { 11769 + "version": "5.0.0", 11770 + "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", 11771 + "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", 11772 + "license": "BlueOak-1.0.0", 11773 + "engines": { 11774 + "node": ">=18" 11775 + } 11776 + }, 11777 + "node_modules/temp-dir": { 11778 + "version": "2.0.0", 11779 + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", 11780 + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", 11781 + "license": "MIT", 11782 + "engines": { 11783 + "node": ">=8" 11784 + } 11785 + }, 11786 + "node_modules/terminal-link": { 11787 + "version": "2.1.1", 11788 + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", 11789 + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", 11790 + "license": "MIT", 11791 + "dependencies": { 11792 + "ansi-escapes": "^4.2.1", 11793 + "supports-hyperlinks": "^2.0.0" 11794 + }, 11795 + "engines": { 11796 + "node": ">=8" 11797 + }, 11798 + "funding": { 11799 + "url": "https://github.com/sponsors/sindresorhus" 11800 + } 11801 + }, 11802 + "node_modules/terser": { 11803 + "version": "5.43.1", 11804 + "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", 11805 + "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", 11806 + "license": "BSD-2-Clause", 11807 + "dependencies": { 11808 + "@jridgewell/source-map": "^0.3.3", 11809 + "acorn": "^8.14.0", 11810 + "commander": "^2.20.0", 11811 + "source-map-support": "~0.5.20" 11812 + }, 11813 + "bin": { 11814 + "terser": "bin/terser" 11815 + }, 11816 + "engines": { 11817 + "node": ">=10" 11818 + } 11819 + }, 11820 + "node_modules/terser/node_modules/commander": { 11821 + "version": "2.20.3", 11822 + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", 11823 + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", 11824 + "license": "MIT" 11825 + }, 11826 + "node_modules/test-exclude": { 11827 + "version": "6.0.0", 11828 + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", 11829 + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", 11830 + "license": "ISC", 11831 + "dependencies": { 11832 + "@istanbuljs/schema": "^0.1.2", 11833 + "glob": "^7.1.4", 11834 + "minimatch": "^3.0.4" 11835 + }, 11836 + "engines": { 11837 + "node": ">=8" 11838 + } 11839 + }, 11840 + "node_modules/test-exclude/node_modules/glob": { 11841 + "version": "7.2.3", 11842 + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 11843 + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 11844 + "deprecated": "Glob versions prior to v9 are no longer supported", 11845 + "license": "ISC", 11846 + "dependencies": { 11847 + "fs.realpath": "^1.0.0", 11848 + "inflight": "^1.0.4", 11849 + "inherits": "2", 11850 + "minimatch": "^3.1.1", 11851 + "once": "^1.3.0", 11852 + "path-is-absolute": "^1.0.0" 11853 + }, 11854 + "engines": { 11855 + "node": "*" 11856 + }, 11857 + "funding": { 11858 + "url": "https://github.com/sponsors/isaacs" 11859 + } 11860 + }, 11861 + "node_modules/thenify": { 11862 + "version": "3.3.1", 11863 + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 11864 + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 11865 + "license": "MIT", 11866 + "dependencies": { 11867 + "any-promise": "^1.0.0" 11868 + } 11869 + }, 11870 + "node_modules/thenify-all": { 11871 + "version": "1.6.0", 11872 + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 11873 + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 11874 + "license": "MIT", 11875 + "dependencies": { 11876 + "thenify": ">= 3.1.0 < 4" 11877 + }, 11878 + "engines": { 11879 + "node": ">=0.8" 11880 + } 11881 + }, 11882 + "node_modules/throat": { 11883 + "version": "5.0.0", 11884 + "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", 11885 + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==", 11886 + "license": "MIT" 11887 + }, 11888 + "node_modules/tinyglobby": { 11889 + "version": "0.2.14", 11890 + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz", 11891 + "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==", 11892 + "dev": true, 11893 + "license": "MIT", 11894 + "dependencies": { 11895 + "fdir": "^6.4.4", 11896 + "picomatch": "^4.0.2" 11897 + }, 11898 + "engines": { 11899 + "node": ">=12.0.0" 11900 + }, 11901 + "funding": { 11902 + "url": "https://github.com/sponsors/SuperchupuDev" 11903 + } 11904 + }, 11905 + "node_modules/tinyglobby/node_modules/picomatch": { 11906 + "version": "4.0.3", 11907 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", 11908 + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", 11909 + "dev": true, 11910 + "license": "MIT", 11911 + "engines": { 11912 + "node": ">=12" 11913 + }, 11914 + "funding": { 11915 + "url": "https://github.com/sponsors/jonschlinkert" 11916 + } 11917 + }, 11918 + "node_modules/tmpl": { 11919 + "version": "1.0.5", 11920 + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", 11921 + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", 11922 + "license": "BSD-3-Clause" 11923 + }, 11924 + "node_modules/to-regex-range": { 11925 + "version": "5.0.1", 11926 + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 11927 + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 11928 + "license": "MIT", 11929 + "dependencies": { 11930 + "is-number": "^7.0.0" 11931 + }, 11932 + "engines": { 11933 + "node": ">=8.0" 11934 + } 11935 + }, 11936 + "node_modules/toidentifier": { 11937 + "version": "1.0.1", 11938 + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 11939 + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 11940 + "license": "MIT", 11941 + "engines": { 11942 + "node": ">=0.6" 11943 + } 11944 + }, 11945 + "node_modules/tr46": { 11946 + "version": "0.0.3", 11947 + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 11948 + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", 11949 + "license": "MIT" 11950 + }, 11951 + "node_modules/ts-api-utils": { 11952 + "version": "2.1.0", 11953 + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", 11954 + "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", 11955 + "dev": true, 11956 + "license": "MIT", 11957 + "engines": { 11958 + "node": ">=18.12" 11959 + }, 11960 + "peerDependencies": { 11961 + "typescript": ">=4.8.4" 11962 + } 11963 + }, 11964 + "node_modules/ts-interface-checker": { 11965 + "version": "0.1.13", 11966 + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 11967 + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", 11968 + "license": "Apache-2.0" 11969 + }, 11970 + "node_modules/tsconfig-paths": { 11971 + "version": "3.15.0", 11972 + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", 11973 + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", 11974 + "dev": true, 11975 + "license": "MIT", 11976 + "dependencies": { 11977 + "@types/json5": "^0.0.29", 11978 + "json5": "^1.0.2", 11979 + "minimist": "^1.2.6", 11980 + "strip-bom": "^3.0.0" 11981 + } 11982 + }, 11983 + "node_modules/tsconfig-paths/node_modules/json5": { 11984 + "version": "1.0.2", 11985 + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", 11986 + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", 11987 + "dev": true, 11988 + "license": "MIT", 11989 + "dependencies": { 11990 + "minimist": "^1.2.0" 11991 + }, 11992 + "bin": { 11993 + "json5": "lib/cli.js" 11994 + } 11995 + }, 11996 + "node_modules/tslib": { 11997 + "version": "2.8.1", 11998 + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 11999 + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 12000 + "dev": true, 12001 + "license": "0BSD", 12002 + "optional": true 12003 + }, 12004 + "node_modules/type-check": { 12005 + "version": "0.4.0", 12006 + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 12007 + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 12008 + "dev": true, 12009 + "license": "MIT", 12010 + "dependencies": { 12011 + "prelude-ls": "^1.2.1" 12012 + }, 12013 + "engines": { 12014 + "node": ">= 0.8.0" 12015 + } 12016 + }, 12017 + "node_modules/type-detect": { 12018 + "version": "4.0.8", 12019 + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", 12020 + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", 12021 + "license": "MIT", 12022 + "engines": { 12023 + "node": ">=4" 12024 + } 12025 + }, 12026 + "node_modules/type-fest": { 12027 + "version": "0.7.1", 12028 + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", 12029 + "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==", 12030 + "license": "(MIT OR CC0-1.0)", 12031 + "engines": { 12032 + "node": ">=8" 12033 + } 12034 + }, 12035 + "node_modules/typed-array-buffer": { 12036 + "version": "1.0.3", 12037 + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", 12038 + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", 12039 + "dev": true, 12040 + "license": "MIT", 12041 + "dependencies": { 12042 + "call-bound": "^1.0.3", 12043 + "es-errors": "^1.3.0", 12044 + "is-typed-array": "^1.1.14" 12045 + }, 12046 + "engines": { 12047 + "node": ">= 0.4" 12048 + } 12049 + }, 12050 + "node_modules/typed-array-byte-length": { 12051 + "version": "1.0.3", 12052 + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", 12053 + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", 12054 + "dev": true, 12055 + "license": "MIT", 12056 + "dependencies": { 12057 + "call-bind": "^1.0.8", 12058 + "for-each": "^0.3.3", 12059 + "gopd": "^1.2.0", 12060 + "has-proto": "^1.2.0", 12061 + "is-typed-array": "^1.1.14" 12062 + }, 12063 + "engines": { 12064 + "node": ">= 0.4" 12065 + }, 12066 + "funding": { 12067 + "url": "https://github.com/sponsors/ljharb" 12068 + } 12069 + }, 12070 + "node_modules/typed-array-byte-offset": { 12071 + "version": "1.0.4", 12072 + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", 12073 + "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", 12074 + "dev": true, 12075 + "license": "MIT", 12076 + "dependencies": { 12077 + "available-typed-arrays": "^1.0.7", 12078 + "call-bind": "^1.0.8", 12079 + "for-each": "^0.3.3", 12080 + "gopd": "^1.2.0", 12081 + "has-proto": "^1.2.0", 12082 + "is-typed-array": "^1.1.15", 12083 + "reflect.getprototypeof": "^1.0.9" 12084 + }, 12085 + "engines": { 12086 + "node": ">= 0.4" 12087 + }, 12088 + "funding": { 12089 + "url": "https://github.com/sponsors/ljharb" 12090 + } 12091 + }, 12092 + "node_modules/typed-array-length": { 12093 + "version": "1.0.7", 12094 + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", 12095 + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", 12096 + "dev": true, 12097 + "license": "MIT", 12098 + "dependencies": { 12099 + "call-bind": "^1.0.7", 12100 + "for-each": "^0.3.3", 12101 + "gopd": "^1.0.1", 12102 + "is-typed-array": "^1.1.13", 12103 + "possible-typed-array-names": "^1.0.0", 12104 + "reflect.getprototypeof": "^1.0.6" 12105 + }, 12106 + "engines": { 12107 + "node": ">= 0.4" 12108 + }, 12109 + "funding": { 12110 + "url": "https://github.com/sponsors/ljharb" 12111 + } 12112 + }, 12113 + "node_modules/typescript": { 12114 + "version": "5.8.3", 12115 + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", 12116 + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", 12117 + "dev": true, 12118 + "license": "Apache-2.0", 12119 + "bin": { 12120 + "tsc": "bin/tsc", 12121 + "tsserver": "bin/tsserver" 12122 + }, 12123 + "engines": { 12124 + "node": ">=14.17" 12125 + } 12126 + }, 12127 + "node_modules/ua-parser-js": { 12128 + "version": "1.0.40", 12129 + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.40.tgz", 12130 + "integrity": "sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew==", 12131 + "funding": [ 12132 + { 12133 + "type": "opencollective", 12134 + "url": "https://opencollective.com/ua-parser-js" 12135 + }, 12136 + { 12137 + "type": "paypal", 12138 + "url": "https://paypal.me/faisalman" 12139 + }, 12140 + { 12141 + "type": "github", 12142 + "url": "https://github.com/sponsors/faisalman" 12143 + } 12144 + ], 12145 + "license": "MIT", 12146 + "bin": { 12147 + "ua-parser-js": "script/cli.js" 12148 + }, 12149 + "engines": { 12150 + "node": "*" 12151 + } 12152 + }, 12153 + "node_modules/unbox-primitive": { 12154 + "version": "1.1.0", 12155 + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", 12156 + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", 12157 + "dev": true, 12158 + "license": "MIT", 12159 + "dependencies": { 12160 + "call-bound": "^1.0.3", 12161 + "has-bigints": "^1.0.2", 12162 + "has-symbols": "^1.1.0", 12163 + "which-boxed-primitive": "^1.1.1" 12164 + }, 12165 + "engines": { 12166 + "node": ">= 0.4" 12167 + }, 12168 + "funding": { 12169 + "url": "https://github.com/sponsors/ljharb" 12170 + } 12171 + }, 12172 + "node_modules/undici": { 12173 + "version": "6.21.3", 12174 + "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.3.tgz", 12175 + "integrity": "sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw==", 12176 + "license": "MIT", 12177 + "engines": { 12178 + "node": ">=18.17" 12179 + } 12180 + }, 12181 + "node_modules/undici-types": { 12182 + "version": "7.10.0", 12183 + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.10.0.tgz", 12184 + "integrity": "sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==", 12185 + "license": "MIT" 12186 + }, 12187 + "node_modules/unicode-canonical-property-names-ecmascript": { 12188 + "version": "2.0.1", 12189 + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", 12190 + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", 12191 + "license": "MIT", 12192 + "engines": { 12193 + "node": ">=4" 12194 + } 12195 + }, 12196 + "node_modules/unicode-match-property-ecmascript": { 12197 + "version": "2.0.0", 12198 + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", 12199 + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", 12200 + "license": "MIT", 12201 + "dependencies": { 12202 + "unicode-canonical-property-names-ecmascript": "^2.0.0", 12203 + "unicode-property-aliases-ecmascript": "^2.0.0" 12204 + }, 12205 + "engines": { 12206 + "node": ">=4" 12207 + } 12208 + }, 12209 + "node_modules/unicode-match-property-value-ecmascript": { 12210 + "version": "2.2.0", 12211 + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", 12212 + "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", 12213 + "license": "MIT", 12214 + "engines": { 12215 + "node": ">=4" 12216 + } 12217 + }, 12218 + "node_modules/unicode-property-aliases-ecmascript": { 12219 + "version": "2.1.0", 12220 + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", 12221 + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", 12222 + "license": "MIT", 12223 + "engines": { 12224 + "node": ">=4" 12225 + } 12226 + }, 12227 + "node_modules/unique-string": { 12228 + "version": "2.0.0", 12229 + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", 12230 + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", 12231 + "license": "MIT", 12232 + "dependencies": { 12233 + "crypto-random-string": "^2.0.0" 12234 + }, 12235 + "engines": { 12236 + "node": ">=8" 12237 + } 12238 + }, 12239 + "node_modules/unpipe": { 12240 + "version": "1.0.0", 12241 + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 12242 + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", 12243 + "license": "MIT", 12244 + "engines": { 12245 + "node": ">= 0.8" 12246 + } 12247 + }, 12248 + "node_modules/unrs-resolver": { 12249 + "version": "1.11.1", 12250 + "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.11.1.tgz", 12251 + "integrity": "sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==", 12252 + "dev": true, 12253 + "hasInstallScript": true, 12254 + "license": "MIT", 12255 + "dependencies": { 12256 + "napi-postinstall": "^0.3.0" 12257 + }, 12258 + "funding": { 12259 + "url": "https://opencollective.com/unrs-resolver" 12260 + }, 12261 + "optionalDependencies": { 12262 + "@unrs/resolver-binding-android-arm-eabi": "1.11.1", 12263 + "@unrs/resolver-binding-android-arm64": "1.11.1", 12264 + "@unrs/resolver-binding-darwin-arm64": "1.11.1", 12265 + "@unrs/resolver-binding-darwin-x64": "1.11.1", 12266 + "@unrs/resolver-binding-freebsd-x64": "1.11.1", 12267 + "@unrs/resolver-binding-linux-arm-gnueabihf": "1.11.1", 12268 + "@unrs/resolver-binding-linux-arm-musleabihf": "1.11.1", 12269 + "@unrs/resolver-binding-linux-arm64-gnu": "1.11.1", 12270 + "@unrs/resolver-binding-linux-arm64-musl": "1.11.1", 12271 + "@unrs/resolver-binding-linux-ppc64-gnu": "1.11.1", 12272 + "@unrs/resolver-binding-linux-riscv64-gnu": "1.11.1", 12273 + "@unrs/resolver-binding-linux-riscv64-musl": "1.11.1", 12274 + "@unrs/resolver-binding-linux-s390x-gnu": "1.11.1", 12275 + "@unrs/resolver-binding-linux-x64-gnu": "1.11.1", 12276 + "@unrs/resolver-binding-linux-x64-musl": "1.11.1", 12277 + "@unrs/resolver-binding-wasm32-wasi": "1.11.1", 12278 + "@unrs/resolver-binding-win32-arm64-msvc": "1.11.1", 12279 + "@unrs/resolver-binding-win32-ia32-msvc": "1.11.1", 12280 + "@unrs/resolver-binding-win32-x64-msvc": "1.11.1" 12281 + } 12282 + }, 12283 + "node_modules/update-browserslist-db": { 12284 + "version": "1.1.3", 12285 + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", 12286 + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", 12287 + "funding": [ 12288 + { 12289 + "type": "opencollective", 12290 + "url": "https://opencollective.com/browserslist" 12291 + }, 12292 + { 12293 + "type": "tidelift", 12294 + "url": "https://tidelift.com/funding/github/npm/browserslist" 12295 + }, 12296 + { 12297 + "type": "github", 12298 + "url": "https://github.com/sponsors/ai" 12299 + } 12300 + ], 12301 + "license": "MIT", 12302 + "dependencies": { 12303 + "escalade": "^3.2.0", 12304 + "picocolors": "^1.1.1" 12305 + }, 12306 + "bin": { 12307 + "update-browserslist-db": "cli.js" 12308 + }, 12309 + "peerDependencies": { 12310 + "browserslist": ">= 4.21.0" 12311 + } 12312 + }, 12313 + "node_modules/uri-js": { 12314 + "version": "4.4.1", 12315 + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 12316 + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 12317 + "dev": true, 12318 + "license": "BSD-2-Clause", 12319 + "dependencies": { 12320 + "punycode": "^2.1.0" 12321 + } 12322 + }, 12323 + "node_modules/use-latest-callback": { 12324 + "version": "0.2.4", 12325 + "resolved": "https://registry.npmjs.org/use-latest-callback/-/use-latest-callback-0.2.4.tgz", 12326 + "integrity": "sha512-LS2s2n1usUUnDq4oVh1ca6JFX9uSqUncTfAm44WMg0v6TxL7POUTk1B044NH8TeLkFbNajIsgDHcgNpNzZucdg==", 12327 + "license": "MIT", 12328 + "peerDependencies": { 12329 + "react": ">=16.8" 12330 + } 12331 + }, 12332 + "node_modules/use-sync-external-store": { 12333 + "version": "1.5.0", 12334 + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.5.0.tgz", 12335 + "integrity": "sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==", 12336 + "license": "MIT", 12337 + "peerDependencies": { 12338 + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" 12339 + } 12340 + }, 12341 + "node_modules/utils-merge": { 12342 + "version": "1.0.1", 12343 + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 12344 + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", 12345 + "license": "MIT", 12346 + "engines": { 12347 + "node": ">= 0.4.0" 12348 + } 12349 + }, 12350 + "node_modules/uuid": { 12351 + "version": "7.0.3", 12352 + "resolved": "https://registry.npmjs.org/uuid/-/uuid-7.0.3.tgz", 12353 + "integrity": "sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==", 12354 + "license": "MIT", 12355 + "bin": { 12356 + "uuid": "dist/bin/uuid" 12357 + } 12358 + }, 12359 + "node_modules/validate-npm-package-name": { 12360 + "version": "5.0.1", 12361 + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz", 12362 + "integrity": "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==", 12363 + "license": "ISC", 12364 + "engines": { 12365 + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" 12366 + } 12367 + }, 12368 + "node_modules/vary": { 12369 + "version": "1.1.2", 12370 + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 12371 + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", 12372 + "license": "MIT", 12373 + "engines": { 12374 + "node": ">= 0.8" 12375 + } 12376 + }, 12377 + "node_modules/vlq": { 12378 + "version": "1.0.1", 12379 + "resolved": "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz", 12380 + "integrity": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==", 12381 + "license": "MIT" 12382 + }, 12383 + "node_modules/walker": { 12384 + "version": "1.0.8", 12385 + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", 12386 + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", 12387 + "license": "Apache-2.0", 12388 + "dependencies": { 12389 + "makeerror": "1.0.12" 12390 + } 12391 + }, 12392 + "node_modules/warn-once": { 12393 + "version": "0.1.1", 12394 + "resolved": "https://registry.npmjs.org/warn-once/-/warn-once-0.1.1.tgz", 12395 + "integrity": "sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==", 12396 + "license": "MIT" 12397 + }, 12398 + "node_modules/wcwidth": { 12399 + "version": "1.0.1", 12400 + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", 12401 + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", 12402 + "license": "MIT", 12403 + "dependencies": { 12404 + "defaults": "^1.0.3" 12405 + } 12406 + }, 12407 + "node_modules/webidl-conversions": { 12408 + "version": "3.0.1", 12409 + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 12410 + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", 12411 + "license": "BSD-2-Clause" 12412 + }, 12413 + "node_modules/whatwg-fetch": { 12414 + "version": "3.6.20", 12415 + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", 12416 + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==", 12417 + "license": "MIT" 12418 + }, 12419 + "node_modules/whatwg-url": { 12420 + "version": "5.0.0", 12421 + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 12422 + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", 12423 + "license": "MIT", 12424 + "dependencies": { 12425 + "tr46": "~0.0.3", 12426 + "webidl-conversions": "^3.0.0" 12427 + } 12428 + }, 12429 + "node_modules/whatwg-url-without-unicode": { 12430 + "version": "8.0.0-3", 12431 + "resolved": "https://registry.npmjs.org/whatwg-url-without-unicode/-/whatwg-url-without-unicode-8.0.0-3.tgz", 12432 + "integrity": "sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==", 12433 + "license": "MIT", 12434 + "dependencies": { 12435 + "buffer": "^5.4.3", 12436 + "punycode": "^2.1.1", 12437 + "webidl-conversions": "^5.0.0" 12438 + }, 12439 + "engines": { 12440 + "node": ">=10" 12441 + } 12442 + }, 12443 + "node_modules/whatwg-url-without-unicode/node_modules/webidl-conversions": { 12444 + "version": "5.0.0", 12445 + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", 12446 + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", 12447 + "license": "BSD-2-Clause", 12448 + "engines": { 12449 + "node": ">=8" 12450 + } 12451 + }, 12452 + "node_modules/which": { 12453 + "version": "2.0.2", 12454 + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 12455 + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 12456 + "license": "ISC", 12457 + "dependencies": { 12458 + "isexe": "^2.0.0" 12459 + }, 12460 + "bin": { 12461 + "node-which": "bin/node-which" 12462 + }, 12463 + "engines": { 12464 + "node": ">= 8" 12465 + } 12466 + }, 12467 + "node_modules/which-boxed-primitive": { 12468 + "version": "1.1.1", 12469 + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", 12470 + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", 12471 + "dev": true, 12472 + "license": "MIT", 12473 + "dependencies": { 12474 + "is-bigint": "^1.1.0", 12475 + "is-boolean-object": "^1.2.1", 12476 + "is-number-object": "^1.1.1", 12477 + "is-string": "^1.1.1", 12478 + "is-symbol": "^1.1.1" 12479 + }, 12480 + "engines": { 12481 + "node": ">= 0.4" 12482 + }, 12483 + "funding": { 12484 + "url": "https://github.com/sponsors/ljharb" 12485 + } 12486 + }, 12487 + "node_modules/which-builtin-type": { 12488 + "version": "1.2.1", 12489 + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", 12490 + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", 12491 + "dev": true, 12492 + "license": "MIT", 12493 + "dependencies": { 12494 + "call-bound": "^1.0.2", 12495 + "function.prototype.name": "^1.1.6", 12496 + "has-tostringtag": "^1.0.2", 12497 + "is-async-function": "^2.0.0", 12498 + "is-date-object": "^1.1.0", 12499 + "is-finalizationregistry": "^1.1.0", 12500 + "is-generator-function": "^1.0.10", 12501 + "is-regex": "^1.2.1", 12502 + "is-weakref": "^1.0.2", 12503 + "isarray": "^2.0.5", 12504 + "which-boxed-primitive": "^1.1.0", 12505 + "which-collection": "^1.0.2", 12506 + "which-typed-array": "^1.1.16" 12507 + }, 12508 + "engines": { 12509 + "node": ">= 0.4" 12510 + }, 12511 + "funding": { 12512 + "url": "https://github.com/sponsors/ljharb" 12513 + } 12514 + }, 12515 + "node_modules/which-collection": { 12516 + "version": "1.0.2", 12517 + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", 12518 + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", 12519 + "dev": true, 12520 + "license": "MIT", 12521 + "dependencies": { 12522 + "is-map": "^2.0.3", 12523 + "is-set": "^2.0.3", 12524 + "is-weakmap": "^2.0.2", 12525 + "is-weakset": "^2.0.3" 12526 + }, 12527 + "engines": { 12528 + "node": ">= 0.4" 12529 + }, 12530 + "funding": { 12531 + "url": "https://github.com/sponsors/ljharb" 12532 + } 12533 + }, 12534 + "node_modules/which-typed-array": { 12535 + "version": "1.1.19", 12536 + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz", 12537 + "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==", 12538 + "dev": true, 12539 + "license": "MIT", 12540 + "dependencies": { 12541 + "available-typed-arrays": "^1.0.7", 12542 + "call-bind": "^1.0.8", 12543 + "call-bound": "^1.0.4", 12544 + "for-each": "^0.3.5", 12545 + "get-proto": "^1.0.1", 12546 + "gopd": "^1.2.0", 12547 + "has-tostringtag": "^1.0.2" 12548 + }, 12549 + "engines": { 12550 + "node": ">= 0.4" 12551 + }, 12552 + "funding": { 12553 + "url": "https://github.com/sponsors/ljharb" 12554 + } 12555 + }, 12556 + "node_modules/wonka": { 12557 + "version": "6.3.5", 12558 + "resolved": "https://registry.npmjs.org/wonka/-/wonka-6.3.5.tgz", 12559 + "integrity": "sha512-SSil+ecw6B4/Dm7Pf2sAshKQ5hWFvfyGlfPbEd6A14dOH6VDjrmbY86u6nZvy9omGwwIPFR8V41+of1EezgoUw==", 12560 + "license": "MIT" 12561 + }, 12562 + "node_modules/word-wrap": { 12563 + "version": "1.2.5", 12564 + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 12565 + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 12566 + "dev": true, 12567 + "license": "MIT", 12568 + "engines": { 12569 + "node": ">=0.10.0" 12570 + } 12571 + }, 12572 + "node_modules/wrap-ansi": { 12573 + "version": "7.0.0", 12574 + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 12575 + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 12576 + "license": "MIT", 12577 + "dependencies": { 12578 + "ansi-styles": "^4.0.0", 12579 + "string-width": "^4.1.0", 12580 + "strip-ansi": "^6.0.0" 12581 + }, 12582 + "engines": { 12583 + "node": ">=10" 12584 + }, 12585 + "funding": { 12586 + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 12587 + } 12588 + }, 12589 + "node_modules/wrap-ansi-cjs": { 12590 + "name": "wrap-ansi", 12591 + "version": "7.0.0", 12592 + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 12593 + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 12594 + "license": "MIT", 12595 + "dependencies": { 12596 + "ansi-styles": "^4.0.0", 12597 + "string-width": "^4.1.0", 12598 + "strip-ansi": "^6.0.0" 12599 + }, 12600 + "engines": { 12601 + "node": ">=10" 12602 + }, 12603 + "funding": { 12604 + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 12605 + } 12606 + }, 12607 + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { 12608 + "version": "8.0.0", 12609 + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 12610 + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 12611 + "license": "MIT" 12612 + }, 12613 + "node_modules/wrap-ansi-cjs/node_modules/string-width": { 12614 + "version": "4.2.3", 12615 + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 12616 + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 12617 + "license": "MIT", 12618 + "dependencies": { 12619 + "emoji-regex": "^8.0.0", 12620 + "is-fullwidth-code-point": "^3.0.0", 12621 + "strip-ansi": "^6.0.1" 12622 + }, 12623 + "engines": { 12624 + "node": ">=8" 12625 + } 12626 + }, 12627 + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { 12628 + "version": "6.0.1", 12629 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 12630 + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 12631 + "license": "MIT", 12632 + "dependencies": { 12633 + "ansi-regex": "^5.0.1" 12634 + }, 12635 + "engines": { 12636 + "node": ">=8" 12637 + } 12638 + }, 12639 + "node_modules/wrap-ansi/node_modules/emoji-regex": { 12640 + "version": "8.0.0", 12641 + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 12642 + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 12643 + "license": "MIT" 12644 + }, 12645 + "node_modules/wrap-ansi/node_modules/string-width": { 12646 + "version": "4.2.3", 12647 + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 12648 + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 12649 + "license": "MIT", 12650 + "dependencies": { 12651 + "emoji-regex": "^8.0.0", 12652 + "is-fullwidth-code-point": "^3.0.0", 12653 + "strip-ansi": "^6.0.1" 12654 + }, 12655 + "engines": { 12656 + "node": ">=8" 12657 + } 12658 + }, 12659 + "node_modules/wrap-ansi/node_modules/strip-ansi": { 12660 + "version": "6.0.1", 12661 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 12662 + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 12663 + "license": "MIT", 12664 + "dependencies": { 12665 + "ansi-regex": "^5.0.1" 12666 + }, 12667 + "engines": { 12668 + "node": ">=8" 12669 + } 12670 + }, 12671 + "node_modules/wrappy": { 12672 + "version": "1.0.2", 12673 + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 12674 + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 12675 + "license": "ISC" 12676 + }, 12677 + "node_modules/write-file-atomic": { 12678 + "version": "4.0.2", 12679 + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", 12680 + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", 12681 + "license": "ISC", 12682 + "dependencies": { 12683 + "imurmurhash": "^0.1.4", 12684 + "signal-exit": "^3.0.7" 12685 + }, 12686 + "engines": { 12687 + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 12688 + } 12689 + }, 12690 + "node_modules/write-file-atomic/node_modules/signal-exit": { 12691 + "version": "3.0.7", 12692 + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 12693 + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", 12694 + "license": "ISC" 12695 + }, 12696 + "node_modules/ws": { 12697 + "version": "8.18.3", 12698 + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", 12699 + "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==", 12700 + "license": "MIT", 12701 + "engines": { 12702 + "node": ">=10.0.0" 12703 + }, 12704 + "peerDependencies": { 12705 + "bufferutil": "^4.0.1", 12706 + "utf-8-validate": ">=5.0.2" 12707 + }, 12708 + "peerDependenciesMeta": { 12709 + "bufferutil": { 12710 + "optional": true 12711 + }, 12712 + "utf-8-validate": { 12713 + "optional": true 12714 + } 12715 + } 12716 + }, 12717 + "node_modules/xcode": { 12718 + "version": "3.0.1", 12719 + "resolved": "https://registry.npmjs.org/xcode/-/xcode-3.0.1.tgz", 12720 + "integrity": "sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==", 12721 + "license": "Apache-2.0", 12722 + "dependencies": { 12723 + "simple-plist": "^1.1.0", 12724 + "uuid": "^7.0.3" 12725 + }, 12726 + "engines": { 12727 + "node": ">=10.0.0" 12728 + } 12729 + }, 12730 + "node_modules/xml2js": { 12731 + "version": "0.6.0", 12732 + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.0.tgz", 12733 + "integrity": "sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==", 12734 + "license": "MIT", 12735 + "dependencies": { 12736 + "sax": ">=0.6.0", 12737 + "xmlbuilder": "~11.0.0" 12738 + }, 12739 + "engines": { 12740 + "node": ">=4.0.0" 12741 + } 12742 + }, 12743 + "node_modules/xml2js/node_modules/xmlbuilder": { 12744 + "version": "11.0.1", 12745 + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", 12746 + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", 12747 + "license": "MIT", 12748 + "engines": { 12749 + "node": ">=4.0" 12750 + } 12751 + }, 12752 + "node_modules/xmlbuilder": { 12753 + "version": "15.1.1", 12754 + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", 12755 + "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", 12756 + "license": "MIT", 12757 + "engines": { 12758 + "node": ">=8.0" 12759 + } 12760 + }, 12761 + "node_modules/y18n": { 12762 + "version": "5.0.8", 12763 + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 12764 + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 12765 + "license": "ISC", 12766 + "engines": { 12767 + "node": ">=10" 12768 + } 12769 + }, 12770 + "node_modules/yallist": { 12771 + "version": "3.1.1", 12772 + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 12773 + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 12774 + "license": "ISC" 12775 + }, 12776 + "node_modules/yargs": { 12777 + "version": "17.7.2", 12778 + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 12779 + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 12780 + "license": "MIT", 12781 + "dependencies": { 12782 + "cliui": "^8.0.1", 12783 + "escalade": "^3.1.1", 12784 + "get-caller-file": "^2.0.5", 12785 + "require-directory": "^2.1.1", 12786 + "string-width": "^4.2.3", 12787 + "y18n": "^5.0.5", 12788 + "yargs-parser": "^21.1.1" 12789 + }, 12790 + "engines": { 12791 + "node": ">=12" 12792 + } 12793 + }, 12794 + "node_modules/yargs-parser": { 12795 + "version": "21.1.1", 12796 + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 12797 + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 12798 + "license": "ISC", 12799 + "engines": { 12800 + "node": ">=12" 12801 + } 12802 + }, 12803 + "node_modules/yargs/node_modules/emoji-regex": { 12804 + "version": "8.0.0", 12805 + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 12806 + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 12807 + "license": "MIT" 12808 + }, 12809 + "node_modules/yargs/node_modules/string-width": { 12810 + "version": "4.2.3", 12811 + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 12812 + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 12813 + "license": "MIT", 12814 + "dependencies": { 12815 + "emoji-regex": "^8.0.0", 12816 + "is-fullwidth-code-point": "^3.0.0", 12817 + "strip-ansi": "^6.0.1" 12818 + }, 12819 + "engines": { 12820 + "node": ">=8" 12821 + } 12822 + }, 12823 + "node_modules/yargs/node_modules/strip-ansi": { 12824 + "version": "6.0.1", 12825 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 12826 + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 12827 + "license": "MIT", 12828 + "dependencies": { 12829 + "ansi-regex": "^5.0.1" 12830 + }, 12831 + "engines": { 12832 + "node": ">=8" 12833 + } 12834 + }, 12835 + "node_modules/yocto-queue": { 12836 + "version": "0.1.0", 12837 + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 12838 + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 12839 + "license": "MIT", 12840 + "engines": { 12841 + "node": ">=10" 12842 + }, 12843 + "funding": { 12844 + "url": "https://github.com/sponsors/sindresorhus" 12845 + } 12846 + } 12847 + } 12848 + }
+49
package.json
··· 1 + { 2 + "name": "atproto-auth-demo", 3 + "main": "expo-router/entry", 4 + "version": "1.0.0", 5 + "scripts": { 6 + "start": "expo start", 7 + "reset-project": "node ./scripts/reset-project.js", 8 + "android": "expo start --android", 9 + "ios": "expo start --ios", 10 + "web": "expo start --web", 11 + "lint": "expo lint" 12 + }, 13 + "dependencies": { 14 + "@expo/vector-icons": "^14.1.0", 15 + "@react-navigation/bottom-tabs": "^7.3.10", 16 + "@react-navigation/elements": "^2.3.8", 17 + "@react-navigation/native": "^7.1.6", 18 + "expo": "~53.0.20", 19 + "expo-blur": "~14.1.5", 20 + "expo-constants": "~17.1.7", 21 + "expo-font": "~13.3.2", 22 + "expo-haptics": "~14.1.4", 23 + "expo-image": "~2.4.0", 24 + "expo-linking": "~7.1.7", 25 + "expo-router": "~5.1.4", 26 + "expo-splash-screen": "~0.30.10", 27 + "expo-status-bar": "~2.2.3", 28 + "expo-symbols": "~0.4.5", 29 + "expo-system-ui": "~5.0.10", 30 + "expo-web-browser": "~14.2.0", 31 + "react": "19.0.0", 32 + "react-dom": "19.0.0", 33 + "react-native": "0.79.5", 34 + "react-native-gesture-handler": "~2.24.0", 35 + "react-native-reanimated": "~3.17.4", 36 + "react-native-safe-area-context": "5.4.0", 37 + "react-native-screens": "~4.11.1", 38 + "react-native-web": "~0.20.0", 39 + "react-native-webview": "13.13.5" 40 + }, 41 + "devDependencies": { 42 + "@babel/core": "^7.25.2", 43 + "@types/react": "~19.0.10", 44 + "typescript": "~5.8.3", 45 + "eslint": "^9.25.0", 46 + "eslint-config-expo": "~9.2.0" 47 + }, 48 + "private": true 49 + }
+112
scripts/reset-project.js
··· 1 + #!/usr/bin/env node 2 + 3 + /** 4 + * This script is used to reset the project to a blank state. 5 + * It deletes or moves the /app, /components, /hooks, /scripts, and /constants directories to /app-example based on user input and creates a new /app directory with an index.tsx and _layout.tsx file. 6 + * You can remove the `reset-project` script from package.json and safely delete this file after running it. 7 + */ 8 + 9 + const fs = require("fs"); 10 + const path = require("path"); 11 + const readline = require("readline"); 12 + 13 + const root = process.cwd(); 14 + const oldDirs = ["app", "components", "hooks", "constants", "scripts"]; 15 + const exampleDir = "app-example"; 16 + const newAppDir = "app"; 17 + const exampleDirPath = path.join(root, exampleDir); 18 + 19 + const indexContent = `import { Text, View } from "react-native"; 20 + 21 + export default function Index() { 22 + return ( 23 + <View 24 + style={{ 25 + flex: 1, 26 + justifyContent: "center", 27 + alignItems: "center", 28 + }} 29 + > 30 + <Text>Edit app/index.tsx to edit this screen.</Text> 31 + </View> 32 + ); 33 + } 34 + `; 35 + 36 + const layoutContent = `import { Stack } from "expo-router"; 37 + 38 + export default function RootLayout() { 39 + return <Stack />; 40 + } 41 + `; 42 + 43 + const rl = readline.createInterface({ 44 + input: process.stdin, 45 + output: process.stdout, 46 + }); 47 + 48 + const moveDirectories = async (userInput) => { 49 + try { 50 + if (userInput === "y") { 51 + // Create the app-example directory 52 + await fs.promises.mkdir(exampleDirPath, { recursive: true }); 53 + console.log(`📁 /${exampleDir} directory created.`); 54 + } 55 + 56 + // Move old directories to new app-example directory or delete them 57 + for (const dir of oldDirs) { 58 + const oldDirPath = path.join(root, dir); 59 + if (fs.existsSync(oldDirPath)) { 60 + if (userInput === "y") { 61 + const newDirPath = path.join(root, exampleDir, dir); 62 + await fs.promises.rename(oldDirPath, newDirPath); 63 + console.log(`➡️ /${dir} moved to /${exampleDir}/${dir}.`); 64 + } else { 65 + await fs.promises.rm(oldDirPath, { recursive: true, force: true }); 66 + console.log(`❌ /${dir} deleted.`); 67 + } 68 + } else { 69 + console.log(`➡️ /${dir} does not exist, skipping.`); 70 + } 71 + } 72 + 73 + // Create new /app directory 74 + const newAppDirPath = path.join(root, newAppDir); 75 + await fs.promises.mkdir(newAppDirPath, { recursive: true }); 76 + console.log("\n📁 New /app directory created."); 77 + 78 + // Create index.tsx 79 + const indexPath = path.join(newAppDirPath, "index.tsx"); 80 + await fs.promises.writeFile(indexPath, indexContent); 81 + console.log("📄 app/index.tsx created."); 82 + 83 + // Create _layout.tsx 84 + const layoutPath = path.join(newAppDirPath, "_layout.tsx"); 85 + await fs.promises.writeFile(layoutPath, layoutContent); 86 + console.log("📄 app/_layout.tsx created."); 87 + 88 + console.log("\n✅ Project reset complete. Next steps:"); 89 + console.log( 90 + `1. Run \`npx expo start\` to start a development server.\n2. Edit app/index.tsx to edit the main screen.${ 91 + userInput === "y" 92 + ? `\n3. Delete the /${exampleDir} directory when you're done referencing it.` 93 + : "" 94 + }` 95 + ); 96 + } catch (error) { 97 + console.error(`❌ Error during script execution: ${error.message}`); 98 + } 99 + }; 100 + 101 + rl.question( 102 + "Do you want to move existing files to /app-example instead of deleting them? (Y/n): ", 103 + (answer) => { 104 + const userInput = answer.trim().toLowerCase() || "y"; 105 + if (userInput === "y" || userInput === "n") { 106 + moveDirectories(userInput).finally(() => rl.close()); 107 + } else { 108 + console.log("❌ Invalid input. Please enter 'Y' or 'N'."); 109 + rl.close(); 110 + } 111 + } 112 + );
+17
tsconfig.json
··· 1 + { 2 + "extends": "expo/tsconfig.base", 3 + "compilerOptions": { 4 + "strict": true, 5 + "paths": { 6 + "@/*": [ 7 + "./*" 8 + ] 9 + } 10 + }, 11 + "include": [ 12 + "**/*.ts", 13 + "**/*.tsx", 14 + ".expo/types/**/*.ts", 15 + "expo-env.d.ts" 16 + ] 17 + }