diff --git a/__tests__/LandingScreen-test.tsx b/__tests__/LandingScreen-test.tsx
index afafaac..bffa30f 100644
--- a/__tests__/LandingScreen-test.tsx
+++ b/__tests__/LandingScreen-test.tsx
@@ -7,38 +7,32 @@ jest.mock('expo-router', () => ({
useRouter: () => ({
push: jest.fn(),
replace: jest.fn(),
+ navigate: jest.fn(),
back: jest.fn(),
}),
+ Stack: { Screen: () => null },
}));
-// Mock expo-constants
-jest.mock('expo-constants', () => ({
- expoConfig: {
- extra: {
- provider: {
- name: 'AC2-Controller',
- primaryColor: '#3B82F6',
- secondaryColor: '#E1EFFF',
- accentColor: '#10B981',
- welcomeMessage: 'Your identity, connected.',
- showAccounts: true,
- showPasskeys: true,
- showIdentities: true,
- showConnections: true,
- },
- },
- },
+// Mock react-native-mmkv — the sessions/messages stores back the chat list and
+// instantiate MMKV at import time, which has no native module under jest.
+jest.mock('react-native-mmkv', () => ({
+ createMMKV: () => ({
+ getString: jest.fn(() => undefined),
+ set: jest.fn(),
+ }),
}));
-// Mock useProvider hook
+// Mock useProvider — pulled in transitively by MenuDrawer; the real module loads
+// the native keystore, which is unavailable under jest.
jest.mock('@/hooks/useProvider', () => ({
useProvider: () => ({
key: { store: { clear: jest.fn() } },
identity: { store: { clear: jest.fn() } },
account: { store: { clear: jest.fn() } },
passkey: { store: { clear: jest.fn() } },
- identities: [{ did: 'did:key:z6Mkh...' }],
- accounts: [{ address: 'ADDR123...', balance: 100 }],
+ keys: [],
+ identities: [],
+ accounts: [],
passkeys: [],
sessions: [],
}),
@@ -49,12 +43,23 @@ jest.mock('@expo/vector-icons', () => ({
MaterialIcons: 'MaterialIcons',
}));
+// Isolate the chat list under test from heavy presentational wrappers that rely
+// on @gorhom/bottom-sheet context (provided at the app root, not in this unit).
+jest.mock('@/components/MenuDrawer', () => {
+ const ReactModule = require('react');
+ return {
+ MenuDrawer: ({ children }: { children: React.ReactNode }) =>
+ ReactModule.createElement(ReactModule.Fragment, null, children),
+ };
+});
+jest.mock('@/components/ServiceSecretKeyVaultModal', () => ({
+ ServiceSecretKeyVaultModal: () => null,
+}));
+
describe('', () => {
- it('renders the core landing actions', () => {
+ it('shows the empty state when there are no connections', () => {
const { getByText } = render();
- expect(getByText('Pair')).toBeTruthy();
- expect(getByText('Diagnostics')).toBeTruthy();
- expect(getByText('Reset Wallet')).toBeTruthy();
+ expect(getByText('No chats available yet')).toBeTruthy();
});
});
diff --git a/app.config.js b/app.config.js
index b435d40..098ecf5 100644
--- a/app.config.js
+++ b/app.config.js
@@ -65,13 +65,22 @@ module.exports = {
},
plugins: [
'expo-router',
+ [
+ 'expo-font',
+ {
+ fonts: [
+ './assets/fonts/PlusJakartaSans-VariableFont_wght.ttf',
+ './assets/fonts/PlusJakartaSans-Italic-VariableFont_wght.ttf',
+ ],
+ },
+ ],
[
'expo-splash-screen',
{
- image: './assets/images/splash-icon.png',
- imageWidth: 200,
+ image: './assets/splash-icon.png',
+ imageWidth: 578,
resizeMode: 'contain',
- backgroundColor: '#ffffff',
+ backgroundColor: '#1a73e8',
dark: {
backgroundColor: '#000000',
},
diff --git a/app/_layout.tsx b/app/_layout.tsx
index e75c769..cb49372 100644
--- a/app/_layout.tsx
+++ b/app/_layout.tsx
@@ -16,6 +16,12 @@ import { bootstrap } from '@/lib/keystore/bootstrap';
import { PreventScreenshotProvider } from '@/providers/PreventScreenshotProvider';
import React from 'react';
import { ReactKeystoreOptions } from '@algorandfoundation/react-native-keystore';
+import { GestureHandlerRootView } from 'react-native-gesture-handler';
+import { BottomSheetModalProvider } from '@gorhom/bottom-sheet';
+import * as SplashScreen from 'expo-splash-screen';
+
+// Keep the splash screen visible while we fetch resources
+SplashScreen.preventAutoHideAsync();
globalPolyfill();
registerGlobals();
@@ -84,10 +90,14 @@ export default function RootLayout() {
});
return (
-
+
-
+
+
+
+
+
-
+
);
}
diff --git a/app/chat.tsx b/app/chat.tsx
index 6f1c80a..b5844fc 100644
--- a/app/chat.tsx
+++ b/app/chat.tsx
@@ -1,94 +1,38 @@
-import React, { useState, useRef, useEffect, useMemo } from 'react';
+import { AC2TelemetryTraceModal } from '@/components/ac2/TelemetryTraceModal';
+import { ChatHeaderActions } from '@/components/chat/ChatHeaderActions';
+import { AppText } from '@/components/Text';
+import { ChatInput } from '@/components/chat/ChatInput';
+import { ChatTimeline } from '@/components/chat/ChatTimeline';
+import { ThreadBar } from '@/components/chat/ThreadBar';
+import { buildTimeline, type TimelineEntry } from '@/components/chat/timeline';
+import { useAc2Responders } from '@/hooks/useAc2Responders';
+import { useConnection } from '@/hooks/useConnection';
+import { ac2MessagesStore, clearAc2Messages } from '@/stores/ac2Messages';
+import { clearMessages, messagesStore } from '@/stores/messages';
+import { theme } from '@/theme';
+import { MaterialIcons } from '@expo/vector-icons';
+import { BottomSheetModal } from '@gorhom/bottom-sheet';
+import { useStore } from '@tanstack/react-store';
+import { Stack, useLocalSearchParams, useRouter } from 'expo-router';
+import React, { useEffect, useMemo, useRef, useState } from 'react';
import {
- Alert,
- StyleSheet,
- Text,
- View,
- TextInput,
- TouchableOpacity,
FlatList,
- ScrollView,
- KeyboardAvoidingView,
- Platform,
Keyboard,
+ NativeScrollEvent,
+ NativeSyntheticEvent,
+ Platform,
+ StyleSheet,
+ TouchableOpacity,
+ View,
} from 'react-native';
-import { SafeAreaView } from 'react-native-safe-area-context';
-import { Stack, useRouter, useLocalSearchParams } from 'expo-router';
-import { MaterialIcons } from '@expo/vector-icons';
-import { useStore } from '@tanstack/react-store';
-import type {
- AC2KeyRequest as KeyRequestMessage,
- AC2SigningRequest as SigningRequestMessage,
-} from '@algorandfoundation/ac2-sdk/schema';
-import { messagesStore, Message, clearMessages } from '@/stores/messages';
-import { ac2MessagesStore, Ac2MessageEntry, clearAc2Messages } from '@/stores/ac2Messages';
-import { useConnection } from '@/hooks/useConnection';
-import { useAc2Responders } from '@/hooks/useAc2Responders';
-
-// Unified timeline entry — keeps free-text chat and AC2 protocol messages
-// in the same scroll view while preserving their distinct typing/rendering.
-type TimelineEntry =
- | { kind: 'text'; id: string; timestamp: number; data: Message }
- | { kind: 'ac2'; id: string; timestamp: number; data: Ac2MessageEntry }
- | {
- kind: 'typing';
- id: string;
- timestamp: number;
- text: string;
- presence: 'thinking' | 'tool' | 'typing';
- detail?: string | null;
- };
+import { SafeAreaView, useSafeAreaInsets } from 'react-native-safe-area-context';
-// A durable "tool card": one tool/exec step the agent ran during a turn,
-// rendered distinctly from chat bubbles. Collapsed by default — only the tool
-// name (and a one-line command preview) shows, keeping a busy turn's exec
-// activity from flooding the conversation. Tapping the header expands the card
-// to reveal the full command and (potentially long) output.
-function ToolActivityCard({ message }: { message: Message }) {
- const [expanded, setExpanded] = useState(false);
- const toolName = message.tool || 'tool';
- const hasOutput = !!message.output && message.output.trim().length > 0;
- const hasCommand = !!message.command && message.command.trim().length > 0;
- const hasBody = hasOutput || hasCommand;
- return (
-
- setExpanded((v) => !v)}
- activeOpacity={hasBody ? 0.6 : 1}
- disabled={!hasBody}
- >
-
- {toolName}
- {/* When collapsed, surface a compact one-line command preview so the
- user can tell what ran without expanding the whole card. */}
- {!expanded && hasCommand && (
-
- {message.command}
-
- )}
-
- {new Date(message.timestamp).toLocaleTimeString([], {
- hour: '2-digit',
- minute: '2-digit',
- })}
-
- {hasBody && (
-
- )}
-
- {expanded && hasCommand && {`$ ${message.command}`}}
- {expanded && hasOutput && {message.output}}
-
- );
-}
+// Thread id used for messages persisted before multi-conversation support.
+const DEFAULT_THID = 'default';
export default function ChatScreen() {
const router = useRouter();
+ const insets = useSafeAreaInsets();
const params = useLocalSearchParams<{ origin: string; requestId: string }>();
const [inputText, setInputText] = useState('');
const {
@@ -120,9 +64,6 @@ export default function ChatScreen() {
requestId: params.requestId || '',
});
- // Thread id used for messages persisted before multi-conversation support.
- const DEFAULT_THID = 'default';
-
// All chat messages on this connection across every conversation thread —
// used to derive the thread switcher. Legacy messages carry no `thid` and
// are treated as the `default` thread.
@@ -203,50 +144,16 @@ export default function ChatScreen() {
return set;
}, [ac2Messages]);
- const timeline: TimelineEntry[] = [
- ...textMessages.map(
- (m): TimelineEntry => ({
- kind: 'text',
- id: `t-${m.id}`,
- timestamp: m.timestamp,
- data: m,
- }),
- ),
- ...threadAc2Messages.map(
- (m): TimelineEntry => ({
- kind: 'ac2',
- id: `a-${m.id}`,
- timestamp: m.receivedAt,
- data: m,
- }),
- ),
- ].sort((a, b) => a.timestamp - b.timestamp);
-
- // While the agent is working on a reply, render an ephemeral indicator
- // instead of a final message bubble:
- // - "Agent is thinking…" once the agent has acked the message and the
- // model is running (no tokens yet);
- // - "Agent is typing…" (with a live preview of the partial text) once
- // the reply starts streaming.
- // Both are driven by the agent's out-of-band presence frames; we also fall
- // back to `typing` whenever partial stream text exists. Once the stream
- // goes idle the accumulated text is committed as a normal peer message by
- // `useConnection`.
- const presence: 'thinking' | 'tool' | 'typing' | null = activeStreamText
- ? 'typing'
- : agentPresence;
- if (presence) {
- timeline.push({
- kind: 'typing',
- id: 'active-stream',
- timestamp: Date.now(),
- text: activeStreamText,
- presence,
- detail: agentPresenceDetail,
- });
- }
+ const timeline: TimelineEntry[] = buildTimeline({
+ textMessages,
+ ac2Messages: threadAc2Messages,
+ agentPresence,
+ activeStreamText,
+ agentPresenceDetail,
+ });
- const flatListRef = useRef(null);
+ const flatListRef = useRef>(null);
+ const telemetryModalRef = useRef(null);
// Whether the list is currently scrolled to (near) the bottom. We only
// auto-scroll on new content when the user is already at the bottom, so
// scrolling up to read earlier messages / expand a tool card is never
@@ -263,6 +170,15 @@ export default function ChatScreen() {
const [isHeartbeatVisible, setIsHeartbeatVisible] = useState(false);
+ // Height of the on-screen keyboard, driven by the OS keyboard events. Because
+ // edge-to-edge is enabled the Android window does NOT resize when the keyboard
+ // opens, so we lift the composer ourselves with a state-driven spacer below it
+ // (see the render). This is owned here, at the screen, rather than inside
+ // ChatInput — and because it's plain state it always resets to 0 on hide, with
+ // no residual padding left behind (the failure mode of KeyboardAvoidingView in
+ // this RN/new-arch/edge-to-edge combination).
+ const [keyboardHeight, setKeyboardHeight] = useState(0);
+
useEffect(() => {
if (isConnected) {
setIsHeartbeatVisible(true);
@@ -273,13 +189,7 @@ export default function ChatScreen() {
// Track how far the list is from the bottom so auto-scroll only kicks in
// when the user hasn't deliberately scrolled up.
- const handleScroll = (e: {
- nativeEvent: {
- contentOffset: { y: number };
- contentSize: { height: number };
- layoutMeasurement: { height: number };
- };
- }) => {
+ const handleScroll = (e: NativeSyntheticEvent) => {
// Only trust scroll offsets when the user is driving the scroll. This keeps
// programmatic `scrollToEnd` events (fired while content is still growing
// during streaming) from corrupting the "at bottom" state and stalling
@@ -309,14 +219,21 @@ export default function ChatScreen() {
}
};
- // Scroll to bottom when keyboard opens
+ // Track the keyboard so the screen-level spacer can lift the composer above
+ // it, and snap the list to the bottom as it opens. iOS exposes the `Will`
+ // events (smoother, fire before the animation); Android only the `Did` events.
useEffect(() => {
- const keyboardDidShowListener = Keyboard.addListener('keyboardDidShow', () => {
+ const showEvt = Platform.OS === 'ios' ? 'keyboardWillShow' : 'keyboardDidShow';
+ const hideEvt = Platform.OS === 'ios' ? 'keyboardWillHide' : 'keyboardDidHide';
+ const showSub = Keyboard.addListener(showEvt, (e) => {
+ setKeyboardHeight(e.endCoordinates.height);
flatListRef.current?.scrollToEnd({ animated: true });
});
+ const hideSub = Keyboard.addListener(hideEvt, () => setKeyboardHeight(0));
return () => {
- keyboardDidShowListener.remove();
+ showSub.remove();
+ hideSub.remove();
};
}, []);
@@ -325,316 +242,117 @@ export default function ChatScreen() {
router.back();
};
+ const handleClear = () => {
+ if (address) {
+ clearMessages(address, params.origin || '', params.requestId || '');
+ }
+ clearAc2Messages(address || '', params.origin || '', params.requestId || '');
+ };
+
const handleSend = () => {
if (inputText.trim()) {
send(inputText.trim());
+ Keyboard.dismiss();
setInputText('');
}
};
- const renderItem = ({ item }: { item: TimelineEntry }) => {
- if (item.kind === 'text') {
- const m = item.data;
- // Durable tool-activity card — render the agent's tool/exec step (command
- // + output) as a distinct, expandable card rather than a chat bubble.
- if (m.kind === 'tool') {
- return ;
- }
- return (
-
-
- {m.text}
-
-
- {new Date(m.timestamp).toLocaleTimeString([], {
- hour: '2-digit',
- minute: '2-digit',
- })}
-
-
- );
- }
+ const headerTitle = isConnected
+ ? 'Connected'
+ : isLoading
+ ? 'Connecting...'
+ : isError
+ ? 'Error'
+ : 'Disconnected';
+
+ // Height of the spacer that sits below the composer. While the keyboard is
+ // open we lift the composer to its top; while it's closed we just clear the
+ // nav bar / home indicator. On Android with edge-to-edge the keyboard's
+ // reported height excludes the navigation bar inset, so the keys overlap the
+ // composer by that amount unless we add it back.
+ const composerSpacer =
+ keyboardHeight > 0
+ ? keyboardHeight + (Platform.OS === 'android' ? insets.bottom : 0)
+ : insets.bottom;
- // The agent is working on a reply — show a "thinking…" indicator until
- // the first token lands, then a "typing…" indicator with a live preview
- // of the text received so far.
- if (item.kind === 'typing') {
- const isThinking = item.presence === 'thinking';
- const isTool = item.presence === 'tool';
- // Choose an icon + label per presence: thinking (model running), tool
- // (running an operation, optionally named), or typing (streaming reply).
- const iconName = isThinking ? 'psychology' : isTool ? 'build' : 'more-horiz';
- const label = isThinking
- ? 'Agent is thinking…'
- : isTool
- ? item.detail
- ? `Agent is running ${item.detail}…`
- : 'Agent is working…'
- : 'Agent is typing…';
- return (
-
- {item.text.trim().length > 0 && (
- {item.text}
- )}
-
-
- {label}
-
-
- );
- }
-
- // AC2 protocol message — rendered as a distinct, monospaced card so the
- // protocol surface is visually obvious in the reference UI.
- const m = item.data;
- const isOutbound = m.direction === 'outbound';
- const isInboundSigningRequest = !isOutbound && m.envelope.type === 'ac2/SigningRequest';
- const isInboundKeyRequest = !isOutbound && m.envelope.type === 'ac2/KeyRequest';
- const req = isInboundSigningRequest ? (m.envelope as SigningRequestMessage) : null;
- const keyReq = isInboundKeyRequest ? (m.envelope as KeyRequestMessage) : null;
- const actionable = req ?? keyReq;
- const actioned = actionable ? actionedRequestIds.has(actionable.id) : false;
- const expired =
- actionable?.expires_time !== undefined && actionable.expires_time * 1000 < Date.now();
-
- return (
-
-
-
- {m.envelope.type}
- {isOutbound ? '→ peer' : 'peer →'}
-
- {req && {req.body.description}}
- {keyReq && (
-
- The agent is requesting an identity key ({keyReq.body.key_type}) for{' '}
- {keyReq.body.for_operation}.
-
- )}
-
- {JSON.stringify(m.envelope.body, null, 2)}
-
- {req && (
-
- {actioned ? (
- Actioned
- ) : expired ? (
- Expired
- ) : (
- <>
- handleReject(req)}
- disabled={!isConnected}
- >
-
- Reject
-
- handleApprove(req)}
- disabled={!isConnected}
- >
-
- Approve & Sign
-
- >
- )}
-
- )}
- {keyReq && (
-
- {actioned ? (
- Actioned
- ) : expired ? (
- Expired
- ) : (
- <>
- handleRejectKey(keyReq)}
- disabled={!isConnected}
- >
-
- Reject
-
- handleApproveKey(keyReq)}
- disabled={!isConnected}
- >
-
- Grant Identity
-
- >
- )}
-
+ return (
+
+
+
+
+ router.back()} style={styles.headerBack}>
+
+
+
+
+ {headerTitle}
+
+
+ {isConnected ? (
+ telemetryModalRef.current?.present()}
+ />
+ ) : (
+
)}
-
- {new Date(item.timestamp).toLocaleTimeString([], {
- hour: '2-digit',
- minute: '2-digit',
- })}
-
- );
- };
-
- return (
-
- (
- router.back()} style={{ marginLeft: 10 }}>
-
-
- ),
- headerRight: () =>
- isConnected ? (
-
- {isHeartbeatVisible && (
-
- )}
- {
- if (address) {
- clearMessages(address, params.origin || '', params.requestId || '');
- }
- clearAc2Messages(address || '', params.origin || '', params.requestId || '');
- }}
- style={{ marginRight: 15 }}
- >
-
-
-
-
-
-
- ) : null,
- }}
- />
-
- {/* NOTE: do NOT wrap this body in a TouchableWithoutFeedback to dismiss
- the keyboard — that wrapper steals the touch responder and prevents
- the FlatList below from ever receiving scroll/pan gestures (the list
- would only scroll after focusing the input reshuffled the
- responder). The keyboard is dismissed via the FlatList's
- keyboardDismissMode/keyboardShouldPersistTaps instead. */}
-
- {/* Conversation switcher — one connection multiplexes several
- threads. Tapping a chip switches the active conversation
- (and sends ac2/ConversationOpen so the agent follows); the
- "+" opens a brand-new conversation. */}
-
-
- {threads.map((thid) => {
- const isActive = thid === activeThid;
- return (
- {
- if (!isActive) openConversation(thid);
- }}
- onLongPress={() => {
- if (thid !== DEFAULT_THID) {
- Alert.alert('Close conversation?', `Close "${threadLabel(thid)}"?`, [
- { text: 'Cancel', style: 'cancel' },
- {
- text: 'Close',
- style: 'destructive',
- onPress: () => closeConversation(thid),
- },
- ]);
- }
- }}
- >
-
-
- {threadLabel(thid)}
-
-
- );
- })}
- openConversation()}
- disabled={!isConnected}
- >
-
- New
-
-
-
- item.id}
- contentContainerStyle={styles.messageList}
- inverted={false}
- onScroll={handleScroll}
- onScrollBeginDrag={handleScrollBeginDrag}
- onScrollEndDrag={handleMomentumScrollEnd}
- onMomentumScrollEnd={handleMomentumScrollEnd}
- scrollEventThrottle={16}
- onContentSizeChange={maybeScrollToEnd}
- keyboardDismissMode="on-drag"
- keyboardShouldPersistTaps="handled"
- />
+ {/* NOTE: do NOT wrap this body in a TouchableWithoutFeedback to dismiss
+ the keyboard — that wrapper steals the touch responder and prevents
+ the FlatList below from ever receiving scroll/pan gestures (the list
+ would only scroll after focusing the input reshuffled the
+ responder). The keyboard is dismissed via the FlatList's
+ keyboardDismissMode/keyboardShouldPersistTaps instead. */}
+
+ openConversation(thid)}
+ onCloseThread={closeConversation}
+ onNewThread={() => openConversation()}
+ />
+
+
+
+
+
+ {/* Lifts the composer above the keyboard while it's open, and clears the
+ nav bar / home indicator while it's closed (see composerSpacer).
+ Plain state, so it resets cleanly on hide. */}
+
+
-
-
-
-
-
-
-
-
+ telemetryModalRef.current?.dismiss()}
+ />
);
}
@@ -642,295 +360,35 @@ export default function ChatScreen() {
const styles = StyleSheet.create({
container: {
flex: 1,
- backgroundColor: '#F8FAFC',
- },
- messageList: {
- padding: 16,
- // Extra bottom breathing room so the last bubble — especially the live
- // "thinking…/typing…/running…" indicator that appears while the agent is
- // actively replying or executing a tool — is never clipped against the
- // input bar after an auto-scroll-to-end.
- paddingBottom: 48,
- flexGrow: 1,
- },
- threadBar: {
- backgroundColor: '#FFFFFF',
- borderBottomWidth: 1,
- borderBottomColor: '#E2E8F0',
- },
- threadBarContent: {
- paddingHorizontal: 12,
- paddingVertical: 8,
- gap: 8,
- alignItems: 'center',
- },
- threadChip: {
- flexDirection: 'row',
- alignItems: 'center',
- gap: 5,
- paddingHorizontal: 12,
- paddingVertical: 6,
- borderRadius: 16,
- backgroundColor: '#EEF2FF',
- borderWidth: 1,
- borderColor: '#C7D2FE',
- },
- threadChipActive: {
- backgroundColor: '#6366F1',
- borderColor: '#6366F1',
- },
- threadChipText: {
- fontSize: 13,
- fontWeight: '600',
- color: '#4338CA',
- },
- threadChipTextActive: {
- color: '#FFFFFF',
- },
- threadNewChip: {
- flexDirection: 'row',
- alignItems: 'center',
- gap: 4,
- paddingHorizontal: 12,
- paddingVertical: 6,
- borderRadius: 16,
- borderWidth: 1,
- borderColor: '#BFDBFE',
- borderStyle: 'dashed',
- backgroundColor: '#F8FAFF',
- },
- threadNewChipText: {
- fontSize: 13,
- fontWeight: '700',
- color: '#3B82F6',
- },
- messageBubble: {
- maxWidth: '85%',
- paddingHorizontal: 16,
- paddingVertical: 10,
- borderRadius: 18,
- marginBottom: 8,
- elevation: 1,
- shadowColor: '#000',
- shadowOffset: { width: 0, height: 1 },
- shadowOpacity: 0.05,
- shadowRadius: 1,
- },
- myMessage: {
- alignSelf: 'flex-end',
- backgroundColor: '#3B82F6',
- borderBottomRightRadius: 4,
- borderTopRightRadius: 16,
- borderTopLeftRadius: 16,
- borderBottomLeftRadius: 16,
- },
- peerMessage: {
- alignSelf: 'flex-start',
- backgroundColor: '#E2E8F0',
- borderBottomLeftRadius: 4,
- borderTopRightRadius: 16,
- borderTopLeftRadius: 16,
- borderBottomRightRadius: 16,
- },
- messageText: {
- fontSize: 16,
- lineHeight: 22,
- },
- myMessageText: {
- color: 'white',
- },
- peerMessageText: {
- color: '#1E293B',
- },
- typingHeader: {
- flexDirection: 'row',
- alignItems: 'center',
- gap: 4,
- marginTop: 4,
- },
- typingLabel: {
- fontSize: 13,
- fontStyle: 'italic',
- color: '#6366F1',
- },
- toolCard: {
- alignSelf: 'stretch',
- backgroundColor: '#0F172A',
- borderRadius: 12,
- padding: 12,
- marginBottom: 8,
- borderWidth: 1,
- borderColor: '#1E293B',
- borderLeftWidth: 4,
- borderLeftColor: '#6366F1',
- },
- toolHeader: {
- flexDirection: 'row',
- alignItems: 'center',
- gap: 6,
- marginBottom: 6,
- },
- toolName: {
- fontSize: 12,
- fontWeight: '700',
- color: '#A5B4FC',
- },
- toolTime: {
- fontSize: 10,
- color: '#64748B',
- marginLeft: 'auto',
- },
- toolCommand: {
- fontFamily: 'monospace',
- fontSize: 12,
- color: '#7DD3FC',
- marginBottom: 4,
- marginTop: 4,
+ backgroundColor: theme.colors.chat.appBg,
},
- toolCommandPreview: {
+ flex: {
flex: 1,
- fontFamily: 'monospace',
- fontSize: 11,
- color: '#64748B',
},
- toolOutput: {
- fontFamily: 'monospace',
- fontSize: 12,
- color: '#CBD5E1',
- },
- toolToggle: {
+ header: {
+ minHeight: 64,
+ backgroundColor: theme.colors.bg.header,
+ paddingLeft: theme.spacing.sm,
+ paddingRight: theme.spacing.base,
+ paddingVertical: theme.spacing.md,
flexDirection: 'row',
alignItems: 'center',
- gap: 4,
- marginTop: 6,
- },
- toolToggleText: {
- fontSize: 12,
- color: '#A5B4FC',
- fontWeight: '600',
- },
- timestamp: {
- fontSize: 10,
- marginTop: 4,
- alignSelf: 'flex-end',
- color: 'rgba(0,0,0,0.5)',
- },
- myTimestamp: {
- color: 'rgba(255,255,255,0.7)',
- },
- inputContainer: {
- flexDirection: 'row',
- paddingHorizontal: 12,
- paddingVertical: 8,
- backgroundColor: 'white',
- borderTopWidth: 1,
- borderTopColor: '#E2E8F0',
- alignItems: 'flex-end',
- paddingBottom: Platform.OS === 'ios' ? 8 : 12,
- },
- input: {
- flex: 1,
- backgroundColor: '#F1F5F9',
- borderRadius: 22,
- paddingHorizontal: 16,
- paddingVertical: 10,
- marginRight: 10,
- fontSize: 16,
- maxHeight: 120,
- color: '#1E293B',
+ justifyContent: 'space-between',
},
- sendButton: {
- backgroundColor: '#3B82F6',
- width: 44,
- height: 44,
- borderRadius: 22,
+ headerBack: {
+ width: 36,
+ height: 36,
+ borderRadius: theme.borderRadius.full,
+ backgroundColor: theme.colors.bg.white,
justifyContent: 'center',
alignItems: 'center',
- marginBottom: 2,
- },
- sendButtonDisabled: {
- backgroundColor: '#CBD5E1',
- },
- ac2Bubble: {
- alignSelf: 'stretch',
- backgroundColor: '#EEF2FF',
- borderRadius: 12,
- padding: 12,
- marginBottom: 8,
- borderWidth: 1,
- borderColor: '#C7D2FE',
- },
- ac2Inbound: {
- borderLeftWidth: 4,
- borderLeftColor: '#6366F1',
+ marginLeft: theme.spacing.sm,
},
- ac2Outbound: {
- borderRightWidth: 4,
- borderRightColor: '#6366F1',
- },
- ac2Header: {
- flexDirection: 'row',
- alignItems: 'center',
- gap: 6,
- marginBottom: 6,
- },
- ac2Type: {
- fontSize: 12,
- fontWeight: '700',
- color: '#4338CA',
+ headerTitle: {
flex: 1,
+ marginHorizontal: theme.spacing.sm,
},
- ac2Direction: {
- fontSize: 11,
- color: '#6366F1',
- fontWeight: '600',
- },
- ac2Body: {
- fontFamily: 'monospace',
- fontSize: 12,
- color: '#1E1B4B',
- },
- ac2Description: {
- fontSize: 14,
- color: '#1E1B4B',
- marginBottom: 6,
- fontWeight: '500',
- },
- ac2Actions: {
- flexDirection: 'row',
- justifyContent: 'flex-end',
- gap: 8,
- marginTop: 8,
- },
- ac2Btn: {
- flexDirection: 'row',
- alignItems: 'center',
- gap: 4,
- paddingHorizontal: 12,
- paddingVertical: 8,
- borderRadius: 8,
- },
- ac2Approve: {
- backgroundColor: '#10B981',
- },
- ac2Reject: {
- backgroundColor: '#EF4444',
- },
- ac2BtnText: {
- color: '#fff',
- fontWeight: '600',
- fontSize: 13,
- },
- ac2Actioned: {
- fontSize: 12,
- fontWeight: '600',
- color: '#6B7280',
- fontStyle: 'italic',
- },
- ac2Expired: {
- fontSize: 12,
- fontWeight: '600',
- color: '#B91C1C',
- fontStyle: 'italic',
+ headerRight: {
+ width: 36,
},
});
diff --git a/app/index.tsx b/app/index.tsx
index a247f8a..fcc612f 100644
--- a/app/index.tsx
+++ b/app/index.tsx
@@ -1,62 +1,36 @@
-import React from 'react';
-import { View, Text, StyleSheet, ActivityIndicator } from 'react-native';
-import { Redirect } from 'expo-router';
-import Constants from 'expo-constants';
-import { useStore } from '@tanstack/react-store';
-import { logsStore } from '@/stores/logs';
-import Logo from '@/components/Logo';
import { useProvider } from '@/hooks/useProvider';
+import FontAwesome6 from '@expo/vector-icons/FontAwesome6';
+import MaterialIcons from '@expo/vector-icons/MaterialIcons';
+import { useFonts } from 'expo-font';
+import { Redirect } from 'expo-router';
+import * as SplashScreen from 'expo-splash-screen';
+import React from 'react';
+
export default function Index() {
+ // Static weight files (not the variable font): React Native's font managers
+ // do NOT drive a variable font's `wght` axis from `fontWeight` on either
+ // platform — a single variable .ttf only ever renders its default (regular)
+ // instance, and on Android it falls back to the system font entirely. Each
+ // weight is loaded from its own static file and selected by `fontFamily`.
+ const [fontsLoaded] = useFonts({
+ 'PlusJakartaSans-Regular': require('../assets/fonts/PlusJakartaSans-Regular.ttf'),
+ 'PlusJakartaSans-Medium': require('../assets/fonts/PlusJakartaSans-Medium.ttf'),
+ 'PlusJakartaSans-SemiBold': require('../assets/fonts/PlusJakartaSans-SemiBold.ttf'),
+ 'PlusJakartaSans-Bold': require('../assets/fonts/PlusJakartaSans-Bold.ttf'),
+ 'PlusJakartaSans-Italic': require('../assets/fonts/PlusJakartaSans-Italic-VariableFont_wght.ttf'),
+ ...MaterialIcons.font,
+ ...FontAwesome6.font,
+ });
const { keys, status } = useProvider();
- const logs = useStore(logsStore, (state) => state.logs);
- const lastLog = logs.length > 0 ? logs[0].message : 'Initializing...';
- const config = Constants.expoConfig?.extra?.provider || {
- primaryColor: '#3B82F6',
- };
+ React.useEffect(() => {
+ SplashScreen.hideAsync();
+ }, []);
- if (status === 'loading') {
- return (
-
-
-
-
- {lastLog}
- Securing your keys and passkeys
-
-
- );
+ if (!fontsLoaded || status === 'loading') {
+ return null;
}
if (keys.length > 0) return ;
return ;
}
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- justifyContent: 'center',
- alignItems: 'center',
- backgroundColor: '#F8FAFC',
- padding: 24,
- },
- logo: {
- marginBottom: 40,
- },
- content: {
- marginTop: 24,
- alignItems: 'center',
- },
- text: {
- fontSize: 18,
- fontWeight: '600',
- color: '#1E293B',
- textAlign: 'center',
- },
- subtext: {
- marginTop: 8,
- fontSize: 14,
- color: '#64748B',
- textAlign: 'center',
- },
-});
diff --git a/app/landing.tsx b/app/landing.tsx
index 72c197d..e521ef2 100644
--- a/app/landing.tsx
+++ b/app/landing.tsx
@@ -1,124 +1,241 @@
-/**
- * Minimal landing screen for the AC2 reference controller.
- *
- * Surface is intentionally tiny:
- * - identifies the controller by its first identity DID,
- * - links to `scan` to pair a new Liquid Auth session,
- * - links to `connections` (the diagnostics panel) to inspect connections,
- * their granted agent identity keys, and per-thread conversations.
- *
- * Everything else (accounts, passkeys browser, identities browser, import,
- * balance/activity cards) was removed to keep this app as a reference for
- * the AC2 SDK rather than a full wallet.
- */
-
-import React from 'react';
-import { View, Text, StyleSheet, TouchableOpacity, ScrollView } from 'react-native';
-import { SafeAreaView } from 'react-native-safe-area-context';
-import { useRouter } from 'expo-router';
+import { Button } from '@/components/Button';
+import { ChatRow, ChatThread } from '@/components/ChatRow';
+import { MenuDrawer, MenuDrawerHandle } from '@/components/MenuDrawer';
+import { AppText } from '@/components/Text';
+import { WarningBanner } from '@/components/WarningBanner';
+import { messagesStore } from '@/stores/messages';
+import { sessionsStore, type Session } from '@/stores/sessions';
+import { palette, theme } from '@/theme';
import { MaterialIcons } from '@expo/vector-icons';
-import Logo from '../components/Logo';
-import { useProvider } from '@/hooks/useProvider';
+import { BottomSheetModal } from '@gorhom/bottom-sheet';
+import { useStore } from '@tanstack/react-store';
+import { Stack, useRouter } from 'expo-router';
+import React, { useMemo, useRef } from 'react';
+import { FlatList, Pressable, StyleSheet, View } from 'react-native';
+import { SafeAreaView } from 'react-native-safe-area-context';
+
+import { ServiceSecretKeyVaultModal } from '@/components/ServiceSecretKeyVaultModal';
+// dummy required actions for demo purposes
+const REQUIRED_ACTIONS = ['Backup Mnemonic'];
+
+// Avatar color pairs cycled deterministically per connection so a given agent
+// keeps a stable look across renders. Drawn from the shared palette.
+const AVATAR_COLORS: { color: string; bg: string }[] = [
+ { color: palette.blue[500], bg: palette.blue[100] },
+ { color: palette.green[500], bg: '#e6f4ea' },
+ { color: palette.red[500], bg: '#fce8e6' },
+ { color: palette.indigo[500], bg: palette.indigo[50] },
+ { color: palette.yellow[500], bg: palette.yellow[100] },
+];
+
+/** Stable avatar palette pick from a connection origin. */
+function avatarFor(origin: string): { color: string; bg: string } {
+ let hash = 0;
+ for (let i = 0; i < origin.length; i++) hash = (hash * 31 + origin.charCodeAt(i)) | 0;
+ return AVATAR_COLORS[Math.abs(hash) % AVATAR_COLORS.length];
+}
+
+/** Human-friendly host label from a connection origin. */
+function hostFromOrigin(origin: string): string {
+ try {
+ return new URL(origin).host;
+ } catch {
+ return origin.replace(/^https?:\/\//, '');
+ }
+}
+
+/** Relative "time ago" label for the most recent activity on a connection. */
+function formatRelative(ms: number): string {
+ if (!ms) return '';
+ const diff = Date.now() - ms;
+ const min = Math.floor(diff / 60000);
+ if (min < 1) return 'now';
+ if (min < 60) return `${min}m ago`;
+ const hr = Math.floor(min / 60);
+ if (hr < 24) return `${hr}h ago`;
+ return `${Math.floor(hr / 24)}d ago`;
+}
+
+/** Fallback preview text for a connection that has no chat messages yet. */
+function statusPreview(status: Session['status']): string {
+ switch (status) {
+ case 'active':
+ return 'Connected · no messages yet';
+ case 'failed':
+ return 'Connection failed';
+ default:
+ return 'Disconnected · tap to reconnect';
+ }
+}
+
+// ─── Screen ───────────────────────────────────────────────────────────────────
export default function LandingScreen() {
+ const hasRequiredActions = REQUIRED_ACTIONS.length > 0;
+ const drawerRef = useRef(null);
+ const vaultModalRef = useRef(null);
+ const connectNewAgentModalRef = useRef(null);
+
const router = useRouter();
- const { identities, sessions, key, account, identity, passkey } = useProvider();
- const activeIdentity = identities[0];
+
+ const sessions = useStore(sessionsStore, (state) => state.sessions);
+ const messages = useStore(messagesStore, (state) => state.messages);
+
+ // One chat row per persisted connection, most recently active first. The
+ // preview is the connection's latest chat message (falling back to a status
+ // line) and the timestamp tracks last activity.
+ const chats = useMemo(() => {
+ return [...sessions]
+ .sort((a, b) => b.lastActivity - a.lastActivity)
+ .map((session) => {
+ const lastMessage = messages
+ .filter((m) => m.origin === session.origin && m.requestId === session.id && m.text.trim())
+ .sort((a, b) => b.timestamp - a.timestamp)[0];
+ const { color, bg } = avatarFor(session.origin);
+ const thread: ChatThread = {
+ id: `${session.origin}-${session.id}`,
+ name: hostFromOrigin(session.origin),
+ preview: lastMessage?.text ?? statusPreview(session.status),
+ timestamp: formatRelative(session.lastActivity),
+ avatarColor: color,
+ avatarBg: bg,
+ };
+ return { session, thread };
+ });
+ }, [sessions, messages]);
return (
-
-
-
-
-
- AC2 Reference
- Liquid Auth · AC2 SDK
+
+
+
+
+
+
+ drawerRef.current?.openDrawer()}>
+
+
+
+
+ AC2 Controller
+
-
-
- Controller DID
-
- {activeIdentity?.did || 'No identity found'}
-
-
+
+
- {
- await key.store.clear();
- await account.store.clear();
- await identity.store.clear();
- await passkey.store.clear();
- router.replace('/onboarding');
- }}
- >
- Reset Wallet
-
-
-
+ {hasRequiredActions ? : null}
+
+ item.thread.id}
+ renderItem={({ item }) => (
+
+ router.navigate({
+ pathname: '/chat',
+ params: { origin: item.session.origin, requestId: item.session.id },
+ })
+ }
+ />
+ )}
+ contentContainerStyle={chats.length === 0 ? styles.emptyContent : styles.listContent}
+ ListEmptyComponent={
+
+
+
+ No chats available yet
+
+
+ Pair with an agent to start a conversation.
+
+
+ }
+ />
+
+ vaultModalRef.current?.dismiss()}
+ />
+
+
);
}
const styles = StyleSheet.create({
- container: { flex: 1, backgroundColor: '#F8FAFC' },
- content: { padding: 20, paddingTop: 8 },
- header: {
+ container: {
+ flex: 1,
+ backgroundColor: theme.colors.bg.app,
+ },
+ topBar: {
+ minHeight: 64,
+ backgroundColor: theme.colors.bg.header,
+ paddingLeft: theme.spacing.sm,
+ paddingRight: theme.spacing.base,
+ paddingVertical: theme.spacing.md,
+ flexDirection: 'row',
+ alignItems: 'center',
+ justifyContent: 'space-between',
+ },
+ topBarLeft: {
flexDirection: 'row',
alignItems: 'center',
- gap: 12,
- marginBottom: 24,
+ gap: theme.spacing.sm,
},
- title: { fontSize: 22, fontWeight: '800', color: '#0F172A' },
- subtitle: { fontSize: 13, color: '#64748B', marginTop: 2 },
- didCard: {
- backgroundColor: '#FFFFFF',
- borderRadius: 16,
- padding: 16,
- borderWidth: 1,
- borderColor: '#E2E8F0',
- marginBottom: 24,
+ menuButton: {
+ width: 36,
+ height: 36,
+ borderRadius: theme.borderRadius.full,
+ justifyContent: 'center',
+ alignItems: 'center',
+ marginLeft: -4,
},
- cardLabel: {
- fontSize: 12,
- color: '#64748B',
- textTransform: 'uppercase',
- fontWeight: '700',
- marginBottom: 6,
+ actions: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ gap: theme.spacing.sm,
},
- didText: { fontFamily: 'monospace', fontSize: 14, color: '#334155' },
- actionsRow: { flexDirection: 'row', gap: 12, marginBottom: 32 },
- actionCard: {
- flex: 1,
- backgroundColor: '#FFFFFF',
- borderRadius: 16,
- padding: 16,
- borderWidth: 1,
- borderColor: '#E2E8F0',
- alignItems: 'flex-start',
+ topActionButton: {
+ height: 36,
+ paddingHorizontal: theme.spacing.md,
+ minWidth: 84,
+ },
+ listContent: {
+ paddingBottom: theme.spacing.sm,
},
- actionLabel: { fontSize: 16, fontWeight: '700', color: '#0F172A', marginTop: 10 },
- actionSub: { fontSize: 12, color: '#64748B', marginTop: 2 },
- resetButton: {
- padding: 14,
+ emptyContent: {
+ flexGrow: 1,
+ },
+ emptyState: {
+ flex: 1,
alignItems: 'center',
- backgroundColor: '#F1F5F9',
- borderRadius: 12,
+ justifyContent: 'center',
+ padding: theme.spacing.xl,
+ },
+ emptyText: {
+ marginTop: theme.spacing.md,
+ },
+ emptySubtext: {
+ marginTop: theme.spacing.xs,
+ textAlign: 'center',
},
- resetButtonText: { color: '#64748B', fontSize: 14, fontWeight: '500' },
});
diff --git a/assets/adaptive-icon.png b/assets/adaptive-icon.png
index d8ab5d1..515a9de 100644
Binary files a/assets/adaptive-icon.png and b/assets/adaptive-icon.png differ
diff --git a/assets/favicon.png b/assets/favicon.png
index fb82802..6a81472 100644
Binary files a/assets/favicon.png and b/assets/favicon.png differ
diff --git a/assets/fonts/PlusJakartaSans-Bold.ttf b/assets/fonts/PlusJakartaSans-Bold.ttf
new file mode 100644
index 0000000..2d49642
Binary files /dev/null and b/assets/fonts/PlusJakartaSans-Bold.ttf differ
diff --git a/assets/fonts/PlusJakartaSans-Italic-VariableFont_wght.ttf b/assets/fonts/PlusJakartaSans-Italic-VariableFont_wght.ttf
new file mode 100644
index 0000000..1ccaf53
Binary files /dev/null and b/assets/fonts/PlusJakartaSans-Italic-VariableFont_wght.ttf differ
diff --git a/assets/fonts/PlusJakartaSans-Medium.ttf b/assets/fonts/PlusJakartaSans-Medium.ttf
new file mode 100644
index 0000000..5d8dd8a
Binary files /dev/null and b/assets/fonts/PlusJakartaSans-Medium.ttf differ
diff --git a/assets/fonts/PlusJakartaSans-Regular.ttf b/assets/fonts/PlusJakartaSans-Regular.ttf
new file mode 100644
index 0000000..cb87445
Binary files /dev/null and b/assets/fonts/PlusJakartaSans-Regular.ttf differ
diff --git a/assets/fonts/PlusJakartaSans-SemiBold.ttf b/assets/fonts/PlusJakartaSans-SemiBold.ttf
new file mode 100644
index 0000000..c12d4b0
Binary files /dev/null and b/assets/fonts/PlusJakartaSans-SemiBold.ttf differ
diff --git a/assets/fonts/PlusJakartaSans-VariableFont_wght.ttf b/assets/fonts/PlusJakartaSans-VariableFont_wght.ttf
new file mode 100644
index 0000000..080a386
Binary files /dev/null and b/assets/fonts/PlusJakartaSans-VariableFont_wght.ttf differ
diff --git a/assets/icon.png b/assets/icon.png
index 3b6aec2..c72e220 100644
Binary files a/assets/icon.png and b/assets/icon.png differ
diff --git a/assets/images/android-icon-background.png b/assets/images/android-icon-background.png
deleted file mode 100644
index 5ffefc5..0000000
Binary files a/assets/images/android-icon-background.png and /dev/null differ
diff --git a/assets/images/android-icon-foreground.png b/assets/images/android-icon-foreground.png
deleted file mode 100644
index 3a9e501..0000000
Binary files a/assets/images/android-icon-foreground.png and /dev/null differ
diff --git a/assets/images/android-icon-monochrome.png b/assets/images/android-icon-monochrome.png
deleted file mode 100644
index 77484eb..0000000
Binary files a/assets/images/android-icon-monochrome.png and /dev/null differ
diff --git a/assets/images/favicon.png b/assets/images/favicon.png
deleted file mode 100644
index 408bd74..0000000
Binary files a/assets/images/favicon.png and /dev/null differ
diff --git a/assets/images/icon.png b/assets/images/icon.png
deleted file mode 100644
index 7165a53..0000000
Binary files a/assets/images/icon.png and /dev/null differ
diff --git a/assets/images/partial-react-logo.png b/assets/images/partial-react-logo.png
deleted file mode 100644
index 66fd957..0000000
Binary files a/assets/images/partial-react-logo.png and /dev/null differ
diff --git a/assets/images/react-logo.png b/assets/images/react-logo.png
deleted file mode 100644
index 9d72a9f..0000000
Binary files a/assets/images/react-logo.png and /dev/null differ
diff --git a/assets/images/react-logo@2x.png b/assets/images/react-logo@2x.png
deleted file mode 100644
index 2229b13..0000000
Binary files a/assets/images/react-logo@2x.png and /dev/null differ
diff --git a/assets/images/react-logo@3x.png b/assets/images/react-logo@3x.png
deleted file mode 100644
index a99b203..0000000
Binary files a/assets/images/react-logo@3x.png and /dev/null differ
diff --git a/assets/images/splash-icon.png b/assets/images/splash-icon.png
deleted file mode 100644
index 03d6f6b..0000000
Binary files a/assets/images/splash-icon.png and /dev/null differ
diff --git a/assets/partial-react-logo.png b/assets/partial-react-logo.png
index 7b6d3f1..1e66157 100644
Binary files a/assets/partial-react-logo.png and b/assets/partial-react-logo.png differ
diff --git a/assets/react-logo.png b/assets/react-logo.png
index aa0006b..a5268c5 100644
Binary files a/assets/react-logo.png and b/assets/react-logo.png differ
diff --git a/assets/react-logo@2x.png b/assets/react-logo@2x.png
index 2b6c79e..b9ab7d7 100644
Binary files a/assets/react-logo@2x.png and b/assets/react-logo@2x.png differ
diff --git a/assets/react-logo@3x.png b/assets/react-logo@3x.png
index 03b7fca..2072791 100644
Binary files a/assets/react-logo@3x.png and b/assets/react-logo@3x.png differ
diff --git a/assets/splash-icon.png b/assets/splash-icon.png
index bfb3832..d72fc9a 100644
Binary files a/assets/splash-icon.png and b/assets/splash-icon.png differ
diff --git a/assets/splash.png b/assets/splash.png
index 035d629..0d511a4 100644
Binary files a/assets/splash.png and b/assets/splash.png differ
diff --git a/components/Button.tsx b/components/Button.tsx
new file mode 100644
index 0000000..0642d83
--- /dev/null
+++ b/components/Button.tsx
@@ -0,0 +1,201 @@
+import React from 'react';
+import {
+ ActivityIndicator,
+ StyleProp,
+ StyleSheet,
+ TextStyle,
+ TouchableOpacity,
+ ViewStyle,
+} from 'react-native';
+import { theme } from '@/theme';
+import { AppText } from './Text';
+
+// ─── Types ────────────────────────────────────────────────────────────────────
+
+type ButtonVariant = 'primary' | 'outline' | 'ghost' | 'pill' | 'pillLight' | 'white' | 'link';
+type ButtonSize = 'sm' | 'md' | 'lg';
+type ButtonColor = 'primary' | 'secondary' | 'success' | 'error' | 'info' | 'warning';
+
+interface ButtonProps {
+ label: string;
+ onPress: () => void;
+ variant?: ButtonVariant;
+ size?: ButtonSize;
+ color?: ButtonColor;
+ fullWidth?: boolean;
+ disabled?: boolean;
+ loading?: boolean;
+ leftIcon?: React.ReactNode;
+ style?: StyleProp;
+}
+
+// ─── Component ────────────────────────────────────────────────────────────────
+
+export function Button({
+ label,
+ onPress,
+ variant = 'primary',
+ size = 'md',
+ color = 'primary',
+ fullWidth = false,
+ disabled = false,
+ loading = false,
+ leftIcon,
+ style,
+}: ButtonProps) {
+ const colorValue = getColorValue(color);
+ const isFilled =
+ variant === 'primary' ||
+ variant === 'pill' ||
+ variant === 'outline' ||
+ variant === 'pillLight' ||
+ variant === 'white';
+ const spinnerColor =
+ variant === 'white' ? theme.colors.fg.onLight : isFilled ? theme.colors.fg.inverse : colorValue;
+
+ const textColorMap: Record = {
+ primary: 'inverse',
+ outline: 'inverse',
+ ghost: 'muted',
+ pill: 'inverse',
+ pillLight: 'inverse',
+ white: 'neutral',
+ link: 'primary',
+ };
+
+ const colorStyle = {
+ ...(variant === 'primary' || variant === 'pill' || variant === 'pillLight'
+ ? { backgroundColor: colorValue }
+ : {}),
+ ...(variant === 'outline' ? { borderColor: colorValue, backgroundColor: colorValue } : {}),
+ ...(variant === 'white' ? { backgroundColor: theme.colors.bg.white } : {}),
+ ...(variant === 'link' || variant === 'ghost' ? { backgroundColor: 'transparent' } : {}),
+ };
+
+ const variantStyle = variantStyles[variant];
+ const sizeStyle = sizeStyles[size];
+
+ return (
+
+ {loading ? (
+
+ ) : (
+ <>
+ {leftIcon}
+
+ {label}
+
+ >
+ )}
+
+ );
+}
+
+// ─── Styles ───────────────────────────────────────────────────────────────────
+
+const getColorValue = (colorName: ButtonColor) => {
+ const colorMap: Record = {
+ primary: theme.colors.brand.primary,
+ secondary: theme.colors.brand.soft,
+ success: theme.colors.state.success,
+ error: theme.colors.state.danger,
+ info: theme.colors.brand.primary,
+ warning: theme.colors.state.warning,
+ };
+ return colorMap[colorName];
+};
+
+const variantStyles: Record = {
+ primary: {
+ backgroundColor: theme.colors.brand.primary,
+ borderRadius: theme.borderRadius.md,
+ ...theme.shadows.primary,
+ },
+ outline: {
+ backgroundColor: 'transparent',
+ borderRadius: theme.borderRadius.md,
+ borderWidth: 1,
+ borderColor: theme.colors.border.default,
+ },
+ ghost: {
+ backgroundColor: 'transparent',
+ borderRadius: theme.borderRadius.md,
+ },
+ pill: {
+ backgroundColor: theme.colors.brand.primary,
+ borderRadius: theme.borderRadius.full,
+ ...theme.shadows.md,
+ },
+ pillLight: {
+ backgroundColor: theme.colors.bg.surface,
+ borderRadius: theme.borderRadius.full,
+ ...theme.shadows.md,
+ },
+ white: {
+ backgroundColor: theme.colors.bg.white,
+ borderRadius: theme.borderRadius.full,
+ },
+ link: {
+ backgroundColor: 'transparent',
+ borderRadius: 0,
+ paddingVertical: 0,
+ paddingHorizontal: 0,
+ },
+};
+
+const whiteLabelStyle: TextStyle = {
+ color: theme.colors.fg.onLight,
+};
+
+const sizeStyles: Record = {
+ sm: {
+ paddingVertical: theme.spacing.sm,
+ paddingHorizontal: theme.spacing.md,
+ },
+ md: {
+ paddingVertical: theme.spacing.md,
+ paddingHorizontal: theme.spacing.base,
+ },
+ lg: {
+ paddingVertical: theme.spacing.base,
+ paddingHorizontal: theme.spacing.xl,
+ },
+};
+
+const styles = StyleSheet.create({
+ base: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ justifyContent: 'center',
+ gap: theme.spacing.sm,
+ },
+ fullWidth: {
+ width: '100%',
+ },
+ linkReset: {
+ borderRadius: 0,
+ paddingVertical: 0,
+ },
+ disabled: {
+ opacity: 0.5,
+ },
+});
diff --git a/components/ChatRow.tsx b/components/ChatRow.tsx
new file mode 100644
index 0000000..9bea8a3
--- /dev/null
+++ b/components/ChatRow.tsx
@@ -0,0 +1,92 @@
+import { AppText } from '@/components/Text';
+import { theme } from '@/theme';
+import FontAwesome6 from '@expo/vector-icons/FontAwesome6';
+import React from 'react';
+import { Pressable, StyleSheet, View } from 'react-native';
+
+// ─── Types ────────────────────────────────────────────────────────────────────
+
+export interface ChatThread {
+ id: string;
+ name: string;
+ preview: string;
+ timestamp: string;
+ avatarColor: string;
+ avatarBg: string;
+}
+
+// ─── Component ────────────────────────────────────────────────────────────────
+
+export function ChatRow({
+ item,
+ onPress,
+}: {
+ item: ChatThread;
+ onPress: (item: ChatThread) => void;
+}) {
+ return (
+ onPress(item)}>
+
+
+
+
+
+
+
+ {item.name}
+
+
+ {item.timestamp}
+
+
+
+ {item.preview}
+
+
+
+ );
+}
+
+// ─── Styles ───────────────────────────────────────────────────────────────────
+
+const styles = StyleSheet.create({
+ row: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ minHeight: 76,
+ paddingHorizontal: theme.spacing.sm,
+ paddingVertical: theme.spacing.md,
+ gap: theme.spacing.md,
+ backgroundColor: theme.colors.bg.surface,
+ borderBottomWidth: 1,
+ borderBottomColor: theme.colors.border.default,
+ },
+ avatar: {
+ width: 44,
+ height: 44,
+ borderRadius: 22,
+ borderWidth: 1,
+ justifyContent: 'center',
+ alignItems: 'center',
+ flexShrink: 0,
+ },
+ rowContent: {
+ flex: 1,
+ gap: 2,
+ justifyContent: 'center',
+ },
+ rowTop: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ justifyContent: 'space-between',
+ gap: theme.spacing.sm,
+ },
+ rowName: {
+ flex: 1,
+ },
+ rowPreview: {
+ flex: 1,
+ },
+});
diff --git a/components/MenuDrawer.tsx b/components/MenuDrawer.tsx
new file mode 100644
index 0000000..b09f319
--- /dev/null
+++ b/components/MenuDrawer.tsx
@@ -0,0 +1,204 @@
+import { Button } from '@/components/Button';
+import { AppText } from '@/components/Text';
+import { useProvider } from '@/hooks/useProvider';
+import { identitiesStore } from '@/stores/identities';
+import { theme } from '@/theme';
+import { MaterialIcons } from '@expo/vector-icons';
+import { useStore } from '@tanstack/react-store';
+import * as Clipboard from 'expo-clipboard';
+import { useRouter } from 'expo-router';
+import React, { forwardRef, useImperativeHandle, useRef } from 'react';
+import { Alert, Pressable, StyleSheet, View } from 'react-native';
+import DrawerLayout, {
+ DrawerLayoutMethods,
+} from 'react-native-gesture-handler/ReanimatedDrawerLayout';
+import { SafeAreaView } from 'react-native-safe-area-context';
+
+// ─── Types ────────────────────────────────────────────────────────────────────
+
+export interface MenuDrawerHandle {
+ openDrawer: () => void;
+ closeDrawer: () => void;
+}
+
+// ─── Component ────────────────────────────────────────────────────────────────
+
+export const MenuDrawer = forwardRef(
+ function MenuDrawer({ children }, ref) {
+ const drawerRef = useRef(null);
+ const router = useRouter();
+ const { key, account, identity, passkey, sessions } = useProvider();
+ const identities = useStore(identitiesStore, (state) => state.identities);
+ const activeIdentity = identities.length > 0 ? identities[0] : null;
+
+ useImperativeHandle(ref, () => ({
+ openDrawer: () => drawerRef.current?.openDrawer(),
+ closeDrawer: () => drawerRef.current?.closeDrawer(),
+ }));
+
+ return (
+ (
+
+
+
+
+ AC2 Controller
+
+
+
+
+ {activeIdentity && (
+
+
+ Controller DID
+
+
+
+ {activeIdentity.did || 'No identity found'}
+
+ {
+ await Clipboard.setStringAsync(activeIdentity.did || '');
+ Alert.alert('Copied', 'DID copied to clipboard');
+ }}
+ >
+
+
+
+
+ )}
+
+ {
+ drawerRef.current?.closeDrawer();
+ router.push('/connections');
+ }}
+ >
+
+ Diagnostics
+
+ {sessions.length} connection{sessions.length === 1 ? '' : 's'}
+
+
+
+
+
+
+
+ }
+ onPress={() =>
+ Alert.alert(
+ 'Reset Wallet',
+ 'Are you sure you want to reset your wallet? This action cannot be undone.',
+ [
+ { text: 'Cancel', style: 'cancel' },
+ {
+ text: 'Reset',
+ style: 'destructive',
+ onPress: async () => {
+ await key.store.clear();
+ await account.store.clear();
+ await identity.store.clear();
+ await passkey.store.clear();
+ router.replace('/onboarding');
+ },
+ },
+ ],
+ )
+ }
+ />
+
+
+
+ )}
+ >
+ {children}
+
+ );
+ },
+);
+
+// ─── Styles ───────────────────────────────────────────────────────────────────
+
+const styles = StyleSheet.create({
+ // Transparent so the panel only fills the app window (within safe-area insets)
+ // rather than bleeding behind the status bar / home indicator.
+ safeArea: {
+ flex: 1,
+ },
+ panel: {
+ flex: 1,
+ backgroundColor: theme.colors.bg.surface,
+ paddingHorizontal: theme.spacing.base,
+ },
+ header: {
+ paddingVertical: theme.spacing.base,
+ borderBottomWidth: 1,
+ borderBottomColor: theme.colors.border.default,
+ marginBottom: theme.spacing.md,
+ },
+ body: {
+ flex: 1,
+ },
+ footer: {
+ paddingVertical: theme.spacing.md,
+ borderTopWidth: 1,
+ borderTopColor: theme.colors.border.default,
+ },
+ didCard: {
+ paddingVertical: theme.spacing.md,
+ paddingHorizontal: theme.spacing.md,
+ marginBottom: theme.spacing.md,
+ backgroundColor: theme.colors.bg.surface,
+ borderRadius: 8,
+ borderWidth: 1,
+ borderColor: theme.colors.border.default,
+ },
+ cardLabel: {
+ fontSize: 12,
+ marginBottom: theme.spacing.sm,
+ color: theme.colors.fg.muted,
+ },
+ didRow: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ gap: theme.spacing.sm,
+ },
+ didText: {
+ flex: 1,
+ fontSize: 12,
+ color: theme.colors.fg.default,
+ fontFamily: 'monospace',
+ },
+ copyButton: {
+ padding: theme.spacing.xs,
+ },
+ menu: {
+ flex: 1,
+ },
+ menuItem: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ gap: theme.spacing.md,
+ paddingVertical: theme.spacing.md,
+ },
+ menuItemBadge: {
+ marginLeft: 'auto',
+ color: theme.colors.fg.muted,
+ },
+});
diff --git a/components/ServiceSecretKeyVaultModal.tsx b/components/ServiceSecretKeyVaultModal.tsx
new file mode 100644
index 0000000..85cb6e6
--- /dev/null
+++ b/components/ServiceSecretKeyVaultModal.tsx
@@ -0,0 +1,411 @@
+import { generateSecretKey, type Key } from '@algorandfoundation/keystore';
+import { MaterialIcons } from '@expo/vector-icons';
+import {
+ BottomSheetBackdrop,
+ BottomSheetModal,
+ BottomSheetScrollView,
+ BottomSheetTextInput,
+} from '@gorhom/bottom-sheet';
+import { forwardRef, useCallback, useState, type ComponentProps } from 'react';
+import { Alert, Pressable, StyleSheet, View } from 'react-native';
+import { theme } from '@/theme';
+
+import { useProvider } from '@/hooks/useProvider';
+import { Button } from './Button';
+import { AppText } from './Text';
+
+// ─── Types ────────────────────────────────────────────────────────────────────
+
+interface SecretKeyVaultModalProps {
+ onDismiss?: () => void;
+}
+
+// ─── Key Row ─────────────────────────────────────────────────────────────────
+
+function SecretKeyRow({ item, onRemove }: { item: Key; onRemove: (id: string) => void }) {
+ const { key } = useProvider();
+ const label = (item.metadata?.serviceName as string | undefined) ?? item.id.slice(0, 8);
+ const [revealed, setRevealed] = useState(null);
+ const [revealing, setRevealing] = useState(false);
+
+ const handleToggleVisible = async () => {
+ if (revealed !== null) {
+ setRevealed(null);
+ return;
+ }
+ setRevealing(true);
+ try {
+ const keyData = await key.store.export(item.id);
+ if (keyData.privateKey) {
+ setRevealed(new TextDecoder().decode(keyData.privateKey));
+ }
+ } catch (e) {
+ console.error(e);
+ Alert.alert('Error', 'Failed to reveal the key.');
+ } finally {
+ setRevealing(false);
+ }
+ };
+
+ return (
+
+
+
+
+
+
+ {label}
+
+
+ {revealed ?? '••••••••••••••••'}
+
+
+
+
+
+
+ Alert.alert('Remove Key', `Remove the key for "${label}"?`, [
+ { text: 'Cancel', style: 'cancel' },
+ { text: 'Remove', style: 'destructive', onPress: () => onRemove(item.id) },
+ ])
+ }
+ hitSlop={8}
+ style={stylesheet.iconButton}
+ >
+
+
+
+ );
+}
+
+// ─── Modal ────────────────────────────────────────────────────────────────────
+
+export const ServiceSecretKeyVaultModal = forwardRef(
+ ({ onDismiss }, ref) => {
+ const { keys, key } = useProvider();
+ const [serviceName, setServiceName] = useState('');
+ const [keyValue, setKeyValue] = useState('');
+ const [keyVisible, setKeyVisible] = useState(false);
+ const [isAdding, setIsAdding] = useState(false);
+ const [loading, setLoading] = useState(false);
+
+ const secretKeys = keys.filter((k) => k.type === 'secret-key');
+
+ const renderBackdrop = useCallback(
+ (props: ComponentProps) => (
+
+ ),
+ [],
+ );
+
+ const resetForm = () => {
+ setServiceName('');
+ setKeyValue('');
+ setKeyVisible(false);
+ setIsAdding(false);
+ };
+
+ const handleAdd = async () => {
+ if (!serviceName.trim() || !keyValue.trim()) return;
+ setLoading(true);
+ try {
+ // generate a new key with the provided name and value.
+ const serviceSecret = await generateSecretKey({
+ id: serviceName.trim(),
+ value: keyValue.trim(),
+ });
+ // add to store
+ await key.store.import(serviceSecret);
+ resetForm();
+ } catch (e) {
+ console.error(e);
+ Alert.alert('Error', 'Failed to store the key. Please try again.');
+ } finally {
+ setLoading(false);
+ }
+ };
+
+ const handleRemove = async (id: string) => {
+ try {
+ await key.store.remove(id);
+ } catch {
+ Alert.alert('Error', 'Failed to remove the key.');
+ }
+ };
+
+ return (
+
+
+ {/* Header */}
+
+
+
+ Secret Key Vault
+
+ onDismiss?.()} hitSlop={8}>
+
+
+
+
+ {/* Scrollable key list */}
+
+ {secretKeys.length === 0 ? (
+
+
+
+ {'No secret keys stored yet.\nAdd a key to use with agent services.'}
+
+
+ ) : (
+
+
+ STORED KEYS ({secretKeys.length})
+
+ {secretKeys.map((k) => (
+
+ ))}
+
+ )}
+
+
+ {/* Fixed footer — add button or add form */}
+
+ {isAdding ? (
+
+
+ ADD NEW KEY
+
+
+
+ Service Name
+
+
+
+
+
+ Secret Key
+
+
+
+ setKeyVisible((v) => !v)}
+ hitSlop={8}
+ style={stylesheet.eyeButton}
+ >
+
+
+
+
+
+
+
+
+
+ ) : (
+ setIsAdding(true)}
+ variant="primary"
+ size="md"
+ color="primary"
+ fullWidth
+ leftIcon={}
+ />
+ )}
+
+
+
+ );
+ },
+);
+
+ServiceSecretKeyVaultModal.displayName = 'ServiceSecretKeyVaultModal';
+
+// ─── Styles ───────────────────────────────────────────────────────────────────
+
+const stylesheet = StyleSheet.create({
+ shell: {
+ backgroundColor: theme.colors.bg.surface,
+ },
+ body: {
+ flex: 1,
+ },
+ header: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ justifyContent: 'space-between',
+ paddingHorizontal: theme.spacing.base,
+ paddingVertical: theme.spacing.md,
+ borderBottomWidth: 1,
+ borderBottomColor: theme.colors.border.default,
+ },
+ headerLeft: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ gap: theme.spacing.sm,
+ },
+ scroll: {
+ flex: 1,
+ },
+ scrollContent: {
+ paddingHorizontal: theme.spacing.base,
+ paddingTop: theme.spacing.base,
+ paddingBottom: theme.spacing.md,
+ },
+ emptyState: {
+ alignItems: 'center',
+ paddingVertical: theme.spacing.xl,
+ gap: theme.spacing.sm,
+ },
+ emptyText: {
+ textAlign: 'center',
+ },
+ section: {
+ gap: theme.spacing.sm,
+ },
+ sectionLabel: {
+ letterSpacing: 0.5,
+ },
+ keyRow: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ backgroundColor: theme.colors.bg.surface,
+ borderRadius: theme.borderRadius.md,
+ borderWidth: 1,
+ borderColor: theme.colors.border.default,
+ padding: theme.spacing.md,
+ gap: theme.spacing.md,
+ },
+ keyRowIcon: {
+ width: 36,
+ height: 36,
+ borderRadius: theme.borderRadius.sm,
+ backgroundColor: theme.colors.bg.app,
+ alignItems: 'center',
+ justifyContent: 'center',
+ },
+ keyRowInfo: {
+ flex: 1,
+ gap: 2,
+ },
+ iconButton: {
+ padding: theme.spacing.xs,
+ },
+ footer: {
+ borderTopWidth: 1,
+ borderTopColor: theme.colors.border.default,
+ paddingHorizontal: theme.spacing.base,
+ paddingTop: theme.spacing.md,
+ paddingBottom: theme.spacing.xl,
+ backgroundColor: theme.colors.bg.surface,
+ },
+ form: {
+ gap: theme.spacing.sm,
+ },
+ inputGroup: {
+ gap: theme.spacing.xs,
+ },
+ inputWrapper: {
+ position: 'relative',
+ justifyContent: 'center',
+ },
+ input: {
+ backgroundColor: theme.colors.bg.app,
+ borderRadius: theme.borderRadius.md,
+ borderWidth: 1,
+ borderColor: theme.colors.border.default,
+ paddingHorizontal: theme.spacing.md,
+ paddingVertical: theme.spacing.md,
+ fontSize: theme.typography.sizes.base,
+ color: theme.colors.fg.default,
+ fontFamily: theme.typography.fonts.regular,
+ },
+ inputWithEye: {
+ paddingRight: theme.spacing.xl + theme.spacing.md,
+ },
+ eyeButton: {
+ position: 'absolute',
+ right: theme.spacing.md,
+ },
+ formActions: {
+ flexDirection: 'row',
+ justifyContent: 'flex-end',
+ gap: theme.spacing.sm,
+ marginTop: theme.spacing.xs,
+ },
+ cancelBtn: {
+ minWidth: 80,
+ },
+ saveBtn: {
+ minWidth: 100,
+ },
+});
diff --git a/components/Text.tsx b/components/Text.tsx
new file mode 100644
index 0000000..c0e9062
--- /dev/null
+++ b/components/Text.tsx
@@ -0,0 +1,111 @@
+import React from 'react';
+import { StyleSheet, Text, TextProps, TextStyle } from 'react-native';
+import { theme } from '@/theme';
+
+// ─── Types ────────────────────────────────────────────────────────────────────
+
+type TextVariant = 'h1' | 'h2' | 'h3' | 'body' | 'label' | 'caption' | 'micro';
+type TextColor = 'neutral' | 'muted' | 'inverse' | 'primary' | 'success' | 'danger' | 'warning';
+
+interface AppTextProps extends TextProps {
+ variant?: TextVariant;
+ color?: TextColor;
+ bold?: boolean;
+ children: React.ReactNode;
+}
+
+// ─── Component ────────────────────────────────────────────────────────────────
+
+export function AppText({
+ variant = 'body',
+ color = 'neutral',
+ bold = false,
+ style,
+ children,
+ ...rest
+}: AppTextProps) {
+ const variantStyle = variantStyles[variant];
+ const colorStyle = colorStyles[color];
+
+ return (
+
+ {children}
+
+ );
+}
+
+// ─── Styles ───────────────────────────────────────────────────────────────────
+
+// Kept outside StyleSheet.create so they can be indexed dynamically by variant/color name.
+// StyleSheet.create only handles flat top-level style objects — nesting records inside it
+// would cause numeric IDs to be returned for the nested keys in production builds.
+//
+// NOTE: weight is carried entirely by `fontFamily` (each weight is a distinct static
+// file: -Regular/-Medium/-SemiBold/-Bold) and we deliberately do NOT set `fontWeight`.
+// On Android, expo-font registers each typeface under `Typeface.NORMAL` only; a
+// `fontWeight >= 700` makes React Native's ReactFontManager resolve `nearestStyle` to
+// `Typeface.BOLD`, miss the NORMAL-registered face, and fall back to Roboto. Letting the
+// family name carry the weight keeps the lookup on the NORMAL style so the real font is found.
+const variantStyles: Record = {
+ h1: {
+ fontSize: theme.typography.sizes.xl * 1.22,
+ fontFamily: theme.typography.fonts.bold,
+ lineHeight: theme.typography.sizes.xl * 1.22 * theme.typography.lineHeights.tight,
+ color: theme.colors.fg.default,
+ },
+ h2: {
+ fontSize: theme.typography.sizes.xl,
+ fontFamily: theme.typography.fonts.bold,
+ lineHeight: theme.typography.sizes.xl * theme.typography.lineHeights.tight,
+ color: theme.colors.fg.default,
+ },
+ h3: {
+ fontSize: theme.typography.sizes.lg,
+ fontFamily: theme.typography.fonts.semiBold,
+ lineHeight: theme.typography.sizes.lg * theme.typography.lineHeights.normal,
+ color: theme.colors.fg.default,
+ },
+ body: {
+ fontSize: theme.typography.sizes.base,
+ fontFamily: theme.typography.fonts.regular,
+ lineHeight: theme.typography.sizes.base * theme.typography.lineHeights.normal,
+ color: theme.colors.fg.default,
+ },
+ label: {
+ fontSize: theme.typography.sizes.md,
+ fontFamily: theme.typography.fonts.semiBold,
+ lineHeight: theme.typography.sizes.md * theme.typography.lineHeights.normal,
+ color: theme.colors.fg.default,
+ },
+ caption: {
+ fontSize: theme.typography.sizes.sm,
+ fontFamily: theme.typography.fonts.medium,
+ lineHeight: theme.typography.sizes.sm * theme.typography.lineHeights.relaxed,
+ color: theme.colors.fg.muted,
+ },
+ micro: {
+ fontSize: theme.typography.sizes.xs,
+ fontFamily: theme.typography.fonts.medium,
+ lineHeight: theme.typography.sizes.xs * theme.typography.lineHeights.relaxed,
+ color: theme.colors.fg.muted,
+ },
+};
+
+const colorStyles: Record = {
+ neutral: { color: theme.colors.fg.default },
+ muted: { color: theme.colors.fg.muted },
+ inverse: { color: theme.colors.fg.inverse },
+ primary: { color: theme.colors.fg.primary },
+ success: { color: theme.colors.fg.success },
+ danger: { color: theme.colors.fg.danger },
+ warning: { color: theme.colors.fg.warning },
+};
+
+const styles = StyleSheet.create({
+ // No `fontWeight` here on purpose — the `-Bold` family file carries the weight.
+ // Setting `fontWeight: '700'` makes Android resolve to a BOLD style slot that
+ // expo-font never registers, falling back to Roboto. See variantStyles note above.
+ bold: {
+ fontFamily: theme.typography.fonts.bold,
+ },
+});
diff --git a/components/WarningBanner.tsx b/components/WarningBanner.tsx
new file mode 100644
index 0000000..334e64b
--- /dev/null
+++ b/components/WarningBanner.tsx
@@ -0,0 +1,43 @@
+import { AppText } from '@/components/Text';
+import { theme } from '@/theme';
+import { MaterialIcons } from '@expo/vector-icons';
+import React from 'react';
+import { StyleSheet, View } from 'react-native';
+
+// ─── Types ────────────────────────────────────────────────────────────────────
+
+interface WarningBannerProps {
+ message: string;
+}
+
+// ─── Component ────────────────────────────────────────────────────────────────
+
+export function WarningBanner({ message }: WarningBannerProps) {
+ return (
+
+
+
+ {message}
+
+
+ );
+}
+
+// ─── Styles ───────────────────────────────────────────────────────────────────
+
+const styles = StyleSheet.create({
+ warningCard: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ gap: theme.spacing.sm,
+ paddingHorizontal: theme.spacing.sm,
+ paddingVertical: theme.spacing.sm,
+ backgroundColor: theme.palette.yellow[100],
+ borderBottomWidth: 1,
+ borderBottomColor: theme.colors.state.warning,
+ },
+ warningText: {
+ color: '#b06000',
+ flex: 1,
+ },
+});
diff --git a/components/ac2/TelemetryTraceModal.tsx b/components/ac2/TelemetryTraceModal.tsx
new file mode 100644
index 0000000..4e30c8b
--- /dev/null
+++ b/components/ac2/TelemetryTraceModal.tsx
@@ -0,0 +1,431 @@
+import { Button } from '@/components/Button';
+import { BottomSheetBackdrop, BottomSheetFlatList, BottomSheetModal } from '@gorhom/bottom-sheet';
+import { AppText as Text } from '../Text';
+
+import type { Ac2MessageEntry } from '@/stores/ac2Messages';
+import { palette, theme } from '@/theme';
+import type { AC2SigningResponse } from '@algorandfoundation/ac2-sdk/schema';
+import { MaterialIcons } from '@expo/vector-icons';
+import * as Clipboard from 'expo-clipboard';
+import * as FileSystem from 'expo-file-system/legacy';
+import * as Sharing from 'expo-sharing';
+import { forwardRef, useCallback, useMemo, useState } from 'react';
+import { Alert, Platform, Pressable, ScrollView, StyleSheet, View } from 'react-native';
+
+interface AC2TelemetryTraceModalProps {
+ /**
+ * AC2 protocol envelopes to display in the telemetry trace, each tagged with
+ * its local direction/timestamp metadata (`Ac2MessageEntry`).
+ */
+ entries: Ac2MessageEntry[];
+ /** Human-facing label for the active conversation thread, shown as a subtitle. */
+ threadLabel?: string;
+ onDismiss?: () => void;
+}
+
+// Local receive/send time (ms) — compact format for the header row.
+function formatTimestamp(ms: number): string {
+ const d = new Date(ms);
+ const date = `${String(d.getMonth() + 1).padStart(2, '0')}/${String(d.getDate()).padStart(2, '0')}/${d.getFullYear()}`;
+ const time = d.toLocaleTimeString(undefined, {
+ hour: '2-digit',
+ minute: '2-digit',
+ second: '2-digit',
+ hour12: false,
+ });
+ return `${date} ${time}`;
+}
+// The base64 signature carried by an `ac2/SigningResponse`, or `null` for any
+// other envelope type.
+function getSignature(entry: Ac2MessageEntry): string | null {
+ if (entry.envelope.type !== 'ac2/SigningResponse') return null;
+ return (entry.envelope as AC2SigningResponse).body.signature ?? null;
+}
+
+async function copyToClipboard(value: string, label: string) {
+ try {
+ await Clipboard.setStringAsync(value);
+ Alert.alert('Copied', `${label} copied to clipboard.`);
+ } catch (error) {
+ console.error('Failed to copy to clipboard:', error);
+ Alert.alert('Copy failed', 'Could not copy to the clipboard.');
+ }
+}
+
+function MessageCard({ entry }: { entry: Ac2MessageEntry }) {
+ const [jsonVisible, setJsonVisible] = useState(false);
+ const styles = stylesheet;
+
+ const isOutbound = entry.direction === 'outbound';
+ const { envelope } = entry;
+ const signature = getSignature(entry);
+
+ return (
+
+ {/* Direction + type + timestamp header */}
+
+
+
+
+ {isOutbound ? 'OUTBOUND' : 'INBOUND'}
+
+
+
+ {envelope.type}
+
+ {formatTimestamp(entry.receivedAt)}
+
+
+
+ From: {envelope.from}
+
+ {entry.thid && (
+
+ Thread: {entry.thid}
+
+ )}
+ {envelope.id && ID: {envelope.id.slice(0, 16)}...}
+
+ {/* Signature (ac2/SigningResponse) */}
+ {signature && (
+
+
+
+ Signature
+ copyToClipboard(signature, 'Signature')}
+ variant="ghost"
+ size="sm"
+ leftIcon={
+
+ }
+ />
+
+
+ {signature}
+
+
+ )}
+
+ setJsonVisible((v) => !v)}
+ variant="outline"
+ size="sm"
+ leftIcon={}
+ style={styles.toggleBtn}
+ />
+ {jsonVisible && (
+
+ {JSON.stringify(envelope, null, 2)}
+
+ )}
+
+ );
+}
+
+export const AC2TelemetryTraceModal = forwardRef(
+ ({ entries, threadLabel, onDismiss }, ref) => {
+ const renderBackdrop = useCallback(
+ (props: React.ComponentProps) => (
+
+ ),
+ [],
+ );
+
+ // Chronological order (oldest first) for both the trace list and the export.
+ const sortedEntries = useMemo(
+ () => [...entries].sort((a, b) => a.receivedAt - b.receivedAt),
+ [entries],
+ );
+
+ const handleExport = useCallback(async () => {
+ if (sortedEntries.length === 0) {
+ Alert.alert('Nothing to export', 'There are no AC2 messages to export yet.');
+ return;
+ }
+ try {
+ const json = JSON.stringify(sortedEntries, null, 2);
+ const filename = `ac2-telemetry-${new Date().toISOString().replace(/:/g, '-')}.json`;
+ const fileUri = `${FileSystem.documentDirectory}${filename}`;
+ await FileSystem.writeAsStringAsync(fileUri, json);
+
+ if (await Sharing.isAvailableAsync()) {
+ await Sharing.shareAsync(fileUri, {
+ mimeType: 'application/json',
+ dialogTitle: 'Export AC2 Telemetry Trace',
+ UTI: 'public.json',
+ });
+ } else {
+ Alert.alert('Export saved', `Saved telemetry trace to ${filename}.`);
+ }
+ } catch (error) {
+ console.error('Failed to export AC2 telemetry trace:', error);
+ Alert.alert('Export failed', 'Could not export the telemetry trace.');
+ }
+ }, [sortedEntries]);
+
+ return (
+
+
+ {/** Header */}
+
+
+
+
+
+ AC2 Telemetry Trace
+
+ {threadLabel && (
+
+ Thread: {threadLabel}
+
+ )}
+
+
+
+
+ onDismiss?.()} hitSlop={8} style={stylesheet.closeButton}>
+
+
+
+
+ {/** Content */}
+ entry.id}
+ renderItem={({ item }) => }
+ contentContainerStyle={stylesheet.container}
+ showsVerticalScrollIndicator={false}
+ nestedScrollEnabled
+ keyboardShouldPersistTaps="handled"
+ />
+
+
+ );
+ },
+);
+
+AC2TelemetryTraceModal.displayName = 'AC2 TelemetryTraceModal';
+
+// ─── Styles ───────────────────────────────────────────────────────────────────
+
+const mono = Platform.select({
+ ios: 'Menlo',
+ android: 'monospace',
+ default: 'monospace',
+});
+
+const stylesheet = StyleSheet.create({
+ shell: {
+ backgroundColor: theme.colors.bg.darkAlt,
+ },
+ body: {
+ flex: 1,
+ },
+ scroll: {
+ flex: 1,
+ },
+ container: {
+ paddingHorizontal: theme.spacing.sm,
+ paddingVertical: theme.spacing.md,
+ paddingBottom: theme.spacing.xl,
+ },
+ header: {
+ flexDirection: 'row',
+ justifyContent: 'space-between',
+ alignItems: 'center',
+ backgroundColor: theme.colors.bg.dark,
+ paddingHorizontal: theme.spacing.sm,
+ paddingVertical: theme.spacing.md,
+ },
+ headerTitleRow: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ gap: theme.spacing.sm,
+ flexShrink: 1,
+ },
+ headerTitleText: {
+ flexShrink: 1,
+ flexDirection: 'column',
+ },
+ shieldIcon: {
+ color: theme.colors.fg.primary,
+ },
+ headerButtonRow: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ gap: theme.spacing.sm,
+ },
+ closeButton: {
+ alignItems: 'center',
+ justifyContent: 'center',
+ },
+ closeIcon: {
+ color: theme.colors.fg.inverse,
+ },
+
+ title: {
+ flexShrink: 1,
+ fontSize: theme.typography.sizes.lg,
+ fontFamily: theme.typography.fonts.bold,
+ color: theme.colors.fg.inverse,
+ },
+ subtitle: {
+ fontSize: theme.typography.sizes.sm,
+ fontFamily: theme.typography.fonts.regular,
+ color: palette.neutral[400],
+ marginTop: 1,
+ },
+ card: {
+ backgroundColor: palette.neutral[800],
+ borderRadius: theme.borderRadius.md,
+ padding: theme.spacing.md,
+ marginBottom: theme.spacing.md,
+ borderWidth: 1,
+ borderColor: palette.neutral[700],
+ },
+ cardInbound: {
+ borderLeftWidth: 4,
+ borderLeftColor: theme.colors.chat.accent,
+ },
+ cardOutbound: {
+ borderLeftWidth: 4,
+ borderLeftColor: theme.colors.fg.success,
+ },
+ cardHeader: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ gap: theme.spacing.sm,
+ marginBottom: theme.spacing.xs,
+ flexWrap: 'nowrap',
+ },
+ timestamp: {
+ fontSize: theme.typography.sizes.sm,
+ color: palette.neutral[300],
+ fontFamily: mono,
+ flexShrink: 1,
+ textAlign: 'right',
+ fontWeight: '500',
+ },
+ directionBadge: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ gap: 2,
+ borderRadius: theme.borderRadius.xs,
+ paddingVertical: 2,
+ paddingHorizontal: theme.spacing.xs,
+ borderWidth: 1,
+ },
+ badgeInbound: {
+ borderColor: theme.colors.chat.accent,
+ },
+ badgeOutbound: {
+ borderColor: theme.colors.fg.success,
+ },
+ badgeIconInbound: {
+ color: theme.colors.chat.accent,
+ },
+ badgeIconOutbound: {
+ color: theme.colors.fg.success,
+ },
+ badgeLabelInbound: {
+ fontSize: theme.typography.sizes.xs,
+ fontFamily: mono,
+ fontWeight: 'bold',
+ color: theme.colors.chat.accent,
+ },
+ badgeLabelOutbound: {
+ fontSize: theme.typography.sizes.xs,
+ fontFamily: mono,
+ fontWeight: 'bold',
+ color: theme.colors.fg.success,
+ },
+ meta: {
+ flex: 1,
+ fontSize: theme.typography.sizes.md,
+ color: palette.neutral[200],
+ fontFamily: mono,
+ fontWeight: 'bold',
+ },
+ detail: {
+ fontSize: theme.typography.sizes.sm,
+ color: palette.neutral[400],
+ marginBottom: theme.spacing.xs,
+ fontFamily: mono,
+ },
+ id: {
+ fontSize: theme.typography.sizes.sm,
+ color: theme.colors.fg.success,
+ marginBottom: theme.spacing.sm,
+ fontFamily: mono,
+ fontWeight: 'bold',
+ },
+ sigBox: {
+ backgroundColor: theme.colors.bg.dark,
+ borderRadius: theme.borderRadius.sm,
+ padding: theme.spacing.sm,
+ marginBottom: theme.spacing.sm,
+ borderWidth: 1,
+ borderColor: theme.colors.border.default,
+ },
+ sigHeader: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ gap: theme.spacing.xs,
+ marginBottom: theme.spacing.xs,
+ },
+ sigIcon: {
+ color: theme.colors.fg.success,
+ },
+ sigTitle: {
+ flex: 1,
+ fontSize: theme.typography.sizes.sm,
+ color: theme.colors.fg.inverse,
+ fontFamily: mono,
+ fontWeight: 'bold',
+ },
+
+ sigValue: {
+ fontSize: theme.typography.sizes.xs,
+ color: theme.colors.fg.success,
+ fontFamily: mono,
+ },
+ toggleBtn: {
+ alignSelf: 'flex-start',
+ marginBottom: theme.spacing.sm,
+ },
+ jsonBox: {
+ backgroundColor: theme.colors.bg.dark,
+ borderRadius: theme.borderRadius.sm,
+ padding: theme.spacing.sm,
+ },
+ json: {
+ fontSize: theme.typography.sizes.xs,
+ lineHeight: theme.typography.sizes.xs * 1.4,
+ color: palette.green[400],
+ fontFamily: mono,
+ },
+});
diff --git a/components/chat/Ac2MessageCard.tsx b/components/chat/Ac2MessageCard.tsx
new file mode 100644
index 0000000..e0d8995
--- /dev/null
+++ b/components/chat/Ac2MessageCard.tsx
@@ -0,0 +1,216 @@
+import React from 'react';
+import { StyleSheet, Text, View } from 'react-native';
+import { MaterialIcons } from '@expo/vector-icons';
+import type {
+ AC2KeyRequest as KeyRequestMessage,
+ AC2SigningRequest as SigningRequestMessage,
+} from '@algorandfoundation/ac2-sdk/schema';
+import { theme } from '@/theme';
+import { Button } from '@/components/Button';
+import type { Ac2MessageEntry } from '@/stores/ac2Messages';
+
+// ─── Types ────────────────────────────────────────────────────────────────────
+
+interface Ac2MessageCardProps {
+ entry: Ac2MessageEntry;
+ timestamp: number;
+ // Whether this request already has a matching outbound response/rejection.
+ actioned: boolean;
+ // Whether the request's `expires_time` has passed.
+ expired: boolean;
+ isConnected: boolean;
+ onApproveSigning: (req: SigningRequestMessage) => void;
+ onRejectSigning: (req: SigningRequestMessage) => void;
+ onApproveKey: (req: KeyRequestMessage) => void;
+ onRejectKey: (req: KeyRequestMessage) => void;
+}
+
+// ─── Component ────────────────────────────────────────────────────────────────
+
+// An AC2 protocol envelope rendered as a distinct, monospaced card so the
+// protocol surface is visually obvious in the reference UI. Inbound signing /
+// key requests gain approve/reject actions until they're actioned or expired.
+export function Ac2MessageCard({
+ entry,
+ timestamp,
+ actioned,
+ expired,
+ isConnected,
+ onApproveSigning,
+ onRejectSigning,
+ onApproveKey,
+ onRejectKey,
+}: Ac2MessageCardProps) {
+ const isOutbound = entry.direction === 'outbound';
+ const isInboundSigningRequest = !isOutbound && entry.envelope.type === 'ac2/SigningRequest';
+ const isInboundKeyRequest = !isOutbound && entry.envelope.type === 'ac2/KeyRequest';
+ const req = isInboundSigningRequest ? (entry.envelope as SigningRequestMessage) : null;
+ const keyReq = isInboundKeyRequest ? (entry.envelope as KeyRequestMessage) : null;
+
+ return (
+
+
+
+ {entry.envelope.type}
+ {isOutbound ? '→ peer' : 'peer →'}
+
+
+ {req && {req.body.description}}
+ {keyReq && (
+
+ The agent is requesting an identity key ({keyReq.body.key_type}) for{' '}
+ {keyReq.body.for_operation}.
+
+ )}
+
+
+ {JSON.stringify(entry.envelope.body, null, 2)}
+
+
+ {req && (
+ onRejectSigning(req)}
+ onApprove={() => onApproveSigning(req)}
+ />
+ )}
+ {keyReq && (
+ onRejectKey(keyReq)}
+ onApprove={() => onApproveKey(keyReq)}
+ />
+ )}
+
+
+ {new Date(timestamp).toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' })}
+
+
+ );
+}
+
+// Approve/reject footer — collapses to an "Actioned"/"Expired" status line once
+// the request can no longer be acted on.
+function RequestActions({
+ actioned,
+ expired,
+ isConnected,
+ rejectLabel,
+ approveLabel,
+ onReject,
+ onApprove,
+}: {
+ actioned: boolean;
+ expired: boolean;
+ isConnected: boolean;
+ rejectLabel: string;
+ approveLabel: string;
+ onReject: () => void;
+ onApprove: () => void;
+}) {
+ if (actioned) return Actioned;
+ if (expired) return Expired;
+ return (
+
+ }
+ />
+ }
+ />
+
+ );
+}
+
+// ─── Styles ───────────────────────────────────────────────────────────────────
+
+const styles = StyleSheet.create({
+ bubble: {
+ alignSelf: 'stretch',
+ backgroundColor: theme.colors.chat.ac2Surface,
+ borderRadius: theme.borderRadius.md,
+ padding: theme.spacing.md,
+ marginBottom: theme.spacing.sm,
+ borderWidth: 1,
+ borderColor: theme.colors.chat.ac2Border,
+ },
+ inbound: {
+ borderLeftWidth: 4,
+ borderLeftColor: theme.colors.chat.accent,
+ },
+ outbound: {
+ borderRightWidth: 4,
+ borderRightColor: theme.colors.chat.accent,
+ },
+ header: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ gap: theme.spacing.xs + 2,
+ marginBottom: theme.spacing.xs + 2,
+ },
+ type: {
+ fontSize: theme.typography.sizes.sm + 1,
+ fontFamily: theme.typography.fonts.bold,
+ color: theme.colors.chat.ac2Title,
+ flex: 1,
+ },
+ direction: {
+ fontSize: theme.typography.sizes.sm,
+ color: theme.colors.chat.accent,
+ fontFamily: theme.typography.fonts.semiBold,
+ },
+ body: {
+ fontFamily: 'monospace',
+ fontSize: theme.typography.sizes.sm + 1,
+ color: theme.colors.chat.ac2Text,
+ },
+ description: {
+ fontSize: theme.typography.sizes.base,
+ color: theme.colors.chat.ac2Text,
+ marginBottom: theme.spacing.xs + 2,
+ fontFamily: theme.typography.fonts.medium,
+ },
+ actions: {
+ flexDirection: 'row',
+ justifyContent: 'flex-end',
+ gap: theme.spacing.sm,
+ marginTop: theme.spacing.sm,
+ },
+ actioned: {
+ fontSize: theme.typography.sizes.sm + 1,
+ fontFamily: theme.typography.fonts.semiBold,
+ color: theme.colors.chat.actioned,
+ fontStyle: 'italic',
+ },
+ expired: {
+ fontSize: theme.typography.sizes.sm + 1,
+ fontFamily: theme.typography.fonts.semiBold,
+ color: theme.colors.chat.expired,
+ fontStyle: 'italic',
+ },
+ timestamp: {
+ fontFamily: theme.typography.fonts.regular,
+ fontSize: 10,
+ marginTop: theme.spacing.xs,
+ alignSelf: 'flex-end',
+ color: theme.colors.chat.timestamp,
+ },
+});
diff --git a/components/chat/ChatHeaderActions.tsx b/components/chat/ChatHeaderActions.tsx
new file mode 100644
index 0000000..681fbac
--- /dev/null
+++ b/components/chat/ChatHeaderActions.tsx
@@ -0,0 +1,58 @@
+import { theme } from '@/theme';
+import { MaterialIcons } from '@expo/vector-icons';
+import React from 'react';
+import { StyleSheet, TouchableOpacity, View } from 'react-native';
+
+// ─── Component ────────────────────────────────────────────────────────────────
+
+// Right-hand header controls for a connected conversation: a transient
+// heartbeat pulse, a clear-history action, and a disconnect action. Rendered as
+// the navigation header's `headerRight`.
+export function ChatHeaderActions({
+ isHeartbeatVisible,
+ onClear,
+ onDisconnect,
+ onTrace,
+}: {
+ isHeartbeatVisible: boolean;
+ onClear: () => void;
+ onDisconnect: () => void;
+ onTrace: () => void;
+}) {
+ return (
+
+ {isHeartbeatVisible && (
+
+ )}
+
+
+
+
+
+
+
+
+
+
+ );
+}
+
+// ─── Styles ───────────────────────────────────────────────────────────────────
+
+const styles = StyleSheet.create({
+ container: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ },
+ heartbeat: {
+ marginRight: theme.spacing.sm + 2,
+ },
+ action: {
+ marginRight: theme.spacing.base - 1,
+ },
+});
diff --git a/components/chat/ChatInput.tsx b/components/chat/ChatInput.tsx
new file mode 100644
index 0000000..41573ed
--- /dev/null
+++ b/components/chat/ChatInput.tsx
@@ -0,0 +1,80 @@
+import React from 'react';
+import { Platform, StyleSheet, TextInput, TouchableOpacity, View } from 'react-native';
+import { MaterialIcons } from '@expo/vector-icons';
+import { theme } from '@/theme';
+
+// ─── Component ────────────────────────────────────────────────────────────────
+
+// Message composer pinned to the bottom of the conversation. The send button
+// is disabled while empty or while the connection is down.
+export function ChatInput({
+ value,
+ onChangeText,
+ onSend,
+ isConnected,
+}: {
+ value: string;
+ onChangeText: (text: string) => void;
+ onSend: () => void;
+ isConnected: boolean;
+}) {
+ const canSend = !!value.trim() && isConnected;
+ return (
+
+
+
+
+
+
+ );
+}
+
+// ─── Styles ───────────────────────────────────────────────────────────────────
+
+const styles = StyleSheet.create({
+ container: {
+ flexDirection: 'row',
+ paddingHorizontal: theme.spacing.md,
+ paddingVertical: theme.spacing.sm,
+ backgroundColor: theme.colors.bg.white,
+ borderTopWidth: 1,
+ borderTopColor: theme.colors.chat.divider,
+ alignItems: 'flex-end',
+ paddingBottom: Platform.OS === 'ios' ? theme.spacing.sm : theme.spacing.md,
+ },
+ input: {
+ flex: 1,
+ backgroundColor: theme.colors.chat.inputBg,
+ borderRadius: 22,
+ paddingHorizontal: theme.spacing.base,
+ paddingVertical: theme.spacing.sm + 2,
+ marginRight: theme.spacing.sm + 2,
+ fontFamily: theme.typography.fonts.regular,
+ fontSize: theme.typography.sizes.lg - 1,
+ maxHeight: 120,
+ color: theme.colors.chat.inputText,
+ },
+ sendButton: {
+ backgroundColor: theme.colors.chat.sendBg,
+ width: 44,
+ height: 44,
+ borderRadius: 22,
+ justifyContent: 'center',
+ alignItems: 'center',
+ marginBottom: 2,
+ },
+ sendButtonDisabled: {
+ backgroundColor: theme.colors.chat.sendDisabled,
+ },
+});
diff --git a/components/chat/ChatTimeline.tsx b/components/chat/ChatTimeline.tsx
new file mode 100644
index 0000000..1637269
--- /dev/null
+++ b/components/chat/ChatTimeline.tsx
@@ -0,0 +1,131 @@
+import React from 'react';
+import { FlatList, NativeScrollEvent, NativeSyntheticEvent, StyleSheet } from 'react-native';
+import type {
+ AC2KeyRequest as KeyRequestMessage,
+ AC2SigningRequest as SigningRequestMessage,
+} from '@algorandfoundation/ac2-sdk/schema';
+import { theme } from '@/theme';
+import { MessageBubble } from './MessageBubble';
+import { TypingIndicator } from './TypingIndicator';
+import { ToolActivityCard } from './ToolActivityCard';
+import { Ac2MessageCard } from './Ac2MessageCard';
+import type { TimelineEntry } from './timeline';
+
+// ─── Types ────────────────────────────────────────────────────────────────────
+
+interface ChatTimelineProps {
+ timeline: TimelineEntry[];
+ listRef: React.RefObject | null>;
+ // Request ids that already have a matching outbound response/rejection.
+ actionedRequestIds: Set;
+ isConnected: boolean;
+ onApproveSigning: (req: SigningRequestMessage) => void;
+ onRejectSigning: (req: SigningRequestMessage) => void;
+ onApproveKey: (req: KeyRequestMessage) => void;
+ onRejectKey: (req: KeyRequestMessage) => void;
+ onScroll: (e: NativeSyntheticEvent) => void;
+ onScrollBeginDrag: () => void;
+ onScrollEndDrag: () => void;
+ onMomentumScrollEnd: () => void;
+ onContentSizeChange: () => void;
+}
+
+// ─── Component ────────────────────────────────────────────────────────────────
+
+// Scrolling conversation view. Each timeline entry is dispatched to its
+// dedicated renderer (text bubble, typing indicator, tool card, or AC2 card).
+// Scroll/keyboard behaviour is driven by handlers owned by the screen.
+export function ChatTimeline({
+ timeline,
+ listRef,
+ actionedRequestIds,
+ isConnected,
+ onApproveSigning,
+ onRejectSigning,
+ onApproveKey,
+ onRejectKey,
+ onScroll,
+ onScrollBeginDrag,
+ onScrollEndDrag,
+ onMomentumScrollEnd,
+ onContentSizeChange,
+}: ChatTimelineProps) {
+ const renderItem = ({ item }: { item: TimelineEntry }) => {
+ if (item.kind === 'text') {
+ const m = item.data;
+ // Durable tool-activity card — render the agent's tool/exec step (command
+ // + output) as a distinct, expandable card rather than a chat bubble.
+ if (m.kind === 'tool') return ;
+ return (
+
+ );
+ }
+
+ if (item.kind === 'typing') {
+ return ;
+ }
+
+ // AC2 protocol envelope. A request is "actioned" once a matching outbound
+ // response/rejection exists on the same `thid`; "expired" once its
+ // `expires_time` has passed.
+ const entry = item.data;
+ const actionable =
+ entry.direction !== 'outbound' &&
+ (entry.envelope.type === 'ac2/SigningRequest' || entry.envelope.type === 'ac2/KeyRequest')
+ ? (entry.envelope as SigningRequestMessage | KeyRequestMessage)
+ : null;
+ const actioned = actionable ? actionedRequestIds.has(actionable.id) : false;
+ const expired =
+ actionable?.expires_time !== undefined && actionable.expires_time * 1000 < Date.now();
+
+ return (
+
+ );
+ };
+
+ return (
+ item.id}
+ contentContainerStyle={styles.list}
+ onScroll={onScroll}
+ onScrollBeginDrag={onScrollBeginDrag}
+ onScrollEndDrag={onScrollEndDrag}
+ onMomentumScrollEnd={onMomentumScrollEnd}
+ scrollEventThrottle={16}
+ onContentSizeChange={onContentSizeChange}
+ keyboardDismissMode="on-drag"
+ keyboardShouldPersistTaps="handled"
+ />
+ );
+}
+
+// ─── Styles ───────────────────────────────────────────────────────────────────
+
+const styles = StyleSheet.create({
+ list: {
+ padding: theme.spacing.base,
+ // Extra bottom breathing room so the last bubble — especially the live
+ // "thinking…/typing…/running…" indicator that appears while the agent is
+ // actively replying or executing a tool — is never clipped against the
+ // input bar after an auto-scroll-to-end.
+ paddingBottom: 48,
+ flexGrow: 1,
+ },
+});
diff --git a/components/chat/MessageBubble.tsx b/components/chat/MessageBubble.tsx
new file mode 100644
index 0000000..b261d68
--- /dev/null
+++ b/components/chat/MessageBubble.tsx
@@ -0,0 +1,81 @@
+import React from 'react';
+import { StyleSheet, Text, View } from 'react-native';
+import { theme } from '@/theme';
+
+// ─── Component ────────────────────────────────────────────────────────────────
+
+// A single free-text chat bubble. `me` messages align right (filled accent);
+// peer messages align left (muted surface).
+export function MessageBubble({
+ text,
+ sender,
+ timestamp,
+}: {
+ text: string;
+ sender: 'me' | 'peer';
+ timestamp: number;
+}) {
+ const isMe = sender === 'me';
+ return (
+
+ {text}
+
+ {new Date(timestamp).toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' })}
+
+
+ );
+}
+
+// ─── Styles ───────────────────────────────────────────────────────────────────
+
+export const bubbleStyles = StyleSheet.create({
+ bubble: {
+ maxWidth: '85%',
+ paddingHorizontal: theme.spacing.base,
+ paddingVertical: theme.spacing.sm + 2,
+ borderRadius: 18,
+ marginBottom: theme.spacing.sm,
+ ...theme.shadows.sm,
+ shadowOpacity: 0.05,
+ shadowRadius: 1,
+ },
+ myMessage: {
+ alignSelf: 'flex-end',
+ backgroundColor: theme.colors.chat.bubbleMe,
+ borderBottomRightRadius: 4,
+ borderTopRightRadius: theme.borderRadius.lg,
+ borderTopLeftRadius: theme.borderRadius.lg,
+ borderBottomLeftRadius: theme.borderRadius.lg,
+ },
+ peerMessage: {
+ alignSelf: 'flex-start',
+ backgroundColor: theme.colors.chat.bubblePeer,
+ borderBottomLeftRadius: 4,
+ borderTopRightRadius: theme.borderRadius.lg,
+ borderTopLeftRadius: theme.borderRadius.lg,
+ borderBottomRightRadius: theme.borderRadius.lg,
+ },
+ text: {
+ fontFamily: theme.typography.fonts.regular,
+ fontSize: theme.typography.sizes.lg - 1,
+ lineHeight: 22,
+ },
+ myText: {
+ color: theme.colors.chat.bubbleMeText,
+ },
+ peerText: {
+ color: theme.colors.chat.bubblePeerText,
+ },
+ timestamp: {
+ fontFamily: theme.typography.fonts.regular,
+ fontSize: 10,
+ marginTop: theme.spacing.xs,
+ alignSelf: 'flex-end',
+ color: theme.colors.chat.timestamp,
+ },
+ myTimestamp: {
+ color: theme.colors.chat.timestampInverse,
+ },
+});
+
+const styles = bubbleStyles;
diff --git a/components/chat/ThreadBar.tsx b/components/chat/ThreadBar.tsx
new file mode 100644
index 0000000..5eea061
--- /dev/null
+++ b/components/chat/ThreadBar.tsx
@@ -0,0 +1,135 @@
+import React from 'react';
+import { Alert, ScrollView, StyleSheet, Text, TouchableOpacity, View } from 'react-native';
+import { MaterialIcons } from '@expo/vector-icons';
+import { theme } from '@/theme';
+
+// ─── Component ────────────────────────────────────────────────────────────────
+
+interface ThreadBarProps {
+ threads: string[];
+ activeThid: string;
+ // The thread id treated as the connection's primary/"Main" conversation.
+ defaultThid: string;
+ isConnected: boolean;
+ // Human-facing label for a thread chip.
+ threadLabel: (thid: string) => string;
+ onOpenThread: (thid: string) => void;
+ onCloseThread: (thid: string) => void;
+ onNewThread: () => void;
+}
+
+// Conversation switcher — one connection multiplexes several threads. Tapping a
+// chip switches the active conversation (and sends ac2/ConversationOpen so the
+// agent follows); the "New" chip opens a brand-new conversation. Long-pressing
+// a non-default chip prompts to close that conversation.
+export function ThreadBar({
+ threads,
+ activeThid,
+ defaultThid,
+ isConnected,
+ threadLabel,
+ onOpenThread,
+ onCloseThread,
+ onNewThread,
+}: ThreadBarProps) {
+ return (
+
+
+ {threads.map((thid) => {
+ const isActive = thid === activeThid;
+ return (
+ {
+ if (!isActive) onOpenThread(thid);
+ }}
+ onLongPress={() => {
+ if (thid !== defaultThid) {
+ Alert.alert('Close conversation?', `Close "${threadLabel(thid)}"?`, [
+ { text: 'Cancel', style: 'cancel' },
+ { text: 'Close', style: 'destructive', onPress: () => onCloseThread(thid) },
+ ]);
+ }
+ }}
+ >
+
+
+ {threadLabel(thid)}
+
+
+ );
+ })}
+
+
+ New
+
+
+
+ );
+}
+
+// ─── Styles ───────────────────────────────────────────────────────────────────
+
+const styles = StyleSheet.create({
+ bar: {
+ backgroundColor: theme.colors.bg.surface,
+ borderBottomWidth: 1,
+ borderBottomColor: theme.colors.chat.divider,
+ },
+ content: {
+ paddingHorizontal: theme.spacing.md,
+ paddingVertical: theme.spacing.sm,
+ gap: theme.spacing.sm,
+ alignItems: 'center',
+ },
+ chip: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ gap: 5,
+ paddingHorizontal: theme.spacing.md,
+ paddingVertical: theme.spacing.xs + 2,
+ borderRadius: theme.borderRadius.lg,
+ backgroundColor: theme.colors.chat.chipBg,
+ borderWidth: 1,
+ borderColor: theme.colors.chat.chipBorder,
+ },
+ chipActive: {
+ backgroundColor: theme.colors.chat.chipActiveBg,
+ borderColor: theme.colors.chat.chipActiveBg,
+ },
+ chipText: {
+ fontSize: theme.typography.sizes.md,
+ fontFamily: theme.typography.fonts.semiBold,
+ color: theme.colors.chat.chipText,
+ },
+ chipTextActive: {
+ color: theme.colors.chat.chipTextActive,
+ },
+ newChip: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ gap: theme.spacing.xs,
+ paddingHorizontal: theme.spacing.md,
+ paddingVertical: theme.spacing.xs + 2,
+ borderRadius: theme.borderRadius.lg,
+ borderWidth: 1,
+ borderColor: theme.colors.chat.newChipBorder,
+ borderStyle: 'dashed',
+ backgroundColor: theme.colors.chat.newChipBg,
+ },
+ newChipText: {
+ fontSize: theme.typography.sizes.md,
+ fontFamily: theme.typography.fonts.bold,
+ color: theme.colors.chat.newChipText,
+ },
+});
diff --git a/components/chat/ToolActivityCard.tsx b/components/chat/ToolActivityCard.tsx
new file mode 100644
index 0000000..62f5564
--- /dev/null
+++ b/components/chat/ToolActivityCard.tsx
@@ -0,0 +1,107 @@
+import React, { useState } from 'react';
+import { StyleSheet, Text, TouchableOpacity, View } from 'react-native';
+import { MaterialIcons } from '@expo/vector-icons';
+import { theme } from '@/theme';
+import type { Message } from '@/stores/messages';
+
+// ─── Component ────────────────────────────────────────────────────────────────
+
+// A durable "tool card": one tool/exec step the agent ran during a turn,
+// rendered distinctly from chat bubbles. Collapsed by default — only the tool
+// name (and a one-line command preview) shows, keeping a busy turn's exec
+// activity from flooding the conversation. Tapping the header expands the card
+// to reveal the full command and (potentially long) output.
+export function ToolActivityCard({ message }: { message: Message }) {
+ const [expanded, setExpanded] = useState(false);
+ const toolName = message.tool || 'tool';
+ const hasOutput = !!message.output && message.output.trim().length > 0;
+ const hasCommand = !!message.command && message.command.trim().length > 0;
+ const hasBody = hasOutput || hasCommand;
+
+ return (
+
+ setExpanded((v) => !v)}
+ activeOpacity={hasBody ? 0.6 : 1}
+ disabled={!hasBody}
+ >
+
+ {toolName}
+ {/* When collapsed, surface a compact one-line command preview so the
+ user can tell what ran without expanding the whole card. */}
+ {!expanded && hasCommand && (
+
+ {message.command}
+
+ )}
+
+ {new Date(message.timestamp).toLocaleTimeString([], {
+ hour: '2-digit',
+ minute: '2-digit',
+ })}
+
+ {hasBody && (
+
+ )}
+
+ {expanded && hasCommand && {`$ ${message.command}`}}
+ {expanded && hasOutput && {message.output}}
+
+ );
+}
+
+// ─── Styles ───────────────────────────────────────────────────────────────────
+
+const styles = StyleSheet.create({
+ card: {
+ alignSelf: 'stretch',
+ backgroundColor: theme.colors.chat.toolBg,
+ borderRadius: theme.borderRadius.md,
+ padding: theme.spacing.md,
+ marginBottom: theme.spacing.sm,
+ borderWidth: 1,
+ borderColor: theme.colors.chat.toolBorder,
+ borderLeftWidth: 4,
+ borderLeftColor: theme.colors.chat.accent,
+ },
+ header: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ gap: theme.spacing.xs + 2,
+ marginBottom: theme.spacing.xs + 2,
+ },
+ name: {
+ fontSize: theme.typography.sizes.sm + 1,
+ fontFamily: theme.typography.fonts.bold,
+ color: theme.colors.chat.toolName,
+ },
+ time: {
+ fontFamily: theme.typography.fonts.regular,
+ fontSize: 10,
+ color: theme.colors.chat.toolMeta,
+ marginLeft: 'auto',
+ },
+ command: {
+ fontFamily: 'monospace',
+ fontSize: theme.typography.sizes.sm + 1,
+ color: theme.colors.chat.toolCommand,
+ marginBottom: theme.spacing.xs,
+ marginTop: theme.spacing.xs,
+ },
+ commandPreview: {
+ flex: 1,
+ fontFamily: 'monospace',
+ fontSize: theme.typography.sizes.sm,
+ color: theme.colors.chat.toolMeta,
+ },
+ output: {
+ fontFamily: 'monospace',
+ fontSize: theme.typography.sizes.sm + 1,
+ color: theme.colors.chat.toolOutput,
+ },
+});
diff --git a/components/chat/TypingIndicator.tsx b/components/chat/TypingIndicator.tsx
new file mode 100644
index 0000000..4d33af8
--- /dev/null
+++ b/components/chat/TypingIndicator.tsx
@@ -0,0 +1,60 @@
+import React from 'react';
+import { StyleSheet, Text, View } from 'react-native';
+import { MaterialIcons } from '@expo/vector-icons';
+import { theme } from '@/theme';
+import { bubbleStyles } from './MessageBubble';
+
+// ─── Component ────────────────────────────────────────────────────────────────
+
+// Ephemeral peer-side indicator shown while the agent is working on a reply:
+// - thinking — model running, no tokens yet
+// - tool — running an operation (optionally named via `detail`)
+// - typing — streaming reply, with a live preview of `text` so far
+export function TypingIndicator({
+ text,
+ presence,
+ detail,
+}: {
+ text: string;
+ presence: 'thinking' | 'tool' | 'typing';
+ detail?: string | null;
+}) {
+ const iconName =
+ presence === 'thinking' ? 'psychology' : presence === 'tool' ? 'build' : 'more-horiz';
+ const label =
+ presence === 'thinking'
+ ? 'Agent is thinking…'
+ : presence === 'tool'
+ ? detail
+ ? `Agent is running ${detail}…`
+ : 'Agent is working…'
+ : 'Agent is typing…';
+
+ return (
+
+ {text.trim().length > 0 && (
+ {text}
+ )}
+
+
+ {label}
+
+
+ );
+}
+
+// ─── Styles ───────────────────────────────────────────────────────────────────
+
+const styles = StyleSheet.create({
+ header: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ gap: theme.spacing.xs,
+ marginTop: theme.spacing.xs,
+ },
+ label: {
+ fontSize: theme.typography.sizes.md,
+ fontStyle: 'italic',
+ color: theme.colors.chat.accent,
+ },
+});
diff --git a/components/chat/timeline.ts b/components/chat/timeline.ts
new file mode 100644
index 0000000..f5b658c
--- /dev/null
+++ b/components/chat/timeline.ts
@@ -0,0 +1,88 @@
+import type { Message } from '@/stores/messages';
+import type { Ac2MessageEntry } from '@/stores/ac2Messages';
+
+// ─── Types ────────────────────────────────────────────────────────────────────
+
+// Unified timeline entry — keeps free-text chat and AC2 protocol messages
+// in the same scroll view while preserving their distinct typing/rendering.
+export type TimelineEntry =
+ | { kind: 'text'; id: string; timestamp: number; data: Message }
+ | { kind: 'ac2'; id: string; timestamp: number; data: Ac2MessageEntry }
+ | {
+ kind: 'typing';
+ id: string;
+ timestamp: number;
+ text: string;
+ presence: 'thinking' | 'tool' | 'typing';
+ detail?: string | null;
+ };
+
+export type AgentPresence = 'thinking' | 'tool' | 'typing' | null;
+
+// ─── Builder ──────────────────────────────────────────────────────────────────
+
+interface BuildTimelineArgs {
+ textMessages: Message[];
+ ac2Messages: Ac2MessageEntry[];
+ // The agent's live presence (out-of-band frames). `null` while idle.
+ agentPresence: AgentPresence;
+ // Partial reply text accumulated while the agent streams its response.
+ activeStreamText: string;
+ agentPresenceDetail?: string | null;
+}
+
+// Merge the active conversation's text messages and AC2 envelopes into a single
+// chronologically-sorted timeline, appending an ephemeral "thinking/typing/
+// working" indicator while the agent is actively replying.
+export function buildTimeline({
+ textMessages,
+ ac2Messages,
+ agentPresence,
+ activeStreamText,
+ agentPresenceDetail,
+}: BuildTimelineArgs): TimelineEntry[] {
+ const timeline: TimelineEntry[] = [
+ ...textMessages.map(
+ (m): TimelineEntry => ({
+ kind: 'text',
+ id: `t-${m.id}`,
+ timestamp: m.timestamp,
+ data: m,
+ }),
+ ),
+ ...ac2Messages.map(
+ (m): TimelineEntry => ({
+ kind: 'ac2',
+ id: `a-${m.id}`,
+ timestamp: m.receivedAt,
+ data: m,
+ }),
+ ),
+ ].sort((a, b) => a.timestamp - b.timestamp);
+
+ // While the agent is working on a reply, render an ephemeral indicator
+ // instead of a final message bubble:
+ // - "Agent is thinking…" once the agent has acked the message and the
+ // model is running (no tokens yet);
+ // - "Agent is typing…" (with a live preview of the partial text) once
+ // the reply starts streaming.
+ // Both are driven by the agent's out-of-band presence frames; we also fall
+ // back to `typing` whenever partial stream text exists. Once the stream
+ // goes idle the accumulated text is committed as a normal peer message by
+ // `useConnection`.
+ const presence: 'thinking' | 'tool' | 'typing' | null = activeStreamText
+ ? 'typing'
+ : agentPresence;
+ if (presence) {
+ timeline.push({
+ kind: 'typing',
+ id: 'active-stream',
+ timestamp: Date.now(),
+ text: activeStreamText,
+ presence,
+ detail: agentPresenceDetail,
+ });
+ }
+
+ return timeline;
+}
diff --git a/package.json b/package.json
index 6b1540a..3a61fa0 100644
--- a/package.json
+++ b/package.json
@@ -38,10 +38,11 @@
"@algorandfoundation/liquid-client": "^1.0.0-canary.9",
"@algorandfoundation/log-store": "^1.0.0-canary.3",
"@algorandfoundation/react-native-keystore": "^1.0.0-canary.12",
- "@algorandfoundation/react-native-passkey-autofill": "1.0.0-canary.20",
+ "@algorandfoundation/react-native-passkey-autofill": "1.0.0-canary.21",
"@algorandfoundation/wallet-provider": "1.0.0-canary.5",
"@config-plugins/react-native-webrtc": "^13.0.0",
"@expo/vector-icons": "^15.0.3",
+ "@gorhom/bottom-sheet": "^5.2.14",
"@noble/hashes": "^1.8.0",
"@react-navigation/bottom-tabs": "^7.4.0",
"@react-navigation/elements": "^2.6.3",
@@ -54,6 +55,7 @@
"buffer": "^6.0.3",
"expo": "^54.0.33",
"expo-camera": "~17.0.10",
+ "expo-clipboard": "~8.0.8",
"expo-constants": "~18.0.13",
"expo-dev-client": "~6.0.20",
"expo-document-picker": "~14.0.8",
@@ -112,7 +114,7 @@
"react-native-mmkv": "$react-native-mmkv",
"react-native-quick-crypto": "$react-native-quick-crypto"
},
- "@xmldom/xmldom": "^0.9.10",
+ "@xmldom/xmldom": "^0.8.10",
"ajv": "^8.18.0",
"diff": "^8.0.3",
"lightningcss": "1.30.1",
@@ -130,7 +132,7 @@
"pnpm": {
"overrides": {
"@tanstack/store": "0.9.3",
- "@xmldom/xmldom": "^0.9.10",
+ "@xmldom/xmldom": "^0.8.10",
"ajv": "^8.18.0",
"diff": "^8.0.3",
"lightningcss": "1.30.1",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 464e6a1..916171b 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,12 +1,12 @@
-lockfileVersion: "9.0"
+lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
overrides:
- "@tanstack/store": 0.9.3
- "@xmldom/xmldom": ^0.9.10
+ '@tanstack/store': 0.9.3
+ '@xmldom/xmldom': ^0.8.10
ajv: ^8.18.0
diff: ^8.0.3
lightningcss: 1.30.1
@@ -21,72 +21,76 @@ overrides:
yaml: ^2.9.0
importers:
+
.:
dependencies:
- "@algorandfoundation/ac2-sdk":
+ '@algorandfoundation/ac2-sdk':
specifier: 1.0.0-canary.1
version: 1.0.0-canary.1
- "@algorandfoundation/accounts-keystore-extension":
+ '@algorandfoundation/accounts-keystore-extension':
specifier: ^1.0.0-canary.5
version: 1.0.0-canary.5(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/accounts-store":
+ '@algorandfoundation/accounts-store':
specifier: ^1.0.0-canary.2
version: 1.0.0-canary.2(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/identities-extension":
+ '@algorandfoundation/identities-extension':
specifier: ^1.0.0-canary.1
version: 1.0.0-canary.1(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/identities-keystore-extension":
+ '@algorandfoundation/identities-keystore-extension':
specifier: ^1.0.0-canary.1
version: 1.0.0-canary.1(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/identities-store":
+ '@algorandfoundation/identities-store':
specifier: ^1.0.0-canary.1
version: 1.0.0-canary.1(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/keystore":
+ '@algorandfoundation/keystore':
specifier: ^1.0.0-canary.16
version: 1.0.0-canary.16(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/liquid-client":
+ '@algorandfoundation/liquid-client':
specifier: ^1.0.0-canary.9
version: 1.0.0-canary.9(qr-code-styling@1.9.2)(socket.io-client@4.8.3)
- "@algorandfoundation/log-store":
+ '@algorandfoundation/log-store':
specifier: ^1.0.0-canary.3
version: 1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/react-native-keystore":
+ '@algorandfoundation/react-native-keystore':
specifier: ^1.0.0-canary.12
version: 1.0.0-canary.12(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)(expo-build-properties@55.0.14(expo@54.0.35))(expo@54.0.35)(react-native-nitro-modules@0.35.9(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-quick-base64@3.0.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
- "@algorandfoundation/react-native-passkey-autofill":
- specifier: 1.0.0-canary.20
- version: 1.0.0-canary.20(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)(expo-build-properties@55.0.14(expo@54.0.35))(expo@54.0.35)(react-native-nitro-modules@0.35.9(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-quick-base64@3.0.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
- "@algorandfoundation/wallet-provider":
+ '@algorandfoundation/react-native-passkey-autofill':
+ specifier: 1.0.0-canary.21
+ version: 1.0.0-canary.21(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)(expo-build-properties@55.0.14(expo@54.0.35))(expo@54.0.35)(react-native-nitro-modules@0.35.9(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-quick-base64@3.0.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@algorandfoundation/wallet-provider':
specifier: 1.0.0-canary.5
version: 1.0.0-canary.5
- "@config-plugins/react-native-webrtc":
+ '@config-plugins/react-native-webrtc':
specifier: ^13.0.0
version: 13.0.0(expo@54.0.35)
- "@expo/vector-icons":
+ '@expo/vector-icons':
specifier: ^15.0.3
version: 15.1.1(expo-font@14.0.12(expo@54.0.35)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
- "@noble/hashes":
+ '@gorhom/bottom-sheet':
+ specifier: ^5.2.14
+ version: 5.2.14(@types/react@19.1.17)(react-native-gesture-handler@2.28.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-reanimated@3.19.5(@babel/core@7.29.7)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@noble/hashes':
specifier: ^1.8.0
version: 1.8.0
- "@react-navigation/bottom-tabs":
+ '@react-navigation/bottom-tabs':
specifier: ^7.4.0
version: 7.16.2(@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
- "@react-navigation/elements":
+ '@react-navigation/elements':
specifier: ^2.6.3
version: 2.9.19(@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
- "@react-navigation/native":
+ '@react-navigation/native':
specifier: ^7.1.8
version: 7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
- "@scure/base":
+ '@scure/base':
specifier: ^2.0.0
version: 2.2.0
- "@scure/bip39":
+ '@scure/bip39':
specifier: ^2.0.1
version: 2.2.0
- "@tanstack/react-store":
+ '@tanstack/react-store':
specifier: 0.9.1
version: 0.9.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@tanstack/store":
+ '@tanstack/store':
specifier: 0.9.3
version: 0.9.3
before-after-hook:
@@ -101,6 +105,9 @@ importers:
expo-camera:
specifier: ~17.0.10
version: 17.0.10(expo@54.0.35)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ expo-clipboard:
+ specifier: ~8.0.8
+ version: 8.0.8(expo@54.0.35)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
expo-constants:
specifier: ~18.0.13
version: 18.0.13(expo@54.0.35)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))
@@ -204,19 +211,19 @@ importers:
specifier: ^4.8.3
version: 4.8.3
devDependencies:
- "@babel/runtime":
+ '@babel/runtime':
specifier: ^7.29.7
version: 7.29.7
- "@testing-library/jest-native":
+ '@testing-library/jest-native':
specifier: ^5.4.3
version: 5.4.3(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0)
- "@testing-library/react-native":
+ '@testing-library/react-native':
specifier: ^13.3.3
version: 13.3.3(jest@29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3)))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0)
- "@types/jest":
+ '@types/jest':
specifier: ^30.0.0
version: 30.0.0
- "@types/react":
+ '@types/react':
specifier: ~19.1.0
version: 19.1.17
eas-cli:
@@ -254,129 +261,75 @@ importers:
version: 5.8.3
packages:
- "@0no-co/graphql.web@1.2.0":
- resolution:
- {
- integrity: sha512-/1iHy9TTr63gE1YcR5idjx8UREz1s0kFhydf3bBLCXyqjhkIc6igAzTOx3zPifCwFR87tsh/4Pa9cNts6d2otw==,
- }
+
+ '@0no-co/graphql.web@1.2.0':
+ resolution: {integrity: sha512-/1iHy9TTr63gE1YcR5idjx8UREz1s0kFhydf3bBLCXyqjhkIc6igAzTOx3zPifCwFR87tsh/4Pa9cNts6d2otw==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
peerDependenciesMeta:
graphql:
optional: true
- "@agentclientprotocol/sdk@0.22.1":
- resolution:
- {
- integrity: sha512-DfqXtl/8gO9NImq094MTaCXEU2vkhh6v7q/kT+9UjZxUqj8hYaya2OjLVIqn16MzNHcXEpShTR2RIauLSYeDQQ==,
- }
- peerDependencies:
- zod: ^3.25.0 || ^4.0.0
-
- "@algorandfoundation/ac2-sdk@1.0.0-canary.1":
- resolution:
- {
- integrity: sha512-OYP/TpCWTLpcjWtG9+RLxMhCKFb7mQwmF2KgI/Kv/7F5vILZoSoE8jAnrbkRfjo4zylvhmI7bb4G92AGzlZM1A==,
- }
-
- "@algorandfoundation/accounts-keystore-extension@1.0.0-canary.5":
- resolution:
- {
- integrity: sha512-ExbgcGfPrIulXPlitrsXRPSnITK0OPiTVOhY6Fqwd0GJYuOadnTFXEzcrjFfWwngDbuLDR7+5tUkvp33jFeW3A==,
- }
+ '@algorandfoundation/ac2-sdk@1.0.0-canary.1':
+ resolution: {integrity: sha512-OYP/TpCWTLpcjWtG9+RLxMhCKFb7mQwmF2KgI/Kv/7F5vILZoSoE8jAnrbkRfjo4zylvhmI7bb4G92AGzlZM1A==}
+
+ '@algorandfoundation/accounts-keystore-extension@1.0.0-canary.5':
+ resolution: {integrity: sha512-ExbgcGfPrIulXPlitrsXRPSnITK0OPiTVOhY6Fqwd0GJYuOadnTFXEzcrjFfWwngDbuLDR7+5tUkvp33jFeW3A==}
peerDependencies:
- "@algorandfoundation/log-store": 1.0.0-canary.3
- "@tanstack/store": 0.9.3
+ '@algorandfoundation/log-store': 1.0.0-canary.3
+ '@tanstack/store': 0.9.3
before-after-hook: 4.0.0
peerDependenciesMeta:
- "@algorandfoundation/log-store":
+ '@algorandfoundation/log-store':
optional: true
- "@algorandfoundation/accounts-store@1.0.0-canary.2":
- resolution:
- {
- integrity: sha512-IwohwXvBGL9zqCUs8uJ9J4oqFfC1BXKs01yW3EqYcUT+8YHhFIusKOo62pWmsbdgW9GwaZOtXdKdH2ZG51QByg==,
- }
+ '@algorandfoundation/accounts-store@1.0.0-canary.2':
+ resolution: {integrity: sha512-IwohwXvBGL9zqCUs8uJ9J4oqFfC1BXKs01yW3EqYcUT+8YHhFIusKOo62pWmsbdgW9GwaZOtXdKdH2ZG51QByg==}
peerDependencies:
- "@algorandfoundation/log-store": 1.0.0-canary.3
- "@tanstack/store": 0.9.3
+ '@algorandfoundation/log-store': 1.0.0-canary.3
+ '@tanstack/store': 0.9.3
before-after-hook: 4.0.0
peerDependenciesMeta:
- "@algorandfoundation/log-store":
+ '@algorandfoundation/log-store':
optional: true
- "@algorandfoundation/algokit-utils@10.0.0-beta.4":
- resolution:
- {
- integrity: sha512-+X06PW7w2zWJWPp91pHoLMQizrq7E33Y1Mj/Hz/hkLiASXWwMKVX5QsQCbvsMYk+guqayCwB6782VngLR8d1RA==,
- }
- engines: { node: ">=22.0" }
-
- "@algorandfoundation/dp256@1.1.0":
- resolution:
- {
- integrity: sha512-s+ZQG3WK6eWskfmjh0bbMImyO+SIR297s+7vQoercbM0hYvilzTBT/rEcvs4ZQxU6TxkTXLq4BRj1USjGFpsCA==,
- }
-
- "@algorandfoundation/identities-extension@1.0.0-canary.1":
- resolution:
- {
- integrity: sha512-/5a0PZfRa9/8Ke3fKN3oMdbidxyG2NRvnejnUS7I9QAEIr2HJ/FAyW+egFHq2owdnBUTLX84DVeC1Cif0V2D+g==,
- }
- peerDependencies:
- "@tanstack/store": 0.9.3
- before-after-hook: 4.0.0
+ '@algorandfoundation/algokit-utils@10.0.0-beta.4':
+ resolution: {integrity: sha512-+X06PW7w2zWJWPp91pHoLMQizrq7E33Y1Mj/Hz/hkLiASXWwMKVX5QsQCbvsMYk+guqayCwB6782VngLR8d1RA==}
+ engines: {node: '>=22.0'}
- "@algorandfoundation/identities-keystore-extension@1.0.0-canary.1":
- resolution:
- {
- integrity: sha512-RADSab8YModnD5TIJQTUeg1NBcKXBN+y8+KMNGLI7sF4ssA3qe6kH+mBP1xIsFTKJal1tIHHEDVW24I1zv8uZA==,
- }
+ '@algorandfoundation/dp256@1.1.0':
+ resolution: {integrity: sha512-s+ZQG3WK6eWskfmjh0bbMImyO+SIR297s+7vQoercbM0hYvilzTBT/rEcvs4ZQxU6TxkTXLq4BRj1USjGFpsCA==}
+
+ '@algorandfoundation/identities-extension@1.0.0-canary.1':
+ resolution: {integrity: sha512-/5a0PZfRa9/8Ke3fKN3oMdbidxyG2NRvnejnUS7I9QAEIr2HJ/FAyW+egFHq2owdnBUTLX84DVeC1Cif0V2D+g==}
peerDependencies:
- "@tanstack/store": 0.9.3
+ '@tanstack/store': 0.9.3
before-after-hook: 4.0.0
- "@algorandfoundation/identities-store@1.0.0-canary.1":
- resolution:
- {
- integrity: sha512-L2lnripoM3h+K9Z1XRrPE3uUxSR9n5ams87eRoRw3Yt3Q11wEa6IP91sQajYggfOCNaLI2S17kS0KNlFv8Yd1A==,
- }
+ '@algorandfoundation/identities-keystore-extension@1.0.0-canary.1':
+ resolution: {integrity: sha512-RADSab8YModnD5TIJQTUeg1NBcKXBN+y8+KMNGLI7sF4ssA3qe6kH+mBP1xIsFTKJal1tIHHEDVW24I1zv8uZA==}
peerDependencies:
- "@tanstack/store": 0.9.3
+ '@tanstack/store': 0.9.3
before-after-hook: 4.0.0
- "@algorandfoundation/keystore@1.0.0-canary.16":
- resolution:
- {
- integrity: sha512-nqimJI+L0InFRvtgy6x/kn/nvl5u2Cqa8J7hDC0j6xa8qnQepPcqv/ONtAPkp5y3i3AKB6XKZfDo9LO29n06OQ==,
- }
+ '@algorandfoundation/identities-store@1.0.0-canary.1':
+ resolution: {integrity: sha512-L2lnripoM3h+K9Z1XRrPE3uUxSR9n5ams87eRoRw3Yt3Q11wEa6IP91sQajYggfOCNaLI2S17kS0KNlFv8Yd1A==}
peerDependencies:
- "@algorandfoundation/log-store": 1.0.0-canary.3
- "@tanstack/store": 0.9.3
+ '@tanstack/store': 0.9.3
before-after-hook: 4.0.0
- peerDependenciesMeta:
- "@algorandfoundation/log-store":
- optional: true
- "@algorandfoundation/liquid-client@1.0.0-canary.8":
- resolution:
- {
- integrity: sha512-sGsI5PMFy3DZfxuiUyVlotS+NNVJbTZ+z20c+b0Fsc9NjxVxM6cpbFxNx4G+XtrMuGUxHqjSGJmPNKRdotw6gw==,
- }
+ '@algorandfoundation/keystore@1.0.0-canary.16':
+ resolution: {integrity: sha512-nqimJI+L0InFRvtgy6x/kn/nvl5u2Cqa8J7hDC0j6xa8qnQepPcqv/ONtAPkp5y3i3AKB6XKZfDo9LO29n06OQ==}
peerDependencies:
- qr-code-styling: ^1.9.2
- socket.io-client: ^4.7.5
+ '@algorandfoundation/log-store': 1.0.0-canary.3
+ '@tanstack/store': 0.9.3
+ before-after-hook: 4.0.0
peerDependenciesMeta:
- qr-code-styling:
- optional: true
- socket.io-client:
+ '@algorandfoundation/log-store':
optional: true
- "@algorandfoundation/liquid-client@1.0.0-canary.9":
- resolution:
- {
- integrity: sha512-ACZq4SPJ0XHkb1mAo21rlopgobTrTeLiEHrJuNUgdcCiPwoz/S2/KsKyhEvlb34J2HZmyudN4oh+KvA0EqllXw==,
- }
+ '@algorandfoundation/liquid-client@1.0.0-canary.9':
+ resolution: {integrity: sha512-ACZq4SPJ0XHkb1mAo21rlopgobTrTeLiEHrJuNUgdcCiPwoz/S2/KsKyhEvlb34J2HZmyudN4oh+KvA0EqllXw==}
peerDependencies:
qr-code-styling: ^1.9.2
socket.io-client: ^4.7.5
@@ -386,3708 +339,1675 @@ packages:
socket.io-client:
optional: true
- "@algorandfoundation/log-store@1.0.0-canary.3":
- resolution:
- {
- integrity: sha512-5v6NqxtQJKljITNflLS4O6b5i3fhkiZjr+dLuEmeo8eDUSN6Mcwp2LbT3D1P7RpFGBu1T9FmUD0qxTJNXpn0Ew==,
- }
+ '@algorandfoundation/log-store@1.0.0-canary.3':
+ resolution: {integrity: sha512-5v6NqxtQJKljITNflLS4O6b5i3fhkiZjr+dLuEmeo8eDUSN6Mcwp2LbT3D1P7RpFGBu1T9FmUD0qxTJNXpn0Ew==}
peerDependencies:
- "@tanstack/store": 0.9.3
+ '@tanstack/store': 0.9.3
before-after-hook: 4.0.0
- "@algorandfoundation/react-native-keystore@1.0.0-canary.12":
- resolution:
- {
- integrity: sha512-imCpcdI09mUE17jr/T7g0NhHzg4c23OHOF/kCl1medi2hRSCJ9HjdnW6IVQGNZj8c8NMjVF72GHBV5Z2Dz0ddw==,
- }
+ '@algorandfoundation/react-native-keystore@1.0.0-canary.12':
+ resolution: {integrity: sha512-imCpcdI09mUE17jr/T7g0NhHzg4c23OHOF/kCl1medi2hRSCJ9HjdnW6IVQGNZj8c8NMjVF72GHBV5Z2Dz0ddw==}
peerDependencies:
- "@algorandfoundation/log-store": 1.0.0-canary.3
- "@tanstack/store": 0.9.3
+ '@algorandfoundation/log-store': 1.0.0-canary.3
+ '@tanstack/store': 0.9.3
before-after-hook: 4.0.0
peerDependenciesMeta:
- "@algorandfoundation/log-store":
+ '@algorandfoundation/log-store':
optional: true
- "@algorandfoundation/react-native-passkey-autofill@1.0.0-canary.20":
- resolution:
- {
- integrity: sha512-FXt7pVsham6JZZ3IGxnoOW8/Z5pXmOuJJTteIGlZVd2OmH6TJA7Wqb45gB0V/kLazSJ6xHvZ9R8qEOunI2vKBw==,
- }
- engines: { node: ">=22" }
+ '@algorandfoundation/react-native-passkey-autofill@1.0.0-canary.21':
+ resolution: {integrity: sha512-mPG2uwxccQ/iwm6FrfnLPYmF72Wg7Mr4uc8BtKMIb5hzaB7EtB1S2QMBseyyqMZf0O/Iuaoi+Pd7CrudINuVSg==}
+ engines: {node: '>=22'}
peerDependencies:
- expo: "*"
+ expo: '*'
react: 19.1.0
- react-native: "*"
-
- "@algorandfoundation/wallet-provider@1.0.0-canary.5":
- resolution:
- {
- integrity: sha512-yXak4ze3uOdkSSyCkv4Qz4mm4FiqCKh3pDErZNBaIhkGCgWcboelgkEMQneBd0I/o9DwU2EfkHfRSZYxaJ11Rg==,
- }
-
- "@algorandfoundation/xhd-wallet-api@2.0.0-canary.1":
- resolution:
- {
- integrity: sha512-U6rSWMO6FKDLvMxWtfKyW5ctqSy2NrONWTU/jOA+BX0SGru0GPXsxwzFdcPa5w+X055V/xVVsr8eA3xA+m/5jA==,
- }
-
- "@anthropic-ai/sdk@0.100.1":
- resolution:
- {
- integrity: sha512-RANcEe7LpiLczkKGOwoXOTuFdPhuubS0i4xaAKOMpcqc55YO0mukgxppV7eygx3DXNjxWT6RYOLPyOy0aIAmwg==,
- }
- hasBin: true
- peerDependencies:
- zod: ^3.25.0 || ^4.0.0
- peerDependenciesMeta:
- zod:
- optional: true
+ react-native: '*'
+
+ '@algorandfoundation/wallet-provider@1.0.0-canary.5':
+ resolution: {integrity: sha512-yXak4ze3uOdkSSyCkv4Qz4mm4FiqCKh3pDErZNBaIhkGCgWcboelgkEMQneBd0I/o9DwU2EfkHfRSZYxaJ11Rg==}
+
+ '@algorandfoundation/xhd-wallet-api@2.0.0-canary.1':
+ resolution: {integrity: sha512-U6rSWMO6FKDLvMxWtfKyW5ctqSy2NrONWTU/jOA+BX0SGru0GPXsxwzFdcPa5w+X055V/xVVsr8eA3xA+m/5jA==}
+
+ '@babel/code-frame@7.10.4':
+ resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==}
+
+ '@babel/code-frame@7.23.5':
+ resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/code-frame@7.29.7':
+ resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==}
+ engines: {node: '>=6.9.0'}
- "@babel/code-frame@7.10.4":
- resolution:
- {
- integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==,
- }
-
- "@babel/code-frame@7.23.5":
- resolution:
- {
- integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/code-frame@7.29.7":
- resolution:
- {
- integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/compat-data@7.29.7":
- resolution:
- {
- integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/core@7.29.7":
- resolution:
- {
- integrity: sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/generator@7.29.7":
- resolution:
- {
- integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-annotate-as-pure@7.29.7":
- resolution:
- {
- integrity: sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-compilation-targets@7.29.7":
- resolution:
- {
- integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-create-class-features-plugin@7.29.7":
- resolution:
- {
- integrity: sha512-IY3ZD9Tmooqr3TUhc3DUWxiuo8xx1DWLhd5M7hQ+ZWJamqM2BbalrBJb2MisSLoYorOj75U03qULCxQTY9r3hg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/compat-data@7.29.7':
+ resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/core@7.29.7':
+ resolution: {integrity: sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/generator@7.29.7':
+ resolution: {integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-annotate-as-pure@7.29.7':
+ resolution: {integrity: sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-compilation-targets@7.29.7':
+ resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-create-class-features-plugin@7.29.7':
+ resolution: {integrity: sha512-IY3ZD9Tmooqr3TUhc3DUWxiuo8xx1DWLhd5M7hQ+ZWJamqM2BbalrBJb2MisSLoYorOj75U03qULCxQTY9r3hg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/helper-create-regexp-features-plugin@7.29.7":
- resolution:
- {
- integrity: sha512-907Uymvqgg1dwUA+7IGwFAOSYzQOuzPXKNJ1yxzwPffzkYFg2q2eHi1fIOs6sXkG9NbIUMunnUlkYsfRFNvomg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-create-regexp-features-plugin@7.29.7':
+ resolution: {integrity: sha512-907Uymvqgg1dwUA+7IGwFAOSYzQOuzPXKNJ1yxzwPffzkYFg2q2eHi1fIOs6sXkG9NbIUMunnUlkYsfRFNvomg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0
+ '@babel/core': ^7.0.0
- "@babel/helper-define-polyfill-provider@0.6.8":
- resolution:
- {
- integrity: sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA==,
- }
+ '@babel/helper-define-polyfill-provider@0.6.8':
+ resolution: {integrity: sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA==}
peerDependencies:
- "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
-
- "@babel/helper-globals@7.29.7":
- resolution:
- {
- integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-member-expression-to-functions@7.29.7":
- resolution:
- {
- integrity: sha512-j+7JYmk1JYDtACIGj0QJqqWZjoUpMoEikQGADMaHgCMCSDqd2+P32rfcibUNrGOMWrlzK1WJBdxrB3JJQZwWtg==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-module-imports@7.29.7":
- resolution:
- {
- integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-module-transforms@7.29.7":
- resolution:
- {
- integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
+ '@babel/helper-globals@7.29.7':
+ resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-member-expression-to-functions@7.29.7':
+ resolution: {integrity: sha512-j+7JYmk1JYDtACIGj0QJqqWZjoUpMoEikQGADMaHgCMCSDqd2+P32rfcibUNrGOMWrlzK1WJBdxrB3JJQZwWtg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-module-imports@7.29.7':
+ resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-module-transforms@7.29.7':
+ resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/helper-optimise-call-expression@7.29.7":
- resolution:
- {
- integrity: sha512-+kmGVjcT9RGYzoDwdwEqEvGgKe3BYq+O1iGzjFubaNgZHwYHP6lsF2Yghf4kEuv9BV7tYDZ913aBW9am6YKong==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-plugin-utils@7.29.7":
- resolution:
- {
- integrity: sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-remap-async-to-generator@7.29.7":
- resolution:
- {
- integrity: sha512-16AMiW26DbXWBbr3B8wNozKM0ydMLB892vaOaJW/fPJdnT8vJk5sdkQcU/isqUxyCE0cEoa8wZOcbgDuC4b6Og==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-optimise-call-expression@7.29.7':
+ resolution: {integrity: sha512-+kmGVjcT9RGYzoDwdwEqEvGgKe3BYq+O1iGzjFubaNgZHwYHP6lsF2Yghf4kEuv9BV7tYDZ913aBW9am6YKong==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-plugin-utils@7.29.7':
+ resolution: {integrity: sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-remap-async-to-generator@7.29.7':
+ resolution: {integrity: sha512-16AMiW26DbXWBbr3B8wNozKM0ydMLB892vaOaJW/fPJdnT8vJk5sdkQcU/isqUxyCE0cEoa8wZOcbgDuC4b6Og==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/helper-replace-supers@7.29.7":
- resolution:
- {
- integrity: sha512-atfGXWSeCiF4DnKZIfmJfQRkSw9b9gNNXR1kqKjbhG4pGYCOnkp8OcTB8E3NXjBu8NpheSnOeNKz8KT7UNFTmQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-replace-supers@7.29.7':
+ resolution: {integrity: sha512-atfGXWSeCiF4DnKZIfmJfQRkSw9b9gNNXR1kqKjbhG4pGYCOnkp8OcTB8E3NXjBu8NpheSnOeNKz8KT7UNFTmQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/helper-skip-transparent-expression-wrappers@7.29.7":
- resolution:
- {
- integrity: sha512-brcMGQaVzIeUb+6/bs1Av0f8YuNNjKY2JyvfRCsFuFsdKccEQ5Ges2y74D74NZ1Rz8lKJ9ksJkfqwQFJ/iNEyQ==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-string-parser@7.29.7":
- resolution:
- {
- integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-validator-identifier@7.29.7":
- resolution:
- {
- integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-validator-option@7.29.7":
- resolution:
- {
- integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-wrap-function@7.29.7":
- resolution:
- {
- integrity: sha512-iES0Skag9ERIF68aXadpO6dbXa03mNWK3sEqJaMnLNs/eC3l0lkImdfoy6Y09/SfkpawdAB4RjQ7PVA7TcVGdw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helpers@7.29.7":
- resolution:
- {
- integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/highlight@7.25.9":
- resolution:
- {
- integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/parser@7.29.7":
- resolution:
- {
- integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==,
- }
- engines: { node: ">=6.0.0" }
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-skip-transparent-expression-wrappers@7.29.7':
+ resolution: {integrity: sha512-brcMGQaVzIeUb+6/bs1Av0f8YuNNjKY2JyvfRCsFuFsdKccEQ5Ges2y74D74NZ1Rz8lKJ9ksJkfqwQFJ/iNEyQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-string-parser@7.29.7':
+ resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-identifier@7.29.7':
+ resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-option@7.29.7':
+ resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-wrap-function@7.29.7':
+ resolution: {integrity: sha512-iES0Skag9ERIF68aXadpO6dbXa03mNWK3sEqJaMnLNs/eC3l0lkImdfoy6Y09/SfkpawdAB4RjQ7PVA7TcVGdw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helpers@7.29.7':
+ resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/highlight@7.25.9':
+ resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/parser@7.29.7':
+ resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==}
+ engines: {node: '>=6.0.0'}
hasBin: true
- "@babel/plugin-proposal-decorators@7.29.7":
- resolution:
- {
- integrity: sha512-EtU0Hi3GvrTqD56xKmZvV/uCXK2ZbwVNPNLAquVItcAZpUhkXwWlo3Fmj0c2LxgSf2I8IDULeAepwNP1OefLXg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/plugin-proposal-decorators@7.29.7':
+ resolution: {integrity: sha512-EtU0Hi3GvrTqD56xKmZvV/uCXK2ZbwVNPNLAquVItcAZpUhkXwWlo3Fmj0c2LxgSf2I8IDULeAepwNP1OefLXg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-proposal-export-default-from@7.29.7":
- resolution:
- {
- integrity: sha512-p+G5BNXDcy3bOXplhY4HybQ1GxH3i2Tppmdm/3epyRu2VgJJZuUlZ61MqRTg582Q7ZLBdP7fePYvsumSEkMxcQ==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-async-generators@7.8.4":
- resolution:
- {
- integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==,
- }
+ '@babel/plugin-proposal-export-default-from@7.29.7':
+ resolution: {integrity: sha512-p+G5BNXDcy3bOXplhY4HybQ1GxH3i2Tppmdm/3epyRu2VgJJZuUlZ61MqRTg582Q7ZLBdP7fePYvsumSEkMxcQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-bigint@7.8.3":
- resolution:
- {
- integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==,
- }
+ '@babel/plugin-syntax-async-generators@7.8.4':
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-class-properties@7.12.13":
- resolution:
- {
- integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-class-static-block@7.14.5":
- resolution:
- {
- integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/plugin-syntax-bigint@7.8.3':
+ resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-decorators@7.29.7":
- resolution:
- {
- integrity: sha512-9MTTLbF39X6sqM92JPEsoI7++26hjZvzkxKZy64aMhWLH2mPkJ/Q3AV4QLmls3R14FpSpkOwQQfUh962JGQxxg==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-dynamic-import@7.8.3":
- resolution:
- {
- integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-export-default-from@7.29.7":
- resolution:
- {
- integrity: sha512-foag0BB37ROhdeIX9O8G0jX7hw0UekJc04cHMrYLOnrErsnBKqJGHJ8eDRpoCFZBvEPPygmmtw4qyU97qa4oOw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/plugin-syntax-class-properties@7.12.13':
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-flow@7.29.7":
- resolution:
- {
- integrity: sha512-ajMX6QPcyomotqwpzhkYGxcK2i/us0rs1Qo9QvUpa+Fca0FTmqrzKrctoIYLMxcOhGZldGT/BAVkRGTWBiR8gQ==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-import-attributes@7.29.7":
- resolution:
- {
- integrity: sha512-zGYcYfq/WmZ4V+kBIXQon9dSSc8ircGZqw9ZaNhhGj9nZkeBu1jHLBDQqYYi5WA9uawvA2sIMbry2nCFhf5Djg==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-import-meta@7.10.4":
- resolution:
- {
- integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==,
- }
+ '@babel/plugin-syntax-class-static-block@7.14.5':
+ resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-json-strings@7.8.3":
- resolution:
- {
- integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==,
- }
+ '@babel/plugin-syntax-decorators@7.29.7':
+ resolution: {integrity: sha512-9MTTLbF39X6sqM92JPEsoI7++26hjZvzkxKZy64aMhWLH2mPkJ/Q3AV4QLmls3R14FpSpkOwQQfUh962JGQxxg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-jsx@7.29.7":
- resolution:
- {
- integrity: sha512-TSu8+mHCoEaaCDEZ0I3+6mvTBYR4PCxQwf2z9/r5Tbztv6NaLR3B9thGTTxX2WGuGHJqRiAbKPeGTJ5XWXVg6A==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-logical-assignment-operators@7.10.4":
- resolution:
- {
- integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==,
- }
+ '@babel/plugin-syntax-dynamic-import@7.8.3':
+ resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3":
- resolution:
- {
- integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==,
- }
+ '@babel/plugin-syntax-export-default-from@7.29.7':
+ resolution: {integrity: sha512-foag0BB37ROhdeIX9O8G0jX7hw0UekJc04cHMrYLOnrErsnBKqJGHJ8eDRpoCFZBvEPPygmmtw4qyU97qa4oOw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-numeric-separator@7.10.4":
- resolution:
- {
- integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==,
- }
+ '@babel/plugin-syntax-flow@7.29.7':
+ resolution: {integrity: sha512-ajMX6QPcyomotqwpzhkYGxcK2i/us0rs1Qo9QvUpa+Fca0FTmqrzKrctoIYLMxcOhGZldGT/BAVkRGTWBiR8gQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-object-rest-spread@7.8.3":
- resolution:
- {
- integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==,
- }
+ '@babel/plugin-syntax-import-attributes@7.29.7':
+ resolution: {integrity: sha512-zGYcYfq/WmZ4V+kBIXQon9dSSc8ircGZqw9ZaNhhGj9nZkeBu1jHLBDQqYYi5WA9uawvA2sIMbry2nCFhf5Djg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-optional-catch-binding@7.8.3":
- resolution:
- {
- integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==,
- }
+ '@babel/plugin-syntax-import-meta@7.10.4':
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-optional-chaining@7.8.3":
- resolution:
- {
- integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-private-property-in-object@7.14.5":
- resolution:
- {
- integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/plugin-syntax-json-strings@7.8.3':
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-top-level-await@7.14.5":
- resolution:
- {
- integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-jsx@7.29.7':
+ resolution: {integrity: sha512-TSu8+mHCoEaaCDEZ0I3+6mvTBYR4PCxQwf2z9/r5Tbztv6NaLR3B9thGTTxX2WGuGHJqRiAbKPeGTJ5XWXVg6A==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-typescript@7.29.7":
- resolution:
- {
- integrity: sha512-ngr+82Sh0xMz25TPCZi+nC2iTzjfCdWS2ONXTp/PtSCHCgaCNBpdMqgvJ2ccdLlClVZ7sisIgB914j/JFe+RZA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4':
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-arrow-functions@7.29.7":
- resolution:
- {
- integrity: sha512-N7zArUXWzAMzm+/N0uPBeVB3Fam5lMxtUwMmDK5f/IBBS7a7p1qeUoxd/6CckXoxUdgsntq1Dh8xNW06maZbDQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-async-generator-functions@7.29.7":
- resolution:
- {
- integrity: sha512-d98gXZkgswvkyohMBABkhm3GeXhYj8psWfwQ2C7gtfrKGTykQa/iOIi+JJhwMjPlZ6Vm2XN+DCf3Es1EoG4ZLA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-numeric-separator@7.10.4':
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-async-to-generator@7.29.7":
- resolution:
- {
- integrity: sha512-pcUb2SS+RMo9TWVBwKGI5ShtoG7R+zBsFmCKDa6fe8c+hPr3XJlZgoE5j6i8W7gDjhyvy+85vmYexanvXh3d1w==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-object-rest-spread@7.8.3':
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-block-scoping@7.29.7":
- resolution:
- {
- integrity: sha512-ONyr4+AZhKh8yKWInVxU9AXA9EbsyeLcL6V0dJy6M2/62vuvpGm29zzuymbTpdc451GEpDIdAyPLP3r+P61yKQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3':
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-class-properties@7.29.7":
- resolution:
- {
- integrity: sha512-GtcpjFvanPfzNQi3eTitsCqtRRmmqzpy/A+yhTR1HaZo1Ly3EA8ZXxlPyHdR8/IuRMYc3E4wdGBewB2QKQjAaA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-optional-chaining@7.8.3':
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-class-static-block@7.29.7":
- resolution:
- {
- integrity: sha512-kibJgmEdX2iMwsHY2tSZNDgj8PwIlCQz7FK9KuGKO8zsuoUwSEhoNnNVp/emKWrbY4HeO6kkXfdMqRKKKXBm2A==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-private-property-in-object@7.14.5':
+ resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.12.0
-
- "@babel/plugin-transform-classes@7.29.7":
- resolution:
- {
- integrity: sha512-qV0OGGBVacduzQHE649JyCneOFI/maT+YKsO+K4Yi3xv2wTPNjM/W2o2gdzMwEAZz7fXNTHAe0NcSg30bIN69g==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-top-level-await@7.14.5':
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-computed-properties@7.29.7":
- resolution:
- {
- integrity: sha512-RK7/IyU5phpuCdBAuig5VkzG/EnbDaui5SQGdU9BFrHdV+mV4cUjLMQ9lJDjLNtWHsqtiefpGZUXQP2BiTYMsA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-typescript@7.29.7':
+ resolution: {integrity: sha512-ngr+82Sh0xMz25TPCZi+nC2iTzjfCdWS2ONXTp/PtSCHCgaCNBpdMqgvJ2ccdLlClVZ7sisIgB914j/JFe+RZA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-destructuring@7.29.7":
- resolution:
- {
- integrity: sha512-iPX8aD6H9zV5s7ZsqTdNocPN/MGQ5sSMnElKrktxjJRMnB2jN/1p2+R7GkfD6CAYoVFqy5A4XnSIUeGgJzIWpg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-arrow-functions@7.29.7':
+ resolution: {integrity: sha512-N7zArUXWzAMzm+/N0uPBeVB3Fam5lMxtUwMmDK5f/IBBS7a7p1qeUoxd/6CckXoxUdgsntq1Dh8xNW06maZbDQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-export-namespace-from@7.29.7":
- resolution:
- {
- integrity: sha512-24B2nOy2TeJSMheqwPD4DDQOV/elLSIlKxjZt4i05H5AgdPdWR3n18HnNrcJ+j76WJd9gbwb9jPjNYUy6RautA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-async-generator-functions@7.29.7':
+ resolution: {integrity: sha512-d98gXZkgswvkyohMBABkhm3GeXhYj8psWfwQ2C7gtfrKGTykQa/iOIi+JJhwMjPlZ6Vm2XN+DCf3Es1EoG4ZLA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-flow-strip-types@7.29.7":
- resolution:
- {
- integrity: sha512-wRHeUjUjCZnMHmiO5bRgjFLcoEh7JyTdByOW11ahhwNa4V0bmeGEaIvt51yq0zQp2yWIpqfxXXPyUP6GFJZHOQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-async-to-generator@7.29.7':
+ resolution: {integrity: sha512-pcUb2SS+RMo9TWVBwKGI5ShtoG7R+zBsFmCKDa6fe8c+hPr3XJlZgoE5j6i8W7gDjhyvy+85vmYexanvXh3d1w==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-for-of@7.29.7":
- resolution:
- {
- integrity: sha512-zeSIHh0+E1Um1WJRXCFlHQYu2ieJNdivLLjlBEp+dIBu3S51n+SZZmIXjxnItw6pz56Cn+KvK68BIBVsxq2JiQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-block-scoping@7.29.7':
+ resolution: {integrity: sha512-ONyr4+AZhKh8yKWInVxU9AXA9EbsyeLcL6V0dJy6M2/62vuvpGm29zzuymbTpdc451GEpDIdAyPLP3r+P61yKQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-function-name@7.29.7":
- resolution:
- {
- integrity: sha512-otRWaHXE6fbAGkePvaj/kvs3HsqXfPhlnzwSOlnFgbqCPMd975dW+4wZ00WFBt+/YlBGcJwNrARQTOJOb4ZrIg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-class-properties@7.29.7':
+ resolution: {integrity: sha512-GtcpjFvanPfzNQi3eTitsCqtRRmmqzpy/A+yhTR1HaZo1Ly3EA8ZXxlPyHdR8/IuRMYc3E4wdGBewB2QKQjAaA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-literals@7.29.7":
- resolution:
- {
- integrity: sha512-DZ/oLP21ZuWx1vKqnoNv6/tvEK48AQOBRai40CX9dTjGluvT/YZCyY3rryDtyUqCEoyNroy5KKPwX2iQCiRvyw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-class-static-block@7.29.7':
+ resolution: {integrity: sha512-kibJgmEdX2iMwsHY2tSZNDgj8PwIlCQz7FK9KuGKO8zsuoUwSEhoNnNVp/emKWrbY4HeO6kkXfdMqRKKKXBm2A==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-logical-assignment-operators@7.29.7":
- resolution:
- {
- integrity: sha512-A0H91hh6W8MFRkp5TqJmMr39jzGD1A1E1Ysiv2O06Sfbhkapm+XyIzxWCEh5kqwOZ1/8QZ0dY3SeQ7XBqfJd5Q==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.12.0
+
+ '@babel/plugin-transform-classes@7.29.7':
+ resolution: {integrity: sha512-qV0OGGBVacduzQHE649JyCneOFI/maT+YKsO+K4Yi3xv2wTPNjM/W2o2gdzMwEAZz7fXNTHAe0NcSg30bIN69g==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-modules-commonjs@7.29.7":
- resolution:
- {
- integrity: sha512-j0vCldybPC5b5dwCQOJ21uKtHzt7hxLygJTg9eF1ScfaikEDNfzn94XoW5Fi+seBR0nCyL23xaBFFkq7dTM8XQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-computed-properties@7.29.7':
+ resolution: {integrity: sha512-RK7/IyU5phpuCdBAuig5VkzG/EnbDaui5SQGdU9BFrHdV+mV4cUjLMQ9lJDjLNtWHsqtiefpGZUXQP2BiTYMsA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-named-capturing-groups-regex@7.29.7":
- resolution:
- {
- integrity: sha512-vuFoLwr4qnv2xbZ16SQd6uPcH5FNrLHhk/Jzo++0XJFcaDsr4gjJVg6j398oMHiC+83k/GiBzviwF5KBJkPUtQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-destructuring@7.29.7':
+ resolution: {integrity: sha512-iPX8aD6H9zV5s7ZsqTdNocPN/MGQ5sSMnElKrktxjJRMnB2jN/1p2+R7GkfD6CAYoVFqy5A4XnSIUeGgJzIWpg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/plugin-transform-nullish-coalescing-operator@7.29.7":
- resolution:
- {
- integrity: sha512-idmp1dFaekP9GbcMvG24Kvw2BfhFZjHnNJCkV4WuIY4PskJzwI3f1N5OdgYke38T7rftO6ERulFRn2cFeZwRkg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-export-namespace-from@7.29.7':
+ resolution: {integrity: sha512-24B2nOy2TeJSMheqwPD4DDQOV/elLSIlKxjZt4i05H5AgdPdWR3n18HnNrcJ+j76WJd9gbwb9jPjNYUy6RautA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-numeric-separator@7.29.7":
- resolution:
- {
- integrity: sha512-zR7fv/z14OjgHl4AgRtkDBvBMhIzCxqV/qN/2BCRC7LjFwvuzjYe7gDWxC4Wl/SNsLM6SE1IWvRPYMgSJaUvNw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-flow-strip-types@7.29.7':
+ resolution: {integrity: sha512-wRHeUjUjCZnMHmiO5bRgjFLcoEh7JyTdByOW11ahhwNa4V0bmeGEaIvt51yq0zQp2yWIpqfxXXPyUP6GFJZHOQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-object-rest-spread@7.29.7":
- resolution:
- {
- integrity: sha512-Ld98jn4c0smUywL57m7SgsHq3OpThOa6LqZJif3G6jYOovPleoFhVrBJ1WegRApSFB2wu4+RelAj9AC9G08Z4A==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-for-of@7.29.7':
+ resolution: {integrity: sha512-zeSIHh0+E1Um1WJRXCFlHQYu2ieJNdivLLjlBEp+dIBu3S51n+SZZmIXjxnItw6pz56Cn+KvK68BIBVsxq2JiQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-optional-catch-binding@7.29.7":
- resolution:
- {
- integrity: sha512-sLsyndxK2VwX6yNUOakMb7Sh553ZTe/vVM1XJ+9Z5aW1ytsc8xOIwmyk05NNjN60vkc5/KqoTH6hB4V41LJhng==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-function-name@7.29.7':
+ resolution: {integrity: sha512-otRWaHXE6fbAGkePvaj/kvs3HsqXfPhlnzwSOlnFgbqCPMd975dW+4wZ00WFBt+/YlBGcJwNrARQTOJOb4ZrIg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-optional-chaining@7.29.7":
- resolution:
- {
- integrity: sha512-6GM1dhvK3gNODkXcEcMCOLEDCLSoZ/sBbro2Ax8HURyasQ4NshagQixkRFdh5niI6E4gmA/jYI/4aT7rRos3ZQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-literals@7.29.7':
+ resolution: {integrity: sha512-DZ/oLP21ZuWx1vKqnoNv6/tvEK48AQOBRai40CX9dTjGluvT/YZCyY3rryDtyUqCEoyNroy5KKPwX2iQCiRvyw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-parameters@7.29.7":
- resolution:
- {
- integrity: sha512-ZDOBqV/qLYJI0YElr8DcENEyARsFQeESqWXH6gZlghYXuPPjvweuDhP4VyEi4BlUBlLRFZVjxoZDMjxhLW766g==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-logical-assignment-operators@7.29.7':
+ resolution: {integrity: sha512-A0H91hh6W8MFRkp5TqJmMr39jzGD1A1E1Ysiv2O06Sfbhkapm+XyIzxWCEh5kqwOZ1/8QZ0dY3SeQ7XBqfJd5Q==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-private-methods@7.29.7":
- resolution:
- {
- integrity: sha512-/6Rz4DK1ETDEM/bWHsPHcaEe7ZaT1EqSXjtSP/L0DijOYuaUhiRiOKcwpZ8P7zR4xXEHc2ITdiCgBm9Tpyv9ug==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-modules-commonjs@7.29.7':
+ resolution: {integrity: sha512-j0vCldybPC5b5dwCQOJ21uKtHzt7hxLygJTg9eF1ScfaikEDNfzn94XoW5Fi+seBR0nCyL23xaBFFkq7dTM8XQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-private-property-in-object@7.29.7":
- resolution:
- {
- integrity: sha512-+BNo06dnrzdNNqCm1X6YUaVv0DKk8Q+JYcoZfOkLhYWNCXzlwTSRq8zGWayT1csjcpNXV9CQTBRRbmTLZac5cA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-named-capturing-groups-regex@7.29.7':
+ resolution: {integrity: sha512-vuFoLwr4qnv2xbZ16SQd6uPcH5FNrLHhk/Jzo++0XJFcaDsr4gjJVg6j398oMHiC+83k/GiBzviwF5KBJkPUtQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-react-display-name@7.29.7":
- resolution:
- {
- integrity: sha512-+1wdDMGNb4UPeY3Q4L5yLiYe6TXPXubs4NjrgRFw13hPRLJfEMw2Q5OXkee6/IfdqePIeW4Jjwe3aBh7SdKz4Q==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-transform-nullish-coalescing-operator@7.29.7':
+ resolution: {integrity: sha512-idmp1dFaekP9GbcMvG24Kvw2BfhFZjHnNJCkV4WuIY4PskJzwI3f1N5OdgYke38T7rftO6ERulFRn2cFeZwRkg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-react-jsx-development@7.29.7":
- resolution:
- {
- integrity: sha512-Xfy3UVMF04+ypnFbkhvfqtmvwfe92qwQdbGZVonhE+6v35GzlofmOnA1szaZqzb9xYWr0nl1e5EMmzi0DNON1g==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-numeric-separator@7.29.7':
+ resolution: {integrity: sha512-zR7fv/z14OjgHl4AgRtkDBvBMhIzCxqV/qN/2BCRC7LjFwvuzjYe7gDWxC4Wl/SNsLM6SE1IWvRPYMgSJaUvNw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-react-jsx-self@7.29.7":
- resolution:
- {
- integrity: sha512-TL0hMc9xzy86VD31nUiwzd5otRAcyEPcsegCxolO0PvcXuH1v0kECe/UIznYFihpkvU5wg/jk4v0TTEFfm53fw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-object-rest-spread@7.29.7':
+ resolution: {integrity: sha512-Ld98jn4c0smUywL57m7SgsHq3OpThOa6LqZJif3G6jYOovPleoFhVrBJ1WegRApSFB2wu4+RelAj9AC9G08Z4A==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-react-jsx-source@7.29.7":
- resolution:
- {
- integrity: sha512-06IyK09H3wi4cGbhDBwp5gUGo0IKtnYa8tyTiephirPCK6fbobVGiXMMI5zLQ4aKEYP3wZ3ArU44o+8KMrSG/Q==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-optional-catch-binding@7.29.7':
+ resolution: {integrity: sha512-sLsyndxK2VwX6yNUOakMb7Sh553ZTe/vVM1XJ+9Z5aW1ytsc8xOIwmyk05NNjN60vkc5/KqoTH6hB4V41LJhng==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-react-jsx@7.29.7":
- resolution:
- {
- integrity: sha512-WsZulLVBUHXVj2cUcPVx6UE21TpalB6bHbSFErKT0Ib++ax24jjXe73FqlWvdylFOjiuPHYi6VCcgRad1ItN+A==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-optional-chaining@7.29.7':
+ resolution: {integrity: sha512-6GM1dhvK3gNODkXcEcMCOLEDCLSoZ/sBbro2Ax8HURyasQ4NshagQixkRFdh5niI6E4gmA/jYI/4aT7rRos3ZQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-react-pure-annotations@7.29.7":
- resolution:
- {
- integrity: sha512-H5E+HBgDpr6Q5t+Aj11tL7XkIui1jhbIoArVQnqjgXo5/3YxkN7ZEBcWF4RQlB0T4rrxJQbXS6kiFV6B7XTqUA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-parameters@7.29.7':
+ resolution: {integrity: sha512-ZDOBqV/qLYJI0YElr8DcENEyARsFQeESqWXH6gZlghYXuPPjvweuDhP4VyEi4BlUBlLRFZVjxoZDMjxhLW766g==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-regenerator@7.29.7":
- resolution:
- {
- integrity: sha512-rNNFV0DBAJp988xW2DOntfDoYn1eR8GGF5AT5vYc+rjyfaQkM242c9tZUHHPe7KYaiJizXPWhQTzzdbXySyhBw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-private-methods@7.29.7':
+ resolution: {integrity: sha512-/6Rz4DK1ETDEM/bWHsPHcaEe7ZaT1EqSXjtSP/L0DijOYuaUhiRiOKcwpZ8P7zR4xXEHc2ITdiCgBm9Tpyv9ug==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-runtime@7.29.7":
- resolution:
- {
- integrity: sha512-xmAscdE/AsqRW7vutbPNoUmu/nF5SrLKPs7aoJgEjo35lLKA/Bc0i2rMv/hr1+Y0o1bQCiVtith3u2vdgRL39Q==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-private-property-in-object@7.29.7':
+ resolution: {integrity: sha512-+BNo06dnrzdNNqCm1X6YUaVv0DKk8Q+JYcoZfOkLhYWNCXzlwTSRq8zGWayT1csjcpNXV9CQTBRRbmTLZac5cA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-shorthand-properties@7.29.7":
- resolution:
- {
- integrity: sha512-I+WYbGBAiCn7nA6xBrlgPH+MB7HWb4u8pv5S0Pv7OtwNvIFvCCb24YlttKEeUFVurfBCEaOTnuhlqsb7f0Z5Dg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-react-display-name@7.29.7':
+ resolution: {integrity: sha512-+1wdDMGNb4UPeY3Q4L5yLiYe6TXPXubs4NjrgRFw13hPRLJfEMw2Q5OXkee6/IfdqePIeW4Jjwe3aBh7SdKz4Q==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-spread@7.29.7":
- resolution:
- {
- integrity: sha512-/u5K1QWada7tbYNqTjMh96718g9NTwh9tfPJMsSmVsQwGT447FskV+KcfeXkXq2GWki4EM/MuTdmBec+hOuVTQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-react-jsx-development@7.29.7':
+ resolution: {integrity: sha512-Xfy3UVMF04+ypnFbkhvfqtmvwfe92qwQdbGZVonhE+6v35GzlofmOnA1szaZqzb9xYWr0nl1e5EMmzi0DNON1g==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-sticky-regex@7.29.7":
- resolution:
- {
- integrity: sha512-BCHzNYJGe9l7EpwwDBN/ztlL2NYFFq8hp9ddjtUEM9f2O7S7kKV/lL6Fwo7IF7NSkYhPK2vO+86nIGltA90MsA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-react-jsx-self@7.29.7':
+ resolution: {integrity: sha512-TL0hMc9xzy86VD31nUiwzd5otRAcyEPcsegCxolO0PvcXuH1v0kECe/UIznYFihpkvU5wg/jk4v0TTEFfm53fw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-template-literals@7.29.7":
- resolution:
- {
- integrity: sha512-NCSEJ4sLFU2gqAub45HYh4fus2yQ36rr6ei6vpU7NdoJqCpxvEG8E6eJpscGyXP3VHD2Ny+fSXr04k1hoUrFqA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-react-jsx-source@7.29.7':
+ resolution: {integrity: sha512-06IyK09H3wi4cGbhDBwp5gUGo0IKtnYa8tyTiephirPCK6fbobVGiXMMI5zLQ4aKEYP3wZ3ArU44o+8KMrSG/Q==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-typescript@7.29.7":
- resolution:
- {
- integrity: sha512-jK52h8LaLc7JarhQV2ofeFMts4H7vnOXnqZNA6fYglBTZewRBE51KWt3BUltW1P+KoPsYkHoJeXePuz4zo2LMw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-react-jsx@7.29.7':
+ resolution: {integrity: sha512-WsZulLVBUHXVj2cUcPVx6UE21TpalB6bHbSFErKT0Ib++ax24jjXe73FqlWvdylFOjiuPHYi6VCcgRad1ItN+A==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-unicode-regex@7.29.7":
- resolution:
- {
- integrity: sha512-7D/x/23/d/3VqZ0QA+LGbZMlGwZjztBygSWWWsfTPoQ1oQ6Q1P6Mr3d0kk42XabyUVw+fha3LqdRsFqeKqvCyA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-react-pure-annotations@7.29.7':
+ resolution: {integrity: sha512-H5E+HBgDpr6Q5t+Aj11tL7XkIui1jhbIoArVQnqjgXo5/3YxkN7ZEBcWF4RQlB0T4rrxJQbXS6kiFV6B7XTqUA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/preset-react@7.29.7":
- resolution:
- {
- integrity: sha512-C+PV1TFUPTmBQGoPBL8j2QmLpZ117YTCwxIZeJOM96GbYMFSc7/pOXU5lVykwnZxyTqQxRsvoRk6f2FktZgGHA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-regenerator@7.29.7':
+ resolution: {integrity: sha512-rNNFV0DBAJp988xW2DOntfDoYn1eR8GGF5AT5vYc+rjyfaQkM242c9tZUHHPe7KYaiJizXPWhQTzzdbXySyhBw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/preset-typescript@7.29.7":
- resolution:
- {
- integrity: sha512-/Foi8vKY2EVbed/1eZx0gJEEwHAIxogrySI7rULcRIvhZzbvoE/b5qG5Ghc0WKAFKOHA9SD1x7RsFlOYdutIiQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-runtime@7.29.7':
+ resolution: {integrity: sha512-xmAscdE/AsqRW7vutbPNoUmu/nF5SrLKPs7aoJgEjo35lLKA/Bc0i2rMv/hr1+Y0o1bQCiVtith3u2vdgRL39Q==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/runtime@7.29.7":
- resolution:
- {
- integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/template@7.29.7":
- resolution:
- {
- integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/traverse@7.29.7":
- resolution:
- {
- integrity: sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/types@7.29.7":
- resolution:
- {
- integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==,
- }
- engines: { node: ">=6.9.0" }
-
- "@bcoe/v8-coverage@0.2.3":
- resolution:
- {
- integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==,
- }
-
- "@borewit/text-codec@0.2.2":
- resolution:
- {
- integrity: sha512-DDaRehssg1aNrH4+2hnj1B7vnUGEjU6OIlyRdkMd0aUdIUvKXrJfXsy8LVtXAy7DRvYVluWbMspsRhz2lcW0mQ==,
- }
-
- "@clack/core@1.3.1":
- resolution:
- {
- integrity: sha512-fT1qHVGAag4IEkrupZ6lRRbNCs1vS9P01KB/sG8zKgvUztbYtFBtQpjSITNwooDZ83tpsPzP0mRNs1/KVszCRA==,
- }
- engines: { node: ">= 20.12.0" }
-
- "@clack/prompts@1.4.0":
- resolution:
- {
- integrity: sha512-S0My7XPGIgpRWMDG8uRqalbgT+a6FmCUdOW+HaIOVVpUPHOb7RrpvjTjiODadKp06fsrVDJZlIzc6yCTp4AnxA==,
- }
- engines: { node: ">= 20.12.0" }
-
- "@config-plugins/react-native-webrtc@13.0.0":
- resolution:
- {
- integrity: sha512-EtRRLXmsU4GcDA3TgIxtqg++eh/CjbI6EV8N/1EFQTtaWI2lpww0fg+S0wd+ndXE0dFWaLqUFvZuyTAaAoOSeA==,
- }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-shorthand-properties@7.29.7':
+ resolution: {integrity: sha512-I+WYbGBAiCn7nA6xBrlgPH+MB7HWb4u8pv5S0Pv7OtwNvIFvCCb24YlttKEeUFVurfBCEaOTnuhlqsb7f0Z5Dg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- expo: ^54
+ '@babel/core': ^7.0.0-0
- "@craftzdog/react-native-buffer@6.1.0":
- resolution:
- {
- integrity: sha512-lJXdjZ7fTllLbzDrwg/FrJLjQ5sBcAgwcqgAB6OPpXTHdCenEhHZblQpfmBLLe7/S7m0yKXL3kN3jpwOEkpjGg==,
- }
-
- "@craftzdog/react-native-buffer@6.1.2":
- resolution:
- {
- integrity: sha512-KV1HitN05FHLLDG7Zb/yftDsa+mKBYBzFMQ0PMldvUicq6vWOtAvz9mDavt7Fzozh+WNqORE+yFDkkdWysZ/SA==,
- }
-
- "@cspotcode/source-map-support@0.8.1":
- resolution:
- {
- integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==,
- }
- engines: { node: ">=12" }
-
- "@earendil-works/pi-tui@0.78.0":
- resolution:
- {
- integrity: sha512-3a705FnsVVUhAyceShNB3kS2rpxcxLcx+hqB0u6MMMpHwQGbW+m++MqA6r7eOzq/8FLx5e3vDh38h/SVTk2qzw==,
- }
- engines: { node: ">=22.19.0" }
-
- "@egjs/hammerjs@2.0.17":
- resolution:
- {
- integrity: sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==,
- }
- engines: { node: ">=0.8.0" }
-
- "@esbuild/aix-ppc64@0.25.12":
- resolution:
- {
- integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==,
- }
- engines: { node: ">=18" }
- cpu: [ppc64]
- os: [aix]
-
- "@esbuild/aix-ppc64@0.27.7":
- resolution:
- {
- integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==,
- }
- engines: { node: ">=18" }
- cpu: [ppc64]
- os: [aix]
-
- "@esbuild/android-arm64@0.25.12":
- resolution:
- {
- integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==,
- }
- engines: { node: ">=18" }
- cpu: [arm64]
- os: [android]
+ '@babel/plugin-transform-spread@7.29.7':
+ resolution: {integrity: sha512-/u5K1QWada7tbYNqTjMh96718g9NTwh9tfPJMsSmVsQwGT447FskV+KcfeXkXq2GWki4EM/MuTdmBec+hOuVTQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
- "@esbuild/android-arm64@0.27.7":
- resolution:
- {
- integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==,
- }
- engines: { node: ">=18" }
- cpu: [arm64]
- os: [android]
+ '@babel/plugin-transform-sticky-regex@7.29.7':
+ resolution: {integrity: sha512-BCHzNYJGe9l7EpwwDBN/ztlL2NYFFq8hp9ddjtUEM9f2O7S7kKV/lL6Fwo7IF7NSkYhPK2vO+86nIGltA90MsA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
- "@esbuild/android-arm@0.25.12":
- resolution:
- {
- integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==,
- }
- engines: { node: ">=18" }
- cpu: [arm]
- os: [android]
+ '@babel/plugin-transform-template-literals@7.29.7':
+ resolution: {integrity: sha512-NCSEJ4sLFU2gqAub45HYh4fus2yQ36rr6ei6vpU7NdoJqCpxvEG8E6eJpscGyXP3VHD2Ny+fSXr04k1hoUrFqA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
- "@esbuild/android-arm@0.27.7":
- resolution:
- {
- integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==,
- }
- engines: { node: ">=18" }
- cpu: [arm]
- os: [android]
+ '@babel/plugin-transform-typescript@7.29.7':
+ resolution: {integrity: sha512-jK52h8LaLc7JarhQV2ofeFMts4H7vnOXnqZNA6fYglBTZewRBE51KWt3BUltW1P+KoPsYkHoJeXePuz4zo2LMw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
- "@esbuild/android-x64@0.25.12":
- resolution:
- {
- integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==,
- }
- engines: { node: ">=18" }
- cpu: [x64]
- os: [android]
+ '@babel/plugin-transform-unicode-regex@7.29.7':
+ resolution: {integrity: sha512-7D/x/23/d/3VqZ0QA+LGbZMlGwZjztBygSWWWsfTPoQ1oQ6Q1P6Mr3d0kk42XabyUVw+fha3LqdRsFqeKqvCyA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
- "@esbuild/android-x64@0.27.7":
- resolution:
- {
- integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==,
- }
- engines: { node: ">=18" }
- cpu: [x64]
- os: [android]
+ '@babel/preset-react@7.29.7':
+ resolution: {integrity: sha512-C+PV1TFUPTmBQGoPBL8j2QmLpZ117YTCwxIZeJOM96GbYMFSc7/pOXU5lVykwnZxyTqQxRsvoRk6f2FktZgGHA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
- "@esbuild/darwin-arm64@0.25.12":
- resolution:
- {
- integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==,
- }
- engines: { node: ">=18" }
- cpu: [arm64]
- os: [darwin]
+ '@babel/preset-typescript@7.29.7':
+ resolution: {integrity: sha512-/Foi8vKY2EVbed/1eZx0gJEEwHAIxogrySI7rULcRIvhZzbvoE/b5qG5Ghc0WKAFKOHA9SD1x7RsFlOYdutIiQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
- "@esbuild/darwin-arm64@0.27.7":
- resolution:
- {
- integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==,
- }
- engines: { node: ">=18" }
- cpu: [arm64]
- os: [darwin]
+ '@babel/runtime@7.29.7':
+ resolution: {integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==}
+ engines: {node: '>=6.9.0'}
- "@esbuild/darwin-x64@0.25.12":
- resolution:
- {
- integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==,
- }
- engines: { node: ">=18" }
- cpu: [x64]
- os: [darwin]
+ '@babel/template@7.29.7':
+ resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==}
+ engines: {node: '>=6.9.0'}
- "@esbuild/darwin-x64@0.27.7":
- resolution:
- {
- integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==,
- }
- engines: { node: ">=18" }
- cpu: [x64]
- os: [darwin]
+ '@babel/traverse@7.29.7':
+ resolution: {integrity: sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==}
+ engines: {node: '>=6.9.0'}
- "@esbuild/freebsd-arm64@0.25.12":
- resolution:
- {
- integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==,
- }
- engines: { node: ">=18" }
- cpu: [arm64]
- os: [freebsd]
+ '@babel/types@7.29.7':
+ resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==}
+ engines: {node: '>=6.9.0'}
- "@esbuild/freebsd-arm64@0.27.7":
- resolution:
- {
- integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==,
- }
- engines: { node: ">=18" }
- cpu: [arm64]
- os: [freebsd]
+ '@bcoe/v8-coverage@0.2.3':
+ resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
- "@esbuild/freebsd-x64@0.25.12":
- resolution:
- {
- integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==,
- }
- engines: { node: ">=18" }
- cpu: [x64]
- os: [freebsd]
+ '@config-plugins/react-native-webrtc@13.0.0':
+ resolution: {integrity: sha512-EtRRLXmsU4GcDA3TgIxtqg++eh/CjbI6EV8N/1EFQTtaWI2lpww0fg+S0wd+ndXE0dFWaLqUFvZuyTAaAoOSeA==}
+ peerDependencies:
+ expo: ^54
- "@esbuild/freebsd-x64@0.27.7":
- resolution:
- {
- integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==,
- }
- engines: { node: ">=18" }
- cpu: [x64]
- os: [freebsd]
+ '@craftzdog/react-native-buffer@6.1.0':
+ resolution: {integrity: sha512-lJXdjZ7fTllLbzDrwg/FrJLjQ5sBcAgwcqgAB6OPpXTHdCenEhHZblQpfmBLLe7/S7m0yKXL3kN3jpwOEkpjGg==}
- "@esbuild/linux-arm64@0.25.12":
- resolution:
- {
- integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==,
- }
- engines: { node: ">=18" }
- cpu: [arm64]
- os: [linux]
+ '@craftzdog/react-native-buffer@6.1.2':
+ resolution: {integrity: sha512-KV1HitN05FHLLDG7Zb/yftDsa+mKBYBzFMQ0PMldvUicq6vWOtAvz9mDavt7Fzozh+WNqORE+yFDkkdWysZ/SA==}
- "@esbuild/linux-arm64@0.27.7":
- resolution:
- {
- integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==,
- }
- engines: { node: ">=18" }
- cpu: [arm64]
- os: [linux]
+ '@cspotcode/source-map-support@0.8.1':
+ resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
+ engines: {node: '>=12'}
- "@esbuild/linux-arm@0.25.12":
- resolution:
- {
- integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==,
- }
- engines: { node: ">=18" }
- cpu: [arm]
- os: [linux]
+ '@egjs/hammerjs@2.0.17':
+ resolution: {integrity: sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==}
+ engines: {node: '>=0.8.0'}
- "@esbuild/linux-arm@0.27.7":
- resolution:
- {
- integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==,
- }
- engines: { node: ">=18" }
- cpu: [arm]
- os: [linux]
+ '@expo/apple-utils@2.1.19':
+ resolution: {integrity: sha512-f1iMteL+tTOSF1sovVB35ncobdiZvhjWvwEOWGIuAutyeIpcxNJ/2tUZSE748X/VEQLn1cL2Tozkdp2MLXStvA==}
+ hasBin: true
- "@esbuild/linux-ia32@0.25.12":
- resolution:
- {
- integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==,
- }
- engines: { node: ">=18" }
- cpu: [ia32]
- os: [linux]
+ '@expo/bunyan@4.0.1':
+ resolution: {integrity: sha512-+Lla7nYSiHZirgK+U/uYzsLv/X+HaJienbD5AKX1UQZHYfWaP+9uuQluRB4GrEVWF0GZ7vEVp/jzaOT9k/SQlg==}
+ engines: {node: '>=0.10.0'}
- "@esbuild/linux-ia32@0.27.7":
- resolution:
- {
- integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==,
- }
- engines: { node: ">=18" }
- cpu: [ia32]
- os: [linux]
+ '@expo/cli@54.0.25':
+ resolution: {integrity: sha512-WnUqIb8oMBhtwSfIqdCHCzcaDIpLNXItRVd5miuvWi4GO0SGo89PSsAkbVJ+LJgcaY+v5rbgMELJS9I/CqOulA==}
+ hasBin: true
+ peerDependencies:
+ expo: '*'
+ expo-router: '*'
+ react-native: '*'
+ peerDependenciesMeta:
+ expo-router:
+ optional: true
+ react-native:
+ optional: true
- "@esbuild/linux-loong64@0.25.12":
- resolution:
- {
- integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==,
- }
- engines: { node: ">=18" }
- cpu: [loong64]
- os: [linux]
+ '@expo/code-signing-certificates@0.0.5':
+ resolution: {integrity: sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==}
- "@esbuild/linux-loong64@0.27.7":
- resolution:
- {
- integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==,
- }
- engines: { node: ">=18" }
- cpu: [loong64]
- os: [linux]
+ '@expo/code-signing-certificates@0.0.6':
+ resolution: {integrity: sha512-iNe0puxwBNEcuua9gmTGzq+SuMDa0iATai1FlFTMHJ/vUmKvN/V//drXoLJkVb5i5H3iE/n/qIJxyoBnXouD0w==}
- "@esbuild/linux-mips64el@0.25.12":
- resolution:
- {
- integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==,
- }
- engines: { node: ">=18" }
- cpu: [mips64el]
- os: [linux]
+ '@expo/config-plugins@54.0.4':
+ resolution: {integrity: sha512-g2yXGICdoOw5i3LkQSDxl2Q5AlQCrG7oniu0pCPPO+UxGb7He4AFqSvPSy8HpRUj55io17hT62FTjYRD+d6j3Q==}
- "@esbuild/linux-mips64el@0.27.7":
- resolution:
- {
- integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==,
- }
- engines: { node: ">=18" }
- cpu: [mips64el]
- os: [linux]
+ '@expo/config-plugins@55.0.10':
+ resolution: {integrity: sha512-1txnRnMLIO5lM/Of/VyvDkCwZap0YFvCyfSTIlUQamhwhx6Rh7r8TXfcIstaDYUQ7X6GTMkNxLXWbcYS6ZAFDw==}
- "@esbuild/linux-ppc64@0.25.12":
- resolution:
- {
- integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==,
- }
- engines: { node: ">=18" }
- cpu: [ppc64]
- os: [linux]
+ '@expo/config-plugins@55.0.7':
+ resolution: {integrity: sha512-XZUoDWrsHEkH3yasnDSJABM/UxP5a1ixzRwU/M+BToyn/f0nTrSJJe/Ay/FpxkI4JSNz2n0e06I23b2bleXKVA==}
- "@esbuild/linux-ppc64@0.27.7":
- resolution:
- {
- integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==,
- }
- engines: { node: ">=18" }
- cpu: [ppc64]
- os: [linux]
+ '@expo/config-plugins@9.0.17':
+ resolution: {integrity: sha512-m24F1COquwOm7PBl5wRbkT9P9DviCXe0D7S7nQsolfbhdCWuvMkfXeoWmgjtdhy7sDlOyIgBrAdnB6MfsWKqIg==}
- "@esbuild/linux-riscv64@0.25.12":
- resolution:
- {
- integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==,
- }
- engines: { node: ">=18" }
- cpu: [riscv64]
- os: [linux]
+ '@expo/config-types@52.0.5':
+ resolution: {integrity: sha512-AMDeuDLHXXqd8W+0zSjIt7f37vUd/BP8p43k68NHpyAvQO+z8mbQZm3cNQVAMySeayK2XoPigAFB1JF2NFajaA==}
- "@esbuild/linux-riscv64@0.27.7":
- resolution:
- {
- integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==,
- }
- engines: { node: ">=18" }
- cpu: [riscv64]
- os: [linux]
+ '@expo/config-types@54.0.10':
+ resolution: {integrity: sha512-/J16SC2an1LdtCZ67xhSkGXpALYUVUNyZws7v+PVsFZxClYehDSoKLqyRaGkpHlYrCc08bS0RF5E0JV6g50psA==}
- "@esbuild/linux-s390x@0.25.12":
- resolution:
- {
- integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==,
- }
- engines: { node: ">=18" }
- cpu: [s390x]
- os: [linux]
+ '@expo/config-types@55.0.5':
+ resolution: {integrity: sha512-sCmSUZG4mZ/ySXvfyyBdhjivz8Q539X1NondwDdYG7s3SBsk+wsgPJzYsqgAG/P9+l0xWjUD2F+kQ1cAJ6NNLg==}
- "@esbuild/linux-s390x@0.27.7":
- resolution:
- {
- integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==,
- }
- engines: { node: ">=18" }
- cpu: [s390x]
- os: [linux]
+ '@expo/config@10.0.11':
+ resolution: {integrity: sha512-nociJ4zr/NmbVfMNe9j/+zRlt7wz/siISu7PjdWE4WE+elEGxWWxsGzltdJG0llzrM+khx8qUiFK5aiVcdMBww==}
- "@esbuild/linux-x64@0.25.12":
- resolution:
- {
- integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==,
- }
- engines: { node: ">=18" }
- cpu: [x64]
- os: [linux]
+ '@expo/config@12.0.13':
+ resolution: {integrity: sha512-Cu52arBa4vSaupIWsF0h7F/Cg//N374nYb7HAxV0I4KceKA7x2UXpYaHOL7EEYYvp7tZdThBjvGpVmr8ScIvaQ==}
- "@esbuild/linux-x64@0.27.7":
- resolution:
- {
- integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==,
- }
- engines: { node: ">=18" }
- cpu: [x64]
- os: [linux]
+ '@expo/config@55.0.10':
+ resolution: {integrity: sha512-qCHxo9H1ZoeW+y0QeMtVZ3JfGmumpGrgUFX60wLWMarraoQZSe47ZUm9kJSn3iyoPjUtUNanO3eXQg+K8k4rag==}
- "@esbuild/netbsd-arm64@0.25.12":
- resolution:
- {
- integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==,
- }
- engines: { node: ">=18" }
- cpu: [arm64]
- os: [netbsd]
-
- "@esbuild/netbsd-arm64@0.27.7":
- resolution:
- {
- integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==,
- }
- engines: { node: ">=18" }
- cpu: [arm64]
- os: [netbsd]
-
- "@esbuild/netbsd-x64@0.25.12":
- resolution:
- {
- integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==,
- }
- engines: { node: ">=18" }
- cpu: [x64]
- os: [netbsd]
-
- "@esbuild/netbsd-x64@0.27.7":
- resolution:
- {
- integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==,
- }
- engines: { node: ">=18" }
- cpu: [x64]
- os: [netbsd]
-
- "@esbuild/openbsd-arm64@0.25.12":
- resolution:
- {
- integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==,
- }
- engines: { node: ">=18" }
- cpu: [arm64]
- os: [openbsd]
+ '@expo/config@55.0.17':
+ resolution: {integrity: sha512-Y3VaRg7Jllg3MhlUOTQqHm6/dttsqcjYlnS9enhAllZvPUpTHnRA4YPETtUZlxkdMJy6y3UZe986pd/KfJ6OTg==}
- "@esbuild/openbsd-arm64@0.27.7":
- resolution:
- {
- integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==,
- }
- engines: { node: ">=18" }
- cpu: [arm64]
- os: [openbsd]
+ '@expo/devcert@1.2.1':
+ resolution: {integrity: sha512-qC4eaxmKMTmJC2ahwyui6ud8f3W60Ss7pMkpBq40Hu3zyiAaugPXnZ24145U7K36qO9UHdZUVxsCvIpz2RYYCA==}
- "@esbuild/openbsd-x64@0.25.12":
- resolution:
- {
- integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==,
- }
- engines: { node: ">=18" }
- cpu: [x64]
- os: [openbsd]
+ '@expo/devtools@0.1.8':
+ resolution: {integrity: sha512-SVLxbuanDjJPgc0sy3EfXUMLb/tXzp6XIHkhtPVmTWJAp+FOr6+5SeiCfJrCzZFet0Ifyke2vX3sFcKwEvCXwQ==}
+ peerDependencies:
+ react: 19.1.0
+ react-native: '*'
+ peerDependenciesMeta:
+ react:
+ optional: true
+ react-native:
+ optional: true
- "@esbuild/openbsd-x64@0.27.7":
- resolution:
- {
- integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==,
- }
- engines: { node: ">=18" }
- cpu: [x64]
- os: [openbsd]
+ '@expo/eas-build-job@20.1.0':
+ resolution: {integrity: sha512-a1owbBU9eKbEG0B7Tm/lPIfep5k85bHFwbPsqB8WOWI5KBlHz9Gs/fAfBRt0/EAKlyxxMH3TxlR0YBC+Zy1hCA==}
- "@esbuild/openharmony-arm64@0.25.12":
- resolution:
- {
- integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==,
- }
- engines: { node: ">=18" }
- cpu: [arm64]
- os: [openharmony]
+ '@expo/eas-json@20.1.0':
+ resolution: {integrity: sha512-B3ZrMLNTNmqIMaKB5Y7/mz5EBV6m+frrJohnjLIaGMa8ExQBMMyqn0rg283hc4bEeq6ZqIY2IViWZhdIjUs+aA==}
+ engines: {node: '>=20.0.0'}
- "@esbuild/openharmony-arm64@0.27.7":
- resolution:
- {
- integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==,
- }
- engines: { node: ">=18" }
- cpu: [arm64]
- os: [openharmony]
+ '@expo/env@1.0.7':
+ resolution: {integrity: sha512-qSTEnwvuYJ3umapO9XJtrb1fAqiPlmUUg78N0IZXXGwQRt+bkp0OBls+Y5Mxw/Owj8waAM0Z3huKKskRADR5ow==}
- "@esbuild/sunos-x64@0.25.12":
- resolution:
- {
- integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==,
- }
- engines: { node: ">=18" }
- cpu: [x64]
- os: [sunos]
-
- "@esbuild/sunos-x64@0.27.7":
- resolution:
- {
- integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==,
- }
- engines: { node: ">=18" }
- cpu: [x64]
- os: [sunos]
-
- "@esbuild/win32-arm64@0.25.12":
- resolution:
- {
- integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==,
- }
- engines: { node: ">=18" }
- cpu: [arm64]
- os: [win32]
+ '@expo/env@2.0.11':
+ resolution: {integrity: sha512-xV+ps6YCW7XIPVUwFVCRN2nox09dnRwy8uIjwHWTODu0zFw4kp4omnVkl0OOjuu2XOe7tdgAHxikrkJt9xB/7Q==}
- "@esbuild/win32-arm64@0.27.7":
- resolution:
- {
- integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==,
- }
- engines: { node: ">=18" }
- cpu: [arm64]
- os: [win32]
+ '@expo/fingerprint@0.15.5':
+ resolution: {integrity: sha512-mdVoAMcux1WlM6kd1RoWiHRNqKqS+J6mKmWQ/BKgeh937S/fcW58EE68O6nc4KDXtWi3PBeNHskOFcgyIuD4hw==}
+ hasBin: true
- "@esbuild/win32-ia32@0.25.12":
- resolution:
- {
- integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==,
- }
- engines: { node: ">=18" }
- cpu: [ia32]
- os: [win32]
+ '@expo/image-utils@0.6.5':
+ resolution: {integrity: sha512-RsS/1CwJYzccvlprYktD42KjyfWZECH6PPIEowvoSmXfGLfdViwcUEI4RvBfKX5Jli6P67H+6YmHvPTbGOboew==}
- "@esbuild/win32-ia32@0.27.7":
- resolution:
- {
- integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==,
- }
- engines: { node: ">=18" }
- cpu: [ia32]
- os: [win32]
+ '@expo/image-utils@0.8.14':
+ resolution: {integrity: sha512-5Sn+jG4Cw+shC2wDMXoqSAJnvERbiwzHn05FpWtD5IBflfTIs5gUmjzwiGVyjOdlMSQhgRrw/AymPbmO9h9mpQ==}
- "@esbuild/win32-x64@0.25.12":
- resolution:
- {
- integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==,
- }
- engines: { node: ">=18" }
- cpu: [x64]
- os: [win32]
+ '@expo/json-file@10.0.16':
+ resolution: {integrity: sha512-fcVkWEj+hLuP2yt5W0aw6LmDRqSPWDLUSxOMcmFeV+algmIF59sQVKCwB9btjQLd4V6x9N0pISkQEkBubUHrCw==}
- "@esbuild/win32-x64@0.27.7":
- resolution:
- {
- integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==,
- }
- engines: { node: ">=18" }
- cpu: [x64]
- os: [win32]
+ '@expo/json-file@10.2.0':
+ resolution: {integrity: sha512-S6XzKe3R9GQeHiUPXc3xJjOv2VJhOEwFYf7xdC2z2cUqt3kZJ9mSO877sNQloVdnW/SUCtPY3bexlM7nwq+CAQ==}
- "@expo/apple-utils@2.1.19":
- resolution:
- {
- integrity: sha512-f1iMteL+tTOSF1sovVB35ncobdiZvhjWvwEOWGIuAutyeIpcxNJ/2tUZSE748X/VEQLn1cL2Tozkdp2MLXStvA==,
- }
- hasBin: true
+ '@expo/json-file@8.3.3':
+ resolution: {integrity: sha512-eZ5dld9AD0PrVRiIWpRkm5aIoWBw3kAyd8VkuWEy92sEthBKDDDHAnK2a0dw0Eil6j7rK7lS/Qaq/Zzngv2h5A==}
- "@expo/bunyan@4.0.1":
- resolution:
- {
- integrity: sha512-+Lla7nYSiHZirgK+U/uYzsLv/X+HaJienbD5AKX1UQZHYfWaP+9uuQluRB4GrEVWF0GZ7vEVp/jzaOT9k/SQlg==,
- }
- engines: { node: ">=0.10.0" }
-
- "@expo/cli@54.0.25":
- resolution:
- {
- integrity: sha512-WnUqIb8oMBhtwSfIqdCHCzcaDIpLNXItRVd5miuvWi4GO0SGo89PSsAkbVJ+LJgcaY+v5rbgMELJS9I/CqOulA==,
- }
- hasBin: true
- peerDependencies:
- expo: "*"
- expo-router: "*"
- react-native: "*"
- peerDependenciesMeta:
- expo-router:
- optional: true
- react-native:
- optional: true
+ '@expo/json-file@9.0.2':
+ resolution: {integrity: sha512-yAznIUrybOIWp3Uax7yRflB0xsEpvIwIEqIjao9SGi2Gaa+N0OamWfe0fnXBSWF+2zzF4VvqwT4W5zwelchfgw==}
- "@expo/code-signing-certificates@0.0.5":
- resolution:
- {
- integrity: sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==,
- }
-
- "@expo/code-signing-certificates@0.0.6":
- resolution:
- {
- integrity: sha512-iNe0puxwBNEcuua9gmTGzq+SuMDa0iATai1FlFTMHJ/vUmKvN/V//drXoLJkVb5i5H3iE/n/qIJxyoBnXouD0w==,
- }
-
- "@expo/config-plugins@54.0.4":
- resolution:
- {
- integrity: sha512-g2yXGICdoOw5i3LkQSDxl2Q5AlQCrG7oniu0pCPPO+UxGb7He4AFqSvPSy8HpRUj55io17hT62FTjYRD+d6j3Q==,
- }
-
- "@expo/config-plugins@55.0.10":
- resolution:
- {
- integrity: sha512-1txnRnMLIO5lM/Of/VyvDkCwZap0YFvCyfSTIlUQamhwhx6Rh7r8TXfcIstaDYUQ7X6GTMkNxLXWbcYS6ZAFDw==,
- }
-
- "@expo/config-plugins@55.0.7":
- resolution:
- {
- integrity: sha512-XZUoDWrsHEkH3yasnDSJABM/UxP5a1ixzRwU/M+BToyn/f0nTrSJJe/Ay/FpxkI4JSNz2n0e06I23b2bleXKVA==,
- }
-
- "@expo/config-plugins@9.0.17":
- resolution:
- {
- integrity: sha512-m24F1COquwOm7PBl5wRbkT9P9DviCXe0D7S7nQsolfbhdCWuvMkfXeoWmgjtdhy7sDlOyIgBrAdnB6MfsWKqIg==,
- }
-
- "@expo/config-types@52.0.5":
- resolution:
- {
- integrity: sha512-AMDeuDLHXXqd8W+0zSjIt7f37vUd/BP8p43k68NHpyAvQO+z8mbQZm3cNQVAMySeayK2XoPigAFB1JF2NFajaA==,
- }
-
- "@expo/config-types@54.0.10":
- resolution:
- {
- integrity: sha512-/J16SC2an1LdtCZ67xhSkGXpALYUVUNyZws7v+PVsFZxClYehDSoKLqyRaGkpHlYrCc08bS0RF5E0JV6g50psA==,
- }
-
- "@expo/config-types@55.0.5":
- resolution:
- {
- integrity: sha512-sCmSUZG4mZ/ySXvfyyBdhjivz8Q539X1NondwDdYG7s3SBsk+wsgPJzYsqgAG/P9+l0xWjUD2F+kQ1cAJ6NNLg==,
- }
-
- "@expo/config@10.0.11":
- resolution:
- {
- integrity: sha512-nociJ4zr/NmbVfMNe9j/+zRlt7wz/siISu7PjdWE4WE+elEGxWWxsGzltdJG0llzrM+khx8qUiFK5aiVcdMBww==,
- }
-
- "@expo/config@12.0.13":
- resolution:
- {
- integrity: sha512-Cu52arBa4vSaupIWsF0h7F/Cg//N374nYb7HAxV0I4KceKA7x2UXpYaHOL7EEYYvp7tZdThBjvGpVmr8ScIvaQ==,
- }
-
- "@expo/config@55.0.10":
- resolution:
- {
- integrity: sha512-qCHxo9H1ZoeW+y0QeMtVZ3JfGmumpGrgUFX60wLWMarraoQZSe47ZUm9kJSn3iyoPjUtUNanO3eXQg+K8k4rag==,
- }
-
- "@expo/config@55.0.17":
- resolution:
- {
- integrity: sha512-Y3VaRg7Jllg3MhlUOTQqHm6/dttsqcjYlnS9enhAllZvPUpTHnRA4YPETtUZlxkdMJy6y3UZe986pd/KfJ6OTg==,
- }
-
- "@expo/devcert@1.2.1":
- resolution:
- {
- integrity: sha512-qC4eaxmKMTmJC2ahwyui6ud8f3W60Ss7pMkpBq40Hu3zyiAaugPXnZ24145U7K36qO9UHdZUVxsCvIpz2RYYCA==,
- }
-
- "@expo/devtools@0.1.8":
- resolution:
- {
- integrity: sha512-SVLxbuanDjJPgc0sy3EfXUMLb/tXzp6XIHkhtPVmTWJAp+FOr6+5SeiCfJrCzZFet0Ifyke2vX3sFcKwEvCXwQ==,
- }
- peerDependencies:
- react: 19.1.0
- react-native: "*"
- peerDependenciesMeta:
- react:
- optional: true
- react-native:
- optional: true
+ '@expo/json-file@9.1.5':
+ resolution: {integrity: sha512-prWBhLUlmcQtvN6Y7BpW2k9zXGd3ySa3R6rAguMJkp1z22nunLN64KYTUWfijFlprFoxm9r2VNnGkcbndAlgKA==}
- "@expo/eas-build-job@20.1.0":
- resolution:
- {
- integrity: sha512-a1owbBU9eKbEG0B7Tm/lPIfep5k85bHFwbPsqB8WOWI5KBlHz9Gs/fAfBRt0/EAKlyxxMH3TxlR0YBC+Zy1hCA==,
- }
-
- "@expo/eas-json@20.1.0":
- resolution:
- {
- integrity: sha512-B3ZrMLNTNmqIMaKB5Y7/mz5EBV6m+frrJohnjLIaGMa8ExQBMMyqn0rg283hc4bEeq6ZqIY2IViWZhdIjUs+aA==,
- }
- engines: { node: ">=20.0.0" }
-
- "@expo/env@1.0.7":
- resolution:
- {
- integrity: sha512-qSTEnwvuYJ3umapO9XJtrb1fAqiPlmUUg78N0IZXXGwQRt+bkp0OBls+Y5Mxw/Owj8waAM0Z3huKKskRADR5ow==,
- }
-
- "@expo/env@2.0.11":
- resolution:
- {
- integrity: sha512-xV+ps6YCW7XIPVUwFVCRN2nox09dnRwy8uIjwHWTODu0zFw4kp4omnVkl0OOjuu2XOe7tdgAHxikrkJt9xB/7Q==,
- }
-
- "@expo/fingerprint@0.15.5":
- resolution:
- {
- integrity: sha512-mdVoAMcux1WlM6kd1RoWiHRNqKqS+J6mKmWQ/BKgeh937S/fcW58EE68O6nc4KDXtWi3PBeNHskOFcgyIuD4hw==,
- }
- hasBin: true
+ '@expo/logger@20.0.0':
+ resolution: {integrity: sha512-ov/lDy/FPv4P4AbK+whZMFmlSo/oQQZFRhHaRiamZspe7kJV0V52LP2XJ7kdFEv5tLRMsKbm8X/JCNXOirC4Uw==}
- "@expo/image-utils@0.6.5":
- resolution:
- {
- integrity: sha512-RsS/1CwJYzccvlprYktD42KjyfWZECH6PPIEowvoSmXfGLfdViwcUEI4RvBfKX5Jli6P67H+6YmHvPTbGOboew==,
- }
-
- "@expo/image-utils@0.8.14":
- resolution:
- {
- integrity: sha512-5Sn+jG4Cw+shC2wDMXoqSAJnvERbiwzHn05FpWtD5IBflfTIs5gUmjzwiGVyjOdlMSQhgRrw/AymPbmO9h9mpQ==,
- }
-
- "@expo/json-file@10.0.16":
- resolution:
- {
- integrity: sha512-fcVkWEj+hLuP2yt5W0aw6LmDRqSPWDLUSxOMcmFeV+algmIF59sQVKCwB9btjQLd4V6x9N0pISkQEkBubUHrCw==,
- }
-
- "@expo/json-file@10.2.0":
- resolution:
- {
- integrity: sha512-S6XzKe3R9GQeHiUPXc3xJjOv2VJhOEwFYf7xdC2z2cUqt3kZJ9mSO877sNQloVdnW/SUCtPY3bexlM7nwq+CAQ==,
- }
-
- "@expo/json-file@8.3.3":
- resolution:
- {
- integrity: sha512-eZ5dld9AD0PrVRiIWpRkm5aIoWBw3kAyd8VkuWEy92sEthBKDDDHAnK2a0dw0Eil6j7rK7lS/Qaq/Zzngv2h5A==,
- }
-
- "@expo/json-file@9.0.2":
- resolution:
- {
- integrity: sha512-yAznIUrybOIWp3Uax7yRflB0xsEpvIwIEqIjao9SGi2Gaa+N0OamWfe0fnXBSWF+2zzF4VvqwT4W5zwelchfgw==,
- }
-
- "@expo/json-file@9.1.5":
- resolution:
- {
- integrity: sha512-prWBhLUlmcQtvN6Y7BpW2k9zXGd3ySa3R6rAguMJkp1z22nunLN64KYTUWfijFlprFoxm9r2VNnGkcbndAlgKA==,
- }
-
- "@expo/logger@20.0.0":
- resolution:
- {
- integrity: sha512-ov/lDy/FPv4P4AbK+whZMFmlSo/oQQZFRhHaRiamZspe7kJV0V52LP2XJ7kdFEv5tLRMsKbm8X/JCNXOirC4Uw==,
- }
-
- "@expo/metro-config@54.0.16":
- resolution:
- {
- integrity: sha512-3LLb9ZQl0VlqSlsalJ7+CYjfz60PBoSDHvpE1UF71aTM1Nx0Vb4LhXo7bCCC+PYP9q/GPB58LLbIROQ8PjKX2w==,
- }
+ '@expo/metro-config@54.0.16':
+ resolution: {integrity: sha512-3LLb9ZQl0VlqSlsalJ7+CYjfz60PBoSDHvpE1UF71aTM1Nx0Vb4LhXo7bCCC+PYP9q/GPB58LLbIROQ8PjKX2w==}
peerDependencies:
- expo: "*"
+ expo: '*'
peerDependenciesMeta:
expo:
optional: true
- "@expo/metro-runtime@6.1.2":
- resolution:
- {
- integrity: sha512-nvM+Qv45QH7pmYvP8JB1G8JpScrWND3KrMA6ZKe62cwwNiX/BjHU28Ear0v/4bQWXlOY0mv6B8CDIm8JxXde9g==,
- }
+ '@expo/metro-runtime@6.1.2':
+ resolution: {integrity: sha512-nvM+Qv45QH7pmYvP8JB1G8JpScrWND3KrMA6ZKe62cwwNiX/BjHU28Ear0v/4bQWXlOY0mv6B8CDIm8JxXde9g==}
peerDependencies:
- expo: "*"
+ expo: '*'
react: 19.1.0
react-dom: 19.1.0
- react-native: "*"
+ react-native: '*'
peerDependenciesMeta:
react-dom:
optional: true
- "@expo/metro@54.2.0":
- resolution:
- {
- integrity: sha512-h68TNZPGsk6swMmLm9nRSnE2UXm48rWwgcbtAHVMikXvbxdS41NDHHeqg1rcQ9AbznDRp6SQVC2MVpDnsRKU1w==,
- }
-
- "@expo/multipart-body-parser@2.0.0":
- resolution:
- {
- integrity: sha512-yS/wsqlj0d8ZKETEN7ro3dZtjdMhpte8wp+xUzjUQC3jizxcE0E62xgvGquJObiYUMGoCF5qRYr2t78STPEaSw==,
- }
-
- "@expo/osascript@2.1.4":
- resolution:
- {
- integrity: sha512-LcPjxJ5FOFpqPORm+5MRLV0CuYWMthJYV6eerF+lQVXKlvgSn3EOqaHC3Vf3H+vmB0f6G4kdvvFtg40vG4bIhA==,
- }
- engines: { node: ">=12" }
-
- "@expo/osascript@2.6.0":
- resolution:
- {
- integrity: sha512-QvqDBlJXa8CS2vRORJ4wEflY1m0vVI07uSJdIRgBrLxRPBcsrXxrtU7+wXRXMqfq9zLwNP9XbvRsXF2omoDylg==,
- }
- engines: { node: ">=12" }
-
- "@expo/package-manager@1.12.0":
- resolution:
- {
- integrity: sha512-SWr6093nwBjn94cvElsYZNUnhvs+XtUatUz3h0vAn0IbaWG0B6l/V5ZfOBptX/xq6rMpFG5ibIf/eckLSXw8Gg==,
- }
-
- "@expo/package-manager@1.9.10":
- resolution:
- {
- integrity: sha512-axJm+NOj3jVxep49va/+L3KkF3YW/dkV+RwzqUJedZrv4LeTqOG4rhrCaCPXHTvLqCTDKu6j0Xyd28N7mnxsGA==,
- }
-
- "@expo/pkcs12@0.1.3":
- resolution:
- {
- integrity: sha512-96MePEGppKi08vawrTPw8kMCRdsbrDbV900MlI8rrP9F57DfDl/y1P52bwIDBYCEHE3XtPMo7s1xkG0BKOLCVg==,
- }
-
- "@expo/plist@0.2.0":
- resolution:
- {
- integrity: sha512-F/IZJQaf8OIVnVA6XWUeMPC3OH6MV00Wxf0WC0JhTQht2QgjyHUa3U5Gs3vRtDq8tXNsZneOQRDVwpaOnd4zTQ==,
- }
-
- "@expo/plist@0.2.2":
- resolution:
- {
- integrity: sha512-ZZGvTO6vEWq02UAPs3LIdja+HRO18+LRI5QuDl6Hs3Ps7KX7xU6Y6kjahWKY37Rx2YjNpX07dGpBFzzC+vKa2g==,
- }
-
- "@expo/plist@0.4.9":
- resolution:
- {
- integrity: sha512-MPVpmKGfnQEnrCzgxuXcmPP/y/t6AVm+DcSb2Myp21LKWv1N3l8uFxMggesfF4ixAxkRlGmMMx9GyDC9M+XklQ==,
- }
-
- "@expo/plist@0.5.4":
- resolution:
- {
- integrity: sha512-Jqppj0FULNq6Zp5JtQrFICl8TtpMjwwUbxEcEC2T3z7m+TOrTQEHZXz3D3Ay7vhbmvD+VMgfWJ4ARclJXeN8Eg==,
- }
-
- "@expo/plugin-help@5.1.23":
- resolution:
- {
- integrity: sha512-s0uH6cPplLj73ZVie40EYUhl7X7q9kRR+8IfZWDod3wUtVGOFInxuCPX9Jpv1UwwBgbRu2cLisqr8m45LrFgxw==,
- }
- engines: { node: ">=12.0.0" }
-
- "@expo/plugin-warn-if-update-available@2.5.1":
- resolution:
- {
- integrity: sha512-B65QSIZ+TgFHnVXsTw+1Q6djsJByWwnIjYfoG8ZV9wizOC01gbAw1cOZ/YtrJ2BrDnzFQtM8qecjlmZ7C3MPLw==,
- }
- engines: { node: ">=12.0.0" }
-
- "@expo/prebuild-config@54.0.8":
- resolution:
- {
- integrity: sha512-EA7N4dloty2t5Rde+HP0IEE+nkAQiu4A/+QGZGT9mFnZ5KKjPPkqSyYcRvP5bhQE10D+tvz6X0ngZpulbMdbsg==,
- }
+ '@expo/metro@54.2.0':
+ resolution: {integrity: sha512-h68TNZPGsk6swMmLm9nRSnE2UXm48rWwgcbtAHVMikXvbxdS41NDHHeqg1rcQ9AbznDRp6SQVC2MVpDnsRKU1w==}
+
+ '@expo/multipart-body-parser@2.0.0':
+ resolution: {integrity: sha512-yS/wsqlj0d8ZKETEN7ro3dZtjdMhpte8wp+xUzjUQC3jizxcE0E62xgvGquJObiYUMGoCF5qRYr2t78STPEaSw==}
+
+ '@expo/osascript@2.1.4':
+ resolution: {integrity: sha512-LcPjxJ5FOFpqPORm+5MRLV0CuYWMthJYV6eerF+lQVXKlvgSn3EOqaHC3Vf3H+vmB0f6G4kdvvFtg40vG4bIhA==}
+ engines: {node: '>=12'}
+
+ '@expo/osascript@2.6.0':
+ resolution: {integrity: sha512-QvqDBlJXa8CS2vRORJ4wEflY1m0vVI07uSJdIRgBrLxRPBcsrXxrtU7+wXRXMqfq9zLwNP9XbvRsXF2omoDylg==}
+ engines: {node: '>=12'}
+
+ '@expo/package-manager@1.12.0':
+ resolution: {integrity: sha512-SWr6093nwBjn94cvElsYZNUnhvs+XtUatUz3h0vAn0IbaWG0B6l/V5ZfOBptX/xq6rMpFG5ibIf/eckLSXw8Gg==}
+
+ '@expo/package-manager@1.9.10':
+ resolution: {integrity: sha512-axJm+NOj3jVxep49va/+L3KkF3YW/dkV+RwzqUJedZrv4LeTqOG4rhrCaCPXHTvLqCTDKu6j0Xyd28N7mnxsGA==}
+
+ '@expo/pkcs12@0.1.3':
+ resolution: {integrity: sha512-96MePEGppKi08vawrTPw8kMCRdsbrDbV900MlI8rrP9F57DfDl/y1P52bwIDBYCEHE3XtPMo7s1xkG0BKOLCVg==}
+
+ '@expo/plist@0.2.0':
+ resolution: {integrity: sha512-F/IZJQaf8OIVnVA6XWUeMPC3OH6MV00Wxf0WC0JhTQht2QgjyHUa3U5Gs3vRtDq8tXNsZneOQRDVwpaOnd4zTQ==}
+
+ '@expo/plist@0.2.2':
+ resolution: {integrity: sha512-ZZGvTO6vEWq02UAPs3LIdja+HRO18+LRI5QuDl6Hs3Ps7KX7xU6Y6kjahWKY37Rx2YjNpX07dGpBFzzC+vKa2g==}
+
+ '@expo/plist@0.4.9':
+ resolution: {integrity: sha512-MPVpmKGfnQEnrCzgxuXcmPP/y/t6AVm+DcSb2Myp21LKWv1N3l8uFxMggesfF4ixAxkRlGmMMx9GyDC9M+XklQ==}
+
+ '@expo/plist@0.5.4':
+ resolution: {integrity: sha512-Jqppj0FULNq6Zp5JtQrFICl8TtpMjwwUbxEcEC2T3z7m+TOrTQEHZXz3D3Ay7vhbmvD+VMgfWJ4ARclJXeN8Eg==}
+
+ '@expo/plugin-help@5.1.23':
+ resolution: {integrity: sha512-s0uH6cPplLj73ZVie40EYUhl7X7q9kRR+8IfZWDod3wUtVGOFInxuCPX9Jpv1UwwBgbRu2cLisqr8m45LrFgxw==}
+ engines: {node: '>=12.0.0'}
+
+ '@expo/plugin-warn-if-update-available@2.5.1':
+ resolution: {integrity: sha512-B65QSIZ+TgFHnVXsTw+1Q6djsJByWwnIjYfoG8ZV9wizOC01gbAw1cOZ/YtrJ2BrDnzFQtM8qecjlmZ7C3MPLw==}
+ engines: {node: '>=12.0.0'}
+
+ '@expo/prebuild-config@54.0.8':
+ resolution: {integrity: sha512-EA7N4dloty2t5Rde+HP0IEE+nkAQiu4A/+QGZGT9mFnZ5KKjPPkqSyYcRvP5bhQE10D+tvz6X0ngZpulbMdbsg==}
peerDependencies:
- expo: "*"
-
- "@expo/prebuild-config@8.0.17":
- resolution:
- {
- integrity: sha512-HM+XpDox3fAZuXZXvy55VRcBbsZSDijGf8jI8i/pexgWvtsnt1ouelPXRuE1pXDicMX+lZO83QV+XkyLmBEXYQ==,
- }
-
- "@expo/require-utils@55.0.5":
- resolution:
- {
- integrity: sha512-U4K/CQ2VpXuwfNGsN+daKmYOt15hCP8v/pXaYH6eut7kdYZo6SfJ1yr67BIcJ+1Gzzs+QzTxswAZChKpXmceyw==,
- }
+ expo: '*'
+
+ '@expo/prebuild-config@8.0.17':
+ resolution: {integrity: sha512-HM+XpDox3fAZuXZXvy55VRcBbsZSDijGf8jI8i/pexgWvtsnt1ouelPXRuE1pXDicMX+lZO83QV+XkyLmBEXYQ==}
+
+ '@expo/require-utils@55.0.5':
+ resolution: {integrity: sha512-U4K/CQ2VpXuwfNGsN+daKmYOt15hCP8v/pXaYH6eut7kdYZo6SfJ1yr67BIcJ+1Gzzs+QzTxswAZChKpXmceyw==}
peerDependencies:
typescript: ^5.0.0 || ^5.0.0-0
peerDependenciesMeta:
typescript:
optional: true
- "@expo/results@1.0.0":
- resolution:
- {
- integrity: sha512-qECzzXX5oJot3m2Gu9pfRDz50USdBieQVwYAzeAtQRUTD3PVeTK1tlRUoDcrK8PSruDLuVYdKkLebX4w/o55VA==,
- }
- engines: { node: ">=10" }
-
- "@expo/rudder-sdk-node@1.1.1":
- resolution:
- {
- integrity: sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==,
- }
- engines: { node: ">=12" }
-
- "@expo/schema-utils@0.1.8":
- resolution:
- {
- integrity: sha512-9I6ZqvnAvKKDiO+ZF8BpQQFYWXOJvTAL5L/227RUbWG1OVZDInFifzCBiqAZ3b67NRfeAgpgvbA7rejsqhY62A==,
- }
-
- "@expo/schema-utils@55.0.4":
- resolution:
- {
- integrity: sha512-65IdeeE8dAZR3n3J5Eq7LYiQ8BFGeEYCWPBCzycvafL7PkskbCyIclTQarRwf/HXFoRvezKCjaLwy/8v9Prk6g==,
- }
-
- "@expo/sdk-runtime-versions@1.0.0":
- resolution:
- {
- integrity: sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==,
- }
-
- "@expo/spawn-async@1.7.2":
- resolution:
- {
- integrity: sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==,
- }
- engines: { node: ">=12" }
-
- "@expo/spawn-async@1.8.0":
- resolution:
- {
- integrity: sha512-eb9xxd/LbuEGSdua4NumCu/McVB9EM+F/JxB9pWgnERw4HQ9XyTNH1KapG6oqLWR8TuRK2LQfzJlmNi94CVobw==,
- }
- engines: { node: ">=12" }
-
- "@expo/steps@20.1.0":
- resolution:
- {
- integrity: sha512-J3pYvLOy9r76Q1hhAQFZ/Y4QLuaBpxE3UH04oOWcy8KGZrcV2r+W6khAobjWZuVfA2dh+ajZbUtxMxVeooiIMA==,
- }
- engines: { node: ">=18" }
-
- "@expo/sudo-prompt@9.3.2":
- resolution:
- {
- integrity: sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==,
- }
-
- "@expo/timeago.js@1.0.0":
- resolution:
- {
- integrity: sha512-PD45CGlCL8kG0U3YcH1NvYxQThw5XAS7qE9bgP4L7dakm8lsMz+p8BQ1IjBFMmImawVWsV3py6JZINaEebXLnw==,
- }
-
- "@expo/turtle-spawn@20.0.0":
- resolution:
- {
- integrity: sha512-5NKnpad0wzRPQLa1q50IusZqZtjuYS3FX9COEsCossXOFoGJB2SAYQOjWJNvt/20Hysl+NR2xeAKWp71pE+mow==,
- }
-
- "@expo/vector-icons@15.1.1":
- resolution:
- {
- integrity: sha512-Iu2VkcoI5vygbtYngm7jb4ifxElNVXQYdDrYkT7UCEIiKLeWnQY0wf2ZhHZ+Wro6Sc5TaumpKUOqDRpLi5rkvw==,
- }
+ '@expo/results@1.0.0':
+ resolution: {integrity: sha512-qECzzXX5oJot3m2Gu9pfRDz50USdBieQVwYAzeAtQRUTD3PVeTK1tlRUoDcrK8PSruDLuVYdKkLebX4w/o55VA==}
+ engines: {node: '>=10'}
+
+ '@expo/rudder-sdk-node@1.1.1':
+ resolution: {integrity: sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==}
+ engines: {node: '>=12'}
+
+ '@expo/schema-utils@0.1.8':
+ resolution: {integrity: sha512-9I6ZqvnAvKKDiO+ZF8BpQQFYWXOJvTAL5L/227RUbWG1OVZDInFifzCBiqAZ3b67NRfeAgpgvbA7rejsqhY62A==}
+
+ '@expo/schema-utils@55.0.4':
+ resolution: {integrity: sha512-65IdeeE8dAZR3n3J5Eq7LYiQ8BFGeEYCWPBCzycvafL7PkskbCyIclTQarRwf/HXFoRvezKCjaLwy/8v9Prk6g==}
+
+ '@expo/sdk-runtime-versions@1.0.0':
+ resolution: {integrity: sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==}
+
+ '@expo/spawn-async@1.7.2':
+ resolution: {integrity: sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==}
+ engines: {node: '>=12'}
+
+ '@expo/spawn-async@1.8.0':
+ resolution: {integrity: sha512-eb9xxd/LbuEGSdua4NumCu/McVB9EM+F/JxB9pWgnERw4HQ9XyTNH1KapG6oqLWR8TuRK2LQfzJlmNi94CVobw==}
+ engines: {node: '>=12'}
+
+ '@expo/steps@20.1.0':
+ resolution: {integrity: sha512-J3pYvLOy9r76Q1hhAQFZ/Y4QLuaBpxE3UH04oOWcy8KGZrcV2r+W6khAobjWZuVfA2dh+ajZbUtxMxVeooiIMA==}
+ engines: {node: '>=18'}
+
+ '@expo/sudo-prompt@9.3.2':
+ resolution: {integrity: sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==}
+
+ '@expo/timeago.js@1.0.0':
+ resolution: {integrity: sha512-PD45CGlCL8kG0U3YcH1NvYxQThw5XAS7qE9bgP4L7dakm8lsMz+p8BQ1IjBFMmImawVWsV3py6JZINaEebXLnw==}
+
+ '@expo/turtle-spawn@20.0.0':
+ resolution: {integrity: sha512-5NKnpad0wzRPQLa1q50IusZqZtjuYS3FX9COEsCossXOFoGJB2SAYQOjWJNvt/20Hysl+NR2xeAKWp71pE+mow==}
+
+ '@expo/vector-icons@15.1.1':
+ resolution: {integrity: sha512-Iu2VkcoI5vygbtYngm7jb4ifxElNVXQYdDrYkT7UCEIiKLeWnQY0wf2ZhHZ+Wro6Sc5TaumpKUOqDRpLi5rkvw==}
peerDependencies:
- expo-font: ">=14.0.4"
+ expo-font: '>=14.0.4'
react: 19.1.0
- react-native: "*"
-
- "@expo/ws-tunnel@1.0.6":
- resolution:
- {
- integrity: sha512-nDRbLmSrJar7abvUjp3smDwH8HcbZcoOEa5jVPUv9/9CajgmWw20JNRwTuBRzWIWIkEJDkz20GoNA+tSwUqk0Q==,
- }
-
- "@expo/xcpretty@4.4.4":
- resolution:
- {
- integrity: sha512-4aQzz9vgxcNXFfo/iyNgDDYfsU5XGKKxWxZopw0cVotHiW+U8IJbIxMaxsINs6bHhtkG3StKNPcOrn3eBuxKPw==,
- }
+ react-native: '*'
+
+ '@expo/ws-tunnel@1.0.6':
+ resolution: {integrity: sha512-nDRbLmSrJar7abvUjp3smDwH8HcbZcoOEa5jVPUv9/9CajgmWw20JNRwTuBRzWIWIkEJDkz20GoNA+tSwUqk0Q==}
+
+ '@expo/xcpretty@4.4.4':
+ resolution: {integrity: sha512-4aQzz9vgxcNXFfo/iyNgDDYfsU5XGKKxWxZopw0cVotHiW+U8IJbIxMaxsINs6bHhtkG3StKNPcOrn3eBuxKPw==}
hasBin: true
- "@google/genai@2.7.0":
- resolution:
- {
- integrity: sha512-tv0DRtcndt2oEhBYy+5mA0TaXH98+L1Gt0AP9unBfH7DP20KhB7+O3QqAN1Lz+laMARGTHS7BFQSNpLbl4gm1g==,
- }
- engines: { node: ">=20.0.0" }
+ '@gorhom/bottom-sheet@5.2.14':
+ resolution: {integrity: sha512-uLQFlDjp9z+jrOFcMSEldPqL5JdaXL3vXOh+juhwoNvXgTsEorJLjHTugXu+YccAG/0KJnShzKCrb71MHBsvJg==}
peerDependencies:
- "@modelcontextprotocol/sdk": ^1.25.2
+ '@types/react': '*'
+ '@types/react-native': '*'
+ react: 19.1.0
+ react-native: '*'
+ react-native-gesture-handler: '>=2.16.1'
+ react-native-reanimated: '>=3.16.0 || >=4.0.0-'
peerDependenciesMeta:
- "@modelcontextprotocol/sdk":
+ '@types/react':
+ optional: true
+ '@types/react-native':
optional: true
- "@grammyjs/runner@2.0.3":
- resolution:
- {
- integrity: sha512-nckmTs1dPWfVQteK9cxqxzE+0m1VRvluLWB8UgFzsjg62w3qthPJt0TYtJBEdG7OedvfQq4vnFAyE6iaMkR42A==,
- }
- engines: { node: ">=12.20.0 || >=14.13.1" }
+ '@gorhom/portal@1.0.14':
+ resolution: {integrity: sha512-MXyL4xvCjmgaORr/rtryDNFy3kU4qUbKlwtQqqsygd0xX3mhKjOLn6mQK8wfu0RkoE0pBE0nAasRoHua+/QZ7A==}
peerDependencies:
- grammy: ^1.13.1
-
- "@grammyjs/transformer-throttler@1.2.1":
- resolution:
- {
- integrity: sha512-CpWB0F3rJdUiKsq7826QhQsxbZi4wqfz1ccKX+fr+AOC+o8K7ZvS+wqX0suSu1QCsyUq2MDpNiKhyL2ZOJUS4w==,
- }
- engines: { node: ^12.20.0 || >=14.13.1 }
- peerDependencies:
- grammy: ^1.0.0
-
- "@grammyjs/types@3.27.3":
- resolution:
- {
- integrity: sha512-yUKMLliGsGbnxu96YUJ7km7B0zy4PzeH/Jvti5705R/LeKDMqkDV4DckMSt+OrliWQpTwQljHE0QLol5zgxBkg==,
- }
-
- "@hapi/hoek@9.3.0":
- resolution:
- {
- integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==,
- }
-
- "@hapi/topo@5.1.0":
- resolution:
- {
- integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==,
- }
-
- "@homebridge/ciao@1.3.9":
- resolution:
- {
- integrity: sha512-TMy9zy173jDOpnFXDqL3BPIQn5lfcAkSsivYQatCCakoHk4fLGd7QjfAaNGYE3Ox+/ZI6Lq0e1gGcz1qdw/IbA==,
- }
- hasBin: true
+ react: 19.1.0
+ react-native: '*'
- "@hono/node-server@1.19.14":
- resolution:
- {
- integrity: sha512-GwtvgtXxnWsucXvbQXkRgqksiH2Qed37H9xHZocE5sA3N8O8O8/8FA3uclQXxXVzc9XBZuEOMK7+r02FmSpHtw==,
- }
- engines: { node: ">=18.14.1" }
- peerDependencies:
- hono: ^4
-
- "@isaacs/cliui@8.0.2":
- resolution:
- {
- integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==,
- }
- engines: { node: ">=12" }
-
- "@isaacs/fs-minipass@4.0.1":
- resolution:
- {
- integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==,
- }
- engines: { node: ">=18.0.0" }
-
- "@isaacs/ttlcache@1.4.1":
- resolution:
- {
- integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==,
- }
- engines: { node: ">=12" }
-
- "@istanbuljs/load-nyc-config@1.1.0":
- resolution:
- {
- integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==,
- }
- engines: { node: ">=8" }
-
- "@istanbuljs/schema@0.1.6":
- resolution:
- {
- integrity: sha512-+Sg6GCR/wy1oSmQDFq4LQDAhm3ETKnorxN+y5nbLULOR3P0c14f2Wurzj3/xqPXtasLFfHd5iRFQ7AJt4KH2cw==,
- }
- engines: { node: ">=8" }
-
- "@jest/console@29.7.0":
- resolution:
- {
- integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/core@29.7.0":
- resolution:
- {
- integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ '@hapi/hoek@9.3.0':
+ resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
+
+ '@hapi/topo@5.1.0':
+ resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
+
+ '@isaacs/cliui@8.0.2':
+ resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
+ engines: {node: '>=12'}
+
+ '@isaacs/fs-minipass@4.0.1':
+ resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
+ engines: {node: '>=18.0.0'}
+
+ '@isaacs/ttlcache@1.4.1':
+ resolution: {integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==}
+ engines: {node: '>=12'}
+
+ '@istanbuljs/load-nyc-config@1.1.0':
+ resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
+ engines: {node: '>=8'}
+
+ '@istanbuljs/schema@0.1.6':
+ resolution: {integrity: sha512-+Sg6GCR/wy1oSmQDFq4LQDAhm3ETKnorxN+y5nbLULOR3P0c14f2Wurzj3/xqPXtasLFfHd5iRFQ7AJt4KH2cw==}
+ engines: {node: '>=8'}
+
+ '@jest/console@29.7.0':
+ resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/core@29.7.0':
+ resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
node-notifier:
optional: true
- "@jest/create-cache-key-function@29.7.0":
- resolution:
- {
- integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/diff-sequences@30.4.0":
- resolution:
- {
- integrity: sha512-zOpzlfUs45l6u7jm39qr87JCHUDsaeCtvL+kQe/Vn9jSnRB4/5IPXISm0h9I1vZW/o00Kn4UTJ2MOlhnUGwv3g==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/environment@29.7.0":
- resolution:
- {
- integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/expect-utils@29.7.0":
- resolution:
- {
- integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/expect-utils@30.4.1":
- resolution:
- {
- integrity: sha512-ZBn5CglH8fBsQsvs4VWNzD4aWfUYks+IdOOQU3MEK71ol/BcVm+P+rtb1KpiFBpSWSCE27uOahyyf1vfqOVbcQ==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/expect@29.7.0":
- resolution:
- {
- integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/fake-timers@29.7.0":
- resolution:
- {
- integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/get-type@30.1.0":
- resolution:
- {
- integrity: sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/globals@29.7.0":
- resolution:
- {
- integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/pattern@30.4.0":
- resolution:
- {
- integrity: sha512-RAWn3+f9u8BsHijKJ71uHcFp6vmyEt6VvoWXkl6hKF3qVIuWNmudVjg12DlBPGup/frIl5UcUlH5HfEuvHpEXg==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/reporters@29.7.0":
- resolution:
- {
- integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ '@jest/create-cache-key-function@29.7.0':
+ resolution: {integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/diff-sequences@30.4.0':
+ resolution: {integrity: sha512-zOpzlfUs45l6u7jm39qr87JCHUDsaeCtvL+kQe/Vn9jSnRB4/5IPXISm0h9I1vZW/o00Kn4UTJ2MOlhnUGwv3g==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/environment@29.7.0':
+ resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/expect-utils@29.7.0':
+ resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/expect-utils@30.4.1':
+ resolution: {integrity: sha512-ZBn5CglH8fBsQsvs4VWNzD4aWfUYks+IdOOQU3MEK71ol/BcVm+P+rtb1KpiFBpSWSCE27uOahyyf1vfqOVbcQ==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/expect@29.7.0':
+ resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/fake-timers@29.7.0':
+ resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/get-type@30.1.0':
+ resolution: {integrity: sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/globals@29.7.0':
+ resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/pattern@30.4.0':
+ resolution: {integrity: sha512-RAWn3+f9u8BsHijKJ71uHcFp6vmyEt6VvoWXkl6hKF3qVIuWNmudVjg12DlBPGup/frIl5UcUlH5HfEuvHpEXg==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/reporters@29.7.0':
+ resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
node-notifier:
optional: true
- "@jest/schemas@29.6.3":
- resolution:
- {
- integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/schemas@30.4.1":
- resolution:
- {
- integrity: sha512-i6b4qw5qnP8c5FEeBJg/uZQ4ddrkN6Ca8qISJh0pr7a5hfn3h3v5x60BEbOC7OYAGZNMs1LfFLwnW2CuK8F57Q==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jest/source-map@29.6.3":
- resolution:
- {
- integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/test-result@29.7.0":
- resolution:
- {
- integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/test-sequencer@29.7.0":
- resolution:
- {
- integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/transform@29.7.0":
- resolution:
- {
- integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/types@29.6.3":
- resolution:
- {
- integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/types@30.4.1":
- resolution:
- {
- integrity: sha512-f1x/vJXIfjOlEmejYpbkbgw1gOqpPECwMvMEtBqe47j7H2Hg8h8w3o3ikhSXq3MI15kg+oQ0exWO0uCtTNJLoQ==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
-
- "@jridgewell/gen-mapping@0.3.13":
- resolution:
- {
- integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==,
- }
-
- "@jridgewell/remapping@2.3.5":
- resolution:
- {
- integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==,
- }
-
- "@jridgewell/resolve-uri@3.1.2":
- resolution:
- {
- integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==,
- }
- engines: { node: ">=6.0.0" }
-
- "@jridgewell/source-map@0.3.11":
- resolution:
- {
- integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==,
- }
-
- "@jridgewell/sourcemap-codec@1.5.5":
- resolution:
- {
- integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==,
- }
-
- "@jridgewell/trace-mapping@0.3.31":
- resolution:
- {
- integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==,
- }
-
- "@jridgewell/trace-mapping@0.3.9":
- resolution:
- {
- integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==,
- }
-
- "@lydell/node-pty-darwin-arm64@1.2.0-beta.12":
- resolution:
- {
- integrity: sha512-tqaifcY9Cr41SblO1+FLzh8oxxtkNhuW9Dhl22lKme9BreYvKvxEZcdPIXTuqkJc5tagOEC4QHShKmJjLyLXLQ==,
- }
- cpu: [arm64]
- os: [darwin]
+ '@jest/schemas@29.6.3':
+ resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- "@lydell/node-pty-darwin-x64@1.2.0-beta.12":
- resolution:
- {
- integrity: sha512-4LrS5pCJwqHKDVf1zS2gyNV0m4hKAXch+XZNhbZ6LY8uwVL8BhchzQBO40Os5anuRxRCWzHpw4Sp64Ie8q7E4Q==,
- }
- cpu: [x64]
- os: [darwin]
+ '@jest/schemas@30.4.1':
+ resolution: {integrity: sha512-i6b4qw5qnP8c5FEeBJg/uZQ4ddrkN6Ca8qISJh0pr7a5hfn3h3v5x60BEbOC7OYAGZNMs1LfFLwnW2CuK8F57Q==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- "@lydell/node-pty-linux-arm64@1.2.0-beta.12":
- resolution:
- {
- integrity: sha512-Sx+A71x5BDGHt9ansfrtGxwq2VFVDWvJUAdlUL0Hv0qeiJUfts+hgopx+CgT4PSwahKjdEgtu0+FAfY9rICKRw==,
- }
- cpu: [arm64]
- os: [linux]
+ '@jest/source-map@29.6.3':
+ resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- "@lydell/node-pty-linux-x64@1.2.0-beta.12":
- resolution:
- {
- integrity: sha512-bJzs94njofYhGg/UDqW1nj0dtvvu+2OvxMY+RlLS1T17VgcktKoIR6PuenTwE5HJ/D6StCPADmXcT0nNsCKmIQ==,
- }
- cpu: [x64]
- os: [linux]
+ '@jest/test-result@29.7.0':
+ resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- "@lydell/node-pty-win32-arm64@1.2.0-beta.12":
- resolution:
- {
- integrity: sha512-p7POgjVEiFaBC3/y+AKuV1FzePCsJ6HmZDv2XK+jBZSfwP8+uBAw181ZiKYN1YuRa/XpmBGaWezcI8hZkbW++g==,
- }
- cpu: [arm64]
- os: [win32]
+ '@jest/test-sequencer@29.7.0':
+ resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- "@lydell/node-pty-win32-x64@1.2.0-beta.12":
- resolution:
- {
- integrity: sha512-IDFa00g7qUDGUYgByrUBJtC+mOjYVt/8KYyWivCg5JjGOHbBUACUQZLl0jTWmnr+tld/UyTpX90a2PY6oTVtRw==,
- }
- cpu: [x64]
- os: [win32]
+ '@jest/transform@29.7.0':
+ resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/types@29.6.3':
+ resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/types@30.4.1':
+ resolution: {integrity: sha512-f1x/vJXIfjOlEmejYpbkbgw1gOqpPECwMvMEtBqe47j7H2Hg8h8w3o3ikhSXq3MI15kg+oQ0exWO0uCtTNJLoQ==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jridgewell/gen-mapping@0.3.13':
+ resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
+
+ '@jridgewell/remapping@2.3.5':
+ resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
+
+ '@jridgewell/resolve-uri@3.1.2':
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
+ engines: {node: '>=6.0.0'}
+
+ '@jridgewell/source-map@0.3.11':
+ resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==}
+
+ '@jridgewell/sourcemap-codec@1.5.5':
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
+
+ '@jridgewell/trace-mapping@0.3.31':
+ resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
+
+ '@jridgewell/trace-mapping@0.3.9':
+ resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
- "@lydell/node-pty@1.2.0-beta.12":
- resolution:
- {
- integrity: sha512-qIK890UwPupoj07osVvgOIa++1mxeHbcGry4PKRHhNVNs81V2SCG34eJr46GybiOmBtc8Sj5PB1/GGM5PL549g==,
- }
-
- "@mapbox/node-pre-gyp@1.0.11":
- resolution:
- {
- integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==,
- }
+ '@mapbox/node-pre-gyp@1.0.11':
+ resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==}
hasBin: true
- "@mistralai/mistralai@2.2.5":
- resolution:
- {
- integrity: sha512-ATbWzKkNzNAZ+gtw9MI/c/ULTMG80tKUiRNIbQFfg4OP0uEZZpTfXZeBCNfs5Dq0uqMQ/tQWc4o6RRJQtMrpDA==,
- }
-
- "@modelcontextprotocol/sdk@1.29.0":
- resolution:
- {
- integrity: sha512-zo37mZA9hJWpULgkRpowewez1y6ML5GsXJPY8FI0tBBCd77HEvza4jDqRKOXgHNn867PVGCyTdzqpz0izu5ZjQ==,
- }
- engines: { node: ">=18" }
- peerDependencies:
- "@cfworker/json-schema": ^4.1.1
- zod: ^3.25 || ^4.0
- peerDependenciesMeta:
- "@cfworker/json-schema":
- optional: true
+ '@noble/ciphers@2.2.0':
+ resolution: {integrity: sha512-Z6pjIZ/8IJcCGzb2S/0Px5J81yij85xASuk1teLNeg75bfT07MV3a/O2Mtn1I2se43k3lkVEcFaR10N4cgQcZA==}
+ engines: {node: '>= 20.19.0'}
- "@mozilla/readability@0.6.0":
- resolution:
- {
- integrity: sha512-juG5VWh4qAivzTAeMzvY9xs9HY5rAcr2E4I7tiSSCokRFi7XIZCAu92ZkSTsIj1OPceCifL3cpfteP3pDT9/QQ==,
- }
- engines: { node: ">=14.0.0" }
-
- "@napi-rs/keyring-darwin-arm64@1.3.0":
- resolution:
- {
- integrity: sha512-pl76hJvdYUBn6I24bXiOBMA9nbDapo3I5B+f3OorjDU4dUMSypXeKbOVehJe8fhgTiH24flMyTS3aAIy43xegQ==,
- }
- engines: { node: ">= 10" }
- cpu: [arm64]
- os: [darwin]
+ '@noble/curves@1.9.6':
+ resolution: {integrity: sha512-GIKz/j99FRthB8icyJQA51E8Uk5hXmdyThjgQXRKiv9h0zeRlzSCLIzFw6K1LotZ3XuB7yzlf76qk7uBmTdFqA==}
+ engines: {node: ^14.21.3 || >=16}
- "@napi-rs/keyring-darwin-x64@1.3.0":
- resolution:
- {
- integrity: sha512-YcJtEV5LA3cvA4z3BurgxH5IhTsW1JfIvcAAcqcecwk06Si9F9NqkxbZVIfDwQ8oRHgaBmT3zZJnLAotCrVahw==,
- }
- engines: { node: ">= 10" }
- cpu: [x64]
- os: [darwin]
+ '@noble/curves@2.2.0':
+ resolution: {integrity: sha512-T/BoHgFXirb0ENSPBquzX0rcjXeM6Lo892a2jlYJkqk83LqZx0l1Of7DzlKJ6jkpvMrkHSnAcgb5JegL8SeIkQ==}
+ engines: {node: '>= 20.19.0'}
- "@napi-rs/keyring-freebsd-x64@1.3.0":
- resolution:
- {
- integrity: sha512-vlLf31TGhfRAaxLDBhg8b89ss0HHD/lyNmL5F3UjSaz5CUXElsJmKYq9fqA/B+cZKUEUcLHHGhF0I/CqcFdaVw==,
- }
- engines: { node: ">= 10" }
- cpu: [x64]
- os: [freebsd]
+ '@noble/ed25519@3.1.0':
+ resolution: {integrity: sha512-pfcObRY3CtvwfaG9Mt5XqZdKmAQppl37tHUeuBhDUbiwJBCVY4/A4lbMvb1xKhMDx96AqAqZpMWuBX1HulhX4g==}
- "@napi-rs/keyring-linux-arm-gnueabihf@1.3.0":
- resolution:
- {
- integrity: sha512-KiWdMMu/Inz/bHHIAGrnF7r54FZDYXuHO6UFF/rhIrshUsxbMG1Rl9lEymNtqqsVo927G0VYcb02FzWQ3iBQRQ==,
- }
- engines: { node: ">= 10" }
- cpu: [arm]
- os: [linux]
+ '@noble/hashes@1.8.0':
+ resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==}
+ engines: {node: ^14.21.3 || >=16}
- "@napi-rs/keyring-linux-arm64-gnu@1.3.0":
- resolution:
- {
- integrity: sha512-eyKGpY40lm9Jvs1aD294XRH4y7+TlJM0YVAryZeXA6TX0mb4gMkxVXwSQv7MCwgah7raeUd0dKUb4BPAYIgcMg==,
- }
- engines: { node: ">= 10" }
- cpu: [arm64]
- os: [linux]
+ '@noble/hashes@2.0.1':
+ resolution: {integrity: sha512-XlOlEbQcE9fmuXxrVTXCTlG2nlRXa9Rj3rr5Ue/+tX+nmkgbX720YHh0VR3hBF9xDvwnb8D2shVGOwNx+ulArw==}
+ engines: {node: '>= 20.19.0'}
- "@napi-rs/keyring-linux-arm64-musl@1.3.0":
- resolution:
- {
- integrity: sha512-iIK6JWHXAJqDrEyLY3TmswwloVyt2vj+04TZnew+uSJ9gnDO8EwRbp3/iw3LpWaXiDO7VomGO6y8I0Id8uBZSw==,
- }
- engines: { node: ">= 10" }
- cpu: [arm64]
- os: [linux]
+ '@noble/hashes@2.2.0':
+ resolution: {integrity: sha512-IYqDGiTXab6FniAgnSdZwgWbomxpy9FtYvLKs7wCUs2a8RkITG+DFGO1DM9cr+E3/RgADRpFjrKVaJ1z6sjtEg==}
+ engines: {node: '>= 20.19.0'}
- "@napi-rs/keyring-linux-riscv64-gnu@1.3.0":
- resolution:
- {
- integrity: sha512-/PGqrwn6EwgtK6vccASSXJRfOSP4vN1F4ASsIQ+7MdrK6hNvAJ1FZPrIuD5gGGdxezo3F++To2Wq7DbuGIeuNQ==,
- }
- engines: { node: ">= 10" }
- cpu: [riscv64]
- os: [linux]
+ '@nodelib/fs.scandir@2.1.5':
+ resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
+ engines: {node: '>= 8'}
- "@napi-rs/keyring-linux-x64-gnu@1.3.0":
- resolution:
- {
- integrity: sha512-2PDK1WKWTu9lBGq9VvNEkSlQD3O7YwVpmnyN2M3cy4v7NJ/8gDMd9GXv3G+FVXN13uhp4gnnPBS+ScefmEeD2A==,
- }
- engines: { node: ">= 10" }
- cpu: [x64]
- os: [linux]
+ '@nodelib/fs.stat@2.0.5':
+ resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
+ engines: {node: '>= 8'}
- "@napi-rs/keyring-linux-x64-musl@1.3.0":
- resolution:
- {
- integrity: sha512-oJ2HkX8YUo46QBkn0pG+HuIKQNqr523q6vBobCn+P95s4C4K6/kLBqHY/1bg5J4ap31DzsznhnFKcfBNBsjCnw==,
- }
- engines: { node: ">= 10" }
- cpu: [x64]
- os: [linux]
+ '@nodelib/fs.walk@1.2.8':
+ resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
+ engines: {node: '>= 8'}
- "@napi-rs/keyring-win32-arm64-msvc@1.3.0":
- resolution:
- {
- integrity: sha512-tOd3c/uAaeoE4ycVlmAdSvygz0Zt3zdca6Y7gokBeIbaRDWpjDIUOpU3MvML59XAaqyuKGsVVu0F/DZb1lHPmw==,
- }
- engines: { node: ">= 10" }
- cpu: [arm64]
- os: [win32]
+ '@oclif/core@2.16.0':
+ resolution: {integrity: sha512-dL6atBH0zCZl1A1IXCKJgLPrM/wR7K+Wi401E/IvqsK8m2iCHW+0TEOGrans/cuN3oTW+uxIyJFHJ8Im0k4qBw==}
+ engines: {node: '>=14.0.0'}
- "@napi-rs/keyring-win32-ia32-msvc@1.3.0":
- resolution:
- {
- integrity: sha512-sPSqeAFZMGqP1R++M2JTza7GQJJ/TpCo6JU6Vcd4jnebvOaEDs9b7eipakU1PJdSvhpC2yXMCNRk9gXfrhuwHQ==,
- }
- engines: { node: ">= 10" }
- cpu: [ia32]
- os: [win32]
+ '@oclif/core@4.11.4':
+ resolution: {integrity: sha512-URwiQ5ALx/sJ2iH4vzXEd+H4K6NAI7LRs6Jag3hrgKEpGmaE6alfRC8qjO4GIgb6A3ACaJumqP9twi/M9ywdHQ==}
+ engines: {node: '>=18.0.0'}
- "@napi-rs/keyring-win32-x64-msvc@1.3.0":
- resolution:
- {
- integrity: sha512-4DnCWXwDc0HRKwyRlG5y0VhKZW2tNRQfKKfyj6IX/KWfDNyq9hn4n+GL1auyDcOO/v8PwnhmYo2+rOOqCkvvOg==,
- }
- engines: { node: ">= 10" }
- cpu: [x64]
- os: [win32]
+ '@oclif/plugin-autocomplete@3.2.50':
+ resolution: {integrity: sha512-SQRIJSYue/1tIn7X55W/97gTb8UkSoHeFAcBng2r2YMJyWj8uB1DtFl28D8BDXPQXPTiPK89hQGejoT7RdkR2w==}
+ engines: {node: '>=18.0.0'}
- "@napi-rs/keyring@1.3.0":
- resolution:
- {
- integrity: sha512-WrOw/bcXm0f9qHkumlT1QlArXSTWqaY9sunsDpOk+yCCorCKMxvWT/a3xko4EYHVdeZoh00yI2TydXn6eyICDA==,
- }
- engines: { node: ">= 10" }
-
- "@noble/ciphers@2.2.0":
- resolution:
- {
- integrity: sha512-Z6pjIZ/8IJcCGzb2S/0Px5J81yij85xASuk1teLNeg75bfT07MV3a/O2Mtn1I2se43k3lkVEcFaR10N4cgQcZA==,
- }
- engines: { node: ">= 20.19.0" }
-
- "@noble/curves@1.9.6":
- resolution:
- {
- integrity: sha512-GIKz/j99FRthB8icyJQA51E8Uk5hXmdyThjgQXRKiv9h0zeRlzSCLIzFw6K1LotZ3XuB7yzlf76qk7uBmTdFqA==,
- }
- engines: { node: ^14.21.3 || >=16 }
-
- "@noble/curves@2.2.0":
- resolution:
- {
- integrity: sha512-T/BoHgFXirb0ENSPBquzX0rcjXeM6Lo892a2jlYJkqk83LqZx0l1Of7DzlKJ6jkpvMrkHSnAcgb5JegL8SeIkQ==,
- }
- engines: { node: ">= 20.19.0" }
-
- "@noble/ed25519@3.1.0":
- resolution:
- {
- integrity: sha512-pfcObRY3CtvwfaG9Mt5XqZdKmAQppl37tHUeuBhDUbiwJBCVY4/A4lbMvb1xKhMDx96AqAqZpMWuBX1HulhX4g==,
- }
-
- "@noble/hashes@1.8.0":
- resolution:
- {
- integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==,
- }
- engines: { node: ^14.21.3 || >=16 }
-
- "@noble/hashes@2.0.1":
- resolution:
- {
- integrity: sha512-XlOlEbQcE9fmuXxrVTXCTlG2nlRXa9Rj3rr5Ue/+tX+nmkgbX720YHh0VR3hBF9xDvwnb8D2shVGOwNx+ulArw==,
- }
- engines: { node: ">= 20.19.0" }
-
- "@noble/hashes@2.2.0":
- resolution:
- {
- integrity: sha512-IYqDGiTXab6FniAgnSdZwgWbomxpy9FtYvLKs7wCUs2a8RkITG+DFGO1DM9cr+E3/RgADRpFjrKVaJ1z6sjtEg==,
- }
- engines: { node: ">= 20.19.0" }
-
- "@nodelib/fs.scandir@2.1.5":
- resolution:
- {
- integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==,
- }
- engines: { node: ">= 8" }
-
- "@nodelib/fs.stat@2.0.5":
- resolution:
- {
- integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==,
- }
- engines: { node: ">= 8" }
-
- "@nodelib/fs.walk@1.2.8":
- resolution:
- {
- integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==,
- }
- engines: { node: ">= 8" }
-
- "@oclif/core@2.16.0":
- resolution:
- {
- integrity: sha512-dL6atBH0zCZl1A1IXCKJgLPrM/wR7K+Wi401E/IvqsK8m2iCHW+0TEOGrans/cuN3oTW+uxIyJFHJ8Im0k4qBw==,
- }
- engines: { node: ">=14.0.0" }
-
- "@oclif/core@4.11.4":
- resolution:
- {
- integrity: sha512-URwiQ5ALx/sJ2iH4vzXEd+H4K6NAI7LRs6Jag3hrgKEpGmaE6alfRC8qjO4GIgb6A3ACaJumqP9twi/M9ywdHQ==,
- }
- engines: { node: ">=18.0.0" }
-
- "@oclif/plugin-autocomplete@3.2.50":
- resolution:
- {
- integrity: sha512-SQRIJSYue/1tIn7X55W/97gTb8UkSoHeFAcBng2r2YMJyWj8uB1DtFl28D8BDXPQXPTiPK89hQGejoT7RdkR2w==,
- }
- engines: { node: ">=18.0.0" }
-
- "@openclaw/fs-safe@0.3.0":
- resolution:
- {
- integrity: sha512-uIBE441CIt1kIURoP9qRGKZ8LkGyfD9ZzeESjwAd29ZPWtghws/5GR3Pjb67jKdcJHP1I6roNXcvnhzAU7lHlA==,
- }
- engines: { node: ">=20.11" }
-
- "@openclaw/proxyline@0.3.3":
- resolution:
- {
- integrity: sha512-sftHnW69NHQqLjCxBTvQ8f/eQl+peZ5pHCBQtuTWBbeuYRHZ0/GXVTmw/O/YKsShMbqPWhJB0UYtPPdvCUSS8w==,
- }
- engines: { node: ">=22.19.0" }
- peerDependencies:
- undici: ">=8.3.0 <9"
-
- "@oxfmt/binding-android-arm-eabi@0.44.0":
- resolution:
- {
- integrity: sha512-5UvghMd9SA/yvKTWCAxMAPXS1d2i054UeOf4iFjZjfayTwCINcC3oaSXjtbZfCaEpxgJod7XiOjTtby5yEv/BQ==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-android-arm-eabi@0.44.0':
+ resolution: {integrity: sha512-5UvghMd9SA/yvKTWCAxMAPXS1d2i054UeOf4iFjZjfayTwCINcC3oaSXjtbZfCaEpxgJod7XiOjTtby5yEv/BQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [android]
- "@oxfmt/binding-android-arm64@0.44.0":
- resolution:
- {
- integrity: sha512-IVudM1BWfvrYO++Khtzr8q9n5Rxu7msUvoFMqzGJVdX7HfUXUDHwaH2zHZNB58svx2J56pmCUzophyaPFkcG/A==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-android-arm64@0.44.0':
+ resolution: {integrity: sha512-IVudM1BWfvrYO++Khtzr8q9n5Rxu7msUvoFMqzGJVdX7HfUXUDHwaH2zHZNB58svx2J56pmCUzophyaPFkcG/A==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
- "@oxfmt/binding-darwin-arm64@0.44.0":
- resolution:
- {
- integrity: sha512-eWCLAIKAHfx88EqEP1Ga2yz7qVcqDU5lemn4xck+07bH182hDdprOHjbogyk0In1Djys3T0/pO2JepFnRJ41Mg==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-darwin-arm64@0.44.0':
+ resolution: {integrity: sha512-eWCLAIKAHfx88EqEP1Ga2yz7qVcqDU5lemn4xck+07bH182hDdprOHjbogyk0In1Djys3T0/pO2JepFnRJ41Mg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
- "@oxfmt/binding-darwin-x64@0.44.0":
- resolution:
- {
- integrity: sha512-eHTBznHLM49++dwz07MblQ2cOXyIgeedmE3Wgy4ptUESj38/qYZyRi1MPwC9olQJWssMeY6WI3UZ7YmU5ggvyQ==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-darwin-x64@0.44.0':
+ resolution: {integrity: sha512-eHTBznHLM49++dwz07MblQ2cOXyIgeedmE3Wgy4ptUESj38/qYZyRi1MPwC9olQJWssMeY6WI3UZ7YmU5ggvyQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
- "@oxfmt/binding-freebsd-x64@0.44.0":
- resolution:
- {
- integrity: sha512-jLMmbj0u0Ft43QpkUVr/0v1ZfQCGWAvU+WznEHcN3wZC/q6ox7XeSJtk9P36CCpiDSUf3sGnzbIuG1KdEMEDJQ==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-freebsd-x64@0.44.0':
+ resolution: {integrity: sha512-jLMmbj0u0Ft43QpkUVr/0v1ZfQCGWAvU+WznEHcN3wZC/q6ox7XeSJtk9P36CCpiDSUf3sGnzbIuG1KdEMEDJQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
- "@oxfmt/binding-linux-arm-gnueabihf@0.44.0":
- resolution:
- {
- integrity: sha512-n+A/u/ByK1qV8FVGOwyaSpw5NPNl0qlZfgTBqHeGIqr8Qzq1tyWZ4lAaxPoe5mZqE3w88vn3+jZtMxriHPE7tg==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-linux-arm-gnueabihf@0.44.0':
+ resolution: {integrity: sha512-n+A/u/ByK1qV8FVGOwyaSpw5NPNl0qlZfgTBqHeGIqr8Qzq1tyWZ4lAaxPoe5mZqE3w88vn3+jZtMxriHPE7tg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- "@oxfmt/binding-linux-arm-musleabihf@0.44.0":
- resolution:
- {
- integrity: sha512-5eax+FkxyCqAi3Rw0mrZFr7+KTt/XweFsbALR+B5ljWBLBl8nHe4ADrUnb1gLEfQCJLl+Ca5FIVD4xEt95AwIw==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-linux-arm-musleabihf@0.44.0':
+ resolution: {integrity: sha512-5eax+FkxyCqAi3Rw0mrZFr7+KTt/XweFsbALR+B5ljWBLBl8nHe4ADrUnb1gLEfQCJLl+Ca5FIVD4xEt95AwIw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- "@oxfmt/binding-linux-arm64-gnu@0.44.0":
- resolution:
- {
- integrity: sha512-58l8JaHxSGOmOMOG2CIrNsnkRJAj0YcHQCmvNACniOa/vd1iRHhlPajczegzS5jwMENlqgreyiTR9iNlke8qCw==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-linux-arm64-gnu@0.44.0':
+ resolution: {integrity: sha512-58l8JaHxSGOmOMOG2CIrNsnkRJAj0YcHQCmvNACniOa/vd1iRHhlPajczegzS5jwMENlqgreyiTR9iNlke8qCw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
- "@oxfmt/binding-linux-arm64-musl@0.44.0":
- resolution:
- {
- integrity: sha512-AlObQIXyVRZ96LbtVljtFq0JqH5B92NU+BQeDFrXWBUWlCKAM0wF5GLfIhCLT5kQ3Sl+U0YjRJ7Alqj5hGQaCg==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-linux-arm64-musl@0.44.0':
+ resolution: {integrity: sha512-AlObQIXyVRZ96LbtVljtFq0JqH5B92NU+BQeDFrXWBUWlCKAM0wF5GLfIhCLT5kQ3Sl+U0YjRJ7Alqj5hGQaCg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
- "@oxfmt/binding-linux-ppc64-gnu@0.44.0":
- resolution:
- {
- integrity: sha512-YcFE8/q/BbrCiIiM5piwbkA6GwJc5QqhMQp2yDrqQ2fuVkZ7CInb1aIijZ/k8EXc72qXMSwKpVlBv1w/MsGO/A==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-linux-ppc64-gnu@0.44.0':
+ resolution: {integrity: sha512-YcFE8/q/BbrCiIiM5piwbkA6GwJc5QqhMQp2yDrqQ2fuVkZ7CInb1aIijZ/k8EXc72qXMSwKpVlBv1w/MsGO/A==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ppc64]
os: [linux]
- "@oxfmt/binding-linux-riscv64-gnu@0.44.0":
- resolution:
- {
- integrity: sha512-eOdzs6RqkRzuqNHUX5C8ISN5xfGh4xDww8OEd9YAmc3OWN8oAe5bmlIqQ+rrHLpv58/0BuU48bxkhnIGjA/ATQ==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-linux-riscv64-gnu@0.44.0':
+ resolution: {integrity: sha512-eOdzs6RqkRzuqNHUX5C8ISN5xfGh4xDww8OEd9YAmc3OWN8oAe5bmlIqQ+rrHLpv58/0BuU48bxkhnIGjA/ATQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
- "@oxfmt/binding-linux-riscv64-musl@0.44.0":
- resolution:
- {
- integrity: sha512-YBgNTxntD/QvlFUfgvh8bEdwOhXiquX8gaofZJAwYa/Xp1S1DQrFVZEeck7GFktr24DztsSp8N8WtWCBwxs0Hw==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-linux-riscv64-musl@0.44.0':
+ resolution: {integrity: sha512-YBgNTxntD/QvlFUfgvh8bEdwOhXiquX8gaofZJAwYa/Xp1S1DQrFVZEeck7GFktr24DztsSp8N8WtWCBwxs0Hw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
- "@oxfmt/binding-linux-s390x-gnu@0.44.0":
- resolution:
- {
- integrity: sha512-GLIh1R6WHWshl/i4QQDNgj0WtT25aRO4HNUWEoitxiywyRdhTFmFEYT2rXlcl9U6/26vhmOqG5cRlMLG3ocaIA==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-linux-s390x-gnu@0.44.0':
+ resolution: {integrity: sha512-GLIh1R6WHWshl/i4QQDNgj0WtT25aRO4HNUWEoitxiywyRdhTFmFEYT2rXlcl9U6/26vhmOqG5cRlMLG3ocaIA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
- "@oxfmt/binding-linux-x64-gnu@0.44.0":
- resolution:
- {
- integrity: sha512-gZOpgTlOsLcLfAF9qgpTr7FIIFSKnQN3hDf/0JvQ4CIwMY7h+eilNjxq/CorqvYcEOu+LRt1W4ZS7KccEHLOdA==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-linux-x64-gnu@0.44.0':
+ resolution: {integrity: sha512-gZOpgTlOsLcLfAF9qgpTr7FIIFSKnQN3hDf/0JvQ4CIwMY7h+eilNjxq/CorqvYcEOu+LRt1W4ZS7KccEHLOdA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
- "@oxfmt/binding-linux-x64-musl@0.44.0":
- resolution:
- {
- integrity: sha512-1CyS9JTB+pCUFYFI6pkQGGZaT/AY5gnhHVrQQLhFba6idP9AzVYm1xbdWfywoldTYvjxQJV6x4SuduCIfP3W+A==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-linux-x64-musl@0.44.0':
+ resolution: {integrity: sha512-1CyS9JTB+pCUFYFI6pkQGGZaT/AY5gnhHVrQQLhFba6idP9AzVYm1xbdWfywoldTYvjxQJV6x4SuduCIfP3W+A==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
- "@oxfmt/binding-openharmony-arm64@0.44.0":
- resolution:
- {
- integrity: sha512-bmEv70Ak6jLr1xotCbF5TxIKjsmQaiX+jFRtnGtfA03tJPf6VG3cKh96S21boAt3JZc+Vjx8PYcDuLj39vM2Pw==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-openharmony-arm64@0.44.0':
+ resolution: {integrity: sha512-bmEv70Ak6jLr1xotCbF5TxIKjsmQaiX+jFRtnGtfA03tJPf6VG3cKh96S21boAt3JZc+Vjx8PYcDuLj39vM2Pw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [openharmony]
- "@oxfmt/binding-win32-arm64-msvc@0.44.0":
- resolution:
- {
- integrity: sha512-yWzB+oCpSnP/dmw85eFLAT5o35Ve5pkGS2uF/UCISpIwDqf1xa7OpmtomiqY/Vzg8VyvMbuf6vroF2khF/+1Vg==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-win32-arm64-msvc@0.44.0':
+ resolution: {integrity: sha512-yWzB+oCpSnP/dmw85eFLAT5o35Ve5pkGS2uF/UCISpIwDqf1xa7OpmtomiqY/Vzg8VyvMbuf6vroF2khF/+1Vg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
- "@oxfmt/binding-win32-ia32-msvc@0.44.0":
- resolution:
- {
- integrity: sha512-TcWpo18xEIE3AmIG2kpr3kz5IEhQgnx0lazl2+8L+3eTopOAUevQcmlr4nhguImNWz0OMeOZrYZOhJNCf16nlQ==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-win32-ia32-msvc@0.44.0':
+ resolution: {integrity: sha512-TcWpo18xEIE3AmIG2kpr3kz5IEhQgnx0lazl2+8L+3eTopOAUevQcmlr4nhguImNWz0OMeOZrYZOhJNCf16nlQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ia32]
os: [win32]
- "@oxfmt/binding-win32-x64-msvc@0.44.0":
- resolution:
- {
- integrity: sha512-oj8aLkPJZppIM4CMQNsyir9ybM1Xw/CfGPTSsTnzpVGyljgfbdP0EVUlURiGM0BDrmw5psQ6ArmGCcUY/yABaQ==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxfmt/binding-win32-x64-msvc@0.44.0':
+ resolution: {integrity: sha512-oj8aLkPJZppIM4CMQNsyir9ybM1Xw/CfGPTSsTnzpVGyljgfbdP0EVUlURiGM0BDrmw5psQ6ArmGCcUY/yABaQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
- "@oxlint/binding-android-arm-eabi@1.67.0":
- resolution:
- {
- integrity: sha512-VrSi571rDv1N8HaEDM+DEX8nmT0y9jJo8tzzW13vsOWTx59xQczCIJx68n2zWOXRT5YKZsOZXp4qkHN/10x4mw==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-android-arm-eabi@1.67.0':
+ resolution: {integrity: sha512-VrSi571rDv1N8HaEDM+DEX8nmT0y9jJo8tzzW13vsOWTx59xQczCIJx68n2zWOXRT5YKZsOZXp4qkHN/10x4mw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [android]
- "@oxlint/binding-android-arm64@1.67.0":
- resolution:
- {
- integrity: sha512-l6+NdYxMoRohix5r5bbigW16LPicceCwGcQ6LKKuE1kUdjgFfQolJjrJsQYPFetIs78Gxj/G/f5TEGoTCwj9nQ==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-android-arm64@1.67.0':
+ resolution: {integrity: sha512-l6+NdYxMoRohix5r5bbigW16LPicceCwGcQ6LKKuE1kUdjgFfQolJjrJsQYPFetIs78Gxj/G/f5TEGoTCwj9nQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
- "@oxlint/binding-darwin-arm64@1.67.0":
- resolution:
- {
- integrity: sha512-jOzXxS1AxFxhImLIRbtGIMrEwaXcgMw3gR57WB1cRk8ai+vpr6726kxXqVvlNsrXtJ/FrmOm8RxlC0m8SW24Qg==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-darwin-arm64@1.67.0':
+ resolution: {integrity: sha512-jOzXxS1AxFxhImLIRbtGIMrEwaXcgMw3gR57WB1cRk8ai+vpr6726kxXqVvlNsrXtJ/FrmOm8RxlC0m8SW24Qg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
- "@oxlint/binding-darwin-x64@1.67.0":
- resolution:
- {
- integrity: sha512-3DFAVY94OqjIZHXIPz37yGRSWwOFTAqChQ64/M69GYLawzP0KiwdhDNfqdKKYT0bTR/DNxmMnQsj3ns+8+X/Lg==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-darwin-x64@1.67.0':
+ resolution: {integrity: sha512-3DFAVY94OqjIZHXIPz37yGRSWwOFTAqChQ64/M69GYLawzP0KiwdhDNfqdKKYT0bTR/DNxmMnQsj3ns+8+X/Lg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
- "@oxlint/binding-freebsd-x64@1.67.0":
- resolution:
- {
- integrity: sha512-e4dDKZuLu8TR9DEBssWSDahlPgZBwojTTHZUvnjBRJfJJbpxYCjfjKfi0Z1+CSLMiJBwI2yCDtRM1XJQaARjmg==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-freebsd-x64@1.67.0':
+ resolution: {integrity: sha512-e4dDKZuLu8TR9DEBssWSDahlPgZBwojTTHZUvnjBRJfJJbpxYCjfjKfi0Z1+CSLMiJBwI2yCDtRM1XJQaARjmg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
- "@oxlint/binding-linux-arm-gnueabihf@1.67.0":
- resolution:
- {
- integrity: sha512-BKytFdcQzbITV3xlnzDUDTEDtbUMCCiC4EaNTDZ4FyT8gdNvBC4gfiLucXp/sQl0XU3p7syTlorUWVVVBZab2g==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-linux-arm-gnueabihf@1.67.0':
+ resolution: {integrity: sha512-BKytFdcQzbITV3xlnzDUDTEDtbUMCCiC4EaNTDZ4FyT8gdNvBC4gfiLucXp/sQl0XU3p7syTlorUWVVVBZab2g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- "@oxlint/binding-linux-arm-musleabihf@1.67.0":
- resolution:
- {
- integrity: sha512-XYAv0esBDX7BpTzRDjVX2Vdj+zndd8ll2dFQiaeQ6zTZr7A8GRDTN7fH3FP3jU+O0vCDx85oH/EtG7BzPgAXuw==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-linux-arm-musleabihf@1.67.0':
+ resolution: {integrity: sha512-XYAv0esBDX7BpTzRDjVX2Vdj+zndd8ll2dFQiaeQ6zTZr7A8GRDTN7fH3FP3jU+O0vCDx85oH/EtG7BzPgAXuw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- "@oxlint/binding-linux-arm64-gnu@1.67.0":
- resolution:
- {
- integrity: sha512-zizRMjA0i6u/2B0evgda04iycu+MoNuf1pBy6Eh+1CjC5wMEG7qN5zdDKTCvFc0KSYSDM9QTG3gjZHirgtQuKg==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-linux-arm64-gnu@1.67.0':
+ resolution: {integrity: sha512-zizRMjA0i6u/2B0evgda04iycu+MoNuf1pBy6Eh+1CjC5wMEG7qN5zdDKTCvFc0KSYSDM9QTG3gjZHirgtQuKg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
- "@oxlint/binding-linux-arm64-musl@1.67.0":
- resolution:
- {
- integrity: sha512-zB/Tf6sUjmmvvbva9Gj3JTJ8rJ9t4I8/U0o6vSRtd0DRIsIuyegBwJAzhSUFQHdMijIRJkW0exs/yBhpw2S20w==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-linux-arm64-musl@1.67.0':
+ resolution: {integrity: sha512-zB/Tf6sUjmmvvbva9Gj3JTJ8rJ9t4I8/U0o6vSRtd0DRIsIuyegBwJAzhSUFQHdMijIRJkW0exs/yBhpw2S20w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
- "@oxlint/binding-linux-ppc64-gnu@1.67.0":
- resolution:
- {
- integrity: sha512-kgU40Gt74CK0TCsF51KZymkIwN9U0BajKsMijB52zPqOeZU9NAHkA/NSQkZDHEaCakx42DxhXkODiAqf2b4Gug==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-linux-ppc64-gnu@1.67.0':
+ resolution: {integrity: sha512-kgU40Gt74CK0TCsF51KZymkIwN9U0BajKsMijB52zPqOeZU9NAHkA/NSQkZDHEaCakx42DxhXkODiAqf2b4Gug==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ppc64]
os: [linux]
- "@oxlint/binding-linux-riscv64-gnu@1.67.0":
- resolution:
- {
- integrity: sha512-tOYhkk/iaG9aD3FvGpBFd1Lrw0x0RaVoJBxjUkfNzS50rC5NS5BteNCwgr8A2zCdADrIIoze6D7u6U5Ic++/iQ==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-linux-riscv64-gnu@1.67.0':
+ resolution: {integrity: sha512-tOYhkk/iaG9aD3FvGpBFd1Lrw0x0RaVoJBxjUkfNzS50rC5NS5BteNCwgr8A2zCdADrIIoze6D7u6U5Ic++/iQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
- "@oxlint/binding-linux-riscv64-musl@1.67.0":
- resolution:
- {
- integrity: sha512-sEtywrPb+0b+tHYl1SDCrw903fiC4eyKoNqzP3v+f2JT3Xcv4NEYG+P8rj+eEnX7IWhqV/xj8/JmcmVj21CXaA==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-linux-riscv64-musl@1.67.0':
+ resolution: {integrity: sha512-sEtywrPb+0b+tHYl1SDCrw903fiC4eyKoNqzP3v+f2JT3Xcv4NEYG+P8rj+eEnX7IWhqV/xj8/JmcmVj21CXaA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
- "@oxlint/binding-linux-s390x-gnu@1.67.0":
- resolution:
- {
- integrity: sha512-BvR8Moa0zCLxroOx4vZaZN9nUfwAUpSTwjZdxZyKy4bv3PrzrXrxKR/ZQ0L9wNSvlPhnMJeZfa3q5w6ZCTuN6Q==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-linux-s390x-gnu@1.67.0':
+ resolution: {integrity: sha512-BvR8Moa0zCLxroOx4vZaZN9nUfwAUpSTwjZdxZyKy4bv3PrzrXrxKR/ZQ0L9wNSvlPhnMJeZfa3q5w6ZCTuN6Q==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
- "@oxlint/binding-linux-x64-gnu@1.67.0":
- resolution:
- {
- integrity: sha512-mm2cxM6fksOpq6l0uFws8BUGKAR4dNa/cZCn37Npq7PFbhD5HDJqWfnoIvTaeRKMy5XdS2tO0MA0qbHDrnXAAA==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-linux-x64-gnu@1.67.0':
+ resolution: {integrity: sha512-mm2cxM6fksOpq6l0uFws8BUGKAR4dNa/cZCn37Npq7PFbhD5HDJqWfnoIvTaeRKMy5XdS2tO0MA0qbHDrnXAAA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
- "@oxlint/binding-linux-x64-musl@1.67.0":
- resolution:
- {
- integrity: sha512-WmbMuLapKyDlobMkXAaAL0Y+Uczh4LETfIfQsUpbId4Ip8Ai82/jqeYTOoUCkuuhBFapgqP253+d83tLKOksJg==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-linux-x64-musl@1.67.0':
+ resolution: {integrity: sha512-WmbMuLapKyDlobMkXAaAL0Y+Uczh4LETfIfQsUpbId4Ip8Ai82/jqeYTOoUCkuuhBFapgqP253+d83tLKOksJg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
- "@oxlint/binding-openharmony-arm64@1.67.0":
- resolution:
- {
- integrity: sha512-9g/PqxYJelzzTAOR5Y+RiRqdeydhEuXv2KxNeFcAKQ7UsvnWSY1OP4MsuPMbTO2Pf70tz7mFhl1j13H3fyh+8g==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-openharmony-arm64@1.67.0':
+ resolution: {integrity: sha512-9g/PqxYJelzzTAOR5Y+RiRqdeydhEuXv2KxNeFcAKQ7UsvnWSY1OP4MsuPMbTO2Pf70tz7mFhl1j13H3fyh+8g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [openharmony]
- "@oxlint/binding-win32-arm64-msvc@1.67.0":
- resolution:
- {
- integrity: sha512-2VhwE6Gatb0vJGnN0TBuQMbKCOiZlSQ/zJvVWYLK4a9d4iDiJOen/yVQkGpmsJ90MuH66fzi0kEKI0jRQMDxGA==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-win32-arm64-msvc@1.67.0':
+ resolution: {integrity: sha512-2VhwE6Gatb0vJGnN0TBuQMbKCOiZlSQ/zJvVWYLK4a9d4iDiJOen/yVQkGpmsJ90MuH66fzi0kEKI0jRQMDxGA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
- "@oxlint/binding-win32-ia32-msvc@1.67.0":
- resolution:
- {
- integrity: sha512-EQ3VExXfeM1InbE5+JjufhZZTWy+kHUwgt3yZR7gQ47Je/mE0WspQPan0OJznh493L5anM210YNJtH1PXjTSFg==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-win32-ia32-msvc@1.67.0':
+ resolution: {integrity: sha512-EQ3VExXfeM1InbE5+JjufhZZTWy+kHUwgt3yZR7gQ47Je/mE0WspQPan0OJznh493L5anM210YNJtH1PXjTSFg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ia32]
os: [win32]
- "@oxlint/binding-win32-x64-msvc@1.67.0":
- resolution:
- {
- integrity: sha512-bw24y+/1MHS4QDkons3YyHkPT9uCMoLHHgQhb+mb8NOjTYwub1CZ+K9Ngr8aO5DMrDrkqHwTzlTwFP2vS8Y/ZQ==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ '@oxlint/binding-win32-x64-msvc@1.67.0':
+ resolution: {integrity: sha512-bw24y+/1MHS4QDkons3YyHkPT9uCMoLHHgQhb+mb8NOjTYwub1CZ+K9Ngr8aO5DMrDrkqHwTzlTwFP2vS8Y/ZQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
- "@pkgjs/parseargs@0.11.0":
- resolution:
- {
- integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==,
- }
- engines: { node: ">=14" }
-
- "@protobufjs/aspromise@1.1.2":
- resolution:
- {
- integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==,
- }
-
- "@protobufjs/base64@1.1.2":
- resolution:
- {
- integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==,
- }
-
- "@protobufjs/codegen@2.0.5":
- resolution:
- {
- integrity: sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g==,
- }
-
- "@protobufjs/eventemitter@1.1.1":
- resolution:
- {
- integrity: sha512-vW1GmwMZNnL+gMRaovlh9yZX74kc+TTU3FObkkurpMaRtBfLP3ldjS9KQWlwZgraRE0+dheEEoAxdzcJQ8eXZg==,
- }
-
- "@protobufjs/fetch@1.1.1":
- resolution:
- {
- integrity: sha512-GpptLrs57adMSuHi3VNj0mAF8dwh36LMaYF6XyJ6JMWlVsc+t42tm1HSEDmOs3A8fC9yyeisgLhsTVQokOZ0zw==,
- }
-
- "@protobufjs/float@1.0.2":
- resolution:
- {
- integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==,
- }
-
- "@protobufjs/inquire@1.1.2":
- resolution:
- {
- integrity: sha512-pa0vFRuws4wkvaXKK1uXZMAwAX4/t8ANaJo45iw/oQHNQ9q5xUzwgFmVJGXiga2BeN+zpX7Vf9vmsiIa2J+MUw==,
- }
-
- "@protobufjs/path@1.1.2":
- resolution:
- {
- integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==,
- }
-
- "@protobufjs/pool@1.1.0":
- resolution:
- {
- integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==,
- }
-
- "@protobufjs/utf8@1.1.1":
- resolution:
- {
- integrity: sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==,
- }
-
- "@radix-ui/primitive@1.1.3":
- resolution:
- {
- integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==,
- }
-
- "@radix-ui/react-collection@1.1.7":
- resolution:
- {
- integrity: sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==,
- }
+ '@pkgjs/parseargs@0.11.0':
+ resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
+ engines: {node: '>=14'}
+
+ '@radix-ui/primitive@1.1.3':
+ resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
+
+ '@radix-ui/react-collection@1.1.7':
+ resolution: {integrity: sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: 19.1.0
react-dom: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-compose-refs@1.1.2":
- resolution:
- {
- integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==,
- }
+ '@radix-ui/react-compose-refs@1.1.2':
+ resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-context@1.1.2":
- resolution:
- {
- integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==,
- }
+ '@radix-ui/react-context@1.1.2':
+ resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-dialog@1.1.15":
- resolution:
- {
- integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==,
- }
+ '@radix-ui/react-dialog@1.1.15':
+ resolution: {integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: 19.1.0
react-dom: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-direction@1.1.1":
- resolution:
- {
- integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==,
- }
+ '@radix-ui/react-direction@1.1.1':
+ resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-dismissable-layer@1.1.11":
- resolution:
- {
- integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==,
- }
+ '@radix-ui/react-dismissable-layer@1.1.11':
+ resolution: {integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: 19.1.0
react-dom: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-focus-guards@1.1.3":
- resolution:
- {
- integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==,
- }
+ '@radix-ui/react-focus-guards@1.1.3':
+ resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-focus-scope@1.1.7":
- resolution:
- {
- integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==,
- }
+ '@radix-ui/react-focus-scope@1.1.7':
+ resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: 19.1.0
react-dom: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-id@1.1.1":
- resolution:
- {
- integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==,
- }
+ '@radix-ui/react-id@1.1.1':
+ resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-portal@1.1.9":
- resolution:
- {
- integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==,
- }
+ '@radix-ui/react-portal@1.1.9':
+ resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: 19.1.0
react-dom: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-presence@1.1.5":
- resolution:
- {
- integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==,
- }
+ '@radix-ui/react-presence@1.1.5':
+ resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: 19.1.0
react-dom: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-primitive@2.1.3":
- resolution:
- {
- integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==,
- }
+ '@radix-ui/react-primitive@2.1.3':
+ resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: 19.1.0
react-dom: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-roving-focus@1.1.11":
- resolution:
- {
- integrity: sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==,
- }
+ '@radix-ui/react-roving-focus@1.1.11':
+ resolution: {integrity: sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: 19.1.0
react-dom: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-slot@1.2.0":
- resolution:
- {
- integrity: sha512-ujc+V6r0HNDviYqIK3rW4ffgYiZ8g5DEHrGJVk4x7kTlLXRDILnKX9vAUYeIsLOoDpDJ0ujpqMkjH4w2ofuo6w==,
- }
+ '@radix-ui/react-slot@1.2.0':
+ resolution: {integrity: sha512-ujc+V6r0HNDviYqIK3rW4ffgYiZ8g5DEHrGJVk4x7kTlLXRDILnKX9vAUYeIsLOoDpDJ0ujpqMkjH4w2ofuo6w==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-slot@1.2.3":
- resolution:
- {
- integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==,
- }
+ '@radix-ui/react-slot@1.2.3':
+ resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-tabs@1.1.13":
- resolution:
- {
- integrity: sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==,
- }
+ '@radix-ui/react-tabs@1.1.13':
+ resolution: {integrity: sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: 19.1.0
react-dom: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-use-callback-ref@1.1.1":
- resolution:
- {
- integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==,
- }
+ '@radix-ui/react-use-callback-ref@1.1.1':
+ resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-use-controllable-state@1.2.2":
- resolution:
- {
- integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==,
- }
+ '@radix-ui/react-use-controllable-state@1.2.2':
+ resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-use-effect-event@0.0.2":
- resolution:
- {
- integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==,
- }
+ '@radix-ui/react-use-effect-event@0.0.2':
+ resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-use-escape-keydown@1.1.1":
- resolution:
- {
- integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==,
- }
+ '@radix-ui/react-use-escape-keydown@1.1.1':
+ resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-use-layout-effect@1.1.1":
- resolution:
- {
- integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==,
- }
+ '@radix-ui/react-use-layout-effect@1.1.1':
+ resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@react-native/assets-registry@0.81.5":
- resolution:
- {
- integrity: sha512-705B6x/5Kxm1RKRvSv0ADYWm5JOnoiQ1ufW7h8uu2E6G9Of/eE6hP/Ivw3U5jI16ERqZxiKQwk34VJbB0niX9w==,
- }
- engines: { node: ">= 20.19.4" }
-
- "@react-native/babel-plugin-codegen@0.81.5":
- resolution:
- {
- integrity: sha512-oF71cIH6je3fSLi6VPjjC3Sgyyn57JLHXs+mHWc9MoCiJJcM4nqsS5J38zv1XQ8d3zOW2JtHro+LF0tagj2bfQ==,
- }
- engines: { node: ">= 20.19.4" }
-
- "@react-native/babel-preset@0.81.5":
- resolution:
- {
- integrity: sha512-UoI/x/5tCmi+pZ3c1+Ypr1DaRMDLI3y+Q70pVLLVgrnC3DHsHRIbHcCHIeG/IJvoeFqFM2sTdhSOLJrf8lOPrA==,
- }
- engines: { node: ">= 20.19.4" }
+ '@react-native/assets-registry@0.81.5':
+ resolution: {integrity: sha512-705B6x/5Kxm1RKRvSv0ADYWm5JOnoiQ1ufW7h8uu2E6G9Of/eE6hP/Ivw3U5jI16ERqZxiKQwk34VJbB0niX9w==}
+ engines: {node: '>= 20.19.4'}
+
+ '@react-native/babel-plugin-codegen@0.81.5':
+ resolution: {integrity: sha512-oF71cIH6je3fSLi6VPjjC3Sgyyn57JLHXs+mHWc9MoCiJJcM4nqsS5J38zv1XQ8d3zOW2JtHro+LF0tagj2bfQ==}
+ engines: {node: '>= 20.19.4'}
+
+ '@react-native/babel-preset@0.81.5':
+ resolution: {integrity: sha512-UoI/x/5tCmi+pZ3c1+Ypr1DaRMDLI3y+Q70pVLLVgrnC3DHsHRIbHcCHIeG/IJvoeFqFM2sTdhSOLJrf8lOPrA==}
+ engines: {node: '>= 20.19.4'}
peerDependencies:
- "@babel/core": "*"
-
- "@react-native/codegen@0.81.5":
- resolution:
- {
- integrity: sha512-a2TDA03Up8lpSa9sh5VRGCQDXgCTOyDOFH+aqyinxp1HChG8uk89/G+nkJ9FPd0rqgi25eCTR16TWdS3b+fA6g==,
- }
- engines: { node: ">= 20.19.4" }
+ '@babel/core': '*'
+
+ '@react-native/codegen@0.81.5':
+ resolution: {integrity: sha512-a2TDA03Up8lpSa9sh5VRGCQDXgCTOyDOFH+aqyinxp1HChG8uk89/G+nkJ9FPd0rqgi25eCTR16TWdS3b+fA6g==}
+ engines: {node: '>= 20.19.4'}
peerDependencies:
- "@babel/core": "*"
-
- "@react-native/community-cli-plugin@0.81.5":
- resolution:
- {
- integrity: sha512-yWRlmEOtcyvSZ4+OvqPabt+NS36vg0K/WADTQLhrYrm9qdZSuXmq8PmdJWz/68wAqKQ+4KTILiq2kjRQwnyhQw==,
- }
- engines: { node: ">= 20.19.4" }
+ '@babel/core': '*'
+
+ '@react-native/community-cli-plugin@0.81.5':
+ resolution: {integrity: sha512-yWRlmEOtcyvSZ4+OvqPabt+NS36vg0K/WADTQLhrYrm9qdZSuXmq8PmdJWz/68wAqKQ+4KTILiq2kjRQwnyhQw==}
+ engines: {node: '>= 20.19.4'}
peerDependencies:
- "@react-native-community/cli": "*"
- "@react-native/metro-config": "*"
+ '@react-native-community/cli': '*'
+ '@react-native/metro-config': '*'
peerDependenciesMeta:
- "@react-native-community/cli":
+ '@react-native-community/cli':
optional: true
- "@react-native/metro-config":
+ '@react-native/metro-config':
optional: true
- "@react-native/debugger-frontend@0.81.5":
- resolution:
- {
- integrity: sha512-bnd9FSdWKx2ncklOetCgrlwqSGhMHP2zOxObJbOWXoj7GHEmih4MKarBo5/a8gX8EfA1EwRATdfNBQ81DY+h+w==,
- }
- engines: { node: ">= 20.19.4" }
-
- "@react-native/dev-middleware@0.81.5":
- resolution:
- {
- integrity: sha512-WfPfZzboYgo/TUtysuD5xyANzzfka8Ebni6RIb2wDxhb56ERi7qDrE4xGhtPsjCL4pQBXSVxyIlCy0d8I6EgGA==,
- }
- engines: { node: ">= 20.19.4" }
-
- "@react-native/gradle-plugin@0.81.5":
- resolution:
- {
- integrity: sha512-hORRlNBj+ReNMLo9jme3yQ6JQf4GZpVEBLxmTXGGlIL78MAezDZr5/uq9dwElSbcGmLEgeiax6e174Fie6qPLg==,
- }
- engines: { node: ">= 20.19.4" }
-
- "@react-native/js-polyfills@0.81.5":
- resolution:
- {
- integrity: sha512-fB7M1CMOCIUudTRuj7kzxIBTVw2KXnsgbQ6+4cbqSxo8NmRRhA0Ul4ZUzZj3rFd3VznTL4Brmocv1oiN0bWZ8w==,
- }
- engines: { node: ">= 20.19.4" }
-
- "@react-native/normalize-colors@0.76.2":
- resolution:
- {
- integrity: sha512-ICoOpaTLPsFQjNLSM00NgQr6wal300cZZonHVSDXKntX+BfkLeuCHRtr/Mn+klTtW+/1v2/2FRm9dXjvyGf9Dw==,
- }
-
- "@react-native/normalize-colors@0.81.5":
- resolution:
- {
- integrity: sha512-0HuJ8YtqlTVRXGZuGeBejLE04wSQsibpTI+RGOyVqxZvgtlLLC/Ssw0UmbHhT4lYMp2fhdtvKZSs5emWB1zR/g==,
- }
-
- "@react-native/virtualized-lists@0.81.5":
- resolution:
- {
- integrity: sha512-UVXgV/db25OPIvwZySeToXD/9sKKhOdkcWmmf4Jh8iBZuyfML+/5CasaZ1E7Lqg6g3uqVQq75NqIwkYmORJMPw==,
- }
- engines: { node: ">= 20.19.4" }
+ '@react-native/debugger-frontend@0.81.5':
+ resolution: {integrity: sha512-bnd9FSdWKx2ncklOetCgrlwqSGhMHP2zOxObJbOWXoj7GHEmih4MKarBo5/a8gX8EfA1EwRATdfNBQ81DY+h+w==}
+ engines: {node: '>= 20.19.4'}
+
+ '@react-native/dev-middleware@0.81.5':
+ resolution: {integrity: sha512-WfPfZzboYgo/TUtysuD5xyANzzfka8Ebni6RIb2wDxhb56ERi7qDrE4xGhtPsjCL4pQBXSVxyIlCy0d8I6EgGA==}
+ engines: {node: '>= 20.19.4'}
+
+ '@react-native/gradle-plugin@0.81.5':
+ resolution: {integrity: sha512-hORRlNBj+ReNMLo9jme3yQ6JQf4GZpVEBLxmTXGGlIL78MAezDZr5/uq9dwElSbcGmLEgeiax6e174Fie6qPLg==}
+ engines: {node: '>= 20.19.4'}
+
+ '@react-native/js-polyfills@0.81.5':
+ resolution: {integrity: sha512-fB7M1CMOCIUudTRuj7kzxIBTVw2KXnsgbQ6+4cbqSxo8NmRRhA0Ul4ZUzZj3rFd3VznTL4Brmocv1oiN0bWZ8w==}
+ engines: {node: '>= 20.19.4'}
+
+ '@react-native/normalize-colors@0.76.2':
+ resolution: {integrity: sha512-ICoOpaTLPsFQjNLSM00NgQr6wal300cZZonHVSDXKntX+BfkLeuCHRtr/Mn+klTtW+/1v2/2FRm9dXjvyGf9Dw==}
+
+ '@react-native/normalize-colors@0.81.5':
+ resolution: {integrity: sha512-0HuJ8YtqlTVRXGZuGeBejLE04wSQsibpTI+RGOyVqxZvgtlLLC/Ssw0UmbHhT4lYMp2fhdtvKZSs5emWB1zR/g==}
+
+ '@react-native/virtualized-lists@0.81.5':
+ resolution: {integrity: sha512-UVXgV/db25OPIvwZySeToXD/9sKKhOdkcWmmf4Jh8iBZuyfML+/5CasaZ1E7Lqg6g3uqVQq75NqIwkYmORJMPw==}
+ engines: {node: '>= 20.19.4'}
peerDependencies:
- "@types/react": ^19.1.0
+ '@types/react': ^19.1.0
react: 19.1.0
- react-native: "*"
+ react-native: '*'
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@react-navigation/bottom-tabs@7.16.2":
- resolution:
- {
- integrity: sha512-Lbp++BGMc7SQXnyKuO/JrQJIhFH0zyB5v4kIEbnzDJLJfgubd5hoSe+QfCqy4YHfLA4phC4Xf/6Q2Ic8x7datQ==,
- }
+ '@react-navigation/bottom-tabs@7.16.2':
+ resolution: {integrity: sha512-Lbp++BGMc7SQXnyKuO/JrQJIhFH0zyB5v4kIEbnzDJLJfgubd5hoSe+QfCqy4YHfLA4phC4Xf/6Q2Ic8x7datQ==}
peerDependencies:
- "@react-navigation/native": ^7.2.5
+ '@react-navigation/native': ^7.2.5
react: 19.1.0
- react-native: "*"
- react-native-safe-area-context: ">= 4.0.0"
- react-native-screens: ">= 4.0.0"
-
- "@react-navigation/core@7.17.5":
- resolution:
- {
- integrity: sha512-6fDCwDTWC7DJn0SDb9DJGRlipaygHIc+2elpZBJI6Crl/2Pu+Z1d6W4jMJ2gZO6iHKf+Pe5sUiQ/uwepGprZtg==,
- }
+ react-native: '*'
+ react-native-safe-area-context: '>= 4.0.0'
+ react-native-screens: '>= 4.0.0'
+
+ '@react-navigation/core@7.17.5':
+ resolution: {integrity: sha512-6fDCwDTWC7DJn0SDb9DJGRlipaygHIc+2elpZBJI6Crl/2Pu+Z1d6W4jMJ2gZO6iHKf+Pe5sUiQ/uwepGprZtg==}
peerDependencies:
react: 19.1.0
- "@react-navigation/elements@2.9.19":
- resolution:
- {
- integrity: sha512-gBUvCZuUkOGw1KpLQEZIkByUz8RYPwXeoA6mZFJy9K1mxd8GdqHDMFCIoB0lfPz9rgrHj99RvtdlGZ/ZzkZv2A==,
- }
+ '@react-navigation/elements@2.9.19':
+ resolution: {integrity: sha512-gBUvCZuUkOGw1KpLQEZIkByUz8RYPwXeoA6mZFJy9K1mxd8GdqHDMFCIoB0lfPz9rgrHj99RvtdlGZ/ZzkZv2A==}
peerDependencies:
- "@react-native-masked-view/masked-view": ">= 0.2.0"
- "@react-navigation/native": ^7.2.5
+ '@react-native-masked-view/masked-view': '>= 0.2.0'
+ '@react-navigation/native': ^7.2.5
react: 19.1.0
- react-native: "*"
- react-native-safe-area-context: ">= 4.0.0"
+ react-native: '*'
+ react-native-safe-area-context: '>= 4.0.0'
peerDependenciesMeta:
- "@react-native-masked-view/masked-view":
+ '@react-native-masked-view/masked-view':
optional: true
- "@react-navigation/native-stack@7.16.0":
- resolution:
- {
- integrity: sha512-wM21rHYR2XifjDnKLrr3HeHUeGsWQZJRwPqEzy1Vp/a9k3ieiwTGpmpDItD/jtERH9qkYESwDPO6oEtrVBEpQg==,
- }
+ '@react-navigation/native-stack@7.16.0':
+ resolution: {integrity: sha512-wM21rHYR2XifjDnKLrr3HeHUeGsWQZJRwPqEzy1Vp/a9k3ieiwTGpmpDItD/jtERH9qkYESwDPO6oEtrVBEpQg==}
peerDependencies:
- "@react-navigation/native": ^7.2.5
+ '@react-navigation/native': ^7.2.5
react: 19.1.0
- react-native: "*"
- react-native-safe-area-context: ">= 4.0.0"
- react-native-screens: ">= 4.0.0"
-
- "@react-navigation/native@7.2.5":
- resolution:
- {
- integrity: sha512-01AAUQiiHQAfTabq+ZyU1/ZWq+AbB/J3v0CB0UTJSON6M6cuadWNsbChzrZUdqQvHrXvg96U5i2PQLJzK3+zpg==,
- }
+ react-native: '*'
+ react-native-safe-area-context: '>= 4.0.0'
+ react-native-screens: '>= 4.0.0'
+
+ '@react-navigation/native@7.2.5':
+ resolution: {integrity: sha512-01AAUQiiHQAfTabq+ZyU1/ZWq+AbB/J3v0CB0UTJSON6M6cuadWNsbChzrZUdqQvHrXvg96U5i2PQLJzK3+zpg==}
peerDependencies:
react: 19.1.0
- react-native: "*"
-
- "@react-navigation/routers@7.5.5":
- resolution:
- {
- integrity: sha512-9/hhMte12Kgu+pMnLfA4EWJ0OQmIEAMVMX06FPH2yGkEQSQ3JhhCN/GkcRikzQhtEi97VYYQA15umptBUShcOQ==,
- }
-
- "@roamhq/wrtc-darwin-arm64@0.10.0":
- resolution:
- {
- integrity: sha512-vFdi79jWuPHcnUcnuOjTvyKtmY/RI2xRQo9Y6RsIjIlYePN/7LTy00c+Ivrz4prYAPbp0oHscl7PDV64VUqGTQ==,
- }
- cpu: [arm64]
- os: [darwin]
-
- "@roamhq/wrtc-darwin-x64@0.10.0":
- resolution:
- {
- integrity: sha512-H6852g2xYCuaR+/TrthpdMafs4bMfAUEpvRDhsIguzrK7Dz+MKpNI8MkwdqJN8W65J+7w7k+YqXIkTHe7Fz/cg==,
- }
- cpu: [x64]
- os: [darwin]
-
- "@roamhq/wrtc-linux-arm64@0.10.0":
- resolution:
- {
- integrity: sha512-fEuJbNjprxQG6QlFd2iqBW9x028RDSho6izVg7gyt8irdPiXWOxzOxNnYMs/B2fohBTd1wD4Qxfivl07/dCR8A==,
- }
- cpu: [arm64]
- os: [linux]
-
- "@roamhq/wrtc-linux-x64@0.10.0":
- resolution:
- {
- integrity: sha512-H32lK2eFg3sVb/9nkHIX5HIisxFoS82Gpesuea+zqAyRpRzSd5NpFXx28bVy9wQyRrNtj8k0bTUgEzWRzSbYCA==,
- }
- cpu: [x64]
- os: [linux]
-
- "@roamhq/wrtc-win32-x64@0.10.0":
- resolution:
- {
- integrity: sha512-wEVXMvLrBizdLyrd+Zc7zb7zpwUuHUBXwrdIvI69e3i/AA8YsVYI2xo/sxk6GoQ+o8a14ONc4SStDS35TCjg+w==,
- }
- cpu: [x64]
- os: [win32]
-
- "@roamhq/wrtc@0.10.0":
- resolution:
- {
- integrity: sha512-yFqQQ0EV1ZUHaphh3tmjoxPi2wzhW2vjmzoAVNRRLUjXYd2e1nvwi9TKfE2w4WNvNws/hBkouvOt23Xo9FkXkQ==,
- }
-
- "@rollup/rollup-android-arm-eabi@4.61.1":
- resolution:
- {
- integrity: sha512-JnBB8MdXj45cajvTuO5FmPlvFVJRQgvrz1uSEl3NwqFnReAPGwb8EanbGi4z2nRaqLzjJSv5/JmycoTKlRZxHA==,
- }
- cpu: [arm]
- os: [android]
-
- "@rollup/rollup-android-arm64@4.61.1":
- resolution:
- {
- integrity: sha512-Jx2g7iSjw4AOT0HDPHM9RV3GNjRXwybWtSFZiZAYUTjUwjVrYIwq3kBf+LnhqJlzXFAqTAh2F7IGI+O568exPw==,
- }
- cpu: [arm64]
- os: [android]
+ react-native: '*'
- "@rollup/rollup-darwin-arm64@4.61.1":
- resolution:
- {
- integrity: sha512-0F1L/Z3Eqv8mT2n3dCpeO8GcTvHvVqkP5/t6DMsn0KzhYVcg+s7Ncl5DS8qjKYEeio6Az0Gt6nyBORay5qIlCA==,
- }
- cpu: [arm64]
- os: [darwin]
+ '@react-navigation/routers@7.5.5':
+ resolution: {integrity: sha512-9/hhMte12Kgu+pMnLfA4EWJ0OQmIEAMVMX06FPH2yGkEQSQ3JhhCN/GkcRikzQhtEi97VYYQA15umptBUShcOQ==}
- "@rollup/rollup-darwin-x64@4.61.1":
- resolution:
- {
- integrity: sha512-qLttcH871ujY4YcVfUSShhOw+CsoTatYz8gRbHO7Bb92QH059/P0y5do1KMs41fY0BpD2x4AJH/gID0zFiqVKQ==,
- }
- cpu: [x64]
- os: [darwin]
+ '@scure/base@1.2.6':
+ resolution: {integrity: sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==}
- "@rollup/rollup-freebsd-arm64@4.61.1":
- resolution:
- {
- integrity: sha512-fUI4RapGE0Oh3mb8mgfvC1O2nU1RpDZUKnDQm3xB1Ipg7C2wTs5Kstz7G2uWK99a8S2yTMq8/P4uycwNa0nJyw==,
- }
- cpu: [arm64]
- os: [freebsd]
+ '@scure/base@2.0.0':
+ resolution: {integrity: sha512-3E1kpuZginKkek01ovG8krQ0Z44E3DHPjc5S2rjJw9lZn3KSQOs8S7wqikF/AH7iRanHypj85uGyxk0XAyC37w==}
- "@rollup/rollup-freebsd-x64@4.61.1":
- resolution:
- {
- integrity: sha512-H5YrdvJaDtI/U9/emrD4b++xkvp3y/JvOe4rizHbxvkyMfRS/CiRYdji+Pl8D0brEaNFWUh1drQxgAGIl6Xudw==,
- }
- cpu: [x64]
- os: [freebsd]
+ '@scure/base@2.2.0':
+ resolution: {integrity: sha512-b8XEupJibegiXV+tDUseI8oLQc8ei3d/4Jkb2RpbHh3MfE054ov3uIz2dhFkB3FI8iwYkEh0gGCApkrYggkPNg==}
- "@rollup/rollup-linux-arm-gnueabihf@4.61.1":
- resolution:
- {
- integrity: sha512-Q8CBCCQtDFrYtXoeUXSrnFXKOnyUhx6bz+SkL6A0E7V8kAiCJ5pamq1WtbfpVGhR5TSpXY6ak3avmDc5fHTyJA==,
- }
- cpu: [arm]
- os: [linux]
+ '@scure/bip39@1.6.0':
+ resolution: {integrity: sha512-+lF0BbLiJNwVlev4eKelw1WWLaiKXw7sSl8T6FvBlWkdX+94aGJ4o8XjUdlyhTCjd8c+B3KT3JfS8P0bLRNU6A==}
- "@rollup/rollup-linux-arm-musleabihf@4.61.1":
- resolution:
- {
- integrity: sha512-nwnhk1581l0FBVellGcVCAT0Oi06onEA3WB53sf01VO3I0UPBkMH9sXONYME2K0ovXcNayJfNtHfm6mpJElatQ==,
- }
- cpu: [arm]
- os: [linux]
+ '@scure/bip39@2.2.0':
+ resolution: {integrity: sha512-T/Bj/YvYMNkIPq6EENO6/rcs2e7qTNuyoUXf0KBFDmp0ZDu0H2X4Lq6yC3i0c8PcWkov5EbW+yQZZbdMmk154A==}
- "@rollup/rollup-linux-arm64-gnu@4.61.1":
- resolution:
- {
- integrity: sha512-x5Xr49hwt3hdW75UOZm3395YwwzPyauktslv29KpWL/T+vVAzoT3azLcTWv0eMciBNrx+DYjH4paehHoLpPvpg==,
- }
- cpu: [arm64]
- os: [linux]
+ '@segment/ajv-human-errors@2.16.0':
+ resolution: {integrity: sha512-cHNfZcbHrmuYOA7/Sn7HlIDHanamiRTZtngfxcAuFaKQjP7cSqsVHjLz38FI2FQ8JDLz3syGLaz10Gn2ddo7+w==}
+ peerDependencies:
+ ajv: ^8.18.0
- "@rollup/rollup-linux-arm64-musl@4.61.1":
- resolution:
- {
- integrity: sha512-unMS3H73DpaoPyyEVPjGKleM/s0mkmsauTENpw4INQY8y4+IuLNjkueQ5QCtC0D3N38Y38yhAU8OoZ20S2Tm6w==,
- }
- cpu: [arm64]
- os: [linux]
+ '@segment/loosely-validate-event@2.0.0':
+ resolution: {integrity: sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==}
- "@rollup/rollup-linux-loong64-gnu@4.61.1":
- resolution:
- {
- integrity: sha512-zNZzGRnAhwjFEYmvphJRV5XaQGjs62cCmeYYHUT//NbvEnHauw+I85nGG+SiVg5ld4GX8D1IbKIX+ozITQnhMQ==,
- }
- cpu: [loong64]
- os: [linux]
+ '@sentry-internal/tracing@7.77.0':
+ resolution: {integrity: sha512-8HRF1rdqWwtINqGEdx8Iqs9UOP/n8E0vXUu3Nmbqj4p5sQPA7vvCfq+4Y4rTqZFc7sNdFpDsRION5iQEh8zfZw==}
+ engines: {node: '>=8'}
- "@rollup/rollup-linux-loong64-musl@4.61.1":
- resolution:
- {
- integrity: sha512-LdpWGL8X209B2SIvWjqlc8VZgM6PKfontSerGepuldQmHYrAOtnMCXeJkxXGbC+PPZVOuu5czJo7fNV6aeW8rQ==,
- }
- cpu: [loong64]
- os: [linux]
+ '@sentry/core@7.77.0':
+ resolution: {integrity: sha512-Tj8oTYFZ/ZD+xW8IGIsU6gcFXD/gfE+FUxUaeSosd9KHwBQNOLhZSsYo/tTVf/rnQI/dQnsd4onPZLiL+27aTg==}
+ engines: {node: '>=8'}
- "@rollup/rollup-linux-ppc64-gnu@4.61.1":
- resolution:
- {
- integrity: sha512-EC5kTtNaNGOmbMGqar8dvJy6y/hg99GAwjfBz++pxZhQATXGcRjd6c5en5wcbru0vkRmiMGsQKdMJOOf6sza4g==,
- }
- cpu: [ppc64]
- os: [linux]
+ '@sentry/node@7.77.0':
+ resolution: {integrity: sha512-Ob5tgaJOj0OYMwnocc6G/CDLWC7hXfVvKX/ofkF98+BbN/tQa5poL+OwgFn9BA8ud8xKzyGPxGU6LdZ8Oh3z/g==}
+ engines: {node: '>=8'}
- "@rollup/rollup-linux-ppc64-musl@4.61.1":
- resolution:
- {
- integrity: sha512-8hiwp6D4acEcNK78I4rP0/XtS1sknWIAMJBPdR4l6zUtyTm5KiTDr5bXmWt4foY7nAN7AThDHgkLIEZOWKbzWw==,
- }
- cpu: [ppc64]
- os: [linux]
+ '@sentry/types@7.77.0':
+ resolution: {integrity: sha512-nfb00XRJVi0QpDHg+JkqrmEBHsqBnxJu191Ded+Cs1OJ5oPXEW6F59LVcBScGvMqe+WEk1a73eH8XezwfgrTsA==}
+ engines: {node: '>=8'}
- "@rollup/rollup-linux-riscv64-gnu@4.61.1":
- resolution:
- {
- integrity: sha512-10dh/h/BqA7DuMPWSxkR8uks18FRwnwOEqr5zOTEl+NOwP/OMzKX8OFR/Of9xxDA7D5qef1Nzar5WDD2kCCr1g==,
- }
- cpu: [riscv64]
- os: [linux]
+ '@sentry/utils@7.77.0':
+ resolution: {integrity: sha512-NmM2kDOqVchrey3N5WSzdQoCsyDkQkiRxExPaNI2oKQ/jMWHs9yt0tSy7otPBcXs0AP59ihl75Bvm1tDRcsp5g==}
+ engines: {node: '>=8'}
- "@rollup/rollup-linux-riscv64-musl@4.61.1":
- resolution:
- {
- integrity: sha512-YKJ5lg35DP17gcAOggnihe+APw9HLyj1Xn7gsmGumBJAUDa6NGXNixJzmkWLhcK9TOuuyQjdamzvJefkO7qHZQ==,
- }
- cpu: [riscv64]
- os: [linux]
+ '@sideway/address@4.1.5':
+ resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==}
- "@rollup/rollup-linux-s390x-gnu@4.61.1":
- resolution:
- {
- integrity: sha512-Mlil5G2Jj6a7B3LWGctg+XPL9vdXYuzCtNXfxOQ0nPjc2m6ueUktocPGH9bnAM0bNRKb/bAWTujUU7IJQdQA+g==,
- }
- cpu: [s390x]
- os: [linux]
+ '@sideway/formula@3.0.1':
+ resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==}
- "@rollup/rollup-linux-x64-gnu@4.61.1":
- resolution:
- {
- integrity: sha512-bVWIOIk6pV01p4CdUbPP7CJ/434z+OooYjDuFcR+44N35YvKUC66G8MGnvcWx5mWKW3g61J+t74l3Kj15Kwn2Q==,
- }
- cpu: [x64]
- os: [linux]
-
- "@rollup/rollup-linux-x64-musl@4.61.1":
- resolution:
- {
- integrity: sha512-qy5pBvZbqNFheBz61R1rzsezjm0J7O2oNGoWtGoY89SZYLUfxAJTBAqDChqAIdB4rCiIbi9nF7yZ83GnNiLwSw==,
- }
- cpu: [x64]
- os: [linux]
+ '@sideway/pinpoint@2.0.0':
+ resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
- "@rollup/rollup-openbsd-x64@4.61.1":
- resolution:
- {
- integrity: sha512-E83TXjI4zm0+5f2qO+UOudaCYIhYwpJ5jq6YCZNIZ+6CbfhKrkAGezeiASBL9ElxAxFsRS9ZhESv8mfnj6TKeg==,
- }
- cpu: [x64]
- os: [openbsd]
+ '@sinclair/typebox@0.27.10':
+ resolution: {integrity: sha512-MTBk/3jGLNB2tVxv6uLlFh1iu64iYOQ2PbdOSK3NW8JZsmlaOh2q6sdtKowBhfw8QFLmYNzTW4/oK4uATIi6ZA==}
- "@rollup/rollup-openharmony-arm64@4.61.1":
- resolution:
- {
- integrity: sha512-fbWnKqVkjrJN38vNe3ahkbk6iejS/3b0Nt7EEtPpE6RBacZcGXNKbzfHN3GUUlXOPghUg0j6XUGrtjX9z1sIvA==,
- }
- cpu: [arm64]
- os: [openharmony]
-
- "@rollup/rollup-win32-arm64-msvc@4.61.1":
- resolution:
- {
- integrity: sha512-ArMl38iVAbk0New1ogihQNY6iphLi4ZaRsa037gUzv5yeKPY8TD3Dmy4x2RNC1VztU/uqm+G+/RwFrSka3Oy2g==,
- }
- cpu: [arm64]
- os: [win32]
-
- "@rollup/rollup-win32-ia32-msvc@4.61.1":
- resolution:
- {
- integrity: sha512-0mYtjHS9ucAbcATycCNK9IGBk/cCe/ma7EmSLGZdsxnOA8cjRIyU04wDpVAD9NiOfLUR9KTxdiO53uOkherqjQ==,
- }
- cpu: [ia32]
- os: [win32]
+ '@sinclair/typebox@0.34.49':
+ resolution: {integrity: sha512-brySQQs7Jtn0joV8Xh9ZV/hZb9Ozb0pmazDIASBkYKCjXrXU3mpcFahmK/z4YDhGkQvP9mWJbVyahdtU5wQA+A==}
- "@rollup/rollup-win32-x64-gnu@4.61.1":
- resolution:
- {
- integrity: sha512-gK1iCEPfpoSG9wfBihXxvBMi8ZfcWffYkEsC/Eih+iFENTaewvNcrEQ69lIOWYO5pePHKLHHO7nq5AILGO/HQQ==,
- }
- cpu: [x64]
- os: [win32]
+ '@sinonjs/commons@3.0.1':
+ resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==}
- "@rollup/rollup-win32-x64-msvc@4.61.1":
- resolution:
- {
- integrity: sha512-X+zaP2x+j4RXGfbp/seSoRHWnPxzApilDszisZxbYH5C/jTxFhCtDNdPGZb9lJyYPs24wGxruPF7Y+sIXt9Gzw==,
- }
- cpu: [x64]
- os: [win32]
+ '@sinonjs/fake-timers@10.3.0':
+ resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
- "@scure/base@1.2.6":
- resolution:
- {
- integrity: sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==,
- }
-
- "@scure/base@2.0.0":
- resolution:
- {
- integrity: sha512-3E1kpuZginKkek01ovG8krQ0Z44E3DHPjc5S2rjJw9lZn3KSQOs8S7wqikF/AH7iRanHypj85uGyxk0XAyC37w==,
- }
-
- "@scure/base@2.2.0":
- resolution:
- {
- integrity: sha512-b8XEupJibegiXV+tDUseI8oLQc8ei3d/4Jkb2RpbHh3MfE054ov3uIz2dhFkB3FI8iwYkEh0gGCApkrYggkPNg==,
- }
-
- "@scure/bip39@1.6.0":
- resolution:
- {
- integrity: sha512-+lF0BbLiJNwVlev4eKelw1WWLaiKXw7sSl8T6FvBlWkdX+94aGJ4o8XjUdlyhTCjd8c+B3KT3JfS8P0bLRNU6A==,
- }
-
- "@scure/bip39@2.2.0":
- resolution:
- {
- integrity: sha512-T/Bj/YvYMNkIPq6EENO6/rcs2e7qTNuyoUXf0KBFDmp0ZDu0H2X4Lq6yC3i0c8PcWkov5EbW+yQZZbdMmk154A==,
- }
-
- "@segment/ajv-human-errors@2.16.0":
- resolution:
- {
- integrity: sha512-cHNfZcbHrmuYOA7/Sn7HlIDHanamiRTZtngfxcAuFaKQjP7cSqsVHjLz38FI2FQ8JDLz3syGLaz10Gn2ddo7+w==,
- }
- peerDependencies:
- ajv: ^8.18.0
+ '@socket.io/component-emitter@3.1.2':
+ resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==}
- "@segment/loosely-validate-event@2.0.0":
- resolution:
- {
- integrity: sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==,
- }
-
- "@sentry-internal/tracing@7.77.0":
- resolution:
- {
- integrity: sha512-8HRF1rdqWwtINqGEdx8Iqs9UOP/n8E0vXUu3Nmbqj4p5sQPA7vvCfq+4Y4rTqZFc7sNdFpDsRION5iQEh8zfZw==,
- }
- engines: { node: ">=8" }
-
- "@sentry/core@7.77.0":
- resolution:
- {
- integrity: sha512-Tj8oTYFZ/ZD+xW8IGIsU6gcFXD/gfE+FUxUaeSosd9KHwBQNOLhZSsYo/tTVf/rnQI/dQnsd4onPZLiL+27aTg==,
- }
- engines: { node: ">=8" }
-
- "@sentry/node@7.77.0":
- resolution:
- {
- integrity: sha512-Ob5tgaJOj0OYMwnocc6G/CDLWC7hXfVvKX/ofkF98+BbN/tQa5poL+OwgFn9BA8ud8xKzyGPxGU6LdZ8Oh3z/g==,
- }
- engines: { node: ">=8" }
-
- "@sentry/types@7.77.0":
- resolution:
- {
- integrity: sha512-nfb00XRJVi0QpDHg+JkqrmEBHsqBnxJu191Ded+Cs1OJ5oPXEW6F59LVcBScGvMqe+WEk1a73eH8XezwfgrTsA==,
- }
- engines: { node: ">=8" }
-
- "@sentry/utils@7.77.0":
- resolution:
- {
- integrity: sha512-NmM2kDOqVchrey3N5WSzdQoCsyDkQkiRxExPaNI2oKQ/jMWHs9yt0tSy7otPBcXs0AP59ihl75Bvm1tDRcsp5g==,
- }
- engines: { node: ">=8" }
-
- "@sideway/address@4.1.5":
- resolution:
- {
- integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==,
- }
-
- "@sideway/formula@3.0.1":
- resolution:
- {
- integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==,
- }
-
- "@sideway/pinpoint@2.0.0":
- resolution:
- {
- integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==,
- }
-
- "@silvia-odwyer/photon-node@0.3.4":
- resolution:
- {
- integrity: sha512-bnly4BKB3KDTFxrUIcgCLbaeVVS8lrAkri1pEzskpmxu9MdfGQTy8b8EgcD83ywD3RPMsIulY8xJH5Awa+t9fA==,
- }
-
- "@sinclair/typebox@0.27.10":
- resolution:
- {
- integrity: sha512-MTBk/3jGLNB2tVxv6uLlFh1iu64iYOQ2PbdOSK3NW8JZsmlaOh2q6sdtKowBhfw8QFLmYNzTW4/oK4uATIi6ZA==,
- }
-
- "@sinclair/typebox@0.32.35":
- resolution:
- {
- integrity: sha512-Ul3YyOTU++to8cgNkttakC0dWvpERr6RYoHO2W47DLbFvrwBDJUY31B1sImH6JZSYc4Kt4PyHtoPNu+vL2r2dA==,
- }
-
- "@sinclair/typebox@0.34.49":
- resolution:
- {
- integrity: sha512-brySQQs7Jtn0joV8Xh9ZV/hZb9Ozb0pmazDIASBkYKCjXrXU3mpcFahmK/z4YDhGkQvP9mWJbVyahdtU5wQA+A==,
- }
-
- "@sinonjs/commons@3.0.1":
- resolution:
- {
- integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==,
- }
-
- "@sinonjs/fake-timers@10.3.0":
- resolution:
- {
- integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==,
- }
-
- "@socket.io/component-emitter@3.1.2":
- resolution:
- {
- integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==,
- }
-
- "@stablelib/base64@1.0.1":
- resolution:
- {
- integrity: sha512-1bnPQqSxSuc3Ii6MhBysoWCg58j97aUjuCSZrGSmDxNqtytIi0k8utUenAwTZN4V5mXXYGsVUI9zeBqy+jBOSQ==,
- }
-
- "@tanstack/react-store@0.9.1":
- resolution:
- {
- integrity: sha512-YzJLnRvy5lIEFTLWBAZmcOjK3+2AepnBv/sr6NZmiqJvq7zTQggyK99Gw8fqYdMdHPQWXjz0epFKJXC+9V2xDA==,
- }
+ '@tanstack/react-store@0.9.1':
+ resolution: {integrity: sha512-YzJLnRvy5lIEFTLWBAZmcOjK3+2AepnBv/sr6NZmiqJvq7zTQggyK99Gw8fqYdMdHPQWXjz0epFKJXC+9V2xDA==}
peerDependencies:
react: 19.1.0
react-dom: 19.1.0
- "@tanstack/store@0.9.3":
- resolution:
- {
- integrity: sha512-8reSzl/qGWGGVKhBoxXPMWzATSbZLZFWhwBAFO9NAyp0TxzfBP0mIrGb8CP8KrQTmvzXlR/vFPPUrHTLBGyFyw==,
- }
-
- "@testing-library/jest-native@5.4.3":
- resolution:
- {
- integrity: sha512-/sSDGaOuE+PJ1Z9Kp4u7PQScSVVXGud59I/qsBFFJvIbcn4P6yYw6cBnBmbPF+X9aRIsTJRDl6gzw5ZkJNm66w==,
- }
+ '@tanstack/store@0.9.3':
+ resolution: {integrity: sha512-8reSzl/qGWGGVKhBoxXPMWzATSbZLZFWhwBAFO9NAyp0TxzfBP0mIrGb8CP8KrQTmvzXlR/vFPPUrHTLBGyFyw==}
+
+ '@testing-library/jest-native@5.4.3':
+ resolution: {integrity: sha512-/sSDGaOuE+PJ1Z9Kp4u7PQScSVVXGud59I/qsBFFJvIbcn4P6yYw6cBnBmbPF+X9aRIsTJRDl6gzw5ZkJNm66w==}
deprecated: |-
DEPRECATED: This package is no longer maintained.
Please use the built-in Jest matchers available in @testing-library/react-native v12.4+.
@@ -4095,404 +2015,165 @@ packages:
See migration guide: https://callstack.github.io/react-native-testing-library/docs/migration/jest-matchers
peerDependencies:
react: 19.1.0
- react-native: ">=0.59"
+ react-native: '>=0.59'
react-test-renderer: 19.1.0
- "@testing-library/react-native@13.3.3":
- resolution:
- {
- integrity: sha512-k6Mjsd9dbZgvY4Bl7P1NIpePQNi+dfYtlJ5voi9KQlynxSyQkfOgJmYGCYmw/aSgH/rUcFvG8u5gd4npzgRDyg==,
- }
- engines: { node: ">=18" }
+ '@testing-library/react-native@13.3.3':
+ resolution: {integrity: sha512-k6Mjsd9dbZgvY4Bl7P1NIpePQNi+dfYtlJ5voi9KQlynxSyQkfOgJmYGCYmw/aSgH/rUcFvG8u5gd4npzgRDyg==}
+ engines: {node: '>=18'}
peerDependencies:
- jest: ">=29.0.0"
+ jest: '>=29.0.0'
react: 19.1.0
- react-native: ">=0.71"
+ react-native: '>=0.71'
react-test-renderer: 19.1.0
peerDependenciesMeta:
jest:
optional: true
- "@tokenizer/inflate@0.4.1":
- resolution:
- {
- integrity: sha512-2mAv+8pkG6GIZiF1kNg1jAjh27IDxEPKwdGul3snfztFerfPGI1LjDezZp3i7BElXompqEtPmoPx6c2wgtWsOA==,
- }
- engines: { node: ">=18" }
-
- "@tokenizer/token@0.3.0":
- resolution:
- {
- integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==,
- }
-
- "@tootallnate/once@2.0.1":
- resolution:
- {
- integrity: sha512-HqmEUIGRJ5fSXchkVgR5F7qn48bDBzv0kWj/Kfu5e6uci4UlEeng4331LnBkWffb++Ei3FOVLxo8JJWMFBDMeQ==,
- }
- engines: { node: ">= 10" }
-
- "@tsconfig/node10@1.0.12":
- resolution:
- {
- integrity: sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==,
- }
-
- "@tsconfig/node12@1.0.11":
- resolution:
- {
- integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==,
- }
-
- "@tsconfig/node14@1.0.3":
- resolution:
- {
- integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==,
- }
-
- "@tsconfig/node16@1.0.4":
- resolution:
- {
- integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==,
- }
-
- "@types/babel__core@7.20.5":
- resolution:
- {
- integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==,
- }
-
- "@types/babel__generator@7.27.0":
- resolution:
- {
- integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==,
- }
-
- "@types/babel__template@7.4.4":
- resolution:
- {
- integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==,
- }
-
- "@types/babel__traverse@7.28.0":
- resolution:
- {
- integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==,
- }
-
- "@types/base16@1.0.5":
- resolution:
- {
- integrity: sha512-OzOWrTluG9cwqidEzC/Q6FAmIPcnZfm8BFRlIx0+UIUqnuAmi5OS88O0RpT3Yz6qdmqObvUhasrbNsCofE4W9A==,
- }
-
- "@types/bunyan@1.8.11":
- resolution:
- {
- integrity: sha512-758fRH7umIMk5qt5ELmRMff4mLDlN+xyYzC+dkPTdKwbSkJFvz6xwyScrytPU0QIBbRRwbiE8/BIg8bpajerNQ==,
- }
-
- "@types/chai@5.2.3":
- resolution:
- {
- integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==,
- }
-
- "@types/cli-progress@3.11.6":
- resolution:
- {
- integrity: sha512-cE3+jb9WRlu+uOSAugewNpITJDt1VF8dHOopPO4IABFc3SXYL5WE/+PTz/FCdZRRfIujiWW3n3aMbv1eIGVRWA==,
- }
-
- "@types/deep-eql@4.0.2":
- resolution:
- {
- integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==,
- }
-
- "@types/estree@1.0.9":
- resolution:
- {
- integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==,
- }
-
- "@types/graceful-fs@4.1.9":
- resolution:
- {
- integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==,
- }
-
- "@types/hammerjs@2.0.46":
- resolution:
- {
- integrity: sha512-ynRvcq6wvqexJ9brDMS4BnBLzmr0e14d6ZJTEShTBWKymQiHwlAyGu0ZPEFI2Fh1U53F7tN9ufClWM5KvqkKOw==,
- }
-
- "@types/istanbul-lib-coverage@2.0.6":
- resolution:
- {
- integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==,
- }
-
- "@types/istanbul-lib-report@3.0.3":
- resolution:
- {
- integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==,
- }
-
- "@types/istanbul-reports@3.0.4":
- resolution:
- {
- integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==,
- }
-
- "@types/jest@30.0.0":
- resolution:
- {
- integrity: sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA==,
- }
-
- "@types/jsdom@20.0.1":
- resolution:
- {
- integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==,
- }
-
- "@types/lodash@4.17.24":
- resolution:
- {
- integrity: sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==,
- }
-
- "@types/node@22.19.19":
- resolution:
- {
- integrity: sha512-dyh/xO2Fh5bYrfWaaqGrRQQGkNdmYw6AmaAUvYeUMNTWQtvb796ikLdmTchRmOlOiIJ1TDXfWgVx1QkUlQ6Hew==,
- }
-
- "@types/qrcode-terminal@0.12.2":
- resolution:
- {
- integrity: sha512-v+RcIEJ+Uhd6ygSQ0u5YYY7ZM+la7GgPbs0V/7l/kFs2uO4S8BcIUEMoP7za4DNIqNnUD5npf0A/7kBhrCKG5Q==,
- }
-
- "@types/react@19.1.17":
- resolution:
- {
- integrity: sha512-Qec1E3mhALmaspIrhWt9jkQMNdw6bReVu64mjvhbhq2NFPftLPVr+l1SZgmw/66WwBNpDh7ao5AT6gF5v41PFA==,
- }
-
- "@types/retry@0.12.0":
- resolution:
- {
- integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==,
- }
-
- "@types/stack-utils@2.0.3":
- resolution:
- {
- integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==,
- }
-
- "@types/tough-cookie@4.0.5":
- resolution:
- {
- integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==,
- }
-
- "@types/yargs-parser@21.0.3":
- resolution:
- {
- integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==,
- }
-
- "@types/yargs@17.0.35":
- resolution:
- {
- integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==,
- }
-
- "@ungap/structured-clone@1.3.1":
- resolution:
- {
- integrity: sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ==,
- }
-
- "@urql/core@4.0.11":
- resolution:
- {
- integrity: sha512-FFdY97vF5xnUrElcGw9erOLvtu+KGMLfwrLNDfv4IPgdp2IBsiGe+Kb7Aypfd3kH//BETewVSLm3+y2sSzjX6A==,
- }
-
- "@urql/core@5.2.0":
- resolution:
- {
- integrity: sha512-/n0ieD0mvvDnVAXEQgX/7qJiVcvYvNkOHeBvkwtylfjydar123caCXcl58PXFY11oU1oquJocVXHxLAbtv4x1A==,
- }
-
- "@urql/exchange-retry@1.2.0":
- resolution:
- {
- integrity: sha512-1O/biKiVhhn0EtvDF4UOvz325K4RrLupfL8rHcmqD2TBLv4qVDWQuzx4JGa1FfqjjRb+C9TNZ6w19f32Mq85Ug==,
- }
-
- "@urql/exchange-retry@1.3.2":
- resolution:
- {
- integrity: sha512-TQMCz2pFJMfpNxmSfX1VSfTjwUIFx/mL+p1bnfM1xjjdla7Z+KnGMW/EhFbpckp3LyWAH4PgOsMwOMnIN+MBFg==,
- }
- peerDependencies:
- "@urql/core": ^5.0.0
-
- "@vitest/expect@3.2.6":
- resolution:
- {
- integrity: sha512-1+7q9BtaKzEmO+fmNT3kYvoNn5Y71XWAx2Q5HRim4tTVRQVRv4uJFAQ5FbK0OPUeNP/WmVCpxYxoJdvuHVjzBQ==,
- }
-
- "@vitest/mocker@3.2.6":
- resolution:
- {
- integrity: sha512-EZOrpDbkKotFAP7wPAQV1UIyoGOk4oX7ynWhBhLB7v+meMHbQhU16oPpIYGTTe4oFlhpryGpgpcZP/sin3hYuw==,
- }
+ '@tootallnate/once@2.0.1':
+ resolution: {integrity: sha512-HqmEUIGRJ5fSXchkVgR5F7qn48bDBzv0kWj/Kfu5e6uci4UlEeng4331LnBkWffb++Ei3FOVLxo8JJWMFBDMeQ==}
+ engines: {node: '>= 10'}
+
+ '@tsconfig/node10@1.0.12':
+ resolution: {integrity: sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==}
+
+ '@tsconfig/node12@1.0.11':
+ resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
+
+ '@tsconfig/node14@1.0.3':
+ resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
+
+ '@tsconfig/node16@1.0.4':
+ resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
+
+ '@types/babel__core@7.20.5':
+ resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
+
+ '@types/babel__generator@7.27.0':
+ resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
+
+ '@types/babel__template@7.4.4':
+ resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
+
+ '@types/babel__traverse@7.28.0':
+ resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
+
+ '@types/base16@1.0.5':
+ resolution: {integrity: sha512-OzOWrTluG9cwqidEzC/Q6FAmIPcnZfm8BFRlIx0+UIUqnuAmi5OS88O0RpT3Yz6qdmqObvUhasrbNsCofE4W9A==}
+
+ '@types/bunyan@1.8.11':
+ resolution: {integrity: sha512-758fRH7umIMk5qt5ELmRMff4mLDlN+xyYzC+dkPTdKwbSkJFvz6xwyScrytPU0QIBbRRwbiE8/BIg8bpajerNQ==}
+
+ '@types/cli-progress@3.11.6':
+ resolution: {integrity: sha512-cE3+jb9WRlu+uOSAugewNpITJDt1VF8dHOopPO4IABFc3SXYL5WE/+PTz/FCdZRRfIujiWW3n3aMbv1eIGVRWA==}
+
+ '@types/graceful-fs@4.1.9':
+ resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
+
+ '@types/hammerjs@2.0.46':
+ resolution: {integrity: sha512-ynRvcq6wvqexJ9brDMS4BnBLzmr0e14d6ZJTEShTBWKymQiHwlAyGu0ZPEFI2Fh1U53F7tN9ufClWM5KvqkKOw==}
+
+ '@types/istanbul-lib-coverage@2.0.6':
+ resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
+
+ '@types/istanbul-lib-report@3.0.3':
+ resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
+
+ '@types/istanbul-reports@3.0.4':
+ resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
+
+ '@types/jest@30.0.0':
+ resolution: {integrity: sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA==}
+
+ '@types/jsdom@20.0.1':
+ resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==}
+
+ '@types/lodash@4.17.24':
+ resolution: {integrity: sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==}
+
+ '@types/node@22.19.19':
+ resolution: {integrity: sha512-dyh/xO2Fh5bYrfWaaqGrRQQGkNdmYw6AmaAUvYeUMNTWQtvb796ikLdmTchRmOlOiIJ1TDXfWgVx1QkUlQ6Hew==}
+
+ '@types/react@19.1.17':
+ resolution: {integrity: sha512-Qec1E3mhALmaspIrhWt9jkQMNdw6bReVu64mjvhbhq2NFPftLPVr+l1SZgmw/66WwBNpDh7ao5AT6gF5v41PFA==}
+
+ '@types/stack-utils@2.0.3':
+ resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
+
+ '@types/tough-cookie@4.0.5':
+ resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==}
+
+ '@types/yargs-parser@21.0.3':
+ resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
+
+ '@types/yargs@17.0.35':
+ resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==}
+
+ '@ungap/structured-clone@1.3.1':
+ resolution: {integrity: sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ==}
+
+ '@urql/core@4.0.11':
+ resolution: {integrity: sha512-FFdY97vF5xnUrElcGw9erOLvtu+KGMLfwrLNDfv4IPgdp2IBsiGe+Kb7Aypfd3kH//BETewVSLm3+y2sSzjX6A==}
+
+ '@urql/core@5.2.0':
+ resolution: {integrity: sha512-/n0ieD0mvvDnVAXEQgX/7qJiVcvYvNkOHeBvkwtylfjydar123caCXcl58PXFY11oU1oquJocVXHxLAbtv4x1A==}
+
+ '@urql/exchange-retry@1.2.0':
+ resolution: {integrity: sha512-1O/biKiVhhn0EtvDF4UOvz325K4RrLupfL8rHcmqD2TBLv4qVDWQuzx4JGa1FfqjjRb+C9TNZ6w19f32Mq85Ug==}
+
+ '@urql/exchange-retry@1.3.2':
+ resolution: {integrity: sha512-TQMCz2pFJMfpNxmSfX1VSfTjwUIFx/mL+p1bnfM1xjjdla7Z+KnGMW/EhFbpckp3LyWAH4PgOsMwOMnIN+MBFg==}
peerDependencies:
- msw: ^2.4.9
- vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0
- peerDependenciesMeta:
- msw:
- optional: true
- vite:
- optional: true
+ '@urql/core': ^5.0.0
- "@vitest/pretty-format@3.2.6":
- resolution:
- {
- integrity: sha512-lb7XXXzmm2h2ASzFnRvQpDo6onT1NmMJA3tkGTWiBFtRJ9lxGY3d3mm/Apt36gej2bkkOVLL/yTOtufDaFa/jA==,
- }
-
- "@vitest/runner@3.2.6":
- resolution:
- {
- integrity: sha512-HYcoSj1w5tcgUnzoF0HcyaAQjpA1gj9ftUJ7iSJSuipc02jW9gKkigwZbjFldAfYHA1fa8UZVRftdMY5msWM9Q==,
- }
-
- "@vitest/snapshot@3.2.6":
- resolution:
- {
- integrity: sha512-H+ZjNTWGpObenh0YnlBctAPnJSI20P81PL8BPzWpx54YXLLTm8hEsWawtcYLMrwvpK48hGxLLbCS+1KRXhsKhw==,
- }
-
- "@vitest/spy@3.2.6":
- resolution:
- {
- integrity: sha512-oq6BbH68WzcWmwtBrU9nqLeaXTR4XwJF7FSLkKEZo4i6eoXcrxjcwSuTvWBIRUTC6VC72nXYunzqgZA+IKdtxg==,
- }
-
- "@vitest/utils@3.2.6":
- resolution:
- {
- integrity: sha512-lI23nIs4bnT3T8NIoh+vFaz5s2/DdP0Jgt2jxwgWljvwn82cLJtyi/If+fjFyoLMGIOz0U/fKvWE0d4jsNQEfg==,
- }
-
- "@xmldom/xmldom@0.9.10":
- resolution:
- {
- integrity: sha512-A9gOqLdi6cV4ibazAjcQufGj0B1y/vDqYrcuP6d/6x8P27gRS8643Dj9o1dEKtB6O7fwxb2FgBmJS2mX7gpvdw==,
- }
- engines: { node: ">=14.6" }
-
- "@yarnpkg/lockfile@1.1.0":
- resolution:
- {
- integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==,
- }
+ '@xmldom/xmldom@0.8.13':
+ resolution: {integrity: sha512-KRYzxepc14G/CEpEGc3Yn+JKaAeT63smlDr+vjB8jRfgTBBI9wRj/nkQEO+ucV8p8I9bfKLWp37uHgFrbntPvw==}
+ engines: {node: '>=10.0.0'}
+
+ '@yarnpkg/lockfile@1.1.0':
+ resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==}
abab@2.0.6:
- resolution:
- {
- integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==,
- }
+ resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
deprecated: Use your platform's native atob() and btoa() methods instead
abbrev@1.1.1:
- resolution:
- {
- integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==,
- }
+ resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
abort-controller@3.0.0:
- resolution:
- {
- integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==,
- }
- engines: { node: ">=6.5" }
+ resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
+ engines: {node: '>=6.5'}
accepts@1.3.8:
- resolution:
- {
- integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
+ engines: {node: '>= 0.6'}
accepts@2.0.0:
- resolution:
- {
- integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==}
+ engines: {node: '>= 0.6'}
acorn-globals@7.0.1:
- resolution:
- {
- integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==,
- }
+ resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==}
acorn-walk@8.3.5:
- resolution:
- {
- integrity: sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==}
+ engines: {node: '>=0.4.0'}
acorn@8.16.0:
- resolution:
- {
- integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
+ engines: {node: '>=0.4.0'}
hasBin: true
agent-base@6.0.2:
- resolution:
- {
- integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==,
- }
- engines: { node: ">= 6.0.0" }
+ resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
+ engines: {node: '>= 6.0.0'}
agent-base@7.1.4:
- resolution:
- {
- integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==,
- }
- engines: { node: ">= 14" }
+ resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
+ engines: {node: '>= 14'}
ajv-formats@2.1.1:
- resolution:
- {
- integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==,
- }
- peerDependencies:
- ajv: ^8.18.0
- peerDependenciesMeta:
- ajv:
- optional: true
-
- ajv-formats@3.0.1:
- resolution:
- {
- integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==,
- }
+ resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
peerDependencies:
ajv: ^8.18.0
peerDependenciesMeta:
@@ -4500,1968 +2181,967 @@ packages:
optional: true
ajv@8.20.0:
- resolution:
- {
- integrity: sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==,
- }
+ resolution: {integrity: sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==}
algo-msgpack-with-bigint@2.1.1:
- resolution:
- {
- integrity: sha512-F1tGh056XczEaEAqu7s+hlZUDWwOBT70Eq0lfMpBP2YguSQVyxRbprLq5rELXKQOyOaixTWYhMeMQMzP0U5FoQ==,
- }
- engines: { node: ">= 10" }
+ resolution: {integrity: sha512-F1tGh056XczEaEAqu7s+hlZUDWwOBT70Eq0lfMpBP2YguSQVyxRbprLq5rELXKQOyOaixTWYhMeMQMzP0U5FoQ==}
+ engines: {node: '>= 10'}
algorand-msgpack@1.1.0:
- resolution:
- {
- integrity: sha512-08k7pBQnkaUB5p+jL7f1TRaUIlTSDE0cesFu1mD7llLao+1cAhtvvZmGE3OnisTd0xOn118QMw74SRqddqaYvw==,
- }
- engines: { node: ">= 14" }
+ resolution: {integrity: sha512-08k7pBQnkaUB5p+jL7f1TRaUIlTSDE0cesFu1mD7llLao+1cAhtvvZmGE3OnisTd0xOn118QMw74SRqddqaYvw==}
+ engines: {node: '>= 14'}
anser@1.4.10:
- resolution:
- {
- integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==,
- }
+ resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==}
ansi-escapes@4.3.2:
- resolution:
- {
- integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
+ engines: {node: '>=8'}
ansi-escapes@6.2.1:
- resolution:
- {
- integrity: sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig==,
- }
- engines: { node: ">=14.16" }
+ resolution: {integrity: sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig==}
+ engines: {node: '>=14.16'}
ansi-regex@4.1.1:
- resolution:
- {
- integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==}
+ engines: {node: '>=6'}
ansi-regex@5.0.1:
- resolution:
- {
- integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
+ engines: {node: '>=8'}
ansi-regex@6.2.2:
- resolution:
- {
- integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
+ engines: {node: '>=12'}
ansi-styles@3.2.1:
- resolution:
- {
- integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
+ engines: {node: '>=4'}
ansi-styles@4.3.0:
- resolution:
- {
- integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
+ engines: {node: '>=8'}
ansi-styles@5.2.0:
- resolution:
- {
- integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
+ engines: {node: '>=10'}
ansi-styles@6.2.3:
- resolution:
- {
- integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
+ engines: {node: '>=12'}
ansicolors@0.3.2:
- resolution:
- {
- integrity: sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==,
- }
+ resolution: {integrity: sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==}
ansis@3.17.0:
- resolution:
- {
- integrity: sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg==}
+ engines: {node: '>=14'}
any-promise@1.3.0:
- resolution:
- {
- integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==,
- }
+ resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
anymatch@3.1.3:
- resolution:
- {
- integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
+ engines: {node: '>= 8'}
aproba@2.1.0:
- resolution:
- {
- integrity: sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew==,
- }
+ resolution: {integrity: sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew==}
are-we-there-yet@2.0.0:
- resolution:
- {
- integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==}
+ engines: {node: '>=10'}
deprecated: This package is no longer supported.
arg@4.1.0:
- resolution:
- {
- integrity: sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg==,
- }
+ resolution: {integrity: sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg==}
arg@4.1.3:
- resolution:
- {
- integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==,
- }
+ resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
arg@5.0.2:
- resolution:
- {
- integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==,
- }
+ resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
argparse@1.0.10:
- resolution:
- {
- integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==,
- }
+ resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
argparse@2.0.1:
- resolution:
- {
- integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==,
- }
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
aria-hidden@1.2.6:
- resolution:
- {
- integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==}
+ engines: {node: '>=10'}
array-union@2.1.0:
- resolution:
- {
- integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
+ engines: {node: '>=8'}
asap@2.0.6:
- resolution:
- {
- integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==,
- }
-
- asn1.js@5.4.1:
- resolution:
- {
- integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==,
- }
+ resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
asn1@0.2.6:
- resolution:
- {
- integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==,
- }
-
- assertion-error@2.0.1:
- resolution:
- {
- integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==}
astral-regex@2.0.0:
- resolution:
- {
- integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
+ engines: {node: '>=8'}
async-limiter@1.0.1:
- resolution:
- {
- integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==,
- }
+ resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
async@3.2.6:
- resolution:
- {
- integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==,
- }
+ resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
asynckit@0.4.0:
- resolution:
- {
- integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==,
- }
+ resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
at-least-node@1.0.0:
- resolution:
- {
- integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==,
- }
- engines: { node: ">= 4.0.0" }
+ resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
+ engines: {node: '>= 4.0.0'}
available-typed-arrays@1.0.7:
- resolution:
- {
- integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
+ engines: {node: '>= 0.4'}
b4a@1.8.1:
- resolution:
- {
- integrity: sha512-aiqre1Nr0B/6DgE2N5vwTc+2/oQZ4Wh1t4NznYY4E00y8LCt6NqdRv81so00oo27D8MVKTpUa/MwUUtBLXCoDw==,
- }
+ resolution: {integrity: sha512-aiqre1Nr0B/6DgE2N5vwTc+2/oQZ4Wh1t4NznYY4E00y8LCt6NqdRv81so00oo27D8MVKTpUa/MwUUtBLXCoDw==}
peerDependencies:
- react-native-b4a: "*"
+ react-native-b4a: '*'
peerDependenciesMeta:
react-native-b4a:
optional: true
babel-jest@29.7.0:
- resolution:
- {
- integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
- "@babel/core": ^7.8.0
+ '@babel/core': ^7.8.0
babel-plugin-istanbul@6.1.1:
- resolution:
- {
- integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
+ engines: {node: '>=8'}
babel-plugin-jest-hoist@29.6.3:
- resolution:
- {
- integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
babel-plugin-polyfill-corejs2@0.4.17:
- resolution:
- {
- integrity: sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==,
- }
+ resolution: {integrity: sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==}
peerDependencies:
- "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
babel-plugin-polyfill-corejs3@0.13.0:
- resolution:
- {
- integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==,
- }
+ resolution: {integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==}
peerDependencies:
- "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
babel-plugin-polyfill-regenerator@0.6.8:
- resolution:
- {
- integrity: sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==,
- }
+ resolution: {integrity: sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==}
peerDependencies:
- "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
babel-plugin-react-compiler@1.0.0:
- resolution:
- {
- integrity: sha512-Ixm8tFfoKKIPYdCCKYTsqv+Fd4IJ0DQqMyEimo+pxUOMUR9cVPlwTrFt9Avu+3cb6Zp3mAzl+t1MrG2fxxKsxw==,
- }
+ resolution: {integrity: sha512-Ixm8tFfoKKIPYdCCKYTsqv+Fd4IJ0DQqMyEimo+pxUOMUR9cVPlwTrFt9Avu+3cb6Zp3mAzl+t1MrG2fxxKsxw==}
babel-plugin-react-native-web@0.21.2:
- resolution:
- {
- integrity: sha512-SPD0J6qjJn8231i0HZhlAGH6NORe+QvRSQM2mwQEzJ2Fb3E4ruWTiiicPlHjmeWShDXLcvoorOCXjeR7k/lyWA==,
- }
+ resolution: {integrity: sha512-SPD0J6qjJn8231i0HZhlAGH6NORe+QvRSQM2mwQEzJ2Fb3E4ruWTiiicPlHjmeWShDXLcvoorOCXjeR7k/lyWA==}
babel-plugin-syntax-hermes-parser@0.29.1:
- resolution:
- {
- integrity: sha512-2WFYnoWGdmih1I1J5eIqxATOeycOqRwYxAQBu3cUu/rhwInwHUg7k60AFNbuGjSDL8tje5GDrAnxzRLcu2pYcA==,
- }
+ resolution: {integrity: sha512-2WFYnoWGdmih1I1J5eIqxATOeycOqRwYxAQBu3cUu/rhwInwHUg7k60AFNbuGjSDL8tje5GDrAnxzRLcu2pYcA==}
babel-plugin-transform-flow-enums@0.0.2:
- resolution:
- {
- integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==,
- }
+ resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==}
babel-preset-current-node-syntax@1.2.0:
- resolution:
- {
- integrity: sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==,
- }
+ resolution: {integrity: sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==}
peerDependencies:
- "@babel/core": ^7.0.0 || ^8.0.0-0
+ '@babel/core': ^7.0.0 || ^8.0.0-0
babel-preset-expo@54.0.11:
- resolution:
- {
- integrity: sha512-dEpeFDtYEFzmWtWVwvt7sUCZH0fxXPfbJlgXd7XNZSQDa/Ki/hTOj9exMTzqR2oyPHDNcE9VxYCJ4oS6xw4Pjg==,
- }
+ resolution: {integrity: sha512-dEpeFDtYEFzmWtWVwvt7sUCZH0fxXPfbJlgXd7XNZSQDa/Ki/hTOj9exMTzqR2oyPHDNcE9VxYCJ4oS6xw4Pjg==}
peerDependencies:
- "@babel/runtime": ^7.20.0
- expo: "*"
- react-refresh: ">=0.14.0 <1.0.0"
+ '@babel/runtime': ^7.20.0
+ expo: '*'
+ react-refresh: '>=0.14.0 <1.0.0'
peerDependenciesMeta:
- "@babel/runtime":
+ '@babel/runtime':
optional: true
expo:
optional: true
babel-preset-jest@29.6.3:
- resolution:
- {
- integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
- "@babel/core": ^7.0.0
+ '@babel/core': ^7.0.0
balanced-match@1.0.2:
- resolution:
- {
- integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==,
- }
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
bare-events@2.8.3:
- resolution:
- {
- integrity: sha512-HdUm8EMQBLaJvGUdidNNbqpA1kYkwNcb+MYxkxCLAPJGQzlv9J0C24h8V65Z4c5GLd/JEALDvpFCQgpLJqc0zw==,
- }
+ resolution: {integrity: sha512-HdUm8EMQBLaJvGUdidNNbqpA1kYkwNcb+MYxkxCLAPJGQzlv9J0C24h8V65Z4c5GLd/JEALDvpFCQgpLJqc0zw==}
peerDependencies:
- bare-abort-controller: "*"
+ bare-abort-controller: '*'
peerDependenciesMeta:
bare-abort-controller:
optional: true
base16@1.0.0:
- resolution:
- {
- integrity: sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==,
- }
+ resolution: {integrity: sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==}
base64-js@1.5.1:
- resolution:
- {
- integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==,
- }
+ resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
baseline-browser-mapping@2.10.32:
- resolution:
- {
- integrity: sha512-wbPvpyjJPC0zdfdKXxqEL3Ea+bOMD/87X4lftiJkkaBiuG6ALQy1SLmEd7BSmVCuwCQsBrCamgBoLyfFDD1EPg==,
- }
- engines: { node: ">=6.0.0" }
+ resolution: {integrity: sha512-wbPvpyjJPC0zdfdKXxqEL3Ea+bOMD/87X4lftiJkkaBiuG6ALQy1SLmEd7BSmVCuwCQsBrCamgBoLyfFDD1EPg==}
+ engines: {node: '>=6.0.0'}
hasBin: true
before-after-hook@4.0.0:
- resolution:
- {
- integrity: sha512-q6tR3RPqIB1pMiTRMFcZwuG5T8vwp+vUvEG0vuI6B+Rikh5BfPp2fQ82c925FOs+b0lcFQ8CFrL+KbilfZFhOQ==,
- }
+ resolution: {integrity: sha512-q6tR3RPqIB1pMiTRMFcZwuG5T8vwp+vUvEG0vuI6B+Rikh5BfPp2fQ82c925FOs+b0lcFQ8CFrL+KbilfZFhOQ==}
better-opn@3.0.2:
- resolution:
- {
- integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==,
- }
- engines: { node: ">=12.0.0" }
+ resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==}
+ engines: {node: '>=12.0.0'}
big-integer@1.6.52:
- resolution:
- {
- integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==,
- }
- engines: { node: ">=0.6" }
+ resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
+ engines: {node: '>=0.6'}
bignumber.js@9.3.1:
- resolution:
- {
- integrity: sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==,
- }
-
- bl@4.1.0:
- resolution:
- {
- integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==,
- }
-
- bn.js@4.12.3:
- resolution:
- {
- integrity: sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==,
- }
+ resolution: {integrity: sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==}
bn.js@5.2.3:
- resolution:
- {
- integrity: sha512-EAcmnPkxpntVL+DS7bO1zhcZNvCkxqtkd0ZY53h06GNQ3DEkkGZ/gKgmDv6DdZQGj9BgfSPKtJJ7Dp1GPP8f7w==,
- }
-
- body-parser@2.2.2:
- resolution:
- {
- integrity: sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==,
- }
- engines: { node: ">=18" }
-
- boolbase@1.0.0:
- resolution:
- {
- integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==,
- }
-
- bottleneck@2.19.5:
- resolution:
- {
- integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==,
- }
+ resolution: {integrity: sha512-EAcmnPkxpntVL+DS7bO1zhcZNvCkxqtkd0ZY53h06GNQ3DEkkGZ/gKgmDv6DdZQGj9BgfSPKtJJ7Dp1GPP8f7w==}
bplist-creator@0.1.0:
- resolution:
- {
- integrity: sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==,
- }
+ resolution: {integrity: sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==}
bplist-parser@0.3.1:
- resolution:
- {
- integrity: sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==,
- }
- engines: { node: ">= 5.10.0" }
+ resolution: {integrity: sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==}
+ engines: {node: '>= 5.10.0'}
bplist-parser@0.3.2:
- resolution:
- {
- integrity: sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==,
- }
- engines: { node: ">= 5.10.0" }
+ resolution: {integrity: sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==}
+ engines: {node: '>= 5.10.0'}
brace-expansion@2.1.1:
- resolution:
- {
- integrity: sha512-WR1cURNjuvBLMZBMbqM0UoE+WAfdUcEV1ccD8PVBVOI+Z3ND4+SZbN8RsfT2bMuG1qwz5RFvPukSZm5fF2D5eA==,
- }
+ resolution: {integrity: sha512-WR1cURNjuvBLMZBMbqM0UoE+WAfdUcEV1ccD8PVBVOI+Z3ND4+SZbN8RsfT2bMuG1qwz5RFvPukSZm5fF2D5eA==}
braces@3.0.3:
- resolution:
- {
- integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
+ engines: {node: '>=8'}
browserslist@4.28.2:
- resolution:
- {
- integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==,
- }
- engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
+ resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
bser@2.1.1:
- resolution:
- {
- integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==,
- }
-
- buffer-equal-constant-time@1.0.1:
- resolution:
- {
- integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==,
- }
+ resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
buffer-from@1.1.2:
- resolution:
- {
- integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==,
- }
+ resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
buffer@5.7.1:
- resolution:
- {
- integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==,
- }
+ resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
buffer@6.0.3:
- resolution:
- {
- integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==,
- }
+ resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
bunyan@1.8.15:
- resolution:
- {
- integrity: sha512-0tECWShh6wUysgucJcBAoYegf3JJoZWibxdqhTm7OHPeT42qdjkZ29QCMcKwbgU1kiH+auSIasNRXMLWXafXig==,
- }
- engines: { "0": node >=0.10.0 }
+ resolution: {integrity: sha512-0tECWShh6wUysgucJcBAoYegf3JJoZWibxdqhTm7OHPeT42qdjkZ29QCMcKwbgU1kiH+auSIasNRXMLWXafXig==}
+ engines: {'0': node >=0.10.0}
hasBin: true
bytes@3.1.2:
- resolution:
- {
- integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==,
- }
- engines: { node: ">= 0.8" }
-
- cac@6.7.14:
- resolution:
- {
- integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
+ engines: {node: '>= 0.8'}
call-bind-apply-helpers@1.0.2:
- resolution:
- {
- integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
+ engines: {node: '>= 0.4'}
call-bind@1.0.9:
- resolution:
- {
- integrity: sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==}
+ engines: {node: '>= 0.4'}
call-bound@1.0.4:
- resolution:
- {
- integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
+ engines: {node: '>= 0.4'}
callsites@3.1.0:
- resolution:
- {
- integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
+ engines: {node: '>=6'}
camelcase@5.3.1:
- resolution:
- {
- integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
+ engines: {node: '>=6'}
camelcase@6.3.0:
- resolution:
- {
- integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
+ engines: {node: '>=10'}
caniuse-lite@1.0.30001793:
- resolution:
- {
- integrity: sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==,
- }
+ resolution: {integrity: sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==}
canvas@2.11.2:
- resolution:
- {
- integrity: sha512-ItanGBMrmRV7Py2Z+Xhs7cT+FNt5K0vPL4p9EZ/UX/Mu7hFbkxSjKF2KVtPwX7UYWp7dRKnrTvReflgrItJbdw==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-ItanGBMrmRV7Py2Z+Xhs7cT+FNt5K0vPL4p9EZ/UX/Mu7hFbkxSjKF2KVtPwX7UYWp7dRKnrTvReflgrItJbdw==}
+ engines: {node: '>=6'}
cardinal@2.1.1:
- resolution:
- {
- integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==,
- }
+ resolution: {integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==}
hasBin: true
- chai@5.3.3:
- resolution:
- {
- integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==,
- }
- engines: { node: ">=18" }
-
chalk@2.4.2:
- resolution:
- {
- integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
+ engines: {node: '>=4'}
chalk@3.0.0:
- resolution:
- {
- integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==}
+ engines: {node: '>=8'}
chalk@4.1.2:
- resolution:
- {
- integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==,
- }
- engines: { node: ">=10" }
-
- chalk@5.6.2:
- resolution:
- {
- integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==,
- }
- engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 }
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
+ engines: {node: '>=10'}
char-regex@1.0.2:
- resolution:
- {
- integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
+ engines: {node: '>=10'}
char-regex@2.0.2:
- resolution:
- {
- integrity: sha512-cbGOjAptfM2LVmWhwRFHEKTPkLwNddVmuqYZQt895yXwAsWsXObCG+YN4DGQ/JBtT4GP1a1lPPdio2z413LmTg==,
- }
- engines: { node: ">=12.20" }
+ resolution: {integrity: sha512-cbGOjAptfM2LVmWhwRFHEKTPkLwNddVmuqYZQt895yXwAsWsXObCG+YN4DGQ/JBtT4GP1a1lPPdio2z413LmTg==}
+ engines: {node: '>=12.20'}
charenc@0.0.2:
- resolution:
- {
- integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==,
- }
-
- check-error@2.1.3:
- resolution:
- {
- integrity: sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==,
- }
- engines: { node: ">= 16" }
-
- chokidar@5.0.0:
- resolution:
- {
- integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==,
- }
- engines: { node: ">= 20.19.0" }
-
- chownr@1.1.4:
- resolution:
- {
- integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==,
- }
+ resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==}
chownr@3.0.0:
- resolution:
- {
- integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
+ engines: {node: '>=18'}
chrome-launcher@0.15.2:
- resolution:
- {
- integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==,
- }
- engines: { node: ">=12.13.0" }
+ resolution: {integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==}
+ engines: {node: '>=12.13.0'}
hasBin: true
chromium-edge-launcher@0.2.0:
- resolution:
- {
- integrity: sha512-JfJjUnq25y9yg4FABRRVPmBGWPZZi+AQXT4mxupb67766/0UlhG8PAZCz6xzEMXTbW3CsSoE8PcCWA49n35mKg==,
- }
+ resolution: {integrity: sha512-JfJjUnq25y9yg4FABRRVPmBGWPZZi+AQXT4mxupb67766/0UlhG8PAZCz6xzEMXTbW3CsSoE8PcCWA49n35mKg==}
ci-info@2.0.0:
- resolution:
- {
- integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==,
- }
+ resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
ci-info@3.9.0:
- resolution:
- {
- integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
+ engines: {node: '>=8'}
ci-info@4.4.0:
- resolution:
- {
- integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==}
+ engines: {node: '>=8'}
cjs-module-lexer@1.4.3:
- resolution:
- {
- integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==,
- }
-
- clawpdf@0.3.0:
- resolution:
- {
- integrity: sha512-41+3AnKk9yek2sm+/9XvUlDTN8Wi+ag7fmxZuqw+ySn4lqaf/fCgLeamqPLiXY4gVbizKEHGoTG/JrIIFNE2rw==,
- }
- engines: { node: ">=20" }
- hasBin: true
+ resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==}
clean-stack@3.0.1:
- resolution:
- {
- integrity: sha512-lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg==}
+ engines: {node: '>=10'}
cli-cursor@2.1.0:
- resolution:
- {
- integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==}
+ engines: {node: '>=4'}
cli-cursor@3.1.0:
- resolution:
- {
- integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
+ engines: {node: '>=8'}
cli-progress@3.12.0:
- resolution:
- {
- integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==}
+ engines: {node: '>=4'}
cli-spinners@2.9.2:
- resolution:
- {
- integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
+ engines: {node: '>=6'}
client-only@0.0.1:
- resolution:
- {
- integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==,
- }
-
- cliui@6.0.0:
- resolution:
- {
- integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==,
- }
+ resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
cliui@8.0.1:
- resolution:
- {
- integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
+ engines: {node: '>=12'}
clone@1.0.4:
- resolution:
- {
- integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==,
- }
- engines: { node: ">=0.8" }
+ resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
+ engines: {node: '>=0.8'}
co@4.6.0:
- resolution:
- {
- integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==,
- }
- engines: { iojs: ">= 1.0.0", node: ">= 0.12.0" }
+ resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
+ engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
collect-v8-coverage@1.0.3:
- resolution:
- {
- integrity: sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==,
- }
+ resolution: {integrity: sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==}
color-convert@1.9.3:
- resolution:
- {
- integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==,
- }
+ resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
color-convert@2.0.1:
- resolution:
- {
- integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==,
- }
- engines: { node: ">=7.0.0" }
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
+ engines: {node: '>=7.0.0'}
color-name@1.1.3:
- resolution:
- {
- integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==,
- }
+ resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
color-name@1.1.4:
- resolution:
- {
- integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==,
- }
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
color-string@1.9.1:
- resolution:
- {
- integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==,
- }
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
color-support@1.1.3:
- resolution:
- {
- integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==,
- }
+ resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
hasBin: true
color@3.2.1:
- resolution:
- {
- integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==,
- }
+ resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==}
color@4.2.3:
- resolution:
- {
- integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==,
- }
- engines: { node: ">=12.5.0" }
+ resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
+ engines: {node: '>=12.5.0'}
combined-stream@1.0.8:
- resolution:
- {
- integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
+ engines: {node: '>= 0.8'}
commander@12.1.0:
- resolution:
- {
- integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==,
- }
- engines: { node: ">=18" }
-
- commander@14.0.3:
- resolution:
- {
- integrity: sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==,
- }
- engines: { node: ">=20" }
+ resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
+ engines: {node: '>=18'}
commander@2.20.3:
- resolution:
- {
- integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==,
- }
+ resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
commander@4.1.1:
- resolution:
- {
- integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
+ engines: {node: '>= 6'}
commander@7.2.0:
- resolution:
- {
- integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==,
- }
- engines: { node: ">= 10" }
+ resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
+ engines: {node: '>= 10'}
component-type@1.2.2:
- resolution:
- {
- integrity: sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA==,
- }
+ resolution: {integrity: sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA==}
compressible@2.0.18:
- resolution:
- {
- integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
+ engines: {node: '>= 0.6'}
compression@1.8.1:
- resolution:
- {
- integrity: sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==}
+ engines: {node: '>= 0.8.0'}
connect@3.7.0:
- resolution:
- {
- integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==,
- }
- engines: { node: ">= 0.10.0" }
+ resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
+ engines: {node: '>= 0.10.0'}
console-control-strings@1.1.0:
- resolution:
- {
- integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==,
- }
-
- content-disposition@1.1.0:
- resolution:
- {
- integrity: sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
content-type@1.0.5:
- resolution:
- {
- integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==,
- }
- engines: { node: ">= 0.6" }
-
- content-type@2.0.0:
- resolution:
- {
- integrity: sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
+ engines: {node: '>= 0.6'}
convert-source-map@2.0.0:
- resolution:
- {
- integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==,
- }
-
- cookie-signature@1.2.2:
- resolution:
- {
- integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==,
- }
- engines: { node: ">=6.6.0" }
-
- cookie@0.7.2:
- resolution:
- {
- integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
core-js-compat@3.49.0:
- resolution:
- {
- integrity: sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA==,
- }
-
- core-util-is@1.0.3:
- resolution:
- {
- integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==,
- }
-
- cors@2.8.6:
- resolution:
- {
- integrity: sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==,
- }
- engines: { node: ">= 0.10" }
+ resolution: {integrity: sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA==}
create-jest@29.7.0:
- resolution:
- {
- integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
create-require@1.1.1:
- resolution:
- {
- integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==,
- }
-
- croner@10.0.1:
- resolution:
- {
- integrity: sha512-ixNtAJndqh173VQ4KodSdJEI6nuioBWI0V1ITNKhZZsO0pEMoDxz539T4FTTbSZ/xIOSuDnzxLVRqBVSvPNE2g==,
- }
- engines: { node: ">=18.0" }
+ resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
cross-spawn@7.0.6:
- resolution:
- {
- integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
+ engines: {node: '>= 8'}
crypt@0.0.2:
- resolution:
- {
- integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==,
- }
+ resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
crypto-random-string@2.0.0:
- resolution:
- {
- integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==,
- }
- engines: { node: ">=8" }
-
- css-select@5.2.2:
- resolution:
- {
- integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==,
- }
-
- css-what@6.2.2:
- resolution:
- {
- integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
+ engines: {node: '>=8'}
cssom@0.3.8:
- resolution:
- {
- integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==,
- }
+ resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==}
cssom@0.5.0:
- resolution:
- {
- integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==,
- }
+ resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==}
cssstyle@2.3.0:
- resolution:
- {
- integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==}
+ engines: {node: '>=8'}
csstype@3.2.3:
- resolution:
- {
- integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==,
- }
-
- data-uri-to-buffer@4.0.1:
- resolution:
- {
- integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==,
- }
- engines: { node: ">= 12" }
+ resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
data-urls@3.0.2:
- resolution:
- {
- integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==}
+ engines: {node: '>=12'}
dateformat@4.6.3:
- resolution:
- {
- integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==,
- }
+ resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==}
debug@2.6.9:
- resolution:
- {
- integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==,
- }
+ resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
- supports-color: "*"
+ supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
debug@3.2.7:
- resolution:
- {
- integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==,
- }
+ resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
- supports-color: "*"
+ supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
debug@4.3.4:
- resolution:
- {
- integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==,
- }
- engines: { node: ">=6.0" }
+ resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+ engines: {node: '>=6.0'}
peerDependencies:
- supports-color: "*"
+ supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
debug@4.4.3:
- resolution:
- {
- integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==,
- }
- engines: { node: ">=6.0" }
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
+ engines: {node: '>=6.0'}
peerDependencies:
- supports-color: "*"
+ supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
- decamelize@1.2.0:
- resolution:
- {
- integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==,
- }
- engines: { node: ">=0.10.0" }
-
decimal.js@10.6.0:
- resolution:
- {
- integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==,
- }
+ resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}
decode-uri-component@0.2.2:
- resolution:
- {
- integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==,
- }
- engines: { node: ">=0.10" }
+ resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
+ engines: {node: '>=0.10'}
decompress-response@4.2.1:
- resolution:
- {
- integrity: sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==,
- }
- engines: { node: ">=8" }
-
- decompress-response@6.0.0:
- resolution:
- {
- integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==}
+ engines: {node: '>=8'}
dedent@1.7.2:
- resolution:
- {
- integrity: sha512-WzMx3mW98SN+zn3hgemf4OzdmyNhhhKz5Ay0pUfQiMQ3e1g+xmTJWp/pKdwKVXhdSkAEGIIzqeuWrL3mV/AXbA==,
- }
+ resolution: {integrity: sha512-WzMx3mW98SN+zn3hgemf4OzdmyNhhhKz5Ay0pUfQiMQ3e1g+xmTJWp/pKdwKVXhdSkAEGIIzqeuWrL3mV/AXbA==}
peerDependencies:
babel-plugin-macros: ^3.1.0
peerDependenciesMeta:
babel-plugin-macros:
optional: true
- deep-eql@5.0.2:
- resolution:
- {
- integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==,
- }
- engines: { node: ">=6" }
-
deep-extend@0.6.0:
- resolution:
- {
- integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==,
- }
- engines: { node: ">=4.0.0" }
+ resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
+ engines: {node: '>=4.0.0'}
deepmerge@4.3.1:
- resolution:
- {
- integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
+ engines: {node: '>=0.10.0'}
defaults@1.0.4:
- resolution:
- {
- integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==,
- }
+ resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
define-data-property@1.1.4:
- resolution:
- {
- integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
+ engines: {node: '>= 0.4'}
define-lazy-prop@2.0.0:
- resolution:
- {
- integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
+ engines: {node: '>=8'}
delayed-stream@1.0.0:
- resolution:
- {
- integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
+ engines: {node: '>=0.4.0'}
delegates@1.0.0:
- resolution:
- {
- integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==,
- }
+ resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
depd@2.0.0:
- resolution:
- {
- integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
+ engines: {node: '>= 0.8'}
destroy@1.2.0:
- resolution:
- {
- integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==,
- }
- engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 }
+ resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
detect-libc@2.1.2:
- resolution:
- {
- integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
+ engines: {node: '>=8'}
detect-newline@3.1.0:
- resolution:
- {
- integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
+ engines: {node: '>=8'}
detect-node-es@1.1.0:
- resolution:
- {
- integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==,
- }
+ resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
diff-sequences@29.6.3:
- resolution:
- {
- integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
diff@8.0.4:
- resolution:
- {
- integrity: sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==,
- }
- engines: { node: ">=0.3.1" }
-
- dijkstrajs@1.0.3:
- resolution:
- {
- integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==,
- }
+ resolution: {integrity: sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==}
+ engines: {node: '>=0.3.1'}
dir-glob@3.0.1:
- resolution:
- {
- integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==,
- }
- engines: { node: ">=8" }
-
- dom-serializer@2.0.0:
- resolution:
- {
- integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==,
- }
-
- domelementtype@2.3.0:
- resolution:
- {
- integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==,
- }
+ resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
+ engines: {node: '>=8'}
domexception@4.0.0:
- resolution:
- {
- integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==}
+ engines: {node: '>=12'}
deprecated: Use your platform's native DOMException instead
- domhandler@5.0.3:
- resolution:
- {
- integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==,
- }
- engines: { node: ">= 4" }
-
domino@2.1.7:
- resolution:
- {
- integrity: sha512-3rcXhx0ixJV2nj8J0tljzejTF73A35LVVdnTQu79UAqTBFEgYPMgGtykMuu/BDqaOZphATku1ddRUn/RtqUHYQ==,
- }
-
- domutils@3.2.2:
- resolution:
- {
- integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==,
- }
+ resolution: {integrity: sha512-3rcXhx0ixJV2nj8J0tljzejTF73A35LVVdnTQu79UAqTBFEgYPMgGtykMuu/BDqaOZphATku1ddRUn/RtqUHYQ==}
dotenv-expand@11.0.7:
- resolution:
- {
- integrity: sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==}
+ engines: {node: '>=12'}
dotenv@16.3.1:
- resolution:
- {
- integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==}
+ engines: {node: '>=12'}
dotenv@16.4.7:
- resolution:
- {
- integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==,
- }
- engines: { node: ">=12" }
-
- dotenv@17.4.2:
- resolution:
- {
- integrity: sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
+ engines: {node: '>=12'}
dtrace-provider@0.8.8:
- resolution:
- {
- integrity: sha512-b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg==,
- }
- engines: { node: ">=0.10" }
+ resolution: {integrity: sha512-b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg==}
+ engines: {node: '>=0.10'}
dunder-proto@1.0.1:
- resolution:
- {
- integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
+ engines: {node: '>= 0.4'}
eas-cli@20.1.0:
- resolution:
- {
- integrity: sha512-Tl5PQ6SHIlzCsbOFJUTLnGDdn0rJ6XUMAJ0aKXOj0myh/q/ZJdWz7c8RmBT6TjNJ8T2z5gFq2GY0bhtBV0Ql0w==,
- }
- engines: { node: ">=20.0.0" }
+ resolution: {integrity: sha512-Tl5PQ6SHIlzCsbOFJUTLnGDdn0rJ6XUMAJ0aKXOj0myh/q/ZJdWz7c8RmBT6TjNJ8T2z5gFq2GY0bhtBV0Ql0w==}
+ engines: {node: '>=20.0.0'}
hasBin: true
eastasianwidth@0.2.0:
- resolution:
- {
- integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==,
- }
-
- ecdsa-sig-formatter@1.0.11:
- resolution:
- {
- integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==,
- }
+ resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
ee-first@1.1.1:
- resolution:
- {
- integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==,
- }
+ resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
ejs@3.1.10:
- resolution:
- {
- integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==}
+ engines: {node: '>=0.10.0'}
hasBin: true
electron-to-chromium@1.5.364:
- resolution:
- {
- integrity: sha512-G/dYE3+AYhyHwzTwg8UbnXf7zqMERYh7l2jJ3QujhFsH8agSYwtnGAR2aZ7f0AakIKJXd5En/Hre4igIUrdlYw==,
- }
+ resolution: {integrity: sha512-G/dYE3+AYhyHwzTwg8UbnXf7zqMERYh7l2jJ3QujhFsH8agSYwtnGAR2aZ7f0AakIKJXd5En/Hre4igIUrdlYw==}
emittery@0.13.1:
- resolution:
- {
- integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
+ engines: {node: '>=12'}
emoji-regex@8.0.0:
- resolution:
- {
- integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==,
- }
+ resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
emoji-regex@9.2.2:
- resolution:
- {
- integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==,
- }
+ resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
encodeurl@1.0.2:
- resolution:
- {
- integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
+ engines: {node: '>= 0.8'}
encodeurl@2.0.0:
- resolution:
- {
- integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==,
- }
- engines: { node: ">= 0.8" }
-
- end-of-stream@1.4.5:
- resolution:
- {
- integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==,
- }
+ resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
+ engines: {node: '>= 0.8'}
engine.io-client@6.6.5:
- resolution:
- {
- integrity: sha512-QCwxUDULPlXv8F6tqMMKx5dNkTe6OaBYRMPYeXKBlyOoKvAmE0ac6pW7fFhSscJ/5SI7666/U/B+MElbsrJlIg==,
- }
+ resolution: {integrity: sha512-QCwxUDULPlXv8F6tqMMKx5dNkTe6OaBYRMPYeXKBlyOoKvAmE0ac6pW7fFhSscJ/5SI7666/U/B+MElbsrJlIg==}
engine.io-parser@5.2.3:
- resolution:
- {
- integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==,
- }
- engines: { node: ">=10.0.0" }
-
- entities@4.5.0:
- resolution:
- {
- integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==,
- }
- engines: { node: ">=0.12" }
+ resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==}
+ engines: {node: '>=10.0.0'}
entities@6.0.1:
- resolution:
- {
- integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==,
- }
- engines: { node: ">=0.12" }
-
- entities@7.0.1:
- resolution:
- {
- integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==,
- }
- engines: { node: ">=0.12" }
+ resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
+ engines: {node: '>=0.12'}
env-editor@0.4.2:
- resolution:
- {
- integrity: sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==}
+ engines: {node: '>=8'}
env-paths@2.2.0:
- resolution:
- {
- integrity: sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA==}
+ engines: {node: '>=6'}
env-string@1.0.1:
- resolution:
- {
- integrity: sha512-/DhCJDf5DSFK32joQiWRpWrT0h7p3hVQfMKxiBb7Nt8C8IF8BYyPtclDnuGGLOoj16d/8udKeiE7JbkotDmorQ==,
- }
+ resolution: {integrity: sha512-/DhCJDf5DSFK32joQiWRpWrT0h7p3hVQfMKxiBb7Nt8C8IF8BYyPtclDnuGGLOoj16d/8udKeiE7JbkotDmorQ==}
envinfo@7.11.0:
- resolution:
- {
- integrity: sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==}
+ engines: {node: '>=4'}
hasBin: true
err-code@2.0.3:
- resolution:
- {
- integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==,
- }
+ resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
error-ex@1.3.4:
- resolution:
- {
- integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==,
- }
+ resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==}
error-stack-parser@2.1.4:
- resolution:
- {
- integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==,
- }
+ resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
es-define-property@1.0.1:
- resolution:
- {
- integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
+ engines: {node: '>= 0.4'}
es-errors@1.3.0:
- resolution:
- {
- integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==,
- }
- engines: { node: ">= 0.4" }
-
- es-module-lexer@1.7.0:
- resolution:
- {
- integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==,
- }
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
+ engines: {node: '>= 0.4'}
es-object-atoms@1.1.2:
- resolution:
- {
- integrity: sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==}
+ engines: {node: '>= 0.4'}
es-set-tostringtag@2.1.0:
- resolution:
- {
- integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==,
- }
- engines: { node: ">= 0.4" }
-
- esbuild@0.25.12:
- resolution:
- {
- integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==,
- }
- engines: { node: ">=18" }
- hasBin: true
-
- esbuild@0.27.7:
- resolution:
- {
- integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==,
- }
- engines: { node: ">=18" }
- hasBin: true
+ resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
+ engines: {node: '>= 0.4'}
escalade@3.2.0:
- resolution:
- {
- integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
+ engines: {node: '>=6'}
escape-html@1.0.3:
- resolution:
- {
- integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==,
- }
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
escape-string-regexp@1.0.5:
- resolution:
- {
- integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==,
- }
- engines: { node: ">=0.8.0" }
+ resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
+ engines: {node: '>=0.8.0'}
escape-string-regexp@2.0.0:
- resolution:
- {
- integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
+ engines: {node: '>=8'}
escape-string-regexp@4.0.0:
- resolution:
- {
- integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
+ engines: {node: '>=10'}
escodegen@2.1.0:
- resolution:
- {
- integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==,
- }
- engines: { node: ">=6.0" }
+ resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
+ engines: {node: '>=6.0'}
hasBin: true
esprima@4.0.1:
- resolution:
- {
- integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
+ engines: {node: '>=4'}
hasBin: true
estraverse@5.3.0:
- resolution:
- {
- integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==,
- }
- engines: { node: ">=4.0" }
-
- estree-walker@3.0.3:
- resolution:
- {
- integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==,
- }
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
+ engines: {node: '>=4.0'}
esutils@2.0.3:
- resolution:
- {
- integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
+ engines: {node: '>=0.10.0'}
etag@1.8.1:
- resolution:
- {
- integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
+ engines: {node: '>= 0.6'}
event-target-shim@5.0.1:
- resolution:
- {
- integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
+ engines: {node: '>=6'}
event-target-shim@6.0.2:
- resolution:
- {
- integrity: sha512-8q3LsZjRezbFZ2PN+uP+Q7pnHUMmAOziU2vA2OwoFaKIXxlxl38IylhSSgUorWu/rf4er67w0ikBqjBFk/pomA==,
- }
- engines: { node: ">=10.13.0" }
+ resolution: {integrity: sha512-8q3LsZjRezbFZ2PN+uP+Q7pnHUMmAOziU2vA2OwoFaKIXxlxl38IylhSSgUorWu/rf4er67w0ikBqjBFk/pomA==}
+ engines: {node: '>=10.13.0'}
eventemitter3@5.0.4:
- resolution:
- {
- integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==,
- }
+ resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==}
events-universal@1.0.1:
- resolution:
- {
- integrity: sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==,
- }
+ resolution: {integrity: sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==}
events@3.3.0:
- resolution:
- {
- integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==,
- }
- engines: { node: ">=0.8.x" }
-
- eventsource-parser@3.1.0:
- resolution:
- {
- integrity: sha512-kJezFj9YFAMLeORyi7aCLxLbD5/qWMQnoMVlVPyHIll7lgRJCc3JVln9Vgl9nwQi0YkMnhdGTMNn7CkRRAptMg==,
- }
- engines: { node: ">=18.0.0" }
-
- eventsource@3.0.7:
- resolution:
- {
- integrity: sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==,
- }
- engines: { node: ">=18.0.0" }
+ resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
+ engines: {node: '>=0.8.x'}
exec-async@2.2.0:
- resolution:
- {
- integrity: sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==,
- }
+ resolution: {integrity: sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==}
execa@5.1.1:
- resolution:
- {
- integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
+ engines: {node: '>=10'}
exit@0.1.2:
- resolution:
- {
- integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==,
- }
- engines: { node: ">= 0.8.0" }
-
- expand-template@2.0.3:
- resolution:
- {
- integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==,
- }
- engines: { node: ">=6" }
-
- expect-type@1.3.0:
- resolution:
- {
- integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==,
- }
- engines: { node: ">=12.0.0" }
+ resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
+ engines: {node: '>= 0.8.0'}
expect@29.7.0:
- resolution:
- {
- integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
expect@30.4.1:
- resolution:
- {
- integrity: sha512-PMARsyh/JtqC20HoGqlFcIlQAyqUtW4PlI1rup1uhYJtKuwAjbvWi3GQMAn+STdHum/dk8xrKfUM1+5SAwpolA==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-PMARsyh/JtqC20HoGqlFcIlQAyqUtW4PlI1rup1uhYJtKuwAjbvWi3GQMAn+STdHum/dk8xrKfUM1+5SAwpolA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
expo-asset@12.0.13:
- resolution:
- {
- integrity: sha512-x/p7WvQUnkn6K43b9eL6SPeq5Vnf1E8BDe9bDrWrvMqzyUvJnUFvl+ctg3034s/+UHe7Ne2pAmc0+yzbl8CrDQ==,
- }
+ resolution: {integrity: sha512-x/p7WvQUnkn6K43b9eL6SPeq5Vnf1E8BDe9bDrWrvMqzyUvJnUFvl+ctg3034s/+UHe7Ne2pAmc0+yzbl8CrDQ==}
peerDependencies:
- expo: "*"
+ expo: '*'
react: 19.1.0
- react-native: "*"
+ react-native: '*'
expo-build-properties@55.0.14:
- resolution:
- {
- integrity: sha512-5wopuLXlzFpDnCfsIjgAcj4yKnVTYg3XYGnYV5Hqi7u6jJipLG4fwtUqxVIFqBj7vEHXjd4zYCyXjp39AtAD7w==,
- }
+ resolution: {integrity: sha512-5wopuLXlzFpDnCfsIjgAcj4yKnVTYg3XYGnYV5Hqi7u6jJipLG4fwtUqxVIFqBj7vEHXjd4zYCyXjp39AtAD7w==}
peerDependencies:
- expo: "*"
+ expo: '*'
expo-camera@17.0.10:
- resolution:
- {
- integrity: sha512-w1RBw83mAGVk4BPPwNrCZyFop0VLiVSRE3c2V9onWbdFwonpRhzmB4drygG8YOUTl1H3wQvALJHyMPTbgsK1Jg==,
- }
+ resolution: {integrity: sha512-w1RBw83mAGVk4BPPwNrCZyFop0VLiVSRE3c2V9onWbdFwonpRhzmB4drygG8YOUTl1H3wQvALJHyMPTbgsK1Jg==}
peerDependencies:
- expo: "*"
+ expo: '*'
react: 19.1.0
- react-native: "*"
- react-native-web: "*"
+ react-native: '*'
+ react-native-web: '*'
peerDependenciesMeta:
react-native-web:
optional: true
+ expo-clipboard@8.0.8:
+ resolution: {integrity: sha512-VKoBkHIpZZDJTB0jRO4/PZskHdMNOEz3P/41tmM6fDuODMpqhvyWK053X0ebspkxiawJX9lX33JXHBCvVsTTOA==}
+ peerDependencies:
+ expo: '*'
+ react: 19.1.0
+ react-native: '*'
+
expo-constants@18.0.13:
- resolution:
- {
- integrity: sha512-FnZn12E1dRYKDHlAdIyNFhBurKTS3F9CrfrBDJI5m3D7U17KBHMQ6JEfYlSj7LG7t+Ulr+IKaj58L1k5gBwTcQ==,
- }
+ resolution: {integrity: sha512-FnZn12E1dRYKDHlAdIyNFhBurKTS3F9CrfrBDJI5m3D7U17KBHMQ6JEfYlSj7LG7t+Ulr+IKaj58L1k5gBwTcQ==}
peerDependencies:
- expo: "*"
- react-native: "*"
+ expo: '*'
+ react-native: '*'
expo-dev-client@6.0.21:
- resolution:
- {
- integrity: sha512-SWI6HD0pa4eJujkYFkvvpezUE1zmJXGLu+34azpu7+QJgO+FLutDYDj8BSTdeH/NYDEClDFjCGqVMcWETvmsCQ==,
- }
+ resolution: {integrity: sha512-SWI6HD0pa4eJujkYFkvvpezUE1zmJXGLu+34azpu7+QJgO+FLutDYDj8BSTdeH/NYDEClDFjCGqVMcWETvmsCQ==}
peerDependencies:
- expo: "*"
+ expo: '*'
expo-dev-launcher@6.0.21:
- resolution:
- {
- integrity: sha512-QZ9gcKMZbp6EsIhzS0QoGB8Cf4xeVJhjbNgWUwcoBIk8gshoFz8CkCQOnX+HNv2sSY3rdCaNpx3Xo0Rflyq7rA==,
- }
+ resolution: {integrity: sha512-QZ9gcKMZbp6EsIhzS0QoGB8Cf4xeVJhjbNgWUwcoBIk8gshoFz8CkCQOnX+HNv2sSY3rdCaNpx3Xo0Rflyq7rA==}
peerDependencies:
- expo: "*"
+ expo: '*'
expo-dev-menu-interface@2.0.0:
- resolution:
- {
- integrity: sha512-BvAMPt6x+vyXpThsyjjOYyjwfjREV4OOpQkZ0tNl+nGpsPfcY9mc6DRACoWnH9KpLzyIt3BOgh3cuy/h/OxQjw==,
- }
+ resolution: {integrity: sha512-BvAMPt6x+vyXpThsyjjOYyjwfjREV4OOpQkZ0tNl+nGpsPfcY9mc6DRACoWnH9KpLzyIt3BOgh3cuy/h/OxQjw==}
peerDependencies:
- expo: "*"
+ expo: '*'
expo-dev-menu@7.0.19:
- resolution:
- {
- integrity: sha512-ju5MZiBCPhUKKvHy0ElZdnlhq01mkEEiR8jfrgQVvW26aWjzjLiOhppNAyXtvGbhk7WxJim3wYMiqFFrjGdfKA==,
- }
+ resolution: {integrity: sha512-ju5MZiBCPhUKKvHy0ElZdnlhq01mkEEiR8jfrgQVvW26aWjzjLiOhppNAyXtvGbhk7WxJim3wYMiqFFrjGdfKA==}
peerDependencies:
- expo: "*"
+ expo: '*'
expo-document-picker@14.0.8:
- resolution:
- {
- integrity: sha512-3tyQKpPqWWFlI8p9RiMX1+T1Zge5mEKeBuXWp1h8PEItFMUDSiOJbQ112sfdC6Hxt8wSxreV9bCRl/NgBdt+fA==,
- }
+ resolution: {integrity: sha512-3tyQKpPqWWFlI8p9RiMX1+T1Zge5mEKeBuXWp1h8PEItFMUDSiOJbQ112sfdC6Hxt8wSxreV9bCRl/NgBdt+fA==}
peerDependencies:
- expo: "*"
+ expo: '*'
expo-eas-client@1.0.8:
- resolution:
- {
- integrity: sha512-5or11NJhSeDoHHI6zyvQDW2cz/yFyE+1Cz8NTs5NK8JzC7J0JrkUgptWtxyfB6Xs/21YRNifd3qgbBN3hfKVgA==,
- }
+ resolution: {integrity: sha512-5or11NJhSeDoHHI6zyvQDW2cz/yFyE+1Cz8NTs5NK8JzC7J0JrkUgptWtxyfB6Xs/21YRNifd3qgbBN3hfKVgA==}
expo-file-system@19.0.23:
- resolution:
- {
- integrity: sha512-MeGkid9OeNILfT/qonaXHp4f2c15xaB28U/bcN7pqZej0Kx0+6+V7e9ZIXpPHm07zVatxA+QkMTPQEGfmvVOxA==,
- }
+ resolution: {integrity: sha512-MeGkid9OeNILfT/qonaXHp4f2c15xaB28U/bcN7pqZej0Kx0+6+V7e9ZIXpPHm07zVatxA+QkMTPQEGfmvVOxA==}
peerDependencies:
- expo: "*"
- react-native: "*"
+ expo: '*'
+ react-native: '*'
expo-font@14.0.12:
- resolution:
- {
- integrity: sha512-QQzunE2Mxk45AsCWm3tK7OpVljbtVnKD58q4/qliev+cbye1IOduUnRIdD+P7DyButw17G9MTX795kgaQiz5hQ==,
- }
+ resolution: {integrity: sha512-QQzunE2Mxk45AsCWm3tK7OpVljbtVnKD58q4/qliev+cbye1IOduUnRIdD+P7DyButw17G9MTX795kgaQiz5hQ==}
peerDependencies:
- expo: "*"
+ expo: '*'
react: 19.1.0
- react-native: "*"
+ react-native: '*'
expo-haptics@15.0.8:
- resolution:
- {
- integrity: sha512-lftutojy8Qs8zaDzzjwM3gKHFZ8bOOEZDCkmh2Ddpe95Ra6kt2izeOfOfKuP/QEh0MZ1j9TfqippyHdRd1ZM9g==,
- }
+ resolution: {integrity: sha512-lftutojy8Qs8zaDzzjwM3gKHFZ8bOOEZDCkmh2Ddpe95Ra6kt2izeOfOfKuP/QEh0MZ1j9TfqippyHdRd1ZM9g==}
peerDependencies:
- expo: "*"
+ expo: '*'
expo-image@3.0.11:
- resolution:
- {
- integrity: sha512-4TudfUCLgYgENv+f48omnU8tjS2S0Pd9EaON5/s1ZUBRwZ7K8acEr4NfvLPSaeXvxW24iLAiyQ7sV7BXQH3RoA==,
- }
+ resolution: {integrity: sha512-4TudfUCLgYgENv+f48omnU8tjS2S0Pd9EaON5/s1ZUBRwZ7K8acEr4NfvLPSaeXvxW24iLAiyQ7sV7BXQH3RoA==}
peerDependencies:
- expo: "*"
+ expo: '*'
react: 19.1.0
- react-native: "*"
- react-native-web: "*"
+ react-native: '*'
+ react-native-web: '*'
peerDependenciesMeta:
react-native-web:
optional: true
expo-json-utils@0.15.0:
- resolution:
- {
- integrity: sha512-duRT6oGl80IDzH2LD2yEFWNwGIC2WkozsB6HF3cDYNoNNdUvFk6uN3YiwsTsqVM/D0z6LEAQ01/SlYvN+Fw0JQ==,
- }
+ resolution: {integrity: sha512-duRT6oGl80IDzH2LD2yEFWNwGIC2WkozsB6HF3cDYNoNNdUvFk6uN3YiwsTsqVM/D0z6LEAQ01/SlYvN+Fw0JQ==}
expo-keep-awake@15.0.8:
- resolution:
- {
- integrity: sha512-YK9M1VrnoH1vLJiQzChZgzDvVimVoriibiDIFLbQMpjYBnvyfUeHJcin/Gx1a+XgupNXy92EQJLgI/9ZuXajYQ==,
- }
+ resolution: {integrity: sha512-YK9M1VrnoH1vLJiQzChZgzDvVimVoriibiDIFLbQMpjYBnvyfUeHJcin/Gx1a+XgupNXy92EQJLgI/9ZuXajYQ==}
peerDependencies:
- expo: "*"
+ expo: '*'
react: 19.1.0
expo-linking@8.0.12:
- resolution:
- {
- integrity: sha512-FpXeIpFgZuxihwT9lBo86YD3y6LphBuAhN680MMxm/Y7fmsc57vimn2d3vFu68VI0+Z9w457t494mu2wvlgWTQ==,
- }
+ resolution: {integrity: sha512-FpXeIpFgZuxihwT9lBo86YD3y6LphBuAhN680MMxm/Y7fmsc57vimn2d3vFu68VI0+Z9w457t494mu2wvlgWTQ==}
peerDependencies:
react: 19.1.0
- react-native: "*"
+ react-native: '*'
expo-manifests@1.0.11:
- resolution:
- {
- integrity: sha512-6zItytTewN37Cjhp3glUg0ozrgW2GwB8x9wtfzUNoJIMmxO38nnGdTLMaotYhRqdf5PP2Dzdmej1HDHXVNUpRw==,
- }
+ resolution: {integrity: sha512-6zItytTewN37Cjhp3glUg0ozrgW2GwB8x9wtfzUNoJIMmxO38nnGdTLMaotYhRqdf5PP2Dzdmej1HDHXVNUpRw==}
peerDependencies:
- expo: "*"
+ expo: '*'
expo-modules-autolinking@3.0.26:
- resolution:
- {
- integrity: sha512-WOaud6UKg16ciCOj8raKcMOoKFMHLXKI29U29yhgu1lf+Y7VxJyCktUcYo6AM+ccZ7zLD1uWZdMtgnpf+95OXA==,
- }
+ resolution: {integrity: sha512-WOaud6UKg16ciCOj8raKcMOoKFMHLXKI29U29yhgu1lf+Y7VxJyCktUcYo6AM+ccZ7zLD1uWZdMtgnpf+95OXA==}
hasBin: true
expo-modules-core@3.0.30:
- resolution:
- {
- integrity: sha512-a6IrpAn/Jbmwxi9L+hMmXKpNqnkUpoF7WHOpn02rVLyax2J0gB1vvCVE5rNydplEnt41Q6WxQwvcOjZaIkcSUg==,
- }
+ resolution: {integrity: sha512-a6IrpAn/Jbmwxi9L+hMmXKpNqnkUpoF7WHOpn02rVLyax2J0gB1vvCVE5rNydplEnt41Q6WxQwvcOjZaIkcSUg==}
peerDependencies:
react: 19.1.0
- react-native: "*"
+ react-native: '*'
expo-router@6.0.24:
- resolution:
- {
- integrity: sha512-KIssKXnwjrdCxPWC8GsMTfKTwng40VrCsO16O9x6fKlfUwBW8itxY9PpCGyQeMJkiEADa+DUhtrDgl+uHg4/DA==,
- }
+ resolution: {integrity: sha512-KIssKXnwjrdCxPWC8GsMTfKTwng40VrCsO16O9x6fKlfUwBW8itxY9PpCGyQeMJkiEADa+DUhtrDgl+uHg4/DA==}
peerDependencies:
- "@expo/metro-runtime": ^6.1.2
- "@react-navigation/drawer": ^7.5.0
- "@testing-library/react-native": ">= 12.0.0"
- expo: "*"
+ '@expo/metro-runtime': ^6.1.2
+ '@react-navigation/drawer': ^7.5.0
+ '@testing-library/react-native': '>= 12.0.0'
+ expo: '*'
expo-constants: ^18.0.13
expo-linking: ^8.0.12
react: 19.1.0
react-dom: 19.1.0
- react-native: "*"
- react-native-gesture-handler: "*"
- react-native-reanimated: "*"
- react-native-safe-area-context: ">= 5.4.0"
- react-native-screens: "*"
- react-native-web: "*"
+ react-native: '*'
+ react-native-gesture-handler: '*'
+ react-native-reanimated: '*'
+ react-native-safe-area-context: '>= 5.4.0'
+ react-native-screens: '*'
+ react-native-web: '*'
react-server-dom-webpack: ~19.0.4 || ~19.1.5 || ~19.2.4
peerDependenciesMeta:
- "@react-navigation/drawer":
+ '@react-navigation/drawer':
optional: true
- "@testing-library/react-native":
+ '@testing-library/react-native':
optional: true
react-dom:
optional: true
@@ -6475,1200 +3155,561 @@ packages:
optional: true
expo-screen-capture@8.0.9:
- resolution:
- {
- integrity: sha512-Xu3ZHlqxO2rEa/R5BOSyTBIJzgVA4sxzMf9jz03dSg5X/I9qwD984cSH9dABJY8NYLQmxKYUTN8jTbA9jzgcTw==,
- }
+ resolution: {integrity: sha512-Xu3ZHlqxO2rEa/R5BOSyTBIJzgVA4sxzMf9jz03dSg5X/I9qwD984cSH9dABJY8NYLQmxKYUTN8jTbA9jzgcTw==}
peerDependencies:
- expo: "*"
+ expo: '*'
react: 19.1.0
expo-server@1.0.7:
- resolution:
- {
- integrity: sha512-mcmyML3oXcqFUXUxtdtCL1O00ztNI2v76d+MdniXRUgHNxIcHZ05zo+DqBaOOT6LQnPk4vA4YHqQl7iGUfRb3g==,
- }
- engines: { node: ">=20.16.0" }
+ resolution: {integrity: sha512-mcmyML3oXcqFUXUxtdtCL1O00ztNI2v76d+MdniXRUgHNxIcHZ05zo+DqBaOOT6LQnPk4vA4YHqQl7iGUfRb3g==}
+ engines: {node: '>=20.16.0'}
expo-sharing@14.0.8:
- resolution:
- {
- integrity: sha512-A1pPr2iBrxypFDCWVAESk532HK+db7MFXbvO2sCV9ienaFXAk7lIBm6bkqgE6vzRd9O3RGdEGzYx80cYlc089Q==,
- }
+ resolution: {integrity: sha512-A1pPr2iBrxypFDCWVAESk532HK+db7MFXbvO2sCV9ienaFXAk7lIBm6bkqgE6vzRd9O3RGdEGzYx80cYlc089Q==}
peerDependencies:
- expo: "*"
+ expo: '*'
expo-splash-screen@31.0.13:
- resolution:
- {
- integrity: sha512-1epJLC1cDlwwj089R2h8cxaU5uk4ONVAC+vzGiTZH4YARQhL4Stlz1MbR6yAS173GMosvkE6CAeihR7oIbCkDA==,
- }
+ resolution: {integrity: sha512-1epJLC1cDlwwj089R2h8cxaU5uk4ONVAC+vzGiTZH4YARQhL4Stlz1MbR6yAS173GMosvkE6CAeihR7oIbCkDA==}
peerDependencies:
- expo: "*"
+ expo: '*'
expo-status-bar@3.0.9:
- resolution:
- {
- integrity: sha512-xyYyVg6V1/SSOZWh4Ni3U129XHCnFHBTcUo0dhWtFDrZbNp/duw5AGsQfb2sVeU0gxWHXSY1+5F0jnKYC7WuOw==,
- }
+ resolution: {integrity: sha512-xyYyVg6V1/SSOZWh4Ni3U129XHCnFHBTcUo0dhWtFDrZbNp/duw5AGsQfb2sVeU0gxWHXSY1+5F0jnKYC7WuOw==}
peerDependencies:
react: 19.1.0
- react-native: "*"
+ react-native: '*'
expo-structured-headers@5.0.0:
- resolution:
- {
- integrity: sha512-RmrBtnSphk5REmZGV+lcdgdpxyzio5rJw8CXviHE6qH5pKQQ83fhMEcigvrkBdsn2Efw2EODp4Yxl1/fqMvOZw==,
- }
+ resolution: {integrity: sha512-RmrBtnSphk5REmZGV+lcdgdpxyzio5rJw8CXviHE6qH5pKQQ83fhMEcigvrkBdsn2Efw2EODp4Yxl1/fqMvOZw==}
expo-symbols@1.0.8:
- resolution:
- {
- integrity: sha512-7bNjK350PaQgxBf0owpmSYkdZIpdYYmaPttDBb2WIp6rIKtcEtdzdfmhsc2fTmjBURHYkg36+eCxBFXO25/1hw==,
- }
+ resolution: {integrity: sha512-7bNjK350PaQgxBf0owpmSYkdZIpdYYmaPttDBb2WIp6rIKtcEtdzdfmhsc2fTmjBURHYkg36+eCxBFXO25/1hw==}
peerDependencies:
- expo: "*"
- react-native: "*"
+ expo: '*'
+ react-native: '*'
expo-system-ui@6.0.9:
- resolution:
- {
- integrity: sha512-eQTYGzw1V4RYiYHL9xDLYID3Wsec2aZS+ypEssmF64D38aDrqbDgz1a2MSlHLQp2jHXSs3FvojhZ9FVela1Zcg==,
- }
+ resolution: {integrity: sha512-eQTYGzw1V4RYiYHL9xDLYID3Wsec2aZS+ypEssmF64D38aDrqbDgz1a2MSlHLQp2jHXSs3FvojhZ9FVela1Zcg==}
peerDependencies:
- expo: "*"
- react-native: "*"
- react-native-web: "*"
+ expo: '*'
+ react-native: '*'
+ react-native-web: '*'
peerDependenciesMeta:
react-native-web:
optional: true
expo-updates-interface@2.0.0:
- resolution:
- {
- integrity: sha512-pTzAIufEZdVPKql6iMi5ylVSPqV1qbEopz9G6TSECQmnNde2nwq42PxdFBaUEd8IZJ/fdJLQnOT3m6+XJ5s7jg==,
- }
+ resolution: {integrity: sha512-pTzAIufEZdVPKql6iMi5ylVSPqV1qbEopz9G6TSECQmnNde2nwq42PxdFBaUEd8IZJ/fdJLQnOT3m6+XJ5s7jg==}
peerDependencies:
- expo: "*"
+ expo: '*'
expo-updates@29.0.18:
- resolution:
- {
- integrity: sha512-qn0YDM7wVwghQAaxb9NYzzwrmj+v8Djz5H+Zft4/myG9SPg4ICAfDy52IVF0K+/GH/oNgsFfzmmLl6hIkDu42g==,
- }
+ resolution: {integrity: sha512-qn0YDM7wVwghQAaxb9NYzzwrmj+v8Djz5H+Zft4/myG9SPg4ICAfDy52IVF0K+/GH/oNgsFfzmmLl6hIkDu42g==}
hasBin: true
peerDependencies:
- expo: "*"
+ expo: '*'
react: 19.1.0
- react-native: "*"
+ react-native: '*'
expo-web-browser@15.0.11:
- resolution:
- {
- integrity: sha512-r2LS4Ro6DgUPZkcaEfgt8mp9eJuoA93x11Jh7S6utFe0FEzvUNn2yFhxg8XVwESaaHGt2k5V8LuK36rsp0BeIw==,
- }
+ resolution: {integrity: sha512-r2LS4Ro6DgUPZkcaEfgt8mp9eJuoA93x11Jh7S6utFe0FEzvUNn2yFhxg8XVwESaaHGt2k5V8LuK36rsp0BeIw==}
peerDependencies:
- expo: "*"
- react-native: "*"
+ expo: '*'
+ react-native: '*'
expo@54.0.35:
- resolution:
- {
- integrity: sha512-E+tXpQwjGm5fK/uwa55p0Xx/kuo5dXDKfVJ95IargTNa5KiFt26lSTXXa9KnHbI4EDLwFD38/xTKZvzPTlGTdg==,
- }
+ resolution: {integrity: sha512-E+tXpQwjGm5fK/uwa55p0Xx/kuo5dXDKfVJ95IargTNa5KiFt26lSTXXa9KnHbI4EDLwFD38/xTKZvzPTlGTdg==}
hasBin: true
peerDependencies:
- "@expo/dom-webview": "*"
- "@expo/metro-runtime": "*"
+ '@expo/dom-webview': '*'
+ '@expo/metro-runtime': '*'
react: 19.1.0
- react-native: "*"
- react-native-webview: "*"
+ react-native: '*'
+ react-native-webview: '*'
peerDependenciesMeta:
- "@expo/dom-webview":
+ '@expo/dom-webview':
optional: true
- "@expo/metro-runtime":
+ '@expo/metro-runtime':
optional: true
react-native-webview:
optional: true
exponential-backoff@3.1.3:
- resolution:
- {
- integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==,
- }
-
- express-rate-limit@8.5.2:
- resolution:
- {
- integrity: sha512-5Kb34ipNX694DH48vN9irak1Qx30nb0PLYHXfJgw4YEjiC3ZEmZJhwOp+VfiCYwFzvFTdB9QkArYS5kXa2cx2A==,
- }
- engines: { node: ">= 16" }
- peerDependencies:
- express: ">= 4.11"
-
- express@5.2.1:
- resolution:
- {
- integrity: sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==,
- }
- engines: { node: ">= 18" }
-
- extend@3.0.2:
- resolution:
- {
- integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==,
- }
+ resolution: {integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==}
fast-deep-equal@3.1.3:
- resolution:
- {
- integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==,
- }
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
fast-fifo@1.3.2:
- resolution:
- {
- integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==,
- }
+ resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
fast-glob@3.3.2:
- resolution:
- {
- integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==,
- }
- engines: { node: ">=8.6.0" }
+ resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
+ engines: {node: '>=8.6.0'}
fast-json-stable-stringify@2.1.0:
- resolution:
- {
- integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==,
- }
-
- fast-sha256@1.3.0:
- resolution:
- {
- integrity: sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==,
- }
-
- fast-string-truncated-width@3.0.3:
- resolution:
- {
- integrity: sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==,
- }
-
- fast-string-width@3.0.2:
- resolution:
- {
- integrity: sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==,
- }
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
fast-uri@3.1.2:
- resolution:
- {
- integrity: sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==,
- }
-
- fast-wrap-ansi@0.2.2:
- resolution:
- {
- integrity: sha512-7F2Fl+TjRSenLqlU3UjSH0iyqopqoZIu7eZVpEirP2g1GtWa2G/ecEmBdgz31+Mxr+ELclgg6sokpSFIQiZ02Q==,
- }
+ resolution: {integrity: sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==}
fastq@1.20.1:
- resolution:
- {
- integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==,
- }
+ resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
fb-watchman@2.0.2:
- resolution:
- {
- integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==,
- }
+ resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
fdir@6.5.0:
- resolution:
- {
- integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==,
- }
- engines: { node: ">=12.0.0" }
+ resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
+ engines: {node: '>=12.0.0'}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
picomatch:
optional: true
- fetch-blob@3.2.0:
- resolution:
- {
- integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==,
- }
- engines: { node: ^12.20 || >= 14.13 }
-
fetch-retry@4.1.1:
- resolution:
- {
- integrity: sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==,
- }
+ resolution: {integrity: sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==}
figures@3.2.0:
- resolution:
- {
- integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==,
- }
- engines: { node: ">=8" }
-
- file-type@22.0.1:
- resolution:
- {
- integrity: sha512-ww5Mhre0EE+jmBvOXTmXAbEMuZE7uX4a3+oRCQFNj8w++g3ev913N6tXQz0XTXbueQ5TWQfm6BdaViEHHn8bhA==,
- }
- engines: { node: ">=22" }
+ resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
+ engines: {node: '>=8'}
filelist@1.0.6:
- resolution:
- {
- integrity: sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA==,
- }
+ resolution: {integrity: sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA==}
fill-range@7.1.1:
- resolution:
- {
- integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
+ engines: {node: '>=8'}
filter-obj@1.1.0:
- resolution:
- {
- integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==}
+ engines: {node: '>=0.10.0'}
finalhandler@1.1.2:
- resolution:
- {
- integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==,
- }
- engines: { node: ">= 0.8" }
-
- finalhandler@2.1.1:
- resolution:
- {
- integrity: sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==,
- }
- engines: { node: ">= 18.0.0" }
+ resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
+ engines: {node: '>= 0.8'}
find-up@4.1.0:
- resolution:
- {
- integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
+ engines: {node: '>=8'}
find-yarn-workspace-root@2.0.0:
- resolution:
- {
- integrity: sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==,
- }
+ resolution: {integrity: sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==}
flow-enums-runtime@0.0.6:
- resolution:
- {
- integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==,
- }
+ resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==}
fontfaceobserver@2.3.0:
- resolution:
- {
- integrity: sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==,
- }
+ resolution: {integrity: sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==}
for-each@0.3.5:
- resolution:
- {
- integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
+ engines: {node: '>= 0.4'}
foreground-child@3.3.1:
- resolution:
- {
- integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
+ engines: {node: '>=14'}
form-data@4.0.5:
- resolution:
- {
- integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==,
- }
- engines: { node: ">= 6" }
-
- formdata-polyfill@4.0.10:
- resolution:
- {
- integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==,
- }
- engines: { node: ">=12.20.0" }
-
- forwarded@0.2.0:
- resolution:
- {
- integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
+ engines: {node: '>= 6'}
freeport-async@2.0.0:
- resolution:
- {
- integrity: sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==}
+ engines: {node: '>=8'}
fresh@0.5.2:
- resolution:
- {
- integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==,
- }
- engines: { node: ">= 0.6" }
-
- fresh@2.0.0:
- resolution:
- {
- integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==,
- }
- engines: { node: ">= 0.8" }
-
- fs-constants@1.0.0:
- resolution:
- {
- integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==,
- }
+ resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
+ engines: {node: '>= 0.6'}
fs-extra@10.1.0:
- resolution:
- {
- integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
+ engines: {node: '>=12'}
fs-extra@11.2.0:
- resolution:
- {
- integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==,
- }
- engines: { node: ">=14.14" }
+ resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
+ engines: {node: '>=14.14'}
fs-extra@9.0.0:
- resolution:
- {
- integrity: sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==}
+ engines: {node: '>=10'}
fs-extra@9.1.0:
- resolution:
- {
- integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
+ engines: {node: '>=10'}
fs.realpath@1.0.0:
- resolution:
- {
- integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==,
- }
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
fsevents@2.3.3:
- resolution:
- {
- integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==,
- }
- engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 }
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
function-bind@1.1.2:
- resolution:
- {
- integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==,
- }
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
gauge@3.0.2:
- resolution:
- {
- integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==}
+ engines: {node: '>=10'}
deprecated: This package is no longer supported.
- gaxios@7.1.5:
- resolution:
- {
- integrity: sha512-5FZy72Rh8LhtjmvDrKkI+lVhrsQrVKVsItxMoDm5mNQE+xR0WVIIs+jzPSJgBvKVsLi24fZhXJIsNI0bihDzFg==,
- }
- engines: { node: ">=18" }
-
- gcp-metadata@8.1.2:
- resolution:
- {
- integrity: sha512-zV/5HKTfCeKWnxG0Dmrw51hEWFGfcF2xiXqcA3+J90WDuP0SvoiSO5ORvcBsifmx/FoIjgQN3oNOGaQ5PhLFkg==,
- }
- engines: { node: ">=18" }
-
generator-function@2.0.1:
- resolution:
- {
- integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
+ engines: {node: '>= 0.4'}
gensync@1.0.0-beta.2:
- resolution:
- {
- integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==,
- }
- engines: { node: ">=6.9.0" }
+ resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
+ engines: {node: '>=6.9.0'}
get-caller-file@2.0.5:
- resolution:
- {
- integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==,
- }
- engines: { node: 6.* || 8.* || >= 10.* }
-
- get-east-asian-width@1.6.0:
- resolution:
- {
- integrity: sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
+ engines: {node: 6.* || 8.* || >= 10.*}
get-intrinsic@1.3.0:
- resolution:
- {
- integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
+ engines: {node: '>= 0.4'}
get-nonce@1.0.1:
- resolution:
- {
- integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
+ engines: {node: '>=6'}
get-package-type@0.1.0:
- resolution:
- {
- integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
+ engines: {node: '>=8.0.0'}
get-proto@1.0.1:
- resolution:
- {
- integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
+ engines: {node: '>= 0.4'}
get-stream@6.0.1:
- resolution:
- {
- integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
+ engines: {node: '>=10'}
getenv@1.0.0:
- resolution:
- {
- integrity: sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==}
+ engines: {node: '>=6'}
getenv@2.0.0:
- resolution:
- {
- integrity: sha512-VilgtJj/ALgGY77fiLam5iD336eSWi96Q15JSAG1zi8NRBysm3LXKdGnHb4m5cuyxvOLQQKWpBZAT6ni4FI2iQ==,
- }
- engines: { node: ">=6" }
-
- github-from-package@0.0.0:
- resolution:
- {
- integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==,
- }
+ resolution: {integrity: sha512-VilgtJj/ALgGY77fiLam5iD336eSWi96Q15JSAG1zi8NRBysm3LXKdGnHb4m5cuyxvOLQQKWpBZAT6ni4FI2iQ==}
+ engines: {node: '>=6'}
glob-parent@5.1.2:
- resolution:
- {
- integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
+ engines: {node: '>= 6'}
glob@10.5.0:
- resolution:
- {
- integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==,
- }
+ resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==}
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
hasBin: true
glob@13.0.6:
- resolution:
- {
- integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==,
- }
- engines: { node: 18 || 20 || >=22 }
+ resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==}
+ engines: {node: 18 || 20 || >=22}
glob@6.0.4:
- resolution:
- {
- integrity: sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==,
- }
+ resolution: {integrity: sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==}
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
glob@7.2.3:
- resolution:
- {
- integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==,
- }
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
globby@11.1.0:
- resolution:
- {
- integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
+ engines: {node: '>=10'}
golden-fleece@1.0.9:
- resolution:
- {
- integrity: sha512-YSwLaGMOgSBx9roJlNLL12c+FRiw7VECphinc6mGucphc/ZxTHgdEz6gmJqH6NOzYEd/yr64hwjom5pZ+tJVpg==,
- }
-
- google-auth-library@10.7.0:
- resolution:
- {
- integrity: sha512-QpTAbNJ36TliZLx3TTtahR8HG0hN9RllL1e3FymOvQSIKK8JmgV58H924ub2wa2DsS3ANjjP1Aw1N+Ramc8hqQ==,
- }
- engines: { node: ">=18" }
-
- google-logging-utils@1.1.3:
- resolution:
- {
- integrity: sha512-eAmLkjDjAFCVXg7A1unxHsLf961m6y17QFqXqAXGj/gVkKFrEICfStRfwUlGNfeCEjNRa32JEWOUTlYXPyyKvA==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-YSwLaGMOgSBx9roJlNLL12c+FRiw7VECphinc6mGucphc/ZxTHgdEz6gmJqH6NOzYEd/yr64hwjom5pZ+tJVpg==}
gopd@1.2.0:
- resolution:
- {
- integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
+ engines: {node: '>= 0.4'}
graceful-fs@4.2.11:
- resolution:
- {
- integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==,
- }
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
gradle-to-js@2.0.1:
- resolution:
- {
- integrity: sha512-is3hDn9zb8XXnjbEeAEIqxTpLHUiGBqjegLmXPuyMBfKAggpadWFku4/AP8iYAGBX6qR9/5UIUIp47V0XI3aMw==,
- }
+ resolution: {integrity: sha512-is3hDn9zb8XXnjbEeAEIqxTpLHUiGBqjegLmXPuyMBfKAggpadWFku4/AP8iYAGBX6qR9/5UIUIp47V0XI3aMw==}
hasBin: true
- grammy@1.43.0:
- resolution:
- {
- integrity: sha512-7dYm06A945mXuIk/5HUlSjeyIYChW8vCEiU2dkOKKqJJzwAWxTkCc91Eqbz7TgODh2rtFFKWI/fekowWHOkmjQ==,
- }
- engines: { node: ^12.20.0 || >=14.13.1 }
-
graphql-tag@2.12.6:
- resolution:
- {
- integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==}
+ engines: {node: '>=10'}
peerDependencies:
graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
graphql@16.8.1:
- resolution:
- {
- integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==,
- }
- engines: { node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0 }
+ resolution: {integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==}
+ engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
has-flag@3.0.0:
- resolution:
- {
- integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
+ engines: {node: '>=4'}
has-flag@4.0.0:
- resolution:
- {
- integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
+ engines: {node: '>=8'}
has-property-descriptors@1.0.2:
- resolution:
- {
- integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==,
- }
+ resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
has-symbols@1.1.0:
- resolution:
- {
- integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
+ engines: {node: '>= 0.4'}
has-tostringtag@1.0.2:
- resolution:
- {
- integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
+ engines: {node: '>= 0.4'}
has-unicode@2.0.1:
- resolution:
- {
- integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==,
- }
+ resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
hasown@2.0.4:
- resolution:
- {
- integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==}
+ engines: {node: '>= 0.4'}
hermes-estree@0.29.1:
- resolution:
- {
- integrity: sha512-jl+x31n4/w+wEqm0I2r4CMimukLbLQEYpisys5oCre611CI5fc9TxhqkBBCJ1edDG4Kza0f7CgNz8xVMLZQOmQ==,
- }
+ resolution: {integrity: sha512-jl+x31n4/w+wEqm0I2r4CMimukLbLQEYpisys5oCre611CI5fc9TxhqkBBCJ1edDG4Kza0f7CgNz8xVMLZQOmQ==}
hermes-estree@0.32.0:
- resolution:
- {
- integrity: sha512-KWn3BqnlDOl97Xe1Yviur6NbgIZ+IP+UVSpshlZWkq+EtoHg6/cwiDj/osP9PCEgFE15KBm1O55JRwbMEm5ejQ==,
- }
+ resolution: {integrity: sha512-KWn3BqnlDOl97Xe1Yviur6NbgIZ+IP+UVSpshlZWkq+EtoHg6/cwiDj/osP9PCEgFE15KBm1O55JRwbMEm5ejQ==}
hermes-estree@0.35.0:
- resolution:
- {
- integrity: sha512-xVx5Opwy8Oo1I5yGpVRhCvWL/iV3M+ylksSKVNlxxD90cpDpR/AR1jLYqK8HWihm065a6UI3HeyAmYzwS8NOOg==,
- }
+ resolution: {integrity: sha512-xVx5Opwy8Oo1I5yGpVRhCvWL/iV3M+ylksSKVNlxxD90cpDpR/AR1jLYqK8HWihm065a6UI3HeyAmYzwS8NOOg==}
hermes-parser@0.29.1:
- resolution:
- {
- integrity: sha512-xBHWmUtRC5e/UL0tI7Ivt2riA/YBq9+SiYFU7C1oBa/j2jYGlIF9043oak1F47ihuDIxQ5nbsKueYJDRY02UgA==,
- }
+ resolution: {integrity: sha512-xBHWmUtRC5e/UL0tI7Ivt2riA/YBq9+SiYFU7C1oBa/j2jYGlIF9043oak1F47ihuDIxQ5nbsKueYJDRY02UgA==}
hermes-parser@0.32.0:
- resolution:
- {
- integrity: sha512-g4nBOWFpuiTqjR3LZdRxKUkij9iyveWeuks7INEsMX741f3r9xxrOe8TeQfUxtda0eXmiIFiMQzoeSQEno33Hw==,
- }
+ resolution: {integrity: sha512-g4nBOWFpuiTqjR3LZdRxKUkij9iyveWeuks7INEsMX741f3r9xxrOe8TeQfUxtda0eXmiIFiMQzoeSQEno33Hw==}
hermes-parser@0.35.0:
- resolution:
- {
- integrity: sha512-9JLjeHxBx8T4CAsydZR49PNZUaix+WpQJwu9p2010lu+7Kwl6D/7wYFFJxoz+aXkaaClp9Zfg6W6/zVlSJORaA==,
- }
+ resolution: {integrity: sha512-9JLjeHxBx8T4CAsydZR49PNZUaix+WpQJwu9p2010lu+7Kwl6D/7wYFFJxoz+aXkaaClp9Zfg6W6/zVlSJORaA==}
hi-base32@0.5.1:
- resolution:
- {
- integrity: sha512-EmBBpvdYh/4XxsnUybsPag6VikPYnN30td+vQk+GI3qpahVEG9+gTkG0aXVxTjBqQ5T6ijbWIu77O+C5WFWsnA==,
- }
-
- highlight.js@11.11.1:
- resolution:
- {
- integrity: sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==,
- }
- engines: { node: ">=12.0.0" }
+ resolution: {integrity: sha512-EmBBpvdYh/4XxsnUybsPag6VikPYnN30td+vQk+GI3qpahVEG9+gTkG0aXVxTjBqQ5T6ijbWIu77O+C5WFWsnA==}
hoist-non-react-statics@3.3.2:
- resolution:
- {
- integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==,
- }
-
- hono@4.12.24:
- resolution:
- {
- integrity: sha512-I36D1s+HgQc55KbhEr4iybfxv/9o1zdpw+XEM6dJa91LqQD0HCoSGdxpRJCZE+aavs87j4V3Ls2OJzq8C/U4iw==,
- }
- engines: { node: ">=16.9.0" }
-
- hosted-git-info@10.1.1:
- resolution:
- {
- integrity: sha512-DeOnSPAvOndYKfw075gt8yZzQ7S2hNztw34zBTfhIzLhmBTswIBg5/y+pqu/VD5cYWm5goAFTusDmUEmKZ0PEQ==,
- }
- engines: { node: ^22.22.2 || ^24.15.0 || >=26.0.0 }
+ resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
hosted-git-info@7.0.2:
- resolution:
- {
- integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
+ engines: {node: ^16.14.0 || >=18.0.0}
html-encoding-sniffer@3.0.0:
- resolution:
- {
- integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==}
+ engines: {node: '>=12'}
html-escaper@2.0.2:
- resolution:
- {
- integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==,
- }
-
- html-escaper@3.0.3:
- resolution:
- {
- integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==,
- }
-
- htmlparser2@10.1.0:
- resolution:
- {
- integrity: sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==,
- }
+ resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
http-call@5.3.0:
- resolution:
- {
- integrity: sha512-ahwimsC23ICE4kPl9xTBjKB4inbRaeLyZeRunC/1Jy/Z6X8tv22MEAjK+KBOMSVLaqXPTTmd8638waVIKLGx2w==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-ahwimsC23ICE4kPl9xTBjKB4inbRaeLyZeRunC/1Jy/Z6X8tv22MEAjK+KBOMSVLaqXPTTmd8638waVIKLGx2w==}
+ engines: {node: '>=8.0.0'}
http-errors@2.0.1:
- resolution:
- {
- integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
+ engines: {node: '>= 0.8'}
http-proxy-agent@5.0.0:
- resolution:
- {
- integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==,
- }
- engines: { node: ">= 6" }
-
- http_ece@1.2.0:
- resolution:
- {
- integrity: sha512-JrF8SSLVmcvc5NducxgyOrKXe3EsyHMgBFgSaIUGmArKe+rwr0uphRkRXvwiom3I+fpIfoItveHrfudL8/rxuA==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
+ engines: {node: '>= 6'}
https-proxy-agent@5.0.1:
- resolution:
- {
- integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
+ engines: {node: '>= 6'}
https-proxy-agent@7.0.6:
- resolution:
- {
- integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==,
- }
- engines: { node: ">= 14" }
+ resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
+ engines: {node: '>= 14'}
human-signals@2.1.0:
- resolution:
- {
- integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==,
- }
- engines: { node: ">=10.17.0" }
+ resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
+ engines: {node: '>=10.17.0'}
hyperlinker@1.0.0:
- resolution:
- {
- integrity: sha512-Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ==}
+ engines: {node: '>=4'}
iconv-lite@0.6.3:
- resolution:
- {
- integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==,
- }
- engines: { node: ">=0.10.0" }
-
- iconv-lite@0.7.2:
- resolution:
- {
- integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
+ engines: {node: '>=0.10.0'}
ieee754@1.2.1:
- resolution:
- {
- integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==,
- }
+ resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
ignore@5.3.0:
- resolution:
- {
- integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==,
- }
- engines: { node: ">= 4" }
+ resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==}
+ engines: {node: '>= 4'}
ignore@5.3.2:
- resolution:
- {
- integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==,
- }
- engines: { node: ">= 4" }
-
- ignore@7.0.5:
- resolution:
- {
- integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==,
- }
- engines: { node: ">= 4" }
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
+ engines: {node: '>= 4'}
image-size@1.2.1:
- resolution:
- {
- integrity: sha512-rH+46sQJ2dlwfjfhCyNx5thzrv+dtmBIhPHk0zgRUukHzZ/kRueTJXoYYsclBaKcSMBWuGbOFXtioLpzTb5euw==,
- }
- engines: { node: ">=16.x" }
+ resolution: {integrity: sha512-rH+46sQJ2dlwfjfhCyNx5thzrv+dtmBIhPHk0zgRUukHzZ/kRueTJXoYYsclBaKcSMBWuGbOFXtioLpzTb5euw==}
+ engines: {node: '>=16.x'}
hasBin: true
- immediate@3.0.6:
- resolution:
- {
- integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==,
- }
-
import-local@3.2.0:
- resolution:
- {
- integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==}
+ engines: {node: '>=8'}
hasBin: true
imurmurhash@0.1.4:
- resolution:
- {
- integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==,
- }
- engines: { node: ">=0.8.19" }
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
+ engines: {node: '>=0.8.19'}
indent-string@4.0.0:
- resolution:
- {
- integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
+ engines: {node: '>=8'}
inflight@1.0.6:
- resolution:
- {
- integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==,
- }
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
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.
inherits@2.0.4:
- resolution:
- {
- integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==,
- }
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
ini@1.3.8:
- resolution:
- {
- integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==,
- }
+ resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
invariant@2.2.4:
- resolution:
- {
- integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==,
- }
-
- ip-address@10.2.0:
- resolution:
- {
- integrity: sha512-/+S6j4E9AHvW9SWMSEY9Xfy66O5PWvVEJ08O0y5JGyEKQpojb0K0GKpz/v5HJ/G0vi3D2sjGK78119oXZeE0qA==,
- }
- engines: { node: ">= 12" }
-
- ipaddr.js@1.9.1:
- resolution:
- {
- integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==,
- }
- engines: { node: ">= 0.10" }
+ resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
is-arguments@1.2.0:
- resolution:
- {
- integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==}
+ engines: {node: '>= 0.4'}
is-arrayish@0.2.1:
- resolution:
- {
- integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==,
- }
+ resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
is-arrayish@0.3.4:
- resolution:
- {
- integrity: sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==,
- }
+ resolution: {integrity: sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==}
is-buffer@1.1.6:
- resolution:
- {
- integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==,
- }
+ resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
is-callable@1.2.7:
- resolution:
- {
- integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
+ engines: {node: '>= 0.4'}
is-core-module@2.16.2:
- resolution:
- {
- integrity: sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==}
+ engines: {node: '>= 0.4'}
is-docker@2.2.1:
- resolution:
- {
- integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
+ engines: {node: '>=8'}
hasBin: true
is-extglob@2.1.1:
- resolution:
- {
- integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
+ engines: {node: '>=0.10.0'}
is-fullwidth-code-point@3.0.0:
- resolution:
- {
- integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
+ engines: {node: '>=8'}
is-generator-fn@2.1.0:
- resolution:
- {
- integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
+ engines: {node: '>=6'}
is-generator-function@1.1.2:
- resolution:
- {
- integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==}
+ engines: {node: '>= 0.4'}
is-glob@4.0.3:
- resolution:
- {
- integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
+ engines: {node: '>=0.10.0'}
is-interactive@1.0.0:
- resolution:
- {
- integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
+ engines: {node: '>=8'}
is-number@7.0.0:
- resolution:
- {
- integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==,
- }
- engines: { node: ">=0.12.0" }
+ resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
+ engines: {node: '>=0.12.0'}
is-potential-custom-element-name@1.0.1:
- resolution:
- {
- integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==,
- }
-
- is-promise@4.0.0:
- resolution:
- {
- integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==,
- }
+ resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
is-regex@1.2.1:
- resolution:
- {
- integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
+ engines: {node: '>= 0.4'}
is-retry-allowed@1.2.0:
- resolution:
- {
- integrity: sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==}
+ engines: {node: '>=0.10.0'}
is-stream@2.0.1:
- resolution:
- {
- integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
+ engines: {node: '>=8'}
is-typed-array@1.1.15:
- resolution:
- {
- integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
+ engines: {node: '>= 0.4'}
is-unicode-supported@0.1.0:
- resolution:
- {
- integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
+ engines: {node: '>=10'}
is-wsl@2.2.0:
- resolution:
- {
- integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==,
- }
- engines: { node: ">=8" }
-
- isarray@1.0.0:
- resolution:
- {
- integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==,
- }
+ resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
+ engines: {node: '>=8'}
isarray@2.0.5:
- resolution:
- {
- integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==,
- }
+ resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
isexe@2.0.0:
- resolution:
- {
- integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==,
- }
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
istanbul-lib-coverage@3.2.2:
- resolution:
- {
- integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
+ engines: {node: '>=8'}
istanbul-lib-instrument@5.2.1:
- resolution:
- {
- integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
+ engines: {node: '>=8'}
istanbul-lib-instrument@6.0.3:
- resolution:
- {
- integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==}
+ engines: {node: '>=10'}
istanbul-lib-report@3.0.1:
- resolution:
- {
- integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
+ engines: {node: '>=10'}
istanbul-lib-source-maps@4.0.1:
- resolution:
- {
- integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
+ engines: {node: '>=10'}
istanbul-reports@3.2.0:
- resolution:
- {
- integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==}
+ engines: {node: '>=8'}
jackspeak@3.4.3:
- resolution:
- {
- integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==,
- }
+ resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
jake@10.9.4:
- resolution:
- {
- integrity: sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==}
+ engines: {node: '>=10'}
hasBin: true
jest-changed-files@29.7.0:
- resolution:
- {
- integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-circus@29.7.0:
- resolution:
- {
- integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-cli@29.7.0:
- resolution:
- {
- integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
@@ -7677,54 +3718,36 @@ packages:
optional: true
jest-config@29.7.0:
- resolution:
- {
- integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
- "@types/node": "*"
- ts-node: ">=9.0.0"
+ '@types/node': '*'
+ ts-node: '>=9.0.0'
peerDependenciesMeta:
- "@types/node":
+ '@types/node':
optional: true
ts-node:
optional: true
jest-diff@29.7.0:
- resolution:
- {
- integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-diff@30.4.1:
- resolution:
- {
- integrity: sha512-CRpFK0RtLriVDGcPPAnR6HMVI8bSR2jnUIgralhauzYQZIb4RH9AtEInTuQr65LmmGggGcRT6HIASxwqsVsmlA==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-CRpFK0RtLriVDGcPPAnR6HMVI8bSR2jnUIgralhauzYQZIb4RH9AtEInTuQr65LmmGggGcRT6HIASxwqsVsmlA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-docblock@29.7.0:
- resolution:
- {
- integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-each@29.7.0:
- resolution:
- {
- integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-environment-jsdom@29.7.0:
- resolution:
- {
- integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
canvas: ^2.5.0
peerDependenciesMeta:
@@ -7732,206 +3755,125 @@ packages:
optional: true
jest-environment-node@29.7.0:
- resolution:
- {
- integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-expo@55.0.18:
- resolution:
- {
- integrity: sha512-kfa3iwTHSf5+ZOkxpWtjqZZ78AZvCSpYMkW/mSMNdffFAfEIqD2x1+WNf38U0vAhByaiGYP+m+Hgo4isOhYjkQ==,
- }
+ resolution: {integrity: sha512-kfa3iwTHSf5+ZOkxpWtjqZZ78AZvCSpYMkW/mSMNdffFAfEIqD2x1+WNf38U0vAhByaiGYP+m+Hgo4isOhYjkQ==}
hasBin: true
peerDependencies:
- expo: "*"
- react-native: "*"
+ expo: '*'
+ react-native: '*'
react-server-dom-webpack: ~19.0.4 || ~19.1.5 || ~19.2.4
peerDependenciesMeta:
react-server-dom-webpack:
optional: true
jest-get-type@29.6.3:
- resolution:
- {
- integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-haste-map@29.7.0:
- resolution:
- {
- integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-leak-detector@29.7.0:
- resolution:
- {
- integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-matcher-utils@29.7.0:
- resolution:
- {
- integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-matcher-utils@30.4.1:
- resolution:
- {
- integrity: sha512-zvYfX5CaeEkFrrLS9suWe9rvJrm9J1Iv3ua8kIBv9GEPzcnsfBf0bob37la7s67fs0nlBC3EuvkOLnXQKxtx4A==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-zvYfX5CaeEkFrrLS9suWe9rvJrm9J1Iv3ua8kIBv9GEPzcnsfBf0bob37la7s67fs0nlBC3EuvkOLnXQKxtx4A==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-message-util@29.7.0:
- resolution:
- {
- integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-message-util@30.4.1:
- resolution:
- {
- integrity: sha512-kwCKIvq0MCW1HzLoGola9Te6JUdzgV0loyKJ3Qghrkz9i5/RRIHsL95BMQc2HBBhlBKC4j22K9p11TGHH8RBpQ==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-kwCKIvq0MCW1HzLoGola9Te6JUdzgV0loyKJ3Qghrkz9i5/RRIHsL95BMQc2HBBhlBKC4j22K9p11TGHH8RBpQ==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-mock@29.7.0:
- resolution:
- {
- integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-mock@30.4.1:
- resolution:
- {
- integrity: sha512-/i8SVb8/NSB7RfNi8gfqu8gxLV23KaL5EpAttyb9iz8qWRIqXRLflycz/32wXsYkOnaUlx8NAKnJYtpsmXUmfw==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-/i8SVb8/NSB7RfNi8gfqu8gxLV23KaL5EpAttyb9iz8qWRIqXRLflycz/32wXsYkOnaUlx8NAKnJYtpsmXUmfw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-pnp-resolver@1.2.3:
- resolution:
- {
- integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
+ engines: {node: '>=6'}
peerDependencies:
- jest-resolve: "*"
+ jest-resolve: '*'
peerDependenciesMeta:
jest-resolve:
optional: true
jest-regex-util@29.6.3:
- resolution:
- {
- integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-regex-util@30.4.0:
- resolution:
- {
- integrity: sha512-mWlvLviKIgIQ8VCuM1xRdD0TWp3zlzionlmDBjuXVBs+VkmXq6FgW9T4Emr7oGz/Rk6feDCGyiugolcQEyp3mg==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-mWlvLviKIgIQ8VCuM1xRdD0TWp3zlzionlmDBjuXVBs+VkmXq6FgW9T4Emr7oGz/Rk6feDCGyiugolcQEyp3mg==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-resolve-dependencies@29.7.0:
- resolution:
- {
- integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-resolve@29.7.0:
- resolution:
- {
- integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-runner@29.7.0:
- resolution:
- {
- integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-runtime@29.7.0:
- resolution:
- {
- integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-snapshot@29.7.0:
- resolution:
- {
- integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-util@29.7.0:
- resolution:
- {
- integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-util@30.4.1:
- resolution:
- {
- integrity: sha512-vjQb1sACEiv13DKJMDToJpzVW0joCsIQrmbg0fi7CyOOt+g9jTuQl2A216pWRBYhOVt53XbL/2LbMKg1BECWOw==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-vjQb1sACEiv13DKJMDToJpzVW0joCsIQrmbg0fi7CyOOt+g9jTuQl2A216pWRBYhOVt53XbL/2LbMKg1BECWOw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-validate@29.7.0:
- resolution:
- {
- integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-watch-select-projects@2.0.0:
- resolution:
- {
- integrity: sha512-j00nW4dXc2NiCW6znXgFLF9g8PJ0zP25cpQ1xRro/HU2GBfZQFZD0SoXnAlaoKkIY4MlfTMkKGbNXFpvCdjl1w==,
- }
+ resolution: {integrity: sha512-j00nW4dXc2NiCW6znXgFLF9g8PJ0zP25cpQ1xRro/HU2GBfZQFZD0SoXnAlaoKkIY4MlfTMkKGbNXFpvCdjl1w==}
jest-watch-typeahead@2.2.1:
- resolution:
- {
- integrity: sha512-jYpYmUnTzysmVnwq49TAxlmtOAwp8QIqvZyoofQFn8fiWhEDZj33ZXzg3JA4nGnzWFm1hbWf3ADpteUokvXgFA==,
- }
- engines: { node: ^14.17.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-jYpYmUnTzysmVnwq49TAxlmtOAwp8QIqvZyoofQFn8fiWhEDZj33ZXzg3JA4nGnzWFm1hbWf3ADpteUokvXgFA==}
+ engines: {node: ^14.17.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
jest: ^27.0.0 || ^28.0.0 || ^29.0.0
jest-watcher@29.7.0:
- resolution:
- {
- integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-worker@29.7.0:
- resolution:
- {
- integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest@29.7.0:
- resolution:
- {
- integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
@@ -7940,86 +3882,37 @@ packages:
optional: true
jimp-compact@0.16.1:
- resolution:
- {
- integrity: sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==,
- }
-
- jiti@2.7.0:
- resolution:
- {
- integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==,
- }
- hasBin: true
+ resolution: {integrity: sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==}
jks-js@1.1.0:
- resolution:
- {
- integrity: sha512-irWi8S2V029Vic63w0/TYa8NIZwXu9oeMtHQsX51JDIVBo0lrEaOoyM8ALEEh5PVKD6TrA26FixQK6TzT7dHqA==,
- }
+ resolution: {integrity: sha512-irWi8S2V029Vic63w0/TYa8NIZwXu9oeMtHQsX51JDIVBo0lrEaOoyM8ALEEh5PVKD6TrA26FixQK6TzT7dHqA==}
joi@17.11.0:
- resolution:
- {
- integrity: sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==,
- }
+ resolution: {integrity: sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==}
joi@17.13.3:
- resolution:
- {
- integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==,
- }
+ resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==}
join-component@1.1.0:
- resolution:
- {
- integrity: sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==,
- }
-
- jose@6.2.3:
- resolution:
- {
- integrity: sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw==,
- }
+ resolution: {integrity: sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==}
js-tokens@4.0.0:
- resolution:
- {
- integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==,
- }
-
- js-tokens@9.0.1:
- resolution:
- {
- integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==,
- }
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
js-yaml@3.14.2:
- resolution:
- {
- integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==,
- }
+ resolution: {integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==}
hasBin: true
js-yaml@4.1.1:
- resolution:
- {
- integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==,
- }
+ resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
hasBin: true
jsc-safe-url@0.2.4:
- resolution:
- {
- integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==,
- }
+ resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==}
jsdom@20.0.3:
- resolution:
- {
- integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==}
+ engines: {node: '>=14'}
peerDependencies:
canvas: ^2.5.0
peerDependenciesMeta:
@@ -8027,1082 +3920,532 @@ packages:
optional: true
jsep@1.4.0:
- resolution:
- {
- integrity: sha512-B7qPcEVE3NVkmSJbaYxvv4cHkVW7DQsZz13pUMrfS8z8Q/BuShN+gcTXrUlPiGqM2/t/EEaI030bpxMqY8gMlw==,
- }
- engines: { node: ">= 10.16.0" }
+ resolution: {integrity: sha512-B7qPcEVE3NVkmSJbaYxvv4cHkVW7DQsZz13pUMrfS8z8Q/BuShN+gcTXrUlPiGqM2/t/EEaI030bpxMqY8gMlw==}
+ engines: {node: '>= 10.16.0'}
jsesc@3.1.0:
- resolution:
- {
- integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
+ engines: {node: '>=6'}
hasBin: true
json-bigint@1.0.0:
- resolution:
- {
- integrity: sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==,
- }
+ resolution: {integrity: sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==}
json-parse-better-errors@1.0.2:
- resolution:
- {
- integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==,
- }
+ resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
json-parse-even-better-errors@2.3.1:
- resolution:
- {
- integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==,
- }
-
- json-schema-to-ts@3.1.1:
- resolution:
- {
- integrity: sha512-+DWg8jCJG2TEnpy7kOm/7/AxaYoaRbjVB4LFZLySZlWn8exGs3A4OLJR966cVvU26N7X9TWxl+Jsw7dzAqKT6g==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
json-schema-traverse@1.0.0:
- resolution:
- {
- integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==,
- }
-
- json-schema-typed@8.0.2:
- resolution:
- {
- integrity: sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==,
- }
+ resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
json-stable-stringify@1.3.0:
- resolution:
- {
- integrity: sha512-qtYiSSFlwot9XHtF9bD9c7rwKjr+RecWT//ZnPvSmEjpV5mmPOCN4j8UjY5hbjNkOwZ/jQv3J6R1/pL7RwgMsg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-qtYiSSFlwot9XHtF9bD9c7rwKjr+RecWT//ZnPvSmEjpV5mmPOCN4j8UjY5hbjNkOwZ/jQv3J6R1/pL7RwgMsg==}
+ engines: {node: '>= 0.4'}
json5@2.2.3:
- resolution:
- {
- integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
+ engines: {node: '>=6'}
hasBin: true
jsonfile@6.2.1:
- resolution:
- {
- integrity: sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==,
- }
+ resolution: {integrity: sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==}
jsonify@0.0.1:
- resolution:
- {
- integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==,
- }
-
- jszip@3.10.1:
- resolution:
- {
- integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==,
- }
-
- jwa@2.0.1:
- resolution:
- {
- integrity: sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==,
- }
-
- jws@4.0.1:
- resolution:
- {
- integrity: sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==,
- }
+ resolution: {integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==}
keychain@1.5.0:
- resolution:
- {
- integrity: sha512-liyp4r+93RI7EB2jhwaRd4MWfdgHH6shuldkaPMkELCJjMFvOOVXuTvw1pGqFfhsrgA6OqfykWWPQgBjQakVag==,
- }
+ resolution: {integrity: sha512-liyp4r+93RI7EB2jhwaRd4MWfdgHH6shuldkaPMkELCJjMFvOOVXuTvw1pGqFfhsrgA6OqfykWWPQgBjQakVag==}
klaw-sync@6.0.0:
- resolution:
- {
- integrity: sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==,
- }
+ resolution: {integrity: sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==}
kleur@3.0.3:
- resolution:
- {
- integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==,
- }
- engines: { node: ">=6" }
-
- kysely@0.29.2:
- resolution:
- {
- integrity: sha512-s6WVJyEZrbm6jhBpiKHsGHyePMrVQKJ85wZCFCr9W4QHv6WTjWIrdvTmO9hDEA3bNK0xkrE2DqrHsXMLWuZpQg==,
- }
- engines: { node: ">=22.0.0" }
+ resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
+ engines: {node: '>=6'}
lan-network@0.2.1:
- resolution:
- {
- integrity: sha512-ONPnazC96VKDntab9j9JKwIWhZ4ZUceB4A9Epu4Ssg0hYFmtHZSeQ+n15nIwTFmcBUKtExOer8WTJ4GF9MO64A==,
- }
+ resolution: {integrity: sha512-ONPnazC96VKDntab9j9JKwIWhZ4ZUceB4A9Epu4Ssg0hYFmtHZSeQ+n15nIwTFmcBUKtExOer8WTJ4GF9MO64A==}
hasBin: true
lefthook-darwin-arm64@2.1.9:
- resolution:
- {
- integrity: sha512-119HryNcvr4nqn0wUIrNPgpMEPn9yMQzEcW/lezRsnb56PCJriJB92+MCySPVcWDxJnZef7o0T3jdnPNiSH7Qg==,
- }
+ resolution: {integrity: sha512-119HryNcvr4nqn0wUIrNPgpMEPn9yMQzEcW/lezRsnb56PCJriJB92+MCySPVcWDxJnZef7o0T3jdnPNiSH7Qg==}
cpu: [arm64]
os: [darwin]
lefthook-darwin-x64@2.1.9:
- resolution:
- {
- integrity: sha512-dwo5Tke2XcQCM56DGHgFKBfRbJIL6xs2wZ0zG1TUVZgl4t4mQUt6LiZ4V/ZQfYHTZF9qywvXoIlR5N35qOaiVQ==,
- }
+ resolution: {integrity: sha512-dwo5Tke2XcQCM56DGHgFKBfRbJIL6xs2wZ0zG1TUVZgl4t4mQUt6LiZ4V/ZQfYHTZF9qywvXoIlR5N35qOaiVQ==}
cpu: [x64]
os: [darwin]
lefthook-freebsd-arm64@2.1.9:
- resolution:
- {
- integrity: sha512-+09PVap6nl6xsaHch5JLtq7WvIR++U1Q2MzA2ai0M4uB/VP3AqrvKqHw6+9hjyKnIH+HHL83uqi77EAY+LaxLA==,
- }
+ resolution: {integrity: sha512-+09PVap6nl6xsaHch5JLtq7WvIR++U1Q2MzA2ai0M4uB/VP3AqrvKqHw6+9hjyKnIH+HHL83uqi77EAY+LaxLA==}
cpu: [arm64]
os: [freebsd]
lefthook-freebsd-x64@2.1.9:
- resolution:
- {
- integrity: sha512-8XresjKIYpkE9ARgCtBEZgJZxAU3T4MIqzj4zNy15XRT59I1Us+QdqXTNm+pkZ41Yd2X/nxs2Pkvbq3NWWlIGw==,
- }
+ resolution: {integrity: sha512-8XresjKIYpkE9ARgCtBEZgJZxAU3T4MIqzj4zNy15XRT59I1Us+QdqXTNm+pkZ41Yd2X/nxs2Pkvbq3NWWlIGw==}
cpu: [x64]
os: [freebsd]
lefthook-linux-arm64@2.1.9:
- resolution:
- {
- integrity: sha512-1oNIQfwrPe6rgU2KcDM3aF6+hpZDCKx1TmawQKpXUY5gVsbZ7MqX0Sk/1lnnWxqPm+kQQ5f6J2dpFWd+4xH8jg==,
- }
+ resolution: {integrity: sha512-1oNIQfwrPe6rgU2KcDM3aF6+hpZDCKx1TmawQKpXUY5gVsbZ7MqX0Sk/1lnnWxqPm+kQQ5f6J2dpFWd+4xH8jg==}
cpu: [arm64]
os: [linux]
lefthook-linux-x64@2.1.9:
- resolution:
- {
- integrity: sha512-fT+7Q+BJyGp+CslFQkNXmdFRgyVXsPHPi9NAsDX0a6QOyNnoORByAsvx6zeAKuF5rL3BBgNfho1/v2RuGxGy9w==,
- }
+ resolution: {integrity: sha512-fT+7Q+BJyGp+CslFQkNXmdFRgyVXsPHPi9NAsDX0a6QOyNnoORByAsvx6zeAKuF5rL3BBgNfho1/v2RuGxGy9w==}
cpu: [x64]
os: [linux]
lefthook-openbsd-arm64@2.1.9:
- resolution:
- {
- integrity: sha512-4bVuafBk3dddVNo0+3hMbjcJs4mqYAstxpPMmX2ufkudSTYFNIhWoqwuGVQV/SS/xdcOKJAldW4qayAzed2ysw==,
- }
+ resolution: {integrity: sha512-4bVuafBk3dddVNo0+3hMbjcJs4mqYAstxpPMmX2ufkudSTYFNIhWoqwuGVQV/SS/xdcOKJAldW4qayAzed2ysw==}
cpu: [arm64]
os: [openbsd]
lefthook-openbsd-x64@2.1.9:
- resolution:
- {
- integrity: sha512-PmPoMmLP/wQQWcQ9u2YH86bTZ3UCfBsxuEmVTEyPU2U8R1qSTp5r/Gs3G8cN5Mxo91XB9oBERtF1n+xD3W6aVA==,
- }
+ resolution: {integrity: sha512-PmPoMmLP/wQQWcQ9u2YH86bTZ3UCfBsxuEmVTEyPU2U8R1qSTp5r/Gs3G8cN5Mxo91XB9oBERtF1n+xD3W6aVA==}
cpu: [x64]
os: [openbsd]
lefthook-windows-arm64@2.1.9:
- resolution:
- {
- integrity: sha512-KphfkBKmwBnmolyrdhIl3lrBaOyTcCgXBT2AB/9OHnEXhOLvv5uTCUkrD4YRAxXPtFKq6UvnapIeoL3GZq0bdA==,
- }
+ resolution: {integrity: sha512-KphfkBKmwBnmolyrdhIl3lrBaOyTcCgXBT2AB/9OHnEXhOLvv5uTCUkrD4YRAxXPtFKq6UvnapIeoL3GZq0bdA==}
cpu: [arm64]
os: [win32]
lefthook-windows-x64@2.1.9:
- resolution:
- {
- integrity: sha512-2qlUtkJHZ3MyUxgV5XTEmcrIoNZA07iwaquoswAcqv/1MeBFXlD+O+koFRfrzWng2O5WYEbpJnd8tvaYnV8fTA==,
- }
+ resolution: {integrity: sha512-2qlUtkJHZ3MyUxgV5XTEmcrIoNZA07iwaquoswAcqv/1MeBFXlD+O+koFRfrzWng2O5WYEbpJnd8tvaYnV8fTA==}
cpu: [x64]
os: [win32]
lefthook@2.1.9:
- resolution:
- {
- integrity: sha512-bwDaIOViTktE8kJLf9jP0p+H2/RDTlFFlc43Am2YgUsX22hI6Sq4RbzsrecwzY5y+MHTipOH7WsmWSEniePHWQ==,
- }
+ resolution: {integrity: sha512-bwDaIOViTktE8kJLf9jP0p+H2/RDTlFFlc43Am2YgUsX22hI6Sq4RbzsrecwzY5y+MHTipOH7WsmWSEniePHWQ==}
hasBin: true
leven@3.1.0:
- resolution:
- {
- integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==,
- }
- engines: { node: ">=6" }
-
- lie@3.3.0:
- resolution:
- {
- integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==,
- }
+ resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
+ engines: {node: '>=6'}
lighthouse-logger@1.4.2:
- resolution:
- {
- integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==,
- }
+ resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==}
lightningcss-darwin-arm64@1.30.1:
- resolution:
- {
- integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==}
+ engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
lightningcss-darwin-x64@1.30.1:
- resolution:
- {
- integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==}
+ engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
lightningcss-freebsd-x64@1.30.1:
- resolution:
- {
- integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==}
+ engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
lightningcss-linux-arm-gnueabihf@1.30.1:
- resolution:
- {
- integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==}
+ engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
lightningcss-linux-arm64-gnu@1.30.1:
- resolution:
- {
- integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==}
+ engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
lightningcss-linux-arm64-musl@1.30.1:
- resolution:
- {
- integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==}
+ engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
lightningcss-linux-x64-gnu@1.30.1:
- resolution:
- {
- integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==}
+ engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
lightningcss-linux-x64-musl@1.30.1:
- resolution:
- {
- integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==}
+ engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
lightningcss-win32-arm64-msvc@1.30.1:
- resolution:
- {
- integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==}
+ engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [win32]
lightningcss-win32-x64-msvc@1.30.1:
- resolution:
- {
- integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==}
+ engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
lightningcss@1.30.1:
- resolution:
- {
- integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==}
+ engines: {node: '>= 12.0.0'}
lilconfig@3.1.3:
- resolution:
- {
- integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
+ engines: {node: '>=14'}
lines-and-columns@1.2.4:
- resolution:
- {
- integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==,
- }
-
- linkedom@0.18.12:
- resolution:
- {
- integrity: sha512-jalJsOwIKuQJSeTvsgzPe9iJzyfVaEJiEXl+25EkKevsULHvMJzpNqwvj1jOESWdmgKDiXObyjOYwlUqG7wo1Q==,
- }
- engines: { node: ">=16" }
- peerDependencies:
- canvas: ">= 2"
- peerDependenciesMeta:
- canvas:
- optional: true
+ resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
locate-path@5.0.0:
- resolution:
- {
- integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
+ engines: {node: '>=8'}
lodash-es@4.18.1:
- resolution:
- {
- integrity: sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==,
- }
+ resolution: {integrity: sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==}
lodash.clonedeep@4.5.0:
- resolution:
- {
- integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==,
- }
+ resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==}
lodash.curry@4.1.1:
- resolution:
- {
- integrity: sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==,
- }
+ resolution: {integrity: sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==}
lodash.debounce@4.0.8:
- resolution:
- {
- integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==,
- }
+ resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
lodash.get@4.4.2:
- resolution:
- {
- integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==,
- }
+ resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
deprecated: This package is deprecated. Use the optional chaining (?.) operator instead.
lodash.merge@4.6.2:
- resolution:
- {
- integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==,
- }
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
lodash.throttle@4.1.1:
- resolution:
- {
- integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==,
- }
+ resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
lodash@4.18.1:
- resolution:
- {
- integrity: sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==,
- }
+ resolution: {integrity: sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==}
log-symbols@2.2.0:
- resolution:
- {
- integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==}
+ engines: {node: '>=4'}
log-symbols@4.1.0:
- resolution:
- {
- integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==,
- }
- engines: { node: ">=10" }
-
- long@5.3.2:
- resolution:
- {
- integrity: sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==,
- }
+ resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
+ engines: {node: '>=10'}
loose-envify@1.4.0:
- resolution:
- {
- integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==,
- }
+ resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
- loupe@3.2.1:
- resolution:
- {
- integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==,
- }
-
lru-cache@10.4.3:
- resolution:
- {
- integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==,
- }
+ resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
lru-cache@11.5.1:
- resolution:
- {
- integrity: sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==,
- }
- engines: { node: 20 || >=22 }
+ resolution: {integrity: sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==}
+ engines: {node: 20 || >=22}
lru-cache@5.1.1:
- resolution:
- {
- integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==,
- }
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
lru-cache@6.0.0:
- resolution:
- {
- integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==,
- }
- engines: { node: ">=10" }
-
- magic-string@0.30.21:
- resolution:
- {
- integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==,
- }
+ resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
+ engines: {node: '>=10'}
make-dir@3.1.0:
- resolution:
- {
- integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
+ engines: {node: '>=8'}
make-dir@4.0.0:
- resolution:
- {
- integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
+ engines: {node: '>=10'}
make-error@1.3.6:
- resolution:
- {
- integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==,
- }
+ resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
makeerror@1.0.12:
- resolution:
- {
- integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==,
- }
-
- marked@15.0.12:
- resolution:
- {
- integrity: sha512-8dD6FusOQSrpv9Z1rdNMdlSgQOIP880DHqnohobOmYLElGEqAL/JvxvuxZO16r4HtjTlfPRDC1hbvxC9dPN2nA==,
- }
- engines: { node: ">= 18" }
- hasBin: true
+ resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
marky@1.3.0:
- resolution:
- {
- integrity: sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==,
- }
+ resolution: {integrity: sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==}
math-intrinsics@1.1.0:
- resolution:
- {
- integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
+ engines: {node: '>= 0.4'}
md5@2.3.0:
- resolution:
- {
- integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==,
- }
-
- media-typer@1.1.0:
- resolution:
- {
- integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==}
memoize-one@5.2.1:
- resolution:
- {
- integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==,
- }
-
- merge-descriptors@2.0.0:
- resolution:
- {
- integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==}
merge-stream@2.0.0:
- resolution:
- {
- integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==,
- }
+ resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
merge2@1.4.1:
- resolution:
- {
- integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
+ engines: {node: '>= 8'}
metro-babel-transformer@0.83.3:
- resolution:
- {
- integrity: sha512-1vxlvj2yY24ES1O5RsSIvg4a4WeL7PFXgKOHvXTXiW0deLvQr28ExXj6LjwCCDZ4YZLhq6HddLpZnX4dEdSq5g==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-1vxlvj2yY24ES1O5RsSIvg4a4WeL7PFXgKOHvXTXiW0deLvQr28ExXj6LjwCCDZ4YZLhq6HddLpZnX4dEdSq5g==}
+ engines: {node: '>=20.19.4'}
metro-babel-transformer@0.83.7:
- resolution:
- {
- integrity: sha512-sBqBkt6kNut/88bv+Ucvm4yqdPetbvAEsHzi3MAgJEifOSYYzX5Z5Kgw3TFOrwf/mHJTOBG2ONlaMHoyfP15TA==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-sBqBkt6kNut/88bv+Ucvm4yqdPetbvAEsHzi3MAgJEifOSYYzX5Z5Kgw3TFOrwf/mHJTOBG2ONlaMHoyfP15TA==}
+ engines: {node: '>=20.19.4'}
metro-cache-key@0.83.3:
- resolution:
- {
- integrity: sha512-59ZO049jKzSmvBmG/B5bZ6/dztP0ilp0o988nc6dpaDsU05Cl1c/lRf+yx8m9WW/JVgbmfO5MziBU559XjI5Zw==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-59ZO049jKzSmvBmG/B5bZ6/dztP0ilp0o988nc6dpaDsU05Cl1c/lRf+yx8m9WW/JVgbmfO5MziBU559XjI5Zw==}
+ engines: {node: '>=20.19.4'}
metro-cache-key@0.83.7:
- resolution:
- {
- integrity: sha512-W1c2Nmx8MiJTJt+eWhMO08z9VKi3kZOaz99IYGdqeqDgY9j+yZjXl62rUav4Di0heZfh4/n2s722PqRL1OODeg==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-W1c2Nmx8MiJTJt+eWhMO08z9VKi3kZOaz99IYGdqeqDgY9j+yZjXl62rUav4Di0heZfh4/n2s722PqRL1OODeg==}
+ engines: {node: '>=20.19.4'}
metro-cache@0.83.3:
- resolution:
- {
- integrity: sha512-3jo65X515mQJvKqK3vWRblxDEcgY55Sk3w4xa6LlfEXgQ9g1WgMh9m4qVZVwgcHoLy0a2HENTPCCX4Pk6s8c8Q==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-3jo65X515mQJvKqK3vWRblxDEcgY55Sk3w4xa6LlfEXgQ9g1WgMh9m4qVZVwgcHoLy0a2HENTPCCX4Pk6s8c8Q==}
+ engines: {node: '>=20.19.4'}
metro-cache@0.83.7:
- resolution:
- {
- integrity: sha512-E9SRePXQ1Zvlj79VcOk57q7VC7rMHMFQ+jhmPHBiq+dJ0bJB5BL87lWZF6oh5X76Cci5tpDuQNaDwwuSCToEeg==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-E9SRePXQ1Zvlj79VcOk57q7VC7rMHMFQ+jhmPHBiq+dJ0bJB5BL87lWZF6oh5X76Cci5tpDuQNaDwwuSCToEeg==}
+ engines: {node: '>=20.19.4'}
metro-config@0.83.3:
- resolution:
- {
- integrity: sha512-mTel7ipT0yNjKILIan04bkJkuCzUUkm2SeEaTads8VfEecCh+ltXchdq6DovXJqzQAXuR2P9cxZB47Lg4klriA==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-mTel7ipT0yNjKILIan04bkJkuCzUUkm2SeEaTads8VfEecCh+ltXchdq6DovXJqzQAXuR2P9cxZB47Lg4klriA==}
+ engines: {node: '>=20.19.4'}
metro-config@0.83.7:
- resolution:
- {
- integrity: sha512-83mjWFbFOt2GeJ6pFIum5mSnc1uTsZJAtD8o4ej0s4NVsYsA7fB+pHvTfHhFrpeMONaobu2riKavkPei05Er/Q==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-83mjWFbFOt2GeJ6pFIum5mSnc1uTsZJAtD8o4ej0s4NVsYsA7fB+pHvTfHhFrpeMONaobu2riKavkPei05Er/Q==}
+ engines: {node: '>=20.19.4'}
metro-core@0.83.3:
- resolution:
- {
- integrity: sha512-M+X59lm7oBmJZamc96usuF1kusd5YimqG/q97g4Ac7slnJ3YiGglW5CsOlicTR5EWf8MQFxxjDoB6ytTqRe8Hw==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-M+X59lm7oBmJZamc96usuF1kusd5YimqG/q97g4Ac7slnJ3YiGglW5CsOlicTR5EWf8MQFxxjDoB6ytTqRe8Hw==}
+ engines: {node: '>=20.19.4'}
metro-core@0.83.7:
- resolution:
- {
- integrity: sha512-6yn3w1wnltT6RQl7p7YES2l95ArC+mWrOssEiH8p5/DDrJS65/szf9LsC9JrBv8c5DdvSY3V3f0GRYg0Ox7hCg==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-6yn3w1wnltT6RQl7p7YES2l95ArC+mWrOssEiH8p5/DDrJS65/szf9LsC9JrBv8c5DdvSY3V3f0GRYg0Ox7hCg==}
+ engines: {node: '>=20.19.4'}
metro-file-map@0.83.3:
- resolution:
- {
- integrity: sha512-jg5AcyE0Q9Xbbu/4NAwwZkmQn7doJCKGW0SLeSJmzNB9Z24jBe0AL2PHNMy4eu0JiKtNWHz9IiONGZWq7hjVTA==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-jg5AcyE0Q9Xbbu/4NAwwZkmQn7doJCKGW0SLeSJmzNB9Z24jBe0AL2PHNMy4eu0JiKtNWHz9IiONGZWq7hjVTA==}
+ engines: {node: '>=20.19.4'}
metro-file-map@0.83.7:
- resolution:
- {
- integrity: sha512-+j0F1m+FQYVAQ6syf+mwhIPV5GoFQrkInX8bppuc50IzNsZbMrp8R5H/Sx/K2daQ3YEa9F/XwkeZT8gzJfgeCw==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-+j0F1m+FQYVAQ6syf+mwhIPV5GoFQrkInX8bppuc50IzNsZbMrp8R5H/Sx/K2daQ3YEa9F/XwkeZT8gzJfgeCw==}
+ engines: {node: '>=20.19.4'}
metro-minify-terser@0.83.3:
- resolution:
- {
- integrity: sha512-O2BmfWj6FSfzBLrNCXt/rr2VYZdX5i6444QJU0fFoc7Ljg+Q+iqebwE3K0eTvkI6TRjELsXk1cjU+fXwAR4OjQ==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-O2BmfWj6FSfzBLrNCXt/rr2VYZdX5i6444QJU0fFoc7Ljg+Q+iqebwE3K0eTvkI6TRjELsXk1cjU+fXwAR4OjQ==}
+ engines: {node: '>=20.19.4'}
metro-minify-terser@0.83.7:
- resolution:
- {
- integrity: sha512-MfJar2IS4tBRuLb9svwb0Gu5l9BsH+pcRm8eGcEi/wy8MzZinfinh5dFLt2nWkocnulIgtGB5NkFDdbXqMXKhQ==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-MfJar2IS4tBRuLb9svwb0Gu5l9BsH+pcRm8eGcEi/wy8MzZinfinh5dFLt2nWkocnulIgtGB5NkFDdbXqMXKhQ==}
+ engines: {node: '>=20.19.4'}
metro-resolver@0.83.3:
- resolution:
- {
- integrity: sha512-0js+zwI5flFxb1ktmR///bxHYg7OLpRpWZlBBruYG8OKYxeMP7SV0xQ/o/hUelrEMdK4LJzqVtHAhBm25LVfAQ==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-0js+zwI5flFxb1ktmR///bxHYg7OLpRpWZlBBruYG8OKYxeMP7SV0xQ/o/hUelrEMdK4LJzqVtHAhBm25LVfAQ==}
+ engines: {node: '>=20.19.4'}
metro-resolver@0.83.7:
- resolution:
- {
- integrity: sha512-WSJIENlMcoSsuz66IfBHOkgfp3KJt2UW2TnEHPf1b8pIG2eEXNOVmo2+03A0H17WY2XGXWgxL0CG7FAopqgB1A==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-WSJIENlMcoSsuz66IfBHOkgfp3KJt2UW2TnEHPf1b8pIG2eEXNOVmo2+03A0H17WY2XGXWgxL0CG7FAopqgB1A==}
+ engines: {node: '>=20.19.4'}
metro-runtime@0.83.3:
- resolution:
- {
- integrity: sha512-JHCJb9ebr9rfJ+LcssFYA2x1qPYuSD/bbePupIGhpMrsla7RCwC/VL3yJ9cSU+nUhU4c9Ixxy8tBta+JbDeZWw==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-JHCJb9ebr9rfJ+LcssFYA2x1qPYuSD/bbePupIGhpMrsla7RCwC/VL3yJ9cSU+nUhU4c9Ixxy8tBta+JbDeZWw==}
+ engines: {node: '>=20.19.4'}
metro-runtime@0.83.7:
- resolution:
- {
- integrity: sha512-9GKkJURaB2iyYoEExKnedzAHzxmKtSi+k0tsZUvMoU27tBZJElchYt7JH/Ai/XzYAI9lCAaV7u5HZSI8J5Z+wQ==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-9GKkJURaB2iyYoEExKnedzAHzxmKtSi+k0tsZUvMoU27tBZJElchYt7JH/Ai/XzYAI9lCAaV7u5HZSI8J5Z+wQ==}
+ engines: {node: '>=20.19.4'}
metro-source-map@0.83.3:
- resolution:
- {
- integrity: sha512-xkC3qwUBh2psVZgVavo8+r2C9Igkk3DibiOXSAht1aYRRcztEZNFtAMtfSB7sdO2iFMx2Mlyu++cBxz/fhdzQg==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-xkC3qwUBh2psVZgVavo8+r2C9Igkk3DibiOXSAht1aYRRcztEZNFtAMtfSB7sdO2iFMx2Mlyu++cBxz/fhdzQg==}
+ engines: {node: '>=20.19.4'}
metro-source-map@0.83.7:
- resolution:
- {
- integrity: sha512-JgA1h7oc1a1jydBe1GhVFsUoMYo3wLPk7oRA32rjlDsq+sP2JLt9x2p2lWbNSxTm/u8NV4VRid3hvEJgcX8tKw==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-JgA1h7oc1a1jydBe1GhVFsUoMYo3wLPk7oRA32rjlDsq+sP2JLt9x2p2lWbNSxTm/u8NV4VRid3hvEJgcX8tKw==}
+ engines: {node: '>=20.19.4'}
metro-symbolicate@0.83.3:
- resolution:
- {
- integrity: sha512-F/YChgKd6KbFK3eUR5HdUsfBqVsanf5lNTwFd4Ca7uuxnHgBC3kR/Hba/RGkenR3pZaGNp5Bu9ZqqP52Wyhomw==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-F/YChgKd6KbFK3eUR5HdUsfBqVsanf5lNTwFd4Ca7uuxnHgBC3kR/Hba/RGkenR3pZaGNp5Bu9ZqqP52Wyhomw==}
+ engines: {node: '>=20.19.4'}
hasBin: true
metro-symbolicate@0.83.7:
- resolution:
- {
- integrity: sha512-g4suyxw20WOHWI680c+Kq4wC/NF+Hx5pRH9afrMp+sMTxqLeKcPR1Xf4wMhsjlbvx7LbIREdke6q928jEjvJWw==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-g4suyxw20WOHWI680c+Kq4wC/NF+Hx5pRH9afrMp+sMTxqLeKcPR1Xf4wMhsjlbvx7LbIREdke6q928jEjvJWw==}
+ engines: {node: '>=20.19.4'}
hasBin: true
metro-transform-plugins@0.83.3:
- resolution:
- {
- integrity: sha512-eRGoKJU6jmqOakBMH5kUB7VitEWiNrDzBHpYbkBXW7C5fUGeOd2CyqrosEzbMK5VMiZYyOcNFEphvxk3OXey2A==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-eRGoKJU6jmqOakBMH5kUB7VitEWiNrDzBHpYbkBXW7C5fUGeOd2CyqrosEzbMK5VMiZYyOcNFEphvxk3OXey2A==}
+ engines: {node: '>=20.19.4'}
metro-transform-plugins@0.83.7:
- resolution:
- {
- integrity: sha512-Ss0FpBiZDjX2kwhukMDl5sNdYK8T/06IPqxNE4H6PTlRlfs9q11cef13c/xESY/Pm4VCkp1yJUZO3kXzvMxQFA==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-Ss0FpBiZDjX2kwhukMDl5sNdYK8T/06IPqxNE4H6PTlRlfs9q11cef13c/xESY/Pm4VCkp1yJUZO3kXzvMxQFA==}
+ engines: {node: '>=20.19.4'}
metro-transform-worker@0.83.3:
- resolution:
- {
- integrity: sha512-Ztekew9t/gOIMZX1tvJOgX7KlSLL5kWykl0Iwu2cL2vKMKVALRl1hysyhUw0vjpAvLFx+Kfq9VLjnHIkW32fPA==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-Ztekew9t/gOIMZX1tvJOgX7KlSLL5kWykl0Iwu2cL2vKMKVALRl1hysyhUw0vjpAvLFx+Kfq9VLjnHIkW32fPA==}
+ engines: {node: '>=20.19.4'}
metro-transform-worker@0.83.7:
- resolution:
- {
- integrity: sha512-UegCo7ygB2fT64mRK2nbAjQVJ1zSwIIHy8d96jJv2nKZFDaViYBiughEdu5HM/Ceq0WN3LZrZk3zhl9aoiLYFw==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-UegCo7ygB2fT64mRK2nbAjQVJ1zSwIIHy8d96jJv2nKZFDaViYBiughEdu5HM/Ceq0WN3LZrZk3zhl9aoiLYFw==}
+ engines: {node: '>=20.19.4'}
metro@0.83.3:
- resolution:
- {
- integrity: sha512-+rP+/GieOzkt97hSJ0MrPOuAH/jpaS21ZDvL9DJ35QYRDlQcwzcvUlGUf79AnQxq/2NPiS/AULhhM4TKutIt8Q==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-+rP+/GieOzkt97hSJ0MrPOuAH/jpaS21ZDvL9DJ35QYRDlQcwzcvUlGUf79AnQxq/2NPiS/AULhhM4TKutIt8Q==}
+ engines: {node: '>=20.19.4'}
hasBin: true
metro@0.83.7:
- resolution:
- {
- integrity: sha512-SPaPEyvTsTmd0LpT7RaZciQyDw2i/JB7+iY9L5VfBo72+psescFxBqpI1TL9dnL+pmnfkU+l/J1mEEGLeF65EQ==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-SPaPEyvTsTmd0LpT7RaZciQyDw2i/JB7+iY9L5VfBo72+psescFxBqpI1TL9dnL+pmnfkU+l/J1mEEGLeF65EQ==}
+ engines: {node: '>=20.19.4'}
hasBin: true
micromatch@4.0.8:
- resolution:
- {
- integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==,
- }
- engines: { node: ">=8.6" }
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
+ engines: {node: '>=8.6'}
mime-db@1.52.0:
- resolution:
- {
- integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
+ engines: {node: '>= 0.6'}
mime-db@1.54.0:
- resolution:
- {
- integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==}
+ engines: {node: '>= 0.6'}
mime-types@2.1.35:
- resolution:
- {
- integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
+ engines: {node: '>= 0.6'}
mime-types@3.0.2:
- resolution:
- {
- integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==}
+ engines: {node: '>=18'}
mime@1.6.0:
- resolution:
- {
- integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
+ engines: {node: '>=4'}
hasBin: true
mime@3.0.0:
- resolution:
- {
- integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==,
- }
- engines: { node: ">=10.0.0" }
+ resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
+ engines: {node: '>=10.0.0'}
hasBin: true
mimic-fn@1.2.0:
- resolution:
- {
- integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==}
+ engines: {node: '>=4'}
mimic-fn@2.1.0:
- resolution:
- {
- integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
+ engines: {node: '>=6'}
mimic-response@2.1.0:
- resolution:
- {
- integrity: sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==,
- }
- engines: { node: ">=8" }
-
- mimic-response@3.1.0:
- resolution:
- {
- integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==}
+ engines: {node: '>=8'}
min-indent@1.0.1:
- resolution:
- {
- integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==,
- }
- engines: { node: ">=4" }
-
- minimalistic-assert@1.0.1:
- resolution:
- {
- integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==,
- }
+ resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
+ engines: {node: '>=4'}
minimatch@9.0.9:
- resolution:
- {
- integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==}
+ engines: {node: '>=16 || 14 >=14.17'}
minimist@1.2.8:
- resolution:
- {
- integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==,
- }
+ resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
minipass@7.1.3:
- resolution:
- {
- integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==}
+ engines: {node: '>=16 || 14 >=14.17'}
minizlib@3.0.1:
- resolution:
- {
- integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==,
- }
- engines: { node: ">= 18" }
+ resolution: {integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==}
+ engines: {node: '>= 18'}
minizlib@3.1.0:
- resolution:
- {
- integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==,
- }
- engines: { node: ">= 18" }
-
- mkdirp-classic@0.5.3:
- resolution:
- {
- integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==,
- }
+ resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==}
+ engines: {node: '>= 18'}
mkdirp@0.5.6:
- resolution:
- {
- integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==,
- }
+ resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
mkdirp@1.0.4:
- resolution:
- {
- integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
+ engines: {node: '>=10'}
hasBin: true
moment@2.30.1:
- resolution:
- {
- integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==,
- }
+ resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==}
ms@2.0.0:
- resolution:
- {
- integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==,
- }
+ resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
ms@2.1.2:
- resolution:
- {
- integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==,
- }
+ resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
ms@2.1.3:
- resolution:
- {
- integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==,
- }
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
multipasta@0.2.7:
- resolution:
- {
- integrity: sha512-KPA58d68KgGil15oDqXjkUBEBYc00XvbPj5/X+dyzeo/lWm9Nc25pQRlf1D+gv4OpK7NM0J1odrbu9JNNGvynA==,
- }
+ resolution: {integrity: sha512-KPA58d68KgGil15oDqXjkUBEBYc00XvbPj5/X+dyzeo/lWm9Nc25pQRlf1D+gv4OpK7NM0J1odrbu9JNNGvynA==}
mute-stream@0.0.8:
- resolution:
- {
- integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==,
- }
+ resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
mv@2.1.1:
- resolution:
- {
- integrity: sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==,
- }
- engines: { node: ">=0.8.0" }
+ resolution: {integrity: sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==}
+ engines: {node: '>=0.8.0'}
mz@2.7.0:
- resolution:
- {
- integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==,
- }
+ resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
nan@2.27.0:
- resolution:
- {
- integrity: sha512-hC+0LidcL3XE4rp1C4H54KujgXKzbfyTngZTwBByQxsOxCEKZT0MPQ4hOKUH2jU1OYstqdDH4onyHPDzcV0XdQ==,
- }
+ resolution: {integrity: sha512-hC+0LidcL3XE4rp1C4H54KujgXKzbfyTngZTwBByQxsOxCEKZT0MPQ4hOKUH2jU1OYstqdDH4onyHPDzcV0XdQ==}
nanoid@3.3.12:
- resolution:
- {
- integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==,
- }
- engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
+ resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
nanoid@3.3.8:
- resolution:
- {
- integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==,
- }
- engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
+ resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- napi-build-utils@2.0.0:
- resolution:
- {
- integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==,
- }
-
natural-compare@1.4.0:
- resolution:
- {
- integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==,
- }
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
natural-orderby@2.0.3:
- resolution:
- {
- integrity: sha512-p7KTHxU0CUrcOXe62Zfrb5Z13nLvPhSWR/so3kFulUQU0sgUll2Z0LwpsLN351eOOD+hRGu/F1g+6xDfPeD++Q==,
- }
+ resolution: {integrity: sha512-p7KTHxU0CUrcOXe62Zfrb5Z13nLvPhSWR/so3kFulUQU0sgUll2Z0LwpsLN351eOOD+hRGu/F1g+6xDfPeD++Q==}
ncp@2.0.0:
- resolution:
- {
- integrity: sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==,
- }
+ resolution: {integrity: sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==}
hasBin: true
negotiator@0.6.3:
- resolution:
- {
- integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
+ engines: {node: '>= 0.6'}
negotiator@0.6.4:
- resolution:
- {
- integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==}
+ engines: {node: '>= 0.6'}
negotiator@1.0.0:
- resolution:
- {
- integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
+ engines: {node: '>= 0.6'}
nested-error-stacks@2.0.1:
- resolution:
- {
- integrity: sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==,
- }
-
- node-abi@3.92.0:
- resolution:
- {
- integrity: sha512-KdHvFWZjEKDf0cakgFjebl371GPsISX2oZHcuyKqM7DtogIsHrqKeLTo8wBHxaXRAQlY2PsPlZmfo+9ZCxEREQ==,
- }
- engines: { node: ">=10" }
-
- node-addon-api@8.8.0:
- resolution:
- {
- integrity: sha512-c5Ko1fZJIJmzhFIkhRN76WTq+fC6tWnGy9CXA0fA+XygsWZmEwG8vmbkNqxMyoaa0Tin4djul49NzdVcJJcjeA==,
- }
- engines: { node: ^18 || ^20 || >= 21 }
-
- node-datachannel@0.32.3:
- resolution:
- {
- integrity: sha512-Aok1ZhLsll472lRefgWYuWJ0070jh0ecHravTdRyZEmoESumebMEQV8Y+poBwSW2ZbEwAokAOGsK5Cu8pDDT2g==,
- }
- engines: { node: ">=18.20.0" }
-
- node-domexception@1.0.0:
- resolution:
- {
- integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==,
- }
- engines: { node: ">=10.5.0" }
- deprecated: Use your platform's native DOMException instead
-
- node-edge-tts@1.2.10:
- resolution:
- {
- integrity: sha512-bV2i4XU54D45+US0Zm1HcJRkifuB3W438dWyuJEHLQdKxnuqlI1kim2MOvR6Q3XUQZvfF9PoDyR1Rt7aeXhPdQ==,
- }
- hasBin: true
+ resolution: {integrity: sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==}
node-fetch@2.6.7:
- resolution:
- {
- integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==,
- }
- engines: { node: 4.x || >=6.0.0 }
+ resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
+ engines: {node: 4.x || >=6.0.0}
peerDependencies:
encoding: ^0.1.0
peerDependenciesMeta:
@@ -9110,270 +4453,130 @@ packages:
optional: true
node-fetch@2.7.0:
- resolution:
- {
- integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==,
- }
- engines: { node: 4.x || >=6.0.0 }
+ resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
+ engines: {node: 4.x || >=6.0.0}
peerDependencies:
encoding: ^0.1.0
peerDependenciesMeta:
encoding:
optional: true
- node-fetch@3.3.2:
- resolution:
- {
- integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
-
node-forge@1.4.0:
- resolution:
- {
- integrity: sha512-LarFH0+6VfriEhqMMcLX2F7SwSXeWwnEAJEsYm5QKWchiVYVvJyV9v7UDvUv+w5HO23ZpQTXDv/GxdDdMyOuoQ==,
- }
- engines: { node: ">= 6.13.0" }
-
- node-gyp-build@4.8.4:
- resolution:
- {
- integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==,
- }
- hasBin: true
+ resolution: {integrity: sha512-LarFH0+6VfriEhqMMcLX2F7SwSXeWwnEAJEsYm5QKWchiVYVvJyV9v7UDvUv+w5HO23ZpQTXDv/GxdDdMyOuoQ==}
+ engines: {node: '>= 6.13.0'}
node-int64@0.4.0:
- resolution:
- {
- integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==,
- }
+ resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
node-releases@2.0.46:
- resolution:
- {
- integrity: sha512-GYVXHE2KnrzAfsAjl4uP++evGFCrAU1jta4ubEjIG7YWt/64Gqv66a30yKwWczVjA6j3bM4nBwH7Pk1JmDHaxQ==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-GYVXHE2KnrzAfsAjl4uP++evGFCrAU1jta4ubEjIG7YWt/64Gqv66a30yKwWczVjA6j3bM4nBwH7Pk1JmDHaxQ==}
+ engines: {node: '>=18'}
node-rsa@1.1.1:
- resolution:
- {
- integrity: sha512-Jd4cvbJMryN21r5HgxQOpMEqv+ooke/korixNNK3mGqfGJmy0M77WDDzo/05969+OkMy3XW1UuZsSmW9KQm7Fw==,
- }
+ resolution: {integrity: sha512-Jd4cvbJMryN21r5HgxQOpMEqv+ooke/korixNNK3mGqfGJmy0M77WDDzo/05969+OkMy3XW1UuZsSmW9KQm7Fw==}
node-stream-zip@1.15.0:
- resolution:
- {
- integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==,
- }
- engines: { node: ">=0.12.0" }
+ resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==}
+ engines: {node: '>=0.12.0'}
nopt@5.0.0:
- resolution:
- {
- integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==}
+ engines: {node: '>=6'}
hasBin: true
normalize-path@3.0.0:
- resolution:
- {
- integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
+ engines: {node: '>=0.10.0'}
npm-package-arg@11.0.3:
- resolution:
- {
- integrity: sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
npm-run-path@4.0.1:
- resolution:
- {
- integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
+ engines: {node: '>=8'}
npmlog@5.0.1:
- resolution:
- {
- integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==,
- }
+ resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==}
deprecated: This package is no longer supported.
- nth-check@2.1.1:
- resolution:
- {
- integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==,
- }
-
nullthrows@1.1.1:
- resolution:
- {
- integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==,
- }
+ resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
nwsapi@2.2.23:
- resolution:
- {
- integrity: sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==,
- }
+ resolution: {integrity: sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==}
ob1@0.83.3:
- resolution:
- {
- integrity: sha512-egUxXCDwoWG06NGCS5s5AdcpnumHKJlfd3HH06P3m9TEMwwScfcY35wpQxbm9oHof+dM/lVH9Rfyu1elTVelSA==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-egUxXCDwoWG06NGCS5s5AdcpnumHKJlfd3HH06P3m9TEMwwScfcY35wpQxbm9oHof+dM/lVH9Rfyu1elTVelSA==}
+ engines: {node: '>=20.19.4'}
ob1@0.83.7:
- resolution:
- {
- integrity: sha512-9M5kpuOLyTPogMtZiQUIxdAZxl7Dxs6tVBbJErSumsqGMuhVSoUbkfeZ3XNPpLpwBBtqY5QDUzGwggLHX3slQg==,
- }
- engines: { node: ">=20.19.4" }
+ resolution: {integrity: sha512-9M5kpuOLyTPogMtZiQUIxdAZxl7Dxs6tVBbJErSumsqGMuhVSoUbkfeZ3XNPpLpwBBtqY5QDUzGwggLHX3slQg==}
+ engines: {node: '>=20.19.4'}
object-assign@4.1.1:
- resolution:
- {
- integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==,
- }
- engines: { node: ">=0.10.0" }
-
- object-inspect@1.13.4:
- resolution:
- {
- integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
+ engines: {node: '>=0.10.0'}
object-keys@1.1.1:
- resolution:
- {
- integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
+ engines: {node: '>= 0.4'}
object-treeify@1.1.33:
- resolution:
- {
- integrity: sha512-EFVjAYfzWqWsBMRHPMAXLCDIJnpMhdWAqR7xG6M6a2cs6PMFpl/+Z20w9zDW4vkxOFfddegBKq9Rehd0bxWE7A==,
- }
- engines: { node: ">= 10" }
+ resolution: {integrity: sha512-EFVjAYfzWqWsBMRHPMAXLCDIJnpMhdWAqR7xG6M6a2cs6PMFpl/+Z20w9zDW4vkxOFfddegBKq9Rehd0bxWE7A==}
+ engines: {node: '>= 10'}
on-finished@2.3.0:
- resolution:
- {
- integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==}
+ engines: {node: '>= 0.8'}
on-finished@2.4.1:
- resolution:
- {
- integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
+ engines: {node: '>= 0.8'}
on-headers@1.1.0:
- resolution:
- {
- integrity: sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==}
+ engines: {node: '>= 0.8'}
once@1.4.0:
- resolution:
- {
- integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==,
- }
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
onetime@2.0.1:
- resolution:
- {
- integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==}
+ engines: {node: '>=4'}
onetime@5.1.2:
- resolution:
- {
- integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
+ engines: {node: '>=6'}
open@7.4.2:
- resolution:
- {
- integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
+ engines: {node: '>=8'}
open@8.4.2:
- resolution:
- {
- integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==,
- }
- engines: { node: ">=12" }
-
- openai@6.39.1:
- resolution:
- {
- integrity: sha512-z3dO9fEWOXBzlXynVb/xZ/tujzUjFWQWn3C0n0mw6Vo0zJTbEkaN4b2cLWjhJ6haJQx8LlREoafHRl+Gu/Hl+A==,
- }
- hasBin: true
- peerDependencies:
- ws: ^8.18.0
- zod: ^3.25 || ^4.0
- peerDependenciesMeta:
- ws:
- optional: true
- zod:
- optional: true
-
- openclaw@2026.6.1:
- resolution:
- {
- integrity: sha512-rGSwhIo8N37cQQ5puG8vmWZESE8q/ych5VFpzOQNcf49TF/rvCYyxiNAyot11qbUZF5wfLh8bsvofapnOEh0BQ==,
- }
- engines: { node: ">=22.19.0" }
- hasBin: true
+ resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
+ engines: {node: '>=12'}
ora@3.4.0:
- resolution:
- {
- integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==}
+ engines: {node: '>=6'}
ora@5.1.0:
- resolution:
- {
- integrity: sha512-9tXIMPvjZ7hPTbk8DFq1f7Kow/HU/pQYB60JbNq+QnGwcyhWVZaQ4hM9zQDEsPxw/muLpgiHSaumUZxCAmod/w==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-9tXIMPvjZ7hPTbk8DFq1f7Kow/HU/pQYB60JbNq+QnGwcyhWVZaQ4hM9zQDEsPxw/muLpgiHSaumUZxCAmod/w==}
+ engines: {node: '>=10'}
oxfmt@0.44.0:
- resolution:
- {
- integrity: sha512-lnncqvHewyRvaqdrnntVIrZV2tEddz8lbvPsQzG/zlkfvgZkwy0HP1p/2u1aCDToeg1jb9zBpbJdfkV73Itw+w==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ resolution: {integrity: sha512-lnncqvHewyRvaqdrnntVIrZV2tEddz8lbvPsQzG/zlkfvgZkwy0HP1p/2u1aCDToeg1jb9zBpbJdfkV73Itw+w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
oxlint@1.67.0:
- resolution:
- {
- integrity: sha512-blwwaHPdoH8piQ5/z0KHeoHFR7FZgl12WluKJfu4qFLPkZl6mK04PkLE45Fw1NxfBRSlh40Gu7MkxHUw++ociQ==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
+ resolution: {integrity: sha512-blwwaHPdoH8piQ5/z0KHeoHFR7FZgl12WluKJfu4qFLPkZl6mK04PkLE45Fw1NxfBRSlh40Gu7MkxHUw++ociQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
- oxlint-tsgolint: ">=0.22.1"
- vite-plus: "*"
+ oxlint-tsgolint: '>=0.22.1'
+ vite-plus: '*'
peerDependenciesMeta:
oxlint-tsgolint:
optional: true
@@ -9381,675 +4584,314 @@ packages:
optional: true
p-limit@2.3.0:
- resolution:
- {
- integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
+ engines: {node: '>=6'}
p-limit@3.1.0:
- resolution:
- {
- integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
+ engines: {node: '>=10'}
p-locate@4.1.0:
- resolution:
- {
- integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==,
- }
- engines: { node: ">=8" }
-
- p-retry@4.6.2:
- resolution:
- {
- integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
+ engines: {node: '>=8'}
p-try@2.2.0:
- resolution:
- {
- integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
+ engines: {node: '>=6'}
package-json-from-dist@1.0.1:
- resolution:
- {
- integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==,
- }
-
- pako@1.0.11:
- resolution:
- {
- integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==,
- }
+ resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
parse-json@4.0.0:
- resolution:
- {
- integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
+ engines: {node: '>=4'}
parse-json@5.2.0:
- resolution:
- {
- integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
+ engines: {node: '>=8'}
parse-png@2.1.0:
- resolution:
- {
- integrity: sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==}
+ engines: {node: '>=10'}
parse5@7.3.0:
- resolution:
- {
- integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==,
- }
+ resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==}
parseurl@1.3.3:
- resolution:
- {
- integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==,
- }
- engines: { node: ">= 0.8" }
-
- partial-json@0.1.7:
- resolution:
- {
- integrity: sha512-Njv/59hHaokb/hRUjce3Hdv12wd60MtM9Z5Olmn+nehe0QDAsRtRbJPvJ0Z91TusF0SuZRIvnM+S4l6EIP8leA==,
- }
+ resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
+ engines: {node: '>= 0.8'}
password-prompt@1.1.3:
- resolution:
- {
- integrity: sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==,
- }
+ resolution: {integrity: sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==}
patch-package@8.0.1:
- resolution:
- {
- integrity: sha512-VsKRIA8f5uqHQ7NGhwIna6Bx6D9s/1iXlA1hthBVBEbkq+t4kXD0HHt+rJhf/Z+Ci0F/HCB2hvn0qLdLG+Qxlw==,
- }
- engines: { node: ">=14", npm: ">5" }
+ resolution: {integrity: sha512-VsKRIA8f5uqHQ7NGhwIna6Bx6D9s/1iXlA1hthBVBEbkq+t4kXD0HHt+rJhf/Z+Ci0F/HCB2hvn0qLdLG+Qxlw==}
+ engines: {node: '>=14', npm: '>5'}
hasBin: true
path-exists@4.0.0:
- resolution:
- {
- integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
+ engines: {node: '>=8'}
path-is-absolute@1.0.1:
- resolution:
- {
- integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
+ engines: {node: '>=0.10.0'}
path-key@3.1.1:
- resolution:
- {
- integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
+ engines: {node: '>=8'}
path-parse@1.0.7:
- resolution:
- {
- integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==,
- }
+ resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
path-scurry@1.11.1:
- resolution:
- {
- integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==,
- }
- engines: { node: ">=16 || 14 >=14.18" }
+ resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
+ engines: {node: '>=16 || 14 >=14.18'}
path-scurry@2.0.2:
- resolution:
- {
- integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==,
- }
- engines: { node: 18 || 20 || >=22 }
-
- path-to-regexp@8.4.2:
- resolution:
- {
- integrity: sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==,
- }
+ resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==}
+ engines: {node: 18 || 20 || >=22}
path-type@4.0.0:
- resolution:
- {
- integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==,
- }
- engines: { node: ">=8" }
-
- pathe@2.0.3:
- resolution:
- {
- integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==,
- }
-
- pathval@2.0.1:
- resolution:
- {
- integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==,
- }
- engines: { node: ">= 14.16" }
+ resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
+ engines: {node: '>=8'}
picocolors@1.1.1:
- resolution:
- {
- integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==,
- }
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
picomatch@2.3.2:
- resolution:
- {
- integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==,
- }
- engines: { node: ">=8.6" }
+ resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==}
+ engines: {node: '>=8.6'}
picomatch@4.0.4:
- resolution:
- {
- integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
+ engines: {node: '>=12'}
pirates@4.0.7:
- resolution:
- {
- integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==,
- }
- engines: { node: ">= 6" }
-
- pkce-challenge@5.0.1:
- resolution:
- {
- integrity: sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==,
- }
- engines: { node: ">=16.20.0" }
+ resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
+ engines: {node: '>= 6'}
pkg-dir@4.2.0:
- resolution:
- {
- integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==,
- }
- engines: { node: ">=8" }
-
- playwright-core@1.60.0:
- resolution:
- {
- integrity: sha512-9bW6zvX/m0lEbgTKJ6YppOKx8H3VOPBMOCFh2irXFOT4BbHgrx5hPjwJYLT40Lu+4qtD36qKc/Hn56StUW57IA==,
- }
- engines: { node: ">=18" }
- hasBin: true
+ resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
+ engines: {node: '>=8'}
plist@3.1.1:
- resolution:
- {
- integrity: sha512-ZIfcLJC+7E7FBFnDxm9MPmt7D+DidyQ26lewieO75AdhA2ayMtsJSES0iWzqJQbcVRSrTufQoy0DR94xHue0oA==,
- }
- engines: { node: ">=10.4.0" }
+ resolution: {integrity: sha512-ZIfcLJC+7E7FBFnDxm9MPmt7D+DidyQ26lewieO75AdhA2ayMtsJSES0iWzqJQbcVRSrTufQoy0DR94xHue0oA==}
+ engines: {node: '>=10.4.0'}
pngjs@3.4.0:
- resolution:
- {
- integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==,
- }
- engines: { node: ">=4.0.0" }
-
- pngjs@5.0.0:
- resolution:
- {
- integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==,
- }
- engines: { node: ">=10.13.0" }
+ resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==}
+ engines: {node: '>=4.0.0'}
pngjs@7.0.0:
- resolution:
- {
- integrity: sha512-LKWqWJRhstyYo9pGvgor/ivk2w94eSjE3RGVuzLGlr3NmD8bf7RcYGze1mNdEHRP6TRP6rMuDHk5t44hnTRyow==,
- }
- engines: { node: ">=14.19.0" }
+ resolution: {integrity: sha512-LKWqWJRhstyYo9pGvgor/ivk2w94eSjE3RGVuzLGlr3NmD8bf7RcYGze1mNdEHRP6TRP6rMuDHk5t44hnTRyow==}
+ engines: {node: '>=14.19.0'}
possible-typed-array-names@1.1.0:
- resolution:
- {
- integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
+ engines: {node: '>= 0.4'}
postcss@8.5.15:
- resolution:
- {
- integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==,
- }
- engines: { node: ^10 || ^12 || >=14 }
+ resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==}
+ engines: {node: ^10 || ^12 || >=14}
postinstall-postinstall@2.1.0:
- resolution:
- {
- integrity: sha512-7hQX6ZlZXIoRiWNrbMQaLzUUfH+sSx39u8EJ9HYuDc1kLo9IXKWjM5RSquZN1ad5GnH8CGFM78fsAAQi3OKEEQ==,
- }
-
- prebuild-install@7.1.3:
- resolution:
- {
- integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==,
- }
- engines: { node: ">=10" }
- deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available.
- hasBin: true
+ resolution: {integrity: sha512-7hQX6ZlZXIoRiWNrbMQaLzUUfH+sSx39u8EJ9HYuDc1kLo9IXKWjM5RSquZN1ad5GnH8CGFM78fsAAQi3OKEEQ==}
pretty-bytes@5.6.0:
- resolution:
- {
- integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
+ engines: {node: '>=6'}
pretty-format@29.7.0:
- resolution:
- {
- integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
pretty-format@30.4.1:
- resolution:
- {
- integrity: sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==,
- }
- engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 }
+ resolution: {integrity: sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
proc-log@4.2.0:
- resolution:
- {
- integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
-
- process-nextick-args@2.0.1:
- resolution:
- {
- integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==,
- }
+ resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
process@0.11.10:
- resolution:
- {
- integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==,
- }
- engines: { node: ">= 0.6.0" }
+ resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
+ engines: {node: '>= 0.6.0'}
progress@2.0.3:
- resolution:
- {
- integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
+ engines: {node: '>=0.4.0'}
promise-limit@2.7.0:
- resolution:
- {
- integrity: sha512-7nJ6v5lnJsXwGprnGXga4wx6d1POjvi5Qmf1ivTRxTjH4Z/9Czja/UCMLVmB9N93GeWOU93XaFaEt6jbuoagNw==,
- }
+ resolution: {integrity: sha512-7nJ6v5lnJsXwGprnGXga4wx6d1POjvi5Qmf1ivTRxTjH4Z/9Czja/UCMLVmB9N93GeWOU93XaFaEt6jbuoagNw==}
promise-retry@2.0.1:
- resolution:
- {
- integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
+ engines: {node: '>=10'}
promise@8.3.0:
- resolution:
- {
- integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==,
- }
+ resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==}
prompts@2.4.2:
- resolution:
- {
- integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
+ engines: {node: '>= 6'}
prop-types@15.8.1:
- resolution:
- {
- integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==,
- }
-
- proper-lockfile@4.1.2:
- resolution:
- {
- integrity: sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==,
- }
-
- protobufjs@7.6.2:
- resolution:
- {
- integrity: sha512-N9EiLovGEQOJSPF26Ij7qUGvahfEnq0eeYZ02aigIedkmz1qZSwjnP9SBITHJuF/6MYbIW4HDN8zdYjsjqJKXQ==,
- }
- engines: { node: ">=12.0.0" }
-
- proxy-addr@2.0.7:
- resolution:
- {
- integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==,
- }
- engines: { node: ">= 0.10" }
+ resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
psl@1.15.0:
- resolution:
- {
- integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==,
- }
-
- pump@3.0.4:
- resolution:
- {
- integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==,
- }
+ resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==}
punycode@2.3.1:
- resolution:
- {
- integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
+ engines: {node: '>=6'}
pure-rand@6.1.0:
- resolution:
- {
- integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==,
- }
+ resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==}
qr-code-styling@1.9.2:
- resolution:
- {
- integrity: sha512-RgJaZJ1/RrXJ6N0j7a+pdw3zMBmzZU4VN2dtAZf8ZggCfRB5stEQ3IoDNGaNhYY3nnZKYlYSLl5YkfWN5dPutg==,
- }
- engines: { node: ">=18.18.0" }
+ resolution: {integrity: sha512-RgJaZJ1/RrXJ6N0j7a+pdw3zMBmzZU4VN2dtAZf8ZggCfRB5stEQ3IoDNGaNhYY3nnZKYlYSLl5YkfWN5dPutg==}
+ engines: {node: '>=18.18.0'}
qrcode-generator@1.5.2:
- resolution:
- {
- integrity: sha512-pItrW0Z9HnDBnFmgiNrY1uxRdri32Uh9EjNYLPVC2zZ3ZRIIEqBoDgm4DkvDwNNDHTK7FNkmr8zAa77BYc9xNw==,
- }
+ resolution: {integrity: sha512-pItrW0Z9HnDBnFmgiNrY1uxRdri32Uh9EjNYLPVC2zZ3ZRIIEqBoDgm4DkvDwNNDHTK7FNkmr8zAa77BYc9xNw==}
qrcode-terminal@0.11.0:
- resolution:
- {
- integrity: sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==,
- }
+ resolution: {integrity: sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==}
hasBin: true
qrcode-terminal@0.12.0:
- resolution:
- {
- integrity: sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==,
- }
- hasBin: true
-
- qrcode@1.5.4:
- resolution:
- {
- integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==,
- }
- engines: { node: ">=10.13.0" }
+ resolution: {integrity: sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==}
hasBin: true
- qs@6.15.2:
- resolution:
- {
- integrity: sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw==,
- }
- engines: { node: ">=0.6" }
-
query-string@7.1.3:
- resolution:
- {
- integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==}
+ engines: {node: '>=6'}
querystringify@2.2.0:
- resolution:
- {
- integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==,
- }
+ resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
queue-microtask@1.2.3:
- resolution:
- {
- integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==,
- }
+ resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
queue@6.0.2:
- resolution:
- {
- integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==,
- }
-
- quickjs-wasi@3.0.0:
- resolution:
- {
- integrity: sha512-X7ouKC4ZVf9bXQ8rsE7+L6TeBbesejAJH61x16xRaGAQGfBHHRcniWgzJZZVtHc8rS9yVsY+Tvk8/usAosg4bg==,
- }
+ resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==}
range-parser@1.2.1:
- resolution:
- {
- integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==,
- }
- engines: { node: ">= 0.6" }
-
- rastermill@0.3.1:
- resolution:
- {
- integrity: sha512-CX4nij6+ZLHYIaojJNfLTr7W+AiH/IPJi6E9Aw1br2///1KZL2KBOHd68rkcLedc47MPvb4hhH+fzYeGFa4A/Q==,
- }
- engines: { node: ">=22" }
-
- raw-body@3.0.2:
- resolution:
- {
- integrity: sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==,
- }
- engines: { node: ">= 0.10" }
+ resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
+ engines: {node: '>= 0.6'}
rc@1.2.8:
- resolution:
- {
- integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==,
- }
+ resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
hasBin: true
react-base16-styling@0.10.0:
- resolution:
- {
- integrity: sha512-H1k2eFB6M45OaiRru3PBXkuCcn2qNmx+gzLb4a9IPMR7tMH8oBRXU5jGbPDYG1Hz+82d88ED0vjR8BmqU3pQdg==,
- }
+ resolution: {integrity: sha512-H1k2eFB6M45OaiRru3PBXkuCcn2qNmx+gzLb4a9IPMR7tMH8oBRXU5jGbPDYG1Hz+82d88ED0vjR8BmqU3pQdg==}
react-base16-styling@0.8.2:
- resolution:
- {
- integrity: sha512-5bxHCNKT/FfU9yMzNB/CaCQLGqZ/Nr4FnaIRJUTkwwPTRaCfYAP+/3opeQb61XvesmofJ4FloTSYW9aw1tMXqQ==,
- }
+ resolution: {integrity: sha512-5bxHCNKT/FfU9yMzNB/CaCQLGqZ/Nr4FnaIRJUTkwwPTRaCfYAP+/3opeQb61XvesmofJ4FloTSYW9aw1tMXqQ==}
react-devtools-core@6.1.5:
- resolution:
- {
- integrity: sha512-ePrwPfxAnB+7hgnEr8vpKxL9cmnp7F322t8oqcPshbIQQhDKgFDW4tjhF2wjVbdXF9O/nyuy3sQWd9JGpiLPvA==,
- }
+ resolution: {integrity: sha512-ePrwPfxAnB+7hgnEr8vpKxL9cmnp7F322t8oqcPshbIQQhDKgFDW4tjhF2wjVbdXF9O/nyuy3sQWd9JGpiLPvA==}
react-dom@19.1.0:
- resolution:
- {
- integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==,
- }
+ resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==}
peerDependencies:
react: 19.1.0
react-fast-compare@3.2.2:
- resolution:
- {
- integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==,
- }
+ resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
react-freeze@1.0.4:
- resolution:
- {
- integrity: sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA==}
+ engines: {node: '>=10'}
peerDependencies:
react: 19.1.0
react-is@16.13.1:
- resolution:
- {
- integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==,
- }
+ resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
react-is@18.3.1:
- resolution:
- {
- integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==,
- }
+ resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
react-is@19.2.6:
- resolution:
- {
- integrity: sha512-XjBR15BhXuylgWGuslhDKqlSayuqvqBX91BP8pauG8kd1zY8kotkNWbXksTCNRarse4kuGbe2kIY05ARtwNIvw==,
- }
+ resolution: {integrity: sha512-XjBR15BhXuylgWGuslhDKqlSayuqvqBX91BP8pauG8kd1zY8kotkNWbXksTCNRarse4kuGbe2kIY05ARtwNIvw==}
react-native-gesture-handler@2.28.0:
- resolution:
- {
- integrity: sha512-0msfJ1vRxXKVgTgvL+1ZOoYw3/0z1R+Ked0+udoJhyplC2jbVKIJ8Z1bzWdpQRCV3QcQ87Op0zJVE5DhKK2A0A==,
- }
+ resolution: {integrity: sha512-0msfJ1vRxXKVgTgvL+1ZOoYw3/0z1R+Ked0+udoJhyplC2jbVKIJ8Z1bzWdpQRCV3QcQ87Op0zJVE5DhKK2A0A==}
peerDependencies:
react: 19.1.0
- react-native: "*"
+ react-native: '*'
react-native-is-edge-to-edge@1.1.7:
- resolution:
- {
- integrity: sha512-EH6i7E8epJGIcu7KpfXYXiV2JFIYITtq+rVS8uEb+92naMRBdxhTuS8Wn2Q7j9sqyO0B+Xbaaf9VdipIAmGW4w==,
- }
+ resolution: {integrity: sha512-EH6i7E8epJGIcu7KpfXYXiV2JFIYITtq+rVS8uEb+92naMRBdxhTuS8Wn2Q7j9sqyO0B+Xbaaf9VdipIAmGW4w==}
peerDependencies:
react: 19.1.0
- react-native: "*"
+ react-native: '*'
react-native-is-edge-to-edge@1.3.1:
- resolution:
- {
- integrity: sha512-NIXU/iT5+ORyCc7p0z2nnlkouYKX425vuU1OEm6bMMtWWR9yvb+Xg5AZmImTKoF9abxCPqrKC3rOZsKzUYgYZA==,
- }
+ resolution: {integrity: sha512-NIXU/iT5+ORyCc7p0z2nnlkouYKX425vuU1OEm6bMMtWWR9yvb+Xg5AZmImTKoF9abxCPqrKC3rOZsKzUYgYZA==}
peerDependencies:
react: 19.1.0
- react-native: "*"
+ react-native: '*'
react-native-json-tree@1.5.0:
- resolution:
- {
- integrity: sha512-RW6rYmuC+tzOzGdgnbZzMFoFTrClZUFHrx406wIX4/w8FGOcOi3en1TpSNkNcxzKm4FGVHDtqR//gThXwLbntA==,
- }
+ resolution: {integrity: sha512-RW6rYmuC+tzOzGdgnbZzMFoFTrClZUFHrx406wIX4/w8FGOcOi3en1TpSNkNcxzKm4FGVHDtqR//gThXwLbntA==}
peerDependencies:
react: 19.1.0
- react-native: ">=0.43.2"
+ react-native: '>=0.43.2'
react-native-keychain@10.0.0:
- resolution:
- {
- integrity: sha512-YzPKSAnSzGEJ12IK6CctNLU79T1W15WDrElRQ+1/FsOazGX9ucFPTQwgYe8Dy8jiSEDJKM4wkVa3g4lD2Z+Pnw==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-YzPKSAnSzGEJ12IK6CctNLU79T1W15WDrElRQ+1/FsOazGX9ucFPTQwgYe8Dy8jiSEDJKM4wkVa3g4lD2Z+Pnw==}
+ engines: {node: '>=16'}
react-native-mmkv@4.1.2:
- resolution:
- {
- integrity: sha512-6LHb2DQBXuo96Aues13EugmlWw/HAYuh3KoJoQNrC4JsBwn3J3KiRYAg2mCm5Je0VYq2YsmbgZG7XJwX/WFYZA==,
- }
+ resolution: {integrity: sha512-6LHb2DQBXuo96Aues13EugmlWw/HAYuh3KoJoQNrC4JsBwn3J3KiRYAg2mCm5Je0VYq2YsmbgZG7XJwX/WFYZA==}
peerDependencies:
react: 19.1.0
- react-native: "*"
- react-native-nitro-modules: "*"
+ react-native: '*'
+ react-native-nitro-modules: '*'
react-native-mmkv@4.3.1:
- resolution:
- {
- integrity: sha512-APyGGaaHtayVgT18dBM8QGGZKr9pGfSTiBwbbPNzhGGfJQSU7awLGRGq879OqYl31HmVks9hOBLCs+qfgacRZg==,
- }
+ resolution: {integrity: sha512-APyGGaaHtayVgT18dBM8QGGZKr9pGfSTiBwbbPNzhGGfJQSU7awLGRGq879OqYl31HmVks9hOBLCs+qfgacRZg==}
peerDependencies:
react: 19.1.0
- react-native: "*"
- react-native-nitro-modules: "*"
+ react-native: '*'
+ react-native-nitro-modules: '*'
react-native-nitro-modules@0.35.9:
- resolution:
- {
- integrity: sha512-yCO6eJ85SPPUo4a4an7H5oj6wPCSIT72fbjr5WZ/20n6zswaJ2gNNpnWtg2We0AZwkAOjSqkOJ0Vjc05p6kGiA==,
- }
+ resolution: {integrity: sha512-yCO6eJ85SPPUo4a4an7H5oj6wPCSIT72fbjr5WZ/20n6zswaJ2gNNpnWtg2We0AZwkAOjSqkOJ0Vjc05p6kGiA==}
peerDependencies:
react: 19.1.0
- react-native: "*"
+ react-native: '*'
react-native-passkey@3.4.0:
- resolution:
- {
- integrity: sha512-tqMtUGUTHLvk4Pr+/pKXbz+BLbK30VsprUeEV/jog4ZCKq8v8PPaijL5HsyM/fx4NEZcgBAeL34gVVVn0L7osA==,
- }
+ resolution: {integrity: sha512-tqMtUGUTHLvk4Pr+/pKXbz+BLbK30VsprUeEV/jog4ZCKq8v8PPaijL5HsyM/fx4NEZcgBAeL34gVVVn0L7osA==}
peerDependencies:
react: 19.1.0
- react-native: "*"
+ react-native: '*'
react-native-quick-base64@2.2.2:
- resolution:
- {
- integrity: sha512-WLHSifHLoamr2kF00Gov0W9ud6CfPshe1rmqWTquVIi9c62qxOaJCFVDrXFZhEBU8B8PvGLVuOlVKH78yhY0Fg==,
- }
+ resolution: {integrity: sha512-WLHSifHLoamr2kF00Gov0W9ud6CfPshe1rmqWTquVIi9c62qxOaJCFVDrXFZhEBU8B8PvGLVuOlVKH78yhY0Fg==}
peerDependencies:
react: 19.1.0
- react-native: "*"
+ react-native: '*'
react-native-quick-base64@3.0.0:
- resolution:
- {
- integrity: sha512-gnJhA4a/QIGrptZQJv0hLLne8yyJPkdXtn33LHEzq3nhzsv+jRhrxr07wYwYX+CKCRXmuNkZ3Wo7LapSrFVmQg==,
- }
+ resolution: {integrity: sha512-gnJhA4a/QIGrptZQJv0hLLne8yyJPkdXtn33LHEzq3nhzsv+jRhrxr07wYwYX+CKCRXmuNkZ3Wo7LapSrFVmQg==}
peerDependencies:
react: 19.1.0
- react-native: "*"
+ react-native: '*'
react-native-quick-crypto@1.0.18:
- resolution:
- {
- integrity: sha512-VjBLW2PasOUSxAqy2IDNvLqBez9NwTDBecwCpuz0F5WkzPDGZ4CuZEFGyL1qfkjwok11F0x3IyMrmCyFBAtOCQ==,
- }
+ resolution: {integrity: sha512-VjBLW2PasOUSxAqy2IDNvLqBez9NwTDBecwCpuz0F5WkzPDGZ4CuZEFGyL1qfkjwok11F0x3IyMrmCyFBAtOCQ==}
peerDependencies:
- expo: ">=48.0.0"
- expo-build-properties: "*"
+ expo: '>=48.0.0'
+ expo-build-properties: '*'
react: 19.1.0
- react-native: "*"
- react-native-nitro-modules: ">=0.29.1"
- react-native-quick-base64: ">=2.1.0"
+ react-native: '*'
+ react-native-nitro-modules: '>=0.29.1'
+ react-native-quick-base64: '>=2.1.0'
peerDependenciesMeta:
expo:
optional: true
@@ -10057,17 +4899,14 @@ packages:
optional: true
react-native-quick-crypto@1.1.5:
- resolution:
- {
- integrity: sha512-LzAxXCMLyzPSMRUSPkcEDV6skf/CqLp8CEKiXkO10rMMe49YRelL95SheDfpDuo2YGh7Keop9fy7Xo7EUSY1WA==,
- }
+ resolution: {integrity: sha512-LzAxXCMLyzPSMRUSPkcEDV6skf/CqLp8CEKiXkO10rMMe49YRelL95SheDfpDuo2YGh7Keop9fy7Xo7EUSY1WA==}
peerDependencies:
- expo: ">=48.0.0"
- expo-build-properties: "*"
+ expo: '>=48.0.0'
+ expo-build-properties: '*'
react: 19.1.0
- react-native: "*"
- react-native-nitro-modules: ">=0.31.2"
- react-native-quick-base64: ">=3.0.0"
+ react-native: '*'
+ react-native-nitro-modules: '>=0.31.2'
+ react-native-quick-base64: '>=3.0.0'
peerDependenciesMeta:
expo:
optional: true
@@ -10075,1901 +4914,841 @@ packages:
optional: true
react-native-reanimated@3.19.5:
- resolution:
- {
- integrity: sha512-bd4AwIkBAaY4BjrgpSoKjEaRG/tXD756F5nGuiH5IMBSKN8tRdUEA8hWZCyIo/R6/kha/tVSoCqodVUACh7ZWw==,
- }
+ resolution: {integrity: sha512-bd4AwIkBAaY4BjrgpSoKjEaRG/tXD756F5nGuiH5IMBSKN8tRdUEA8hWZCyIo/R6/kha/tVSoCqodVUACh7ZWw==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
react: 19.1.0
- react-native: "*"
+ react-native: '*'
react-native-safe-area-context@5.6.2:
- resolution:
- {
- integrity: sha512-4XGqMNj5qjUTYywJqpdWZ9IG8jgkS3h06sfVjfw5yZQZfWnRFXczi0GnYyFyCc2EBps/qFmoCH8fez//WumdVg==,
- }
+ resolution: {integrity: sha512-4XGqMNj5qjUTYywJqpdWZ9IG8jgkS3h06sfVjfw5yZQZfWnRFXczi0GnYyFyCc2EBps/qFmoCH8fez//WumdVg==}
peerDependencies:
react: 19.1.0
- react-native: "*"
+ react-native: '*'
react-native-screens@4.16.0:
- resolution:
- {
- integrity: sha512-yIAyh7F/9uWkOzCi1/2FqvNvK6Wb9Y1+Kzn16SuGfN9YFJDTbwlzGRvePCNTOX0recpLQF3kc2FmvMUhyTCH1Q==,
- }
+ resolution: {integrity: sha512-yIAyh7F/9uWkOzCi1/2FqvNvK6Wb9Y1+Kzn16SuGfN9YFJDTbwlzGRvePCNTOX0recpLQF3kc2FmvMUhyTCH1Q==}
peerDependencies:
react: 19.1.0
- react-native: "*"
+ react-native: '*'
react-native-webrtc@124.0.7:
- resolution:
- {
- integrity: sha512-gnXPdbUS8IkKHq9WNaWptW/yy5s6nMyI6cNn90LXdobPVCgYSk6NA2uUGdT4c4J14BRgaFA95F+cR28tUPkMVA==,
- }
+ resolution: {integrity: sha512-gnXPdbUS8IkKHq9WNaWptW/yy5s6nMyI6cNn90LXdobPVCgYSk6NA2uUGdT4c4J14BRgaFA95F+cR28tUPkMVA==}
peerDependencies:
- react-native: ">=0.60.0"
+ react-native: '>=0.60.0'
react-native@0.81.5:
- resolution:
- {
- integrity: sha512-1w+/oSjEXZjMqsIvmkCRsOc8UBYv163bTWKTI8+1mxztvQPhCRYGTvZ/PL1w16xXHneIj/SLGfxWg2GWN2uexw==,
- }
- engines: { node: ">= 20.19.4" }
+ resolution: {integrity: sha512-1w+/oSjEXZjMqsIvmkCRsOc8UBYv163bTWKTI8+1mxztvQPhCRYGTvZ/PL1w16xXHneIj/SLGfxWg2GWN2uexw==}
+ engines: {node: '>= 20.19.4'}
hasBin: true
peerDependencies:
- "@types/react": ^19.1.0
+ '@types/react': ^19.1.0
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
react-refresh@0.14.2:
- resolution:
- {
- integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
+ engines: {node: '>=0.10.0'}
react-remove-scroll-bar@2.3.8:
- resolution:
- {
- integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
+ engines: {node: '>=10'}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
react-remove-scroll@2.7.2:
- resolution:
- {
- integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==}
+ engines: {node: '>=10'}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
react-style-singleton@2.2.3:
- resolution:
- {
- integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
+ engines: {node: '>=10'}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
react-test-renderer@19.1.0:
- resolution:
- {
- integrity: sha512-jXkSl3CpvPYEF+p/eGDLB4sPoDX8pKkYvRl9+rR8HxLY0X04vW7hCm1/0zHoUSjPZ3bDa+wXWNTDVIw/R8aDVw==,
- }
+ resolution: {integrity: sha512-jXkSl3CpvPYEF+p/eGDLB4sPoDX8pKkYvRl9+rR8HxLY0X04vW7hCm1/0zHoUSjPZ3bDa+wXWNTDVIw/R8aDVw==}
peerDependencies:
react: 19.1.0
react@19.1.0:
- resolution:
- {
- integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==,
- }
- engines: { node: ">=0.10.0" }
-
- readable-stream@2.3.8:
- resolution:
- {
- integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==,
- }
+ resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==}
+ engines: {node: '>=0.10.0'}
readable-stream@3.6.2:
- resolution:
- {
- integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
+ engines: {node: '>= 6'}
readable-stream@4.5.2:
- resolution:
- {
- integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
readable-stream@4.7.0:
- resolution:
- {
- integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
-
- readdirp@5.0.0:
- resolution:
- {
- integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==,
- }
- engines: { node: ">= 20.19.0" }
+ resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
redent@3.0.0:
- resolution:
- {
- integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
+ engines: {node: '>=8'}
redeyed@2.1.1:
- resolution:
- {
- integrity: sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==,
- }
+ resolution: {integrity: sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==}
regenerate-unicode-properties@10.2.2:
- resolution:
- {
- integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==}
+ engines: {node: '>=4'}
regenerate@1.4.2:
- resolution:
- {
- integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==,
- }
+ resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
regenerator-runtime@0.13.11:
- resolution:
- {
- integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==,
- }
+ resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
regexpu-core@6.4.0:
- resolution:
- {
- integrity: sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==}
+ engines: {node: '>=4'}
regjsgen@0.8.0:
- resolution:
- {
- integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==,
- }
+ resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
regjsparser@0.13.1:
- resolution:
- {
- integrity: sha512-dLsljMd9sqwRkby8zhO1gSg3PnJIBFid8f4CQj/sXx+7cKx+E7u0PKhZ+U4wmhx7EfmtvnA318oVaIkAB1lRJw==,
- }
+ resolution: {integrity: sha512-dLsljMd9sqwRkby8zhO1gSg3PnJIBFid8f4CQj/sXx+7cKx+E7u0PKhZ+U4wmhx7EfmtvnA318oVaIkAB1lRJw==}
hasBin: true
remove-trailing-slash@0.1.1:
- resolution:
- {
- integrity: sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==,
- }
+ resolution: {integrity: sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==}
require-directory@2.1.1:
- resolution:
- {
- integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
+ engines: {node: '>=0.10.0'}
require-from-string@2.0.2:
- resolution:
- {
- integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==,
- }
- engines: { node: ">=0.10.0" }
-
- require-main-filename@2.0.0:
- resolution:
- {
- integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==,
- }
+ resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
+ engines: {node: '>=0.10.0'}
requireg@0.2.2:
- resolution:
- {
- integrity: sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==,
- }
- engines: { node: ">= 4.0.0" }
+ resolution: {integrity: sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==}
+ engines: {node: '>= 4.0.0'}
requires-port@1.0.0:
- resolution:
- {
- integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==,
- }
+ resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
resolve-cwd@3.0.0:
- resolution:
- {
- integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
+ engines: {node: '>=8'}
resolve-from@5.0.0:
- resolution:
- {
- integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
+ engines: {node: '>=8'}
resolve-workspace-root@2.0.1:
- resolution:
- {
- integrity: sha512-nR23LHAvaI6aHtMg6RWoaHpdR4D881Nydkzi2CixINyg9T00KgaJdJI6Vwty+Ps8WLxZHuxsS0BseWjxSA4C+w==,
- }
+ resolution: {integrity: sha512-nR23LHAvaI6aHtMg6RWoaHpdR4D881Nydkzi2CixINyg9T00KgaJdJI6Vwty+Ps8WLxZHuxsS0BseWjxSA4C+w==}
resolve.exports@2.0.3:
- resolution:
- {
- integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==}
+ engines: {node: '>=10'}
resolve@1.22.12:
- resolution:
- {
- integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==}
+ engines: {node: '>= 0.4'}
hasBin: true
resolve@1.7.1:
- resolution:
- {
- integrity: sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==,
- }
+ resolution: {integrity: sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==}
restore-cursor@2.0.0:
- resolution:
- {
- integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==}
+ engines: {node: '>=4'}
restore-cursor@3.1.0:
- resolution:
- {
- integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
+ engines: {node: '>=8'}
retry@0.12.0:
- resolution:
- {
- integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==,
- }
- engines: { node: ">= 4" }
-
- retry@0.13.1:
- resolution:
- {
- integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==,
- }
- engines: { node: ">= 4" }
+ resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
+ engines: {node: '>= 4'}
reusify@1.1.0:
- resolution:
- {
- integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==,
- }
- engines: { iojs: ">=1.0.0", node: ">=0.10.0" }
+ resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
+ engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
rimraf@2.4.5:
- resolution:
- {
- integrity: sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==,
- }
+ resolution: {integrity: sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==}
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
rimraf@3.0.2:
- resolution:
- {
- integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==,
- }
+ resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
rimraf@5.0.10:
- resolution:
- {
- integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==,
- }
- hasBin: true
-
- rollup@4.61.1:
- resolution:
- {
- integrity: sha512-I4KW6iuRpuu2uHBLraZ1wNZe0DP7lnRha+VJ9tNaYVaVgKhW0aI3h4RYnoRPeql0flHm/Co55b7snEDcOfOJrA==,
- }
- engines: { node: ">=18.0.0", npm: ">=8.0.0" }
+ resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==}
hasBin: true
- router@2.2.0:
- resolution:
- {
- integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==,
- }
- engines: { node: ">= 18" }
-
run-parallel@1.2.0:
- resolution:
- {
- integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==,
- }
-
- safe-buffer@5.1.2:
- resolution:
- {
- integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==,
- }
+ resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
safe-buffer@5.2.1:
- resolution:
- {
- integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==,
- }
+ resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
safe-json-stringify@1.2.0:
- resolution:
- {
- integrity: sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==,
- }
+ resolution: {integrity: sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==}
safe-regex-test@1.1.0:
- resolution:
- {
- integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
+ engines: {node: '>= 0.4'}
safer-buffer@2.1.2:
- resolution:
- {
- integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==,
- }
+ resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
sax@1.6.0:
- resolution:
- {
- integrity: sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==,
- }
- engines: { node: ">=11.0.0" }
+ resolution: {integrity: sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==}
+ engines: {node: '>=11.0.0'}
saxes@6.0.0:
- resolution:
- {
- integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==,
- }
- engines: { node: ">=v12.22.7" }
+ resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
+ engines: {node: '>=v12.22.7'}
scheduler@0.26.0:
- resolution:
- {
- integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==,
- }
+ resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==}
semver@6.3.1:
- resolution:
- {
- integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==,
- }
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
semver@7.5.2:
- resolution:
- {
- integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==}
+ engines: {node: '>=10'}
hasBin: true
semver@7.5.4:
- resolution:
- {
- integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
+ engines: {node: '>=10'}
hasBin: true
semver@7.6.3:
- resolution:
- {
- integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
+ engines: {node: '>=10'}
hasBin: true
semver@7.8.1:
- resolution:
- {
- integrity: sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==}
+ engines: {node: '>=10'}
hasBin: true
send@0.19.2:
- resolution:
- {
- integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==,
- }
- engines: { node: ">= 0.8.0" }
-
- send@1.2.1:
- resolution:
- {
- integrity: sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==,
- }
- engines: { node: ">= 18" }
+ resolution: {integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==}
+ engines: {node: '>= 0.8.0'}
serialize-error@2.1.0:
- resolution:
- {
- integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==}
+ engines: {node: '>=0.10.0'}
serve-static@1.16.3:
- resolution:
- {
- integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==,
- }
- engines: { node: ">= 0.8.0" }
-
- serve-static@2.2.1:
- resolution:
- {
- integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==,
- }
- engines: { node: ">= 18" }
+ resolution: {integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==}
+ engines: {node: '>= 0.8.0'}
server-only@0.0.1:
- resolution:
- {
- integrity: sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==,
- }
+ resolution: {integrity: sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==}
set-blocking@2.0.0:
- resolution:
- {
- integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==,
- }
+ resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
set-function-length@1.2.2:
- resolution:
- {
- integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
+ engines: {node: '>= 0.4'}
set-interval-async@3.0.3:
- resolution:
- {
- integrity: sha512-o4DyBv6mko+A9cH3QKek4SAAT5UyJRkfdTi6JHii6ZCKUYFun8SwgBmQrOXd158JOwBQzA+BnO8BvT64xuCaSw==,
- }
- engines: { node: ">= 14.0.0" }
-
- setimmediate@1.0.5:
- resolution:
- {
- integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==,
- }
+ resolution: {integrity: sha512-o4DyBv6mko+A9cH3QKek4SAAT5UyJRkfdTi6JHii6ZCKUYFun8SwgBmQrOXd158JOwBQzA+BnO8BvT64xuCaSw==}
+ engines: {node: '>= 14.0.0'}
setprototypeof@1.2.0:
- resolution:
- {
- integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==,
- }
+ resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
sf-symbols-typescript@2.2.0:
- resolution:
- {
- integrity: sha512-TPbeg0b7ylrswdGCji8FRGFAKuqbpQlLbL8SOle3j1iHSs5Ob5mhvMAxWN2UItOjgALAB5Zp3fmMfj8mbWvXKw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-TPbeg0b7ylrswdGCji8FRGFAKuqbpQlLbL8SOle3j1iHSs5Ob5mhvMAxWN2UItOjgALAB5Zp3fmMfj8mbWvXKw==}
+ engines: {node: '>=10'}
shallowequal@1.1.0:
- resolution:
- {
- integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==,
- }
+ resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
shebang-command@2.0.0:
- resolution:
- {
- integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
+ engines: {node: '>=8'}
shebang-regex@3.0.0:
- resolution:
- {
- integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
+ engines: {node: '>=8'}
shell-quote@1.8.4:
- resolution:
- {
- integrity: sha512-VsC6n6vz1ihYYyZZwX7YZSF5l5x36ca17OC+a69h94YqB7X6XLwf+5MOgynYir2SLFUbl8gIYvBo8K8RoNQ6bQ==,
- }
- engines: { node: ">= 0.4" }
-
- side-channel-list@1.0.1:
- resolution:
- {
- integrity: sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==,
- }
- engines: { node: ">= 0.4" }
-
- side-channel-map@1.0.1:
- resolution:
- {
- integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==,
- }
- engines: { node: ">= 0.4" }
-
- side-channel-weakmap@1.0.2:
- resolution:
- {
- integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==,
- }
- engines: { node: ">= 0.4" }
-
- side-channel@1.1.0:
- resolution:
- {
- integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==,
- }
- engines: { node: ">= 0.4" }
-
- siginfo@2.0.0:
- resolution:
- {
- integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==,
- }
+ resolution: {integrity: sha512-VsC6n6vz1ihYYyZZwX7YZSF5l5x36ca17OC+a69h94YqB7X6XLwf+5MOgynYir2SLFUbl8gIYvBo8K8RoNQ6bQ==}
+ engines: {node: '>= 0.4'}
signal-exit@3.0.7:
- resolution:
- {
- integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==,
- }
+ resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
signal-exit@4.1.0:
- resolution:
- {
- integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
+ engines: {node: '>=14'}
simple-concat@1.0.1:
- resolution:
- {
- integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==,
- }
+ resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
simple-get@3.1.1:
- resolution:
- {
- integrity: sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA==,
- }
-
- simple-get@4.0.1:
- resolution:
- {
- integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==,
- }
+ resolution: {integrity: sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA==}
simple-plist@1.3.1:
- resolution:
- {
- integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==,
- }
+ resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==}
simple-swizzle@0.2.4:
- resolution:
- {
- integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==,
- }
+ resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==}
sisteransi@1.0.5:
- resolution:
- {
- integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==,
- }
+ resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
slash@2.0.0:
- resolution:
- {
- integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==}
+ engines: {node: '>=6'}
slash@3.0.0:
- resolution:
- {
- integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
+ engines: {node: '>=8'}
slash@5.1.0:
- resolution:
- {
- integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==,
- }
- engines: { node: ">=14.16" }
+ resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
+ engines: {node: '>=14.16'}
slice-ansi@4.0.0:
- resolution:
- {
- integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
+ engines: {node: '>=10'}
slugify@1.6.9:
- resolution:
- {
- integrity: sha512-vZ7rfeehZui7wQs438JXBckYLkIIdfHOXsaVEUMyS5fHo1483l1bMdo0EDSWYclY0yZKFOipDy4KHuKs6ssvdg==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-vZ7rfeehZui7wQs438JXBckYLkIIdfHOXsaVEUMyS5fHo1483l1bMdo0EDSWYclY0yZKFOipDy4KHuKs6ssvdg==}
+ engines: {node: '>=8.0.0'}
socket.io-client@4.8.3:
- resolution:
- {
- integrity: sha512-uP0bpjWrjQmUt5DTHq9RuoCBdFJF10cdX9X+a368j/Ft0wmaVgxlrjvK3kjvgCODOMMOz9lcaRzxmso0bTWZ/g==,
- }
- engines: { node: ">=10.0.0" }
+ resolution: {integrity: sha512-uP0bpjWrjQmUt5DTHq9RuoCBdFJF10cdX9X+a368j/Ft0wmaVgxlrjvK3kjvgCODOMMOz9lcaRzxmso0bTWZ/g==}
+ engines: {node: '>=10.0.0'}
socket.io-parser@4.2.6:
- resolution:
- {
- integrity: sha512-asJqbVBDsBCJx0pTqw3WfesSY0iRX+2xzWEWzrpcH7L6fLzrhyF8WPI8UaeM4YCuDfpwA/cgsdugMsmtz8EJeg==,
- }
- engines: { node: ">=10.0.0" }
+ resolution: {integrity: sha512-asJqbVBDsBCJx0pTqw3WfesSY0iRX+2xzWEWzrpcH7L6fLzrhyF8WPI8UaeM4YCuDfpwA/cgsdugMsmtz8EJeg==}
+ engines: {node: '>=10.0.0'}
source-map-js@1.2.1:
- resolution:
- {
- integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
+ engines: {node: '>=0.10.0'}
source-map-support@0.5.13:
- resolution:
- {
- integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==,
- }
+ resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==}
source-map-support@0.5.21:
- resolution:
- {
- integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==,
- }
+ resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
source-map@0.5.6:
- resolution:
- {
- integrity: sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==}
+ engines: {node: '>=0.10.0'}
source-map@0.5.7:
- resolution:
- {
- integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
+ engines: {node: '>=0.10.0'}
source-map@0.6.1:
- resolution:
- {
- integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
+ engines: {node: '>=0.10.0'}
split-on-first@1.1.0:
- resolution:
- {
- integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==}
+ engines: {node: '>=6'}
sprintf-js@1.0.3:
- resolution:
- {
- integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==,
- }
-
- sqlite-vec-darwin-arm64@0.1.9:
- resolution:
- {
- integrity: sha512-jSsZpE42OfBkGL/ItyJTVCUwl6o6Ka3U5rc4j+UBDIQzC1ulSSKMEhQLthsOnF/MdAf1MuAkYhkdKmmcjaIZQg==,
- }
- cpu: [arm64]
- os: [darwin]
-
- sqlite-vec-darwin-x64@0.1.9:
- resolution:
- {
- integrity: sha512-KDlVyqQT7pnOhU1ymB9gs7dMbSoVmKHitT+k1/xkjarcX8bBqPxWrGlK/R+C5WmWkfvWwyq5FfXfiBYCBs6PlA==,
- }
- cpu: [x64]
- os: [darwin]
-
- sqlite-vec-linux-arm64@0.1.9:
- resolution:
- {
- integrity: sha512-5wXVJ9c9kR4CHm/wVqXb/R+XUHTdpZ4nWbPHlS+gc9qQFVHs92Km4bPnCKX4rtcPMzvNis+SIzMJR1SCEwpuUw==,
- }
- cpu: [arm64]
- os: [linux]
-
- sqlite-vec-linux-x64@0.1.9:
- resolution:
- {
- integrity: sha512-w3tCH8xK2finW8fQJ/m8uqKodXUZ9KAuAar2UIhz4BHILfpE0WM/MTGCRfa7RjYbrYim5Luk3guvMOGI7T7JQA==,
- }
- cpu: [x64]
- os: [linux]
-
- sqlite-vec-windows-x64@0.1.9:
- resolution:
- {
- integrity: sha512-y3gEIyy/17bq2QFPQOWLE68TYWcRZkBQVA2XLrTPHNTOp55xJi/BBBmOm40tVMDMjtP+Elpk6UBUXdaq+46b0Q==,
- }
- cpu: [x64]
- os: [win32]
-
- sqlite-vec@0.1.9:
- resolution:
- {
- integrity: sha512-L7XJWRIBNvR9O5+vh1FQ+IGkh/3D2AzVksW5gdtk28m78Hy8skFD0pqReKH1Yp0/BUKRGcffgKvyO/EON5JXpA==,
- }
+ resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
stack-generator@2.0.10:
- resolution:
- {
- integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==,
- }
+ resolution: {integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==}
stack-utils@2.0.6:
- resolution:
- {
- integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==,
- }
- engines: { node: ">=10" }
-
- stackback@0.0.2:
- resolution:
- {
- integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==,
- }
+ resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
+ engines: {node: '>=10'}
stackframe@1.3.4:
- resolution:
- {
- integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==,
- }
+ resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
stacktrace-gps@3.1.2:
- resolution:
- {
- integrity: sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==,
- }
+ resolution: {integrity: sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==}
stacktrace-js@2.0.2:
- resolution:
- {
- integrity: sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==,
- }
+ resolution: {integrity: sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==}
stacktrace-parser@0.1.11:
- resolution:
- {
- integrity: sha512-WjlahMgHmCJpqzU8bIBy4qtsZdU9lRlcZE3Lvyej6t4tuOuv1vk57OW3MBrj6hXBFx/nNoC9MPMTcr5YA7NQbg==,
- }
- engines: { node: ">=6" }
-
- standardwebhooks@1.0.0:
- resolution:
- {
- integrity: sha512-BbHGOQK9olHPMvQNHWul6MYlrRTAOKn03rOe4A8O3CLWhNf4YHBqq2HJKKC+sfqpxiBY52pNeesD6jIiLDz8jg==,
- }
+ resolution: {integrity: sha512-WjlahMgHmCJpqzU8bIBy4qtsZdU9lRlcZE3Lvyej6t4tuOuv1vk57OW3MBrj6hXBFx/nNoC9MPMTcr5YA7NQbg==}
+ engines: {node: '>=6'}
statuses@1.5.0:
- resolution:
- {
- integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
+ engines: {node: '>= 0.6'}
statuses@2.0.2:
- resolution:
- {
- integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==,
- }
- engines: { node: ">= 0.8" }
-
- std-env@3.10.0:
- resolution:
- {
- integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==,
- }
+ resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
+ engines: {node: '>= 0.8'}
stream-buffers@2.2.0:
- resolution:
- {
- integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==,
- }
- engines: { node: ">= 0.10.0" }
+ resolution: {integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==}
+ engines: {node: '>= 0.10.0'}
streamx@2.26.0:
- resolution:
- {
- integrity: sha512-VvNG1K72Po/xwJzxZFnZ++Tbrv4lwSptsbkFuzXCJAYZvCK5nnxsvXU6ajqkv7chyiI1Y0YXq2Jh8Iy8Y7NF/A==,
- }
+ resolution: {integrity: sha512-VvNG1K72Po/xwJzxZFnZ++Tbrv4lwSptsbkFuzXCJAYZvCK5nnxsvXU6ajqkv7chyiI1Y0YXq2Jh8Iy8Y7NF/A==}
strict-uri-encode@2.0.0:
- resolution:
- {
- integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
+ engines: {node: '>=4'}
string-length@4.0.2:
- resolution:
- {
- integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==}
+ engines: {node: '>=10'}
string-length@5.0.1:
- resolution:
- {
- integrity: sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==,
- }
- engines: { node: ">=12.20" }
+ resolution: {integrity: sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==}
+ engines: {node: '>=12.20'}
string-width@4.2.3:
- resolution:
- {
- integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
+ engines: {node: '>=8'}
string-width@5.1.2:
- resolution:
- {
- integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==,
- }
- engines: { node: ">=12" }
-
- string_decoder@1.1.1:
- resolution:
- {
- integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==,
- }
+ resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
+ engines: {node: '>=12'}
string_decoder@1.3.0:
- resolution:
- {
- integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==,
- }
+ resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
strip-ansi@5.2.0:
- resolution:
- {
- integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==}
+ engines: {node: '>=6'}
strip-ansi@6.0.1:
- resolution:
- {
- integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
+ engines: {node: '>=8'}
strip-ansi@7.2.0:
- resolution:
- {
- integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==}
+ engines: {node: '>=12'}
strip-bom@4.0.0:
- resolution:
- {
- integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==}
+ engines: {node: '>=8'}
strip-final-newline@2.0.0:
- resolution:
- {
- integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
+ engines: {node: '>=6'}
strip-indent@3.0.0:
- resolution:
- {
- integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
+ engines: {node: '>=8'}
strip-json-comments@2.0.1:
- resolution:
- {
- integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
+ engines: {node: '>=0.10.0'}
strip-json-comments@3.1.1:
- resolution:
- {
- integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==,
- }
- engines: { node: ">=8" }
-
- strip-literal@3.1.0:
- resolution:
- {
- integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==,
- }
-
- strtok3@10.3.5:
- resolution:
- {
- integrity: sha512-ki4hZQfh5rX0QDLLkOCj+h+CVNkqmp/CMf8v8kZpkNVK6jGQooMytqzLZYUVYIZcFZ6yDB70EfD8POcFXiF5oA==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
+ engines: {node: '>=8'}
structured-headers@0.4.1:
- resolution:
- {
- integrity: sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==,
- }
+ resolution: {integrity: sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==}
sucrase@3.35.0:
- resolution:
- {
- integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
+ engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
sucrase@3.35.1:
- resolution:
- {
- integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
+ engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
supports-color@5.5.0:
- resolution:
- {
- integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
+ engines: {node: '>=4'}
supports-color@7.2.0:
- resolution:
- {
- integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
+ engines: {node: '>=8'}
supports-color@8.1.1:
- resolution:
- {
- integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
+ engines: {node: '>=10'}
supports-hyperlinks@2.3.0:
- resolution:
- {
- integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==}
+ engines: {node: '>=8'}
supports-preserve-symlinks-flag@1.0.0:
- resolution:
- {
- integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
+ engines: {node: '>= 0.4'}
symbol-tree@3.2.4:
- resolution:
- {
- integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==,
- }
-
- tar-fs@2.1.4:
- resolution:
- {
- integrity: sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==,
- }
-
- tar-stream@2.2.0:
- resolution:
- {
- integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
tar-stream@3.1.7:
- resolution:
- {
- integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==,
- }
-
- tar@7.5.13:
- resolution:
- {
- integrity: sha512-tOG/7GyXpFevhXVh8jOPJrmtRpOTsYqUIkVdVooZYJS/z8WhfQUX8RJILmeuJNinGAMSu1veBr4asSHFt5/hng==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
tar@7.5.15:
- resolution:
- {
- integrity: sha512-dzGK0boVlC4W5QFuQN1EFSl3bIDYsk7Tj40U6eIBnK2k/8ml7TZ5agbI5j5+qnoVcAA+rNtBml8SEiLxZpNqRQ==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-dzGK0boVlC4W5QFuQN1EFSl3bIDYsk7Tj40U6eIBnK2k/8ml7TZ5agbI5j5+qnoVcAA+rNtBml8SEiLxZpNqRQ==}
+ engines: {node: '>=18'}
temp-dir@2.0.0:
- resolution:
- {
- integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
+ engines: {node: '>=8'}
terminal-link@2.1.1:
- resolution:
- {
- integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==}
+ engines: {node: '>=8'}
terser@5.48.0:
- resolution:
- {
- integrity: sha512-J/9An6vs9Us6wKRriSFXBWdRZapREHqFzdNUKk0pmu804EMR6dr6winwo7e5JDxN4xahxQsuysyYFwlwj4XN/Q==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-J/9An6vs9Us6wKRriSFXBWdRZapREHqFzdNUKk0pmu804EMR6dr6winwo7e5JDxN4xahxQsuysyYFwlwj4XN/Q==}
+ engines: {node: '>=10'}
hasBin: true
test-exclude@6.0.0:
- resolution:
- {
- integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
+ engines: {node: '>=8'}
text-decoder@1.2.7:
- resolution:
- {
- integrity: sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ==,
- }
+ resolution: {integrity: sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ==}
thenify-all@1.6.0:
- resolution:
- {
- integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==,
- }
- engines: { node: ">=0.8" }
+ resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
+ engines: {node: '>=0.8'}
thenify@3.3.1:
- resolution:
- {
- integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==,
- }
+ resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
throat@5.0.0:
- resolution:
- {
- integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==,
- }
-
- tinybench@2.9.0:
- resolution:
- {
- integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==,
- }
-
- tinyexec@0.3.2:
- resolution:
- {
- integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==,
- }
+ resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==}
tinyglobby@0.2.16:
- resolution:
- {
- integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==,
- }
- engines: { node: ">=12.0.0" }
-
- tinypool@1.1.1:
- resolution:
- {
- integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==,
- }
- engines: { node: ^18.0.0 || >=20.0.0 }
+ resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==}
+ engines: {node: '>=12.0.0'}
tinypool@2.1.0:
- resolution:
- {
- integrity: sha512-Pugqs6M0m7Lv1I7FtxN4aoyToKg1C4tu+/381vH35y8oENM/Ai7f7C4StcoK4/+BSw9ebcS8jRiVrORFKCALLw==,
- }
- engines: { node: ^20.0.0 || >=22.0.0 }
-
- tinyrainbow@2.0.0:
- resolution:
- {
- integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==,
- }
- engines: { node: ">=14.0.0" }
-
- tinyspy@4.0.4:
- resolution:
- {
- integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==,
- }
- engines: { node: ">=14.0.0" }
+ resolution: {integrity: sha512-Pugqs6M0m7Lv1I7FtxN4aoyToKg1C4tu+/381vH35y8oENM/Ai7f7C4StcoK4/+BSw9ebcS8jRiVrORFKCALLw==}
+ engines: {node: ^20.0.0 || >=22.0.0}
tmp@0.2.7:
- resolution:
- {
- integrity: sha512-e0votIpp4Uo2AJYSzVHV6xCcawuiez3DzqDAbrTc3YxBkplN6e+dM13ZeIcZnDg/QpSuU2zfZ3rzwY8ukEnaXw==,
- }
- engines: { node: ">=14.14" }
+ resolution: {integrity: sha512-e0votIpp4Uo2AJYSzVHV6xCcawuiez3DzqDAbrTc3YxBkplN6e+dM13ZeIcZnDg/QpSuU2zfZ3rzwY8ukEnaXw==}
+ engines: {node: '>=14.14'}
tmpl@1.0.5:
- resolution:
- {
- integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==,
- }
+ resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
to-regex-range@5.0.1:
- resolution:
- {
- integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==,
- }
- engines: { node: ">=8.0" }
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
+ engines: {node: '>=8.0'}
toidentifier@1.0.1:
- resolution:
- {
- integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==,
- }
- engines: { node: ">=0.6" }
-
- token-types@6.1.2:
- resolution:
- {
- integrity: sha512-dRXchy+C0IgK8WPC6xvCHFRIWYUbqqdEIKPaKo/AcTUNzwLTK6AH7RjdLWsEZcAN/TBdtfUw3PYEgPr5VPr6ww==,
- }
- engines: { node: ">=14.16" }
+ resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
+ engines: {node: '>=0.6'}
tough-cookie@4.1.4:
- resolution:
- {
- integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
+ engines: {node: '>=6'}
tr46@0.0.3:
- resolution:
- {
- integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==,
- }
+ resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
tr46@3.0.0:
- resolution:
- {
- integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==,
- }
- engines: { node: ">=12" }
-
- tree-sitter-bash@0.25.1:
- resolution:
- {
- integrity: sha512-7hMytuYIMoXOq24yRulgIxthE9YmggZIOHCyPTTuJcu6EU54tYD+4G39cUb28kxC6jMf/AbPfWGLQtgPTdh3xw==,
- }
- peerDependencies:
- tree-sitter: ^0.25.0
- peerDependenciesMeta:
- tree-sitter:
- optional: true
-
- ts-algebra@2.0.0:
- resolution:
- {
- integrity: sha512-FPAhNPFMrkwz76P7cdjdmiShwMynZYN6SgOujD1urY4oNm80Ou9oMdmbR45LotcKOXoy7wSmHkRFE6Mxbrhefw==,
- }
+ resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
+ engines: {node: '>=12'}
ts-deepmerge@6.2.0:
- resolution:
- {
- integrity: sha512-2qxI/FZVDPbzh63GwWIZYE7daWKtwXZYuyc8YNq0iTmMUwn4mL0jRLsp6hfFlgbdRSR4x2ppe+E86FnvEpN7Nw==,
- }
- engines: { node: ">=14.13.1" }
+ resolution: {integrity: sha512-2qxI/FZVDPbzh63GwWIZYE7daWKtwXZYuyc8YNq0iTmMUwn4mL0jRLsp6hfFlgbdRSR4x2ppe+E86FnvEpN7Nw==}
+ engines: {node: '>=14.13.1'}
ts-interface-checker@0.1.13:
- resolution:
- {
- integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==,
- }
+ resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
ts-node@10.9.2:
- resolution:
- {
- integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==,
- }
+ resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
hasBin: true
peerDependencies:
- "@swc/core": ">=1.2.50"
- "@swc/wasm": ">=1.2.50"
- "@types/node": "*"
- typescript: ">=2.7"
+ '@swc/core': '>=1.2.50'
+ '@swc/wasm': '>=1.2.50'
+ '@types/node': '*'
+ typescript: '>=2.7'
peerDependenciesMeta:
- "@swc/core":
+ '@swc/core':
optional: true
- "@swc/wasm":
+ '@swc/wasm':
optional: true
tslib@2.4.1:
- resolution:
- {
- integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==,
- }
+ resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==}
tslib@2.6.2:
- resolution:
- {
- integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==,
- }
+ resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
tslib@2.8.1:
- resolution:
- {
- integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==,
- }
-
- tslog@4.10.2:
- resolution:
- {
- integrity: sha512-XuELoRpMR+sq8fuWwX7P0bcj+PRNiicOKDEb3fGNURhxWVyykCi9BNq7c4uVz7h7P0sj8qgBsr5SWS6yBClq3g==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
tunnel-agent@0.6.0:
- resolution:
- {
- integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==,
- }
+ resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
turndown@7.1.2:
- resolution:
- {
- integrity: sha512-ntI9R7fcUKjqBP6QU8rBK2Ehyt8LAzt3UBT9JR9tgo6GtuKvyUzpayWmeMKJw1DPdXzktvtIT8m2mVXz+bL/Qg==,
- }
+ resolution: {integrity: sha512-ntI9R7fcUKjqBP6QU8rBK2Ehyt8LAzt3UBT9JR9tgo6GtuKvyUzpayWmeMKJw1DPdXzktvtIT8m2mVXz+bL/Qg==}
tweetnacl@1.0.3:
- resolution:
- {
- integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==,
- }
+ resolution: {integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==}
type-detect@4.0.8:
- resolution:
- {
- integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
+ engines: {node: '>=4'}
type-fest@0.21.3:
- resolution:
- {
- integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
+ engines: {node: '>=10'}
type-fest@0.7.1:
- resolution:
- {
- integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==,
- }
- engines: { node: ">=8" }
-
- type-is@2.1.0:
- resolution:
- {
- integrity: sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==,
- }
- engines: { node: ">= 18" }
-
- typebox@1.1.39:
- resolution:
- {
- integrity: sha512-vj0afVtOfLQvv0GR0VxVagYxsXN64btL7Z9XoaG0ZggH3mruMMkOO6hXdgMsjCY3shZgEvooAWVeznQVs5c43w==,
- }
+ resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
+ engines: {node: '>=8'}
typescript@5.8.3:
- resolution:
- {
- integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==,
- }
- engines: { node: ">=14.17" }
- hasBin: true
-
- typescript@6.0.3:
- resolution:
- {
- integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==,
- }
- engines: { node: ">=14.17" }
+ resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
+ engines: {node: '>=14.17'}
hasBin: true
- uhyphen@0.2.0:
- resolution:
- {
- integrity: sha512-qz3o9CHXmJJPGBdqzab7qAYuW8kQGKNEuoHFYrBwV6hWIMcpAmxDLXojcHfFr9US1Pe6zUswEIJIbLI610fuqA==,
- }
-
- uint8array-extras@1.5.0:
- resolution:
- {
- integrity: sha512-rvKSBiC5zqCCiDZ9kAOszZcDvdAHwwIKJG33Ykj43OKcWsnmcBRL09YTU4nOeHZ8Y2a7l1MgTd08SBe9A8Qj6A==,
- }
- engines: { node: ">=18" }
-
undici-types@6.21.0:
- resolution:
- {
- integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==,
- }
+ resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
undici@6.26.0:
- resolution:
- {
- integrity: sha512-4yqz8a3n5HmGTlsbADNtr/dJlhkh/55Rq798G6ibiULcXbDtaLpTl1pvdqcbFfeoj3iSi52lePFM7h9H21cw/A==,
- }
- engines: { node: ">=18.17" }
-
- undici@8.3.0:
- resolution:
- {
- integrity: sha512-TkUDgb6tl7KOGZ+7e8E3d2FYgUQgF6z5YypqjWmixVQSQERFcVrVg0ySADm2LVLRh5ljAaHTCR5Fmz3Q34rB7Q==,
- }
- engines: { node: ">=22.19.0" }
+ resolution: {integrity: sha512-4yqz8a3n5HmGTlsbADNtr/dJlhkh/55Rq798G6ibiULcXbDtaLpTl1pvdqcbFfeoj3iSi52lePFM7h9H21cw/A==}
+ engines: {node: '>=18.17'}
unicode-canonical-property-names-ecmascript@2.0.1:
- resolution:
- {
- integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
+ engines: {node: '>=4'}
unicode-match-property-ecmascript@2.0.0:
- resolution:
- {
- integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
+ engines: {node: '>=4'}
unicode-match-property-value-ecmascript@2.2.1:
- resolution:
- {
- integrity: sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==}
+ engines: {node: '>=4'}
unicode-property-aliases-ecmascript@2.2.0:
- resolution:
- {
- integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==}
+ engines: {node: '>=4'}
unique-string@2.0.0:
- resolution:
- {
- integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
+ engines: {node: '>=8'}
universalify@0.2.0:
- resolution:
- {
- integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==,
- }
- engines: { node: ">= 4.0.0" }
+ resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
+ engines: {node: '>= 4.0.0'}
universalify@1.0.0:
- resolution:
- {
- integrity: sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==,
- }
- engines: { node: ">= 10.0.0" }
+ resolution: {integrity: sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==}
+ engines: {node: '>= 10.0.0'}
universalify@2.0.1:
- resolution:
- {
- integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==,
- }
- engines: { node: ">= 10.0.0" }
+ resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
+ engines: {node: '>= 10.0.0'}
unpipe@1.0.0:
- resolution:
- {
- integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
+ engines: {node: '>= 0.8'}
untildify@4.0.0:
- resolution:
- {
- integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
+ engines: {node: '>=8'}
update-browserslist-db@1.2.3:
- resolution:
- {
- integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==,
- }
+ resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
hasBin: true
peerDependencies:
- browserslist: ">= 4.21.0"
+ browserslist: '>= 4.21.0'
url-parse@1.5.10:
- resolution:
- {
- integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==,
- }
+ resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
use-callback-ref@1.3.3:
- resolution:
- {
- integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
+ engines: {node: '>=10'}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
use-latest-callback@0.2.6:
- resolution:
- {
- integrity: sha512-FvRG9i1HSo0wagmX63Vrm8SnlUU3LMM3WyZkQ76RnslpBrX694AdG4A0zQBx2B3ZifFA0yv/BaEHGBnEax5rZg==,
- }
+ resolution: {integrity: sha512-FvRG9i1HSo0wagmX63Vrm8SnlUU3LMM3WyZkQ76RnslpBrX694AdG4A0zQBx2B3ZifFA0yv/BaEHGBnEax5rZg==}
peerDependencies:
react: 19.1.0
use-sidecar@1.1.3:
- resolution:
- {
- integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
+ engines: {node: '>=10'}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: 19.1.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
use-sync-external-store@1.6.0:
- resolution:
- {
- integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==,
- }
+ resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
peerDependencies:
react: 19.1.0
util-deprecate@1.0.2:
- resolution:
- {
- integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==,
- }
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
util@0.12.5:
- resolution:
- {
- integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==,
- }
+ resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
utils-merge@1.0.1:
- resolution:
- {
- integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==,
- }
- engines: { node: ">= 0.4.0" }
+ resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
+ engines: {node: '>= 0.4.0'}
uuid@11.1.1:
- resolution:
- {
- integrity: sha512-vIYxrBCC/N/K+Js3qSN88go7kIfNPssr/hHCesKCQNAjmgvYS2oqr69kIufEG+O4+PfezOH4EbIeHCfFov8ZgQ==,
- }
+ resolution: {integrity: sha512-vIYxrBCC/N/K+Js3qSN88go7kIfNPssr/hHCesKCQNAjmgvYS2oqr69kIufEG+O4+PfezOH4EbIeHCfFov8ZgQ==}
hasBin: true
v8-compile-cache-lib@3.0.1:
- resolution:
- {
- integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==,
- }
+ resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
v8-to-istanbul@9.3.0:
- resolution:
- {
- integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==,
- }
- engines: { node: ">=10.12.0" }
+ resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==}
+ engines: {node: '>=10.12.0'}
validate-npm-package-name@5.0.1:
- resolution:
- {
- integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
vary@1.1.2:
- resolution:
- {
- integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
+ engines: {node: '>= 0.8'}
vaul@1.1.2:
- resolution:
- {
- integrity: sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA==,
- }
+ resolution: {integrity: sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA==}
peerDependencies:
react: 19.1.0
react-dom: 19.1.0
- vite-node@3.2.4:
- resolution:
- {
- integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==,
- }
- engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 }
- hasBin: true
-
- vite@7.3.5:
- resolution:
- {
- integrity: sha512-KuOaNhcnGFN2zIPGA7wRmzF+lJA1sea7rHq17aiJ++9lzY1WWG6Jpwqwe1KNbRVPIqHmr8GLYx7jbrQcN/7/ww==,
- }
- engines: { node: ^20.19.0 || >=22.12.0 }
- hasBin: true
- peerDependencies:
- "@types/node": ^20.19.0 || >=22.12.0
- jiti: ">=1.21.0"
- less: ^4.0.0
- lightningcss: 1.30.1
- sass: ^1.70.0
- sass-embedded: ^1.70.0
- stylus: ">=0.54.8"
- sugarss: ^5.0.0
- terser: ^5.16.0
- tsx: ^4.8.1
- yaml: ^2.9.0
- peerDependenciesMeta:
- "@types/node":
- optional: true
- jiti:
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- sass-embedded:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- tsx:
- optional: true
- yaml:
- optional: true
-
- vitest@3.2.6:
- resolution:
- {
- integrity: sha512-xejya+bT/j/+R/AGa1XOfRxLmNUlLtlwjRsFUILF+xHfzElmGcmFydy2gqqIrd62ptIEfwVMofd19uNWD9L7Nw==,
- }
- engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 }
- hasBin: true
- peerDependencies:
- "@edge-runtime/vm": "*"
- "@types/debug": ^4.1.12
- "@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0
- "@vitest/browser": 3.2.6
- "@vitest/ui": 3.2.6
- happy-dom: "*"
- jsdom: "*"
- peerDependenciesMeta:
- "@edge-runtime/vm":
- optional: true
- "@types/debug":
- optional: true
- "@types/node":
- optional: true
- "@vitest/browser":
- optional: true
- "@vitest/ui":
- optional: true
- happy-dom:
- optional: true
- jsdom:
- optional: true
-
vlq@1.0.1:
- resolution:
- {
- integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==,
- }
+ resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==}
vlq@2.0.4:
- resolution:
- {
- integrity: sha512-aodjPa2wPQFkra1G8CzJBTHXhgk3EVSwxSWXNPr1fgdFLUb8kvLV1iEb6rFgasIsjP82HWI6dsb5Io26DDnasA==,
- }
+ resolution: {integrity: sha512-aodjPa2wPQFkra1G8CzJBTHXhgk3EVSwxSWXNPr1fgdFLUb8kvLV1iEb6rFgasIsjP82HWI6dsb5Io26DDnasA==}
w3c-xmlserializer@4.0.0:
- resolution:
- {
- integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==}
+ engines: {node: '>=14'}
walker@1.0.8:
- resolution:
- {
- integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==,
- }
+ resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
warn-once@0.1.1:
- resolution:
- {
- integrity: sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==,
- }
+ resolution: {integrity: sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==}
wcwidth@1.0.1:
- resolution:
- {
- integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==,
- }
-
- web-push@3.6.7:
- resolution:
- {
- integrity: sha512-OpiIUe8cuGjrj3mMBFWY+e4MMIkW3SVT+7vEIjvD9kejGUypv8GPDf84JdPWskK8zMRIJ6xYGm+Kxr8YkPyA0A==,
- }
- engines: { node: ">= 16" }
- hasBin: true
-
- web-streams-polyfill@3.3.3:
- resolution:
- {
- integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==,
- }
- engines: { node: ">= 8" }
-
- web-tree-sitter@0.26.9:
- resolution:
- {
- integrity: sha512-YJwSHANl6XFgeEjB8nitgj0qZYt5gkIesJ4w2srS2wcLB4GUa4xcOkM0YaMsU6WNR53YVIkDSY7Ej4pf3IXtCA==,
- }
+ resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
webidl-conversions@3.0.1:
- resolution:
- {
- integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==,
- }
+ resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
webidl-conversions@5.0.0:
- resolution:
- {
- integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==}
+ engines: {node: '>=8'}
webidl-conversions@7.0.0:
- resolution:
- {
- integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
+ engines: {node: '>=12'}
whatwg-encoding@2.0.0:
- resolution:
- {
- integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
+ engines: {node: '>=12'}
deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation
whatwg-fetch@3.6.20:
- resolution:
- {
- integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==,
- }
+ resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==}
whatwg-mimetype@3.0.0:
- resolution:
- {
- integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==}
+ engines: {node: '>=12'}
whatwg-url-without-unicode@8.0.0-3:
- resolution:
- {
- integrity: sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==}
+ engines: {node: '>=10'}
whatwg-url@11.0.0:
- resolution:
- {
- integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==}
+ engines: {node: '>=12'}
whatwg-url@5.0.0:
- resolution:
- {
- integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==,
- }
-
- which-module@2.0.1:
- resolution:
- {
- integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==,
- }
+ resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
which-typed-array@1.1.21:
- resolution:
- {
- integrity: sha512-zbRA8cVm6io/d5W8uIe2hblzN76/Wm3v/yiythQvr+dpBWeqhPSWIDNj4zOyHi4zKbMK6DN34Xsr9jPHJERAEw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-zbRA8cVm6io/d5W8uIe2hblzN76/Wm3v/yiythQvr+dpBWeqhPSWIDNj4zOyHi4zKbMK6DN34Xsr9jPHJERAEw==}
+ engines: {node: '>= 0.4'}
which@2.0.2:
- resolution:
- {
- integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==,
- }
- engines: { node: ">= 8" }
- hasBin: true
-
- why-is-node-running@2.3.0:
- resolution:
- {
- integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
+ engines: {node: '>= 8'}
hasBin: true
wide-align@1.1.5:
- resolution:
- {
- integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==,
- }
+ resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
widest-line@3.1.0:
- resolution:
- {
- integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==}
+ engines: {node: '>=8'}
wonka@6.3.6:
- resolution:
- {
- integrity: sha512-MXH+6mDHAZ2GuMpgKS055FR6v0xVP3XwquxIMYXgiW+FejHQlMGlvVRZT4qMCxR+bEo/FCtIdKxwej9WV3YQag==,
- }
+ resolution: {integrity: sha512-MXH+6mDHAZ2GuMpgKS055FR6v0xVP3XwquxIMYXgiW+FejHQlMGlvVRZT4qMCxR+bEo/FCtIdKxwej9WV3YQag==}
wordwrap@1.0.0:
- resolution:
- {
- integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==,
- }
-
- wrap-ansi@6.2.0:
- resolution:
- {
- integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
wrap-ansi@7.0.0:
- resolution:
- {
- integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
+ engines: {node: '>=10'}
wrap-ansi@8.1.0:
- resolution:
- {
- integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
+ engines: {node: '>=12'}
wrappy@1.0.2:
- resolution:
- {
- integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==,
- }
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
write-file-atomic@2.4.3:
- resolution:
- {
- integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==,
- }
+ resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
write-file-atomic@4.0.2:
- resolution:
- {
- integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==,
- }
- engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 }
+ resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
ws@6.2.4:
- resolution:
- {
- integrity: sha512-PNIUUyLI5YpkJZj60YBzX1o0ByQ4ovvfmq9N/Kig/PAYbVlGyz4R6G0SEWrD0O9acc0sT2+IdMBVLFv8FSi0Nw==,
- }
+ resolution: {integrity: sha512-PNIUUyLI5YpkJZj60YBzX1o0ByQ4ovvfmq9N/Kig/PAYbVlGyz4R6G0SEWrD0O9acc0sT2+IdMBVLFv8FSi0Nw==}
peerDependencies:
bufferutil: ^4.0.1
utf-8-validate: ^5.0.2
@@ -11980,11 +5759,8 @@ packages:
optional: true
ws@7.5.11:
- resolution:
- {
- integrity: sha512-zS54Oen9bITtp7kp2XM3AydrCIq1D+HwJOuH+c+e4LfpL/lotP5osijd+UoMnxwAam1GN8R4KtLAyIrIcBNpiA==,
- }
- engines: { node: ">=8.3.0" }
+ resolution: {integrity: sha512-zS54Oen9bITtp7kp2XM3AydrCIq1D+HwJOuH+c+e4LfpL/lotP5osijd+UoMnxwAam1GN8R4KtLAyIrIcBNpiA==}
+ engines: {node: '>=8.3.0'}
peerDependencies:
bufferutil: ^4.0.1
utf-8-validate: ^5.0.2
@@ -11995,14 +5771,11 @@ packages:
optional: true
ws@8.20.1:
- resolution:
- {
- integrity: sha512-It4dO0K5v//JtTXuPkfEOaI3uUN87iYPnqo/ZzqCoG3g8uhA66QUMs/SrM0YK7/NAu+r4LMh/9dq2A7k+rHs+w==,
- }
- engines: { node: ">=10.0.0" }
+ resolution: {integrity: sha512-It4dO0K5v//JtTXuPkfEOaI3uUN87iYPnqo/ZzqCoG3g8uhA66QUMs/SrM0YK7/NAu+r4LMh/9dq2A7k+rHs+w==}
+ engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
- utf-8-validate: ">=5.0.2"
+ utf-8-validate: '>=5.0.2'
peerDependenciesMeta:
bufferutil:
optional: true
@@ -12010,14 +5783,11 @@ packages:
optional: true
ws@8.21.0:
- resolution:
- {
- integrity: sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==,
- }
- engines: { node: ">=10.0.0" }
+ resolution: {integrity: sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==}
+ engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
- utf-8-validate: ">=5.0.2"
+ utf-8-validate: '>=5.0.2'
peerDependenciesMeta:
bufferutil:
optional: true
@@ -12025,197 +5795,112 @@ packages:
optional: true
xcode@3.0.1:
- resolution:
- {
- integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==,
- }
- engines: { node: ">=10.0.0" }
+ resolution: {integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==}
+ engines: {node: '>=10.0.0'}
xml-name-validator@4.0.0:
- resolution:
- {
- integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
+ engines: {node: '>=12'}
xml2js@0.6.0:
- resolution:
- {
- integrity: sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==,
- }
- engines: { node: ">=4.0.0" }
+ resolution: {integrity: sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==}
+ engines: {node: '>=4.0.0'}
xmlbuilder@11.0.1:
- resolution:
- {
- integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==,
- }
- engines: { node: ">=4.0" }
+ resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==}
+ engines: {node: '>=4.0'}
xmlbuilder@14.0.0:
- resolution:
- {
- integrity: sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg==,
- }
- engines: { node: ">=8.0" }
+ resolution: {integrity: sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg==}
+ engines: {node: '>=8.0'}
xmlbuilder@15.1.1:
- resolution:
- {
- integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==,
- }
- engines: { node: ">=8.0" }
+ resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==}
+ engines: {node: '>=8.0'}
xmlchars@2.2.0:
- resolution:
- {
- integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==,
- }
+ resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
xmlhttprequest-ssl@2.1.2:
- resolution:
- {
- integrity: sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ==,
- }
- engines: { node: ">=0.4.0" }
-
- y18n@4.0.3:
- resolution:
- {
- integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==,
- }
+ resolution: {integrity: sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ==}
+ engines: {node: '>=0.4.0'}
y18n@5.0.8:
- resolution:
- {
- integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
+ engines: {node: '>=10'}
yallist@3.1.1:
- resolution:
- {
- integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==,
- }
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
yallist@4.0.0:
- resolution:
- {
- integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==,
- }
+ resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
yallist@5.0.0:
- resolution:
- {
- integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
+ engines: {node: '>=18'}
yaml@2.9.0:
- resolution:
- {
- integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==,
- }
- engines: { node: ">= 14.6" }
+ resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==}
+ engines: {node: '>= 14.6'}
hasBin: true
- yargs-parser@18.1.3:
- resolution:
- {
- integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==,
- }
- engines: { node: ">=6" }
-
yargs-parser@21.1.1:
- resolution:
- {
- integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==,
- }
- engines: { node: ">=12" }
-
- yargs@15.4.1:
- resolution:
- {
- integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
+ engines: {node: '>=12'}
yargs@17.7.2:
- resolution:
- {
- integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
+ engines: {node: '>=12'}
yn@3.1.1:
- resolution:
- {
- integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
+ engines: {node: '>=6'}
yocto-queue@0.1.0:
- resolution:
- {
- integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==,
- }
- engines: { node: ">=10" }
-
- zod-to-json-schema@3.25.2:
- resolution:
- {
- integrity: sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==,
- }
- peerDependencies:
- zod: ^3.25.28 || ^4
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
+ engines: {node: '>=10'}
zod@4.4.3:
- resolution:
- {
- integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==,
- }
+ resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==}
snapshots:
- "@0no-co/graphql.web@1.2.0(graphql@16.8.1)":
+
+ '@0no-co/graphql.web@1.2.0(graphql@16.8.1)':
optionalDependencies:
graphql: 16.8.1
- "@agentclientprotocol/sdk@0.22.1(zod@4.4.3)":
- dependencies:
- zod: 4.4.3
-
- "@algorandfoundation/ac2-sdk@1.0.0-canary.1":
+ '@algorandfoundation/ac2-sdk@1.0.0-canary.1':
dependencies:
ajv: 8.20.0
- "@algorandfoundation/accounts-keystore-extension@1.0.0-canary.5(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)":
+ '@algorandfoundation/accounts-keystore-extension@1.0.0-canary.5(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)':
dependencies:
- "@algorandfoundation/accounts-store": 1.0.0-canary.2(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/keystore": 1.0.0-canary.16(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/wallet-provider": 1.0.0-canary.5
- "@scure/base": 2.0.0
- "@tanstack/store": 0.9.3
+ '@algorandfoundation/accounts-store': 1.0.0-canary.2(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
+ '@algorandfoundation/keystore': 1.0.0-canary.16(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
+ '@algorandfoundation/wallet-provider': 1.0.0-canary.5
+ '@scure/base': 2.0.0
+ '@tanstack/store': 0.9.3
before-after-hook: 4.0.0
optionalDependencies:
- "@algorandfoundation/log-store": 1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
+ '@algorandfoundation/log-store': 1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/accounts-store@1.0.0-canary.2(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)":
+ '@algorandfoundation/accounts-store@1.0.0-canary.2(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)':
dependencies:
- "@algorandfoundation/wallet-provider": 1.0.0-canary.5
- "@noble/hashes": 2.0.1
- "@scure/base": 2.0.0
- "@tanstack/store": 0.9.3
+ '@algorandfoundation/wallet-provider': 1.0.0-canary.5
+ '@noble/hashes': 2.0.1
+ '@scure/base': 2.0.0
+ '@tanstack/store': 0.9.3
before-after-hook: 4.0.0
optionalDependencies:
- "@algorandfoundation/log-store": 1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
+ '@algorandfoundation/log-store': 1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/algokit-utils@10.0.0-beta.4":
+ '@algorandfoundation/algokit-utils@10.0.0-beta.4':
dependencies:
- "@algorandfoundation/xhd-wallet-api": 2.0.0-canary.1
- "@noble/curves": 2.2.0
- "@noble/ed25519": 3.1.0
- "@noble/hashes": 2.2.0
- "@scure/bip39": 2.2.0
+ '@algorandfoundation/xhd-wallet-api': 2.0.0-canary.1
+ '@noble/curves': 2.2.0
+ '@noble/ed25519': 3.1.0
+ '@noble/hashes': 2.2.0
+ '@scure/bip39': 2.2.0
algorand-msgpack: 1.1.0
buffer: 6.0.3
dotenv: 16.4.7
@@ -12224,93 +5909,84 @@ snapshots:
tweetnacl: 1.0.3
vlq: 2.0.4
- "@algorandfoundation/dp256@1.1.0":
+ '@algorandfoundation/dp256@1.1.0':
dependencies:
- "@noble/curves": 1.9.6
- "@noble/hashes": 1.8.0
- "@scure/bip39": 1.6.0
+ '@noble/curves': 1.9.6
+ '@noble/hashes': 1.8.0
+ '@scure/bip39': 1.6.0
- "@algorandfoundation/identities-extension@1.0.0-canary.1(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)":
+ '@algorandfoundation/identities-extension@1.0.0-canary.1(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)':
dependencies:
- "@algorandfoundation/identities-keystore-extension": 1.0.0-canary.1(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/identities-store": 1.0.0-canary.1(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/keystore": 1.0.0-canary.16(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/wallet-provider": 1.0.0-canary.5
- "@tanstack/store": 0.9.3
+ '@algorandfoundation/identities-keystore-extension': 1.0.0-canary.1(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
+ '@algorandfoundation/identities-store': 1.0.0-canary.1(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
+ '@algorandfoundation/keystore': 1.0.0-canary.16(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
+ '@algorandfoundation/wallet-provider': 1.0.0-canary.5
+ '@tanstack/store': 0.9.3
before-after-hook: 4.0.0
transitivePeerDependencies:
- - "@algorandfoundation/log-store"
+ - '@algorandfoundation/log-store'
- "@algorandfoundation/identities-keystore-extension@1.0.0-canary.1(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)":
+ '@algorandfoundation/identities-keystore-extension@1.0.0-canary.1(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)':
dependencies:
- "@algorandfoundation/identities-store": 1.0.0-canary.1(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/keystore": 1.0.0-canary.16(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/wallet-provider": 1.0.0-canary.5
- "@scure/base": 2.0.0
- "@tanstack/store": 0.9.3
+ '@algorandfoundation/identities-store': 1.0.0-canary.1(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
+ '@algorandfoundation/keystore': 1.0.0-canary.16(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
+ '@algorandfoundation/wallet-provider': 1.0.0-canary.5
+ '@scure/base': 2.0.0
+ '@tanstack/store': 0.9.3
before-after-hook: 4.0.0
transitivePeerDependencies:
- - "@algorandfoundation/log-store"
+ - '@algorandfoundation/log-store'
- "@algorandfoundation/identities-store@1.0.0-canary.1(@tanstack/store@0.9.3)(before-after-hook@4.0.0)":
+ '@algorandfoundation/identities-store@1.0.0-canary.1(@tanstack/store@0.9.3)(before-after-hook@4.0.0)':
dependencies:
- "@algorandfoundation/wallet-provider": 1.0.0-canary.5
- "@scure/base": 2.0.0
- "@tanstack/store": 0.9.3
+ '@algorandfoundation/wallet-provider': 1.0.0-canary.5
+ '@scure/base': 2.0.0
+ '@tanstack/store': 0.9.3
before-after-hook: 4.0.0
- "@algorandfoundation/keystore@1.0.0-canary.16(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)":
+ '@algorandfoundation/keystore@1.0.0-canary.16(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)':
dependencies:
- "@algorandfoundation/dp256": 1.1.0
- "@algorandfoundation/wallet-provider": 1.0.0-canary.5
- "@algorandfoundation/xhd-wallet-api": 2.0.0-canary.1
- "@noble/hashes": 2.0.1
- "@scure/base": 2.0.0
- "@scure/bip39": 1.6.0
- "@tanstack/store": 0.9.3
+ '@algorandfoundation/dp256': 1.1.0
+ '@algorandfoundation/wallet-provider': 1.0.0-canary.5
+ '@algorandfoundation/xhd-wallet-api': 2.0.0-canary.1
+ '@noble/hashes': 2.0.1
+ '@scure/base': 2.0.0
+ '@scure/bip39': 1.6.0
+ '@tanstack/store': 0.9.3
before-after-hook: 4.0.0
optionalDependencies:
- "@algorandfoundation/log-store": 1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
-
- "@algorandfoundation/liquid-client@1.0.0-canary.8(qr-code-styling@1.9.2)(socket.io-client@4.8.3)":
- dependencies:
- "@algorandfoundation/algokit-utils": 10.0.0-beta.4
- eventemitter3: 5.0.4
- uuid: 11.1.1
- optionalDependencies:
- qr-code-styling: 1.9.2
- socket.io-client: 4.8.3
+ '@algorandfoundation/log-store': 1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/liquid-client@1.0.0-canary.9(qr-code-styling@1.9.2)(socket.io-client@4.8.3)":
+ '@algorandfoundation/liquid-client@1.0.0-canary.9(qr-code-styling@1.9.2)(socket.io-client@4.8.3)':
dependencies:
- "@algorandfoundation/algokit-utils": 10.0.0-beta.4
+ '@algorandfoundation/algokit-utils': 10.0.0-beta.4
eventemitter3: 5.0.4
uuid: 11.1.1
optionalDependencies:
qr-code-styling: 1.9.2
socket.io-client: 4.8.3
- "@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0)":
+ '@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0)':
dependencies:
- "@algorandfoundation/wallet-provider": 1.0.0-canary.5
- "@tanstack/store": 0.9.3
+ '@algorandfoundation/wallet-provider': 1.0.0-canary.5
+ '@tanstack/store': 0.9.3
before-after-hook: 4.0.0
- "@algorandfoundation/react-native-keystore@1.0.0-canary.12(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)(expo-build-properties@55.0.14(expo@54.0.35))(expo@54.0.35)(react-native-nitro-modules@0.35.9(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-quick-base64@3.0.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)":
+ '@algorandfoundation/react-native-keystore@1.0.0-canary.12(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)(expo-build-properties@55.0.14(expo@54.0.35))(expo@54.0.35)(react-native-nitro-modules@0.35.9(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-quick-base64@3.0.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
dependencies:
- "@algorandfoundation/dp256": 1.1.0
- "@algorandfoundation/keystore": 1.0.0-canary.16(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
- "@algorandfoundation/wallet-provider": 1.0.0-canary.5
- "@algorandfoundation/xhd-wallet-api": 2.0.0-canary.1
- "@scure/base": 2.0.0
- "@scure/bip39": 1.6.0
- "@tanstack/store": 0.9.3
+ '@algorandfoundation/dp256': 1.1.0
+ '@algorandfoundation/keystore': 1.0.0-canary.16(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
+ '@algorandfoundation/wallet-provider': 1.0.0-canary.5
+ '@algorandfoundation/xhd-wallet-api': 2.0.0-canary.1
+ '@scure/base': 2.0.0
+ '@scure/bip39': 1.6.0
+ '@tanstack/store': 0.9.3
before-after-hook: 4.0.0
react-native-keychain: 10.0.0
react-native-mmkv: 4.1.2(react-native-nitro-modules@0.35.9(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
react-native-quick-crypto: 1.0.18(expo-build-properties@55.0.14(expo@54.0.35))(expo@54.0.35)(react-native-nitro-modules@0.35.9(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-quick-base64@3.0.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
optionalDependencies:
- "@algorandfoundation/log-store": 1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
+ '@algorandfoundation/log-store': 1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0)
transitivePeerDependencies:
- expo
- expo-build-properties
@@ -12319,67 +5995,60 @@ snapshots:
- react-native-nitro-modules
- react-native-quick-base64
- "@algorandfoundation/react-native-passkey-autofill@1.0.0-canary.20(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)(expo-build-properties@55.0.14(expo@54.0.35))(expo@54.0.35)(react-native-nitro-modules@0.35.9(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-quick-base64@3.0.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)":
+ '@algorandfoundation/react-native-passkey-autofill@1.0.0-canary.21(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)(expo-build-properties@55.0.14(expo@54.0.35))(expo@54.0.35)(react-native-nitro-modules@0.35.9(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-quick-base64@3.0.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
dependencies:
- "@algorandfoundation/react-native-keystore": 1.0.0-canary.12(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)(expo-build-properties@55.0.14(expo@54.0.35))(expo@54.0.35)(react-native-nitro-modules@0.35.9(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-quick-base64@3.0.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@algorandfoundation/react-native-keystore': 1.0.0-canary.12(@algorandfoundation/log-store@1.0.0-canary.3(@tanstack/store@0.9.3)(before-after-hook@4.0.0))(@tanstack/store@0.9.3)(before-after-hook@4.0.0)(expo-build-properties@55.0.14(expo@54.0.35))(expo@54.0.35)(react-native-nitro-modules@0.35.9(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-quick-base64@3.0.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
expo: 54.0.35(@babel/core@7.29.7)(@expo/metro-runtime@6.1.2)(expo-router@6.0.24)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
react: 19.1.0
react-native: 0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)
transitivePeerDependencies:
- - "@algorandfoundation/log-store"
- - "@tanstack/store"
+ - '@algorandfoundation/log-store'
+ - '@tanstack/store'
- before-after-hook
- expo-build-properties
- react-native-nitro-modules
- react-native-quick-base64
- "@algorandfoundation/wallet-provider@1.0.0-canary.5": {}
+ '@algorandfoundation/wallet-provider@1.0.0-canary.5': {}
- "@algorandfoundation/xhd-wallet-api@2.0.0-canary.1":
+ '@algorandfoundation/xhd-wallet-api@2.0.0-canary.1':
dependencies:
- "@noble/ciphers": 2.2.0
- "@noble/curves": 2.2.0
- "@noble/hashes": 2.2.0
+ '@noble/ciphers': 2.2.0
+ '@noble/curves': 2.2.0
+ '@noble/hashes': 2.2.0
ajv: 8.20.0
algo-msgpack-with-bigint: 2.1.1
bn.js: 5.2.3
- "@anthropic-ai/sdk@0.100.1(zod@4.4.3)":
- dependencies:
- json-schema-to-ts: 3.1.1
- standardwebhooks: 1.0.0
- optionalDependencies:
- zod: 4.4.3
-
- "@babel/code-frame@7.10.4":
+ '@babel/code-frame@7.10.4':
dependencies:
- "@babel/highlight": 7.25.9
+ '@babel/highlight': 7.25.9
- "@babel/code-frame@7.23.5":
+ '@babel/code-frame@7.23.5':
dependencies:
- "@babel/highlight": 7.25.9
+ '@babel/highlight': 7.25.9
chalk: 2.4.2
- "@babel/code-frame@7.29.7":
+ '@babel/code-frame@7.29.7':
dependencies:
- "@babel/helper-validator-identifier": 7.29.7
+ '@babel/helper-validator-identifier': 7.29.7
js-tokens: 4.0.0
picocolors: 1.1.1
- "@babel/compat-data@7.29.7": {}
+ '@babel/compat-data@7.29.7': {}
- "@babel/core@7.29.7":
+ '@babel/core@7.29.7':
dependencies:
- "@babel/code-frame": 7.29.7
- "@babel/generator": 7.29.7
- "@babel/helper-compilation-targets": 7.29.7
- "@babel/helper-module-transforms": 7.29.7(@babel/core@7.29.7)
- "@babel/helpers": 7.29.7
- "@babel/parser": 7.29.7
- "@babel/template": 7.29.7
- "@babel/traverse": 7.29.7
- "@babel/types": 7.29.7
- "@jridgewell/remapping": 2.3.5
+ '@babel/code-frame': 7.29.7
+ '@babel/generator': 7.29.7
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7)
+ '@babel/helpers': 7.29.7
+ '@babel/parser': 7.29.7
+ '@babel/template': 7.29.7
+ '@babel/traverse': 7.29.7
+ '@babel/types': 7.29.7
+ '@jridgewell/remapping': 2.3.5
convert-source-map: 2.0.0
debug: 4.4.3(supports-color@8.1.1)
gensync: 1.0.0-beta.2
@@ -12388,818 +6057,643 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@babel/generator@7.29.7":
+ '@babel/generator@7.29.7':
dependencies:
- "@babel/parser": 7.29.7
- "@babel/types": 7.29.7
- "@jridgewell/gen-mapping": 0.3.13
- "@jridgewell/trace-mapping": 0.3.31
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
- "@babel/helper-annotate-as-pure@7.29.7":
+ '@babel/helper-annotate-as-pure@7.29.7':
dependencies:
- "@babel/types": 7.29.7
+ '@babel/types': 7.29.7
- "@babel/helper-compilation-targets@7.29.7":
+ '@babel/helper-compilation-targets@7.29.7':
dependencies:
- "@babel/compat-data": 7.29.7
- "@babel/helper-validator-option": 7.29.7
+ '@babel/compat-data': 7.29.7
+ '@babel/helper-validator-option': 7.29.7
browserslist: 4.28.2
lru-cache: 5.1.1
semver: 6.3.1
- "@babel/helper-create-class-features-plugin@7.29.7(@babel/core@7.29.7)":
+ '@babel/helper-create-class-features-plugin@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-annotate-as-pure": 7.29.7
- "@babel/helper-member-expression-to-functions": 7.29.7
- "@babel/helper-optimise-call-expression": 7.29.7
- "@babel/helper-replace-supers": 7.29.7(@babel/core@7.29.7)
- "@babel/helper-skip-transparent-expression-wrappers": 7.29.7
- "@babel/traverse": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-annotate-as-pure': 7.29.7
+ '@babel/helper-member-expression-to-functions': 7.29.7
+ '@babel/helper-optimise-call-expression': 7.29.7
+ '@babel/helper-replace-supers': 7.29.7(@babel/core@7.29.7)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.29.7
+ '@babel/traverse': 7.29.7
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- "@babel/helper-create-regexp-features-plugin@7.29.7(@babel/core@7.29.7)":
+ '@babel/helper-create-regexp-features-plugin@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-annotate-as-pure": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-annotate-as-pure': 7.29.7
regexpu-core: 6.4.0
semver: 6.3.1
- "@babel/helper-define-polyfill-provider@0.6.8(@babel/core@7.29.7)":
+ '@babel/helper-define-polyfill-provider@0.6.8(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-compilation-targets": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
debug: 4.4.3(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.12
transitivePeerDependencies:
- supports-color
- "@babel/helper-globals@7.29.7": {}
+ '@babel/helper-globals@7.29.7': {}
- "@babel/helper-member-expression-to-functions@7.29.7":
+ '@babel/helper-member-expression-to-functions@7.29.7':
dependencies:
- "@babel/traverse": 7.29.7
- "@babel/types": 7.29.7
+ '@babel/traverse': 7.29.7
+ '@babel/types': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/helper-module-imports@7.29.7":
+ '@babel/helper-module-imports@7.29.7':
dependencies:
- "@babel/traverse": 7.29.7
- "@babel/types": 7.29.7
+ '@babel/traverse': 7.29.7
+ '@babel/types': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/helper-module-transforms@7.29.7(@babel/core@7.29.7)":
+ '@babel/helper-module-transforms@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-module-imports": 7.29.7
- "@babel/helper-validator-identifier": 7.29.7
- "@babel/traverse": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-module-imports': 7.29.7
+ '@babel/helper-validator-identifier': 7.29.7
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/helper-optimise-call-expression@7.29.7":
+ '@babel/helper-optimise-call-expression@7.29.7':
dependencies:
- "@babel/types": 7.29.7
+ '@babel/types': 7.29.7
- "@babel/helper-plugin-utils@7.29.7": {}
+ '@babel/helper-plugin-utils@7.29.7': {}
- "@babel/helper-remap-async-to-generator@7.29.7(@babel/core@7.29.7)":
+ '@babel/helper-remap-async-to-generator@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-annotate-as-pure": 7.29.7
- "@babel/helper-wrap-function": 7.29.7
- "@babel/traverse": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-annotate-as-pure': 7.29.7
+ '@babel/helper-wrap-function': 7.29.7
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/helper-replace-supers@7.29.7(@babel/core@7.29.7)":
+ '@babel/helper-replace-supers@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-member-expression-to-functions": 7.29.7
- "@babel/helper-optimise-call-expression": 7.29.7
- "@babel/traverse": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-member-expression-to-functions': 7.29.7
+ '@babel/helper-optimise-call-expression': 7.29.7
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/helper-skip-transparent-expression-wrappers@7.29.7":
+ '@babel/helper-skip-transparent-expression-wrappers@7.29.7':
dependencies:
- "@babel/traverse": 7.29.7
- "@babel/types": 7.29.7
+ '@babel/traverse': 7.29.7
+ '@babel/types': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/helper-string-parser@7.29.7": {}
+ '@babel/helper-string-parser@7.29.7': {}
- "@babel/helper-validator-identifier@7.29.7": {}
+ '@babel/helper-validator-identifier@7.29.7': {}
- "@babel/helper-validator-option@7.29.7": {}
+ '@babel/helper-validator-option@7.29.7': {}
- "@babel/helper-wrap-function@7.29.7":
+ '@babel/helper-wrap-function@7.29.7':
dependencies:
- "@babel/template": 7.29.7
- "@babel/traverse": 7.29.7
- "@babel/types": 7.29.7
+ '@babel/template': 7.29.7
+ '@babel/traverse': 7.29.7
+ '@babel/types': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/helpers@7.29.7":
+ '@babel/helpers@7.29.7':
dependencies:
- "@babel/template": 7.29.7
- "@babel/types": 7.29.7
+ '@babel/template': 7.29.7
+ '@babel/types': 7.29.7
- "@babel/highlight@7.25.9":
+ '@babel/highlight@7.25.9':
dependencies:
- "@babel/helper-validator-identifier": 7.29.7
+ '@babel/helper-validator-identifier': 7.29.7
chalk: 2.4.2
js-tokens: 4.0.0
picocolors: 1.1.1
- "@babel/parser@7.29.7":
+ '@babel/parser@7.29.7':
dependencies:
- "@babel/types": 7.29.7
+ '@babel/types': 7.29.7
- "@babel/plugin-proposal-decorators@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-proposal-decorators@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@7.29.7)
- "@babel/helper-plugin-utils": 7.29.7
- "@babel/plugin-syntax-decorators": 7.29.7(@babel/core@7.29.7)
+ '@babel/core': 7.29.7
+ '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-decorators': 7.29.7(@babel/core@7.29.7)
transitivePeerDependencies:
- supports-color
- "@babel/plugin-proposal-export-default-from@7.29.7(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/plugin-syntax-decorators@7.29.7(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/plugin-syntax-export-default-from@7.29.7(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/plugin-syntax-flow@7.29.7(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/plugin-syntax-import-attributes@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-proposal-export-default-from@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-syntax-jsx@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-decorators@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-export-default-from@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-flow@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-import-attributes@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-syntax-typescript@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-jsx@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-arrow-functions@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-async-generator-functions@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
- "@babel/helper-remap-async-to-generator": 7.29.7(@babel/core@7.29.7)
- "@babel/traverse": 7.29.7
- transitivePeerDependencies:
- - supports-color
-
- "@babel/plugin-transform-async-to-generator@7.29.7(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-module-imports": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
- "@babel/helper-remap-async-to-generator": 7.29.7(@babel/core@7.29.7)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-block-scoping@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-class-properties@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@7.29.7)
- "@babel/helper-plugin-utils": 7.29.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-class-static-block@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@7.29.7)
- "@babel/helper-plugin-utils": 7.29.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-classes@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-annotate-as-pure": 7.29.7
- "@babel/helper-compilation-targets": 7.29.7
- "@babel/helper-globals": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
- "@babel/helper-replace-supers": 7.29.7(@babel/core@7.29.7)
- "@babel/traverse": 7.29.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-computed-properties@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
- "@babel/template": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-destructuring@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
- "@babel/traverse": 7.29.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-export-namespace-from@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-syntax-typescript@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-flow-strip-types@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-arrow-functions@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
- "@babel/plugin-syntax-flow": 7.29.7(@babel/core@7.29.7)
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-for-of@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-async-generator-functions@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
- "@babel/helper-skip-transparent-expression-wrappers": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-remap-async-to-generator': 7.29.7(@babel/core@7.29.7)
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/plugin-transform-function-name@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-async-to-generator@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-compilation-targets": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
- "@babel/traverse": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-module-imports': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-remap-async-to-generator': 7.29.7(@babel/core@7.29.7)
transitivePeerDependencies:
- supports-color
- "@babel/plugin-transform-literals@7.29.7(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/plugin-transform-logical-assignment-operators@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-block-scoping@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-modules-commonjs@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-class-properties@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-module-transforms": 7.29.7(@babel/core@7.29.7)
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/plugin-transform-named-capturing-groups-regex@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-class-static-block@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-create-regexp-features-plugin": 7.29.7(@babel/core@7.29.7)
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/plugin-transform-nullish-coalescing-operator@7.29.7(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/plugin-transform-numeric-separator@7.29.7(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/plugin-transform-object-rest-spread@7.29.7(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-compilation-targets": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
- "@babel/plugin-transform-destructuring": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-parameters": 7.29.7(@babel/core@7.29.7)
- "@babel/traverse": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/plugin-transform-optional-catch-binding@7.29.7(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/plugin-transform-optional-chaining@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-classes@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
- "@babel/helper-skip-transparent-expression-wrappers": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-annotate-as-pure': 7.29.7
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-globals': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-replace-supers': 7.29.7(@babel/core@7.29.7)
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/plugin-transform-parameters@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-computed-properties@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/template': 7.29.7
- "@babel/plugin-transform-private-methods@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-destructuring@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@7.29.7)
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/plugin-transform-private-property-in-object@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-export-namespace-from@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-annotate-as-pure": 7.29.7
- "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@7.29.7)
- "@babel/helper-plugin-utils": 7.29.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-react-display-name@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-flow-strip-types@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-flow': 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-react-jsx-development@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-for-of@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/plugin-transform-react-jsx": 7.29.7(@babel/core@7.29.7)
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/plugin-transform-react-jsx-self@7.29.7(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/plugin-transform-react-jsx-source@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-function-name@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/plugin-transform-react-jsx@7.29.7(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-annotate-as-pure": 7.29.7
- "@babel/helper-module-imports": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
- "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.7)
- "@babel/types": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/plugin-transform-react-pure-annotations@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-literals@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-annotate-as-pure": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-regenerator@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-logical-assignment-operators@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-runtime@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-modules-commonjs@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-module-imports": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
- babel-plugin-polyfill-corejs2: 0.4.17(@babel/core@7.29.7)
- babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.29.7)
- babel-plugin-polyfill-regenerator: 0.6.8(@babel/core@7.29.7)
- semver: 6.3.1
+ '@babel/core': 7.29.7
+ '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/plugin-transform-shorthand-properties@7.29.7(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/plugin-transform-spread@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-named-capturing-groups-regex@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
- "@babel/helper-skip-transparent-expression-wrappers": 7.29.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.29.7
+ '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-sticky-regex@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-nullish-coalescing-operator@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-template-literals@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-numeric-separator@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/plugin-transform-typescript@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-object-rest-spread@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-annotate-as-pure": 7.29.7
- "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@7.29.7)
- "@babel/helper-plugin-utils": 7.29.7
- "@babel/helper-skip-transparent-expression-wrappers": 7.29.7
- "@babel/plugin-syntax-typescript": 7.29.7(@babel/core@7.29.7)
+ '@babel/core': 7.29.7
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-destructuring': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-parameters': 7.29.7(@babel/core@7.29.7)
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/plugin-transform-unicode-regex@7.29.7(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-create-regexp-features-plugin": 7.29.7(@babel/core@7.29.7)
- "@babel/helper-plugin-utils": 7.29.7
-
- "@babel/preset-react@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-optional-catch-binding@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
- "@babel/helper-validator-option": 7.29.7
- "@babel/plugin-transform-react-display-name": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-react-jsx": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-react-jsx-development": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-react-pure-annotations": 7.29.7(@babel/core@7.29.7)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/preset-typescript@7.29.7(@babel/core@7.29.7)":
+ '@babel/plugin-transform-optional-chaining@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-plugin-utils": 7.29.7
- "@babel/helper-validator-option": 7.29.7
- "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-modules-commonjs": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-typescript": 7.29.7(@babel/core@7.29.7)
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/runtime@7.29.7": {}
-
- "@babel/template@7.29.7":
+ '@babel/plugin-transform-parameters@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/code-frame": 7.29.7
- "@babel/parser": 7.29.7
- "@babel/types": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@babel/traverse@7.29.7":
+ '@babel/plugin-transform-private-methods@7.29.7(@babel/core@7.29.7)':
dependencies:
- "@babel/code-frame": 7.29.7
- "@babel/generator": 7.29.7
- "@babel/helper-globals": 7.29.7
- "@babel/parser": 7.29.7
- "@babel/template": 7.29.7
- "@babel/types": 7.29.7
- debug: 4.4.3(supports-color@8.1.1)
+ '@babel/core': 7.29.7
+ '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- "@babel/types@7.29.7":
- dependencies:
- "@babel/helper-string-parser": 7.29.7
- "@babel/helper-validator-identifier": 7.29.7
-
- "@bcoe/v8-coverage@0.2.3": {}
-
- "@borewit/text-codec@0.2.2": {}
-
- "@clack/core@1.3.1":
- dependencies:
- fast-wrap-ansi: 0.2.2
- sisteransi: 1.0.5
-
- "@clack/prompts@1.4.0":
- dependencies:
- "@clack/core": 1.3.1
- fast-string-width: 3.0.2
- fast-wrap-ansi: 0.2.2
- sisteransi: 1.0.5
-
- "@config-plugins/react-native-webrtc@13.0.0(expo@54.0.35)":
- dependencies:
- expo: 54.0.35(@babel/core@7.29.7)(@expo/metro-runtime@6.1.2)(expo-router@6.0.24)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
-
- "@craftzdog/react-native-buffer@6.1.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)":
- dependencies:
- ieee754: 1.2.1
- react-native-quick-base64: 2.2.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
- transitivePeerDependencies:
- - react
- - react-native
-
- "@craftzdog/react-native-buffer@6.1.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)":
- dependencies:
- ieee754: 1.2.1
- react-native-quick-base64: 3.0.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
- transitivePeerDependencies:
- - react
- - react-native
-
- "@cspotcode/source-map-support@0.8.1":
- dependencies:
- "@jridgewell/trace-mapping": 0.3.9
-
- "@earendil-works/pi-tui@0.78.0":
- dependencies:
- get-east-asian-width: 1.6.0
- marked: 15.0.12
-
- "@egjs/hammerjs@2.0.17":
- dependencies:
- "@types/hammerjs": 2.0.46
-
- "@esbuild/aix-ppc64@0.25.12":
- optional: true
-
- "@esbuild/aix-ppc64@0.27.7":
- optional: true
-
- "@esbuild/android-arm64@0.25.12":
- optional: true
-
- "@esbuild/android-arm64@0.27.7":
- optional: true
-
- "@esbuild/android-arm@0.25.12":
- optional: true
-
- "@esbuild/android-arm@0.27.7":
- optional: true
-
- "@esbuild/android-x64@0.25.12":
- optional: true
-
- "@esbuild/android-x64@0.27.7":
- optional: true
-
- "@esbuild/darwin-arm64@0.25.12":
- optional: true
-
- "@esbuild/darwin-arm64@0.27.7":
- optional: true
-
- "@esbuild/darwin-x64@0.25.12":
- optional: true
-
- "@esbuild/darwin-x64@0.27.7":
- optional: true
-
- "@esbuild/freebsd-arm64@0.25.12":
- optional: true
-
- "@esbuild/freebsd-arm64@0.27.7":
- optional: true
-
- "@esbuild/freebsd-x64@0.25.12":
- optional: true
-
- "@esbuild/freebsd-x64@0.27.7":
- optional: true
-
- "@esbuild/linux-arm64@0.25.12":
- optional: true
-
- "@esbuild/linux-arm64@0.27.7":
- optional: true
-
- "@esbuild/linux-arm@0.25.12":
- optional: true
-
- "@esbuild/linux-arm@0.27.7":
- optional: true
-
- "@esbuild/linux-ia32@0.25.12":
- optional: true
-
- "@esbuild/linux-ia32@0.27.7":
- optional: true
-
- "@esbuild/linux-loong64@0.25.12":
- optional: true
-
- "@esbuild/linux-loong64@0.27.7":
- optional: true
-
- "@esbuild/linux-mips64el@0.25.12":
- optional: true
-
- "@esbuild/linux-mips64el@0.27.7":
- optional: true
+ '@babel/plugin-transform-private-property-in-object@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-annotate-as-pure': 7.29.7
+ '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
+ transitivePeerDependencies:
+ - supports-color
- "@esbuild/linux-ppc64@0.25.12":
- optional: true
+ '@babel/plugin-transform-react-display-name@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@esbuild/linux-ppc64@0.27.7":
- optional: true
+ '@babel/plugin-transform-react-jsx-development@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/plugin-transform-react-jsx': 7.29.7(@babel/core@7.29.7)
+ transitivePeerDependencies:
+ - supports-color
- "@esbuild/linux-riscv64@0.25.12":
- optional: true
+ '@babel/plugin-transform-react-jsx-self@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@esbuild/linux-riscv64@0.27.7":
- optional: true
+ '@babel/plugin-transform-react-jsx-source@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@esbuild/linux-s390x@0.25.12":
- optional: true
+ '@babel/plugin-transform-react-jsx@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-annotate-as-pure': 7.29.7
+ '@babel/helper-module-imports': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.7)
+ '@babel/types': 7.29.7
+ transitivePeerDependencies:
+ - supports-color
- "@esbuild/linux-s390x@0.27.7":
- optional: true
+ '@babel/plugin-transform-react-pure-annotations@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-annotate-as-pure': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@esbuild/linux-x64@0.25.12":
- optional: true
+ '@babel/plugin-transform-regenerator@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@esbuild/linux-x64@0.27.7":
- optional: true
+ '@babel/plugin-transform-runtime@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-module-imports': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ babel-plugin-polyfill-corejs2: 0.4.17(@babel/core@7.29.7)
+ babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.29.7)
+ babel-plugin-polyfill-regenerator: 0.6.8(@babel/core@7.29.7)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- "@esbuild/netbsd-arm64@0.25.12":
- optional: true
+ '@babel/plugin-transform-shorthand-properties@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@esbuild/netbsd-arm64@0.27.7":
- optional: true
+ '@babel/plugin-transform-spread@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.29.7
+ transitivePeerDependencies:
+ - supports-color
- "@esbuild/netbsd-x64@0.25.12":
- optional: true
+ '@babel/plugin-transform-sticky-regex@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@esbuild/netbsd-x64@0.27.7":
- optional: true
+ '@babel/plugin-transform-template-literals@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- "@esbuild/openbsd-arm64@0.25.12":
- optional: true
+ '@babel/plugin-transform-typescript@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-annotate-as-pure': 7.29.7
+ '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.29.7
+ '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7)
+ transitivePeerDependencies:
+ - supports-color
- "@esbuild/openbsd-arm64@0.27.7":
- optional: true
+ '@babel/plugin-transform-unicode-regex@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
- "@esbuild/openbsd-x64@0.25.12":
- optional: true
+ '@babel/preset-react@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-validator-option': 7.29.7
+ '@babel/plugin-transform-react-display-name': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-react-jsx': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-react-jsx-development': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-react-pure-annotations': 7.29.7(@babel/core@7.29.7)
+ transitivePeerDependencies:
+ - supports-color
- "@esbuild/openbsd-x64@0.27.7":
- optional: true
+ '@babel/preset-typescript@7.29.7(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-validator-option': 7.29.7
+ '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-modules-commonjs': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.7)
+ transitivePeerDependencies:
+ - supports-color
- "@esbuild/openharmony-arm64@0.25.12":
- optional: true
+ '@babel/runtime@7.29.7': {}
- "@esbuild/openharmony-arm64@0.27.7":
- optional: true
+ '@babel/template@7.29.7':
+ dependencies:
+ '@babel/code-frame': 7.29.7
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
- "@esbuild/sunos-x64@0.25.12":
- optional: true
+ '@babel/traverse@7.29.7':
+ dependencies:
+ '@babel/code-frame': 7.29.7
+ '@babel/generator': 7.29.7
+ '@babel/helper-globals': 7.29.7
+ '@babel/parser': 7.29.7
+ '@babel/template': 7.29.7
+ '@babel/types': 7.29.7
+ debug: 4.4.3(supports-color@8.1.1)
+ transitivePeerDependencies:
+ - supports-color
- "@esbuild/sunos-x64@0.27.7":
- optional: true
+ '@babel/types@7.29.7':
+ dependencies:
+ '@babel/helper-string-parser': 7.29.7
+ '@babel/helper-validator-identifier': 7.29.7
- "@esbuild/win32-arm64@0.25.12":
- optional: true
+ '@bcoe/v8-coverage@0.2.3': {}
- "@esbuild/win32-arm64@0.27.7":
- optional: true
+ '@config-plugins/react-native-webrtc@13.0.0(expo@54.0.35)':
+ dependencies:
+ expo: 54.0.35(@babel/core@7.29.7)(@expo/metro-runtime@6.1.2)(expo-router@6.0.24)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
- "@esbuild/win32-ia32@0.25.12":
- optional: true
+ '@craftzdog/react-native-buffer@6.1.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ ieee754: 1.2.1
+ react-native-quick-base64: 2.2.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ transitivePeerDependencies:
+ - react
+ - react-native
- "@esbuild/win32-ia32@0.27.7":
- optional: true
+ '@craftzdog/react-native-buffer@6.1.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ ieee754: 1.2.1
+ react-native-quick-base64: 3.0.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ transitivePeerDependencies:
+ - react
+ - react-native
- "@esbuild/win32-x64@0.25.12":
- optional: true
+ '@cspotcode/source-map-support@0.8.1':
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.9
- "@esbuild/win32-x64@0.27.7":
- optional: true
+ '@egjs/hammerjs@2.0.17':
+ dependencies:
+ '@types/hammerjs': 2.0.46
- "@expo/apple-utils@2.1.19": {}
+ '@expo/apple-utils@2.1.19': {}
- "@expo/bunyan@4.0.1":
+ '@expo/bunyan@4.0.1':
dependencies:
uuid: 11.1.1
- "@expo/cli@54.0.25(expo-router@6.0.24)(expo@54.0.35)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(typescript@5.8.3)":
- dependencies:
- "@0no-co/graphql.web": 1.2.0(graphql@16.8.1)
- "@expo/code-signing-certificates": 0.0.6
- "@expo/config": 12.0.13
- "@expo/config-plugins": 54.0.4
- "@expo/devcert": 1.2.1
- "@expo/env": 2.0.11
- "@expo/image-utils": 0.8.14(typescript@5.8.3)
- "@expo/json-file": 10.2.0
- "@expo/metro": 54.2.0
- "@expo/metro-config": 54.0.16(expo@54.0.35)
- "@expo/osascript": 2.6.0
- "@expo/package-manager": 1.12.0
- "@expo/plist": 0.4.9
- "@expo/prebuild-config": 54.0.8(expo@54.0.35)(typescript@5.8.3)
- "@expo/schema-utils": 0.1.8
- "@expo/spawn-async": 1.8.0
- "@expo/ws-tunnel": 1.0.6
- "@expo/xcpretty": 4.4.4
- "@react-native/dev-middleware": 0.81.5
- "@urql/core": 5.2.0(graphql@16.8.1)
- "@urql/exchange-retry": 1.3.2(@urql/core@5.2.0(graphql@16.8.1))
+ '@expo/cli@54.0.25(expo-router@6.0.24)(expo@54.0.35)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(typescript@5.8.3)':
+ dependencies:
+ '@0no-co/graphql.web': 1.2.0(graphql@16.8.1)
+ '@expo/code-signing-certificates': 0.0.6
+ '@expo/config': 12.0.13
+ '@expo/config-plugins': 54.0.4
+ '@expo/devcert': 1.2.1
+ '@expo/env': 2.0.11
+ '@expo/image-utils': 0.8.14(typescript@5.8.3)
+ '@expo/json-file': 10.2.0
+ '@expo/metro': 54.2.0
+ '@expo/metro-config': 54.0.16(expo@54.0.35)
+ '@expo/osascript': 2.6.0
+ '@expo/package-manager': 1.12.0
+ '@expo/plist': 0.4.9
+ '@expo/prebuild-config': 54.0.8(expo@54.0.35)(typescript@5.8.3)
+ '@expo/schema-utils': 0.1.8
+ '@expo/spawn-async': 1.8.0
+ '@expo/ws-tunnel': 1.0.6
+ '@expo/xcpretty': 4.4.4
+ '@react-native/dev-middleware': 0.81.5
+ '@urql/core': 5.2.0(graphql@16.8.1)
+ '@urql/exchange-retry': 1.3.2(@urql/core@5.2.0(graphql@16.8.1))
accepts: 1.3.8
arg: 5.0.2
better-opn: 3.0.2
@@ -13253,21 +6747,21 @@ snapshots:
- typescript
- utf-8-validate
- "@expo/code-signing-certificates@0.0.5":
+ '@expo/code-signing-certificates@0.0.5':
dependencies:
node-forge: 1.4.0
nullthrows: 1.1.1
- "@expo/code-signing-certificates@0.0.6":
+ '@expo/code-signing-certificates@0.0.6':
dependencies:
node-forge: 1.4.0
- "@expo/config-plugins@54.0.4":
+ '@expo/config-plugins@54.0.4':
dependencies:
- "@expo/config-types": 54.0.10
- "@expo/json-file": 10.0.16
- "@expo/plist": 0.4.9
- "@expo/sdk-runtime-versions": 1.0.0
+ '@expo/config-types': 54.0.10
+ '@expo/json-file': 10.0.16
+ '@expo/plist': 0.4.9
+ '@expo/sdk-runtime-versions': 1.0.0
chalk: 4.1.2
debug: 4.4.3(supports-color@8.1.1)
getenv: 2.0.0
@@ -13281,12 +6775,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@expo/config-plugins@55.0.10":
+ '@expo/config-plugins@55.0.10':
dependencies:
- "@expo/config-types": 55.0.5
- "@expo/json-file": 10.0.16
- "@expo/plist": 0.5.4
- "@expo/sdk-runtime-versions": 1.0.0
+ '@expo/config-types': 55.0.5
+ '@expo/json-file': 10.0.16
+ '@expo/plist': 0.5.4
+ '@expo/sdk-runtime-versions': 1.0.0
chalk: 4.1.2
debug: 4.4.3(supports-color@8.1.1)
getenv: 2.0.0
@@ -13299,12 +6793,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@expo/config-plugins@55.0.7":
+ '@expo/config-plugins@55.0.7':
dependencies:
- "@expo/config-types": 55.0.5
- "@expo/json-file": 10.0.16
- "@expo/plist": 0.5.4
- "@expo/sdk-runtime-versions": 1.0.0
+ '@expo/config-types': 55.0.5
+ '@expo/json-file': 10.0.16
+ '@expo/plist': 0.5.4
+ '@expo/sdk-runtime-versions': 1.0.0
chalk: 4.1.2
debug: 4.4.3(supports-color@8.1.1)
getenv: 2.0.0
@@ -13317,12 +6811,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@expo/config-plugins@9.0.17":
+ '@expo/config-plugins@9.0.17':
dependencies:
- "@expo/config-types": 52.0.5
- "@expo/json-file": 9.0.2
- "@expo/plist": 0.2.2
- "@expo/sdk-runtime-versions": 1.0.0
+ '@expo/config-types': 52.0.5
+ '@expo/json-file': 9.0.2
+ '@expo/plist': 0.2.2
+ '@expo/sdk-runtime-versions': 1.0.0
chalk: 4.1.2
debug: 4.4.3(supports-color@8.1.1)
getenv: 1.0.0
@@ -13336,18 +6830,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@expo/config-types@52.0.5": {}
+ '@expo/config-types@52.0.5': {}
- "@expo/config-types@54.0.10": {}
+ '@expo/config-types@54.0.10': {}
- "@expo/config-types@55.0.5": {}
+ '@expo/config-types@55.0.5': {}
- "@expo/config@10.0.11":
+ '@expo/config@10.0.11':
dependencies:
- "@babel/code-frame": 7.10.4
- "@expo/config-plugins": 9.0.17
- "@expo/config-types": 52.0.5
- "@expo/json-file": 9.1.5
+ '@babel/code-frame': 7.10.4
+ '@expo/config-plugins': 9.0.17
+ '@expo/config-types': 52.0.5
+ '@expo/json-file': 9.1.5
deepmerge: 4.3.1
getenv: 1.0.0
glob: 10.5.0
@@ -13360,12 +6854,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@expo/config@12.0.13":
+ '@expo/config@12.0.13':
dependencies:
- "@babel/code-frame": 7.10.4
- "@expo/config-plugins": 54.0.4
- "@expo/config-types": 54.0.10
- "@expo/json-file": 10.2.0
+ '@babel/code-frame': 7.10.4
+ '@expo/config-plugins': 54.0.4
+ '@expo/config-types': 54.0.10
+ '@expo/json-file': 10.2.0
deepmerge: 4.3.1
getenv: 2.0.0
glob: 13.0.6
@@ -13378,12 +6872,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@expo/config@55.0.10(typescript@5.8.3)":
+ '@expo/config@55.0.10(typescript@5.8.3)':
dependencies:
- "@expo/config-plugins": 55.0.10
- "@expo/config-types": 55.0.5
- "@expo/json-file": 10.2.0
- "@expo/require-utils": 55.0.5(typescript@5.8.3)
+ '@expo/config-plugins': 55.0.10
+ '@expo/config-types': 55.0.5
+ '@expo/json-file': 10.2.0
+ '@expo/require-utils': 55.0.5(typescript@5.8.3)
deepmerge: 4.3.1
getenv: 2.0.0
glob: 13.0.6
@@ -13395,12 +6889,12 @@ snapshots:
- supports-color
- typescript
- "@expo/config@55.0.17(typescript@5.8.3)":
+ '@expo/config@55.0.17(typescript@5.8.3)':
dependencies:
- "@expo/config-plugins": 55.0.10
- "@expo/config-types": 55.0.5
- "@expo/json-file": 10.2.0
- "@expo/require-utils": 55.0.5(typescript@5.8.3)
+ '@expo/config-plugins': 55.0.10
+ '@expo/config-types': 55.0.5
+ '@expo/json-file': 10.2.0
+ '@expo/require-utils': 55.0.5(typescript@5.8.3)
deepmerge: 4.3.1
getenv: 2.0.0
glob: 13.0.6
@@ -13411,33 +6905,33 @@ snapshots:
- supports-color
- typescript
- "@expo/devcert@1.2.1":
+ '@expo/devcert@1.2.1':
dependencies:
- "@expo/sudo-prompt": 9.3.2
+ '@expo/sudo-prompt': 9.3.2
debug: 3.2.7
transitivePeerDependencies:
- supports-color
- "@expo/devtools@0.1.8(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)":
+ '@expo/devtools@0.1.8(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
dependencies:
chalk: 4.1.2
optionalDependencies:
react: 19.1.0
react-native: 0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)
- "@expo/eas-build-job@20.1.0":
+ '@expo/eas-build-job@20.1.0':
dependencies:
- "@expo/logger": 20.0.0
- "@expo/results": 1.0.0
- "@expo/turtle-spawn": 20.0.0
+ '@expo/logger': 20.0.0
+ '@expo/results': 1.0.0
+ '@expo/turtle-spawn': 20.0.0
joi: 17.13.3
semver: 7.8.1
zod: 4.4.3
- "@expo/eas-json@20.1.0":
+ '@expo/eas-json@20.1.0':
dependencies:
- "@babel/code-frame": 7.23.5
- "@expo/eas-build-job": 20.1.0
+ '@babel/code-frame': 7.23.5
+ '@expo/eas-build-job': 20.1.0
chalk: 4.1.2
env-string: 1.0.1
fs-extra: 11.2.0
@@ -13448,7 +6942,7 @@ snapshots:
terminal-link: 2.1.1
tslib: 2.4.1
- "@expo/env@1.0.7":
+ '@expo/env@1.0.7':
dependencies:
chalk: 4.1.2
debug: 4.4.3(supports-color@8.1.1)
@@ -13458,7 +6952,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@expo/env@2.0.11":
+ '@expo/env@2.0.11':
dependencies:
chalk: 4.1.2
debug: 4.4.3(supports-color@8.1.1)
@@ -13468,9 +6962,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@expo/fingerprint@0.15.5":
+ '@expo/fingerprint@0.15.5':
dependencies:
- "@expo/spawn-async": 1.8.0
+ '@expo/spawn-async': 1.8.0
arg: 5.0.2
chalk: 4.1.2
debug: 4.4.3(supports-color@8.1.1)
@@ -13484,9 +6978,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@expo/image-utils@0.6.5":
+ '@expo/image-utils@0.6.5':
dependencies:
- "@expo/spawn-async": 1.8.0
+ '@expo/spawn-async': 1.8.0
chalk: 4.1.2
fs-extra: 9.0.0
getenv: 1.0.0
@@ -13497,10 +6991,10 @@ snapshots:
temp-dir: 2.0.0
unique-string: 2.0.0
- "@expo/image-utils@0.8.14(typescript@5.8.3)":
+ '@expo/image-utils@0.8.14(typescript@5.8.3)':
dependencies:
- "@expo/require-utils": 55.0.5(typescript@5.8.3)
- "@expo/spawn-async": 1.8.0
+ '@expo/require-utils': 55.0.5(typescript@5.8.3)
+ '@expo/spawn-async': 1.8.0
chalk: 4.1.2
getenv: 2.0.0
jimp-compact: 0.16.1
@@ -13510,48 +7004,48 @@ snapshots:
- supports-color
- typescript
- "@expo/json-file@10.0.16":
+ '@expo/json-file@10.0.16':
dependencies:
- "@babel/code-frame": 7.10.4
+ '@babel/code-frame': 7.10.4
json5: 2.2.3
- "@expo/json-file@10.2.0":
+ '@expo/json-file@10.2.0':
dependencies:
- "@babel/code-frame": 7.29.7
+ '@babel/code-frame': 7.29.7
json5: 2.2.3
- "@expo/json-file@8.3.3":
+ '@expo/json-file@8.3.3':
dependencies:
- "@babel/code-frame": 7.10.4
+ '@babel/code-frame': 7.10.4
json5: 2.2.3
write-file-atomic: 2.4.3
- "@expo/json-file@9.0.2":
+ '@expo/json-file@9.0.2':
dependencies:
- "@babel/code-frame": 7.10.4
+ '@babel/code-frame': 7.10.4
json5: 2.2.3
write-file-atomic: 2.4.3
- "@expo/json-file@9.1.5":
+ '@expo/json-file@9.1.5':
dependencies:
- "@babel/code-frame": 7.10.4
+ '@babel/code-frame': 7.10.4
json5: 2.2.3
- "@expo/logger@20.0.0":
+ '@expo/logger@20.0.0':
dependencies:
- "@types/bunyan": 1.8.11
+ '@types/bunyan': 1.8.11
bunyan: 1.8.15
- "@expo/metro-config@54.0.16(expo@54.0.35)":
+ '@expo/metro-config@54.0.16(expo@54.0.35)':
dependencies:
- "@babel/code-frame": 7.29.7
- "@babel/core": 7.29.7
- "@babel/generator": 7.29.7
- "@expo/config": 12.0.13
- "@expo/env": 2.0.11
- "@expo/json-file": 10.0.16
- "@expo/metro": 54.2.0
- "@expo/spawn-async": 1.8.0
+ '@babel/code-frame': 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/generator': 7.29.7
+ '@expo/config': 12.0.13
+ '@expo/env': 2.0.11
+ '@expo/json-file': 10.0.16
+ '@expo/metro': 54.2.0
+ '@expo/spawn-async': 1.8.0
browserslist: 4.28.2
chalk: 4.1.2
debug: 4.4.3(supports-color@8.1.1)
@@ -13572,7 +7066,7 @@ snapshots:
- supports-color
- utf-8-validate
- "@expo/metro-runtime@6.1.2(expo@54.0.35)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)":
+ '@expo/metro-runtime@6.1.2(expo@54.0.35)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
dependencies:
anser: 1.4.10
expo: 54.0.35(@babel/core@7.29.7)(@expo/metro-runtime@6.1.2)(expo-router@6.0.24)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
@@ -13584,7 +7078,7 @@ snapshots:
optionalDependencies:
react-dom: 19.1.0(react@19.1.0)
- "@expo/metro@54.2.0":
+ '@expo/metro@54.2.0':
dependencies:
metro: 0.83.3
metro-babel-transformer: 0.83.3
@@ -13605,77 +7099,77 @@ snapshots:
- supports-color
- utf-8-validate
- "@expo/multipart-body-parser@2.0.0":
+ '@expo/multipart-body-parser@2.0.0':
dependencies:
multipasta: 0.2.7
- "@expo/osascript@2.1.4":
+ '@expo/osascript@2.1.4':
dependencies:
- "@expo/spawn-async": 1.8.0
+ '@expo/spawn-async': 1.8.0
exec-async: 2.2.0
- "@expo/osascript@2.6.0":
+ '@expo/osascript@2.6.0':
dependencies:
- "@expo/spawn-async": 1.8.0
+ '@expo/spawn-async': 1.8.0
- "@expo/package-manager@1.12.0":
+ '@expo/package-manager@1.12.0':
dependencies:
- "@expo/json-file": 10.2.0
- "@expo/spawn-async": 1.8.0
+ '@expo/json-file': 10.2.0
+ '@expo/spawn-async': 1.8.0
chalk: 4.1.2
npm-package-arg: 11.0.3
ora: 3.4.0
resolve-workspace-root: 2.0.1
- "@expo/package-manager@1.9.10":
+ '@expo/package-manager@1.9.10':
dependencies:
- "@expo/json-file": 10.2.0
- "@expo/spawn-async": 1.8.0
+ '@expo/json-file': 10.2.0
+ '@expo/spawn-async': 1.8.0
chalk: 4.1.2
npm-package-arg: 11.0.3
ora: 3.4.0
resolve-workspace-root: 2.0.1
- "@expo/pkcs12@0.1.3":
+ '@expo/pkcs12@0.1.3':
dependencies:
node-forge: 1.4.0
- "@expo/plist@0.2.0":
+ '@expo/plist@0.2.0':
dependencies:
- "@xmldom/xmldom": 0.9.10
+ '@xmldom/xmldom': 0.8.13
base64-js: 1.5.1
xmlbuilder: 14.0.0
- "@expo/plist@0.2.2":
+ '@expo/plist@0.2.2':
dependencies:
- "@xmldom/xmldom": 0.9.10
+ '@xmldom/xmldom': 0.8.13
base64-js: 1.5.1
xmlbuilder: 14.0.0
- "@expo/plist@0.4.9":
+ '@expo/plist@0.4.9':
dependencies:
- "@xmldom/xmldom": 0.9.10
+ '@xmldom/xmldom': 0.8.13
base64-js: 1.5.1
xmlbuilder: 15.1.1
- "@expo/plist@0.5.4":
+ '@expo/plist@0.5.4':
dependencies:
- "@xmldom/xmldom": 0.9.10
+ '@xmldom/xmldom': 0.8.13
base64-js: 1.5.1
xmlbuilder: 15.1.1
- "@expo/plugin-help@5.1.23(@types/node@22.19.19)(typescript@5.8.3)":
+ '@expo/plugin-help@5.1.23(@types/node@22.19.19)(typescript@5.8.3)':
dependencies:
- "@oclif/core": 2.16.0(@types/node@22.19.19)(typescript@5.8.3)
+ '@oclif/core': 2.16.0(@types/node@22.19.19)(typescript@5.8.3)
transitivePeerDependencies:
- - "@swc/core"
- - "@swc/wasm"
- - "@types/node"
+ - '@swc/core'
+ - '@swc/wasm'
+ - '@types/node'
- typescript
- "@expo/plugin-warn-if-update-available@2.5.1(@types/node@22.19.19)(typescript@5.8.3)":
+ '@expo/plugin-warn-if-update-available@2.5.1(@types/node@22.19.19)(typescript@5.8.3)':
dependencies:
- "@oclif/core": 2.16.0(@types/node@22.19.19)(typescript@5.8.3)
+ '@oclif/core': 2.16.0(@types/node@22.19.19)(typescript@5.8.3)
chalk: 4.1.2
debug: 4.4.3(supports-color@8.1.1)
ejs: 3.1.10
@@ -13684,20 +7178,20 @@ snapshots:
semver: 7.8.1
tslib: 2.8.1
transitivePeerDependencies:
- - "@swc/core"
- - "@swc/wasm"
- - "@types/node"
+ - '@swc/core'
+ - '@swc/wasm'
+ - '@types/node'
- supports-color
- typescript
- "@expo/prebuild-config@54.0.8(expo@54.0.35)(typescript@5.8.3)":
+ '@expo/prebuild-config@54.0.8(expo@54.0.35)(typescript@5.8.3)':
dependencies:
- "@expo/config": 12.0.13
- "@expo/config-plugins": 54.0.4
- "@expo/config-types": 54.0.10
- "@expo/image-utils": 0.8.14(typescript@5.8.3)
- "@expo/json-file": 10.2.0
- "@react-native/normalize-colors": 0.81.5
+ '@expo/config': 12.0.13
+ '@expo/config-plugins': 54.0.4
+ '@expo/config-types': 54.0.10
+ '@expo/image-utils': 0.8.14(typescript@5.8.3)
+ '@expo/json-file': 10.2.0
+ '@react-native/normalize-colors': 0.81.5
debug: 4.4.3(supports-color@8.1.1)
expo: 54.0.35(@babel/core@7.29.7)(@expo/metro-runtime@6.1.2)(expo-router@6.0.24)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
resolve-from: 5.0.0
@@ -13707,14 +7201,14 @@ snapshots:
- supports-color
- typescript
- "@expo/prebuild-config@8.0.17":
+ '@expo/prebuild-config@8.0.17':
dependencies:
- "@expo/config": 10.0.11
- "@expo/config-plugins": 9.0.17
- "@expo/config-types": 52.0.5
- "@expo/image-utils": 0.6.5
- "@expo/json-file": 9.1.5
- "@react-native/normalize-colors": 0.76.2
+ '@expo/config': 10.0.11
+ '@expo/config-plugins': 9.0.17
+ '@expo/config-types': 52.0.5
+ '@expo/image-utils': 0.6.5
+ '@expo/json-file': 9.1.5
+ '@react-native/normalize-colors': 0.76.2
debug: 4.4.3(supports-color@8.1.1)
fs-extra: 9.1.0
resolve-from: 5.0.0
@@ -13723,22 +7217,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@expo/require-utils@55.0.5(typescript@5.8.3)":
+ '@expo/require-utils@55.0.5(typescript@5.8.3)':
dependencies:
- "@babel/code-frame": 7.29.7
- "@babel/core": 7.29.7
- "@babel/plugin-transform-modules-commonjs": 7.29.7(@babel/core@7.29.7)
+ '@babel/code-frame': 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/plugin-transform-modules-commonjs': 7.29.7(@babel/core@7.29.7)
optionalDependencies:
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- "@expo/results@1.0.0": {}
+ '@expo/results@1.0.0': {}
- "@expo/rudder-sdk-node@1.1.1":
+ '@expo/rudder-sdk-node@1.1.1':
dependencies:
- "@expo/bunyan": 4.0.1
- "@segment/loosely-validate-event": 2.0.0
+ '@expo/bunyan': 4.0.1
+ '@segment/loosely-validate-event': 2.0.0
fetch-retry: 4.1.1
md5: 2.3.0
node-fetch: 2.7.0
@@ -13747,25 +7241,25 @@ snapshots:
transitivePeerDependencies:
- encoding
- "@expo/schema-utils@0.1.8": {}
+ '@expo/schema-utils@0.1.8': {}
- "@expo/schema-utils@55.0.4": {}
+ '@expo/schema-utils@55.0.4': {}
- "@expo/sdk-runtime-versions@1.0.0": {}
+ '@expo/sdk-runtime-versions@1.0.0': {}
- "@expo/spawn-async@1.7.2":
+ '@expo/spawn-async@1.7.2':
dependencies:
cross-spawn: 7.0.6
- "@expo/spawn-async@1.8.0":
+ '@expo/spawn-async@1.8.0':
dependencies:
cross-spawn: 7.0.6
- "@expo/steps@20.1.0":
+ '@expo/steps@20.1.0':
dependencies:
- "@expo/eas-build-job": 20.1.0
- "@expo/logger": 20.0.0
- "@expo/spawn-async": 1.8.0
+ '@expo/eas-build-job': 20.1.0
+ '@expo/logger': 20.0.0
+ '@expo/spawn-async': 1.8.0
arg: 5.0.2
fs-extra: 11.2.0
joi: 17.13.3
@@ -13775,74 +7269,53 @@ snapshots:
uuid: 11.1.1
yaml: 2.9.0
- "@expo/sudo-prompt@9.3.2": {}
+ '@expo/sudo-prompt@9.3.2': {}
- "@expo/timeago.js@1.0.0": {}
+ '@expo/timeago.js@1.0.0': {}
- "@expo/turtle-spawn@20.0.0":
+ '@expo/turtle-spawn@20.0.0':
dependencies:
- "@expo/logger": 20.0.0
- "@expo/spawn-async": 1.8.0
+ '@expo/logger': 20.0.0
+ '@expo/spawn-async': 1.8.0
- "@expo/vector-icons@15.1.1(expo-font@14.0.12(expo@54.0.35)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)":
+ '@expo/vector-icons@15.1.1(expo-font@14.0.12(expo@54.0.35)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
dependencies:
expo-font: 14.0.12(expo@54.0.35)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
react: 19.1.0
react-native: 0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)
- "@expo/ws-tunnel@1.0.6": {}
+ '@expo/ws-tunnel@1.0.6': {}
- "@expo/xcpretty@4.4.4":
+ '@expo/xcpretty@4.4.4':
dependencies:
- "@babel/code-frame": 7.29.7
+ '@babel/code-frame': 7.29.7
chalk: 4.1.2
js-yaml: 4.1.1
- "@google/genai@2.7.0(@modelcontextprotocol/sdk@1.29.0(zod@4.4.3))":
+ '@gorhom/bottom-sheet@5.2.14(@types/react@19.1.17)(react-native-gesture-handler@2.28.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-reanimated@3.19.5(@babel/core@7.29.7)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
dependencies:
- google-auth-library: 10.7.0
- p-retry: 4.6.2
- protobufjs: 7.6.2
- ws: 8.21.0
+ '@gorhom/portal': 1.0.14(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ invariant: 2.2.4
+ react: 19.1.0
+ react-native: 0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)
+ react-native-gesture-handler: 2.28.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ react-native-reanimated: 3.19.5(@babel/core@7.29.7)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
optionalDependencies:
- "@modelcontextprotocol/sdk": 1.29.0(zod@4.4.3)
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
- "@grammyjs/runner@2.0.3(grammy@1.43.0)":
- dependencies:
- abort-controller: 3.0.0
- grammy: 1.43.0
-
- "@grammyjs/transformer-throttler@1.2.1(grammy@1.43.0)":
- dependencies:
- bottleneck: 2.19.5
- grammy: 1.43.0
+ '@types/react': 19.1.17
- "@grammyjs/types@3.27.3": {}
-
- "@hapi/hoek@9.3.0": {}
-
- "@hapi/topo@5.1.0":
+ '@gorhom/portal@1.0.14(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
dependencies:
- "@hapi/hoek": 9.3.0
+ nanoid: 3.3.12
+ react: 19.1.0
+ react-native: 0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)
- "@homebridge/ciao@1.3.9":
- dependencies:
- debug: 4.4.3(supports-color@8.1.1)
- fast-deep-equal: 3.1.3
- source-map-support: 0.5.21
- tslib: 2.8.1
- transitivePeerDependencies:
- - supports-color
+ '@hapi/hoek@9.3.0': {}
- "@hono/node-server@1.19.14(hono@4.12.24)":
+ '@hapi/topo@5.1.0':
dependencies:
- hono: 4.12.24
+ '@hapi/hoek': 9.3.0
- "@isaacs/cliui@8.0.2":
+ '@isaacs/cliui@8.0.2':
dependencies:
string-width: 5.1.2
string-width-cjs: string-width@4.2.3
@@ -13851,13 +7324,13 @@ snapshots:
wrap-ansi: 8.1.0
wrap-ansi-cjs: wrap-ansi@7.0.0
- "@isaacs/fs-minipass@4.0.1":
+ '@isaacs/fs-minipass@4.0.1':
dependencies:
minipass: 7.1.3
- "@isaacs/ttlcache@1.4.1": {}
+ '@isaacs/ttlcache@1.4.1': {}
- "@istanbuljs/load-nyc-config@1.1.0":
+ '@istanbuljs/load-nyc-config@1.1.0':
dependencies:
camelcase: 5.3.1
find-up: 4.1.0
@@ -13865,25 +7338,25 @@ snapshots:
js-yaml: 3.14.2
resolve-from: 5.0.0
- "@istanbuljs/schema@0.1.6": {}
+ '@istanbuljs/schema@0.1.6': {}
- "@jest/console@29.7.0":
+ '@jest/console@29.7.0':
dependencies:
- "@jest/types": 29.6.3
- "@types/node": 22.19.19
+ '@jest/types': 29.6.3
+ '@types/node': 22.19.19
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
slash: 3.0.0
- "@jest/core@29.7.0(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3))":
+ '@jest/core@29.7.0(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3))':
dependencies:
- "@jest/console": 29.7.0
- "@jest/reporters": 29.7.0
- "@jest/test-result": 29.7.0
- "@jest/transform": 29.7.0
- "@jest/types": 29.6.3
- "@types/node": 22.19.19
+ '@jest/console': 29.7.0
+ '@jest/reporters': 29.7.0
+ '@jest/test-result': 29.7.0
+ '@jest/transform': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 22.19.19
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.9.0
@@ -13911,68 +7384,68 @@ snapshots:
- supports-color
- ts-node
- "@jest/create-cache-key-function@29.7.0":
+ '@jest/create-cache-key-function@29.7.0':
dependencies:
- "@jest/types": 29.6.3
+ '@jest/types': 29.6.3
- "@jest/diff-sequences@30.4.0": {}
+ '@jest/diff-sequences@30.4.0': {}
- "@jest/environment@29.7.0":
+ '@jest/environment@29.7.0':
dependencies:
- "@jest/fake-timers": 29.7.0
- "@jest/types": 29.6.3
- "@types/node": 22.19.19
+ '@jest/fake-timers': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 22.19.19
jest-mock: 29.7.0
- "@jest/expect-utils@29.7.0":
+ '@jest/expect-utils@29.7.0':
dependencies:
jest-get-type: 29.6.3
- "@jest/expect-utils@30.4.1":
+ '@jest/expect-utils@30.4.1':
dependencies:
- "@jest/get-type": 30.1.0
+ '@jest/get-type': 30.1.0
- "@jest/expect@29.7.0":
+ '@jest/expect@29.7.0':
dependencies:
expect: 29.7.0
jest-snapshot: 29.7.0
transitivePeerDependencies:
- supports-color
- "@jest/fake-timers@29.7.0":
+ '@jest/fake-timers@29.7.0':
dependencies:
- "@jest/types": 29.6.3
- "@sinonjs/fake-timers": 10.3.0
- "@types/node": 22.19.19
+ '@jest/types': 29.6.3
+ '@sinonjs/fake-timers': 10.3.0
+ '@types/node': 22.19.19
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
- "@jest/get-type@30.1.0": {}
+ '@jest/get-type@30.1.0': {}
- "@jest/globals@29.7.0":
+ '@jest/globals@29.7.0':
dependencies:
- "@jest/environment": 29.7.0
- "@jest/expect": 29.7.0
- "@jest/types": 29.6.3
+ '@jest/environment': 29.7.0
+ '@jest/expect': 29.7.0
+ '@jest/types': 29.6.3
jest-mock: 29.7.0
transitivePeerDependencies:
- supports-color
- "@jest/pattern@30.4.0":
+ '@jest/pattern@30.4.0':
dependencies:
- "@types/node": 22.19.19
+ '@types/node': 22.19.19
jest-regex-util: 30.4.0
- "@jest/reporters@29.7.0":
+ '@jest/reporters@29.7.0':
dependencies:
- "@bcoe/v8-coverage": 0.2.3
- "@jest/console": 29.7.0
- "@jest/test-result": 29.7.0
- "@jest/transform": 29.7.0
- "@jest/types": 29.6.3
- "@jridgewell/trace-mapping": 0.3.31
- "@types/node": 22.19.19
+ '@bcoe/v8-coverage': 0.2.3
+ '@jest/console': 29.7.0
+ '@jest/test-result': 29.7.0
+ '@jest/transform': 29.7.0
+ '@jest/types': 29.6.3
+ '@jridgewell/trace-mapping': 0.3.31
+ '@types/node': 22.19.19
chalk: 4.1.2
collect-v8-coverage: 1.0.3
exit: 0.1.2
@@ -13993,39 +7466,39 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@jest/schemas@29.6.3":
+ '@jest/schemas@29.6.3':
dependencies:
- "@sinclair/typebox": 0.27.10
+ '@sinclair/typebox': 0.27.10
- "@jest/schemas@30.4.1":
+ '@jest/schemas@30.4.1':
dependencies:
- "@sinclair/typebox": 0.34.49
+ '@sinclair/typebox': 0.34.49
- "@jest/source-map@29.6.3":
+ '@jest/source-map@29.6.3':
dependencies:
- "@jridgewell/trace-mapping": 0.3.31
+ '@jridgewell/trace-mapping': 0.3.31
callsites: 3.1.0
graceful-fs: 4.2.11
- "@jest/test-result@29.7.0":
+ '@jest/test-result@29.7.0':
dependencies:
- "@jest/console": 29.7.0
- "@jest/types": 29.6.3
- "@types/istanbul-lib-coverage": 2.0.6
+ '@jest/console': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/istanbul-lib-coverage': 2.0.6
collect-v8-coverage: 1.0.3
- "@jest/test-sequencer@29.7.0":
+ '@jest/test-sequencer@29.7.0':
dependencies:
- "@jest/test-result": 29.7.0
+ '@jest/test-result': 29.7.0
graceful-fs: 4.2.11
jest-haste-map: 29.7.0
slash: 3.0.0
- "@jest/transform@29.7.0":
+ '@jest/transform@29.7.0':
dependencies:
- "@babel/core": 7.29.7
- "@jest/types": 29.6.3
- "@jridgewell/trace-mapping": 0.3.31
+ '@babel/core': 7.29.7
+ '@jest/types': 29.6.3
+ '@jridgewell/trace-mapping': 0.3.31
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
convert-source-map: 2.0.0
@@ -14041,82 +7514,55 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@jest/types@29.6.3":
+ '@jest/types@29.6.3':
dependencies:
- "@jest/schemas": 29.6.3
- "@types/istanbul-lib-coverage": 2.0.6
- "@types/istanbul-reports": 3.0.4
- "@types/node": 22.19.19
- "@types/yargs": 17.0.35
+ '@jest/schemas': 29.6.3
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-reports': 3.0.4
+ '@types/node': 22.19.19
+ '@types/yargs': 17.0.35
chalk: 4.1.2
- "@jest/types@30.4.1":
+ '@jest/types@30.4.1':
dependencies:
- "@jest/pattern": 30.4.0
- "@jest/schemas": 30.4.1
- "@types/istanbul-lib-coverage": 2.0.6
- "@types/istanbul-reports": 3.0.4
- "@types/node": 22.19.19
- "@types/yargs": 17.0.35
+ '@jest/pattern': 30.4.0
+ '@jest/schemas': 30.4.1
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-reports': 3.0.4
+ '@types/node': 22.19.19
+ '@types/yargs': 17.0.35
chalk: 4.1.2
- "@jridgewell/gen-mapping@0.3.13":
+ '@jridgewell/gen-mapping@0.3.13':
dependencies:
- "@jridgewell/sourcemap-codec": 1.5.5
- "@jridgewell/trace-mapping": 0.3.31
+ '@jridgewell/sourcemap-codec': 1.5.5
+ '@jridgewell/trace-mapping': 0.3.31
- "@jridgewell/remapping@2.3.5":
+ '@jridgewell/remapping@2.3.5':
dependencies:
- "@jridgewell/gen-mapping": 0.3.13
- "@jridgewell/trace-mapping": 0.3.31
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
- "@jridgewell/resolve-uri@3.1.2": {}
+ '@jridgewell/resolve-uri@3.1.2': {}
- "@jridgewell/source-map@0.3.11":
+ '@jridgewell/source-map@0.3.11':
dependencies:
- "@jridgewell/gen-mapping": 0.3.13
- "@jridgewell/trace-mapping": 0.3.31
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
- "@jridgewell/sourcemap-codec@1.5.5": {}
+ '@jridgewell/sourcemap-codec@1.5.5': {}
- "@jridgewell/trace-mapping@0.3.31":
+ '@jridgewell/trace-mapping@0.3.31':
dependencies:
- "@jridgewell/resolve-uri": 3.1.2
- "@jridgewell/sourcemap-codec": 1.5.5
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.5.5
- "@jridgewell/trace-mapping@0.3.9":
+ '@jridgewell/trace-mapping@0.3.9':
dependencies:
- "@jridgewell/resolve-uri": 3.1.2
- "@jridgewell/sourcemap-codec": 1.5.5
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.5.5
- "@lydell/node-pty-darwin-arm64@1.2.0-beta.12":
- optional: true
-
- "@lydell/node-pty-darwin-x64@1.2.0-beta.12":
- optional: true
-
- "@lydell/node-pty-linux-arm64@1.2.0-beta.12":
- optional: true
-
- "@lydell/node-pty-linux-x64@1.2.0-beta.12":
- optional: true
-
- "@lydell/node-pty-win32-arm64@1.2.0-beta.12":
- optional: true
-
- "@lydell/node-pty-win32-x64@1.2.0-beta.12":
- optional: true
-
- "@lydell/node-pty@1.2.0-beta.12":
- optionalDependencies:
- "@lydell/node-pty-darwin-arm64": 1.2.0-beta.12
- "@lydell/node-pty-darwin-x64": 1.2.0-beta.12
- "@lydell/node-pty-linux-arm64": 1.2.0-beta.12
- "@lydell/node-pty-linux-x64": 1.2.0-beta.12
- "@lydell/node-pty-win32-arm64": 1.2.0-beta.12
- "@lydell/node-pty-win32-x64": 1.2.0-beta.12
-
- "@mapbox/node-pre-gyp@1.0.11":
+ '@mapbox/node-pre-gyp@1.0.11':
dependencies:
detect-libc: 2.1.2
https-proxy-agent: 5.0.1
@@ -14132,123 +7578,39 @@ snapshots:
- supports-color
optional: true
- "@mistralai/mistralai@2.2.5":
- dependencies:
- ws: 8.21.0
- zod: 4.4.3
- zod-to-json-schema: 3.25.2(zod@4.4.3)
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
-
- "@modelcontextprotocol/sdk@1.29.0(zod@4.4.3)":
- dependencies:
- "@hono/node-server": 1.19.14(hono@4.12.24)
- ajv: 8.20.0
- ajv-formats: 3.0.1(ajv@8.20.0)
- content-type: 1.0.5
- cors: 2.8.6
- cross-spawn: 7.0.6
- eventsource: 3.0.7
- eventsource-parser: 3.1.0
- express: 5.2.1
- express-rate-limit: 8.5.2(express@5.2.1)
- hono: 4.12.24
- jose: 6.2.3
- json-schema-typed: 8.0.2
- pkce-challenge: 5.0.1
- raw-body: 3.0.2
- zod: 4.4.3
- zod-to-json-schema: 3.25.2(zod@4.4.3)
- transitivePeerDependencies:
- - supports-color
-
- "@mozilla/readability@0.6.0": {}
-
- "@napi-rs/keyring-darwin-arm64@1.3.0":
- optional: true
-
- "@napi-rs/keyring-darwin-x64@1.3.0":
- optional: true
-
- "@napi-rs/keyring-freebsd-x64@1.3.0":
- optional: true
-
- "@napi-rs/keyring-linux-arm-gnueabihf@1.3.0":
- optional: true
-
- "@napi-rs/keyring-linux-arm64-gnu@1.3.0":
- optional: true
-
- "@napi-rs/keyring-linux-arm64-musl@1.3.0":
- optional: true
-
- "@napi-rs/keyring-linux-riscv64-gnu@1.3.0":
- optional: true
-
- "@napi-rs/keyring-linux-x64-gnu@1.3.0":
- optional: true
-
- "@napi-rs/keyring-linux-x64-musl@1.3.0":
- optional: true
-
- "@napi-rs/keyring-win32-arm64-msvc@1.3.0":
- optional: true
-
- "@napi-rs/keyring-win32-ia32-msvc@1.3.0":
- optional: true
-
- "@napi-rs/keyring-win32-x64-msvc@1.3.0":
- optional: true
-
- "@napi-rs/keyring@1.3.0":
- optionalDependencies:
- "@napi-rs/keyring-darwin-arm64": 1.3.0
- "@napi-rs/keyring-darwin-x64": 1.3.0
- "@napi-rs/keyring-freebsd-x64": 1.3.0
- "@napi-rs/keyring-linux-arm-gnueabihf": 1.3.0
- "@napi-rs/keyring-linux-arm64-gnu": 1.3.0
- "@napi-rs/keyring-linux-arm64-musl": 1.3.0
- "@napi-rs/keyring-linux-riscv64-gnu": 1.3.0
- "@napi-rs/keyring-linux-x64-gnu": 1.3.0
- "@napi-rs/keyring-linux-x64-musl": 1.3.0
- "@napi-rs/keyring-win32-arm64-msvc": 1.3.0
- "@napi-rs/keyring-win32-ia32-msvc": 1.3.0
- "@napi-rs/keyring-win32-x64-msvc": 1.3.0
-
- "@noble/ciphers@2.2.0": {}
+ '@noble/ciphers@2.2.0': {}
- "@noble/curves@1.9.6":
+ '@noble/curves@1.9.6':
dependencies:
- "@noble/hashes": 1.8.0
+ '@noble/hashes': 1.8.0
- "@noble/curves@2.2.0":
+ '@noble/curves@2.2.0':
dependencies:
- "@noble/hashes": 2.2.0
+ '@noble/hashes': 2.2.0
- "@noble/ed25519@3.1.0": {}
+ '@noble/ed25519@3.1.0': {}
- "@noble/hashes@1.8.0": {}
+ '@noble/hashes@1.8.0': {}
- "@noble/hashes@2.0.1": {}
+ '@noble/hashes@2.0.1': {}
- "@noble/hashes@2.2.0": {}
+ '@noble/hashes@2.2.0': {}
- "@nodelib/fs.scandir@2.1.5":
+ '@nodelib/fs.scandir@2.1.5':
dependencies:
- "@nodelib/fs.stat": 2.0.5
+ '@nodelib/fs.stat': 2.0.5
run-parallel: 1.2.0
- "@nodelib/fs.stat@2.0.5": {}
+ '@nodelib/fs.stat@2.0.5': {}
- "@nodelib/fs.walk@1.2.8":
+ '@nodelib/fs.walk@1.2.8':
dependencies:
- "@nodelib/fs.scandir": 2.1.5
+ '@nodelib/fs.scandir': 2.1.5
fastq: 1.20.1
- "@oclif/core@2.16.0(@types/node@22.19.19)(typescript@5.8.3)":
+ '@oclif/core@2.16.0(@types/node@22.19.19)(typescript@5.8.3)':
dependencies:
- "@types/cli-progress": 3.11.6
+ '@types/cli-progress': 3.11.6
ansi-escapes: 4.3.2
ansi-styles: 4.3.0
cardinal: 2.1.1
@@ -14277,12 +7639,12 @@ snapshots:
wordwrap: 1.0.0
wrap-ansi: 7.0.0
transitivePeerDependencies:
- - "@swc/core"
- - "@swc/wasm"
- - "@types/node"
+ - '@swc/core'
+ - '@swc/wasm'
+ - '@types/node'
- typescript
- "@oclif/core@4.11.4":
+ '@oclif/core@4.11.4':
dependencies:
ansi-escapes: 4.3.2
ansis: 3.17.0
@@ -14303,428 +7665,397 @@ snapshots:
wordwrap: 1.0.0
wrap-ansi: 7.0.0
- "@oclif/plugin-autocomplete@3.2.50":
+ '@oclif/plugin-autocomplete@3.2.50':
dependencies:
- "@oclif/core": 4.11.4
+ '@oclif/core': 4.11.4
ansis: 3.17.0
debug: 4.4.3(supports-color@8.1.1)
ejs: 3.1.10
transitivePeerDependencies:
- supports-color
- "@openclaw/fs-safe@0.3.0":
- optionalDependencies:
- jszip: 3.10.1
- tar: 7.5.13
-
- "@openclaw/proxyline@0.3.3(undici@8.3.0)":
- dependencies:
- undici: 8.3.0
-
- "@oxfmt/binding-android-arm-eabi@0.44.0":
+ '@oxfmt/binding-android-arm-eabi@0.44.0':
optional: true
- "@oxfmt/binding-android-arm64@0.44.0":
+ '@oxfmt/binding-android-arm64@0.44.0':
optional: true
- "@oxfmt/binding-darwin-arm64@0.44.0":
+ '@oxfmt/binding-darwin-arm64@0.44.0':
optional: true
- "@oxfmt/binding-darwin-x64@0.44.0":
+ '@oxfmt/binding-darwin-x64@0.44.0':
optional: true
- "@oxfmt/binding-freebsd-x64@0.44.0":
+ '@oxfmt/binding-freebsd-x64@0.44.0':
optional: true
- "@oxfmt/binding-linux-arm-gnueabihf@0.44.0":
+ '@oxfmt/binding-linux-arm-gnueabihf@0.44.0':
optional: true
- "@oxfmt/binding-linux-arm-musleabihf@0.44.0":
+ '@oxfmt/binding-linux-arm-musleabihf@0.44.0':
optional: true
- "@oxfmt/binding-linux-arm64-gnu@0.44.0":
+ '@oxfmt/binding-linux-arm64-gnu@0.44.0':
optional: true
- "@oxfmt/binding-linux-arm64-musl@0.44.0":
+ '@oxfmt/binding-linux-arm64-musl@0.44.0':
optional: true
- "@oxfmt/binding-linux-ppc64-gnu@0.44.0":
+ '@oxfmt/binding-linux-ppc64-gnu@0.44.0':
optional: true
- "@oxfmt/binding-linux-riscv64-gnu@0.44.0":
+ '@oxfmt/binding-linux-riscv64-gnu@0.44.0':
optional: true
- "@oxfmt/binding-linux-riscv64-musl@0.44.0":
+ '@oxfmt/binding-linux-riscv64-musl@0.44.0':
optional: true
- "@oxfmt/binding-linux-s390x-gnu@0.44.0":
+ '@oxfmt/binding-linux-s390x-gnu@0.44.0':
optional: true
- "@oxfmt/binding-linux-x64-gnu@0.44.0":
+ '@oxfmt/binding-linux-x64-gnu@0.44.0':
optional: true
- "@oxfmt/binding-linux-x64-musl@0.44.0":
+ '@oxfmt/binding-linux-x64-musl@0.44.0':
optional: true
- "@oxfmt/binding-openharmony-arm64@0.44.0":
+ '@oxfmt/binding-openharmony-arm64@0.44.0':
optional: true
- "@oxfmt/binding-win32-arm64-msvc@0.44.0":
+ '@oxfmt/binding-win32-arm64-msvc@0.44.0':
optional: true
- "@oxfmt/binding-win32-ia32-msvc@0.44.0":
+ '@oxfmt/binding-win32-ia32-msvc@0.44.0':
optional: true
- "@oxfmt/binding-win32-x64-msvc@0.44.0":
+ '@oxfmt/binding-win32-x64-msvc@0.44.0':
optional: true
- "@oxlint/binding-android-arm-eabi@1.67.0":
+ '@oxlint/binding-android-arm-eabi@1.67.0':
optional: true
- "@oxlint/binding-android-arm64@1.67.0":
+ '@oxlint/binding-android-arm64@1.67.0':
optional: true
- "@oxlint/binding-darwin-arm64@1.67.0":
+ '@oxlint/binding-darwin-arm64@1.67.0':
optional: true
- "@oxlint/binding-darwin-x64@1.67.0":
+ '@oxlint/binding-darwin-x64@1.67.0':
optional: true
- "@oxlint/binding-freebsd-x64@1.67.0":
+ '@oxlint/binding-freebsd-x64@1.67.0':
optional: true
- "@oxlint/binding-linux-arm-gnueabihf@1.67.0":
+ '@oxlint/binding-linux-arm-gnueabihf@1.67.0':
optional: true
- "@oxlint/binding-linux-arm-musleabihf@1.67.0":
+ '@oxlint/binding-linux-arm-musleabihf@1.67.0':
optional: true
- "@oxlint/binding-linux-arm64-gnu@1.67.0":
+ '@oxlint/binding-linux-arm64-gnu@1.67.0':
optional: true
- "@oxlint/binding-linux-arm64-musl@1.67.0":
+ '@oxlint/binding-linux-arm64-musl@1.67.0':
optional: true
- "@oxlint/binding-linux-ppc64-gnu@1.67.0":
+ '@oxlint/binding-linux-ppc64-gnu@1.67.0':
optional: true
- "@oxlint/binding-linux-riscv64-gnu@1.67.0":
+ '@oxlint/binding-linux-riscv64-gnu@1.67.0':
optional: true
- "@oxlint/binding-linux-riscv64-musl@1.67.0":
+ '@oxlint/binding-linux-riscv64-musl@1.67.0':
optional: true
- "@oxlint/binding-linux-s390x-gnu@1.67.0":
+ '@oxlint/binding-linux-s390x-gnu@1.67.0':
optional: true
- "@oxlint/binding-linux-x64-gnu@1.67.0":
+ '@oxlint/binding-linux-x64-gnu@1.67.0':
optional: true
- "@oxlint/binding-linux-x64-musl@1.67.0":
+ '@oxlint/binding-linux-x64-musl@1.67.0':
optional: true
- "@oxlint/binding-openharmony-arm64@1.67.0":
+ '@oxlint/binding-openharmony-arm64@1.67.0':
optional: true
- "@oxlint/binding-win32-arm64-msvc@1.67.0":
+ '@oxlint/binding-win32-arm64-msvc@1.67.0':
optional: true
- "@oxlint/binding-win32-ia32-msvc@1.67.0":
+ '@oxlint/binding-win32-ia32-msvc@1.67.0':
optional: true
- "@oxlint/binding-win32-x64-msvc@1.67.0":
+ '@oxlint/binding-win32-x64-msvc@1.67.0':
optional: true
- "@pkgjs/parseargs@0.11.0":
+ '@pkgjs/parseargs@0.11.0':
optional: true
- "@protobufjs/aspromise@1.1.2": {}
-
- "@protobufjs/base64@1.1.2": {}
-
- "@protobufjs/codegen@2.0.5": {}
-
- "@protobufjs/eventemitter@1.1.1": {}
-
- "@protobufjs/fetch@1.1.1":
- dependencies:
- "@protobufjs/aspromise": 1.1.2
-
- "@protobufjs/float@1.0.2": {}
-
- "@protobufjs/inquire@1.1.2": {}
-
- "@protobufjs/path@1.1.2": {}
+ '@radix-ui/primitive@1.1.3': {}
- "@protobufjs/pool@1.1.0": {}
-
- "@protobufjs/utf8@1.1.1": {}
-
- "@radix-ui/primitive@1.1.3": {}
-
- "@radix-ui/react-collection@1.1.7(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ '@radix-ui/react-collection@1.1.7(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.3(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-slot": 1.2.3(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.17)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.17)(react@19.1.0)":
+ '@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.17)(react@19.1.0)':
dependencies:
react: 19.1.0
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@radix-ui/react-context@1.1.2(@types/react@19.1.17)(react@19.1.0)":
+ '@radix-ui/react-context@1.1.2(@types/react@19.1.17)(react@19.1.0)':
dependencies:
react: 19.1.0
optionalDependencies:
- "@types/react": 19.1.17
-
- "@radix-ui/react-dialog@1.1.15(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
- dependencies:
- "@radix-ui/primitive": 1.1.3
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-dismissable-layer": 1.1.11(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-focus-guards": 1.1.3(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-focus-scope": 1.1.7(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-id": 1.1.1(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-portal": 1.1.9(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-presence": 1.1.5(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.3(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-slot": 1.2.3(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.1.17)(react@19.1.0)
+ '@types/react': 19.1.17
+
+ '@radix-ui/react-dialog@1.1.15(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-portal': 1.1.9(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.5(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.17)(react@19.1.0)
aria-hidden: 1.2.6
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
react-remove-scroll: 2.7.2(@types/react@19.1.17)(react@19.1.0)
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@radix-ui/react-direction@1.1.1(@types/react@19.1.17)(react@19.1.0)":
+ '@radix-ui/react-direction@1.1.1(@types/react@19.1.17)(react@19.1.0)':
dependencies:
react: 19.1.0
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@radix-ui/react-dismissable-layer@1.1.11(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ '@radix-ui/react-dismissable-layer@1.1.11(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- "@radix-ui/primitive": 1.1.3
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.3(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-use-escape-keydown": 1.1.1(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.17)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@radix-ui/react-focus-guards@1.1.3(@types/react@19.1.17)(react@19.1.0)":
+ '@radix-ui/react-focus-guards@1.1.3(@types/react@19.1.17)(react@19.1.0)':
dependencies:
react: 19.1.0
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@radix-ui/react-focus-scope@1.1.7(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ '@radix-ui/react-focus-scope@1.1.7(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.3(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.17)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@radix-ui/react-id@1.1.1(@types/react@19.1.17)(react@19.1.0)":
+ '@radix-ui/react-id@1.1.1(@types/react@19.1.17)(react@19.1.0)':
dependencies:
- "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0)
react: 19.1.0
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@radix-ui/react-portal@1.1.9(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ '@radix-ui/react-portal@1.1.9(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- "@radix-ui/react-primitive": 2.1.3(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@radix-ui/react-presence@1.1.5(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ '@radix-ui/react-presence@1.1.5(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@radix-ui/react-primitive@2.1.3(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ '@radix-ui/react-primitive@2.1.3(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- "@radix-ui/react-slot": 1.2.3(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.17)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- "@types/react": 19.1.17
-
- "@radix-ui/react-roving-focus@1.1.11(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
- dependencies:
- "@radix-ui/primitive": 1.1.3
- "@radix-ui/react-collection": 1.1.7(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-direction": 1.1.1(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-id": 1.1.1(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.3(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.1.17)(react@19.1.0)
+ '@types/react': 19.1.17
+
+ '@radix-ui/react-roving-focus@1.1.11(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.17)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@radix-ui/react-slot@1.2.0(@types/react@19.1.17)(react@19.1.0)":
+ '@radix-ui/react-slot@1.2.0(@types/react@19.1.17)(react@19.1.0)':
dependencies:
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
react: 19.1.0
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@radix-ui/react-slot@1.2.3(@types/react@19.1.17)(react@19.1.0)":
+ '@radix-ui/react-slot@1.2.3(@types/react@19.1.17)(react@19.1.0)':
dependencies:
- "@radix-ui/react-compose-refs": 1.1.2(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
react: 19.1.0
optionalDependencies:
- "@types/react": 19.1.17
-
- "@radix-ui/react-tabs@1.1.13(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
- dependencies:
- "@radix-ui/primitive": 1.1.3
- "@radix-ui/react-context": 1.1.2(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-direction": 1.1.1(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-id": 1.1.1(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-presence": 1.1.5(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-primitive": 2.1.3(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-roving-focus": 1.1.11(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@radix-ui/react-use-controllable-state": 1.2.2(@types/react@19.1.17)(react@19.1.0)
+ '@types/react': 19.1.17
+
+ '@radix-ui/react-tabs@1.1.13(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.5(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.17)(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.17)(react@19.1.0)":
+ '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.17)(react@19.1.0)':
dependencies:
react: 19.1.0
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.1.17)(react@19.1.0)":
+ '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.1.17)(react@19.1.0)':
dependencies:
- "@radix-ui/react-use-effect-event": 0.0.2(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0)
react: 19.1.0
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@radix-ui/react-use-effect-event@0.0.2(@types/react@19.1.17)(react@19.1.0)":
+ '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.1.17)(react@19.1.0)':
dependencies:
- "@radix-ui/react-use-layout-effect": 1.1.1(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0)
react: 19.1.0
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.17)(react@19.1.0)":
+ '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.17)(react@19.1.0)':
dependencies:
- "@radix-ui/react-use-callback-ref": 1.1.1(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.17)(react@19.1.0)
react: 19.1.0
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.17)(react@19.1.0)":
+ '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.17)(react@19.1.0)':
dependencies:
react: 19.1.0
optionalDependencies:
- "@types/react": 19.1.17
-
- "@react-native/assets-registry@0.81.5": {}
-
- "@react-native/babel-plugin-codegen@0.81.5(@babel/core@7.29.7)":
- dependencies:
- "@babel/traverse": 7.29.7
- "@react-native/codegen": 0.81.5(@babel/core@7.29.7)
- transitivePeerDependencies:
- - "@babel/core"
- - supports-color
-
- "@react-native/babel-preset@0.81.5(@babel/core@7.29.7)":
- dependencies:
- "@babel/core": 7.29.7
- "@babel/plugin-proposal-export-default-from": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.29.7)
- "@babel/plugin-syntax-export-default-from": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.29.7)
- "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.29.7)
- "@babel/plugin-transform-arrow-functions": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-async-generator-functions": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-async-to-generator": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-block-scoping": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-class-properties": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-classes": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-computed-properties": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-destructuring": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-flow-strip-types": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-for-of": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-function-name": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-literals": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-logical-assignment-operators": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-modules-commonjs": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-named-capturing-groups-regex": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-nullish-coalescing-operator": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-numeric-separator": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-object-rest-spread": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-optional-catch-binding": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-optional-chaining": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-parameters": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-private-methods": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-private-property-in-object": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-react-display-name": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-react-jsx": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-react-jsx-self": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-react-jsx-source": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-regenerator": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-runtime": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-shorthand-properties": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-spread": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-sticky-regex": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-typescript": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-unicode-regex": 7.29.7(@babel/core@7.29.7)
- "@babel/template": 7.29.7
- "@react-native/babel-plugin-codegen": 0.81.5(@babel/core@7.29.7)
+ '@types/react': 19.1.17
+
+ '@react-native/assets-registry@0.81.5': {}
+
+ '@react-native/babel-plugin-codegen@0.81.5(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/traverse': 7.29.7
+ '@react-native/codegen': 0.81.5(@babel/core@7.29.7)
+ transitivePeerDependencies:
+ - '@babel/core'
+ - supports-color
+
+ '@react-native/babel-preset@0.81.5(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/plugin-proposal-export-default-from': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.29.7)
+ '@babel/plugin-syntax-export-default-from': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.29.7)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.7)
+ '@babel/plugin-transform-arrow-functions': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-async-generator-functions': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-async-to-generator': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-block-scoping': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-class-properties': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-classes': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-computed-properties': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-destructuring': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-flow-strip-types': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-for-of': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-function-name': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-literals': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-logical-assignment-operators': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-modules-commonjs': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-numeric-separator': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-object-rest-spread': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-optional-catch-binding': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-optional-chaining': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-parameters': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-private-methods': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-private-property-in-object': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-react-display-name': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-react-jsx': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-react-jsx-self': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-react-jsx-source': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-regenerator': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-runtime': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-shorthand-properties': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-spread': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-sticky-regex': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-unicode-regex': 7.29.7(@babel/core@7.29.7)
+ '@babel/template': 7.29.7
+ '@react-native/babel-plugin-codegen': 0.81.5(@babel/core@7.29.7)
babel-plugin-syntax-hermes-parser: 0.29.1
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.29.7)
react-refresh: 0.14.2
transitivePeerDependencies:
- supports-color
- "@react-native/codegen@0.81.5(@babel/core@7.29.7)":
+ '@react-native/codegen@0.81.5(@babel/core@7.29.7)':
dependencies:
- "@babel/core": 7.29.7
- "@babel/parser": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/parser': 7.29.7
glob: 7.2.3
hermes-parser: 0.29.1
invariant: 2.2.4
nullthrows: 1.1.1
yargs: 17.7.2
- "@react-native/community-cli-plugin@0.81.5":
+ '@react-native/community-cli-plugin@0.81.5':
dependencies:
- "@react-native/dev-middleware": 0.81.5
+ '@react-native/dev-middleware': 0.81.5
debug: 4.4.3(supports-color@8.1.1)
invariant: 2.2.4
metro: 0.83.7
@@ -14736,12 +8067,12 @@ snapshots:
- supports-color
- utf-8-validate
- "@react-native/debugger-frontend@0.81.5": {}
+ '@react-native/debugger-frontend@0.81.5': {}
- "@react-native/dev-middleware@0.81.5":
+ '@react-native/dev-middleware@0.81.5':
dependencies:
- "@isaacs/ttlcache": 1.4.1
- "@react-native/debugger-frontend": 0.81.5
+ '@isaacs/ttlcache': 1.4.1
+ '@react-native/debugger-frontend': 0.81.5
chrome-launcher: 0.15.2
chromium-edge-launcher: 0.2.0
connect: 3.7.0
@@ -14756,27 +8087,27 @@ snapshots:
- supports-color
- utf-8-validate
- "@react-native/gradle-plugin@0.81.5": {}
+ '@react-native/gradle-plugin@0.81.5': {}
- "@react-native/js-polyfills@0.81.5": {}
+ '@react-native/js-polyfills@0.81.5': {}
- "@react-native/normalize-colors@0.76.2": {}
+ '@react-native/normalize-colors@0.76.2': {}
- "@react-native/normalize-colors@0.81.5": {}
+ '@react-native/normalize-colors@0.81.5': {}
- "@react-native/virtualized-lists@0.81.5(@types/react@19.1.17)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)":
+ '@react-native/virtualized-lists@0.81.5(@types/react@19.1.17)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
react: 19.1.0
react-native: 0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
- "@react-navigation/bottom-tabs@7.16.2(@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)":
+ '@react-navigation/bottom-tabs@7.16.2(@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
dependencies:
- "@react-navigation/elements": 2.9.19(@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
- "@react-navigation/native": 7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@react-navigation/elements': 2.9.19(@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@react-navigation/native': 7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
color: 4.2.3
react: 19.1.0
react-native: 0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)
@@ -14784,11 +8115,11 @@ snapshots:
react-native-screens: 4.16.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
sf-symbols-typescript: 2.2.0
transitivePeerDependencies:
- - "@react-native-masked-view/masked-view"
+ - '@react-native-masked-view/masked-view'
- "@react-navigation/core@7.17.5(react@19.1.0)":
+ '@react-navigation/core@7.17.5(react@19.1.0)':
dependencies:
- "@react-navigation/routers": 7.5.5
+ '@react-navigation/routers': 7.5.5
escape-string-regexp: 4.0.0
fast-deep-equal: 3.1.3
nanoid: 3.3.12
@@ -14798,9 +8129,9 @@ snapshots:
use-latest-callback: 0.2.6(react@19.1.0)
use-sync-external-store: 1.6.0(react@19.1.0)
- "@react-navigation/elements@2.9.19(@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)":
+ '@react-navigation/elements@2.9.19(@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
dependencies:
- "@react-navigation/native": 7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@react-navigation/native': 7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
color: 4.2.3
react: 19.1.0
react-native: 0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)
@@ -14808,10 +8139,10 @@ snapshots:
use-latest-callback: 0.2.6(react@19.1.0)
use-sync-external-store: 1.6.0(react@19.1.0)
- "@react-navigation/native-stack@7.16.0(@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)":
+ '@react-navigation/native-stack@7.16.0(@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
dependencies:
- "@react-navigation/elements": 2.9.19(@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
- "@react-navigation/native": 7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@react-navigation/elements': 2.9.19(@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@react-navigation/native': 7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
color: 4.2.3
react: 19.1.0
react-native: 0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)
@@ -14820,11 +8151,11 @@ snapshots:
sf-symbols-typescript: 2.2.0
warn-once: 0.1.1
transitivePeerDependencies:
- - "@react-native-masked-view/masked-view"
+ - '@react-native-masked-view/masked-view'
- "@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)":
+ '@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
dependencies:
- "@react-navigation/core": 7.17.5(react@19.1.0)
+ '@react-navigation/core': 7.17.5(react@19.1.0)
escape-string-regexp: 4.0.0
fast-deep-equal: 3.1.3
nanoid: 3.3.12
@@ -14832,199 +8163,94 @@ snapshots:
react-native: 0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)
use-latest-callback: 0.2.6(react@19.1.0)
- "@react-navigation/routers@7.5.5":
+ '@react-navigation/routers@7.5.5':
dependencies:
nanoid: 3.3.12
- "@roamhq/wrtc-darwin-arm64@0.10.0":
- optional: true
-
- "@roamhq/wrtc-darwin-x64@0.10.0":
- optional: true
-
- "@roamhq/wrtc-linux-arm64@0.10.0":
- optional: true
-
- "@roamhq/wrtc-linux-x64@0.10.0":
- optional: true
-
- "@roamhq/wrtc-win32-x64@0.10.0":
- optional: true
-
- "@roamhq/wrtc@0.10.0":
- optionalDependencies:
- "@roamhq/wrtc-darwin-arm64": 0.10.0
- "@roamhq/wrtc-darwin-x64": 0.10.0
- "@roamhq/wrtc-linux-arm64": 0.10.0
- "@roamhq/wrtc-linux-x64": 0.10.0
- "@roamhq/wrtc-win32-x64": 0.10.0
- domexception: 4.0.0
-
- "@rollup/rollup-android-arm-eabi@4.61.1":
- optional: true
-
- "@rollup/rollup-android-arm64@4.61.1":
- optional: true
-
- "@rollup/rollup-darwin-arm64@4.61.1":
- optional: true
-
- "@rollup/rollup-darwin-x64@4.61.1":
- optional: true
-
- "@rollup/rollup-freebsd-arm64@4.61.1":
- optional: true
-
- "@rollup/rollup-freebsd-x64@4.61.1":
- optional: true
-
- "@rollup/rollup-linux-arm-gnueabihf@4.61.1":
- optional: true
-
- "@rollup/rollup-linux-arm-musleabihf@4.61.1":
- optional: true
-
- "@rollup/rollup-linux-arm64-gnu@4.61.1":
- optional: true
-
- "@rollup/rollup-linux-arm64-musl@4.61.1":
- optional: true
-
- "@rollup/rollup-linux-loong64-gnu@4.61.1":
- optional: true
-
- "@rollup/rollup-linux-loong64-musl@4.61.1":
- optional: true
-
- "@rollup/rollup-linux-ppc64-gnu@4.61.1":
- optional: true
-
- "@rollup/rollup-linux-ppc64-musl@4.61.1":
- optional: true
-
- "@rollup/rollup-linux-riscv64-gnu@4.61.1":
- optional: true
-
- "@rollup/rollup-linux-riscv64-musl@4.61.1":
- optional: true
-
- "@rollup/rollup-linux-s390x-gnu@4.61.1":
- optional: true
-
- "@rollup/rollup-linux-x64-gnu@4.61.1":
- optional: true
-
- "@rollup/rollup-linux-x64-musl@4.61.1":
- optional: true
-
- "@rollup/rollup-openbsd-x64@4.61.1":
- optional: true
-
- "@rollup/rollup-openharmony-arm64@4.61.1":
- optional: true
-
- "@rollup/rollup-win32-arm64-msvc@4.61.1":
- optional: true
-
- "@rollup/rollup-win32-ia32-msvc@4.61.1":
- optional: true
-
- "@rollup/rollup-win32-x64-gnu@4.61.1":
- optional: true
-
- "@rollup/rollup-win32-x64-msvc@4.61.1":
- optional: true
-
- "@scure/base@1.2.6": {}
+ '@scure/base@1.2.6': {}
- "@scure/base@2.0.0": {}
+ '@scure/base@2.0.0': {}
- "@scure/base@2.2.0": {}
+ '@scure/base@2.2.0': {}
- "@scure/bip39@1.6.0":
+ '@scure/bip39@1.6.0':
dependencies:
- "@noble/hashes": 1.8.0
- "@scure/base": 1.2.6
+ '@noble/hashes': 1.8.0
+ '@scure/base': 1.2.6
- "@scure/bip39@2.2.0":
+ '@scure/bip39@2.2.0':
dependencies:
- "@noble/hashes": 2.2.0
- "@scure/base": 2.2.0
+ '@noble/hashes': 2.2.0
+ '@scure/base': 2.2.0
- "@segment/ajv-human-errors@2.16.0(ajv@8.20.0)":
+ '@segment/ajv-human-errors@2.16.0(ajv@8.20.0)':
dependencies:
ajv: 8.20.0
- "@segment/loosely-validate-event@2.0.0":
+ '@segment/loosely-validate-event@2.0.0':
dependencies:
component-type: 1.2.2
join-component: 1.1.0
- "@sentry-internal/tracing@7.77.0":
+ '@sentry-internal/tracing@7.77.0':
dependencies:
- "@sentry/core": 7.77.0
- "@sentry/types": 7.77.0
- "@sentry/utils": 7.77.0
+ '@sentry/core': 7.77.0
+ '@sentry/types': 7.77.0
+ '@sentry/utils': 7.77.0
- "@sentry/core@7.77.0":
+ '@sentry/core@7.77.0':
dependencies:
- "@sentry/types": 7.77.0
- "@sentry/utils": 7.77.0
+ '@sentry/types': 7.77.0
+ '@sentry/utils': 7.77.0
- "@sentry/node@7.77.0":
+ '@sentry/node@7.77.0':
dependencies:
- "@sentry-internal/tracing": 7.77.0
- "@sentry/core": 7.77.0
- "@sentry/types": 7.77.0
- "@sentry/utils": 7.77.0
+ '@sentry-internal/tracing': 7.77.0
+ '@sentry/core': 7.77.0
+ '@sentry/types': 7.77.0
+ '@sentry/utils': 7.77.0
https-proxy-agent: 5.0.1
transitivePeerDependencies:
- supports-color
- "@sentry/types@7.77.0": {}
+ '@sentry/types@7.77.0': {}
- "@sentry/utils@7.77.0":
+ '@sentry/utils@7.77.0':
dependencies:
- "@sentry/types": 7.77.0
+ '@sentry/types': 7.77.0
- "@sideway/address@4.1.5":
+ '@sideway/address@4.1.5':
dependencies:
- "@hapi/hoek": 9.3.0
+ '@hapi/hoek': 9.3.0
- "@sideway/formula@3.0.1": {}
+ '@sideway/formula@3.0.1': {}
- "@sideway/pinpoint@2.0.0": {}
+ '@sideway/pinpoint@2.0.0': {}
- "@silvia-odwyer/photon-node@0.3.4": {}
+ '@sinclair/typebox@0.27.10': {}
- "@sinclair/typebox@0.27.10": {}
+ '@sinclair/typebox@0.34.49': {}
- "@sinclair/typebox@0.32.35": {}
-
- "@sinclair/typebox@0.34.49": {}
-
- "@sinonjs/commons@3.0.1":
+ '@sinonjs/commons@3.0.1':
dependencies:
type-detect: 4.0.8
- "@sinonjs/fake-timers@10.3.0":
+ '@sinonjs/fake-timers@10.3.0':
dependencies:
- "@sinonjs/commons": 3.0.1
+ '@sinonjs/commons': 3.0.1
- "@socket.io/component-emitter@3.1.2": {}
+ '@socket.io/component-emitter@3.1.2': {}
- "@stablelib/base64@1.0.1": {}
-
- "@tanstack/react-store@0.9.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)":
+ '@tanstack/react-store@0.9.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- "@tanstack/store": 0.9.3
+ '@tanstack/store': 0.9.3
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
use-sync-external-store: 1.6.0(react@19.1.0)
- "@tanstack/store@0.9.3": {}
+ '@tanstack/store@0.9.3': {}
- "@testing-library/jest-native@5.4.3(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0)":
+ '@testing-library/jest-native@5.4.3(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
chalk: 4.1.2
jest-diff: 29.7.0
@@ -15035,7 +8261,7 @@ snapshots:
react-test-renderer: 19.1.0(react@19.1.0)
redent: 3.0.0
- "@testing-library/react-native@13.3.3(jest@29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3)))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0)":
+ '@testing-library/react-native@13.3.3(jest@29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3)))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
jest-matcher-utils: 30.4.1
picocolors: 1.1.1
@@ -15047,189 +8273,125 @@ snapshots:
optionalDependencies:
jest: 29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3))
- "@tokenizer/inflate@0.4.1":
- dependencies:
- debug: 4.4.3(supports-color@8.1.1)
- token-types: 6.1.2
- transitivePeerDependencies:
- - supports-color
-
- "@tokenizer/token@0.3.0": {}
+ '@tootallnate/once@2.0.1': {}
- "@tootallnate/once@2.0.1": {}
+ '@tsconfig/node10@1.0.12': {}
- "@tsconfig/node10@1.0.12": {}
+ '@tsconfig/node12@1.0.11': {}
- "@tsconfig/node12@1.0.11": {}
+ '@tsconfig/node14@1.0.3': {}
- "@tsconfig/node14@1.0.3": {}
+ '@tsconfig/node16@1.0.4': {}
- "@tsconfig/node16@1.0.4": {}
-
- "@types/babel__core@7.20.5":
+ '@types/babel__core@7.20.5':
dependencies:
- "@babel/parser": 7.29.7
- "@babel/types": 7.29.7
- "@types/babel__generator": 7.27.0
- "@types/babel__template": 7.4.4
- "@types/babel__traverse": 7.28.0
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
+ '@types/babel__generator': 7.27.0
+ '@types/babel__template': 7.4.4
+ '@types/babel__traverse': 7.28.0
- "@types/babel__generator@7.27.0":
+ '@types/babel__generator@7.27.0':
dependencies:
- "@babel/types": 7.29.7
+ '@babel/types': 7.29.7
- "@types/babel__template@7.4.4":
+ '@types/babel__template@7.4.4':
dependencies:
- "@babel/parser": 7.29.7
- "@babel/types": 7.29.7
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
- "@types/babel__traverse@7.28.0":
+ '@types/babel__traverse@7.28.0':
dependencies:
- "@babel/types": 7.29.7
-
- "@types/base16@1.0.5": {}
+ '@babel/types': 7.29.7
- "@types/bunyan@1.8.11":
- dependencies:
- "@types/node": 22.19.19
+ '@types/base16@1.0.5': {}
- "@types/chai@5.2.3":
+ '@types/bunyan@1.8.11':
dependencies:
- "@types/deep-eql": 4.0.2
- assertion-error: 2.0.1
+ '@types/node': 22.19.19
- "@types/cli-progress@3.11.6":
+ '@types/cli-progress@3.11.6':
dependencies:
- "@types/node": 22.19.19
-
- "@types/deep-eql@4.0.2": {}
+ '@types/node': 22.19.19
- "@types/estree@1.0.9": {}
-
- "@types/graceful-fs@4.1.9":
+ '@types/graceful-fs@4.1.9':
dependencies:
- "@types/node": 22.19.19
+ '@types/node': 22.19.19
- "@types/hammerjs@2.0.46": {}
+ '@types/hammerjs@2.0.46': {}
- "@types/istanbul-lib-coverage@2.0.6": {}
+ '@types/istanbul-lib-coverage@2.0.6': {}
- "@types/istanbul-lib-report@3.0.3":
+ '@types/istanbul-lib-report@3.0.3':
dependencies:
- "@types/istanbul-lib-coverage": 2.0.6
+ '@types/istanbul-lib-coverage': 2.0.6
- "@types/istanbul-reports@3.0.4":
+ '@types/istanbul-reports@3.0.4':
dependencies:
- "@types/istanbul-lib-report": 3.0.3
+ '@types/istanbul-lib-report': 3.0.3
- "@types/jest@30.0.0":
+ '@types/jest@30.0.0':
dependencies:
expect: 30.4.1
pretty-format: 30.4.1
- "@types/jsdom@20.0.1":
+ '@types/jsdom@20.0.1':
dependencies:
- "@types/node": 22.19.19
- "@types/tough-cookie": 4.0.5
+ '@types/node': 22.19.19
+ '@types/tough-cookie': 4.0.5
parse5: 7.3.0
- "@types/lodash@4.17.24": {}
+ '@types/lodash@4.17.24': {}
- "@types/node@22.19.19":
+ '@types/node@22.19.19':
dependencies:
undici-types: 6.21.0
- "@types/qrcode-terminal@0.12.2": {}
-
- "@types/react@19.1.17":
+ '@types/react@19.1.17':
dependencies:
csstype: 3.2.3
- "@types/retry@0.12.0": {}
+ '@types/stack-utils@2.0.3': {}
- "@types/stack-utils@2.0.3": {}
+ '@types/tough-cookie@4.0.5': {}
- "@types/tough-cookie@4.0.5": {}
+ '@types/yargs-parser@21.0.3': {}
- "@types/yargs-parser@21.0.3": {}
-
- "@types/yargs@17.0.35":
+ '@types/yargs@17.0.35':
dependencies:
- "@types/yargs-parser": 21.0.3
+ '@types/yargs-parser': 21.0.3
- "@ungap/structured-clone@1.3.1": {}
+ '@ungap/structured-clone@1.3.1': {}
- "@urql/core@4.0.11(graphql@16.8.1)":
+ '@urql/core@4.0.11(graphql@16.8.1)':
dependencies:
- "@0no-co/graphql.web": 1.2.0(graphql@16.8.1)
+ '@0no-co/graphql.web': 1.2.0(graphql@16.8.1)
wonka: 6.3.6
transitivePeerDependencies:
- graphql
- "@urql/core@5.2.0(graphql@16.8.1)":
+ '@urql/core@5.2.0(graphql@16.8.1)':
dependencies:
- "@0no-co/graphql.web": 1.2.0(graphql@16.8.1)
+ '@0no-co/graphql.web': 1.2.0(graphql@16.8.1)
wonka: 6.3.6
transitivePeerDependencies:
- graphql
- "@urql/exchange-retry@1.2.0(graphql@16.8.1)":
+ '@urql/exchange-retry@1.2.0(graphql@16.8.1)':
dependencies:
- "@urql/core": 5.2.0(graphql@16.8.1)
+ '@urql/core': 5.2.0(graphql@16.8.1)
wonka: 6.3.6
transitivePeerDependencies:
- graphql
- "@urql/exchange-retry@1.3.2(@urql/core@5.2.0(graphql@16.8.1))":
+ '@urql/exchange-retry@1.3.2(@urql/core@5.2.0(graphql@16.8.1))':
dependencies:
- "@urql/core": 5.2.0(graphql@16.8.1)
+ '@urql/core': 5.2.0(graphql@16.8.1)
wonka: 6.3.6
- "@vitest/expect@3.2.6":
- dependencies:
- "@types/chai": 5.2.3
- "@vitest/spy": 3.2.6
- "@vitest/utils": 3.2.6
- chai: 5.3.3
- tinyrainbow: 2.0.0
-
- "@vitest/mocker@3.2.6(vite@7.3.5(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.30.1)(terser@5.48.0)(yaml@2.9.0))":
- dependencies:
- "@vitest/spy": 3.2.6
- estree-walker: 3.0.3
- magic-string: 0.30.21
- optionalDependencies:
- vite: 7.3.5(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.30.1)(terser@5.48.0)(yaml@2.9.0)
-
- "@vitest/pretty-format@3.2.6":
- dependencies:
- tinyrainbow: 2.0.0
-
- "@vitest/runner@3.2.6":
- dependencies:
- "@vitest/utils": 3.2.6
- pathe: 2.0.3
- strip-literal: 3.1.0
-
- "@vitest/snapshot@3.2.6":
- dependencies:
- "@vitest/pretty-format": 3.2.6
- magic-string: 0.30.21
- pathe: 2.0.3
-
- "@vitest/spy@3.2.6":
- dependencies:
- tinyspy: 4.0.4
-
- "@vitest/utils@3.2.6":
- dependencies:
- "@vitest/pretty-format": 3.2.6
- loupe: 3.2.1
- tinyrainbow: 2.0.0
-
- "@xmldom/xmldom@0.9.10": {}
+ '@xmldom/xmldom@0.8.13': {}
- "@yarnpkg/lockfile@1.1.0": {}
+ '@yarnpkg/lockfile@1.1.0': {}
abab@2.0.6: {}
@@ -15273,10 +8435,6 @@ snapshots:
optionalDependencies:
ajv: 8.20.0
- ajv-formats@3.0.1(ajv@8.20.0):
- optionalDependencies:
- ajv: 8.20.0
-
ajv@8.20.0:
dependencies:
fast-deep-equal: 3.1.3
@@ -15354,19 +8512,10 @@ snapshots:
asap@2.0.6: {}
- asn1.js@5.4.1:
- dependencies:
- bn.js: 4.12.3
- inherits: 2.0.4
- minimalistic-assert: 1.0.1
- safer-buffer: 2.1.2
-
asn1@0.2.6:
dependencies:
safer-buffer: 2.1.2
- assertion-error@2.0.1: {}
-
astral-regex@2.0.0: {}
async-limiter@1.0.1: {}
@@ -15385,9 +8534,9 @@ snapshots:
babel-jest@29.7.0(@babel/core@7.29.7):
dependencies:
- "@babel/core": 7.29.7
- "@jest/transform": 29.7.0
- "@types/babel__core": 7.20.5
+ '@babel/core': 7.29.7
+ '@jest/transform': 29.7.0
+ '@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
babel-preset-jest: 29.6.3(@babel/core@7.29.7)
chalk: 4.1.2
@@ -15398,9 +8547,9 @@ snapshots:
babel-plugin-istanbul@6.1.1:
dependencies:
- "@babel/helper-plugin-utils": 7.29.7
- "@istanbuljs/load-nyc-config": 1.1.0
- "@istanbuljs/schema": 0.1.6
+ '@babel/helper-plugin-utils': 7.29.7
+ '@istanbuljs/load-nyc-config': 1.1.0
+ '@istanbuljs/schema': 0.1.6
istanbul-lib-instrument: 5.2.1
test-exclude: 6.0.0
transitivePeerDependencies:
@@ -15408,38 +8557,38 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
- "@babel/template": 7.29.7
- "@babel/types": 7.29.7
- "@types/babel__core": 7.20.5
- "@types/babel__traverse": 7.28.0
+ '@babel/template': 7.29.7
+ '@babel/types': 7.29.7
+ '@types/babel__core': 7.20.5
+ '@types/babel__traverse': 7.28.0
babel-plugin-polyfill-corejs2@0.4.17(@babel/core@7.29.7):
dependencies:
- "@babel/compat-data": 7.29.7
- "@babel/core": 7.29.7
- "@babel/helper-define-polyfill-provider": 0.6.8(@babel/core@7.29.7)
+ '@babel/compat-data': 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.29.7):
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-define-polyfill-provider": 0.6.8(@babel/core@7.29.7)
+ '@babel/core': 7.29.7
+ '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.7)
core-js-compat: 3.49.0
transitivePeerDependencies:
- supports-color
babel-plugin-polyfill-regenerator@0.6.8(@babel/core@7.29.7):
dependencies:
- "@babel/core": 7.29.7
- "@babel/helper-define-polyfill-provider": 0.6.8(@babel/core@7.29.7)
+ '@babel/core': 7.29.7
+ '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.7)
transitivePeerDependencies:
- supports-color
babel-plugin-react-compiler@1.0.0:
dependencies:
- "@babel/types": 7.29.7
+ '@babel/types': 7.29.7
babel-plugin-react-native-web@0.21.2: {}
@@ -15449,47 +8598,47 @@ snapshots:
babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.29.7):
dependencies:
- "@babel/plugin-syntax-flow": 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-syntax-flow': 7.29.7(@babel/core@7.29.7)
transitivePeerDependencies:
- - "@babel/core"
+ - '@babel/core'
babel-preset-current-node-syntax@1.2.0(@babel/core@7.29.7):
dependencies:
- "@babel/core": 7.29.7
- "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.29.7)
- "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.29.7)
- "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.29.7)
- "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.29.7)
- "@babel/plugin-syntax-import-attributes": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.29.7)
- "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.29.7)
- "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.29.7)
- "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.29.7)
- "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.29.7)
- "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.29.7)
- "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.29.7)
- "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.29.7)
- "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.29.7)
- "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.29.7)
+ '@babel/core': 7.29.7
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.29.7)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.29.7)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.29.7)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.29.7)
+ '@babel/plugin-syntax-import-attributes': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.29.7)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.29.7)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.29.7)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.29.7)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.29.7)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.29.7)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.29.7)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.7)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.29.7)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.29.7)
babel-preset-expo@54.0.11(@babel/core@7.29.7)(@babel/runtime@7.29.7)(expo@54.0.35)(react-refresh@0.14.2):
dependencies:
- "@babel/helper-module-imports": 7.29.7
- "@babel/plugin-proposal-decorators": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-proposal-export-default-from": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-syntax-export-default-from": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-class-static-block": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-export-namespace-from": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-flow-strip-types": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-modules-commonjs": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-object-rest-spread": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-parameters": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-private-methods": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-private-property-in-object": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-runtime": 7.29.7(@babel/core@7.29.7)
- "@babel/preset-react": 7.29.7(@babel/core@7.29.7)
- "@babel/preset-typescript": 7.29.7(@babel/core@7.29.7)
- "@react-native/babel-preset": 0.81.5(@babel/core@7.29.7)
+ '@babel/helper-module-imports': 7.29.7
+ '@babel/plugin-proposal-decorators': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-proposal-export-default-from': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-syntax-export-default-from': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-class-static-block': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-export-namespace-from': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-flow-strip-types': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-modules-commonjs': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-object-rest-spread': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-parameters': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-private-methods': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-private-property-in-object': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-runtime': 7.29.7(@babel/core@7.29.7)
+ '@babel/preset-react': 7.29.7(@babel/core@7.29.7)
+ '@babel/preset-typescript': 7.29.7(@babel/core@7.29.7)
+ '@react-native/babel-preset': 0.81.5(@babel/core@7.29.7)
babel-plugin-react-compiler: 1.0.0
babel-plugin-react-native-web: 0.21.2
babel-plugin-syntax-hermes-parser: 0.29.1
@@ -15498,15 +8647,15 @@ snapshots:
react-refresh: 0.14.2
resolve-from: 5.0.0
optionalDependencies:
- "@babel/runtime": 7.29.7
+ '@babel/runtime': 7.29.7
expo: 54.0.35(@babel/core@7.29.7)(@expo/metro-runtime@6.1.2)(expo-router@6.0.24)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
transitivePeerDependencies:
- - "@babel/core"
+ - '@babel/core'
- supports-color
babel-preset-jest@29.6.3(@babel/core@7.29.7):
dependencies:
- "@babel/core": 7.29.7
+ '@babel/core': 7.29.7
babel-plugin-jest-hoist: 29.6.3
babel-preset-current-node-syntax: 1.2.0(@babel/core@7.29.7)
@@ -15530,34 +8679,8 @@ snapshots:
bignumber.js@9.3.1: {}
- bl@4.1.0:
- dependencies:
- buffer: 5.7.1
- inherits: 2.0.4
- readable-stream: 3.6.2
-
- bn.js@4.12.3: {}
-
bn.js@5.2.3: {}
- body-parser@2.2.2:
- dependencies:
- bytes: 3.1.2
- content-type: 1.0.5
- debug: 4.4.3(supports-color@8.1.1)
- http-errors: 2.0.1
- iconv-lite: 0.7.2
- on-finished: 2.4.1
- qs: 6.15.2
- raw-body: 3.0.2
- type-is: 2.1.0
- transitivePeerDependencies:
- - supports-color
-
- boolbase@1.0.0: {}
-
- bottleneck@2.19.5: {}
-
bplist-creator@0.1.0:
dependencies:
stream-buffers: 2.2.0
@@ -15590,8 +8713,6 @@ snapshots:
dependencies:
node-int64: 0.4.0
- buffer-equal-constant-time@1.0.1: {}
-
buffer-from@1.1.2: {}
buffer@5.7.1:
@@ -15613,8 +8734,6 @@ snapshots:
bytes@3.1.2: {}
- cac@6.7.14: {}
-
call-bind-apply-helpers@1.0.2:
dependencies:
es-errors: 1.3.0
@@ -15642,7 +8761,7 @@ snapshots:
canvas@2.11.2:
dependencies:
- "@mapbox/node-pre-gyp": 1.0.11
+ '@mapbox/node-pre-gyp': 1.0.11
nan: 2.27.0
simple-get: 3.1.1
transitivePeerDependencies:
@@ -15655,14 +8774,6 @@ snapshots:
ansicolors: 0.3.2
redeyed: 2.1.1
- chai@5.3.3:
- dependencies:
- assertion-error: 2.0.1
- check-error: 2.1.3
- deep-eql: 5.0.2
- loupe: 3.2.1
- pathval: 2.0.1
-
chalk@2.4.2:
dependencies:
ansi-styles: 3.2.1
@@ -15679,27 +8790,17 @@ snapshots:
ansi-styles: 4.3.0
supports-color: 7.2.0
- chalk@5.6.2: {}
-
char-regex@1.0.2: {}
char-regex@2.0.2: {}
charenc@0.0.2: {}
- check-error@2.1.3: {}
-
- chokidar@5.0.0:
- dependencies:
- readdirp: 5.0.0
-
- chownr@1.1.4: {}
-
chownr@3.0.0: {}
chrome-launcher@0.15.2:
dependencies:
- "@types/node": 22.19.19
+ '@types/node': 22.19.19
escape-string-regexp: 4.0.0
is-wsl: 2.2.0
lighthouse-logger: 1.4.2
@@ -15708,7 +8809,7 @@ snapshots:
chromium-edge-launcher@0.2.0:
dependencies:
- "@types/node": 22.19.19
+ '@types/node': 22.19.19
escape-string-regexp: 4.0.0
is-wsl: 2.2.0
lighthouse-logger: 1.4.2
@@ -15725,8 +8826,6 @@ snapshots:
cjs-module-lexer@1.4.3: {}
- clawpdf@0.3.0: {}
-
clean-stack@3.0.1:
dependencies:
escape-string-regexp: 4.0.0
@@ -15747,12 +8846,6 @@ snapshots:
client-only@0.0.1: {}
- cliui@6.0.0:
- dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 6.2.0
-
cliui@8.0.1:
dependencies:
string-width: 4.2.3
@@ -15801,8 +8894,6 @@ snapshots:
commander@12.1.0: {}
- commander@14.0.3: {}
-
commander@2.20.3: {}
commander@4.1.1: {}
@@ -15839,32 +8930,17 @@ snapshots:
console-control-strings@1.1.0:
optional: true
- content-disposition@1.1.0: {}
-
content-type@1.0.5: {}
- content-type@2.0.0: {}
-
convert-source-map@2.0.0: {}
- cookie-signature@1.2.2: {}
-
- cookie@0.7.2: {}
-
core-js-compat@3.49.0:
dependencies:
browserslist: 4.28.2
- core-util-is@1.0.3: {}
-
- cors@2.8.6:
- dependencies:
- object-assign: 4.1.1
- vary: 1.1.2
-
create-jest@29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3)):
dependencies:
- "@jest/types": 29.6.3
+ '@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
@@ -15872,15 +8948,13 @@ snapshots:
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
- - "@types/node"
+ - '@types/node'
- babel-plugin-macros
- supports-color
- ts-node
create-require@1.1.1: {}
- croner@10.0.1: {}
-
cross-spawn@7.0.6:
dependencies:
path-key: 3.1.1
@@ -15891,16 +8965,6 @@ snapshots:
crypto-random-string@2.0.0: {}
- css-select@5.2.2:
- dependencies:
- boolbase: 1.0.0
- css-what: 6.2.2
- domhandler: 5.0.3
- domutils: 3.2.2
- nth-check: 2.1.1
-
- css-what@6.2.2: {}
-
cssom@0.3.8: {}
cssom@0.5.0: {}
@@ -15911,8 +8975,6 @@ snapshots:
csstype@3.2.3: {}
- data-uri-to-buffer@4.0.1: {}
-
data-urls@3.0.2:
dependencies:
abab: 2.0.6
@@ -15939,8 +9001,6 @@ snapshots:
optionalDependencies:
supports-color: 8.1.1
- decamelize@1.2.0: {}
-
decimal.js@10.6.0: {}
decode-uri-component@0.2.2: {}
@@ -15950,14 +9010,8 @@ snapshots:
mimic-response: 2.1.0
optional: true
- decompress-response@6.0.0:
- dependencies:
- mimic-response: 3.1.0
-
dedent@1.7.2: {}
- deep-eql@5.0.2: {}
-
deep-extend@0.6.0: {}
deepmerge@4.3.1: {}
@@ -15993,36 +9047,16 @@ snapshots:
diff@8.0.4: {}
- dijkstrajs@1.0.3: {}
-
dir-glob@3.0.1:
dependencies:
path-type: 4.0.0
- dom-serializer@2.0.0:
- dependencies:
- domelementtype: 2.3.0
- domhandler: 5.0.3
- entities: 4.5.0
-
- domelementtype@2.3.0: {}
-
domexception@4.0.0:
dependencies:
webidl-conversions: 7.0.0
- domhandler@5.0.3:
- dependencies:
- domelementtype: 2.3.0
-
domino@2.1.7: {}
- domutils@3.2.2:
- dependencies:
- dom-serializer: 2.0.0
- domelementtype: 2.3.0
- domhandler: 5.0.3
-
dotenv-expand@11.0.7:
dependencies:
dotenv: 16.4.7
@@ -16031,8 +9065,6 @@ snapshots:
dotenv@16.4.7: {}
- dotenv@17.4.2: {}
-
dtrace-provider@0.8.8:
dependencies:
nan: 2.27.0
@@ -16046,34 +9078,34 @@ snapshots:
eas-cli@20.1.0(@types/node@22.19.19)(typescript@5.8.3):
dependencies:
- "@expo/apple-utils": 2.1.19
- "@expo/code-signing-certificates": 0.0.5
- "@expo/config": 55.0.10(typescript@5.8.3)
- "@expo/config-plugins": 55.0.7
- "@expo/eas-build-job": 20.1.0
- "@expo/eas-json": 20.1.0
- "@expo/env": 1.0.7
- "@expo/json-file": 8.3.3
- "@expo/logger": 20.0.0
- "@expo/multipart-body-parser": 2.0.0
- "@expo/osascript": 2.1.4
- "@expo/package-manager": 1.9.10
- "@expo/pkcs12": 0.1.3
- "@expo/plist": 0.2.0
- "@expo/plugin-help": 5.1.23(@types/node@22.19.19)(typescript@5.8.3)
- "@expo/plugin-warn-if-update-available": 2.5.1(@types/node@22.19.19)(typescript@5.8.3)
- "@expo/prebuild-config": 8.0.17
- "@expo/results": 1.0.0
- "@expo/rudder-sdk-node": 1.1.1
- "@expo/spawn-async": 1.7.2
- "@expo/steps": 20.1.0
- "@expo/timeago.js": 1.0.0
- "@oclif/core": 4.11.4
- "@oclif/plugin-autocomplete": 3.2.50
- "@segment/ajv-human-errors": 2.16.0(ajv@8.20.0)
- "@sentry/node": 7.77.0
- "@urql/core": 4.0.11(graphql@16.8.1)
- "@urql/exchange-retry": 1.2.0(graphql@16.8.1)
+ '@expo/apple-utils': 2.1.19
+ '@expo/code-signing-certificates': 0.0.5
+ '@expo/config': 55.0.10(typescript@5.8.3)
+ '@expo/config-plugins': 55.0.7
+ '@expo/eas-build-job': 20.1.0
+ '@expo/eas-json': 20.1.0
+ '@expo/env': 1.0.7
+ '@expo/json-file': 8.3.3
+ '@expo/logger': 20.0.0
+ '@expo/multipart-body-parser': 2.0.0
+ '@expo/osascript': 2.1.4
+ '@expo/package-manager': 1.9.10
+ '@expo/pkcs12': 0.1.3
+ '@expo/plist': 0.2.0
+ '@expo/plugin-help': 5.1.23(@types/node@22.19.19)(typescript@5.8.3)
+ '@expo/plugin-warn-if-update-available': 2.5.1(@types/node@22.19.19)(typescript@5.8.3)
+ '@expo/prebuild-config': 8.0.17
+ '@expo/results': 1.0.0
+ '@expo/rudder-sdk-node': 1.1.1
+ '@expo/spawn-async': 1.7.2
+ '@expo/steps': 20.1.0
+ '@expo/timeago.js': 1.0.0
+ '@oclif/core': 4.11.4
+ '@oclif/plugin-autocomplete': 3.2.50
+ '@segment/ajv-human-errors': 2.16.0(ajv@8.20.0)
+ '@sentry/node': 7.77.0
+ '@urql/core': 4.0.11(graphql@16.8.1)
+ '@urql/exchange-retry': 1.2.0(graphql@16.8.1)
ajv: 8.20.0
ajv-formats: 2.1.1(ajv@8.20.0)
better-opn: 3.0.2
@@ -16134,9 +9166,9 @@ snapshots:
yaml: 2.9.0
zod: 4.4.3
transitivePeerDependencies:
- - "@swc/core"
- - "@swc/wasm"
- - "@types/node"
+ - '@swc/core'
+ - '@swc/wasm'
+ - '@types/node'
- bare-abort-controller
- encoding
- react-native-b4a
@@ -16145,10 +9177,6 @@ snapshots:
eastasianwidth@0.2.0: {}
- ecdsa-sig-formatter@1.0.11:
- dependencies:
- safe-buffer: 5.2.1
-
ee-first@1.1.1: {}
ejs@3.1.10:
@@ -16167,13 +9195,9 @@ snapshots:
encodeurl@2.0.0: {}
- end-of-stream@1.4.5:
- dependencies:
- once: 1.4.0
-
engine.io-client@6.6.5:
dependencies:
- "@socket.io/component-emitter": 3.1.2
+ '@socket.io/component-emitter': 3.1.2
debug: 4.4.3(supports-color@8.1.1)
engine.io-parser: 5.2.3
ws: 8.20.1
@@ -16185,12 +9209,8 @@ snapshots:
engine.io-parser@5.2.3: {}
- entities@4.5.0: {}
-
entities@6.0.1: {}
- entities@7.0.1: {}
-
env-editor@0.4.2: {}
env-paths@2.2.0: {}
@@ -16213,8 +9233,6 @@ snapshots:
es-errors@1.3.0: {}
- es-module-lexer@1.7.0: {}
-
es-object-atoms@1.1.2:
dependencies:
es-errors: 1.3.0
@@ -16226,64 +9244,6 @@ snapshots:
has-tostringtag: 1.0.2
hasown: 2.0.4
- esbuild@0.25.12:
- optionalDependencies:
- "@esbuild/aix-ppc64": 0.25.12
- "@esbuild/android-arm": 0.25.12
- "@esbuild/android-arm64": 0.25.12
- "@esbuild/android-x64": 0.25.12
- "@esbuild/darwin-arm64": 0.25.12
- "@esbuild/darwin-x64": 0.25.12
- "@esbuild/freebsd-arm64": 0.25.12
- "@esbuild/freebsd-x64": 0.25.12
- "@esbuild/linux-arm": 0.25.12
- "@esbuild/linux-arm64": 0.25.12
- "@esbuild/linux-ia32": 0.25.12
- "@esbuild/linux-loong64": 0.25.12
- "@esbuild/linux-mips64el": 0.25.12
- "@esbuild/linux-ppc64": 0.25.12
- "@esbuild/linux-riscv64": 0.25.12
- "@esbuild/linux-s390x": 0.25.12
- "@esbuild/linux-x64": 0.25.12
- "@esbuild/netbsd-arm64": 0.25.12
- "@esbuild/netbsd-x64": 0.25.12
- "@esbuild/openbsd-arm64": 0.25.12
- "@esbuild/openbsd-x64": 0.25.12
- "@esbuild/openharmony-arm64": 0.25.12
- "@esbuild/sunos-x64": 0.25.12
- "@esbuild/win32-arm64": 0.25.12
- "@esbuild/win32-ia32": 0.25.12
- "@esbuild/win32-x64": 0.25.12
-
- esbuild@0.27.7:
- optionalDependencies:
- "@esbuild/aix-ppc64": 0.27.7
- "@esbuild/android-arm": 0.27.7
- "@esbuild/android-arm64": 0.27.7
- "@esbuild/android-x64": 0.27.7
- "@esbuild/darwin-arm64": 0.27.7
- "@esbuild/darwin-x64": 0.27.7
- "@esbuild/freebsd-arm64": 0.27.7
- "@esbuild/freebsd-x64": 0.27.7
- "@esbuild/linux-arm": 0.27.7
- "@esbuild/linux-arm64": 0.27.7
- "@esbuild/linux-ia32": 0.27.7
- "@esbuild/linux-loong64": 0.27.7
- "@esbuild/linux-mips64el": 0.27.7
- "@esbuild/linux-ppc64": 0.27.7
- "@esbuild/linux-riscv64": 0.27.7
- "@esbuild/linux-s390x": 0.27.7
- "@esbuild/linux-x64": 0.27.7
- "@esbuild/netbsd-arm64": 0.27.7
- "@esbuild/netbsd-x64": 0.27.7
- "@esbuild/openbsd-arm64": 0.27.7
- "@esbuild/openbsd-x64": 0.27.7
- "@esbuild/openharmony-arm64": 0.27.7
- "@esbuild/sunos-x64": 0.27.7
- "@esbuild/win32-arm64": 0.27.7
- "@esbuild/win32-ia32": 0.27.7
- "@esbuild/win32-x64": 0.27.7
-
escalade@3.2.0: {}
escape-html@1.0.3: {}
@@ -16306,10 +9266,6 @@ snapshots:
estraverse@5.3.0: {}
- estree-walker@3.0.3:
- dependencies:
- "@types/estree": 1.0.9
-
esutils@2.0.3: {}
etag@1.8.1: {}
@@ -16328,12 +9284,6 @@ snapshots:
events@3.3.0: {}
- eventsource-parser@3.1.0: {}
-
- eventsource@3.0.7:
- dependencies:
- eventsource-parser: 3.1.0
-
exec-async@2.2.0: {}
execa@5.1.1:
@@ -16350,13 +9300,9 @@ snapshots:
exit@0.1.2: {}
- expand-template@2.0.3: {}
-
- expect-type@1.3.0: {}
-
expect@29.7.0:
dependencies:
- "@jest/expect-utils": 29.7.0
+ '@jest/expect-utils': 29.7.0
jest-get-type: 29.6.3
jest-matcher-utils: 29.7.0
jest-message-util: 29.7.0
@@ -16364,8 +9310,8 @@ snapshots:
expect@30.4.1:
dependencies:
- "@jest/expect-utils": 30.4.1
- "@jest/get-type": 30.1.0
+ '@jest/expect-utils': 30.4.1
+ '@jest/get-type': 30.1.0
jest-matcher-utils: 30.4.1
jest-message-util: 30.4.1
jest-mock: 30.4.1
@@ -16373,7 +9319,7 @@ snapshots:
expo-asset@12.0.13(expo@54.0.35)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3):
dependencies:
- "@expo/image-utils": 0.8.14(typescript@5.8.3)
+ '@expo/image-utils': 0.8.14(typescript@5.8.3)
expo: 54.0.35(@babel/core@7.29.7)(@expo/metro-runtime@6.1.2)(expo-router@6.0.24)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
expo-constants: 18.0.13(expo@54.0.35)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))
react: 19.1.0
@@ -16384,7 +9330,7 @@ snapshots:
expo-build-properties@55.0.14(expo@54.0.35):
dependencies:
- "@expo/schema-utils": 55.0.4
+ '@expo/schema-utils': 55.0.4
expo: 54.0.35(@babel/core@7.29.7)(@expo/metro-runtime@6.1.2)(expo-router@6.0.24)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
resolve-from: 5.0.0
semver: 7.8.1
@@ -16396,10 +9342,16 @@ snapshots:
react: 19.1.0
react-native: 0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)
+ expo-clipboard@8.0.8(expo@54.0.35)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
+ dependencies:
+ expo: 54.0.35(@babel/core@7.29.7)(@expo/metro-runtime@6.1.2)(expo-router@6.0.24)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
+ react: 19.1.0
+ react-native: 0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)
+
expo-constants@18.0.13(expo@54.0.35)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)):
dependencies:
- "@expo/config": 12.0.13
- "@expo/env": 2.0.11
+ '@expo/config': 12.0.13
+ '@expo/env': 2.0.11
expo: 54.0.35(@babel/core@7.29.7)(@expo/metro-runtime@6.1.2)(expo-router@6.0.24)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
react-native: 0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)
transitivePeerDependencies:
@@ -16481,7 +9433,7 @@ snapshots:
expo-manifests@1.0.11(expo@54.0.35):
dependencies:
- "@expo/config": 12.0.13
+ '@expo/config': 12.0.13
expo: 54.0.35(@babel/core@7.29.7)(@expo/metro-runtime@6.1.2)(expo-router@6.0.24)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
expo-json-utils: 0.15.0
transitivePeerDependencies:
@@ -16489,7 +9441,7 @@ snapshots:
expo-modules-autolinking@3.0.26:
dependencies:
- "@expo/spawn-async": 1.8.0
+ '@expo/spawn-async': 1.8.0
chalk: 4.1.2
commander: 7.2.0
require-from-string: 2.0.2
@@ -16503,13 +9455,13 @@ snapshots:
expo-router@6.0.24(ace148d1f520ff029f39906dc9ee7269):
dependencies:
- "@expo/metro-runtime": 6.1.2(expo@54.0.35)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
- "@expo/schema-utils": 0.1.8
- "@radix-ui/react-slot": 1.2.0(@types/react@19.1.17)(react@19.1.0)
- "@radix-ui/react-tabs": 1.1.13(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- "@react-navigation/bottom-tabs": 7.16.2(@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
- "@react-navigation/native": 7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
- "@react-navigation/native-stack": 7.16.0(@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@expo/metro-runtime': 6.1.2(expo@54.0.35)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@expo/schema-utils': 0.1.8
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.1.17)(react@19.1.0)
+ '@radix-ui/react-tabs': 1.1.13(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@react-navigation/bottom-tabs': 7.16.2(@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@react-navigation/native': 7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@react-navigation/native-stack': 7.16.0(@react-navigation/native@7.2.5(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
client-only: 0.0.1
debug: 4.4.3(supports-color@8.1.1)
escape-string-regexp: 4.0.0
@@ -16534,14 +9486,14 @@ snapshots:
use-latest-callback: 0.2.6(react@19.1.0)
vaul: 1.1.2(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
optionalDependencies:
- "@testing-library/react-native": 13.3.3(jest@29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3)))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0)
+ '@testing-library/react-native': 13.3.3(jest@29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3)))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0)
react-dom: 19.1.0(react@19.1.0)
react-native-gesture-handler: 2.28.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
react-native-reanimated: 3.19.5(@babel/core@7.29.7)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
transitivePeerDependencies:
- - "@react-native-masked-view/masked-view"
- - "@types/react"
- - "@types/react-dom"
+ - '@react-native-masked-view/masked-view'
+ - '@types/react'
+ - '@types/react-dom'
- supports-color
expo-screen-capture@8.0.9(expo@54.0.35)(react@19.1.0):
@@ -16557,7 +9509,7 @@ snapshots:
expo-splash-screen@31.0.13(expo@54.0.35)(typescript@5.8.3):
dependencies:
- "@expo/prebuild-config": 54.0.8(expo@54.0.35)(typescript@5.8.3)
+ '@expo/prebuild-config': 54.0.8(expo@54.0.35)(typescript@5.8.3)
expo: 54.0.35(@babel/core@7.29.7)(@expo/metro-runtime@6.1.2)(expo-router@6.0.24)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
transitivePeerDependencies:
- supports-color
@@ -16579,7 +9531,7 @@ snapshots:
expo-system-ui@6.0.9(expo@54.0.35)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)):
dependencies:
- "@react-native/normalize-colors": 0.81.5
+ '@react-native/normalize-colors': 0.81.5
debug: 4.4.3(supports-color@8.1.1)
expo: 54.0.35(@babel/core@7.29.7)(@expo/metro-runtime@6.1.2)(expo-router@6.0.24)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
react-native: 0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)
@@ -16592,9 +9544,9 @@ snapshots:
expo-updates@29.0.18(expo@54.0.35)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
dependencies:
- "@expo/code-signing-certificates": 0.0.6
- "@expo/plist": 0.4.9
- "@expo/spawn-async": 1.8.0
+ '@expo/code-signing-certificates': 0.0.6
+ '@expo/plist': 0.4.9
+ '@expo/spawn-async': 1.8.0
arg: 4.1.0
chalk: 4.1.2
debug: 4.4.3(supports-color@8.1.1)
@@ -16619,16 +9571,16 @@ snapshots:
expo@54.0.35(@babel/core@7.29.7)(@expo/metro-runtime@6.1.2)(expo-router@6.0.24)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3):
dependencies:
- "@babel/runtime": 7.29.7
- "@expo/cli": 54.0.25(expo-router@6.0.24)(expo@54.0.35)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(typescript@5.8.3)
- "@expo/config": 12.0.13
- "@expo/config-plugins": 54.0.4
- "@expo/devtools": 0.1.8(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
- "@expo/fingerprint": 0.15.5
- "@expo/metro": 54.2.0
- "@expo/metro-config": 54.0.16(expo@54.0.35)
- "@expo/vector-icons": 15.1.1(expo-font@14.0.12(expo@54.0.35)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
- "@ungap/structured-clone": 1.3.1
+ '@babel/runtime': 7.29.7
+ '@expo/cli': 54.0.25(expo-router@6.0.24)(expo@54.0.35)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(typescript@5.8.3)
+ '@expo/config': 12.0.13
+ '@expo/config-plugins': 54.0.4
+ '@expo/devtools': 0.1.8(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@expo/fingerprint': 0.15.5
+ '@expo/metro': 54.2.0
+ '@expo/metro-config': 54.0.16(expo@54.0.35)
+ '@expo/vector-icons': 15.1.1(expo-font@14.0.12(expo@54.0.35)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@ungap/structured-clone': 1.3.1
babel-preset-expo: 54.0.11(@babel/core@7.29.7)(@babel/runtime@7.29.7)(expo@54.0.35)(react-refresh@0.14.2)
expo-asset: 12.0.13(expo@54.0.35)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
expo-constants: 18.0.13(expo@54.0.35)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))
@@ -16643,9 +9595,9 @@ snapshots:
react-refresh: 0.14.2
whatwg-url-without-unicode: 8.0.0-3
optionalDependencies:
- "@expo/metro-runtime": 6.1.2(expo@54.0.35)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@expo/metro-runtime': 6.1.2(expo@54.0.35)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
transitivePeerDependencies:
- - "@babel/core"
+ - '@babel/core'
- bufferutil
- expo-router
- graphql
@@ -16655,74 +9607,22 @@ snapshots:
exponential-backoff@3.1.3: {}
- express-rate-limit@8.5.2(express@5.2.1):
- dependencies:
- express: 5.2.1
- ip-address: 10.2.0
-
- express@5.2.1:
- dependencies:
- accepts: 2.0.0
- body-parser: 2.2.2
- content-disposition: 1.1.0
- content-type: 1.0.5
- cookie: 0.7.2
- cookie-signature: 1.2.2
- debug: 4.4.3(supports-color@8.1.1)
- depd: 2.0.0
- encodeurl: 2.0.0
- escape-html: 1.0.3
- etag: 1.8.1
- finalhandler: 2.1.1
- fresh: 2.0.0
- http-errors: 2.0.1
- merge-descriptors: 2.0.0
- mime-types: 3.0.2
- on-finished: 2.4.1
- once: 1.4.0
- parseurl: 1.3.3
- proxy-addr: 2.0.7
- qs: 6.15.2
- range-parser: 1.2.1
- router: 2.2.0
- send: 1.2.1
- serve-static: 2.2.1
- statuses: 2.0.2
- type-is: 2.1.0
- vary: 1.1.2
- transitivePeerDependencies:
- - supports-color
-
- extend@3.0.2: {}
-
fast-deep-equal@3.1.3: {}
fast-fifo@1.3.2: {}
fast-glob@3.3.2:
dependencies:
- "@nodelib/fs.stat": 2.0.5
- "@nodelib/fs.walk": 1.2.8
+ '@nodelib/fs.stat': 2.0.5
+ '@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
micromatch: 4.0.8
fast-json-stable-stringify@2.1.0: {}
- fast-sha256@1.3.0: {}
-
- fast-string-truncated-width@3.0.3: {}
-
- fast-string-width@3.0.2:
- dependencies:
- fast-string-truncated-width: 3.0.3
-
fast-uri@3.1.2: {}
- fast-wrap-ansi@0.2.2:
- dependencies:
- fast-string-width: 3.0.2
-
fastq@1.20.1:
dependencies:
reusify: 1.1.0
@@ -16735,26 +9635,12 @@ snapshots:
optionalDependencies:
picomatch: 4.0.4
- fetch-blob@3.2.0:
- dependencies:
- node-domexception: 1.0.0
- web-streams-polyfill: 3.3.3
-
fetch-retry@4.1.1: {}
figures@3.2.0:
dependencies:
escape-string-regexp: 1.0.5
- file-type@22.0.1:
- dependencies:
- "@tokenizer/inflate": 0.4.1
- strtok3: 10.3.5
- token-types: 6.1.2
- uint8array-extras: 1.5.0
- transitivePeerDependencies:
- - supports-color
-
filelist@1.0.6:
dependencies:
minimatch: 9.0.9
@@ -16777,17 +9663,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- finalhandler@2.1.1:
- dependencies:
- debug: 4.4.3(supports-color@8.1.1)
- encodeurl: 2.0.0
- escape-html: 1.0.3
- on-finished: 2.4.1
- parseurl: 1.3.3
- statuses: 2.0.2
- transitivePeerDependencies:
- - supports-color
-
find-up@4.1.0:
dependencies:
locate-path: 5.0.0
@@ -16818,20 +9693,10 @@ snapshots:
hasown: 2.0.4
mime-types: 2.1.35
- formdata-polyfill@4.0.10:
- dependencies:
- fetch-blob: 3.2.0
-
- forwarded@0.2.0: {}
-
freeport-async@2.0.0: {}
fresh@0.5.2: {}
- fresh@2.0.0: {}
-
- fs-constants@1.0.0: {}
-
fs-extra@10.1.0:
dependencies:
graceful-fs: 4.2.11
@@ -16878,30 +9743,12 @@ snapshots:
wide-align: 1.1.5
optional: true
- gaxios@7.1.5:
- dependencies:
- extend: 3.0.2
- https-proxy-agent: 7.0.6
- node-fetch: 3.3.2
- transitivePeerDependencies:
- - supports-color
-
- gcp-metadata@8.1.2:
- dependencies:
- gaxios: 7.1.5
- google-logging-utils: 1.1.3
- json-bigint: 1.0.0
- transitivePeerDependencies:
- - supports-color
-
generator-function@2.0.1: {}
gensync@1.0.0-beta.2: {}
get-caller-file@2.0.5: {}
- get-east-asian-width@1.6.0: {}
-
get-intrinsic@1.3.0:
dependencies:
call-bind-apply-helpers: 1.0.2
@@ -16930,8 +9777,6 @@ snapshots:
getenv@2.0.0: {}
- github-from-package@0.0.0: {}
-
glob-parent@5.1.2:
dependencies:
is-glob: 4.0.3
@@ -16980,19 +9825,6 @@ snapshots:
golden-fleece@1.0.9: {}
- google-auth-library@10.7.0:
- dependencies:
- base64-js: 1.5.1
- ecdsa-sig-formatter: 1.0.11
- gaxios: 7.1.5
- gcp-metadata: 8.1.2
- google-logging-utils: 1.1.3
- jws: 4.0.1
- transitivePeerDependencies:
- - supports-color
-
- google-logging-utils@1.1.3: {}
-
gopd@1.2.0: {}
graceful-fs@4.2.11: {}
@@ -17001,16 +9833,6 @@ snapshots:
dependencies:
lodash.merge: 4.6.2
- grammy@1.43.0:
- dependencies:
- "@grammyjs/types": 3.27.3
- abort-controller: 3.0.0
- debug: 4.4.3(supports-color@8.1.1)
- node-fetch: 2.7.0
- transitivePeerDependencies:
- - encoding
- - supports-color
-
graphql-tag@2.12.6(graphql@16.8.1):
dependencies:
graphql: 16.8.1
@@ -17059,18 +9881,10 @@ snapshots:
hi-base32@0.5.1: {}
- highlight.js@11.11.1: {}
-
hoist-non-react-statics@3.3.2:
dependencies:
react-is: 16.13.1
- hono@4.12.24: {}
-
- hosted-git-info@10.1.1:
- dependencies:
- lru-cache: 11.5.1
-
hosted-git-info@7.0.2:
dependencies:
lru-cache: 10.4.3
@@ -17081,15 +9895,6 @@ snapshots:
html-escaper@2.0.2: {}
- html-escaper@3.0.3: {}
-
- htmlparser2@10.1.0:
- dependencies:
- domelementtype: 2.3.0
- domhandler: 5.0.3
- domutils: 3.2.2
- entities: 7.0.1
-
http-call@5.3.0:
dependencies:
content-type: 1.0.5
@@ -17111,14 +9916,12 @@ snapshots:
http-proxy-agent@5.0.0:
dependencies:
- "@tootallnate/once": 2.0.1
+ '@tootallnate/once': 2.0.1
agent-base: 6.0.2
debug: 4.4.3(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
- http_ece@1.2.0: {}
-
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
@@ -17141,24 +9944,16 @@ snapshots:
dependencies:
safer-buffer: 2.1.2
- iconv-lite@0.7.2:
- dependencies:
- safer-buffer: 2.1.2
-
ieee754@1.2.1: {}
ignore@5.3.0: {}
ignore@5.3.2: {}
- ignore@7.0.5: {}
-
image-size@1.2.1:
dependencies:
queue: 6.0.2
- immediate@3.0.6: {}
-
import-local@3.2.0:
dependencies:
pkg-dir: 4.2.0
@@ -17181,10 +9976,6 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- ip-address@10.2.0: {}
-
- ipaddr.js@1.9.1: {}
-
is-arguments@1.2.0:
dependencies:
call-bound: 1.0.4
@@ -17228,8 +10019,6 @@ snapshots:
is-potential-custom-element-name@1.0.1: {}
- is-promise@4.0.0: {}
-
is-regex@1.2.1:
dependencies:
call-bound: 1.0.4
@@ -17251,8 +10040,6 @@ snapshots:
dependencies:
is-docker: 2.2.1
- isarray@1.0.0: {}
-
isarray@2.0.5: {}
isexe@2.0.0: {}
@@ -17261,9 +10048,9 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- "@babel/core": 7.29.7
- "@babel/parser": 7.29.7
- "@istanbuljs/schema": 0.1.6
+ '@babel/core': 7.29.7
+ '@babel/parser': 7.29.7
+ '@istanbuljs/schema': 0.1.6
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
transitivePeerDependencies:
@@ -17271,9 +10058,9 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
- "@babel/core": 7.29.7
- "@babel/parser": 7.29.7
- "@istanbuljs/schema": 0.1.6
+ '@babel/core': 7.29.7
+ '@babel/parser': 7.29.7
+ '@istanbuljs/schema': 0.1.6
istanbul-lib-coverage: 3.2.2
semver: 7.8.1
transitivePeerDependencies:
@@ -17300,9 +10087,9 @@ snapshots:
jackspeak@3.4.3:
dependencies:
- "@isaacs/cliui": 8.0.2
+ '@isaacs/cliui': 8.0.2
optionalDependencies:
- "@pkgjs/parseargs": 0.11.0
+ '@pkgjs/parseargs': 0.11.0
jake@10.9.4:
dependencies:
@@ -17318,11 +10105,11 @@ snapshots:
jest-circus@29.7.0:
dependencies:
- "@jest/environment": 29.7.0
- "@jest/expect": 29.7.0
- "@jest/test-result": 29.7.0
- "@jest/types": 29.6.3
- "@types/node": 22.19.19
+ '@jest/environment': 29.7.0
+ '@jest/expect': 29.7.0
+ '@jest/test-result': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 22.19.19
chalk: 4.1.2
co: 4.6.0
dedent: 1.7.2
@@ -17344,9 +10131,9 @@ snapshots:
jest-cli@29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3)):
dependencies:
- "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3))
- "@jest/test-result": 29.7.0
- "@jest/types": 29.6.3
+ '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3))
+ '@jest/test-result': 29.7.0
+ '@jest/types': 29.6.3
chalk: 4.1.2
create-jest: 29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3))
exit: 0.1.2
@@ -17356,16 +10143,16 @@ snapshots:
jest-validate: 29.7.0
yargs: 17.7.2
transitivePeerDependencies:
- - "@types/node"
+ - '@types/node'
- babel-plugin-macros
- supports-color
- ts-node
jest-config@29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3)):
dependencies:
- "@babel/core": 7.29.7
- "@jest/test-sequencer": 29.7.0
- "@jest/types": 29.6.3
+ '@babel/core': 7.29.7
+ '@jest/test-sequencer': 29.7.0
+ '@jest/types': 29.6.3
babel-jest: 29.7.0(@babel/core@7.29.7)
chalk: 4.1.2
ci-info: 3.9.0
@@ -17386,7 +10173,7 @@ snapshots:
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
- "@types/node": 22.19.19
+ '@types/node': 22.19.19
ts-node: 10.9.2(@types/node@22.19.19)(typescript@5.8.3)
transitivePeerDependencies:
- babel-plugin-macros
@@ -17401,8 +10188,8 @@ snapshots:
jest-diff@30.4.1:
dependencies:
- "@jest/diff-sequences": 30.4.0
- "@jest/get-type": 30.1.0
+ '@jest/diff-sequences': 30.4.0
+ '@jest/get-type': 30.1.0
chalk: 4.1.2
pretty-format: 30.4.1
@@ -17412,7 +10199,7 @@ snapshots:
jest-each@29.7.0:
dependencies:
- "@jest/types": 29.6.3
+ '@jest/types': 29.6.3
chalk: 4.1.2
jest-get-type: 29.6.3
jest-util: 29.7.0
@@ -17420,11 +10207,11 @@ snapshots:
jest-environment-jsdom@29.7.0(canvas@2.11.2):
dependencies:
- "@jest/environment": 29.7.0
- "@jest/fake-timers": 29.7.0
- "@jest/types": 29.6.3
- "@types/jsdom": 20.0.1
- "@types/node": 22.19.19
+ '@jest/environment': 29.7.0
+ '@jest/fake-timers': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/jsdom': 20.0.1
+ '@types/node': 22.19.19
jest-mock: 29.7.0
jest-util: 29.7.0
jsdom: 20.0.3(canvas@2.11.2)
@@ -17437,19 +10224,19 @@ snapshots:
jest-environment-node@29.7.0:
dependencies:
- "@jest/environment": 29.7.0
- "@jest/fake-timers": 29.7.0
- "@jest/types": 29.6.3
- "@types/node": 22.19.19
+ '@jest/environment': 29.7.0
+ '@jest/fake-timers': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 22.19.19
jest-mock: 29.7.0
jest-util: 29.7.0
jest-expo@55.0.18(@babel/core@7.29.7)(canvas@2.11.2)(expo@54.0.35)(jest@29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3)))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3):
dependencies:
- "@expo/config": 55.0.17(typescript@5.8.3)
- "@expo/json-file": 10.2.0
- "@jest/create-cache-key-function": 29.7.0
- "@jest/globals": 29.7.0
+ '@expo/config': 55.0.17(typescript@5.8.3)
+ '@expo/json-file': 10.2.0
+ '@jest/create-cache-key-function': 29.7.0
+ '@jest/globals': 29.7.0
babel-jest: 29.7.0(@babel/core@7.29.7)
expo: 54.0.35(@babel/core@7.29.7)(@expo/metro-runtime@6.1.2)(expo-router@6.0.24)(graphql@16.8.1)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
jest-environment-jsdom: 29.7.0(canvas@2.11.2)
@@ -17463,7 +10250,7 @@ snapshots:
server-only: 0.0.1
stacktrace-js: 2.0.2
transitivePeerDependencies:
- - "@babel/core"
+ - '@babel/core'
- bufferutil
- canvas
- jest
@@ -17476,9 +10263,9 @@ snapshots:
jest-haste-map@29.7.0:
dependencies:
- "@jest/types": 29.6.3
- "@types/graceful-fs": 4.1.9
- "@types/node": 22.19.19
+ '@jest/types': 29.6.3
+ '@types/graceful-fs': 4.1.9
+ '@types/node': 22.19.19
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -17504,16 +10291,16 @@ snapshots:
jest-matcher-utils@30.4.1:
dependencies:
- "@jest/get-type": 30.1.0
+ '@jest/get-type': 30.1.0
chalk: 4.1.2
jest-diff: 30.4.1
pretty-format: 30.4.1
jest-message-util@29.7.0:
dependencies:
- "@babel/code-frame": 7.29.7
- "@jest/types": 29.6.3
- "@types/stack-utils": 2.0.3
+ '@babel/code-frame': 7.29.7
+ '@jest/types': 29.6.3
+ '@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
micromatch: 4.0.8
@@ -17523,9 +10310,9 @@ snapshots:
jest-message-util@30.4.1:
dependencies:
- "@babel/code-frame": 7.29.7
- "@jest/types": 30.4.1
- "@types/stack-utils": 2.0.3
+ '@babel/code-frame': 7.29.7
+ '@jest/types': 30.4.1
+ '@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
jest-util: 30.4.1
@@ -17536,14 +10323,14 @@ snapshots:
jest-mock@29.7.0:
dependencies:
- "@jest/types": 29.6.3
- "@types/node": 22.19.19
+ '@jest/types': 29.6.3
+ '@types/node': 22.19.19
jest-util: 29.7.0
jest-mock@30.4.1:
dependencies:
- "@jest/types": 30.4.1
- "@types/node": 22.19.19
+ '@jest/types': 30.4.1
+ '@types/node': 22.19.19
jest-util: 30.4.1
jest-pnp-resolver@1.2.3(jest-resolve@29.7.0):
@@ -17575,12 +10362,12 @@ snapshots:
jest-runner@29.7.0:
dependencies:
- "@jest/console": 29.7.0
- "@jest/environment": 29.7.0
- "@jest/test-result": 29.7.0
- "@jest/transform": 29.7.0
- "@jest/types": 29.6.3
- "@types/node": 22.19.19
+ '@jest/console': 29.7.0
+ '@jest/environment': 29.7.0
+ '@jest/test-result': 29.7.0
+ '@jest/transform': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 22.19.19
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -17601,14 +10388,14 @@ snapshots:
jest-runtime@29.7.0:
dependencies:
- "@jest/environment": 29.7.0
- "@jest/fake-timers": 29.7.0
- "@jest/globals": 29.7.0
- "@jest/source-map": 29.6.3
- "@jest/test-result": 29.7.0
- "@jest/transform": 29.7.0
- "@jest/types": 29.6.3
- "@types/node": 22.19.19
+ '@jest/environment': 29.7.0
+ '@jest/fake-timers': 29.7.0
+ '@jest/globals': 29.7.0
+ '@jest/source-map': 29.6.3
+ '@jest/test-result': 29.7.0
+ '@jest/transform': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 22.19.19
chalk: 4.1.2
cjs-module-lexer: 1.4.3
collect-v8-coverage: 1.0.3
@@ -17628,14 +10415,14 @@ snapshots:
jest-snapshot@29.7.0:
dependencies:
- "@babel/core": 7.29.7
- "@babel/generator": 7.29.7
- "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-syntax-typescript": 7.29.7(@babel/core@7.29.7)
- "@babel/types": 7.29.7
- "@jest/expect-utils": 29.7.0
- "@jest/transform": 29.7.0
- "@jest/types": 29.6.3
+ '@babel/core': 7.29.7
+ '@babel/generator': 7.29.7
+ '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7)
+ '@babel/types': 7.29.7
+ '@jest/expect-utils': 29.7.0
+ '@jest/transform': 29.7.0
+ '@jest/types': 29.6.3
babel-preset-current-node-syntax: 1.2.0(@babel/core@7.29.7)
chalk: 4.1.2
expect: 29.7.0
@@ -17653,8 +10440,8 @@ snapshots:
jest-util@29.7.0:
dependencies:
- "@jest/types": 29.6.3
- "@types/node": 22.19.19
+ '@jest/types': 29.6.3
+ '@types/node': 22.19.19
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -17662,8 +10449,8 @@ snapshots:
jest-util@30.4.1:
dependencies:
- "@jest/types": 30.4.1
- "@types/node": 22.19.19
+ '@jest/types': 30.4.1
+ '@types/node': 22.19.19
chalk: 4.1.2
ci-info: 4.4.0
graceful-fs: 4.2.11
@@ -17671,7 +10458,7 @@ snapshots:
jest-validate@29.7.0:
dependencies:
- "@jest/types": 29.6.3
+ '@jest/types': 29.6.3
camelcase: 6.3.0
chalk: 4.1.2
jest-get-type: 29.6.3
@@ -17697,9 +10484,9 @@ snapshots:
jest-watcher@29.7.0:
dependencies:
- "@jest/test-result": 29.7.0
- "@jest/types": 29.6.3
- "@types/node": 22.19.19
+ '@jest/test-result': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 22.19.19
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -17708,27 +10495,25 @@ snapshots:
jest-worker@29.7.0:
dependencies:
- "@types/node": 22.19.19
+ '@types/node': 22.19.19
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
jest@29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3)):
dependencies:
- "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3))
- "@jest/types": 29.6.3
+ '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3))
+ '@jest/types': 29.6.3
import-local: 3.2.0
jest-cli: 29.7.0(@types/node@22.19.19)(ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3))
transitivePeerDependencies:
- - "@types/node"
+ - '@types/node'
- babel-plugin-macros
- supports-color
- ts-node
jimp-compact@0.16.1: {}
- jiti@2.7.0: {}
-
jks-js@1.1.0:
dependencies:
node-forge: 1.4.0
@@ -17737,28 +10522,24 @@ snapshots:
joi@17.11.0:
dependencies:
- "@hapi/hoek": 9.3.0
- "@hapi/topo": 5.1.0
- "@sideway/address": 4.1.5
- "@sideway/formula": 3.0.1
- "@sideway/pinpoint": 2.0.0
+ '@hapi/hoek': 9.3.0
+ '@hapi/topo': 5.1.0
+ '@sideway/address': 4.1.5
+ '@sideway/formula': 3.0.1
+ '@sideway/pinpoint': 2.0.0
joi@17.13.3:
dependencies:
- "@hapi/hoek": 9.3.0
- "@hapi/topo": 5.1.0
- "@sideway/address": 4.1.5
- "@sideway/formula": 3.0.1
- "@sideway/pinpoint": 2.0.0
+ '@hapi/hoek': 9.3.0
+ '@hapi/topo': 5.1.0
+ '@sideway/address': 4.1.5
+ '@sideway/formula': 3.0.1
+ '@sideway/pinpoint': 2.0.0
join-component@1.1.0: {}
- jose@6.2.3: {}
-
js-tokens@4.0.0: {}
- js-tokens@9.0.1: {}
-
js-yaml@3.14.2:
dependencies:
argparse: 1.0.10
@@ -17817,15 +10598,8 @@ snapshots:
json-parse-even-better-errors@2.3.1: {}
- json-schema-to-ts@3.1.1:
- dependencies:
- "@babel/runtime": 7.29.7
- ts-algebra: 2.0.0
-
json-schema-traverse@1.0.0: {}
- json-schema-typed@8.0.2: {}
-
json-stable-stringify@1.3.0:
dependencies:
call-bind: 1.0.9
@@ -17844,24 +10618,6 @@ snapshots:
jsonify@0.0.1: {}
- jszip@3.10.1:
- dependencies:
- lie: 3.3.0
- pako: 1.0.11
- readable-stream: 2.3.8
- setimmediate: 1.0.5
-
- jwa@2.0.1:
- dependencies:
- buffer-equal-constant-time: 1.0.1
- ecdsa-sig-formatter: 1.0.11
- safe-buffer: 5.2.1
-
- jws@4.0.1:
- dependencies:
- jwa: 2.0.1
- safe-buffer: 5.2.1
-
keychain@1.5.0: {}
klaw-sync@6.0.0:
@@ -17870,8 +10626,6 @@ snapshots:
kleur@3.0.3: {}
- kysely@0.29.2: {}
-
lan-network@0.2.1: {}
lefthook-darwin-arm64@2.1.9:
@@ -17919,10 +10673,6 @@ snapshots:
leven@3.1.0: {}
- lie@3.3.0:
- dependencies:
- immediate: 3.0.6
-
lighthouse-logger@1.4.2:
dependencies:
debug: 2.6.9
@@ -17979,16 +10729,6 @@ snapshots:
lines-and-columns@1.2.4: {}
- linkedom@0.18.12(canvas@2.11.2):
- dependencies:
- css-select: 5.2.2
- cssom: 0.5.0
- html-escaper: 3.0.3
- htmlparser2: 10.1.0
- uhyphen: 0.2.0
- optionalDependencies:
- canvas: 2.11.2
-
locate-path@5.0.0:
dependencies:
p-locate: 4.1.0
@@ -18018,14 +10758,10 @@ snapshots:
chalk: 4.1.2
is-unicode-supported: 0.1.0
- long@5.3.2: {}
-
loose-envify@1.4.0:
dependencies:
js-tokens: 4.0.0
- loupe@3.2.1: {}
-
lru-cache@10.4.3: {}
lru-cache@11.5.1: {}
@@ -18038,10 +10774,6 @@ snapshots:
dependencies:
yallist: 4.0.0
- magic-string@0.30.21:
- dependencies:
- "@jridgewell/sourcemap-codec": 1.5.5
-
make-dir@3.1.0:
dependencies:
semver: 6.3.1
@@ -18057,8 +10789,6 @@ snapshots:
dependencies:
tmpl: 1.0.5
- marked@15.0.12: {}
-
marky@1.3.0: {}
math-intrinsics@1.1.0: {}
@@ -18069,19 +10799,15 @@ snapshots:
crypt: 0.0.2
is-buffer: 1.1.6
- media-typer@1.1.0: {}
-
memoize-one@5.2.1: {}
- merge-descriptors@2.0.0: {}
-
merge-stream@2.0.0: {}
merge2@1.4.1: {}
metro-babel-transformer@0.83.3:
dependencies:
- "@babel/core": 7.29.7
+ '@babel/core': 7.29.7
flow-enums-runtime: 0.0.6
hermes-parser: 0.32.0
nullthrows: 1.1.1
@@ -18090,7 +10816,7 @@ snapshots:
metro-babel-transformer@0.83.7:
dependencies:
- "@babel/core": 7.29.7
+ '@babel/core': 7.29.7
flow-enums-runtime: 0.0.6
hermes-parser: 0.35.0
metro-cache-key: 0.83.7
@@ -18214,19 +10940,19 @@ snapshots:
metro-runtime@0.83.3:
dependencies:
- "@babel/runtime": 7.29.7
+ '@babel/runtime': 7.29.7
flow-enums-runtime: 0.0.6
metro-runtime@0.83.7:
dependencies:
- "@babel/runtime": 7.29.7
+ '@babel/runtime': 7.29.7
flow-enums-runtime: 0.0.6
metro-source-map@0.83.3:
dependencies:
- "@babel/traverse": 7.29.7
- "@babel/traverse--for-generate-function-map": "@babel/traverse@7.29.7"
- "@babel/types": 7.29.7
+ '@babel/traverse': 7.29.7
+ '@babel/traverse--for-generate-function-map': '@babel/traverse@7.29.7'
+ '@babel/types': 7.29.7
flow-enums-runtime: 0.0.6
invariant: 2.2.4
metro-symbolicate: 0.83.3
@@ -18239,8 +10965,8 @@ snapshots:
metro-source-map@0.83.7:
dependencies:
- "@babel/traverse": 7.29.7
- "@babel/types": 7.29.7
+ '@babel/traverse': 7.29.7
+ '@babel/types': 7.29.7
flow-enums-runtime: 0.0.6
invariant: 2.2.4
metro-symbolicate: 0.83.7
@@ -18275,10 +11001,10 @@ snapshots:
metro-transform-plugins@0.83.3:
dependencies:
- "@babel/core": 7.29.7
- "@babel/generator": 7.29.7
- "@babel/template": 7.29.7
- "@babel/traverse": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/generator': 7.29.7
+ '@babel/template': 7.29.7
+ '@babel/traverse': 7.29.7
flow-enums-runtime: 0.0.6
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -18286,10 +11012,10 @@ snapshots:
metro-transform-plugins@0.83.7:
dependencies:
- "@babel/core": 7.29.7
- "@babel/generator": 7.29.7
- "@babel/template": 7.29.7
- "@babel/traverse": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/generator': 7.29.7
+ '@babel/template': 7.29.7
+ '@babel/traverse': 7.29.7
flow-enums-runtime: 0.0.6
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -18297,10 +11023,10 @@ snapshots:
metro-transform-worker@0.83.3:
dependencies:
- "@babel/core": 7.29.7
- "@babel/generator": 7.29.7
- "@babel/parser": 7.29.7
- "@babel/types": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/generator': 7.29.7
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
flow-enums-runtime: 0.0.6
metro: 0.83.3
metro-babel-transformer: 0.83.3
@@ -18317,10 +11043,10 @@ snapshots:
metro-transform-worker@0.83.7:
dependencies:
- "@babel/core": 7.29.7
- "@babel/generator": 7.29.7
- "@babel/parser": 7.29.7
- "@babel/types": 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/generator': 7.29.7
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
flow-enums-runtime: 0.0.6
metro: 0.83.7
metro-babel-transformer: 0.83.7
@@ -18337,13 +11063,13 @@ snapshots:
metro@0.83.3:
dependencies:
- "@babel/code-frame": 7.29.7
- "@babel/core": 7.29.7
- "@babel/generator": 7.29.7
- "@babel/parser": 7.29.7
- "@babel/template": 7.29.7
- "@babel/traverse": 7.29.7
- "@babel/types": 7.29.7
+ '@babel/code-frame': 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/generator': 7.29.7
+ '@babel/parser': 7.29.7
+ '@babel/template': 7.29.7
+ '@babel/traverse': 7.29.7
+ '@babel/types': 7.29.7
accepts: 1.3.8
chalk: 4.1.2
ci-info: 2.0.0
@@ -18384,13 +11110,13 @@ snapshots:
metro@0.83.7:
dependencies:
- "@babel/code-frame": 7.29.7
- "@babel/core": 7.29.7
- "@babel/generator": 7.29.7
- "@babel/parser": 7.29.7
- "@babel/template": 7.29.7
- "@babel/traverse": 7.29.7
- "@babel/types": 7.29.7
+ '@babel/code-frame': 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/generator': 7.29.7
+ '@babel/parser': 7.29.7
+ '@babel/template': 7.29.7
+ '@babel/traverse': 7.29.7
+ '@babel/types': 7.29.7
accepts: 2.0.0
ci-info: 2.0.0
connect: 3.7.0
@@ -18456,12 +11182,8 @@ snapshots:
mimic-response@2.1.0:
optional: true
- mimic-response@3.1.0: {}
-
min-indent@1.0.1: {}
- minimalistic-assert@1.0.1: {}
-
minimatch@9.0.9:
dependencies:
brace-expansion: 2.1.1
@@ -18479,8 +11201,6 @@ snapshots:
dependencies:
minipass: 7.1.3
- mkdirp-classic@0.5.3: {}
-
mkdirp@0.5.6:
dependencies:
minimist: 1.2.8
@@ -18521,8 +11241,6 @@ snapshots:
nanoid@3.3.8: {}
- napi-build-utils@2.0.0: {}
-
natural-compare@1.4.0: {}
natural-orderby@2.0.3: {}
@@ -18536,29 +11254,7 @@ snapshots:
negotiator@1.0.0: {}
- nested-error-stacks@2.0.1: {}
-
- node-abi@3.92.0:
- dependencies:
- semver: 7.8.1
-
- node-addon-api@8.8.0: {}
-
- node-datachannel@0.32.3:
- dependencies:
- prebuild-install: 7.1.3
-
- node-domexception@1.0.0: {}
-
- node-edge-tts@1.2.10:
- dependencies:
- https-proxy-agent: 7.0.6
- ws: 8.21.0
- yargs: 17.7.2
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
+ nested-error-stacks@2.0.1: {}
node-fetch@2.6.7:
dependencies:
@@ -18568,16 +11264,8 @@ snapshots:
dependencies:
whatwg-url: 5.0.0
- node-fetch@3.3.2:
- dependencies:
- data-uri-to-buffer: 4.0.1
- fetch-blob: 3.2.0
- formdata-polyfill: 4.0.10
-
node-forge@1.4.0: {}
- node-gyp-build@4.8.4: {}
-
node-int64@0.4.0: {}
node-releases@2.0.46: {}
@@ -18614,10 +11302,6 @@ snapshots:
set-blocking: 2.0.0
optional: true
- nth-check@2.1.1:
- dependencies:
- boolbase: 1.0.0
-
nullthrows@1.1.1: {}
nwsapi@2.2.23: {}
@@ -18632,8 +11316,6 @@ snapshots:
object-assign@4.1.1: {}
- object-inspect@1.13.4: {}
-
object-keys@1.1.1: {}
object-treeify@1.1.33: {}
@@ -18671,79 +11353,6 @@ snapshots:
is-docker: 2.2.1
is-wsl: 2.2.0
- openai@6.39.1(ws@8.21.0)(zod@4.4.3):
- optionalDependencies:
- ws: 8.21.0
- zod: 4.4.3
-
- openclaw@2026.6.1(canvas@2.11.2):
- dependencies:
- "@agentclientprotocol/sdk": 0.22.1(zod@4.4.3)
- "@anthropic-ai/sdk": 0.100.1(zod@4.4.3)
- "@clack/core": 1.3.1
- "@clack/prompts": 1.4.0
- "@earendil-works/pi-tui": 0.78.0
- "@google/genai": 2.7.0(@modelcontextprotocol/sdk@1.29.0(zod@4.4.3))
- "@grammyjs/runner": 2.0.3(grammy@1.43.0)
- "@grammyjs/transformer-throttler": 1.2.1(grammy@1.43.0)
- "@homebridge/ciao": 1.3.9
- "@lydell/node-pty": 1.2.0-beta.12
- "@mistralai/mistralai": 2.2.5
- "@modelcontextprotocol/sdk": 1.29.0(zod@4.4.3)
- "@mozilla/readability": 0.6.0
- "@openclaw/fs-safe": 0.3.0
- "@openclaw/proxyline": 0.3.3(undici@8.3.0)
- chalk: 5.6.2
- chokidar: 5.0.0
- clawpdf: 0.3.0
- commander: 14.0.3
- croner: 10.0.1
- cross-spawn: 7.0.6
- diff: 8.0.4
- dotenv: 17.4.2
- express: 5.2.1
- file-type: 22.0.1
- glob: 13.0.6
- grammy: 1.43.0
- highlight.js: 11.11.1
- hosted-git-info: 10.1.1
- ignore: 7.0.5
- jiti: 2.7.0
- json5: 2.2.3
- jszip: 3.10.1
- kysely: 0.29.2
- linkedom: 0.18.12(canvas@2.11.2)
- minimatch: 9.0.9
- node-edge-tts: 1.2.10
- openai: 6.39.1(ws@8.21.0)(zod@4.4.3)
- partial-json: 0.1.7
- playwright-core: 1.60.0
- proper-lockfile: 4.1.2
- qrcode: 1.5.4
- quickjs-wasi: 3.0.0
- rastermill: 0.3.1
- tar: 7.5.15
- tree-sitter-bash: 0.25.1
- tslog: 4.10.2
- typebox: 1.1.39
- typescript: 6.0.3
- undici: 8.3.0
- web-push: 3.6.7
- web-tree-sitter: 0.26.9
- ws: 8.21.0
- yaml: 2.9.0
- zod: 4.4.3
- optionalDependencies:
- sqlite-vec: 0.1.9
- transitivePeerDependencies:
- - "@cfworker/json-schema"
- - bufferutil
- - canvas
- - encoding
- - supports-color
- - tree-sitter
- - utf-8-validate
-
ora@3.4.0:
dependencies:
chalk: 2.4.2
@@ -18768,47 +11377,47 @@ snapshots:
dependencies:
tinypool: 2.1.0
optionalDependencies:
- "@oxfmt/binding-android-arm-eabi": 0.44.0
- "@oxfmt/binding-android-arm64": 0.44.0
- "@oxfmt/binding-darwin-arm64": 0.44.0
- "@oxfmt/binding-darwin-x64": 0.44.0
- "@oxfmt/binding-freebsd-x64": 0.44.0
- "@oxfmt/binding-linux-arm-gnueabihf": 0.44.0
- "@oxfmt/binding-linux-arm-musleabihf": 0.44.0
- "@oxfmt/binding-linux-arm64-gnu": 0.44.0
- "@oxfmt/binding-linux-arm64-musl": 0.44.0
- "@oxfmt/binding-linux-ppc64-gnu": 0.44.0
- "@oxfmt/binding-linux-riscv64-gnu": 0.44.0
- "@oxfmt/binding-linux-riscv64-musl": 0.44.0
- "@oxfmt/binding-linux-s390x-gnu": 0.44.0
- "@oxfmt/binding-linux-x64-gnu": 0.44.0
- "@oxfmt/binding-linux-x64-musl": 0.44.0
- "@oxfmt/binding-openharmony-arm64": 0.44.0
- "@oxfmt/binding-win32-arm64-msvc": 0.44.0
- "@oxfmt/binding-win32-ia32-msvc": 0.44.0
- "@oxfmt/binding-win32-x64-msvc": 0.44.0
+ '@oxfmt/binding-android-arm-eabi': 0.44.0
+ '@oxfmt/binding-android-arm64': 0.44.0
+ '@oxfmt/binding-darwin-arm64': 0.44.0
+ '@oxfmt/binding-darwin-x64': 0.44.0
+ '@oxfmt/binding-freebsd-x64': 0.44.0
+ '@oxfmt/binding-linux-arm-gnueabihf': 0.44.0
+ '@oxfmt/binding-linux-arm-musleabihf': 0.44.0
+ '@oxfmt/binding-linux-arm64-gnu': 0.44.0
+ '@oxfmt/binding-linux-arm64-musl': 0.44.0
+ '@oxfmt/binding-linux-ppc64-gnu': 0.44.0
+ '@oxfmt/binding-linux-riscv64-gnu': 0.44.0
+ '@oxfmt/binding-linux-riscv64-musl': 0.44.0
+ '@oxfmt/binding-linux-s390x-gnu': 0.44.0
+ '@oxfmt/binding-linux-x64-gnu': 0.44.0
+ '@oxfmt/binding-linux-x64-musl': 0.44.0
+ '@oxfmt/binding-openharmony-arm64': 0.44.0
+ '@oxfmt/binding-win32-arm64-msvc': 0.44.0
+ '@oxfmt/binding-win32-ia32-msvc': 0.44.0
+ '@oxfmt/binding-win32-x64-msvc': 0.44.0
oxlint@1.67.0:
optionalDependencies:
- "@oxlint/binding-android-arm-eabi": 1.67.0
- "@oxlint/binding-android-arm64": 1.67.0
- "@oxlint/binding-darwin-arm64": 1.67.0
- "@oxlint/binding-darwin-x64": 1.67.0
- "@oxlint/binding-freebsd-x64": 1.67.0
- "@oxlint/binding-linux-arm-gnueabihf": 1.67.0
- "@oxlint/binding-linux-arm-musleabihf": 1.67.0
- "@oxlint/binding-linux-arm64-gnu": 1.67.0
- "@oxlint/binding-linux-arm64-musl": 1.67.0
- "@oxlint/binding-linux-ppc64-gnu": 1.67.0
- "@oxlint/binding-linux-riscv64-gnu": 1.67.0
- "@oxlint/binding-linux-riscv64-musl": 1.67.0
- "@oxlint/binding-linux-s390x-gnu": 1.67.0
- "@oxlint/binding-linux-x64-gnu": 1.67.0
- "@oxlint/binding-linux-x64-musl": 1.67.0
- "@oxlint/binding-openharmony-arm64": 1.67.0
- "@oxlint/binding-win32-arm64-msvc": 1.67.0
- "@oxlint/binding-win32-ia32-msvc": 1.67.0
- "@oxlint/binding-win32-x64-msvc": 1.67.0
+ '@oxlint/binding-android-arm-eabi': 1.67.0
+ '@oxlint/binding-android-arm64': 1.67.0
+ '@oxlint/binding-darwin-arm64': 1.67.0
+ '@oxlint/binding-darwin-x64': 1.67.0
+ '@oxlint/binding-freebsd-x64': 1.67.0
+ '@oxlint/binding-linux-arm-gnueabihf': 1.67.0
+ '@oxlint/binding-linux-arm-musleabihf': 1.67.0
+ '@oxlint/binding-linux-arm64-gnu': 1.67.0
+ '@oxlint/binding-linux-arm64-musl': 1.67.0
+ '@oxlint/binding-linux-ppc64-gnu': 1.67.0
+ '@oxlint/binding-linux-riscv64-gnu': 1.67.0
+ '@oxlint/binding-linux-riscv64-musl': 1.67.0
+ '@oxlint/binding-linux-s390x-gnu': 1.67.0
+ '@oxlint/binding-linux-x64-gnu': 1.67.0
+ '@oxlint/binding-linux-x64-musl': 1.67.0
+ '@oxlint/binding-openharmony-arm64': 1.67.0
+ '@oxlint/binding-win32-arm64-msvc': 1.67.0
+ '@oxlint/binding-win32-ia32-msvc': 1.67.0
+ '@oxlint/binding-win32-x64-msvc': 1.67.0
p-limit@2.3.0:
dependencies:
@@ -18822,17 +11431,10 @@ snapshots:
dependencies:
p-limit: 2.3.0
- p-retry@4.6.2:
- dependencies:
- "@types/retry": 0.12.0
- retry: 0.13.1
-
p-try@2.2.0: {}
package-json-from-dist@1.0.1: {}
- pako@1.0.11: {}
-
parse-json@4.0.0:
dependencies:
error-ex: 1.3.4
@@ -18840,7 +11442,7 @@ snapshots:
parse-json@5.2.0:
dependencies:
- "@babel/code-frame": 7.29.7
+ '@babel/code-frame': 7.29.7
error-ex: 1.3.4
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -18855,8 +11457,6 @@ snapshots:
parseurl@1.3.3: {}
- partial-json@0.1.7: {}
-
password-prompt@1.1.3:
dependencies:
ansi-escapes: 4.3.2
@@ -18864,7 +11464,7 @@ snapshots:
patch-package@8.0.1:
dependencies:
- "@yarnpkg/lockfile": 1.1.0
+ '@yarnpkg/lockfile': 1.1.0
chalk: 4.1.2
ci-info: 3.9.0
cross-spawn: 7.0.6
@@ -18897,14 +11497,8 @@ snapshots:
lru-cache: 11.5.1
minipass: 7.1.3
- path-to-regexp@8.4.2: {}
-
path-type@4.0.0: {}
- pathe@2.0.3: {}
-
- pathval@2.0.1: {}
-
picocolors@1.1.1: {}
picomatch@2.3.2: {}
@@ -18913,24 +11507,18 @@ snapshots:
pirates@4.0.7: {}
- pkce-challenge@5.0.1: {}
-
pkg-dir@4.2.0:
dependencies:
find-up: 4.1.0
- playwright-core@1.60.0: {}
-
plist@3.1.1:
dependencies:
- "@xmldom/xmldom": 0.9.10
+ '@xmldom/xmldom': 0.8.13
base64-js: 1.5.1
xmlbuilder: 15.1.1
pngjs@3.4.0: {}
- pngjs@5.0.0: {}
-
pngjs@7.0.0: {}
possible-typed-array-names@1.1.0: {}
@@ -18943,40 +11531,23 @@ snapshots:
postinstall-postinstall@2.1.0: {}
- prebuild-install@7.1.3:
- dependencies:
- detect-libc: 2.1.2
- expand-template: 2.0.3
- github-from-package: 0.0.0
- minimist: 1.2.8
- mkdirp-classic: 0.5.3
- napi-build-utils: 2.0.0
- node-abi: 3.92.0
- pump: 3.0.4
- rc: 1.2.8
- simple-get: 4.0.1
- tar-fs: 2.1.4
- tunnel-agent: 0.6.0
-
pretty-bytes@5.6.0: {}
pretty-format@29.7.0:
dependencies:
- "@jest/schemas": 29.6.3
+ '@jest/schemas': 29.6.3
ansi-styles: 5.2.0
react-is: 18.3.1
pretty-format@30.4.1:
dependencies:
- "@jest/schemas": 30.4.1
+ '@jest/schemas': 30.4.1
ansi-styles: 5.2.0
react-is-18: react-is@18.3.1
react-is-19: react-is@19.2.6
proc-log@4.2.0: {}
- process-nextick-args@2.0.1: {}
-
process@0.11.10: {}
progress@2.0.3: {}
@@ -19003,41 +11574,10 @@ snapshots:
object-assign: 4.1.1
react-is: 16.13.1
- proper-lockfile@4.1.2:
- dependencies:
- graceful-fs: 4.2.11
- retry: 0.12.0
- signal-exit: 3.0.7
-
- protobufjs@7.6.2:
- dependencies:
- "@protobufjs/aspromise": 1.1.2
- "@protobufjs/base64": 1.1.2
- "@protobufjs/codegen": 2.0.5
- "@protobufjs/eventemitter": 1.1.1
- "@protobufjs/fetch": 1.1.1
- "@protobufjs/float": 1.0.2
- "@protobufjs/inquire": 1.1.2
- "@protobufjs/path": 1.1.2
- "@protobufjs/pool": 1.1.0
- "@protobufjs/utf8": 1.1.1
- "@types/node": 22.19.19
- long: 5.3.2
-
- proxy-addr@2.0.7:
- dependencies:
- forwarded: 0.2.0
- ipaddr.js: 1.9.1
-
psl@1.15.0:
dependencies:
punycode: 2.3.1
- pump@3.0.4:
- dependencies:
- end-of-stream: 1.4.5
- once: 1.4.0
-
punycode@2.3.1: {}
pure-rand@6.1.0: {}
@@ -19054,16 +11594,6 @@ snapshots:
qrcode-terminal@0.12.0: {}
- qrcode@1.5.4:
- dependencies:
- dijkstrajs: 1.0.3
- pngjs: 5.0.0
- yargs: 15.4.1
-
- qs@6.15.2:
- dependencies:
- side-channel: 1.1.0
-
query-string@7.1.3:
dependencies:
decode-uri-component: 0.2.2
@@ -19079,21 +11609,8 @@ snapshots:
dependencies:
inherits: 2.0.4
- quickjs-wasi@3.0.0: {}
-
range-parser@1.2.1: {}
- rastermill@0.3.1:
- dependencies:
- "@silvia-odwyer/photon-node": 0.3.4
-
- raw-body@3.0.2:
- dependencies:
- bytes: 3.1.2
- http-errors: 2.0.1
- iconv-lite: 0.7.2
- unpipe: 1.0.0
-
rc@1.2.8:
dependencies:
deep-extend: 0.6.0
@@ -19103,15 +11620,15 @@ snapshots:
react-base16-styling@0.10.0:
dependencies:
- "@types/lodash": 4.17.24
+ '@types/lodash': 4.17.24
color: 4.2.3
csstype: 3.2.3
lodash-es: 4.18.1
react-base16-styling@0.8.2:
dependencies:
- "@types/base16": 1.0.5
- "@types/lodash": 4.17.24
+ '@types/base16': 1.0.5
+ '@types/lodash': 4.17.24
base16: 1.0.0
color: 3.2.1
csstype: 3.2.3
@@ -19144,7 +11661,7 @@ snapshots:
react-native-gesture-handler@2.28.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
dependencies:
- "@egjs/hammerjs": 2.0.17
+ '@egjs/hammerjs': 2.0.17
hoist-non-react-statics: 3.3.2
invariant: 2.2.4
react: 19.1.0
@@ -19203,7 +11720,7 @@ snapshots:
react-native-quick-crypto@1.0.18(expo-build-properties@55.0.14(expo@54.0.35))(expo@54.0.35)(react-native-nitro-modules@0.35.9(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-quick-base64@3.0.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
dependencies:
- "@craftzdog/react-native-buffer": 6.1.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@craftzdog/react-native-buffer': 6.1.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
events: 3.3.0
react: 19.1.0
react-native: 0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)
@@ -19219,7 +11736,7 @@ snapshots:
react-native-quick-crypto@1.1.5(expo-build-properties@55.0.14(expo@54.0.35))(expo@54.0.35)(react-native-nitro-modules@0.35.9(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-quick-base64@3.0.0(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
dependencies:
- "@craftzdog/react-native-buffer": 6.1.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@craftzdog/react-native-buffer': 6.1.2(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
events: 3.3.0
react: 19.1.0
react-native: 0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0)
@@ -19235,16 +11752,16 @@ snapshots:
react-native-reanimated@3.19.5(@babel/core@7.29.7)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
dependencies:
- "@babel/core": 7.29.7
- "@babel/plugin-transform-arrow-functions": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-class-properties": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-classes": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-nullish-coalescing-operator": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-optional-chaining": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-shorthand-properties": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-template-literals": 7.29.7(@babel/core@7.29.7)
- "@babel/plugin-transform-unicode-regex": 7.29.7(@babel/core@7.29.7)
- "@babel/preset-typescript": 7.29.7(@babel/core@7.29.7)
+ '@babel/core': 7.29.7
+ '@babel/plugin-transform-arrow-functions': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-class-properties': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-classes': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-optional-chaining': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-shorthand-properties': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-template-literals': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-unicode-regex': 7.29.7(@babel/core@7.29.7)
+ '@babel/preset-typescript': 7.29.7(@babel/core@7.29.7)
convert-source-map: 2.0.0
invariant: 2.2.4
react: 19.1.0
@@ -19277,14 +11794,14 @@ snapshots:
react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0):
dependencies:
- "@jest/create-cache-key-function": 29.7.0
- "@react-native/assets-registry": 0.81.5
- "@react-native/codegen": 0.81.5(@babel/core@7.29.7)
- "@react-native/community-cli-plugin": 0.81.5
- "@react-native/gradle-plugin": 0.81.5
- "@react-native/js-polyfills": 0.81.5
- "@react-native/normalize-colors": 0.81.5
- "@react-native/virtualized-lists": 0.81.5(@types/react@19.1.17)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ '@jest/create-cache-key-function': 29.7.0
+ '@react-native/assets-registry': 0.81.5
+ '@react-native/codegen': 0.81.5(@babel/core@7.29.7)
+ '@react-native/community-cli-plugin': 0.81.5
+ '@react-native/gradle-plugin': 0.81.5
+ '@react-native/js-polyfills': 0.81.5
+ '@react-native/normalize-colors': 0.81.5
+ '@react-native/virtualized-lists': 0.81.5(@types/react@19.1.17)(react-native@0.81.5(@babel/core@7.29.7)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
@@ -19313,11 +11830,11 @@ snapshots:
ws: 6.2.4
yargs: 17.7.2
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
transitivePeerDependencies:
- - "@babel/core"
- - "@react-native-community/cli"
- - "@react-native/metro-config"
+ - '@babel/core'
+ - '@react-native-community/cli'
+ - '@react-native/metro-config'
- bufferutil
- supports-color
- utf-8-validate
@@ -19330,7 +11847,7 @@ snapshots:
react-style-singleton: 2.2.3(@types/react@19.1.17)(react@19.1.0)
tslib: 2.8.1
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
react-remove-scroll@2.7.2(@types/react@19.1.17)(react@19.1.0):
dependencies:
@@ -19341,7 +11858,7 @@ snapshots:
use-callback-ref: 1.3.3(@types/react@19.1.17)(react@19.1.0)
use-sidecar: 1.1.3(@types/react@19.1.17)(react@19.1.0)
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
react-style-singleton@2.2.3(@types/react@19.1.17)(react@19.1.0):
dependencies:
@@ -19349,7 +11866,7 @@ snapshots:
react: 19.1.0
tslib: 2.8.1
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
react-test-renderer@19.1.0(react@19.1.0):
dependencies:
@@ -19359,21 +11876,12 @@ snapshots:
react@19.1.0: {}
- readable-stream@2.3.8:
- dependencies:
- core-util-is: 1.0.3
- inherits: 2.0.4
- isarray: 1.0.0
- process-nextick-args: 2.0.1
- safe-buffer: 5.1.2
- string_decoder: 1.1.1
- util-deprecate: 1.0.2
-
readable-stream@3.6.2:
dependencies:
inherits: 2.0.4
string_decoder: 1.3.0
util-deprecate: 1.0.2
+ optional: true
readable-stream@4.5.2:
dependencies:
@@ -19391,8 +11899,6 @@ snapshots:
process: 0.11.10
string_decoder: 1.3.0
- readdirp@5.0.0: {}
-
redent@3.0.0:
dependencies:
indent-string: 4.0.0
@@ -19431,8 +11937,6 @@ snapshots:
require-from-string@2.0.2: {}
- require-main-filename@2.0.0: {}
-
requireg@0.2.2:
dependencies:
nested-error-stacks: 2.0.1
@@ -19474,8 +11978,6 @@ snapshots:
retry@0.12.0: {}
- retry@0.13.1: {}
-
reusify@1.1.0: {}
rimraf@2.4.5:
@@ -19491,53 +11993,10 @@ snapshots:
dependencies:
glob: 10.5.0
- rollup@4.61.1:
- dependencies:
- "@types/estree": 1.0.9
- optionalDependencies:
- "@rollup/rollup-android-arm-eabi": 4.61.1
- "@rollup/rollup-android-arm64": 4.61.1
- "@rollup/rollup-darwin-arm64": 4.61.1
- "@rollup/rollup-darwin-x64": 4.61.1
- "@rollup/rollup-freebsd-arm64": 4.61.1
- "@rollup/rollup-freebsd-x64": 4.61.1
- "@rollup/rollup-linux-arm-gnueabihf": 4.61.1
- "@rollup/rollup-linux-arm-musleabihf": 4.61.1
- "@rollup/rollup-linux-arm64-gnu": 4.61.1
- "@rollup/rollup-linux-arm64-musl": 4.61.1
- "@rollup/rollup-linux-loong64-gnu": 4.61.1
- "@rollup/rollup-linux-loong64-musl": 4.61.1
- "@rollup/rollup-linux-ppc64-gnu": 4.61.1
- "@rollup/rollup-linux-ppc64-musl": 4.61.1
- "@rollup/rollup-linux-riscv64-gnu": 4.61.1
- "@rollup/rollup-linux-riscv64-musl": 4.61.1
- "@rollup/rollup-linux-s390x-gnu": 4.61.1
- "@rollup/rollup-linux-x64-gnu": 4.61.1
- "@rollup/rollup-linux-x64-musl": 4.61.1
- "@rollup/rollup-openbsd-x64": 4.61.1
- "@rollup/rollup-openharmony-arm64": 4.61.1
- "@rollup/rollup-win32-arm64-msvc": 4.61.1
- "@rollup/rollup-win32-ia32-msvc": 4.61.1
- "@rollup/rollup-win32-x64-gnu": 4.61.1
- "@rollup/rollup-win32-x64-msvc": 4.61.1
- fsevents: 2.3.3
-
- router@2.2.0:
- dependencies:
- debug: 4.4.3(supports-color@8.1.1)
- depd: 2.0.0
- is-promise: 4.0.0
- parseurl: 1.3.3
- path-to-regexp: 8.4.2
- transitivePeerDependencies:
- - supports-color
-
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
- safe-buffer@5.1.2: {}
-
safe-buffer@5.2.1: {}
safe-json-stringify@1.2.0:
@@ -19591,22 +12050,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- send@1.2.1:
- dependencies:
- debug: 4.4.3(supports-color@8.1.1)
- encodeurl: 2.0.0
- escape-html: 1.0.3
- etag: 1.8.1
- fresh: 2.0.0
- http-errors: 2.0.1
- mime-types: 3.0.2
- ms: 2.1.3
- on-finished: 2.4.1
- range-parser: 1.2.1
- statuses: 2.0.2
- transitivePeerDependencies:
- - supports-color
-
serialize-error@2.1.0: {}
serve-static@1.16.3:
@@ -19618,18 +12061,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- serve-static@2.2.1:
- dependencies:
- encodeurl: 2.0.0
- escape-html: 1.0.3
- parseurl: 1.3.3
- send: 1.2.1
- transitivePeerDependencies:
- - supports-color
-
server-only@0.0.1: {}
- set-blocking@2.0.0: {}
+ set-blocking@2.0.0:
+ optional: true
set-function-length@1.2.2:
dependencies:
@@ -19642,8 +12077,6 @@ snapshots:
set-interval-async@3.0.3: {}
- setimmediate@1.0.5: {}
-
setprototypeof@1.2.0: {}
sf-symbols-typescript@2.2.0: {}
@@ -19658,41 +12091,12 @@ snapshots:
shell-quote@1.8.4: {}
- side-channel-list@1.0.1:
- dependencies:
- es-errors: 1.3.0
- object-inspect: 1.13.4
-
- side-channel-map@1.0.1:
- dependencies:
- call-bound: 1.0.4
- es-errors: 1.3.0
- get-intrinsic: 1.3.0
- object-inspect: 1.13.4
-
- side-channel-weakmap@1.0.2:
- dependencies:
- call-bound: 1.0.4
- es-errors: 1.3.0
- get-intrinsic: 1.3.0
- object-inspect: 1.13.4
- side-channel-map: 1.0.1
-
- side-channel@1.1.0:
- dependencies:
- es-errors: 1.3.0
- object-inspect: 1.13.4
- side-channel-list: 1.0.1
- side-channel-map: 1.0.1
- side-channel-weakmap: 1.0.2
-
- siginfo@2.0.0: {}
-
signal-exit@3.0.7: {}
signal-exit@4.1.0: {}
- simple-concat@1.0.1: {}
+ simple-concat@1.0.1:
+ optional: true
simple-get@3.1.1:
dependencies:
@@ -19701,12 +12105,6 @@ snapshots:
simple-concat: 1.0.1
optional: true
- simple-get@4.0.1:
- dependencies:
- decompress-response: 6.0.0
- once: 1.4.0
- simple-concat: 1.0.1
-
simple-plist@1.3.1:
dependencies:
bplist-creator: 0.1.0
@@ -19735,7 +12133,7 @@ snapshots:
socket.io-client@4.8.3:
dependencies:
- "@socket.io/component-emitter": 3.1.2
+ '@socket.io/component-emitter': 3.1.2
debug: 4.4.3(supports-color@8.1.1)
engine.io-client: 6.6.5
socket.io-parser: 4.2.6
@@ -19746,7 +12144,7 @@ snapshots:
socket.io-parser@4.2.6:
dependencies:
- "@socket.io/component-emitter": 3.1.2
+ '@socket.io/component-emitter': 3.1.2
debug: 4.4.3(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -19773,30 +12171,6 @@ snapshots:
sprintf-js@1.0.3: {}
- sqlite-vec-darwin-arm64@0.1.9:
- optional: true
-
- sqlite-vec-darwin-x64@0.1.9:
- optional: true
-
- sqlite-vec-linux-arm64@0.1.9:
- optional: true
-
- sqlite-vec-linux-x64@0.1.9:
- optional: true
-
- sqlite-vec-windows-x64@0.1.9:
- optional: true
-
- sqlite-vec@0.1.9:
- optionalDependencies:
- sqlite-vec-darwin-arm64: 0.1.9
- sqlite-vec-darwin-x64: 0.1.9
- sqlite-vec-linux-arm64: 0.1.9
- sqlite-vec-linux-x64: 0.1.9
- sqlite-vec-windows-x64: 0.1.9
- optional: true
-
stack-generator@2.0.10:
dependencies:
stackframe: 1.3.4
@@ -19805,8 +12179,6 @@ snapshots:
dependencies:
escape-string-regexp: 2.0.0
- stackback@0.0.2: {}
-
stackframe@1.3.4: {}
stacktrace-gps@3.1.2:
@@ -19824,17 +12196,10 @@ snapshots:
dependencies:
type-fest: 0.7.1
- standardwebhooks@1.0.0:
- dependencies:
- "@stablelib/base64": 1.0.1
- fast-sha256: 1.3.0
-
statuses@1.5.0: {}
statuses@2.0.2: {}
- std-env@3.10.0: {}
-
stream-buffers@2.2.0: {}
streamx@2.26.0:
@@ -19870,10 +12235,6 @@ snapshots:
emoji-regex: 9.2.2
strip-ansi: 7.2.0
- string_decoder@1.1.1:
- dependencies:
- safe-buffer: 5.1.2
-
string_decoder@1.3.0:
dependencies:
safe-buffer: 5.2.1
@@ -19902,19 +12263,11 @@ snapshots:
strip-json-comments@3.1.1: {}
- strip-literal@3.1.0:
- dependencies:
- js-tokens: 9.0.1
-
- strtok3@10.3.5:
- dependencies:
- "@tokenizer/token": 0.3.0
-
structured-headers@0.4.1: {}
sucrase@3.35.0:
dependencies:
- "@jridgewell/gen-mapping": 0.3.13
+ '@jridgewell/gen-mapping': 0.3.13
commander: 4.1.1
glob: 10.5.0
lines-and-columns: 1.2.4
@@ -19924,7 +12277,7 @@ snapshots:
sucrase@3.35.1:
dependencies:
- "@jridgewell/gen-mapping": 0.3.13
+ '@jridgewell/gen-mapping': 0.3.13
commander: 4.1.1
lines-and-columns: 1.2.4
mz: 2.7.0
@@ -19953,21 +12306,6 @@ snapshots:
symbol-tree@3.2.4: {}
- tar-fs@2.1.4:
- dependencies:
- chownr: 1.1.4
- mkdirp-classic: 0.5.3
- pump: 3.0.4
- tar-stream: 2.2.0
-
- tar-stream@2.2.0:
- dependencies:
- bl: 4.1.0
- end-of-stream: 1.4.5
- fs-constants: 1.0.0
- inherits: 2.0.4
- readable-stream: 3.6.2
-
tar-stream@3.1.7:
dependencies:
b4a: 1.8.1
@@ -19977,18 +12315,9 @@ snapshots:
- bare-abort-controller
- react-native-b4a
- tar@7.5.13:
- dependencies:
- "@isaacs/fs-minipass": 4.0.1
- chownr: 3.0.0
- minipass: 7.1.3
- minizlib: 3.1.0
- yallist: 5.0.0
- optional: true
-
tar@7.5.15:
dependencies:
- "@isaacs/fs-minipass": 4.0.1
+ '@isaacs/fs-minipass': 4.0.1
chownr: 3.0.0
minipass: 7.1.3
minizlib: 3.1.0
@@ -20003,14 +12332,14 @@ snapshots:
terser@5.48.0:
dependencies:
- "@jridgewell/source-map": 0.3.11
+ '@jridgewell/source-map': 0.3.11
acorn: 8.16.0
commander: 2.20.3
source-map-support: 0.5.21
test-exclude@6.0.0:
dependencies:
- "@istanbuljs/schema": 0.1.6
+ '@istanbuljs/schema': 0.1.6
glob: 7.2.3
minimatch: 9.0.9
@@ -20030,23 +12359,13 @@ snapshots:
throat@5.0.0: {}
- tinybench@2.9.0: {}
-
- tinyexec@0.3.2: {}
-
tinyglobby@0.2.16:
dependencies:
fdir: 6.5.0(picomatch@4.0.4)
picomatch: 4.0.4
- tinypool@1.1.1: {}
-
tinypool@2.1.0: {}
- tinyrainbow@2.0.0: {}
-
- tinyspy@4.0.4: {}
-
tmp@0.2.7: {}
tmpl@1.0.5: {}
@@ -20057,12 +12376,6 @@ snapshots:
toidentifier@1.0.1: {}
- token-types@6.1.2:
- dependencies:
- "@borewit/text-codec": 0.2.2
- "@tokenizer/token": 0.3.0
- ieee754: 1.2.1
-
tough-cookie@4.1.4:
dependencies:
psl: 1.15.0
@@ -20076,25 +12389,18 @@ snapshots:
dependencies:
punycode: 2.3.1
- tree-sitter-bash@0.25.1:
- dependencies:
- node-addon-api: 8.8.0
- node-gyp-build: 4.8.4
-
- ts-algebra@2.0.0: {}
-
ts-deepmerge@6.2.0: {}
ts-interface-checker@0.1.13: {}
ts-node@10.9.2(@types/node@22.19.19)(typescript@5.8.3):
dependencies:
- "@cspotcode/source-map-support": 0.8.1
- "@tsconfig/node10": 1.0.12
- "@tsconfig/node12": 1.0.11
- "@tsconfig/node14": 1.0.3
- "@tsconfig/node16": 1.0.4
- "@types/node": 22.19.19
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.12
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 22.19.19
acorn: 8.16.0
acorn-walk: 8.3.5
arg: 4.1.3
@@ -20111,8 +12417,6 @@ snapshots:
tslib@2.8.1: {}
- tslog@4.10.2: {}
-
tunnel-agent@0.6.0:
dependencies:
safe-buffer: 5.2.1
@@ -20129,28 +12433,12 @@ snapshots:
type-fest@0.7.1: {}
- type-is@2.1.0:
- dependencies:
- content-type: 2.0.0
- media-typer: 1.1.0
- mime-types: 3.0.2
-
- typebox@1.1.39: {}
-
typescript@5.8.3: {}
- typescript@6.0.3: {}
-
- uhyphen@0.2.0: {}
-
- uint8array-extras@1.5.0: {}
-
undici-types@6.21.0: {}
undici@6.26.0: {}
- undici@8.3.0: {}
-
unicode-canonical-property-names-ecmascript@2.0.1: {}
unicode-match-property-ecmascript@2.0.0:
@@ -20192,7 +12480,7 @@ snapshots:
react: 19.1.0
tslib: 2.8.1
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
use-latest-callback@0.2.6(react@19.1.0):
dependencies:
@@ -20204,13 +12492,14 @@ snapshots:
react: 19.1.0
tslib: 2.8.1
optionalDependencies:
- "@types/react": 19.1.17
+ '@types/react': 19.1.17
use-sync-external-store@1.6.0(react@19.1.0):
dependencies:
react: 19.1.0
- util-deprecate@1.0.2: {}
+ util-deprecate@1.0.2:
+ optional: true
util@0.12.5:
dependencies:
@@ -20228,8 +12517,8 @@ snapshots:
v8-to-istanbul@9.3.0:
dependencies:
- "@jridgewell/trace-mapping": 0.3.31
- "@types/istanbul-lib-coverage": 2.0.6
+ '@jridgewell/trace-mapping': 0.3.31
+ '@types/istanbul-lib-coverage': 2.0.6
convert-source-map: 2.0.0
validate-npm-package-name@5.0.1: {}
@@ -20238,91 +12527,12 @@ snapshots:
vaul@1.1.2(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
dependencies:
- "@radix-ui/react-dialog": 1.1.15(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-dialog': 1.1.15(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
transitivePeerDependencies:
- - "@types/react"
- - "@types/react-dom"
-
- vite-node@3.2.4(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.30.1)(terser@5.48.0)(yaml@2.9.0):
- dependencies:
- cac: 6.7.14
- debug: 4.4.3(supports-color@8.1.1)
- es-module-lexer: 1.7.0
- pathe: 2.0.3
- vite: 7.3.5(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.30.1)(terser@5.48.0)(yaml@2.9.0)
- transitivePeerDependencies:
- - "@types/node"
- - jiti
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- - tsx
- - yaml
-
- vite@7.3.5(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.30.1)(terser@5.48.0)(yaml@2.9.0):
- dependencies:
- esbuild: 0.27.7
- fdir: 6.5.0(picomatch@4.0.4)
- picomatch: 4.0.4
- postcss: 8.5.15
- rollup: 4.61.1
- tinyglobby: 0.2.16
- optionalDependencies:
- "@types/node": 22.19.19
- fsevents: 2.3.3
- jiti: 2.7.0
- lightningcss: 1.30.1
- terser: 5.48.0
- yaml: 2.9.0
-
- vitest@3.2.6(@types/node@22.19.19)(jiti@2.7.0)(jsdom@20.0.3(canvas@2.11.2))(lightningcss@1.30.1)(terser@5.48.0)(yaml@2.9.0):
- dependencies:
- "@types/chai": 5.2.3
- "@vitest/expect": 3.2.6
- "@vitest/mocker": 3.2.6(vite@7.3.5(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.30.1)(terser@5.48.0)(yaml@2.9.0))
- "@vitest/pretty-format": 3.2.6
- "@vitest/runner": 3.2.6
- "@vitest/snapshot": 3.2.6
- "@vitest/spy": 3.2.6
- "@vitest/utils": 3.2.6
- chai: 5.3.3
- debug: 4.4.3(supports-color@8.1.1)
- expect-type: 1.3.0
- magic-string: 0.30.21
- pathe: 2.0.3
- picomatch: 4.0.4
- std-env: 3.10.0
- tinybench: 2.9.0
- tinyexec: 0.3.2
- tinyglobby: 0.2.16
- tinypool: 1.1.1
- tinyrainbow: 2.0.0
- vite: 7.3.5(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.30.1)(terser@5.48.0)(yaml@2.9.0)
- vite-node: 3.2.4(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.30.1)(terser@5.48.0)(yaml@2.9.0)
- why-is-node-running: 2.3.0
- optionalDependencies:
- "@types/node": 22.19.19
- jsdom: 20.0.3(canvas@2.11.2)
- transitivePeerDependencies:
- - jiti
- - less
- - lightningcss
- - msw
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- - tsx
- - yaml
+ - '@types/react'
+ - '@types/react-dom'
vlq@1.0.1: {}
@@ -20342,20 +12552,6 @@ snapshots:
dependencies:
defaults: 1.0.4
- web-push@3.6.7:
- dependencies:
- asn1.js: 5.4.1
- http_ece: 1.2.0
- https-proxy-agent: 7.0.6
- jws: 4.0.1
- minimist: 1.2.8
- transitivePeerDependencies:
- - supports-color
-
- web-streams-polyfill@3.3.3: {}
-
- web-tree-sitter@0.26.9: {}
-
webidl-conversions@3.0.1: {}
webidl-conversions@5.0.0: {}
@@ -20386,8 +12582,6 @@ snapshots:
tr46: 0.0.3
webidl-conversions: 3.0.1
- which-module@2.0.1: {}
-
which-typed-array@1.1.21:
dependencies:
available-typed-arrays: 1.0.7
@@ -20402,11 +12596,6 @@ snapshots:
dependencies:
isexe: 2.0.0
- why-is-node-running@2.3.0:
- dependencies:
- siginfo: 2.0.0
- stackback: 0.0.2
-
wide-align@1.1.5:
dependencies:
string-width: 4.2.3
@@ -20420,12 +12609,6 @@ snapshots:
wordwrap@1.0.0: {}
- wrap-ansi@6.2.0:
- dependencies:
- ansi-styles: 4.3.0
- string-width: 4.2.3
- strip-ansi: 6.0.1
-
wrap-ansi@7.0.0:
dependencies:
ansi-styles: 4.3.0
@@ -20483,8 +12666,6 @@ snapshots:
xmlhttprequest-ssl@2.1.2: {}
- y18n@4.0.3: {}
-
y18n@5.0.8: {}
yallist@3.1.1: {}
@@ -20495,27 +12676,8 @@ snapshots:
yaml@2.9.0: {}
- yargs-parser@18.1.3:
- dependencies:
- camelcase: 5.3.1
- decamelize: 1.2.0
-
yargs-parser@21.1.1: {}
- yargs@15.4.1:
- dependencies:
- cliui: 6.0.0
- decamelize: 1.2.0
- find-up: 4.1.0
- get-caller-file: 2.0.5
- require-directory: 2.1.1
- require-main-filename: 2.0.0
- set-blocking: 2.0.0
- string-width: 4.2.3
- which-module: 2.0.1
- y18n: 4.0.3
- yargs-parser: 18.1.3
-
yargs@17.7.2:
dependencies:
cliui: 8.0.1
@@ -20530,8 +12692,4 @@ snapshots:
yocto-queue@0.1.0: {}
- zod-to-json-schema@3.25.2(zod@4.4.3):
- dependencies:
- zod: 4.4.3
-
zod@4.4.3: {}
diff --git a/theme.ts b/theme.ts
new file mode 100644
index 0000000..a0eab81
--- /dev/null
+++ b/theme.ts
@@ -0,0 +1,253 @@
+// ─── Palette ──────────────────────────────────────────────────────────────────
+
+export const palette = {
+ blue: {
+ 100: '#e3f2fd',
+ 200: '#bfdbfe',
+ 300: '#81c0ff',
+ 400: '#4da3f7',
+ 500: '#1a73e8',
+ 600: '#3b82f6',
+ 700: '#1557b0',
+ 900: '#1c2f4d',
+ },
+ // Indigo accent + slate neutrals used by the chat timeline. Kept as their own
+ // scales (rather than folded into `blue`/`neutral`) so the chat surface can
+ // adhere to its indigo/slate look without shifting the rest of the app's
+ // google-blue theming.
+ indigo: {
+ 50: '#eef2ff',
+ 200: '#c7d2fe',
+ 300: '#a5b4fc',
+ 500: '#6366f1',
+ 700: '#4338ca',
+ 900: '#1e1b4b',
+ },
+ slate: {
+ 50: '#f8fafc',
+ 100: '#f1f5f9',
+ 200: '#e2e8f0',
+ 300: '#cbd5e1',
+ 400: '#94a3b8',
+ 500: '#64748b',
+ 800: '#1e293b',
+ 900: '#0f172a',
+ },
+ sky: {
+ 300: '#7dd3fc',
+ },
+ neutral: {
+ 0: '#ffffff',
+ 50: '#f8f9fa',
+ 100: '#f1f3f4',
+ 200: '#e8eaed',
+ 300: '#dadce0',
+ 400: '#9aa0a6',
+ 500: '#5f6368',
+ 700: '#3c4043',
+ 800: '#2d2d2d',
+ 850: '#242424',
+ 900: '#202124',
+ 925: '#1e1e1e',
+ 950: '#111111',
+ },
+ green: {
+ 400: '#5dba71',
+ 500: '#34a853',
+ 600: '#10b981',
+ },
+ red: {
+ 400: '#f28b82',
+ 500: '#ea4335',
+ 600: '#ef4444',
+ 700: '#b91c1c',
+ },
+ yellow: {
+ 100: '#fff8e1',
+ 400: '#fdd663',
+ 500: '#fbbc05',
+ },
+ black: '#000000',
+} as const;
+
+// ─── Shared Tokens ────────────────────────────────────────────────────────────
+
+export const spacing = {
+ gap: (v: number) => v * 8,
+ xs: 4,
+ sm: 8,
+ md: 12,
+ base: 16,
+ lg: 20,
+ xl: 24,
+} as const;
+
+export const borderRadius = {
+ xs: 4,
+ sm: 8,
+ md: 12,
+ lg: 16,
+ xl: 20,
+ full: 9999,
+} as const;
+
+export const typography = {
+ fonts: {
+ regular: 'PlusJakartaSans-Regular',
+ medium: 'PlusJakartaSans-Medium',
+ semiBold: 'PlusJakartaSans-SemiBold',
+ bold: 'PlusJakartaSans-Bold',
+ },
+ sizes: {
+ xs: 9,
+ sm: 11,
+ md: 13,
+ base: 14,
+ lg: 17,
+ xl: 18,
+ },
+ lineHeights: {
+ tight: 1.2,
+ normal: 1.4,
+ relaxed: 1.6,
+ },
+ weights: {
+ regular: '400' as const,
+ medium: '500' as const,
+ semiBold: '600' as const,
+ bold: '700' as const,
+ },
+} as const;
+
+export const shadows = {
+ sm: {
+ shadowColor: palette.black,
+ shadowOffset: { width: 0, height: 1 },
+ shadowOpacity: 0.08,
+ shadowRadius: 2,
+ elevation: 1,
+ },
+ md: {
+ shadowColor: palette.black,
+ shadowOffset: { width: 0, height: 2 },
+ shadowOpacity: 0.15,
+ shadowRadius: 6,
+ elevation: 3,
+ },
+ lg: {
+ shadowColor: palette.black,
+ shadowOffset: { width: 0, height: 4 },
+ shadowOpacity: 0.2,
+ shadowRadius: 12,
+ elevation: 6,
+ },
+ primary: {
+ shadowColor: palette.blue[500],
+ shadowOffset: { width: 0, height: 2 },
+ shadowOpacity: 0.3,
+ shadowRadius: 6,
+ elevation: 3,
+ },
+} as const;
+
+// ─── Colors (Light Theme) ─────────────────────────────────────────────────────
+
+export const colors = {
+ brand: {
+ primary: palette.blue[500],
+ hover: palette.blue[700],
+ soft: palette.blue[100],
+ },
+ fg: {
+ default: palette.neutral[900],
+ muted: palette.neutral[500],
+ inverse: palette.neutral[0],
+ onLight: palette.neutral[950],
+ primary: palette.blue[500],
+ success: palette.green[500],
+ danger: palette.red[500],
+ warning: palette.yellow[500],
+ },
+ bg: {
+ app: palette.neutral[100],
+ surface: palette.neutral[0],
+ white: palette.neutral[0],
+ chat: palette.neutral[50],
+ dark: palette.neutral[950],
+ darkAlt: palette.neutral[900],
+ header: palette.neutral[950],
+ bubbleUser: palette.blue[100],
+ bubbleBot: palette.neutral[0],
+ },
+ border: {
+ default: palette.neutral[300],
+ },
+ state: {
+ success: palette.green[500],
+ danger: palette.red[500],
+ warning: palette.yellow[500],
+ },
+ // ─── Chat surface ─────────────────────────────────────────────────────────
+ // Semantic tokens for the chat timeline. Components read these names instead
+ // of raw hex so the conversation UI stays themeable in one place.
+ chat: {
+ accent: palette.indigo[500],
+ accentMuted: palette.indigo[300],
+ appBg: palette.slate[50],
+ divider: palette.slate[200],
+ // Message bubbles
+ bubbleMe: palette.blue[600],
+ bubbleMeText: palette.neutral[0],
+ bubblePeer: palette.slate[200],
+ bubblePeerText: palette.slate[800],
+ timestamp: 'rgba(0,0,0,0.5)',
+ timestampInverse: 'rgba(255,255,255,0.7)',
+ // Composer
+ inputBg: palette.slate[100],
+ inputText: palette.slate[800],
+ placeholder: palette.slate[400],
+ sendBg: palette.blue[600],
+ sendDisabled: palette.slate[300],
+ // Tool-activity card (dark)
+ toolBg: palette.slate[900],
+ toolBorder: palette.slate[800],
+ toolName: palette.indigo[300],
+ toolCommand: palette.sky[300],
+ toolOutput: palette.slate[300],
+ toolMeta: palette.slate[500],
+ // AC2 protocol card
+ ac2Surface: palette.indigo[50],
+ ac2Border: palette.indigo[200],
+ ac2Title: palette.indigo[700],
+ ac2Text: palette.indigo[900],
+ // Thread switcher chips
+ chipBg: palette.indigo[50],
+ chipBorder: palette.indigo[200],
+ chipActiveBg: palette.indigo[500],
+ chipText: palette.indigo[700],
+ chipTextActive: palette.neutral[0],
+ newChipBg: '#f8faff',
+ newChipBorder: palette.blue[200],
+ newChipText: palette.blue[600],
+ // Status / header
+ approve: palette.green[600],
+ reject: palette.red[600],
+ expired: palette.red[700],
+ actioned: palette.slate[500],
+ heartbeat: palette.green[600],
+ headerBack: palette.blue[600],
+ headerClear: palette.slate[500],
+ headerDisconnect: palette.red[600],
+ },
+} as const;
+
+// ─── Default Export ───────────────────────────────────────────────────────────
+
+export const theme = {
+ palette,
+ colors,
+ spacing,
+ borderRadius,
+ typography,
+ shadows,
+} as const;