row_id
int64
0
37.6k
type
stringclasses
13 values
text
stringlengths
1
5.72M
531
tab
import React, { useRef, useEffect, useCallback } from "react";\nimport {\n StyleSheet,\n View,\n Animated,\n TouchableOpacity,\n Text,\n Alert,\n Easing,\n} from "react-native";\nimport {\n useAudioRecorder,\n useAudioPlayer,\n RecordingPresets,\n AudioModule,\n useAudioPlayerStatus,\n useAudioRecorderState\n} from "expo-audio";\nimport { AudioButtonMode } from "@/lib/types";\nimport { [HIGH_ENTROPY] } from "@/lib/constants";\n\ninterface AudioButtonProps {\n mode: AudioButtonMode;\n audioUri?: string;\n onAudioReady?: (uri: string) => void;\n size?: number;\n showTimer?: boolean;\n}\n\nconst AudioButton: React.FC<AudioButtonProps> = ({\n mode,\n audioUri,\n onAudioReady,\n size = 200,\n showTimer = false,\n}) => {\n const redDotScale = useRef(new Animated.Value(1)).current;\n\n const recorder = useAudioRecorder({\n ...RecordingPresets.HIGH_QUALITY,\n isMeteringEnabled: true,\n });\n\n const recorderState = useAudioRecorderState(recorder);\n const player = useAudioPlayer(audioUri);\n const playerStatus = useAudioPlayerStatus(player);\n\n useEffect(() => {\n (async () => {\n try {\n console.log('Requesting audio recording permissions...');\n const status = await AudioModule.requestRecordingPermissionsAsync();\n console.log('Permission status:', status);\n if (!status.granted) {\n console.log('Microphone permission denied');\n Alert.alert("Permission to access microphone was denied");\n } else {\n console.log('Microphone permission granted');\n }\n } catch (error) {\n console.error('Error requesting permissions:', error);\n Alert.alert("Error", "Failed to request microphone permission");\n }\n })();\n }, []);\n\n useEffect(() => {\n if (recorderState?.isRecording) {\n Animated.timing(redDotScale, {\n toValue: 2.5,\n duration: 300,\n easing: Easing.out(Easing.quad),\n useNativeDriver: true,\n }).start();\n } else {\n Animated.timing(redDotScale, {\n toValue: 1,\n duration: 300,\n easing: Easing.out(Easing.quad),\n useNativeDriver: true,\n }).start();\n }\n }, [recorderState?.isRecording]);\n\n const formatTime = (timeInSeconds: number) => {\n const minutes = Math.floor(timeInSeconds / 60);\n const seconds = Math.floor(timeInSeconds % 60);\n return `${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`;\n };\n\n const startRecording = useCallback(async () => {\n try {\n await recorder.prepareToRecordAsync();\n recorder.record();\n } catch (err) {\n console.error("Failed to start recording", err);\n Alert.alert("Error", "Failed to start recording");\n }\n }, [recorder]);\n\n const stopRecording = useCallback(async () => {\n try {\n await recorder.stop();\n\n if (recorder.uri && onAudioReady) {\n onAudioReady(recorder.uri);\n }\n } catch (err) {\n console.error("Failed to stop recording", err);\n Alert.alert("Error", "Failed to stop recording");\n }\n }, [recorder, onAudioReady]);\n\n const playSound = useCallback(() => {\n if (player) {\n if (player.duration - player.currentTime < 0.5) {\n player.seekTo(0);\n player.play();\n } else {\n player.play();\n }\n }\n }, [player]);\n\n const stopSound = useCallback(() => {\n if (player) {\n player.pause();\n }\n }, [player]);\n\n const onPressIn = () => {\n if (mode === [HIGH_ENTROPY].RECORD && !recorderState?.isRecording) {\n startRecording();\n }\n };\n\n const onPressOut = () => {\n if (mode === [HIGH_ENTROPY].RECORD && recorderState?.isRecording) {\n stopRecording();\n } else if (mode === [HIGH_ENTROPY].PLAY) {\n handlePlayToggle();\n }\n };\n\n const handlePlayToggle = () => {\n if (mode === [HIGH_ENTROPY].PLAY) {\n if (playerStatus?.playing) {\n stopSound();\n } else {\n playSound();\n }\n }\n };\n\n const getCurrentTime = () => {\n if (mode === [HIGH_ENTROPY].RECORD) {\n return recorderState?.durationMillis / 1000 || 0;\n }\n return playerStatus?.currentTime || 0;\n };\n\n const getDuration = () => {\n return playerStatus?.duration || 0;\n };\n\n return (\n <View style={styles.container}>\n {showTimer && (\n <Text style={styles.timerText}>\n {formatTime(getCurrentTime())}\n {getDuration() > 0 && mode === "play" && ` / ${formatTime(getDuration())}`}\n </Text>\n )}\n\n {mode === [HIGH_ENTROPY].PLAY && (\n <Text style={styles.instructionText}>\n {playerStatus?.playing ? "Tap to pause" : "Tap to play"}\n </Text>\n )}\n {mode === [HIGH_ENTROPY].RECORD && (\n <Text style={styles.instructionText}>\n {recorderState?.isRecording ? "Release to stop" : "Press and hold to record"}\n </Text>\n )}\n\n <View\n style={[\n styles.circleContainer,\n { width: size, height: size },\n ]}\n >\n <TouchableOpacity\n activeOpacity={0.7}\n onPressIn={onPressIn}\n onPressOut={onPressOut}\n style={[styles.circle, { width: size, height: size, borderRadius: size / 2 }]}\n >\n {mode === [HIGH_ENTROPY].RECORD ? (\n <Animated.View\n style={[\n styles.redDot,\n {\n width: size * 0.2,\n height: size * 0.2,\n borderRadius: size * 0.1,\n transform: [{ scale: redDotScale }]\n }\n ]}\n />\n ) : (\n <View style={playerStatus?.playing ? styles.pauseContainer : styles.triangle}>\n {playerStatus?.playing ? (\n <View style={styles.pauseContainer}>\n <View style={styles.pauseBar} />\n <View style={styles.pauseBar} />\n </View>\n ) : null}\n </View>\n )}\n </TouchableOpacity>\n </View>\n </View>\n );\n};\n\nconst styles = StyleSheet.create({\n container: {\n alignItems: "center",\n justifyContent: "center",\n },\n circleContainer: {\n alignItems: "center",\n justifyContent: "center",\n },\n circle: {\n backgroundColor: "#FFF",\n shadowColor: "#000",\n shadowOffset: { width: 0, height: 4 },\n shadowOpacity: 0.3,\n shadowRadius: 6,\n elevation: 8,\n alignItems: "center",\n justifyContent: "center",\n },\n redDot: {\n backgroundColor: "#CC0000",\n },\n triangle: {\n width: 0,\n height: 0,\n backgroundColor: "transparent",\n borderStyle: "solid",\n borderTopWidth: 25,\n borderBottomWidth: 25,\n borderLeftWidth: 36,\n borderTopColor: "transparent",\n borderBottomColor: "transparent",\n borderLeftColor: "#CC0000",\n marginLeft: 6,\n },\n pauseContainer: {\n flexDirection: "row",\n justifyContent: "center",\n alignItems: "center",\n gap: 6,\n },\n pauseBar: {\n width: 6,\n height: 28,\n backgroundColor: "#CC0000",\n borderRadius: 2,\n marginHorizontal: 2,\n },\n timerText: {\n fontSize: 18,\n fontWeight: "600",\n marginBottom: 10,\n color: "#333",\n },\n instructionText: {\n fontSize: 14,\n color: "#777",\n marginBottom: 12,\n },\n});\n\nexport default AudioButton;\n
532
selection_command
null
533
content
const status = await AudioModule.requestRecordingPermissionsAsync();\n if (!status.granted) {\n Alert.alert("Permission to access microphone was denied");
534
content
import React, { useRef, useEffect, useCallback } from "react";\nimport {\n StyleSheet,\n View,\n Animated,\n TouchableOpacity,\n Text,\n Alert,\n Easing,\n} from "react-native";\nimport {\n useAudioRecorder,\n useAudioPlayer,\n RecordingPresets,\n AudioModule,\n useAudioPlayerStatus,\n useAudioRecorderState\n} from "expo-audio";\nimport { AudioButtonMode } from "@/lib/types";\nimport { [HIGH_ENTROPY] } from "@/lib/constants";\n\ninterface AudioButtonProps {\n mode: AudioButtonMode;\n audioUri?: string;\n onAudioReady?: (uri: string) => void;\n size?: number;\n showTimer?: boolean;\n}\n\nconst AudioButton: React.FC<AudioButtonProps> = ({\n mode,\n audioUri,\n onAudioReady,\n size = 200,\n showTimer = false,\n}) => {\n const redDotScale = useRef(new Animated.Value(1)).current;\n\n const recorder = useAudioRecorder({\n ...RecordingPresets.HIGH_QUALITY,\n isMeteringEnabled: true,\n });\n\n const recorderState = useAudioRecorderState(recorder);\n const player = useAudioPlayer(audioUri);\n const playerStatus = useAudioPlayerStatus(player);\n\n useEffect(() => {\n (async () => {\n try {\n console.log('Requesting audio recording permissions...');\n const status = await AudioModule.requestRecordingPermissionsAsync();\n console.log('Permission status:', status);\n if (!status.granted) {\n console.log('Microphone permission denied');\n Alert.alert("Permission to access microphone was denied");\n } else {\n console.log('Microphone permission granted');\n }\n } catch (error) {\n console.error('Error requesting permissions:', error);\n Alert.alert("Error", "Failed to request microphone permission");\n }\n })();\n }, []);\n\n useEffect(() => {\n if (recorderState?.isRecording) {\n Animated.timing(redDotScale, {\n toValue: 2.5,\n duration: 300,\n easing: Easing.out(Easing.quad),\n useNativeDriver: true,\n }).start();\n } else {\n Animated.timing(redDotScale, {\n toValue: 1,\n duration: 300,\n easing: Easing.out(Easing.quad),\n useNativeDriver: true,\n }).start();\n }\n }, [recorderState?.isRecording]);\n\n const formatTime = (timeInSeconds: number) => {\n const minutes = Math.floor(timeInSeconds / 60);\n const seconds = Math.floor(timeInSeconds % 60);\n return `${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`;\n };\n\n const startRecording = useCallback(async () => {\n try {\n await recorder.prepareToRecordAsync();\n recorder.record();\n } catch (err) {\n console.error("Failed to start recording", err);\n Alert.alert("Error", "Failed to start recording");\n }\n }, [recorder]);\n\n const stopRecording = useCallback(async () => {\n try {\n await recorder.stop();\n\n if (recorder.uri && onAudioReady) {\n onAudioReady(recorder.uri);\n }\n } catch (err) {\n console.error("Failed to stop recording", err);\n Alert.alert("Error", "Failed to stop recording");\n }\n }, [recorder, onAudioReady]);\n\n const playSound = useCallback(() => {\n if (player) {\n if (player.duration - player.currentTime < 0.5) {\n player.seekTo(0);\n player.play();\n } else {\n player.play();\n }\n }\n }, [player]);\n\n const stopSound = useCallback(() => {\n if (player) {\n player.pause();\n }\n }, [player]);\n\n const onPressIn = () => {\n if (mode === [HIGH_ENTROPY].RECORD && !recorderState?.isRecording) {\n startRecording();\n }\n };\n\n const onPressOut = () => {\n if (mode === [HIGH_ENTROPY].RECORD && recorderState?.isRecording) {\n stopRecording();\n } else if (mode === [HIGH_ENTROPY].PLAY) {\n handlePlayToggle();\n }\n };\n\n const handlePlayToggle = () => {\n if (mode === [HIGH_ENTROPY].PLAY) {\n if (playerStatus?.playing) {\n stopSound();\n } else {\n playSound();\n }\n }\n };\n\n const getCurrentTime = () => {\n if (mode === [HIGH_ENTROPY].RECORD) {\n return recorderState?.durationMillis / 1000 || 0;\n }\n return playerStatus?.currentTime || 0;\n };\n\n const getDuration = () => {\n return playerStatus?.duration || 0;\n };\n\n return (\n <View style={styles.container}>\n {showTimer && (\n <Text style={styles.timerText}>\n {formatTime(getCurrentTime())}\n {getDuration() > 0 && mode === "play" && ` / ${formatTime(getDuration())}`}\n </Text>\n )}\n\n {mode === [HIGH_ENTROPY].PLAY && (\n <Text style={styles.instructionText}>\n {playerStatus?.playing ? "Tap to pause" : "Tap to play"}\n </Text>\n )}\n {mode === [HIGH_ENTROPY].RECORD && (\n <Text style={styles.instructionText}>\n {recorderState?.isRecording ? "Release to stop" : "Press and hold to record"}\n </Text>\n )}\n\n <View\n style={[\n styles.circleContainer,\n { width: size, height: size },\n ]}\n >\n <TouchableOpacity\n activeOpacity={0.7}\n onPressIn={onPressIn}\n onPressOut={onPressOut}\n style={[styles.circle, { width: size, height: size, borderRadius: size / 2 }]}\n >\n {mode === [HIGH_ENTROPY].RECORD ? (\n <Animated.View\n style={[\n styles.redDot,\n {\n width: size * 0.2,\n height: size * 0.2,\n borderRadius: size * 0.1,\n transform: [{ scale: redDotScale }]\n }\n ]}\n />\n ) : (\n <View style={playerStatus?.playing ? styles.pauseContainer : styles.triangle}>\n {playerStatus?.playing ? (\n <View style={styles.pauseContainer}>\n <View style={styles.pauseBar} />\n <View style={styles.pauseBar} />\n </View>\n ) : null}\n </View>\n )}\n </TouchableOpacity>\n </View>\n </View>\n );\n};\n\nconst styles = StyleSheet.create({\n container: {\n alignItems: "center",\n justifyContent: "center",\n },\n circleContainer: {\n alignItems: "center",\n justifyContent: "center",\n },\n circle: {\n backgroundColor: "#FFF",\n shadowColor: "#000",\n shadowOffset: { width: 0, height: 4 },\n shadowOpacity: 0.3,\n shadowRadius: 6,\n elevation: 8,\n alignItems: "center",\n justifyContent: "center",\n },\n redDot: {\n backgroundColor: "#CC0000",\n },\n triangle: {\n width: 0,\n height: 0,\n backgroundColor: "transparent",\n borderStyle: "solid",\n borderTopWidth: 25,\n borderBottomWidth: 25,\n borderLeftWidth: 36,\n borderTopColor: "transparent",\n borderBottomColor: "transparent",\n borderLeftColor: "#CC0000",\n marginLeft: 6,\n },\n pauseContainer: {\n flexDirection: "row",\n justifyContent: "center",\n alignItems: "center",\n gap: 6,\n },\n pauseBar: {\n width: 6,\n height: 28,\n backgroundColor: "#CC0000",\n borderRadius: 2,\n marginHorizontal: 2,\n },\n timerText: {\n fontSize: 18,\n fontWeight: "600",\n marginBottom: 10,\n color: "#333",\n },\n instructionText: {\n fontSize: 14,\n color: "#777",\n marginBottom: 12,\n },\n});\n\nexport default AudioButton;\n
535
content
}, [recorder, recorderState]);
536
content
Alert.alert("Error", `Failed to start recording: ${err.message || err}`);
537
content
console.log('Recording started');\n
538
content
console.log('Recorder prepared successfully');\n
539
content
console.log('Starting recording process...');\n console.log('Recorder state before start:', recorderState);\n
540
content
}, [recorder]);
541
content
Alert.alert("Error", "Failed to start recording");
542
content
null
543
content
null
544
content
null
545
content
import React, { useRef, useEffect, useCallback } from "react";\nimport {\n StyleSheet,\n View,\n Animated,\n TouchableOpacity,\n Text,\n Alert,\n Easing,\n} from "react-native";\nimport {\n useAudioRecorder,\n useAudioPlayer,\n RecordingPresets,\n AudioModule,\n useAudioPlayerStatus,\n useAudioRecorderState\n} from "expo-audio";\nimport { AudioButtonMode } from "@/lib/types";\nimport { [HIGH_ENTROPY] } from "@/lib/constants";\n\ninterface AudioButtonProps {\n mode: AudioButtonMode;\n audioUri?: string;\n onAudioReady?: (uri: string) => void;\n size?: number;\n showTimer?: boolean;\n}\n\nconst AudioButton: React.FC<AudioButtonProps> = ({\n mode,\n audioUri,\n onAudioReady,\n size = 200,\n showTimer = false,\n}) => {\n const redDotScale = useRef(new Animated.Value(1)).current;\n\n const recorder = useAudioRecorder({\n ...RecordingPresets.HIGH_QUALITY,\n isMeteringEnabled: true,\n });\n\n const recorderState = useAudioRecorderState(recorder);\n const player = useAudioPlayer(audioUri);\n const playerStatus = useAudioPlayerStatus(player);\n\n useEffect(() => {\n (async () => {\n const status = await AudioModule.requestRecordingPermissionsAsync();\n if (!status.granted) {\n Alert.alert("Permission to access microphone was denied");\n }\n })();\n }, []);\n\n useEffect(() => {\n if (recorderState?.isRecording) {\n Animated.timing(redDotScale, {\n toValue: 2.5,\n duration: 300,\n easing: Easing.out(Easing.quad),\n useNativeDriver: true,\n }).start();\n } else {\n Animated.timing(redDotScale, {\n toValue: 1,\n duration: 300,\n easing: Easing.out(Easing.quad),\n useNativeDriver: true,\n }).start();\n }\n }, [recorderState?.isRecording]);\n\n const formatTime = (timeInSeconds: number) => {\n const minutes = Math.floor(timeInSeconds / 60);\n const seconds = Math.floor(timeInSeconds % 60);\n return `${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`;\n };\n\n const startRecording = useCallback(async () => {\n try {\n await recorder.prepareToRecordAsync();\n recorder.record();\n } catch (err) {\n console.error("Failed to start recording", err);\n Alert.alert("Error", "Failed to start recording");\n }\n }, [recorder]);\n\n const stopRecording = useCallback(async () => {\n try {\n await recorder.stop();\n\n if (recorder.uri && onAudioReady) {\n onAudioReady(recorder.uri);\n }\n } catch (err) {\n console.error("Failed to stop recording", err);\n Alert.alert("Error", "Failed to stop recording");\n }\n }, [recorder, onAudioReady]);\n\n const playSound = useCallback(() => {\n if (player) {\n if (player.duration - player.currentTime < 0.5) {\n player.seekTo(0);\n player.play();\n } else {\n player.play();\n }\n }\n }, [player]);\n\n const stopSound = useCallback(() => {\n if (player) {\n player.pause();\n }\n }, [player]);\n\n const onPressIn = () => {\n if (mode === [HIGH_ENTROPY].RECORD && !recorderState?.isRecording) {\n startRecording();\n }\n };\n\n const onPressOut = () => {\n if (mode === [HIGH_ENTROPY].RECORD && recorderState?.isRecording) {\n stopRecording();\n } else if (mode === [HIGH_ENTROPY].PLAY) {\n handlePlayToggle();\n }\n };\n\n const handlePlayToggle = () => {\n if (mode === [HIGH_ENTROPY].PLAY) {\n if (playerStatus?.playing) {\n stopSound();\n } else {\n playSound();\n }\n }\n };\n\n const getCurrentTime = () => {\n if (mode === [HIGH_ENTROPY].RECORD) {\n return recorderState?.durationMillis / 1000 || 0;\n }\n return playerStatus?.currentTime || 0;\n };\n\n const getDuration = () => {\n return playerStatus?.duration || 0;\n };\n\n return (\n <View style={styles.container}>\n {showTimer && (\n <Text style={styles.timerText}>\n {formatTime(getCurrentTime())}\n {getDuration() > 0 && mode === "play" && ` / ${formatTime(getDuration())}`}\n </Text>\n )}\n\n {mode === [HIGH_ENTROPY].PLAY && (\n <Text style={styles.instructionText}>\n {playerStatus?.playing ? "Tap to pause" : "Tap to play"}\n </Text>\n )}\n {mode === [HIGH_ENTROPY].RECORD && (\n <Text style={styles.instructionText}>\n {recorderState?.isRecording ? "Release to stop" : "Press and hold to record"}\n </Text>\n )}\n\n <View\n style={[\n styles.circleContainer,\n { width: size, height: size },\n ]}\n >\n <TouchableOpacity\n activeOpacity={0.7}\n onPressIn={onPressIn}\n onPressOut={onPressOut}\n style={[styles.circle, { width: size, height: size, borderRadius: size / 2 }]}\n >\n {mode === [HIGH_ENTROPY].RECORD ? (\n <Animated.View\n style={[\n styles.redDot,\n {\n width: size * 0.2,\n height: size * 0.2,\n borderRadius: size * 0.1,\n transform: [{ scale: redDotScale }]\n }\n ]}\n />\n ) : (\n <View style={playerStatus?.playing ? styles.pauseContainer : styles.triangle}>\n {playerStatus?.playing ? (\n <View style={styles.pauseContainer}>\n <View style={styles.pauseBar} />\n <View style={styles.pauseBar} />\n </View>\n ) : null}\n </View>\n )}\n </TouchableOpacity>\n </View>\n </View>\n );\n};\n\nconst styles = StyleSheet.create({\n container: {\n alignItems: "center",\n justifyContent: "center",\n },\n circleContainer: {\n alignItems: "center",\n justifyContent: "center",\n },\n circle: {\n backgroundColor: "#FFF",\n shadowColor: "#000",\n shadowOffset: { width: 0, height: 4 },\n shadowOpacity: 0.3,\n shadowRadius: 6,\n elevation: 8,\n alignItems: "center",\n justifyContent: "center",\n },\n redDot: {\n backgroundColor: "#CC0000",\n },\n triangle: {\n width: 0,\n height: 0,\n backgroundColor: "transparent",\n borderStyle: "solid",\n borderTopWidth: 25,\n borderBottomWidth: 25,\n borderLeftWidth: 36,\n borderTopColor: "transparent",\n borderBottomColor: "transparent",\n borderLeftColor: "#CC0000",\n marginLeft: 6,\n },\n pauseContainer: {\n flexDirection: "row",\n justifyContent: "center",\n alignItems: "center",\n gap: 6,\n },\n pauseBar: {\n width: 6,\n height: 28,\n backgroundColor: "#CC0000",\n borderRadius: 2,\n marginHorizontal: 2,\n },\n timerText: {\n fontSize: 18,\n fontWeight: "600",\n marginBottom: 10,\n color: "#333",\n },\n instructionText: {\n fontSize: 14,\n color: "#777",\n marginBottom: 12,\n },\n});\n\nexport default AudioButton;\n
546
content
}, [recorder, recorderState]);
547
content
Alert.alert("Error", `Failed to start recording: ${err.message || err}`);
548
content
console.log('Recording started');\n
549
content
console.log('Recorder prepared successfully');\n
550
content
console.log('Starting recording process...');\n console.log('Recorder state before start:', recorderState);\n
551
content
try {\n console.log('Requesting audio recording permissions...');\n const status = await AudioModule.requestRecordingPermissionsAsync();\n console.log('Permission status:', status);\n if (!status.granted) {\n console.log('Microphone permission denied');\n Alert.alert("Permission to access microphone was denied");\n } else {\n console.log('Microphone permission granted');\n }\n } catch (error) {\n console.error('Error requesting permissions:', error);\n Alert.alert("Error", "Failed to request microphone permission");
552
content
}, [recorder]);
553
content
Alert.alert("Error", "Failed to start recording");
554
content
null
555
content
null
556
content
null
557
content
const status = await AudioModule.requestRecordingPermissionsAsync();\n if (!status.granted) {\n Alert.alert("Permission to access microphone was denied");
558
content
import React, { useRef, useEffect, useCallback } from "react";\nimport {\n StyleSheet,\n View,\n Animated,\n TouchableOpacity,\n Text,\n Alert,\n Easing,\n} from "react-native";\nimport {\n useAudioRecorder,\n useAudioPlayer,\n RecordingPresets,\n AudioModule,\n useAudioPlayerStatus,\n useAudioRecorderState\n} from "expo-audio";\nimport { AudioButtonMode } from "@/lib/types";\nimport { [HIGH_ENTROPY] } from "@/lib/constants";\n\ninterface AudioButtonProps {\n mode: AudioButtonMode;\n audioUri?: string;\n onAudioReady?: (uri: string) => void;\n size?: number;\n showTimer?: boolean;\n}\n\nconst AudioButton: React.FC<AudioButtonProps> = ({\n mode,\n audioUri,\n onAudioReady,\n size = 200,\n showTimer = false,\n}) => {\n const redDotScale = useRef(new Animated.Value(1)).current;\n\n const recorder = useAudioRecorder({\n ...RecordingPresets.HIGH_QUALITY,\n isMeteringEnabled: true,\n });\n\n const recorderState = useAudioRecorderState(recorder);\n const player = useAudioPlayer(audioUri);\n const playerStatus = useAudioPlayerStatus(player);\n\n useEffect(() => {\n (async () => {\n try {\n console.log('Requesting audio recording permissions...');\n const status = await AudioModule.requestRecordingPermissionsAsync();\n console.log('Permission status:', status);\n if (!status.granted) {\n console.log('Microphone permission denied');\n Alert.alert("Permission to access microphone was denied");\n } else {\n console.log('Microphone permission granted');\n }\n } catch (error) {\n console.error('Error requesting permissions:', error);\n Alert.alert("Error", "Failed to request microphone permission");\n }\n })();\n }, []);\n\n useEffect(() => {\n if (recorderState?.isRecording) {\n Animated.timing(redDotScale, {\n toValue: 2.5,\n duration: 300,\n easing: Easing.out(Easing.quad),\n useNativeDriver: true,\n }).start();\n } else {\n Animated.timing(redDotScale, {\n toValue: 1,\n duration: 300,\n easing: Easing.out(Easing.quad),\n useNativeDriver: true,\n }).start();\n }\n }, [recorderState?.isRecording]);\n\n const formatTime = (timeInSeconds: number) => {\n const minutes = Math.floor(timeInSeconds / 60);\n const seconds = Math.floor(timeInSeconds % 60);\n return `${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`;\n };\n\n const startRecording = useCallback(async () => {\n try {\n console.log('Starting recording process...');\n console.log('Recorder state before start:', recorderState);\n await recorder.prepareToRecordAsync();\n console.log('Recorder prepared successfully');\n recorder.record();\n console.log('Recording started');\n } catch (err) {\n console.error("Failed to start recording", err);\n Alert.alert("Error", `Failed to start recording: ${err.message || err}`);\n }\n }, [recorder, recorderState]);\n\n const stopRecording = useCallback(async () => {\n try {\n await recorder.stop();\n\n if (recorder.uri && onAudioReady) {\n onAudioReady(recorder.uri);\n }\n } catch (err) {\n console.error("Failed to stop recording", err);\n Alert.alert("Error", "Failed to stop recording");\n }\n }, [recorder, onAudioReady]);\n\n const playSound = useCallback(() => {\n if (player) {\n if (player.duration - player.currentTime < 0.5) {\n player.seekTo(0);\n player.play();\n } else {\n player.play();\n }\n }\n }, [player]);\n\n const stopSound = useCallback(() => {\n if (player) {\n player.pause();\n }\n }, [player]);\n\n const onPressIn = () => {\n if (mode === [HIGH_ENTROPY].RECORD && !recorderState?.isRecording) {\n startRecording();\n }\n };\n\n const onPressOut = () => {\n if (mode === [HIGH_ENTROPY].RECORD && recorderState?.isRecording) {\n stopRecording();\n } else if (mode === [HIGH_ENTROPY].PLAY) {\n handlePlayToggle();\n }\n };\n\n const handlePlayToggle = () => {\n if (mode === [HIGH_ENTROPY].PLAY) {\n if (playerStatus?.playing) {\n stopSound();\n } else {\n playSound();\n }\n }\n };\n\n const getCurrentTime = () => {\n if (mode === [HIGH_ENTROPY].RECORD) {\n return recorderState?.durationMillis / 1000 || 0;\n }\n return playerStatus?.currentTime || 0;\n };\n\n const getDuration = () => {\n return playerStatus?.duration || 0;\n };\n\n return (\n <View style={styles.container}>\n {showTimer && (\n <Text style={styles.timerText}>\n {formatTime(getCurrentTime())}\n {getDuration() > 0 && mode === "play" && ` / ${formatTime(getDuration())}`}\n </Text>\n )}\n\n {mode === [HIGH_ENTROPY].PLAY && (\n <Text style={styles.instructionText}>\n {playerStatus?.playing ? "Tap to pause" : "Tap to play"}\n </Text>\n )}\n {mode === [HIGH_ENTROPY].RECORD && (\n <Text style={styles.instructionText}>\n {recorderState?.isRecording ? "Release to stop" : "Press and hold to record"}\n </Text>\n )}\n\n <View\n style={[\n styles.circleContainer,\n { width: size, height: size },\n ]}\n >\n <TouchableOpacity\n activeOpacity={0.7}\n onPressIn={onPressIn}\n onPressOut={onPressOut}\n style={[styles.circle, { width: size, height: size, borderRadius: size / 2 }]}\n >\n {mode === [HIGH_ENTROPY].RECORD ? (\n <Animated.View\n style={[\n styles.redDot,\n {\n width: size * 0.2,\n height: size * 0.2,\n borderRadius: size * 0.1,\n transform: [{ scale: redDotScale }]\n }\n ]}\n />\n ) : (\n <View style={playerStatus?.playing ? styles.pauseContainer : styles.triangle}>\n {playerStatus?.playing ? (\n <View style={styles.pauseContainer}>\n <View style={styles.pauseBar} />\n <View style={styles.pauseBar} />\n </View>\n ) : null}\n </View>\n )}\n </TouchableOpacity>\n </View>\n </View>\n );\n};\n\nconst styles = StyleSheet.create({\n container: {\n alignItems: "center",\n justifyContent: "center",\n },\n circleContainer: {\n alignItems: "center",\n justifyContent: "center",\n },\n circle: {\n backgroundColor: "#FFF",\n shadowColor: "#000",\n shadowOffset: { width: 0, height: 4 },\n shadowOpacity: 0.3,\n shadowRadius: 6,\n elevation: 8,\n alignItems: "center",\n justifyContent: "center",\n },\n redDot: {\n backgroundColor: "#CC0000",\n },\n triangle: {\n width: 0,\n height: 0,\n backgroundColor: "transparent",\n borderStyle: "solid",\n borderTopWidth: 25,\n borderBottomWidth: 25,\n borderLeftWidth: 36,\n borderTopColor: "transparent",\n borderBottomColor: "transparent",\n borderLeftColor: "#CC0000",\n marginLeft: 6,\n },\n pauseContainer: {\n flexDirection: "row",\n justifyContent: "center",\n alignItems: "center",\n gap: 6,\n },\n pauseBar: {\n width: 6,\n height: 28,\n backgroundColor: "#CC0000",\n borderRadius: 2,\n marginHorizontal: 2,\n },\n timerText: {\n fontSize: 18,\n fontWeight: "600",\n marginBottom: 10,\n color: "#333",\n },\n instructionText: {\n fontSize: 14,\n color: "#777",\n marginBottom: 12,\n },\n});\n\nexport default AudioButton;\n
559
content
const errorMessage = err instanceof Error ? err.message : String(err);\n Alert.alert("Error", `Failed to start recording: ${errorMessage}`);
560
content
Alert.alert("Error", `Failed to start recording: ${err.message || err}`);
561
content
import React, { useRef, useEffect, useCallback } from "react";\nimport {\n StyleSheet,\n View,\n Animated,\n TouchableOpacity,\n Text,\n Alert,\n Easing,\n} from "react-native";\nimport {\n useAudioRecorder,\n useAudioPlayer,\n RecordingPresets,\n AudioModule,\n useAudioPlayerStatus,\n useAudioRecorderState\n} from "expo-audio";\nimport { AudioButtonMode } from "@/lib/types";\nimport { [HIGH_ENTROPY] } from "@/lib/constants";\n\ninterface AudioButtonProps {\n mode: AudioButtonMode;\n audioUri?: string;\n onAudioReady?: (uri: string) => void;\n size?: number;\n showTimer?: boolean;\n}\n\nconst AudioButton: React.FC<AudioButtonProps> = ({\n mode,\n audioUri,\n onAudioReady,\n size = 200,\n showTimer = false,\n}) => {\n const redDotScale = useRef(new Animated.Value(1)).current;\n\n const recorder = useAudioRecorder({\n ...RecordingPresets.HIGH_QUALITY,\n isMeteringEnabled: true,\n });\n\n const recorderState = useAudioRecorderState(recorder);\n const player = useAudioPlayer(audioUri);\n const playerStatus = useAudioPlayerStatus(player);\n\n useEffect(() => {\n (async () => {\n const status = await AudioModule.requestRecordingPermissionsAsync();\n if (!status.granted) {\n Alert.alert("Permission to access microphone was denied");\n }\n })();\n }, []);\n\n useEffect(() => {\n if (recorderState?.isRecording) {\n Animated.timing(redDotScale, {\n toValue: 2.5,\n duration: 300,\n easing: Easing.out(Easing.quad),\n useNativeDriver: true,\n }).start();\n } else {\n Animated.timing(redDotScale, {\n toValue: 1,\n duration: 300,\n easing: Easing.out(Easing.quad),\n useNativeDriver: true,\n }).start();\n }\n }, [recorderState?.isRecording]);\n\n const formatTime = (timeInSeconds: number) => {\n const minutes = Math.floor(timeInSeconds / 60);\n const seconds = Math.floor(timeInSeconds % 60);\n return `${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`;\n };\n\n const startRecording = useCallback(async () => {\n try {\n await recorder.prepareToRecordAsync();\n recorder.record();\n } catch (err) {\n console.error("Failed to start recording", err);\n Alert.alert("Error", "Failed to start recording");\n }\n }, [recorder]);\n\n const stopRecording = useCallback(async () => {\n try {\n await recorder.stop();\n\n if (recorder.uri && onAudioReady) {\n onAudioReady(recorder.uri);\n }\n } catch (err) {\n console.error("Failed to stop recording", err);\n Alert.alert("Error", "Failed to stop recording");\n }\n }, [recorder, onAudioReady]);\n\n const playSound = useCallback(() => {\n if (player) {\n if (player.duration - player.currentTime < 0.5) {\n player.seekTo(0);\n player.play();\n } else {\n player.play();\n }\n }\n }, [player]);\n\n const stopSound = useCallback(() => {\n if (player) {\n player.pause();\n }\n }, [player]);\n\n const onPressIn = () => {\n if (mode === [HIGH_ENTROPY].RECORD && !recorderState?.isRecording) {\n startRecording();\n }\n };\n\n const onPressOut = () => {\n if (mode === [HIGH_ENTROPY].RECORD && recorderState?.isRecording) {\n stopRecording();\n } else if (mode === [HIGH_ENTROPY].PLAY) {\n handlePlayToggle();\n }\n };\n\n const handlePlayToggle = () => {\n if (mode === [HIGH_ENTROPY].PLAY) {\n if (playerStatus?.playing) {\n stopSound();\n } else {\n playSound();\n }\n }\n };\n\n const getCurrentTime = () => {\n if (mode === [HIGH_ENTROPY].RECORD) {\n return recorderState?.durationMillis / 1000 || 0;\n }\n return playerStatus?.currentTime || 0;\n };\n\n const getDuration = () => {\n return playerStatus?.duration || 0;\n };\n\n return (\n <View style={styles.container}>\n {showTimer && (\n <Text style={styles.timerText}>\n {formatTime(getCurrentTime())}\n {getDuration() > 0 && mode === "play" && ` / ${formatTime(getDuration())}`}\n </Text>\n )}\n\n {mode === [HIGH_ENTROPY].PLAY && (\n <Text style={styles.instructionText}>\n {playerStatus?.playing ? "Tap to pause" : "Tap to play"}\n </Text>\n )}\n {mode === [HIGH_ENTROPY].RECORD && (\n <Text style={styles.instructionText}>\n {recorderState?.isRecording ? "Release to stop" : "Press and hold to record"}\n </Text>\n )}\n\n <View\n style={[\n styles.circleContainer,\n { width: size, height: size },\n ]}\n >\n <TouchableOpacity\n activeOpacity={0.7}\n onPressIn={onPressIn}\n onPressOut={onPressOut}\n style={[styles.circle, { width: size, height: size, borderRadius: size / 2 }]}\n >\n {mode === [HIGH_ENTROPY].RECORD ? (\n <Animated.View\n style={[\n styles.redDot,\n {\n width: size * 0.2,\n height: size * 0.2,\n borderRadius: size * 0.1,\n transform: [{ scale: redDotScale }]\n }\n ]}\n />\n ) : (\n <View style={playerStatus?.playing ? styles.pauseContainer : styles.triangle}>\n {playerStatus?.playing ? (\n <View style={styles.pauseContainer}>\n <View style={styles.pauseBar} />\n <View style={styles.pauseBar} />\n </View>\n ) : null}\n </View>\n )}\n </TouchableOpacity>\n </View>\n </View>\n );\n};\n\nconst styles = StyleSheet.create({\n container: {\n alignItems: "center",\n justifyContent: "center",\n },\n circleContainer: {\n alignItems: "center",\n justifyContent: "center",\n },\n circle: {\n backgroundColor: "#FFF",\n shadowColor: "#000",\n shadowOffset: { width: 0, height: 4 },\n shadowOpacity: 0.3,\n shadowRadius: 6,\n elevation: 8,\n alignItems: "center",\n justifyContent: "center",\n },\n redDot: {\n backgroundColor: "#CC0000",\n },\n triangle: {\n width: 0,\n height: 0,\n backgroundColor: "transparent",\n borderStyle: "solid",\n borderTopWidth: 25,\n borderBottomWidth: 25,\n borderLeftWidth: 36,\n borderTopColor: "transparent",\n borderBottomColor: "transparent",\n borderLeftColor: "#CC0000",\n marginLeft: 6,\n },\n pauseContainer: {\n flexDirection: "row",\n justifyContent: "center",\n alignItems: "center",\n gap: 6,\n },\n pauseBar: {\n width: 6,\n height: 28,\n backgroundColor: "#CC0000",\n borderRadius: 2,\n marginHorizontal: 2,\n },\n timerText: {\n fontSize: 18,\n fontWeight: "600",\n marginBottom: 10,\n color: "#333",\n },\n instructionText: {\n fontSize: 14,\n color: "#777",\n marginBottom: 12,\n },\n});\n\nexport default AudioButton;\n
562
content
}, [recorder, recorderState]);
563
content
const errorMessage = err instanceof Error ? err.message : String(err);\n Alert.alert("Error", `Failed to start recording: ${errorMessage}`);
564
content
console.log('Recording started');\n
565
content
console.log('Recorder prepared successfully');\n
566
content
console.log('Starting recording process...');\n console.log('Recorder state before start:', recorderState);\n
567
content
try {\n console.log('Requesting audio recording permissions...');\n const status = await AudioModule.requestRecordingPermissionsAsync();\n console.log('Permission status:', status);\n if (!status.granted) {\n console.log('Microphone permission denied');\n Alert.alert("Permission to access microphone was denied");\n } else {\n console.log('Microphone permission granted');\n }\n } catch (error) {\n console.error('Error requesting permissions:', error);\n Alert.alert("Error", "Failed to request microphone permission");
568
content
}, [recorder]);
569
content
Alert.alert("Error", "Failed to start recording");
570
content
null
571
content
null
572
content
null
573
content
const status = await AudioModule.requestRecordingPermissionsAsync();\n if (!status.granted) {\n Alert.alert("Permission to access microphone was denied");
574
content
import React, { useRef, useEffect, useCallback } from "react";\nimport {\n StyleSheet,\n View,\n Animated,\n TouchableOpacity,\n Text,\n Alert,\n Easing,\n} from "react-native";\nimport {\n useAudioRecorder,\n useAudioPlayer,\n RecordingPresets,\n AudioModule,\n useAudioPlayerStatus,\n useAudioRecorderState\n} from "expo-audio";\nimport { AudioButtonMode } from "@/lib/types";\nimport { [HIGH_ENTROPY] } from "@/lib/constants";\n\ninterface AudioButtonProps {\n mode: AudioButtonMode;\n audioUri?: string;\n onAudioReady?: (uri: string) => void;\n size?: number;\n showTimer?: boolean;\n}\n\nconst AudioButton: React.FC<AudioButtonProps> = ({\n mode,\n audioUri,\n onAudioReady,\n size = 200,\n showTimer = false,\n}) => {\n const redDotScale = useRef(new Animated.Value(1)).current;\n\n const recorder = useAudioRecorder({\n ...RecordingPresets.HIGH_QUALITY,\n isMeteringEnabled: true,\n });\n\n const recorderState = useAudioRecorderState(recorder);\n const player = useAudioPlayer(audioUri);\n const playerStatus = useAudioPlayerStatus(player);\n\n useEffect(() => {\n (async () => {\n try {\n console.log('Requesting audio recording permissions...');\n const status = await AudioModule.requestRecordingPermissionsAsync();\n console.log('Permission status:', status);\n if (!status.granted) {\n console.log('Microphone permission denied');\n Alert.alert("Permission to access microphone was denied");\n } else {\n console.log('Microphone permission granted');\n }\n } catch (error) {\n console.error('Error requesting permissions:', error);\n Alert.alert("Error", "Failed to request microphone permission");\n }\n })();\n }, []);\n\n useEffect(() => {\n if (recorderState?.isRecording) {\n Animated.timing(redDotScale, {\n toValue: 2.5,\n duration: 300,\n easing: Easing.out(Easing.quad),\n useNativeDriver: true,\n }).start();\n } else {\n Animated.timing(redDotScale, {\n toValue: 1,\n duration: 300,\n easing: Easing.out(Easing.quad),\n useNativeDriver: true,\n }).start();\n }\n }, [recorderState?.isRecording]);\n\n const formatTime = (timeInSeconds: number) => {\n const minutes = Math.floor(timeInSeconds / 60);\n const seconds = Math.floor(timeInSeconds % 60);\n return `${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`;\n };\n\n const startRecording = useCallback(async () => {\n try {\n console.log('Starting recording process...');\n console.log('Recorder state before start:', recorderState);\n await recorder.prepareToRecordAsync();\n console.log('Recorder prepared successfully');\n recorder.record();\n console.log('Recording started');\n } catch (err) {\n console.error("Failed to start recording", err);\n const errorMessage = err instanceof Error ? err.message : String(err);\n Alert.alert("Error", `Failed to start recording: ${errorMessage}`);\n }\n }, [recorder, recorderState]);\n\n const stopRecording = useCallback(async () => {\n try {\n await recorder.stop();\n\n if (recorder.uri && onAudioReady) {\n onAudioReady(recorder.uri);\n }\n } catch (err) {\n console.error("Failed to stop recording", err);\n Alert.alert("Error", "Failed to stop recording");\n }\n }, [recorder, onAudioReady]);\n\n const playSound = useCallback(() => {\n if (player) {\n if (player.duration - player.currentTime < 0.5) {\n player.seekTo(0);\n player.play();\n } else {\n player.play();\n }\n }\n }, [player]);\n\n const stopSound = useCallback(() => {\n if (player) {\n player.pause();\n }\n }, [player]);\n\n const onPressIn = () => {\n if (mode === [HIGH_ENTROPY].RECORD && !recorderState?.isRecording) {\n startRecording();\n }\n };\n\n const onPressOut = () => {\n if (mode === [HIGH_ENTROPY].RECORD && recorderState?.isRecording) {\n stopRecording();\n } else if (mode === [HIGH_ENTROPY].PLAY) {\n handlePlayToggle();\n }\n };\n\n const handlePlayToggle = () => {\n if (mode === [HIGH_ENTROPY].PLAY) {\n if (playerStatus?.playing) {\n stopSound();\n } else {\n playSound();\n }\n }\n };\n\n const getCurrentTime = () => {\n if (mode === [HIGH_ENTROPY].RECORD) {\n return recorderState?.durationMillis / 1000 || 0;\n }\n return playerStatus?.currentTime || 0;\n };\n\n const getDuration = () => {\n return playerStatus?.duration || 0;\n };\n\n return (\n <View style={styles.container}>\n {showTimer && (\n <Text style={styles.timerText}>\n {formatTime(getCurrentTime())}\n {getDuration() > 0 && mode === "play" && ` / ${formatTime(getDuration())}`}\n </Text>\n )}\n\n {mode === [HIGH_ENTROPY].PLAY && (\n <Text style={styles.instructionText}>\n {playerStatus?.playing ? "Tap to pause" : "Tap to play"}\n </Text>\n )}\n {mode === [HIGH_ENTROPY].RECORD && (\n <Text style={styles.instructionText}>\n {recorderState?.isRecording ? "Release to stop" : "Press and hold to record"}\n </Text>\n )}\n\n <View\n style={[\n styles.circleContainer,\n { width: size, height: size },\n ]}\n >\n <TouchableOpacity\n activeOpacity={0.7}\n onPressIn={onPressIn}\n onPressOut={onPressOut}\n style={[styles.circle, { width: size, height: size, borderRadius: size / 2 }]}\n >\n {mode === [HIGH_ENTROPY].RECORD ? (\n <Animated.View\n style={[\n styles.redDot,\n {\n width: size * 0.2,\n height: size * 0.2,\n borderRadius: size * 0.1,\n transform: [{ scale: redDotScale }]\n }\n ]}\n />\n ) : (\n <View style={playerStatus?.playing ? styles.pauseContainer : styles.triangle}>\n {playerStatus?.playing ? (\n <View style={styles.pauseContainer}>\n <View style={styles.pauseBar} />\n <View style={styles.pauseBar} />\n </View>\n ) : null}\n </View>\n )}\n </TouchableOpacity>\n </View>\n </View>\n );\n};\n\nconst styles = StyleSheet.create({\n container: {\n alignItems: "center",\n justifyContent: "center",\n },\n circleContainer: {\n alignItems: "center",\n justifyContent: "center",\n },\n circle: {\n backgroundColor: "#FFF",\n shadowColor: "#000",\n shadowOffset: { width: 0, height: 4 },\n shadowOpacity: 0.3,\n shadowRadius: 6,\n elevation: 8,\n alignItems: "center",\n justifyContent: "center",\n },\n redDot: {\n backgroundColor: "#CC0000",\n },\n triangle: {\n width: 0,\n height: 0,\n backgroundColor: "transparent",\n borderStyle: "solid",\n borderTopWidth: 25,\n borderBottomWidth: 25,\n borderLeftWidth: 36,\n borderTopColor: "transparent",\n borderBottomColor: "transparent",\n borderLeftColor: "#CC0000",\n marginLeft: 6,\n },\n pauseContainer: {\n flexDirection: "row",\n justifyContent: "center",\n alignItems: "center",\n gap: 6,\n },\n pauseBar: {\n width: 6,\n height: 28,\n backgroundColor: "#CC0000",\n borderRadius: 2,\n marginHorizontal: 2,\n },\n timerText: {\n fontSize: 18,\n fontWeight: "600",\n marginBottom: 10,\n color: "#333",\n },\n instructionText: {\n fontSize: 14,\n color: "#777",\n marginBottom: 12,\n },\n});\n\nexport default AudioButton;\n
575
content
const errorMessage = err instanceof Error ? err.message : String(err);\n Alert.alert("Error", `Failed to stop recording: ${errorMessage}`);
576
content
} else {\n console.log('No URI available or onAudioReady not provided');\n
577
content
console.log('Calling onAudioReady with URI:', recorder.uri);\n
578
content
console.log('Recording stopped, URI:', recorder.uri);\n
579
content
console.log('Stopping recording...');\n
580
content
Alert.alert("Error", "Failed to stop recording");
581
content
null
582
content
null
583
content
null
584
content
null
585
content
import React, { useRef, useEffect, useCallback } from "react";\nimport {\n StyleSheet,\n View,\n Animated,\n TouchableOpacity,\n Text,\n Alert,\n Easing,\n} from "react-native";\nimport {\n useAudioRecorder,\n useAudioPlayer,\n RecordingPresets,\n AudioModule,\n useAudioPlayerStatus,\n useAudioRecorderState\n} from "expo-audio";\nimport { AudioButtonMode } from "@/lib/types";\nimport { [HIGH_ENTROPY] } from "@/lib/constants";\n\ninterface AudioButtonProps {\n mode: AudioButtonMode;\n audioUri?: string;\n onAudioReady?: (uri: string) => void;\n size?: number;\n showTimer?: boolean;\n}\n\nconst AudioButton: React.FC<AudioButtonProps> = ({\n mode,\n audioUri,\n onAudioReady,\n size = 200,\n showTimer = false,\n}) => {\n const redDotScale = useRef(new Animated.Value(1)).current;\n\n const recorder = useAudioRecorder({\n ...RecordingPresets.HIGH_QUALITY,\n isMeteringEnabled: true,\n });\n\n const recorderState = useAudioRecorderState(recorder);\n const player = useAudioPlayer(audioUri);\n const playerStatus = useAudioPlayerStatus(player);\n\n useEffect(() => {\n (async () => {\n const status = await AudioModule.requestRecordingPermissionsAsync();\n if (!status.granted) {\n Alert.alert("Permission to access microphone was denied");\n }\n })();\n }, []);\n\n useEffect(() => {\n if (recorderState?.isRecording) {\n Animated.timing(redDotScale, {\n toValue: 2.5,\n duration: 300,\n easing: Easing.out(Easing.quad),\n useNativeDriver: true,\n }).start();\n } else {\n Animated.timing(redDotScale, {\n toValue: 1,\n duration: 300,\n easing: Easing.out(Easing.quad),\n useNativeDriver: true,\n }).start();\n }\n }, [recorderState?.isRecording]);\n\n const formatTime = (timeInSeconds: number) => {\n const minutes = Math.floor(timeInSeconds / 60);\n const seconds = Math.floor(timeInSeconds % 60);\n return `${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`;\n };\n\n const startRecording = useCallback(async () => {\n try {\n await recorder.prepareToRecordAsync();\n recorder.record();\n } catch (err) {\n console.error("Failed to start recording", err);\n Alert.alert("Error", "Failed to start recording");\n }\n }, [recorder]);\n\n const stopRecording = useCallback(async () => {\n try {\n await recorder.stop();\n\n if (recorder.uri && onAudioReady) {\n onAudioReady(recorder.uri);\n }\n } catch (err) {\n console.error("Failed to stop recording", err);\n Alert.alert("Error", "Failed to stop recording");\n }\n }, [recorder, onAudioReady]);\n\n const playSound = useCallback(() => {\n if (player) {\n if (player.duration - player.currentTime < 0.5) {\n player.seekTo(0);\n player.play();\n } else {\n player.play();\n }\n }\n }, [player]);\n\n const stopSound = useCallback(() => {\n if (player) {\n player.pause();\n }\n }, [player]);\n\n const onPressIn = () => {\n if (mode === [HIGH_ENTROPY].RECORD && !recorderState?.isRecording) {\n startRecording();\n }\n };\n\n const onPressOut = () => {\n if (mode === [HIGH_ENTROPY].RECORD && recorderState?.isRecording) {\n stopRecording();\n } else if (mode === [HIGH_ENTROPY].PLAY) {\n handlePlayToggle();\n }\n };\n\n const handlePlayToggle = () => {\n if (mode === [HIGH_ENTROPY].PLAY) {\n if (playerStatus?.playing) {\n stopSound();\n } else {\n playSound();\n }\n }\n };\n\n const getCurrentTime = () => {\n if (mode === [HIGH_ENTROPY].RECORD) {\n return recorderState?.durationMillis / 1000 || 0;\n }\n return playerStatus?.currentTime || 0;\n };\n\n const getDuration = () => {\n return playerStatus?.duration || 0;\n };\n\n return (\n <View style={styles.container}>\n {showTimer && (\n <Text style={styles.timerText}>\n {formatTime(getCurrentTime())}\n {getDuration() > 0 && mode === "play" && ` / ${formatTime(getDuration())}`}\n </Text>\n )}\n\n {mode === [HIGH_ENTROPY].PLAY && (\n <Text style={styles.instructionText}>\n {playerStatus?.playing ? "Tap to pause" : "Tap to play"}\n </Text>\n )}\n {mode === [HIGH_ENTROPY].RECORD && (\n <Text style={styles.instructionText}>\n {recorderState?.isRecording ? "Release to stop" : "Press and hold to record"}\n </Text>\n )}\n\n <View\n style={[\n styles.circleContainer,\n { width: size, height: size },\n ]}\n >\n <TouchableOpacity\n activeOpacity={0.7}\n onPressIn={onPressIn}\n onPressOut={onPressOut}\n style={[styles.circle, { width: size, height: size, borderRadius: size / 2 }]}\n >\n {mode === [HIGH_ENTROPY].RECORD ? (\n <Animated.View\n style={[\n styles.redDot,\n {\n width: size * 0.2,\n height: size * 0.2,\n borderRadius: size * 0.1,\n transform: [{ scale: redDotScale }]\n }\n ]}\n />\n ) : (\n <View style={playerStatus?.playing ? styles.pauseContainer : styles.triangle}>\n {playerStatus?.playing ? (\n <View style={styles.pauseContainer}>\n <View style={styles.pauseBar} />\n <View style={styles.pauseBar} />\n </View>\n ) : null}\n </View>\n )}\n </TouchableOpacity>\n </View>\n </View>\n );\n};\n\nconst styles = StyleSheet.create({\n container: {\n alignItems: "center",\n justifyContent: "center",\n },\n circleContainer: {\n alignItems: "center",\n justifyContent: "center",\n },\n circle: {\n backgroundColor: "#FFF",\n shadowColor: "#000",\n shadowOffset: { width: 0, height: 4 },\n shadowOpacity: 0.3,\n shadowRadius: 6,\n elevation: 8,\n alignItems: "center",\n justifyContent: "center",\n },\n redDot: {\n backgroundColor: "#CC0000",\n },\n triangle: {\n width: 0,\n height: 0,\n backgroundColor: "transparent",\n borderStyle: "solid",\n borderTopWidth: 25,\n borderBottomWidth: 25,\n borderLeftWidth: 36,\n borderTopColor: "transparent",\n borderBottomColor: "transparent",\n borderLeftColor: "#CC0000",\n marginLeft: 6,\n },\n pauseContainer: {\n flexDirection: "row",\n justifyContent: "center",\n alignItems: "center",\n gap: 6,\n },\n pauseBar: {\n width: 6,\n height: 28,\n backgroundColor: "#CC0000",\n borderRadius: 2,\n marginHorizontal: 2,\n },\n timerText: {\n fontSize: 18,\n fontWeight: "600",\n marginBottom: 10,\n color: "#333",\n },\n instructionText: {\n fontSize: 14,\n color: "#777",\n marginBottom: 12,\n },\n});\n\nexport default AudioButton;\n
586
content
const errorMessage = err instanceof Error ? err.message : String(err);\n Alert.alert("Error", `Failed to stop recording: ${errorMessage}`);
587
content
} else {\n console.log('No URI available or onAudioReady not provided');\n
588
content
console.log('Calling onAudioReady with URI:', recorder.uri);\n
589
content
console.log('Recording stopped, URI:', recorder.uri);\n
590
content
console.log('Stopping recording...');\n
591
content
}, [recorder, recorderState]);
592
content
const errorMessage = err instanceof Error ? err.message : String(err);\n Alert.alert("Error", `Failed to start recording: ${errorMessage}`);
593
content
console.log('Recording started');\n
594
content
console.log('Recorder prepared successfully');\n
595
content
console.log('Starting recording process...');\n console.log('Recorder state before start:', recorderState);\n
596
content
try {\n console.log('Requesting audio recording permissions...');\n const status = await AudioModule.requestRecordingPermissionsAsync();\n console.log('Permission status:', status);\n if (!status.granted) {\n console.log('Microphone permission denied');\n Alert.alert("Permission to access microphone was denied");\n } else {\n console.log('Microphone permission granted');\n }\n } catch (error) {\n console.error('Error requesting permissions:', error);\n Alert.alert("Error", "Failed to request microphone permission");
597
selection_mouse
null
598
content
Alert.alert("Error", "Failed to stop recording");
599
content
null
600
content
null
601
content
null
602
content
null
603
content
}, [recorder]);
604
content
Alert.alert("Error", "Failed to start recording");
605
content
null
606
content
null
607
content
null
608
content
const status = await AudioModule.requestRecordingPermissionsAsync();\n if (!status.granted) {\n Alert.alert("Permission to access microphone was denied");
609
tab
null
610
selection_command
null
611
tab
// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 54;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\[HIGH_ENTROPY] /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = [HIGH_ENTROPY] /* Images.xcassets */; };\n\t\[HIGH_ENTROPY] /* SplashScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = [HIGH_ENTROPY] /* SplashScreen.storyboard */; };\n\t\[HIGH_ENTROPY] /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = [HIGH_ENTROPY] /* ExpoModulesProvider.swift */; };\n\t\[HIGH_ENTROPY] /* Expo.plist in Resources */ = {isa = PBXBuildFile; fileRef = [HIGH_ENTROPY] /* Expo.plist */; };\n\t\[HIGH_ENTROPY] /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = [HIGH_ENTROPY] /* PrivacyInfo.xcprivacy */; };\n\t\[HIGH_ENTROPY] /* libPods-roger.a in Frameworks */ = {isa = PBXBuildFile; fileRef = [HIGH_ENTROPY] /* libPods-roger.a */; };\n\t\tF11748422D0307B40044C1D9 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F11748412D0307B40044C1D9 /* AppDelegate.swift */; };\n/* End PBXBuildFile section */\n\n/* Begin [HIGH_ENTROPY] section */\n\t\[HIGH_ENTROPY] /* roger.app */ = {isa = [HIGH_ENTROPY]; explicitFileType = wrapper.application; includeInIndex = 0; path = roger.app; sourceTree = [HIGH_ENTROPY]; };\n\t\[HIGH_ENTROPY] /* Images.xcassets */ = {isa = [HIGH_ENTROPY]; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = roger/Images.xcassets; sourceTree = "<group>"; };\n\t\[HIGH_ENTROPY] /* Info.plist */ = {isa = [HIGH_ENTROPY]; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = roger/Info.plist; sourceTree = "<group>"; };\n\t\[HIGH_ENTROPY] /* ExpoModulesProvider.swift */ = {isa = [HIGH_ENTROPY]; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-roger/ExpoModulesProvider.swift"; sourceTree = "<group>"; };\n\t\[HIGH_ENTROPY] /* Pods-roger.debug.xcconfig */ = {isa = [HIGH_ENTROPY]; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-roger.debug.xcconfig"; path = "Target Support Files/Pods-roger/Pods-roger.debug.xcconfig"; sourceTree = "<group>"; };\n\t\[HIGH_ENTROPY] /* SplashScreen.storyboard */ = {isa = [HIGH_ENTROPY]; fileEncoding = 4; lastKnownFileType = file.storyboard; name = SplashScreen.storyboard; path = roger/SplashScreen.storyboard; sourceTree = "<group>"; };\n\t\[HIGH_ENTROPY] /* Expo.plist */ = {isa = [HIGH_ENTROPY]; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Expo.plist; sourceTree = "<group>"; };\n\t\[HIGH_ENTROPY] /* Pods-roger.release.xcconfig */ = {isa = [HIGH_ENTROPY]; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-roger.release.xcconfig"; path = "Target Support Files/Pods-roger/Pods-roger.release.xcconfig"; sourceTree = "<group>"; };\n\t\[HIGH_ENTROPY] /* PrivacyInfo.xcprivacy */ = {isa = [HIGH_ENTROPY]; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = roger/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };\n\t\[HIGH_ENTROPY] /* libPods-roger.a */ = {isa = [HIGH_ENTROPY]; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-roger.a"; sourceTree = [HIGH_ENTROPY]; };\n\t\[HIGH_ENTROPY] /* JavaScriptCore.framework */ = {isa = [HIGH_ENTROPY]; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };\n\t\tF11748412D0307B40044C1D9 /* AppDelegate.swift */ = {isa = [HIGH_ENTROPY]; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = roger/AppDelegate.swift; sourceTree = "<group>"; };\n\t\tF11748442D0722820044C1D9 /* roger-Bridging-Header.h */ = {isa = [HIGH_ENTROPY]; lastKnownFileType = sourcecode.c.h; name = "roger-Bridging-Header.h"; path = "roger/roger-Bridging-Header.h"; sourceTree = "<group>"; };\n/* End [HIGH_ENTROPY] section */\n\n/* Begin [HIGH_ENTROPY] section */\n\t\[HIGH_ENTROPY] /* Frameworks */ = {\n\t\t\tisa = [HIGH_ENTROPY];\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\[HIGH_ENTROPY] /* libPods-roger.a in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End [HIGH_ENTROPY] section */\n\n/* Begin PBXGroup section */\n\t\[HIGH_ENTROPY] /* roger */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tF11748412D0307B40044C1D9 /* AppDelegate.swift */,\n\t\t\t\tF11748442D0722820044C1D9 /* roger-Bridging-Header.h */,\n\t\t\t\[HIGH_ENTROPY] /* Supporting */,\n\t\t\t\[HIGH_ENTROPY] /* Images.xcassets */,\n\t\t\t\[HIGH_ENTROPY] /* Info.plist */,\n\t\t\t\[HIGH_ENTROPY] /* SplashScreen.storyboard */,\n\t\t\t\[HIGH_ENTROPY] /* PrivacyInfo.xcprivacy */,\n\t\t\t);\n\t\t\tname = roger;\n\t\t\tsourceTree = "<group>";\n\t\t};\n\t\[HIGH_ENTROPY] /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\[HIGH_ENTROPY] /* JavaScriptCore.framework */,\n\t\t\t\[HIGH_ENTROPY] /* libPods-roger.a */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = "<group>";\n\t\t};\n\t\[HIGH_ENTROPY] /* Libraries */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t);\n\t\t\tname = Libraries;\n\t\t\tsourceTree = "<group>";\n\t\t};\n\t\[HIGH_ENTROPY] = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\[HIGH_ENTROPY] /* roger */,\n\t\t\t\[HIGH_ENTROPY] /* Libraries */,\n\t\t\t\[HIGH_ENTROPY] /* Products */,\n\t\t\t\[HIGH_ENTROPY] /* Frameworks */,\n\t\t\t\[HIGH_ENTROPY] /* Pods */,\n\t\t\t\[HIGH_ENTROPY] /* ExpoModulesProviders */,\n\t\t\t);\n\t\t\tindentWidth = 2;\n\t\t\tsourceTree = "<group>";\n\t\t\ttabWidth = 2;\n\t\t\tusesTabs = 0;\n\t\t};\n\t\[HIGH_ENTROPY] /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\[HIGH_ENTROPY] /* roger.app */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = "<group>";\n\t\t};\n\t\[HIGH_ENTROPY] /* roger */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\[HIGH_ENTROPY] /* ExpoModulesProvider.swift */,\n\t\t\t);\n\t\t\tname = roger;\n\t\t\tsourceTree = "<group>";\n\t\t};\n\t\[HIGH_ENTROPY] /* Supporting */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\[HIGH_ENTROPY] /* Expo.plist */,\n\t\t\t);\n\t\t\tname = Supporting;\n\t\t\tpath = roger/Supporting;\n\t\t\tsourceTree = "<group>";\n\t\t};\n\t\[HIGH_ENTROPY] /* ExpoModulesProviders */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\[HIGH_ENTROPY] /* roger */,\n\t\t\t);\n\t\t\tname = ExpoModulesProviders;\n\t\t\tsourceTree = "<group>";\n\t\t};\n\t\[HIGH_ENTROPY] /* Pods */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\[HIGH_ENTROPY] /* Pods-roger.debug.xcconfig */,\n\t\t\t\[HIGH_ENTROPY] /* Pods-roger.release.xcconfig */,\n\t\t\t);\n\t\t\tpath = Pods;\n\t\t\tsourceTree = "<group>";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\[HIGH_ENTROPY] /* roger */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = [HIGH_ENTROPY] /* Build configuration list for PBXNativeTarget "roger" */;\n\t\t\tbuildPhases = (\n\t\t\t\[HIGH_ENTROPY] /* [CP] Check Pods Manifest.lock */,\n\t\t\t\[HIGH_ENTROPY] /* [Expo] Configure project */,\n\t\t\t\[HIGH_ENTROPY] /* Sources */,\n\t\t\t\[HIGH_ENTROPY] /* Frameworks */,\n\t\t\t\[HIGH_ENTROPY] /* Resources */,\n\t\t\t\[HIGH_ENTROPY] /* Bundle React Native code and images */,\n\t\t\t\[HIGH_ENTROPY] /* [CP] Copy Pods Resources */,\n\t\t\t\[HIGH_ENTROPY] /* [CP] Embed Pods Frameworks */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = roger;\n\t\t\tproductName = roger;\n\t\t\tproductReference = [HIGH_ENTROPY] /* roger.app */;\n\t\t\tproductType = "com.apple.product-type.application";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\[HIGH_ENTROPY] /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastUpgradeCheck = 1130;\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\[HIGH_ENTROPY] = {\n\t\t\t\t\t\tLastSwiftMigration = 1250;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = [HIGH_ENTROPY] /* Build configuration list for PBXProject "roger" */;\n\t\t\tcompatibilityVersion = "Xcode 3.2";\n\t\t\tdevelopmentRegion = en;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tBase,\n\t\t\t);\n\t\t\tmainGroup = [HIGH_ENTROPY];\n\t\t\tproductRefGroup = [HIGH_ENTROPY] /* Products */;\n\t\t\tprojectDirPath = "";\n\t\t\tprojectRoot = "";\n\t\t\ttargets = (\n\t\t\t\[HIGH_ENTROPY] /* roger */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin [HIGH_ENTROPY] section */\n\t\[HIGH_ENTROPY] /* Resources */ = {\n\t\t\tisa = [HIGH_ENTROPY];\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\[HIGH_ENTROPY] /* Expo.plist in Resources */,\n\t\t\t\[HIGH_ENTROPY] /* Images.xcassets in Resources */,\n\t\t\t\[HIGH_ENTROPY] /* SplashScreen.storyboard in Resources */,\n\t\t\t\[HIGH_ENTROPY] /* PrivacyInfo.xcprivacy in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End [HIGH_ENTROPY] section */\n\n/* Begin [HIGH_ENTROPY] section */\n\t\[HIGH_ENTROPY] /* Bundle React Native code and images */ = {\n\t\t\tisa = [HIGH_ENTROPY];\n\t\t\talwaysOutOfDate = 1;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = "Bundle React Native code and images";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n# The project root by default is one level up from the ios directory\nexport PROJECT_ROOT=\"$PROJECT_DIR\"/..\n\nif [[ \"$CONFIGURATION\" = *Debug* ]]; then\n export SKIP_BUNDLING=1\nfi\nif [[ -z \"$ENTRY_FILE\" ]]; then\n # Set the entry JS file using the bundler's entry resolution.\n export ENTRY_FILE=\"$(\"$NODE_BINARY\" -e \"require('expo/scripts/resolveAppEntry')\" \"$PROJECT_ROOT\" ios absolute | tail -n 1)\"\nfi\n\nif [[ -z \"$CLI_PATH\" ]]; then\n # Use Expo CLI\n export CLI_PATH=\"$(\"$NODE_BINARY\" --print \"require.resolve('@expo/cli', { paths: [require.resolve('expo/package.json')] })\")\"\nfi\nif [[ -z \"$BUNDLE_COMMAND\" ]]; then\n # Default Expo CLI command for bundling\n export BUNDLE_COMMAND=\"export:embed\"\nfi\n\n# Source .xcode.env.updates if it exists to allow\n# SKIP_BUNDLING to be unset if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.updates\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.updates\"\nfi\n# Source local changes to allow overrides\n# if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n`\"$NODE_BINARY\" --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'\"`\n\n";\n\t\t};\n\t\[HIGH_ENTROPY] /* [CP] Check Pods Manifest.lock */ = {\n\t\t\tisa = [HIGH_ENTROPY];\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputFileListPaths = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t\t"${[HIGH_ENTROPY]}/Podfile.lock",\n\t\t\t\t"${PODS_ROOT}/Manifest.lock",\n\t\t\t);\n\t\t\tname = "[CP] Check Pods Manifest.lock";\n\t\t\toutputFileListPaths = (\n\t\t\t);\n\t\t\toutputPaths = (\n\t\t\t\t"$(DERIVED_FILE_DIR)/Pods-roger-checkManifestLockResult.txt",\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = "diff \"${[HIGH_ENTROPY]}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${[HIGH_ENTROPY]}\"\n";\n\t\t\[HIGH_ENTROPY] = 0;\n\t\t};\n\t\[HIGH_ENTROPY] /* [CP] Embed Pods Frameworks */ = {\n\t\t\tisa = [HIGH_ENTROPY];\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t\t"${PODS_ROOT}/Target Support Files/Pods-roger/Pods-roger-frameworks.sh",\n\t\t\t\t"${[HIGH_ENTROPY]}/hermes-engine/Pre-built/hermes.framework/hermes",\n\t\t\t);\n\t\t\tname = "[CP] Embed Pods Frameworks";\n\t\t\toutputPaths = (\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/hermes.framework",\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = "\"${PODS_ROOT}/Target Support Files/Pods-roger/Pods-roger-frameworks.sh\"\n";\n\t\t\[HIGH_ENTROPY] = 0;\n\t\t};\n\t\[HIGH_ENTROPY] /* [CP] Copy Pods Resources */ = {\n\t\t\tisa = [HIGH_ENTROPY];\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t\t"${PODS_ROOT}/Target Support Files/Pods-roger/Pods-roger-resources.sh",\n\t\t\t\t"${[HIGH_ENTROPY]}/EXConstants/EXConstants.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/EXConstants/ExpoConstants_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/ExpoFileSystem/ExpoFileSystem_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/RCT-Folly/RCT-Folly_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/RNCAsyncStorage/RNCAsyncStorage_resources.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/RNSVG/RNSVGFilters.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/React-Core/React-Core_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/React-cxxreact/React-cxxreact_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/boost/boost_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/glog/glog_privacy.bundle",\n\t\t\t);\n\t\t\tname = "[CP] Copy Pods Resources";\n\t\t\toutputPaths = (\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/EXConstants.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/ExpoConstants_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/ExpoFileSystem_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/RCT-Folly_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/RNCAsyncStorage_resources.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/RNSVGFilters.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/React-Core_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/React-cxxreact_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/boost_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/glog_privacy.bundle",\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = "\"${PODS_ROOT}/Target Support Files/Pods-roger/Pods-roger-resources.sh\"\n";\n\t\t\[HIGH_ENTROPY] = 0;\n\t\t};\n\t\[HIGH_ENTROPY] /* [Expo] Configure project */ = {\n\t\t\tisa = [HIGH_ENTROPY];\n\t\t\talwaysOutOfDate = 1;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputFileListPaths = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = "[Expo] Configure project";\n\t\t\toutputFileListPaths = (\n\t\t\t);\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = "# This script configures Expo modules and generates the modules provider file.\nbash -l -c \"./Pods/Target\\ Support\\ Files/Pods-roger/expo-configure-project.sh\"\n";\n\t\t};\n/* End [HIGH_ENTROPY] section */\n\n/* Begin [HIGH_ENTROPY] section */\n\t\[HIGH_ENTROPY] /* Sources */ = {\n\t\t\tisa = [HIGH_ENTROPY];\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tF11748422D0307B40044C1D9 /* AppDelegate.swift in Sources */,\n\t\t\t\[HIGH_ENTROPY] /* ExpoModulesProvider.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End [HIGH_ENTROPY] section */\n\n/* Begin XCBuildConfiguration section */\n\t\[HIGH_ENTROPY] /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = [HIGH_ENTROPY] /* Pods-roger.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\[HIGH_ENTROPY] = AppIcon;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = roger/roger.entitlements;\n\t\t\t\[HIGH_ENTROPY] = 1;\n\t\t\t\[HIGH_ENTROPY] = 83FW3L84P3;\n\t\t\t\tENABLE_BITCODE = NO;\n\t\t\t\[HIGH_ENTROPY] = (\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t\t"[HIGH_ENTROPY]=1",\n\t\t\t\t);\n\t\t\t\tINFOPLIST_FILE = roger/Info.plist;\n\t\t\t\[HIGH_ENTROPY] = 15.1;\n\t\t\t\[HIGH_ENTROPY] = (\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t\t"@executable_path/Frameworks",\n\t\t\t\t);\n\t\t\t\[HIGH_ENTROPY] = 1.0;\n\t\t\t\tOTHER_LDFLAGS = (\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t\t"-ObjC",\n\t\t\t\t\t"-lc++",\n\t\t\t\t);\n\t\t\t\[HIGH_ENTROPY] = "$(inherited) -D [HIGH_ENTROPY]";\n\t\t\t\[HIGH_ENTROPY] = com.anonymous.roger;\n\t\t\t\tPRODUCT_NAME = roger;\n\t\t\t\[HIGH_ENTROPY] = "roger/roger-Bridging-Header.h";\n\t\t\t\[HIGH_ENTROPY] = "-Onone";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\[HIGH_ENTROPY] = "1,2";\n\t\t\t\[HIGH_ENTROPY] = "apple-generic";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\[HIGH_ENTROPY] /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = [HIGH_ENTROPY] /* Pods-roger.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\[HIGH_ENTROPY] = AppIcon;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = roger/roger.entitlements;\n\t\t\t\[HIGH_ENTROPY] = 1;\n\t\t\t\[HIGH_ENTROPY] = 83FW3L84P3;\n\t\t\t\tINFOPLIST_FILE = roger/Info.plist;\n\t\t\t\[HIGH_ENTROPY] = 15.1;\n\t\t\t\[HIGH_ENTROPY] = (\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t\t"@executable_path/Frameworks",\n\t\t\t\t);\n\t\t\t\[HIGH_ENTROPY] = 1.0;\n\t\t\t\tOTHER_LDFLAGS = (\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t\t"-ObjC",\n\t\t\t\t\t"-lc++",\n\t\t\t\t);\n\t\t\t\[HIGH_ENTROPY] = "$(inherited) -D [HIGH_ENTROPY]";\n\t\t\t\[HIGH_ENTROPY] = com.anonymous.roger;\n\t\t\t\tPRODUCT_NAME = roger;\n\t\t\t\[HIGH_ENTROPY] = "roger/roger-Bridging-Header.h";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\[HIGH_ENTROPY] = "1,2";\n\t\t\t\[HIGH_ENTROPY] = "apple-generic";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\[HIGH_ENTROPY] /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\[HIGH_ENTROPY] = NO;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = "c++20";\n\t\t\t\[HIGH_ENTROPY] = "libc++";\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES_ERROR;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES_ERROR;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\t"[HIGH_ENTROPY][sdk=iphoneos*]" = "iPhone Developer";\n\t\t\t\[HIGH_ENTROPY] = NO;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = gnu99;\n\t\t\t\[HIGH_ENTROPY] = NO;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = 0;\n\t\t\t\[HIGH_ENTROPY] = (\n\t\t\t\t\t"DEBUG=1",\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t);\n\t\t\t\[HIGH_ENTROPY] = NO;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES_ERROR;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES_AGGRESSIVE;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = 15.1;\n\t\t\t\[HIGH_ENTROPY] = (\n\t\t\t\t\t/usr/lib/swift,\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t);\n\t\t\t\[HIGH_ENTROPY] = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\tOTHER_LDFLAGS = "$(inherited) ";\n\t\t\t\[HIGH_ENTROPY] = "${PODS_ROOT}/../../node_modules/react-native";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\[HIGH_ENTROPY] = "$(inherited) DEBUG";\n\t\t\t\tUSE_HERMES = true;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\[HIGH_ENTROPY] /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\[HIGH_ENTROPY] = NO;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = "c++20";\n\t\t\t\[HIGH_ENTROPY] = "libc++";\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES_ERROR;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES_ERROR;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\t"[HIGH_ENTROPY][sdk=iphoneos*]" = "iPhone Developer";\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = NO;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = gnu99;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES_ERROR;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES_AGGRESSIVE;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = 15.1;\n\t\t\t\[HIGH_ENTROPY] = (\n\t\t\t\t\t/usr/lib/swift,\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t);\n\t\t\t\[HIGH_ENTROPY] = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";\n\t\t\t\[HIGH_ENTROPY] = NO;\n\t\t\t\tOTHER_LDFLAGS = "$(inherited) ";\n\t\t\t\[HIGH_ENTROPY] = "${PODS_ROOT}/../../node_modules/react-native";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tUSE_HERMES = true;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\[HIGH_ENTROPY] /* Build configuration list for PBXNativeTarget "roger" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\[HIGH_ENTROPY] /* Debug */,\n\t\t\t\[HIGH_ENTROPY] /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\[HIGH_ENTROPY] /* Build configuration list for PBXProject "roger" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\[HIGH_ENTROPY] /* Debug */,\n\t\t\t\[HIGH_ENTROPY] /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = [HIGH_ENTROPY] /* Project object */;\n}\n
612
selection_command
null
613
tab
PODS:\n - boost (1.84.0)\n - DoubleConversion (1.1.6)\n - EXConstants (17.1.7):\n - ExpoModulesCore\n - Expo (53.0.19):\n - DoubleConversion\n - ExpoModulesCore\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactAppDependencyProvider\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - ExpoAsset (11.1.7):\n - ExpoModulesCore\n - ExpoAudio (0.4.8):\n - ExpoModulesCore\n - ExpoFileSystem (18.1.11):\n - ExpoModulesCore\n - ExpoFont (13.3.2):\n - ExpoModulesCore\n - ExpoHead (5.0.7):\n - ExpoModulesCore\n - ExpoKeepAwake (14.1.4):\n - ExpoModulesCore\n - ExpoLinking (7.1.7):\n - ExpoModulesCore\n - ExpoModulesCore (2.4.2):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-jsinspector\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - ExpoSplashScreen (0.30.10):\n - ExpoModulesCore\n - ExpoSymbols (0.4.5):\n - ExpoModulesCore\n - ExpoWebBrowser (14.2.0):\n - ExpoModulesCore\n - fast_float (6.1.4)\n - FBLazyVector (0.79.2)\n - fmt (11.0.2)\n - glog (0.3.5)\n - hermes-engine (0.79.2):\n - hermes-engine/Pre-built (= 0.79.2)\n - hermes-engine/Pre-built (0.79.2)\n - RCT-Folly (2024.11.18.00):\n - boost\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - RCT-Folly/Default (= 2024.11.18.00)\n - RCT-Folly/Default (2024.11.18.00):\n - boost\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - RCT-Folly/Fabric (2024.11.18.00):\n - boost\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - RCTDeprecation (0.79.2)\n - RCTRequired (0.79.2)\n - RCTTypeSafety (0.79.2):\n - FBLazyVector (= 0.79.2)\n - RCTRequired (= 0.79.2)\n - React-Core (= 0.79.2)\n - React (0.79.2):\n - React-Core (= 0.79.2)\n - React-Core/DevSupport (= 0.79.2)\n - React-Core/RCTWebSocket (= 0.79.2)\n - [HIGH_ENTROPY] (= 0.79.2)\n - [HIGH_ENTROPY] (= 0.79.2)\n - React-RCTBlob (= 0.79.2)\n - React-RCTImage (= 0.79.2)\n - [HIGH_ENTROPY] (= 0.79.2)\n - [HIGH_ENTROPY] (= 0.79.2)\n - [HIGH_ENTROPY] (= 0.79.2)\n - React-RCTText (= 0.79.2)\n - [HIGH_ENTROPY] (= 0.79.2)\n - React-callinvoker (0.79.2)\n - React-Core (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default (= 0.79.2)\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/CoreModulesHeaders (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/Default (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/DevSupport (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default (= 0.79.2)\n - React-Core/RCTWebSocket (= 0.79.2)\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/[HIGH_ENTROPY] (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/[HIGH_ENTROPY] (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/RCTBlobHeaders (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/RCTImageHeaders (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/[HIGH_ENTROPY] (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/[HIGH_ENTROPY] (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/[HIGH_ENTROPY] (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/RCTTextHeaders (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/[HIGH_ENTROPY] (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/RCTWebSocket (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default (= 0.79.2)\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-CoreModules (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - RCT-Folly (= 2024.11.18.00)\n - RCTTypeSafety (= 0.79.2)\n - React-Core/CoreModulesHeaders (= 0.79.2)\n - React-jsi (= 0.79.2)\n - React-jsinspector\n - React-jsinspectortracing\n - React-NativeModulesApple\n - React-RCTBlob\n - [HIGH_ENTROPY]\n - React-RCTImage (= 0.79.2)\n - ReactCommon\n - SocketRocket (= 0.7.1)\n - React-cxxreact (0.79.2):\n - boost\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-callinvoker (= 0.79.2)\n - React-debug (= 0.79.2)\n - React-jsi (= 0.79.2)\n - React-jsinspector\n - React-jsinspectortracing\n - React-logger (= 0.79.2)\n - React-perflogger (= 0.79.2)\n - React-runtimeexecutor (= 0.79.2)\n - React-timing (= 0.79.2)\n - React-debug (0.79.2)\n - React-defaultsnativemodule (0.79.2):\n - hermes-engine\n - RCT-Folly\n - React-domnativemodule\n - React-featureflagsnativemodule\n - React-hermes\n - React-idlecallbacksnativemodule\n - React-jsi\n - React-jsiexecutor\n - React-microtasksnativemodule\n - [HIGH_ENTROPY]\n - React-domnativemodule (0.79.2):\n - hermes-engine\n - RCT-Folly\n - React-Fabric\n - React-FabricComponents\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - [HIGH_ENTROPY]\n - ReactCommon/turbomodule/core\n - Yoga\n - React-Fabric (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric/animations (= 0.79.2)\n - React-Fabric/[HIGH_ENTROPY] (= 0.79.2)\n - React-Fabric/[HIGH_ENTROPY] (= 0.79.2)\n - React-Fabric/[HIGH_ENTROPY] (= 0.79.2)\n - React-Fabric/components (= 0.79.2)\n - React-Fabric/consistency (= 0.79.2)\n - React-Fabric/core (= 0.79.2)\n - React-Fabric/dom (= 0.79.2)\n - React-Fabric/imagemanager (= 0.79.2)\n - React-Fabric/leakchecker (= 0.79.2)\n - React-Fabric/mounting (= 0.79.2)\n - React-Fabric/observers (= 0.79.2)\n - React-Fabric/scheduler (= 0.79.2)\n - React-Fabric/telemetry (= 0.79.2)\n - React-Fabric/[HIGH_ENTROPY] (= 0.79.2)\n - React-Fabric/uimanager (= 0.79.2)\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/animations (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/[HIGH_ENTROPY] (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/[HIGH_ENTROPY] (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/[HIGH_ENTROPY] (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/components (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric/components/[HIGH_ENTROPY] (= 0.79.2)\n - React-Fabric/components/root (= 0.79.2)\n - React-Fabric/components/scrollview (= 0.79.2)\n - React-Fabric/components/view (= 0.79.2)\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/components/[HIGH_ENTROPY] (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/components/root (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/components/scrollview (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/components/view (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-renderercss\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-Fabric/consistency (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/core (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/dom (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/imagemanager (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/leakchecker (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/mounting (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/observers (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric/observers/events (= 0.79.2)\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/observers/events (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/scheduler (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric/observers/events\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-performancetimeline\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/telemetry (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/[HIGH_ENTROPY] (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/uimanager (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric/uimanager/consistency (= 0.79.2)\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererconsistency\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/uimanager/consistency (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererconsistency\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-FabricComponents (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-FabricComponents/components (= 0.79.2)\n - React-FabricComponents/[HIGH_ENTROPY] (= 0.79.2)\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-FabricComponents/components/inputaccessory (= 0.79.2)\n - React-FabricComponents/components/iostextinput (= 0.79.2)\n - React-FabricComponents/components/modal (= 0.79.2)\n - React-FabricComponents/components/rncore (= 0.79.2)\n - React-FabricComponents/components/safeareaview (= 0.79.2)\n - React-FabricComponents/components/scrollview (= 0.79.2)\n - React-FabricComponents/components/text (= 0.79.2)\n - React-FabricComponents/components/textinput (= 0.79.2)\n - React-FabricComponents/components/[HIGH_ENTROPY] (= 0.79.2)\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/inputaccessory (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/iostextinput (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/modal (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/rncore (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/safeareaview (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/scrollview (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/text (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/textinput (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/[HIGH_ENTROPY] (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/[HIGH_ENTROPY] (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricImage (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired (= 0.79.2)\n - RCTTypeSafety (= 0.79.2)\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-jsiexecutor (= 0.79.2)\n - React-logger\n - React-rendererdebug\n - React-utils\n - ReactCommon\n - Yoga\n - React-featureflags (0.79.2):\n - RCT-Folly (= 2024.11.18.00)\n - React-featureflagsnativemodule (0.79.2):\n - hermes-engine\n - RCT-Folly\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - [HIGH_ENTROPY]\n - ReactCommon/turbomodule/core\n - React-graphics (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-utils\n - React-hermes (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-cxxreact (= 0.79.2)\n - React-jsi\n - React-jsiexecutor (= 0.79.2)\n - React-jsinspector\n - React-jsinspectortracing\n - React-perflogger (= 0.79.2)\n - React-runtimeexecutor\n - React-idlecallbacksnativemodule (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - [HIGH_ENTROPY]\n - React-runtimescheduler\n - ReactCommon/turbomodule/core\n - React-ImageManager (0.79.2):\n - glog\n - RCT-Folly/Fabric\n - React-Core/Default\n - React-debug\n - React-Fabric\n - React-graphics\n - React-rendererdebug\n - React-utils\n - React-jserrorhandler (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-jsi\n - ReactCommon/turbomodule/bridging\n - React-jsi (0.79.2):\n - boost\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-jsiexecutor (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-cxxreact (= 0.79.2)\n - React-jsi (= 0.79.2)\n - React-jsinspector\n - React-jsinspectortracing\n - React-perflogger (= 0.79.2)\n - React-jsinspector (0.79.2):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly\n - React-featureflags\n - React-jsi\n - React-jsinspectortracing\n - React-perflogger (= 0.79.2)\n - React-runtimeexecutor (= 0.79.2)\n - React-jsinspectortracing (0.79.2):\n - RCT-Folly\n - React-oscompat\n - React-jsitooling (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - RCT-Folly (= 2024.11.18.00)\n - React-cxxreact (= 0.79.2)\n - React-jsi (= 0.79.2)\n - React-jsinspector\n - React-jsinspectortracing\n - React-jsitracing (0.79.2):\n - React-jsi\n - React-logger (0.79.2):\n - glog\n - React-Mapbuffer (0.79.2):\n - glog\n - React-debug\n - React-microtasksnativemodule (0.79.2):\n - hermes-engine\n - RCT-Folly\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - [HIGH_ENTROPY]\n - ReactCommon/turbomodule/core\n - react-native-get-random-values (1.11.0):\n - React-Core\n - [HIGH_ENTROPY] (1.17.5):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - [HIGH_ENTROPY]/common (= 1.17.5)\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - [HIGH_ENTROPY]/common (1.17.5):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - react-native-safe-area-context (5.5.1):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - react-native-safe-area-context/common (= 5.5.1)\n - react-native-safe-area-context/fabric (= 5.5.1)\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - react-native-safe-area-context/common (5.5.1):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - react-native-safe-area-context/fabric (5.5.1):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - react-native-safe-area-context/common\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - react-native-skia (2.1.1):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React\n - React-callinvoker\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - react-native-webview (13.13.5):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - React-NativeModulesApple (0.79.2):\n - glog\n - hermes-engine\n - React-callinvoker\n - React-Core\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsinspector\n - React-runtimeexecutor\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - React-oscompat (0.79.2)\n - React-perflogger (0.79.2):\n - DoubleConversion\n - RCT-Folly (= 2024.11.18.00)\n - React-performancetimeline (0.79.2):\n - RCT-Folly (= 2024.11.18.00)\n - React-cxxreact\n - React-featureflags\n - React-jsinspectortracing\n - React-perflogger\n - React-timing\n - [HIGH_ENTROPY] (0.79.2):\n - React-Core/[HIGH_ENTROPY] (= 0.79.2)\n - [HIGH_ENTROPY] (0.79.2):\n - RCT-Folly (= 2024.11.18.00)\n - RCTTypeSafety\n - React-Core/[HIGH_ENTROPY]\n - React-jsi\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - ReactCommon\n - [HIGH_ENTROPY] (0.79.2):\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-CoreModules\n - React-debug\n - React-defaultsnativemodule\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsitooling\n - React-NativeModulesApple\n - React-RCTFabric\n - [HIGH_ENTROPY]\n - React-RCTImage\n - [HIGH_ENTROPY]\n - [HIGH_ENTROPY]\n - React-rendererdebug\n - React-RuntimeApple\n - React-RuntimeCore\n - React-runtimescheduler\n - React-utils\n - ReactCommon\n - React-RCTBlob (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-Core/RCTBlobHeaders\n - React-Core/RCTWebSocket\n - React-jsi\n - React-jsinspector\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - [HIGH_ENTROPY]\n - ReactCommon\n - React-RCTFabric (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - React-Core\n - React-debug\n - React-Fabric\n - React-FabricComponents\n - React-FabricImage\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-jsinspector\n - React-jsinspectortracing\n - React-performancetimeline\n - [HIGH_ENTROPY]\n - React-RCTImage\n - React-RCTText\n - React-rendererconsistency\n - React-renderercss\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - Yoga\n - [HIGH_ENTROPY] (0.79.2):\n - hermes-engine\n - RCT-Folly\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-NativeModulesApple\n - ReactCommon\n - React-RCTImage (0.79.2):\n - RCT-Folly (= 2024.11.18.00)\n - RCTTypeSafety\n - React-Core/RCTImageHeaders\n - React-jsi\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - [HIGH_ENTROPY]\n - ReactCommon\n - [HIGH_ENTROPY] (0.79.2):\n - React-Core/[HIGH_ENTROPY] (= 0.79.2)\n - React-jsi (= 0.79.2)\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - ReactCommon\n - ReactCommon/turbomodule/core (= 0.79.2)\n - [HIGH_ENTROPY] (0.79.2):\n - RCT-Folly (= 2024.11.18.00)\n - RCTTypeSafety\n - React-Core/[HIGH_ENTROPY]\n - React-jsi\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - ReactCommon\n - [HIGH_ENTROPY] (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - React-Core\n - React-hermes\n - React-jsi\n - React-jsinspector\n - React-jsinspectortracing\n - React-jsitooling\n - React-RuntimeApple\n - React-RuntimeCore\n - React-RuntimeHermes\n - [HIGH_ENTROPY] (0.79.2):\n - RCT-Folly (= 2024.11.18.00)\n - RCTTypeSafety\n - React-Core/[HIGH_ENTROPY]\n - React-jsi\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - ReactCommon\n - React-RCTText (0.79.2):\n - React-Core/RCTTextHeaders (= 0.79.2)\n - Yoga\n - [HIGH_ENTROPY] (0.79.2):\n - RCT-Folly (= 2024.11.18.00)\n - React-Core/[HIGH_ENTROPY]\n - React-jsi\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - ReactCommon\n - React-rendererconsistency (0.79.2)\n - React-renderercss (0.79.2):\n - React-debug\n - React-utils\n - React-rendererdebug (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - RCT-Folly (= 2024.11.18.00)\n - React-debug\n - React-rncore (0.79.2)\n - React-RuntimeApple (0.79.2):\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - React-callinvoker\n - React-Core/Default\n - React-CoreModules\n - React-cxxreact\n - React-featureflags\n - React-jserrorhandler\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-Mapbuffer\n - React-NativeModulesApple\n - React-RCTFabric\n - [HIGH_ENTROPY]\n - React-RuntimeCore\n - React-runtimeexecutor\n - React-RuntimeHermes\n - React-runtimescheduler\n - React-utils\n - React-RuntimeCore (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - React-cxxreact\n - React-Fabric\n - React-featureflags\n - React-hermes\n - React-jserrorhandler\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-performancetimeline\n - React-runtimeexecutor\n - React-runtimescheduler\n - React-utils\n - React-runtimeexecutor (0.79.2):\n - React-jsi (= 0.79.2)\n - React-RuntimeHermes (0.79.2):\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsinspector\n - React-jsinspectortracing\n - React-jsitooling\n - React-jsitracing\n - React-RuntimeCore\n - React-utils\n - React-runtimescheduler (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-callinvoker\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsinspectortracing\n - React-performancetimeline\n - React-rendererconsistency\n - React-rendererdebug\n - React-runtimeexecutor\n - React-timing\n - React-utils\n - React-timing (0.79.2)\n - React-utils (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-debug\n - React-hermes\n - React-jsi (= 0.79.2)\n - ReactAppDependencyProvider (0.79.2):\n - ReactCodegen\n - ReactCodegen (0.79.2):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-FabricImage\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - React-rendererdebug\n - React-utils\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - ReactCommon (0.79.2):\n - ReactCommon/turbomodule (= 0.79.2)\n - ReactCommon/turbomodule (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-callinvoker (= 0.79.2)\n - React-cxxreact (= 0.79.2)\n - React-jsi (= 0.79.2)\n - React-logger (= 0.79.2)\n - React-perflogger (= 0.79.2)\n - ReactCommon/turbomodule/bridging (= 0.79.2)\n - ReactCommon/turbomodule/core (= 0.79.2)\n - ReactCommon/turbomodule/bridging (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-callinvoker (= 0.79.2)\n - React-cxxreact (= 0.79.2)\n - React-jsi (= 0.79.2)\n - React-logger (= 0.79.2)\n - React-perflogger (= 0.79.2)\n - ReactCommon/turbomodule/core (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-callinvoker (= 0.79.2)\n - React-cxxreact (= 0.79.2)\n - React-debug (= 0.79.2)\n - React-featureflags (= 0.79.2)\n - React-jsi (= 0.79.2)\n - React-logger (= 0.79.2)\n - React-perflogger (= 0.79.2)\n - React-utils (= 0.79.2)\n - RNCAsyncStorage (2.1.2):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - RNGestureHandler (2.24.0):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - RNReanimated (3.17.5):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - RNReanimated/reanimated (= 3.17.5)\n - RNReanimated/worklets (= 3.17.5)\n - Yoga\n - RNReanimated/reanimated (3.17.5):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - RNReanimated/reanimated/apple (= 3.17.5)\n - Yoga\n - RNReanimated/reanimated/apple (3.17.5):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - RNReanimated/worklets (3.17.5):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - RNReanimated/worklets/apple (= 3.17.5)\n - Yoga\n - RNReanimated/worklets/apple (3.17.5):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - RNScreens (4.10.0):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-RCTImage\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - RNScreens/common (= 4.10.0)\n - Yoga\n - RNScreens/common (4.10.0):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-RCTImage\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - RNSVG (15.12.0):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - RNSVG/common (= 15.12.0)\n - Yoga\n - RNSVG/common (15.12.0):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - SocketRocket (0.7.1)\n - Yoga (0.0.0)\n\nDEPENDENCIES:\n - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)\n - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)\n - EXConstants (from `../node_modules/expo-constants/ios`)\n - Expo (from `../node_modules/expo`)\n - ExpoAsset (from `../node_modules/expo-asset/ios`)\n - ExpoAudio (from `../node_modules/expo-audio/ios`)\n - ExpoFileSystem (from `../node_modules/expo-file-system/ios`)\n - ExpoFont (from `../node_modules/expo-font/ios`)\n - ExpoHead (from `../node_modules/expo-router/ios`)\n - ExpoKeepAwake (from `../node_modules/expo-keep-awake/ios`)\n - ExpoLinking (from `../node_modules/expo-linking/ios`)\n - ExpoModulesCore (from `../node_modules/expo-modules-core`)\n - ExpoSplashScreen (from `../node_modules/expo-splash-screen/ios`)\n - ExpoSymbols (from `../node_modules/expo-symbols/ios`)\n - ExpoWebBrowser (from `../node_modules/expo-web-browser/ios`)\n - fast_float (from `../node_modules/react-native/third-party-podspecs/fast_float.podspec`)\n - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)\n - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)\n - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)\n - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)\n - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)\n - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)\n - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)\n - RCTRequired (from `../node_modules/react-native/Libraries/Required`)\n - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)\n - React (from `../node_modules/react-native/`)\n - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)\n - React-Core (from `../node_modules/react-native/`)\n - React-Core/RCTWebSocket (from `../node_modules/react-native/`)\n - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)\n - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)\n - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)\n - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`)\n - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`)\n - React-Fabric (from `../node_modules/react-native/ReactCommon`)\n - React-FabricComponents (from `../node_modules/react-native/ReactCommon`)\n - React-FabricImage (from `../node_modules/react-native/ReactCommon`)\n - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)\n - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`)\n - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)\n - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)\n - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`)\n - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)\n - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)\n - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)\n - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)\n - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)\n - React-jsinspectortracing (from `../node_modules/react-native/ReactCommon/jsinspector-modern/tracing`)\n - React-jsitooling (from `../node_modules/react-native/ReactCommon/jsitooling`)\n - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)\n - React-logger (from `../node_modules/react-native/ReactCommon/logger`)\n - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)\n - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)\n - react-native-get-random-values (from `../node_modules/react-native-get-random-values`)\n - [HIGH_ENTROPY] (from `../node_modules/[HIGH_ENTROPY]`)\n - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)\n - "react-native-skia (from `../node_modules/@shopify/react-native-skia`)"\n - react-native-webview (from `../node_modules/react-native-webview`)\n - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)\n - React-oscompat (from `../node_modules/react-native/ReactCommon/oscompat`)\n - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)\n - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/Libraries/ActionSheetIOS`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/Libraries/NativeAnimation`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/Libraries/AppDelegate`)\n - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)\n - React-RCTFabric (from `../node_modules/react-native/React`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/React`)\n - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/Libraries/LinkingIOS`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/Libraries/Network`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/React/Runtime`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/Libraries/Settings`)\n - React-RCTText (from `../node_modules/react-native/Libraries/Text`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/Libraries/Vibration`)\n - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)\n - React-renderercss (from `../node_modules/react-native/ReactCommon/react/renderer/css`)\n - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)\n - React-rncore (from `../node_modules/react-native/ReactCommon`)\n - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)\n - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)\n - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)\n - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)\n - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/[HIGH_ENTROPY]`)\n - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`)\n - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)\n - ReactAppDependencyProvider (from `build/generated/ios`)\n - ReactCodegen (from `build/generated/ios`)\n - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)\n - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"\n - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)\n - RNReanimated (from `../node_modules/react-native-reanimated`)\n - RNScreens (from `../node_modules/react-native-screens`)\n - RNSVG (from `../node_modules/react-native-svg`)\n - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)\n\nSPEC REPOS:\n trunk:\n - SocketRocket\n\nEXTERNAL SOURCES:\n boost:\n :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"\n DoubleConversion:\n :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"\n EXConstants:\n :path: "../node_modules/expo-constants/ios"\n Expo:\n :path: "../node_modules/expo"\n ExpoAsset:\n :path: "../node_modules/expo-asset/ios"\n ExpoAudio:\n :path: "../node_modules/expo-audio/ios"\n ExpoFileSystem:\n :path: "../node_modules/expo-file-system/ios"\n ExpoFont:\n :path: "../node_modules/expo-font/ios"\n ExpoHead:\n :path: "../node_modules/expo-router/ios"\n ExpoKeepAwake:\n :path: "../node_modules/expo-keep-awake/ios"\n ExpoLinking:\n :path: "../node_modules/expo-linking/ios"\n ExpoModulesCore:\n :path: "../node_modules/expo-modules-core"\n ExpoSplashScreen:\n :path: "../node_modules/expo-splash-screen/ios"\n ExpoSymbols:\n :path: "../node_modules/expo-symbols/ios"\n ExpoWebBrowser:\n :path: "../node_modules/expo-web-browser/ios"\n fast_float:\n :podspec: "../node_modules/react-native/third-party-podspecs/fast_float.podspec"\n FBLazyVector:\n :path: "../node_modules/react-native/Libraries/FBLazyVector"\n fmt:\n :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"\n glog:\n :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"\n hermes-engine:\n :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"\n :tag: hermes-2025-03-03-RNv0.79.[HIGH_ENTROPY]\n RCT-Folly:\n :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"\n RCTDeprecation:\n :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"\n RCTRequired:\n :path: "../node_modules/react-native/Libraries/Required"\n RCTTypeSafety:\n :path: "../node_modules/react-native/Libraries/TypeSafety"\n React:\n :path: "../node_modules/react-native/"\n React-callinvoker:\n :path: "../node_modules/react-native/ReactCommon/callinvoker"\n React-Core:\n :path: "../node_modules/react-native/"\n React-CoreModules:\n :path: "../node_modules/react-native/React/CoreModules"\n React-cxxreact:\n :path: "../node_modules/react-native/ReactCommon/cxxreact"\n React-debug:\n :path: "../node_modules/react-native/ReactCommon/react/debug"\n React-defaultsnativemodule:\n :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults"\n React-domnativemodule:\n :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom"\n React-Fabric:\n :path: "../node_modules/react-native/ReactCommon"\n React-FabricComponents:\n :path: "../node_modules/react-native/ReactCommon"\n React-FabricImage:\n :path: "../node_modules/react-native/ReactCommon"\n React-featureflags:\n :path: "../node_modules/react-native/ReactCommon/react/featureflags"\n React-featureflagsnativemodule:\n :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags"\n React-graphics:\n :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"\n React-hermes:\n :path: "../node_modules/react-native/ReactCommon/hermes"\n React-idlecallbacksnativemodule:\n :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks"\n React-ImageManager:\n :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"\n React-jserrorhandler:\n :path: "../node_modules/react-native/ReactCommon/jserrorhandler"\n React-jsi:\n :path: "../node_modules/react-native/ReactCommon/jsi"\n React-jsiexecutor:\n :path: "../node_modules/react-native/ReactCommon/jsiexecutor"\n React-jsinspector:\n :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"\n React-jsinspectortracing:\n :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/tracing"\n React-jsitooling:\n :path: "../node_modules/react-native/ReactCommon/jsitooling"\n React-jsitracing:\n :path: "../node_modules/react-native/ReactCommon/hermes/executor/"\n React-logger:\n :path: "../node_modules/react-native/ReactCommon/logger"\n React-Mapbuffer:\n :path: "../node_modules/react-native/ReactCommon"\n React-microtasksnativemodule:\n :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"\n react-native-get-random-values:\n :path: "../node_modules/react-native-get-random-values"\n [HIGH_ENTROPY]:\n :path: "../node_modules/[HIGH_ENTROPY]"\n react-native-safe-area-context:\n :path: "../node_modules/react-native-safe-area-context"\n react-native-skia:\n :path: "../node_modules/@shopify/react-native-skia"\n react-native-webview:\n :path: "../node_modules/react-native-webview"\n React-NativeModulesApple:\n :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"\n React-oscompat:\n :path: "../node_modules/react-native/ReactCommon/oscompat"\n React-perflogger:\n :path: "../node_modules/react-native/ReactCommon/reactperflogger"\n React-performancetimeline:\n :path: "../node_modules/react-native/ReactCommon/react/performance/timeline"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/Libraries/ActionSheetIOS"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/Libraries/NativeAnimation"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/Libraries/AppDelegate"\n React-RCTBlob:\n :path: "../node_modules/react-native/Libraries/Blob"\n React-RCTFabric:\n :path: "../node_modules/react-native/React"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/React"\n React-RCTImage:\n :path: "../node_modules/react-native/Libraries/Image"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/Libraries/LinkingIOS"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/Libraries/Network"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/React/Runtime"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/Libraries/Settings"\n React-RCTText:\n :path: "../node_modules/react-native/Libraries/Text"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/Libraries/Vibration"\n React-rendererconsistency:\n :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency"\n React-renderercss:\n :path: "../node_modules/react-native/ReactCommon/react/renderer/css"\n React-rendererdebug:\n :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"\n React-rncore:\n :path: "../node_modules/react-native/ReactCommon"\n React-RuntimeApple:\n :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"\n React-RuntimeCore:\n :path: "../node_modules/react-native/ReactCommon/react/runtime"\n React-runtimeexecutor:\n :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"\n React-RuntimeHermes:\n :path: "../node_modules/react-native/ReactCommon/react/runtime"\n React-runtimescheduler:\n :path: "../node_modules/react-native/ReactCommon/react/renderer/[HIGH_ENTROPY]"\n React-timing:\n :path: "../node_modules/react-native/ReactCommon/react/timing"\n React-utils:\n :path: "../node_modules/react-native/ReactCommon/react/utils"\n ReactAppDependencyProvider:\n :path: build/generated/ios\n ReactCodegen:\n :path: build/generated/ios\n ReactCommon:\n :path: "../node_modules/react-native/ReactCommon"\n RNCAsyncStorage:\n :path: "../node_modules/@react-native-async-storage/async-storage"\n RNGestureHandler:\n :path: "../node_modules/react-native-gesture-handler"\n RNReanimated:\n :path: "../node_modules/react-native-reanimated"\n RNScreens:\n :path: "../node_modules/react-native-screens"\n RNSVG:\n :path: "../node_modules/react-native-svg"\n Yoga:\n :path: "../node_modules/react-native/ReactCommon/yoga"\n\nSPEC CHECKSUMS:\n boost: [HIGH_ENTROPY]\n DoubleConversion: [HIGH_ENTROPY]\n EXConstants: [HIGH_ENTROPY]\n Expo: [HIGH_ENTROPY]\n ExpoAsset: [HIGH_ENTROPY]\n ExpoAudio: [HIGH_ENTROPY]\n ExpoFileSystem: [HIGH_ENTROPY]\n ExpoFont: [HIGH_ENTROPY]\n ExpoHead: [HIGH_ENTROPY]\n ExpoKeepAwake: [HIGH_ENTROPY]\n ExpoLinking: [HIGH_ENTROPY]\n ExpoModulesCore: [HIGH_ENTROPY]\n ExpoSplashScreen: [HIGH_ENTROPY]\n ExpoSymbols: [HIGH_ENTROPY]\n ExpoWebBrowser: [HIGH_ENTROPY]\n fast_float: [HIGH_ENTROPY]\n FBLazyVector: [HIGH_ENTROPY]\n fmt: [HIGH_ENTROPY]\n glog: [HIGH_ENTROPY]\n hermes-engine: [HIGH_ENTROPY]\n RCT-Folly: [HIGH_ENTROPY]\n RCTDeprecation: [HIGH_ENTROPY]\n RCTRequired: [HIGH_ENTROPY]\n RCTTypeSafety: [HIGH_ENTROPY]\n React: [HIGH_ENTROPY]\n React-callinvoker: [HIGH_ENTROPY]\n React-Core: [HIGH_ENTROPY]\n React-CoreModules: [HIGH_ENTROPY]\n React-cxxreact: [HIGH_ENTROPY]\n React-debug: [HIGH_ENTROPY]\n React-defaultsnativemodule: [HIGH_ENTROPY]\n React-domnativemodule: [HIGH_ENTROPY]\n React-Fabric: [HIGH_ENTROPY]\n React-FabricComponents: [HIGH_ENTROPY]\n React-FabricImage: [HIGH_ENTROPY]\n React-featureflags: [HIGH_ENTROPY]\n React-featureflagsnativemodule: [HIGH_ENTROPY]\n React-graphics: [HIGH_ENTROPY]\n React-hermes: [HIGH_ENTROPY]\n React-idlecallbacksnativemodule: [HIGH_ENTROPY]\n React-ImageManager: [HIGH_ENTROPY]\n React-jserrorhandler: [HIGH_ENTROPY]\n React-jsi: [HIGH_ENTROPY]\n React-jsiexecutor: [HIGH_ENTROPY]\n React-jsinspector: [HIGH_ENTROPY]\n React-jsinspectortracing: [HIGH_ENTROPY]\n React-jsitooling: [HIGH_ENTROPY]\n React-jsitracing: [HIGH_ENTROPY]\n React-logger: [HIGH_ENTROPY]\n React-Mapbuffer: [HIGH_ENTROPY]\n React-microtasksnativemodule: [HIGH_ENTROPY]\n react-native-get-random-values: [HIGH_ENTROPY]\n [HIGH_ENTROPY]: [HIGH_ENTROPY]\n react-native-safe-area-context: [HIGH_ENTROPY]\n react-native-skia: [HIGH_ENTROPY]\n react-native-webview: [HIGH_ENTROPY]\n React-NativeModulesApple: [HIGH_ENTROPY]\n React-oscompat: [HIGH_ENTROPY]\n React-perflogger: [HIGH_ENTROPY]\n React-performancetimeline: [HIGH_ENTROPY]\n [HIGH_ENTROPY]: [HIGH_ENTROPY]\n [HIGH_ENTROPY]: [HIGH_ENTROPY]\n [HIGH_ENTROPY]: [HIGH_ENTROPY]\n React-RCTBlob: [HIGH_ENTROPY]\n React-RCTFabric: [HIGH_ENTROPY]\n [HIGH_ENTROPY]: [HIGH_ENTROPY]\n React-RCTImage: [HIGH_ENTROPY]\n [HIGH_ENTROPY]: [HIGH_ENTROPY]\n [HIGH_ENTROPY]: [HIGH_ENTROPY]\n [HIGH_ENTROPY]: [HIGH_ENTROPY]\n [HIGH_ENTROPY]: [HIGH_ENTROPY]\n React-RCTText: [HIGH_ENTROPY]\n [HIGH_ENTROPY]: [HIGH_ENTROPY]\n React-rendererconsistency: [HIGH_ENTROPY]\n React-renderercss: [HIGH_ENTROPY]\n React-rendererdebug: [HIGH_ENTROPY]\n React-rncore: [HIGH_ENTROPY]\n React-RuntimeApple: [HIGH_ENTROPY]\n React-RuntimeCore: [HIGH_ENTROPY]\n React-runtimeexecutor: [HIGH_ENTROPY]\n React-RuntimeHermes: [HIGH_ENTROPY]\n React-runtimescheduler: [HIGH_ENTROPY]\n React-timing: [HIGH_ENTROPY]\n React-utils: [HIGH_ENTROPY]\n ReactAppDependencyProvider: [HIGH_ENTROPY]\n ReactCodegen: [HIGH_ENTROPY]\n ReactCommon: [HIGH_ENTROPY]\n RNCAsyncStorage: [HIGH_ENTROPY]\n RNGestureHandler: [HIGH_ENTROPY]\n RNReanimated: [HIGH_ENTROPY]\n RNScreens: [HIGH_ENTROPY]\n RNSVG: [HIGH_ENTROPY]\n SocketRocket: [HIGH_ENTROPY]\n Yoga: [HIGH_ENTROPY]\n\nPODFILE CHECKSUM: [HIGH_ENTROPY]\n\nCOCOAPODS: 1.16.2\n
614
selection_command
null
615
tab
{\n "name": "roger",\n "main": "./index.js",\n "version": "1.0.0",\n "scripts": {\n "start": "expo start",\n "android": "DARK_MODE=media expo start --android",\n "ios": "DARK_MODE=media expo start --ios",\n "web": "DARK_MODE=media expo start --web",\n "test": "jest --watchAll",\n "lint": "expo lint"\n },\n "jest": {\n "preset": "jest-expo"\n },\n "dependencies": {\n "@expo/html-elements": "^0.4.2",\n "@gluestack-ui/actionsheet": "^0.2.53",\n "@gluestack-ui/alert-dialog": "^0.1.38",\n "@gluestack-ui/button": "^1.0.14",\n "@gluestack-ui/fab": "^0.1.28",\n "@gluestack-ui/form-control": "^0.1.19",\n "@gluestack-ui/icon": "^0.1.27",\n "@gluestack-ui/input": "^0.1.38",\n "@gluestack-ui/modal": "^0.1.41",\n "@gluestack-ui/nativewind-utils": "^1.0.26",\n "@gluestack-ui/overlay": "^0.1.22",\n "@gluestack-ui/pressable": "^0.1.23",\n "@gluestack-ui/spinner": "^0.1.15",\n "@gluestack-ui/switch": "^0.1.29",\n "@gluestack-ui/toast": "^1.0.9",\n "@gorhom/bottom-sheet": "^5.1.6",\n "@legendapp/motion": "^2.4.0",\n "@react-native-async-storage/async-storage": "2.1.2",\n "@react-navigation/elements": "^2.5.1",\n "@react-navigation/native": "^7.1.6",\n "@shopify/react-native-skia": "^2.1.1",\n "@supabase/supabase-js": "^2.49.4",\n "@tanstack/react-query": "^5.81.2",\n "@tradle/react-native-http": "^2.0.1",\n "babel-plugin-module-resolver": "^5.0.2",\n "browserify-zlib": "^0.2.0",\n "buffer": "^6.0.3",\n "[HIGH_ENTROPY]": "^0.7.1",\n "clsx": "^2.1.1",\n "expo": "^53.0.8",\n "expo-audio": "~0.4.4",\n "expo-constants": "~17.1.6",\n "expo-font": "~13.3.1",\n "expo-linking": "~7.1.4",\n "expo-router": "~5.0.6",\n "expo-splash-screen": "~0.30.8",\n "expo-status-bar": "~2.2.3",\n "expo-symbols": "~0.4.4",\n "expo-web-browser": "^14.2.0",\n "https-browserify": "^1.0.0",\n "lucide-react-native": "^0.513.0",\n "nativewind": "^4.1.23",\n "os-browserify": "^0.3.0",\n "path-browserify": "^1.0.1",\n "process": "^0.11.10",\n "react": "19.0.0",\n "react-dom": "19.0.0",\n "react-native": "0.79.2",\n "react-native-crypto": "^2.2.0",\n "react-native-css-interop": "^0.1.22",\n "react-native-fast-confetti": "^1.0.2",\n "react-native-gesture-handler": "~2.24.0",\n "react-native-get-random-values": "^1.11.0",\n "[HIGH_ENTROPY]": "^1.17.5",\n "react-native-level-fs": "^3.0.1",\n "react-native-polyfill-globals": "^3.1.0",\n "react-native-reanimated": "~3.17.4",\n "react-native-safe-area-context": "^5.4.1",\n "react-native-screens": "~4.10.0",\n "react-native-svg": "^15.12.0",\n "react-native-url-polyfill": "^2.0.0",\n "react-native-web": "^0.20.0",\n "react-native-webview": "13.13.5",\n "stream-browserify": "^3.0.0",\n "tailwind-merge": "^3.2.0",\n "tailwindcss": "^3.4.17",\n "tailwindcss-animate": "^1.0.7"\n },\n "devDependencies": {\n "@babel/core": "^7.27.1",\n "@types/jest": "^29.5.14",\n "@types/react": "~19.0.10",\n "@types/react-test-renderer": "^19.1.0",\n "jest": "^29.7.0",\n "jest-expo": "~53.0.5",\n "jscodeshift": "^0.15.2",\n "typescript": "^5.8.3"\n },\n "private": true,\n "packageManager": "yarn@1.22.22+sha512.[HIGH_ENTROPY]",\n "overrides": {\n "lucide-react-native": {\n "react": "^19"\n }\n }\n}\n
616
selection_command
null
617
tab
{\n "name": "roger",\n "version": "1.0.0",\n "lockfileVersion": 3,\n "requires": true,\n "packages": {\n "": {\n "name": "roger",\n "version": "1.0.0",\n "dependencies": {\n "@expo/html-elements": "^0.4.2",\n "@gluestack-ui/actionsheet": "^0.2.53",\n "@gluestack-ui/alert-dialog": "^0.1.38",\n "@gluestack-ui/button": "^1.0.14",\n "@gluestack-ui/fab": "^0.1.28",\n "@gluestack-ui/form-control": "^0.1.19",\n "@gluestack-ui/icon": "^0.1.27",\n "@gluestack-ui/input": "^0.1.38",\n "@gluestack-ui/modal": "^0.1.41",\n "@gluestack-ui/nativewind-utils": "^1.0.26",\n "@gluestack-ui/overlay": "^0.1.22",\n "@gluestack-ui/pressable": "^0.1.23",\n "@gluestack-ui/spinner": "^0.1.15",\n "@gluestack-ui/switch": "^0.1.29",\n "@gluestack-ui/toast": "^1.0.9",\n "@gorhom/bottom-sheet": "^5.1.6",\n "@legendapp/motion": "^2.4.0",\n "@react-native-async-storage/async-storage": "2.1.2",\n "@react-navigation/elements": "^2.5.1",\n "@react-navigation/native": "^7.1.6",\n "@shopify/react-native-skia": "^2.1.1",\n "@supabase/supabase-js": "^2.49.4",\n "@tanstack/react-query": "^5.81.2",\n "@tradle/react-native-http": "^2.0.1",\n "babel-plugin-module-resolver": "^5.0.2",\n "browserify-zlib": "^0.2.0",\n "buffer": "^6.0.3",\n "[HIGH_ENTROPY]": "^0.7.1",\n "clsx": "^2.1.1",\n "expo": "^53.0.8",\n "expo-audio": "~0.4.4",\n "expo-constants": "~17.1.6",\n "expo-font": "~13.3.1",\n "expo-linking": "~7.1.4",\n "expo-router": "~5.0.6",\n "expo-splash-screen": "~0.30.8",\n "expo-status-bar": "~2.2.3",\n "expo-symbols": "~0.4.4",\n "expo-web-browser": "^14.2.0",\n "https-browserify": "^1.0.0",\n "lucide-react-native": "^0.513.0",\n "nativewind": "^4.1.23",\n "os-browserify": "^0.3.0",\n "path-browserify": "^1.0.1",\n "process": "^0.11.10",\n "react": "19.0.0",\n "react-dom": "19.0.0",\n "react-native": "0.79.2",\n "react-native-crypto": "^2.2.0",\n "react-native-css-interop": "^0.1.22",\n "react-native-fast-confetti": "^1.0.2",\n "react-native-gesture-handler": "~2.24.0",\n "react-native-get-random-values": "^1.11.0",\n "[HIGH_ENTROPY]": "^1.17.5",\n "react-native-level-fs": "^3.0.1",\n "react-native-polyfill-globals": "^3.1.0",\n "react-native-reanimated": "~3.17.4",\n "react-native-safe-area-context": "^5.4.1",\n "react-native-screens": "~4.10.0",\n "react-native-svg": "^15.12.0",\n "react-native-url-polyfill": "^2.0.0",\n "react-native-web": "^0.20.0",\n "react-native-webview": "13.13.5",\n "stream-browserify": "^3.0.0",\n "tailwind-merge": "^3.2.0",\n "tailwindcss": "^3.4.17",\n "tailwindcss-animate": "^1.0.7"\n },\n "devDependencies": {\n "@babel/core": "^7.27.1",\n "@types/jest": "^29.5.14",\n "@types/react": "~19.0.10",\n "@types/react-test-renderer": "^19.1.0",\n "jest": "^29.7.0",\n "jest-expo": "~53.0.5",\n "jscodeshift": "^0.15.2",\n "typescript": "^5.8.3"\n }\n },\n "node_modules/@0no-co/graphql.web": {\n "version": "1.1.2",\n "resolved": "https[BASIC_AUTH]alloc/quick-lru": {\n "version": "5.2.0",\n "resolved": "https[BASIC_AUTH]ampproject/remapping": {\n "version": "2.3.0",\n "resolved": "https[BASIC_AUTH]jridgewell/gen-mapping": "^0.3.5",\n "@jridgewell/trace-mapping": "^0.3.24"\n },\n "engines": {\n "node": ">=6.0.0"\n }\n },\n "node_modules/@babel/code-frame": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-validator-identifier": "^7.27.1",\n "js-tokens": "^4.0.0",\n "picocolors": "^1.1.1"\n },\n "engines": {\n "node": ">=6.9.0"\n }\n },\n "node_modules/@babel/compat-data": {\n "version": "7.28.0",\n "resolved": "https[BASIC_AUTH]babel/core": {\n "version": "7.28.0",\n "resolved": "https[BASIC_AUTH]ampproject/remapping": "^2.2.0",\n "@babel/code-frame": "^7.27.1",\n "@babel/generator": "^7.28.0",\n "@babel/helper-compilation-targets": "^7.27.2",\n "@babel/helper-module-transforms": "^7.27.3",\n "@babel/helpers": "^7.27.6",\n "@babel/parser": "^7.28.0",\n "@babel/template": "^7.27.2",\n "@babel/traverse": "^7.28.0",\n "@babel/types": "^7.28.0",\n "convert-source-map": "^2.0.0",\n "debug": "^4.1.0",\n "gensync": "^1.0.0-beta.2",\n "json5": "^2.2.3",\n "semver": "^6.3.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "funding": {\n "type": "opencollective",\n "url": "https[BASIC_AUTH]babel/generator/-/generator-7.28.0.tgz",\n "integrity": "[HIGH_ENTROPY]/fNJTjuq4HSqgFA+[HIGH_ENTROPY]==",\n "license": "MIT",\n "dependencies": {\n "@babel/parser": "^7.28.0",\n "@babel/types": "^7.28.0",\n "@jridgewell/gen-mapping": "^0.3.12",\n "@jridgewell/trace-mapping": "^0.3.28",\n "jsesc": "^3.0.2"\n },\n "engines": {\n "node": ">=6.9.0"\n }\n },\n "node_modules/@babel/helper-annotate-as-pure": {\n "version": "7.27.3",\n "resolved": "https[BASIC_AUTH]babel/types": "^7.27.3"\n },\n "engines": {\n "node": ">=6.9.0"\n }\n },\n "node_modules/@babel/helper-compilation-targets": {\n "version": "7.27.2",\n "resolved": "https[BASIC_AUTH]babel/compat-data": "^7.27.2",\n "@babel/helper-validator-option": "^7.27.1",\n "browserslist": "^4.24.0",\n "lru-cache": "^5.1.1",\n "semver": "^6.3.1"\n },\n "engines": {\n "node": ">=6.9.0"\n }\n },\n "node_modules/@babel/helper-create-class-features-plugin": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-annotate-as-pure": "^7.27.1",\n "@babel/helper-member-expression-to-functions": "^7.27.1",\n "@babel/helper-optimise-call-expression": "^7.27.1",\n "@babel/helper-replace-supers": "^7.27.1",\n "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1",\n "@babel/traverse": "^7.27.1",\n "semver": "^6.3.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0"\n }\n },\n "node_modules/@babel/helper-create-regexp-features-plugin": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-annotate-as-pure": "^7.27.1",\n "regexpu-core": "^6.2.0",\n "semver": "^6.3.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0"\n }\n },\n "node_modules/@babel/helper-define-polyfill-provider": {\n "version": "0.6.5",\n "resolved": "https[BASIC_AUTH]babel/helper-compilation-targets": "^7.27.2",\n "@babel/helper-plugin-utils": "^7.27.1",\n "debug": "^4.4.1",\n "lodash.debounce": "^4.0.8",\n "resolve": "^1.22.10"\n },\n "peerDependencies": {\n "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"\n }\n },\n "node_modules/@babel/helper-globals": {\n "version": "7.28.0",\n "resolved": "https[BASIC_AUTH]babel/helper-member-expression-to-functions": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/traverse": "^7.27.1",\n "@babel/types": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n }\n },\n "node_modules/@babel/helper-module-imports": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/traverse": "^7.27.1",\n "@babel/types": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n }\n },\n "node_modules/@babel/helper-module-transforms": {\n "version": "7.27.3",\n "resolved": "https[BASIC_AUTH]babel/helper-module-imports": "^7.27.1",\n "@babel/helper-validator-identifier": "^7.27.1",\n "@babel/traverse": "^7.27.3"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0"\n }\n },\n "node_modules/@babel/helper-optimise-call-expression": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/types": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n }\n },\n "node_modules/@babel/helper-plugin-utils": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-remap-async-to-generator": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-annotate-as-pure": "^7.27.1",\n "@babel/helper-wrap-function": "^7.27.1",\n "@babel/traverse": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0"\n }\n },\n "node_modules/@babel/helper-replace-supers": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-member-expression-to-functions": "^7.27.1",\n "@babel/helper-optimise-call-expression": "^7.27.1",\n "@babel/traverse": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0"\n }\n },\n "node_modules/@babel/helper-skip-transparent-expression-wrappers": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/traverse": "^7.27.1",\n "@babel/types": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n }\n },\n "node_modules/@babel/helper-string-parser": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-validator-identifier": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-validator-option": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-wrap-function": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/template": "^7.27.1",\n "@babel/traverse": "^7.27.1",\n "@babel/types": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n }\n },\n "node_modules/@babel/helpers": {\n "version": "7.27.6",\n "resolved": "https[BASIC_AUTH]babel/template": "^7.27.2",\n "@babel/types": "^7.27.6"\n },\n "engines": {\n "node": ">=6.9.0"\n }\n },\n "node_modules/@babel/highlight": {\n "version": "7.25.9",\n "resolved": "https[BASIC_AUTH]babel/helper-validator-identifier": "^7.25.9",\n "chalk": "^2.4.2",\n "js-tokens": "^4.0.0",\n "picocolors": "^1.0.0"\n },\n "engines": {\n "node": ">=6.9.0"\n }\n },\n "node_modules/@babel/highlight/node_modules/ansi-styles": {\n "version": "3.2.1",\n "resolved": "https[BASIC_AUTH]babel/highlight/node_modules/chalk": {\n "version": "2.4.2",\n "resolved": "https[BASIC_AUTH]babel/highlight/node_modules/color-convert": {\n "version": "1.9.3",\n "resolved": "https[BASIC_AUTH]babel/highlight/node_modules/color-name": {\n "version": "1.1.3",\n "resolved": "https[BASIC_AUTH]babel/highlight/node_modules/escape-string-regexp": {\n "version": "1.0.5",\n "resolved": "https[BASIC_AUTH]babel/highlight/node_modules/has-flag": {\n "version": "3.0.0",\n "resolved": "https[BASIC_AUTH]babel/highlight/node_modules/supports-color": {\n "version": "5.5.0",\n "resolved": "https[BASIC_AUTH]babel/parser": {\n "version": "7.28.0",\n "resolved": "https[BASIC_AUTH]babel/types": "^7.28.0"\n },\n "bin": {\n "parser": "bin/babel-parser.js"\n },\n "engines": {\n "node": ">=6.0.0"\n }\n },\n "node_modules/@babel/plugin-proposal-decorators": {\n "version": "7.28.0",\n "resolved": "https[BASIC_AUTH]babel/helper-create-class-features-plugin": "^7.27.1",\n "@babel/helper-plugin-utils": "^7.27.1",\n "@babel/plugin-syntax-decorators": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-proposal-export-default-from": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-async-generators": {\n "version": "7.8.4",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.8.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-bigint": {\n "version": "7.8.3",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.8.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-class-properties": {\n "version": "7.12.13",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.12.13"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-class-static-block": {\n "version": "7.14.5",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.14.5"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-decorators": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-dynamic-import": {\n "version": "7.8.3",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.8.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-export-default-from": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-flow": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-import-attributes": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-import-meta": {\n "version": "7.10.4",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.10.4"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-json-strings": {\n "version": "7.8.3",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.8.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-jsx": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-logical-assignment-operators": {\n "version": "7.10.4",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.10.4"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {\n "version": "7.8.3",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.8.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-numeric-separator": {\n "version": "7.10.4",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.10.4"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-object-rest-spread": {\n "version": "7.8.3",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.8.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-optional-catch-binding": {\n "version": "7.8.3",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.8.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-optional-chaining": {\n "version": "7.8.3",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.8.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/[HIGH_ENTROPY]": {\n "version": "7.14.5",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.14.5"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-top-level-await": {\n "version": "7.14.5",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.14.5"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-syntax-typescript": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-arrow-functions": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-async-generator-functions": {\n "version": "7.28.0",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1",\n "@babel/helper-remap-async-to-generator": "^7.27.1",\n "@babel/traverse": "^7.28.0"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-async-to-generator": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-module-imports": "^7.27.1",\n "@babel/helper-plugin-utils": "^7.27.1",\n "@babel/helper-remap-async-to-generator": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-block-scoping": {\n "version": "7.28.0",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-class-properties": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-create-class-features-plugin": "^7.27.1",\n "@babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-classes": {\n "version": "7.28.0",\n "resolved": "https[BASIC_AUTH]babel/helper-annotate-as-pure": "^7.27.3",\n "@babel/helper-compilation-targets": "^7.27.2",\n "@babel/helper-globals": "^7.28.0",\n "@babel/helper-plugin-utils": "^7.27.1",\n "@babel/helper-replace-supers": "^7.27.1",\n "@babel/traverse": "^7.28.0"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-computed-properties": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1",\n "@babel/template": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-destructuring": {\n "version": "7.28.0",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1",\n "@babel/traverse": "^7.28.0"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-export-namespace-from": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-flow-strip-types": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1",\n "@babel/plugin-syntax-flow": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-for-of": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1",\n "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-function-name": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-compilation-targets": "^7.27.1",\n "@babel/helper-plugin-utils": "^7.27.1",\n "@babel/traverse": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-literals": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-logical-assignment-operators": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-modules-commonjs": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-module-transforms": "^7.27.1",\n "@babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-named-capturing-groups-regex": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-create-regexp-features-plugin": "^7.27.1",\n "@babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0"\n }\n },\n "node_modules/@babel/plugin-transform-nullish-coalescing-operator": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-numeric-separator": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-object-rest-spread": {\n "version": "7.28.0",\n "resolved": "https[BASIC_AUTH]babel/helper-compilation-targets": "^7.27.2",\n "@babel/helper-plugin-utils": "^7.27.1",\n "@babel/plugin-transform-destructuring": "^7.28.0",\n "@babel/plugin-transform-parameters": "^7.27.7",\n "@babel/traverse": "^7.28.0"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-optional-catch-binding": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-optional-chaining": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1",\n "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-parameters": {\n "version": "7.27.7",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/[HIGH_ENTROPY]": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-create-class-features-plugin": "^7.27.1",\n "@babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/[HIGH_ENTROPY]": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-annotate-as-pure": "^7.27.1",\n "@babel/helper-create-class-features-plugin": "^7.27.1",\n "@babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-react-display-name": {\n "version": "7.28.0",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-react-jsx": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-annotate-as-pure": "^7.27.1",\n "@babel/helper-module-imports": "^7.27.1",\n "@babel/helper-plugin-utils": "^7.27.1",\n "@babel/plugin-syntax-jsx": "^7.27.1",\n "@babel/types": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-react-jsx-development": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/plugin-transform-react-jsx": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-react-jsx-self": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-react-jsx-source": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-react-pure-annotations": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-annotate-as-pure": "^7.27.1",\n "@babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-regenerator": {\n "version": "7.28.0",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-runtime": {\n "version": "7.28.0",\n "resolved": "https[BASIC_AUTH]babel/helper-module-imports": "^7.27.1",\n "@babel/helper-plugin-utils": "^7.27.1",\n "babel-plugin-polyfill-corejs2": "^0.4.14",\n "babel-plugin-polyfill-corejs3": "^0.13.0",\n "babel-plugin-polyfill-regenerator": "^0.6.5",\n "semver": "^6.3.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-shorthand-properties": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-spread": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1",\n "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-sticky-regex": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-template-literals": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-typescript": {\n "version": "7.28.0",\n "resolved": "https[BASIC_AUTH]babel/helper-annotate-as-pure": "^7.27.3",\n "@babel/helper-create-class-features-plugin": "^7.27.1",\n "@babel/helper-plugin-utils": "^7.27.1",\n "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1",\n "@babel/plugin-syntax-typescript": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/plugin-transform-unicode-regex": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-create-regexp-features-plugin": "^7.27.1",\n "@babel/helper-plugin-utils": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/preset-flow": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1",\n "@babel/helper-validator-option": "^7.27.1",\n "@babel/plugin-transform-flow-strip-types": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/preset-react": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1",\n "@babel/helper-validator-option": "^7.27.1",\n "@babel/plugin-transform-react-display-name": "^7.27.1",\n "@babel/plugin-transform-react-jsx": "^7.27.1",\n "@babel/plugin-transform-react-jsx-development": "^7.27.1",\n "@babel/plugin-transform-react-pure-annotations": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/preset-typescript": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.27.1",\n "@babel/helper-validator-option": "^7.27.1",\n "@babel/plugin-syntax-jsx": "^7.27.1",\n "@babel/plugin-transform-modules-commonjs": "^7.27.1",\n "@babel/plugin-transform-typescript": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/register": {\n "version": "7.27.1",\n "resolved": "https[BASIC_AUTH]babel/core": "^7.0.0-0"\n }\n },\n "node_modules/@babel/register/node_modules/make-dir": {\n "version": "2.1.0",\n "resolved": "https[BASIC_AUTH]babel/register/node_modules/pify": {\n "version": "4.0.1",\n "resolved": "https[BASIC_AUTH]babel/register/node_modules/semver": {\n "version": "5.7.2",\n "resolved": "https[BASIC_AUTH]babel/runtime": {\n "version": "7.27.6",\n "resolved": "https[BASIC_AUTH]babel/template": {\n "version": "7.27.2",\n "resolved": "https[BASIC_AUTH]babel/code-frame": "^7.27.1",\n "@babel/parser": "^7.27.2",\n "@babel/types": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n }\n },\n "node_modules/@babel/traverse": {\n "version": "7.28.0",\n "resolved": "https[BASIC_AUTH]babel/code-frame": "^7.27.1",\n "@babel/generator": "^7.28.0",\n "@babel/helper-globals": "^7.28.0",\n "@babel/parser": "^7.28.0",\n "@babel/template": "^7.27.2",\n "@babel/types": "^7.28.0",\n "debug": "^4.3.1"\n },\n "engines": {\n "node": ">=6.9.0"\n }\n },\n "node_modules/@babel/traverse--for-generate-function-map": {\n "name": "@babel/traverse",\n "version": "7.28.0",\n "resolved": "https[BASIC_AUTH]babel/code-frame": "^7.27.1",\n "@babel/generator": "^7.28.0",\n "@babel/helper-globals": "^7.28.0",\n "@babel/parser": "^7.28.0",\n "@babel/template": "^7.27.2",\n "@babel/types": "^7.28.0",\n "debug": "^4.3.1"\n },\n "engines": {\n "node": ">=6.9.0"\n }\n },\n "node_modules/@babel/types": {\n "version": "7.28.0",\n "resolved": "https[BASIC_AUTH]babel/helper-string-parser": "^7.27.1",\n "@babel/helper-validator-identifier": "^7.27.1"\n },\n "engines": {\n "node": ">=6.9.0"\n }\n },\n "node_modules/@bcoe/v8-coverage": {\n "version": "0.2.3",\n "resolved": "https[BASIC_AUTH]egjs/hammerjs": {\n "version": "2.0.17",\n "resolved": "https[BASIC_AUTH]types/hammerjs": "^2.0.36"\n },\n "engines": {\n "node": ">=0.8.0"\n }\n },\n "node_modules/@expo/cli": {\n "version": "0.24.20",\n "resolved": "https[BASIC_AUTH]0no-co/graphql.web": "^1.0.8",\n "@babel/runtime": "^7.20.0",\n "@expo/code-signing-certificates": "^0.0.5",\n "@expo/config": "~11.0.13",\n "@expo/config-plugins": "~10.1.2",\n "@expo/devcert": "^1.1.2",\n "@expo/env": "~1.0.7",\n "@expo/image-utils": "^0.7.6",\n "@expo/json-file": "^9.1.5",\n "@expo/metro-config": "~0.20.17",\n "@expo/osascript": "^2.2.5",\n "@expo/package-manager": "^1.8.6",\n "@expo/plist": "^0.3.5",\n "@expo/prebuild-config": "^9.0.11",\n "@expo/spawn-async": "^1.7.2",\n "@expo/ws-tunnel": "^1.0.1",\n "@expo/xcpretty": "^4.3.0",\n "@react-native/dev-middleware": "0.79.5",\n "@urql/core": "^5.0.6",\n "@urql/exchange-retry": "^1.3.0",\n "accepts": "^1.3.8",\n "arg": "^5.0.2",\n "better-opn": "~3.0.2",\n "bplist-creator": "0.1.0",\n "bplist-parser": "^0.3.1",\n "chalk": "^4.0.0",\n "ci-info": "^3.3.0",\n "compression": "^1.7.4",\n "connect": "^3.7.0",\n "debug": "^4.3.4",\n "env-editor": "^0.4.1",\n "freeport-async": "^2.0.0",\n "getenv": "^2.0.0",\n "glob": "^10.4.2",\n "lan-network": "^0.1.6",\n "minimatch": "^9.0.0",\n "node-forge": "^1.3.1",\n "npm-package-arg": "^11.0.0",\n "ora": "^3.4.0",\n "picomatch": "^3.0.1",\n "pretty-bytes": "^5.6.0",\n "pretty-format": "^29.7.0",\n "progress": "^2.0.3",\n "prompts": "^2.3.2",\n "qrcode-terminal": "0.11.0",\n "require-from-string": "^2.0.2",\n "requireg": "^0.2.2",\n "resolve": "^1.22.2",\n "resolve-from": "^5.0.0",\n "resolve.exports": "^2.0.3",\n "semver": "^7.6.0",\n "send": "^0.19.0",\n "slugify": "^1.3.4",\n "source-map-support": "~0.5.21",\n "stacktrace-parser": "^0.1.10",\n "structured-headers": "^0.4.1",\n "tar": "^7.4.3",\n "terminal-link": "^2.1.1",\n "undici": "^6.18.2",\n "wrap-ansi": "^7.0.0",\n "ws": "^8.12.1"\n },\n "bin": {\n "expo-internal": "build/bin/cli"\n }\n },\n "node_modules/@expo/cli/node_modules/glob": {\n "version": "10.4.5",\n "resolved": "https[BASIC_AUTH]expo/cli/node_modules/minipass": {\n "version": "7.1.2",\n "resolved": "https[BASIC_AUTH]expo/cli/node_modules/semver": {\n "version": "7.7.2",\n "resolved": "https[BASIC_AUTH]expo/code-signing-certificates": {\n "version": "0.0.5",\n "resolved": "https[BASIC_AUTH]expo/config": {\n "version": "11.0.13",\n "resolved": "https[BASIC_AUTH]babel/code-frame": "~7.10.4",\n "@expo/config-plugins": "~10.1.2",\n "@expo/config-types": "^53.0.5",\n "@expo/json-file": "^9.1.5",\n "deepmerge": "^4.3.1",\n "getenv": "^2.0.0",\n "glob": "^10.4.2",\n "require-from-string": "^2.0.2",\n "resolve-from": "^5.0.0",\n "resolve-workspace-root": "^2.0.0",\n "semver": "^7.6.0",\n "slugify": "^1.3.4",\n "sucrase": "3.35.0"\n }\n },\n "node_modules/@expo/config-plugins": {\n "version": "10.1.2",\n "resolved": "https[BASIC_AUTH]expo/config-types": "^53.0.5",\n "@expo/json-file": "~9.1.5",\n "@expo/plist": "^0.3.5",\n "@expo/sdk-runtime-versions": "^1.0.0",\n "chalk": "^4.1.2",\n "debug": "^4.3.5",\n "getenv": "^2.0.0",\n "glob": "^10.4.2",\n "resolve-from": "^5.0.0",\n "semver": "^7.5.4",\n "slash": "^3.0.0",\n "slugify": "^1.6.6",\n "xcode": "^3.0.1",\n "xml2js": "0.6.0"\n }\n },\n "node_modules/@expo/config-plugins/node_modules/glob": {\n "version": "10.4.5",\n "resolved": "https[BASIC_AUTH]expo/config-plugins/node_modules/minipass": {\n "version": "7.1.2",\n "resolved": "https[BASIC_AUTH]expo/config-plugins/node_modules/semver": {\n "version": "7.7.2",\n "resolved": "https[BASIC_AUTH]expo/config-types": {\n "version": "53.0.5",\n "resolved": "https[BASIC_AUTH]expo/config/node_modules/@babel/code-frame": {\n "version": "7.10.4",\n "resolved": "https[BASIC_AUTH]babel/highlight": "^7.10.4"\n }\n },\n "node_modules/@expo/config/node_modules/glob": {\n "version": "10.4.5",\n "resolved": "https[BASIC_AUTH]expo/config/node_modules/minipass": {\n "version": "7.1.2",\n "resolved": "https[BASIC_AUTH]expo/config/node_modules/semver": {\n "version": "7.7.2",\n "resolved": "https[BASIC_AUTH]expo/devcert": {\n "version": "1.2.0",\n "resolved": "https[BASIC_AUTH]expo/sudo-prompt": "^9.3.1",\n "debug": "^3.1.0",\n "glob": "^10.4.2"\n }\n },\n "node_modules/@expo/devcert/node_modules/debug": {\n "version": "3.2.7",\n "resolved": "https[BASIC_AUTH]expo/devcert/node_modules/glob": {\n "version": "10.4.5",\n "resolved": "https[BASIC_AUTH]expo/devcert/node_modules/minipass": {\n "version": "7.1.2",\n "resolved": "https[BASIC_AUTH]expo/env": {\n "version": "1.0.7",\n "resolved": "https[BASIC_AUTH]expo/fingerprint": {\n "version": "0.13.4",\n "resolved": "https[BASIC_AUTH]expo/spawn-async": "^1.7.2",\n "arg": "^5.0.2",\n "chalk": "^4.1.2",\n "debug": "^4.3.4",\n "find-up": "^5.0.0",\n "getenv": "^2.0.0",\n "glob": "^10.4.2",\n "ignore": "^5.3.1",\n "minimatch": "^9.0.0",\n "p-limit": "^3.1.0",\n "resolve-from": "^5.0.0",\n "semver": "^7.6.0"\n },\n "bin": {\n "fingerprint": "bin/cli.js"\n }\n },\n "node_modules/@expo/fingerprint/node_modules/glob": {\n "version": "10.4.5",\n "resolved": "https[BASIC_AUTH]expo/fingerprint/node_modules/minipass": {\n "version": "7.1.2",\n "resolved": "https[BASIC_AUTH]expo/fingerprint/node_modules/semver": {\n "version": "7.7.2",\n "resolved": "https[BASIC_AUTH]expo/html-elements": {\n "version": "0.4.3",\n "resolved": "https[BASIC_AUTH]expo/image-utils": {\n "version": "0.7.6",\n "resolved": "https[BASIC_AUTH]expo/spawn-async": "^1.7.2",\n "chalk": "^4.0.0",\n "getenv": "^2.0.0",\n "jimp-compact": "0.16.1",\n "parse-png": "^2.1.0",\n "resolve-from": "^5.0.0",\n "semver": "^7.6.0",\n "temp-dir": "~2.0.0",\n "unique-string": "~2.0.0"\n }\n },\n "node_modules/@expo/image-utils/node_modules/semver": {\n "version": "7.7.2",\n "resolved": "https[BASIC_AUTH]expo/json-file": {\n "version": "9.1.5",\n "resolved": "https[BASIC_AUTH]babel/code-frame": "~7.10.4",\n "json5": "^2.2.3"\n }\n },\n "node_modules/@expo/json-file/node_modules/@babel/code-frame": {\n "version": "7.10.4",\n "resolved": "https[BASIC_AUTH]babel/highlight": "^7.10.4"\n }\n },\n "node_modules/@expo/metro-config": {\n "version": "0.20.17",\n "resolved": "https[BASIC_AUTH]babel/core": "^7.20.0",\n "@babel/generator": "^7.20.5",\n "@babel/parser": "^7.20.0",\n "@babel/types": "^7.20.0",\n "@expo/config": "~11.0.12",\n "@expo/env": "~1.0.7",\n "@expo/json-file": "~9.1.5",\n "@expo/spawn-async": "^1.7.2",\n "chalk": "^4.1.0",\n "debug": "^4.3.2",\n "dotenv": "~16.4.5",\n "dotenv-expand": "~11.0.6",\n "getenv": "^2.0.0",\n "glob": "^10.4.2",\n "jsc-safe-url": "^0.2.4",\n "lightningcss": "~1.27.0",\n "minimatch": "^9.0.0",\n "postcss": "~8.4.32",\n "resolve-from": "^5.0.0"\n }\n },\n "node_modules/@expo/metro-config/node_modules/glob": {\n "version": "10.4.5",\n "resolved": "https[BASIC_AUTH]expo/metro-config/node_modules/minipass": {\n "version": "7.1.2",\n "resolved": "https[BASIC_AUTH]expo/metro-runtime": {\n "version": "5.0.4",\n "resolved": "https[BASIC_AUTH]expo/osascript": {\n "version": "2.2.5",\n "resolved": "https[BASIC_AUTH]expo/spawn-async": "^1.7.2",\n "exec-async": "^2.2.0"\n },\n "engines": {\n "node": ">=12"\n }\n },\n "node_modules/@expo/package-manager": {\n "version": "1.8.6",\n "resolved": "https[BASIC_AUTH]expo/json-file": "^9.1.5",\n "@expo/spawn-async": "^1.7.2",\n "chalk": "^4.0.0",\n "npm-package-arg": "^11.0.0",\n "ora": "^3.4.0",\n "resolve-workspace-root": "^2.0.0"\n }\n },\n "node_modules/@expo/plist": {\n "version": "0.3.5",\n "resolved": "https[BASIC_AUTH]xmldom/xmldom": "^0.8.8",\n "base64-js": "^1.2.3",\n "xmlbuilder": "^15.1.1"\n }\n },\n "node_modules/@expo/prebuild-config": {\n "version": "9.0.11",\n "resolved": "https[BASIC_AUTH]expo/config": "~11.0.13",\n "@expo/config-plugins": "~10.1.2",\n "@expo/config-types": "^53.0.5",\n "@expo/image-utils": "^0.7.6",\n "@expo/json-file": "^9.1.5",\n "@react-native/normalize-colors": "0.79.5",\n "debug": "^4.3.1",\n "resolve-from": "^5.0.0",\n "semver": "^7.6.0",\n "xml2js": "0.6.0"\n }\n },\n "node_modules/@expo/prebuild-config/node_modules/semver": {\n "version": "7.7.2",\n "resolved": "https[BASIC_AUTH]expo/sdk-runtime-versions": {\n "version": "1.0.0",\n "resolved": "https[BASIC_AUTH]expo/server": {\n "version": "0.6.3",\n "resolved": "https[BASIC_AUTH]expo/spawn-async": {\n "version": "1.7.2",\n "resolved": "https[BASIC_AUTH]expo/sudo-prompt": {\n "version": "9.3.2",\n "resolved": "https[BASIC_AUTH]expo/vector-icons": {\n "version": "14.1.0",\n "resolved": "https[BASIC_AUTH]expo/ws-tunnel": {\n "version": "1.0.6",\n "resolved": "https[BASIC_AUTH]expo/xcpretty": {\n "version": "4.3.2",\n "resolved": "https[BASIC_AUTH]babel/code-frame": "7.10.4",\n "chalk": "^4.1.0",\n "find-up": "^5.0.0",\n "js-yaml": "^4.1.0"\n },\n "bin": {\n "excpretty": "build/cli.js"\n }\n },\n "node_modules/@expo/xcpretty/node_modules/@babel/code-frame": {\n "version": "7.10.4",\n "resolved": "https[BASIC_AUTH]babel/highlight": "^7.10.4"\n }\n },\n "node_modules/@formatjs/ecma402-abstract": {\n "version": "2.3.4",\n "resolved": "https[BASIC_AUTH]formatjs/fast-memoize": "2.2.7",\n "@formatjs/intl-localematcher": "0.6.1",\n "decimal.js": "^10.4.3",\n "tslib": "^2.8.0"\n }\n },\n "node_modules/@formatjs/fast-memoize": {\n "version": "2.2.7",\n "resolved": "https[BASIC_AUTH]formatjs/icu-messageformat-parser": {\n "version": "2.11.2",\n "resolved": "https[BASIC_AUTH]formatjs/ecma402-abstract": "2.3.4",\n "@formatjs/icu-skeleton-parser": "1.8.14",\n "tslib": "^2.8.0"\n }\n },\n "node_modules/@formatjs/icu-skeleton-parser": {\n "version": "1.8.14",\n "resolved": "https[BASIC_AUTH]formatjs/ecma402-abstract": "2.3.4",\n "tslib": "^2.8.0"\n }\n },\n "node_modules/@formatjs/intl-localematcher": {\n "version": "0.6.1",\n "resolved": "https[BASIC_AUTH]gluestack-ui/actionsheet": {\n "version": "0.2.53",\n "resolved": "https[BASIC_AUTH]gluestack-ui/hooks": "0.1.13",\n "@gluestack-ui/overlay": "^0.1.22",\n "@gluestack-ui/transitions": "^0.1.11",\n "@gluestack-ui/utils": "^0.1.15",\n "@react-native-aria/dialog": "^0.0.5",\n "@react-native-aria/focus": "^0.2.9",\n "@react-native-aria/interactions": "0.2.16"\n },\n "peerDependencies": {\n "react": ">=16",\n "react-dom": ">=16"\n }\n },\n "node_modules/@gluestack-ui/alert-dialog": {\n "version": "0.1.38",\n "resolved": "https[BASIC_AUTH]gluestack-ui/hooks": "0.1.13",\n "@gluestack-ui/overlay": "^0.1.22",\n "@gluestack-ui/utils": "^0.1.15",\n "@react-native-aria/dialog": "^0.0.5",\n "@react-native-aria/focus": "^0.2.9",\n "@react-native-aria/interactions": "0.2.16"\n },\n "peerDependencies": {\n "react": ">=16",\n "react-dom": ">=16"\n }\n },\n "node_modules/@gluestack-ui/button": {\n "version": "1.0.14",\n "resolved": "https[BASIC_AUTH]gluestack-ui/utils": "0.1.15",\n "@react-native-aria/focus": "^0.2.9",\n "@react-native-aria/interactions": "0.2.16"\n },\n "peerDependencies": {\n "react": ">=16",\n "react-dom": ">=16"\n }\n },\n "node_modules/@gluestack-ui/fab": {\n "version": "0.1.28",\n "resolved": "https[BASIC_AUTH]gluestack-ui/utils": "^0.1.15",\n "@react-native-aria/focus": "^0.2.9",\n "@react-native-aria/interactions": "0.2.16"\n },\n "peerDependencies": {\n "react": ">=16",\n "react-dom": ">=16"\n }\n },\n "node_modules/@gluestack-ui/form-control": {\n "version": "0.1.19",\n "resolved": "https[BASIC_AUTH]gluestack-ui/utils": "^0.1.14",\n "@react-native-aria/focus": "^0.2.9"\n },\n "peerDependencies": {\n "react": ">=16",\n "react-dom": ">=16"\n }\n },\n "node_modules/@gluestack-ui/hooks": {\n "version": "0.1.13",\n "resolved": "https[BASIC_AUTH]gluestack-ui/icon": {\n "version": "0.1.27",\n "resolved": "https[BASIC_AUTH]gluestack-ui/provider": "^0.1.19",\n "@gluestack-ui/utils": "^0.1.14",\n "@react-native-aria/focus": "^0.2.9"\n },\n "peerDependencies": {\n "react": ">=16",\n "react-dom": ">=16"\n }\n },\n "node_modules/@gluestack-ui/input": {\n "version": "0.1.38",\n "resolved": "https[BASIC_AUTH]gluestack-ui/form-control": "^0.1.19",\n "@gluestack-ui/utils": "^0.1.15",\n "@react-native-aria/focus": "^0.2.9",\n "@react-native-aria/interactions": "0.2.16"\n },\n "peerDependencies": {\n "react": ">=16",\n "react-dom": ">=16"\n }\n },\n "node_modules/@gluestack-ui/modal": {\n "version": "0.1.41",\n "resolved": "https[BASIC_AUTH]gluestack-ui/hooks": "0.1.13",\n "@gluestack-ui/overlay": "^0.1.22",\n "@gluestack-ui/utils": "^0.1.15",\n "@react-native-aria/dialog": "^0.0.5",\n "@react-native-aria/focus": "^0.2.9",\n "@react-native-aria/interactions": "0.2.16",\n "@react-native-aria/overlays": "^0.3.15"\n },\n "peerDependencies": {\n "react": ">=16",\n "react-dom": ">=16"\n }\n },\n "node_modules/@gluestack-ui/nativewind-utils": {\n "version": "1.0.26",\n "resolved": "https[BASIC_AUTH]gluestack-ui/overlay": {\n "version": "0.1.22",\n "resolved": "https[BASIC_AUTH]react-native-aria/focus": "^0.2.9",\n "@react-native-aria/interactions": "0.2.16",\n "@react-native-aria/overlays": "^0.3.15"\n },\n "peerDependencies": {\n "react": ">=16",\n "react-dom": ">=16"\n }\n },\n "node_modules/@gluestack-ui/pressable": {\n "version": "0.1.23",\n "resolved": "https[BASIC_AUTH]gluestack-ui/utils": "^0.1.15",\n "@react-native-aria/focus": "^0.2.9",\n "@react-native-aria/interactions": "0.2.16"\n },\n "peerDependencies": {\n "react": ">=16",\n "react-dom": ">=16"\n }\n },\n "node_modules/@gluestack-ui/provider": {\n "version": "0.1.19",\n "resolved": "https[BASIC_AUTH]react-native-aria/interactions": "0.2.16",\n "tsconfig": "7",\n "typescript": "^5.6.3"\n },\n "peerDependencies": {\n "react": ">=16",\n "react-dom": ">=16"\n }\n },\n "node_modules/@gluestack-ui/react-native-aria": {\n "version": "0.1.7",\n "resolved": "https[BASIC_AUTH]react-native-aria/focus": "^0.2.9"\n },\n "peerDependencies": {\n "react": ">=16",\n "react-dom": ">=16"\n }\n },\n "node_modules/@gluestack-ui/spinner": {\n "version": "0.1.15",\n "resolved": "https[BASIC_AUTH]gluestack-ui/switch": {\n "version": "0.1.29",\n "resolved": "https[BASIC_AUTH]gluestack-ui/form-control": "^0.1.19",\n "@gluestack-ui/utils": "^0.1.15",\n "@react-native-aria/focus": "^0.2.9",\n "@react-native-aria/interactions": "0.2.16",\n "@react-stately/toggle": "^3.4.4"\n },\n "peerDependencies": {\n "react": ">=16",\n "react-dom": ">=16"\n }\n },\n "node_modules/@gluestack-ui/toast": {\n "version": "1.0.9",\n "resolved": "https[BASIC_AUTH]gluestack-ui/hooks": "0.1.13",\n "@gluestack-ui/overlay": "^0.1.20",\n "@gluestack-ui/transitions": "^0.1.11",\n "@gluestack-ui/utils": "^0.1.14",\n "@react-native-aria/focus": "^0.2.9"\n },\n "peerDependencies": {\n "react": ">=16",\n "react-dom": ">=16"\n }\n },\n "node_modules/@gluestack-ui/transitions": {\n "version": "0.1.11",\n "resolved": "https[BASIC_AUTH]gluestack-ui/overlay": "^0.1.16",\n "@gluestack-ui/react-native-aria": "^0.1.6",\n "@gluestack-ui/utils": "^0.1.14",\n "@react-native-aria/focus": "^0.2.9"\n },\n "peerDependencies": {\n "react": ">=16",\n "react-dom": ">=16"\n }\n },\n "node_modules/@gluestack-ui/utils": {\n "version": "0.1.15",\n "resolved": "https[BASIC_AUTH]react-native-aria/focus": "^0.2.9"\n },\n "peerDependencies": {\n "react": ">=16",\n "react-dom": ">=16"\n }\n },\n "node_modules/@gorhom/bottom-sheet": {\n "version": "5.1.6",\n "resolved": "https[BASIC_AUTH]gorhom/portal": "1.0.14",\n "invariant": "^2.2.4"\n },\n "peerDependencies": {\n "@types/react": "*",\n "@types/react-native": "*",\n "react": "*",\n "react-native": "*",\n "react-native-gesture-handler": ">=2.16.1",\n "react-native-reanimated": ">=3.16.0"\n },\n "peerDependenciesMeta": {\n "@types/react": {\n "optional": true\n },\n "@types/react-native": {\n "optional": true\n }\n }\n },\n "node_modules/@gorhom/portal": {\n "version": "1.0.14",\n "resolved": "https[BASIC_AUTH][HIGH_ENTROPY]/date": {\n "version": "3.8.2",\n "resolved": "https[BASIC_AUTH]swc/helpers": "^0.5.0"\n }\n },\n "node_modules/@[HIGH_ENTROPY]/message": {\n "version": "3.1.8",\n "resolved": "https[BASIC_AUTH]swc/helpers": "^0.5.0",\n "intl-messageformat": "^10.1.0"\n }\n },\n "node_modules/@[HIGH_ENTROPY]/number": {\n "version": "3.6.3",\n "resolved": "https[BASIC_AUTH]swc/helpers": "^0.5.0"\n }\n },\n "node_modules/@[HIGH_ENTROPY]/string": {\n "version": "3.2.7",\n "resolved": "https[BASIC_AUTH]swc/helpers": "^0.5.0"\n }\n },\n "node_modules/@isaacs/cliui": {\n "version": "8.0.2",\n "resolved": "https[BASIC_AUTH]^4.2.0",\n "strip-ansi": "^7.0.1",\n "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",\n "wrap-ansi": "^8.1.0",\n "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"\n },\n "engines": {\n "node": ">=12"\n }\n },\n "node_modules/@isaacs/cliui/node_modules/ansi-regex": {\n "version": "6.1.0",\n "resolved": "https[BASIC_AUTH]isaacs/cliui/node_modules/ansi-styles": {\n "version": "6.2.1",\n "resolved": "https[BASIC_AUTH]isaacs/cliui/node_modules/emoji-regex": {\n "version": "9.2.2",\n "resolved": "https[BASIC_AUTH]isaacs/cliui/node_modules/string-width": {\n "version": "5.1.2",\n "resolved": "https[BASIC_AUTH]isaacs/cliui/node_modules/strip-ansi": {\n "version": "7.1.0",\n "resolved": "https[BASIC_AUTH]isaacs/cliui/node_modules/wrap-ansi": {\n "version": "8.1.0",\n "resolved": "https[BASIC_AUTH]isaacs/fs-minipass": {\n "version": "4.0.1",\n "resolved": "https[BASIC_AUTH]isaacs/fs-minipass/node_modules/minipass": {\n "version": "7.1.2",\n "resolved": "https[BASIC_AUTH]isaacs/ttlcache": {\n "version": "1.4.1",\n "resolved": "https[BASIC_AUTH]istanbuljs/load-nyc-config": {\n "version": "1.1.0",\n "resolved": "https[BASIC_AUTH]istanbuljs/load-nyc-config/node_modules/argparse": {\n "version": "1.0.10",\n "resolved": "https[BASIC_AUTH]istanbuljs/load-nyc-config/node_modules/find-up": {\n "version": "4.1.0",\n "resolved": "https[BASIC_AUTH]istanbuljs/load-nyc-config/node_modules/js-yaml": {\n "version": "3.14.1",\n "resolved": "https[BASIC_AUTH]istanbuljs/load-nyc-config/node_modules/locate-path": {\n "version": "5.0.0",\n "resolved": "https[BASIC_AUTH]istanbuljs/load-nyc-config/node_modules/p-limit": {\n "version": "2.3.0",\n "resolved": "https[BASIC_AUTH]istanbuljs/load-nyc-config/node_modules/p-locate": {\n "version": "4.1.0",\n "resolved": "https[BASIC_AUTH]istanbuljs/schema": {\n "version": "0.1.3",\n "resolved": "https[BASIC_AUTH]jest/console": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]jest/types": "^29.6.3",\n "@types/node": "*",\n "chalk": "^4.0.0",\n "jest-message-util": "^29.7.0",\n "jest-util": "^29.7.0",\n "slash": "^3.0.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/@jest/core": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]jest/console": "^29.7.0",\n "@jest/reporters": "^29.7.0",\n "@jest/test-result": "^29.7.0",\n "@jest/transform": "^29.7.0",\n "@jest/types": "^29.6.3",\n "@types/node": "*",\n "ansi-escapes": "^4.2.1",\n "chalk": "^4.0.0",\n "ci-info": "^3.2.0",\n "exit": "^0.1.2",\n "graceful-fs": "^4.2.9",\n "jest-changed-files": "^29.7.0",\n "jest-config": "^29.7.0",\n "jest-haste-map": "^29.7.0",\n "jest-message-util": "^29.7.0",\n "jest-regex-util": "^29.6.3",\n "jest-resolve": "^29.7.0",\n "jest-resolve-dependencies": "^29.7.0",\n "jest-runner": "^29.7.0",\n "jest-runtime": "^29.7.0",\n "jest-snapshot": "^29.7.0",\n "jest-util": "^29.7.0",\n "jest-validate": "^29.7.0",\n "jest-watcher": "^29.7.0",\n "micromatch": "^4.0.4",\n "pretty-format": "^29.7.0",\n "slash": "^3.0.0",\n "strip-ansi": "^6.0.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n },\n "peerDependencies": {\n "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"\n },\n "peerDependenciesMeta": {\n "node-notifier": {\n "optional": true\n }\n }\n },\n "node_modules/@jest/[HIGH_ENTROPY]": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]jest/types": "^29.6.3"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/@jest/environment": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]jest/fake-timers": "^29.7.0",\n "@jest/types": "^29.6.3",\n "@types/node": "*",\n "jest-mock": "^29.7.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/@jest/expect": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]jest/expect-utils": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]jest/fake-timers": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]jest/types": "^29.6.3",\n "@sinonjs/fake-timers": "^10.0.2",\n "@types/node": "*",\n "jest-message-util": "^29.7.0",\n "jest-mock": "^29.7.0",\n "jest-util": "^29.7.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/@jest/globals": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]jest/environment": "^29.7.0",\n "@jest/expect": "^29.7.0",\n "@jest/types": "^29.6.3",\n "jest-mock": "^29.7.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/@jest/reporters": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]bcoe/v8-coverage": "^0.2.3",\n "@jest/console": "^29.7.0",\n "@jest/test-result": "^29.7.0",\n "@jest/transform": "^29.7.0",\n "@jest/types": "^29.6.3",\n "@jridgewell/trace-mapping": "^0.3.18",\n "@types/node": "*",\n "chalk": "^4.0.0",\n "collect-v8-coverage": "^1.0.0",\n "exit": "^0.1.2",\n "glob": "^7.1.3",\n "graceful-fs": "^4.2.9",\n "istanbul-lib-coverage": "^3.0.0",\n "istanbul-lib-instrument": "^6.0.0",\n "istanbul-lib-report": "^3.0.0",\n "istanbul-lib-source-maps": "^4.0.0",\n "istanbul-reports": "^3.1.3",\n "jest-message-util": "^29.7.0",\n "jest-util": "^29.7.0",\n "jest-worker": "^29.7.0",\n "slash": "^3.0.0",\n "string-length": "^4.0.1",\n "strip-ansi": "^6.0.0",\n "v8-to-istanbul": "^9.0.1"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n },\n "peerDependencies": {\n "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"\n },\n "peerDependenciesMeta": {\n "node-notifier": {\n "optional": true\n }\n }\n },\n "node_modules/@jest/reporters/node_modules/brace-expansion": {\n "version": "1.1.12",\n "resolved": "https[BASIC_AUTH]jest/reporters/node_modules/glob": {\n "version": "7.2.3",\n "resolved": "https[BASIC_AUTH]jest/reporters/node_modules/minimatch": {\n "version": "3.1.2",\n "resolved": "https[BASIC_AUTH]jest/schemas": {\n "version": "29.6.3",\n "resolved": "https[BASIC_AUTH]sinclair/typebox": "^0.27.8"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/@jest/source-map": {\n "version": "29.6.3",\n "resolved": "https[BASIC_AUTH]jridgewell/trace-mapping": "^0.3.18",\n "callsites": "^3.0.0",\n "graceful-fs": "^4.2.9"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/@jest/test-result": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]jest/console": "^29.7.0",\n "@jest/types": "^29.6.3",\n "@types/istanbul-lib-coverage": "^2.0.0",\n "collect-v8-coverage": "^1.0.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/@jest/test-sequencer": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]jest/test-result": "^29.7.0",\n "graceful-fs": "^4.2.9",\n "jest-haste-map": "^29.7.0",\n "slash": "^3.0.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/@jest/transform": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]babel/core": "^7.11.6",\n "@jest/types": "^29.6.3",\n "@jridgewell/trace-mapping": "^0.3.18",\n "babel-plugin-istanbul": "^6.1.1",\n "chalk": "^4.0.0",\n "convert-source-map": "^2.0.0",\n "fast-json-stable-stringify": "^2.1.0",\n "graceful-fs": "^4.2.9",\n "jest-haste-map": "^29.7.0",\n "jest-regex-util": "^29.6.3",\n "jest-util": "^29.7.0",\n "micromatch": "^4.0.4",\n "pirates": "^4.0.4",\n "slash": "^3.0.0",\n "write-file-atomic": "^4.0.2"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/@jest/types": {\n "version": "29.6.3",\n "resolved": "https[BASIC_AUTH]jest/schemas": "^29.6.3",\n "@types/istanbul-lib-coverage": "^2.0.0",\n "@types/istanbul-reports": "^3.0.0",\n "@types/node": "*",\n "@types/yargs": "^17.0.8",\n "chalk": "^4.0.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/@jridgewell/gen-mapping": {\n "version": "0.3.12",\n "resolved": "https[BASIC_AUTH]jridgewell/sourcemap-codec": "^1.5.0",\n "@jridgewell/trace-mapping": "^0.3.24"\n }\n },\n "node_modules/@jridgewell/resolve-uri": {\n "version": "3.1.2",\n "resolved": "https[BASIC_AUTH]jridgewell/source-map": {\n "version": "0.3.10",\n "resolved": "https[BASIC_AUTH]jridgewell/gen-mapping": "^0.3.5",\n "@jridgewell/trace-mapping": "^0.3.25"\n }\n },\n "node_modules/@jridgewell/sourcemap-codec": {\n "version": "1.5.4",\n "resolved": "https[BASIC_AUTH]jridgewell/trace-mapping": {\n "version": "0.3.29",\n "resolved": "https[BASIC_AUTH]jridgewell/resolve-uri": "^3.1.0",\n "@jridgewell/sourcemap-codec": "^1.4.14"\n }\n },\n "node_modules/@legendapp/motion": {\n "version": "2.4.0",\n "resolved": "https[BASIC_AUTH]legendapp/tools": "2.0.1"\n },\n "peerDependencies": {\n "nativewind": "*",\n "react": ">=16",\n "react-native": "*"\n }\n },\n "node_modules/@legendapp/tools": {\n "version": "2.0.1",\n "resolved": "https[BASIC_AUTH]nodelib/fs.scandir": {\n "version": "2.1.5",\n "resolved": "https[BASIC_AUTH]nodelib/fs.stat": "2.0.5",\n "run-parallel": "^1.1.9"\n },\n "engines": {\n "node": ">= 8"\n }\n },\n "node_modules/@nodelib/fs.stat": {\n "version": "2.0.5",\n "resolved": "https[BASIC_AUTH]nodelib/fs.walk": {\n "version": "1.2.8",\n "resolved": "https[BASIC_AUTH]nodelib/fs.scandir": "2.1.5",\n "fastq": "^1.6.0"\n },\n "engines": {\n "node": ">= 8"\n }\n },\n "node_modules/@pkgjs/parseargs": {\n "version": "0.11.0",\n "resolved": "https[BASIC_AUTH]radix-ui/react-compose-refs": {\n "version": "1.1.2",\n "resolved": "https[BASIC_AUTH]types/react": "*",\n "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"\n },\n "peerDependenciesMeta": {\n "@types/react": {\n "optional": true\n }\n }\n },\n "node_modules/@radix-ui/react-slot": {\n "version": "1.2.0",\n "resolved": "https[BASIC_AUTH]radix-ui/react-compose-refs": "1.1.2"\n },\n "peerDependencies": {\n "@types/react": "*",\n "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"\n },\n "peerDependenciesMeta": {\n "@types/react": {\n "optional": true\n }\n }\n },\n "node_modules/@react-aria/dialog": {\n "version": "3.5.27",\n "resolved": "https[BASIC_AUTH]react-aria/interactions": "^3.25.3",\n "@react-aria/overlays": "^3.27.3",\n "@react-aria/utils": "^3.29.1",\n "@react-types/dialog": "^3.5.19",\n "@react-types/shared": "^3.30.0",\n "@swc/helpers": "^0.5.0"\n },\n "peerDependencies": {\n "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",\n "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"\n }\n },\n "node_modules/@react-aria/focus": {\n "version": "3.20.5",\n "resolved": "https[BASIC_AUTH]react-aria/interactions": "^3.25.3",\n "@react-aria/utils": "^3.29.1",\n "@react-types/shared": "^3.30.0",\n "@swc/helpers": "^0.5.0",\n "clsx": "^2.0.0"\n },\n "peerDependencies": {\n "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",\n "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"\n }\n },\n "node_modules/@react-aria/i18n": {\n "version": "3.12.10",\n "resolved": "https[BASIC_AUTH][HIGH_ENTROPY]/date": "^3.8.2",\n "@[HIGH_ENTROPY]/message": "^3.1.8",\n "@[HIGH_ENTROPY]/number": "^3.6.3",\n "@[HIGH_ENTROPY]/string": "^3.2.7",\n "@react-aria/ssr": "^3.9.9",\n "@react-aria/utils": "^3.29.1",\n "@react-types/shared": "^3.30.0",\n "@swc/helpers": "^0.5.0"\n },\n "peerDependencies": {\n "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",\n "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"\n }\n },\n "node_modules/@react-aria/interactions": {\n "version": "3.25.3",\n "resolved": "https[BASIC_AUTH]react-aria/ssr": "^3.9.9",\n "@react-aria/utils": "^3.29.1",\n "@react-stately/flags": "^3.1.2",\n "@react-types/shared": "^3.30.0",\n "@swc/helpers": "^0.5.0"\n },\n "peerDependencies": {\n "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",\n "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"\n }\n },\n "node_modules/@react-aria/overlays": {\n "version": "3.27.3",\n "resolved": "https[BASIC_AUTH]react-aria/focus": "^3.20.5",\n "@react-aria/i18n": "^3.12.10",\n "@react-aria/interactions": "^3.25.3",\n "@react-aria/ssr": "^3.9.9",\n "@react-aria/utils": "^3.29.1",\n "@react-aria/visually-hidden": "^3.8.25",\n "@react-stately/overlays": "^3.6.17",\n "@react-types/button": "^3.12.2",\n "@react-types/overlays": "^3.8.16",\n "@react-types/shared": "^3.30.0",\n "@swc/helpers": "^0.5.0"\n },\n "peerDependencies": {\n "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",\n "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"\n }\n },\n "node_modules/@react-aria/ssr": {\n "version": "3.9.9",\n "resolved": "https[BASIC_AUTH]swc/helpers": "^0.5.0"\n },\n "engines": {\n "node": ">= 12"\n },\n "peerDependencies": {\n "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"\n }\n },\n "node_modules/@react-aria/utils": {\n "version": "3.29.1",\n "resolved": "https[BASIC_AUTH]react-aria/ssr": "^3.9.9",\n "@react-stately/flags": "^3.1.2",\n "@react-stately/utils": "^3.10.7",\n "@react-types/shared": "^3.30.0",\n "@swc/helpers": "^0.5.0",\n "clsx": "^2.0.0"\n },\n "peerDependencies": {\n "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",\n "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"\n }\n },\n "node_modules/@react-aria/visually-hidden": {\n "version": "3.8.25",\n "resolved": "https[BASIC_AUTH]react-aria/interactions": "^3.25.3",\n "@react-aria/utils": "^3.29.1",\n "@react-types/shared": "^3.30.0",\n "@swc/helpers": "^0.5.0"\n },\n "peerDependencies": {\n "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",\n "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"\n }\n },\n "node_modules/@react-native-aria/dialog": {\n "version": "0.0.5",\n "resolved": "https[BASIC_AUTH]react-aria/dialog": "*",\n "@react-native-aria/utils": "0.2.12",\n "@react-types/dialog": "*",\n "@react-types/shared": "*"\n },\n "peerDependencies": {\n "react": "*",\n "react-native": "*"\n }\n },\n "node_modules/@react-native-aria/focus": {\n "version": "0.2.9",\n "resolved": "https[BASIC_AUTH]react-aria/focus": "^3.2.3"\n },\n "peerDependencies": {\n "react": "*",\n "react-native": "*"\n }\n },\n "node_modules/@react-native-aria/interactions": {\n "version": "0.2.16",\n "resolved": "https[BASIC_AUTH]react-aria/interactions": "^3.3.2",\n "@react-aria/utils": "^3.6.0",\n "@react-native-aria/utils": "0.2.12"\n },\n "peerDependencies": {\n "react": "*",\n "react-native": "*"\n }\n },\n "node_modules/@react-native-aria/overlays": {\n "version": "0.3.15",\n "resolved": "https[BASIC_AUTH]react-aria/interactions": "^3.3.2",\n "@react-aria/overlays": "^3.7.0",\n "@react-native-aria/utils": "0.2.12",\n "@react-stately/overlays": "^3.1.1",\n "@react-types/overlays": "^3.4.0",\n "dom-helpers": "^5.0.0"\n },\n "peerDependencies": {\n "react": "*",\n "react-dom": "*",\n "react-native": "*"\n }\n },\n "node_modules/@react-native-aria/utils": {\n "version": "0.2.12",\n "resolved": "https[BASIC_AUTH]react-aria/ssr": "^3.0.1",\n "@react-aria/utils": "^3.3.0"\n },\n "peerDependencies": {\n "react": "*",\n "react-native": "*"\n }\n },\n "node_modules/@react-native-async-storage/async-storage": {\n "version": "2.1.2",\n "resolved": "https[BASIC_AUTH]react-native/assets-registry": {\n "version": "0.79.2",\n "resolved": "https[BASIC_AUTH]react-native/babel-plugin-codegen": {\n "version": "0.79.5",\n "resolved": "https[BASIC_AUTH]babel/traverse": "^7.25.3",\n "@react-native/codegen": "0.79.5"\n },\n "engines": {\n "node": ">=18"\n }\n },\n "node_modules/@react-native/babel-preset": {\n "version": "0.79.5",\n "resolved": "https[BASIC_AUTH]babel/core": "^7.25.2",\n "@babel/plugin-proposal-export-default-from": "^7.24.7",\n "@babel/plugin-syntax-dynamic-import": "^7.8.3",\n "@babel/plugin-syntax-export-default-from": "^7.24.7",\n "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",\n "@babel/plugin-syntax-optional-chaining": "^7.8.3",\n "@babel/plugin-transform-arrow-functions": "^7.24.7",\n "@babel/plugin-transform-async-generator-functions": "^7.25.4",\n "@babel/plugin-transform-async-to-generator": "^7.24.7",\n "@babel/plugin-transform-block-scoping": "^7.25.0",\n "@babel/plugin-transform-class-properties": "^7.25.4",\n "@babel/plugin-transform-classes": "^7.25.4",\n "@babel/plugin-transform-computed-properties": "^7.24.7",\n "@babel/plugin-transform-destructuring": "^7.24.8",\n "@babel/plugin-transform-flow-strip-types": "^7.25.2",\n "@babel/plugin-transform-for-of": "^7.24.7",\n "@babel/plugin-transform-function-name": "^7.25.1",\n "@babel/plugin-transform-literals": "^7.25.2",\n "@babel/plugin-transform-logical-assignment-operators": "^7.24.7",\n "@babel/plugin-transform-modules-commonjs": "^7.24.8",\n "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7",\n "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7",\n "@babel/plugin-transform-numeric-separator": "^7.24.7",\n "@babel/plugin-transform-object-rest-spread": "^7.24.7",\n "@babel/plugin-transform-optional-catch-binding": "^7.24.7",\n "@babel/plugin-transform-optional-chaining": "^7.24.8",\n "@babel/plugin-transform-parameters": "^7.24.7",\n "@babel/[HIGH_ENTROPY]": "^7.24.7",\n "@babel/[HIGH_ENTROPY]": "^7.24.7",\n "@babel/plugin-transform-react-display-name": "^7.24.7",\n "@babel/plugin-transform-react-jsx": "^7.25.2",\n "@babel/plugin-transform-react-jsx-self": "^7.24.7",\n "@babel/plugin-transform-react-jsx-source": "^7.24.7",\n "@babel/plugin-transform-regenerator": "^7.24.7",\n "@babel/plugin-transform-runtime": "^7.24.7",\n "@babel/plugin-transform-shorthand-properties": "^7.24.7",\n "@babel/plugin-transform-spread": "^7.24.7",\n "@babel/plugin-transform-sticky-regex": "^7.24.7",\n "@babel/plugin-transform-typescript": "^7.25.2",\n "@babel/plugin-transform-unicode-regex": "^7.24.7",\n "@babel/template": "^7.25.0",\n "@react-native/babel-plugin-codegen": "0.79.5",\n "babel-plugin-syntax-hermes-parser": "0.25.1",\n "babel-plugin-transform-flow-enums": "^0.0.2",\n "react-refresh": "^0.14.0"\n },\n "engines": {\n "node": ">=18"\n },\n "peerDependencies": {\n "@babel/core": "*"\n }\n },\n "node_modules/@react-native/codegen": {\n "version": "0.79.5",\n "resolved": "https[BASIC_AUTH]babel/core": "*"\n }\n },\n "node_modules/@react-native/codegen/node_modules/brace-expansion": {\n "version": "1.1.12",\n "resolved": "https[BASIC_AUTH]react-native/codegen/node_modules/glob": {\n "version": "7.2.3",\n "resolved": "https[BASIC_AUTH]react-native/codegen/node_modules/minimatch": {\n "version": "3.1.2",\n "resolved": "https[BASIC_AUTH]react-native/community-cli-plugin": {\n "version": "0.79.2",\n "resolved": "https[BASIC_AUTH]react-native/dev-middleware": "0.79.2",\n "chalk": "^4.0.0",\n "debug": "^2.2.0",\n "invariant": "^2.2.4",\n "metro": "^0.82.0",\n "metro-config": "^0.82.0",\n "metro-core": "^0.82.0",\n "semver": "^7.1.3"\n },\n "engines": {\n "node": ">=18"\n },\n "peerDependencies": {\n "@react-native-community/cli": "*"\n },\n "peerDependenciesMeta": {\n "@react-native-community/cli": {\n "optional": true\n }\n }\n },\n "node_modules/@react-native/community-cli-plugin/node_modules/@react-native/debugger-frontend": {\n "version": "0.79.2",\n "resolved": "https[BASIC_AUTH]react-native/community-cli-plugin/node_modules/@react-native/dev-middleware": {\n "version": "0.79.2",\n "resolved": "https[BASIC_AUTH]isaacs/ttlcache": "^1.4.1",\n "@react-native/debugger-frontend": "0.79.2",\n "chrome-launcher": "^0.15.2",\n "chromium-edge-launcher": "^0.2.0",\n "connect": "^3.6.5",\n "debug": "^2.2.0",\n "invariant": "^2.2.4",\n "nullthrows": "^1.1.1",\n "open": "^7.0.3",\n "serve-static": "^1.16.2",\n "ws": "^6.2.3"\n },\n "engines": {\n "node": ">=18"\n }\n },\n "node_modules/@react-native/community-cli-plugin/node_modules/debug": {\n "version": "2.6.9",\n "resolved": "https[BASIC_AUTH]react-native/community-cli-plugin/node_modules/ms": {\n "version": "2.0.0",\n "resolved": "https[BASIC_AUTH]react-native/community-cli-plugin/node_modules/semver": {\n "version": "7.7.2",\n "resolved": "https[BASIC_AUTH]react-native/community-cli-plugin/node_modules/ws": {\n "version": "6.2.3",\n "resolved": "https[BASIC_AUTH]react-native/debugger-frontend": {\n "version": "0.79.5",\n "resolved": "https[BASIC_AUTH]react-native/dev-middleware": {\n "version": "0.79.5",\n "resolved": "https[BASIC_AUTH]isaacs/ttlcache": "^1.4.1",\n "@react-native/debugger-frontend": "0.79.5",\n "chrome-launcher": "^0.15.2",\n "chromium-edge-launcher": "^0.2.0",\n "connect": "^3.6.5",\n "debug": "^2.2.0",\n "invariant": "^2.2.4",\n "nullthrows": "^1.1.1",\n "open": "^7.0.3",\n "serve-static": "^1.16.2",\n "ws": "^6.2.3"\n },\n "engines": {\n "node": ">=18"\n }\n },\n "node_modules/@react-native/dev-middleware/node_modules/debug": {\n "version": "2.6.9",\n "resolved": "https[BASIC_AUTH]react-native/dev-middleware/node_modules/ms": {\n "version": "2.0.0",\n "resolved": "https[BASIC_AUTH]react-native/dev-middleware/node_modules/ws": {\n "version": "6.2.3",\n "resolved": "https[BASIC_AUTH]react-native/gradle-plugin": {\n "version": "0.79.2",\n "resolved": "https[BASIC_AUTH]react-native/js-polyfills": {\n "version": "0.79.2",\n "resolved": "https[BASIC_AUTH]react-native/normalize-colors": {\n "version": "0.79.5",\n "resolved": "https[BASIC_AUTH]react-native/virtualized-lists": {\n "version": "0.79.2",\n "resolved": "https[BASIC_AUTH]types/react": "^19.0.0",\n "react": "*",\n "react-native": "*"\n },\n "peerDependenciesMeta": {\n "@types/react": {\n "optional": true\n }\n }\n },\n "node_modules/@react-navigation/bottom-tabs": {\n "version": "7.4.2",\n "resolved": "https[BASIC_AUTH]react-navigation/elements": "^2.5.2",\n "color": "^4.2.3"\n },\n "peerDependencies": {\n "@react-navigation/native": "^7.1.14",\n "react": ">= 18.2.0",\n "react-native": "*",\n "react-native-safe-area-context": ">= 4.0.0",\n "react-native-screens": ">= 4.0.0"\n }\n },\n "node_modules/@react-navigation/core": {\n "version": "7.12.1",\n "resolved": "https[BASIC_AUTH]react-navigation/routers": "^7.4.1",\n "escape-string-regexp": "^4.0.0",\n "nanoid": "^3.3.11",\n "query-string": "^7.1.3",\n "react-is": "^19.1.0",\n "use-latest-callback": "^0.2.4",\n "use-sync-external-store": "^1.5.0"\n },\n "peerDependencies": {\n "react": ">= 18.2.0"\n }\n },\n "node_modules/@react-navigation/elements": {\n "version": "2.5.2",\n "resolved": "https[BASIC_AUTH]react-native-masked-view/masked-view": ">= 0.2.0",\n "@react-navigation/native": "^7.1.14",\n "react": ">= 18.2.0",\n "react-native": "*",\n "react-native-safe-area-context": ">= 4.0.0"\n },\n "peerDependenciesMeta": {\n "@react-native-masked-view/masked-view": {\n "optional": true\n }\n }\n },\n "node_modules/@react-navigation/native": {\n "version": "7.1.14",\n "resolved": "https[BASIC_AUTH]react-navigation/core": "^7.12.1",\n "escape-string-regexp": "^4.0.0",\n "fast-deep-equal": "^3.1.3",\n "nanoid": "^3.3.11",\n "use-latest-callback": "^0.2.4"\n },\n "peerDependencies": {\n "react": ">= 18.2.0",\n "react-native": "*"\n }\n },\n "node_modules/@react-navigation/native-stack": {\n "version": "7.3.21",\n "resolved": "https[BASIC_AUTH]react-navigation/elements": "^2.5.2",\n "warn-once": "^0.1.1"\n },\n "peerDependencies": {\n "@react-navigation/native": "^7.1.14",\n "react": ">= 18.2.0",\n "react-native": "*",\n "react-native-safe-area-context": ">= 4.0.0",\n "react-native-screens": ">= 4.0.0"\n }\n },\n "node_modules/@react-navigation/routers": {\n "version": "7.4.1",\n "resolved": "https[BASIC_AUTH]react-stately/flags": {\n "version": "3.1.2",\n "resolved": "https[BASIC_AUTH]swc/helpers": "^0.5.0"\n }\n },\n "node_modules/@react-stately/overlays": {\n "version": "3.6.17",\n "resolved": "https[BASIC_AUTH]react-stately/utils": "^3.10.7",\n "@react-types/overlays": "^3.8.16",\n "@swc/helpers": "^0.5.0"\n },\n "peerDependencies": {\n "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"\n }\n },\n "node_modules/@react-stately/toggle": {\n "version": "3.9.0",\n "resolved": "https[BASIC_AUTH]react-stately/utils": "^3.10.8",\n "@react-types/checkbox": "^3.10.0",\n "@react-types/shared": "^3.31.0",\n "@swc/helpers": "^0.5.0"\n },\n "peerDependencies": {\n "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"\n }\n },\n "node_modules/@react-stately/utils": {\n "version": "3.10.8",\n "resolved": "https[BASIC_AUTH]swc/helpers": "^0.5.0"\n },\n "peerDependencies": {\n "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"\n }\n },\n "node_modules/@react-types/button": {\n "version": "3.12.2",\n "resolved": "https[BASIC_AUTH]react-types/shared": "^3.30.0"\n },\n "peerDependencies": {\n "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"\n }\n },\n "node_modules/@react-types/checkbox": {\n "version": "3.10.0",\n "resolved": "https[BASIC_AUTH]react-types/shared": "^3.31.0"\n },\n "peerDependencies": {\n "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"\n }\n },\n "node_modules/@react-types/dialog": {\n "version": "3.5.19",\n "resolved": "https[BASIC_AUTH]react-types/overlays": "^3.8.16",\n "@react-types/shared": "^3.30.0"\n },\n "peerDependencies": {\n "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"\n }\n },\n "node_modules/@react-types/overlays": {\n "version": "3.8.16",\n "resolved": "https[BASIC_AUTH]react-types/shared": "^3.30.0"\n },\n "peerDependencies": {\n "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"\n }\n },\n "node_modules/@react-types/shared": {\n "version": "3.31.0",\n "resolved": "https[BASIC_AUTH]shopify/react-native-skia": {\n "version": "2.1.1",\n "resolved": "https[BASIC_AUTH]sinclair/typebox": {\n "version": "0.27.8",\n "resolved": "https[BASIC_AUTH]sinonjs/commons": {\n "version": "3.0.1",\n "resolved": "https[BASIC_AUTH]sinonjs/fake-timers": {\n "version": "10.3.0",\n "resolved": "https[BASIC_AUTH]sinonjs/commons": "^3.0.0"\n }\n },\n "node_modules/@supabase/auth-js": {\n "version": "2.70.0",\n "resolved": "https[BASIC_AUTH]supabase/node-fetch": "^2.6.14"\n }\n },\n "node_modules/@supabase/functions-js": {\n "version": "2.4.5",\n "resolved": "https[BASIC_AUTH]supabase/node-fetch": "^2.6.14"\n }\n },\n "node_modules/@supabase/node-fetch": {\n "version": "2.6.15",\n "resolved": "https[BASIC_AUTH]supabase/postgrest-js": {\n "version": "1.21.0",\n "resolved": "https[BASIC_AUTH]supabase/node-fetch": "^2.6.14"\n }\n },\n "node_modules/@supabase/realtime-js": {\n "version": "2.11.15",\n "resolved": "https[BASIC_AUTH]supabase/node-fetch": "^2.6.13",\n "@types/phoenix": "^1.6.6",\n "@types/ws": "^8.18.1",\n "isows": "^1.0.7",\n "ws": "^8.18.2"\n }\n },\n "node_modules/@supabase/storage-js": {\n "version": "2.7.1",\n "resolved": "https[BASIC_AUTH]supabase/node-fetch": "^2.6.14"\n }\n },\n "node_modules/@supabase/supabase-js": {\n "version": "2.50.4",\n "resolved": "https[BASIC_AUTH]supabase/auth-js": "2.70.0",\n "@supabase/functions-js": "2.4.5",\n "@supabase/node-fetch": "2.6.15",\n "@supabase/postgrest-js": "1.21.0",\n "@supabase/realtime-js": "2.11.15",\n "@supabase/storage-js": "2.7.1"\n }\n },\n "node_modules/@swc/helpers": {\n "version": "0.5.17",\n "resolved": "https[BASIC_AUTH]tanstack/query-core": {\n "version": "5.82.0",\n "resolved": "https[BASIC_AUTH]tanstack/react-query": {\n "version": "5.82.0",\n "resolved": "https[BASIC_AUTH]tanstack/query-core": "5.82.0"\n },\n "funding": {\n "type": "github",\n "url": "https[BASIC_AUTH]tootallnate/once": {\n "version": "2.0.0",\n "resolved": "https[BASIC_AUTH]tradle/react-native-http": {\n "version": "2.0.1",\n "resolved": "https[BASIC_AUTH]types/babel__core": {\n "version": "7.20.5",\n "resolved": "https[BASIC_AUTH]babel/parser": "^7.20.7",\n "@babel/types": "^7.20.7",\n "@types/babel__generator": "*",\n "@types/babel__template": "*",\n "@types/babel__traverse": "*"\n }\n },\n "node_modules/@types/babel__generator": {\n "version": "7.27.0",\n "resolved": "https[BASIC_AUTH]babel/types": "^7.0.0"\n }\n },\n "node_modules/@types/babel__template": {\n "version": "7.4.4",\n "resolved": "https[BASIC_AUTH]babel/parser": "^7.1.0",\n "@babel/types": "^7.0.0"\n }\n },\n "node_modules/@types/babel__traverse": {\n "version": "7.20.7",\n "resolved": "https[BASIC_AUTH]babel/types": "^7.20.7"\n }\n },\n "node_modules/@types/graceful-fs": {\n "version": "4.1.9",\n "resolved": "https[BASIC_AUTH]types/node": "*"\n }\n },\n "node_modules/@types/hammerjs": {\n "version": "2.0.46",\n "resolved": "https[BASIC_AUTH]types/istanbul-lib-coverage": {\n "version": "2.0.6",\n "resolved": "https[BASIC_AUTH]types/istanbul-lib-report": {\n "version": "3.0.3",\n "resolved": "https[BASIC_AUTH]types/istanbul-lib-coverage": "*"\n }\n },\n "node_modules/@types/istanbul-reports": {\n "version": "3.0.4",\n "resolved": "https[BASIC_AUTH]types/istanbul-lib-report": "*"\n }\n },\n "node_modules/@types/jest": {\n "version": "29.5.14",\n "resolved": "https[BASIC_AUTH]types/jsdom": {\n "version": "20.0.1",\n "resolved": "https[BASIC_AUTH]types/node": "*",\n "@types/tough-cookie": "*",\n "parse5": "^7.0.0"\n }\n },\n "node_modules/@types/json-schema": {\n "version": "7.0.15",\n "resolved": "https[BASIC_AUTH]types/node": {\n "version": "24.0.12",\n "resolved": "https[BASIC_AUTH]types/phoenix": {\n "version": "1.6.6",\n "resolved": "https[BASIC_AUTH]types/react": {\n "version": "19.0.14",\n "resolved": "https[BASIC_AUTH]types/react-test-renderer": {\n "version": "19.1.0",\n "resolved": "https[BASIC_AUTH]types/react": "*"\n }\n },\n "node_modules/@types/stack-utils": {\n "version": "2.0.3",\n "resolved": "https[BASIC_AUTH]types/strip-bom": {\n "version": "3.0.0",\n "resolved": "https[BASIC_AUTH]types/strip-json-comments": {\n "version": "0.0.30",\n "resolved": "https[BASIC_AUTH]types/tough-cookie": {\n "version": "4.0.5",\n "resolved": "https[BASIC_AUTH]types/ws": {\n "version": "8.18.1",\n "resolved": "https[BASIC_AUTH]types/node": "*"\n }\n },\n "node_modules/@types/yargs": {\n "version": "17.0.33",\n "resolved": "https[BASIC_AUTH]types/yargs-parser": "*"\n }\n },\n "node_modules/@types/yargs-parser": {\n "version": "21.0.3",\n "resolved": "https[BASIC_AUTH]urql/core": {\n "version": "5.2.0",\n "resolved": "https[BASIC_AUTH]0no-co/graphql.web": "^1.0.13",\n "wonka": "^6.3.2"\n }\n },\n "node_modules/@urql/exchange-retry": {\n "version": "1.3.2",\n "resolved": "https[BASIC_AUTH]urql/core": "^5.1.2",\n "wonka": "^6.3.2"\n },\n "peerDependencies": {\n "@urql/core": "^5.0.0"\n }\n },\n "node_modules/@webgpu/types": {\n "version": "0.1.21",\n "resolved": "https[BASIC_AUTH]xmldom/xmldom": {\n "version": "0.8.10",\n "resolved": "https[BASIC_AUTH]yarnpkg/lockfile": {\n "version": "1.1.0",\n "resolved": "https[BASIC_AUTH]babel/core": "^7.0.0-0"\n }\n },\n "node_modules/babel-jest": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]jest/transform": "^29.7.0",\n "@types/babel__core": "^7.1.14",\n "babel-plugin-istanbul": "^6.1.1",\n "babel-preset-jest": "^29.6.3",\n "chalk": "^4.0.0",\n "graceful-fs": "^4.2.9",\n "slash": "^3.0.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.8.0"\n }\n },\n "node_modules/babel-plugin-istanbul": {\n "version": "6.1.1",\n "resolved": "https[BASIC_AUTH]babel/helper-plugin-utils": "^7.0.0",\n "@istanbuljs/load-nyc-config": "^1.0.0",\n "@istanbuljs/schema": "^0.1.2",\n "istanbul-lib-instrument": "^5.0.4",\n "test-exclude": "^6.0.0"\n },\n "engines": {\n "node": ">=8"\n }\n },\n "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": {\n "version": "5.2.1",\n "resolved": "https[BASIC_AUTH]babel/core": "^7.12.3",\n "@babel/parser": "^7.14.7",\n "@istanbuljs/schema": "^0.1.2",\n "istanbul-lib-coverage": "^3.2.0",\n "semver": "^6.3.0"\n },\n "engines": {\n "node": ">=8"\n }\n },\n "node_modules/babel-plugin-jest-hoist": {\n "version": "29.6.3",\n "resolved": "https[BASIC_AUTH]babel/template": "^7.3.3",\n "@babel/types": "^7.3.3",\n "@types/babel__core": "^7.1.14",\n "@types/babel__traverse": "^7.0.6"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/babel-plugin-module-resolver": {\n "version": "5.0.2",\n "resolved": "https[BASIC_AUTH]babel/compat-data": "^7.27.7",\n "@babel/helper-define-polyfill-provider": "^0.6.5",\n "semver": "^6.3.1"\n },\n "peerDependencies": {\n "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"\n }\n },\n "node_modules/babel-plugin-polyfill-corejs3": {\n "version": "0.13.0",\n "resolved": "https[BASIC_AUTH]babel/helper-define-polyfill-provider": "^0.6.5",\n "core-js-compat": "^3.43.0"\n },\n "peerDependencies": {\n "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"\n }\n },\n "node_modules/babel-plugin-polyfill-regenerator": {\n "version": "0.6.5",\n "resolved": "https[BASIC_AUTH]babel/helper-define-polyfill-provider": "^0.6.5"\n },\n "peerDependencies": {\n "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"\n }\n },\n "node_modules/babel-plugin-react-native-web": {\n "version": "0.19.13",\n "resolved": "https[BASIC_AUTH]babel/plugin-syntax-flow": "^7.12.1"\n }\n },\n "node_modules/babel-preset-current-node-syntax": {\n "version": "1.1.0",\n "resolved": "https[BASIC_AUTH]babel/plugin-syntax-async-generators": "^7.8.4",\n "@babel/plugin-syntax-bigint": "^7.8.3",\n "@babel/plugin-syntax-class-properties": "^7.12.13",\n "@babel/plugin-syntax-class-static-block": "^7.14.5",\n "@babel/plugin-syntax-import-attributes": "^7.24.7",\n "@babel/plugin-syntax-import-meta": "^7.10.4",\n "@babel/plugin-syntax-json-strings": "^7.8.3",\n "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",\n "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",\n "@babel/plugin-syntax-numeric-separator": "^7.10.4",\n "@babel/plugin-syntax-object-rest-spread": "^7.8.3",\n "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",\n "@babel/plugin-syntax-optional-chaining": "^7.8.3",\n "@babel/[HIGH_ENTROPY]": "^7.14.5",\n "@babel/plugin-syntax-top-level-await": "^7.14.5"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0"\n }\n },\n "node_modules/babel-preset-expo": {\n "version": "13.2.3",\n "resolved": "https[BASIC_AUTH]babel/helper-module-imports": "^7.25.9",\n "@babel/plugin-proposal-decorators": "^7.12.9",\n "@babel/plugin-proposal-export-default-from": "^7.24.7",\n "@babel/plugin-syntax-export-default-from": "^7.24.7",\n "@babel/plugin-transform-export-namespace-from": "^7.25.9",\n "@babel/plugin-transform-flow-strip-types": "^7.25.2",\n "@babel/plugin-transform-modules-commonjs": "^7.24.8",\n "@babel/plugin-transform-object-rest-spread": "^7.24.7",\n "@babel/plugin-transform-parameters": "^7.24.7",\n "@babel/[HIGH_ENTROPY]": "^7.24.7",\n "@babel/[HIGH_ENTROPY]": "^7.24.7",\n "@babel/plugin-transform-runtime": "^7.24.7",\n "@babel/preset-react": "^7.22.15",\n "@babel/preset-typescript": "^7.23.0",\n "@react-native/babel-preset": "0.79.5",\n "babel-plugin-react-native-web": "~0.19.13",\n "babel-plugin-syntax-hermes-parser": "^0.25.1",\n "babel-plugin-transform-flow-enums": "^0.0.2",\n "debug": "^4.3.4",\n "react-refresh": "^0.14.2",\n "resolve-from": "^5.0.0"\n },\n "peerDependencies": {\n "babel-plugin-react-compiler": "^19.0.[HIGH_ENTROPY]"\n },\n "peerDependenciesMeta": {\n "babel-plugin-react-compiler": {\n "optional": true\n }\n }\n },\n "node_modules/babel-preset-jest": {\n "version": "29.6.3",\n "resolved": "https[BASIC_AUTH]babel/core": "^7.0.0"\n }\n },\n "node_modules/balanced-match": {\n "version": "1.0.2",\n "resolved": "https[BASIC_AUTH]webgpu/types": "0.1.21"\n }\n },\n "node_modules/chalk": {\n "version": "4.1.2",\n "resolved": "https[BASIC_AUTH]types/node": "*",\n "escape-string-regexp": "^4.0.0",\n "is-wsl": "^2.2.0",\n "lighthouse-logger": "^1.0.0"\n },\n "bin": {\n "print-chrome-path": "bin/print-chrome-path.js"\n },\n "engines": {\n "node": ">=12.13.0"\n }\n },\n "node_modules/chromium-edge-launcher": {\n "version": "0.2.0",\n "resolved": "https[BASIC_AUTH]types/node": "*",\n "escape-string-regexp": "^4.0.0",\n "is-wsl": "^2.2.0",\n "lighthouse-logger": "^1.0.0",\n "mkdirp": "^1.0.4",\n "rimraf": "^3.0.2"\n }\n },\n "node_modules/ci-info": {\n "version": "3.9.0",\n "resolved": "https[BASIC_AUTH]jest/types": "^29.6.3",\n "chalk": "^4.0.0",\n "exit": "^0.1.2",\n "graceful-fs": "^4.2.9",\n "jest-config": "^29.7.0",\n "jest-util": "^29.7.0",\n "prompts": "^2.0.1"\n },\n "bin": {\n "create-jest": "bin/create-jest.js"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/cross-fetch": {\n "version": "3.2.0",\n "resolved": "https[BASIC_AUTH]babel/runtime": "^7.8.7",\n "csstype": "^3.0.2"\n }\n },\n "node_modules/dom-serializer": {\n "version": "2.0.0",\n "resolved": "https[BASIC_AUTH]jest/expect-utils": "^29.7.0",\n "jest-get-type": "^29.6.3",\n "jest-matcher-utils": "^29.7.0",\n "jest-message-util": "^29.7.0",\n "jest-util": "^29.7.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/expo": {\n "version": "53.0.19",\n "resolved": "https[BASIC_AUTH]babel/runtime": "^7.20.0",\n "@expo/cli": "0.24.20",\n "@expo/config": "~11.0.13",\n "@expo/config-plugins": "~10.1.2",\n "@expo/fingerprint": "0.13.4",\n "@expo/metro-config": "0.20.17",\n "@expo/vector-icons": "^14.0.0",\n "babel-preset-expo": "~13.2.3",\n "expo-asset": "~11.1.7",\n "expo-constants": "~17.1.7",\n "expo-file-system": "~18.1.11",\n "expo-font": "~13.3.2",\n "expo-keep-awake": "~14.1.4",\n "expo-modules-autolinking": "2.1.14",\n "expo-modules-core": "2.4.2",\n "react-native-edge-to-edge": "1.6.0",\n "whatwg-url-without-unicode": "8.0.0-3"\n },\n "bin": {\n "expo": "bin/cli",\n "expo-modules-autolinking": "bin/autolinking",\n "fingerprint": "bin/fingerprint"\n },\n "peerDependencies": {\n "@expo/dom-webview": "*",\n "@expo/metro-runtime": "*",\n "react": "*",\n "react-native": "*",\n "react-native-webview": "*"\n },\n "peerDependenciesMeta": {\n "@expo/dom-webview": {\n "optional": true\n },\n "@expo/metro-runtime": {\n "optional": true\n },\n "react-native-webview": {\n "optional": true\n }\n }\n },\n "node_modules/expo-asset": {\n "version": "11.1.7",\n "resolved": "https[BASIC_AUTH]expo/image-utils": "^0.7.6",\n "expo-constants": "~17.1.7"\n },\n "peerDependencies": {\n "expo": "*",\n "react": "*",\n "react-native": "*"\n }\n },\n "node_modules/expo-audio": {\n "version": "0.4.8",\n "resolved": "https[BASIC_AUTH]expo/config": "~11.0.12",\n "@expo/env": "~1.0.7"\n },\n "peerDependencies": {\n "expo": "*",\n "react-native": "*"\n }\n },\n "node_modules/expo-file-system": {\n "version": "18.1.11",\n "resolved": "https[BASIC_AUTH]expo/spawn-async": "^1.7.2",\n "chalk": "^4.1.0",\n "commander": "^7.2.0",\n "find-up": "^5.0.0",\n "glob": "^10.4.2",\n "require-from-string": "^2.0.2",\n "resolve-from": "^5.0.0"\n },\n "bin": {\n "expo-modules-autolinking": "bin/expo-modules-autolinking.js"\n }\n },\n "node_modules/expo-modules-autolinking/node_modules/glob": {\n "version": "10.4.5",\n "resolved": "https[BASIC_AUTH]expo/metro-runtime": "5.0.4",\n "@expo/server": "^0.6.2",\n "@radix-ui/react-slot": "1.2.0",\n "@react-navigation/bottom-tabs": "^7.3.10",\n "@react-navigation/native": "^7.1.6",\n "@react-navigation/native-stack": "^7.3.10",\n "client-only": "^0.0.1",\n "invariant": "^2.2.4",\n "react-fast-compare": "^3.2.2",\n "react-native-is-edge-to-edge": "^1.1.6",\n "schema-utils": "^4.0.1",\n "semver": "~7.6.3",\n "server-only": "^0.0.1",\n "shallowequal": "^1.1.0"\n },\n "peerDependencies": {\n "@react-navigation/drawer": "^7.3.9",\n "expo": "*",\n "expo-constants": "*",\n "expo-linking": "*",\n "react-native-reanimated": "*",\n "react-native-safe-area-context": "*",\n "react-native-screens": "*"\n },\n "peerDependenciesMeta": {\n "@react-navigation/drawer": {\n "optional": true\n },\n "@testing-library/jest-native": {\n "optional": true\n },\n "react-native-reanimated": {\n "optional": true\n }\n }\n },\n "node_modules/expo-router/node_modules/semver": {\n "version": "7.6.3",\n "resolved": "https[BASIC_AUTH]expo/prebuild-config": "^9.0.10"\n },\n "peerDependencies": {\n "expo": "*"\n }\n },\n "node_modules/expo-status-bar": {\n "version": "2.2.3",\n "resolved": "https[BASIC_AUTH]nodelib/fs.stat": "^2.0.2",\n "@nodelib/fs.walk": "^1.2.3",\n "glob-parent": "^5.1.2",\n "merge2": "^1.3.0",\n "micromatch": "^4.0.8"\n },\n "engines": {\n "node": ">=8.6.0"\n }\n },\n "node_modules/fast-glob/node_modules/glob-parent": {\n "version": "5.1.2",\n "resolved": "https[BASIC_AUTH]tootallnate/once": "2",\n "agent-base": "6",\n "debug": "4"\n },\n "engines": {\n "node": ">= 6"\n }\n },\n "node_modules/https-browserify": {\n "version": "1.0.0",\n "resolved": "https[BASIC_AUTH]formatjs/ecma402-abstract": "2.3.4",\n "@formatjs/fast-memoize": "2.2.7",\n "@formatjs/icu-messageformat-parser": "2.11.2",\n "tslib": "^2.8.0"\n }\n },\n "node_modules/invariant": {\n "version": "2.2.4",\n "resolved": "https[BASIC_AUTH]babel/core": "^7.23.9",\n "@babel/parser": "^7.23.9",\n "@istanbuljs/schema": "^0.1.3",\n "istanbul-lib-coverage": "^3.2.0",\n "semver": "^7.5.4"\n },\n "engines": {\n "node": ">=10"\n }\n },\n "node_modules/istanbul-lib-instrument/node_modules/semver": {\n "version": "7.7.2",\n "resolved": "https[BASIC_AUTH]isaacs/cliui": "^8.0.2"\n },\n "funding": {\n "url": "https[BASIC_AUTH]pkgjs/parseargs": "^0.11.0"\n }\n },\n "node_modules/jest": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]jest/core": "^29.7.0",\n "@jest/types": "^29.6.3",\n "import-local": "^3.0.2",\n "jest-cli": "^29.7.0"\n },\n "bin": {\n "jest": "bin/jest.js"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n },\n "peerDependencies": {\n "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"\n },\n "peerDependenciesMeta": {\n "node-notifier": {\n "optional": true\n }\n }\n },\n "node_modules/jest-changed-files": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]jest/environment": "^29.7.0",\n "@jest/expect": "^29.7.0",\n "@jest/test-result": "^29.7.0",\n "@jest/types": "^29.6.3",\n "@types/node": "*",\n "chalk": "^4.0.0",\n "co": "^4.6.0",\n "dedent": "^1.0.0",\n "is-generator-fn": "^2.0.0",\n "jest-each": "^29.7.0",\n "jest-matcher-utils": "^29.7.0",\n "jest-message-util": "^29.7.0",\n "jest-runtime": "^29.7.0",\n "jest-snapshot": "^29.7.0",\n "jest-util": "^29.7.0",\n "p-limit": "^3.1.0",\n "pretty-format": "^29.7.0",\n "pure-rand": "^6.0.0",\n "slash": "^3.0.0",\n "stack-utils": "^2.0.3"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/jest-cli": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]jest/core": "^29.7.0",\n "@jest/test-result": "^29.7.0",\n "@jest/types": "^29.6.3",\n "chalk": "^4.0.0",\n "create-jest": "^29.7.0",\n "exit": "^0.1.2",\n "import-local": "^3.0.2",\n "jest-config": "^29.7.0",\n "jest-util": "^29.7.0",\n "jest-validate": "^29.7.0",\n "yargs": "^17.3.1"\n },\n "bin": {\n "jest": "bin/jest.js"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n },\n "peerDependencies": {\n "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"\n },\n "peerDependenciesMeta": {\n "node-notifier": {\n "optional": true\n }\n }\n },\n "node_modules/jest-config": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]babel/core": "^7.11.6",\n "@jest/test-sequencer": "^29.7.0",\n "@jest/types": "^29.6.3",\n "babel-jest": "^29.7.0",\n "chalk": "^4.0.0",\n "ci-info": "^3.2.0",\n "deepmerge": "^4.2.2",\n "glob": "^7.1.3",\n "graceful-fs": "^4.2.9",\n "jest-circus": "^29.7.0",\n "jest-environment-node": "^29.7.0",\n "jest-get-type": "^29.6.3",\n "jest-regex-util": "^29.6.3",\n "jest-resolve": "^29.7.0",\n "jest-runner": "^29.7.0",\n "jest-util": "^29.7.0",\n "jest-validate": "^29.7.0",\n "micromatch": "^4.0.4",\n "parse-json": "^5.2.0",\n "pretty-format": "^29.7.0",\n "slash": "^3.0.0",\n "strip-json-comments": "^3.1.1"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n },\n "peerDependencies": {\n "@types/node": "*",\n "ts-node": ">=9.0.0"\n },\n "peerDependenciesMeta": {\n "@types/node": {\n "optional": true\n },\n "ts-node": {\n "optional": true\n }\n }\n },\n "node_modules/jest-config/node_modules/brace-expansion": {\n "version": "1.1.12",\n "resolved": "https[BASIC_AUTH]jest/types": "^29.6.3",\n "chalk": "^4.0.0",\n "jest-get-type": "^29.6.3",\n "jest-util": "^29.7.0",\n "pretty-format": "^29.7.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/jest-environment-jsdom": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]jest/environment": "^29.7.0",\n "@jest/fake-timers": "^29.7.0",\n "@jest/types": "^29.6.3",\n "@types/jsdom": "^20.0.0",\n "@types/node": "*",\n "jest-mock": "^29.7.0",\n "jest-util": "^29.7.0",\n "jsdom": "^20.0.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n },\n "peerDependencies": {\n "canvas": "^2.5.0"\n },\n "peerDependenciesMeta": {\n "canvas": {\n "optional": true\n }\n }\n },\n "node_modules/jest-environment-node": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]jest/environment": "^29.7.0",\n "@jest/fake-timers": "^29.7.0",\n "@jest/types": "^29.6.3",\n "@types/node": "*",\n "jest-mock": "^29.7.0",\n "jest-util": "^29.7.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/jest-expo": {\n "version": "53.0.9",\n "resolved": "https[BASIC_AUTH]expo/config": "~11.0.12",\n "@expo/json-file": "^9.1.5",\n "@jest/[HIGH_ENTROPY]": "^29.2.1",\n "@jest/globals": "^29.2.1",\n "babel-jest": "^29.2.1",\n "find-up": "^5.0.0",\n "jest-environment-jsdom": "^29.2.1",\n "jest-snapshot": "^29.2.1",\n "jest-watch-select-projects": "^2.0.0",\n "jest-watch-typeahead": "2.2.1",\n "json5": "^2.2.3",\n "lodash": "^4.17.19",\n "react-server-dom-webpack": "~19.0.0",\n "react-test-renderer": "19.0.0",\n "server-only": "^0.0.1",\n "stacktrace-js": "^2.0.2"\n },\n "bin": {\n "jest": "bin/jest.js"\n },\n "peerDependencies": {\n "expo": "*",\n "react-native": "*"\n }\n },\n "node_modules/jest-get-type": {\n "version": "29.6.3",\n "resolved": "https[BASIC_AUTH]jest/types": "^29.6.3",\n "@types/graceful-fs": "^4.1.3",\n "@types/node": "*",\n "anymatch": "^3.0.3",\n "fb-watchman": "^2.0.0",\n "graceful-fs": "^4.2.9",\n "jest-regex-util": "^29.6.3",\n "jest-util": "^29.7.0",\n "jest-worker": "^29.7.0",\n "micromatch": "^4.0.4",\n "walker": "^1.0.8"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n },\n "optionalDependencies": {\n "fsevents": "^2.3.2"\n }\n },\n "node_modules/jest-leak-detector": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]babel/code-frame": "^7.12.13",\n "@jest/types": "^29.6.3",\n "@types/stack-utils": "^2.0.0",\n "chalk": "^4.0.0",\n "graceful-fs": "^4.2.9",\n "micromatch": "^4.0.4",\n "pretty-format": "^29.7.0",\n "slash": "^3.0.0",\n "stack-utils": "^2.0.3"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/jest-mock": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]jest/types": "^29.6.3",\n "@types/node": "*",\n "jest-util": "^29.7.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/jest-pnp-resolver": {\n "version": "1.2.3",\n "resolved": "https[BASIC_AUTH]jest/console": "^29.7.0",\n "@jest/environment": "^29.7.0",\n "@jest/test-result": "^29.7.0",\n "@jest/transform": "^29.7.0",\n "@jest/types": "^29.6.3",\n "@types/node": "*",\n "chalk": "^4.0.0",\n "emittery": "^0.13.1",\n "graceful-fs": "^4.2.9",\n "jest-docblock": "^29.7.0",\n "jest-environment-node": "^29.7.0",\n "jest-haste-map": "^29.7.0",\n "jest-leak-detector": "^29.7.0",\n "jest-message-util": "^29.7.0",\n "jest-resolve": "^29.7.0",\n "jest-runtime": "^29.7.0",\n "jest-util": "^29.7.0",\n "jest-watcher": "^29.7.0",\n "jest-worker": "^29.7.0",\n "p-limit": "^3.1.0",\n "source-map-support": "0.5.13"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/jest-runner/node_modules/source-map-support": {\n "version": "0.5.13",\n "resolved": "https[BASIC_AUTH]jest/environment": "^29.7.0",\n "@jest/fake-timers": "^29.7.0",\n "@jest/globals": "^29.7.0",\n "@jest/source-map": "^29.6.3",\n "@jest/test-result": "^29.7.0",\n "@jest/transform": "^29.7.0",\n "@jest/types": "^29.6.3",\n "@types/node": "*",\n "chalk": "^4.0.0",\n "cjs-module-lexer": "^1.0.0",\n "collect-v8-coverage": "^1.0.0",\n "glob": "^7.1.3",\n "graceful-fs": "^4.2.9",\n "jest-haste-map": "^29.7.0",\n "jest-message-util": "^29.7.0",\n "jest-mock": "^29.7.0",\n "jest-regex-util": "^29.6.3",\n "jest-resolve": "^29.7.0",\n "jest-snapshot": "^29.7.0",\n "jest-util": "^29.7.0",\n "slash": "^3.0.0",\n "strip-bom": "^4.0.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/jest-runtime/node_modules/brace-expansion": {\n "version": "1.1.12",\n "resolved": "https[BASIC_AUTH]babel/core": "^7.11.6",\n "@babel/generator": "^7.7.2",\n "@babel/plugin-syntax-jsx": "^7.7.2",\n "@babel/plugin-syntax-typescript": "^7.7.2",\n "@babel/types": "^7.3.3",\n "@jest/expect-utils": "^29.7.0",\n "@jest/transform": "^29.7.0",\n "@jest/types": "^29.6.3",\n "babel-preset-current-node-syntax": "^1.0.0",\n "chalk": "^4.0.0",\n "expect": "^29.7.0",\n "graceful-fs": "^4.2.9",\n "jest-diff": "^29.7.0",\n "jest-get-type": "^29.6.3",\n "jest-matcher-utils": "^29.7.0",\n "jest-message-util": "^29.7.0",\n "jest-util": "^29.7.0",\n "natural-compare": "^1.4.0",\n "pretty-format": "^29.7.0",\n "semver": "^7.5.3"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/jest-snapshot/node_modules/semver": {\n "version": "7.7.2",\n "resolved": "https[BASIC_AUTH]jest/types": "^29.6.3",\n "@types/node": "*",\n "chalk": "^4.0.0",\n "ci-info": "^3.2.0",\n "graceful-fs": "^4.2.9",\n "picomatch": "^2.2.3"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/jest-util/node_modules/picomatch": {\n "version": "2.3.1",\n "resolved": "https[BASIC_AUTH]jest/types": "^29.6.3",\n "camelcase": "^6.2.0",\n "chalk": "^4.0.0",\n "jest-get-type": "^29.6.3",\n "leven": "^3.1.0",\n "pretty-format": "^29.7.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/jest-validate/node_modules/camelcase": {\n "version": "6.3.0",\n "resolved": "https[BASIC_AUTH]jest/test-result": "^29.7.0",\n "@jest/types": "^29.6.3",\n "@types/node": "*",\n "ansi-escapes": "^4.2.1",\n "chalk": "^4.0.0",\n "emittery": "^0.13.1",\n "jest-util": "^29.7.0",\n "string-length": "^4.0.1"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/jest-worker": {\n "version": "29.7.0",\n "resolved": "https[BASIC_AUTH]types/node": "*",\n "jest-util": "^29.7.0",\n "merge-stream": "^2.0.0",\n "supports-color": "^8.0.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/jest-worker/node_modules/supports-color": {\n "version": "8.1.1",\n "resolved": "https[BASIC_AUTH]babel/core": "^7.23.0",\n "@babel/parser": "^7.23.0",\n "@babel/plugin-transform-class-properties": "^7.22.5",\n "@babel/plugin-transform-modules-commonjs": "^7.23.0",\n "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11",\n "@babel/plugin-transform-optional-chaining": "^7.23.0",\n "@babel/[HIGH_ENTROPY]": "^7.22.5",\n "@babel/preset-flow": "^7.22.15",\n "@babel/preset-typescript": "^7.23.0",\n "@babel/register": "^7.22.15",\n "babel-core": "^7.0.0-bridge.0",\n "chalk": "^4.1.2",\n "flow-parser": "0.*",\n "graceful-fs": "^4.2.4",\n "micromatch": "^4.0.4",\n "neo-async": "^2.5.0",\n "node-dir": "^0.1.17",\n "recast": "^0.23.3",\n "temp": "^0.8.4",\n "write-file-atomic": "^2.3.0"\n },\n "bin": {\n "jscodeshift": "bin/jscodeshift.js"\n },\n "peerDependencies": {\n "@babel/preset-env": "^7.1.6"\n },\n "peerDependenciesMeta": {\n "@babel/preset-env": {\n "optional": true\n }\n }\n },\n "node_modules/jscodeshift/node_modules/write-file-atomic": {\n "version": "2.4.3",\n "resolved": "https[BASIC_AUTH]babel/code-frame": "^7.24.7",\n "@babel/core": "^7.25.2",\n "@babel/generator": "^7.25.0",\n "@babel/parser": "^7.25.3",\n "@babel/template": "^7.25.0",\n "@babel/traverse": "^7.25.3",\n "@babel/types": "^7.25.2",\n "accepts": "^1.3.7",\n "chalk": "^4.0.0",\n "ci-info": "^2.0.0",\n "connect": "^3.6.5",\n "debug": "^4.4.0",\n "error-stack-parser": "^2.0.6",\n "flow-enums-runtime": "^0.0.6",\n "graceful-fs": "^4.2.4",\n "hermes-parser": "0.29.1",\n "image-size": "^1.0.2",\n "invariant": "^2.2.4",\n "jest-worker": "^29.7.0",\n "jsc-safe-url": "^0.2.2",\n "lodash.throttle": "^4.1.1",\n "metro-babel-transformer": "0.82.5",\n "metro-cache": "0.82.5",\n "metro-cache-key": "0.82.5",\n "metro-config": "0.82.5",\n "metro-core": "0.82.5",\n "metro-file-map": "0.82.5",\n "metro-resolver": "0.82.5",\n "metro-runtime": "0.82.5",\n "metro-source-map": "0.82.5",\n "metro-symbolicate": "0.82.5",\n "metro-transform-plugins": "0.82.5",\n "metro-transform-worker": "0.82.5",\n "mime-types": "^2.1.27",\n "nullthrows": "^1.1.1",\n "serialize-error": "^2.1.0",\n "source-map": "^0.5.6",\n "throat": "^5.0.0",\n "ws": "^7.5.10",\n "yargs": "^17.6.2"\n },\n "bin": {\n "metro": "src/cli.js"\n },\n "engines": {\n "node": ">=18.18"\n }\n },\n "node_modules/metro-babel-transformer": {\n "version": "0.82.5",\n "resolved": "https[BASIC_AUTH]babel/core": "^7.25.2",\n "flow-enums-runtime": "^0.0.6",\n "hermes-parser": "0.29.1",\n "nullthrows": "^1.1.1"\n },\n "engines": {\n "node": ">=18.18"\n }\n },\n "node_modules/metro-babel-transformer/node_modules/hermes-estree": {\n "version": "0.29.1",\n "resolved": "https[BASIC_AUTH]babel/runtime": "^7.25.0",\n "flow-enums-runtime": "^0.0.6"\n },\n "engines": {\n "node": ">=18.18"\n }\n },\n "node_modules/metro-source-map": {\n "version": "0.82.5",\n "resolved": "https[BASIC_AUTH]babel/traverse": "^7.25.3",\n "@babel/traverse--for-generate-function-map": "npm:@babel/traverse@^7.25.3",\n "@babel/types": "^7.25.2",\n "flow-enums-runtime": "^0.0.6",\n "invariant": "^2.2.4",\n "metro-symbolicate": "0.82.5",\n "nullthrows": "^1.1.1",\n "ob1": "0.82.5",\n "source-map": "^0.5.6",\n "vlq": "^1.0.0"\n },\n "engines": {\n "node": ">=18.18"\n }\n },\n "node_modules/metro-source-map/node_modules/source-map": {\n "version": "0.5.7",\n "resolved": "https[BASIC_AUTH]babel/core": "^7.25.2",\n "@babel/generator": "^7.25.0",\n "@babel/template": "^7.25.0",\n "@babel/traverse": "^7.25.3",\n "flow-enums-runtime": "^0.0.6",\n "nullthrows": "^1.1.1"\n },\n "engines": {\n "node": ">=18.18"\n }\n },\n "node_modules/metro-transform-worker": {\n "version": "0.82.5",\n "resolved": "https[BASIC_AUTH]babel/core": "^7.25.2",\n "@babel/generator": "^7.25.0",\n "@babel/parser": "^7.25.3",\n "@babel/types": "^7.25.2",\n "flow-enums-runtime": "^0.0.6",\n "metro": "0.82.5",\n "metro-babel-transformer": "0.82.5",\n "metro-cache": "0.82.5",\n "metro-cache-key": "0.82.5",\n "metro-minify-terser": "0.82.5",\n "metro-source-map": "0.82.5",\n "metro-transform-plugins": "0.82.5",\n "nullthrows": "^1.1.1"\n },\n "engines": {\n "node": ">=18.18"\n }\n },\n "node_modules/metro/node_modules/ci-info": {\n "version": "2.0.0",\n "resolved": "https[BASIC_AUTH]babel/code-frame": "^7.0.0",\n "error-ex": "^1.3.1",\n "json-parse-even-better-errors": "^2.3.0",\n "lines-and-columns": "^1.1.6"\n },\n "engines": {\n "node": ">=8"\n },\n "funding": {\n "url": "https[BASIC_AUTH]yarnpkg/lockfile": "^1.1.0",\n "chalk": "^4.1.2",\n "ci-info": "^3.7.0",\n "cross-spawn": "^7.0.3",\n "find-yarn-workspace-root": "^2.0.0",\n "fs-extra": "^9.0.0",\n "json-stable-stringify": "^1.0.2",\n "klaw-sync": "^6.0.0",\n "minimist": "^1.2.6",\n "open": "^7.4.2",\n "rimraf": "^2.6.3",\n "semver": "^7.5.3",\n "slash": "^2.0.0",\n "tmp": "^0.0.33",\n "yaml": "^2.2.2"\n },\n "bin": {\n "patch-package": "index.js"\n },\n "engines": {\n "node": ">=14",\n "npm": ">5"\n }\n },\n "node_modules/patch-package/node_modules/brace-expansion": {\n "version": "1.1.12",\n "resolved": "https[BASIC_AUTH]xmldom/xmldom": "^0.8.8",\n "base64-js": "^1.5.1",\n "xmlbuilder": "^15.1.1"\n },\n "engines": {\n "node": ">=10.4.0"\n }\n },\n "node_modules/pngjs": {\n "version": "3.4.0",\n "resolved": "https[BASIC_AUTH]jest/schemas": "^29.6.3",\n "ansi-styles": "^5.0.0",\n "react-is": "^18.0.0"\n },\n "engines": {\n "node": "^14.15.0 || ^16.10.0 || >=18.0.0"\n }\n },\n "node_modules/pretty-format/node_modules/ansi-styles": {\n "version": "5.2.0",\n "resolved": "https[BASIC_AUTH]jest/[HIGH_ENTROPY]": "^29.7.0",\n "@react-native/assets-registry": "0.79.2",\n "@react-native/codegen": "0.79.2",\n "@react-native/community-cli-plugin": "0.79.2",\n "@react-native/gradle-plugin": "0.79.2",\n "@react-native/js-polyfills": "0.79.2",\n "@react-native/normalize-colors": "0.79.2",\n "@react-native/virtualized-lists": "0.79.2",\n "abort-controller": "^3.0.0",\n "anser": "^1.4.9",\n "ansi-regex": "^5.0.0",\n "babel-jest": "^29.7.0",\n "babel-plugin-syntax-hermes-parser": "0.25.1",\n "base64-js": "^1.5.1",\n "chalk": "^4.0.0",\n "commander": "^12.0.0",\n "event-target-shim": "^5.0.1",\n "flow-enums-runtime": "^0.0.6",\n "glob": "^7.1.1",\n "invariant": "^2.2.4",\n "jest-environment-node": "^29.7.0",\n "memoize-one": "^5.0.0",\n "metro-runtime": "^0.82.0",\n "metro-source-map": "^0.82.0",\n "nullthrows": "^1.1.1",\n "pretty-format": "^29.7.0",\n "promise": "^8.3.0",\n "react-devtools-core": "^6.1.1",\n "react-refresh": "^0.14.0",\n "regenerator-runtime": "^0.13.2",\n "scheduler": "0.25.0",\n "semver": "^7.1.3",\n "stacktrace-parser": "^0.1.10",\n "whatwg-fetch": "^3.0.0",\n "ws": "^6.2.3",\n "yargs": "^17.6.2"\n },\n "bin": {\n "react-native": "cli.js"\n },\n "engines": {\n "node": ">=18"\n },\n "peerDependencies": {\n "@types/react": "^19.0.0",\n "react": "^19.0.0"\n },\n "peerDependenciesMeta": {\n "@types/react": {\n "optional": true\n }\n }\n },\n "node_modules/react-native-crypto": {\n "version": "2.2.1",\n "resolved": "https[BASIC_AUTH]babel/helper-module-imports": "^7.22.15",\n "@babel/traverse": "^7.23.0",\n "@babel/types": "^7.23.0",\n "debug": "^4.3.7",\n "lightningcss": "^1.27.0",\n "semver": "^7.6.3"\n },\n "engines": {\n "node": ">=18"\n },\n "peerDependencies": {\n "react": ">=18",\n "react-native": "*",\n "react-native-reanimated": ">=3.6.2",\n "tailwindcss": "~3"\n },\n "peerDependenciesMeta": {\n "react-native-safe-area-context": {\n "optional": true\n },\n "react-native-svg": {\n "optional": true\n }\n }\n },\n "node_modules/react-native-css-interop/node_modules/semver": {\n "version": "7.7.2",\n "resolved": "https[BASIC_AUTH]shopify/react-native-skia": "*",\n "react": "*",\n "react-native": "*",\n "react-native-reanimated": "*"\n }\n },\n "node_modules/react-native-gesture-handler": {\n "version": "2.24.0",\n "resolved": "https[BASIC_AUTH]egjs/hammerjs": "^2.0.17",\n "hoist-non-react-statics": "^3.3.0",\n "invariant": "^2.2.4"\n },\n "peerDependencies": {\n "react": "*",\n "react-native": "*"\n }\n },\n "node_modules/react-native-get-random-values": {\n "version": "1.11.0",\n "resolved": "https[BASIC_AUTH]babel/plugin-transform-arrow-functions": "^7.0.0-0",\n "@babel/plugin-transform-class-properties": "^7.0.0-0",\n "@babel/plugin-transform-classes": "^7.0.0-0",\n "@babel/plugin-transform-nullish-coalescing-operator": "^7.0.0-0",\n "@babel/plugin-transform-optional-chaining": "^7.0.0-0",\n "@babel/plugin-transform-shorthand-properties": "^7.0.0-0",\n "@babel/plugin-transform-template-literals": "^7.0.0-0",\n "@babel/plugin-transform-unicode-regex": "^7.0.0-0",\n "@babel/preset-typescript": "^7.16.7",\n "convert-source-map": "^2.0.0",\n "invariant": "^2.2.4",\n "react-native-is-edge-to-edge": "1.1.7"\n },\n "peerDependencies": {\n "@babel/core": "^7.0.0-0",\n "react": "*",\n "react-native": "*"\n }\n },\n "node_modules/react-native-reanimated/node_modules/react-native-is-edge-to-edge": {\n "version": "1.1.7",\n "resolved": "https[BASIC_AUTH]babel/runtime": "^7.18.6",\n "@react-native/normalize-colors": "^0.74.1",\n "fbjs": "^3.0.4",\n "inline-style-prefixer": "^7.0.1",\n "memoize-one": "^6.0.0",\n "nullthrows": "^1.1.1",\n "postcss-value-parser": "^4.2.0",\n "styleq": "^0.1.3"\n },\n "peerDependencies": {\n "react": "^18.0.0 || ^19.0.0",\n "react-dom": "^18.0.0 || ^19.0.0"\n }\n },\n "node_modules/react-native-web/node_modules/@react-native/normalize-colors": {\n "version": "0.74.89",\n "resolved": "https[BASIC_AUTH]react-native/codegen": {\n "version": "0.79.2",\n "resolved": "https[BASIC_AUTH]babel/core": "*"\n }\n },\n "node_modules/react-native/node_modules/@react-native/normalize-colors": {\n "version": "0.79.2",\n "resolved": "https[BASIC_AUTH]types/json-schema": "^7.0.9",\n "ajv": "^8.9.0",\n "ajv-formats": "^2.1.1",\n "ajv-keywords": "^5.1.0"\n },\n "engines": {\n "node": ">= 10.13.0"\n },\n "funding": {\n "type": "opencollective",\n "url": "https[BASIC_AUTH]jridgewell/gen-mapping": "^0.3.2",\n "commander": "^4.0.0",\n "glob": "^10.3.10",\n "lines-and-columns": "^1.1.6",\n "mz": "^2.7.0",\n "pirates": "^4.0.1",\n "ts-interface-checker": "^0.1.9"\n },\n "bin": {\n "sucrase": "bin/sucrase",\n "sucrase-node": "bin/sucrase-node"\n },\n "engines": {\n "node": ">=16 || 14 >=14.17"\n }\n },\n "node_modules/sucrase/node_modules/commander": {\n "version": "4.1.1",\n "resolved": "https[BASIC_AUTH]alloc/quick-lru": "^5.2.0",\n "arg": "^5.0.2",\n "chokidar": "^3.6.0",\n "didyoumean": "^1.2.2",\n "dlv": "^1.1.3",\n "fast-glob": "^3.3.2",\n "glob-parent": "^6.0.2",\n "is-glob": "^4.0.3",\n "jiti": "^1.21.6",\n "lilconfig": "^3.1.3",\n "micromatch": "^4.0.8",\n "normalize-path": "^3.0.0",\n "object-hash": "^3.0.0",\n "picocolors": "^1.1.1",\n "postcss": "^8.4.47",\n "postcss-import": "^15.1.0",\n "postcss-js": "^4.0.1",\n "postcss-load-config": "^4.0.2",\n "postcss-nested": "^6.2.0",\n "postcss-selector-parser": "^6.1.2",\n "resolve": "^1.22.8",\n "sucrase": "^3.35.0"\n },\n "bin": {\n "tailwind": "lib/cli.js",\n "tailwindcss": "lib/cli.js"\n },\n "engines": {\n "node": ">=14.0.0"\n }\n },\n "node_modules/tailwindcss-animate": {\n "version": "1.0.7",\n "resolved": "https[BASIC_AUTH]isaacs/fs-minipass": "^4.0.0",\n "chownr": "^3.0.0",\n "minipass": "^7.1.2",\n "minizlib": "^3.0.1",\n "mkdirp": "^3.0.1",\n "yallist": "^5.0.0"\n },\n "engines": {\n "node": ">=18"\n }\n },\n "node_modules/tar/node_modules/minipass": {\n "version": "7.1.2",\n "resolved": "https[BASIC_AUTH]jridgewell/source-map": "^0.3.3",\n "acorn": "^8.14.0",\n "commander": "^2.20.0",\n "source-map-support": "~0.5.20"\n },\n "bin": {\n "terser": "bin/terser"\n },\n "engines": {\n "node": ">=10"\n }\n },\n "node_modules/terser/node_modules/commander": {\n "version": "2.20.3",\n "resolved": "https[BASIC_AUTH]istanbuljs/schema": "^0.1.2",\n "glob": "^7.1.4",\n "minimatch": "^3.0.4"\n },\n "engines": {\n "node": ">=8"\n }\n },\n "node_modules/test-exclude/node_modules/brace-expansion": {\n "version": "1.1.12",\n "resolved": "https[BASIC_AUTH]types/strip-bom": "^3.0.0",\n "@types/strip-json-comments": "0.0.30",\n "strip-bom": "^3.0.0",\n "strip-json-comments": "^2.0.0"\n }\n },\n "node_modules/tsconfig/node_modules/strip-bom": {\n "version": "3.0.0",\n "resolved": "https[BASIC_AUTH]jridgewell/trace-mapping": "^0.3.12",\n "@types/istanbul-lib-coverage": "^2.0.1",\n "convert-source-map": "^2.0.0"\n },\n "engines": {\n "node": ">=10.12.0"\n }\n },\n "node_modules/validate-npm-package-name": {\n "version": "5.0.1",\n "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz",\n "integrity": "[HIGH_ENTROPY]==",\n "license": "ISC",\n "engines": {\n "node": "^14.17.0 || ^16.13.0 || >=18.0.0"\n }\n },\n "node_modules/vary": {\n "version": "1.1.2",\n "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",\n "integrity": "[HIGH_ENTROPY]/dyow/BqAbZJyC+5fU+[HIGH_ENTROPY]/PXqg==",\n "license": "MIT",\n "engines": {\n "node": ">= 0.8"\n }\n },\n "node_modules/vlq": {\n "version": "1.0.1",\n "resolved": "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz",\n "integrity": "[HIGH_ENTROPY]+[HIGH_ENTROPY]/[HIGH_ENTROPY]+w==",\n "license": "MIT"\n },\n "node_modules/w3c-xmlserializer": {\n "version": "4.0.0",\n "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz",\n "integrity": "sha512-d+[HIGH_ENTROPY]+aRm75yEbCh+r2/yR+[HIGH_ENTROPY]==",\n "dev": true,\n "license": "MIT",\n "dependencies": {\n "xml-name-validator": "^4.0.0"\n },\n "engines": {\n "node": ">=14"\n }\n },\n "node_modules/walker": {\n "version": "1.0.8",\n "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz",\n "integrity": "sha512-ts/[HIGH_ENTROPY]+[HIGH_ENTROPY]==",\n "license": "Apache-2.0",\n "dependencies": {\n "makeerror": "1.0.12"\n }\n },\n "node_modules/warn-once": {\n "version": "0.1.1",\n "resolved": "https://registry.npmjs.org/warn-once/-/warn-once-0.1.1.tgz",\n "integrity": "[HIGH_ENTROPY]+[HIGH_ENTROPY]+I1HQ3Q==",\n "license": "MIT"\n },\n "node_modules/wcwidth": {\n "version": "1.0.1",\n "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",\n "integrity": "[HIGH_ENTROPY]+[HIGH_ENTROPY]+[HIGH_ENTROPY]==",\n "license": "MIT",\n "dependencies": {\n "defaults": "^1.0.3"\n }\n },\n "node_modules/webidl-conversions": {\n "version": "7.0.0",\n "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",\n "integrity": "[HIGH_ENTROPY]+[HIGH_ENTROPY]+aoGlqxPg/B87NGVZ/fu6g==",\n "dev": true,\n "license": "BSD-2-Clause",\n "engines": {\n "node": ">=12"\n }\n },\n "node_modules/webpack-sources": {\n "version": "3.3.3",\n "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.3.tgz",\n "integrity": "[HIGH_ENTROPY]+oFhg/[HIGH_ENTROPY]==",\n "dev": true,\n "license": "MIT",\n "engines": {\n "node": ">=10.13.0"\n }\n },\n "node_modules/whatwg-encoding": {\n "version": "2.0.0",\n "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz",\n "integrity": "[HIGH_ENTROPY]+ZooOCZLcoYgPZ/HL/D/N+[HIGH_ENTROPY]==",\n "dev": true,\n "license": "MIT",\n "dependencies": {\n "iconv-lite": "0.6.3"\n },\n "engines": {\n "node": ">=12"\n }\n },\n "node_modules/whatwg-fetch": {\n "version": "3.6.20",\n "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz",\n "integrity": "[HIGH_ENTROPY]+[HIGH_ENTROPY]==",\n "license": "MIT"\n },\n "node_modules/whatwg-mimetype": {\n "version": "3.0.0",\n "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz",\n "integrity": "sha512-nt+[HIGH_ENTROPY]/ch3U31NOCGGA/[HIGH_ENTROPY]/Q==",\n "dev": true,\n "license": "MIT",\n "engines": {\n "node": ">=12"\n }\n },\n "node_modules/whatwg-url": {\n "version": "5.0.0",\n "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",\n "integrity": "sha512-saE57nupxk6v3HY35+[HIGH_ENTROPY]/[HIGH_ENTROPY]==",\n "license": "MIT",\n "dependencies": {\n "tr46": "~0.0.3",\n "webidl-conversions": "^3.0.0"\n }\n },\n "node_modules/whatwg-url-without-unicode": {\n "version": "8.0.0-3",\n "resolved": "https://registry.npmjs.org/whatwg-url-without-unicode/-/whatwg-url-without-unicode-8.0.0-3.tgz",\n "integrity": "[HIGH_ENTROPY]/WJH4B0+3ttFqRo//lmq+9T/[HIGH_ENTROPY]/nR/lxKpJiv0uig==",\n "license": "MIT",\n "dependencies": {\n "buffer": "^5.4.3",\n "punycode": "^2.1.1",\n "webidl-conversions": "^5.0.0"\n },\n "engines": {\n "node": ">=10"\n }\n },\n "node_modules/whatwg-url-without-unicode/node_modules/buffer": {\n "version": "5.7.1",\n "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",\n "integrity": "[HIGH_ENTROPY]/[HIGH_ENTROPY]==",\n "funding": [\n {\n "type": "github",\n "url": "https://github.com/sponsors/feross"\n },\n {\n "type": "patreon",\n "url": "https://www.patreon.com/feross"\n },\n {\n "type": "consulting",\n "url": "https://feross.org/support"\n }\n ],\n "license": "MIT",\n "dependencies": {\n "base64-js": "^1.3.1",\n "ieee754": "^1.1.13"\n }\n },\n "node_modules/whatwg-url-without-unicode/node_modules/webidl-conversions": {\n "version": "5.0.0",\n "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz",\n "integrity": "[HIGH_ENTROPY]==",\n "license": "BSD-2-Clause",\n "engines": {\n "node": ">=8"\n }\n },\n "node_modules/whatwg-url/node_modules/webidl-conversions": {\n "version": "3.0.1",\n "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",\n "integrity": "[HIGH_ENTROPY]/bcl/[HIGH_ENTROPY]+[HIGH_ENTROPY]==",\n "license": "BSD-2-Clause"\n },\n "node_modules/which": {\n "version": "2.0.2",\n "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",\n "integrity": "[HIGH_ENTROPY]+[HIGH_ENTROPY]+[HIGH_ENTROPY]==",\n "license": "ISC",\n "dependencies": {\n "isexe": "^2.0.0"\n },\n "bin": {\n "node-which": "bin/node-which"\n },\n "engines": {\n "node": ">= 8"\n }\n },\n "node_modules/which-typed-array": {\n "version": "1.1.19",\n "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz",\n "integrity": "[HIGH_ENTROPY]+r6bImz0/[HIGH_ENTROPY]==",\n "license": "MIT",\n "dependencies": {\n "available-typed-arrays": "^1.0.7",\n "call-bind": "^1.0.8",\n "call-bound": "^1.0.4",\n "for-each": "^0.3.5",\n "get-proto": "^1.0.1",\n "gopd": "^1.2.0",\n "has-tostringtag": "^1.0.2"\n },\n "engines": {\n "node": ">= 0.4"\n },\n "funding": {\n "url": "https://github.com/sponsors/ljharb"\n }\n },\n "node_modules/wonka": {\n "version": "6.3.5",\n "resolved": "https://registry.npmjs.org/wonka/-/wonka-6.3.5.tgz",\n "integrity": "sha512-SSil+ecw6B4/[HIGH_ENTROPY]+of1EezgoUw==",\n "license": "MIT"\n },\n "node_modules/wrap-ansi": {\n "version": "7.0.0",\n "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",\n "integrity": "[HIGH_ENTROPY]+Q21c5zPuZ1pl+[HIGH_ENTROPY]/Fi7D16Q==",\n "license": "MIT",\n "dependencies": {\n "ansi-styles": "^4.0.0",\n "string-width": "^4.1.0",\n "strip-ansi": "^6.0.0"\n },\n "engines": {\n "node": ">=10"\n },\n "funding": {\n "url": "https://github.com/chalk/wrap-ansi?sponsor=1"\n }\n },\n "node_modules/wrap-ansi-cjs": {\n "name": "wrap-ansi",\n "version": "7.0.0",\n "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",\n "integrity": "[HIGH_ENTROPY]+Q21c5zPuZ1pl+[HIGH_ENTROPY]/Fi7D16Q==",\n "license": "MIT",\n "dependencies": {\n "ansi-styles": "^4.0.0",\n "string-width": "^4.1.0",\n "strip-ansi": "^6.0.0"\n },\n "engines": {\n "node": ">=10"\n },\n "funding": {\n "url": "https://github.com/chalk/wrap-ansi?sponsor=1"\n }\n },\n "node_modules/wrappy": {\n "version": "1.0.2",\n "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",\n "integrity": "sha512-l4Sp/[HIGH_ENTROPY]/[HIGH_ENTROPY]/[HIGH_ENTROPY]==",\n "license": "ISC"\n },\n "node_modules/write-file-atomic": {\n "version": "4.0.2",\n "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz",\n "integrity": "[HIGH_ENTROPY]+[HIGH_ENTROPY]/VuTIcS/gge/[HIGH_ENTROPY]==",\n "license": "ISC",\n "dependencies": {\n "imurmurhash": "^0.1.4",\n "signal-exit": "^3.0.7"\n },\n "engines": {\n "node": "^12.13.0 || ^14.15.0 || >=16.0.0"\n }\n },\n "node_modules/ws": {\n "version": "8.18.3",\n "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",\n "integrity": "[HIGH_ENTROPY]+[HIGH_ENTROPY]+[HIGH_ENTROPY]==",\n "license": "MIT",\n "engines": {\n "node": ">=10.0.0"\n },\n "peerDependencies": {\n "bufferutil": "^4.0.1",\n "utf-8-validate": ">=5.0.2"\n },\n "peerDependenciesMeta": {\n "bufferutil": {\n "optional": true\n },\n "utf-8-validate": {\n "optional": true\n }\n }\n },\n "node_modules/xcode": {\n "version": "3.0.1",\n "resolved": "https://registry.npmjs.org/xcode/-/xcode-3.0.1.tgz",\n "integrity": "[HIGH_ENTROPY]+NTDhU/fatA==",\n "license": "Apache-2.0",\n "dependencies": {\n "simple-plist": "^1.1.0",\n "uuid": "^7.0.3"\n },\n "engines": {\n "node": ">=10.0.0"\n }\n },\n "node_modules/xml-name-validator": {\n "version": "4.0.0",\n "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz",\n "integrity": "sha512-ICP2e+[HIGH_ENTROPY]==",\n "dev": true,\n "license": "Apache-2.0",\n "engines": {\n "node": ">=12"\n }\n },\n "node_modules/xml2js": {\n "version": "0.6.0",\n "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.0.tgz",\n "integrity": "[HIGH_ENTROPY]+[HIGH_ENTROPY]+[HIGH_ENTROPY]==",\n "license": "MIT",\n "dependencies": {\n "sax": ">=0.6.0",\n "xmlbuilder": "~11.0.0"\n },\n "engines": {\n "node": ">=4.0.0"\n }\n },\n "node_modules/xml2js/node_modules/xmlbuilder": {\n "version": "11.0.1",\n "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz",\n "integrity": "sha512-fDlsI/kFEx7gLvbecc0/[HIGH_ENTROPY]+[HIGH_ENTROPY]==",\n "license": "MIT",\n "engines": {\n "node": ">=4.0"\n }\n },\n "node_modules/xmlbuilder": {\n "version": "15.1.1",\n "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz",\n "integrity": "[HIGH_ENTROPY]==",\n "license": "MIT",\n "engines": {\n "node": ">=8.0"\n }\n },\n "node_modules/xmlchars": {\n "version": "2.2.0",\n "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",\n "integrity": "[HIGH_ENTROPY]+JuJw+[HIGH_ENTROPY]+[HIGH_ENTROPY]==",\n "dev": true,\n "license": "MIT"\n },\n "node_modules/xtend": {\n "version": "2.2.0",\n "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.2.0.tgz",\n "integrity": "sha512-SLt5uylT+[HIGH_ENTROPY]==",\n "engines": {\n "node": ">=0.4"\n }\n },\n "node_modules/y18n": {\n "version": "5.0.8",\n "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",\n "integrity": "[HIGH_ENTROPY]+[HIGH_ENTROPY]/0LhANUS6/+7SCb98YOfA==",\n "license": "ISC",\n "engines": {\n "node": ">=10"\n }\n },\n "node_modules/yallist": {\n "version": "3.1.1",\n "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",\n "integrity": "[HIGH_ENTROPY]+[HIGH_ENTROPY]==",\n "license": "ISC"\n },\n "node_modules/yaml": {\n "version": "2.8.0",\n "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.0.tgz",\n "integrity": "sha512-4lLa/[HIGH_ENTROPY]/[HIGH_ENTROPY]/ZdlDJ/leQ==",\n "license": "ISC",\n "bin": {\n "yaml": "bin.mjs"\n },\n "engines": {\n "node": ">= 14.6"\n }\n },\n "node_modules/yargs": {\n "version": "17.7.2",\n "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",\n "integrity": "[HIGH_ENTROPY]/[HIGH_ENTROPY]+[HIGH_ENTROPY]==",\n "license": "MIT",\n "dependencies": {\n "cliui": "^8.0.1",\n "escalade": "^3.1.1",\n "get-caller-file": "^2.0.5",\n "require-directory": "^2.1.1",\n "string-width": "^4.2.3",\n "y18n": "^5.0.5",\n "yargs-parser": "^21.1.1"\n },\n "engines": {\n "node": ">=12"\n }\n },\n "node_modules/yargs-parser": {\n "version": "21.1.1",\n "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",\n "integrity": "[HIGH_ENTROPY]/[HIGH_ENTROPY]+[HIGH_ENTROPY]+GUuc2/LBw==",\n "license": "ISC",\n "engines": {\n "node": ">=12"\n }\n },\n "node_modules/yocto-queue": {\n "version": "0.1.0",\n "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",\n "integrity": "[HIGH_ENTROPY]/[HIGH_ENTROPY]/t/[HIGH_ENTROPY]==",\n "license": "MIT",\n "engines": {\n "node": ">=10"\n },\n "funding": {\n "url": "https://github.com/sponsors/sindresorhus"\n }\n }\n }\n}\n
618
selection_command
null
619
tab
null
620
selection_command
null
621
selection_mouse
null
622
tab
null
623
selection_command
null
624
content
\t\[HIGH_ENTROPY] /* PrivacyInfo.xcprivacy */ = {isa = [HIGH_ENTROPY]; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = roger/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };\n\t\[HIGH_ENTROPY] /* libPods-roger.a */ = {isa = [HIGH_ENTROPY]; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-roger.a"; sourceTree = [HIGH_ENTROPY]; };\n\t\[HIGH_ENTROPY] /* JavaScriptCore.framework */ = {isa = [HIGH_ENTROPY]; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };\n\t\tF11748412D0307B40044C1D9 /* AppDelegate.swift */ = {isa = [HIGH_ENTROPY]; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = roger/AppDelegate.swift; sourceTree = "<group>"; };\n\t\tF11748442D0722820044C1D9 /* roger-Bridging-Header.h */ = {isa = [HIGH_ENTROPY]; lastKnownFileType = sourcecode.c.h; name = "roger-Bridging-Header.h"; path = "roger/roger-Bridging-Header.h"; sourceTree = "<group>"; };\n/* End [HIGH_ENTROPY] section */\n\n/* Begin [HIGH_ENTROPY] section */\n\t\[HIGH_ENTROPY] /* Frameworks */ = {\n\t\t\tisa = [HIGH_ENTROPY];\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\[HIGH_ENTROPY] /* libPods-roger.a in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End [HIGH_ENTROPY] section */\n\n/* Begin PBXGroup section */\n\t\[HIGH_ENTROPY] /* roger */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tF11748412D0307B40044C1D9 /* AppDelegate.swift */,\n\t\t\t\tF11748442D0722820044C1D9 /* roger-Bridging-Header.h */,\n\t\t\t\[HIGH_ENTROPY] /* Supporting */,\n\t\t\t\[HIGH_ENTROPY] /* Images.xcassets */,\n\t\t\t\[HIGH_ENTROPY] /* Info.plist */,\n\t\t\t\[HIGH_ENTROPY] /* SplashScreen.storyboard */,\n\t\t\t\[HIGH_ENTROPY] /* PrivacyInfo.xcprivacy */,\n\t\t\t);\n\t\t\tname = roger;\n\t\t\tsourceTree = "<group>";\n\t\t};\n\t\[HIGH_ENTROPY] /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\[HIGH_ENTROPY] /* JavaScriptCore.framework */,\n\t\t\t\[HIGH_ENTROPY] /* libPods-roger.a */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = "<group>";\n\t\t};\n\t\[HIGH_ENTROPY] /* Libraries */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t);\n\t\t\tname = Libraries;\n\t\t\tsourceTree = "<group>";\n\t\t};\n\t\[HIGH_ENTROPY] = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\[HIGH_ENTROPY] /* roger */,\n\t\t\t\[HIGH_ENTROPY] /* Libraries */,\n\t\t\t\[HIGH_ENTROPY] /* Products */,\n\t\t\t\[HIGH_ENTROPY] /* Frameworks */,\n\t\t\t\[HIGH_ENTROPY] /* Pods */,\n\t\t\t\[HIGH_ENTROPY] /* ExpoModulesProviders */,\n\t\t\t);\n\t\t\tindentWidth = 2;\n\t\t\tsourceTree = "<group>";\n\t\t\ttabWidth = 2;\n\t\t\tusesTabs = 0;\n\t\t};\n\t\[HIGH_ENTROPY] /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\[HIGH_ENTROPY] /* roger.app */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = "<group>";\n\t\t};\n\t\[HIGH_ENTROPY] /* roger */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\[HIGH_ENTROPY] /* ExpoModulesProvider.swift */,\n\t\t\t);\n\t\t\tname = roger;\n\t\t\tsourceTree = "<group>";\n\t\t};\n\t\[HIGH_ENTROPY] /* Supporting */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\[HIGH_ENTROPY] /* Expo.plist */,\n\t\t\t);\n\t\t\tname = Supporting;\n\t\t\tpath = roger/Supporting;\n\t\t\tsourceTree = "<group>";\n\t\t};\n\t\[HIGH_ENTROPY] /* ExpoModulesProviders */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\[HIGH_ENTROPY] /* roger */,\n\t\t\t);\n\t\t\tname = ExpoModulesProviders;\n\t\t\tsourceTree = "<group>";\n\t\t};\n\t\[HIGH_ENTROPY] /* Pods */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\[HIGH_ENTROPY] /* Pods-roger.debug.xcconfig */,\n\t\t\t\[HIGH_ENTROPY] /* Pods-roger.release.xcconfig */,\n\t\t\t);\n\t\t\tname = Pods;\n\t\t\tpath = Pods;\n\t\t\tsourceTree = "<group>";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\[HIGH_ENTROPY] /* roger */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = [HIGH_ENTROPY] /* Build configuration list for PBXNativeTarget "roger" */;\n\t\t\tbuildPhases = (\n\t\t\t\[HIGH_ENTROPY] /* [CP] Check Pods Manifest.lock */,\n\t\t\t\[HIGH_ENTROPY] /* [Expo] Configure project */,\n\t\t\t\[HIGH_ENTROPY] /* Sources */,\n\t\t\t\[HIGH_ENTROPY] /* Frameworks */,\n\t\t\t\[HIGH_ENTROPY] /* Resources */,\n\t\t\t\[HIGH_ENTROPY] /* Bundle React Native code and images */,\n\t\t\t\[HIGH_ENTROPY] /* [CP] Copy Pods Resources */,\n\t\t\t\[HIGH_ENTROPY] /* [CP] Embed Pods Frameworks */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = roger;\n\t\t\tproductName = roger;\n\t\t\tproductReference = [HIGH_ENTROPY] /* roger.app */;\n\t\t\tproductType = "com.apple.product-type.application";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\[HIGH_ENTROPY] /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastUpgradeCheck = 1130;\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\[HIGH_ENTROPY] = {\n\t\t\t\t\t\tLastSwiftMigration = 1250;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = [HIGH_ENTROPY] /* Build configuration list for PBXProject "roger" */;\n\t\t\tcompatibilityVersion = "Xcode 3.2";\n\t\t\tdevelopmentRegion = en;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tBase,\n\t\t\t);\n\t\t\tmainGroup = [HIGH_ENTROPY];\n\t\t\tproductRefGroup = [HIGH_ENTROPY] /* Products */;\n\t\t\tprojectDirPath = "";\n\t\t\tprojectRoot = "";\n\t\t\ttargets = (\n\t\t\t\[HIGH_ENTROPY] /* roger */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin [HIGH_ENTROPY] section */\n\t\[HIGH_ENTROPY] /* Resources */ = {\n\t\t\tisa = [HIGH_ENTROPY];\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\[HIGH_ENTROPY] /* Expo.plist in Resources */,\n\t\t\t\[HIGH_ENTROPY] /* Images.xcassets in Resources */,\n\t\t\t\[HIGH_ENTROPY] /* SplashScreen.storyboard in Resources */,\n\t\t\t\[HIGH_ENTROPY] /* PrivacyInfo.xcprivacy in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End [HIGH_ENTROPY] section */\n\n/* Begin [HIGH_ENTROPY] section */\n\t\[HIGH_ENTROPY] /* Bundle React Native code and images */ = {\n\t\t\tisa = [HIGH_ENTROPY];\n\t\t\talwaysOutOfDate = 1;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = "Bundle React Native code and images";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n# The project root by default is one level up from the ios directory\nexport PROJECT_ROOT=\"$PROJECT_DIR\"/..\n\nif [[ \"$CONFIGURATION\" = *Debug* ]]; then\n export SKIP_BUNDLING=1\nfi\nif [[ -z \"$ENTRY_FILE\" ]]; then\n # Set the entry JS file using the bundler's entry resolution.\n export ENTRY_FILE=\"$(\"$NODE_BINARY\" -e \"require('expo/scripts/resolveAppEntry')\" \"$PROJECT_ROOT\" ios absolute | tail -n 1)\"\nfi\n\nif [[ -z \"$CLI_PATH\" ]]; then\n # Use Expo CLI\n export CLI_PATH=\"$(\"$NODE_BINARY\" --print \"require.resolve('@expo/cli', { paths: [require.resolve('expo/package.json')] })\")\"\nfi\nif [[ -z \"$BUNDLE_COMMAND\" ]]; then\n # Default Expo CLI command for bundling\n export BUNDLE_COMMAND=\"export:embed\"\nfi\n\n# Source .xcode.env.updates if it exists to allow\n# SKIP_BUNDLING to be unset if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.updates\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.updates\"\nfi\n# Source local changes to allow overrides\n# if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n`\"$NODE_BINARY\" --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'\"`\n\n";\n\t\t};\n\t\[HIGH_ENTROPY] /* [CP] Check Pods Manifest.lock */ = {\n\t\t\tisa = [HIGH_ENTROPY];\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputFileListPaths = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t\t"${[HIGH_ENTROPY]}/Podfile.lock",\n\t\t\t\t"${PODS_ROOT}/Manifest.lock",\n\t\t\t);\n\t\t\tname = "[CP] Check Pods Manifest.lock";\n\t\t\toutputFileListPaths = (\n\t\t\t);\n\t\t\toutputPaths = (\n\t\t\t\t"$(DERIVED_FILE_DIR)/Pods-roger-checkManifestLockResult.txt",\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = "diff \"${[HIGH_ENTROPY]}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${[HIGH_ENTROPY]}\"\n";\n\t\t\[HIGH_ENTROPY] = 0;\n\t\t};\n\t\[HIGH_ENTROPY] /* [CP] Embed Pods Frameworks */ = {\n\t\t\tisa = [HIGH_ENTROPY];\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t\t"${PODS_ROOT}/Target Support Files/Pods-roger/Pods-roger-frameworks.sh",\n\t\t\t\t"${[HIGH_ENTROPY]}/hermes-engine/Pre-built/hermes.framework/hermes",\n\t\t\t);\n\t\t\tname = "[CP] Embed Pods Frameworks";\n\t\t\toutputPaths = (\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/hermes.framework",\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = "\"${PODS_ROOT}/Target Support Files/Pods-roger/Pods-roger-frameworks.sh\"\n";\n\t\t\[HIGH_ENTROPY] = 0;\n\t\t};\n\t\[HIGH_ENTROPY] /* [CP] Copy Pods Resources */ = {\n\t\t\tisa = [HIGH_ENTROPY];\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t\t"${PODS_ROOT}/Target Support Files/Pods-roger/Pods-roger-resources.sh",\n\t\t\t\t"${[HIGH_ENTROPY]}/EXConstants/EXConstants.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/EXConstants/ExpoConstants_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/ExpoFileSystem/ExpoFileSystem_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/RCT-Folly/RCT-Folly_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/RNCAsyncStorage/RNCAsyncStorage_resources.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/RNSVG/RNSVGFilters.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/React-Core/React-Core_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/React-cxxreact/React-cxxreact_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/boost/boost_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/glog/glog_privacy.bundle",\n\t\t\t);\n\t\t\tname = "[CP] Copy Pods Resources";\n\t\t\toutputPaths = (\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/EXConstants.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/ExpoConstants_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/ExpoFileSystem_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/RCT-Folly_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/RNCAsyncStorage_resources.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/RNSVGFilters.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/React-Core_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/React-cxxreact_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/boost_privacy.bundle",\n\t\t\t\t"${[HIGH_ENTROPY]}/${[HIGH_ENTROPY]}/glog_privacy.bundle",\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = "\"${PODS_ROOT}/Target Support Files/Pods-roger/Pods-roger-resources.sh\"\n";\n\t\t\[HIGH_ENTROPY] = 0;\n\t\t};\n\t\[HIGH_ENTROPY] /* [Expo] Configure project */ = {\n\t\t\tisa = [HIGH_ENTROPY];\n\t\t\talwaysOutOfDate = 1;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputFileListPaths = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = "[Expo] Configure project";\n\t\t\toutputFileListPaths = (\n\t\t\t);\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = "# This script configures Expo modules and generates the modules provider file.\nbash -l -c \"./Pods/Target\\ Support\\ Files/Pods-roger/expo-configure-project.sh\"\n";\n\t\t};\n/* End [HIGH_ENTROPY] section */\n\n/* Begin [HIGH_ENTROPY] section */\n\t\[HIGH_ENTROPY] /* Sources */ = {\n\t\t\tisa = [HIGH_ENTROPY];\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tF11748422D0307B40044C1D9 /* AppDelegate.swift in Sources */,\n\t\t\t\[HIGH_ENTROPY] /* ExpoModulesProvider.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End [HIGH_ENTROPY] section */\n\n/* Begin XCBuildConfiguration section */\n\t\[HIGH_ENTROPY] /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = [HIGH_ENTROPY] /* Pods-roger.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\[HIGH_ENTROPY] = AppIcon;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = roger/roger.entitlements;\n\t\t\t\[HIGH_ENTROPY] = 1;\n\t\t\t\tENABLE_BITCODE = NO;\n\t\t\t\[HIGH_ENTROPY] = (\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t\t"[HIGH_ENTROPY]=1",\n\t\t\t\t);\n\t\t\t\tINFOPLIST_FILE = roger/Info.plist;\n\t\t\t\[HIGH_ENTROPY] = 15.1;\n\t\t\t\[HIGH_ENTROPY] = (\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t\t"@executable_path/Frameworks",\n\t\t\t\t);\n\t\t\t\[HIGH_ENTROPY] = 1.0;\n\t\t\t\tOTHER_LDFLAGS = (\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t\t"-ObjC",\n\t\t\t\t\t"-lc++",\n\t\t\t\t);\n\t\t\t\[HIGH_ENTROPY] = "$(inherited) -D [HIGH_ENTROPY]";\n\t\t\t\[HIGH_ENTROPY] = com.anonymous.roger;\n\t\t\t\tPRODUCT_NAME = roger;\n\t\t\t\[HIGH_ENTROPY] = "roger/roger-Bridging-Header.h";\n\t\t\t\[HIGH_ENTROPY] = "-Onone";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\[HIGH_ENTROPY] = "1,2";\n\t\t\t\[HIGH_ENTROPY] = "apple-generic";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\[HIGH_ENTROPY] /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = [HIGH_ENTROPY] /* Pods-roger.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\[HIGH_ENTROPY] = AppIcon;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = roger/roger.entitlements;\n\t\t\t\[HIGH_ENTROPY] = 1;\n\t\t\t\tINFOPLIST_FILE = roger/Info.plist;\n\t\t\t\[HIGH_ENTROPY] = 15.1;\n\t\t\t\[HIGH_ENTROPY] = (\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t\t"@executable_path/Frameworks",\n\t\t\t\t);\n\t\t\t\[HIGH_ENTROPY] = 1.0;\n\t\t\t\tOTHER_LDFLAGS = (\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t\t"-ObjC",\n\t\t\t\t\t"-lc++",\n\t\t\t\t);\n\t\t\t\[HIGH_ENTROPY] = "$(inherited) -D [HIGH_ENTROPY]";\n\t\t\t\[HIGH_ENTROPY] = com.anonymous.roger;\n\t\t\t\tPRODUCT_NAME = roger;\n\t\t\t\[HIGH_ENTROPY] = "roger/roger-Bridging-Header.h";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\[HIGH_ENTROPY] = "1,2";\n\t\t\t\[HIGH_ENTROPY] = "apple-generic";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\[HIGH_ENTROPY] /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\[HIGH_ENTROPY] = NO;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = "c++20";\n\t\t\t\[HIGH_ENTROPY] = "libc++";\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES_ERROR;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES_ERROR;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\t"[HIGH_ENTROPY][sdk=iphoneos*]" = "iPhone Developer";\n\t\t\t\[HIGH_ENTROPY] = NO;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = gnu99;\n\t\t\t\[HIGH_ENTROPY] = NO;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = 0;\n\t\t\t\[HIGH_ENTROPY] = (\n\t\t\t\t\t"DEBUG=1",\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t);\n\t\t\t\[HIGH_ENTROPY] = NO;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES_ERROR;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES_AGGRESSIVE;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = 15.1;\n\t\t\t\[HIGH_ENTROPY] = (\n\t\t\t\t\t/usr/lib/swift,\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t);\n\t\t\t\[HIGH_ENTROPY] = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\tOTHER_LDFLAGS = (\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t\t" ",\n\t\t\t\t);\n\t\t\t\[HIGH_ENTROPY] = "${PODS_ROOT}/../../node_modules/react-native";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\[HIGH_ENTROPY] = "$(inherited) DEBUG";\n\t\t\t\tUSE_HERMES = true;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\[HIGH_ENTROPY] /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\[HIGH_ENTROPY] = NO;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = "c++20";\n\t\t\t\[HIGH_ENTROPY] = "libc++";\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES_ERROR;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES_ERROR;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\t"[HIGH_ENTROPY][sdk=iphoneos*]" = "iPhone Developer";\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = NO;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = gnu99;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES_ERROR;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES_AGGRESSIVE;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = YES;\n\t\t\t\[HIGH_ENTROPY] = 15.1;\n\t\t\t\[HIGH_ENTROPY] = (\n\t\t\t\t\t/usr/lib/swift,\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t);\n\t\t\t\[HIGH_ENTROPY] = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";\n\t\t\t\[HIGH_ENTROPY] = NO;\n\t\t\t\tOTHER_LDFLAGS = (\n\t\t\t\t\t"$(inherited)",\n\t\t\t\t\t" ",\n\t\t\t\t);\n
625
tab
null
626
selection_command
null
627
content
- EXConstants (17.1.6):\n - ExpoModulesCore\n - Expo (53.0.11):\n - DoubleConversion\n - ExpoModulesCore\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactAppDependencyProvider\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - ExpoAsset (11.1.5):\n - ExpoModulesCore\n - ExpoAudio (0.4.6):\n - ExpoModulesCore\n - ExpoFileSystem (18.1.10):\n - ExpoModulesCore\n - ExpoFont (13.3.1):\n - ExpoModulesCore\n - ExpoHead (5.0.7):\n - ExpoModulesCore\n - ExpoKeepAwake (14.1.4):\n - ExpoModulesCore\n - ExpoLinking (7.1.5):\n - ExpoModulesCore\n - ExpoModulesCore (2.4.0):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-jsinspector\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - ExpoSplashScreen (0.30.9):\n - ExpoModulesCore\n - ExpoSymbols (0.4.5):\n - ExpoModulesCore\n - ExpoWebBrowser (14.2.0):\n - ExpoModulesCore\n - fast_float (6.1.4)\n - FBLazyVector (0.79.2)\n - fmt (11.0.2)\n - glog (0.3.5)\n - hermes-engine (0.79.2):\n - hermes-engine/Pre-built (= 0.79.2)\n - hermes-engine/Pre-built (0.79.2)\n - RCT-Folly (2024.11.18.00):\n - boost\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - RCT-Folly/Default (= 2024.11.18.00)\n - RCT-Folly/Default (2024.11.18.00):\n - boost\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - RCT-Folly/Fabric (2024.11.18.00):\n - boost\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - RCTDeprecation (0.79.2)\n - RCTRequired (0.79.2)\n - RCTTypeSafety (0.79.2):\n - FBLazyVector (= 0.79.2)\n - RCTRequired (= 0.79.2)\n - React-Core (= 0.79.2)\n - React (0.79.2):\n - React-Core (= 0.79.2)\n - React-Core/DevSupport (= 0.79.2)\n - React-Core/RCTWebSocket (= 0.79.2)\n - [HIGH_ENTROPY] (= 0.79.2)\n - [HIGH_ENTROPY] (= 0.79.2)\n - React-RCTBlob (= 0.79.2)\n - React-RCTImage (= 0.79.2)\n - [HIGH_ENTROPY] (= 0.79.2)\n - [HIGH_ENTROPY] (= 0.79.2)\n - [HIGH_ENTROPY] (= 0.79.2)\n - React-RCTText (= 0.79.2)\n - [HIGH_ENTROPY] (= 0.79.2)\n - React-callinvoker (0.79.2)\n - React-Core (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default (= 0.79.2)\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/CoreModulesHeaders (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/Default (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/DevSupport (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default (= 0.79.2)\n - React-Core/RCTWebSocket (= 0.79.2)\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/[HIGH_ENTROPY] (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/[HIGH_ENTROPY] (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/RCTBlobHeaders (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/RCTImageHeaders (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/[HIGH_ENTROPY] (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/[HIGH_ENTROPY] (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/[HIGH_ENTROPY] (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/RCTTextHeaders (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/[HIGH_ENTROPY] (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-Core/RCTWebSocket (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTDeprecation\n - React-Core/Default (= 0.79.2)\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-perflogger\n - React-runtimescheduler\n - React-utils\n - SocketRocket (= 0.7.1)\n - Yoga\n - React-CoreModules (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - RCT-Folly (= 2024.11.18.00)\n - RCTTypeSafety (= 0.79.2)\n - React-Core/CoreModulesHeaders (= 0.79.2)\n - React-jsi (= 0.79.2)\n - React-jsinspector\n - React-jsinspectortracing\n - React-NativeModulesApple\n - React-RCTBlob\n - [HIGH_ENTROPY]\n - React-RCTImage (= 0.79.2)\n - ReactCommon\n - SocketRocket (= 0.7.1)\n - React-cxxreact (0.79.2):\n - boost\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-callinvoker (= 0.79.2)\n - React-debug (= 0.79.2)\n - React-jsi (= 0.79.2)\n - React-jsinspector\n - React-jsinspectortracing\n - React-logger (= 0.79.2)\n - React-perflogger (= 0.79.2)\n - React-runtimeexecutor (= 0.79.2)\n - React-timing (= 0.79.2)\n - React-debug (0.79.2)\n - React-defaultsnativemodule (0.79.2):\n - hermes-engine\n - RCT-Folly\n - React-domnativemodule\n - React-featureflagsnativemodule\n - React-hermes\n - React-idlecallbacksnativemodule\n - React-jsi\n - React-jsiexecutor\n - React-microtasksnativemodule\n - [HIGH_ENTROPY]\n - React-domnativemodule (0.79.2):\n - hermes-engine\n - RCT-Folly\n - React-Fabric\n - React-FabricComponents\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - [HIGH_ENTROPY]\n - ReactCommon/turbomodule/core\n - Yoga\n - React-Fabric (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric/animations (= 0.79.2)\n - React-Fabric/[HIGH_ENTROPY] (= 0.79.2)\n - React-Fabric/[HIGH_ENTROPY] (= 0.79.2)\n - React-Fabric/[HIGH_ENTROPY] (= 0.79.2)\n - React-Fabric/components (= 0.79.2)\n - React-Fabric/consistency (= 0.79.2)\n - React-Fabric/core (= 0.79.2)\n - React-Fabric/dom (= 0.79.2)\n - React-Fabric/imagemanager (= 0.79.2)\n - React-Fabric/leakchecker (= 0.79.2)\n - React-Fabric/mounting (= 0.79.2)\n - React-Fabric/observers (= 0.79.2)\n - React-Fabric/scheduler (= 0.79.2)\n - React-Fabric/telemetry (= 0.79.2)\n - React-Fabric/[HIGH_ENTROPY] (= 0.79.2)\n - React-Fabric/uimanager (= 0.79.2)\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/animations (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/[HIGH_ENTROPY] (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/[HIGH_ENTROPY] (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/[HIGH_ENTROPY] (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/components (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric/components/[HIGH_ENTROPY] (= 0.79.2)\n - React-Fabric/components/root (= 0.79.2)\n - React-Fabric/components/scrollview (= 0.79.2)\n - React-Fabric/components/view (= 0.79.2)\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/components/[HIGH_ENTROPY] (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/components/root (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/components/scrollview (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/components/view (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-renderercss\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-Fabric/consistency (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/core (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/dom (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/imagemanager (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/leakchecker (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/mounting (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/observers (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric/observers/events (= 0.79.2)\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/observers/events (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/scheduler (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric/observers/events\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-performancetimeline\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/telemetry (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/[HIGH_ENTROPY] (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/uimanager (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric/uimanager/consistency (= 0.79.2)\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererconsistency\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-Fabric/uimanager/consistency (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererconsistency\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - React-FabricComponents (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-FabricComponents/components (= 0.79.2)\n - React-FabricComponents/[HIGH_ENTROPY] (= 0.79.2)\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-FabricComponents/components/inputaccessory (= 0.79.2)\n - React-FabricComponents/components/iostextinput (= 0.79.2)\n - React-FabricComponents/components/modal (= 0.79.2)\n - React-FabricComponents/components/rncore (= 0.79.2)\n - React-FabricComponents/components/safeareaview (= 0.79.2)\n - React-FabricComponents/components/scrollview (= 0.79.2)\n - React-FabricComponents/components/text (= 0.79.2)\n - React-FabricComponents/components/textinput (= 0.79.2)\n - React-FabricComponents/components/[HIGH_ENTROPY] (= 0.79.2)\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/inputaccessory (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/iostextinput (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/modal (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/rncore (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/safeareaview (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/scrollview (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/text (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/textinput (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/components/[HIGH_ENTROPY] (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricComponents/[HIGH_ENTROPY] (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-cxxreact\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-logger\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - ReactCommon/turbomodule/core\n - Yoga\n - React-FabricImage (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - RCTRequired (= 0.79.2)\n - RCTTypeSafety (= 0.79.2)\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-jsiexecutor (= 0.79.2)\n - React-logger\n - React-rendererdebug\n - React-utils\n - ReactCommon\n - Yoga\n - React-featureflags (0.79.2):\n - RCT-Folly (= 2024.11.18.00)\n - React-featureflagsnativemodule (0.79.2):\n - hermes-engine\n - RCT-Folly\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - [HIGH_ENTROPY]\n - ReactCommon/turbomodule/core\n - React-graphics (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-utils\n - React-hermes (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-cxxreact (= 0.79.2)\n - React-jsi\n - React-jsiexecutor (= 0.79.2)\n - React-jsinspector\n - React-jsinspectortracing\n - React-perflogger (= 0.79.2)\n - React-runtimeexecutor\n - React-idlecallbacksnativemodule (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - [HIGH_ENTROPY]\n - React-runtimescheduler\n - ReactCommon/turbomodule/core\n - React-ImageManager (0.79.2):\n - glog\n - RCT-Folly/Fabric\n - React-Core/Default\n - React-debug\n - React-Fabric\n - React-graphics\n - React-rendererdebug\n - React-utils\n - React-jserrorhandler (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-jsi\n - ReactCommon/turbomodule/bridging\n - React-jsi (0.79.2):\n - boost\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-jsiexecutor (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-cxxreact (= 0.79.2)\n - React-jsi (= 0.79.2)\n - React-jsinspector\n - React-jsinspectortracing\n - React-perflogger (= 0.79.2)\n - React-jsinspector (0.79.2):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly\n - React-featureflags\n - React-jsi\n - React-jsinspectortracing\n - React-perflogger (= 0.79.2)\n - React-runtimeexecutor (= 0.79.2)\n - React-jsinspectortracing (0.79.2):\n - RCT-Folly\n - React-oscompat\n - React-jsitooling (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - RCT-Folly (= 2024.11.18.00)\n - React-cxxreact (= 0.79.2)\n - React-jsi (= 0.79.2)\n - React-jsinspector\n - React-jsinspectortracing\n - React-jsitracing (0.79.2):\n - React-jsi\n - React-logger (0.79.2):\n - glog\n - React-Mapbuffer (0.79.2):\n - glog\n - React-debug\n - React-microtasksnativemodule (0.79.2):\n - hermes-engine\n - RCT-Folly\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - [HIGH_ENTROPY]\n - ReactCommon/turbomodule/core\n - react-native-get-random-values (1.11.0):\n - React-Core\n - [HIGH_ENTROPY] (1.17.5):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - [HIGH_ENTROPY]/common (= 1.17.5)\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - [HIGH_ENTROPY]/common (1.17.5):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - react-native-safe-area-context (5.4.1):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - react-native-safe-area-context/common (= 5.4.1)\n - react-native-safe-area-context/fabric (= 5.4.1)\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - react-native-safe-area-context/common (5.4.1):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - react-native-safe-area-context/fabric (5.4.1):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - react-native-safe-area-context/common\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - react-native-webview (13.13.5):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - React-NativeModulesApple (0.79.2):\n - glog\n - hermes-engine\n - React-callinvoker\n - React-Core\n - React-cxxreact\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsinspector\n - React-runtimeexecutor\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - React-oscompat (0.79.2)\n - React-perflogger (0.79.2):\n - DoubleConversion\n - RCT-Folly (= 2024.11.18.00)\n - React-performancetimeline (0.79.2):\n - RCT-Folly (= 2024.11.18.00)\n - React-cxxreact\n - React-featureflags\n - React-jsinspectortracing\n - React-perflogger\n - React-timing\n - [HIGH_ENTROPY] (0.79.2):\n - React-Core/[HIGH_ENTROPY] (= 0.79.2)\n - [HIGH_ENTROPY] (0.79.2):\n - RCT-Folly (= 2024.11.18.00)\n - RCTTypeSafety\n - React-Core/[HIGH_ENTROPY]\n - React-jsi\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - ReactCommon\n - [HIGH_ENTROPY] (0.79.2):\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-CoreModules\n - React-debug\n - React-defaultsnativemodule\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsitooling\n - React-NativeModulesApple\n - React-RCTFabric\n - [HIGH_ENTROPY]\n - React-RCTImage\n - [HIGH_ENTROPY]\n - [HIGH_ENTROPY]\n - React-rendererdebug\n - React-RuntimeApple\n - React-RuntimeCore\n - React-runtimescheduler\n - React-utils\n - ReactCommon\n - React-RCTBlob (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-Core/RCTBlobHeaders\n - React-Core/RCTWebSocket\n - React-jsi\n - React-jsinspector\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - [HIGH_ENTROPY]\n - ReactCommon\n - React-RCTFabric (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - React-Core\n - React-debug\n - React-Fabric\n - React-FabricComponents\n - React-FabricImage\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-jsinspector\n - React-jsinspectortracing\n - React-performancetimeline\n - [HIGH_ENTROPY]\n - React-RCTImage\n - React-RCTText\n - React-rendererconsistency\n - React-renderercss\n - React-rendererdebug\n - React-runtimescheduler\n - React-utils\n - Yoga\n - [HIGH_ENTROPY] (0.79.2):\n - hermes-engine\n - RCT-Folly\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-NativeModulesApple\n - ReactCommon\n - React-RCTImage (0.79.2):\n - RCT-Folly (= 2024.11.18.00)\n - RCTTypeSafety\n - React-Core/RCTImageHeaders\n - React-jsi\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - [HIGH_ENTROPY]\n - ReactCommon\n - [HIGH_ENTROPY] (0.79.2):\n - React-Core/[HIGH_ENTROPY] (= 0.79.2)\n - React-jsi (= 0.79.2)\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - ReactCommon\n - ReactCommon/turbomodule/core (= 0.79.2)\n - [HIGH_ENTROPY] (0.79.2):\n - RCT-Folly (= 2024.11.18.00)\n - RCTTypeSafety\n - React-Core/[HIGH_ENTROPY]\n - React-jsi\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - ReactCommon\n - [HIGH_ENTROPY] (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - React-Core\n - React-hermes\n - React-jsi\n - React-jsinspector\n - React-jsinspectortracing\n - React-jsitooling\n - React-RuntimeApple\n - React-RuntimeCore\n - React-RuntimeHermes\n - [HIGH_ENTROPY] (0.79.2):\n - RCT-Folly (= 2024.11.18.00)\n - RCTTypeSafety\n - React-Core/[HIGH_ENTROPY]\n - React-jsi\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - ReactCommon\n - React-RCTText (0.79.2):\n - React-Core/RCTTextHeaders (= 0.79.2)\n - Yoga\n - [HIGH_ENTROPY] (0.79.2):\n - RCT-Folly (= 2024.11.18.00)\n - React-Core/[HIGH_ENTROPY]\n - React-jsi\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - ReactCommon\n - React-rendererconsistency (0.79.2)\n - React-renderercss (0.79.2):\n - React-debug\n - React-utils\n - React-rendererdebug (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - RCT-Folly (= 2024.11.18.00)\n - React-debug\n - React-rncore (0.79.2)\n - React-RuntimeApple (0.79.2):\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - React-callinvoker\n - React-Core/Default\n - React-CoreModules\n - React-cxxreact\n - React-featureflags\n - React-jserrorhandler\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-Mapbuffer\n - React-NativeModulesApple\n - React-RCTFabric\n - [HIGH_ENTROPY]\n - React-RuntimeCore\n - React-runtimeexecutor\n - React-RuntimeHermes\n - React-runtimescheduler\n - React-utils\n - React-RuntimeCore (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - React-cxxreact\n - React-Fabric\n - React-featureflags\n - React-hermes\n - React-jserrorhandler\n - React-jsi\n - React-jsiexecutor\n - React-jsinspector\n - React-jsitooling\n - React-performancetimeline\n - React-runtimeexecutor\n - React-runtimescheduler\n - React-utils\n - React-runtimeexecutor (0.79.2):\n - React-jsi (= 0.79.2)\n - React-RuntimeHermes (0.79.2):\n - hermes-engine\n - RCT-Folly/Fabric (= 2024.11.18.00)\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsinspector\n - React-jsinspectortracing\n - React-jsitooling\n - React-jsitracing\n - React-RuntimeCore\n - React-utils\n - React-runtimescheduler (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-callinvoker\n - React-cxxreact\n - React-debug\n - React-featureflags\n - React-hermes\n - React-jsi\n - React-jsinspectortracing\n - React-performancetimeline\n - React-rendererconsistency\n - React-rendererdebug\n - React-runtimeexecutor\n - React-timing\n - React-utils\n - React-timing (0.79.2)\n - React-utils (0.79.2):\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-debug\n - React-hermes\n - React-jsi (= 0.79.2)\n - ReactAppDependencyProvider (0.79.2):\n - ReactCodegen\n - ReactCodegen (0.79.2):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-FabricImage\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-jsi\n - React-jsiexecutor\n - React-NativeModulesApple\n - [HIGH_ENTROPY]\n - React-rendererdebug\n - React-utils\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - ReactCommon (0.79.2):\n - ReactCommon/turbomodule (= 0.79.2)\n - ReactCommon/turbomodule (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-callinvoker (= 0.79.2)\n - React-cxxreact (= 0.79.2)\n - React-jsi (= 0.79.2)\n - React-logger (= 0.79.2)\n - React-perflogger (= 0.79.2)\n - ReactCommon/turbomodule/bridging (= 0.79.2)\n - ReactCommon/turbomodule/core (= 0.79.2)\n - ReactCommon/turbomodule/bridging (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-callinvoker (= 0.79.2)\n - React-cxxreact (= 0.79.2)\n - React-jsi (= 0.79.2)\n - React-logger (= 0.79.2)\n - React-perflogger (= 0.79.2)\n - ReactCommon/turbomodule/core (0.79.2):\n - DoubleConversion\n - fast_float (= 6.1.4)\n - fmt (= 11.0.2)\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - React-callinvoker (= 0.79.2)\n - React-cxxreact (= 0.79.2)\n - React-debug (= 0.79.2)\n - React-featureflags (= 0.79.2)\n - React-jsi (= 0.79.2)\n - React-logger (= 0.79.2)\n - React-perflogger (= 0.79.2)\n - React-utils (= 0.79.2)\n - RNCAsyncStorage (2.1.2):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - RNGestureHandler (2.24.0):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - RNReanimated (3.17.5):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - RNReanimated/reanimated (= 3.17.5)\n - RNReanimated/worklets (= 3.17.5)\n - Yoga\n - RNReanimated/reanimated (3.17.5):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - RNReanimated/reanimated/apple (= 3.17.5)\n - Yoga\n - RNReanimated/reanimated/apple (3.17.5):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - RNReanimated/worklets (3.17.5):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - RNReanimated/worklets/apple (= 3.17.5)\n - Yoga\n - RNReanimated/worklets/apple (3.17.5):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - RNScreens (4.10.0):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-RCTImage\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - RNScreens/common (= 4.10.0)\n - Yoga\n - RNScreens/common (4.10.0):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-RCTImage\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - RNSVG (15.12.0):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - RNSVG/common (= 15.12.0)\n - Yoga\n - RNSVG/common (15.12.0):\n - DoubleConversion\n - glog\n - hermes-engine\n - RCT-Folly (= 2024.11.18.00)\n - RCTRequired\n - RCTTypeSafety\n - React-Core\n - React-debug\n - React-Fabric\n - React-featureflags\n - React-graphics\n - React-hermes\n - React-ImageManager\n - React-jsi\n - React-NativeModulesApple\n - React-RCTFabric\n - React-renderercss\n - React-rendererdebug\n - React-utils\n - ReactCodegen\n - ReactCommon/turbomodule/bridging\n - ReactCommon/turbomodule/core\n - Yoga\n - SocketRocket (0.7.1)\n - Yoga (0.0.0)\n\nDEPENDENCIES:\n - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)\n - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)\n - EXConstants (from `../node_modules/expo-constants/ios`)\n - Expo (from `../node_modules/expo`)\n - ExpoAsset (from `../node_modules/expo-asset/ios`)\n - ExpoAudio (from `../node_modules/expo-audio/ios`)\n - ExpoFileSystem (from `../node_modules/expo-file-system/ios`)\n - ExpoFont (from `../node_modules/expo-font/ios`)\n - ExpoHead (from `../node_modules/expo-router/ios`)\n - ExpoKeepAwake (from `../node_modules/expo-keep-awake/ios`)\n - ExpoLinking (from `../node_modules/expo-linking/ios`)\n - ExpoModulesCore (from `../node_modules/expo-modules-core`)\n - ExpoSplashScreen (from `../node_modules/expo-splash-screen/ios`)\n - ExpoSymbols (from `../node_modules/expo-symbols/ios`)\n - ExpoWebBrowser (from `../node_modules/expo-web-browser/ios`)\n - fast_float (from `../node_modules/react-native/third-party-podspecs/fast_float.podspec`)\n - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)\n - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)\n - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)\n - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)\n - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)\n - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)\n - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)\n - RCTRequired (from `../node_modules/react-native/Libraries/Required`)\n - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)\n - React (from `../node_modules/react-native/`)\n - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)\n - React-Core (from `../node_modules/react-native/`)\n - React-Core/RCTWebSocket (from `../node_modules/react-native/`)\n - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)\n - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)\n - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)\n - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`)\n - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`)\n - React-Fabric (from `../node_modules/react-native/ReactCommon`)\n - React-FabricComponents (from `../node_modules/react-native/ReactCommon`)\n - React-FabricImage (from `../node_modules/react-native/ReactCommon`)\n - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)\n - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`)\n - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)\n - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)\n - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`)\n - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)\n - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)\n - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)\n - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)\n - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)\n - React-jsinspectortracing (from `../node_modules/react-native/ReactCommon/jsinspector-modern/tracing`)\n - React-jsitooling (from `../node_modules/react-native/ReactCommon/jsitooling`)\n - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)\n - React-logger (from `../node_modules/react-native/ReactCommon/logger`)\n - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)\n - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)\n - react-native-get-random-values (from `../node_modules/react-native-get-random-values`)\n - [HIGH_ENTROPY] (from `../node_modules/[HIGH_ENTROPY]`)\n - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)\n - react-native-webview (from `../node_modules/react-native-webview`)\n - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)\n - React-oscompat (from `../node_modules/react-native/ReactCommon/oscompat`)\n - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)\n - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/Libraries/ActionSheetIOS`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/Libraries/NativeAnimation`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/Libraries/AppDelegate`)\n - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)\n - React-RCTFabric (from `../node_modules/react-native/React`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/React`)\n - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/Libraries/LinkingIOS`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/Libraries/Network`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/React/Runtime`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/Libraries/Settings`)\n - React-RCTText (from `../node_modules/react-native/Libraries/Text`)\n - [HIGH_ENTROPY] (from `../node_modules/react-native/Libraries/Vibration`)\n - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)\n - React-renderercss (from `../node_modules/react-native/ReactCommon/react/renderer/css`)\n - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)\n - React-rncore (from `../node_modules/react-native/ReactCommon`)\n - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)\n - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)\n - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)\n - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)\n - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/[HIGH_ENTROPY]`)\n - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`)\n - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)\n - ReactAppDependencyProvider (from `build/generated/ios`)\n - ReactCodegen (from `build/generated/ios`)\n - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)\n - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"\n - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)\n - RNReanimated (from `../node_modules/react-native-reanimated`)\n - RNScreens (from `../node_modules/react-native-screens`)\n - RNSVG (from `../node_modules/react-native-svg`)\n - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)\n\nSPEC REPOS:\n trunk:\n - SocketRocket\n\nEXTERNAL SOURCES:\n boost:\n :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"\n DoubleConversion:\n :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"\n EXConstants:\n :path: "../node_modules/expo-constants/ios"\n Expo:\n :path: "../node_modules/expo"\n ExpoAsset:\n :path: "../node_modules/expo-asset/ios"\n ExpoAudio:\n :path: "../node_modules/expo-audio/ios"\n ExpoFileSystem:\n :path: "../node_modules/expo-file-system/ios"\n ExpoFont:\n :path: "../node_modules/expo-font/ios"\n ExpoHead:\n :path: "../node_modules/expo-router/ios"\n ExpoKeepAwake:\n :path: "../node_modules/expo-keep-awake/ios"\n ExpoLinking:\n :path: "../node_modules/expo-linking/ios"\n ExpoModulesCore:\n :path: "../node_modules/expo-modules-core"\n ExpoSplashScreen:\n :path: "../node_modules/expo-splash-screen/ios"\n ExpoSymbols:\n :path: "../node_modules/expo-symbols/ios"\n ExpoWebBrowser:\n :path: "../node_modules/expo-web-browser/ios"\n fast_float:\n :podspec: "../node_modules/react-native/third-party-podspecs/fast_float.podspec"\n FBLazyVector:\n :path: "../node_modules/react-native/Libraries/FBLazyVector"\n fmt:\n :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"\n glog:\n :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"\n hermes-engine:\n :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"\n :tag: hermes-2025-03-03-RNv0.79.[HIGH_ENTROPY]\n RCT-Folly:\n :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"\n RCTDeprecation:\n :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"\n RCTRequired:\n :path: "../node_modules/react-native/Libraries/Required"\n RCTTypeSafety:\n :path: "../node_modules/react-native/Libraries/TypeSafety"\n React:\n :path: "../node_modules/react-native/"\n React-callinvoker:\n :path: "../node_modules/react-native/ReactCommon/callinvoker"\n React-Core:\n :path: "../node_modules/react-native/"\n React-CoreModules:\n :path: "../node_modules/react-native/React/CoreModules"\n React-cxxreact:\n :path: "../node_modules/react-native/ReactCommon/cxxreact"\n React-debug:\n :path: "../node_modules/react-native/ReactCommon/react/debug"\n React-defaultsnativemodule:\n :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults"\n React-domnativemodule:\n :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom"\n React-Fabric:\n :path: "../node_modules/react-native/ReactCommon"\n React-FabricComponents:\n :path: "../node_modules/react-native/ReactCommon"\n React-FabricImage:\n :path: "../node_modules/react-native/ReactCommon"\n React-featureflags:\n :path: "../node_modules/react-native/ReactCommon/react/featureflags"\n React-featureflagsnativemodule:\n :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags"\n React-graphics:\n :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"\n React-hermes:\n :path: "../node_modules/react-native/ReactCommon/hermes"\n React-idlecallbacksnativemodule:\n :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks"\n React-ImageManager:\n :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"\n React-jserrorhandler:\n :path: "../node_modules/react-native/ReactCommon/jserrorhandler"\n React-jsi:\n :path: "../node_modules/react-native/ReactCommon/jsi"\n React-jsiexecutor:\n :path: "../node_modules/react-native/ReactCommon/jsiexecutor"\n React-jsinspector:\n :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"\n React-jsinspectortracing:\n :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/tracing"\n React-jsitooling:\n :path: "../node_modules/react-native/ReactCommon/jsitooling"\n React-jsitracing:\n :path: "../node_modules/react-native/ReactCommon/hermes/executor/"\n React-logger:\n :path: "../node_modules/react-native/ReactCommon/logger"\n React-Mapbuffer:\n :path: "../node_modules/react-native/ReactCommon"\n React-microtasksnativemodule:\n :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"\n react-native-get-random-values:\n :path: "../node_modules/react-native-get-random-values"\n [HIGH_ENTROPY]:\n :path: "../node_modules/[HIGH_ENTROPY]"\n react-native-safe-area-context:\n :path: "../node_modules/react-native-safe-area-context"\n react-native-webview:\n :path: "../node_modules/react-native-webview"\n React-NativeModulesApple:\n :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"\n React-oscompat:\n :path: "../node_modules/react-native/ReactCommon/oscompat"\n React-perflogger:\n :path: "../node_modules/react-native/ReactCommon/reactperflogger"\n React-performancetimeline:\n :path: "../node_modules/react-native/ReactCommon/react/performance/timeline"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/Libraries/ActionSheetIOS"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/Libraries/NativeAnimation"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/Libraries/AppDelegate"\n React-RCTBlob:\n :path: "../node_modules/react-native/Libraries/Blob"\n React-RCTFabric:\n :path: "../node_modules/react-native/React"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/React"\n React-RCTImage:\n :path: "../node_modules/react-native/Libraries/Image"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/Libraries/LinkingIOS"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/Libraries/Network"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/React/Runtime"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/Libraries/Settings"\n React-RCTText:\n :path: "../node_modules/react-native/Libraries/Text"\n [HIGH_ENTROPY]:\n :path: "../node_modules/react-native/Libraries/Vibration"\n React-rendererconsistency:\n :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency"\n React-renderercss:\n :path: "../node_modules/react-native/ReactCommon/react/renderer/css"\n React-rendererdebug:\n :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"\n React-rncore:\n :path: "../node_modules/react-native/ReactCommon"\n React-RuntimeApple:\n :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"\n React-RuntimeCore:\n :path: "../node_modules/react-native/ReactCommon/react/runtime"\n React-runtimeexecutor:\n :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"\n React-RuntimeHermes:\n :path: "../node_modules/react-native/ReactCommon/react/runtime"\n React-runtimescheduler:\n :path: "../node_modules/react-native/ReactCommon/react/renderer/[HIGH_ENTROPY]"\n React-timing:\n :path: "../node_modules/react-native/ReactCommon/react/timing"\n React-utils:\n :path: "../node_modules/react-native/ReactCommon/react/utils"\n ReactAppDependencyProvider:\n :path: build/generated/ios\n ReactCodegen:\n :path: build/generated/ios\n ReactCommon:\n :path: "../node_modules/react-native/ReactCommon"\n RNCAsyncStorage:\n :path: "../node_modules/@react-native-async-storage/async-storage"\n RNGestureHandler:\n :path: "../node_modules/react-native-gesture-handler"\n RNReanimated:\n :path: "../node_modules/react-native-reanimated"\n RNScreens:\n :path: "../node_modules/react-native-screens"\n RNSVG:\n :path: "../node_modules/react-native-svg"\n Yoga:\n :path: "../node_modules/react-native/ReactCommon/yoga"\n\nSPEC CHECKSUMS:\n boost: [HIGH_ENTROPY]\n DoubleConversion: [HIGH_ENTROPY]\n EXConstants: [HIGH_ENTROPY]\n Expo: [HIGH_ENTROPY]\n ExpoAsset: [HIGH_ENTROPY]\n ExpoAudio: [HIGH_ENTROPY]\n ExpoFileSystem: [HIGH_ENTROPY]\n ExpoFont: [HIGH_ENTROPY]\n ExpoHead: [HIGH_ENTROPY]\n ExpoKeepAwake: [HIGH_ENTROPY]\n ExpoLinking: [HIGH_ENTROPY]\n ExpoModulesCore: [HIGH_ENTROPY]\n ExpoSplashScreen: [HIGH_ENTROPY]\n ExpoSymbols: [HIGH_ENTROPY]\n ExpoWebBrowser: [HIGH_ENTROPY]\n fast_float: [HIGH_ENTROPY]\n FBLazyVector: [HIGH_ENTROPY]\n fmt: [HIGH_ENTROPY]\n glog: [HIGH_ENTROPY]\n hermes-engine: [HIGH_ENTROPY]\n RCT-Folly: [HIGH_ENTROPY]\n RCTDeprecation: [HIGH_ENTROPY]\n RCTRequired: [HIGH_ENTROPY]\n RCTTypeSafety: [HIGH_ENTROPY]\n React: [HIGH_ENTROPY]\n React-callinvoker: [HIGH_ENTROPY]\n React-Core: [HIGH_ENTROPY]\n React-CoreModules: [HIGH_ENTROPY]\n React-cxxreact: [HIGH_ENTROPY]\n React-debug: [HIGH_ENTROPY]\n React-defaultsnativemodule: [HIGH_ENTROPY]\n React-domnativemodule: [HIGH_ENTROPY]\n React-Fabric: [HIGH_ENTROPY]\n React-FabricComponents: [HIGH_ENTROPY]\n React-FabricImage: [HIGH_ENTROPY]\n React-featureflags: [HIGH_ENTROPY]\n React-featureflagsnativemodule: [HIGH_ENTROPY]\n React-graphics: [HIGH_ENTROPY]\n React-hermes: [HIGH_ENTROPY]\n React-idlecallbacksnativemodule: [HIGH_ENTROPY]\n React-ImageManager: [HIGH_ENTROPY]\n React-jserrorhandler: [HIGH_ENTROPY]\n React-jsi: [HIGH_ENTROPY]\n React-jsiexecutor: [HIGH_ENTROPY]\n React-jsinspector: [HIGH_ENTROPY]\n React-jsinspectortracing: [HIGH_ENTROPY]\n React-jsitooling: [HIGH_ENTROPY]\n React-jsitracing: [HIGH_ENTROPY]\n React-logger: [HIGH_ENTROPY]\n React-Mapbuffer: [HIGH_ENTROPY]\n React-microtasksnativemodule: [HIGH_ENTROPY]\n react-native-get-random-values: [HIGH_ENTROPY]\n [HIGH_ENTROPY]: [HIGH_ENTROPY]\n react-native-safe-area-context: [HIGH_ENTROPY]\n
628
tab
null