tangled
alpha
login
or
join now
teal.fm
/
teal
110
fork
atom
Your music, beautifully tracked. All yours. (coming soon)
teal.fm
teal-fm
atproto
110
fork
atom
overview
issues
pulls
pipelines
update deps and also expo
Natalie Bridgers
5 months ago
f38d532b
b77dad46
+4174
-3164
7 changed files
expand all
collapse all
unified
split
apps
amethyst
app
_layout.tsx
auth
login.tsx
options.tsx
signup.tsx
app.config.js
package.json
pnpm-lock.yaml
+6
apps/amethyst/app.config.js
···
36
36
favicon: "./assets/images/favicon.png",
37
37
},
38
38
plugins: [
39
39
+
[
40
40
+
"expo-dev-client",
41
41
+
{
42
42
+
launchMode: "most-recent",
43
43
+
},
44
44
+
],
39
45
"expo-font",
40
46
[
41
47
"expo-sqlite",
+2
-1
apps/amethyst/app/_layout.tsx
···
20
20
21
21
import "../global.css";
22
22
23
23
-
import { SafeAreaView, View } from "react-native";
23
23
+
import { View } from "react-native";
24
24
+
import { SafeAreaView } from "react-native-safe-area-context";
24
25
import { BottomSheetModalProvider } from "@gorhom/bottom-sheet";
25
26
26
27
let defaultFamily = (weight: string) => {
+40
-23
apps/amethyst/app/auth/login.tsx
···
2
2
import { Platform, TextInput, View } from "react-native";
3
3
import Animated, {
4
4
interpolate,
5
5
+
useAnimatedKeyboard,
5
6
useAnimatedStyle,
6
7
useSharedValue,
7
8
withTiming,
···
16
17
import { Icon } from "@/lib/icons/iconWithClassName";
17
18
import { capFirstLetter, cn } from "@/lib/utils";
18
19
import { useStore } from "@/stores/mainStore";
19
19
-
import { FontAwesome6, MaterialCommunityIcons } from "@expo/vector-icons";
20
20
+
import { FontAwesome6 } from "@expo/vector-icons";
20
21
import { AlertCircle, AtSign, Check, ChevronRight } from "lucide-react-native";
21
22
22
23
type Url = URL;
···
41
42
string | undefined
42
43
>();
43
44
45
45
+
const kb = useAnimatedKeyboard();
46
46
+
44
47
const handleInputRef = useRef<TextInput>(null);
45
48
46
49
const { getLoginUrl, oauthCallback } = useStore((state) => state);
···
70
73
paddingTop: 8,
71
74
overflow: "hidden",
72
75
zIndex: -1,
76
76
+
};
77
77
+
});
78
78
+
79
79
+
const containerAnimatedStyle = useAnimatedStyle(() => {
80
80
+
const isKeyboardOpen = kb.height.value > 0;
81
81
+
return {
82
82
+
bottom: withTiming(isKeyboardOpen ? kb.height.value / 3 : 0, {
83
83
+
duration: 250,
84
84
+
}),
73
85
};
74
86
});
75
87
···
216
228
headerShown: false,
217
229
}}
218
230
/>
219
219
-
<View className="align-center w-screen max-w-lg justify-center gap-4 p-8 pb-32">
231
231
+
<Animated.View
232
232
+
className="align-center w-screen max-w-lg justify-center gap-4 p-8 pb-32"
233
233
+
style={containerAnimatedStyle}
234
234
+
>
220
235
<View className="flex items-center">
221
236
<Icon icon={AtSign} className="color-bsky" name="at" size={64} />
222
237
</View>
···
228
243
<Input
229
244
ref={handleInputRef}
230
245
className={cn(
231
231
-
"ring-0",
246
246
+
"ring-0, rounded-xl",
232
247
(err || pdsResolutionError) && `border-red-500`,
233
248
)}
234
249
placeholder="alice.bsky.social or did:plc:..."
···
258
273
)}
259
274
>
260
275
{pdsUrl !== null ? (
261
261
-
<Text>
262
262
-
PDS:{" "}
276
276
+
<View className="flex flex-row items-center gap-1">
277
277
+
<Text>PDS:</Text>
263
278
{pdsUrl.hostname.includes("bsky.network") && (
264
264
-
<View className="flex-row gap-0.5 pr-0.5">
279
279
+
<View className="flex flex-row justify-center gap-0.5 pr-0.5">
265
280
<Icon
266
281
icon={FontAwesome6}
267
282
className="color-bsky"
268
283
name="bluesky"
269
284
size={16}
270
285
/>
271
271
-
<Icon
272
272
-
icon={MaterialCommunityIcons}
273
273
-
className="color-red-400"
274
274
-
name="mushroom"
275
275
-
size={18}
276
276
-
/>
277
286
</View>
278
287
)}
279
279
-
{pdsUrl.hostname.includes("bsky.network")
280
280
-
? capFirstLetter(pdsUrl.hostname.split(".").shift() || "")
281
281
-
: pdsUrl.hostname}
282
282
-
</Text>
288
288
+
<Text>
289
289
+
{pdsUrl.hostname.includes("bsky.network")
290
290
+
? "Bluesky (" +
291
291
+
capFirstLetter(
292
292
+
pdsUrl.hostname.split(".").shift() || "",
293
293
+
) +
294
294
+
")"
295
295
+
: pdsUrl.hostname}
296
296
+
</Text>
297
297
+
</View>
283
298
) : pdsResolutionError ? (
284
284
-
<Text className="justify-baseline px-1">
299
299
+
<View className="flex flex-row">
285
300
<Icon
286
301
icon={AlertCircle}
287
287
-
className="-mt-0.5 mr-1 inline text-xs"
288
288
-
size={24}
302
302
+
className="mr-1 inline text-foreground"
303
303
+
size={18}
289
304
/>
290
290
-
{pdsResolutionError}
291
291
-
</Text>
305
305
+
<Text className="justify-baseline flex">
306
306
+
{pdsResolutionError}
307
307
+
</Text>
308
308
+
</View>
292
309
) : (
293
310
<Text className="px-1 text-muted-foreground">
294
311
Resolving PDS...
···
307
324
</Link>
308
325
<Button
309
326
className={cn(
310
310
-
"flex flex-row justify-end duration-500",
327
327
+
"duration-500, flex flex-row justify-end rounded-xl",
311
328
isRedirecting ? "bg-green-500" : "bg-bsky",
312
329
)}
313
330
onPress={handleLogin}
···
328
345
)}
329
346
</Button>
330
347
</View>
331
331
-
</View>
348
348
+
</Animated.View>
332
349
</SafeAreaView>
333
350
);
334
351
};
+2
-2
apps/amethyst/app/auth/options.tsx
···
24
24
<Text className="font-serif-old-italic text-5xl">.fm</Text>
25
25
</Text>
26
26
</View>
27
27
-
<Link href="/auth/login" className="text-secondary">
27
27
+
<Link href="/auth/login" asChild>
28
28
<Button
29
29
className="dark-blue-800 flex flex-row items-center justify-center gap-2 rounded-full dark:bg-blue-400"
30
30
size="lg"
···
32
32
<Text>Sign in with ATProto</Text>
33
33
</Button>
34
34
</Link>
35
35
-
<Link href="/auth/signup" className="text-secondary">
35
35
+
<Link href="/auth/signup" asChild>
36
36
<Button
37
37
className="flex flex-row items-center justify-center rounded-full"
38
38
size="lg"
+3
-8
apps/amethyst/app/auth/signup.tsx
···
17
17
headerShown: false,
18
18
}}
19
19
/>
20
20
-
<View className="w-screen max-w-md flex-1 justify-center gap-4 p-8 pb-32">
20
20
+
<View className="w-screen max-w-md flex-1 items-center justify-center gap-4 p-8 pb-32">
21
21
+
<Icon icon={AtSignIcon} className="mb-2 mr-1.5 color-bsky" size={48} />
21
22
<Text className="-mb-2 text-center text-3xl text-foreground">
22
22
-
Sign up via <br /> the{" "}
23
23
-
<Icon
24
24
-
icon={AtSignIcon}
25
25
-
className="mb-2 mr-1.5 inline color-bsky"
26
26
-
size={32}
27
27
-
/>
28
28
-
Atmosphere
23
23
+
Sign up via the Atmosphere
29
24
</Text>
30
25
<Text className="text-center text-xl text-foreground">
31
26
No account? No problem.
+35
-32
apps/amethyst/package.json
···
12
12
"build:web": "expo export --output-dir ./build --platform web --clear",
13
13
"build:ios": "expo export --output-dir ./build --platform ios --clear",
14
14
"test": "jest --watchAll",
15
15
-
"lexgen": "lex gen-server ./lexicons/generated/server/ ./lexicons/src/"
15
15
+
"lexgen": "lex gen-server ./lexicons/generated/server/ ./lexicons/src/",
16
16
+
"install": "expo prebuild"
16
17
},
17
18
"jest": {
18
19
"preset": "jest-expo"
···
23
24
"@atproto/lex-cli": "^0.8.1",
24
25
"@atproto/oauth-client": "^0.3.16",
25
26
"@babel/plugin-transform-export-namespace-from": "^7.27.1",
26
26
-
"@expo/vector-icons": "^14.1.0",
27
27
+
"@expo/vector-icons": "^15.0.2",
27
28
"@gorhom/bottom-sheet": "^5.1.3",
28
28
-
"@react-native-async-storage/async-storage": "2.1.2",
29
29
-
"@react-native-picker/picker": "^2.11.0",
30
30
-
"@react-navigation/native": "^7.1.8",
29
29
+
"@react-native-async-storage/async-storage": "2.2.0",
30
30
+
"@react-native-picker/picker": "^2.11.1",
31
31
+
"@react-navigation/native": "^7.1.10",
31
32
"@rn-primitives/avatar": "^1.1.0",
32
33
"@rn-primitives/hover-card": "^1.1.0",
33
34
"@rn-primitives/portal": "^1.2.0",
···
39
40
"class-variance-authority": "^0.7.1",
40
41
"clsx": "^2.1.1",
41
42
"eslint-plugin-react-compiler": "19.0.0-beta-37ed2a7-20241206",
42
42
-
"expo": "~53.0.20",
43
43
-
"expo-constants": "^17.1.6",
44
44
-
"expo-font": "~13.3.1",
45
45
-
"expo-image-picker": "^16.1.4",
46
46
-
"expo-linking": "~7.1.4",
47
47
-
"expo-router": "~5.0.6",
48
48
-
"expo-splash-screen": "~0.30.8",
49
49
-
"expo-sqlite": "^15.2.9",
50
50
-
"expo-status-bar": "~2.2.3",
51
51
-
"expo-system-ui": "~5.0.7",
52
52
-
"expo-web-browser": "~14.1.6",
53
53
-
"jest": "^30.2.0",
43
43
+
"expo": "~54.0.12",
44
44
+
"expo-constants": "^18.0.9",
45
45
+
"expo-dev-client": "^6.0.13",
46
46
+
"expo-font": "~14.0.8",
47
47
+
"expo-image-picker": "^17.0.8",
48
48
+
"expo-linking": "~8.0.8",
49
49
+
"expo-router": "~6.0.10",
50
50
+
"expo-splash-screen": "~31.0.10",
51
51
+
"expo-sqlite": "^16.0.8",
52
52
+
"expo-status-bar": "~3.0.8",
53
53
+
"expo-system-ui": "~6.0.7",
54
54
+
"expo-web-browser": "~15.0.8",
55
55
+
"jest": "^29.7.0",
54
56
"lucide-react-native": "^0.507.0",
55
57
"nativewind": "^4.1.23",
56
56
-
"react": "19.0.0",
58
58
+
"react": "19.1.0",
57
59
"react-compiler-runtime": "19.0.0-beta-37ed2a7-20241206",
58
58
-
"react-dom": "19.0.0",
59
59
-
"react-native": "0.79.6",
60
60
+
"react-dom": "19.1.0",
61
61
+
"react-native": "0.81.4",
60
62
"react-native-css-interop": "^0.1.18",
61
61
-
"react-native-gesture-handler": "~2.24.0",
63
63
+
"react-native-gesture-handler": "~2.28.0",
62
64
"react-native-quick-crypto": "^0.7.17",
63
63
-
"react-native-reanimated": "~3.17.5",
64
64
-
"react-native-safe-area-context": "5.4.0",
65
65
-
"react-native-screens": "~4.10.0",
66
66
-
"react-native-svg": "15.11.2",
67
67
-
"react-native-web": "~0.20.0",
65
65
+
"react-native-reanimated": "~4.1.2",
66
66
+
"react-native-safe-area-context": "5.6.1",
67
67
+
"react-native-screens": "~4.16.0",
68
68
+
"react-native-svg": "15.12.1",
69
69
+
"react-native-web": "~0.21.1",
68
70
"tailwind-merge": "^2.5.5",
69
71
"zustand": "^5.0.4"
70
72
},
71
73
"devDependencies": {
72
74
"@babel/core": "^7.26.0",
73
75
"@babel/runtime": "^7.26.0",
74
74
-
"@expo/metro-runtime": "~5.0.4",
75
75
-
"@expo/prebuild-config": "^9.0.5",
76
76
+
"@expo/metro-runtime": "~6.1.2",
77
77
+
"@expo/prebuild-config": "^54.0.4",
76
78
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
77
79
"@react-native/typescript-config": "^0.76.5",
78
80
"@types/node": "^22.10.1",
79
79
-
"@types/react": "19.0.14",
80
80
-
"@types/react-dom": "18.3.1",
81
81
+
"@types/react": "19.1.17",
82
82
+
"@types/react-dom": "19.1.11",
81
83
"babel-plugin-module-resolver": "^5.0.2",
82
84
"babel-plugin-react-compiler": "19.0.0-beta-37ed2a7-20241206",
83
85
"eslint": "^8",
84
84
-
"eslint-config-expo": "~9.2.0",
86
86
+
"eslint-config-expo": "~7.1.2",
87
87
+
"eslint-plugin-expo": "^1.0.0",
85
88
"react-refresh": "^0.16.0",
86
89
"tailwindcss": "^3.4.17",
87
90
"tailwindcss-animate": "^1.0.7",
88
91
"ts-node": "^10.9.2",
89
89
-
"typescript": "^5.8.3"
92
92
+
"typescript": "^5.9.3"
90
93
},
91
94
"private": true
92
95
}
+4086
-3098
pnpm-lock.yaml
···
10
10
dependencies:
11
11
'@atproto/oauth-client':
12
12
specifier: ^0.3.8
13
13
-
version: 0.3.16
13
13
+
version: 0.3.22
14
14
'@ianvs/prettier-plugin-sort-imports':
15
15
specifier: ^4.4.1
16
16
-
version: 4.5.1(prettier@3.5.3)
16
16
+
version: 4.7.0(prettier@3.6.2)
17
17
prettier:
18
18
specifier: ^3.5.3
19
19
-
version: 3.5.3
19
19
+
version: 3.6.2
20
20
prettier-plugin-tailwindcss:
21
21
specifier: ^0.6.11
22
22
-
version: 0.6.12(@ianvs/prettier-plugin-sort-imports@4.5.1(prettier@3.5.3))(prettier@3.5.3)
22
22
+
version: 0.6.14(@ianvs/prettier-plugin-sort-imports@4.7.0(prettier@3.6.2))(prettier@3.6.2)
23
23
devDependencies:
24
24
'@types/node':
25
25
specifier: ^20.17.10
26
26
-
version: 20.17.10
26
26
+
version: 20.19.19
27
27
biome:
28
28
specifier: ^0.3.3
29
29
version: 0.3.3
···
32
32
version: 6.0.1
33
33
turbo:
34
34
specifier: ^2.3.3
35
35
-
version: 2.3.3
35
35
+
version: 2.5.8
36
36
37
37
apps/amethyst:
38
38
dependencies:
39
39
'@aquareum/atproto-oauth-client-react-native':
40
40
specifier: ^0.0.1
41
41
-
version: 0.0.1(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
41
41
+
version: 0.0.1(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
42
42
'@atproto/api':
43
43
specifier: ^0.15.14
44
44
version: 0.15.27
45
45
'@atproto/lex-cli':
46
46
specifier: ^0.8.1
47
47
-
version: 0.8.2
47
47
+
version: 0.8.3
48
48
'@atproto/oauth-client':
49
49
specifier: ^0.3.16
50
50
-
version: 0.3.16
50
50
+
version: 0.3.22
51
51
'@babel/plugin-transform-export-namespace-from':
52
52
specifier: ^7.27.1
53
53
-
version: 7.27.1(@babel/core@7.26.0)
53
53
+
version: 7.27.1(@babel/core@7.28.4)
54
54
'@expo/vector-icons':
55
55
-
specifier: ^14.1.0
56
56
-
version: 14.1.0(expo-font@13.3.1(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
55
55
+
specifier: ^15.0.2
56
56
+
version: 15.0.2(expo-font@14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
57
57
'@gorhom/bottom-sheet':
58
58
specifier: ^5.1.3
59
59
-
version: 5.1.6(@types/react@19.0.14)(react-native-gesture-handler@2.24.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
59
59
+
version: 5.2.6(@types/react@19.1.17)(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
60
60
'@react-native-async-storage/async-storage':
61
61
-
specifier: 2.1.2
62
62
-
version: 2.1.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))
61
61
+
specifier: 2.2.0
62
62
+
version: 2.2.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))
63
63
'@react-native-picker/picker':
64
64
-
specifier: ^2.11.0
65
65
-
version: 2.11.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
64
64
+
specifier: ^2.11.1
65
65
+
version: 2.11.2(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
66
66
'@react-navigation/native':
67
67
-
specifier: ^7.1.8
68
68
-
version: 7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
67
67
+
specifier: ^7.1.10
68
68
+
version: 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
69
69
'@rn-primitives/avatar':
70
70
specifier: ^1.1.0
71
71
-
version: 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
71
71
+
version: 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
72
72
'@rn-primitives/hover-card':
73
73
specifier: ^1.1.0
74
74
-
version: 1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
74
74
+
version: 1.2.0(@rn-primitives/portal@1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)))(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
75
75
'@rn-primitives/portal':
76
76
specifier: ^1.2.0
77
77
-
version: 1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0))
77
77
+
version: 1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0))
78
78
'@rn-primitives/progress':
79
79
specifier: ^1.1.0
80
80
-
version: 1.1.0(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
80
80
+
version: 1.2.0(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
81
81
'@rn-primitives/slot':
82
82
specifier: ^1.1.0
83
83
-
version: 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
83
83
+
version: 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
84
84
'@rn-primitives/tooltip':
85
85
specifier: ^1.1.0
86
86
-
version: 1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
86
86
+
version: 1.2.0(@rn-primitives/portal@1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)))(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
87
87
'@rn-primitives/types':
88
88
specifier: ^1.1.0
89
89
-
version: 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
89
89
+
version: 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
90
90
'@teal/lexicons':
91
91
specifier: workspace:*
92
92
version: link:../../packages/lexicons
···
100
100
specifier: 19.0.0-beta-37ed2a7-20241206
101
101
version: 19.0.0-beta-37ed2a7-20241206(eslint@8.57.1)
102
102
expo:
103
103
-
specifier: ~53.0.20
104
104
-
version: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
103
103
+
specifier: ~54.0.12
104
104
+
version: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
105
105
expo-constants:
106
106
-
specifier: ^17.1.6
107
107
-
version: 17.1.6(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))
106
106
+
specifier: ^18.0.9
107
107
+
version: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))
108
108
+
expo-dev-client:
109
109
+
specifier: ^6.0.13
110
110
+
version: 6.0.13(expo@54.0.12)
108
111
expo-font:
109
109
-
specifier: ~13.3.1
110
110
-
version: 13.3.1(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0)
112
112
+
specifier: ~14.0.8
113
113
+
version: 14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
111
114
expo-image-picker:
112
112
-
specifier: ^16.1.4
113
113
-
version: 16.1.4(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))
115
115
+
specifier: ^17.0.8
116
116
+
version: 17.0.8(expo@54.0.12)
114
117
expo-linking:
115
115
-
specifier: ~7.1.4
116
116
-
version: 7.1.4(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
118
118
+
specifier: ~8.0.8
119
119
+
version: 8.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
117
120
expo-router:
118
118
-
specifier: ~5.0.6
119
119
-
version: 5.0.6(6uar7qyy7j5atz75qvftmg5rai)
121
121
+
specifier: ~6.0.10
122
122
+
version: 6.0.10(fj6mwckpazazwnabl3it56dere)
120
123
expo-splash-screen:
121
121
-
specifier: ~0.30.8
122
122
-
version: 0.30.8(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))
124
124
+
specifier: ~31.0.10
125
125
+
version: 31.0.10(expo@54.0.12)
123
126
expo-sqlite:
124
124
-
specifier: ^15.2.9
125
125
-
version: 15.2.9(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
127
127
+
specifier: ^16.0.8
128
128
+
version: 16.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
126
129
expo-status-bar:
127
127
-
specifier: ~2.2.3
128
128
-
version: 2.2.3(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
130
130
+
specifier: ~3.0.8
131
131
+
version: 3.0.8(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
129
132
expo-system-ui:
130
130
-
specifier: ~5.0.7
131
131
-
version: 5.0.7(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))
133
133
+
specifier: ~6.0.7
134
134
+
version: 6.0.7(expo@54.0.12)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))
132
135
expo-web-browser:
133
133
-
specifier: ~14.1.6
134
134
-
version: 14.1.6(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))
136
136
+
specifier: ~15.0.8
137
137
+
version: 15.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))
135
138
jest:
136
136
-
specifier: ^30.2.0
137
137
-
version: 30.2.0(@types/node@22.10.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))
139
139
+
specifier: ^29.7.0
140
140
+
version: 29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))
138
141
lucide-react-native:
139
142
specifier: ^0.507.0
140
140
-
version: 0.507.0(react-native-svg@15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
143
143
+
version: 0.507.0(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
141
144
nativewind:
142
145
specifier: ^4.1.23
143
143
-
version: 4.1.23(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)))
146
146
+
version: 4.2.1(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.18)
144
147
react:
145
145
-
specifier: 19.0.0
146
146
-
version: 19.0.0
148
148
+
specifier: 19.1.0
149
149
+
version: 19.1.0
147
150
react-compiler-runtime:
148
151
specifier: 19.0.0-beta-37ed2a7-20241206
149
149
-
version: 19.0.0-beta-37ed2a7-20241206(react@19.0.0)
152
152
+
version: 19.0.0-beta-37ed2a7-20241206(react@19.1.0)
150
153
react-dom:
151
151
-
specifier: 19.0.0
152
152
-
version: 19.0.0(react@19.0.0)
154
154
+
specifier: 19.1.0
155
155
+
version: 19.1.0(react@19.1.0)
153
156
react-native:
154
154
-
specifier: 0.79.6
155
155
-
version: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
157
157
+
specifier: 0.81.4
158
158
+
version: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
156
159
react-native-css-interop:
157
160
specifier: ^0.1.18
158
158
-
version: 0.1.18(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)))
161
161
+
version: 0.1.22(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.18)
159
162
react-native-gesture-handler:
160
160
-
specifier: ~2.24.0
161
161
-
version: 2.24.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
163
163
+
specifier: ~2.28.0
164
164
+
version: 2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
162
165
react-native-quick-crypto:
163
166
specifier: ^0.7.17
164
164
-
version: 0.7.17(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
167
167
+
version: 0.7.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
165
168
react-native-reanimated:
166
166
-
specifier: ~3.17.5
167
167
-
version: 3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
169
169
+
specifier: ~4.1.2
170
170
+
version: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
168
171
react-native-safe-area-context:
169
169
-
specifier: 5.4.0
170
170
-
version: 5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
172
172
+
specifier: 5.6.1
173
173
+
version: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
171
174
react-native-screens:
172
172
-
specifier: ~4.10.0
173
173
-
version: 4.10.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
175
175
+
specifier: ~4.16.0
176
176
+
version: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
174
177
react-native-svg:
175
175
-
specifier: 15.11.2
176
176
-
version: 15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
178
178
+
specifier: 15.12.1
179
179
+
version: 15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
177
180
react-native-web:
178
178
-
specifier: ~0.20.0
179
179
-
version: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
181
181
+
specifier: ~0.21.1
182
182
+
version: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
180
183
tailwind-merge:
181
184
specifier: ^2.5.5
182
185
version: 2.6.0
183
186
zustand:
184
187
specifier: ^5.0.4
185
185
-
version: 5.0.5(@types/react@19.0.14)(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0))
188
188
+
version: 5.0.8(@types/react@19.1.17)(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0))
186
189
devDependencies:
187
190
'@babel/core':
188
191
specifier: ^7.26.0
189
189
-
version: 7.26.0
192
192
+
version: 7.28.4
190
193
'@babel/runtime':
191
194
specifier: ^7.26.0
192
192
-
version: 7.26.0
195
195
+
version: 7.28.4
193
196
'@expo/metro-runtime':
194
194
-
specifier: ~5.0.4
195
195
-
version: 5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))
197
197
+
specifier: ~6.1.2
198
198
+
version: 6.1.2(expo@54.0.12)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
196
199
'@expo/prebuild-config':
197
197
-
specifier: ^9.0.5
198
198
-
version: 9.0.11
200
200
+
specifier: ^54.0.4
201
201
+
version: 54.0.4(expo@54.0.12)
199
202
'@pmmmwh/react-refresh-webpack-plugin':
200
203
specifier: ^0.5.15
201
201
-
version: 0.5.15(react-refresh@0.16.0)(type-fest@0.21.3)(webpack@5.97.1)
204
204
+
version: 0.5.17(react-refresh@0.16.0)(type-fest@0.21.3)(webpack@5.97.1)
202
205
'@react-native/typescript-config':
203
206
specifier: ^0.76.5
204
204
-
version: 0.76.5
207
207
+
version: 0.76.9
205
208
'@types/node':
206
209
specifier: ^22.10.1
207
207
-
version: 22.10.2
210
210
+
version: 22.18.8
208
211
'@types/react':
209
209
-
specifier: 19.0.14
210
210
-
version: 19.0.14
212
212
+
specifier: 19.1.17
213
213
+
version: 19.1.17
211
214
'@types/react-dom':
212
212
-
specifier: 18.3.1
213
213
-
version: 18.3.1
215
215
+
specifier: 19.1.11
216
216
+
version: 19.1.11(@types/react@19.1.17)
214
217
babel-plugin-module-resolver:
215
218
specifier: ^5.0.2
216
219
version: 5.0.2
···
221
224
specifier: ^8
222
225
version: 8.57.1
223
226
eslint-config-expo:
224
224
-
specifier: ~9.2.0
225
225
-
version: 9.2.0(eslint@8.57.1)(typescript@5.8.3)
227
227
+
specifier: ~7.1.2
228
228
+
version: 7.1.2(eslint@8.57.1)(typescript@5.9.3)
229
229
+
eslint-plugin-expo:
230
230
+
specifier: ^1.0.0
231
231
+
version: 1.0.0(eslint@8.57.1)(typescript@5.9.3)
226
232
react-refresh:
227
233
specifier: ^0.16.0
228
234
version: 0.16.0
229
235
tailwindcss:
230
236
specifier: ^3.4.17
231
231
-
version: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))
237
237
+
version: 3.4.18
232
238
tailwindcss-animate:
233
239
specifier: ^1.0.7
234
234
-
version: 1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)))
240
240
+
version: 1.0.7(tailwindcss@3.4.18)
235
241
ts-node:
236
242
specifier: ^10.9.2
237
237
-
version: 10.9.2(@types/node@22.10.2)(typescript@5.8.3)
243
243
+
version: 10.9.2(@types/node@22.18.8)(typescript@5.9.3)
238
244
typescript:
239
239
-
specifier: ^5.8.3
240
240
-
version: 5.8.3
245
245
+
specifier: ^5.9.3
246
246
+
version: 5.9.3
241
247
242
248
apps/aqua:
243
249
dependencies:
244
250
jest-expo:
245
251
specifier: ^54.0.12
246
246
-
version: 54.0.12(@babel/core@7.28.4)(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(jest@30.2.0(@types/node@20.17.10))(react-dom@19.0.0(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(webpack@5.97.1)
252
252
+
version: 54.0.12(@babel/core@7.28.4)(expo@54.0.12)(jest@30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)))(react-dom@19.2.0(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)(webpack@5.97.1)
247
253
248
254
packages/lexicons:
249
255
dependencies:
250
256
'@atproto/lex-cli':
251
257
specifier: ^0.5.4
252
252
-
version: 0.5.4
258
258
+
version: 0.5.7
253
259
'@atproto/lexicon':
254
260
specifier: ^0.4.2
255
255
-
version: 0.4.3
261
261
+
version: 0.4.14
256
262
'@atproto/xrpc-server':
257
263
specifier: ^0.7.4
258
258
-
version: 0.7.4
264
264
+
version: 0.7.19
259
265
'@teal/tsconfig':
260
266
specifier: workspace:*
261
267
version: link:../tsconfig
···
270
276
dependencies:
271
277
'@atproto/lex-cli':
272
278
specifier: ^0.5.4
273
273
-
version: 0.5.4
279
279
+
version: 0.5.7
274
280
chokidar:
275
281
specifier: ^4.0.1
276
276
-
version: 4.0.1
282
282
+
version: 4.0.3
277
283
commander:
278
284
specifier: ^12.1.0
279
285
version: 12.1.0
···
282
288
version: 9.6.0
283
289
glob:
284
290
specifier: ^11.0.0
285
285
-
version: 11.0.0
291
291
+
version: 11.0.3
286
292
picocolors:
287
293
specifier: ^1.1.1
288
294
version: 1.1.1
289
295
devDependencies:
290
296
'@types/node':
291
297
specifier: ^20.17.10
292
292
-
version: 20.17.10
298
298
+
version: 20.19.19
293
299
typescript:
294
300
specifier: ^5.7.2
295
295
-
version: 5.8.3
301
301
+
version: 5.9.3
296
302
297
303
packages:
298
304
···
308
314
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
309
315
engines: {node: '>=10'}
310
316
311
311
-
'@ampproject/remapping@2.3.0':
312
312
-
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
313
313
-
engines: {node: '>=6.0.0'}
314
314
-
315
317
'@aquareum/atproto-oauth-client-react-native@0.0.1':
316
318
resolution: {integrity: sha512-IoIcUuX2rKs/AS2u+72m9UWc0mldPTR4GgBHn4LIWtHLWjGTGdECwkw6iwshCM39KA15UhKGbByNQRG415hyfQ==}
317
319
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
318
320
319
319
-
'@atproto-labs/did-resolver@0.1.12':
320
320
-
resolution: {integrity: sha512-criWN7o21C5TFsauB+bGTlkqqerOU6gT2TbxdQVgZUWqNcfazUmUjT4gJAY02i+O4d3QmZa27fv9CcaRKWkSug==}
321
321
+
'@atproto-labs/did-resolver@0.1.13':
322
322
+
resolution: {integrity: sha512-DG3YNaCKc6PAIv1Gsz3E1Kufw2t14OBxe4LdKK7KKLCNoex51hm+A5yMevShe3BSll+QosqWYIEgkPSc5xBoGQ==}
321
323
322
324
'@atproto-labs/did-resolver@0.1.5':
323
325
resolution: {integrity: sha512-uoCb+P0N4du5NiZt6ohVEbSDdijXBJlQwSlWLHX0rUDtEVV+g3aEGe7jUW94lWpqQmRlQ5xcyd9owleMibNxZw==}
···
328
330
'@atproto-labs/fetch@0.1.1':
329
331
resolution: {integrity: sha512-X1zO1MDoJzEurbWXMAe1H8EZ995Xam/aXdxhGVrXmOMyPDuvBa1oxwh/kQNZRCKcMQUbiwkk+Jfq6ZkTuvGbww==}
330
332
331
331
-
'@atproto-labs/fetch@0.2.2':
332
332
-
resolution: {integrity: sha512-QyafkedbFeVaN20DYUpnY2hcArYxjdThPXbYMqOSoZhcvkrUqaw4xDND4wZB5TBD9cq2yqe9V6mcw9P4XQKQuQ==}
333
333
+
'@atproto-labs/fetch@0.2.3':
334
334
+
resolution: {integrity: sha512-NZtbJOCbxKUFRFKMpamT38PUQMY0hX0p7TG5AEYOPhZKZEP7dHZ1K2s1aB8MdVH0qxmqX7nQleNrrvLf09Zfdw==}
333
335
334
336
'@atproto-labs/handle-resolver-node@0.1.7':
335
337
resolution: {integrity: sha512-3pXUB8/twMPXUz+zMjSVTA5acxnizC7PF+EsjLKwirwVzLRrTcFQkyHXGTrdUfIQq+S1eLq7b6H7ZKqMOX9VQQ==}
···
340
342
'@atproto-labs/handle-resolver@0.1.8':
341
343
resolution: {integrity: sha512-Y0ckccoCGDo/3g4thPkgp9QcORmc+qqEaCBCYCZYtfLIQp4775u22wd+4fyEyJP4DqoReKacninkICgRGfs3dQ==}
342
344
343
343
-
'@atproto-labs/identity-resolver@0.1.16':
344
344
-
resolution: {integrity: sha512-pFrtKT49cYBhCDd2U1t/CcUBiMmQzaNQxh8oSkDUlGs/K3P8rJFTAGAMm8UjokfGEKwF4hX9oo7O8Kn+GkyExw==}
345
345
+
'@atproto-labs/identity-resolver@0.1.18':
346
346
+
resolution: {integrity: sha512-DArYXP1hzZJIBcojun0CWEF+TjAhlGKcVq/RwLiGfY1mKq2yPjCiXyHj+5L0+z9jBSZiAB7L65JgcjI2+MFiRg==}
345
347
346
348
'@atproto-labs/identity-resolver@0.1.6':
347
349
resolution: {integrity: sha512-kq1yhpImGG1IUE8QEKj2IjSfNrkG2VailZRuiFLYdcszDEBDzr9HN3ElV42ebxhofuSFgKOCrYWJIUiLuXo6Uw==}
348
350
349
351
'@atproto-labs/pipe@0.1.0':
350
352
resolution: {integrity: sha512-ghOqHFyJlQVFPESzlVHjKroP0tPzbmG5Jms0dNI9yLDEfL8xp4OFPWLX4f6T8mRq69wWs4nIDM3sSsFbFqLa1w==}
353
353
+
354
354
+
'@atproto-labs/pipe@0.1.1':
355
355
+
resolution: {integrity: sha512-hdNw2oUs2B6BN1lp+32pF7cp8EMKuIN5Qok2Vvv/aOpG/3tNSJ9YkvfI0k6Zd188LeDDYRUpYpxcoFIcGH/FNg==}
351
356
352
357
'@atproto-labs/simple-store-memory@0.1.1':
353
358
resolution: {integrity: sha512-PCRqhnZ8NBNBvLku53O56T0lsVOtclfIrQU/rwLCc4+p45/SBPrRYNBi6YFq5rxZbK6Njos9MCmILV/KLQxrWA==}
···
364
369
'@atproto/api@0.15.27':
365
370
resolution: {integrity: sha512-ok/WGafh1nz4t8pEQGtAF/32x2E2VDWU4af6BajkO5Gky2jp2q6cv6aB2A5yuvNNcc3XkYMYipsqVHVwLPMF9g==}
366
371
367
367
-
'@atproto/common-web@0.3.1':
368
368
-
resolution: {integrity: sha512-N7wiTnus5vAr+lT//0y8m/FaHHLJ9LpGuEwkwDAeV3LCiPif4m/FS8x/QOYrx1PdZQwKso95RAPzCGWQBH5j6Q==}
369
369
-
370
370
-
'@atproto/common-web@0.4.2':
371
371
-
resolution: {integrity: sha512-vrXwGNoFGogodjQvJDxAeP3QbGtawgZute2ed1XdRO0wMixLk3qewtikZm06H259QDJVu6voKC5mubml+WgQUw==}
372
372
+
'@atproto/common-web@0.4.3':
373
373
+
resolution: {integrity: sha512-nRDINmSe4VycJzPo6fP/hEltBcULFxt9Kw7fQk6405FyAWZiTluYHlXOnU7GkQfeUK44OENG1qFTBcmCJ7e8pg==}
372
374
373
373
-
'@atproto/common@0.4.5':
374
374
-
resolution: {integrity: sha512-LFAGqHcxCI5+b31Xgk+VQQtZU258iGPpHJzNeHVcdh6teIKZi4C2l6YV+m+3CEz+yYcfP7jjUmgqesx7l9Arsg==}
375
375
+
'@atproto/common@0.4.12':
376
376
+
resolution: {integrity: sha512-NC+TULLQiqs6MvNymhQS5WDms3SlbIKGLf4n33tpftRJcalh507rI+snbcUb7TLIkKw7VO17qMqxEXtIdd5auQ==}
377
377
+
engines: {node: '>=18.7.0'}
375
378
376
376
-
'@atproto/crypto@0.4.2':
377
377
-
resolution: {integrity: sha512-aeOfPQYCDbhn2hV06oBF2KXrWjf/BK4yL8lfANJKSmKl3tKWCkiW/moi643rUXXxSE72KtWtQeqvNFYnnFJ0ig==}
379
379
+
'@atproto/crypto@0.4.4':
380
380
+
resolution: {integrity: sha512-Yq9+crJ7WQl7sxStVpHgie5Z51R05etaK9DLWYG/7bR5T4bhdcIgF6IfklLShtZwLYdVVj+K15s0BqW9a8PSDA==}
381
381
+
engines: {node: '>=18.7.0'}
378
382
379
383
'@atproto/did@0.1.3':
380
384
resolution: {integrity: sha512-ULD8Gw/KRRwLFZ2Z2L4DjmdOMrg8IYYlcjdSc+GQ2/QJSVnD2zaJJVTLd3vls121wGt/583rNaiZTT2DpBze4w==}
···
391
395
'@atproto/jwk@0.1.1':
392
396
resolution: {integrity: sha512-6h/bj1APUk7QcV9t/oA6+9DB5NZx9SZru9x+/pV5oHFI9Xz4ZuM5+dq1PfsJV54pZyqdnZ6W6M717cxoC7q7og==}
393
397
394
394
-
'@atproto/jwk@0.1.5':
395
395
-
resolution: {integrity: sha512-OzZFLhX41TOcMeanP3aZlL5bLeaUIZT15MI4aU5cwflNq/rwpGOpz3uwDjZc8ytgUjuTQ8LabSz5jMmwoTSWFg==}
398
398
+
'@atproto/jwk@0.2.0':
399
399
+
resolution: {integrity: sha512-foOxExbw04XCaoLaGdv9BQj0Ac7snZsk6IpQjOsjYatf+i62Pi9bUkZ0MAoA75HPk8ZmKoDnbA60uBMmiOPPHQ==}
396
400
397
397
-
'@atproto/lex-cli@0.5.4':
398
398
-
resolution: {integrity: sha512-mNEPeQLXl3iCXPO/FSo0BTfP00lx+9xEQpf9LEpDuKA6WCWjIB7WHzU2VLk26NSftzH3sf6zf+A2yZ+WWRbYpw==}
401
401
+
'@atproto/lex-cli@0.5.7':
402
402
+
resolution: {integrity: sha512-V5rsU95Th57KICxUGwTjudN5wmFBHL/fLkl7banl6izsQBiUrVvrj3EScNW/Wx2PnwlJwxtTpa1rTnP30+i5/A==}
403
403
+
engines: {node: '>=18.7.0'}
399
404
hasBin: true
400
405
401
401
-
'@atproto/lex-cli@0.8.2':
402
402
-
resolution: {integrity: sha512-yNQFYBV3tBBLnVrRUtUBlx/WIF4ypMFsvOsCLjA7pHL1SyW9JbczSEAoiNtoDmPc4UXCjMtXggz0ovBG8lynNA==}
406
406
+
'@atproto/lex-cli@0.8.3':
407
407
+
resolution: {integrity: sha512-QXqJl25obi74Cr0vp2RslZsbcsTV8Bq+5+kZnQgzIb2XH9/KJhoS32jKJNbrbKY097K4HOXyDsHi6j3+xCWJcQ==}
403
408
engines: {node: '>=18.7.0'}
404
409
hasBin: true
405
410
406
406
-
'@atproto/lexicon@0.4.11':
407
407
-
resolution: {integrity: sha512-btefdnvNz2Ao2I+qbmj0F06HC8IlrM/IBz6qOBS50r0S6uDf5tOO+Mv2tSVdimFkdzyDdLtBI1sV36ONxz2cOw==}
408
408
-
409
409
-
'@atproto/lexicon@0.4.12':
410
410
-
resolution: {integrity: sha512-fcEvEQ1GpQYF5igZ4IZjPWEoWVpsEF22L9RexxLS3ptfySXLflEyH384e7HITzO/73McDeaJx3lqHIuqn9ulnw==}
411
411
-
412
412
-
'@atproto/lexicon@0.4.3':
413
413
-
resolution: {integrity: sha512-lFVZXe1S1pJP0dcxvJuHP3r/a+EAIBwwU7jUK+r8iLhIja+ml6NmYv8KeFHmIJATh03spEQ9s02duDmFVdCoXg==}
411
411
+
'@atproto/lexicon@0.4.14':
412
412
+
resolution: {integrity: sha512-jiKpmH1QER3Gvc7JVY5brwrfo+etFoe57tKPQX/SmPwjvUsFnJAow5xLIryuBaJgFAhnTZViXKs41t//pahGHQ==}
414
413
415
415
-
'@atproto/lexicon@0.4.4':
416
416
-
resolution: {integrity: sha512-QFEmr3rpj/RoAmfX9ALU/asBG/rsVtQZnw+9nOB1/AuIwoxXd+ZyndR6lVUc2+DL4GEjl6W2yvBru5xbQIZWyA==}
414
414
+
'@atproto/lexicon@0.5.1':
415
415
+
resolution: {integrity: sha512-y8AEtYmfgVl4fqFxqXAeGvhesiGkxiy3CWoJIfsFDDdTlZUC8DFnZrYhcqkIop3OlCkkljvpSJi1hbeC1tbi8A==}
417
416
418
417
'@atproto/oauth-client-browser@0.3.2':
419
418
resolution: {integrity: sha512-Nt9tPxeJTwsX8i6du0dSMonymHHpOVnt67bfA49LpwAS39nNd9zY6yjOrqj0suRwFhoGpvO2e+I35lqe30L+Ig==}
420
420
-
421
421
-
'@atproto/oauth-client@0.3.16':
422
422
-
resolution: {integrity: sha512-AEtGLOXRJzBcBa8LyUXwFf/M7cZc+CcOBjLsiqmVQriSwccfyTkALgiyM0UcRHJqlwtLPuf9RYtgKPc8rW5F/w==}
423
419
424
420
'@atproto/oauth-client@0.3.2':
425
421
resolution: {integrity: sha512-/HUlv5dnR1am4BQlVYSuevGf4mKJ5RMkElnum8lbwRDewKyzqHwdtJWeNcfcPFtDhUKg0U2pWfRv8ZZd6kk9dQ==}
422
422
+
423
423
+
'@atproto/oauth-client@0.3.22':
424
424
+
resolution: {integrity: sha512-IJYkUSGGklV7tQ0S2+5smh8Xmu5MwfxBUNXMtqiooeU2nj+UcNk3/b0nE4MS05JNfwh2BXgHv3P8hrhVG2+RAA==}
426
425
427
426
'@atproto/oauth-types@0.2.1':
428
427
resolution: {integrity: sha512-hDisUXzcq5KU1HMuCYZ8Kcz7BePl7V11bFjjgZvND3mdSphiyBpJ8MCNn3QzAa6cXpFo0w9PDcYMAlCCRZHdVw==}
429
428
430
430
-
'@atproto/oauth-types@0.2.7':
431
431
-
resolution: {integrity: sha512-2SlDveiSI0oowC+sfuNd/npV8jw/FhokSS26qyUyldTg1g9ZlhxXUfMP4IZOPeZcVn9EszzQRHs1H9ZJqVQIew==}
429
429
+
'@atproto/oauth-types@0.2.8':
430
430
+
resolution: {integrity: sha512-xcYI2JmhrWwscePDoaKeDawVCCZkcvBqrBFMpMk4gf/OujH0pNSKBD/aWsayc6WvujVbTqwrG2hwPLfRqzJbwg==}
432
431
433
432
'@atproto/syntax@0.3.1':
434
433
resolution: {integrity: sha512-fzW0Mg1QUOVCWUD3RgEsDt6d1OZ6DdFmbKcDdbzUfh0t4rhtRAC05KbZYmxuMPWDAiJ4BbbQ5dkAc/mNypMXkw==}
434
434
+
435
435
+
'@atproto/syntax@0.3.4':
436
436
+
resolution: {integrity: sha512-8CNmi5DipOLaVeSMPggMe7FCksVag0aO6XZy9WflbduTKM4dFZVCs4686UeMLfGRXX+X966XgwECHoLYrovMMg==}
435
437
436
438
'@atproto/syntax@0.4.0':
437
439
resolution: {integrity: sha512-b9y5ceHS8YKOfP3mdKmwAx5yVj9294UN7FG2XzP6V5aKUdFazEYRnR9m5n5ZQFKa3GNvz7de9guZCJ/sUTcOAA==}
438
440
439
439
-
'@atproto/xrpc-server@0.7.4':
440
440
-
resolution: {integrity: sha512-MrAwxfJBQm/kCol3D8qc+vpQzBMzLqvtUbauSSfVVJ10PlGtxg4LlXqcjkAuhrjyrqp3dQH9LHuhDpgVQK+G3w==}
441
441
+
'@atproto/syntax@0.4.1':
442
442
+
resolution: {integrity: sha512-CJdImtLAiFO+0z3BWTtxwk6aY5w4t8orHTMVJgkf++QRJWTxPbIFko/0hrkADB7n2EruDxDSeAgfUGehpH6ngw==}
443
443
+
444
444
+
'@atproto/xrpc-server@0.7.19':
445
445
+
resolution: {integrity: sha512-YSCl/tU2NDykgDYslFSOYCr96esUgDwncFiADKL59/fyIFPLoT0qY8Uq/budpxUh0qPzjow4HHgVWESOaOpUmA==}
446
446
+
engines: {node: '>=18.7.0'}
441
447
442
448
'@atproto/xrpc@0.6.4':
443
449
resolution: {integrity: sha512-9ZAJ8nsXTqC4XFyS0E1Wlg7bAvonhXQNQ3Ocs1L1LIwFLXvsw/4fNpIHXxvXvqTCVeyHLbImOnE9UiO1c/qIYA==}
444
444
-
445
445
-
'@atproto/xrpc@0.6.7':
446
446
-
resolution: {integrity: sha512-pbzZIONIskyGKxxG3s2wB7rQ2W1xu3ycfeYhKwk/E/ippeJFVxcof64iSC7f22+7JSKUJcxBeZ1piBB82vLj7g==}
447
450
448
451
'@atproto/xrpc@0.7.0':
449
452
resolution: {integrity: sha512-SfhP9dGx2qclaScFDb58Jnrmim5nk4geZXCqg6sB0I/KZhZEkr9iIx1hLCp+sxkIfEsmEJjeWO4B0rjUIJW5cw==}
450
453
451
451
-
'@atproto/xrpc@0.7.1':
452
452
-
resolution: {integrity: sha512-ANHEzlskYlMEdH18m+Itp3a8d0pEJao2qoDybDoMupTnoeNkya4VKIaOgAi6ERQnqatBBZyn9asW+7rJmSt/8g==}
454
454
+
'@atproto/xrpc@0.7.5':
455
455
+
resolution: {integrity: sha512-MUYNn5d2hv8yVegRL0ccHvTHAVj5JSnW07bkbiaz96UH45lvYNRVwt44z+yYVnb0/mvBzyD3/ZQ55TRGt7fHkA==}
453
456
454
457
'@babel/code-frame@7.10.4':
455
458
resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==}
456
459
457
457
-
'@babel/code-frame@7.26.2':
458
458
-
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
459
459
-
engines: {node: '>=6.9.0'}
460
460
-
461
460
'@babel/code-frame@7.27.1':
462
461
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
463
462
engines: {node: '>=6.9.0'}
464
463
465
465
-
'@babel/compat-data@7.26.3':
466
466
-
resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==}
467
467
-
engines: {node: '>=6.9.0'}
468
468
-
469
464
'@babel/compat-data@7.28.4':
470
465
resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==}
471
471
-
engines: {node: '>=6.9.0'}
472
472
-
473
473
-
'@babel/core@7.26.0':
474
474
-
resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
475
466
engines: {node: '>=6.9.0'}
476
467
477
468
'@babel/core@7.28.4':
···
490
481
resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
491
482
engines: {node: '>=6.9.0'}
492
483
493
493
-
'@babel/helper-compilation-targets@7.25.9':
494
494
-
resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
484
484
+
'@babel/helper-annotate-as-pure@7.27.3':
485
485
+
resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
495
486
engines: {node: '>=6.9.0'}
496
487
497
488
'@babel/helper-compilation-targets@7.27.2':
···
504
495
peerDependencies:
505
496
'@babel/core': ^7.0.0
506
497
498
498
+
'@babel/helper-create-class-features-plugin@7.28.3':
499
499
+
resolution: {integrity: sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==}
500
500
+
engines: {node: '>=6.9.0'}
501
501
+
peerDependencies:
502
502
+
'@babel/core': ^7.0.0
503
503
+
507
504
'@babel/helper-create-regexp-features-plugin@7.26.3':
508
505
resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==}
509
506
engines: {node: '>=6.9.0'}
510
507
peerDependencies:
511
508
'@babel/core': ^7.0.0
512
509
510
510
+
'@babel/helper-create-regexp-features-plugin@7.27.1':
511
511
+
resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==}
512
512
+
engines: {node: '>=6.9.0'}
513
513
+
peerDependencies:
514
514
+
'@babel/core': ^7.0.0
515
515
+
513
516
'@babel/helper-define-polyfill-provider@0.6.3':
514
517
resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==}
515
518
peerDependencies:
···
523
526
resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
524
527
engines: {node: '>=6.9.0'}
525
528
529
529
+
'@babel/helper-member-expression-to-functions@7.27.1':
530
530
+
resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
531
531
+
engines: {node: '>=6.9.0'}
532
532
+
526
533
'@babel/helper-module-imports@7.25.9':
527
534
resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
528
535
engines: {node: '>=6.9.0'}
···
531
538
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
532
539
engines: {node: '>=6.9.0'}
533
540
534
534
-
'@babel/helper-module-transforms@7.26.0':
535
535
-
resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
536
536
-
engines: {node: '>=6.9.0'}
537
537
-
peerDependencies:
538
538
-
'@babel/core': ^7.0.0
539
539
-
540
541
'@babel/helper-module-transforms@7.28.3':
541
542
resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
542
543
engines: {node: '>=6.9.0'}
···
545
546
546
547
'@babel/helper-optimise-call-expression@7.25.9':
547
548
resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
549
549
+
engines: {node: '>=6.9.0'}
550
550
+
551
551
+
'@babel/helper-optimise-call-expression@7.27.1':
552
552
+
resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
548
553
engines: {node: '>=6.9.0'}
549
554
550
555
'@babel/helper-plugin-utils@7.25.9':
···
567
572
peerDependencies:
568
573
'@babel/core': ^7.0.0
569
574
575
575
+
'@babel/helper-replace-supers@7.27.1':
576
576
+
resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
577
577
+
engines: {node: '>=6.9.0'}
578
578
+
peerDependencies:
579
579
+
'@babel/core': ^7.0.0
580
580
+
570
581
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
571
582
resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
583
583
+
engines: {node: '>=6.9.0'}
584
584
+
585
585
+
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
586
586
+
resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
572
587
engines: {node: '>=6.9.0'}
573
588
574
589
'@babel/helper-string-parser@7.25.9':
···
587
602
resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
588
603
engines: {node: '>=6.9.0'}
589
604
590
590
-
'@babel/helper-validator-option@7.25.9':
591
591
-
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
592
592
-
engines: {node: '>=6.9.0'}
593
593
-
594
605
'@babel/helper-validator-option@7.27.1':
595
606
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
596
607
engines: {node: '>=6.9.0'}
597
608
598
609
'@babel/helper-wrap-function@7.25.9':
599
610
resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
600
600
-
engines: {node: '>=6.9.0'}
601
601
-
602
602
-
'@babel/helpers@7.26.0':
603
603
-
resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
604
611
engines: {node: '>=6.9.0'}
605
612
606
613
'@babel/helpers@7.28.4':
···
772
779
peerDependencies:
773
780
'@babel/core': ^7.0.0-0
774
781
782
782
+
'@babel/plugin-transform-arrow-functions@7.27.1':
783
783
+
resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==}
784
784
+
engines: {node: '>=6.9.0'}
785
785
+
peerDependencies:
786
786
+
'@babel/core': ^7.0.0-0
787
787
+
775
788
'@babel/plugin-transform-async-generator-functions@7.25.9':
776
789
resolution: {integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==}
777
790
engines: {node: '>=6.9.0'}
···
796
809
peerDependencies:
797
810
'@babel/core': ^7.0.0-0
798
811
812
812
+
'@babel/plugin-transform-class-properties@7.27.1':
813
813
+
resolution: {integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==}
814
814
+
engines: {node: '>=6.9.0'}
815
815
+
peerDependencies:
816
816
+
'@babel/core': ^7.0.0-0
817
817
+
818
818
+
'@babel/plugin-transform-class-static-block@7.28.3':
819
819
+
resolution: {integrity: sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==}
820
820
+
engines: {node: '>=6.9.0'}
821
821
+
peerDependencies:
822
822
+
'@babel/core': ^7.12.0
823
823
+
799
824
'@babel/plugin-transform-classes@7.25.9':
800
825
resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==}
826
826
+
engines: {node: '>=6.9.0'}
827
827
+
peerDependencies:
828
828
+
'@babel/core': ^7.0.0-0
829
829
+
830
830
+
'@babel/plugin-transform-classes@7.28.4':
831
831
+
resolution: {integrity: sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==}
801
832
engines: {node: '>=6.9.0'}
802
833
peerDependencies:
803
834
'@babel/core': ^7.0.0-0
···
852
883
853
884
'@babel/plugin-transform-modules-commonjs@7.26.3':
854
885
resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==}
886
886
+
engines: {node: '>=6.9.0'}
887
887
+
peerDependencies:
888
888
+
'@babel/core': ^7.0.0-0
889
889
+
890
890
+
'@babel/plugin-transform-modules-commonjs@7.27.1':
891
891
+
resolution: {integrity: sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==}
855
892
engines: {node: '>=6.9.0'}
856
893
peerDependencies:
857
894
'@babel/core': ^7.0.0-0
···
868
905
peerDependencies:
869
906
'@babel/core': ^7.0.0-0
870
907
908
908
+
'@babel/plugin-transform-nullish-coalescing-operator@7.27.1':
909
909
+
resolution: {integrity: sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==}
910
910
+
engines: {node: '>=6.9.0'}
911
911
+
peerDependencies:
912
912
+
'@babel/core': ^7.0.0-0
913
913
+
871
914
'@babel/plugin-transform-numeric-separator@7.25.9':
872
915
resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==}
873
916
engines: {node: '>=6.9.0'}
···
888
931
889
932
'@babel/plugin-transform-optional-chaining@7.25.9':
890
933
resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==}
934
934
+
engines: {node: '>=6.9.0'}
935
935
+
peerDependencies:
936
936
+
'@babel/core': ^7.0.0-0
937
937
+
938
938
+
'@babel/plugin-transform-optional-chaining@7.27.1':
939
939
+
resolution: {integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==}
891
940
engines: {node: '>=6.9.0'}
892
941
peerDependencies:
893
942
'@babel/core': ^7.0.0-0
···
964
1013
peerDependencies:
965
1014
'@babel/core': ^7.0.0-0
966
1015
1016
1016
+
'@babel/plugin-transform-shorthand-properties@7.27.1':
1017
1017
+
resolution: {integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==}
1018
1018
+
engines: {node: '>=6.9.0'}
1019
1019
+
peerDependencies:
1020
1020
+
'@babel/core': ^7.0.0-0
1021
1021
+
967
1022
'@babel/plugin-transform-spread@7.25.9':
968
1023
resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
969
1024
engines: {node: '>=6.9.0'}
···
976
1031
peerDependencies:
977
1032
'@babel/core': ^7.0.0-0
978
1033
979
979
-
'@babel/plugin-transform-template-literals@7.25.9':
980
980
-
resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==}
1034
1034
+
'@babel/plugin-transform-template-literals@7.27.1':
1035
1035
+
resolution: {integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==}
981
1036
engines: {node: '>=6.9.0'}
982
1037
peerDependencies:
983
1038
'@babel/core': ^7.0.0-0
984
1039
985
1040
'@babel/plugin-transform-typescript@7.26.3':
986
1041
resolution: {integrity: sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==}
1042
1042
+
engines: {node: '>=6.9.0'}
1043
1043
+
peerDependencies:
1044
1044
+
'@babel/core': ^7.0.0-0
1045
1045
+
1046
1046
+
'@babel/plugin-transform-typescript@7.28.0':
1047
1047
+
resolution: {integrity: sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==}
987
1048
engines: {node: '>=6.9.0'}
988
1049
peerDependencies:
989
1050
'@babel/core': ^7.0.0-0
···
994
1055
peerDependencies:
995
1056
'@babel/core': ^7.0.0-0
996
1057
1058
1058
+
'@babel/plugin-transform-unicode-regex@7.27.1':
1059
1059
+
resolution: {integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==}
1060
1060
+
engines: {node: '>=6.9.0'}
1061
1061
+
peerDependencies:
1062
1062
+
'@babel/core': ^7.0.0-0
1063
1063
+
997
1064
'@babel/preset-react@7.26.3':
998
1065
resolution: {integrity: sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==}
999
1066
engines: {node: '>=6.9.0'}
···
1006
1073
peerDependencies:
1007
1074
'@babel/core': ^7.0.0-0
1008
1075
1009
1009
-
'@babel/runtime@7.26.0':
1010
1010
-
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
1076
1076
+
'@babel/preset-typescript@7.27.1':
1077
1077
+
resolution: {integrity: sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==}
1011
1078
engines: {node: '>=6.9.0'}
1079
1079
+
peerDependencies:
1080
1080
+
'@babel/core': ^7.0.0-0
1012
1081
1013
1013
-
'@babel/template@7.25.9':
1014
1014
-
resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
1082
1082
+
'@babel/runtime@7.28.4':
1083
1083
+
resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
1015
1084
engines: {node: '>=6.9.0'}
1016
1085
1017
1086
'@babel/template@7.27.2':
···
1087
1156
'@emnapi/wasi-threads@1.1.0':
1088
1157
resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
1089
1158
1090
1090
-
'@eslint-community/eslint-utils@4.4.1':
1091
1091
-
resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
1092
1092
-
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1093
1093
-
peerDependencies:
1094
1094
-
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
1095
1095
-
1096
1096
-
'@eslint-community/eslint-utils@4.7.0':
1097
1097
-
resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==}
1159
1159
+
'@eslint-community/eslint-utils@4.9.0':
1160
1160
+
resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==}
1098
1161
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1099
1162
peerDependencies:
1100
1163
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
···
1111
1174
resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
1112
1175
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1113
1176
1114
1114
-
'@expo/cli@0.24.20':
1115
1115
-
resolution: {integrity: sha512-uF1pOVcd+xizNtVTuZqNGzy7I6IJon5YMmQidsURds1Ww96AFDxrR/NEACqeATNAmY60m8wy1VZZpSg5zLNkpw==}
1177
1177
+
'@expo/cli@54.0.10':
1178
1178
+
resolution: {integrity: sha512-iw9gAnN6+PKWWLIyYmiskY/wzZjuFMctunqGXuC8BGATWgtr/HpzjVqWbcL3KIX/GvEBCCh74Tkckrh+Ylxh5Q==}
1116
1179
hasBin: true
1180
1180
+
peerDependencies:
1181
1181
+
expo: '*'
1182
1182
+
expo-router: '*'
1183
1183
+
react-native: '*'
1184
1184
+
peerDependenciesMeta:
1185
1185
+
expo-router:
1186
1186
+
optional: true
1187
1187
+
react-native:
1188
1188
+
optional: true
1117
1189
1118
1190
'@expo/code-signing-certificates@0.0.5':
1119
1191
resolution: {integrity: sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==}
1120
1192
1121
1121
-
'@expo/config-plugins@10.0.2':
1122
1122
-
resolution: {integrity: sha512-TzUn3pPdpwCS0yYaSlZOClgDmCX8N4I2lfgitX5oStqmvpPtB+vqtdyqsVM02fQ2tlJIAqwBW+NHaHqqy8Jv7g==}
1123
1123
-
1124
1124
-
'@expo/config-plugins@10.1.2':
1125
1125
-
resolution: {integrity: sha512-IMYCxBOcnuFStuK0Ay+FzEIBKrwW8OVUMc65+v0+i7YFIIe8aL342l7T4F8lR4oCfhXn7d6M5QPgXvjtc/gAcw==}
1126
1126
-
1127
1193
'@expo/config-plugins@54.0.2':
1128
1194
resolution: {integrity: sha512-jD4qxFcURQUVsUFGMcbo63a/AnviK8WUGard+yrdQE3ZrB/aurn68SlApjirQQLEizhjI5Ar2ufqflOBlNpyPg==}
1129
1195
1130
1130
-
'@expo/config-types@53.0.4':
1131
1131
-
resolution: {integrity: sha512-0s+9vFx83WIToEr0Iwy4CcmiUXa5BgwBmEjylBB2eojX5XAMm9mJvw9KpjAb8m7zq2G0Q6bRbeufkzgbipuNQg==}
1132
1132
-
1133
1133
-
'@expo/config-types@53.0.5':
1134
1134
-
resolution: {integrity: sha512-kqZ0w44E+HEGBjy+Lpyn0BVL5UANg/tmNixxaRMLS6nf37YsDrLk2VMAmeKMMk5CKG0NmOdVv3ngeUjRQMsy9g==}
1135
1135
-
1136
1196
'@expo/config-types@54.0.8':
1137
1197
resolution: {integrity: sha512-lyIn/x/Yz0SgHL7IGWtgTLg6TJWC9vL7489++0hzCHZ4iGjVcfZmPTUfiragZ3HycFFj899qN0jlhl49IHa94A==}
1138
1138
-
1139
1139
-
'@expo/config@11.0.10':
1140
1140
-
resolution: {integrity: sha512-8S8Krr/c5lnl0eF03tA2UGY9rGBhZcbWKz2UWw5dpL/+zstwUmog8oyuuC8aRcn7GiTQLlbBkxcMeT8sOGlhbA==}
1141
1141
-
1142
1142
-
'@expo/config@11.0.13':
1143
1143
-
resolution: {integrity: sha512-TnGb4u/zUZetpav9sx/3fWK71oCPaOjZHoVED9NaEncktAd0Eonhq5NUghiJmkUGt3gGSjRAEBXiBbbY9/B1LA==}
1144
1198
1145
1199
'@expo/config@12.0.10':
1146
1200
resolution: {integrity: sha512-lJMof5Nqakq1DxGYlghYB/ogSBjmv4Fxn1ovyDmcjlRsQdFCXgu06gEUogkhPtc9wBt9WlTTfqENln5HHyLW6w==}
···
1148
1202
'@expo/devcert@1.1.4':
1149
1203
resolution: {integrity: sha512-fqBODr8c72+gBSX5Ty3SIzaY4bXainlpab78+vEYEKL3fXmsOswMLf0+KE36mUEAa36BYabX7K3EiXOXX5OPMw==}
1150
1204
1151
1151
-
'@expo/env@1.0.5':
1152
1152
-
resolution: {integrity: sha512-dtEZ4CAMaVrFu2+tezhU3FoGWtbzQl50xV+rNJE5lYVRjUflWiZkVHlHkWUlPAwDPifLy4TuissVfScGGPWR5g==}
1205
1205
+
'@expo/devtools@0.1.7':
1206
1206
+
resolution: {integrity: sha512-dfIa9qMyXN+0RfU6SN4rKeXZyzKWsnz6xBSDccjL4IRiE+fQ0t84zg0yxgN4t/WK2JU5v6v4fby7W7Crv9gJvA==}
1207
1207
+
peerDependencies:
1208
1208
+
react: '*'
1209
1209
+
react-native: '*'
1210
1210
+
peerDependenciesMeta:
1211
1211
+
react:
1212
1212
+
optional: true
1213
1213
+
react-native:
1214
1214
+
optional: true
1153
1215
1154
1154
-
'@expo/env@1.0.7':
1155
1155
-
resolution: {integrity: sha512-qSTEnwvuYJ3umapO9XJtrb1fAqiPlmUUg78N0IZXXGwQRt+bkp0OBls+Y5Mxw/Owj8waAM0Z3huKKskRADR5ow==}
1216
1216
+
'@expo/env@2.0.7':
1217
1217
+
resolution: {integrity: sha512-BNETbLEohk3HQ2LxwwezpG8pq+h7Fs7/vAMP3eAtFT1BCpprLYoBBFZH7gW4aqGfqOcVP4Lc91j014verrYNGg==}
1156
1218
1157
1157
-
'@expo/fingerprint@0.13.4':
1158
1158
-
resolution: {integrity: sha512-MYfPYBTMfrrNr07DALuLhG6EaLVNVrY/PXjEzsjWdWE4ZFn0yqI0IdHNkJG7t1gePT8iztHc7qnsx+oo/rDo6w==}
1219
1219
+
'@expo/fingerprint@0.15.1':
1220
1220
+
resolution: {integrity: sha512-U1S9DwiapCHQjHdHDDyO/oXsl/1oEHSHZRRkWDDrHgXRUDiAVIySw9Unvvcr118Ee6/x4NmKSZY1X0VagrqmFg==}
1159
1221
hasBin: true
1160
1222
1161
1161
-
'@expo/image-utils@0.7.6':
1162
1162
-
resolution: {integrity: sha512-GKnMqC79+mo/1AFrmAcUcGfbsXXTRqOMNS1umebuevl3aaw+ztsYEFEiuNhHZW7PQ3Xs3URNT513ZxKhznDscw==}
1223
1223
+
'@expo/image-utils@0.8.7':
1224
1224
+
resolution: {integrity: sha512-SXOww4Wq3RVXLyOaXiCCuQFguCDh8mmaHBv54h/R29wGl4jRY8GEyQEx8SypV/iHt1FbzsU/X3Qbcd9afm2W2w==}
1163
1225
1164
1226
'@expo/json-file@10.0.7':
1165
1227
resolution: {integrity: sha512-z2OTC0XNO6riZu98EjdNHC05l51ySeTto6GP7oSQrCvQgG9ARBwD1YvMQaVZ9wU7p/4LzSf1O7tckL3B45fPpw==}
1166
1228
1167
1167
-
'@expo/json-file@9.1.4':
1168
1168
-
resolution: {integrity: sha512-7Bv86X27fPERGhw8aJEZvRcH9sk+9BenDnEmrI3ZpywKodYSBgc8lX9Y32faNVQ/p0YbDK9zdJ0BfAKNAOyi0A==}
1169
1169
-
1170
1170
-
'@expo/json-file@9.1.5':
1171
1171
-
resolution: {integrity: sha512-prWBhLUlmcQtvN6Y7BpW2k9zXGd3ySa3R6rAguMJkp1z22nunLN64KYTUWfijFlprFoxm9r2VNnGkcbndAlgKA==}
1229
1229
+
'@expo/mcp-tunnel@0.0.8':
1230
1230
+
resolution: {integrity: sha512-6261obzt6h9TQb6clET7Fw4Ig4AY2hfTNKI3gBt0gcTNxZipwMg8wER7ssDYieA9feD/FfPTuCPYFcR280aaWA==}
1231
1231
+
peerDependencies:
1232
1232
+
'@modelcontextprotocol/sdk': ^1.13.2
1233
1233
+
peerDependenciesMeta:
1234
1234
+
'@modelcontextprotocol/sdk':
1235
1235
+
optional: true
1172
1236
1173
1173
-
'@expo/metro-config@0.20.17':
1174
1174
-
resolution: {integrity: sha512-lpntF2UZn5bTwrPK6guUv00Xv3X9mkN3YYla+IhEHiYXWyG7WKOtDU0U4KR8h3ubkZ6SPH3snDyRyAzMsWtZFA==}
1237
1237
+
'@expo/metro-config@54.0.6':
1238
1238
+
resolution: {integrity: sha512-z3wufTr1skM03PI6Dr1ZsrvjAiGKf/w0VQvdZL+mEnKNqRA7Q4bhJDGk1+nzs+WWRWz4vS488uad9ERmSclBmg==}
1239
1239
+
peerDependencies:
1240
1240
+
expo: '*'
1241
1241
+
peerDependenciesMeta:
1242
1242
+
expo:
1243
1243
+
optional: true
1175
1244
1176
1176
-
'@expo/metro-runtime@5.0.4':
1177
1177
-
resolution: {integrity: sha512-r694MeO+7Vi8IwOsDIDzH/Q5RPMt1kUDYbiTJwnO15nIqiDwlE8HU55UlRhffKZy6s5FmxQsZ8HA+T8DqUW8cQ==}
1245
1245
+
'@expo/metro-runtime@6.1.2':
1246
1246
+
resolution: {integrity: sha512-nvM+Qv45QH7pmYvP8JB1G8JpScrWND3KrMA6ZKe62cwwNiX/BjHU28Ear0v/4bQWXlOY0mv6B8CDIm8JxXde9g==}
1178
1247
peerDependencies:
1248
1248
+
expo: '*'
1249
1249
+
react: '*'
1250
1250
+
react-dom: '*'
1179
1251
react-native: '*'
1180
1180
-
1181
1181
-
'@expo/osascript@2.2.5':
1182
1182
-
resolution: {integrity: sha512-Bpp/n5rZ0UmpBOnl7Li3LtM7la0AR3H9NNesqL+ytW5UiqV/TbonYW3rDZY38u4u/lG7TnYflVIVQPD+iqZJ5w==}
1183
1183
-
engines: {node: '>=12'}
1252
1252
+
peerDependenciesMeta:
1253
1253
+
react-dom:
1254
1254
+
optional: true
1184
1255
1185
1185
-
'@expo/package-manager@1.8.6':
1186
1186
-
resolution: {integrity: sha512-gcdICLuL+nHKZagPIDC5tX8UoDDB8vNA5/+SaQEqz8D+T2C4KrEJc2Vi1gPAlDnKif834QS6YluHWyxjk0yZlQ==}
1256
1256
+
'@expo/metro@54.0.0':
1257
1257
+
resolution: {integrity: sha512-x2HlliepLJVLSe0Fl/LuPT83Mn2EXpPlb1ngVtcawlz4IfbkYJo16/Zfsfrn1t9d8LpN5dD44Dc55Q1/fO05Nw==}
1187
1258
1188
1188
-
'@expo/plist@0.3.4':
1189
1189
-
resolution: {integrity: sha512-MhBLaUJNe9FQDDU2xhSNS4SAolr6K2wuyi4+A79vYuXLkAoICsbTwcGEQJN5jPY6D9izO/jsXh5k0h+mIWQMdw==}
1259
1259
+
'@expo/osascript@2.3.7':
1260
1260
+
resolution: {integrity: sha512-IClSOXxR0YUFxIriUJVqyYki7lLMIHrrzOaP01yxAL1G8pj2DWV5eW1y5jSzIcIfSCNhtGsshGd1tU/AYup5iQ==}
1261
1261
+
engines: {node: '>=12'}
1190
1262
1191
1191
-
'@expo/plist@0.3.5':
1192
1192
-
resolution: {integrity: sha512-9RYVU1iGyCJ7vWfg3e7c/NVyMFs8wbl+dMWZphtFtsqyN9zppGREU3ctlD3i8KUE0sCUTVnLjCWr+VeUIDep2g==}
1263
1263
+
'@expo/package-manager@1.9.8':
1264
1264
+
resolution: {integrity: sha512-4/I6OWquKXYnzo38pkISHCOCOXxfeEmu4uDoERq1Ei/9Ur/s9y3kLbAamEkitUkDC7gHk1INxRWEfFNzGbmOrA==}
1193
1265
1194
1266
'@expo/plist@0.4.7':
1195
1267
resolution: {integrity: sha512-dGxqHPvCZKeRKDU1sJZMmuyVtcASuSYh1LPFVaM1DuffqPL36n6FMEL0iUqq2Tx3xhWk8wCnWl34IKplUjJDdA==}
1196
1268
1197
1197
-
'@expo/prebuild-config@9.0.11':
1198
1198
-
resolution: {integrity: sha512-0DsxhhixRbCCvmYskBTq8czsU0YOBsntYURhWPNpkl0IPVpeP9haE5W4OwtHGzXEbmHdzaoDwNmVcWjS/mqbDw==}
1269
1269
+
'@expo/prebuild-config@54.0.4':
1270
1270
+
resolution: {integrity: sha512-X+oTbmclWf2kfWIEkjagOzPZNg2SkiWW+JoRX6CWxKpDTQKfsi/bf22Ymv5Zxe1Q/aGjOuFL5useStm3iNi+PA==}
1271
1271
+
peerDependencies:
1272
1272
+
expo: '*'
1273
1273
+
1274
1274
+
'@expo/schema-utils@0.1.7':
1275
1275
+
resolution: {integrity: sha512-jWHoSuwRb5ZczjahrychMJ3GWZu54jK9ulNdh1d4OzAEq672K9E5yOlnlBsfIHWHGzUAT+0CL7Yt1INiXTz68g==}
1199
1276
1200
1277
'@expo/sdk-runtime-versions@1.0.0':
1201
1278
resolution: {integrity: sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==}
1202
1202
-
1203
1203
-
'@expo/server@0.6.2':
1204
1204
-
resolution: {integrity: sha512-ko+dq+1WEC126/iGVv3g+ChFCs9wGyKtGlnYphwrOQbFBBqX19sn6UV0oUks6UdhD+MyzUv+w/TOdktdcI0Cgg==}
1205
1279
1206
1280
'@expo/spawn-async@1.7.2':
1207
1281
resolution: {integrity: sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==}
1208
1282
engines: {node: '>=12'}
1209
1283
1210
1210
-
'@expo/vector-icons@14.1.0':
1211
1211
-
resolution: {integrity: sha512-7T09UE9h8QDTsUeMGymB4i+iqvtEeaO5VvUjryFB4tugDTG/bkzViWA74hm5pfjjDEhYMXWaX112mcvhccmIwQ==}
1284
1284
+
'@expo/vector-icons@15.0.2':
1285
1285
+
resolution: {integrity: sha512-IiBjg7ZikueuHNf40wSGCf0zS73a3guJLdZzKnDUxsauB8VWPLMeWnRIupc+7cFhLUkqyvyo0jLNlcxG5xPOuQ==}
1212
1286
peerDependencies:
1213
1213
-
expo-font: '*'
1287
1287
+
expo-font: '>=14.0.4'
1214
1288
react: '*'
1215
1289
react-native: '*'
1216
1290
···
1221
1295
resolution: {integrity: sha512-ReZxZ8pdnoI3tP/dNnJdnmAk7uLT4FjsKDGW7YeDdvdOMz2XCQSmSCM9IWlrXuWtMF9zeSB6WJtEhCQ41gQOfw==}
1222
1296
hasBin: true
1223
1297
1224
1224
-
'@floating-ui/core@1.6.8':
1225
1225
-
resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
1298
1298
+
'@floating-ui/core@1.7.3':
1299
1299
+
resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
1226
1300
1227
1227
-
'@floating-ui/dom@1.6.12':
1228
1228
-
resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==}
1301
1301
+
'@floating-ui/dom@1.7.4':
1302
1302
+
resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}
1229
1303
1230
1230
-
'@floating-ui/react-dom@2.1.2':
1231
1231
-
resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
1304
1304
+
'@floating-ui/react-dom@2.1.6':
1305
1305
+
resolution: {integrity: sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==}
1232
1306
peerDependencies:
1233
1307
react: '>=16.8.0'
1234
1308
react-dom: '>=16.8.0'
1235
1309
1236
1236
-
'@floating-ui/utils@0.2.8':
1237
1237
-
resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
1310
1310
+
'@floating-ui/utils@0.2.10':
1311
1311
+
resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
1238
1312
1239
1239
-
'@gorhom/bottom-sheet@5.1.6':
1240
1240
-
resolution: {integrity: sha512-0b5tQj4fTaZAjST1PnkCp0p7d8iRqMezibTcqc8Kkn3N23Vn6upORNTD1fH0bLfwRt6e0WnZ7DjAmq315lrcKQ==}
1313
1313
+
'@gorhom/bottom-sheet@5.2.6':
1314
1314
+
resolution: {integrity: sha512-vmruJxdiUGDg+ZYcDmS30XDhq/h/+QkINOI5LY/uGjx8cPGwgJW0H6AB902gNTKtccbiKe/rr94EwdmIEz+LAQ==}
1241
1315
peerDependencies:
1242
1316
'@types/react': '*'
1243
1317
'@types/react-native': '*'
1244
1318
react: '*'
1245
1319
react-native: '*'
1246
1320
react-native-gesture-handler: '>=2.16.1'
1247
1247
-
react-native-reanimated: '>=3.16.0'
1321
1321
+
react-native-reanimated: '>=3.16.0 || >=4.0.0-'
1248
1322
peerDependenciesMeta:
1249
1323
'@types/react':
1250
1324
optional: true
···
1270
1344
resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
1271
1345
deprecated: Use @eslint/object-schema instead
1272
1346
1273
1273
-
'@ianvs/prettier-plugin-sort-imports@4.5.1':
1274
1274
-
resolution: {integrity: sha512-vOQwIyQHnHz0ikvHEQDzwUkNfX74o/7qNEpm9LiPtyBvCg/AU/DOkhwe1o92chPS1QzS6G7HeiO+OwIt8a358A==}
1347
1347
+
'@ianvs/prettier-plugin-sort-imports@4.7.0':
1348
1348
+
resolution: {integrity: sha512-soa2bPUJAFruLL4z/CnMfSEKGznm5ebz29fIa9PxYtu8HHyLKNE1NXAs6dylfw1jn/ilEIfO2oLLN6uAafb7DA==}
1275
1349
peerDependencies:
1276
1350
'@prettier/plugin-oxc': ^0.0.4
1277
1351
'@vue/compiler-sfc': 2.7.x || 3.x
1352
1352
+
content-tag: ^4.0.0
1278
1353
prettier: 2 || 3 || ^4.0.0-0
1354
1354
+
prettier-plugin-ember-template-tag: ^2.1.0
1279
1355
peerDependenciesMeta:
1280
1356
'@prettier/plugin-oxc':
1281
1357
optional: true
1282
1358
'@vue/compiler-sfc':
1283
1359
optional: true
1360
1360
+
content-tag:
1361
1361
+
optional: true
1362
1362
+
prettier-plugin-ember-template-tag:
1363
1363
+
optional: true
1284
1364
1285
1365
'@ipld/dag-cbor@7.0.3':
1286
1366
resolution: {integrity: sha512-1VVh2huHsuohdXC1bGJNE8WR72slZ9XE2T3wbBBq31dm7ZBatmKLLxrB+XAqafxfRFjv08RZmj/W/ZqaM13AuA==}
1287
1367
1368
1368
+
'@isaacs/balanced-match@4.0.1':
1369
1369
+
resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==}
1370
1370
+
engines: {node: 20 || >=22}
1371
1371
+
1372
1372
+
'@isaacs/brace-expansion@5.0.0':
1373
1373
+
resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==}
1374
1374
+
engines: {node: 20 || >=22}
1375
1375
+
1288
1376
'@isaacs/cliui@8.0.2':
1289
1377
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
1290
1378
engines: {node: '>=12'}
···
1312
1400
'@jest/console@30.2.0':
1313
1401
resolution: {integrity: sha512-+O1ifRjkvYIkBqASKWgLxrpEhQAAE7hY77ALLUufSk5717KfOShg6IbqLmdsLMPdUiFvA2kTs0R7YZy+l0IzZQ==}
1314
1402
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
1403
1403
+
1404
1404
+
'@jest/core@29.7.0':
1405
1405
+
resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==}
1406
1406
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
1407
1407
+
peerDependencies:
1408
1408
+
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
1409
1409
+
peerDependenciesMeta:
1410
1410
+
node-notifier:
1411
1411
+
optional: true
1315
1412
1316
1413
'@jest/core@30.2.0':
1317
1414
resolution: {integrity: sha512-03W6IhuhjqTlpzh/ojut/pDB2LPRygyWX8ExpgHtQA8H/3K7+1vKmcINx5UzeOX1se6YEsBsOHQ1CRzf3fOwTQ==}
···
1378
1475
resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==}
1379
1476
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
1380
1477
1478
1478
+
'@jest/reporters@29.7.0':
1479
1479
+
resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==}
1480
1480
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
1481
1481
+
peerDependencies:
1482
1482
+
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
1483
1483
+
peerDependenciesMeta:
1484
1484
+
node-notifier:
1485
1485
+
optional: true
1486
1486
+
1381
1487
'@jest/reporters@30.2.0':
1382
1488
resolution: {integrity: sha512-DRyW6baWPqKMa9CzeiBjHwjd8XeAyco2Vt8XbcLFjiwCOEKOvy82GJ8QQnJE9ofsxCMPjH4MfH8fCWIHHDKpAQ==}
1383
1489
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
···
1399
1505
resolution: {integrity: sha512-0aVxM3RH6DaiLcjj/b0KrIBZhSX1373Xci4l3cW5xiUWPctZ59zQ7jj4rqcJQ/Z8JuN/4wX3FpJSa3RssVvCug==}
1400
1506
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
1401
1507
1508
1508
+
'@jest/source-map@29.6.3':
1509
1509
+
resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==}
1510
1510
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
1511
1511
+
1402
1512
'@jest/source-map@30.0.1':
1403
1513
resolution: {integrity: sha512-MIRWMUUR3sdbP36oyNyhbThLHyJ2eEDClPCiHVbrYAe5g3CHRArIVpBw7cdSB5fr+ofSfIb2Tnsw8iEHL0PYQg==}
1404
1514
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
···
1411
1521
resolution: {integrity: sha512-RF+Z+0CCHkARz5HT9mcQCBulb1wgCP3FBvl9VFokMX27acKphwyQsNuWH3c+ojd1LeWBLoTYoxF0zm6S/66mjg==}
1412
1522
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
1413
1523
1524
1524
+
'@jest/test-sequencer@29.7.0':
1525
1525
+
resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==}
1526
1526
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
1527
1527
+
1414
1528
'@jest/test-sequencer@30.2.0':
1415
1529
resolution: {integrity: sha512-wXKgU/lk8fKXMu/l5Hog1R61bL4q5GCdT6OJvdAFz1P+QrpoFuLU68eoKuVc4RbrTtNnTL5FByhWdLgOPSph+Q==}
1416
1530
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
···
1449
1563
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
1450
1564
engines: {node: '>=6.0.0'}
1451
1565
1566
1566
+
'@jridgewell/source-map@0.3.11':
1567
1567
+
resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==}
1568
1568
+
1452
1569
'@jridgewell/source-map@0.3.6':
1453
1570
resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
1454
1571
1455
1572
'@jridgewell/sourcemap-codec@1.5.0':
1456
1573
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
1574
1574
+
1575
1575
+
'@jridgewell/sourcemap-codec@1.5.5':
1576
1576
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
1457
1577
1458
1578
'@jridgewell/trace-mapping@0.3.25':
1459
1579
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
···
1467
1587
'@napi-rs/wasm-runtime@0.2.12':
1468
1588
resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
1469
1589
1470
1470
-
'@noble/curves@1.8.1':
1471
1471
-
resolution: {integrity: sha512-warwspo+UYUPep0Q+vtdVB4Ugn8GGQj8iyB3gnRWsztmUHTI3S1nhdiWNsPUGL0vud7JlRRk1XEu7Lq1KGTnMQ==}
1472
1472
-
engines: {node: ^14.21.3 || >=16}
1473
1473
-
1474
1474
-
'@noble/hashes@1.6.1':
1475
1475
-
resolution: {integrity: sha512-pq5D8h10hHBjyqX+cfBm0i8JUXJ0UhczFc4r74zbuT9XgewFo2E3J1cOaGtdZynILNmQ685YWGzGE1Zv6io50w==}
1590
1590
+
'@noble/curves@1.9.7':
1591
1591
+
resolution: {integrity: sha512-gbKGcRUYIjA3/zCCNaWDciTMFI0dCkvou3TL8Zmy5Nc7sJ47a0jtOeZoTaMxkuqRo9cRhjOdZJXegxYE5FN/xw==}
1476
1592
engines: {node: ^14.21.3 || >=16}
1477
1593
1478
1478
-
'@noble/hashes@1.7.1':
1479
1479
-
resolution: {integrity: sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ==}
1594
1594
+
'@noble/hashes@1.8.0':
1595
1595
+
resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==}
1480
1596
engines: {node: ^14.21.3 || >=16}
1481
1597
1482
1598
'@nodelib/fs.scandir@2.1.5':
···
1503
1619
resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==}
1504
1620
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
1505
1621
1506
1506
-
'@pmmmwh/react-refresh-webpack-plugin@0.5.15':
1507
1507
-
resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==}
1622
1622
+
'@pmmmwh/react-refresh-webpack-plugin@0.5.17':
1623
1623
+
resolution: {integrity: sha512-tXDyE1/jzFsHXjhRZQ3hMl0IVhYe5qula43LDWIhVfjp9G/nT5OQY5AORVOrkEGAUltBJOfOWeETbmhm6kHhuQ==}
1508
1624
engines: {node: '>= 10.13'}
1509
1625
peerDependencies:
1510
1626
'@types/webpack': 4.x || 5.x
···
1529
1645
webpack-plugin-serve:
1530
1646
optional: true
1531
1647
1532
1532
-
'@radix-ui/primitive@1.1.1':
1533
1533
-
resolution: {integrity: sha512-SJ31y+Q/zAyShtXJc8x83i9TYdbAfHZ++tUZnvjJJqFjzsdUnKsxPL6IEtBlxKkU7yzer//GQtZSV4GbldL3YA==}
1648
1648
+
'@radix-ui/primitive@1.1.3':
1649
1649
+
resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
1534
1650
1535
1535
-
'@radix-ui/react-arrow@1.1.1':
1536
1536
-
resolution: {integrity: sha512-NaVpZfmv8SKeZbn4ijN2V3jlHA9ngBG16VnIIm22nUR0Yk8KUALyBxT3KYEUnNuch9sTE8UTsS3whzBgKOL30w==}
1651
1651
+
'@radix-ui/react-arrow@1.1.7':
1652
1652
+
resolution: {integrity: sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==}
1537
1653
peerDependencies:
1538
1654
'@types/react': '*'
1539
1655
'@types/react-dom': '*'
···
1545
1661
'@types/react-dom':
1546
1662
optional: true
1547
1663
1548
1548
-
'@radix-ui/react-compose-refs@1.1.1':
1549
1549
-
resolution: {integrity: sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==}
1664
1664
+
'@radix-ui/react-collection@1.1.7':
1665
1665
+
resolution: {integrity: sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==}
1550
1666
peerDependencies:
1551
1667
'@types/react': '*'
1668
1668
+
'@types/react-dom': '*'
1552
1669
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1670
1670
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1553
1671
peerDependenciesMeta:
1554
1672
'@types/react':
1555
1673
optional: true
1674
1674
+
'@types/react-dom':
1675
1675
+
optional: true
1556
1676
1557
1677
'@radix-ui/react-compose-refs@1.1.2':
1558
1678
resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
···
1563
1683
'@types/react':
1564
1684
optional: true
1565
1685
1566
1566
-
'@radix-ui/react-context@1.1.1':
1567
1567
-
resolution: {integrity: sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==}
1686
1686
+
'@radix-ui/react-context@1.1.2':
1687
1687
+
resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
1568
1688
peerDependencies:
1569
1689
'@types/react': '*'
1570
1690
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
···
1572
1692
'@types/react':
1573
1693
optional: true
1574
1694
1575
1575
-
'@radix-ui/react-dismissable-layer@1.1.3':
1576
1576
-
resolution: {integrity: sha512-onrWn/72lQoEucDmJnr8uczSNTujT0vJnA/X5+3AkChVPowr8n1yvIKIabhWyMQeMvvmdpsvcyDqx3X1LEXCPg==}
1695
1695
+
'@radix-ui/react-dialog@1.1.15':
1696
1696
+
resolution: {integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==}
1577
1697
peerDependencies:
1578
1698
'@types/react': '*'
1579
1699
'@types/react-dom': '*'
···
1585
1705
'@types/react-dom':
1586
1706
optional: true
1587
1707
1588
1588
-
'@radix-ui/react-focus-guards@1.1.1':
1589
1589
-
resolution: {integrity: sha512-pSIwfrT1a6sIoDASCSpFwOasEwKTZWDw/iBdtnqKO7v6FeOzYJ7U53cPzYFVR3geGGXgVHaH+CdngrrAzqUGxg==}
1708
1708
+
'@radix-ui/react-direction@1.1.1':
1709
1709
+
resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==}
1590
1710
peerDependencies:
1591
1711
'@types/react': '*'
1592
1712
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
···
1594
1714
'@types/react':
1595
1715
optional: true
1596
1716
1597
1597
-
'@radix-ui/react-focus-scope@1.1.1':
1598
1598
-
resolution: {integrity: sha512-01omzJAYRxXdG2/he/+xy+c8a8gCydoQ1yOxnWNcRhrrBW5W+RQJ22EK1SaO8tb3WoUsuEw7mJjBozPzihDFjA==}
1717
1717
+
'@radix-ui/react-dismissable-layer@1.1.11':
1718
1718
+
resolution: {integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==}
1599
1719
peerDependencies:
1600
1720
'@types/react': '*'
1601
1721
'@types/react-dom': '*'
···
1607
1727
'@types/react-dom':
1608
1728
optional: true
1609
1729
1610
1610
-
'@radix-ui/react-hover-card@1.1.4':
1611
1611
-
resolution: {integrity: sha512-QSUUnRA3PQ2UhvoCv3eYvMnCAgGQW+sTu86QPuNb+ZMi+ZENd6UWpiXbcWDQ4AEaKF9KKpCHBeaJz9Rw6lRlaQ==}
1730
1730
+
'@radix-ui/react-focus-guards@1.1.3':
1731
1731
+
resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==}
1732
1732
+
peerDependencies:
1733
1733
+
'@types/react': '*'
1734
1734
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1735
1735
+
peerDependenciesMeta:
1736
1736
+
'@types/react':
1737
1737
+
optional: true
1738
1738
+
1739
1739
+
'@radix-ui/react-focus-scope@1.1.7':
1740
1740
+
resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==}
1612
1741
peerDependencies:
1613
1742
'@types/react': '*'
1614
1743
'@types/react-dom': '*'
···
1620
1749
'@types/react-dom':
1621
1750
optional: true
1622
1751
1623
1623
-
'@radix-ui/react-id@1.1.0':
1624
1624
-
resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==}
1752
1752
+
'@radix-ui/react-hover-card@1.1.15':
1753
1753
+
resolution: {integrity: sha512-qgTkjNT1CfKMoP0rcasmlH2r1DAiYicWsDsufxl940sT2wHNEWWv6FMWIQXWhVdmC1d/HYfbhQx60KYyAtKxjg==}
1625
1754
peerDependencies:
1626
1755
'@types/react': '*'
1756
1756
+
'@types/react-dom': '*'
1627
1757
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1758
1758
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1628
1759
peerDependenciesMeta:
1629
1760
'@types/react':
1761
1761
+
optional: true
1762
1762
+
'@types/react-dom':
1630
1763
optional: true
1631
1764
1632
1632
-
'@radix-ui/react-popover@1.1.4':
1633
1633
-
resolution: {integrity: sha512-aUACAkXx8LaFymDma+HQVji7WhvEhpFJ7+qPz17Nf4lLZqtreGOFRiNQWQmhzp7kEWg9cOyyQJpdIMUMPc/CPw==}
1765
1765
+
'@radix-ui/react-id@1.1.1':
1766
1766
+
resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==}
1767
1767
+
peerDependencies:
1768
1768
+
'@types/react': '*'
1769
1769
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1770
1770
+
peerDependenciesMeta:
1771
1771
+
'@types/react':
1772
1772
+
optional: true
1773
1773
+
1774
1774
+
'@radix-ui/react-popover@1.1.15':
1775
1775
+
resolution: {integrity: sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA==}
1634
1776
peerDependencies:
1635
1777
'@types/react': '*'
1636
1778
'@types/react-dom': '*'
···
1642
1784
'@types/react-dom':
1643
1785
optional: true
1644
1786
1645
1645
-
'@radix-ui/react-popper@1.2.1':
1646
1646
-
resolution: {integrity: sha512-3kn5Me69L+jv82EKRuQCXdYyf1DqHwD2U/sxoNgBGCB7K9TRc3bQamQ+5EPM9EvyPdli0W41sROd+ZU1dTCztw==}
1787
1787
+
'@radix-ui/react-popper@1.2.8':
1788
1788
+
resolution: {integrity: sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==}
1647
1789
peerDependencies:
1648
1790
'@types/react': '*'
1649
1791
'@types/react-dom': '*'
···
1655
1797
'@types/react-dom':
1656
1798
optional: true
1657
1799
1658
1658
-
'@radix-ui/react-portal@1.1.3':
1659
1659
-
resolution: {integrity: sha512-NciRqhXnGojhT93RPyDaMPfLH3ZSl4jjIFbZQ1b/vxvZEdHsBZ49wP9w8L3HzUQwep01LcWtkUvm0OVB5JAHTw==}
1800
1800
+
'@radix-ui/react-portal@1.1.9':
1801
1801
+
resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==}
1660
1802
peerDependencies:
1661
1803
'@types/react': '*'
1662
1804
'@types/react-dom': '*'
···
1668
1810
'@types/react-dom':
1669
1811
optional: true
1670
1812
1671
1671
-
'@radix-ui/react-presence@1.1.2':
1672
1672
-
resolution: {integrity: sha512-18TFr80t5EVgL9x1SwF/YGtfG+l0BS0PRAlCWBDoBEiDQjeKgnNZRVJp/oVBl24sr3Gbfwc/Qpj4OcWTQMsAEg==}
1813
1813
+
'@radix-ui/react-presence@1.1.5':
1814
1814
+
resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==}
1673
1815
peerDependencies:
1674
1816
'@types/react': '*'
1675
1817
'@types/react-dom': '*'
···
1681
1823
'@types/react-dom':
1682
1824
optional: true
1683
1825
1684
1684
-
'@radix-ui/react-primitive@2.0.1':
1685
1685
-
resolution: {integrity: sha512-sHCWTtxwNn3L3fH8qAfnF3WbUZycW93SM1j3NFDzXBiz8D6F5UTTy8G1+WFEaiCdvCVRJWj6N2R4Xq6HdiHmDg==}
1826
1826
+
'@radix-ui/react-primitive@2.1.3':
1827
1827
+
resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
1686
1828
peerDependencies:
1687
1829
'@types/react': '*'
1688
1830
'@types/react-dom': '*'
···
1694
1836
'@types/react-dom':
1695
1837
optional: true
1696
1838
1697
1697
-
'@radix-ui/react-progress@1.1.1':
1698
1698
-
resolution: {integrity: sha512-6diOawA84f/eMxFHcWut0aE1C2kyE9dOyCTQOMRR2C/qPiXz/X0SaiA/RLbapQaXUCmy0/hLMf9meSccD1N0pA==}
1839
1839
+
'@radix-ui/react-progress@1.1.7':
1840
1840
+
resolution: {integrity: sha512-vPdg/tF6YC/ynuBIJlk1mm7Le0VgW6ub6J2UWnTQ7/D23KXcPI1qy+0vBkgKgd38RCMJavBXpB83HPNFMTb0Fg==}
1699
1841
peerDependencies:
1700
1842
'@types/react': '*'
1701
1843
'@types/react-dom': '*'
···
1707
1849
'@types/react-dom':
1708
1850
optional: true
1709
1851
1710
1710
-
'@radix-ui/react-slot@1.1.1':
1711
1711
-
resolution: {integrity: sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==}
1852
1852
+
'@radix-ui/react-roving-focus@1.1.11':
1853
1853
+
resolution: {integrity: sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==}
1712
1854
peerDependencies:
1713
1855
'@types/react': '*'
1856
1856
+
'@types/react-dom': '*'
1714
1857
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1858
1858
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1715
1859
peerDependenciesMeta:
1716
1860
'@types/react':
1861
1861
+
optional: true
1862
1862
+
'@types/react-dom':
1717
1863
optional: true
1718
1864
1719
1865
'@radix-ui/react-slot@1.2.0':
···
1725
1871
'@types/react':
1726
1872
optional: true
1727
1873
1728
1728
-
'@radix-ui/react-tooltip@1.1.6':
1729
1729
-
resolution: {integrity: sha512-TLB5D8QLExS1uDn7+wH/bjEmRurNMTzNrtq7IjaS4kjion9NtzsTGkvR5+i7yc9q01Pi2KMM2cN3f8UG4IvvXA==}
1874
1874
+
'@radix-ui/react-slot@1.2.3':
1875
1875
+
resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
1876
1876
+
peerDependencies:
1877
1877
+
'@types/react': '*'
1878
1878
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1879
1879
+
peerDependenciesMeta:
1880
1880
+
'@types/react':
1881
1881
+
optional: true
1882
1882
+
1883
1883
+
'@radix-ui/react-tabs@1.1.13':
1884
1884
+
resolution: {integrity: sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==}
1730
1885
peerDependencies:
1731
1886
'@types/react': '*'
1732
1887
'@types/react-dom': '*'
···
1738
1893
'@types/react-dom':
1739
1894
optional: true
1740
1895
1741
1741
-
'@radix-ui/react-use-callback-ref@1.1.0':
1742
1742
-
resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==}
1896
1896
+
'@radix-ui/react-tooltip@1.2.8':
1897
1897
+
resolution: {integrity: sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==}
1743
1898
peerDependencies:
1744
1899
'@types/react': '*'
1900
1900
+
'@types/react-dom': '*'
1745
1901
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1902
1902
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1746
1903
peerDependenciesMeta:
1747
1904
'@types/react':
1748
1905
optional: true
1906
1906
+
'@types/react-dom':
1907
1907
+
optional: true
1749
1908
1750
1750
-
'@radix-ui/react-use-controllable-state@1.1.0':
1751
1751
-
resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
1909
1909
+
'@radix-ui/react-use-callback-ref@1.1.1':
1910
1910
+
resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
1752
1911
peerDependencies:
1753
1912
'@types/react': '*'
1754
1913
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
···
1756
1915
'@types/react':
1757
1916
optional: true
1758
1917
1759
1759
-
'@radix-ui/react-use-escape-keydown@1.1.0':
1760
1760
-
resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==}
1918
1918
+
'@radix-ui/react-use-controllable-state@1.2.2':
1919
1919
+
resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==}
1761
1920
peerDependencies:
1762
1921
'@types/react': '*'
1763
1922
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
···
1765
1924
'@types/react':
1766
1925
optional: true
1767
1926
1768
1768
-
'@radix-ui/react-use-layout-effect@1.1.0':
1769
1769
-
resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==}
1927
1927
+
'@radix-ui/react-use-effect-event@0.0.2':
1928
1928
+
resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==}
1770
1929
peerDependencies:
1771
1930
'@types/react': '*'
1772
1931
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
···
1774
1933
'@types/react':
1775
1934
optional: true
1776
1935
1777
1777
-
'@radix-ui/react-use-rect@1.1.0':
1778
1778
-
resolution: {integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==}
1936
1936
+
'@radix-ui/react-use-escape-keydown@1.1.1':
1937
1937
+
resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==}
1779
1938
peerDependencies:
1780
1939
'@types/react': '*'
1781
1940
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
···
1783
1942
'@types/react':
1784
1943
optional: true
1785
1944
1786
1786
-
'@radix-ui/react-use-size@1.1.0':
1787
1787
-
resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==}
1945
1945
+
'@radix-ui/react-use-layout-effect@1.1.1':
1946
1946
+
resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
1788
1947
peerDependencies:
1789
1948
'@types/react': '*'
1790
1949
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
···
1792
1951
'@types/react':
1793
1952
optional: true
1794
1953
1795
1795
-
'@radix-ui/react-visually-hidden@1.1.1':
1796
1796
-
resolution: {integrity: sha512-vVfA2IZ9q/J+gEamvj761Oq1FpWgCDaNOOIfbPVp2MVPLEomUr5+Vf7kJGwQ24YxZSlQVar7Bes8kyTo5Dshpg==}
1954
1954
+
'@radix-ui/react-use-rect@1.1.1':
1955
1955
+
resolution: {integrity: sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==}
1956
1956
+
peerDependencies:
1957
1957
+
'@types/react': '*'
1958
1958
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1959
1959
+
peerDependenciesMeta:
1960
1960
+
'@types/react':
1961
1961
+
optional: true
1962
1962
+
1963
1963
+
'@radix-ui/react-use-size@1.1.1':
1964
1964
+
resolution: {integrity: sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==}
1965
1965
+
peerDependencies:
1966
1966
+
'@types/react': '*'
1967
1967
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1968
1968
+
peerDependenciesMeta:
1969
1969
+
'@types/react':
1970
1970
+
optional: true
1971
1971
+
1972
1972
+
'@radix-ui/react-visually-hidden@1.2.3':
1973
1973
+
resolution: {integrity: sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==}
1797
1974
peerDependencies:
1798
1975
'@types/react': '*'
1799
1976
'@types/react-dom': '*'
···
1805
1982
'@types/react-dom':
1806
1983
optional: true
1807
1984
1808
1808
-
'@radix-ui/rect@1.1.0':
1809
1809
-
resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==}
1985
1985
+
'@radix-ui/rect@1.1.1':
1986
1986
+
resolution: {integrity: sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==}
1810
1987
1811
1811
-
'@react-native-async-storage/async-storage@2.1.2':
1812
1812
-
resolution: {integrity: sha512-dvlNq4AlGWC+ehtH12p65+17V0Dx7IecOWl6WanF2ja38O1Dcjjvn7jVzkUHJ5oWkQBlyASurTPlTHgKXyYiow==}
1988
1988
+
'@react-native-async-storage/async-storage@2.2.0':
1989
1989
+
resolution: {integrity: sha512-gvRvjR5JAaUZF8tv2Kcq/Gbt3JHwbKFYfmb445rhOj6NUMx3qPLixmDx5pZAyb9at1bYvJ4/eTUipU5aki45xw==}
1813
1990
peerDependencies:
1814
1991
react-native: ^0.0.0-0 || >=0.65 <1.0
1815
1992
1816
1816
-
'@react-native-picker/picker@2.11.0':
1817
1817
-
resolution: {integrity: sha512-QuZU6gbxmOID5zZgd/H90NgBnbJ3VV6qVzp6c7/dDrmWdX8S0X5YFYgDcQFjE3dRen9wB9FWnj2VVdPU64adSg==}
1993
1993
+
'@react-native-picker/picker@2.11.2':
1994
1994
+
resolution: {integrity: sha512-2zyFdW4jgHjF+NeuDZ4nl3hJ+8suey69bI3yljqhNyowfklW2NwNrdDUaJ2iwtPCpk2pt7834aPF8TI6iyZRhA==}
1818
1995
peerDependencies:
1819
1996
react: '*'
1820
1997
react-native: '*'
1821
1998
1822
1822
-
'@react-native/assets-registry@0.79.6':
1823
1823
-
resolution: {integrity: sha512-UVSP1224PWg0X+mRlZNftV5xQwZGfawhivuW8fGgxNK9MS/U84xZ+16lkqcPh1ank6MOt239lIWHQ1S33CHgqA==}
1824
1824
-
engines: {node: '>=18'}
1825
1825
-
1826
1826
-
'@react-native/babel-plugin-codegen@0.79.5':
1827
1827
-
resolution: {integrity: sha512-Rt/imdfqXihD/sn0xnV4flxxb1aLLjPtMF1QleQjEhJsTUPpH4TFlfOpoCvsrXoDl4OIcB1k4FVM24Ez92zf5w==}
1828
1828
-
engines: {node: '>=18'}
1999
1999
+
'@react-native/assets-registry@0.81.4':
2000
2000
+
resolution: {integrity: sha512-AMcDadefBIjD10BRqkWw+W/VdvXEomR6aEZ0fhQRAv7igrBzb4PTn4vHKYg+sUK0e3wa74kcMy2DLc/HtnGcMA==}
2001
2001
+
engines: {node: '>= 20.19.4'}
1829
2002
1830
1830
-
'@react-native/babel-preset@0.79.5':
1831
1831
-
resolution: {integrity: sha512-GDUYIWslMLbdJHEgKNfrOzXk8EDKxKzbwmBXUugoiSlr6TyepVZsj3GZDLEFarOcTwH1EXXHJsixihk8DCRQDA==}
1832
1832
-
engines: {node: '>=18'}
1833
1833
-
peerDependencies:
1834
1834
-
'@babel/core': '*'
2003
2003
+
'@react-native/babel-plugin-codegen@0.81.4':
2004
2004
+
resolution: {integrity: sha512-6ztXf2Tl2iWznyI/Da/N2Eqymt0Mnn69GCLnEFxFbNdk0HxHPZBNWU9shTXhsLWOL7HATSqwg/bB1+3kY1q+mA==}
2005
2005
+
engines: {node: '>= 20.19.4'}
1835
2006
1836
1836
-
'@react-native/codegen@0.79.5':
1837
1837
-
resolution: {integrity: sha512-FO5U1R525A1IFpJjy+KVznEinAgcs3u7IbnbRJUG9IH/MBXi2lEU2LtN+JarJ81MCfW4V2p0pg6t/3RGHFRrlQ==}
1838
1838
-
engines: {node: '>=18'}
2007
2007
+
'@react-native/babel-preset@0.81.4':
2008
2008
+
resolution: {integrity: sha512-VYj0c/cTjQJn/RJ5G6P0L9wuYSbU9yGbPYDHCKstlQZQWkk+L9V8ZDbxdJBTIei9Xl3KPQ1odQ4QaeW+4v+AZg==}
2009
2009
+
engines: {node: '>= 20.19.4'}
1839
2010
peerDependencies:
1840
2011
'@babel/core': '*'
1841
2012
1842
1842
-
'@react-native/codegen@0.79.6':
1843
1843
-
resolution: {integrity: sha512-iRBX8Lgbqypwnfba7s6opeUwVyaR23mowh9ILw7EcT2oLz3RqMmjJdrbVpWhGSMGq2qkPfqAH7bhO8C7O+xfjQ==}
1844
1844
-
engines: {node: '>=18'}
2013
2013
+
'@react-native/codegen@0.81.4':
2014
2014
+
resolution: {integrity: sha512-LWTGUTzFu+qOQnvkzBP52B90Ym3stZT8IFCzzUrppz8Iwglg83FCtDZAR4yLHI29VY/x/+pkcWAMCl3739XHdw==}
2015
2015
+
engines: {node: '>= 20.19.4'}
1845
2016
peerDependencies:
1846
2017
'@babel/core': '*'
1847
2018
1848
1848
-
'@react-native/community-cli-plugin@0.79.6':
1849
1849
-
resolution: {integrity: sha512-ZHVst9vByGsegeaddkD2YbZ6NvYb4n3pD9H7Pit94u+NlByq2uBJghoOjT6EKqg+UVl8tLRdi88cU2pDPwdHqA==}
1850
1850
-
engines: {node: '>=18'}
2019
2019
+
'@react-native/community-cli-plugin@0.81.4':
2020
2020
+
resolution: {integrity: sha512-8mpnvfcLcnVh+t1ok6V9eozWo8Ut+TZhz8ylJ6gF9d6q9EGDQX6s8jenan5Yv/pzN4vQEKI4ib2pTf/FELw+SA==}
2021
2021
+
engines: {node: '>= 20.19.4'}
1851
2022
peerDependencies:
1852
2023
'@react-native-community/cli': '*'
2024
2024
+
'@react-native/metro-config': '*'
1853
2025
peerDependenciesMeta:
1854
2026
'@react-native-community/cli':
1855
2027
optional: true
1856
1856
-
1857
1857
-
'@react-native/debugger-frontend@0.79.5':
1858
1858
-
resolution: {integrity: sha512-WQ49TRpCwhgUYo5/n+6GGykXmnumpOkl4Lr2l2o2buWU9qPOwoiBqJAtmWEXsAug4ciw3eLiVfthn5ufs0VB0A==}
1859
1859
-
engines: {node: '>=18'}
1860
1860
-
1861
1861
-
'@react-native/debugger-frontend@0.79.6':
1862
1862
-
resolution: {integrity: sha512-lIK/KkaH7ueM22bLO0YNaQwZbT/oeqhaghOvmZacaNVbJR1Cdh/XAqjT8FgCS+7PUnbxA8B55NYNKGZG3O2pYw==}
1863
1863
-
engines: {node: '>=18'}
2028
2028
+
'@react-native/metro-config':
2029
2029
+
optional: true
1864
2030
1865
1865
-
'@react-native/dev-middleware@0.79.5':
1866
1866
-
resolution: {integrity: sha512-U7r9M/SEktOCP/0uS6jXMHmYjj4ESfYCkNAenBjFjjsRWekiHE+U/vRMeO+fG9gq4UCcBAUISClkQCowlftYBw==}
1867
1867
-
engines: {node: '>=18'}
2031
2031
+
'@react-native/debugger-frontend@0.81.4':
2032
2032
+
resolution: {integrity: sha512-SU05w1wD0nKdQFcuNC9D6De0ITnINCi8MEnx9RsTD2e4wN83ukoC7FpXaPCYyP6+VjFt5tUKDPgP1O7iaNXCqg==}
2033
2033
+
engines: {node: '>= 20.19.4'}
1868
2034
1869
1869
-
'@react-native/dev-middleware@0.79.6':
1870
1870
-
resolution: {integrity: sha512-BK3GZBa9c7XSNR27EDRtxrgyyA3/mf1j3/y+mPk7Ac0Myu85YNrXnC9g3mL5Ytwo0g58TKrAIgs1fF2Q5Mn6mQ==}
1871
1871
-
engines: {node: '>=18'}
2035
2035
+
'@react-native/dev-middleware@0.81.4':
2036
2036
+
resolution: {integrity: sha512-hu1Wu5R28FT7nHXs2wWXvQ++7W7zq5GPY83llajgPlYKznyPLAY/7bArc5rAzNB7b0kwnlaoPQKlvD/VP9LZug==}
2037
2037
+
engines: {node: '>= 20.19.4'}
1872
2038
1873
1873
-
'@react-native/gradle-plugin@0.79.6':
1874
1874
-
resolution: {integrity: sha512-C5odetI6py3CSELeZEVz+i00M+OJuFZXYnjVD4JyvpLn462GesHRh+Se8mSkU5QSaz9cnpMnyFLJAx05dokWbA==}
1875
1875
-
engines: {node: '>=18'}
2039
2039
+
'@react-native/gradle-plugin@0.81.4':
2040
2040
+
resolution: {integrity: sha512-T7fPcQvDDCSusZFVSg6H1oVDKb/NnVYLnsqkcHsAF2C2KGXyo3J7slH/tJAwNfj/7EOA2OgcWxfC1frgn9TQvw==}
2041
2041
+
engines: {node: '>= 20.19.4'}
1876
2042
1877
1877
-
'@react-native/js-polyfills@0.79.6':
1878
1878
-
resolution: {integrity: sha512-6wOaBh1namYj9JlCNgX2ILeGUIwc6OP6MWe3Y5jge7Xz9fVpRqWQk88Q5Y9VrAtTMTcxoX3CvhrfRr3tGtSfQw==}
1879
1879
-
engines: {node: '>=18'}
2043
2043
+
'@react-native/js-polyfills@0.81.4':
2044
2044
+
resolution: {integrity: sha512-sr42FaypKXJHMVHhgSbu2f/ZJfrLzgaoQ+HdpRvKEiEh2mhFf6XzZwecyLBvWqf2pMPZa+CpPfNPiejXjKEy8w==}
2045
2045
+
engines: {node: '>= 20.19.4'}
1880
2046
1881
2047
'@react-native/normalize-colors@0.74.88':
1882
2048
resolution: {integrity: sha512-He5oTwPBxvXrxJ91dZzpxR7P+VYmc9IkJfhuH8zUiU50ckrt+xWNjtVugPdUv4LuVjmZ36Vk2EX8bl1gVn2dVA==}
1883
2049
1884
1884
-
'@react-native/normalize-colors@0.79.2':
1885
1885
-
resolution: {integrity: sha512-+b+GNrupWrWw1okHnEENz63j7NSMqhKeFMOyzYLBwKcprG8fqJQhDIGXfizKdxeIa5NnGSAevKL1Ev1zJ56X8w==}
2050
2050
+
'@react-native/normalize-colors@0.81.4':
2051
2051
+
resolution: {integrity: sha512-9nRRHO1H+tcFqjb9gAM105Urtgcanbta2tuqCVY0NATHeFPDEAB7gPyiLxCHKMi1NbhP6TH0kxgSWXKZl1cyRg==}
1886
2052
1887
1887
-
'@react-native/normalize-colors@0.79.5':
1888
1888
-
resolution: {integrity: sha512-nGXMNMclZgzLUxijQQ38Dm3IAEhgxuySAWQHnljFtfB0JdaMwpe0Ox9H7Tp2OgrEA+EMEv+Od9ElKlHwGKmmvQ==}
2053
2053
+
'@react-native/typescript-config@0.76.9':
2054
2054
+
resolution: {integrity: sha512-68xGswpZOrCvDd1Wu6H7ZdluIDmNbN0Uq8RVnm+IQMnYx90fVHL+iNW4hClgoY/TIcsWnQQL6shES4n/1kz/fg==}
1889
2055
1890
1890
-
'@react-native/normalize-colors@0.79.6':
1891
1891
-
resolution: {integrity: sha512-0v2/ruY7eeKun4BeKu+GcfO+SHBdl0LJn4ZFzTzjHdWES0Cn+ONqKljYaIv8p9MV2Hx/kcdEvbY4lWI34jC/mQ==}
1892
1892
-
1893
1893
-
'@react-native/typescript-config@0.76.5':
1894
1894
-
resolution: {integrity: sha512-dRbY4XQTUUxR5Oq+S+2/5JQVU6WL0qvNnAz51jiXllC+hp5L4bljSxlzaj5CJ9vzGNFzm56m5Y9Q6MltoIU4Cw==}
1895
1895
-
1896
1896
-
'@react-native/virtualized-lists@0.79.6':
1897
1897
-
resolution: {integrity: sha512-khA/Hrbb+rB68YUHrLubfLgMOD9up0glJhw25UE3Kntj32YDyuO0Tqc81ryNTcCekFKJ8XrAaEjcfPg81zBGPw==}
1898
1898
-
engines: {node: '>=18'}
2056
2056
+
'@react-native/virtualized-lists@0.81.4':
2057
2057
+
resolution: {integrity: sha512-hBM+rMyL6Wm1Q4f/WpqGsaCojKSNUBqAXLABNGoWm1vabZ7cSnARMxBvA/2vo3hLcoR4v7zDK8tkKm9+O0LjVA==}
2058
2058
+
engines: {node: '>= 20.19.4'}
1899
2059
peerDependencies:
1900
1900
-
'@types/react': ^19.0.0
2060
2060
+
'@types/react': ^19.1.0
1901
2061
react: '*'
1902
2062
react-native: '*'
1903
2063
peerDependenciesMeta:
1904
2064
'@types/react':
1905
2065
optional: true
1906
2066
1907
1907
-
'@react-navigation/bottom-tabs@7.3.14':
1908
1908
-
resolution: {integrity: sha512-s2qinJggS2HYZdCOey9A+fN+bNpWeEKwiL/FjAVOTcv+uofxPWN6CtEZUZGPEjfRjis/srURBmCmpNZSI6sQ9Q==}
2067
2067
+
'@react-navigation/bottom-tabs@7.4.8':
2068
2068
+
resolution: {integrity: sha512-W85T9f5sPA2zNnkxBO0PF0Jg9CRAMYqD9hY20dAhuVM5I+qiCqhW7qLveK59mlbtdXuGmieit6FK3inKmXzL7A==}
1909
2069
peerDependencies:
1910
1910
-
'@react-navigation/native': ^7.1.10
2070
2070
+
'@react-navigation/native': ^7.1.18
1911
2071
react: '>= 18.2.0'
1912
2072
react-native: '*'
1913
2073
react-native-safe-area-context: '>= 4.0.0'
1914
2074
react-native-screens: '>= 4.0.0'
1915
2075
1916
1916
-
'@react-navigation/core@7.10.0':
1917
1917
-
resolution: {integrity: sha512-qZBA5gGm+9liT4+EHk+kl9apwvqh7HqhLF1XeX6SQRmC/n2QI0u1B8OevKc+EPUDEM9Od15IuwT/GRbSs7/Umw==}
2076
2076
+
'@react-navigation/core@7.12.4':
2077
2077
+
resolution: {integrity: sha512-xLFho76FA7v500XID5z/8YfGTvjQPw7/fXsq4BIrVSqetNe/o/v+KAocEw4ots6kyv3XvSTyiWKh2g3pN6xZ9Q==}
1918
2078
peerDependencies:
1919
2079
react: '>= 18.2.0'
1920
2080
1921
1921
-
'@react-navigation/elements@2.4.3':
1922
1922
-
resolution: {integrity: sha512-psoNmnZ0DQIt9nxxPITVLtYW04PGCAfnmd/Pcd3yhiBs93aj+HYKH+SDZDpUnXMf3BN7Wvo4+jPI+/Xjqb+m9w==}
2081
2081
+
'@react-navigation/elements@2.6.5':
2082
2082
+
resolution: {integrity: sha512-HOaekvFeoqKyaSKP2hakL7OUnw0jIhk/1wMjcovUKblT76LMTumZpriqsc30m/Vnyy1a8zgp4VsuA1xftcalgQ==}
1923
2083
peerDependencies:
1924
2084
'@react-native-masked-view/masked-view': '>= 0.2.0'
1925
1925
-
'@react-navigation/native': ^7.1.10
2085
2085
+
'@react-navigation/native': ^7.1.18
1926
2086
react: '>= 18.2.0'
1927
2087
react-native: '*'
1928
2088
react-native-safe-area-context: '>= 4.0.0'
···
1930
2090
'@react-native-masked-view/masked-view':
1931
2091
optional: true
1932
2092
1933
1933
-
'@react-navigation/native-stack@7.3.14':
1934
1934
-
resolution: {integrity: sha512-45Sf7ReqSCIySXS5nrKtLGmNlFXm5x+u32YQMwKDONCqVGOBCfo4ryKqeQq1EMJ7Py6IDyOwHMhA+jhNOxnfPw==}
2093
2093
+
'@react-navigation/native-stack@7.3.27':
2094
2094
+
resolution: {integrity: sha512-bbbud0pT63tGh706hQD/A3Z9gF1O2HtQ0dJqaiYzHzPy9wSOi82i721530tJkmccevAemUrZbEeEC5mxVo1DzQ==}
1935
2095
peerDependencies:
1936
1936
-
'@react-navigation/native': ^7.1.10
2096
2096
+
'@react-navigation/native': ^7.1.18
1937
2097
react: '>= 18.2.0'
1938
2098
react-native: '*'
1939
2099
react-native-safe-area-context: '>= 4.0.0'
1940
2100
react-native-screens: '>= 4.0.0'
1941
2101
1942
1942
-
'@react-navigation/native@7.1.10':
1943
1943
-
resolution: {integrity: sha512-Ug4IML0DkAxZTMF/E7lyyLXSclkGAYElY2cxZWITwfBjtlVeda0NjsdnTWY5EGjnd7bwvhTIUC+CO6qSlrDn5A==}
2102
2102
+
'@react-navigation/native@7.1.18':
2103
2103
+
resolution: {integrity: sha512-DZgd6860dxcq3YX7UzIXeBr6m3UgXvo9acxp5jiJyIZXdR00Br9JwVkO7e0bUeTA2d3Z8dsmtAR84Y86NnH64Q==}
1944
2104
peerDependencies:
1945
2105
react: '>= 18.2.0'
1946
2106
react-native: '*'
1947
2107
1948
1948
-
'@react-navigation/routers@7.4.0':
1949
1949
-
resolution: {integrity: sha512-th5THnuWKJlmr7GGHiicy979di11ycDWub9iIXbEDvQwmwmsRzppmVbfs2nD8bC/MgyMgqWu/gxfys+HqN+kcw==}
2108
2108
+
'@react-navigation/routers@7.5.1':
2109
2109
+
resolution: {integrity: sha512-pxipMW/iEBSUrjxz2cDD7fNwkqR4xoi0E/PcfTQGCcdJwLoaxzab5kSadBLj1MTJyT0YRrOXL9umHpXtp+Dv4w==}
1950
2110
1951
1951
-
'@rn-primitives/avatar@1.1.0':
1952
1952
-
resolution: {integrity: sha512-GqhsQHeY7OP9oe3MZkl1Z0IbhIiuQX4+FxafoRK/Aes2m5386nMGK0NBaZBJy06WnFQBN52C8yq+LYv27sA86A==}
2111
2111
+
'@rn-primitives/avatar@1.2.0':
2112
2112
+
resolution: {integrity: sha512-ic029KaJRADdjmjPzpaSaZ9QrtgGF8DnAA7TcQ/gYqUfLXjkbfzsjARKv7NtEoJLjWAcjIAK6R8JkcbMfPtYig==}
1953
2113
peerDependencies:
1954
2114
react: '*'
1955
2115
react-native: '*'
···
1960
2120
react-native-web:
1961
2121
optional: true
1962
2122
1963
1963
-
'@rn-primitives/hooks@1.1.0':
1964
1964
-
resolution: {integrity: sha512-+WP4i395UDXZueL6PE0PiyLgheD4EbZ0ONgVaHjbrWjGKalfXuCyVNeaN79y3Aw9sY+SYQm7P9RckBAgi0C5xQ==}
2123
2123
+
'@rn-primitives/hooks@1.3.0':
2124
2124
+
resolution: {integrity: sha512-BR97reSu7uVDpyMeQdRJHT0w8KdS6jdYnOL6xQtqS2q3H6N7vXBlX4LFERqJZphD+aziJFIAJ3HJF1vtt6XlpQ==}
1965
2125
peerDependencies:
1966
2126
react: '*'
1967
2127
react-native: '*'
···
1972
2132
react-native-web:
1973
2133
optional: true
1974
2134
1975
1975
-
'@rn-primitives/hover-card@1.1.0':
1976
1976
-
resolution: {integrity: sha512-djnts2OqZPNup2n6gnvO+ndOcDNBBeMVzf1U1kp3V2DNsk+63D8/gj8kBygMk33/EzjtxyvIIZrqGe1/8HrGlw==}
2135
2135
+
'@rn-primitives/hover-card@1.2.0':
2136
2136
+
resolution: {integrity: sha512-YesqV3rEIhvsarA1Aq6pmkNlmQn5rWpmjHP4s4JIrceaQjSwl9Rmnvzp7qHg0CN3AOd803hNyplMn9vn8Z3g6Q==}
1977
2137
peerDependencies:
1978
2138
'@rn-primitives/portal': '*'
1979
2139
react: '*'
···
1985
2145
react-native-web:
1986
2146
optional: true
1987
2147
1988
1988
-
'@rn-primitives/popover@1.1.0':
1989
1989
-
resolution: {integrity: sha512-2LU6sGdITvmRtKJwfGDHZ5pFz0eOySlw2lJERqrfAmMiiYWhq4WItkBh386u/IzlAyAoPVQVDmIrYgQVH1rkfA==}
2148
2148
+
'@rn-primitives/popover@1.2.0':
2149
2149
+
resolution: {integrity: sha512-QJ2T+RcF1FyTQy58Nz8Bwy5lnan5Rt7xQPl8rB2n7DBCGOnZNhEub5LoHm+gjmskGo9t1JyNKoEAD7I4j/7jQQ==}
1990
2150
peerDependencies:
1991
2151
'@rn-primitives/portal': '*'
1992
2152
react: '*'
···
2010
2170
react-native-web:
2011
2171
optional: true
2012
2172
2013
2013
-
'@rn-primitives/progress@1.1.0':
2014
2014
-
resolution: {integrity: sha512-TeiQQhH983UkueOybjia4qy3JAI9qsx2s3Tge3ldQpe7K00ql8mDDhand+LR4/uEHtQHjLI6Z/rIGrh7Xdld/Q==}
2173
2173
+
'@rn-primitives/progress@1.2.0':
2174
2174
+
resolution: {integrity: sha512-bbO4WGSNAd2idYDW0ma4xCX9UFOjNK3U4F4hLRhMKglz3c/QVYfpKvlGQ0Y0d7kpelA7MQizvFeqGGYfxSuisw==}
2015
2175
peerDependencies:
2016
2176
react: '*'
2017
2177
react-native: '*'
···
2022
2182
react-native-web:
2023
2183
optional: true
2024
2184
2025
2025
-
'@rn-primitives/slot@1.1.0':
2026
2026
-
resolution: {integrity: sha512-/6LkEPMoGGyJiCAYo3MTCy9letbH6SIm5Dw6wal/ypq3Jvar9llYJstIP2KSZNhx3PmZMN1a581KVgNZ2Jyt5g==}
2185
2185
+
'@rn-primitives/slot@1.2.0':
2186
2186
+
resolution: {integrity: sha512-cpbn+JLjSeq3wcA4uqgFsUimMrWYWx2Ks7r5rkwd1ds1utxynsGkLOKpYVQkATwWrYhtcoF1raxIKEqXuMN+/w==}
2027
2187
peerDependencies:
2028
2188
react: '*'
2029
2189
react-native: '*'
···
2034
2194
react-native-web:
2035
2195
optional: true
2036
2196
2037
2037
-
'@rn-primitives/tooltip@1.1.0':
2038
2038
-
resolution: {integrity: sha512-uNMLCqDOueYv2//nh19RiYqYRdytn86K+2rmBStz1u7PFbsqfUJE1Q3FxKm/yvFXK2loHJAoHkzRQCClqA3InA==}
2197
2197
+
'@rn-primitives/tooltip@1.2.0':
2198
2198
+
resolution: {integrity: sha512-Fn1Y/maW1o64QI+nmBj2jBI/KdCEXv8kVGbDjjDFI68KUxDjuig/hACLiD7fEbLBhZqB/QnHUSRsnPUUOOVGdA==}
2039
2199
peerDependencies:
2040
2200
'@rn-primitives/portal': '*'
2041
2201
react: '*'
···
2047
2207
react-native-web:
2048
2208
optional: true
2049
2209
2050
2050
-
'@rn-primitives/types@1.1.0':
2051
2051
-
resolution: {integrity: sha512-duS4La965KsVVAeytcSFDJUafw6ZScvejgxlFkwqzW06pDBRMxwfunmZmf3JZ82P/2xaEVPIGseeyblertC/+g==}
2210
2210
+
'@rn-primitives/types@1.2.0':
2211
2211
+
resolution: {integrity: sha512-b+6zKgdKVqAfaFPSfhwlQL0dnPQXPpW890m3eguC0VDI1eOsoEvUfVb6lmgH4bum9MmI0xymq4tOUI/fsKLoCQ==}
2052
2212
peerDependencies:
2053
2213
react: '*'
2054
2214
react-native: '*'
···
2127
2287
'@types/eslint@9.6.1':
2128
2288
resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
2129
2289
2130
2130
-
'@types/estree@1.0.6':
2131
2131
-
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
2290
2290
+
'@types/estree@1.0.8':
2291
2291
+
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
2132
2292
2133
2293
'@types/graceful-fs@4.1.9':
2134
2294
resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
···
2154
2314
'@types/json5@0.0.29':
2155
2315
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
2156
2316
2157
2157
-
'@types/node@20.17.10':
2158
2158
-
resolution: {integrity: sha512-/jrvh5h6NXhEauFFexRin69nA0uHJ5gwk4iDivp/DeoEua3uwCUto6PC86IpRITBOs4+6i2I56K5x5b6WYGXHA==}
2317
2317
+
'@types/node@20.19.19':
2318
2318
+
resolution: {integrity: sha512-pb1Uqj5WJP7wrcbLU7Ru4QtA0+3kAXrkutGiD26wUKzSMgNNaPARTUDQmElUXp64kh3cWdou3Q0C7qwwxqSFmg==}
2159
2319
2160
2160
-
'@types/node@22.10.2':
2161
2161
-
resolution: {integrity: sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==}
2320
2320
+
'@types/node@22.18.8':
2321
2321
+
resolution: {integrity: sha512-pAZSHMiagDR7cARo/cch1f3rXy0AEXwsVsVH09FcyeJVAzCnGgmYis7P3JidtTUjyadhTeSo8TgRPswstghDaw==}
2162
2322
2163
2163
-
'@types/react-dom@18.3.1':
2164
2164
-
resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==}
2323
2323
+
'@types/react-dom@19.1.11':
2324
2324
+
resolution: {integrity: sha512-3BKc/yGdNTYQVVw4idqHtSOcFsgGuBbMveKCOgF8wQ5QtrYOc3jDIlzg3jef04zcXFIHLelyGlj0T+BJ8+KN+w==}
2325
2325
+
peerDependencies:
2326
2326
+
'@types/react': ^19.0.0
2165
2327
2166
2166
-
'@types/react@19.0.14':
2167
2167
-
resolution: {integrity: sha512-ixLZ7zG7j1fM0DijL9hDArwhwcCb4vqmePgwtV0GfnkHRSCUEv4LvzarcTdhoqgyMznUx/EhoTUv31CKZzkQlw==}
2328
2328
+
'@types/react-dom@19.2.0':
2329
2329
+
resolution: {integrity: sha512-brtBs0MnE9SMx7px208g39lRmC5uHZs96caOJfTjFcYSLHNamvaSMfJNagChVNkup2SdtOxKX1FDBkRSJe1ZAg==}
2330
2330
+
peerDependencies:
2331
2331
+
'@types/react': ^19.2.0
2332
2332
+
2333
2333
+
'@types/react@19.1.17':
2334
2334
+
resolution: {integrity: sha512-Qec1E3mhALmaspIrhWt9jkQMNdw6bReVu64mjvhbhq2NFPftLPVr+l1SZgmw/66WwBNpDh7ao5AT6gF5v41PFA==}
2335
2335
+
2336
2336
+
'@types/react@19.2.0':
2337
2337
+
resolution: {integrity: sha512-1LOH8xovvsKsCBq1wnT4ntDUdCJKmnEakhsuoUSy6ExlHCkGP2hqnatagYTgFk6oeL0VU31u7SNjunPN+GchtA==}
2168
2338
2169
2339
'@types/stack-utils@2.0.3':
2170
2340
resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
···
2178
2348
'@types/yargs@17.0.33':
2179
2349
resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
2180
2350
2181
2181
-
'@typescript-eslint/eslint-plugin@8.19.0':
2182
2182
-
resolution: {integrity: sha512-NggSaEZCdSrFddbctrVjkVZvFC6KGfKfNK0CU7mNK/iKHGKbzT4Wmgm08dKpcZECBu9f5FypndoMyRHkdqfT1Q==}
2183
2183
-
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2351
2351
+
'@typescript-eslint/eslint-plugin@7.18.0':
2352
2352
+
resolution: {integrity: sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==}
2353
2353
+
engines: {node: ^18.18.0 || >=20.0.0}
2184
2354
peerDependencies:
2185
2185
-
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
2186
2186
-
eslint: ^8.57.0 || ^9.0.0
2187
2187
-
typescript: '>=4.8.4 <5.8.0'
2355
2355
+
'@typescript-eslint/parser': ^7.0.0
2356
2356
+
eslint: ^8.56.0
2357
2357
+
typescript: '*'
2358
2358
+
peerDependenciesMeta:
2359
2359
+
typescript:
2360
2360
+
optional: true
2188
2361
2189
2189
-
'@typescript-eslint/parser@8.19.0':
2190
2190
-
resolution: {integrity: sha512-6M8taKyOETY1TKHp0x8ndycipTVgmp4xtg5QpEZzXxDhNvvHOJi5rLRkLr8SK3jTgD5l4fTlvBiRdfsuWydxBw==}
2191
2191
-
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2362
2362
+
'@typescript-eslint/parser@7.18.0':
2363
2363
+
resolution: {integrity: sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==}
2364
2364
+
engines: {node: ^18.18.0 || >=20.0.0}
2192
2365
peerDependencies:
2193
2193
-
eslint: ^8.57.0 || ^9.0.0
2194
2194
-
typescript: '>=4.8.4 <5.8.0'
2366
2366
+
eslint: ^8.56.0
2367
2367
+
typescript: '*'
2368
2368
+
peerDependenciesMeta:
2369
2369
+
typescript:
2370
2370
+
optional: true
2195
2371
2196
2196
-
'@typescript-eslint/project-service@8.33.1':
2197
2197
-
resolution: {integrity: sha512-DZR0efeNklDIHHGRpMpR5gJITQpu6tLr9lDJnKdONTC7vvzOlLAG/wcfxcdxEWrbiZApcoBCzXqU/Z458Za5Iw==}
2372
2372
+
'@typescript-eslint/project-service@8.45.0':
2373
2373
+
resolution: {integrity: sha512-3pcVHwMG/iA8afdGLMuTibGR7pDsn9RjDev6CCB+naRsSYs2pns5QbinF4Xqw6YC/Sj3lMrm/Im0eMfaa61WUg==}
2198
2374
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2199
2375
peerDependencies:
2200
2200
-
typescript: '>=4.8.4 <5.9.0'
2376
2376
+
typescript: '>=4.8.4 <6.0.0'
2201
2377
2202
2202
-
'@typescript-eslint/scope-manager@8.19.0':
2203
2203
-
resolution: {integrity: sha512-hkoJiKQS3GQ13TSMEiuNmSCvhz7ujyqD1x3ShbaETATHrck+9RaDdUbt+osXaUuns9OFwrDTTrjtwsU8gJyyRA==}
2204
2204
-
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2378
2378
+
'@typescript-eslint/scope-manager@7.18.0':
2379
2379
+
resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==}
2380
2380
+
engines: {node: ^18.18.0 || >=20.0.0}
2205
2381
2206
2206
-
'@typescript-eslint/scope-manager@8.33.1':
2207
2207
-
resolution: {integrity: sha512-dM4UBtgmzHR9bS0Rv09JST0RcHYearoEoo3pG5B6GoTR9XcyeqX87FEhPo+5kTvVfKCvfHaHrcgeJQc6mrDKrA==}
2382
2382
+
'@typescript-eslint/scope-manager@8.45.0':
2383
2383
+
resolution: {integrity: sha512-clmm8XSNj/1dGvJeO6VGH7EUSeA0FMs+5au/u3lrA3KfG8iJ4u8ym9/j2tTEoacAffdW1TVUzXO30W1JTJS7dA==}
2208
2384
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2209
2385
2210
2210
-
'@typescript-eslint/tsconfig-utils@8.33.1':
2211
2211
-
resolution: {integrity: sha512-STAQsGYbHCF0/e+ShUQ4EatXQ7ceh3fBCXkNU7/MZVKulrlq1usH7t2FhxvCpuCi5O5oi1vmVaAjrGeL71OK1g==}
2386
2386
+
'@typescript-eslint/tsconfig-utils@8.45.0':
2387
2387
+
resolution: {integrity: sha512-aFdr+c37sc+jqNMGhH+ajxPXwjv9UtFZk79k8pLoJ6p4y0snmYpPA52GuWHgt2ZF4gRRW6odsEj41uZLojDt5w==}
2212
2388
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2213
2389
peerDependencies:
2214
2214
-
typescript: '>=4.8.4 <5.9.0'
2390
2390
+
typescript: '>=4.8.4 <6.0.0'
2215
2391
2216
2216
-
'@typescript-eslint/type-utils@8.19.0':
2217
2217
-
resolution: {integrity: sha512-TZs0I0OSbd5Aza4qAMpp1cdCYVnER94IziudE3JU328YUHgWu9gwiwhag+fuLeJ2LkWLXI+F/182TbG+JaBdTg==}
2218
2218
-
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2392
2392
+
'@typescript-eslint/type-utils@7.18.0':
2393
2393
+
resolution: {integrity: sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==}
2394
2394
+
engines: {node: ^18.18.0 || >=20.0.0}
2219
2395
peerDependencies:
2220
2220
-
eslint: ^8.57.0 || ^9.0.0
2221
2221
-
typescript: '>=4.8.4 <5.8.0'
2396
2396
+
eslint: ^8.56.0
2397
2397
+
typescript: '*'
2398
2398
+
peerDependenciesMeta:
2399
2399
+
typescript:
2400
2400
+
optional: true
2222
2401
2223
2223
-
'@typescript-eslint/types@8.19.0':
2224
2224
-
resolution: {integrity: sha512-8XQ4Ss7G9WX8oaYvD4OOLCjIQYgRQxO+qCiR2V2s2GxI9AUpo7riNwo6jDhKtTcaJjT8PY54j2Yb33kWtSJsmA==}
2225
2225
-
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2402
2402
+
'@typescript-eslint/types@7.18.0':
2403
2403
+
resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==}
2404
2404
+
engines: {node: ^18.18.0 || >=20.0.0}
2226
2405
2227
2227
-
'@typescript-eslint/types@8.33.1':
2228
2228
-
resolution: {integrity: sha512-xid1WfizGhy/TKMTwhtVOgalHwPtV8T32MS9MaH50Cwvz6x6YqRIPdD2WvW0XaqOzTV9p5xdLY0h/ZusU5Lokg==}
2406
2406
+
'@typescript-eslint/types@8.45.0':
2407
2407
+
resolution: {integrity: sha512-WugXLuOIq67BMgQInIxxnsSyRLFxdkJEJu8r4ngLR56q/4Q5LrbfkFRH27vMTjxEK8Pyz7QfzuZe/G15qQnVRA==}
2229
2408
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2230
2409
2231
2231
-
'@typescript-eslint/typescript-estree@8.19.0':
2232
2232
-
resolution: {integrity: sha512-WW9PpDaLIFW9LCbucMSdYUuGeFUz1OkWYS/5fwZwTA+l2RwlWFdJvReQqMUMBw4yJWJOfqd7An9uwut2Oj8sLw==}
2233
2233
-
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2410
2410
+
'@typescript-eslint/typescript-estree@7.18.0':
2411
2411
+
resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==}
2412
2412
+
engines: {node: ^18.18.0 || >=20.0.0}
2234
2413
peerDependencies:
2235
2235
-
typescript: '>=4.8.4 <5.8.0'
2414
2414
+
typescript: '*'
2415
2415
+
peerDependenciesMeta:
2416
2416
+
typescript:
2417
2417
+
optional: true
2236
2418
2237
2237
-
'@typescript-eslint/typescript-estree@8.33.1':
2238
2238
-
resolution: {integrity: sha512-+s9LYcT8LWjdYWu7IWs7FvUxpQ/DGkdjZeE/GGulHvv8rvYwQvVaUZ6DE+j5x/prADUgSbbCWZ2nPI3usuVeOA==}
2419
2419
+
'@typescript-eslint/typescript-estree@8.45.0':
2420
2420
+
resolution: {integrity: sha512-GfE1NfVbLam6XQ0LcERKwdTTPlLvHvXXhOeUGC1OXi4eQBoyy1iVsW+uzJ/J9jtCz6/7GCQ9MtrQ0fml/jWCnA==}
2239
2421
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2240
2422
peerDependencies:
2241
2241
-
typescript: '>=4.8.4 <5.9.0'
2423
2423
+
typescript: '>=4.8.4 <6.0.0'
2242
2424
2243
2243
-
'@typescript-eslint/utils@8.19.0':
2244
2244
-
resolution: {integrity: sha512-PTBG+0oEMPH9jCZlfg07LCB2nYI0I317yyvXGfxnvGvw4SHIOuRnQ3kadyyXY6tGdChusIHIbM5zfIbp4M6tCg==}
2245
2245
-
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2425
2425
+
'@typescript-eslint/utils@7.18.0':
2426
2426
+
resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==}
2427
2427
+
engines: {node: ^18.18.0 || >=20.0.0}
2246
2428
peerDependencies:
2247
2247
-
eslint: ^8.57.0 || ^9.0.0
2248
2248
-
typescript: '>=4.8.4 <5.8.0'
2429
2429
+
eslint: ^8.56.0
2249
2430
2250
2250
-
'@typescript-eslint/utils@8.33.1':
2251
2251
-
resolution: {integrity: sha512-52HaBiEQUaRYqAXpfzWSR2U3gxk92Kw006+xZpElaPMg3C4PgM+A5LqwoQI1f9E5aZ/qlxAZxzm42WX+vn92SQ==}
2431
2431
+
'@typescript-eslint/utils@8.45.0':
2432
2432
+
resolution: {integrity: sha512-bxi1ht+tLYg4+XV2knz/F7RVhU0k6VrSMc9sb8DQ6fyCTrGQLHfo7lDtN0QJjZjKkLA2ThrKuCdHEvLReqtIGg==}
2252
2433
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2253
2434
peerDependencies:
2254
2435
eslint: ^8.57.0 || ^9.0.0
2255
2255
-
typescript: '>=4.8.4 <5.9.0'
2436
2436
+
typescript: '>=4.8.4 <6.0.0'
2256
2437
2257
2257
-
'@typescript-eslint/visitor-keys@8.19.0':
2258
2258
-
resolution: {integrity: sha512-mCFtBbFBJDCNCWUl5y6sZSCHXw1DEFEk3c/M3nRK2a4XUB8StGFtmcEMizdjKuBzB6e/smJAAWYug3VrdLMr1w==}
2259
2259
-
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2438
2438
+
'@typescript-eslint/visitor-keys@7.18.0':
2439
2439
+
resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==}
2440
2440
+
engines: {node: ^18.18.0 || >=20.0.0}
2260
2441
2261
2261
-
'@typescript-eslint/visitor-keys@8.33.1':
2262
2262
-
resolution: {integrity: sha512-3i8NrFcZeeDHJ+7ZUuDkGT+UHq+XoFGsymNK2jZCOHcfEzRQ0BdpRtdpSx/Iyf3MHLWIcLS0COuOPibKQboIiQ==}
2442
2442
+
'@typescript-eslint/visitor-keys@8.45.0':
2443
2443
+
resolution: {integrity: sha512-qsaFBA3e09MIDAGFUrTk+dzqtfv1XPVz8t8d1f0ybTzrCY7BKiMC5cjrl1O/P7UmHsNyW90EYSkU/ZWpmXelag==}
2263
2444
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2264
2264
-
2265
2265
-
'@ungap/structured-clone@1.2.1':
2266
2266
-
resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==}
2267
2445
2268
2446
'@ungap/structured-clone@1.3.0':
2269
2447
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
···
2531
2709
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
2532
2710
engines: {node: '>=8'}
2533
2711
2534
2534
-
ansi-regex@6.1.0:
2535
2535
-
resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
2712
2712
+
ansi-regex@6.2.2:
2713
2713
+
resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
2536
2714
engines: {node: '>=12'}
2537
2715
2538
2716
ansi-styles@2.2.1:
···
2551
2729
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
2552
2730
engines: {node: '>=10'}
2553
2731
2554
2554
-
ansi-styles@6.2.1:
2555
2555
-
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
2732
2732
+
ansi-styles@6.2.3:
2733
2733
+
resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
2556
2734
engines: {node: '>=12'}
2557
2735
2558
2736
any-promise@1.3.0:
···
2581
2759
resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
2582
2760
engines: {node: '>=10'}
2583
2761
2762
2762
+
aria-hidden@1.2.6:
2763
2763
+
resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==}
2764
2764
+
engines: {node: '>=10'}
2765
2765
+
2584
2766
array-buffer-byte-length@1.0.2:
2585
2767
resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
2586
2768
engines: {node: '>= 0.4'}
···
2588
2770
array-flatten@1.1.1:
2589
2771
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
2590
2772
2591
2591
-
array-includes@3.1.8:
2592
2592
-
resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
2773
2773
+
array-includes@3.1.9:
2774
2774
+
resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==}
2593
2775
engines: {node: '>= 0.4'}
2594
2776
2595
2777
array-timsort@1.0.3:
2596
2778
resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==}
2597
2779
2780
2780
+
array-union@2.1.0:
2781
2781
+
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
2782
2782
+
engines: {node: '>=8'}
2783
2783
+
2598
2784
array.prototype.findlast@1.2.5:
2599
2785
resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
2600
2786
engines: {node: '>= 0.4'}
2601
2787
2602
2602
-
array.prototype.findlastindex@1.2.5:
2603
2603
-
resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
2788
2788
+
array.prototype.findlastindex@1.2.6:
2789
2789
+
resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==}
2604
2790
engines: {node: '>= 0.4'}
2605
2791
2606
2792
array.prototype.flat@1.3.3:
···
2629
2815
resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==}
2630
2816
engines: {node: '>=0.8'}
2631
2817
2818
2818
+
async-function@1.0.0:
2819
2819
+
resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==}
2820
2820
+
engines: {node: '>= 0.4'}
2821
2821
+
2632
2822
async-limiter@1.0.1:
2633
2823
resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
2634
2824
···
2701
2891
babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206:
2702
2892
resolution: {integrity: sha512-nnkrHpeDKM8A5laq9tmFvvGbbDQ7laGfQLp50cvCkCXmWrPcZdCtaQpNh8UJS/yLREJnv2R4JDL5ADfxyAn+yQ==}
2703
2893
2704
2704
-
babel-plugin-react-native-web@0.19.13:
2705
2705
-
resolution: {integrity: sha512-4hHoto6xaN23LCyZgL9LJZc3olmAxd7b6jDzlZnKXAh4rRAbZRKNBJoOOdp46OBqgy+K0t0guTj5/mhA8inymQ==}
2894
2894
+
babel-plugin-react-compiler@19.1.0-rc.3:
2895
2895
+
resolution: {integrity: sha512-mjRn69WuTz4adL0bXGx8Rsyk1086zFJeKmes6aK0xPuK3aaXmDJdLHqwKKMrpm6KAI1MCoUK72d2VeqQbu8YIA==}
2896
2896
+
2897
2897
+
babel-plugin-react-native-web@0.21.1:
2898
2898
+
resolution: {integrity: sha512-7XywfJ5QIRMwjOL+pwJt2w47Jmi5fFLvK7/So4fV4jIN6PcRbylCp9/l3cJY4VJbSz3lnWTeHDTD1LKIc1C09Q==}
2706
2899
2707
2707
-
babel-plugin-syntax-hermes-parser@0.25.1:
2708
2708
-
resolution: {integrity: sha512-IVNpGzboFLfXZUAwkLFcI/bnqVbwky0jP3eBno4HKtqvQJAHBLdgxiG6lQ4to0+Q/YCN3PO0od5NZwIKyY4REQ==}
2900
2900
+
babel-plugin-syntax-hermes-parser@0.29.1:
2901
2901
+
resolution: {integrity: sha512-2WFYnoWGdmih1I1J5eIqxATOeycOqRwYxAQBu3cUu/rhwInwHUg7k60AFNbuGjSDL8tje5GDrAnxzRLcu2pYcA==}
2709
2902
2710
2903
babel-plugin-transform-flow-enums@0.0.2:
2711
2904
resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==}
···
2715
2908
peerDependencies:
2716
2909
'@babel/core': ^7.0.0 || ^8.0.0-0
2717
2910
2718
2718
-
babel-preset-expo@13.2.3:
2719
2719
-
resolution: {integrity: sha512-wQJn92lqj8GKR7Ojg/aW4+GkqI6ZdDNTDyOqhhl7A9bAqk6t0ukUOWLDXQb4p0qKJjMDV1F6gNWasI2KUbuVTQ==}
2911
2911
+
babel-preset-expo@54.0.3:
2912
2912
+
resolution: {integrity: sha512-zC6g96Mbf1bofnCI8yI0VKAp8/ER/gpfTsWOpQvStbHU+E4jFZ294n3unW8Hf6nNP4NoeNq9Zc6Prp0vwhxbow==}
2720
2913
peerDependencies:
2721
2721
-
babel-plugin-react-compiler: ^19.0.0-beta-e993439-20250405
2914
2914
+
'@babel/runtime': ^7.20.0
2915
2915
+
expo: '*'
2916
2916
+
react-refresh: '>=0.14.0 <1.0.0'
2722
2917
peerDependenciesMeta:
2723
2723
-
babel-plugin-react-compiler:
2918
2918
+
'@babel/runtime':
2919
2919
+
optional: true
2920
2920
+
expo:
2724
2921
optional: true
2725
2922
2726
2923
babel-preset-jest@29.6.3:
···
2741
2938
base64-js@1.5.1:
2742
2939
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
2743
2940
2941
2941
+
baseline-browser-mapping@2.8.12:
2942
2942
+
resolution: {integrity: sha512-vAPMQdnyKCBtkmQA6FMCBvU9qFIppS3nzyXnEM+Lo2IAhG4Mpjv9cCxMudhgV3YdNNJv6TNqXy97dfRVL2LmaQ==}
2943
2943
+
hasBin: true
2944
2944
+
2744
2945
bcrypt-pbkdf@1.0.2:
2745
2946
resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==}
2746
2947
···
2794
2995
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
2795
2996
engines: {node: '>=8'}
2796
2997
2797
2797
-
browserslist@4.24.3:
2798
2798
-
resolution: {integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==}
2998
2998
+
browserslist@4.26.3:
2999
2999
+
resolution: {integrity: sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==}
2799
3000
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
2800
3001
hasBin: true
2801
3002
···
2819
3020
resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==}
2820
3021
engines: {node: '>= 0.4'}
2821
3022
3023
3023
+
call-bind-apply-helpers@1.0.2:
3024
3024
+
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
3025
3025
+
engines: {node: '>= 0.4'}
3026
3026
+
2822
3027
call-bind@1.0.8:
2823
3028
resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
2824
3029
engines: {node: '>= 0.4'}
···
2827
3032
resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==}
2828
3033
engines: {node: '>= 0.4'}
2829
3034
3035
3035
+
call-bound@1.0.4:
3036
3036
+
resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
3037
3037
+
engines: {node: '>= 0.4'}
3038
3038
+
2830
3039
caller-callsite@2.0.0:
2831
3040
resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==}
2832
3041
engines: {node: '>=4'}
···
2855
3064
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
2856
3065
engines: {node: '>=10'}
2857
3066
2858
2858
-
caniuse-lite@1.0.30001690:
2859
2859
-
resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==}
3067
3067
+
caniuse-lite@1.0.30001747:
3068
3068
+
resolution: {integrity: sha512-mzFa2DGIhuc5490Nd/G31xN1pnBnYMadtkyTjefPI7wzypqgCEpeWu9bJr0OnDsyKrW75zA9ZAt7pbQFmwLsQg==}
2860
3069
2861
3070
caseless@0.12.0:
2862
3071
resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
···
2900
3109
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
2901
3110
engines: {node: '>= 8.10.0'}
2902
3111
2903
2903
-
chokidar@4.0.1:
2904
2904
-
resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==}
3112
3112
+
chokidar@4.0.3:
3113
3113
+
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
2905
3114
engines: {node: '>= 14.16.0'}
2906
3115
2907
3116
chownr@3.0.0:
···
2930
3139
ci-info@4.3.0:
2931
3140
resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==}
2932
3141
engines: {node: '>=8'}
3142
3142
+
3143
3143
+
cjs-module-lexer@1.4.3:
3144
3144
+
resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==}
2933
3145
2934
3146
cjs-module-lexer@2.1.0:
2935
3147
resolution: {integrity: sha512-UX0OwmYRYQQetfrLEZeewIFFI+wSTofC+pMBLNuH3RUuu/xzG1oz84UCEDOSoQlN3fZ4+AzmV50ZYvGqkMh9yA==}
···
3087
3299
resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==}
3088
3300
engines: {node: '>=4'}
3089
3301
3302
3302
+
create-jest@29.7.0:
3303
3303
+
resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
3304
3304
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
3305
3305
+
hasBin: true
3306
3306
+
3090
3307
create-require@1.1.1:
3091
3308
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
3092
3309
···
3178
3395
supports-color:
3179
3396
optional: true
3180
3397
3398
3398
+
debug@4.4.3:
3399
3399
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
3400
3400
+
engines: {node: '>=6.0'}
3401
3401
+
peerDependencies:
3402
3402
+
supports-color: '*'
3403
3403
+
peerDependenciesMeta:
3404
3404
+
supports-color:
3405
3405
+
optional: true
3406
3406
+
3181
3407
decimal.js@10.6.0:
3182
3408
resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}
3183
3409
···
3258
3484
resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
3259
3485
engines: {node: '>=0.3.1'}
3260
3486
3487
3487
+
dir-glob@3.0.1:
3488
3488
+
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
3489
3489
+
engines: {node: '>=8'}
3490
3490
+
3261
3491
dlv@1.1.3:
3262
3492
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
3263
3493
···
3294
3524
dotenv@16.4.7:
3295
3525
resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
3296
3526
engines: {node: '>=12'}
3297
3297
-
3298
3298
-
dunder-proto@1.0.0:
3299
3299
-
resolution: {integrity: sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A==}
3300
3300
-
engines: {node: '>= 0.4'}
3301
3527
3302
3528
dunder-proto@1.0.1:
3303
3529
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
···
3318
3544
ee-first@1.1.1:
3319
3545
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
3320
3546
3321
3321
-
electron-to-chromium@1.5.76:
3322
3322
-
resolution: {integrity: sha512-CjVQyG7n7Sr+eBXE86HIulnL5N8xZY1sgmOPGuq/F0Rr0FJq63lg0kEtOIDfZBk44FnDLf6FUJ+dsJcuiUDdDQ==}
3547
3547
+
electron-to-chromium@1.5.230:
3548
3548
+
resolution: {integrity: sha512-A6A6Fd3+gMdaed9wX83CvHYJb4UuapPD5X5SLq72VZJzxHSY0/LUweGXRWmQlh2ln7KV7iw7jnwXK7dlPoOnHQ==}
3323
3549
3324
3550
emittery@0.13.1:
3325
3551
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
···
3343
3569
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
3344
3570
engines: {node: '>= 0.8'}
3345
3571
3346
3346
-
enhanced-resolve@5.17.1:
3347
3347
-
resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
3572
3572
+
enhanced-resolve@5.18.3:
3573
3573
+
resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==}
3348
3574
engines: {node: '>=10.13.0'}
3349
3575
3350
3576
entities@4.5.0:
···
3365
3591
error-ex@1.3.2:
3366
3592
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
3367
3593
3594
3594
+
error-ex@1.3.4:
3595
3595
+
resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==}
3596
3596
+
3368
3597
error-stack-parser@2.1.4:
3369
3598
resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
3370
3599
3371
3371
-
es-abstract@1.23.8:
3372
3372
-
resolution: {integrity: sha512-lfab8IzDn6EpI1ibZakcgS6WsfEBiB+43cuJo+wgylx1xKXf+Sp+YR3vFuQwC/u3sxYwV8Cxe3B0DpVUu/WiJQ==}
3600
3600
+
es-abstract@1.24.0:
3601
3601
+
resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==}
3373
3602
engines: {node: '>= 0.4'}
3374
3603
3375
3604
es-define-property@1.0.1:
···
3384
3613
resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==}
3385
3614
engines: {node: '>= 0.4'}
3386
3615
3387
3387
-
es-module-lexer@1.6.0:
3388
3388
-
resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
3389
3389
-
3390
3390
-
es-object-atoms@1.0.0:
3391
3391
-
resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
3392
3392
-
engines: {node: '>= 0.4'}
3616
3616
+
es-module-lexer@1.7.0:
3617
3617
+
resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==}
3393
3618
3394
3394
-
es-set-tostringtag@2.0.3:
3395
3395
-
resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
3619
3619
+
es-object-atoms@1.1.1:
3620
3620
+
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
3396
3621
engines: {node: '>= 0.4'}
3397
3622
3398
3623
es-set-tostringtag@2.1.0:
3399
3624
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
3400
3625
engines: {node: '>= 0.4'}
3401
3626
3402
3402
-
es-shim-unscopables@1.0.2:
3403
3403
-
resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
3627
3627
+
es-shim-unscopables@1.1.0:
3628
3628
+
resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==}
3629
3629
+
engines: {node: '>= 0.4'}
3404
3630
3405
3631
es-to-primitive@1.3.0:
3406
3632
resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
···
3430
3656
engines: {node: '>=6.0'}
3431
3657
hasBin: true
3432
3658
3433
3433
-
eslint-config-expo@9.2.0:
3434
3434
-
resolution: {integrity: sha512-TQgmSx+2mRM7qUS0hB5kTDrHcSC35rA1UzOSgK5YRLmSkSMlKLmXkUrhwOpnyo9D/nHdf4ERRAySRYxgA6dlrw==}
3659
3659
+
eslint-config-expo@7.1.2:
3660
3660
+
resolution: {integrity: sha512-WxrDVNklN43Op0v3fglQfzL2bC7vqacUq9oVwJcGCUEDzdM7kGOR6pfEJiz3i3dQv3cFjHtct0CFEExep5c/dA==}
3435
3661
peerDependencies:
3436
3662
eslint: '>=8.10'
3437
3663
3438
3664
eslint-import-resolver-node@0.3.9:
3439
3665
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
3440
3666
3441
3441
-
eslint-import-resolver-typescript@3.7.0:
3442
3442
-
resolution: {integrity: sha512-Vrwyi8HHxY97K5ebydMtffsWAn1SCR9eol49eCd5fJS4O1WV7PaAjbcjmbfJJSMz/t4Mal212Uz/fQZrOB8mow==}
3667
3667
+
eslint-import-resolver-typescript@3.10.1:
3668
3668
+
resolution: {integrity: sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==}
3443
3669
engines: {node: ^14.18.0 || >=16.0.0}
3444
3670
peerDependencies:
3445
3671
eslint: '*'
···
3451
3677
eslint-plugin-import-x:
3452
3678
optional: true
3453
3679
3454
3454
-
eslint-module-utils@2.12.0:
3455
3455
-
resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==}
3680
3680
+
eslint-module-utils@2.12.1:
3681
3681
+
resolution: {integrity: sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==}
3456
3682
engines: {node: '>=4'}
3457
3683
peerDependencies:
3458
3684
'@typescript-eslint/parser': '*'
···
3472
3698
eslint-import-resolver-webpack:
3473
3699
optional: true
3474
3700
3475
3475
-
eslint-plugin-expo@0.1.4:
3476
3476
-
resolution: {integrity: sha512-YA7yiMacQbLJySuyJA0Eb5V65obqp6fVOWtw1JdYDRWC5MeToPrnNvhGDpk01Bv3Vm4ownuzUfvi89MXi1d6cg==}
3701
3701
+
eslint-plugin-expo@0.0.1:
3702
3702
+
resolution: {integrity: sha512-dNri81vunJ3T+N1YWWxjLU6ux6KiukwZ4ECXCOPp8hG7M4kuvPAb9YQSIM63AT0pbtfYH/a6htikhaQcRPjhRA==}
3703
3703
+
engines: {node: '>=18.0.0'}
3704
3704
+
peerDependencies:
3705
3705
+
eslint: '>=8'
3706
3706
+
3707
3707
+
eslint-plugin-expo@1.0.0:
3708
3708
+
resolution: {integrity: sha512-qLtunR+cNFtC+jwYCBia5c/PJurMjSLMOV78KrEOyQK02ohZapU4dCFFnS2hfrJuw0zxfsjVkjqg3QBqi933QA==}
3477
3709
engines: {node: '>=18.0.0'}
3478
3710
peerDependencies:
3479
3711
eslint: '>=8.10'
3480
3712
3481
3481
-
eslint-plugin-import@2.31.0:
3482
3482
-
resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==}
3713
3713
+
eslint-plugin-import@2.32.0:
3714
3714
+
resolution: {integrity: sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==}
3483
3715
engines: {node: '>=4'}
3484
3716
peerDependencies:
3485
3717
'@typescript-eslint/parser': '*'
···
3494
3726
peerDependencies:
3495
3727
eslint: '>=7'
3496
3728
3497
3497
-
eslint-plugin-react-hooks@5.2.0:
3498
3498
-
resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==}
3729
3729
+
eslint-plugin-react-hooks@4.6.2:
3730
3730
+
resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==}
3499
3731
engines: {node: '>=10'}
3500
3732
peerDependencies:
3501
3501
-
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
3733
3733
+
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
3502
3734
3503
3503
-
eslint-plugin-react@7.37.3:
3504
3504
-
resolution: {integrity: sha512-DomWuTQPFYZwF/7c9W2fkKkStqZmBd3uugfqBYLdkZ3Hii23WzZuOLUskGxB8qkSKqftxEeGL1TB2kMhrce0jA==}
3735
3735
+
eslint-plugin-react@7.37.5:
3736
3736
+
resolution: {integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==}
3505
3737
engines: {node: '>=4'}
3506
3738
peerDependencies:
3507
3739
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
···
3518
3750
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
3519
3751
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
3520
3752
3521
3521
-
eslint-visitor-keys@4.2.0:
3522
3522
-
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
3753
3753
+
eslint-visitor-keys@4.2.1:
3754
3754
+
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
3523
3755
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
3524
3756
3525
3757
eslint@8.57.1:
···
3592
3824
resolution: {integrity: sha512-+I6B/IkJc1o/2tiURyz/ivu/O0nKNEArIUB5O7zBrlDVJr22SCLH3xTeEry428LvFhRzIA1g8izguxJ/gbNcVQ==}
3593
3825
engines: {node: '>= 0.8.0'}
3594
3826
3827
3827
+
exit@0.1.2:
3828
3828
+
resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
3829
3829
+
engines: {node: '>= 0.8.0'}
3830
3830
+
3595
3831
expect@29.7.0:
3596
3832
resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
3597
3833
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
···
3600
3836
resolution: {integrity: sha512-u/feCi0GPsI+988gU2FLcsHyAHTU0MX1Wg68NhAnN7z/+C5wqG+CY8J53N9ioe8RXgaoz0nBR/TYMf3AycUuPw==}
3601
3837
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
3602
3838
3603
3603
-
expo-asset@11.1.7:
3604
3604
-
resolution: {integrity: sha512-b5P8GpjUh08fRCf6m5XPVAh7ra42cQrHBIMgH2UXP+xsj4Wufl6pLy6jRF5w6U7DranUMbsXm8TOyq4EHy7ADg==}
3839
3839
+
expo-asset@12.0.9:
3840
3840
+
resolution: {integrity: sha512-vrdRoyhGhBmd0nJcssTSk1Ypx3Mbn/eXaaBCQVkL0MJ8IOZpAObAjfD5CTy8+8RofcHEQdh3wwZVCs7crvfOeg==}
3605
3841
peerDependencies:
3606
3842
expo: '*'
3607
3843
react: '*'
3608
3844
react-native: '*'
3609
3845
3610
3610
-
expo-constants@17.1.6:
3611
3611
-
resolution: {integrity: sha512-q5mLvJiLtPcaZ7t2diSOlQ2AyxIO8YMVEJsEfI/ExkGj15JrflNQ7CALEW6IF/uNae/76qI/XcjEuuAyjdaCNw==}
3846
3846
+
expo-constants@18.0.9:
3847
3847
+
resolution: {integrity: sha512-sqoXHAOGDcr+M9NlXzj1tGoZyd3zxYDy215W6E0Z0n8fgBaqce9FAYQE2bu5X4G629AYig5go7U6sQz7Pjcm8A==}
3612
3848
peerDependencies:
3613
3849
expo: '*'
3614
3850
react-native: '*'
3615
3851
3616
3616
-
expo-constants@17.1.7:
3617
3617
-
resolution: {integrity: sha512-byBjGsJ6T6FrLlhOBxw4EaiMXrZEn/MlUYIj/JAd+FS7ll5X/S4qVRbIimSJtdW47hXMq0zxPfJX6njtA56hHA==}
3852
3852
+
expo-dev-client@6.0.13:
3853
3853
+
resolution: {integrity: sha512-zW3uLx4fBk5jhUafxJcrmbCbhcIMN6Vy7ebUTzLWkHuB0uEh2qwI2bJpeHgXCY+9OzA8HGjT8EUsA5sPKEATfA==}
3618
3854
peerDependencies:
3619
3855
expo: '*'
3620
3620
-
react-native: '*'
3621
3856
3622
3622
-
expo-file-system@18.1.11:
3623
3623
-
resolution: {integrity: sha512-HJw/m0nVOKeqeRjPjGdvm+zBi5/NxcdPf8M8P3G2JFvH5Z8vBWqVDic2O58jnT1OFEy0XXzoH9UqFu7cHg9DTQ==}
3857
3857
+
expo-dev-launcher@6.0.13:
3858
3858
+
resolution: {integrity: sha512-NmUOXKpSN0HaRneY4jeBgLpEYradw/uNHNGYVlE6bPTUXBw2P6cLChGqeclzq/Dj5eHoSCfSOgyFRfvfH1BcfQ==}
3624
3859
peerDependencies:
3625
3860
expo: '*'
3626
3626
-
react-native: '*'
3627
3861
3628
3628
-
expo-font@13.3.1:
3629
3629
-
resolution: {integrity: sha512-d+xrHYvSM9WB42wj8vP9OOFWyxed5R1evphfDb6zYBmC1dA9Hf89FpT7TNFtj2Bk3clTnpmVqQTCYbbA2P3CLg==}
3862
3862
+
expo-dev-menu-interface@2.0.0:
3863
3863
+
resolution: {integrity: sha512-BvAMPt6x+vyXpThsyjjOYyjwfjREV4OOpQkZ0tNl+nGpsPfcY9mc6DRACoWnH9KpLzyIt3BOgh3cuy/h/OxQjw==}
3630
3864
peerDependencies:
3631
3865
expo: '*'
3632
3632
-
react: '*'
3633
3866
3634
3634
-
expo-font@13.3.2:
3635
3635
-
resolution: {integrity: sha512-wUlMdpqURmQ/CNKK/+BIHkDA5nGjMqNlYmW0pJFXY/KE/OG80Qcavdu2sHsL4efAIiNGvYdBS10WztuQYU4X0A==}
3867
3867
+
expo-dev-menu@7.0.13:
3868
3868
+
resolution: {integrity: sha512-jxT19gqgCCGhi8AhoVTULwEPZK1PaaevLnLRzCo/1fKVM4YaEV0RgJPPuSe4xVloUWYVkCmfn0t32IPBHp2SSA==}
3869
3869
+
peerDependencies:
3870
3870
+
expo: '*'
3871
3871
+
3872
3872
+
expo-file-system@19.0.16:
3873
3873
+
resolution: {integrity: sha512-9Ee6HpcUEfO7dOet/on9yAg7ysegBua35Q0oGrJzoRc+xW6IlTxoSFbmK8QhjA3MZpkukP3DhaiYENYOzkw9SQ==}
3874
3874
+
peerDependencies:
3875
3875
+
expo: '*'
3876
3876
+
react-native: '*'
3877
3877
+
3878
3878
+
expo-font@14.0.8:
3879
3879
+
resolution: {integrity: sha512-bTUHaJWRZ7ywP8dg3f+wfOwv6RwMV3mWT2CDUIhsK70GjNGlCtiWOCoHsA5Od/esPaVxqc37cCBvQGQRFStRlA==}
3636
3880
peerDependencies:
3637
3881
expo: '*'
3638
3882
react: '*'
3883
3883
+
react-native: '*'
3639
3884
3640
3640
-
expo-image-loader@5.1.0:
3641
3641
-
resolution: {integrity: sha512-sEBx3zDQIODWbB5JwzE7ZL5FJD+DK3LVLWBVJy6VzsqIA6nDEnSFnsnWyCfCTSvbGigMATs1lgkC2nz3Jpve1Q==}
3885
3885
+
expo-image-loader@6.0.0:
3886
3886
+
resolution: {integrity: sha512-nKs/xnOGw6ACb4g26xceBD57FKLFkSwEUTDXEDF3Gtcu3MqF3ZIYd3YM+sSb1/z9AKV1dYT7rMSGVNgsveXLIQ==}
3642
3887
peerDependencies:
3643
3888
expo: '*'
3644
3889
3645
3645
-
expo-image-picker@16.1.4:
3646
3646
-
resolution: {integrity: sha512-bTmmxtw1AohUT+HxEBn2vYwdeOrj1CLpMXKjvi9FKSoSbpcarT4xxI0z7YyGwDGHbrJqyyic3I9TTdP2J2b4YA==}
3890
3890
+
expo-image-picker@17.0.8:
3891
3891
+
resolution: {integrity: sha512-489ByhVs2XPoAu9zodivAKLv7hG4S/FOe8hO/C2U6jVxmRjpAKakKNjMml0IwWjf1+c/RYBqm1XxKaZ+vq/fDQ==}
3647
3892
peerDependencies:
3648
3893
expo: '*'
3649
3894
3650
3650
-
expo-keep-awake@14.1.4:
3651
3651
-
resolution: {integrity: sha512-wU9qOnosy4+U4z/o4h8W9PjPvcFMfZXrlUoKTMBW7F4pLqhkkP/5G4EviPZixv4XWFMjn1ExQ5rV6BX8GwJsWA==}
3895
3895
+
expo-json-utils@0.15.0:
3896
3896
+
resolution: {integrity: sha512-duRT6oGl80IDzH2LD2yEFWNwGIC2WkozsB6HF3cDYNoNNdUvFk6uN3YiwsTsqVM/D0z6LEAQ01/SlYvN+Fw0JQ==}
3897
3897
+
3898
3898
+
expo-keep-awake@15.0.7:
3899
3899
+
resolution: {integrity: sha512-CgBNcWVPnrIVII5G54QDqoE125l+zmqR4HR8q+MQaCfHet+dYpS5vX5zii/RMayzGN4jPgA4XYIQ28ePKFjHoA==}
3652
3900
peerDependencies:
3653
3901
expo: '*'
3654
3902
react: '*'
3655
3903
3656
3656
-
expo-linking@7.1.4:
3657
3657
-
resolution: {integrity: sha512-zLAbUzTB3+KGjqqLeIdhhkXayyN0qulHGjRI24X7W/0Mq/4oPbPZklKtCP0k7XOn/k4553m8OgJ7GPC03PlV9g==}
3904
3904
+
expo-linking@8.0.8:
3905
3905
+
resolution: {integrity: sha512-MyeMcbFDKhXh4sDD1EHwd0uxFQNAc6VCrwBkNvvvufUsTYFq3glTA9Y8a+x78CPpjNqwNAamu74yIaIz7IEJyg==}
3658
3906
peerDependencies:
3659
3907
react: '*'
3660
3908
react-native: '*'
3661
3909
3662
3662
-
expo-modules-autolinking@2.1.14:
3663
3663
-
resolution: {integrity: sha512-nT5ERXwc+0ZT/pozDoJjYZyUQu5RnXMk9jDGm5lg+PiKvsrCTSA/2/eftJGMxLkTjVI2MXp5WjSz3JRjbA7UXA==}
3910
3910
+
expo-manifests@1.0.8:
3911
3911
+
resolution: {integrity: sha512-nA5PwU2uiUd+2nkDWf9e71AuFAtbrb330g/ecvuu52bmaXtN8J8oiilc9BDvAX0gg2fbtOaZdEdjBYopt1jdlQ==}
3912
3912
+
peerDependencies:
3913
3913
+
expo: '*'
3914
3914
+
3915
3915
+
expo-modules-autolinking@3.0.14:
3916
3916
+
resolution: {integrity: sha512-/qh1ru2kGPOycGvE9dXEKJZbPmYA5U5UcAlWWFbcq9+VhhWdZWZ0zs7V2JCdl+OvpBDo1y9WbqPP5VHQSYqT+Q==}
3664
3917
hasBin: true
3665
3918
3666
3666
-
expo-modules-core@2.5.0:
3667
3667
-
resolution: {integrity: sha512-aIbQxZE2vdCKsolQUl6Q9Farlf8tjh/ROR4hfN1qT7QBGPl1XrJGnaOKkcgYaGrlzCPg/7IBe0Np67GzKMZKKQ==}
3919
3919
+
expo-modules-core@3.0.20:
3920
3920
+
resolution: {integrity: sha512-AnC7VG8k8ZAAKoNFP5zyCiTlwppp6U3A/z63KtuSjMWlxn5w45FOf2LuyF1SNUqkiARdckuPVNvLGO/I/5vkrg==}
3921
3921
+
peerDependencies:
3922
3922
+
react: '*'
3923
3923
+
react-native: '*'
3668
3924
3669
3669
-
expo-router@5.0.6:
3670
3670
-
resolution: {integrity: sha512-/44G3liB7LMMDoUO+lN5TS8XvZrAhLtq7cVGoilO2QkoSBjFQfxFA9VYOVWVlu2R80tN6dM3cgsEuoA275FGQg==}
3925
3925
+
expo-router@6.0.10:
3926
3926
+
resolution: {integrity: sha512-QdMvNgjpH5L1ndE2KcYk14CjfulQTZNJNjM24/NigF+2cwkE7Ixdkw2EdpslcXPCgwcoJmvJIJtySsGhoPTNdg==}
3671
3927
peerDependencies:
3672
3672
-
'@react-navigation/drawer': ^7.3.9
3673
3673
-
'@testing-library/jest-native': '*'
3928
3928
+
'@expo/metro-runtime': ^6.1.2
3929
3929
+
'@react-navigation/drawer': ^7.5.0
3930
3930
+
'@testing-library/react-native': '>= 12.0.0'
3674
3931
expo: '*'
3675
3675
-
expo-constants: '*'
3676
3676
-
expo-linking: '*'
3932
3932
+
expo-constants: ^18.0.9
3933
3933
+
expo-linking: ^8.0.8
3934
3934
+
react: '*'
3935
3935
+
react-dom: '*'
3936
3936
+
react-native: '*'
3937
3937
+
react-native-gesture-handler: '*'
3677
3938
react-native-reanimated: '*'
3678
3678
-
react-native-safe-area-context: '*'
3939
3939
+
react-native-safe-area-context: '>= 5.4.0'
3679
3940
react-native-screens: '*'
3941
3941
+
react-native-web: '*'
3942
3942
+
react-server-dom-webpack: '>= 19.0.0'
3680
3943
peerDependenciesMeta:
3681
3944
'@react-navigation/drawer':
3682
3945
optional: true
3683
3683
-
'@testing-library/jest-native':
3946
3946
+
'@testing-library/react-native':
3947
3947
+
optional: true
3948
3948
+
react-dom:
3949
3949
+
optional: true
3950
3950
+
react-native-gesture-handler:
3684
3951
optional: true
3685
3952
react-native-reanimated:
3686
3953
optional: true
3954
3954
+
react-native-web:
3955
3955
+
optional: true
3956
3956
+
react-server-dom-webpack:
3957
3957
+
optional: true
3687
3958
3688
3688
-
expo-splash-screen@0.30.8:
3689
3689
-
resolution: {integrity: sha512-2eh+uA543brfeG5HILXmtNKA7E2/pfywKzNumzy3Ef6OtDjYy6zJUGNSbhnZRbVEjUZo3/QNRs0JRBfY80okZg==}
3959
3959
+
expo-server@1.0.0:
3960
3960
+
resolution: {integrity: sha512-fAAI0ZXxayc2Rt5KfQjULv+TFreuLRZ+hdpc5TxZJ7CDpW1ZIqaVzELHh1rYTRVEBDFDiCBXtioS9WWTEAX+fg==}
3961
3961
+
engines: {node: '>=20.16.0'}
3962
3962
+
3963
3963
+
expo-splash-screen@31.0.10:
3964
3964
+
resolution: {integrity: sha512-i6g9IK798mae4yvflstQ1HkgahIJ6exzTCTw4vEdxV0J2SwiW3Tj+CwRjf0te7Zsb+7dDQhBTmGZwdv00VER2A==}
3690
3965
peerDependencies:
3691
3966
expo: '*'
3692
3967
···
3697
3972
react: '*'
3698
3973
react-native: '*'
3699
3974
3700
3700
-
expo-status-bar@2.2.3:
3701
3701
-
resolution: {integrity: sha512-+c8R3AESBoduunxTJ8353SqKAKpxL6DvcD8VKBuh81zzJyUUbfB4CVjr1GufSJEKsMzNPXZU+HJwXx7Xh7lx8Q==}
3975
3975
+
expo-sqlite@16.0.8:
3976
3976
+
resolution: {integrity: sha512-xw776gFgH4ZM5oGs0spSLNmkHO/kJ/EuRXGzE4/22yII9EmG84vm7aM/M2aEb8taBTqwhSGYUpkwkRT5YFFmsg==}
3702
3977
peerDependencies:
3978
3978
+
expo: '*'
3703
3979
react: '*'
3704
3980
react-native: '*'
3705
3981
3706
3706
-
expo-system-ui@5.0.7:
3707
3707
-
resolution: {integrity: sha512-ijSnSFA4VfuQc84N6WyCUNsKKTIyQb6QuC8q2zGvYC/sBXTMrOtZg0zrisQGzCRW+WhritQTiVqHlp3Ix9xDmQ==}
3982
3982
+
expo-status-bar@3.0.8:
3983
3983
+
resolution: {integrity: sha512-L248XKPhum7tvREoS1VfE0H6dPCaGtoUWzRsUv7hGKdiB4cus33Rc0sxkWkoQ77wE8stlnUlL5lvmT0oqZ3ZBw==}
3984
3984
+
peerDependencies:
3985
3985
+
react: '*'
3986
3986
+
react-native: '*'
3987
3987
+
3988
3988
+
expo-system-ui@6.0.7:
3989
3989
+
resolution: {integrity: sha512-NT+/r/BOg08lFI9SZO2WFi9X1ZmawkVStknioWzQq6Mt4KinoMS6yl3eLbyOLM3LoptN13Ywfo4W5KHA6TV9Ow==}
3708
3990
peerDependencies:
3709
3991
expo: '*'
3710
3992
react-native: '*'
···
3713
3995
react-native-web:
3714
3996
optional: true
3715
3997
3716
3716
-
expo-web-browser@14.1.6:
3717
3717
-
resolution: {integrity: sha512-/4P8eWqRyfXIMZna3acg320LXNA+P2cwyEVbjDX8vHnWU+UnOtyRKWy3XaAIyMPQ9hVjBNUQTh4MPvtnPRzakw==}
3998
3998
+
expo-updates-interface@2.0.0:
3999
3999
+
resolution: {integrity: sha512-pTzAIufEZdVPKql6iMi5ylVSPqV1qbEopz9G6TSECQmnNde2nwq42PxdFBaUEd8IZJ/fdJLQnOT3m6+XJ5s7jg==}
4000
4000
+
peerDependencies:
4001
4001
+
expo: '*'
4002
4002
+
4003
4003
+
expo-web-browser@15.0.8:
4004
4004
+
resolution: {integrity: sha512-gn+Y2ABQr6/EvFN/XSjTuzwsSPLU1vNVVV0wNe4xXkcSnYGdHxt9kHxs9uLfoCyPByoaGF4VxzAhHIMI7yDcSg==}
3718
4005
peerDependencies:
3719
4006
expo: '*'
3720
4007
react-native: '*'
3721
4008
3722
3722
-
expo@53.0.20:
3723
3723
-
resolution: {integrity: sha512-Nh+HIywVy9KxT/LtH08QcXqrxtUOA9BZhsXn3KCsAYA+kNb80M8VKN8/jfQF+I6CgeKyFKJoPNsWgI0y0VBGrA==}
4009
4009
+
expo@54.0.12:
4010
4010
+
resolution: {integrity: sha512-BVvG1A9BlKAOBwczMi7XThOLzI3TUShkV/yRnAMGvQP5SQFDq7UojkZLLG285gg3OvkoqjMUE0tZvVXbvuI4tA==}
3724
4011
hasBin: true
3725
4012
peerDependencies:
3726
4013
'@expo/dom-webview': '*'
···
3753
4040
fast-deep-equal@3.1.3:
3754
4041
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
3755
4042
3756
3756
-
fast-glob@3.3.2:
3757
3757
-
resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
4043
4043
+
fast-glob@3.3.3:
4044
4044
+
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
3758
4045
engines: {node: '>=8.6.0'}
3759
4046
3760
4047
fast-json-stable-stringify@2.1.0:
···
3770
4057
fast-uri@3.0.3:
3771
4058
resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==}
3772
4059
3773
3773
-
fastq@1.17.1:
3774
3774
-
resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
4060
4060
+
fastq@1.19.1:
4061
4061
+
resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
3775
4062
3776
4063
fb-watchman@2.0.2:
3777
4064
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
···
3782
4069
fbjs@3.0.5:
3783
4070
resolution: {integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==}
3784
4071
3785
3785
-
fdir@6.4.2:
3786
3786
-
resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==}
4072
4072
+
fdir@6.5.0:
4073
4073
+
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
4074
4074
+
engines: {node: '>=12.0.0'}
3787
4075
peerDependencies:
3788
4076
picomatch: ^3 || ^4
3789
4077
peerDependenciesMeta:
···
3837
4125
resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
3838
4126
engines: {node: ^10.12.0 || >=12.0.0}
3839
4127
3840
3840
-
flatted@3.3.2:
3841
3841
-
resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
4128
4128
+
flatted@3.3.3:
4129
4129
+
resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
3842
4130
3843
4131
flow-enums-runtime@0.0.6:
3844
4132
resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==}
···
3849
4137
for-each@0.3.3:
3850
4138
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
3851
4139
4140
4140
+
for-each@0.3.5:
4141
4141
+
resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
4142
4142
+
engines: {node: '>= 0.4'}
4143
4143
+
3852
4144
foreground-child@3.3.0:
3853
4145
resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
4146
4146
+
engines: {node: '>=14'}
4147
4147
+
4148
4148
+
foreground-child@3.3.1:
4149
4149
+
resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
3854
4150
engines: {node: '>=14'}
3855
4151
3856
4152
forever-agent@0.6.1:
···
3900
4196
3901
4197
functions-have-names@1.2.3:
3902
4198
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
4199
4199
+
4200
4200
+
generator-function@2.0.1:
4201
4201
+
resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
4202
4202
+
engines: {node: '>= 0.4'}
3903
4203
3904
4204
gensync@1.0.0-beta.2:
3905
4205
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
···
3909
4209
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
3910
4210
engines: {node: 6.* || 8.* || >= 10.*}
3911
4211
3912
3912
-
get-intrinsic@1.2.5:
3913
3913
-
resolution: {integrity: sha512-Y4+pKa7XeRUPWFNvOOYHkRYrfzW07oraURSvjDmRVOJ748OrVmeXtpE4+GCEHncjCjkTxPNRt8kEbxDhsn6VTg==}
3914
3914
-
engines: {node: '>= 0.4'}
3915
3915
-
3916
4212
get-intrinsic@1.2.6:
3917
4213
resolution: {integrity: sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==}
3918
4214
engines: {node: '>= 0.4'}
3919
4215
4216
4216
+
get-intrinsic@1.3.0:
4217
4217
+
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
4218
4218
+
engines: {node: '>= 0.4'}
4219
4219
+
3920
4220
get-nonce@1.0.1:
3921
4221
resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
3922
4222
engines: {node: '>=6'}
···
3929
4229
resolution: {integrity: sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==}
3930
4230
engines: {node: '>=4'}
3931
4231
4232
4232
+
get-proto@1.0.1:
4233
4233
+
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
4234
4234
+
engines: {node: '>= 0.4'}
4235
4235
+
3932
4236
get-stream@6.0.1:
3933
4237
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
3934
4238
engines: {node: '>=10'}
···
3941
4245
resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
3942
4246
engines: {node: '>= 0.4'}
3943
4247
3944
3944
-
get-tsconfig@4.8.1:
3945
3945
-
resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
3946
3946
-
3947
3947
-
getenv@1.0.0:
3948
3948
-
resolution: {integrity: sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==}
3949
3949
-
engines: {node: '>=6'}
4248
4248
+
get-tsconfig@4.10.1:
4249
4249
+
resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==}
3950
4250
3951
4251
getenv@2.0.0:
3952
4252
resolution: {integrity: sha512-VilgtJj/ALgGY77fiLam5iD336eSWi96Q15JSAG1zi8NRBysm3LXKdGnHb4m5cuyxvOLQQKWpBZAT6ni4FI2iQ==}
···
3975
4275
engines: {node: 20 || >=22}
3976
4276
hasBin: true
3977
4277
4278
4278
+
glob@11.0.3:
4279
4279
+
resolution: {integrity: sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==}
4280
4280
+
engines: {node: 20 || >=22}
4281
4281
+
hasBin: true
4282
4282
+
3978
4283
glob@7.2.3:
3979
4284
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
3980
4285
deprecated: Glob versions prior to v9 are no longer supported
···
3983
4288
resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==}
3984
4289
engines: {node: '>=16 || 14 >=14.17'}
3985
4290
4291
4291
+
global-dirs@0.1.1:
4292
4292
+
resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==}
4293
4293
+
engines: {node: '>=4'}
4294
4294
+
3986
4295
globals@11.12.0:
3987
4296
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
3988
4297
engines: {node: '>=4'}
···
3991
4300
resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
3992
4301
engines: {node: '>=8'}
3993
4302
3994
3994
-
globals@16.2.0:
3995
3995
-
resolution: {integrity: sha512-O+7l9tPdHCU320IigZZPj5zmRCFG9xHmx9cU8FqU2Rp+JN714seHV+2S9+JslCpY4gJwU2vOGox0wzgae/MCEg==}
3996
3996
-
engines: {node: '>=18'}
3997
3997
-
3998
4303
globalthis@1.0.4:
3999
4304
resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
4000
4305
engines: {node: '>= 0.4'}
4306
4306
+
4307
4307
+
globby@11.1.0:
4308
4308
+
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
4309
4309
+
engines: {node: '>=10'}
4001
4310
4002
4311
gopd@1.2.0:
4003
4312
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
···
4060
4369
hermes-estree@0.25.1:
4061
4370
resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==}
4062
4371
4063
4063
-
hermes-estree@0.28.1:
4064
4064
-
resolution: {integrity: sha512-w3nxl/RGM7LBae0v8LH2o36+8VqwOZGv9rX1wyoWT6YaKZLqpJZ0YQ5P0LVr3tuRpf7vCx0iIG4i/VmBJejxTQ==}
4372
4372
+
hermes-estree@0.29.1:
4373
4373
+
resolution: {integrity: sha512-jl+x31n4/w+wEqm0I2r4CMimukLbLQEYpisys5oCre611CI5fc9TxhqkBBCJ1edDG4Kza0f7CgNz8xVMLZQOmQ==}
4065
4374
4066
4375
hermes-parser@0.25.1:
4067
4376
resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==}
4068
4377
4069
4069
-
hermes-parser@0.28.1:
4070
4070
-
resolution: {integrity: sha512-nf8o+hE8g7UJWParnccljHumE9Vlq8F7MqIdeahl+4x0tvCUJYRrT0L7h0MMg/X9YJmkNwsfbaNNrzPtFXOscg==}
4378
4378
+
hermes-parser@0.29.1:
4379
4379
+
resolution: {integrity: sha512-xBHWmUtRC5e/UL0tI7Ivt2riA/YBq9+SiYFU7C1oBa/j2jYGlIF9043oak1F47ihuDIxQ5nbsKueYJDRY02UgA==}
4071
4380
4072
4381
hoist-non-react-statics@3.3.2:
4073
4382
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
···
4141
4450
resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==}
4142
4451
engines: {node: '>=4'}
4143
4452
4144
4144
-
import-fresh@3.3.0:
4145
4145
-
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
4453
4453
+
import-fresh@3.3.1:
4454
4454
+
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
4146
4455
engines: {node: '>=6'}
4147
4456
4148
4457
import-local@3.2.0:
···
4202
4511
is-arrayish@0.3.2:
4203
4512
resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
4204
4513
4205
4205
-
is-async-function@2.0.0:
4206
4206
-
resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
4514
4514
+
is-async-function@2.1.1:
4515
4515
+
resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
4207
4516
engines: {node: '>= 0.4'}
4208
4517
4209
4518
is-bigint@1.1.0:
···
4214
4523
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
4215
4524
engines: {node: '>=8'}
4216
4525
4217
4217
-
is-boolean-object@1.2.1:
4218
4218
-
resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==}
4526
4526
+
is-boolean-object@1.2.2:
4527
4527
+
resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
4219
4528
engines: {node: '>= 0.4'}
4220
4529
4221
4221
-
is-bun-module@1.3.0:
4222
4222
-
resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==}
4530
4530
+
is-bun-module@2.0.0:
4531
4531
+
resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==}
4223
4532
4224
4533
is-callable@1.2.7:
4225
4534
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
···
4270
4579
resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
4271
4580
engines: {node: '>= 0.4'}
4272
4581
4582
4582
+
is-generator-function@1.1.2:
4583
4583
+
resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==}
4584
4584
+
engines: {node: '>= 0.4'}
4585
4585
+
4273
4586
is-glob@4.0.3:
4274
4587
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
4275
4588
engines: {node: '>=0.10.0'}
4276
4589
4277
4590
is-map@2.0.3:
4278
4591
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
4592
4592
+
engines: {node: '>= 0.4'}
4593
4593
+
4594
4594
+
is-negative-zero@2.0.3:
4595
4595
+
resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
4279
4596
engines: {node: '>= 0.4'}
4280
4597
4281
4598
is-number-object@1.1.1:
···
4344
4661
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
4345
4662
engines: {node: '>= 0.4'}
4346
4663
4347
4347
-
is-weakref@1.1.0:
4348
4348
-
resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==}
4664
4664
+
is-weakref@1.1.1:
4665
4665
+
resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==}
4349
4666
engines: {node: '>= 0.4'}
4350
4667
4351
4668
is-weakset@2.0.4:
···
4384
4701
resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
4385
4702
engines: {node: '>=10'}
4386
4703
4704
4704
+
istanbul-lib-source-maps@4.0.1:
4705
4705
+
resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
4706
4706
+
engines: {node: '>=10'}
4707
4707
+
4387
4708
istanbul-lib-source-maps@5.0.6:
4388
4709
resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==}
4389
4710
engines: {node: '>=10'}
···
4392
4713
resolution: {integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==}
4393
4714
engines: {node: '>=8'}
4394
4715
4395
4395
-
iterator.prototype@1.1.4:
4396
4396
-
resolution: {integrity: sha512-x4WH0BWmrMmg4oHHl+duwubhrvczGlyuGAZu3nvrf0UXOfPu8IhZObFEr7DE/iv01YgVZrsOiRcqw2srkKEDIA==}
4716
4716
+
iterator.prototype@1.1.5:
4717
4717
+
resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==}
4397
4718
engines: {node: '>= 0.4'}
4398
4719
4399
4720
jackspeak@3.4.3:
···
4403
4724
resolution: {integrity: sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==}
4404
4725
engines: {node: 20 || >=22}
4405
4726
4727
4727
+
jackspeak@4.1.1:
4728
4728
+
resolution: {integrity: sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==}
4729
4729
+
engines: {node: 20 || >=22}
4730
4730
+
4731
4731
+
jest-changed-files@29.7.0:
4732
4732
+
resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==}
4733
4733
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
4734
4734
+
4406
4735
jest-changed-files@30.2.0:
4407
4736
resolution: {integrity: sha512-L8lR1ChrRnSdfeOvTrwZMlnWV8G/LLjQ0nG9MBclwWZidA2N5FviRki0Bvh20WRMOX31/JYvzdqTJrk5oBdydQ==}
4408
4737
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
4409
4738
4739
4739
+
jest-circus@29.7.0:
4740
4740
+
resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==}
4741
4741
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
4742
4742
+
4410
4743
jest-circus@30.2.0:
4411
4744
resolution: {integrity: sha512-Fh0096NC3ZkFx05EP2OXCxJAREVxj1BcW/i6EWqqymcgYKWjyyDpral3fMxVcHXg6oZM7iULer9wGRFvfpl+Tg==}
4412
4745
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
4413
4746
4747
4747
+
jest-cli@29.7.0:
4748
4748
+
resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==}
4749
4749
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
4750
4750
+
hasBin: true
4751
4751
+
peerDependencies:
4752
4752
+
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
4753
4753
+
peerDependenciesMeta:
4754
4754
+
node-notifier:
4755
4755
+
optional: true
4756
4756
+
4414
4757
jest-cli@30.2.0:
4415
4758
resolution: {integrity: sha512-Os9ukIvADX/A9sLt6Zse3+nmHtHaE6hqOsjQtNiugFTbKRHYIYtZXNGNK9NChseXy7djFPjndX1tL0sCTlfpAA==}
4416
4759
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
···
4421
4764
node-notifier:
4422
4765
optional: true
4423
4766
4767
4767
+
jest-config@29.7.0:
4768
4768
+
resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
4769
4769
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
4770
4770
+
peerDependencies:
4771
4771
+
'@types/node': '*'
4772
4772
+
ts-node: '>=9.0.0'
4773
4773
+
peerDependenciesMeta:
4774
4774
+
'@types/node':
4775
4775
+
optional: true
4776
4776
+
ts-node:
4777
4777
+
optional: true
4778
4778
+
4424
4779
jest-config@30.2.0:
4425
4780
resolution: {integrity: sha512-g4WkyzFQVWHtu6uqGmQR4CQxz/CH3yDSlhzXMWzNjDx843gYjReZnMRanjRCq5XZFuQrGDxgUaiYWE8BRfVckA==}
4426
4781
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
···
4444
4799
resolution: {integrity: sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==}
4445
4800
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
4446
4801
4802
4802
+
jest-docblock@29.7.0:
4803
4803
+
resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==}
4804
4804
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
4805
4805
+
4447
4806
jest-docblock@30.2.0:
4448
4807
resolution: {integrity: sha512-tR/FFgZKS1CXluOQzZvNH3+0z9jXr3ldGSD8bhyuxvlVUwbeLOGynkunvlTMxchC5urrKndYiwCFC0DLVjpOCA==}
4449
4808
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
4809
4809
+
4810
4810
+
jest-each@29.7.0:
4811
4811
+
resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==}
4812
4812
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
4450
4813
4451
4814
jest-each@30.2.0:
4452
4815
resolution: {integrity: sha512-lpWlJlM7bCUf1mfmuqTA8+j2lNURW9eNafOy99knBM01i5CQeY5UH1vZjgT9071nDJac1M4XsbyI44oNOdhlDQ==}
···
4488
4851
resolution: {integrity: sha512-sQA/jCb9kNt+neM0anSj6eZhLZUIhQgwDt7cPGjumgLM4rXsfb9kpnlacmvZz3Q5tb80nS+oG/if+NBKrHC+Xw==}
4489
4852
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
4490
4853
4854
4854
+
jest-leak-detector@29.7.0:
4855
4855
+
resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==}
4856
4856
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
4857
4857
+
4491
4858
jest-leak-detector@30.2.0:
4492
4859
resolution: {integrity: sha512-M6jKAjyzjHG0SrQgwhgZGy9hFazcudwCNovY/9HPIicmNSBuockPSedAP9vlPK6ONFJ1zfyH/M2/YYJxOz5cdQ==}
4493
4860
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
···
4533
4900
resolution: {integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==}
4534
4901
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
4535
4902
4903
4903
+
jest-resolve-dependencies@29.7.0:
4904
4904
+
resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==}
4905
4905
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
4906
4906
+
4536
4907
jest-resolve-dependencies@30.2.0:
4537
4908
resolution: {integrity: sha512-xTOIGug/0RmIe3mmCqCT95yO0vj6JURrn1TKWlNbhiAefJRWINNPgwVkrVgt/YaerPzY3iItufd80v3lOrFJ2w==}
4538
4909
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
4539
4910
4911
4911
+
jest-resolve@29.7.0:
4912
4912
+
resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==}
4913
4913
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
4914
4914
+
4540
4915
jest-resolve@30.2.0:
4541
4916
resolution: {integrity: sha512-TCrHSxPlx3tBY3hWNtRQKbtgLhsXa1WmbJEqBlTBrGafd5fiQFByy2GNCEoGR+Tns8d15GaL9cxEzKOO3GEb2A==}
4542
4917
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
4543
4918
4919
4919
+
jest-runner@29.7.0:
4920
4920
+
resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==}
4921
4921
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
4922
4922
+
4544
4923
jest-runner@30.2.0:
4545
4924
resolution: {integrity: sha512-PqvZ2B2XEyPEbclp+gV6KO/F1FIFSbIwewRgmROCMBo/aZ6J1w8Qypoj2pEOcg3G2HzLlaP6VUtvwCI8dM3oqQ==}
4546
4925
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
4547
4926
4927
4927
+
jest-runtime@29.7.0:
4928
4928
+
resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==}
4929
4929
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
4930
4930
+
4548
4931
jest-runtime@30.2.0:
4549
4932
resolution: {integrity: sha512-p1+GVX/PJqTucvsmERPMgCPvQJpFt4hFbM+VN3n8TMo47decMUcJbt+rgzwrEme0MQUA/R+1de2axftTHkKckg==}
4550
4933
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
···
4601
4984
jest-worker@30.2.0:
4602
4985
resolution: {integrity: sha512-0Q4Uk8WF7BUwqXHuAjc23vmopWJw5WH7w2tqBoUOZpOjW/ZnR44GXXd1r82RvnmI2GZge3ivrYXk/BE2+VtW2g==}
4603
4986
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
4987
4987
+
4988
4988
+
jest@29.7.0:
4989
4989
+
resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==}
4990
4990
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
4991
4991
+
hasBin: true
4992
4992
+
peerDependencies:
4993
4993
+
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
4994
4994
+
peerDependenciesMeta:
4995
4995
+
node-notifier:
4996
4996
+
optional: true
4604
4997
4605
4998
jest@30.2.0:
4606
4999
resolution: {integrity: sha512-F26gjC0yWN8uAA5m5Ss8ZQf5nDHWGlN/xWZIh8S5SRbsEKBovwZhxGd6LJlbZYxBgCYOtreSUyb8hpXyGC5O4A==}
···
4730
5123
lighthouse-logger@1.4.2:
4731
5124
resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==}
4732
5125
5126
5126
+
lightningcss-android-arm64@1.30.2:
5127
5127
+
resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==}
5128
5128
+
engines: {node: '>= 12.0.0'}
5129
5129
+
cpu: [arm64]
5130
5130
+
os: [android]
5131
5131
+
4733
5132
lightningcss-darwin-arm64@1.27.0:
4734
5133
resolution: {integrity: sha512-Gl/lqIXY+d+ySmMbgDf0pgaWSqrWYxVHoc88q+Vhf2YNzZ8DwoRzGt5NZDVqqIW5ScpSnmmjcgXP87Dn2ylSSQ==}
4735
5134
engines: {node: '>= 12.0.0'}
4736
5135
cpu: [arm64]
4737
5136
os: [darwin]
4738
5137
4739
4739
-
lightningcss-darwin-arm64@1.28.2:
4740
4740
-
resolution: {integrity: sha512-/8cPSqZiusHSS+WQz0W4NuaqFjquys1x+NsdN/XOHb+idGHJSoJ7SoQTVl3DZuAgtPZwFZgRfb/vd1oi8uX6+g==}
5138
5138
+
lightningcss-darwin-arm64@1.30.2:
5139
5139
+
resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
4741
5140
engines: {node: '>= 12.0.0'}
4742
5141
cpu: [arm64]
4743
5142
os: [darwin]
···
4748
5147
cpu: [x64]
4749
5148
os: [darwin]
4750
5149
4751
4751
-
lightningcss-darwin-x64@1.28.2:
4752
4752
-
resolution: {integrity: sha512-R7sFrXlgKjvoEG8umpVt/yutjxOL0z8KWf0bfPT3cYMOW4470xu5qSHpFdIOpRWwl3FKNMUdbKtMUjYt0h2j4g==}
5150
5150
+
lightningcss-darwin-x64@1.30.2:
5151
5151
+
resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
4753
5152
engines: {node: '>= 12.0.0'}
4754
5153
cpu: [x64]
4755
5154
os: [darwin]
···
4760
5159
cpu: [x64]
4761
5160
os: [freebsd]
4762
5161
4763
4763
-
lightningcss-freebsd-x64@1.28.2:
4764
4764
-
resolution: {integrity: sha512-l2qrCT+x7crAY+lMIxtgvV10R8VurzHAoUZJaVFSlHrN8kRLTvEg9ObojIDIexqWJQvJcVVV3vfzsEynpiuvgA==}
5162
5162
+
lightningcss-freebsd-x64@1.30.2:
5163
5163
+
resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
4765
5164
engines: {node: '>= 12.0.0'}
4766
5165
cpu: [x64]
4767
5166
os: [freebsd]
···
4772
5171
cpu: [arm]
4773
5172
os: [linux]
4774
5173
4775
4775
-
lightningcss-linux-arm-gnueabihf@1.28.2:
4776
4776
-
resolution: {integrity: sha512-DKMzpICBEKnL53X14rF7hFDu8KKALUJtcKdFUCW5YOlGSiwRSgVoRjM97wUm/E0NMPkzrTi/rxfvt7ruNK8meg==}
5174
5174
+
lightningcss-linux-arm-gnueabihf@1.30.2:
5175
5175
+
resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
4777
5176
engines: {node: '>= 12.0.0'}
4778
5177
cpu: [arm]
4779
5178
os: [linux]
···
4784
5183
cpu: [arm64]
4785
5184
os: [linux]
4786
5185
4787
4787
-
lightningcss-linux-arm64-gnu@1.28.2:
4788
4788
-
resolution: {integrity: sha512-nhfjYkfymWZSxdtTNMWyhFk2ImUm0X7NAgJWFwnsYPOfmtWQEapzG/DXZTfEfMjSzERNUNJoQjPAbdqgB+sjiw==}
5186
5186
+
lightningcss-linux-arm64-gnu@1.30.2:
5187
5187
+
resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
4789
5188
engines: {node: '>= 12.0.0'}
4790
5189
cpu: [arm64]
4791
5190
os: [linux]
···
4796
5195
cpu: [arm64]
4797
5196
os: [linux]
4798
5197
4799
4799
-
lightningcss-linux-arm64-musl@1.28.2:
4800
4800
-
resolution: {integrity: sha512-1SPG1ZTNnphWvAv8RVOymlZ8BDtAg69Hbo7n4QxARvkFVCJAt0cgjAw1Fox0WEhf4PwnyoOBaVH0Z5YNgzt4dA==}
5198
5198
+
lightningcss-linux-arm64-musl@1.30.2:
5199
5199
+
resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
4801
5200
engines: {node: '>= 12.0.0'}
4802
5201
cpu: [arm64]
4803
5202
os: [linux]
···
4808
5207
cpu: [x64]
4809
5208
os: [linux]
4810
5209
4811
4811
-
lightningcss-linux-x64-gnu@1.28.2:
4812
4812
-
resolution: {integrity: sha512-ZhQy0FcO//INWUdo/iEdbefntTdpPVQ0XJwwtdbBuMQe+uxqZoytm9M+iqR9O5noWFaxK+nbS2iR/I80Q2Ofpg==}
5210
5210
+
lightningcss-linux-x64-gnu@1.30.2:
5211
5211
+
resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
4813
5212
engines: {node: '>= 12.0.0'}
4814
5213
cpu: [x64]
4815
5214
os: [linux]
···
4820
5219
cpu: [x64]
4821
5220
os: [linux]
4822
5221
4823
4823
-
lightningcss-linux-x64-musl@1.28.2:
4824
4824
-
resolution: {integrity: sha512-alb/j1NMrgQmSFyzTbN1/pvMPM+gdDw7YBuQ5VSgcFDypN3Ah0BzC2dTZbzwzaMdUVDszX6zH5MzjfVN1oGuww==}
5222
5222
+
lightningcss-linux-x64-musl@1.30.2:
5223
5223
+
resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
4825
5224
engines: {node: '>= 12.0.0'}
4826
5225
cpu: [x64]
4827
5226
os: [linux]
···
4832
5231
cpu: [arm64]
4833
5232
os: [win32]
4834
5233
4835
4835
-
lightningcss-win32-arm64-msvc@1.28.2:
4836
4836
-
resolution: {integrity: sha512-WnwcjcBeAt0jGdjlgbT9ANf30pF0C/QMb1XnLnH272DQU8QXh+kmpi24R55wmWBwaTtNAETZ+m35ohyeMiNt+g==}
5234
5234
+
lightningcss-win32-arm64-msvc@1.30.2:
5235
5235
+
resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
4837
5236
engines: {node: '>= 12.0.0'}
4838
5237
cpu: [arm64]
4839
5238
os: [win32]
···
4844
5243
cpu: [x64]
4845
5244
os: [win32]
4846
5245
4847
4847
-
lightningcss-win32-x64-msvc@1.28.2:
4848
4848
-
resolution: {integrity: sha512-3piBifyT3avz22o6mDKywQC/OisH2yDK+caHWkiMsF82i3m5wDBadyCjlCQ5VNgzYkxrWZgiaxHDdd5uxsi0/A==}
5246
5246
+
lightningcss-win32-x64-msvc@1.30.2:
5247
5247
+
resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
4849
5248
engines: {node: '>= 12.0.0'}
4850
5249
cpu: [x64]
4851
5250
os: [win32]
···
4854
5253
resolution: {integrity: sha512-8f7aNmS1+etYSLHht0fQApPc2kNO8qGRutifN5rVIc6Xo6ABsEbqOr758UwI7ALVbTt4x1fllKt0PYgzD9S3yQ==}
4855
5254
engines: {node: '>= 12.0.0'}
4856
5255
4857
4857
-
lightningcss@1.28.2:
4858
4858
-
resolution: {integrity: sha512-ePLRrbt3fgjXI5VFZOLbvkLD5ZRuxGKm+wJ3ujCqBtL3NanDHPo/5zicR5uEKAPiIjBYF99BM4K4okvMznjkVA==}
5256
5256
+
lightningcss@1.30.2:
5257
5257
+
resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
4859
5258
engines: {node: '>= 12.0.0'}
4860
5259
4861
5260
lilconfig@3.1.3:
···
4973
5372
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
4974
5373
engines: {node: '>= 0.6'}
4975
5374
4976
4976
-
metro-babel-transformer@0.82.4:
4977
4977
-
resolution: {integrity: sha512-4juJahGRb1gmNbQq48lNinB6WFNfb6m0BQqi/RQibEltNiqTCxew/dBspI2EWA4xVCd3mQWGfw0TML4KurQZnQ==}
4978
4978
-
engines: {node: '>=18.18'}
5375
5375
+
metro-babel-transformer@0.83.1:
5376
5376
+
resolution: {integrity: sha512-r3xAD3964E8dwDBaZNSO2aIIvWXjIK80uO2xo0/pi3WI8XWT9h5SCjtGWtMtE5PRWw+t20TN0q1WMRsjvhC1rQ==}
5377
5377
+
engines: {node: '>=20.19.4'}
4979
5378
4980
4980
-
metro-cache-key@0.82.4:
4981
4981
-
resolution: {integrity: sha512-2JCTqcpF+f2OghOpe/+x+JywfzDkrHdAqinPFWmK2ezNAU/qX0jBFaTETogPibFivxZJil37w9Yp6syX8rFUng==}
4982
4982
-
engines: {node: '>=18.18'}
5379
5379
+
metro-cache-key@0.83.1:
5380
5380
+
resolution: {integrity: sha512-ZUs+GD5CNeDLxx5UUWmfg26IL+Dnbryd+TLqTlZnDEgehkIa11kUSvgF92OFfJhONeXzV4rZDRGNXoo6JT+8Gg==}
5381
5381
+
engines: {node: '>=20.19.4'}
4983
5382
4984
4984
-
metro-cache@0.82.4:
4985
4985
-
resolution: {integrity: sha512-vX0ylSMGtORKiZ4G8uP6fgfPdDiCWvLZUGZ5zIblSGylOX6JYhvExl0Zg4UA9pix/SSQu5Pnp9vdODMFsNIxhw==}
4986
4986
-
engines: {node: '>=18.18'}
5383
5383
+
metro-cache@0.83.1:
5384
5384
+
resolution: {integrity: sha512-7N/Ad1PHa1YMWDNiyynTPq34Op2qIE68NWryGEQ4TSE3Zy6a8GpsYnEEZE4Qi6aHgsE+yZHKkRczeBgxhnFIxQ==}
5385
5385
+
engines: {node: '>=20.19.4'}
4987
5386
4988
4988
-
metro-config@0.82.4:
4989
4989
-
resolution: {integrity: sha512-Ki3Wumr3hKHGDS7RrHsygmmRNc/PCJrvkLn0+BWWxmbOmOcMMJDSmSI+WRlT8jd5VPZFxIi4wg+sAt5yBXAK0g==}
4990
4990
-
engines: {node: '>=18.18'}
5387
5387
+
metro-config@0.83.1:
5388
5388
+
resolution: {integrity: sha512-HJhpZx3wyOkux/jeF1o7akFJzZFdbn6Zf7UQqWrvp7gqFqNulQ8Mju09raBgPmmSxKDl4LbbNeigkX0/nKY1QA==}
5389
5389
+
engines: {node: '>=20.19.4'}
4991
5390
4992
4992
-
metro-core@0.82.4:
4993
4993
-
resolution: {integrity: sha512-Xo4ozbxPg2vfgJGCgXZ8sVhC2M0lhTqD+tsKO2q9aelq/dCjnnSb26xZKcQO80CQOQUL7e3QWB7pLFGPjZm31A==}
4994
4994
-
engines: {node: '>=18.18'}
5391
5391
+
metro-core@0.83.1:
5392
5392
+
resolution: {integrity: sha512-uVL1eAJcMFd2o2Q7dsbpg8COaxjZBBGaXqO2OHnivpCdfanraVL8dPmY6It9ZeqWLOihUKZ2yHW4b6soVCzH/Q==}
5393
5393
+
engines: {node: '>=20.19.4'}
4995
5394
4996
4996
-
metro-file-map@0.82.4:
4997
4997
-
resolution: {integrity: sha512-eO7HD1O3aeNsbEe6NBZvx1lLJUrxgyATjnDmb7bm4eyF6yWOQot9XVtxTDLNifECuvsZ4jzRiTInrbmIHkTdGA==}
4998
4998
-
engines: {node: '>=18.18'}
5395
5395
+
metro-file-map@0.83.1:
5396
5396
+
resolution: {integrity: sha512-Yu429lnexKl44PttKw3nhqgmpBR+6UQ/tRaYcxPeEShtcza9DWakCn7cjqDTQZtWR2A8xSNv139izJMyQ4CG+w==}
5397
5397
+
engines: {node: '>=20.19.4'}
4999
5398
5000
5000
-
metro-minify-terser@0.82.4:
5001
5001
-
resolution: {integrity: sha512-W79Mi6BUwWVaM8Mc5XepcqkG+TSsCyyo//dmTsgYfJcsmReQorRFodil3bbJInETvjzdnS1mCsUo9pllNjT1Hg==}
5002
5002
-
engines: {node: '>=18.18'}
5399
5399
+
metro-minify-terser@0.83.1:
5400
5400
+
resolution: {integrity: sha512-kmooOxXLvKVxkh80IVSYO4weBdJDhCpg5NSPkjzzAnPJP43u6+usGXobkTWxxrAlq900bhzqKek4pBsUchlX6A==}
5401
5401
+
engines: {node: '>=20.19.4'}
5003
5402
5004
5004
-
metro-resolver@0.82.4:
5005
5005
-
resolution: {integrity: sha512-uWoHzOBGQTPT5PjippB8rRT3iI9CTgFA9tRiLMzrseA5o7YAlgvfTdY9vFk2qyk3lW3aQfFKWkmqENryPRpu+Q==}
5006
5006
-
engines: {node: '>=18.18'}
5403
5403
+
metro-resolver@0.83.1:
5404
5404
+
resolution: {integrity: sha512-t8j46kiILAqqFS5RNa+xpQyVjULxRxlvMidqUswPEk5nQVNdlJslqizDm/Et3v/JKwOtQGkYAQCHxP1zGStR/g==}
5405
5405
+
engines: {node: '>=20.19.4'}
5007
5406
5008
5008
-
metro-runtime@0.82.4:
5009
5009
-
resolution: {integrity: sha512-vVyFO7H+eLXRV2E7YAUYA7aMGBECGagqxmFvC2hmErS7oq90BbPVENfAHbUWq1vWH+MRiivoRxdxlN8gBoF/dw==}
5010
5010
-
engines: {node: '>=18.18'}
5407
5407
+
metro-runtime@0.83.1:
5408
5408
+
resolution: {integrity: sha512-3Ag8ZS4IwafL/JUKlaeM6/CbkooY+WcVeqdNlBG0m4S0Qz0om3rdFdy1y6fYBpl6AwXJwWeMuXrvZdMuByTcRA==}
5409
5409
+
engines: {node: '>=20.19.4'}
5011
5410
5012
5012
-
metro-source-map@0.82.4:
5013
5013
-
resolution: {integrity: sha512-9jzDQJ0FPas1FuQFtwmBHsez2BfhFNufMowbOMeG3ZaFvzeziE8A0aJwILDS3U+V5039ssCQFiQeqDgENWvquA==}
5014
5014
-
engines: {node: '>=18.18'}
5411
5411
+
metro-source-map@0.83.1:
5412
5412
+
resolution: {integrity: sha512-De7Vbeo96fFZ2cqmI0fWwVJbtHIwPZv++LYlWSwzTiCzxBDJORncN0LcT48Vi2UlQLzXJg+/CuTAcy7NBVh69A==}
5413
5413
+
engines: {node: '>=20.19.4'}
5015
5414
5016
5016
-
metro-symbolicate@0.82.4:
5017
5017
-
resolution: {integrity: sha512-LwEwAtdsx7z8rYjxjpLWxuFa2U0J6TS6ljlQM4WAATKa4uzV8unmnRuN2iNBWTmRqgNR77mzmI2vhwD4QSCo+w==}
5018
5018
-
engines: {node: '>=18.18'}
5415
5415
+
metro-symbolicate@0.83.1:
5416
5416
+
resolution: {integrity: sha512-wPxYkONlq/Sv8Ji7vHEx5OzFouXAMQJjpcPW41ySKMLP/Ir18SsiJK2h4YkdKpYrTS1+0xf8oqF6nxCsT3uWtg==}
5417
5417
+
engines: {node: '>=20.19.4'}
5019
5418
hasBin: true
5020
5419
5021
5021
-
metro-transform-plugins@0.82.4:
5022
5022
-
resolution: {integrity: sha512-NoWQRPHupVpnDgYguiEcm7YwDhnqW02iWWQjO2O8NsNP09rEMSq99nPjARWfukN7+KDh6YjLvTIN20mj3dk9kw==}
5023
5023
-
engines: {node: '>=18.18'}
5420
5420
+
metro-transform-plugins@0.83.1:
5421
5421
+
resolution: {integrity: sha512-1Y+I8oozXwhuS0qwC+ezaHXBf0jXW4oeYn4X39XWbZt9X2HfjodqY9bH9r6RUTsoiK7S4j8Ni2C91bUC+sktJQ==}
5422
5422
+
engines: {node: '>=20.19.4'}
5024
5423
5025
5025
-
metro-transform-worker@0.82.4:
5026
5026
-
resolution: {integrity: sha512-kPI7Ad/tdAnI9PY4T+2H0cdgGeSWWdiPRKuytI806UcN4VhFL6OmYa19/4abYVYF+Cd2jo57CDuwbaxRfmXDhw==}
5027
5027
-
engines: {node: '>=18.18'}
5424
5424
+
metro-transform-worker@0.83.1:
5425
5425
+
resolution: {integrity: sha512-owCrhPyUxdLgXEEEAL2b14GWTPZ2zYuab1VQXcfEy0sJE71iciD7fuMcrngoufh7e7UHDZ56q4ktXg8wgiYA1Q==}
5426
5426
+
engines: {node: '>=20.19.4'}
5028
5427
5029
5029
-
metro@0.82.4:
5030
5030
-
resolution: {integrity: sha512-/gFmw3ux9CPG5WUmygY35hpyno28zi/7OUn6+OFfbweA8l0B+PPqXXLr0/T6cf5nclCcH0d22o+02fICaShVxw==}
5031
5031
-
engines: {node: '>=18.18'}
5428
5428
+
metro@0.83.1:
5429
5429
+
resolution: {integrity: sha512-UGKepmTxoGD4HkQV8YWvpvwef7fUujNtTgG4Ygf7m/M0qjvb9VuDmAsEU+UdriRX7F61pnVK/opz89hjKlYTXA==}
5430
5430
+
engines: {node: '>=20.19.4'}
5032
5431
hasBin: true
5033
5432
5034
5433
micromatch@4.0.8:
···
5056
5455
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
5057
5456
engines: {node: '>=6'}
5058
5457
5059
5059
-
minimatch@10.0.1:
5060
5060
-
resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==}
5458
5458
+
minimatch@10.0.3:
5459
5459
+
resolution: {integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==}
5061
5460
engines: {node: 20 || >=22}
5062
5461
5063
5462
minimatch@3.1.2:
···
5124
5523
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
5125
5524
hasBin: true
5126
5525
5127
5127
-
nanoid@3.3.8:
5128
5128
-
resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
5129
5129
-
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
5130
5130
-
hasBin: true
5131
5131
-
5132
5526
napi-postinstall@0.3.4:
5133
5527
resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==}
5134
5528
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
5135
5529
hasBin: true
5136
5530
5137
5137
-
nativewind@4.1.23:
5138
5138
-
resolution: {integrity: sha512-oLX3suGI6ojQqWxdQezOSM5GmJ4KvMnMtmaSMN9Ggb5j7ysFt4nHxb1xs8RDjZR7BWc+bsetNJU8IQdQMHqRpg==}
5531
5531
+
nativewind@4.2.1:
5532
5532
+
resolution: {integrity: sha512-10uUB2Dlli3MH3NDL5nMHqJHz1A3e/E6mzjTj6cl7hHECClJ7HpE6v+xZL+GXdbwQSnWE+UWMIMsNz7yOQkAJQ==}
5139
5533
engines: {node: '>=16'}
5140
5534
peerDependencies:
5141
5535
tailwindcss: '>3.3.0'
···
5177
5571
node-int64@0.4.0:
5178
5572
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
5179
5573
5180
5180
-
node-releases@2.0.19:
5181
5181
-
resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
5574
5574
+
node-releases@2.0.23:
5575
5575
+
resolution: {integrity: sha512-cCmFDMSm26S6tQSDpBCg/NR8NENrVPhAJSf+XbxBG4rPFaaonlEoE9wHQmun+cls499TQGSb7ZyPBRlzgKfpeg==}
5182
5576
5183
5577
normalize-path@3.0.0:
5184
5578
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
···
5212
5606
oauth-sign@0.9.0:
5213
5607
resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==}
5214
5608
5215
5215
-
ob1@0.82.4:
5216
5216
-
resolution: {integrity: sha512-n9S8e4l5TvkrequEAMDidl4yXesruWTNTzVkeaHSGywoTOIwTzZzKw7Z670H3eaXDZui5MJXjWGNzYowVZIxCA==}
5217
5217
-
engines: {node: '>=18.18'}
5609
5609
+
ob1@0.83.1:
5610
5610
+
resolution: {integrity: sha512-ngwqewtdUzFyycomdbdIhFLjePPSOt1awKMUXQ0L7iLHgWEPF3DsCerblzjzfAUHaXuvE9ccJymWQ/4PNNqvnQ==}
5611
5611
+
engines: {node: '>=20.19.4'}
5218
5612
5219
5613
object-assign@4.1.1:
5220
5614
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
···
5224
5618
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
5225
5619
engines: {node: '>= 6'}
5226
5620
5227
5227
-
object-inspect@1.13.3:
5228
5228
-
resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
5621
5621
+
object-inspect@1.13.4:
5622
5622
+
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
5229
5623
engines: {node: '>= 0.4'}
5230
5624
5231
5625
object-keys@1.1.1:
···
5236
5630
resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
5237
5631
engines: {node: '>= 0.4'}
5238
5632
5239
5239
-
object.entries@1.1.8:
5240
5240
-
resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
5633
5633
+
object.entries@1.1.9:
5634
5634
+
resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==}
5241
5635
engines: {node: '>= 0.4'}
5242
5636
5243
5637
object.fromentries@2.0.8:
···
5404
5798
5405
5799
path-to-regexp@0.1.12:
5406
5800
resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
5801
5801
+
5802
5802
+
path-type@4.0.0:
5803
5803
+
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
5804
5804
+
engines: {node: '>=8'}
5407
5805
5408
5806
performance-now@2.1.0:
5409
5807
resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
···
5419
5817
resolution: {integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==}
5420
5818
engines: {node: '>=10'}
5421
5819
5422
5422
-
picomatch@4.0.2:
5423
5423
-
resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
5820
5820
+
picomatch@4.0.3:
5821
5821
+
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
5424
5822
engines: {node: '>=12'}
5425
5823
5426
5824
pify@2.3.0:
···
5436
5834
pino@8.21.0:
5437
5835
resolution: {integrity: sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q==}
5438
5836
hasBin: true
5439
5439
-
5440
5440
-
pirates@4.0.6:
5441
5441
-
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
5442
5442
-
engines: {node: '>= 6'}
5443
5837
5444
5838
pirates@4.0.7:
5445
5839
resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
···
5465
5859
resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
5466
5860
engines: {node: '>= 0.4'}
5467
5861
5862
5862
+
possible-typed-array-names@1.1.0:
5863
5863
+
resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
5864
5864
+
engines: {node: '>= 0.4'}
5865
5865
+
5468
5866
postcss-import@15.1.0:
5469
5867
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
5470
5868
engines: {node: '>=14.0.0'}
5471
5869
peerDependencies:
5472
5870
postcss: ^8.0.0
5473
5871
5474
5474
-
postcss-js@4.0.1:
5475
5475
-
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
5872
5872
+
postcss-js@4.1.0:
5873
5873
+
resolution: {integrity: sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==}
5476
5874
engines: {node: ^12 || ^14 || >= 16}
5477
5875
peerDependencies:
5478
5876
postcss: ^8.4.21
5479
5877
5480
5480
-
postcss-load-config@4.0.2:
5481
5481
-
resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
5482
5482
-
engines: {node: '>= 14'}
5878
5878
+
postcss-load-config@6.0.1:
5879
5879
+
resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
5880
5880
+
engines: {node: '>= 18'}
5483
5881
peerDependencies:
5882
5882
+
jiti: '>=1.21.0'
5484
5883
postcss: '>=8.0.9'
5485
5485
-
ts-node: '>=9.0.0'
5884
5884
+
tsx: ^4.8.1
5885
5885
+
yaml: ^2.4.2
5486
5886
peerDependenciesMeta:
5887
5887
+
jiti:
5888
5888
+
optional: true
5487
5889
postcss:
5488
5890
optional: true
5489
5489
-
ts-node:
5891
5891
+
tsx:
5892
5892
+
optional: true
5893
5893
+
yaml:
5490
5894
optional: true
5491
5895
5492
5896
postcss-nested@6.2.0:
···
5510
5914
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
5511
5915
engines: {node: '>= 0.8.0'}
5512
5916
5513
5513
-
prettier-plugin-tailwindcss@0.6.12:
5514
5514
-
resolution: {integrity: sha512-OuTQKoqNwV7RnxTPwXWzOFXy6Jc4z8oeRZYGuMpRyG3WbuR3jjXdQFK8qFBMBx8UHWdHrddARz2fgUenild6aw==}
5917
5917
+
prettier-plugin-tailwindcss@0.6.14:
5918
5918
+
resolution: {integrity: sha512-pi2e/+ZygeIqntN+vC573BcW5Cve8zUB0SSAGxqpB4f96boZF4M3phPVoOFCeypwkpRYdi7+jQ5YJJUwrkGUAg==}
5515
5919
engines: {node: '>=14.21.3'}
5516
5920
peerDependencies:
5517
5921
'@ianvs/prettier-plugin-sort-imports': '*'
5922
5922
+
'@prettier/plugin-hermes': '*'
5923
5923
+
'@prettier/plugin-oxc': '*'
5518
5924
'@prettier/plugin-pug': '*'
5519
5925
'@shopify/prettier-plugin-liquid': '*'
5520
5926
'@trivago/prettier-plugin-sort-imports': '*'
···
5533
5939
prettier-plugin-svelte: '*'
5534
5940
peerDependenciesMeta:
5535
5941
'@ianvs/prettier-plugin-sort-imports':
5942
5942
+
optional: true
5943
5943
+
'@prettier/plugin-hermes':
5944
5944
+
optional: true
5945
5945
+
'@prettier/plugin-oxc':
5536
5946
optional: true
5537
5947
'@prettier/plugin-pug':
5538
5948
optional: true
···
5565
5975
prettier-plugin-svelte:
5566
5976
optional: true
5567
5977
5568
5568
-
prettier@3.4.2:
5569
5569
-
resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==}
5570
5570
-
engines: {node: '>=14'}
5571
5571
-
hasBin: true
5572
5572
-
5573
5573
-
prettier@3.5.3:
5574
5574
-
resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==}
5978
5978
+
prettier@3.6.2:
5979
5979
+
resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==}
5575
5980
engines: {node: '>=14'}
5576
5981
hasBin: true
5577
5982
···
5629
6034
punycode@2.3.1:
5630
6035
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
5631
6036
engines: {node: '>=6'}
6037
6037
+
6038
6038
+
pure-rand@6.1.0:
6039
6039
+
resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==}
5632
6040
5633
6041
pure-rand@7.0.1:
5634
6042
resolution: {integrity: sha512-oTUZM/NAZS8p7ANR3SHh30kXB+zK2r2BPcEn/awJIbOvq82WoMN4p62AWWp3Hhw50G0xMsw1mhIBLqHw64EcNQ==}
···
5684
6092
peerDependencies:
5685
6093
react: ^17.0.0 || ^18.0.0 || ^19.0.0
5686
6094
5687
5687
-
react-devtools-core@6.1.2:
5688
5688
-
resolution: {integrity: sha512-ldFwzufLletzCikNJVYaxlxMLu7swJ3T2VrGfzXlMsVhZhPDKXA38DEROidaYZVgMAmQnIjymrmqto5pyfrwPA==}
6095
6095
+
react-devtools-core@6.1.5:
6096
6096
+
resolution: {integrity: sha512-ePrwPfxAnB+7hgnEr8vpKxL9cmnp7F322t8oqcPshbIQQhDKgFDW4tjhF2wjVbdXF9O/nyuy3sQWd9JGpiLPvA==}
6097
6097
+
6098
6098
+
react-dom@19.1.0:
6099
6099
+
resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==}
6100
6100
+
peerDependencies:
6101
6101
+
react: ^19.1.0
5689
6102
5690
5690
-
react-dom@19.0.0:
5691
5691
-
resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==}
6103
6103
+
react-dom@19.2.0:
6104
6104
+
resolution: {integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==}
5692
6105
peerDependencies:
5693
5693
-
react: ^19.0.0
6106
6106
+
react: ^19.2.0
5694
6107
5695
6108
react-fast-compare@3.2.2:
5696
6109
resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
···
5710
6123
react-is@19.1.0:
5711
6124
resolution: {integrity: sha512-Oe56aUPnkHyyDxxkvqtd7KkdQP5uIUfHxd5XTb3wE9d/kRnZLmKbDB0GWk919tdQ+mxxPtG6EAs6RMT6i1qtHg==}
5712
6125
5713
5713
-
react-native-css-interop@0.1.18:
5714
5714
-
resolution: {integrity: sha512-ZDA52ZOr1YQyq9iWncEsbCe1luuAqLX4XeRX9r3XAdHYGc3YpJ5xcL2A6X9wHF39/icISMs3/0OMSnQJe/Flhg==}
6126
6126
+
react-is@19.2.0:
6127
6127
+
resolution: {integrity: sha512-x3Ax3kNSMIIkyVYhWPyO09bu0uttcAIoecO/um/rKGQ4EltYWVYtyiGkS/3xMynrbVQdS69Jhlv8FXUEZehlzA==}
6128
6128
+
6129
6129
+
react-native-css-interop@0.1.22:
6130
6130
+
resolution: {integrity: sha512-Mu01e+H9G+fxSWvwtgWlF5MJBJC4VszTCBXopIpeR171lbeBInHb8aHqoqRPxmJpi3xIHryzqKFOJYAdk7PBxg==}
5715
6131
engines: {node: '>=18'}
5716
6132
peerDependencies:
5717
6133
react: '>=18'
···
5726
6142
react-native-svg:
5727
6143
optional: true
5728
6144
5729
5729
-
react-native-css-interop@0.1.22:
5730
5730
-
resolution: {integrity: sha512-Mu01e+H9G+fxSWvwtgWlF5MJBJC4VszTCBXopIpeR171lbeBInHb8aHqoqRPxmJpi3xIHryzqKFOJYAdk7PBxg==}
6145
6145
+
react-native-css-interop@0.2.1:
6146
6146
+
resolution: {integrity: sha512-B88f5rIymJXmy1sNC/MhTkb3xxBej1KkuAt7TiT9iM7oXz3RM8Bn+7GUrfR02TvSgKm4cg2XiSuLEKYfKwNsjA==}
5731
6147
engines: {node: '>=18'}
5732
6148
peerDependencies:
5733
6149
react: '>=18'
···
5742
6158
react-native-svg:
5743
6159
optional: true
5744
6160
5745
5745
-
react-native-edge-to-edge@1.6.0:
5746
5746
-
resolution: {integrity: sha512-2WCNdE3Qd6Fwg9+4BpbATUxCLcouF6YRY7K+J36KJ4l3y+tWN6XCqAC4DuoGblAAbb2sLkhEDp4FOlbOIot2Og==}
6161
6161
+
react-native-gesture-handler@2.28.0:
6162
6162
+
resolution: {integrity: sha512-0msfJ1vRxXKVgTgvL+1ZOoYw3/0z1R+Ked0+udoJhyplC2jbVKIJ8Z1bzWdpQRCV3QcQ87Op0zJVE5DhKK2A0A==}
5747
6163
peerDependencies:
5748
6164
react: '*'
5749
6165
react-native: '*'
5750
6166
5751
5751
-
react-native-gesture-handler@2.24.0:
5752
5752
-
resolution: {integrity: sha512-ZdWyOd1C8axKJHIfYxjJKCcxjWEpUtUWgTOVY2wynbiveSQDm8X/PDyAKXSer/GOtIpjudUbACOndZXCN3vHsw==}
6167
6167
+
react-native-is-edge-to-edge@1.1.7:
6168
6168
+
resolution: {integrity: sha512-EH6i7E8epJGIcu7KpfXYXiV2JFIYITtq+rVS8uEb+92naMRBdxhTuS8Wn2Q7j9sqyO0B+Xbaaf9VdipIAmGW4w==}
5753
6169
peerDependencies:
5754
6170
react: '*'
5755
6171
react-native: '*'
5756
6172
5757
5757
-
react-native-is-edge-to-edge@1.1.6:
5758
5758
-
resolution: {integrity: sha512-1pHnFTlBahins6UAajXUqeCOHew9l9C2C8tErnpGC3IyLJzvxD+TpYAixnCbrVS52f7+NvMttbiSI290XfwN0w==}
5759
5759
-
peerDependencies:
5760
5760
-
react: '>=18.2.0'
5761
5761
-
react-native: '>=0.73.0'
5762
5762
-
5763
5763
-
react-native-is-edge-to-edge@1.1.7:
5764
5764
-
resolution: {integrity: sha512-EH6i7E8epJGIcu7KpfXYXiV2JFIYITtq+rVS8uEb+92naMRBdxhTuS8Wn2Q7j9sqyO0B+Xbaaf9VdipIAmGW4w==}
6173
6173
+
react-native-is-edge-to-edge@1.2.1:
6174
6174
+
resolution: {integrity: sha512-FLbPWl/MyYQWz+KwqOZsSyj2JmLKglHatd3xLZWskXOpRaio4LfEDEz8E/A6uD8QoTHW6Aobw1jbEwK7KMgR7Q==}
5765
6175
peerDependencies:
5766
6176
react: '*'
5767
6177
react-native: '*'
···
5775
6185
react-native-quick-crypto@0.7.17:
5776
6186
resolution: {integrity: sha512-cJzp6oA/dM1lujt+Rwtn46Mgcs3w9F/0oQvNz1jcADc/AXktveAOUTzzKrDMxyg6YPziCYnoqMDzHBo6OLSU1g==}
5777
6187
5778
5778
-
react-native-reanimated@3.17.5:
5779
5779
-
resolution: {integrity: sha512-SxBK7wQfJ4UoWoJqQnmIC7ZjuNgVb9rcY5Xc67upXAFKftWg0rnkknTw6vgwnjRcvYThrjzUVti66XoZdDJGtw==}
6188
6188
+
react-native-reanimated@4.1.2:
6189
6189
+
resolution: {integrity: sha512-qzmQiFrvjm62pRBcj97QI9Xckc3EjgHQoY1F2yjktd0kpjhoyePeuTEXjYRCAVIy7IV/1cfeSup34+zFThFoHQ==}
5780
6190
peerDependencies:
5781
6191
'@babel/core': ^7.0.0-0
5782
6192
react: '*'
5783
6193
react-native: '*'
6194
6194
+
react-native-worklets: '>=0.5.0'
5784
6195
5785
5785
-
react-native-safe-area-context@5.4.0:
5786
5786
-
resolution: {integrity: sha512-JaEThVyJcLhA+vU0NU8bZ0a1ih6GiF4faZ+ArZLqpYbL6j7R3caRqj+mE3lEtKCuHgwjLg3bCxLL1GPUJZVqUA==}
6196
6196
+
react-native-safe-area-context@5.6.1:
6197
6197
+
resolution: {integrity: sha512-/wJE58HLEAkATzhhX1xSr+fostLsK8Q97EfpfMDKo8jlOc1QKESSX/FQrhk7HhQH/2uSaox4Y86sNaI02kteiA==}
5787
6198
peerDependencies:
5788
6199
react: '*'
5789
6200
react-native: '*'
5790
6201
5791
5791
-
react-native-screens@4.10.0:
5792
5792
-
resolution: {integrity: sha512-Tw21NGuXm3PbiUGtZd0AnXirUixaAbPXDjNR0baBH7/WJDaDTTELLcQ7QRXuqAWbmr/EVCrKj1348ei1KFIr8A==}
6202
6202
+
react-native-screens@4.16.0:
6203
6203
+
resolution: {integrity: sha512-yIAyh7F/9uWkOzCi1/2FqvNvK6Wb9Y1+Kzn16SuGfN9YFJDTbwlzGRvePCNTOX0recpLQF3kc2FmvMUhyTCH1Q==}
5793
6204
peerDependencies:
5794
6205
react: '*'
5795
6206
react-native: '*'
5796
6207
5797
5797
-
react-native-svg@15.11.2:
5798
5798
-
resolution: {integrity: sha512-+YfF72IbWQUKzCIydlijV1fLuBsQNGMT6Da2kFlo1sh+LE3BIm/2Q7AR1zAAR6L0BFLi1WaQPLfFUC9bNZpOmw==}
6208
6208
+
react-native-svg@15.12.1:
6209
6209
+
resolution: {integrity: sha512-vCuZJDf8a5aNC2dlMovEv4Z0jjEUET53lm/iILFnFewa15b4atjVxU6Wirm6O9y6dEsdjDZVD7Q3QM4T1wlI8g==}
5799
6210
peerDependencies:
5800
6211
react: '*'
5801
6212
react-native: '*'
5802
6213
5803
5803
-
react-native-web@0.20.0:
5804
5804
-
resolution: {integrity: sha512-OOSgrw+aON6R3hRosCau/xVxdLzbjEcsLysYedka0ZON4ZZe6n9xgeN9ZkoejhARM36oTlUgHIQqxGutEJ9Wxg==}
6214
6214
+
react-native-web@0.21.1:
6215
6215
+
resolution: {integrity: sha512-BeNsgwwe4AXUFPAoFU+DKjJ+CVQa3h54zYX77p7GVZrXiiNo3vl03WYDYVEy5R2J2HOPInXtQZB5gmj3vuzrKg==}
5805
6216
peerDependencies:
5806
6217
react: ^18.0.0 || ^19.0.0
5807
6218
react-dom: ^18.0.0 || ^19.0.0
5808
6219
5809
5809
-
react-native@0.79.6:
5810
5810
-
resolution: {integrity: sha512-kvIWSmf4QPfY41HC25TR285N7Fv0Pyn3DAEK8qRL9dA35usSaxsJkHfw+VqnonqJjXOaoKCEanwudRAJ60TBGA==}
5811
5811
-
engines: {node: '>=18'}
6220
6220
+
react-native-worklets@0.6.0:
6221
6221
+
resolution: {integrity: sha512-yETMNuCcivdYWteuG4eRqgiAk2DzRCrVAaEBIEWPo4emrf3BNjadFo85L5QvyEusrX9QKE3ZEAx8U5A/nbyFgg==}
6222
6222
+
peerDependencies:
6223
6223
+
'@babel/core': ^7.0.0-0
6224
6224
+
react: '*'
6225
6225
+
react-native: '*'
6226
6226
+
6227
6227
+
react-native@0.81.4:
6228
6228
+
resolution: {integrity: sha512-bt5bz3A/+Cv46KcjV0VQa+fo7MKxs17RCcpzjftINlen4ZDUl0I6Ut+brQ2FToa5oD0IB0xvQHfmsg2EDqsZdQ==}
6229
6229
+
engines: {node: '>= 20.19.4'}
5812
6230
hasBin: true
5813
6231
peerDependencies:
5814
5814
-
'@types/react': ^19.0.0
5815
5815
-
react: ^19.0.0
6232
6232
+
'@types/react': ^19.1.0
6233
6233
+
react: ^19.1.0
5816
6234
peerDependenciesMeta:
5817
6235
'@types/react':
5818
6236
optional: true
···
5835
6253
'@types/react':
5836
6254
optional: true
5837
6255
5838
5838
-
react-remove-scroll@2.6.2:
5839
5839
-
resolution: {integrity: sha512-KmONPx5fnlXYJQqC62Q+lwIeAk64ws/cUw6omIumRzMRPqgnYqhSSti99nbj0Ry13bv7dF+BKn7NB+OqkdZGTw==}
6256
6256
+
react-remove-scroll@2.7.1:
6257
6257
+
resolution: {integrity: sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==}
5840
6258
engines: {node: '>=10'}
5841
6259
peerDependencies:
5842
6260
'@types/react': '*'
···
5868
6286
peerDependencies:
5869
6287
react: ^19.1.0
5870
6288
5871
5871
-
react@19.0.0:
5872
5872
-
resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
6289
6289
+
react@19.1.0:
6290
6290
+
resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==}
6291
6291
+
engines: {node: '>=0.10.0'}
6292
6292
+
6293
6293
+
react@19.2.0:
6294
6294
+
resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==}
5873
6295
engines: {node: '>=0.10.0'}
5874
6296
5875
6297
read-cache@1.0.0:
···
5879
6301
resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==}
5880
6302
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
5881
6303
6304
6304
+
readable-stream@4.7.0:
6305
6305
+
resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==}
6306
6306
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
6307
6307
+
5882
6308
readdirp@3.6.0:
5883
6309
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
5884
6310
engines: {node: '>=8.10.0'}
···
5894
6320
resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==}
5895
6321
engines: {node: '>= 12.13.0'}
5896
6322
5897
5897
-
reflect.getprototypeof@1.0.9:
5898
5898
-
resolution: {integrity: sha512-r0Ay04Snci87djAsI4U+WNRcSw5S4pOH7qFjd/veA5gC7TbqESR3tcj28ia95L/fYUDw11JKP7uqUKUAfVvV5Q==}
6323
6323
+
reflect.getprototypeof@1.0.10:
6324
6324
+
resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
5899
6325
engines: {node: '>= 0.4'}
5900
6326
5901
6327
regenerate-unicode-properties@10.2.0:
5902
6328
resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
5903
6329
engines: {node: '>=4'}
5904
6330
6331
6331
+
regenerate-unicode-properties@10.2.2:
6332
6332
+
resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==}
6333
6333
+
engines: {node: '>=4'}
6334
6334
+
5905
6335
regenerate@1.4.2:
5906
6336
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
5907
6337
5908
6338
regenerator-runtime@0.13.11:
5909
6339
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
5910
6340
5911
5911
-
regenerator-runtime@0.14.1:
5912
5912
-
resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
5913
5913
-
5914
6341
regenerator-runtime@0.9.6:
5915
6342
resolution: {integrity: sha512-D0Y/JJ4VhusyMOd/o25a3jdUqN/bC85EFsaoL9Oqmy/O4efCh+xhp7yj2EEOsj974qvMkcW8AwUzJ1jB/MbxCw==}
5916
6343
5917
6344
regenerator-transform@0.15.2:
5918
6345
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
5919
6346
5920
5920
-
regexp.prototype.flags@1.5.3:
5921
5921
-
resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==}
6347
6347
+
regexp.prototype.flags@1.5.4:
6348
6348
+
resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
5922
6349
engines: {node: '>= 0.4'}
5923
6350
5924
6351
regexpu-core@6.2.0:
5925
6352
resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
5926
6353
engines: {node: '>=4'}
5927
6354
6355
6355
+
regexpu-core@6.4.0:
6356
6356
+
resolution: {integrity: sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==}
6357
6357
+
engines: {node: '>=4'}
6358
6358
+
5928
6359
regjsgen@0.8.0:
5929
6360
resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
5930
6361
5931
6362
regjsparser@0.12.0:
5932
6363
resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
6364
6364
+
hasBin: true
6365
6365
+
6366
6366
+
regjsparser@0.13.0:
6367
6367
+
resolution: {integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==}
5933
6368
hasBin: true
5934
6369
5935
6370
repeat-string@1.6.1:
···
5980
6415
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
5981
6416
engines: {node: '>=8'}
5982
6417
6418
6418
+
resolve-global@1.0.0:
6419
6419
+
resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==}
6420
6420
+
engines: {node: '>=8'}
6421
6421
+
5983
6422
resolve-pkg-maps@1.0.0:
5984
6423
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
5985
6424
···
6010
6449
resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==}
6011
6450
engines: {node: '>=4'}
6012
6451
6013
6013
-
reusify@1.0.4:
6014
6014
-
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
6452
6452
+
reusify@1.1.0:
6453
6453
+
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
6015
6454
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
6016
6455
6017
6456
rimraf@2.7.1:
···
6067
6506
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
6068
6507
engines: {node: '>=v12.22.7'}
6069
6508
6070
6070
-
scheduler@0.25.0:
6071
6071
-
resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==}
6072
6072
-
6073
6509
scheduler@0.26.0:
6074
6510
resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==}
6075
6511
6512
6512
+
scheduler@0.27.0:
6513
6513
+
resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
6514
6514
+
6076
6515
schema-utils@3.3.0:
6077
6516
resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
6078
6517
engines: {node: '>= 10.13.0'}
6079
6518
6080
6080
-
schema-utils@4.3.0:
6081
6081
-
resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==}
6519
6519
+
schema-utils@4.3.3:
6520
6520
+
resolution: {integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==}
6082
6521
engines: {node: '>= 10.13.0'}
6083
6522
6084
6523
semver@6.3.1:
···
6119
6558
6120
6559
set-function-name@2.0.2:
6121
6560
resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
6561
6561
+
engines: {node: '>= 0.4'}
6562
6562
+
6563
6563
+
set-proto@1.0.0:
6564
6564
+
resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
6122
6565
engines: {node: '>= 0.4'}
6123
6566
6124
6567
setimmediate@1.0.5:
···
6127
6570
setprototypeof@1.2.0:
6128
6571
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
6129
6572
6573
6573
+
sf-symbols-typescript@2.1.0:
6574
6574
+
resolution: {integrity: sha512-ezT7gu/SHTPIOEEoG6TF+O0m5eewl0ZDAO4AtdBi5HjsrUI6JdCG17+Q8+aKp0heM06wZKApRCn5olNbs0Wb/A==}
6575
6575
+
engines: {node: '>=10'}
6576
6576
+
6130
6577
shallowequal@1.1.0:
6131
6578
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
6132
6579
···
6152
6599
6153
6600
side-channel-weakmap@1.0.2:
6154
6601
resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
6155
6155
-
engines: {node: '>= 0.4'}
6156
6156
-
6157
6157
-
side-channel@1.0.6:
6158
6158
-
resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
6159
6602
engines: {node: '>= 0.4'}
6160
6603
6161
6604
side-channel@1.1.0:
···
6235
6678
engines: {node: '>=0.10.0'}
6236
6679
hasBin: true
6237
6680
6238
6238
-
stable-hash@0.0.4:
6239
6239
-
resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
6681
6681
+
stable-hash@0.0.5:
6682
6682
+
resolution: {integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==}
6240
6683
6241
6684
stack-generator@2.0.10:
6242
6685
resolution: {integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==}
···
6266
6709
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
6267
6710
engines: {node: '>= 0.8'}
6268
6711
6712
6712
+
stop-iteration-iterator@1.1.0:
6713
6713
+
resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
6714
6714
+
engines: {node: '>= 0.4'}
6715
6715
+
6269
6716
stream-buffers@2.2.0:
6270
6717
resolution: {integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==}
6271
6718
engines: {node: '>= 0.10.0'}
···
6328
6775
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
6329
6776
engines: {node: '>=8'}
6330
6777
6331
6331
-
strip-ansi@7.1.0:
6332
6332
-
resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
6778
6778
+
strip-ansi@7.1.2:
6779
6779
+
resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
6333
6780
engines: {node: '>=12'}
6334
6781
6335
6782
strip-bom@3.0.0:
···
6410
6857
peerDependencies:
6411
6858
tailwindcss: '>=3.0.0 || insiders'
6412
6859
6413
6413
-
tailwindcss@3.4.17:
6414
6414
-
resolution: {integrity: sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==}
6860
6860
+
tailwindcss@3.4.18:
6861
6861
+
resolution: {integrity: sha512-6A2rnmW5xZMdw11LYjhcI5846rt9pbLSabY5XPxo+XWdxwZaFEn47Go4NzFiHu9sNNmr/kXivP1vStfvMaK1GQ==}
6415
6862
engines: {node: '>=14.0.0'}
6416
6863
hasBin: true
6417
6864
6418
6418
-
tapable@2.2.1:
6419
6419
-
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
6865
6865
+
tapable@2.3.0:
6866
6866
+
resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
6420
6867
engines: {node: '>=6'}
6421
6868
6422
6869
tar@7.4.3:
···
6431
6878
resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==}
6432
6879
engines: {node: '>=8'}
6433
6880
6434
6434
-
terser-webpack-plugin@5.3.11:
6435
6435
-
resolution: {integrity: sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==}
6881
6881
+
terser-webpack-plugin@5.3.14:
6882
6882
+
resolution: {integrity: sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==}
6436
6883
engines: {node: '>= 10.13.0'}
6437
6884
peerDependencies:
6438
6885
'@swc/core': '*'
···
6449
6896
6450
6897
terser@5.37.0:
6451
6898
resolution: {integrity: sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==}
6899
6899
+
engines: {node: '>=10'}
6900
6900
+
hasBin: true
6901
6901
+
6902
6902
+
terser@5.44.0:
6903
6903
+
resolution: {integrity: sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==}
6452
6904
engines: {node: '>=10'}
6453
6905
hasBin: true
6454
6906
···
6475
6927
through@2.3.8:
6476
6928
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
6477
6929
6478
6478
-
tinyglobby@0.2.10:
6479
6479
-
resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==}
6930
6930
+
tinyglobby@0.2.15:
6931
6931
+
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
6480
6932
engines: {node: '>=12.0.0'}
6481
6933
6482
6934
tlds@1.255.0:
···
6557
7009
tunnel-agent@0.6.0:
6558
7010
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
6559
7011
6560
6560
-
turbo-darwin-64@2.3.3:
6561
6561
-
resolution: {integrity: sha512-bxX82xe6du/3rPmm4aCC5RdEilIN99VUld4HkFQuw+mvFg6darNBuQxyWSHZTtc25XgYjQrjsV05888w1grpaA==}
7012
7012
+
turbo-darwin-64@2.5.8:
7013
7013
+
resolution: {integrity: sha512-Dh5bCACiHO8rUXZLpKw+m3FiHtAp2CkanSyJre+SInEvEr5kIxjGvCK/8MFX8SFRjQuhjtvpIvYYZJB4AGCxNQ==}
6562
7014
cpu: [x64]
6563
7015
os: [darwin]
6564
7016
6565
6565
-
turbo-darwin-arm64@2.3.3:
6566
6566
-
resolution: {integrity: sha512-DYbQwa3NsAuWkCUYVzfOUBbSUBVQzH5HWUFy2Kgi3fGjIWVZOFk86ss+xsWu//rlEAfYwEmopigsPYSmW4X15A==}
7017
7017
+
turbo-darwin-arm64@2.5.8:
7018
7018
+
resolution: {integrity: sha512-f1H/tQC9px7+hmXn6Kx/w8Jd/FneIUnvLlcI/7RGHunxfOkKJKvsoiNzySkoHQ8uq1pJnhJ0xNGTlYM48ZaJOQ==}
6567
7019
cpu: [arm64]
6568
7020
os: [darwin]
6569
7021
6570
6570
-
turbo-linux-64@2.3.3:
6571
6571
-
resolution: {integrity: sha512-eHj9OIB0dFaP6BxB88jSuaCLsOQSYWBgmhy2ErCu6D2GG6xW3b6e2UWHl/1Ho9FsTg4uVgo4DB9wGsKa5erjUA==}
7022
7022
+
turbo-linux-64@2.5.8:
7023
7023
+
resolution: {integrity: sha512-hMyvc7w7yadBlZBGl/bnR6O+dJTx3XkTeyTTH4zEjERO6ChEs0SrN8jTFj1lueNXKIHh1SnALmy6VctKMGnWfw==}
6572
7024
cpu: [x64]
6573
7025
os: [linux]
6574
7026
6575
6575
-
turbo-linux-arm64@2.3.3:
6576
6576
-
resolution: {integrity: sha512-NmDE/NjZoDj1UWBhMtOPmqFLEBKhzGS61KObfrDEbXvU3lekwHeoPvAMfcovzswzch+kN2DrtbNIlz+/rp8OCg==}
7027
7027
+
turbo-linux-arm64@2.5.8:
7028
7028
+
resolution: {integrity: sha512-LQELGa7bAqV2f+3rTMRPnj5G/OHAe2U+0N9BwsZvfMvHSUbsQ3bBMWdSQaYNicok7wOZcHjz2TkESn1hYK6xIQ==}
6577
7029
cpu: [arm64]
6578
7030
os: [linux]
6579
7031
6580
6580
-
turbo-windows-64@2.3.3:
6581
6581
-
resolution: {integrity: sha512-O2+BS4QqjK3dOERscXqv7N2GXNcqHr9hXumkMxDj/oGx9oCatIwnnwx34UmzodloSnJpgSqjl8iRWiY65SmYoQ==}
7032
7032
+
turbo-windows-64@2.5.8:
7033
7033
+
resolution: {integrity: sha512-3YdcaW34TrN1AWwqgYL9gUqmZsMT4T7g8Y5Azz+uwwEJW+4sgcJkIi9pYFyU4ZBSjBvkfuPZkGgfStir5BBDJQ==}
6582
7034
cpu: [x64]
6583
7035
os: [win32]
6584
7036
6585
6585
-
turbo-windows-arm64@2.3.3:
6586
6586
-
resolution: {integrity: sha512-dW4ZK1r6XLPNYLIKjC4o87HxYidtRRcBeo/hZ9Wng2XM/MqqYkAyzJXJGgRMsc0MMEN9z4+ZIfnSNBrA0b08ag==}
7037
7037
+
turbo-windows-arm64@2.5.8:
7038
7038
+
resolution: {integrity: sha512-eFC5XzLmgXJfnAK3UMTmVECCwuBcORrWdewoiXBnUm934DY6QN8YowC/srhNnROMpaKaqNeRpoB5FxCww3eteQ==}
6587
7039
cpu: [arm64]
6588
7040
os: [win32]
6589
7041
6590
6590
-
turbo@2.3.3:
6591
6591
-
resolution: {integrity: sha512-DUHWQAcC8BTiUZDRzAYGvpSpGLiaOQPfYXlCieQbwUvmml/LRGIe3raKdrOPOoiX0DYlzxs2nH6BoWJoZrj8hA==}
7042
7042
+
turbo@2.5.8:
7043
7043
+
resolution: {integrity: sha512-5c9Fdsr9qfpT3hA0EyYSFRZj1dVVsb6KIWubA9JBYZ/9ZEAijgUEae0BBR/Xl/wekt4w65/lYLTFaP3JmwSO8w==}
6592
7044
hasBin: true
6593
7045
6594
7046
tweetnacl@0.14.5:
···
6634
7086
resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
6635
7087
engines: {node: '>= 0.4'}
6636
7088
6637
6637
-
typescript@5.8.3:
6638
6638
-
resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
7089
7089
+
typescript@5.9.3:
7090
7090
+
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
6639
7091
engines: {node: '>=14.17'}
6640
7092
hasBin: true
6641
7093
···
6650
7102
resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
6651
7103
engines: {node: '>= 0.4'}
6652
7104
6653
6653
-
undici-types@6.19.8:
6654
6654
-
resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
6655
6655
-
6656
6656
-
undici-types@6.20.0:
6657
6657
-
resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
7105
7105
+
undici-types@6.21.0:
7106
7106
+
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
6658
7107
6659
7108
undici@6.21.0:
6660
7109
resolution: {integrity: sha512-BUgJXc752Kou3oOIuU1i+yZZypyZRqNPW0vqoMPl8VaoalSfeR0D8/t4iAS3yirs79SSMTxTag+ZC86uswv+Cw==}
···
6670
7119
6671
7120
unicode-match-property-value-ecmascript@2.2.0:
6672
7121
resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==}
7122
7122
+
engines: {node: '>=4'}
7123
7123
+
7124
7124
+
unicode-match-property-value-ecmascript@2.2.1:
7125
7125
+
resolution: {integrity: sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==}
6673
7126
engines: {node: '>=4'}
6674
7127
6675
7128
unicode-property-aliases-ecmascript@2.1.0:
···
6699
7152
resolution: {integrity: sha512-iSk/J8efr8uPT/Z4eSUywnqyrQU7DSdMfdqK4iWEaUVVmcP5JcnpRqmVMwcwcnmI1ATFNgC5V90u09tBynNFKA==}
6700
7153
engines: {node: '>=4'}
6701
7154
6702
6702
-
update-browserslist-db@1.1.1:
6703
6703
-
resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
7155
7155
+
update-browserslist-db@1.1.3:
7156
7156
+
resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
6704
7157
hasBin: true
6705
7158
peerDependencies:
6706
7159
browserslist: '>= 4.21.0'
···
6726
7179
peerDependencies:
6727
7180
react: '>=16.8'
6728
7181
7182
7182
+
use-latest-callback@0.2.4:
7183
7183
+
resolution: {integrity: sha512-LS2s2n1usUUnDq4oVh1ca6JFX9uSqUncTfAm44WMg0v6TxL7POUTk1B044NH8TeLkFbNajIsgDHcgNpNzZucdg==}
7184
7184
+
peerDependencies:
7185
7185
+
react: '>=16.8'
7186
7186
+
6729
7187
use-sidecar@1.1.3:
6730
7188
resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
6731
7189
engines: {node: '>=10'}
···
6738
7196
6739
7197
use-sync-external-store@1.5.0:
6740
7198
resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==}
7199
7199
+
peerDependencies:
7200
7200
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
7201
7201
+
7202
7202
+
use-sync-external-store@1.6.0:
7203
7203
+
resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
6741
7204
peerDependencies:
6742
7205
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
6743
7206
···
6779
7242
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
6780
7243
engines: {node: '>= 0.8'}
6781
7244
7245
7245
+
vaul@1.1.2:
7246
7246
+
resolution: {integrity: sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA==}
7247
7247
+
peerDependencies:
7248
7248
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
7249
7249
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
7250
7250
+
6782
7251
verror@1.10.0:
6783
7252
resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==}
6784
7253
engines: {'0': node >=0.6.0}
···
6796
7265
warn-once@0.1.1:
6797
7266
resolution: {integrity: sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==}
6798
7267
6799
6799
-
watchpack@2.4.2:
6800
6800
-
resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
7268
7268
+
watchpack@2.4.4:
7269
7269
+
resolution: {integrity: sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==}
6801
7270
engines: {node: '>=10.13.0'}
6802
7271
6803
7272
wcwidth@1.0.1:
···
6816
7285
6817
7286
webpack-sources@3.2.3:
6818
7287
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
7288
7288
+
engines: {node: '>=10.13.0'}
7289
7289
+
7290
7290
+
webpack-sources@3.3.3:
7291
7291
+
resolution: {integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==}
6819
7292
engines: {node: '>=10.13.0'}
6820
7293
6821
7294
webpack@5.97.1:
···
6866
7339
resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==}
6867
7340
engines: {node: '>= 0.4'}
6868
7341
7342
7342
+
which-typed-array@1.1.19:
7343
7343
+
resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==}
7344
7344
+
engines: {node: '>= 0.4'}
7345
7345
+
6869
7346
which@2.0.2:
6870
7347
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
6871
7348
engines: {node: '>= 8'}
···
6932
7409
utf-8-validate:
6933
7410
optional: true
6934
7411
7412
7412
+
ws@8.18.3:
7413
7413
+
resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==}
7414
7414
+
engines: {node: '>=10.0.0'}
7415
7415
+
peerDependencies:
7416
7416
+
bufferutil: ^4.0.1
7417
7417
+
utf-8-validate: '>=5.0.2'
7418
7418
+
peerDependenciesMeta:
7419
7419
+
bufferutil:
7420
7420
+
optional: true
7421
7421
+
utf-8-validate:
7422
7422
+
optional: true
7423
7423
+
6935
7424
xcode@3.0.1:
6936
7425
resolution: {integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==}
6937
7426
engines: {node: '>=10.0.0'}
···
6965
7454
yallist@5.0.0:
6966
7455
resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
6967
7456
engines: {node: '>=18'}
6968
6968
-
6969
6969
-
yaml@2.6.1:
6970
6970
-
resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==}
6971
6971
-
engines: {node: '>= 14'}
6972
6972
-
hasBin: true
6973
7457
6974
7458
yargs-parser@21.1.1:
6975
7459
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
···
6994
7478
resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
6995
7479
engines: {node: '>=18'}
6996
7480
7481
7481
+
zod-to-json-schema@3.24.6:
7482
7482
+
resolution: {integrity: sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==}
7483
7483
+
peerDependencies:
7484
7484
+
zod: ^3.24.1
7485
7485
+
6997
7486
zod-validation-error@3.4.0:
6998
7487
resolution: {integrity: sha512-ZOPR9SVY6Pb2qqO5XHt+MkkTRxGXb4EVtnjc9JpXUOtUB1T9Ru7mZOT361AN3MsetVe7R0a1KZshJDZdgp9miQ==}
6999
7488
engines: {node: '>=18.0.0'}
···
7003
7492
zod@3.23.8:
7004
7493
resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
7005
7494
7006
7006
-
zustand@5.0.5:
7007
7007
-
resolution: {integrity: sha512-mILtRfKW9xM47hqxGIxCv12gXusoY/xTSHBYApXozR0HmQv299whhBeeAcRy+KrPPybzosvJBCOmVjq6x12fCg==}
7495
7495
+
zod@3.25.76:
7496
7496
+
resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
7497
7497
+
7498
7498
+
zustand@5.0.8:
7499
7499
+
resolution: {integrity: sha512-gyPKpIaxY9XcO2vSMrLbiER7QMAMGOQZVRdJ6Zi782jkbzZygq5GI9nG8g+sMgitRtndwaBSl7uiqC49o1SSiw==}
7008
7500
engines: {node: '>=12.20.0'}
7009
7501
peerDependencies:
7010
7502
'@types/react': '>=18.0.0'
···
7027
7519
7028
7520
'@alloc/quick-lru@5.2.0': {}
7029
7521
7030
7030
-
'@ampproject/remapping@2.3.0':
7031
7031
-
dependencies:
7032
7032
-
'@jridgewell/gen-mapping': 0.3.5
7033
7033
-
'@jridgewell/trace-mapping': 0.3.25
7034
7034
-
7035
7035
-
'@aquareum/atproto-oauth-client-react-native@0.0.1(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
7522
7522
+
'@aquareum/atproto-oauth-client-react-native@0.0.1(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
7036
7523
dependencies:
7037
7524
'@atproto-labs/did-resolver': 0.1.5
7038
7525
'@atproto-labs/handle-resolver-node': 0.1.7
···
7047
7534
'@atproto/oauth-types': 0.2.1
7048
7535
abortcontroller-polyfill: 1.7.8
7049
7536
event-target-shim: 6.0.2
7050
7050
-
expo-sqlite: 15.2.9(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
7537
7537
+
expo-sqlite: 15.2.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
7051
7538
jose: 5.9.6
7052
7052
-
react-native-quick-crypto: 0.7.17(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
7539
7539
+
react-native-quick-crypto: 0.7.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
7053
7540
transitivePeerDependencies:
7054
7541
- expo
7055
7542
- react
7056
7543
- react-native
7057
7544
7058
7058
-
'@atproto-labs/did-resolver@0.1.12':
7545
7545
+
'@atproto-labs/did-resolver@0.1.13':
7059
7546
dependencies:
7060
7060
-
'@atproto-labs/fetch': 0.2.2
7061
7061
-
'@atproto-labs/pipe': 0.1.0
7547
7547
+
'@atproto-labs/fetch': 0.2.3
7548
7548
+
'@atproto-labs/pipe': 0.1.1
7062
7549
'@atproto-labs/simple-store': 0.2.0
7063
7550
'@atproto-labs/simple-store-memory': 0.1.3
7064
7551
'@atproto/did': 0.1.5
7065
7065
-
zod: 3.23.8
7552
7552
+
zod: 3.25.76
7066
7553
7067
7554
'@atproto-labs/did-resolver@0.1.5':
7068
7555
dependencies:
···
7085
7572
dependencies:
7086
7573
'@atproto-labs/pipe': 0.1.0
7087
7574
optionalDependencies:
7088
7088
-
zod: 3.23.8
7575
7575
+
zod: 3.25.76
7089
7576
7090
7090
-
'@atproto-labs/fetch@0.2.2':
7577
7577
+
'@atproto-labs/fetch@0.2.3':
7091
7578
dependencies:
7092
7092
-
'@atproto-labs/pipe': 0.1.0
7579
7579
+
'@atproto-labs/pipe': 0.1.1
7093
7580
7094
7581
'@atproto-labs/handle-resolver-node@0.1.7':
7095
7582
dependencies:
···
7102
7589
'@atproto-labs/simple-store': 0.1.1
7103
7590
'@atproto-labs/simple-store-memory': 0.1.1
7104
7591
'@atproto/did': 0.1.3
7105
7105
-
zod: 3.23.8
7592
7592
+
zod: 3.25.76
7106
7593
7107
7594
'@atproto-labs/handle-resolver@0.1.8':
7108
7595
dependencies:
7109
7596
'@atproto-labs/simple-store': 0.2.0
7110
7597
'@atproto-labs/simple-store-memory': 0.1.3
7111
7598
'@atproto/did': 0.1.5
7112
7112
-
zod: 3.23.8
7599
7599
+
zod: 3.25.76
7113
7600
7114
7114
-
'@atproto-labs/identity-resolver@0.1.16':
7601
7601
+
'@atproto-labs/identity-resolver@0.1.18':
7115
7602
dependencies:
7116
7116
-
'@atproto-labs/did-resolver': 0.1.12
7603
7603
+
'@atproto-labs/did-resolver': 0.1.13
7117
7604
'@atproto-labs/handle-resolver': 0.1.8
7118
7605
'@atproto/syntax': 0.4.0
7119
7606
···
7124
7611
'@atproto/syntax': 0.3.1
7125
7612
7126
7613
'@atproto-labs/pipe@0.1.0': {}
7614
7614
+
7615
7615
+
'@atproto-labs/pipe@0.1.1': {}
7127
7616
7128
7617
'@atproto-labs/simple-store-memory@0.1.1':
7129
7618
dependencies:
···
7141
7630
7142
7631
'@atproto/api@0.15.27':
7143
7632
dependencies:
7144
7144
-
'@atproto/common-web': 0.4.2
7145
7145
-
'@atproto/lexicon': 0.4.12
7146
7146
-
'@atproto/syntax': 0.4.0
7147
7147
-
'@atproto/xrpc': 0.7.1
7633
7633
+
'@atproto/common-web': 0.4.3
7634
7634
+
'@atproto/lexicon': 0.4.14
7635
7635
+
'@atproto/syntax': 0.4.1
7636
7636
+
'@atproto/xrpc': 0.7.5
7148
7637
await-lock: 2.2.2
7149
7638
multiformats: 9.9.0
7150
7639
tlds: 1.255.0
7151
7151
-
zod: 3.23.8
7152
7152
-
7153
7153
-
'@atproto/common-web@0.3.1':
7154
7154
-
dependencies:
7155
7155
-
graphemer: 1.4.0
7156
7156
-
multiformats: 9.9.0
7157
7157
-
uint8arrays: 3.0.0
7158
7158
-
zod: 3.23.8
7640
7640
+
zod: 3.25.76
7159
7641
7160
7160
-
'@atproto/common-web@0.4.2':
7642
7642
+
'@atproto/common-web@0.4.3':
7161
7643
dependencies:
7162
7644
graphemer: 1.4.0
7163
7645
multiformats: 9.9.0
7164
7646
uint8arrays: 3.0.0
7165
7165
-
zod: 3.23.8
7647
7647
+
zod: 3.25.76
7166
7648
7167
7167
-
'@atproto/common@0.4.5':
7649
7649
+
'@atproto/common@0.4.12':
7168
7650
dependencies:
7169
7169
-
'@atproto/common-web': 0.3.1
7651
7651
+
'@atproto/common-web': 0.4.3
7170
7652
'@ipld/dag-cbor': 7.0.3
7171
7653
cbor-x: 1.6.0
7172
7654
iso-datestring-validator: 2.2.2
7173
7655
multiformats: 9.9.0
7174
7656
pino: 8.21.0
7175
7657
7176
7176
-
'@atproto/crypto@0.4.2':
7658
7658
+
'@atproto/crypto@0.4.4':
7177
7659
dependencies:
7178
7178
-
'@noble/curves': 1.8.1
7179
7179
-
'@noble/hashes': 1.6.1
7660
7660
+
'@noble/curves': 1.9.7
7661
7661
+
'@noble/hashes': 1.8.0
7180
7662
uint8arrays: 3.0.0
7181
7663
7182
7664
'@atproto/did@0.1.3':
···
7185
7667
7186
7668
'@atproto/did@0.1.5':
7187
7669
dependencies:
7188
7188
-
zod: 3.23.8
7670
7670
+
zod: 3.25.76
7189
7671
7190
7672
'@atproto/jwk-jose@0.1.2':
7191
7673
dependencies:
···
7202
7684
multiformats: 9.9.0
7203
7685
zod: 3.23.8
7204
7686
7205
7205
-
'@atproto/jwk@0.1.5':
7687
7687
+
'@atproto/jwk@0.2.0':
7206
7688
dependencies:
7207
7689
multiformats: 9.9.0
7208
7208
-
zod: 3.23.8
7690
7690
+
zod: 3.25.76
7209
7691
7210
7210
-
'@atproto/lex-cli@0.5.4':
7692
7692
+
'@atproto/lex-cli@0.5.7':
7211
7693
dependencies:
7212
7212
-
'@atproto/lexicon': 0.4.4
7213
7213
-
'@atproto/syntax': 0.3.1
7694
7694
+
'@atproto/lexicon': 0.4.14
7695
7695
+
'@atproto/syntax': 0.3.4
7214
7696
chalk: 4.1.2
7215
7697
commander: 9.5.0
7216
7216
-
prettier: 3.4.2
7698
7698
+
prettier: 3.6.2
7217
7699
ts-morph: 16.0.0
7218
7700
yesno: 0.4.0
7219
7219
-
zod: 3.23.8
7701
7701
+
zod: 3.25.76
7220
7702
7221
7221
-
'@atproto/lex-cli@0.8.2':
7703
7703
+
'@atproto/lex-cli@0.8.3':
7222
7704
dependencies:
7223
7223
-
'@atproto/lexicon': 0.4.11
7224
7224
-
'@atproto/syntax': 0.4.0
7705
7705
+
'@atproto/lexicon': 0.4.14
7706
7706
+
'@atproto/syntax': 0.4.1
7225
7707
chalk: 4.1.2
7226
7708
commander: 9.5.0
7227
7227
-
prettier: 3.5.3
7709
7709
+
prettier: 3.6.2
7228
7710
ts-morph: 24.0.0
7229
7711
yesno: 0.4.0
7230
7230
-
zod: 3.23.8
7231
7231
-
7232
7232
-
'@atproto/lexicon@0.4.11':
7233
7233
-
dependencies:
7234
7234
-
'@atproto/common-web': 0.4.2
7235
7235
-
'@atproto/syntax': 0.4.0
7236
7236
-
iso-datestring-validator: 2.2.2
7237
7237
-
multiformats: 9.9.0
7238
7238
-
zod: 3.23.8
7239
7239
-
7240
7240
-
'@atproto/lexicon@0.4.12':
7241
7241
-
dependencies:
7242
7242
-
'@atproto/common-web': 0.4.2
7243
7243
-
'@atproto/syntax': 0.4.0
7244
7244
-
iso-datestring-validator: 2.2.2
7245
7245
-
multiformats: 9.9.0
7246
7246
-
zod: 3.23.8
7712
7712
+
zod: 3.25.76
7247
7713
7248
7248
-
'@atproto/lexicon@0.4.3':
7714
7714
+
'@atproto/lexicon@0.4.14':
7249
7715
dependencies:
7250
7250
-
'@atproto/common-web': 0.3.1
7251
7251
-
'@atproto/syntax': 0.3.1
7716
7716
+
'@atproto/common-web': 0.4.3
7717
7717
+
'@atproto/syntax': 0.4.1
7252
7718
iso-datestring-validator: 2.2.2
7253
7719
multiformats: 9.9.0
7254
7254
-
zod: 3.23.8
7720
7720
+
zod: 3.25.76
7255
7721
7256
7256
-
'@atproto/lexicon@0.4.4':
7722
7722
+
'@atproto/lexicon@0.5.1':
7257
7723
dependencies:
7258
7258
-
'@atproto/common-web': 0.3.1
7259
7259
-
'@atproto/syntax': 0.3.1
7724
7724
+
'@atproto/common-web': 0.4.3
7725
7725
+
'@atproto/syntax': 0.4.1
7260
7726
iso-datestring-validator: 2.2.2
7261
7727
multiformats: 9.9.0
7262
7262
-
zod: 3.23.8
7728
7728
+
zod: 3.25.76
7263
7729
7264
7730
'@atproto/oauth-client-browser@0.3.2':
7265
7731
dependencies:
···
7272
7738
'@atproto/oauth-client': 0.3.2
7273
7739
'@atproto/oauth-types': 0.2.1
7274
7740
7275
7275
-
'@atproto/oauth-client@0.3.16':
7276
7276
-
dependencies:
7277
7277
-
'@atproto-labs/did-resolver': 0.1.12
7278
7278
-
'@atproto-labs/fetch': 0.2.2
7279
7279
-
'@atproto-labs/handle-resolver': 0.1.8
7280
7280
-
'@atproto-labs/identity-resolver': 0.1.16
7281
7281
-
'@atproto-labs/simple-store': 0.2.0
7282
7282
-
'@atproto-labs/simple-store-memory': 0.1.3
7283
7283
-
'@atproto/did': 0.1.5
7284
7284
-
'@atproto/jwk': 0.1.5
7285
7285
-
'@atproto/oauth-types': 0.2.7
7286
7286
-
'@atproto/xrpc': 0.7.0
7287
7287
-
multiformats: 9.9.0
7288
7288
-
zod: 3.23.8
7289
7289
-
7290
7741
'@atproto/oauth-client@0.3.2':
7291
7742
dependencies:
7292
7743
'@atproto-labs/did-resolver': 0.1.5
···
7302
7753
multiformats: 9.9.0
7303
7754
zod: 3.23.8
7304
7755
7756
7756
+
'@atproto/oauth-client@0.3.22':
7757
7757
+
dependencies:
7758
7758
+
'@atproto-labs/did-resolver': 0.1.13
7759
7759
+
'@atproto-labs/fetch': 0.2.3
7760
7760
+
'@atproto-labs/handle-resolver': 0.1.8
7761
7761
+
'@atproto-labs/identity-resolver': 0.1.18
7762
7762
+
'@atproto-labs/simple-store': 0.2.0
7763
7763
+
'@atproto-labs/simple-store-memory': 0.1.3
7764
7764
+
'@atproto/did': 0.1.5
7765
7765
+
'@atproto/jwk': 0.2.0
7766
7766
+
'@atproto/oauth-types': 0.2.8
7767
7767
+
'@atproto/xrpc': 0.7.0
7768
7768
+
multiformats: 9.9.0
7769
7769
+
zod: 3.25.76
7770
7770
+
7305
7771
'@atproto/oauth-types@0.2.1':
7306
7772
dependencies:
7307
7773
'@atproto/jwk': 0.1.1
7308
7774
zod: 3.23.8
7309
7775
7310
7310
-
'@atproto/oauth-types@0.2.7':
7776
7776
+
'@atproto/oauth-types@0.2.8':
7311
7777
dependencies:
7312
7312
-
'@atproto/jwk': 0.1.5
7313
7313
-
zod: 3.23.8
7778
7778
+
'@atproto/jwk': 0.2.0
7779
7779
+
zod: 3.25.76
7314
7780
7315
7781
'@atproto/syntax@0.3.1': {}
7316
7782
7783
7783
+
'@atproto/syntax@0.3.4': {}
7784
7784
+
7317
7785
'@atproto/syntax@0.4.0': {}
7318
7786
7319
7319
-
'@atproto/xrpc-server@0.7.4':
7787
7787
+
'@atproto/syntax@0.4.1': {}
7788
7788
+
7789
7789
+
'@atproto/xrpc-server@0.7.19':
7320
7790
dependencies:
7321
7321
-
'@atproto/common': 0.4.5
7322
7322
-
'@atproto/crypto': 0.4.2
7323
7323
-
'@atproto/lexicon': 0.4.4
7324
7324
-
'@atproto/xrpc': 0.6.7
7791
7791
+
'@atproto/common': 0.4.12
7792
7792
+
'@atproto/crypto': 0.4.4
7793
7793
+
'@atproto/lexicon': 0.4.14
7794
7794
+
'@atproto/xrpc': 0.7.5
7325
7795
cbor-x: 1.6.0
7326
7796
express: 4.21.2
7327
7797
http-errors: 2.0.0
7328
7798
mime-types: 2.1.35
7329
7799
rate-limiter-flexible: 2.4.2
7330
7800
uint8arrays: 3.0.0
7331
7331
-
ws: 8.18.0
7332
7332
-
zod: 3.23.8
7801
7801
+
ws: 8.18.3
7802
7802
+
zod: 3.25.76
7333
7803
transitivePeerDependencies:
7334
7804
- bufferutil
7335
7805
- supports-color
···
7337
7807
7338
7808
'@atproto/xrpc@0.6.4':
7339
7809
dependencies:
7340
7340
-
'@atproto/lexicon': 0.4.3
7341
7341
-
zod: 3.23.8
7342
7342
-
7343
7343
-
'@atproto/xrpc@0.6.7':
7344
7344
-
dependencies:
7345
7345
-
'@atproto/lexicon': 0.4.11
7346
7346
-
zod: 3.23.8
7810
7810
+
'@atproto/lexicon': 0.4.14
7811
7811
+
zod: 3.25.76
7347
7812
7348
7813
'@atproto/xrpc@0.7.0':
7349
7814
dependencies:
7350
7350
-
'@atproto/lexicon': 0.4.11
7351
7351
-
zod: 3.23.8
7815
7815
+
'@atproto/lexicon': 0.4.14
7816
7816
+
zod: 3.25.76
7352
7817
7353
7353
-
'@atproto/xrpc@0.7.1':
7818
7818
+
'@atproto/xrpc@0.7.5':
7354
7819
dependencies:
7355
7355
-
'@atproto/lexicon': 0.4.12
7356
7356
-
zod: 3.23.8
7820
7820
+
'@atproto/lexicon': 0.5.1
7821
7821
+
zod: 3.25.76
7357
7822
7358
7823
'@babel/code-frame@7.10.4':
7359
7824
dependencies:
7360
7825
'@babel/highlight': 7.25.9
7361
7826
7362
7362
-
'@babel/code-frame@7.26.2':
7363
7363
-
dependencies:
7364
7364
-
'@babel/helper-validator-identifier': 7.25.9
7365
7365
-
js-tokens: 4.0.0
7366
7366
-
picocolors: 1.1.1
7367
7367
-
7368
7827
'@babel/code-frame@7.27.1':
7369
7828
dependencies:
7370
7829
'@babel/helper-validator-identifier': 7.27.1
7371
7830
js-tokens: 4.0.0
7372
7831
picocolors: 1.1.1
7373
7832
7374
7374
-
'@babel/compat-data@7.26.3': {}
7375
7375
-
7376
7833
'@babel/compat-data@7.28.4': {}
7377
7834
7378
7378
-
'@babel/core@7.26.0':
7379
7379
-
dependencies:
7380
7380
-
'@ampproject/remapping': 2.3.0
7381
7381
-
'@babel/code-frame': 7.26.2
7382
7382
-
'@babel/generator': 7.26.3
7383
7383
-
'@babel/helper-compilation-targets': 7.25.9
7384
7384
-
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
7385
7385
-
'@babel/helpers': 7.26.0
7386
7386
-
'@babel/parser': 7.26.3
7387
7387
-
'@babel/template': 7.25.9
7388
7388
-
'@babel/traverse': 7.26.4
7389
7389
-
'@babel/types': 7.26.3
7390
7390
-
convert-source-map: 2.0.0
7391
7391
-
debug: 4.4.0
7392
7392
-
gensync: 1.0.0-beta.2
7393
7393
-
json5: 2.2.3
7394
7394
-
semver: 6.3.1
7395
7395
-
transitivePeerDependencies:
7396
7396
-
- supports-color
7397
7397
-
7398
7835
'@babel/core@7.28.4':
7399
7836
dependencies:
7400
7837
'@babel/code-frame': 7.27.1
···
7417
7854
7418
7855
'@babel/generator@7.26.3':
7419
7856
dependencies:
7420
7420
-
'@babel/parser': 7.26.3
7421
7421
-
'@babel/types': 7.26.3
7857
7857
+
'@babel/parser': 7.28.4
7858
7858
+
'@babel/types': 7.28.4
7422
7859
'@jridgewell/gen-mapping': 0.3.5
7423
7860
'@jridgewell/trace-mapping': 0.3.25
7424
7861
jsesc: 3.1.0
···
7433
7870
7434
7871
'@babel/helper-annotate-as-pure@7.25.9':
7435
7872
dependencies:
7436
7436
-
'@babel/types': 7.26.3
7873
7873
+
'@babel/types': 7.28.4
7437
7874
7438
7438
-
'@babel/helper-compilation-targets@7.25.9':
7875
7875
+
'@babel/helper-annotate-as-pure@7.27.3':
7439
7876
dependencies:
7440
7440
-
'@babel/compat-data': 7.26.3
7441
7441
-
'@babel/helper-validator-option': 7.25.9
7442
7442
-
browserslist: 4.24.3
7443
7443
-
lru-cache: 5.1.1
7444
7444
-
semver: 6.3.1
7877
7877
+
'@babel/types': 7.28.4
7445
7878
7446
7879
'@babel/helper-compilation-targets@7.27.2':
7447
7880
dependencies:
7448
7881
'@babel/compat-data': 7.28.4
7449
7882
'@babel/helper-validator-option': 7.27.1
7450
7450
-
browserslist: 4.24.3
7883
7883
+
browserslist: 4.26.3
7451
7884
lru-cache: 5.1.1
7452
7885
semver: 6.3.1
7453
7886
7454
7454
-
'@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
7455
7455
-
dependencies:
7456
7456
-
'@babel/core': 7.26.0
7457
7457
-
'@babel/helper-annotate-as-pure': 7.25.9
7458
7458
-
'@babel/helper-member-expression-to-functions': 7.25.9
7459
7459
-
'@babel/helper-optimise-call-expression': 7.25.9
7460
7460
-
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
7461
7461
-
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
7462
7462
-
'@babel/traverse': 7.26.4
7463
7463
-
semver: 6.3.1
7464
7464
-
transitivePeerDependencies:
7465
7465
-
- supports-color
7466
7466
-
7467
7887
'@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.28.4)':
7468
7888
dependencies:
7469
7889
'@babel/core': 7.28.4
···
7472
7892
'@babel/helper-optimise-call-expression': 7.25.9
7473
7893
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.28.4)
7474
7894
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
7475
7475
-
'@babel/traverse': 7.26.4
7895
7895
+
'@babel/traverse': 7.28.4
7476
7896
semver: 6.3.1
7477
7897
transitivePeerDependencies:
7478
7898
- supports-color
7479
7899
7480
7480
-
'@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.0)':
7900
7900
+
'@babel/helper-create-class-features-plugin@7.28.3(@babel/core@7.28.4)':
7481
7901
dependencies:
7482
7482
-
'@babel/core': 7.26.0
7483
7483
-
'@babel/helper-annotate-as-pure': 7.25.9
7484
7484
-
regexpu-core: 6.2.0
7902
7902
+
'@babel/core': 7.28.4
7903
7903
+
'@babel/helper-annotate-as-pure': 7.27.3
7904
7904
+
'@babel/helper-member-expression-to-functions': 7.27.1
7905
7905
+
'@babel/helper-optimise-call-expression': 7.27.1
7906
7906
+
'@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
7907
7907
+
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
7908
7908
+
'@babel/traverse': 7.28.4
7485
7909
semver: 6.3.1
7910
7910
+
transitivePeerDependencies:
7911
7911
+
- supports-color
7486
7912
7487
7913
'@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.28.4)':
7488
7914
dependencies:
7489
7915
'@babel/core': 7.28.4
7490
7490
-
'@babel/helper-annotate-as-pure': 7.25.9
7916
7916
+
'@babel/helper-annotate-as-pure': 7.27.3
7491
7917
regexpu-core: 6.2.0
7492
7918
semver: 6.3.1
7493
7919
7494
7494
-
'@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.0)':
7920
7920
+
'@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.4)':
7495
7921
dependencies:
7496
7496
-
'@babel/core': 7.26.0
7497
7497
-
'@babel/helper-compilation-targets': 7.27.2
7498
7498
-
'@babel/helper-plugin-utils': 7.27.1
7499
7499
-
debug: 4.4.0
7500
7500
-
lodash.debounce: 4.0.8
7501
7501
-
resolve: 1.22.10
7502
7502
-
transitivePeerDependencies:
7503
7503
-
- supports-color
7922
7922
+
'@babel/core': 7.28.4
7923
7923
+
'@babel/helper-annotate-as-pure': 7.27.3
7924
7924
+
regexpu-core: 6.4.0
7925
7925
+
semver: 6.3.1
7504
7926
7505
7927
'@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.28.4)':
7506
7928
dependencies:
7507
7929
'@babel/core': 7.28.4
7508
7930
'@babel/helper-compilation-targets': 7.27.2
7509
7931
'@babel/helper-plugin-utils': 7.27.1
7510
7510
-
debug: 4.4.0
7932
7932
+
debug: 4.4.3
7511
7933
lodash.debounce: 4.0.8
7512
7934
resolve: 1.22.10
7513
7935
transitivePeerDependencies:
···
7522
7944
transitivePeerDependencies:
7523
7945
- supports-color
7524
7946
7525
7525
-
'@babel/helper-module-imports@7.25.9':
7526
7526
-
dependencies:
7527
7527
-
'@babel/traverse': 7.26.4
7528
7528
-
'@babel/types': 7.26.3
7529
7529
-
transitivePeerDependencies:
7530
7530
-
- supports-color
7531
7531
-
7532
7532
-
'@babel/helper-module-imports@7.27.1':
7947
7947
+
'@babel/helper-member-expression-to-functions@7.27.1':
7533
7948
dependencies:
7534
7949
'@babel/traverse': 7.28.4
7535
7950
'@babel/types': 7.28.4
7536
7951
transitivePeerDependencies:
7537
7952
- supports-color
7538
7953
7539
7539
-
'@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
7954
7954
+
'@babel/helper-module-imports@7.25.9':
7540
7955
dependencies:
7541
7541
-
'@babel/core': 7.26.0
7542
7542
-
'@babel/helper-module-imports': 7.25.9
7543
7543
-
'@babel/helper-validator-identifier': 7.25.9
7544
7544
-
'@babel/traverse': 7.26.4
7956
7956
+
'@babel/traverse': 7.28.4
7957
7957
+
'@babel/types': 7.28.4
7545
7958
transitivePeerDependencies:
7546
7959
- supports-color
7547
7960
7548
7548
-
'@babel/helper-module-transforms@7.26.0(@babel/core@7.28.4)':
7961
7961
+
'@babel/helper-module-imports@7.27.1':
7549
7962
dependencies:
7550
7550
-
'@babel/core': 7.28.4
7551
7551
-
'@babel/helper-module-imports': 7.25.9
7552
7552
-
'@babel/helper-validator-identifier': 7.25.9
7553
7553
-
'@babel/traverse': 7.26.4
7963
7963
+
'@babel/traverse': 7.28.4
7964
7964
+
'@babel/types': 7.28.4
7554
7965
transitivePeerDependencies:
7555
7966
- supports-color
7556
7967
···
7567
7978
dependencies:
7568
7979
'@babel/types': 7.28.4
7569
7980
7981
7981
+
'@babel/helper-optimise-call-expression@7.27.1':
7982
7982
+
dependencies:
7983
7983
+
'@babel/types': 7.28.4
7984
7984
+
7570
7985
'@babel/helper-plugin-utils@7.25.9': {}
7571
7986
7572
7987
'@babel/helper-plugin-utils@7.27.1': {}
7573
7988
7574
7574
-
'@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)':
7989
7989
+
'@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.28.4)':
7575
7990
dependencies:
7576
7576
-
'@babel/core': 7.26.0
7577
7577
-
'@babel/helper-annotate-as-pure': 7.25.9
7991
7991
+
'@babel/core': 7.28.4
7992
7992
+
'@babel/helper-annotate-as-pure': 7.27.3
7578
7993
'@babel/helper-wrap-function': 7.25.9
7579
7994
'@babel/traverse': 7.28.4
7580
7995
transitivePeerDependencies:
7581
7996
- supports-color
7582
7997
7583
7583
-
'@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.28.4)':
7998
7998
+
'@babel/helper-replace-supers@7.25.9(@babel/core@7.28.4)':
7584
7999
dependencies:
7585
8000
'@babel/core': 7.28.4
7586
7586
-
'@babel/helper-annotate-as-pure': 7.25.9
7587
7587
-
'@babel/helper-wrap-function': 7.25.9
8001
8001
+
'@babel/helper-member-expression-to-functions': 7.27.1
8002
8002
+
'@babel/helper-optimise-call-expression': 7.27.1
7588
8003
'@babel/traverse': 7.28.4
7589
8004
transitivePeerDependencies:
7590
8005
- supports-color
7591
8006
7592
7592
-
'@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
8007
8007
+
'@babel/helper-replace-supers@7.27.1(@babel/core@7.28.4)':
7593
8008
dependencies:
7594
7594
-
'@babel/core': 7.26.0
7595
7595
-
'@babel/helper-member-expression-to-functions': 7.25.9
7596
7596
-
'@babel/helper-optimise-call-expression': 7.25.9
7597
7597
-
'@babel/traverse': 7.26.4
8009
8009
+
'@babel/core': 7.28.4
8010
8010
+
'@babel/helper-member-expression-to-functions': 7.27.1
8011
8011
+
'@babel/helper-optimise-call-expression': 7.27.1
8012
8012
+
'@babel/traverse': 7.28.4
7598
8013
transitivePeerDependencies:
7599
8014
- supports-color
7600
8015
7601
7601
-
'@babel/helper-replace-supers@7.25.9(@babel/core@7.28.4)':
8016
8016
+
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
7602
8017
dependencies:
7603
7603
-
'@babel/core': 7.28.4
7604
7604
-
'@babel/helper-member-expression-to-functions': 7.25.9
7605
7605
-
'@babel/helper-optimise-call-expression': 7.25.9
7606
7606
-
'@babel/traverse': 7.26.4
8018
8018
+
'@babel/traverse': 7.28.4
8019
8019
+
'@babel/types': 7.28.4
7607
8020
transitivePeerDependencies:
7608
8021
- supports-color
7609
8022
7610
7610
-
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
8023
8023
+
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
7611
8024
dependencies:
7612
7612
-
'@babel/traverse': 7.26.4
7613
7613
-
'@babel/types': 7.26.3
8025
8025
+
'@babel/traverse': 7.28.4
8026
8026
+
'@babel/types': 7.28.4
7614
8027
transitivePeerDependencies:
7615
8028
- supports-color
7616
8029
···
7622
8035
7623
8036
'@babel/helper-validator-identifier@7.27.1': {}
7624
8037
7625
7625
-
'@babel/helper-validator-option@7.25.9': {}
7626
7626
-
7627
8038
'@babel/helper-validator-option@7.27.1': {}
7628
8039
7629
8040
'@babel/helper-wrap-function@7.25.9':
···
7633
8044
'@babel/types': 7.28.4
7634
8045
transitivePeerDependencies:
7635
8046
- supports-color
7636
7636
-
7637
7637
-
'@babel/helpers@7.26.0':
7638
7638
-
dependencies:
7639
7639
-
'@babel/template': 7.25.9
7640
7640
-
'@babel/types': 7.26.3
7641
8047
7642
8048
'@babel/helpers@7.28.4':
7643
8049
dependencies:
···
7646
8052
7647
8053
'@babel/highlight@7.25.9':
7648
8054
dependencies:
7649
7649
-
'@babel/helper-validator-identifier': 7.25.9
8055
8055
+
'@babel/helper-validator-identifier': 7.27.1
7650
8056
chalk: 2.4.2
7651
8057
js-tokens: 4.0.0
7652
8058
picocolors: 1.1.1
7653
8059
7654
8060
'@babel/parser@7.26.3':
7655
8061
dependencies:
7656
7656
-
'@babel/types': 7.26.3
8062
8062
+
'@babel/types': 7.28.4
7657
8063
7658
8064
'@babel/parser@7.28.4':
7659
8065
dependencies:
7660
8066
'@babel/types': 7.28.4
7661
8067
7662
7662
-
'@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.0)':
7663
7663
-
dependencies:
7664
7664
-
'@babel/core': 7.26.0
7665
7665
-
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
7666
7666
-
'@babel/helper-plugin-utils': 7.25.9
7667
7667
-
'@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0)
7668
7668
-
transitivePeerDependencies:
7669
7669
-
- supports-color
7670
7670
-
7671
8068
'@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.28.4)':
7672
8069
dependencies:
7673
8070
'@babel/core': 7.28.4
7674
8071
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.28.4)
7675
7675
-
'@babel/helper-plugin-utils': 7.25.9
8072
8072
+
'@babel/helper-plugin-utils': 7.27.1
7676
8073
'@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.28.4)
7677
8074
transitivePeerDependencies:
7678
8075
- supports-color
7679
8076
7680
7680
-
'@babel/plugin-proposal-export-default-from@7.25.9(@babel/core@7.26.0)':
7681
7681
-
dependencies:
7682
7682
-
'@babel/core': 7.26.0
7683
7683
-
'@babel/helper-plugin-utils': 7.25.9
7684
7684
-
7685
8077
'@babel/plugin-proposal-export-default-from@7.25.9(@babel/core@7.28.4)':
7686
8078
dependencies:
7687
8079
'@babel/core': 7.28.4
7688
7688
-
'@babel/helper-plugin-utils': 7.25.9
8080
8080
+
'@babel/helper-plugin-utils': 7.27.1
7689
8081
7690
7690
-
'@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.26.0)':
8082
8082
+
'@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.28.4)':
7691
8083
dependencies:
7692
7692
-
'@babel/core': 7.26.0
7693
7693
-
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
7694
7694
-
'@babel/helper-plugin-utils': 7.25.9
8084
8084
+
'@babel/core': 7.28.4
8085
8085
+
'@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
8086
8086
+
'@babel/helper-plugin-utils': 7.27.1
7695
8087
transitivePeerDependencies:
7696
8088
- supports-color
7697
7697
-
7698
7698
-
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.0)':
7699
7699
-
dependencies:
7700
7700
-
'@babel/core': 7.26.0
7701
7701
-
'@babel/helper-plugin-utils': 7.27.1
7702
8089
7703
8090
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.4)':
7704
8091
dependencies:
7705
8092
'@babel/core': 7.28.4
7706
8093
'@babel/helper-plugin-utils': 7.27.1
7707
8094
7708
7708
-
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.0)':
7709
7709
-
dependencies:
7710
7710
-
'@babel/core': 7.26.0
7711
7711
-
'@babel/helper-plugin-utils': 7.27.1
7712
7712
-
7713
8095
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.4)':
7714
8096
dependencies:
7715
8097
'@babel/core': 7.28.4
7716
8098
'@babel/helper-plugin-utils': 7.27.1
7717
8099
7718
7718
-
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.0)':
7719
7719
-
dependencies:
7720
7720
-
'@babel/core': 7.26.0
7721
7721
-
'@babel/helper-plugin-utils': 7.27.1
7722
7722
-
7723
8100
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.4)':
7724
8101
dependencies:
7725
8102
'@babel/core': 7.28.4
7726
8103
'@babel/helper-plugin-utils': 7.27.1
7727
8104
7728
7728
-
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.0)':
7729
7729
-
dependencies:
7730
7730
-
'@babel/core': 7.26.0
7731
7731
-
'@babel/helper-plugin-utils': 7.27.1
7732
7732
-
7733
8105
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.4)':
7734
8106
dependencies:
7735
8107
'@babel/core': 7.28.4
7736
8108
'@babel/helper-plugin-utils': 7.27.1
7737
8109
7738
7738
-
'@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.0)':
7739
7739
-
dependencies:
7740
7740
-
'@babel/core': 7.26.0
7741
7741
-
'@babel/helper-plugin-utils': 7.25.9
7742
7742
-
7743
8110
'@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.28.4)':
7744
8111
dependencies:
7745
8112
'@babel/core': 7.28.4
7746
7746
-
'@babel/helper-plugin-utils': 7.25.9
7747
7747
-
7748
7748
-
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.0)':
7749
7749
-
dependencies:
7750
7750
-
'@babel/core': 7.26.0
7751
7751
-
'@babel/helper-plugin-utils': 7.25.9
8113
8113
+
'@babel/helper-plugin-utils': 7.27.1
7752
8114
7753
8115
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.28.4)':
7754
8116
dependencies:
7755
8117
'@babel/core': 7.28.4
7756
7756
-
'@babel/helper-plugin-utils': 7.25.9
7757
7757
-
7758
7758
-
'@babel/plugin-syntax-export-default-from@7.25.9(@babel/core@7.26.0)':
7759
7759
-
dependencies:
7760
7760
-
'@babel/core': 7.26.0
7761
7761
-
'@babel/helper-plugin-utils': 7.25.9
8118
8118
+
'@babel/helper-plugin-utils': 7.27.1
7762
8119
7763
8120
'@babel/plugin-syntax-export-default-from@7.25.9(@babel/core@7.28.4)':
7764
8121
dependencies:
7765
8122
'@babel/core': 7.28.4
7766
7766
-
'@babel/helper-plugin-utils': 7.25.9
7767
7767
-
7768
7768
-
'@babel/plugin-syntax-flow@7.26.0(@babel/core@7.26.0)':
7769
7769
-
dependencies:
7770
7770
-
'@babel/core': 7.26.0
7771
7771
-
'@babel/helper-plugin-utils': 7.25.9
8123
8123
+
'@babel/helper-plugin-utils': 7.27.1
7772
8124
7773
8125
'@babel/plugin-syntax-flow@7.26.0(@babel/core@7.28.4)':
7774
8126
dependencies:
7775
8127
'@babel/core': 7.28.4
7776
7776
-
'@babel/helper-plugin-utils': 7.25.9
7777
7777
-
7778
7778
-
'@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
7779
7779
-
dependencies:
7780
7780
-
'@babel/core': 7.26.0
7781
8128
'@babel/helper-plugin-utils': 7.27.1
7782
8129
7783
8130
'@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.28.4)':
···
7785
8132
'@babel/core': 7.28.4
7786
8133
'@babel/helper-plugin-utils': 7.27.1
7787
8134
7788
7788
-
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0)':
7789
7789
-
dependencies:
7790
7790
-
'@babel/core': 7.26.0
7791
7791
-
'@babel/helper-plugin-utils': 7.27.1
7792
7792
-
7793
8135
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.4)':
7794
8136
dependencies:
7795
8137
'@babel/core': 7.28.4
7796
7796
-
'@babel/helper-plugin-utils': 7.27.1
7797
7797
-
7798
7798
-
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.0)':
7799
7799
-
dependencies:
7800
7800
-
'@babel/core': 7.26.0
7801
8138
'@babel/helper-plugin-utils': 7.27.1
7802
8139
7803
8140
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.4)':
···
7805
8142
'@babel/core': 7.28.4
7806
8143
'@babel/helper-plugin-utils': 7.27.1
7807
8144
7808
7808
-
'@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
7809
7809
-
dependencies:
7810
7810
-
'@babel/core': 7.26.0
7811
7811
-
'@babel/helper-plugin-utils': 7.25.9
7812
7812
-
7813
8145
'@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.28.4)':
7814
8146
dependencies:
7815
8147
'@babel/core': 7.28.4
7816
7816
-
'@babel/helper-plugin-utils': 7.25.9
7817
7817
-
7818
7818
-
'@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.26.0)':
7819
7819
-
dependencies:
7820
7820
-
'@babel/core': 7.26.0
7821
8148
'@babel/helper-plugin-utils': 7.27.1
7822
8149
7823
8150
'@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.4)':
···
7825
8152
'@babel/core': 7.28.4
7826
8153
'@babel/helper-plugin-utils': 7.27.1
7827
8154
7828
7828
-
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.0)':
7829
7829
-
dependencies:
7830
7830
-
'@babel/core': 7.26.0
7831
7831
-
'@babel/helper-plugin-utils': 7.27.1
7832
7832
-
7833
8155
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.4)':
7834
8156
dependencies:
7835
8157
'@babel/core': 7.28.4
7836
8158
'@babel/helper-plugin-utils': 7.27.1
7837
8159
7838
7838
-
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.0)':
7839
7839
-
dependencies:
7840
7840
-
'@babel/core': 7.26.0
7841
7841
-
'@babel/helper-plugin-utils': 7.25.9
7842
7842
-
7843
8160
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.4)':
7844
8161
dependencies:
7845
8162
'@babel/core': 7.28.4
7846
7846
-
'@babel/helper-plugin-utils': 7.25.9
7847
7847
-
7848
7848
-
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.0)':
7849
7849
-
dependencies:
7850
7850
-
'@babel/core': 7.26.0
7851
8163
'@babel/helper-plugin-utils': 7.27.1
7852
8164
7853
8165
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.4)':
···
7855
8167
'@babel/core': 7.28.4
7856
8168
'@babel/helper-plugin-utils': 7.27.1
7857
8169
7858
7858
-
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.0)':
7859
7859
-
dependencies:
7860
7860
-
'@babel/core': 7.26.0
7861
7861
-
'@babel/helper-plugin-utils': 7.27.1
7862
7862
-
7863
8170
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.4)':
7864
8171
dependencies:
7865
8172
'@babel/core': 7.28.4
7866
7866
-
'@babel/helper-plugin-utils': 7.27.1
7867
7867
-
7868
7868
-
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.0)':
7869
7869
-
dependencies:
7870
7870
-
'@babel/core': 7.26.0
7871
8173
'@babel/helper-plugin-utils': 7.27.1
7872
8174
7873
8175
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.4)':
···
7875
8177
'@babel/core': 7.28.4
7876
8178
'@babel/helper-plugin-utils': 7.27.1
7877
8179
7878
7878
-
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.0)':
7879
7879
-
dependencies:
7880
7880
-
'@babel/core': 7.26.0
7881
7881
-
'@babel/helper-plugin-utils': 7.25.9
7882
7882
-
7883
8180
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.4)':
7884
8181
dependencies:
7885
8182
'@babel/core': 7.28.4
7886
7886
-
'@babel/helper-plugin-utils': 7.25.9
7887
7887
-
7888
7888
-
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.0)':
7889
7889
-
dependencies:
7890
7890
-
'@babel/core': 7.26.0
7891
8183
'@babel/helper-plugin-utils': 7.27.1
7892
8184
7893
8185
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.4)':
···
7895
8187
'@babel/core': 7.28.4
7896
8188
'@babel/helper-plugin-utils': 7.27.1
7897
8189
7898
7898
-
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.0)':
7899
7899
-
dependencies:
7900
7900
-
'@babel/core': 7.26.0
7901
7901
-
'@babel/helper-plugin-utils': 7.27.1
7902
7902
-
7903
8190
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.4)':
7904
8191
dependencies:
7905
8192
'@babel/core': 7.28.4
7906
8193
'@babel/helper-plugin-utils': 7.27.1
7907
8194
7908
7908
-
'@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)':
7909
7909
-
dependencies:
7910
7910
-
'@babel/core': 7.26.0
7911
7911
-
'@babel/helper-plugin-utils': 7.25.9
7912
7912
-
7913
8195
'@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.28.4)':
7914
8196
dependencies:
7915
8197
'@babel/core': 7.28.4
7916
7916
-
'@babel/helper-plugin-utils': 7.25.9
8198
8198
+
'@babel/helper-plugin-utils': 7.27.1
7917
8199
7918
8200
'@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.4)':
7919
8201
dependencies:
7920
8202
'@babel/core': 7.28.4
7921
8203
'@babel/helper-plugin-utils': 7.27.1
7922
8204
7923
7923
-
'@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)':
7924
7924
-
dependencies:
7925
7925
-
'@babel/core': 7.26.0
7926
7926
-
'@babel/helper-plugin-utils': 7.25.9
7927
7927
-
7928
8205
'@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.28.4)':
7929
8206
dependencies:
7930
8207
'@babel/core': 7.28.4
7931
7931
-
'@babel/helper-plugin-utils': 7.25.9
8208
8208
+
'@babel/helper-plugin-utils': 7.27.1
7932
8209
7933
7933
-
'@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)':
8210
8210
+
'@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.4)':
7934
8211
dependencies:
7935
7935
-
'@babel/core': 7.26.0
7936
7936
-
'@babel/helper-plugin-utils': 7.25.9
7937
7937
-
'@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
7938
7938
-
'@babel/traverse': 7.28.4
7939
7939
-
transitivePeerDependencies:
7940
7940
-
- supports-color
8212
8212
+
'@babel/core': 7.28.4
8213
8213
+
'@babel/helper-plugin-utils': 7.27.1
7941
8214
7942
8215
'@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.28.4)':
7943
8216
dependencies:
7944
8217
'@babel/core': 7.28.4
7945
7945
-
'@babel/helper-plugin-utils': 7.25.9
8218
8218
+
'@babel/helper-plugin-utils': 7.27.1
7946
8219
'@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.28.4)
7947
8220
'@babel/traverse': 7.28.4
7948
8221
transitivePeerDependencies:
7949
8222
- supports-color
7950
8223
7951
7951
-
'@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)':
7952
7952
-
dependencies:
7953
7953
-
'@babel/core': 7.26.0
7954
7954
-
'@babel/helper-module-imports': 7.25.9
7955
7955
-
'@babel/helper-plugin-utils': 7.25.9
7956
7956
-
'@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
7957
7957
-
transitivePeerDependencies:
7958
7958
-
- supports-color
7959
7959
-
7960
8224
'@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.28.4)':
7961
8225
dependencies:
7962
8226
'@babel/core': 7.28.4
7963
7963
-
'@babel/helper-module-imports': 7.25.9
7964
7964
-
'@babel/helper-plugin-utils': 7.25.9
8227
8227
+
'@babel/helper-module-imports': 7.27.1
8228
8228
+
'@babel/helper-plugin-utils': 7.27.1
7965
8229
'@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.28.4)
7966
8230
transitivePeerDependencies:
7967
8231
- supports-color
7968
8232
7969
7969
-
'@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)':
7970
7970
-
dependencies:
7971
7971
-
'@babel/core': 7.26.0
7972
7972
-
'@babel/helper-plugin-utils': 7.25.9
7973
7973
-
7974
8233
'@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.28.4)':
7975
8234
dependencies:
7976
8235
'@babel/core': 7.28.4
7977
7977
-
'@babel/helper-plugin-utils': 7.25.9
8236
8236
+
'@babel/helper-plugin-utils': 7.27.1
7978
8237
7979
7979
-
'@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)':
8238
8238
+
'@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.28.4)':
7980
8239
dependencies:
7981
7981
-
'@babel/core': 7.26.0
7982
7982
-
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
7983
7983
-
'@babel/helper-plugin-utils': 7.25.9
8240
8240
+
'@babel/core': 7.28.4
8241
8241
+
'@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
8242
8242
+
'@babel/helper-plugin-utils': 7.27.1
7984
8243
transitivePeerDependencies:
7985
8244
- supports-color
7986
8245
7987
7987
-
'@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.28.4)':
8246
8246
+
'@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.4)':
7988
8247
dependencies:
7989
8248
'@babel/core': 7.28.4
7990
7990
-
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.28.4)
7991
7991
-
'@babel/helper-plugin-utils': 7.25.9
8249
8249
+
'@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
8250
8250
+
'@babel/helper-plugin-utils': 7.27.1
7992
8251
transitivePeerDependencies:
7993
8252
- supports-color
7994
8253
7995
7995
-
'@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0)':
8254
8254
+
'@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.28.4)':
7996
8255
dependencies:
7997
7997
-
'@babel/core': 7.26.0
7998
7998
-
'@babel/helper-annotate-as-pure': 7.25.9
7999
7999
-
'@babel/helper-compilation-targets': 7.25.9
8000
8000
-
'@babel/helper-plugin-utils': 7.25.9
8001
8001
-
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
8002
8002
-
'@babel/traverse': 7.26.4
8003
8003
-
globals: 11.12.0
8256
8256
+
'@babel/core': 7.28.4
8257
8257
+
'@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
8258
8258
+
'@babel/helper-plugin-utils': 7.27.1
8004
8259
transitivePeerDependencies:
8005
8260
- supports-color
8006
8261
···
8008
8263
dependencies:
8009
8264
'@babel/core': 7.28.4
8010
8265
'@babel/helper-annotate-as-pure': 7.25.9
8011
8011
-
'@babel/helper-compilation-targets': 7.25.9
8012
8012
-
'@babel/helper-plugin-utils': 7.25.9
8266
8266
+
'@babel/helper-compilation-targets': 7.27.2
8267
8267
+
'@babel/helper-plugin-utils': 7.27.1
8013
8268
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.28.4)
8014
8014
-
'@babel/traverse': 7.26.4
8269
8269
+
'@babel/traverse': 7.28.4
8015
8270
globals: 11.12.0
8016
8271
transitivePeerDependencies:
8017
8272
- supports-color
8018
8273
8019
8019
-
'@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)':
8274
8274
+
'@babel/plugin-transform-classes@7.28.4(@babel/core@7.28.4)':
8020
8275
dependencies:
8021
8021
-
'@babel/core': 7.26.0
8022
8022
-
'@babel/helper-plugin-utils': 7.25.9
8023
8023
-
'@babel/template': 7.25.9
8276
8276
+
'@babel/core': 7.28.4
8277
8277
+
'@babel/helper-annotate-as-pure': 7.27.3
8278
8278
+
'@babel/helper-compilation-targets': 7.27.2
8279
8279
+
'@babel/helper-globals': 7.28.0
8280
8280
+
'@babel/helper-plugin-utils': 7.27.1
8281
8281
+
'@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
8282
8282
+
'@babel/traverse': 7.28.4
8283
8283
+
transitivePeerDependencies:
8284
8284
+
- supports-color
8024
8285
8025
8286
'@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.28.4)':
8026
8287
dependencies:
8027
8288
'@babel/core': 7.28.4
8028
8028
-
'@babel/helper-plugin-utils': 7.25.9
8029
8029
-
'@babel/template': 7.25.9
8030
8030
-
8031
8031
-
'@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)':
8032
8032
-
dependencies:
8033
8033
-
'@babel/core': 7.26.0
8034
8034
-
'@babel/helper-plugin-utils': 7.25.9
8289
8289
+
'@babel/helper-plugin-utils': 7.27.1
8290
8290
+
'@babel/template': 7.27.2
8035
8291
8036
8292
'@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.28.4)':
8037
8293
dependencies:
8038
8294
'@babel/core': 7.28.4
8039
8039
-
'@babel/helper-plugin-utils': 7.25.9
8040
8040
-
8041
8041
-
'@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.26.0)':
8042
8042
-
dependencies:
8043
8043
-
'@babel/core': 7.26.0
8044
8295
'@babel/helper-plugin-utils': 7.27.1
8045
8296
8046
8297
'@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.4)':
8047
8298
dependencies:
8048
8299
'@babel/core': 7.28.4
8049
8300
'@babel/helper-plugin-utils': 7.27.1
8050
8050
-
8051
8051
-
'@babel/plugin-transform-flow-strip-types@7.25.9(@babel/core@7.26.0)':
8052
8052
-
dependencies:
8053
8053
-
'@babel/core': 7.26.0
8054
8054
-
'@babel/helper-plugin-utils': 7.25.9
8055
8055
-
'@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.0)
8056
8301
8057
8302
'@babel/plugin-transform-flow-strip-types@7.25.9(@babel/core@7.28.4)':
8058
8303
dependencies:
8059
8304
'@babel/core': 7.28.4
8060
8060
-
'@babel/helper-plugin-utils': 7.25.9
8305
8305
+
'@babel/helper-plugin-utils': 7.27.1
8061
8306
'@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.28.4)
8062
8307
8063
8063
-
'@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)':
8064
8064
-
dependencies:
8065
8065
-
'@babel/core': 7.26.0
8066
8066
-
'@babel/helper-plugin-utils': 7.25.9
8067
8067
-
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
8068
8068
-
transitivePeerDependencies:
8069
8069
-
- supports-color
8070
8070
-
8071
8308
'@babel/plugin-transform-for-of@7.25.9(@babel/core@7.28.4)':
8072
8309
dependencies:
8073
8310
'@babel/core': 7.28.4
8074
8074
-
'@babel/helper-plugin-utils': 7.25.9
8311
8311
+
'@babel/helper-plugin-utils': 7.27.1
8075
8312
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
8076
8313
transitivePeerDependencies:
8077
8314
- supports-color
8078
8315
8079
8079
-
'@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)':
8080
8080
-
dependencies:
8081
8081
-
'@babel/core': 7.26.0
8082
8082
-
'@babel/helper-compilation-targets': 7.25.9
8083
8083
-
'@babel/helper-plugin-utils': 7.25.9
8084
8084
-
'@babel/traverse': 7.28.4
8085
8085
-
transitivePeerDependencies:
8086
8086
-
- supports-color
8087
8087
-
8088
8316
'@babel/plugin-transform-function-name@7.25.9(@babel/core@7.28.4)':
8089
8317
dependencies:
8090
8318
'@babel/core': 7.28.4
8091
8091
-
'@babel/helper-compilation-targets': 7.25.9
8092
8092
-
'@babel/helper-plugin-utils': 7.25.9
8319
8319
+
'@babel/helper-compilation-targets': 7.27.2
8320
8320
+
'@babel/helper-plugin-utils': 7.27.1
8093
8321
'@babel/traverse': 7.28.4
8094
8322
transitivePeerDependencies:
8095
8323
- supports-color
8096
8324
8097
8097
-
'@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)':
8098
8098
-
dependencies:
8099
8099
-
'@babel/core': 7.26.0
8100
8100
-
'@babel/helper-plugin-utils': 7.25.9
8101
8101
-
8102
8325
'@babel/plugin-transform-literals@7.25.9(@babel/core@7.28.4)':
8103
8326
dependencies:
8104
8327
'@babel/core': 7.28.4
8105
8105
-
'@babel/helper-plugin-utils': 7.25.9
8106
8106
-
8107
8107
-
'@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)':
8108
8108
-
dependencies:
8109
8109
-
'@babel/core': 7.26.0
8110
8110
-
'@babel/helper-plugin-utils': 7.25.9
8328
8328
+
'@babel/helper-plugin-utils': 7.27.1
8111
8329
8112
8330
'@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.28.4)':
8113
8331
dependencies:
8114
8332
'@babel/core': 7.28.4
8115
8115
-
'@babel/helper-plugin-utils': 7.25.9
8333
8333
+
'@babel/helper-plugin-utils': 7.27.1
8116
8334
8117
8117
-
'@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.0)':
8335
8335
+
'@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.28.4)':
8118
8336
dependencies:
8119
8119
-
'@babel/core': 7.26.0
8120
8120
-
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
8337
8337
+
'@babel/core': 7.28.4
8338
8338
+
'@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
8121
8339
'@babel/helper-plugin-utils': 7.25.9
8122
8340
transitivePeerDependencies:
8123
8341
- supports-color
8124
8342
8125
8125
-
'@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.28.4)':
8343
8343
+
'@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.4)':
8126
8344
dependencies:
8127
8345
'@babel/core': 7.28.4
8128
8128
-
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.28.4)
8129
8129
-
'@babel/helper-plugin-utils': 7.25.9
8346
8346
+
'@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
8347
8347
+
'@babel/helper-plugin-utils': 7.27.1
8130
8348
transitivePeerDependencies:
8131
8349
- supports-color
8132
8350
8133
8133
-
'@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
8134
8134
-
dependencies:
8135
8135
-
'@babel/core': 7.26.0
8136
8136
-
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
8137
8137
-
'@babel/helper-plugin-utils': 7.25.9
8138
8138
-
8139
8351
'@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.28.4)':
8140
8352
dependencies:
8141
8353
'@babel/core': 7.28.4
8142
8354
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.28.4)
8143
8143
-
'@babel/helper-plugin-utils': 7.25.9
8144
8144
-
8145
8145
-
'@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)':
8146
8146
-
dependencies:
8147
8147
-
'@babel/core': 7.26.0
8148
8148
-
'@babel/helper-plugin-utils': 7.25.9
8355
8355
+
'@babel/helper-plugin-utils': 7.27.1
8149
8356
8150
8357
'@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.28.4)':
8151
8358
dependencies:
8152
8359
'@babel/core': 7.28.4
8153
8153
-
'@babel/helper-plugin-utils': 7.25.9
8360
8360
+
'@babel/helper-plugin-utils': 7.27.1
8154
8361
8155
8155
-
'@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)':
8362
8362
+
'@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.4)':
8156
8363
dependencies:
8157
8157
-
'@babel/core': 7.26.0
8158
8158
-
'@babel/helper-plugin-utils': 7.25.9
8364
8364
+
'@babel/core': 7.28.4
8365
8365
+
'@babel/helper-plugin-utils': 7.27.1
8159
8366
8160
8367
'@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.28.4)':
8161
8368
dependencies:
8162
8369
'@babel/core': 7.28.4
8163
8163
-
'@babel/helper-plugin-utils': 7.25.9
8164
8164
-
8165
8165
-
'@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)':
8166
8166
-
dependencies:
8167
8167
-
'@babel/core': 7.26.0
8168
8168
-
'@babel/helper-compilation-targets': 7.25.9
8169
8169
-
'@babel/helper-plugin-utils': 7.25.9
8170
8170
-
'@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
8370
8370
+
'@babel/helper-plugin-utils': 7.27.1
8171
8371
8172
8372
'@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.28.4)':
8173
8373
dependencies:
8174
8374
'@babel/core': 7.28.4
8175
8175
-
'@babel/helper-compilation-targets': 7.25.9
8176
8176
-
'@babel/helper-plugin-utils': 7.25.9
8375
8375
+
'@babel/helper-compilation-targets': 7.27.2
8376
8376
+
'@babel/helper-plugin-utils': 7.27.1
8177
8377
'@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.28.4)
8178
8378
8179
8179
-
'@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)':
8180
8180
-
dependencies:
8181
8181
-
'@babel/core': 7.26.0
8182
8182
-
'@babel/helper-plugin-utils': 7.25.9
8183
8183
-
8184
8379
'@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.28.4)':
8185
8380
dependencies:
8186
8381
'@babel/core': 7.28.4
8187
8187
-
'@babel/helper-plugin-utils': 7.25.9
8382
8382
+
'@babel/helper-plugin-utils': 7.27.1
8188
8383
8189
8189
-
'@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)':
8384
8384
+
'@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.28.4)':
8190
8385
dependencies:
8191
8191
-
'@babel/core': 7.26.0
8192
8192
-
'@babel/helper-plugin-utils': 7.25.9
8386
8386
+
'@babel/core': 7.28.4
8387
8387
+
'@babel/helper-plugin-utils': 7.27.1
8193
8388
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
8194
8389
transitivePeerDependencies:
8195
8390
- supports-color
8196
8391
8197
8197
-
'@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.28.4)':
8392
8392
+
'@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.4)':
8198
8393
dependencies:
8199
8394
'@babel/core': 7.28.4
8200
8200
-
'@babel/helper-plugin-utils': 7.25.9
8201
8201
-
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
8395
8395
+
'@babel/helper-plugin-utils': 7.27.1
8396
8396
+
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
8202
8397
transitivePeerDependencies:
8203
8398
- supports-color
8204
8399
8205
8205
-
'@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)':
8206
8206
-
dependencies:
8207
8207
-
'@babel/core': 7.26.0
8208
8208
-
'@babel/helper-plugin-utils': 7.25.9
8209
8209
-
8210
8400
'@babel/plugin-transform-parameters@7.25.9(@babel/core@7.28.4)':
8211
8401
dependencies:
8212
8402
'@babel/core': 7.28.4
8213
8213
-
'@babel/helper-plugin-utils': 7.25.9
8214
8214
-
8215
8215
-
'@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)':
8216
8216
-
dependencies:
8217
8217
-
'@babel/core': 7.26.0
8218
8218
-
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
8219
8219
-
'@babel/helper-plugin-utils': 7.25.9
8220
8220
-
transitivePeerDependencies:
8221
8221
-
- supports-color
8403
8403
+
'@babel/helper-plugin-utils': 7.27.1
8222
8404
8223
8405
'@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.28.4)':
8224
8406
dependencies:
8225
8407
'@babel/core': 7.28.4
8226
8408
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.28.4)
8227
8227
-
'@babel/helper-plugin-utils': 7.25.9
8228
8228
-
transitivePeerDependencies:
8229
8229
-
- supports-color
8230
8230
-
8231
8231
-
'@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)':
8232
8232
-
dependencies:
8233
8233
-
'@babel/core': 7.26.0
8234
8234
-
'@babel/helper-annotate-as-pure': 7.25.9
8235
8235
-
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
8236
8236
-
'@babel/helper-plugin-utils': 7.25.9
8409
8409
+
'@babel/helper-plugin-utils': 7.27.1
8237
8410
transitivePeerDependencies:
8238
8411
- supports-color
8239
8412
···
8242
8415
'@babel/core': 7.28.4
8243
8416
'@babel/helper-annotate-as-pure': 7.25.9
8244
8417
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.28.4)
8245
8245
-
'@babel/helper-plugin-utils': 7.25.9
8418
8418
+
'@babel/helper-plugin-utils': 7.27.1
8246
8419
transitivePeerDependencies:
8247
8420
- supports-color
8248
8421
8249
8249
-
'@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.0)':
8250
8250
-
dependencies:
8251
8251
-
'@babel/core': 7.26.0
8252
8252
-
'@babel/helper-plugin-utils': 7.25.9
8253
8253
-
8254
8422
'@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.28.4)':
8255
8423
dependencies:
8256
8424
'@babel/core': 7.28.4
8257
8257
-
'@babel/helper-plugin-utils': 7.25.9
8258
8258
-
8259
8259
-
'@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.0)':
8260
8260
-
dependencies:
8261
8261
-
'@babel/core': 7.26.0
8262
8262
-
'@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
8263
8263
-
transitivePeerDependencies:
8264
8264
-
- supports-color
8425
8425
+
'@babel/helper-plugin-utils': 7.27.1
8265
8426
8266
8427
'@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.28.4)':
8267
8428
dependencies:
···
8270
8431
transitivePeerDependencies:
8271
8432
- supports-color
8272
8433
8273
8273
-
'@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)':
8274
8274
-
dependencies:
8275
8275
-
'@babel/core': 7.26.0
8276
8276
-
'@babel/helper-plugin-utils': 7.25.9
8277
8277
-
8278
8434
'@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.28.4)':
8279
8435
dependencies:
8280
8436
'@babel/core': 7.28.4
8281
8281
-
'@babel/helper-plugin-utils': 7.25.9
8282
8282
-
8283
8283
-
'@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)':
8284
8284
-
dependencies:
8285
8285
-
'@babel/core': 7.26.0
8286
8286
-
'@babel/helper-plugin-utils': 7.25.9
8437
8437
+
'@babel/helper-plugin-utils': 7.27.1
8287
8438
8288
8439
'@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.28.4)':
8289
8440
dependencies:
8290
8441
'@babel/core': 7.28.4
8291
8291
-
'@babel/helper-plugin-utils': 7.25.9
8292
8292
-
8293
8293
-
'@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)':
8294
8294
-
dependencies:
8295
8295
-
'@babel/core': 7.26.0
8296
8296
-
'@babel/helper-annotate-as-pure': 7.25.9
8297
8297
-
'@babel/helper-module-imports': 7.25.9
8298
8298
-
'@babel/helper-plugin-utils': 7.25.9
8299
8299
-
'@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.26.0)
8300
8300
-
'@babel/types': 7.28.4
8301
8301
-
transitivePeerDependencies:
8302
8302
-
- supports-color
8442
8442
+
'@babel/helper-plugin-utils': 7.27.1
8303
8443
8304
8444
'@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.28.4)':
8305
8445
dependencies:
8306
8446
'@babel/core': 7.28.4
8307
8447
'@babel/helper-annotate-as-pure': 7.25.9
8308
8308
-
'@babel/helper-module-imports': 7.25.9
8309
8309
-
'@babel/helper-plugin-utils': 7.25.9
8448
8448
+
'@babel/helper-module-imports': 7.27.1
8449
8449
+
'@babel/helper-plugin-utils': 7.27.1
8310
8450
'@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4)
8311
8451
'@babel/types': 7.28.4
8312
8452
transitivePeerDependencies:
8313
8453
- supports-color
8314
8454
8315
8315
-
'@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.0)':
8316
8316
-
dependencies:
8317
8317
-
'@babel/core': 7.26.0
8318
8318
-
'@babel/helper-annotate-as-pure': 7.25.9
8319
8319
-
'@babel/helper-plugin-utils': 7.25.9
8320
8320
-
8321
8455
'@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.28.4)':
8322
8456
dependencies:
8323
8457
'@babel/core': 7.28.4
8324
8458
'@babel/helper-annotate-as-pure': 7.25.9
8325
8325
-
'@babel/helper-plugin-utils': 7.25.9
8326
8326
-
8327
8327
-
'@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)':
8328
8328
-
dependencies:
8329
8329
-
'@babel/core': 7.26.0
8330
8330
-
'@babel/helper-plugin-utils': 7.25.9
8331
8331
-
regenerator-transform: 0.15.2
8459
8459
+
'@babel/helper-plugin-utils': 7.27.1
8332
8460
8333
8461
'@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.28.4)':
8334
8462
dependencies:
8335
8463
'@babel/core': 7.28.4
8336
8336
-
'@babel/helper-plugin-utils': 7.25.9
8464
8464
+
'@babel/helper-plugin-utils': 7.27.1
8337
8465
regenerator-transform: 0.15.2
8338
8466
8339
8339
-
'@babel/plugin-transform-runtime@7.25.9(@babel/core@7.26.0)':
8340
8340
-
dependencies:
8341
8341
-
'@babel/core': 7.26.0
8342
8342
-
'@babel/helper-module-imports': 7.25.9
8343
8343
-
'@babel/helper-plugin-utils': 7.25.9
8344
8344
-
babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0)
8345
8345
-
babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
8346
8346
-
babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0)
8347
8347
-
semver: 6.3.1
8348
8348
-
transitivePeerDependencies:
8349
8349
-
- supports-color
8350
8350
-
8351
8467
'@babel/plugin-transform-runtime@7.25.9(@babel/core@7.28.4)':
8352
8468
dependencies:
8353
8469
'@babel/core': 7.28.4
8354
8354
-
'@babel/helper-module-imports': 7.25.9
8355
8355
-
'@babel/helper-plugin-utils': 7.25.9
8470
8470
+
'@babel/helper-module-imports': 7.27.1
8471
8471
+
'@babel/helper-plugin-utils': 7.27.1
8356
8472
babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.28.4)
8357
8473
babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.28.4)
8358
8474
babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.28.4)
···
8360
8476
transitivePeerDependencies:
8361
8477
- supports-color
8362
8478
8363
8363
-
'@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)':
8364
8364
-
dependencies:
8365
8365
-
'@babel/core': 7.26.0
8366
8366
-
'@babel/helper-plugin-utils': 7.25.9
8367
8367
-
8368
8479
'@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.28.4)':
8369
8480
dependencies:
8370
8481
'@babel/core': 7.28.4
8371
8371
-
'@babel/helper-plugin-utils': 7.25.9
8482
8482
+
'@babel/helper-plugin-utils': 7.27.1
8372
8483
8373
8373
-
'@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)':
8484
8484
+
'@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.4)':
8374
8485
dependencies:
8375
8375
-
'@babel/core': 7.26.0
8376
8376
-
'@babel/helper-plugin-utils': 7.25.9
8377
8377
-
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
8378
8378
-
transitivePeerDependencies:
8379
8379
-
- supports-color
8486
8486
+
'@babel/core': 7.28.4
8487
8487
+
'@babel/helper-plugin-utils': 7.27.1
8380
8488
8381
8489
'@babel/plugin-transform-spread@7.25.9(@babel/core@7.28.4)':
8382
8490
dependencies:
8383
8491
'@babel/core': 7.28.4
8384
8384
-
'@babel/helper-plugin-utils': 7.25.9
8492
8492
+
'@babel/helper-plugin-utils': 7.27.1
8385
8493
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
8386
8494
transitivePeerDependencies:
8387
8495
- supports-color
8388
8496
8389
8389
-
'@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)':
8390
8390
-
dependencies:
8391
8391
-
'@babel/core': 7.26.0
8392
8392
-
'@babel/helper-plugin-utils': 7.25.9
8393
8393
-
8394
8497
'@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.28.4)':
8395
8498
dependencies:
8396
8499
'@babel/core': 7.28.4
8397
8397
-
'@babel/helper-plugin-utils': 7.25.9
8500
8500
+
'@babel/helper-plugin-utils': 7.27.1
8398
8501
8399
8399
-
'@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)':
8400
8400
-
dependencies:
8401
8401
-
'@babel/core': 7.26.0
8402
8402
-
'@babel/helper-plugin-utils': 7.25.9
8403
8403
-
8404
8404
-
'@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0)':
8502
8502
+
'@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.4)':
8405
8503
dependencies:
8406
8406
-
'@babel/core': 7.26.0
8407
8407
-
'@babel/helper-annotate-as-pure': 7.25.9
8408
8408
-
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
8409
8409
-
'@babel/helper-plugin-utils': 7.25.9
8410
8410
-
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
8411
8411
-
'@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
8412
8412
-
transitivePeerDependencies:
8413
8413
-
- supports-color
8504
8504
+
'@babel/core': 7.28.4
8505
8505
+
'@babel/helper-plugin-utils': 7.27.1
8414
8506
8415
8507
'@babel/plugin-transform-typescript@7.26.3(@babel/core@7.28.4)':
8416
8508
dependencies:
8417
8509
'@babel/core': 7.28.4
8418
8510
'@babel/helper-annotate-as-pure': 7.25.9
8419
8419
-
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.28.4)
8420
8420
-
'@babel/helper-plugin-utils': 7.25.9
8511
8511
+
'@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
8512
8512
+
'@babel/helper-plugin-utils': 7.27.1
8421
8513
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
8422
8514
'@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.28.4)
8423
8515
transitivePeerDependencies:
8424
8516
- supports-color
8425
8517
8426
8426
-
'@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)':
8518
8518
+
'@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.4)':
8427
8519
dependencies:
8428
8428
-
'@babel/core': 7.26.0
8429
8429
-
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
8430
8430
-
'@babel/helper-plugin-utils': 7.25.9
8520
8520
+
'@babel/core': 7.28.4
8521
8521
+
'@babel/helper-annotate-as-pure': 7.27.3
8522
8522
+
'@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
8523
8523
+
'@babel/helper-plugin-utils': 7.27.1
8524
8524
+
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
8525
8525
+
'@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4)
8526
8526
+
transitivePeerDependencies:
8527
8527
+
- supports-color
8431
8528
8432
8529
'@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.28.4)':
8433
8530
dependencies:
8434
8531
'@babel/core': 7.28.4
8435
8532
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.28.4)
8436
8436
-
'@babel/helper-plugin-utils': 7.25.9
8533
8533
+
'@babel/helper-plugin-utils': 7.27.1
8437
8534
8438
8438
-
'@babel/preset-react@7.26.3(@babel/core@7.26.0)':
8535
8535
+
'@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.4)':
8439
8536
dependencies:
8440
8440
-
'@babel/core': 7.26.0
8441
8441
-
'@babel/helper-plugin-utils': 7.25.9
8442
8442
-
'@babel/helper-validator-option': 7.25.9
8443
8443
-
'@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.0)
8444
8444
-
'@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
8445
8445
-
'@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.26.0)
8446
8446
-
'@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.26.0)
8447
8447
-
transitivePeerDependencies:
8448
8448
-
- supports-color
8537
8537
+
'@babel/core': 7.28.4
8538
8538
+
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
8539
8539
+
'@babel/helper-plugin-utils': 7.27.1
8449
8540
8450
8541
'@babel/preset-react@7.26.3(@babel/core@7.28.4)':
8451
8542
dependencies:
8452
8543
'@babel/core': 7.28.4
8453
8453
-
'@babel/helper-plugin-utils': 7.25.9
8454
8454
-
'@babel/helper-validator-option': 7.25.9
8544
8544
+
'@babel/helper-plugin-utils': 7.27.1
8545
8545
+
'@babel/helper-validator-option': 7.27.1
8455
8546
'@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.28.4)
8456
8547
'@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.28.4)
8457
8548
'@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.28.4)
···
8459
8550
transitivePeerDependencies:
8460
8551
- supports-color
8461
8552
8462
8462
-
'@babel/preset-typescript@7.26.0(@babel/core@7.26.0)':
8463
8463
-
dependencies:
8464
8464
-
'@babel/core': 7.26.0
8465
8465
-
'@babel/helper-plugin-utils': 7.25.9
8466
8466
-
'@babel/helper-validator-option': 7.25.9
8467
8467
-
'@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
8468
8468
-
'@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0)
8469
8469
-
'@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0)
8470
8470
-
transitivePeerDependencies:
8471
8471
-
- supports-color
8472
8472
-
8473
8553
'@babel/preset-typescript@7.26.0(@babel/core@7.28.4)':
8474
8554
dependencies:
8475
8555
'@babel/core': 7.28.4
8476
8556
'@babel/helper-plugin-utils': 7.25.9
8477
8477
-
'@babel/helper-validator-option': 7.25.9
8557
8557
+
'@babel/helper-validator-option': 7.27.1
8478
8558
'@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.28.4)
8479
8559
'@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.28.4)
8480
8560
'@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.28.4)
8481
8561
transitivePeerDependencies:
8482
8562
- supports-color
8483
8563
8484
8484
-
'@babel/runtime@7.26.0':
8564
8564
+
'@babel/preset-typescript@7.27.1(@babel/core@7.28.4)':
8485
8565
dependencies:
8486
8486
-
regenerator-runtime: 0.14.1
8566
8566
+
'@babel/core': 7.28.4
8567
8567
+
'@babel/helper-plugin-utils': 7.27.1
8568
8568
+
'@babel/helper-validator-option': 7.27.1
8569
8569
+
'@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4)
8570
8570
+
'@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4)
8571
8571
+
'@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4)
8572
8572
+
transitivePeerDependencies:
8573
8573
+
- supports-color
8487
8574
8488
8488
-
'@babel/template@7.25.9':
8489
8489
-
dependencies:
8490
8490
-
'@babel/code-frame': 7.26.2
8491
8491
-
'@babel/parser': 7.26.3
8492
8492
-
'@babel/types': 7.26.3
8575
8575
+
'@babel/runtime@7.28.4': {}
8493
8576
8494
8577
'@babel/template@7.27.2':
8495
8578
dependencies:
···
8499
8582
8500
8583
'@babel/traverse@7.26.4':
8501
8584
dependencies:
8502
8502
-
'@babel/code-frame': 7.26.2
8503
8503
-
'@babel/generator': 7.26.3
8504
8504
-
'@babel/parser': 7.26.3
8505
8505
-
'@babel/template': 7.25.9
8506
8506
-
'@babel/types': 7.26.3
8507
8507
-
debug: 4.4.0
8585
8585
+
'@babel/code-frame': 7.27.1
8586
8586
+
'@babel/generator': 7.28.3
8587
8587
+
'@babel/parser': 7.28.4
8588
8588
+
'@babel/template': 7.27.2
8589
8589
+
'@babel/types': 7.28.4
8590
8590
+
debug: 4.4.3
8508
8591
globals: 11.12.0
8509
8592
transitivePeerDependencies:
8510
8593
- supports-color
···
8551
8634
'@cbor-extract/cbor-extract-win32-x64@2.2.0':
8552
8635
optional: true
8553
8636
8554
8554
-
'@craftzdog/react-native-buffer@6.0.5(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
8637
8637
+
'@craftzdog/react-native-buffer@6.0.5(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
8555
8638
dependencies:
8556
8639
ieee754: 1.2.1
8557
8557
-
react-native-quick-base64: 2.1.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
8640
8640
+
react-native-quick-base64: 2.1.2(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
8558
8641
transitivePeerDependencies:
8559
8642
- react
8560
8643
- react-native
···
8583
8666
tslib: 2.8.1
8584
8667
optional: true
8585
8668
8586
8586
-
'@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)':
8587
8587
-
dependencies:
8588
8588
-
eslint: 8.57.1
8589
8589
-
eslint-visitor-keys: 3.4.3
8590
8590
-
8591
8591
-
'@eslint-community/eslint-utils@4.7.0(eslint@8.57.1)':
8669
8669
+
'@eslint-community/eslint-utils@4.9.0(eslint@8.57.1)':
8592
8670
dependencies:
8593
8671
eslint: 8.57.1
8594
8672
eslint-visitor-keys: 3.4.3
···
8598
8676
'@eslint/eslintrc@2.1.4':
8599
8677
dependencies:
8600
8678
ajv: 6.12.6
8601
8601
-
debug: 4.4.0
8679
8679
+
debug: 4.4.3
8602
8680
espree: 9.6.1
8603
8681
globals: 13.24.0
8604
8682
ignore: 5.3.2
8605
8605
-
import-fresh: 3.3.0
8683
8683
+
import-fresh: 3.3.1
8606
8684
js-yaml: 4.1.0
8607
8685
minimatch: 3.1.2
8608
8686
strip-json-comments: 3.1.1
···
8611
8689
8612
8690
'@eslint/js@8.57.1': {}
8613
8691
8614
8614
-
'@expo/cli@0.24.20':
8692
8692
+
'@expo/cli@54.0.10(expo-router@6.0.10)(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))':
8615
8693
dependencies:
8616
8694
'@0no-co/graphql.web': 1.0.12
8617
8617
-
'@babel/runtime': 7.26.0
8618
8695
'@expo/code-signing-certificates': 0.0.5
8619
8619
-
'@expo/config': 11.0.13
8620
8620
-
'@expo/config-plugins': 10.1.2
8696
8696
+
'@expo/config': 12.0.10
8697
8697
+
'@expo/config-plugins': 54.0.2
8621
8698
'@expo/devcert': 1.1.4
8622
8622
-
'@expo/env': 1.0.7
8623
8623
-
'@expo/image-utils': 0.7.6
8624
8624
-
'@expo/json-file': 9.1.5
8625
8625
-
'@expo/metro-config': 0.20.17
8626
8626
-
'@expo/osascript': 2.2.5
8627
8627
-
'@expo/package-manager': 1.8.6
8628
8628
-
'@expo/plist': 0.3.5
8629
8629
-
'@expo/prebuild-config': 9.0.11
8699
8699
+
'@expo/env': 2.0.7
8700
8700
+
'@expo/image-utils': 0.8.7
8701
8701
+
'@expo/json-file': 10.0.7
8702
8702
+
'@expo/mcp-tunnel': 0.0.8
8703
8703
+
'@expo/metro': 54.0.0
8704
8704
+
'@expo/metro-config': 54.0.6(expo@54.0.12)
8705
8705
+
'@expo/osascript': 2.3.7
8706
8706
+
'@expo/package-manager': 1.9.8
8707
8707
+
'@expo/plist': 0.4.7
8708
8708
+
'@expo/prebuild-config': 54.0.4(expo@54.0.12)
8709
8709
+
'@expo/schema-utils': 0.1.7
8630
8710
'@expo/spawn-async': 1.7.2
8631
8711
'@expo/ws-tunnel': 1.0.6
8632
8712
'@expo/xcpretty': 4.3.2
8633
8633
-
'@react-native/dev-middleware': 0.79.5
8713
8713
+
'@react-native/dev-middleware': 0.81.4
8634
8714
'@urql/core': 5.1.0
8635
8715
'@urql/exchange-retry': 1.3.0(@urql/core@5.1.0)
8636
8716
accepts: 1.3.8
···
8642
8722
ci-info: 3.9.0
8643
8723
compression: 1.7.5
8644
8724
connect: 3.7.0
8645
8645
-
debug: 4.4.0
8725
8725
+
debug: 4.4.3
8646
8726
env-editor: 0.4.2
8727
8727
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
8728
8728
+
expo-server: 1.0.0
8647
8729
freeport-async: 2.0.0
8648
8730
getenv: 2.0.0
8649
8731
glob: 10.4.5
···
8663
8745
resolve: 1.22.10
8664
8746
resolve-from: 5.0.0
8665
8747
resolve.exports: 2.0.3
8666
8666
-
semver: 7.6.3
8748
8748
+
semver: 7.7.2
8667
8749
send: 0.19.0
8668
8750
slugify: 1.6.6
8669
8751
source-map-support: 0.5.21
···
8674
8756
undici: 6.21.0
8675
8757
wrap-ansi: 7.0.0
8676
8758
ws: 8.18.0
8759
8759
+
optionalDependencies:
8760
8760
+
expo-router: 6.0.10(fj6mwckpazazwnabl3it56dere)
8761
8761
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
8677
8762
transitivePeerDependencies:
8763
8763
+
- '@modelcontextprotocol/sdk'
8678
8764
- bufferutil
8679
8765
- graphql
8680
8766
- supports-color
8681
8767
- utf-8-validate
8682
8768
8683
8683
-
'@expo/code-signing-certificates@0.0.5':
8684
8684
-
dependencies:
8685
8685
-
node-forge: 1.3.1
8686
8686
-
nullthrows: 1.1.1
8687
8687
-
8688
8688
-
'@expo/config-plugins@10.0.2':
8769
8769
+
'@expo/cli@54.0.10(expo-router@6.0.10)(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))':
8689
8770
dependencies:
8690
8690
-
'@expo/config-types': 53.0.5
8691
8691
-
'@expo/json-file': 9.1.5
8692
8692
-
'@expo/plist': 0.3.4
8693
8693
-
'@expo/sdk-runtime-versions': 1.0.0
8771
8771
+
'@0no-co/graphql.web': 1.0.12
8772
8772
+
'@expo/code-signing-certificates': 0.0.5
8773
8773
+
'@expo/config': 12.0.10
8774
8774
+
'@expo/config-plugins': 54.0.2
8775
8775
+
'@expo/devcert': 1.1.4
8776
8776
+
'@expo/env': 2.0.7
8777
8777
+
'@expo/image-utils': 0.8.7
8778
8778
+
'@expo/json-file': 10.0.7
8779
8779
+
'@expo/mcp-tunnel': 0.0.8
8780
8780
+
'@expo/metro': 54.0.0
8781
8781
+
'@expo/metro-config': 54.0.6(expo@54.0.12)
8782
8782
+
'@expo/osascript': 2.3.7
8783
8783
+
'@expo/package-manager': 1.9.8
8784
8784
+
'@expo/plist': 0.4.7
8785
8785
+
'@expo/prebuild-config': 54.0.4(expo@54.0.12)
8786
8786
+
'@expo/schema-utils': 0.1.7
8787
8787
+
'@expo/spawn-async': 1.7.2
8788
8788
+
'@expo/ws-tunnel': 1.0.6
8789
8789
+
'@expo/xcpretty': 4.3.2
8790
8790
+
'@react-native/dev-middleware': 0.81.4
8791
8791
+
'@urql/core': 5.1.0
8792
8792
+
'@urql/exchange-retry': 1.3.0(@urql/core@5.1.0)
8793
8793
+
accepts: 1.3.8
8794
8794
+
arg: 5.0.2
8795
8795
+
better-opn: 3.0.2
8796
8796
+
bplist-creator: 0.1.0
8797
8797
+
bplist-parser: 0.3.2
8694
8798
chalk: 4.1.2
8695
8695
-
debug: 4.4.0
8696
8696
-
getenv: 1.0.0
8799
8799
+
ci-info: 3.9.0
8800
8800
+
compression: 1.7.5
8801
8801
+
connect: 3.7.0
8802
8802
+
debug: 4.4.3
8803
8803
+
env-editor: 0.4.2
8804
8804
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
8805
8805
+
expo-server: 1.0.0
8806
8806
+
freeport-async: 2.0.0
8807
8807
+
getenv: 2.0.0
8697
8808
glob: 10.4.5
8809
8809
+
lan-network: 0.1.7
8810
8810
+
minimatch: 9.0.5
8811
8811
+
node-forge: 1.3.1
8812
8812
+
npm-package-arg: 11.0.3
8813
8813
+
ora: 3.4.0
8814
8814
+
picomatch: 3.0.1
8815
8815
+
pretty-bytes: 5.6.0
8816
8816
+
pretty-format: 29.7.0
8817
8817
+
progress: 2.0.3
8818
8818
+
prompts: 2.4.2
8819
8819
+
qrcode-terminal: 0.11.0
8820
8820
+
require-from-string: 2.0.2
8821
8821
+
requireg: 0.2.2
8822
8822
+
resolve: 1.22.10
8698
8823
resolve-from: 5.0.0
8824
8824
+
resolve.exports: 2.0.3
8699
8825
semver: 7.7.2
8700
8700
-
slash: 3.0.0
8826
8826
+
send: 0.19.0
8701
8827
slugify: 1.6.6
8702
8702
-
xcode: 3.0.1
8703
8703
-
xml2js: 0.6.0
8828
8828
+
source-map-support: 0.5.21
8829
8829
+
stacktrace-parser: 0.1.10
8830
8830
+
structured-headers: 0.4.1
8831
8831
+
tar: 7.4.3
8832
8832
+
terminal-link: 2.1.1
8833
8833
+
undici: 6.21.0
8834
8834
+
wrap-ansi: 7.0.0
8835
8835
+
ws: 8.18.0
8836
8836
+
optionalDependencies:
8837
8837
+
expo-router: 6.0.10(p7n7j7fuquu3ku5xk4japqlpne)
8838
8838
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
8704
8839
transitivePeerDependencies:
8840
8840
+
- '@modelcontextprotocol/sdk'
8841
8841
+
- bufferutil
8842
8842
+
- graphql
8705
8843
- supports-color
8844
8844
+
- utf-8-validate
8706
8845
8707
8707
-
'@expo/config-plugins@10.1.2':
8846
8846
+
'@expo/code-signing-certificates@0.0.5':
8708
8847
dependencies:
8709
8709
-
'@expo/config-types': 53.0.5
8710
8710
-
'@expo/json-file': 9.1.5
8711
8711
-
'@expo/plist': 0.3.5
8712
8712
-
'@expo/sdk-runtime-versions': 1.0.0
8713
8713
-
chalk: 4.1.2
8714
8714
-
debug: 4.4.0
8715
8715
-
getenv: 2.0.0
8716
8716
-
glob: 10.4.5
8717
8717
-
resolve-from: 5.0.0
8718
8718
-
semver: 7.6.3
8719
8719
-
slash: 3.0.0
8720
8720
-
slugify: 1.6.6
8721
8721
-
xcode: 3.0.1
8722
8722
-
xml2js: 0.6.0
8723
8723
-
transitivePeerDependencies:
8724
8724
-
- supports-color
8848
8848
+
node-forge: 1.3.1
8849
8849
+
nullthrows: 1.1.1
8725
8850
8726
8851
'@expo/config-plugins@54.0.2':
8727
8852
dependencies:
···
8742
8867
transitivePeerDependencies:
8743
8868
- supports-color
8744
8869
8745
8745
-
'@expo/config-types@53.0.4': {}
8746
8746
-
8747
8747
-
'@expo/config-types@53.0.5': {}
8748
8748
-
8749
8870
'@expo/config-types@54.0.8': {}
8750
8871
8751
8751
-
'@expo/config@11.0.10':
8752
8752
-
dependencies:
8753
8753
-
'@babel/code-frame': 7.10.4
8754
8754
-
'@expo/config-plugins': 10.0.2
8755
8755
-
'@expo/config-types': 53.0.4
8756
8756
-
'@expo/json-file': 9.1.4
8757
8757
-
deepmerge: 4.3.1
8758
8758
-
getenv: 1.0.0
8759
8759
-
glob: 10.4.5
8760
8760
-
require-from-string: 2.0.2
8761
8761
-
resolve-from: 5.0.0
8762
8762
-
resolve-workspace-root: 2.0.0
8763
8763
-
semver: 7.6.3
8764
8764
-
slugify: 1.6.6
8765
8765
-
sucrase: 3.35.0
8766
8766
-
transitivePeerDependencies:
8767
8767
-
- supports-color
8768
8768
-
8769
8769
-
'@expo/config@11.0.13':
8770
8770
-
dependencies:
8771
8771
-
'@babel/code-frame': 7.10.4
8772
8772
-
'@expo/config-plugins': 10.1.2
8773
8773
-
'@expo/config-types': 53.0.5
8774
8774
-
'@expo/json-file': 9.1.5
8775
8775
-
deepmerge: 4.3.1
8776
8776
-
getenv: 2.0.0
8777
8777
-
glob: 10.4.5
8778
8778
-
require-from-string: 2.0.2
8779
8779
-
resolve-from: 5.0.0
8780
8780
-
resolve-workspace-root: 2.0.0
8781
8781
-
semver: 7.6.3
8782
8782
-
slugify: 1.6.6
8783
8783
-
sucrase: 3.35.0
8784
8784
-
transitivePeerDependencies:
8785
8785
-
- supports-color
8786
8786
-
8787
8872
'@expo/config@12.0.10':
8788
8873
dependencies:
8789
8874
'@babel/code-frame': 7.10.4
···
8819
8904
transitivePeerDependencies:
8820
8905
- supports-color
8821
8906
8822
8822
-
'@expo/env@1.0.5':
8907
8907
+
'@expo/devtools@0.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
8823
8908
dependencies:
8824
8909
chalk: 4.1.2
8825
8825
-
debug: 4.4.0
8826
8826
-
dotenv: 16.4.7
8827
8827
-
dotenv-expand: 11.0.7
8828
8828
-
getenv: 1.0.0
8829
8829
-
transitivePeerDependencies:
8830
8830
-
- supports-color
8910
8910
+
optionalDependencies:
8911
8911
+
react: 19.1.0
8912
8912
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
8831
8913
8832
8832
-
'@expo/env@1.0.7':
8914
8914
+
'@expo/devtools@0.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)':
8833
8915
dependencies:
8834
8916
chalk: 4.1.2
8835
8835
-
debug: 4.4.0
8917
8917
+
optionalDependencies:
8918
8918
+
react: 19.2.0
8919
8919
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
8920
8920
+
8921
8921
+
'@expo/env@2.0.7':
8922
8922
+
dependencies:
8923
8923
+
chalk: 4.1.2
8924
8924
+
debug: 4.4.3
8836
8925
dotenv: 16.4.7
8837
8926
dotenv-expand: 11.0.7
8838
8927
getenv: 2.0.0
8839
8928
transitivePeerDependencies:
8840
8929
- supports-color
8841
8930
8842
8842
-
'@expo/fingerprint@0.13.4':
8931
8931
+
'@expo/fingerprint@0.15.1':
8843
8932
dependencies:
8844
8933
'@expo/spawn-async': 1.7.2
8845
8934
arg: 5.0.2
8846
8935
chalk: 4.1.2
8847
8847
-
debug: 4.4.0
8848
8848
-
find-up: 5.0.0
8936
8936
+
debug: 4.4.3
8849
8937
getenv: 2.0.0
8850
8938
glob: 10.4.5
8851
8939
ignore: 5.3.2
8852
8940
minimatch: 9.0.5
8853
8941
p-limit: 3.1.0
8854
8942
resolve-from: 5.0.0
8855
8855
-
semver: 7.6.3
8943
8943
+
semver: 7.7.2
8856
8944
transitivePeerDependencies:
8857
8945
- supports-color
8858
8946
8859
8859
-
'@expo/image-utils@0.7.6':
8947
8947
+
'@expo/image-utils@0.8.7':
8860
8948
dependencies:
8861
8949
'@expo/spawn-async': 1.7.2
8862
8950
chalk: 4.1.2
···
8864
8952
jimp-compact: 0.16.1
8865
8953
parse-png: 2.1.0
8866
8954
resolve-from: 5.0.0
8867
8867
-
semver: 7.6.3
8955
8955
+
resolve-global: 1.0.0
8956
8956
+
semver: 7.7.2
8868
8957
temp-dir: 2.0.0
8869
8958
unique-string: 2.0.0
8870
8959
···
8873
8962
'@babel/code-frame': 7.10.4
8874
8963
json5: 2.2.3
8875
8964
8876
8876
-
'@expo/json-file@9.1.4':
8877
8877
-
dependencies:
8878
8878
-
'@babel/code-frame': 7.10.4
8879
8879
-
json5: 2.2.3
8880
8880
-
8881
8881
-
'@expo/json-file@9.1.5':
8965
8965
+
'@expo/mcp-tunnel@0.0.8':
8882
8966
dependencies:
8883
8883
-
'@babel/code-frame': 7.10.4
8884
8884
-
json5: 2.2.3
8967
8967
+
ws: 8.18.3
8968
8968
+
zod: 3.25.76
8969
8969
+
zod-to-json-schema: 3.24.6(zod@3.25.76)
8970
8970
+
transitivePeerDependencies:
8971
8971
+
- bufferutil
8972
8972
+
- utf-8-validate
8885
8973
8886
8886
-
'@expo/metro-config@0.20.17':
8974
8974
+
'@expo/metro-config@54.0.6(expo@54.0.12)':
8887
8975
dependencies:
8888
8888
-
'@babel/core': 7.26.0
8889
8889
-
'@babel/generator': 7.26.3
8890
8890
-
'@babel/parser': 7.26.3
8891
8891
-
'@babel/types': 7.26.3
8892
8892
-
'@expo/config': 11.0.13
8893
8893
-
'@expo/env': 1.0.7
8894
8894
-
'@expo/json-file': 9.1.5
8976
8976
+
'@babel/code-frame': 7.27.1
8977
8977
+
'@babel/core': 7.28.4
8978
8978
+
'@babel/generator': 7.28.3
8979
8979
+
'@expo/config': 12.0.10
8980
8980
+
'@expo/env': 2.0.7
8981
8981
+
'@expo/json-file': 10.0.7
8982
8982
+
'@expo/metro': 54.0.0
8895
8983
'@expo/spawn-async': 1.7.2
8984
8984
+
browserslist: 4.26.3
8896
8985
chalk: 4.1.2
8897
8897
-
debug: 4.4.0
8986
8986
+
debug: 4.4.3
8898
8987
dotenv: 16.4.7
8899
8988
dotenv-expand: 11.0.7
8900
8989
getenv: 2.0.0
8901
8990
glob: 10.4.5
8991
8991
+
hermes-parser: 0.29.1
8902
8992
jsc-safe-url: 0.2.4
8903
8903
-
lightningcss: 1.27.0
8993
8993
+
lightningcss: 1.30.2
8904
8994
minimatch: 9.0.5
8905
8995
postcss: 8.4.49
8906
8996
resolve-from: 5.0.0
8997
8997
+
optionalDependencies:
8998
8998
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
8907
8999
transitivePeerDependencies:
9000
9000
+
- bufferutil
8908
9001
- supports-color
9002
9002
+
- utf-8-validate
8909
9003
8910
8910
-
'@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))':
9004
9004
+
'@expo/metro-runtime@6.1.2(expo@54.0.12)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
8911
9005
dependencies:
8912
8912
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
9006
9006
+
anser: 1.4.10
9007
9007
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
9008
9008
+
pretty-format: 29.7.0
9009
9009
+
react: 19.1.0
9010
9010
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
9011
9011
+
stacktrace-parser: 0.1.10
9012
9012
+
whatwg-fetch: 3.6.20
9013
9013
+
optionalDependencies:
9014
9014
+
react-dom: 19.1.0(react@19.1.0)
8913
9015
8914
8914
-
'@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))':
9016
9016
+
'@expo/metro-runtime@6.1.2(expo@54.0.12)(react-dom@19.2.0(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)':
8915
9017
dependencies:
8916
8916
-
react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
9018
9018
+
anser: 1.4.10
9019
9019
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
9020
9020
+
pretty-format: 29.7.0
9021
9021
+
react: 19.2.0
9022
9022
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
9023
9023
+
stacktrace-parser: 0.1.10
9024
9024
+
whatwg-fetch: 3.6.20
9025
9025
+
optionalDependencies:
9026
9026
+
react-dom: 19.2.0(react@19.2.0)
8917
9027
optional: true
8918
9028
8919
8919
-
'@expo/osascript@2.2.5':
9029
9029
+
'@expo/metro@54.0.0':
9030
9030
+
dependencies:
9031
9031
+
metro: 0.83.1
9032
9032
+
metro-babel-transformer: 0.83.1
9033
9033
+
metro-cache: 0.83.1
9034
9034
+
metro-cache-key: 0.83.1
9035
9035
+
metro-config: 0.83.1
9036
9036
+
metro-core: 0.83.1
9037
9037
+
metro-file-map: 0.83.1
9038
9038
+
metro-resolver: 0.83.1
9039
9039
+
metro-runtime: 0.83.1
9040
9040
+
metro-source-map: 0.83.1
9041
9041
+
metro-transform-plugins: 0.83.1
9042
9042
+
metro-transform-worker: 0.83.1
9043
9043
+
transitivePeerDependencies:
9044
9044
+
- bufferutil
9045
9045
+
- supports-color
9046
9046
+
- utf-8-validate
9047
9047
+
9048
9048
+
'@expo/osascript@2.3.7':
8920
9049
dependencies:
8921
9050
'@expo/spawn-async': 1.7.2
8922
9051
exec-async: 2.2.0
8923
9052
8924
8924
-
'@expo/package-manager@1.8.6':
9053
9053
+
'@expo/package-manager@1.9.8':
8925
9054
dependencies:
8926
8926
-
'@expo/json-file': 9.1.5
9055
9055
+
'@expo/json-file': 10.0.7
8927
9056
'@expo/spawn-async': 1.7.2
8928
9057
chalk: 4.1.2
8929
9058
npm-package-arg: 11.0.3
8930
9059
ora: 3.4.0
8931
9060
resolve-workspace-root: 2.0.0
8932
9061
8933
8933
-
'@expo/plist@0.3.4':
8934
8934
-
dependencies:
8935
8935
-
'@xmldom/xmldom': 0.8.10
8936
8936
-
base64-js: 1.5.1
8937
8937
-
xmlbuilder: 15.1.1
8938
8938
-
8939
8939
-
'@expo/plist@0.3.5':
8940
8940
-
dependencies:
8941
8941
-
'@xmldom/xmldom': 0.8.10
8942
8942
-
base64-js: 1.5.1
8943
8943
-
xmlbuilder: 15.1.1
8944
8944
-
8945
9062
'@expo/plist@0.4.7':
8946
9063
dependencies:
8947
9064
'@xmldom/xmldom': 0.8.10
8948
9065
base64-js: 1.5.1
8949
9066
xmlbuilder: 15.1.1
8950
9067
8951
8951
-
'@expo/prebuild-config@9.0.11':
9068
9068
+
'@expo/prebuild-config@54.0.4(expo@54.0.12)':
8952
9069
dependencies:
8953
8953
-
'@expo/config': 11.0.13
8954
8954
-
'@expo/config-plugins': 10.1.2
8955
8955
-
'@expo/config-types': 53.0.5
8956
8956
-
'@expo/image-utils': 0.7.6
8957
8957
-
'@expo/json-file': 9.1.5
8958
8958
-
'@react-native/normalize-colors': 0.79.5
9070
9070
+
'@expo/config': 12.0.10
9071
9071
+
'@expo/config-plugins': 54.0.2
9072
9072
+
'@expo/config-types': 54.0.8
9073
9073
+
'@expo/image-utils': 0.8.7
9074
9074
+
'@expo/json-file': 10.0.7
9075
9075
+
'@react-native/normalize-colors': 0.81.4
8959
9076
debug: 4.4.0
9077
9077
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
8960
9078
resolve-from: 5.0.0
8961
8961
-
semver: 7.6.3
9079
9079
+
semver: 7.7.2
8962
9080
xml2js: 0.6.0
8963
9081
transitivePeerDependencies:
8964
9082
- supports-color
8965
9083
8966
8966
-
'@expo/sdk-runtime-versions@1.0.0': {}
9084
9084
+
'@expo/schema-utils@0.1.7': {}
8967
9085
8968
8968
-
'@expo/server@0.6.2':
8969
8969
-
dependencies:
8970
8970
-
abort-controller: 3.0.0
8971
8971
-
debug: 4.4.0
8972
8972
-
source-map-support: 0.5.21
8973
8973
-
undici: 6.21.0
8974
8974
-
transitivePeerDependencies:
8975
8975
-
- supports-color
9086
9086
+
'@expo/sdk-runtime-versions@1.0.0': {}
8976
9087
8977
9088
'@expo/spawn-async@1.7.2':
8978
9089
dependencies:
8979
9090
cross-spawn: 7.0.6
8980
9091
8981
8981
-
'@expo/vector-icons@14.1.0(expo-font@13.3.1(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
8982
8982
-
dependencies:
8983
8983
-
expo-font: 13.3.1(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0)
8984
8984
-
react: 19.0.0
8985
8985
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
8986
8986
-
8987
8987
-
'@expo/vector-icons@14.1.0(expo-font@13.3.2(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
9092
9092
+
'@expo/vector-icons@15.0.2(expo-font@14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
8988
9093
dependencies:
8989
8989
-
expo-font: 13.3.2(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0)
8990
8990
-
react: 19.0.0
8991
8991
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
9094
9094
+
expo-font: 14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
9095
9095
+
react: 19.1.0
9096
9096
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
8992
9097
8993
8993
-
'@expo/vector-icons@14.1.0(expo-font@13.3.2(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
9098
9098
+
'@expo/vector-icons@15.0.2(expo-font@14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)':
8994
9099
dependencies:
8995
8995
-
expo-font: 13.3.2(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0)
8996
8996
-
react: 19.0.0
8997
8997
-
react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
9100
9100
+
expo-font: 14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
9101
9101
+
react: 19.2.0
9102
9102
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
8998
9103
8999
9104
'@expo/ws-tunnel@1.0.6': {}
9000
9105
···
9005
9110
find-up: 5.0.0
9006
9111
js-yaml: 4.1.0
9007
9112
9008
9008
-
'@floating-ui/core@1.6.8':
9113
9113
+
'@floating-ui/core@1.7.3':
9009
9114
dependencies:
9010
9010
-
'@floating-ui/utils': 0.2.8
9115
9115
+
'@floating-ui/utils': 0.2.10
9011
9116
9012
9012
-
'@floating-ui/dom@1.6.12':
9117
9117
+
'@floating-ui/dom@1.7.4':
9013
9118
dependencies:
9014
9014
-
'@floating-ui/core': 1.6.8
9015
9015
-
'@floating-ui/utils': 0.2.8
9119
9119
+
'@floating-ui/core': 1.7.3
9120
9120
+
'@floating-ui/utils': 0.2.10
9016
9121
9017
9017
-
'@floating-ui/react-dom@2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
9122
9122
+
'@floating-ui/react-dom@2.1.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
9018
9123
dependencies:
9019
9019
-
'@floating-ui/dom': 1.6.12
9020
9020
-
react: 19.0.0
9021
9021
-
react-dom: 19.0.0(react@19.0.0)
9124
9124
+
'@floating-ui/dom': 1.7.4
9125
9125
+
react: 19.1.0
9126
9126
+
react-dom: 19.1.0(react@19.1.0)
9022
9127
9023
9023
-
'@floating-ui/utils@0.2.8': {}
9128
9128
+
'@floating-ui/utils@0.2.10': {}
9024
9129
9025
9025
-
'@gorhom/bottom-sheet@5.1.6(@types/react@19.0.14)(react-native-gesture-handler@2.24.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
9130
9130
+
'@gorhom/bottom-sheet@5.2.6(@types/react@19.1.17)(react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
9026
9131
dependencies:
9027
9027
-
'@gorhom/portal': 1.0.14(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
9132
9132
+
'@gorhom/portal': 1.0.14(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
9028
9133
invariant: 2.2.4
9029
9029
-
react: 19.0.0
9030
9030
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
9031
9031
-
react-native-gesture-handler: 2.24.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
9032
9032
-
react-native-reanimated: 3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
9134
9134
+
react: 19.1.0
9135
9135
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
9136
9136
+
react-native-gesture-handler: 2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
9137
9137
+
react-native-reanimated: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
9033
9138
optionalDependencies:
9034
9034
-
'@types/react': 19.0.14
9139
9139
+
'@types/react': 19.1.17
9035
9140
9036
9036
-
'@gorhom/portal@1.0.14(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
9141
9141
+
'@gorhom/portal@1.0.14(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
9037
9142
dependencies:
9038
9038
-
nanoid: 3.3.8
9039
9039
-
react: 19.0.0
9040
9040
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
9143
9143
+
nanoid: 3.3.11
9144
9144
+
react: 19.1.0
9145
9145
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
9041
9146
9042
9147
'@humanwhocodes/config-array@0.13.0':
9043
9148
dependencies:
9044
9149
'@humanwhocodes/object-schema': 2.0.3
9045
9045
-
debug: 4.4.0
9150
9150
+
debug: 4.4.3
9046
9151
minimatch: 3.1.2
9047
9152
transitivePeerDependencies:
9048
9153
- supports-color
···
9051
9156
9052
9157
'@humanwhocodes/object-schema@2.0.3': {}
9053
9158
9054
9054
-
'@ianvs/prettier-plugin-sort-imports@4.5.1(prettier@3.5.3)':
9159
9159
+
'@ianvs/prettier-plugin-sort-imports@4.7.0(prettier@3.6.2)':
9055
9160
dependencies:
9056
9161
'@babel/generator': 7.26.3
9057
9162
'@babel/parser': 7.26.3
9058
9163
'@babel/traverse': 7.26.4
9059
9164
'@babel/types': 7.26.3
9060
9060
-
prettier: 3.5.3
9165
9165
+
prettier: 3.6.2
9061
9166
semver: 7.6.3
9062
9167
transitivePeerDependencies:
9063
9168
- supports-color
···
9066
9171
dependencies:
9067
9172
cborg: 1.10.2
9068
9173
multiformats: 9.9.0
9174
9174
+
9175
9175
+
'@isaacs/balanced-match@4.0.1': {}
9176
9176
+
9177
9177
+
'@isaacs/brace-expansion@5.0.0':
9178
9178
+
dependencies:
9179
9179
+
'@isaacs/balanced-match': 4.0.1
9069
9180
9070
9181
'@isaacs/cliui@8.0.2':
9071
9182
dependencies:
9072
9183
string-width: 5.1.2
9073
9184
string-width-cjs: string-width@4.2.3
9074
9074
-
strip-ansi: 7.1.0
9185
9185
+
strip-ansi: 7.1.2
9075
9186
strip-ansi-cjs: strip-ansi@6.0.1
9076
9187
wrap-ansi: 8.1.0
9077
9188
wrap-ansi-cjs: wrap-ansi@7.0.0
···
9095
9206
'@jest/console@29.7.0':
9096
9207
dependencies:
9097
9208
'@jest/types': 29.6.3
9098
9098
-
'@types/node': 22.10.2
9209
9209
+
'@types/node': 22.18.8
9099
9210
chalk: 4.1.2
9100
9211
jest-message-util: 29.7.0
9101
9212
jest-util: 29.7.0
···
9104
9215
'@jest/console@30.2.0':
9105
9216
dependencies:
9106
9217
'@jest/types': 30.2.0
9107
9107
-
'@types/node': 22.10.2
9218
9218
+
'@types/node': 22.18.8
9108
9219
chalk: 4.1.2
9109
9220
jest-message-util: 30.2.0
9110
9221
jest-util: 30.2.0
9111
9222
slash: 3.0.0
9112
9223
9113
9113
-
'@jest/core@30.2.0(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))':
9224
9224
+
'@jest/core@29.7.0(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))':
9225
9225
+
dependencies:
9226
9226
+
'@jest/console': 29.7.0
9227
9227
+
'@jest/reporters': 29.7.0
9228
9228
+
'@jest/test-result': 29.7.0
9229
9229
+
'@jest/transform': 29.7.0
9230
9230
+
'@jest/types': 29.6.3
9231
9231
+
'@types/node': 22.18.8
9232
9232
+
ansi-escapes: 4.3.2
9233
9233
+
chalk: 4.1.2
9234
9234
+
ci-info: 3.9.0
9235
9235
+
exit: 0.1.2
9236
9236
+
graceful-fs: 4.2.11
9237
9237
+
jest-changed-files: 29.7.0
9238
9238
+
jest-config: 29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))
9239
9239
+
jest-haste-map: 29.7.0
9240
9240
+
jest-message-util: 29.7.0
9241
9241
+
jest-regex-util: 29.6.3
9242
9242
+
jest-resolve: 29.7.0
9243
9243
+
jest-resolve-dependencies: 29.7.0
9244
9244
+
jest-runner: 29.7.0
9245
9245
+
jest-runtime: 29.7.0
9246
9246
+
jest-snapshot: 29.7.0
9247
9247
+
jest-util: 29.7.0
9248
9248
+
jest-validate: 29.7.0
9249
9249
+
jest-watcher: 29.7.0
9250
9250
+
micromatch: 4.0.8
9251
9251
+
pretty-format: 29.7.0
9252
9252
+
slash: 3.0.0
9253
9253
+
strip-ansi: 6.0.1
9254
9254
+
transitivePeerDependencies:
9255
9255
+
- babel-plugin-macros
9256
9256
+
- supports-color
9257
9257
+
- ts-node
9258
9258
+
9259
9259
+
'@jest/core@30.2.0(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))':
9114
9260
dependencies:
9115
9261
'@jest/console': 30.2.0
9116
9262
'@jest/pattern': 30.0.1
···
9118
9264
'@jest/test-result': 30.2.0
9119
9265
'@jest/transform': 30.2.0
9120
9266
'@jest/types': 30.2.0
9121
9121
-
'@types/node': 22.10.2
9267
9267
+
'@types/node': 22.18.8
9122
9268
ansi-escapes: 4.3.2
9123
9269
chalk: 4.1.2
9124
9270
ci-info: 4.3.0
9125
9271
exit-x: 0.2.2
9126
9272
graceful-fs: 4.2.11
9127
9273
jest-changed-files: 30.2.0
9128
9128
-
jest-config: 30.2.0(@types/node@22.10.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))
9274
9274
+
jest-config: 30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))
9129
9275
jest-haste-map: 30.2.0
9130
9276
jest-message-util: 30.2.0
9131
9277
jest-regex-util: 30.0.1
···
9156
9302
dependencies:
9157
9303
'@jest/fake-timers': 29.7.0
9158
9304
'@jest/types': 29.6.3
9159
9159
-
'@types/node': 22.10.2
9305
9305
+
'@types/node': 22.18.8
9160
9306
jest-mock: 29.7.0
9161
9307
9162
9308
'@jest/environment@30.2.0':
9163
9309
dependencies:
9164
9310
'@jest/fake-timers': 30.2.0
9165
9311
'@jest/types': 30.2.0
9166
9166
-
'@types/node': 22.10.2
9312
9312
+
'@types/node': 22.18.8
9167
9313
jest-mock: 30.2.0
9168
9314
9169
9315
'@jest/expect-utils@29.7.0':
···
9192
9338
dependencies:
9193
9339
'@jest/types': 29.6.3
9194
9340
'@sinonjs/fake-timers': 10.3.0
9195
9195
-
'@types/node': 22.10.2
9341
9341
+
'@types/node': 22.18.8
9196
9342
jest-message-util: 29.7.0
9197
9343
jest-mock: 29.7.0
9198
9344
jest-util: 29.7.0
···
9201
9347
dependencies:
9202
9348
'@jest/types': 30.2.0
9203
9349
'@sinonjs/fake-timers': 13.0.5
9204
9204
-
'@types/node': 22.10.2
9350
9350
+
'@types/node': 22.18.8
9205
9351
jest-message-util: 30.2.0
9206
9352
jest-mock: 30.2.0
9207
9353
jest-util: 30.2.0
···
9228
9374
9229
9375
'@jest/pattern@30.0.1':
9230
9376
dependencies:
9231
9231
-
'@types/node': 22.10.2
9377
9377
+
'@types/node': 22.18.8
9232
9378
jest-regex-util: 30.0.1
9233
9379
9380
9380
+
'@jest/reporters@29.7.0':
9381
9381
+
dependencies:
9382
9382
+
'@bcoe/v8-coverage': 0.2.3
9383
9383
+
'@jest/console': 29.7.0
9384
9384
+
'@jest/test-result': 29.7.0
9385
9385
+
'@jest/transform': 29.7.0
9386
9386
+
'@jest/types': 29.6.3
9387
9387
+
'@jridgewell/trace-mapping': 0.3.31
9388
9388
+
'@types/node': 22.18.8
9389
9389
+
chalk: 4.1.2
9390
9390
+
collect-v8-coverage: 1.0.2
9391
9391
+
exit: 0.1.2
9392
9392
+
glob: 7.2.3
9393
9393
+
graceful-fs: 4.2.11
9394
9394
+
istanbul-lib-coverage: 3.2.2
9395
9395
+
istanbul-lib-instrument: 6.0.3
9396
9396
+
istanbul-lib-report: 3.0.1
9397
9397
+
istanbul-lib-source-maps: 4.0.1
9398
9398
+
istanbul-reports: 3.2.0
9399
9399
+
jest-message-util: 29.7.0
9400
9400
+
jest-util: 29.7.0
9401
9401
+
jest-worker: 29.7.0
9402
9402
+
slash: 3.0.0
9403
9403
+
string-length: 4.0.2
9404
9404
+
strip-ansi: 6.0.1
9405
9405
+
v8-to-istanbul: 9.3.0
9406
9406
+
transitivePeerDependencies:
9407
9407
+
- supports-color
9408
9408
+
9234
9409
'@jest/reporters@30.2.0':
9235
9410
dependencies:
9236
9411
'@bcoe/v8-coverage': 0.2.3
···
9238
9413
'@jest/test-result': 30.2.0
9239
9414
'@jest/transform': 30.2.0
9240
9415
'@jest/types': 30.2.0
9241
9241
-
'@jridgewell/trace-mapping': 0.3.25
9242
9242
-
'@types/node': 22.10.2
9416
9416
+
'@jridgewell/trace-mapping': 0.3.31
9417
9417
+
'@types/node': 22.18.8
9243
9418
chalk: 4.1.2
9244
9419
collect-v8-coverage: 1.0.2
9245
9420
exit-x: 0.2.2
···
9274
9449
graceful-fs: 4.2.11
9275
9450
natural-compare: 1.4.0
9276
9451
9452
9452
+
'@jest/source-map@29.6.3':
9453
9453
+
dependencies:
9454
9454
+
'@jridgewell/trace-mapping': 0.3.31
9455
9455
+
callsites: 3.1.0
9456
9456
+
graceful-fs: 4.2.11
9457
9457
+
9277
9458
'@jest/source-map@30.0.1':
9278
9459
dependencies:
9279
9279
-
'@jridgewell/trace-mapping': 0.3.25
9460
9460
+
'@jridgewell/trace-mapping': 0.3.31
9280
9461
callsites: 3.1.0
9281
9462
graceful-fs: 4.2.11
9282
9463
···
9293
9474
'@jest/types': 30.2.0
9294
9475
'@types/istanbul-lib-coverage': 2.0.6
9295
9476
collect-v8-coverage: 1.0.2
9477
9477
+
9478
9478
+
'@jest/test-sequencer@29.7.0':
9479
9479
+
dependencies:
9480
9480
+
'@jest/test-result': 29.7.0
9481
9481
+
graceful-fs: 4.2.11
9482
9482
+
jest-haste-map: 29.7.0
9483
9483
+
slash: 3.0.0
9296
9484
9297
9485
'@jest/test-sequencer@30.2.0':
9298
9486
dependencies:
···
9325
9513
dependencies:
9326
9514
'@babel/core': 7.28.4
9327
9515
'@jest/types': 30.2.0
9328
9328
-
'@jridgewell/trace-mapping': 0.3.25
9516
9516
+
'@jridgewell/trace-mapping': 0.3.31
9329
9517
babel-plugin-istanbul: 7.0.1
9330
9518
chalk: 4.1.2
9331
9519
convert-source-map: 2.0.0
···
9346
9534
'@jest/schemas': 29.6.3
9347
9535
'@types/istanbul-lib-coverage': 2.0.6
9348
9536
'@types/istanbul-reports': 3.0.4
9349
9349
-
'@types/node': 22.10.2
9537
9537
+
'@types/node': 22.18.8
9350
9538
'@types/yargs': 17.0.33
9351
9539
chalk: 4.1.2
9352
9540
···
9356
9544
'@jest/schemas': 30.0.5
9357
9545
'@types/istanbul-lib-coverage': 2.0.6
9358
9546
'@types/istanbul-reports': 3.0.4
9359
9359
-
'@types/node': 22.10.2
9547
9547
+
'@types/node': 22.18.8
9360
9548
'@types/yargs': 17.0.33
9361
9549
chalk: 4.1.2
9362
9550
9363
9551
'@jridgewell/gen-mapping@0.3.13':
9364
9552
dependencies:
9365
9365
-
'@jridgewell/sourcemap-codec': 1.5.0
9553
9553
+
'@jridgewell/sourcemap-codec': 1.5.5
9366
9554
'@jridgewell/trace-mapping': 0.3.31
9367
9555
9368
9556
'@jridgewell/gen-mapping@0.3.5':
···
9380
9568
9381
9569
'@jridgewell/set-array@1.2.1': {}
9382
9570
9571
9571
+
'@jridgewell/source-map@0.3.11':
9572
9572
+
dependencies:
9573
9573
+
'@jridgewell/gen-mapping': 0.3.13
9574
9574
+
'@jridgewell/trace-mapping': 0.3.31
9575
9575
+
9383
9576
'@jridgewell/source-map@0.3.6':
9384
9577
dependencies:
9385
9578
'@jridgewell/gen-mapping': 0.3.13
9386
9579
'@jridgewell/trace-mapping': 0.3.31
9387
9580
9388
9581
'@jridgewell/sourcemap-codec@1.5.0': {}
9582
9582
+
9583
9583
+
'@jridgewell/sourcemap-codec@1.5.5': {}
9389
9584
9390
9585
'@jridgewell/trace-mapping@0.3.25':
9391
9586
dependencies:
···
9395
9590
'@jridgewell/trace-mapping@0.3.31':
9396
9591
dependencies:
9397
9592
'@jridgewell/resolve-uri': 3.1.2
9398
9398
-
'@jridgewell/sourcemap-codec': 1.5.0
9593
9593
+
'@jridgewell/sourcemap-codec': 1.5.5
9399
9594
9400
9595
'@jridgewell/trace-mapping@0.3.9':
9401
9596
dependencies:
···
9409
9604
'@tybys/wasm-util': 0.10.1
9410
9605
optional: true
9411
9606
9412
9412
-
'@noble/curves@1.8.1':
9607
9607
+
'@noble/curves@1.9.7':
9413
9608
dependencies:
9414
9414
-
'@noble/hashes': 1.7.1
9415
9415
-
9416
9416
-
'@noble/hashes@1.6.1': {}
9609
9609
+
'@noble/hashes': 1.8.0
9417
9610
9418
9418
-
'@noble/hashes@1.7.1': {}
9611
9611
+
'@noble/hashes@1.8.0': {}
9419
9612
9420
9613
'@nodelib/fs.scandir@2.1.5':
9421
9614
dependencies:
···
9427
9620
'@nodelib/fs.walk@1.2.8':
9428
9621
dependencies:
9429
9622
'@nodelib/fs.scandir': 2.1.5
9430
9430
-
fastq: 1.17.1
9623
9623
+
fastq: 1.19.1
9431
9624
9432
9625
'@nolyfill/is-core-module@1.0.39': {}
9433
9626
···
9436
9629
9437
9630
'@pkgr/core@0.2.9': {}
9438
9631
9439
9439
-
'@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.16.0)(type-fest@0.21.3)(webpack@5.97.1)':
9632
9632
+
'@pmmmwh/react-refresh-webpack-plugin@0.5.17(react-refresh@0.16.0)(type-fest@0.21.3)(webpack@5.97.1)':
9440
9633
dependencies:
9441
9634
ansi-html: 0.0.9
9442
9635
core-js-pure: 3.39.0
···
9444
9637
html-entities: 2.5.2
9445
9638
loader-utils: 2.0.4
9446
9639
react-refresh: 0.16.0
9447
9447
-
schema-utils: 4.3.0
9640
9640
+
schema-utils: 4.3.3
9448
9641
source-map: 0.7.4
9449
9642
webpack: 5.97.1
9450
9643
optionalDependencies:
9451
9644
type-fest: 0.21.3
9452
9645
9453
9453
-
'@radix-ui/primitive@1.1.1': {}
9646
9646
+
'@radix-ui/primitive@1.1.3': {}
9454
9647
9455
9455
-
'@radix-ui/react-arrow@1.1.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
9648
9648
+
'@radix-ui/react-arrow@1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
9456
9649
dependencies:
9457
9457
-
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9458
9458
-
react: 19.0.0
9459
9459
-
react-dom: 19.0.0(react@19.0.0)
9650
9650
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9651
9651
+
react: 19.1.0
9652
9652
+
react-dom: 19.1.0(react@19.1.0)
9460
9653
optionalDependencies:
9461
9461
-
'@types/react': 19.0.14
9462
9462
-
'@types/react-dom': 18.3.1
9654
9654
+
'@types/react': 19.1.17
9655
9655
+
'@types/react-dom': 19.1.11(@types/react@19.1.17)
9463
9656
9464
9464
-
'@radix-ui/react-compose-refs@1.1.1(@types/react@19.0.14)(react@19.0.0)':
9657
9657
+
'@radix-ui/react-collection@1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
9465
9658
dependencies:
9466
9466
-
react: 19.0.0
9659
9659
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
9660
9660
+
'@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0)
9661
9661
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9662
9662
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.1.17)(react@19.1.0)
9663
9663
+
react: 19.1.0
9664
9664
+
react-dom: 19.1.0(react@19.1.0)
9467
9665
optionalDependencies:
9468
9468
-
'@types/react': 19.0.14
9666
9666
+
'@types/react': 19.1.17
9667
9667
+
'@types/react-dom': 19.1.11(@types/react@19.1.17)
9469
9668
9470
9470
-
'@radix-ui/react-compose-refs@1.1.2(@types/react@19.0.14)(react@19.0.0)':
9669
9669
+
'@radix-ui/react-collection@1.1.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
9471
9670
dependencies:
9472
9472
-
react: 19.0.0
9671
9671
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.0)(react@19.2.0)
9672
9672
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.0)(react@19.2.0)
9673
9673
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
9674
9674
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.0)(react@19.2.0)
9675
9675
+
react: 19.2.0
9676
9676
+
react-dom: 19.2.0(react@19.2.0)
9473
9677
optionalDependencies:
9474
9474
-
'@types/react': 19.0.14
9678
9678
+
'@types/react': 19.2.0
9679
9679
+
'@types/react-dom': 19.2.0(@types/react@19.2.0)
9680
9680
+
optional: true
9475
9681
9476
9476
-
'@radix-ui/react-context@1.1.1(@types/react@19.0.14)(react@19.0.0)':
9682
9682
+
'@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.17)(react@19.1.0)':
9477
9683
dependencies:
9478
9478
-
react: 19.0.0
9684
9684
+
react: 19.1.0
9479
9685
optionalDependencies:
9480
9480
-
'@types/react': 19.0.14
9686
9686
+
'@types/react': 19.1.17
9481
9687
9482
9482
-
'@radix-ui/react-dismissable-layer@1.1.3(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
9688
9688
+
'@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.0)(react@19.2.0)':
9483
9689
dependencies:
9484
9484
-
'@radix-ui/primitive': 1.1.1
9485
9485
-
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.14)(react@19.0.0)
9486
9486
-
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9487
9487
-
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9488
9488
-
'@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9489
9489
-
react: 19.0.0
9490
9490
-
react-dom: 19.0.0(react@19.0.0)
9690
9690
+
react: 19.2.0
9491
9691
optionalDependencies:
9492
9492
-
'@types/react': 19.0.14
9493
9493
-
'@types/react-dom': 18.3.1
9692
9692
+
'@types/react': 19.2.0
9693
9693
+
optional: true
9494
9694
9495
9495
-
'@radix-ui/react-focus-guards@1.1.1(@types/react@19.0.14)(react@19.0.0)':
9695
9695
+
'@radix-ui/react-context@1.1.2(@types/react@19.1.17)(react@19.1.0)':
9496
9696
dependencies:
9497
9497
-
react: 19.0.0
9697
9697
+
react: 19.1.0
9498
9698
optionalDependencies:
9499
9499
-
'@types/react': 19.0.14
9699
9699
+
'@types/react': 19.1.17
9500
9700
9501
9501
-
'@radix-ui/react-focus-scope@1.1.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
9701
9701
+
'@radix-ui/react-context@1.1.2(@types/react@19.2.0)(react@19.2.0)':
9502
9702
dependencies:
9503
9503
-
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.14)(react@19.0.0)
9504
9504
-
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9505
9505
-
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9506
9506
-
react: 19.0.0
9507
9507
-
react-dom: 19.0.0(react@19.0.0)
9703
9703
+
react: 19.2.0
9508
9704
optionalDependencies:
9509
9509
-
'@types/react': 19.0.14
9510
9510
-
'@types/react-dom': 18.3.1
9705
9705
+
'@types/react': 19.2.0
9706
9706
+
optional: true
9511
9707
9512
9512
-
'@radix-ui/react-hover-card@1.1.4(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
9708
9708
+
'@radix-ui/react-dialog@1.1.15(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
9513
9709
dependencies:
9514
9514
-
'@radix-ui/primitive': 1.1.1
9515
9515
-
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.14)(react@19.0.0)
9516
9516
-
'@radix-ui/react-context': 1.1.1(@types/react@19.0.14)(react@19.0.0)
9517
9517
-
'@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9518
9518
-
'@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9519
9519
-
'@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9520
9520
-
'@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9521
9521
-
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9522
9522
-
'@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9523
9523
-
react: 19.0.0
9524
9524
-
react-dom: 19.0.0(react@19.0.0)
9710
9710
+
'@radix-ui/primitive': 1.1.3
9711
9711
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
9712
9712
+
'@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0)
9713
9713
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9714
9714
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.17)(react@19.1.0)
9715
9715
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9716
9716
+
'@radix-ui/react-id': 1.1.1(@types/react@19.1.17)(react@19.1.0)
9717
9717
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9718
9718
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9719
9719
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9720
9720
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.1.17)(react@19.1.0)
9721
9721
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.17)(react@19.1.0)
9722
9722
+
aria-hidden: 1.2.4
9723
9723
+
react: 19.1.0
9724
9724
+
react-dom: 19.1.0(react@19.1.0)
9725
9725
+
react-remove-scroll: 2.7.1(@types/react@19.1.17)(react@19.1.0)
9525
9726
optionalDependencies:
9526
9526
-
'@types/react': 19.0.14
9527
9527
-
'@types/react-dom': 18.3.1
9727
9727
+
'@types/react': 19.1.17
9728
9728
+
'@types/react-dom': 19.1.11(@types/react@19.1.17)
9528
9729
9529
9529
-
'@radix-ui/react-id@1.1.0(@types/react@19.0.14)(react@19.0.0)':
9730
9730
+
'@radix-ui/react-dialog@1.1.15(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
9530
9731
dependencies:
9531
9531
-
'@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9532
9532
-
react: 19.0.0
9732
9732
+
'@radix-ui/primitive': 1.1.3
9733
9733
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.0)(react@19.2.0)
9734
9734
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.0)(react@19.2.0)
9735
9735
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
9736
9736
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.0)(react@19.2.0)
9737
9737
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
9738
9738
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.0)(react@19.2.0)
9739
9739
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
9740
9740
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
9741
9741
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
9742
9742
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.0)(react@19.2.0)
9743
9743
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.0)(react@19.2.0)
9744
9744
+
aria-hidden: 1.2.4
9745
9745
+
react: 19.2.0
9746
9746
+
react-dom: 19.2.0(react@19.2.0)
9747
9747
+
react-remove-scroll: 2.7.1(@types/react@19.2.0)(react@19.2.0)
9533
9748
optionalDependencies:
9534
9534
-
'@types/react': 19.0.14
9749
9749
+
'@types/react': 19.2.0
9750
9750
+
'@types/react-dom': 19.2.0(@types/react@19.2.0)
9751
9751
+
optional: true
9535
9752
9536
9536
-
'@radix-ui/react-popover@1.1.4(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
9753
9753
+
'@radix-ui/react-direction@1.1.1(@types/react@19.1.17)(react@19.1.0)':
9537
9754
dependencies:
9538
9538
-
'@radix-ui/primitive': 1.1.1
9539
9539
-
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.14)(react@19.0.0)
9540
9540
-
'@radix-ui/react-context': 1.1.1(@types/react@19.0.14)(react@19.0.0)
9541
9541
-
'@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9542
9542
-
'@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.14)(react@19.0.0)
9543
9543
-
'@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9544
9544
-
'@radix-ui/react-id': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9545
9545
-
'@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9546
9546
-
'@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9547
9547
-
'@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9548
9548
-
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9549
9549
-
'@radix-ui/react-slot': 1.1.1(@types/react@19.0.14)(react@19.0.0)
9550
9550
-
'@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9551
9551
-
aria-hidden: 1.2.4
9552
9552
-
react: 19.0.0
9553
9553
-
react-dom: 19.0.0(react@19.0.0)
9554
9554
-
react-remove-scroll: 2.6.2(@types/react@19.0.14)(react@19.0.0)
9755
9755
+
react: 19.1.0
9555
9756
optionalDependencies:
9556
9556
-
'@types/react': 19.0.14
9557
9557
-
'@types/react-dom': 18.3.1
9757
9757
+
'@types/react': 19.1.17
9558
9758
9559
9559
-
'@radix-ui/react-popper@1.2.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
9759
9759
+
'@radix-ui/react-direction@1.1.1(@types/react@19.2.0)(react@19.2.0)':
9560
9760
dependencies:
9561
9561
-
'@floating-ui/react-dom': 2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9562
9562
-
'@radix-ui/react-arrow': 1.1.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9563
9563
-
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.14)(react@19.0.0)
9564
9564
-
'@radix-ui/react-context': 1.1.1(@types/react@19.0.14)(react@19.0.0)
9565
9565
-
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9566
9566
-
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9567
9567
-
'@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9568
9568
-
'@radix-ui/react-use-rect': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9569
9569
-
'@radix-ui/react-use-size': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9570
9570
-
'@radix-ui/rect': 1.1.0
9571
9571
-
react: 19.0.0
9572
9572
-
react-dom: 19.0.0(react@19.0.0)
9761
9761
+
react: 19.2.0
9573
9762
optionalDependencies:
9574
9574
-
'@types/react': 19.0.14
9575
9575
-
'@types/react-dom': 18.3.1
9763
9763
+
'@types/react': 19.2.0
9764
9764
+
optional: true
9576
9765
9577
9577
-
'@radix-ui/react-portal@1.1.3(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
9766
9766
+
'@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
9578
9767
dependencies:
9579
9579
-
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9580
9580
-
'@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9581
9581
-
react: 19.0.0
9582
9582
-
react-dom: 19.0.0(react@19.0.0)
9768
9768
+
'@radix-ui/primitive': 1.1.3
9769
9769
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
9770
9770
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9771
9771
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.17)(react@19.1.0)
9772
9772
+
'@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.17)(react@19.1.0)
9773
9773
+
react: 19.1.0
9774
9774
+
react-dom: 19.1.0(react@19.1.0)
9583
9775
optionalDependencies:
9584
9584
-
'@types/react': 19.0.14
9585
9585
-
'@types/react-dom': 18.3.1
9776
9776
+
'@types/react': 19.1.17
9777
9777
+
'@types/react-dom': 19.1.11(@types/react@19.1.17)
9586
9778
9587
9587
-
'@radix-ui/react-presence@1.1.2(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
9779
9779
+
'@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
9588
9780
dependencies:
9589
9589
-
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.14)(react@19.0.0)
9590
9590
-
'@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9591
9591
-
react: 19.0.0
9592
9592
-
react-dom: 19.0.0(react@19.0.0)
9781
9781
+
'@radix-ui/primitive': 1.1.3
9782
9782
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.0)(react@19.2.0)
9783
9783
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
9784
9784
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.0)(react@19.2.0)
9785
9785
+
'@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.0)(react@19.2.0)
9786
9786
+
react: 19.2.0
9787
9787
+
react-dom: 19.2.0(react@19.2.0)
9593
9788
optionalDependencies:
9594
9594
-
'@types/react': 19.0.14
9595
9595
-
'@types/react-dom': 18.3.1
9789
9789
+
'@types/react': 19.2.0
9790
9790
+
'@types/react-dom': 19.2.0(@types/react@19.2.0)
9791
9791
+
optional: true
9596
9792
9597
9597
-
'@radix-ui/react-primitive@2.0.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
9793
9793
+
'@radix-ui/react-focus-guards@1.1.3(@types/react@19.1.17)(react@19.1.0)':
9598
9794
dependencies:
9599
9599
-
'@radix-ui/react-slot': 1.1.1(@types/react@19.0.14)(react@19.0.0)
9600
9600
-
react: 19.0.0
9601
9601
-
react-dom: 19.0.0(react@19.0.0)
9795
9795
+
react: 19.1.0
9602
9796
optionalDependencies:
9603
9603
-
'@types/react': 19.0.14
9604
9604
-
'@types/react-dom': 18.3.1
9797
9797
+
'@types/react': 19.1.17
9605
9798
9606
9606
-
'@radix-ui/react-progress@1.1.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
9799
9799
+
'@radix-ui/react-focus-guards@1.1.3(@types/react@19.2.0)(react@19.2.0)':
9607
9800
dependencies:
9608
9608
-
'@radix-ui/react-context': 1.1.1(@types/react@19.0.14)(react@19.0.0)
9609
9609
-
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9610
9610
-
react: 19.0.0
9611
9611
-
react-dom: 19.0.0(react@19.0.0)
9801
9801
+
react: 19.2.0
9612
9802
optionalDependencies:
9613
9613
-
'@types/react': 19.0.14
9614
9614
-
'@types/react-dom': 18.3.1
9803
9803
+
'@types/react': 19.2.0
9804
9804
+
optional: true
9615
9805
9616
9616
-
'@radix-ui/react-slot@1.1.1(@types/react@19.0.14)(react@19.0.0)':
9806
9806
+
'@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
9617
9807
dependencies:
9618
9618
-
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.14)(react@19.0.0)
9619
9619
-
react: 19.0.0
9808
9808
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
9809
9809
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9810
9810
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.17)(react@19.1.0)
9811
9811
+
react: 19.1.0
9812
9812
+
react-dom: 19.1.0(react@19.1.0)
9620
9813
optionalDependencies:
9621
9621
-
'@types/react': 19.0.14
9814
9814
+
'@types/react': 19.1.17
9815
9815
+
'@types/react-dom': 19.1.11(@types/react@19.1.17)
9622
9816
9623
9623
-
'@radix-ui/react-slot@1.2.0(@types/react@19.0.14)(react@19.0.0)':
9817
9817
+
'@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
9624
9818
dependencies:
9625
9625
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.14)(react@19.0.0)
9626
9626
-
react: 19.0.0
9819
9819
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.0)(react@19.2.0)
9820
9820
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
9821
9821
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.0)(react@19.2.0)
9822
9822
+
react: 19.2.0
9823
9823
+
react-dom: 19.2.0(react@19.2.0)
9627
9824
optionalDependencies:
9628
9628
-
'@types/react': 19.0.14
9825
9825
+
'@types/react': 19.2.0
9826
9826
+
'@types/react-dom': 19.2.0(@types/react@19.2.0)
9827
9827
+
optional: true
9629
9828
9630
9630
-
'@radix-ui/react-tooltip@1.1.6(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
9829
9829
+
'@radix-ui/react-hover-card@1.1.15(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
9631
9830
dependencies:
9632
9632
-
'@radix-ui/primitive': 1.1.1
9633
9633
-
'@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.14)(react@19.0.0)
9634
9634
-
'@radix-ui/react-context': 1.1.1(@types/react@19.0.14)(react@19.0.0)
9635
9635
-
'@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9636
9636
-
'@radix-ui/react-id': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9637
9637
-
'@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9638
9638
-
'@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9639
9639
-
'@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9640
9640
-
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9641
9641
-
'@radix-ui/react-slot': 1.1.1(@types/react@19.0.14)(react@19.0.0)
9642
9642
-
'@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9643
9643
-
'@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9644
9644
-
react: 19.0.0
9645
9645
-
react-dom: 19.0.0(react@19.0.0)
9831
9831
+
'@radix-ui/primitive': 1.1.3
9832
9832
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
9833
9833
+
'@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0)
9834
9834
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9835
9835
+
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9836
9836
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9837
9837
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9838
9838
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9839
9839
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.17)(react@19.1.0)
9840
9840
+
react: 19.1.0
9841
9841
+
react-dom: 19.1.0(react@19.1.0)
9646
9842
optionalDependencies:
9647
9647
-
'@types/react': 19.0.14
9648
9648
-
'@types/react-dom': 18.3.1
9843
9843
+
'@types/react': 19.1.17
9844
9844
+
'@types/react-dom': 19.1.11(@types/react@19.1.17)
9649
9845
9650
9650
-
'@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.0.14)(react@19.0.0)':
9846
9846
+
'@radix-ui/react-id@1.1.1(@types/react@19.1.17)(react@19.1.0)':
9651
9847
dependencies:
9652
9652
-
react: 19.0.0
9848
9848
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0)
9849
9849
+
react: 19.1.0
9653
9850
optionalDependencies:
9654
9654
-
'@types/react': 19.0.14
9851
9851
+
'@types/react': 19.1.17
9655
9852
9656
9656
-
'@radix-ui/react-use-controllable-state@1.1.0(@types/react@19.0.14)(react@19.0.0)':
9853
9853
+
'@radix-ui/react-id@1.1.1(@types/react@19.2.0)(react@19.2.0)':
9657
9854
dependencies:
9658
9658
-
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9659
9659
-
react: 19.0.0
9855
9855
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.0)(react@19.2.0)
9856
9856
+
react: 19.2.0
9660
9857
optionalDependencies:
9661
9661
-
'@types/react': 19.0.14
9858
9858
+
'@types/react': 19.2.0
9859
9859
+
optional: true
9662
9860
9663
9663
-
'@radix-ui/react-use-escape-keydown@1.1.0(@types/react@19.0.14)(react@19.0.0)':
9861
9861
+
'@radix-ui/react-popover@1.1.15(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
9664
9862
dependencies:
9665
9665
-
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9666
9666
-
react: 19.0.0
9863
9863
+
'@radix-ui/primitive': 1.1.3
9864
9864
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
9865
9865
+
'@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0)
9866
9866
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9867
9867
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.17)(react@19.1.0)
9868
9868
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9869
9869
+
'@radix-ui/react-id': 1.1.1(@types/react@19.1.17)(react@19.1.0)
9870
9870
+
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9871
9871
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9872
9872
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9873
9873
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9874
9874
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.1.17)(react@19.1.0)
9875
9875
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.17)(react@19.1.0)
9876
9876
+
aria-hidden: 1.2.6
9877
9877
+
react: 19.1.0
9878
9878
+
react-dom: 19.1.0(react@19.1.0)
9879
9879
+
react-remove-scroll: 2.7.1(@types/react@19.1.17)(react@19.1.0)
9667
9880
optionalDependencies:
9668
9668
-
'@types/react': 19.0.14
9881
9881
+
'@types/react': 19.1.17
9882
9882
+
'@types/react-dom': 19.1.11(@types/react@19.1.17)
9669
9883
9670
9670
-
'@radix-ui/react-use-layout-effect@1.1.0(@types/react@19.0.14)(react@19.0.0)':
9884
9884
+
'@radix-ui/react-popper@1.2.8(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
9671
9885
dependencies:
9672
9672
-
react: 19.0.0
9886
9886
+
'@floating-ui/react-dom': 2.1.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9887
9887
+
'@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9888
9888
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
9889
9889
+
'@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0)
9890
9890
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9891
9891
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.17)(react@19.1.0)
9892
9892
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0)
9893
9893
+
'@radix-ui/react-use-rect': 1.1.1(@types/react@19.1.17)(react@19.1.0)
9894
9894
+
'@radix-ui/react-use-size': 1.1.1(@types/react@19.1.17)(react@19.1.0)
9895
9895
+
'@radix-ui/rect': 1.1.1
9896
9896
+
react: 19.1.0
9897
9897
+
react-dom: 19.1.0(react@19.1.0)
9673
9898
optionalDependencies:
9674
9674
-
'@types/react': 19.0.14
9899
9899
+
'@types/react': 19.1.17
9900
9900
+
'@types/react-dom': 19.1.11(@types/react@19.1.17)
9675
9901
9676
9676
-
'@radix-ui/react-use-rect@1.1.0(@types/react@19.0.14)(react@19.0.0)':
9902
9902
+
'@radix-ui/react-portal@1.1.9(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
9677
9903
dependencies:
9678
9678
-
'@radix-ui/rect': 1.1.0
9679
9679
-
react: 19.0.0
9904
9904
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9905
9905
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0)
9906
9906
+
react: 19.1.0
9907
9907
+
react-dom: 19.1.0(react@19.1.0)
9680
9908
optionalDependencies:
9681
9681
-
'@types/react': 19.0.14
9909
9909
+
'@types/react': 19.1.17
9910
9910
+
'@types/react-dom': 19.1.11(@types/react@19.1.17)
9682
9911
9683
9683
-
'@radix-ui/react-use-size@1.1.0(@types/react@19.0.14)(react@19.0.0)':
9912
9912
+
'@radix-ui/react-portal@1.1.9(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
9684
9913
dependencies:
9685
9685
-
'@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.14)(react@19.0.0)
9686
9686
-
react: 19.0.0
9914
9914
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
9915
9915
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.0)(react@19.2.0)
9916
9916
+
react: 19.2.0
9917
9917
+
react-dom: 19.2.0(react@19.2.0)
9687
9918
optionalDependencies:
9688
9688
-
'@types/react': 19.0.14
9919
9919
+
'@types/react': 19.2.0
9920
9920
+
'@types/react-dom': 19.2.0(@types/react@19.2.0)
9921
9921
+
optional: true
9689
9922
9690
9690
-
'@radix-ui/react-visually-hidden@1.1.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
9923
9923
+
'@radix-ui/react-presence@1.1.5(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
9691
9924
dependencies:
9692
9692
-
'@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
9693
9693
-
react: 19.0.0
9694
9694
-
react-dom: 19.0.0(react@19.0.0)
9925
9925
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
9926
9926
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0)
9927
9927
+
react: 19.1.0
9928
9928
+
react-dom: 19.1.0(react@19.1.0)
9695
9929
optionalDependencies:
9696
9696
-
'@types/react': 19.0.14
9697
9697
-
'@types/react-dom': 18.3.1
9930
9930
+
'@types/react': 19.1.17
9931
9931
+
'@types/react-dom': 19.1.11(@types/react@19.1.17)
9698
9932
9699
9699
-
'@radix-ui/rect@1.1.0': {}
9933
9933
+
'@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
9934
9934
+
dependencies:
9935
9935
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.0)(react@19.2.0)
9936
9936
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.0)(react@19.2.0)
9937
9937
+
react: 19.2.0
9938
9938
+
react-dom: 19.2.0(react@19.2.0)
9939
9939
+
optionalDependencies:
9940
9940
+
'@types/react': 19.2.0
9941
9941
+
'@types/react-dom': 19.2.0(@types/react@19.2.0)
9942
9942
+
optional: true
9700
9943
9701
9701
-
'@react-native-async-storage/async-storage@2.1.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))':
9944
9944
+
'@radix-ui/react-primitive@2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
9945
9945
+
dependencies:
9946
9946
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.1.17)(react@19.1.0)
9947
9947
+
react: 19.1.0
9948
9948
+
react-dom: 19.1.0(react@19.1.0)
9949
9949
+
optionalDependencies:
9950
9950
+
'@types/react': 19.1.17
9951
9951
+
'@types/react-dom': 19.1.11(@types/react@19.1.17)
9952
9952
+
9953
9953
+
'@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
9954
9954
+
dependencies:
9955
9955
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.0)(react@19.2.0)
9956
9956
+
react: 19.2.0
9957
9957
+
react-dom: 19.2.0(react@19.2.0)
9958
9958
+
optionalDependencies:
9959
9959
+
'@types/react': 19.2.0
9960
9960
+
'@types/react-dom': 19.2.0(@types/react@19.2.0)
9961
9961
+
optional: true
9962
9962
+
9963
9963
+
'@radix-ui/react-progress@1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
9964
9964
+
dependencies:
9965
9965
+
'@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0)
9966
9966
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9967
9967
+
react: 19.1.0
9968
9968
+
react-dom: 19.1.0(react@19.1.0)
9969
9969
+
optionalDependencies:
9970
9970
+
'@types/react': 19.1.17
9971
9971
+
'@types/react-dom': 19.1.11(@types/react@19.1.17)
9972
9972
+
9973
9973
+
'@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
9974
9974
+
dependencies:
9975
9975
+
'@radix-ui/primitive': 1.1.3
9976
9976
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9977
9977
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
9978
9978
+
'@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0)
9979
9979
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.1.17)(react@19.1.0)
9980
9980
+
'@radix-ui/react-id': 1.1.1(@types/react@19.1.17)(react@19.1.0)
9981
9981
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
9982
9982
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.17)(react@19.1.0)
9983
9983
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.17)(react@19.1.0)
9984
9984
+
react: 19.1.0
9985
9985
+
react-dom: 19.1.0(react@19.1.0)
9986
9986
+
optionalDependencies:
9987
9987
+
'@types/react': 19.1.17
9988
9988
+
'@types/react-dom': 19.1.11(@types/react@19.1.17)
9989
9989
+
9990
9990
+
'@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
9991
9991
+
dependencies:
9992
9992
+
'@radix-ui/primitive': 1.1.3
9993
9993
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
9994
9994
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.0)(react@19.2.0)
9995
9995
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.0)(react@19.2.0)
9996
9996
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.0)(react@19.2.0)
9997
9997
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.0)(react@19.2.0)
9998
9998
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
9999
9999
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.0)(react@19.2.0)
10000
10000
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.0)(react@19.2.0)
10001
10001
+
react: 19.2.0
10002
10002
+
react-dom: 19.2.0(react@19.2.0)
10003
10003
+
optionalDependencies:
10004
10004
+
'@types/react': 19.2.0
10005
10005
+
'@types/react-dom': 19.2.0(@types/react@19.2.0)
10006
10006
+
optional: true
10007
10007
+
10008
10008
+
'@radix-ui/react-slot@1.2.0(@types/react@19.1.17)(react@19.1.0)':
10009
10009
+
dependencies:
10010
10010
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
10011
10011
+
react: 19.1.0
10012
10012
+
optionalDependencies:
10013
10013
+
'@types/react': 19.1.17
10014
10014
+
10015
10015
+
'@radix-ui/react-slot@1.2.0(@types/react@19.2.0)(react@19.2.0)':
10016
10016
+
dependencies:
10017
10017
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.0)(react@19.2.0)
10018
10018
+
react: 19.2.0
10019
10019
+
optionalDependencies:
10020
10020
+
'@types/react': 19.2.0
10021
10021
+
optional: true
10022
10022
+
10023
10023
+
'@radix-ui/react-slot@1.2.3(@types/react@19.1.17)(react@19.1.0)':
10024
10024
+
dependencies:
10025
10025
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
10026
10026
+
react: 19.1.0
10027
10027
+
optionalDependencies:
10028
10028
+
'@types/react': 19.1.17
10029
10029
+
10030
10030
+
'@radix-ui/react-slot@1.2.3(@types/react@19.2.0)(react@19.2.0)':
10031
10031
+
dependencies:
10032
10032
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.0)(react@19.2.0)
10033
10033
+
react: 19.2.0
10034
10034
+
optionalDependencies:
10035
10035
+
'@types/react': 19.2.0
10036
10036
+
optional: true
10037
10037
+
10038
10038
+
'@radix-ui/react-tabs@1.1.13(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
10039
10039
+
dependencies:
10040
10040
+
'@radix-ui/primitive': 1.1.3
10041
10041
+
'@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0)
10042
10042
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.1.17)(react@19.1.0)
10043
10043
+
'@radix-ui/react-id': 1.1.1(@types/react@19.1.17)(react@19.1.0)
10044
10044
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10045
10045
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10046
10046
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10047
10047
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.17)(react@19.1.0)
10048
10048
+
react: 19.1.0
10049
10049
+
react-dom: 19.1.0(react@19.1.0)
10050
10050
+
optionalDependencies:
10051
10051
+
'@types/react': 19.1.17
10052
10052
+
'@types/react-dom': 19.1.11(@types/react@19.1.17)
10053
10053
+
10054
10054
+
'@radix-ui/react-tabs@1.1.13(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
10055
10055
+
dependencies:
10056
10056
+
'@radix-ui/primitive': 1.1.3
10057
10057
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.0)(react@19.2.0)
10058
10058
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.0)(react@19.2.0)
10059
10059
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.0)(react@19.2.0)
10060
10060
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
10061
10061
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
10062
10062
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
10063
10063
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.0)(react@19.2.0)
10064
10064
+
react: 19.2.0
10065
10065
+
react-dom: 19.2.0(react@19.2.0)
10066
10066
+
optionalDependencies:
10067
10067
+
'@types/react': 19.2.0
10068
10068
+
'@types/react-dom': 19.2.0(@types/react@19.2.0)
10069
10069
+
optional: true
10070
10070
+
10071
10071
+
'@radix-ui/react-tooltip@1.2.8(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
10072
10072
+
dependencies:
10073
10073
+
'@radix-ui/primitive': 1.1.3
10074
10074
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.17)(react@19.1.0)
10075
10075
+
'@radix-ui/react-context': 1.1.2(@types/react@19.1.17)(react@19.1.0)
10076
10076
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10077
10077
+
'@radix-ui/react-id': 1.1.1(@types/react@19.1.17)(react@19.1.0)
10078
10078
+
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10079
10079
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10080
10080
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10081
10081
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10082
10082
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.1.17)(react@19.1.0)
10083
10083
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.17)(react@19.1.0)
10084
10084
+
'@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10085
10085
+
react: 19.1.0
10086
10086
+
react-dom: 19.1.0(react@19.1.0)
10087
10087
+
optionalDependencies:
10088
10088
+
'@types/react': 19.1.17
10089
10089
+
'@types/react-dom': 19.1.11(@types/react@19.1.17)
10090
10090
+
10091
10091
+
'@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.17)(react@19.1.0)':
10092
10092
+
dependencies:
10093
10093
+
react: 19.1.0
10094
10094
+
optionalDependencies:
10095
10095
+
'@types/react': 19.1.17
10096
10096
+
10097
10097
+
'@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.0)(react@19.2.0)':
10098
10098
+
dependencies:
10099
10099
+
react: 19.2.0
10100
10100
+
optionalDependencies:
10101
10101
+
'@types/react': 19.2.0
10102
10102
+
optional: true
10103
10103
+
10104
10104
+
'@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.1.17)(react@19.1.0)':
10105
10105
+
dependencies:
10106
10106
+
'@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.1.17)(react@19.1.0)
10107
10107
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0)
10108
10108
+
react: 19.1.0
10109
10109
+
optionalDependencies:
10110
10110
+
'@types/react': 19.1.17
10111
10111
+
10112
10112
+
'@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.0)(react@19.2.0)':
10113
10113
+
dependencies:
10114
10114
+
'@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.0)(react@19.2.0)
10115
10115
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.0)(react@19.2.0)
10116
10116
+
react: 19.2.0
10117
10117
+
optionalDependencies:
10118
10118
+
'@types/react': 19.2.0
10119
10119
+
optional: true
10120
10120
+
10121
10121
+
'@radix-ui/react-use-effect-event@0.0.2(@types/react@19.1.17)(react@19.1.0)':
10122
10122
+
dependencies:
10123
10123
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0)
10124
10124
+
react: 19.1.0
10125
10125
+
optionalDependencies:
10126
10126
+
'@types/react': 19.1.17
10127
10127
+
10128
10128
+
'@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.0)(react@19.2.0)':
10129
10129
+
dependencies:
10130
10130
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.0)(react@19.2.0)
10131
10131
+
react: 19.2.0
10132
10132
+
optionalDependencies:
10133
10133
+
'@types/react': 19.2.0
10134
10134
+
optional: true
10135
10135
+
10136
10136
+
'@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.17)(react@19.1.0)':
10137
10137
+
dependencies:
10138
10138
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.17)(react@19.1.0)
10139
10139
+
react: 19.1.0
10140
10140
+
optionalDependencies:
10141
10141
+
'@types/react': 19.1.17
10142
10142
+
10143
10143
+
'@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.0)(react@19.2.0)':
10144
10144
+
dependencies:
10145
10145
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.0)(react@19.2.0)
10146
10146
+
react: 19.2.0
10147
10147
+
optionalDependencies:
10148
10148
+
'@types/react': 19.2.0
10149
10149
+
optional: true
10150
10150
+
10151
10151
+
'@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.17)(react@19.1.0)':
10152
10152
+
dependencies:
10153
10153
+
react: 19.1.0
10154
10154
+
optionalDependencies:
10155
10155
+
'@types/react': 19.1.17
10156
10156
+
10157
10157
+
'@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.0)(react@19.2.0)':
10158
10158
+
dependencies:
10159
10159
+
react: 19.2.0
10160
10160
+
optionalDependencies:
10161
10161
+
'@types/react': 19.2.0
10162
10162
+
optional: true
10163
10163
+
10164
10164
+
'@radix-ui/react-use-rect@1.1.1(@types/react@19.1.17)(react@19.1.0)':
10165
10165
+
dependencies:
10166
10166
+
'@radix-ui/rect': 1.1.1
10167
10167
+
react: 19.1.0
10168
10168
+
optionalDependencies:
10169
10169
+
'@types/react': 19.1.17
10170
10170
+
10171
10171
+
'@radix-ui/react-use-size@1.1.1(@types/react@19.1.17)(react@19.1.0)':
9702
10172
dependencies:
9703
9703
-
merge-options: 3.0.4
9704
9704
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
10173
10173
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.17)(react@19.1.0)
10174
10174
+
react: 19.1.0
10175
10175
+
optionalDependencies:
10176
10176
+
'@types/react': 19.1.17
9705
10177
9706
9706
-
'@react-native-picker/picker@2.11.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
10178
10178
+
'@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
9707
10179
dependencies:
9708
9708
-
react: 19.0.0
9709
9709
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
10180
10180
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10181
10181
+
react: 19.1.0
10182
10182
+
react-dom: 19.1.0(react@19.1.0)
10183
10183
+
optionalDependencies:
10184
10184
+
'@types/react': 19.1.17
10185
10185
+
'@types/react-dom': 19.1.11(@types/react@19.1.17)
9710
10186
9711
9711
-
'@react-native/assets-registry@0.79.6': {}
10187
10187
+
'@radix-ui/rect@1.1.1': {}
9712
10188
9713
9713
-
'@react-native/babel-plugin-codegen@0.79.5(@babel/core@7.26.0)':
10189
10189
+
'@react-native-async-storage/async-storage@2.2.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))':
9714
10190
dependencies:
9715
9715
-
'@babel/traverse': 7.28.4
9716
9716
-
'@react-native/codegen': 0.79.5(@babel/core@7.26.0)
9717
9717
-
transitivePeerDependencies:
9718
9718
-
- '@babel/core'
9719
9719
-
- supports-color
10191
10191
+
merge-options: 3.0.4
10192
10192
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
9720
10193
9721
9721
-
'@react-native/babel-plugin-codegen@0.79.5(@babel/core@7.28.4)':
10194
10194
+
'@react-native-picker/picker@2.11.2(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
9722
10195
dependencies:
9723
9723
-
'@babel/traverse': 7.28.4
9724
9724
-
'@react-native/codegen': 0.79.5(@babel/core@7.28.4)
9725
9725
-
transitivePeerDependencies:
9726
9726
-
- '@babel/core'
9727
9727
-
- supports-color
10196
10196
+
react: 19.1.0
10197
10197
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
9728
10198
9729
9729
-
'@react-native/babel-preset@0.79.5(@babel/core@7.26.0)':
10199
10199
+
'@react-native/assets-registry@0.81.4': {}
10200
10200
+
10201
10201
+
'@react-native/babel-plugin-codegen@0.81.4(@babel/core@7.28.4)':
9730
10202
dependencies:
9731
9731
-
'@babel/core': 7.26.0
9732
9732
-
'@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.26.0)
9733
9733
-
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0)
9734
9734
-
'@babel/plugin-syntax-export-default-from': 7.25.9(@babel/core@7.26.0)
9735
9735
-
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
9736
9736
-
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
9737
9737
-
'@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0)
9738
9738
-
'@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0)
9739
9739
-
'@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0)
9740
9740
-
'@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0)
9741
9741
-
'@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
9742
9742
-
'@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0)
9743
9743
-
'@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0)
9744
9744
-
'@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0)
9745
9745
-
'@babel/plugin-transform-flow-strip-types': 7.25.9(@babel/core@7.26.0)
9746
9746
-
'@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0)
9747
9747
-
'@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0)
9748
9748
-
'@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0)
9749
9749
-
'@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0)
9750
9750
-
'@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0)
9751
9751
-
'@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
9752
9752
-
'@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0)
9753
9753
-
'@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0)
9754
9754
-
'@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0)
9755
9755
-
'@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.0)
9756
9756
-
'@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
9757
9757
-
'@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
9758
9758
-
'@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0)
9759
9759
-
'@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0)
9760
9760
-
'@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.0)
9761
9761
-
'@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
9762
9762
-
'@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
9763
9763
-
'@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
9764
9764
-
'@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.0)
9765
9765
-
'@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0)
9766
9766
-
'@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0)
9767
9767
-
'@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0)
9768
9768
-
'@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0)
9769
9769
-
'@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0)
9770
9770
-
'@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0)
9771
9771
-
'@babel/template': 7.25.9
9772
9772
-
'@react-native/babel-plugin-codegen': 0.79.5(@babel/core@7.26.0)
9773
9773
-
babel-plugin-syntax-hermes-parser: 0.25.1
9774
9774
-
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.0)
9775
9775
-
react-refresh: 0.14.2
10203
10203
+
'@babel/traverse': 7.28.4
10204
10204
+
'@react-native/codegen': 0.81.4(@babel/core@7.28.4)
9776
10205
transitivePeerDependencies:
10206
10206
+
- '@babel/core'
9777
10207
- supports-color
9778
10208
9779
9779
-
'@react-native/babel-preset@0.79.5(@babel/core@7.28.4)':
10209
10209
+
'@react-native/babel-preset@0.81.4(@babel/core@7.28.4)':
9780
10210
dependencies:
9781
10211
'@babel/core': 7.28.4
9782
10212
'@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.28.4)
···
9818
10248
'@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.28.4)
9819
10249
'@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.28.4)
9820
10250
'@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.28.4)
9821
9821
-
'@babel/template': 7.25.9
9822
9822
-
'@react-native/babel-plugin-codegen': 0.79.5(@babel/core@7.28.4)
9823
9823
-
babel-plugin-syntax-hermes-parser: 0.25.1
10251
10251
+
'@babel/template': 7.27.2
10252
10252
+
'@react-native/babel-plugin-codegen': 0.81.4(@babel/core@7.28.4)
10253
10253
+
babel-plugin-syntax-hermes-parser: 0.29.1
9824
10254
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.28.4)
9825
10255
react-refresh: 0.14.2
9826
10256
transitivePeerDependencies:
9827
10257
- supports-color
9828
10258
9829
9829
-
'@react-native/codegen@0.79.5(@babel/core@7.26.0)':
9830
9830
-
dependencies:
9831
9831
-
'@babel/core': 7.26.0
9832
9832
-
glob: 7.2.3
9833
9833
-
hermes-parser: 0.25.1
9834
9834
-
invariant: 2.2.4
9835
9835
-
nullthrows: 1.1.1
9836
9836
-
yargs: 17.7.2
9837
9837
-
9838
9838
-
'@react-native/codegen@0.79.5(@babel/core@7.28.4)':
9839
9839
-
dependencies:
9840
9840
-
'@babel/core': 7.28.4
9841
9841
-
glob: 7.2.3
9842
9842
-
hermes-parser: 0.25.1
9843
9843
-
invariant: 2.2.4
9844
9844
-
nullthrows: 1.1.1
9845
9845
-
yargs: 17.7.2
9846
9846
-
9847
9847
-
'@react-native/codegen@0.79.6(@babel/core@7.26.0)':
9848
9848
-
dependencies:
9849
9849
-
'@babel/core': 7.26.0
9850
9850
-
'@babel/parser': 7.28.4
9851
9851
-
glob: 7.2.3
9852
9852
-
hermes-parser: 0.25.1
9853
9853
-
invariant: 2.2.4
9854
9854
-
nullthrows: 1.1.1
9855
9855
-
yargs: 17.7.2
9856
9856
-
9857
9857
-
'@react-native/codegen@0.79.6(@babel/core@7.28.4)':
10259
10259
+
'@react-native/codegen@0.81.4(@babel/core@7.28.4)':
9858
10260
dependencies:
9859
10261
'@babel/core': 7.28.4
9860
10262
'@babel/parser': 7.28.4
9861
10263
glob: 7.2.3
9862
9862
-
hermes-parser: 0.25.1
10264
10264
+
hermes-parser: 0.29.1
9863
10265
invariant: 2.2.4
9864
10266
nullthrows: 1.1.1
9865
10267
yargs: 17.7.2
9866
10268
9867
9867
-
'@react-native/community-cli-plugin@0.79.6':
10269
10269
+
'@react-native/community-cli-plugin@0.81.4':
9868
10270
dependencies:
9869
9869
-
'@react-native/dev-middleware': 0.79.6
9870
9870
-
chalk: 4.1.2
9871
9871
-
debug: 2.6.9
10271
10271
+
'@react-native/dev-middleware': 0.81.4
10272
10272
+
debug: 4.4.3
9872
10273
invariant: 2.2.4
9873
9873
-
metro: 0.82.4
9874
9874
-
metro-config: 0.82.4
9875
9875
-
metro-core: 0.82.4
10274
10274
+
metro: 0.83.1
10275
10275
+
metro-config: 0.83.1
10276
10276
+
metro-core: 0.83.1
9876
10277
semver: 7.7.2
9877
10278
transitivePeerDependencies:
9878
10279
- bufferutil
9879
10280
- supports-color
9880
10281
- utf-8-validate
9881
10282
9882
9882
-
'@react-native/debugger-frontend@0.79.5': {}
9883
9883
-
9884
9884
-
'@react-native/debugger-frontend@0.79.6': {}
9885
9885
-
9886
9886
-
'@react-native/dev-middleware@0.79.5':
9887
9887
-
dependencies:
9888
9888
-
'@isaacs/ttlcache': 1.4.1
9889
9889
-
'@react-native/debugger-frontend': 0.79.5
9890
9890
-
chrome-launcher: 0.15.2
9891
9891
-
chromium-edge-launcher: 0.2.0
9892
9892
-
connect: 3.7.0
9893
9893
-
debug: 2.6.9
9894
9894
-
invariant: 2.2.4
9895
9895
-
nullthrows: 1.1.1
9896
9896
-
open: 7.4.2
9897
9897
-
serve-static: 1.16.2
9898
9898
-
ws: 6.2.3
9899
9899
-
transitivePeerDependencies:
9900
9900
-
- bufferutil
9901
9901
-
- supports-color
9902
9902
-
- utf-8-validate
10283
10283
+
'@react-native/debugger-frontend@0.81.4': {}
9903
10284
9904
9904
-
'@react-native/dev-middleware@0.79.6':
10285
10285
+
'@react-native/dev-middleware@0.81.4':
9905
10286
dependencies:
9906
10287
'@isaacs/ttlcache': 1.4.1
9907
9907
-
'@react-native/debugger-frontend': 0.79.6
10288
10288
+
'@react-native/debugger-frontend': 0.81.4
9908
10289
chrome-launcher: 0.15.2
9909
10290
chromium-edge-launcher: 0.2.0
9910
10291
connect: 3.7.0
9911
9911
-
debug: 2.6.9
10292
10292
+
debug: 4.4.3
9912
10293
invariant: 2.2.4
9913
10294
nullthrows: 1.1.1
9914
10295
open: 7.4.2
···
9919
10300
- supports-color
9920
10301
- utf-8-validate
9921
10302
9922
9922
-
'@react-native/gradle-plugin@0.79.6': {}
10303
10303
+
'@react-native/gradle-plugin@0.81.4': {}
9923
10304
9924
9924
-
'@react-native/js-polyfills@0.79.6': {}
10305
10305
+
'@react-native/js-polyfills@0.81.4': {}
9925
10306
9926
10307
'@react-native/normalize-colors@0.74.88': {}
9927
10308
9928
9928
-
'@react-native/normalize-colors@0.79.2': {}
9929
9929
-
9930
9930
-
'@react-native/normalize-colors@0.79.5': {}
10309
10309
+
'@react-native/normalize-colors@0.81.4': {}
9931
10310
9932
9932
-
'@react-native/normalize-colors@0.79.6': {}
10311
10311
+
'@react-native/typescript-config@0.76.9': {}
9933
10312
9934
9934
-
'@react-native/typescript-config@0.76.5': {}
9935
9935
-
9936
9936
-
'@react-native/virtualized-lists@0.79.6(@types/react@19.0.14)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
10313
10313
+
'@react-native/virtualized-lists@0.81.4(@types/react@19.1.17)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
9937
10314
dependencies:
9938
10315
invariant: 2.2.4
9939
10316
nullthrows: 1.1.1
9940
9940
-
react: 19.0.0
9941
9941
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
10317
10317
+
react: 19.1.0
10318
10318
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
9942
10319
optionalDependencies:
9943
9943
-
'@types/react': 19.0.14
10320
10320
+
'@types/react': 19.1.17
9944
10321
9945
9945
-
'@react-native/virtualized-lists@0.79.6(@types/react@19.0.14)(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
10322
10322
+
'@react-native/virtualized-lists@0.81.4(@types/react@19.2.0)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)':
9946
10323
dependencies:
9947
10324
invariant: 2.2.4
9948
10325
nullthrows: 1.1.1
9949
9949
-
react: 19.0.0
9950
9950
-
react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
10326
10326
+
react: 19.2.0
10327
10327
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
9951
10328
optionalDependencies:
9952
9952
-
'@types/react': 19.0.14
10329
10329
+
'@types/react': 19.2.0
9953
10330
9954
9954
-
'@react-navigation/bottom-tabs@7.3.14(@react-navigation/native@7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
10331
10331
+
'@react-navigation/bottom-tabs@7.4.8(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
9955
10332
dependencies:
9956
9956
-
'@react-navigation/elements': 2.4.3(@react-navigation/native@7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
9957
9957
-
'@react-navigation/native': 7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10333
10333
+
'@react-navigation/elements': 2.6.5(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10334
10334
+
'@react-navigation/native': 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
9958
10335
color: 4.2.3
9959
9959
-
react: 19.0.0
9960
9960
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
9961
9961
-
react-native-safe-area-context: 5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
9962
9962
-
react-native-screens: 4.10.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10336
10336
+
react: 19.1.0
10337
10337
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
10338
10338
+
react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10339
10339
+
react-native-screens: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
9963
10340
transitivePeerDependencies:
9964
10341
- '@react-native-masked-view/masked-view'
9965
10342
9966
9966
-
'@react-navigation/core@7.10.0(react@19.0.0)':
10343
10343
+
'@react-navigation/bottom-tabs@7.4.8(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)':
9967
10344
dependencies:
9968
9968
-
'@react-navigation/routers': 7.4.0
10345
10345
+
'@react-navigation/elements': 2.6.5(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
10346
10346
+
'@react-navigation/native': 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
10347
10347
+
color: 4.2.3
10348
10348
+
react: 19.2.0
10349
10349
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
10350
10350
+
react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
10351
10351
+
react-native-screens: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
10352
10352
+
transitivePeerDependencies:
10353
10353
+
- '@react-native-masked-view/masked-view'
10354
10354
+
optional: true
10355
10355
+
10356
10356
+
'@react-navigation/core@7.12.4(react@19.1.0)':
10357
10357
+
dependencies:
10358
10358
+
'@react-navigation/routers': 7.5.1
9969
10359
escape-string-regexp: 4.0.0
9970
10360
nanoid: 3.3.11
9971
10361
query-string: 7.1.3
9972
9972
-
react: 19.0.0
9973
9973
-
react-is: 19.1.0
9974
9974
-
use-latest-callback: 0.2.3(react@19.0.0)
9975
9975
-
use-sync-external-store: 1.5.0(react@19.0.0)
10362
10362
+
react: 19.1.0
10363
10363
+
react-is: 19.2.0
10364
10364
+
use-latest-callback: 0.2.4(react@19.1.0)
10365
10365
+
use-sync-external-store: 1.6.0(react@19.1.0)
10366
10366
+
10367
10367
+
'@react-navigation/core@7.12.4(react@19.2.0)':
10368
10368
+
dependencies:
10369
10369
+
'@react-navigation/routers': 7.5.1
10370
10370
+
escape-string-regexp: 4.0.0
10371
10371
+
nanoid: 3.3.11
10372
10372
+
query-string: 7.1.3
10373
10373
+
react: 19.2.0
10374
10374
+
react-is: 19.2.0
10375
10375
+
use-latest-callback: 0.2.4(react@19.2.0)
10376
10376
+
use-sync-external-store: 1.6.0(react@19.2.0)
10377
10377
+
optional: true
10378
10378
+
10379
10379
+
'@react-navigation/elements@2.6.5(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
10380
10380
+
dependencies:
10381
10381
+
'@react-navigation/native': 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10382
10382
+
color: 4.2.3
10383
10383
+
react: 19.1.0
10384
10384
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
10385
10385
+
react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10386
10386
+
use-latest-callback: 0.2.4(react@19.1.0)
10387
10387
+
use-sync-external-store: 1.5.0(react@19.1.0)
9976
10388
9977
9977
-
'@react-navigation/elements@2.4.3(@react-navigation/native@7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
10389
10389
+
'@react-navigation/elements@2.6.5(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)':
9978
10390
dependencies:
9979
9979
-
'@react-navigation/native': 7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10391
10391
+
'@react-navigation/native': 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
9980
10392
color: 4.2.3
9981
9981
-
react: 19.0.0
9982
9982
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
9983
9983
-
react-native-safe-area-context: 5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10393
10393
+
react: 19.2.0
10394
10394
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
10395
10395
+
react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
10396
10396
+
use-latest-callback: 0.2.4(react@19.2.0)
10397
10397
+
use-sync-external-store: 1.5.0(react@19.2.0)
10398
10398
+
optional: true
10399
10399
+
10400
10400
+
'@react-navigation/native-stack@7.3.27(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
10401
10401
+
dependencies:
10402
10402
+
'@react-navigation/elements': 2.6.5(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10403
10403
+
'@react-navigation/native': 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10404
10404
+
react: 19.1.0
10405
10405
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
10406
10406
+
react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10407
10407
+
react-native-screens: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10408
10408
+
warn-once: 0.1.1
10409
10409
+
transitivePeerDependencies:
10410
10410
+
- '@react-native-masked-view/masked-view'
9984
10411
9985
9985
-
'@react-navigation/native-stack@7.3.14(@react-navigation/native@7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
10412
10412
+
'@react-navigation/native-stack@7.3.27(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)':
9986
10413
dependencies:
9987
9987
-
'@react-navigation/elements': 2.4.3(@react-navigation/native@7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
9988
9988
-
'@react-navigation/native': 7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
9989
9989
-
react: 19.0.0
9990
9990
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
9991
9991
-
react-native-safe-area-context: 5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
9992
9992
-
react-native-screens: 4.10.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10414
10414
+
'@react-navigation/elements': 2.6.5(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
10415
10415
+
'@react-navigation/native': 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
10416
10416
+
react: 19.2.0
10417
10417
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
10418
10418
+
react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
10419
10419
+
react-native-screens: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
9993
10420
warn-once: 0.1.1
9994
10421
transitivePeerDependencies:
9995
10422
- '@react-native-masked-view/masked-view'
10423
10423
+
optional: true
9996
10424
9997
9997
-
'@react-navigation/native@7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
10425
10425
+
'@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
9998
10426
dependencies:
9999
9999
-
'@react-navigation/core': 7.10.0(react@19.0.0)
10427
10427
+
'@react-navigation/core': 7.12.4(react@19.1.0)
10000
10428
escape-string-regexp: 4.0.0
10001
10429
fast-deep-equal: 3.1.3
10002
10430
nanoid: 3.3.11
10003
10003
-
react: 19.0.0
10004
10004
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
10005
10005
-
use-latest-callback: 0.2.3(react@19.0.0)
10431
10431
+
react: 19.1.0
10432
10432
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
10433
10433
+
use-latest-callback: 0.2.4(react@19.1.0)
10006
10434
10007
10007
-
'@react-navigation/routers@7.4.0':
10435
10435
+
'@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)':
10008
10436
dependencies:
10437
10437
+
'@react-navigation/core': 7.12.4(react@19.2.0)
10438
10438
+
escape-string-regexp: 4.0.0
10439
10439
+
fast-deep-equal: 3.1.3
10009
10440
nanoid: 3.3.11
10441
10441
+
react: 19.2.0
10442
10442
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
10443
10443
+
use-latest-callback: 0.2.4(react@19.2.0)
10444
10444
+
optional: true
10010
10445
10011
10011
-
'@rn-primitives/avatar@1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
10446
10446
+
'@react-navigation/routers@7.5.1':
10012
10447
dependencies:
10013
10013
-
'@rn-primitives/hooks': 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10014
10014
-
'@rn-primitives/slot': 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10015
10015
-
'@rn-primitives/types': 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10016
10016
-
react: 19.0.0
10448
10448
+
nanoid: 3.3.11
10449
10449
+
10450
10450
+
'@rn-primitives/avatar@1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
10451
10451
+
dependencies:
10452
10452
+
'@rn-primitives/hooks': 1.3.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10453
10453
+
'@rn-primitives/slot': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10454
10454
+
'@rn-primitives/types': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10455
10455
+
react: 19.1.0
10017
10456
optionalDependencies:
10018
10018
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
10019
10019
-
react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
10457
10457
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
10458
10458
+
react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10020
10459
10021
10021
-
'@rn-primitives/hooks@1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
10460
10460
+
'@rn-primitives/hooks@1.3.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
10022
10461
dependencies:
10023
10023
-
'@rn-primitives/types': 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10024
10024
-
react: 19.0.0
10462
10462
+
'@rn-primitives/types': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10463
10463
+
react: 19.1.0
10025
10464
optionalDependencies:
10026
10026
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
10027
10027
-
react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
10465
10465
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
10466
10466
+
react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10028
10467
10029
10029
-
'@rn-primitives/hover-card@1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
10468
10468
+
'@rn-primitives/hover-card@1.2.0(@rn-primitives/portal@1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)))(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
10030
10469
dependencies:
10031
10031
-
'@radix-ui/react-hover-card': 1.1.4(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
10032
10032
-
'@rn-primitives/hooks': 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10033
10033
-
'@rn-primitives/popover': 1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10034
10034
-
'@rn-primitives/portal': 1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0))
10035
10035
-
'@rn-primitives/slot': 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10036
10036
-
'@rn-primitives/types': 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10037
10037
-
react: 19.0.0
10470
10470
+
'@radix-ui/react-hover-card': 1.1.15(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10471
10471
+
'@rn-primitives/hooks': 1.3.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10472
10472
+
'@rn-primitives/popover': 1.2.0(@rn-primitives/portal@1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)))(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10473
10473
+
'@rn-primitives/portal': 1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0))
10474
10474
+
'@rn-primitives/slot': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10475
10475
+
'@rn-primitives/types': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10476
10476
+
react: 19.1.0
10038
10477
optionalDependencies:
10039
10039
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
10040
10040
-
react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
10478
10478
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
10479
10479
+
react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10041
10480
transitivePeerDependencies:
10042
10481
- '@types/react'
10043
10482
- '@types/react-dom'
10044
10483
- react-dom
10045
10484
10046
10046
-
'@rn-primitives/popover@1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
10485
10485
+
'@rn-primitives/popover@1.2.0(@rn-primitives/portal@1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)))(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
10047
10486
dependencies:
10048
10048
-
'@radix-ui/react-popover': 1.1.4(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
10049
10049
-
'@rn-primitives/hooks': 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10050
10050
-
'@rn-primitives/portal': 1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0))
10051
10051
-
'@rn-primitives/slot': 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10052
10052
-
'@rn-primitives/types': 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10053
10053
-
react: 19.0.0
10487
10487
+
'@radix-ui/react-popover': 1.1.15(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10488
10488
+
'@rn-primitives/hooks': 1.3.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10489
10489
+
'@rn-primitives/portal': 1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0))
10490
10490
+
'@rn-primitives/slot': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10491
10491
+
'@rn-primitives/types': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10492
10492
+
react: 19.1.0
10054
10493
optionalDependencies:
10055
10055
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
10056
10056
-
react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
10494
10494
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
10495
10495
+
react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10057
10496
transitivePeerDependencies:
10058
10497
- '@types/react'
10059
10498
- '@types/react-dom'
10060
10499
- react-dom
10061
10500
10062
10062
-
'@rn-primitives/portal@1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0))':
10501
10501
+
'@rn-primitives/portal@1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0))':
10063
10502
dependencies:
10064
10064
-
react: 19.0.0
10065
10065
-
zustand: 5.0.5(@types/react@19.0.14)(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0))
10503
10503
+
react: 19.1.0
10504
10504
+
zustand: 5.0.8(@types/react@19.1.17)(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0))
10066
10505
optionalDependencies:
10067
10067
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
10068
10068
-
react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
10506
10506
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
10507
10507
+
react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10069
10508
transitivePeerDependencies:
10070
10509
- '@types/react'
10071
10510
- immer
10072
10511
- use-sync-external-store
10073
10512
10074
10074
-
'@rn-primitives/progress@1.1.0(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
10513
10513
+
'@rn-primitives/progress@1.2.0(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
10075
10514
dependencies:
10076
10076
-
'@radix-ui/react-progress': 1.1.1(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
10077
10077
-
'@rn-primitives/slot': 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10078
10078
-
'@rn-primitives/types': 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10079
10079
-
react: 19.0.0
10515
10515
+
'@radix-ui/react-progress': 1.1.7(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10516
10516
+
'@rn-primitives/slot': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10517
10517
+
'@rn-primitives/types': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10518
10518
+
react: 19.1.0
10080
10519
optionalDependencies:
10081
10081
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
10082
10082
-
react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
10520
10520
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
10521
10521
+
react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10083
10522
transitivePeerDependencies:
10084
10523
- '@types/react'
10085
10524
- '@types/react-dom'
10086
10525
- react-dom
10087
10526
10088
10088
-
'@rn-primitives/slot@1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
10527
10527
+
'@rn-primitives/slot@1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
10089
10528
dependencies:
10090
10090
-
react: 19.0.0
10529
10529
+
react: 19.1.0
10091
10530
optionalDependencies:
10092
10092
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
10093
10093
-
react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
10531
10531
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
10532
10532
+
react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10094
10533
10095
10095
-
'@rn-primitives/tooltip@1.1.0(@rn-primitives/portal@1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)))(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
10534
10534
+
'@rn-primitives/tooltip@1.2.0(@rn-primitives/portal@1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)))(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
10096
10535
dependencies:
10097
10097
-
'@radix-ui/react-tooltip': 1.1.6(@types/react-dom@18.3.1)(@types/react@19.0.14)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
10098
10098
-
'@rn-primitives/hooks': 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10099
10099
-
'@rn-primitives/portal': 1.3.0(@types/react@19.0.14)(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0))
10100
10100
-
'@rn-primitives/slot': 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10101
10101
-
'@rn-primitives/types': 1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
10102
10102
-
react: 19.0.0
10536
10536
+
'@radix-ui/react-tooltip': 1.2.8(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10537
10537
+
'@rn-primitives/hooks': 1.3.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10538
10538
+
'@rn-primitives/portal': 1.3.0(@types/react@19.1.17)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0))
10539
10539
+
'@rn-primitives/slot': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10540
10540
+
'@rn-primitives/types': 1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10541
10541
+
react: 19.1.0
10103
10542
optionalDependencies:
10104
10104
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
10105
10105
-
react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
10543
10543
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
10544
10544
+
react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10106
10545
transitivePeerDependencies:
10107
10546
- '@types/react'
10108
10547
- '@types/react-dom'
10109
10548
- react-dom
10110
10549
10111
10111
-
'@rn-primitives/types@1.1.0(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)':
10550
10550
+
'@rn-primitives/types@1.2.0(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
10112
10551
dependencies:
10113
10113
-
react: 19.0.0
10552
10552
+
react: 19.1.0
10114
10553
optionalDependencies:
10115
10115
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
10116
10116
-
react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
10554
10554
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
10555
10555
+
react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
10117
10556
10118
10557
'@rtsao/scc@1.1.0': {}
10119
10558
···
10141
10580
10142
10581
'@ts-morph/common@0.17.0':
10143
10582
dependencies:
10144
10144
-
fast-glob: 3.3.2
10583
10583
+
fast-glob: 3.3.3
10145
10584
minimatch: 5.1.6
10146
10585
mkdirp: 1.0.4
10147
10586
path-browserify: 1.0.1
···
10150
10589
dependencies:
10151
10590
minimatch: 9.0.5
10152
10591
path-browserify: 1.0.1
10153
10153
-
tinyglobby: 0.2.10
10592
10592
+
tinyglobby: 0.2.15
10154
10593
10155
10594
'@tsconfig/node10@1.0.11': {}
10156
10595
···
10189
10628
'@types/eslint-scope@3.7.7':
10190
10629
dependencies:
10191
10630
'@types/eslint': 9.6.1
10192
10192
-
'@types/estree': 1.0.6
10631
10631
+
'@types/estree': 1.0.8
10193
10632
10194
10633
'@types/eslint@9.6.1':
10195
10634
dependencies:
10196
10196
-
'@types/estree': 1.0.6
10635
10635
+
'@types/estree': 1.0.8
10197
10636
'@types/json-schema': 7.0.15
10198
10637
10199
10199
-
'@types/estree@1.0.6': {}
10638
10638
+
'@types/estree@1.0.8': {}
10200
10639
10201
10640
'@types/graceful-fs@4.1.9':
10202
10641
dependencies:
10203
10203
-
'@types/node': 22.10.2
10642
10642
+
'@types/node': 22.18.8
10204
10643
10205
10644
'@types/hammerjs@2.0.46': {}
10206
10645
···
10216
10655
10217
10656
'@types/jsdom@20.0.1':
10218
10657
dependencies:
10219
10219
-
'@types/node': 22.10.2
10658
10658
+
'@types/node': 22.18.8
10220
10659
'@types/tough-cookie': 4.0.5
10221
10660
parse5: 7.3.0
10222
10661
···
10224
10663
10225
10664
'@types/json5@0.0.29': {}
10226
10665
10227
10227
-
'@types/node@20.17.10':
10666
10666
+
'@types/node@20.19.19':
10228
10667
dependencies:
10229
10229
-
undici-types: 6.19.8
10668
10668
+
undici-types: 6.21.0
10230
10669
10231
10231
-
'@types/node@22.10.2':
10670
10670
+
'@types/node@22.18.8':
10232
10671
dependencies:
10233
10233
-
undici-types: 6.20.0
10672
10672
+
undici-types: 6.21.0
10234
10673
10235
10235
-
'@types/react-dom@18.3.1':
10674
10674
+
'@types/react-dom@19.1.11(@types/react@19.1.17)':
10236
10675
dependencies:
10237
10237
-
'@types/react': 19.0.14
10676
10676
+
'@types/react': 19.1.17
10238
10677
10239
10239
-
'@types/react@19.0.14':
10678
10678
+
'@types/react-dom@19.2.0(@types/react@19.2.0)':
10679
10679
+
dependencies:
10680
10680
+
'@types/react': 19.2.0
10681
10681
+
optional: true
10682
10682
+
10683
10683
+
'@types/react@19.1.17':
10240
10684
dependencies:
10241
10685
csstype: 3.1.3
10242
10686
10687
10687
+
'@types/react@19.2.0':
10688
10688
+
dependencies:
10689
10689
+
csstype: 3.1.3
10690
10690
+
optional: true
10691
10691
+
10243
10692
'@types/stack-utils@2.0.3': {}
10244
10693
10245
10694
'@types/tough-cookie@4.0.5': {}
···
10250
10699
dependencies:
10251
10700
'@types/yargs-parser': 21.0.3
10252
10701
10253
10253
-
'@typescript-eslint/eslint-plugin@8.19.0(@typescript-eslint/parser@8.19.0(eslint@8.57.1)(typescript@5.8.3))(eslint@8.57.1)(typescript@5.8.3)':
10702
10702
+
'@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)':
10254
10703
dependencies:
10255
10704
'@eslint-community/regexpp': 4.12.1
10256
10256
-
'@typescript-eslint/parser': 8.19.0(eslint@8.57.1)(typescript@5.8.3)
10257
10257
-
'@typescript-eslint/scope-manager': 8.19.0
10258
10258
-
'@typescript-eslint/type-utils': 8.19.0(eslint@8.57.1)(typescript@5.8.3)
10259
10259
-
'@typescript-eslint/utils': 8.19.0(eslint@8.57.1)(typescript@5.8.3)
10260
10260
-
'@typescript-eslint/visitor-keys': 8.19.0
10705
10705
+
'@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.9.3)
10706
10706
+
'@typescript-eslint/scope-manager': 7.18.0
10707
10707
+
'@typescript-eslint/type-utils': 7.18.0(eslint@8.57.1)(typescript@5.9.3)
10708
10708
+
'@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.9.3)
10709
10709
+
'@typescript-eslint/visitor-keys': 7.18.0
10261
10710
eslint: 8.57.1
10262
10711
graphemer: 1.4.0
10263
10712
ignore: 5.3.2
10264
10713
natural-compare: 1.4.0
10265
10265
-
ts-api-utils: 1.4.3(typescript@5.8.3)
10266
10266
-
typescript: 5.8.3
10714
10714
+
ts-api-utils: 1.4.3(typescript@5.9.3)
10715
10715
+
optionalDependencies:
10716
10716
+
typescript: 5.9.3
10267
10717
transitivePeerDependencies:
10268
10718
- supports-color
10269
10719
10270
10270
-
'@typescript-eslint/parser@8.19.0(eslint@8.57.1)(typescript@5.8.3)':
10720
10720
+
'@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3)':
10271
10721
dependencies:
10272
10272
-
'@typescript-eslint/scope-manager': 8.19.0
10273
10273
-
'@typescript-eslint/types': 8.19.0
10274
10274
-
'@typescript-eslint/typescript-estree': 8.19.0(typescript@5.8.3)
10275
10275
-
'@typescript-eslint/visitor-keys': 8.19.0
10276
10276
-
debug: 4.4.0
10722
10722
+
'@typescript-eslint/scope-manager': 7.18.0
10723
10723
+
'@typescript-eslint/types': 7.18.0
10724
10724
+
'@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.3)
10725
10725
+
'@typescript-eslint/visitor-keys': 7.18.0
10726
10726
+
debug: 4.4.3
10277
10727
eslint: 8.57.1
10278
10278
-
typescript: 5.8.3
10728
10728
+
optionalDependencies:
10729
10729
+
typescript: 5.9.3
10279
10730
transitivePeerDependencies:
10280
10731
- supports-color
10281
10732
10282
10282
-
'@typescript-eslint/project-service@8.33.1(typescript@5.8.3)':
10733
10733
+
'@typescript-eslint/project-service@8.45.0(typescript@5.9.3)':
10283
10734
dependencies:
10284
10284
-
'@typescript-eslint/tsconfig-utils': 8.33.1(typescript@5.8.3)
10285
10285
-
'@typescript-eslint/types': 8.33.1
10286
10286
-
debug: 4.4.0
10287
10287
-
typescript: 5.8.3
10735
10735
+
'@typescript-eslint/tsconfig-utils': 8.45.0(typescript@5.9.3)
10736
10736
+
'@typescript-eslint/types': 8.45.0
10737
10737
+
debug: 4.4.3
10738
10738
+
typescript: 5.9.3
10288
10739
transitivePeerDependencies:
10289
10740
- supports-color
10290
10741
10291
10291
-
'@typescript-eslint/scope-manager@8.19.0':
10742
10742
+
'@typescript-eslint/scope-manager@7.18.0':
10292
10743
dependencies:
10293
10293
-
'@typescript-eslint/types': 8.19.0
10294
10294
-
'@typescript-eslint/visitor-keys': 8.19.0
10744
10744
+
'@typescript-eslint/types': 7.18.0
10745
10745
+
'@typescript-eslint/visitor-keys': 7.18.0
10295
10746
10296
10296
-
'@typescript-eslint/scope-manager@8.33.1':
10747
10747
+
'@typescript-eslint/scope-manager@8.45.0':
10297
10748
dependencies:
10298
10298
-
'@typescript-eslint/types': 8.33.1
10299
10299
-
'@typescript-eslint/visitor-keys': 8.33.1
10749
10749
+
'@typescript-eslint/types': 8.45.0
10750
10750
+
'@typescript-eslint/visitor-keys': 8.45.0
10300
10751
10301
10301
-
'@typescript-eslint/tsconfig-utils@8.33.1(typescript@5.8.3)':
10752
10752
+
'@typescript-eslint/tsconfig-utils@8.45.0(typescript@5.9.3)':
10302
10753
dependencies:
10303
10303
-
typescript: 5.8.3
10754
10754
+
typescript: 5.9.3
10304
10755
10305
10305
-
'@typescript-eslint/type-utils@8.19.0(eslint@8.57.1)(typescript@5.8.3)':
10756
10756
+
'@typescript-eslint/type-utils@7.18.0(eslint@8.57.1)(typescript@5.9.3)':
10306
10757
dependencies:
10307
10307
-
'@typescript-eslint/typescript-estree': 8.19.0(typescript@5.8.3)
10308
10308
-
'@typescript-eslint/utils': 8.19.0(eslint@8.57.1)(typescript@5.8.3)
10309
10309
-
debug: 4.4.0
10758
10758
+
'@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.3)
10759
10759
+
'@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.9.3)
10760
10760
+
debug: 4.4.3
10310
10761
eslint: 8.57.1
10311
10311
-
ts-api-utils: 1.4.3(typescript@5.8.3)
10312
10312
-
typescript: 5.8.3
10762
10762
+
ts-api-utils: 1.4.3(typescript@5.9.3)
10763
10763
+
optionalDependencies:
10764
10764
+
typescript: 5.9.3
10313
10765
transitivePeerDependencies:
10314
10766
- supports-color
10315
10767
10316
10316
-
'@typescript-eslint/types@8.19.0': {}
10768
10768
+
'@typescript-eslint/types@7.18.0': {}
10317
10769
10318
10318
-
'@typescript-eslint/types@8.33.1': {}
10770
10770
+
'@typescript-eslint/types@8.45.0': {}
10319
10771
10320
10320
-
'@typescript-eslint/typescript-estree@8.19.0(typescript@5.8.3)':
10772
10772
+
'@typescript-eslint/typescript-estree@7.18.0(typescript@5.9.3)':
10321
10773
dependencies:
10322
10322
-
'@typescript-eslint/types': 8.19.0
10323
10323
-
'@typescript-eslint/visitor-keys': 8.19.0
10324
10324
-
debug: 4.4.0
10325
10325
-
fast-glob: 3.3.2
10774
10774
+
'@typescript-eslint/types': 7.18.0
10775
10775
+
'@typescript-eslint/visitor-keys': 7.18.0
10776
10776
+
debug: 4.4.3
10777
10777
+
globby: 11.1.0
10326
10778
is-glob: 4.0.3
10327
10779
minimatch: 9.0.5
10328
10780
semver: 7.7.2
10329
10329
-
ts-api-utils: 1.4.3(typescript@5.8.3)
10330
10330
-
typescript: 5.8.3
10781
10781
+
ts-api-utils: 1.4.3(typescript@5.9.3)
10782
10782
+
optionalDependencies:
10783
10783
+
typescript: 5.9.3
10331
10784
transitivePeerDependencies:
10332
10785
- supports-color
10333
10786
10334
10334
-
'@typescript-eslint/typescript-estree@8.33.1(typescript@5.8.3)':
10787
10787
+
'@typescript-eslint/typescript-estree@8.45.0(typescript@5.9.3)':
10335
10788
dependencies:
10336
10336
-
'@typescript-eslint/project-service': 8.33.1(typescript@5.8.3)
10337
10337
-
'@typescript-eslint/tsconfig-utils': 8.33.1(typescript@5.8.3)
10338
10338
-
'@typescript-eslint/types': 8.33.1
10339
10339
-
'@typescript-eslint/visitor-keys': 8.33.1
10340
10340
-
debug: 4.4.0
10341
10341
-
fast-glob: 3.3.2
10789
10789
+
'@typescript-eslint/project-service': 8.45.0(typescript@5.9.3)
10790
10790
+
'@typescript-eslint/tsconfig-utils': 8.45.0(typescript@5.9.3)
10791
10791
+
'@typescript-eslint/types': 8.45.0
10792
10792
+
'@typescript-eslint/visitor-keys': 8.45.0
10793
10793
+
debug: 4.4.3
10794
10794
+
fast-glob: 3.3.3
10342
10795
is-glob: 4.0.3
10343
10796
minimatch: 9.0.5
10344
10797
semver: 7.7.2
10345
10345
-
ts-api-utils: 2.1.0(typescript@5.8.3)
10346
10346
-
typescript: 5.8.3
10798
10798
+
ts-api-utils: 2.1.0(typescript@5.9.3)
10799
10799
+
typescript: 5.9.3
10347
10800
transitivePeerDependencies:
10348
10801
- supports-color
10349
10802
10350
10350
-
'@typescript-eslint/utils@8.19.0(eslint@8.57.1)(typescript@5.8.3)':
10803
10803
+
'@typescript-eslint/utils@7.18.0(eslint@8.57.1)(typescript@5.9.3)':
10351
10804
dependencies:
10352
10352
-
'@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
10353
10353
-
'@typescript-eslint/scope-manager': 8.19.0
10354
10354
-
'@typescript-eslint/types': 8.19.0
10355
10355
-
'@typescript-eslint/typescript-estree': 8.19.0(typescript@5.8.3)
10805
10805
+
'@eslint-community/eslint-utils': 4.9.0(eslint@8.57.1)
10806
10806
+
'@typescript-eslint/scope-manager': 7.18.0
10807
10807
+
'@typescript-eslint/types': 7.18.0
10808
10808
+
'@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.3)
10356
10809
eslint: 8.57.1
10357
10357
-
typescript: 5.8.3
10358
10810
transitivePeerDependencies:
10359
10811
- supports-color
10812
10812
+
- typescript
10360
10813
10361
10361
-
'@typescript-eslint/utils@8.33.1(eslint@8.57.1)(typescript@5.8.3)':
10814
10814
+
'@typescript-eslint/utils@8.45.0(eslint@8.57.1)(typescript@5.9.3)':
10362
10815
dependencies:
10363
10363
-
'@eslint-community/eslint-utils': 4.7.0(eslint@8.57.1)
10364
10364
-
'@typescript-eslint/scope-manager': 8.33.1
10365
10365
-
'@typescript-eslint/types': 8.33.1
10366
10366
-
'@typescript-eslint/typescript-estree': 8.33.1(typescript@5.8.3)
10816
10816
+
'@eslint-community/eslint-utils': 4.9.0(eslint@8.57.1)
10817
10817
+
'@typescript-eslint/scope-manager': 8.45.0
10818
10818
+
'@typescript-eslint/types': 8.45.0
10819
10819
+
'@typescript-eslint/typescript-estree': 8.45.0(typescript@5.9.3)
10367
10820
eslint: 8.57.1
10368
10368
-
typescript: 5.8.3
10821
10821
+
typescript: 5.9.3
10369
10822
transitivePeerDependencies:
10370
10823
- supports-color
10371
10824
10372
10372
-
'@typescript-eslint/visitor-keys@8.19.0':
10825
10825
+
'@typescript-eslint/visitor-keys@7.18.0':
10373
10826
dependencies:
10374
10374
-
'@typescript-eslint/types': 8.19.0
10375
10375
-
eslint-visitor-keys: 4.2.0
10827
10827
+
'@typescript-eslint/types': 7.18.0
10828
10828
+
eslint-visitor-keys: 3.4.3
10376
10829
10377
10377
-
'@typescript-eslint/visitor-keys@8.33.1':
10830
10830
+
'@typescript-eslint/visitor-keys@8.45.0':
10378
10831
dependencies:
10379
10379
-
'@typescript-eslint/types': 8.33.1
10380
10380
-
eslint-visitor-keys: 4.2.0
10381
10381
-
10382
10382
-
'@ungap/structured-clone@1.2.1': {}
10832
10832
+
'@typescript-eslint/types': 8.45.0
10833
10833
+
eslint-visitor-keys: 4.2.1
10383
10834
10384
10835
'@ungap/structured-clone@1.3.0': {}
10385
10836
···
10551
11002
10552
11003
acorn-globals@7.0.1:
10553
11004
dependencies:
10554
10554
-
acorn: 8.14.0
11005
11005
+
acorn: 8.15.0
10555
11006
acorn-walk: 8.3.4
10556
11007
10557
10557
-
acorn-jsx@5.3.2(acorn@8.14.0):
11008
11008
+
acorn-jsx@5.3.2(acorn@8.15.0):
10558
11009
dependencies:
10559
10559
-
acorn: 8.14.0
11010
11010
+
acorn: 8.15.0
10560
11011
10561
11012
acorn-loose@8.5.2:
10562
11013
dependencies:
···
10572
11023
10573
11024
agent-base@6.0.2:
10574
11025
dependencies:
10575
10575
-
debug: 4.4.0
11026
11026
+
debug: 4.4.3
10576
11027
transitivePeerDependencies:
10577
11028
- supports-color
10578
11029
···
10623
11074
10624
11075
ansi-regex@5.0.1: {}
10625
11076
10626
10626
-
ansi-regex@6.1.0: {}
11077
11077
+
ansi-regex@6.2.2: {}
10627
11078
10628
11079
ansi-styles@2.2.1: {}
10629
11080
···
10637
11088
10638
11089
ansi-styles@5.2.0: {}
10639
11090
10640
10640
-
ansi-styles@6.2.1: {}
11091
11091
+
ansi-styles@6.2.3: {}
10641
11092
10642
11093
any-promise@1.3.0: {}
10643
11094
···
10662
11113
dependencies:
10663
11114
tslib: 2.8.1
10664
11115
11116
11116
+
aria-hidden@1.2.6:
11117
11117
+
dependencies:
11118
11118
+
tslib: 2.8.1
11119
11119
+
10665
11120
array-buffer-byte-length@1.0.2:
10666
11121
dependencies:
10667
10667
-
call-bound: 1.0.3
11122
11122
+
call-bound: 1.0.4
10668
11123
is-array-buffer: 3.0.5
10669
11124
10670
11125
array-flatten@1.1.1: {}
10671
11126
10672
10672
-
array-includes@3.1.8:
11127
11127
+
array-includes@3.1.9:
10673
11128
dependencies:
10674
11129
call-bind: 1.0.8
11130
11130
+
call-bound: 1.0.4
10675
11131
define-properties: 1.2.1
10676
10676
-
es-abstract: 1.23.8
10677
10677
-
es-object-atoms: 1.0.0
10678
10678
-
get-intrinsic: 1.2.6
11132
11132
+
es-abstract: 1.24.0
11133
11133
+
es-object-atoms: 1.1.1
11134
11134
+
get-intrinsic: 1.3.0
10679
11135
is-string: 1.1.1
11136
11136
+
math-intrinsics: 1.1.0
10680
11137
10681
11138
array-timsort@1.0.3: {}
11139
11139
+
11140
11140
+
array-union@2.1.0: {}
10682
11141
10683
11142
array.prototype.findlast@1.2.5:
10684
11143
dependencies:
10685
11144
call-bind: 1.0.8
10686
11145
define-properties: 1.2.1
10687
10687
-
es-abstract: 1.23.8
11146
11146
+
es-abstract: 1.24.0
10688
11147
es-errors: 1.3.0
10689
10689
-
es-object-atoms: 1.0.0
10690
10690
-
es-shim-unscopables: 1.0.2
11148
11148
+
es-object-atoms: 1.1.1
11149
11149
+
es-shim-unscopables: 1.1.0
10691
11150
10692
10692
-
array.prototype.findlastindex@1.2.5:
11151
11151
+
array.prototype.findlastindex@1.2.6:
10693
11152
dependencies:
10694
11153
call-bind: 1.0.8
11154
11154
+
call-bound: 1.0.4
10695
11155
define-properties: 1.2.1
10696
10696
-
es-abstract: 1.23.8
11156
11156
+
es-abstract: 1.24.0
10697
11157
es-errors: 1.3.0
10698
10698
-
es-object-atoms: 1.0.0
10699
10699
-
es-shim-unscopables: 1.0.2
11158
11158
+
es-object-atoms: 1.1.1
11159
11159
+
es-shim-unscopables: 1.1.0
10700
11160
10701
11161
array.prototype.flat@1.3.3:
10702
11162
dependencies:
10703
11163
call-bind: 1.0.8
10704
11164
define-properties: 1.2.1
10705
10705
-
es-abstract: 1.23.8
10706
10706
-
es-shim-unscopables: 1.0.2
11165
11165
+
es-abstract: 1.24.0
11166
11166
+
es-shim-unscopables: 1.1.0
10707
11167
10708
11168
array.prototype.flatmap@1.3.3:
10709
11169
dependencies:
10710
11170
call-bind: 1.0.8
10711
11171
define-properties: 1.2.1
10712
10712
-
es-abstract: 1.23.8
10713
10713
-
es-shim-unscopables: 1.0.2
11172
11172
+
es-abstract: 1.24.0
11173
11173
+
es-shim-unscopables: 1.1.0
10714
11174
10715
11175
array.prototype.tosorted@1.1.4:
10716
11176
dependencies:
10717
11177
call-bind: 1.0.8
10718
11178
define-properties: 1.2.1
10719
10719
-
es-abstract: 1.23.8
11179
11179
+
es-abstract: 1.24.0
10720
11180
es-errors: 1.3.0
10721
10721
-
es-shim-unscopables: 1.0.2
11181
11181
+
es-shim-unscopables: 1.1.0
10722
11182
10723
11183
arraybuffer.prototype.slice@1.0.4:
10724
11184
dependencies:
10725
11185
array-buffer-byte-length: 1.0.2
10726
11186
call-bind: 1.0.8
10727
11187
define-properties: 1.2.1
10728
10728
-
es-abstract: 1.23.8
11188
11188
+
es-abstract: 1.24.0
10729
11189
es-errors: 1.3.0
10730
10730
-
get-intrinsic: 1.2.6
11190
11190
+
get-intrinsic: 1.3.0
10731
11191
is-array-buffer: 3.0.5
10732
11192
10733
11193
asap@2.0.6: {}
···
10737
11197
safer-buffer: 2.1.2
10738
11198
10739
11199
assert-plus@1.0.0: {}
11200
11200
+
11201
11201
+
async-function@1.0.0: {}
10740
11202
10741
11203
async-limiter@1.0.1: {}
10742
11204
···
10754
11216
10755
11217
aws4@1.13.2: {}
10756
11218
10757
10757
-
babel-jest@29.7.0(@babel/core@7.26.0):
10758
10758
-
dependencies:
10759
10759
-
'@babel/core': 7.26.0
10760
10760
-
'@jest/transform': 29.7.0
10761
10761
-
'@types/babel__core': 7.20.5
10762
10762
-
babel-plugin-istanbul: 6.1.1
10763
10763
-
babel-preset-jest: 29.6.3(@babel/core@7.26.0)
10764
10764
-
chalk: 4.1.2
10765
10765
-
graceful-fs: 4.2.11
10766
10766
-
slash: 3.0.0
10767
10767
-
transitivePeerDependencies:
10768
10768
-
- supports-color
10769
10769
-
10770
11219
babel-jest@29.7.0(@babel/core@7.28.4):
10771
11220
dependencies:
10772
11221
'@babel/core': 7.28.4
···
10832
11281
reselect: 4.1.8
10833
11282
resolve: 1.22.10
10834
11283
10835
10835
-
babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.0):
10836
10836
-
dependencies:
10837
10837
-
'@babel/compat-data': 7.26.3
10838
10838
-
'@babel/core': 7.26.0
10839
10839
-
'@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
10840
10840
-
semver: 6.3.1
10841
10841
-
transitivePeerDependencies:
10842
10842
-
- supports-color
10843
10843
-
10844
11284
babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.28.4):
10845
11285
dependencies:
10846
10846
-
'@babel/compat-data': 7.26.3
11286
11286
+
'@babel/compat-data': 7.28.4
10847
11287
'@babel/core': 7.28.4
10848
11288
'@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.28.4)
10849
11289
semver: 6.3.1
10850
11290
transitivePeerDependencies:
10851
11291
- supports-color
10852
11292
10853
10853
-
babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0):
10854
10854
-
dependencies:
10855
10855
-
'@babel/core': 7.26.0
10856
10856
-
'@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
10857
10857
-
core-js-compat: 3.39.0
10858
10858
-
transitivePeerDependencies:
10859
10859
-
- supports-color
10860
10860
-
10861
11293
babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.28.4):
10862
11294
dependencies:
10863
11295
'@babel/core': 7.28.4
···
10866
11298
transitivePeerDependencies:
10867
11299
- supports-color
10868
11300
10869
10869
-
babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.0):
10870
10870
-
dependencies:
10871
10871
-
'@babel/core': 7.26.0
10872
10872
-
'@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
10873
10873
-
transitivePeerDependencies:
10874
10874
-
- supports-color
10875
10875
-
10876
11301
babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.28.4):
10877
11302
dependencies:
10878
11303
'@babel/core': 7.28.4
···
10882
11307
10883
11308
babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206:
10884
11309
dependencies:
10885
10885
-
'@babel/types': 7.26.3
10886
10886
-
10887
10887
-
babel-plugin-react-native-web@0.19.13: {}
11310
11310
+
'@babel/types': 7.28.4
10888
11311
10889
10889
-
babel-plugin-syntax-hermes-parser@0.25.1:
11312
11312
+
babel-plugin-react-compiler@19.1.0-rc.3:
10890
11313
dependencies:
10891
10891
-
hermes-parser: 0.25.1
11314
11314
+
'@babel/types': 7.28.4
11315
11315
+
11316
11316
+
babel-plugin-react-native-web@0.21.1: {}
10892
11317
10893
10893
-
babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.26.0):
11318
11318
+
babel-plugin-syntax-hermes-parser@0.29.1:
10894
11319
dependencies:
10895
10895
-
'@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.0)
10896
10896
-
transitivePeerDependencies:
10897
10897
-
- '@babel/core'
11320
11320
+
hermes-parser: 0.29.1
10898
11321
10899
11322
babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.28.4):
10900
11323
dependencies:
···
10902
11325
transitivePeerDependencies:
10903
11326
- '@babel/core'
10904
11327
10905
10905
-
babel-preset-current-node-syntax@1.2.0(@babel/core@7.26.0):
10906
10906
-
dependencies:
10907
10907
-
'@babel/core': 7.26.0
10908
10908
-
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.0)
10909
10909
-
'@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.0)
10910
10910
-
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.0)
10911
10911
-
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.0)
10912
10912
-
'@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
10913
10913
-
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
10914
10914
-
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.0)
10915
10915
-
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.0)
10916
10916
-
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
10917
10917
-
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.0)
10918
10918
-
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0)
10919
10919
-
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.0)
10920
10920
-
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
10921
10921
-
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.0)
10922
10922
-
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.0)
10923
10923
-
10924
11328
babel-preset-current-node-syntax@1.2.0(@babel/core@7.28.4):
10925
11329
dependencies:
10926
11330
'@babel/core': 7.28.4
···
10940
11344
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.4)
10941
11345
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.4)
10942
11346
10943
10943
-
babel-preset-expo@13.2.3(@babel/core@7.26.0)(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206):
11347
11347
+
babel-preset-expo@54.0.3(@babel/core@7.28.4)(@babel/runtime@7.28.4)(expo@54.0.12)(react-refresh@0.14.2):
10944
11348
dependencies:
10945
10945
-
'@babel/helper-module-imports': 7.25.9
10946
10946
-
'@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
10947
10947
-
'@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.26.0)
10948
10948
-
'@babel/plugin-syntax-export-default-from': 7.25.9(@babel/core@7.26.0)
10949
10949
-
'@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.26.0)
10950
10950
-
'@babel/plugin-transform-flow-strip-types': 7.25.9(@babel/core@7.26.0)
10951
10951
-
'@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0)
10952
10952
-
'@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0)
10953
10953
-
'@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
10954
10954
-
'@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0)
10955
10955
-
'@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0)
10956
10956
-
'@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0)
10957
10957
-
'@babel/preset-react': 7.26.3(@babel/core@7.26.0)
10958
10958
-
'@babel/preset-typescript': 7.26.0(@babel/core@7.26.0)
10959
10959
-
'@react-native/babel-preset': 0.79.5(@babel/core@7.26.0)
10960
10960
-
babel-plugin-react-native-web: 0.19.13
10961
10961
-
babel-plugin-syntax-hermes-parser: 0.25.1
10962
10962
-
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.0)
10963
10963
-
debug: 4.4.0
10964
10964
-
react-refresh: 0.14.2
10965
10965
-
resolve-from: 5.0.0
10966
10966
-
optionalDependencies:
10967
10967
-
babel-plugin-react-compiler: 19.0.0-beta-37ed2a7-20241206
10968
10968
-
transitivePeerDependencies:
10969
10969
-
- '@babel/core'
10970
10970
-
- supports-color
10971
10971
-
10972
10972
-
babel-preset-expo@13.2.3(@babel/core@7.28.4):
10973
10973
-
dependencies:
10974
10974
-
'@babel/helper-module-imports': 7.25.9
11349
11349
+
'@babel/helper-module-imports': 7.27.1
10975
11350
'@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.28.4)
10976
11351
'@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.28.4)
10977
11352
'@babel/plugin-syntax-export-default-from': 7.25.9(@babel/core@7.28.4)
11353
11353
+
'@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.28.4)
10978
11354
'@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.4)
10979
11355
'@babel/plugin-transform-flow-strip-types': 7.25.9(@babel/core@7.28.4)
10980
11356
'@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.28.4)
···
10985
11361
'@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.28.4)
10986
11362
'@babel/preset-react': 7.26.3(@babel/core@7.28.4)
10987
11363
'@babel/preset-typescript': 7.26.0(@babel/core@7.28.4)
10988
10988
-
'@react-native/babel-preset': 0.79.5(@babel/core@7.28.4)
10989
10989
-
babel-plugin-react-native-web: 0.19.13
10990
10990
-
babel-plugin-syntax-hermes-parser: 0.25.1
11364
11364
+
'@react-native/babel-preset': 0.81.4(@babel/core@7.28.4)
11365
11365
+
babel-plugin-react-compiler: 19.1.0-rc.3
11366
11366
+
babel-plugin-react-native-web: 0.21.1
11367
11367
+
babel-plugin-syntax-hermes-parser: 0.29.1
10991
11368
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.28.4)
10992
10992
-
debug: 4.4.0
11369
11369
+
debug: 4.4.3
10993
11370
react-refresh: 0.14.2
10994
11371
resolve-from: 5.0.0
11372
11372
+
optionalDependencies:
11373
11373
+
'@babel/runtime': 7.28.4
11374
11374
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
10995
11375
transitivePeerDependencies:
10996
11376
- '@babel/core'
10997
11377
- supports-color
10998
11378
10999
10999
-
babel-preset-jest@29.6.3(@babel/core@7.26.0):
11000
11000
-
dependencies:
11001
11001
-
'@babel/core': 7.26.0
11002
11002
-
babel-plugin-jest-hoist: 29.6.3
11003
11003
-
babel-preset-current-node-syntax: 1.2.0(@babel/core@7.26.0)
11004
11004
-
11005
11379
babel-preset-jest@29.6.3(@babel/core@7.28.4):
11006
11380
dependencies:
11007
11381
'@babel/core': 7.28.4
···
11017
11391
balanced-match@1.0.2: {}
11018
11392
11019
11393
base64-js@1.5.1: {}
11394
11394
+
11395
11395
+
baseline-browser-mapping@2.8.12: {}
11020
11396
11021
11397
bcrypt-pbkdf@1.0.2:
11022
11398
dependencies:
···
11090
11466
dependencies:
11091
11467
fill-range: 7.1.1
11092
11468
11093
11093
-
browserslist@4.24.3:
11469
11469
+
browserslist@4.26.3:
11094
11470
dependencies:
11095
11095
-
caniuse-lite: 1.0.30001690
11096
11096
-
electron-to-chromium: 1.5.76
11097
11097
-
node-releases: 2.0.19
11098
11098
-
update-browserslist-db: 1.1.1(browserslist@4.24.3)
11471
11471
+
baseline-browser-mapping: 2.8.12
11472
11472
+
caniuse-lite: 1.0.30001747
11473
11473
+
electron-to-chromium: 1.5.230
11474
11474
+
node-releases: 2.0.23
11475
11475
+
update-browserslist-db: 1.1.3(browserslist@4.26.3)
11099
11476
11100
11477
bser@2.1.1:
11101
11478
dependencies:
···
11120
11497
es-errors: 1.3.0
11121
11498
function-bind: 1.1.2
11122
11499
11500
11500
+
call-bind-apply-helpers@1.0.2:
11501
11501
+
dependencies:
11502
11502
+
es-errors: 1.3.0
11503
11503
+
function-bind: 1.1.2
11504
11504
+
11123
11505
call-bind@1.0.8:
11124
11506
dependencies:
11125
11507
call-bind-apply-helpers: 1.0.1
···
11132
11514
call-bind-apply-helpers: 1.0.1
11133
11515
get-intrinsic: 1.2.6
11134
11516
11517
11517
+
call-bound@1.0.4:
11518
11518
+
dependencies:
11519
11519
+
call-bind-apply-helpers: 1.0.2
11520
11520
+
get-intrinsic: 1.3.0
11521
11521
+
11135
11522
caller-callsite@2.0.0:
11136
11523
dependencies:
11137
11524
callsites: 2.0.0
···
11150
11537
11151
11538
camelcase@6.3.0: {}
11152
11539
11153
11153
-
caniuse-lite@1.0.30001690: {}
11540
11540
+
caniuse-lite@1.0.30001747: {}
11154
11541
11155
11542
caseless@0.12.0: {}
11156
11543
···
11212
11599
optionalDependencies:
11213
11600
fsevents: 2.3.3
11214
11601
11215
11215
-
chokidar@4.0.1:
11602
11602
+
chokidar@4.0.3:
11216
11603
dependencies:
11217
11604
readdirp: 4.0.2
11218
11605
···
11220
11607
11221
11608
chrome-launcher@0.15.2:
11222
11609
dependencies:
11223
11223
-
'@types/node': 22.10.2
11610
11610
+
'@types/node': 22.18.8
11224
11611
escape-string-regexp: 4.0.0
11225
11612
is-wsl: 2.2.0
11226
11613
lighthouse-logger: 1.4.2
···
11231
11618
11232
11619
chromium-edge-launcher@0.2.0:
11233
11620
dependencies:
11234
11234
-
'@types/node': 22.10.2
11621
11621
+
'@types/node': 22.18.8
11235
11622
escape-string-regexp: 4.0.0
11236
11623
is-wsl: 2.2.0
11237
11624
lighthouse-logger: 1.4.2
···
11245
11632
ci-info@3.9.0: {}
11246
11633
11247
11634
ci-info@4.3.0: {}
11635
11635
+
11636
11636
+
cjs-module-lexer@1.4.3: {}
11248
11637
11249
11638
cjs-module-lexer@2.1.0: {}
11250
11639
···
11373
11762
11374
11763
core-js-compat@3.39.0:
11375
11764
dependencies:
11376
11376
-
browserslist: 4.24.3
11765
11765
+
browserslist: 4.26.3
11377
11766
11378
11767
core-js-pure@3.39.0: {}
11379
11768
···
11389
11778
is-directory: 0.3.1
11390
11779
js-yaml: 3.14.1
11391
11780
parse-json: 4.0.0
11781
11781
+
11782
11782
+
create-jest@29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)):
11783
11783
+
dependencies:
11784
11784
+
'@jest/types': 29.6.3
11785
11785
+
chalk: 4.1.2
11786
11786
+
exit: 0.1.2
11787
11787
+
graceful-fs: 4.2.11
11788
11788
+
jest-config: 29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))
11789
11789
+
jest-util: 29.7.0
11790
11790
+
prompts: 2.4.2
11791
11791
+
transitivePeerDependencies:
11792
11792
+
- '@types/node'
11793
11793
+
- babel-plugin-macros
11794
11794
+
- supports-color
11795
11795
+
- ts-node
11392
11796
11393
11797
create-require@1.1.1: {}
11394
11798
···
11449
11853
11450
11854
data-view-buffer@1.0.2:
11451
11855
dependencies:
11452
11452
-
call-bound: 1.0.3
11856
11856
+
call-bound: 1.0.4
11453
11857
es-errors: 1.3.0
11454
11858
is-data-view: 1.0.2
11455
11859
11456
11860
data-view-byte-length@1.0.2:
11457
11861
dependencies:
11458
11458
-
call-bound: 1.0.3
11862
11862
+
call-bound: 1.0.4
11459
11863
es-errors: 1.3.0
11460
11864
is-data-view: 1.0.2
11461
11865
11462
11866
data-view-byte-offset@1.0.1:
11463
11867
dependencies:
11464
11464
-
call-bound: 1.0.3
11868
11868
+
call-bound: 1.0.4
11465
11869
es-errors: 1.3.0
11466
11870
is-data-view: 1.0.2
11467
11871
···
11477
11881
dependencies:
11478
11882
ms: 2.1.3
11479
11883
11884
11884
+
debug@4.4.3:
11885
11885
+
dependencies:
11886
11886
+
ms: 2.1.3
11887
11887
+
11480
11888
decimal.js@10.6.0: {}
11481
11889
11482
11890
decode-uri-component@0.2.2: {}
···
11515
11923
11516
11924
detect-libc@1.0.3: {}
11517
11925
11518
11518
-
detect-libc@2.0.3:
11519
11519
-
optional: true
11926
11926
+
detect-libc@2.0.3: {}
11520
11927
11521
11928
detect-newline@3.1.0: {}
11522
11929
···
11528
11935
11529
11936
diff@4.0.2: {}
11530
11937
11938
11938
+
dir-glob@3.0.1:
11939
11939
+
dependencies:
11940
11940
+
path-type: 4.0.0
11941
11941
+
11531
11942
dlv@1.1.3: {}
11532
11943
11533
11944
doctrine@2.1.0:
···
11566
11977
11567
11978
dotenv@16.4.7: {}
11568
11979
11569
11569
-
dunder-proto@1.0.0:
11570
11570
-
dependencies:
11571
11571
-
call-bind-apply-helpers: 1.0.1
11572
11572
-
es-errors: 1.3.0
11573
11573
-
gopd: 1.2.0
11574
11574
-
11575
11980
dunder-proto@1.0.1:
11576
11981
dependencies:
11577
11577
-
call-bind-apply-helpers: 1.0.1
11982
11982
+
call-bind-apply-helpers: 1.0.2
11578
11983
es-errors: 1.3.0
11579
11984
gopd: 1.2.0
11580
11985
···
11596
12001
11597
12002
ee-first@1.1.1: {}
11598
12003
11599
11599
-
electron-to-chromium@1.5.76: {}
12004
12004
+
electron-to-chromium@1.5.230: {}
11600
12005
11601
12006
emittery@0.13.1: {}
11602
12007
···
11610
12015
11611
12016
encodeurl@2.0.0: {}
11612
12017
11613
11613
-
enhanced-resolve@5.17.1:
12018
12018
+
enhanced-resolve@5.18.3:
11614
12019
dependencies:
11615
12020
graceful-fs: 4.2.11
11616
11616
-
tapable: 2.2.1
12021
12021
+
tapable: 2.3.0
11617
12022
11618
12023
entities@4.5.0: {}
11619
12024
···
11624
12029
eol@0.9.1: {}
11625
12030
11626
12031
error-ex@1.3.2:
12032
12032
+
dependencies:
12033
12033
+
is-arrayish: 0.2.1
12034
12034
+
12035
12035
+
error-ex@1.3.4:
11627
12036
dependencies:
11628
12037
is-arrayish: 0.2.1
11629
12038
···
11631
12040
dependencies:
11632
12041
stackframe: 1.3.4
11633
12042
11634
11634
-
es-abstract@1.23.8:
12043
12043
+
es-abstract@1.24.0:
11635
12044
dependencies:
11636
12045
array-buffer-byte-length: 1.0.2
11637
12046
arraybuffer.prototype.slice: 1.0.4
11638
12047
available-typed-arrays: 1.0.7
11639
12048
call-bind: 1.0.8
11640
11640
-
call-bound: 1.0.3
12049
12049
+
call-bound: 1.0.4
11641
12050
data-view-buffer: 1.0.2
11642
12051
data-view-byte-length: 1.0.2
11643
12052
data-view-byte-offset: 1.0.1
11644
12053
es-define-property: 1.0.1
11645
12054
es-errors: 1.3.0
11646
11646
-
es-object-atoms: 1.0.0
11647
11647
-
es-set-tostringtag: 2.0.3
12055
12055
+
es-object-atoms: 1.1.1
12056
12056
+
es-set-tostringtag: 2.1.0
11648
12057
es-to-primitive: 1.3.0
11649
12058
function.prototype.name: 1.1.8
11650
11650
-
get-intrinsic: 1.2.6
12059
12059
+
get-intrinsic: 1.3.0
12060
12060
+
get-proto: 1.0.1
11651
12061
get-symbol-description: 1.1.0
11652
12062
globalthis: 1.0.4
11653
12063
gopd: 1.2.0
···
11659
12069
is-array-buffer: 3.0.5
11660
12070
is-callable: 1.2.7
11661
12071
is-data-view: 1.0.2
12072
12072
+
is-negative-zero: 2.0.3
11662
12073
is-regex: 1.2.1
12074
12074
+
is-set: 2.0.3
11663
12075
is-shared-array-buffer: 1.0.4
11664
12076
is-string: 1.1.1
11665
12077
is-typed-array: 1.1.15
11666
11666
-
is-weakref: 1.1.0
12078
12078
+
is-weakref: 1.1.1
11667
12079
math-intrinsics: 1.1.0
11668
11668
-
object-inspect: 1.13.3
12080
12080
+
object-inspect: 1.13.4
11669
12081
object-keys: 1.1.1
11670
12082
object.assign: 4.1.7
11671
12083
own-keys: 1.0.1
11672
11672
-
regexp.prototype.flags: 1.5.3
12084
12084
+
regexp.prototype.flags: 1.5.4
11673
12085
safe-array-concat: 1.1.3
11674
12086
safe-push-apply: 1.0.0
11675
12087
safe-regex-test: 1.1.0
12088
12088
+
set-proto: 1.0.0
12089
12089
+
stop-iteration-iterator: 1.1.0
11676
12090
string.prototype.trim: 1.2.10
11677
12091
string.prototype.trimend: 1.0.9
11678
12092
string.prototype.trimstart: 1.0.8
···
11681
12095
typed-array-byte-offset: 1.0.4
11682
12096
typed-array-length: 1.0.7
11683
12097
unbox-primitive: 1.1.0
11684
11684
-
which-typed-array: 1.1.18
12098
12098
+
which-typed-array: 1.1.19
11685
12099
11686
12100
es-define-property@1.0.1: {}
11687
12101
···
11690
12104
es-iterator-helpers@1.2.1:
11691
12105
dependencies:
11692
12106
call-bind: 1.0.8
11693
11693
-
call-bound: 1.0.3
12107
12107
+
call-bound: 1.0.4
11694
12108
define-properties: 1.2.1
11695
11695
-
es-abstract: 1.23.8
12109
12109
+
es-abstract: 1.24.0
11696
12110
es-errors: 1.3.0
11697
11697
-
es-set-tostringtag: 2.0.3
12111
12111
+
es-set-tostringtag: 2.1.0
11698
12112
function-bind: 1.1.2
11699
11699
-
get-intrinsic: 1.2.6
12113
12113
+
get-intrinsic: 1.3.0
11700
12114
globalthis: 1.0.4
11701
12115
gopd: 1.2.0
11702
12116
has-property-descriptors: 1.0.2
11703
12117
has-proto: 1.2.0
11704
12118
has-symbols: 1.1.0
11705
12119
internal-slot: 1.1.0
11706
11706
-
iterator.prototype: 1.1.4
12120
12120
+
iterator.prototype: 1.1.5
11707
12121
safe-array-concat: 1.1.3
11708
12122
11709
11709
-
es-module-lexer@1.6.0: {}
12123
12123
+
es-module-lexer@1.7.0: {}
11710
12124
11711
11711
-
es-object-atoms@1.0.0:
12125
12125
+
es-object-atoms@1.1.1:
11712
12126
dependencies:
11713
12127
es-errors: 1.3.0
11714
12128
11715
11715
-
es-set-tostringtag@2.0.3:
11716
11716
-
dependencies:
11717
11717
-
get-intrinsic: 1.2.6
11718
11718
-
has-tostringtag: 1.0.2
11719
11719
-
hasown: 2.0.2
11720
11720
-
11721
12129
es-set-tostringtag@2.1.0:
11722
12130
dependencies:
11723
12131
es-errors: 1.3.0
11724
11724
-
get-intrinsic: 1.2.6
12132
12132
+
get-intrinsic: 1.3.0
11725
12133
has-tostringtag: 1.0.2
11726
12134
hasown: 2.0.2
11727
12135
11728
11728
-
es-shim-unscopables@1.0.2:
12136
12136
+
es-shim-unscopables@1.1.0:
11729
12137
dependencies:
11730
12138
hasown: 2.0.2
11731
12139
···
11753
12161
optionalDependencies:
11754
12162
source-map: 0.6.1
11755
12163
11756
11756
-
eslint-config-expo@9.2.0(eslint@8.57.1)(typescript@5.8.3):
12164
12164
+
eslint-config-expo@7.1.2(eslint@8.57.1)(typescript@5.9.3):
11757
12165
dependencies:
11758
11758
-
'@typescript-eslint/eslint-plugin': 8.19.0(@typescript-eslint/parser@8.19.0(eslint@8.57.1)(typescript@5.8.3))(eslint@8.57.1)(typescript@5.8.3)
11759
11759
-
'@typescript-eslint/parser': 8.19.0(eslint@8.57.1)(typescript@5.8.3)
12166
12166
+
'@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)
12167
12167
+
'@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.9.3)
11760
12168
eslint: 8.57.1
11761
11761
-
eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@8.57.1)
11762
11762
-
eslint-plugin-expo: 0.1.4(eslint@8.57.1)(typescript@5.8.3)
11763
11763
-
eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.19.0(eslint@8.57.1)(typescript@5.8.3))(eslint-import-resolver-typescript@3.7.0)(eslint@8.57.1)
11764
11764
-
eslint-plugin-react: 7.37.3(eslint@8.57.1)
11765
11765
-
eslint-plugin-react-hooks: 5.2.0(eslint@8.57.1)
11766
11766
-
globals: 16.2.0
12169
12169
+
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@8.57.1)
12170
12170
+
eslint-plugin-expo: 0.0.1(eslint@8.57.1)(typescript@5.9.3)
12171
12171
+
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)
12172
12172
+
eslint-plugin-react: 7.37.5(eslint@8.57.1)
12173
12173
+
eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1)
11767
12174
transitivePeerDependencies:
11768
12175
- eslint-import-resolver-webpack
11769
12176
- eslint-plugin-import-x
···
11778
12185
transitivePeerDependencies:
11779
12186
- supports-color
11780
12187
11781
11781
-
eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0)(eslint@8.57.1):
12188
12188
+
eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@8.57.1):
11782
12189
dependencies:
11783
12190
'@nolyfill/is-core-module': 1.0.39
11784
11784
-
debug: 4.4.0
11785
11785
-
enhanced-resolve: 5.17.1
12191
12191
+
debug: 4.4.3
11786
12192
eslint: 8.57.1
11787
11787
-
fast-glob: 3.3.2
11788
11788
-
get-tsconfig: 4.8.1
11789
11789
-
is-bun-module: 1.3.0
11790
11790
-
is-glob: 4.0.3
11791
11791
-
stable-hash: 0.0.4
12193
12193
+
get-tsconfig: 4.10.1
12194
12194
+
is-bun-module: 2.0.0
12195
12195
+
stable-hash: 0.0.5
12196
12196
+
tinyglobby: 0.2.15
12197
12197
+
unrs-resolver: 1.11.1
11792
12198
optionalDependencies:
11793
11793
-
eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.19.0(eslint@8.57.1)(typescript@5.8.3))(eslint-import-resolver-typescript@3.7.0)(eslint@8.57.1)
12199
12199
+
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)
11794
12200
transitivePeerDependencies:
11795
12201
- supports-color
11796
12202
11797
11797
-
eslint-module-utils@2.12.0(@typescript-eslint/parser@8.19.0(eslint@8.57.1)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@8.57.1):
12203
12203
+
eslint-module-utils@2.12.1(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1):
11798
12204
dependencies:
11799
12205
debug: 3.2.7
11800
12206
optionalDependencies:
11801
11801
-
'@typescript-eslint/parser': 8.19.0(eslint@8.57.1)(typescript@5.8.3)
12207
12207
+
'@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.9.3)
11802
12208
eslint: 8.57.1
11803
12209
eslint-import-resolver-node: 0.3.9
11804
11804
-
eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@8.57.1)
12210
12210
+
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@8.57.1)
11805
12211
transitivePeerDependencies:
11806
12212
- supports-color
11807
12213
11808
11808
-
eslint-plugin-expo@0.1.4(eslint@8.57.1)(typescript@5.8.3):
12214
12214
+
eslint-plugin-expo@0.0.1(eslint@8.57.1)(typescript@5.9.3):
11809
12215
dependencies:
11810
11810
-
'@typescript-eslint/types': 8.33.1
11811
11811
-
'@typescript-eslint/utils': 8.33.1(eslint@8.57.1)(typescript@5.8.3)
12216
12216
+
'@typescript-eslint/types': 7.18.0
12217
12217
+
'@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.9.3)
11812
12218
eslint: 8.57.1
11813
12219
transitivePeerDependencies:
11814
12220
- supports-color
11815
12221
- typescript
11816
12222
11817
11817
-
eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.19.0(eslint@8.57.1)(typescript@5.8.3))(eslint-import-resolver-typescript@3.7.0)(eslint@8.57.1):
12223
12223
+
eslint-plugin-expo@1.0.0(eslint@8.57.1)(typescript@5.9.3):
12224
12224
+
dependencies:
12225
12225
+
'@typescript-eslint/types': 8.45.0
12226
12226
+
'@typescript-eslint/utils': 8.45.0(eslint@8.57.1)(typescript@5.9.3)
12227
12227
+
eslint: 8.57.1
12228
12228
+
transitivePeerDependencies:
12229
12229
+
- supports-color
12230
12230
+
- typescript
12231
12231
+
12232
12232
+
eslint-plugin-import@2.32.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1):
11818
12233
dependencies:
11819
12234
'@rtsao/scc': 1.1.0
11820
11820
-
array-includes: 3.1.8
11821
11821
-
array.prototype.findlastindex: 1.2.5
12235
12235
+
array-includes: 3.1.9
12236
12236
+
array.prototype.findlastindex: 1.2.6
11822
12237
array.prototype.flat: 1.3.3
11823
12238
array.prototype.flatmap: 1.3.3
11824
12239
debug: 3.2.7
11825
12240
doctrine: 2.1.0
11826
12241
eslint: 8.57.1
11827
12242
eslint-import-resolver-node: 0.3.9
11828
11828
-
eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.19.0(eslint@8.57.1)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@8.57.1)
12243
12243
+
eslint-module-utils: 2.12.1(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)
11829
12244
hasown: 2.0.2
11830
12245
is-core-module: 2.16.1
11831
12246
is-glob: 4.0.3
···
11837
12252
string.prototype.trimend: 1.0.9
11838
12253
tsconfig-paths: 3.15.0
11839
12254
optionalDependencies:
11840
11840
-
'@typescript-eslint/parser': 8.19.0(eslint@8.57.1)(typescript@5.8.3)
12255
12255
+
'@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.9.3)
11841
12256
transitivePeerDependencies:
11842
12257
- eslint-import-resolver-typescript
11843
12258
- eslint-import-resolver-webpack
···
11845
12260
11846
12261
eslint-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206(eslint@8.57.1):
11847
12262
dependencies:
11848
11848
-
'@babel/core': 7.26.0
11849
11849
-
'@babel/parser': 7.26.3
11850
11850
-
'@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.26.0)
12263
12263
+
'@babel/core': 7.28.4
12264
12264
+
'@babel/parser': 7.28.4
12265
12265
+
'@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.28.4)
11851
12266
eslint: 8.57.1
11852
12267
hermes-parser: 0.25.1
11853
11853
-
zod: 3.23.8
11854
11854
-
zod-validation-error: 3.4.0(zod@3.23.8)
12268
12268
+
zod: 3.25.76
12269
12269
+
zod-validation-error: 3.4.0(zod@3.25.76)
11855
12270
transitivePeerDependencies:
11856
12271
- supports-color
11857
12272
11858
11858
-
eslint-plugin-react-hooks@5.2.0(eslint@8.57.1):
12273
12273
+
eslint-plugin-react-hooks@4.6.2(eslint@8.57.1):
11859
12274
dependencies:
11860
12275
eslint: 8.57.1
11861
12276
11862
11862
-
eslint-plugin-react@7.37.3(eslint@8.57.1):
12277
12277
+
eslint-plugin-react@7.37.5(eslint@8.57.1):
11863
12278
dependencies:
11864
11864
-
array-includes: 3.1.8
12279
12279
+
array-includes: 3.1.9
11865
12280
array.prototype.findlast: 1.2.5
11866
12281
array.prototype.flatmap: 1.3.3
11867
12282
array.prototype.tosorted: 1.1.4
···
11872
12287
hasown: 2.0.2
11873
12288
jsx-ast-utils: 3.3.5
11874
12289
minimatch: 3.1.2
11875
11875
-
object.entries: 1.1.8
12290
12290
+
object.entries: 1.1.9
11876
12291
object.fromentries: 2.0.8
11877
12292
object.values: 1.2.1
11878
12293
prop-types: 15.8.1
···
11893
12308
11894
12309
eslint-visitor-keys@3.4.3: {}
11895
12310
11896
11896
-
eslint-visitor-keys@4.2.0: {}
12311
12311
+
eslint-visitor-keys@4.2.1: {}
11897
12312
11898
12313
eslint@8.57.1:
11899
12314
dependencies:
11900
11900
-
'@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
12315
12315
+
'@eslint-community/eslint-utils': 4.9.0(eslint@8.57.1)
11901
12316
'@eslint-community/regexpp': 4.12.1
11902
12317
'@eslint/eslintrc': 2.1.4
11903
12318
'@eslint/js': 8.57.1
11904
12319
'@humanwhocodes/config-array': 0.13.0
11905
12320
'@humanwhocodes/module-importer': 1.0.1
11906
12321
'@nodelib/fs.walk': 1.2.8
11907
11907
-
'@ungap/structured-clone': 1.2.1
12322
12322
+
'@ungap/structured-clone': 1.3.0
11908
12323
ajv: 6.12.6
11909
12324
chalk: 4.1.2
11910
12325
cross-spawn: 7.0.6
11911
11911
-
debug: 4.4.0
12326
12326
+
debug: 4.4.3
11912
12327
doctrine: 3.0.0
11913
12328
escape-string-regexp: 4.0.0
11914
12329
eslint-scope: 7.2.2
···
11940
12355
11941
12356
espree@9.6.1:
11942
12357
dependencies:
11943
11943
-
acorn: 8.14.0
11944
11944
-
acorn-jsx: 5.3.2(acorn@8.14.0)
12358
12358
+
acorn: 8.15.0
12359
12359
+
acorn-jsx: 5.3.2(acorn@8.15.0)
11945
12360
eslint-visitor-keys: 3.4.3
11946
12361
11947
12362
esprima@4.0.1: {}
···
12001
12416
12002
12417
exit-x@0.2.2: {}
12003
12418
12419
12419
+
exit@0.1.2: {}
12420
12420
+
12004
12421
expect@29.7.0:
12005
12422
dependencies:
12006
12423
'@jest/expect-utils': 29.7.0
···
12018
12435
jest-mock: 30.2.0
12019
12436
jest-util: 30.2.0
12020
12437
12021
12021
-
expo-asset@11.1.7(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
12438
12438
+
expo-asset@12.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
12022
12439
dependencies:
12023
12023
-
'@expo/image-utils': 0.7.6
12024
12024
-
expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12025
12025
-
expo-constants: 17.1.7(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))
12026
12026
-
react: 19.0.0
12027
12027
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
12440
12440
+
'@expo/image-utils': 0.8.7
12441
12441
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12442
12442
+
expo-constants: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))
12443
12443
+
react: 19.1.0
12444
12444
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
12028
12445
transitivePeerDependencies:
12029
12446
- supports-color
12030
12447
12031
12031
-
expo-asset@11.1.7(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
12448
12448
+
expo-asset@12.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0):
12032
12449
dependencies:
12033
12033
-
'@expo/image-utils': 0.7.6
12034
12034
-
expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12035
12035
-
expo-constants: 17.1.7(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))
12036
12036
-
react: 19.0.0
12037
12037
-
react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
12450
12450
+
'@expo/image-utils': 0.8.7
12451
12451
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12452
12452
+
expo-constants: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))
12453
12453
+
react: 19.2.0
12454
12454
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
12038
12455
transitivePeerDependencies:
12039
12456
- supports-color
12040
12457
12041
12041
-
expo-constants@17.1.6(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)):
12458
12458
+
expo-constants@18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)):
12042
12459
dependencies:
12043
12043
-
'@expo/config': 11.0.10
12044
12044
-
'@expo/env': 1.0.5
12045
12045
-
expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12046
12046
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
12460
12460
+
'@expo/config': 12.0.10
12461
12461
+
'@expo/env': 2.0.7
12462
12462
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12463
12463
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
12047
12464
transitivePeerDependencies:
12048
12465
- supports-color
12049
12466
12050
12050
-
expo-constants@17.1.7(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)):
12467
12467
+
expo-constants@18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)):
12051
12468
dependencies:
12052
12052
-
'@expo/config': 11.0.13
12053
12053
-
'@expo/env': 1.0.7
12054
12054
-
expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12055
12055
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
12469
12469
+
'@expo/config': 12.0.10
12470
12470
+
'@expo/env': 2.0.7
12471
12471
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12472
12472
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
12056
12473
transitivePeerDependencies:
12057
12474
- supports-color
12058
12475
12059
12059
-
expo-constants@17.1.7(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)):
12476
12476
+
expo-dev-client@6.0.13(expo@54.0.12):
12060
12477
dependencies:
12061
12061
-
'@expo/config': 11.0.13
12062
12062
-
'@expo/env': 1.0.7
12063
12063
-
expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12064
12064
-
react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
12478
12478
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12479
12479
+
expo-dev-launcher: 6.0.13(expo@54.0.12)
12480
12480
+
expo-dev-menu: 7.0.13(expo@54.0.12)
12481
12481
+
expo-dev-menu-interface: 2.0.0(expo@54.0.12)
12482
12482
+
expo-manifests: 1.0.8(expo@54.0.12)
12483
12483
+
expo-updates-interface: 2.0.0(expo@54.0.12)
12065
12484
transitivePeerDependencies:
12066
12485
- supports-color
12067
12486
12068
12068
-
expo-file-system@18.1.11(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)):
12487
12487
+
expo-dev-launcher@6.0.13(expo@54.0.12):
12069
12488
dependencies:
12070
12070
-
expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12071
12071
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
12489
12489
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12490
12490
+
expo-dev-menu: 7.0.13(expo@54.0.12)
12491
12491
+
expo-manifests: 1.0.8(expo@54.0.12)
12492
12492
+
transitivePeerDependencies:
12493
12493
+
- supports-color
12072
12494
12073
12073
-
expo-file-system@18.1.11(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)):
12495
12495
+
expo-dev-menu-interface@2.0.0(expo@54.0.12):
12074
12496
dependencies:
12075
12075
-
expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12076
12076
-
react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
12497
12497
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12077
12498
12078
12078
-
expo-font@13.3.1(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0):
12499
12499
+
expo-dev-menu@7.0.13(expo@54.0.12):
12079
12500
dependencies:
12080
12080
-
expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12501
12501
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12502
12502
+
expo-dev-menu-interface: 2.0.0(expo@54.0.12)
12503
12503
+
12504
12504
+
expo-file-system@19.0.16(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)):
12505
12505
+
dependencies:
12506
12506
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12507
12507
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
12508
12508
+
12509
12509
+
expo-file-system@19.0.16(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)):
12510
12510
+
dependencies:
12511
12511
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12512
12512
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
12513
12513
+
12514
12514
+
expo-font@14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
12515
12515
+
dependencies:
12516
12516
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12081
12517
fontfaceobserver: 2.3.0
12082
12082
-
react: 19.0.0
12518
12518
+
react: 19.1.0
12519
12519
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
12083
12520
12084
12084
-
expo-font@13.3.2(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0):
12521
12521
+
expo-font@14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0):
12085
12522
dependencies:
12086
12086
-
expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12523
12523
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12087
12524
fontfaceobserver: 2.3.0
12088
12088
-
react: 19.0.0
12525
12525
+
react: 19.2.0
12526
12526
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
12089
12527
12090
12090
-
expo-font@13.3.2(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0):
12528
12528
+
expo-image-loader@6.0.0(expo@54.0.12):
12091
12529
dependencies:
12092
12092
-
expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12093
12093
-
fontfaceobserver: 2.3.0
12094
12094
-
react: 19.0.0
12530
12530
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12095
12531
12096
12096
-
expo-image-loader@5.1.0(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)):
12532
12532
+
expo-image-picker@17.0.8(expo@54.0.12):
12097
12533
dependencies:
12098
12098
-
expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12534
12534
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12535
12535
+
expo-image-loader: 6.0.0(expo@54.0.12)
12099
12536
12100
12100
-
expo-image-picker@16.1.4(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)):
12537
12537
+
expo-json-utils@0.15.0: {}
12538
12538
+
12539
12539
+
expo-keep-awake@15.0.7(expo@54.0.12)(react@19.1.0):
12101
12540
dependencies:
12102
12102
-
expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12103
12103
-
expo-image-loader: 5.1.0(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))
12541
12541
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12542
12542
+
react: 19.1.0
12104
12543
12105
12105
-
expo-keep-awake@14.1.4(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0):
12544
12544
+
expo-keep-awake@15.0.7(expo@54.0.12)(react@19.2.0):
12106
12545
dependencies:
12107
12107
-
expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12108
12108
-
react: 19.0.0
12546
12546
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12547
12547
+
react: 19.2.0
12109
12548
12110
12110
-
expo-keep-awake@14.1.4(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0):
12549
12549
+
expo-linking@8.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
12111
12550
dependencies:
12112
12112
-
expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12113
12113
-
react: 19.0.0
12551
12551
+
expo-constants: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))
12552
12552
+
invariant: 2.2.4
12553
12553
+
react: 19.1.0
12554
12554
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
12555
12555
+
transitivePeerDependencies:
12556
12556
+
- expo
12557
12557
+
- supports-color
12114
12558
12115
12115
-
expo-linking@7.1.4(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
12559
12559
+
expo-linking@8.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0):
12116
12560
dependencies:
12117
12117
-
expo-constants: 17.1.6(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))
12561
12561
+
expo-constants: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))
12118
12562
invariant: 2.2.4
12119
12119
-
react: 19.0.0
12120
12120
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
12563
12563
+
react: 19.2.0
12564
12564
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
12121
12565
transitivePeerDependencies:
12122
12566
- expo
12123
12567
- supports-color
12568
12568
+
optional: true
12124
12569
12125
12125
-
expo-modules-autolinking@2.1.14:
12570
12570
+
expo-manifests@1.0.8(expo@54.0.12):
12571
12571
+
dependencies:
12572
12572
+
'@expo/config': 12.0.10
12573
12573
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12574
12574
+
expo-json-utils: 0.15.0
12575
12575
+
transitivePeerDependencies:
12576
12576
+
- supports-color
12577
12577
+
12578
12578
+
expo-modules-autolinking@3.0.14:
12126
12579
dependencies:
12127
12580
'@expo/spawn-async': 1.7.2
12128
12581
chalk: 4.1.2
12129
12582
commander: 7.2.0
12130
12130
-
find-up: 5.0.0
12131
12583
glob: 10.4.5
12132
12584
require-from-string: 2.0.2
12133
12585
resolve-from: 5.0.0
12134
12586
12135
12135
-
expo-modules-core@2.5.0:
12587
12587
+
expo-modules-core@3.0.20(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
12136
12588
dependencies:
12137
12589
invariant: 2.2.4
12590
12590
+
react: 19.1.0
12591
12591
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
12138
12592
12139
12139
-
expo-router@5.0.6(6uar7qyy7j5atz75qvftmg5rai):
12593
12593
+
expo-modules-core@3.0.20(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0):
12594
12594
+
dependencies:
12595
12595
+
invariant: 2.2.4
12596
12596
+
react: 19.2.0
12597
12597
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
12598
12598
+
12599
12599
+
expo-router@6.0.10(fj6mwckpazazwnabl3it56dere):
12600
12600
+
dependencies:
12601
12601
+
'@expo/metro-runtime': 6.1.2(expo@54.0.12)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12602
12602
+
'@expo/schema-utils': 0.1.7
12603
12603
+
'@radix-ui/react-slot': 1.2.0(@types/react@19.1.17)(react@19.1.0)
12604
12604
+
'@radix-ui/react-tabs': 1.1.13(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
12605
12605
+
'@react-navigation/bottom-tabs': 7.4.8(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12606
12606
+
'@react-navigation/native': 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12607
12607
+
'@react-navigation/native-stack': 7.3.27(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12608
12608
+
client-only: 0.0.1
12609
12609
+
debug: 4.4.0
12610
12610
+
escape-string-regexp: 4.0.0
12611
12611
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12612
12612
+
expo-constants: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))
12613
12613
+
expo-linking: 8.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12614
12614
+
expo-server: 1.0.0
12615
12615
+
fast-deep-equal: 3.1.3
12616
12616
+
invariant: 2.2.4
12617
12617
+
nanoid: 3.3.11
12618
12618
+
query-string: 7.1.3
12619
12619
+
react: 19.1.0
12620
12620
+
react-fast-compare: 3.2.2
12621
12621
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
12622
12622
+
react-native-is-edge-to-edge: 1.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12623
12623
+
react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12624
12624
+
react-native-screens: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12625
12625
+
semver: 7.6.3
12626
12626
+
server-only: 0.0.1
12627
12627
+
sf-symbols-typescript: 2.1.0
12628
12628
+
shallowequal: 1.1.0
12629
12629
+
use-latest-callback: 0.2.3(react@19.1.0)
12630
12630
+
vaul: 1.1.2(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
12631
12631
+
optionalDependencies:
12632
12632
+
react-dom: 19.1.0(react@19.1.0)
12633
12633
+
react-native-gesture-handler: 2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12634
12634
+
react-native-reanimated: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12635
12635
+
react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
12636
12636
+
react-server-dom-webpack: 19.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(webpack@5.97.1)
12637
12637
+
transitivePeerDependencies:
12638
12638
+
- '@react-native-masked-view/masked-view'
12639
12639
+
- '@types/react'
12640
12640
+
- '@types/react-dom'
12641
12641
+
- supports-color
12642
12642
+
12643
12643
+
expo-router@6.0.10(p7n7j7fuquu3ku5xk4japqlpne):
12140
12644
dependencies:
12141
12141
-
'@expo/metro-runtime': 5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))
12142
12142
-
'@expo/server': 0.6.2
12143
12143
-
'@radix-ui/react-slot': 1.2.0(@types/react@19.0.14)(react@19.0.0)
12144
12144
-
'@react-navigation/bottom-tabs': 7.3.14(@react-navigation/native@7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12145
12145
-
'@react-navigation/native': 7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12146
12146
-
'@react-navigation/native-stack': 7.3.14(@react-navigation/native@7.1.10(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12645
12645
+
'@expo/metro-runtime': 6.1.2(expo@54.0.12)(react-dom@19.2.0(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12646
12646
+
'@expo/schema-utils': 0.1.7
12647
12647
+
'@radix-ui/react-slot': 1.2.0(@types/react@19.2.0)(react@19.2.0)
12648
12648
+
'@radix-ui/react-tabs': 1.1.13(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
12649
12649
+
'@react-navigation/bottom-tabs': 7.4.8(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12650
12650
+
'@react-navigation/native': 7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12651
12651
+
'@react-navigation/native-stack': 7.3.27(@react-navigation/native@7.1.18(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12147
12652
client-only: 0.0.1
12148
12148
-
expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12149
12149
-
expo-constants: 17.1.6(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))
12150
12150
-
expo-linking: 7.1.4(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12653
12653
+
debug: 4.4.0
12654
12654
+
escape-string-regexp: 4.0.0
12655
12655
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12656
12656
+
expo-constants: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))
12657
12657
+
expo-linking: 8.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12658
12658
+
expo-server: 1.0.0
12659
12659
+
fast-deep-equal: 3.1.3
12151
12660
invariant: 2.2.4
12661
12661
+
nanoid: 3.3.11
12662
12662
+
query-string: 7.1.3
12663
12663
+
react: 19.2.0
12152
12664
react-fast-compare: 3.2.2
12153
12153
-
react-native-is-edge-to-edge: 1.1.6(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12154
12154
-
react-native-safe-area-context: 5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12155
12155
-
react-native-screens: 4.10.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12156
12156
-
schema-utils: 4.3.0
12665
12665
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
12666
12666
+
react-native-is-edge-to-edge: 1.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12667
12667
+
react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12668
12668
+
react-native-screens: 4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12157
12669
semver: 7.6.3
12158
12670
server-only: 0.0.1
12671
12671
+
sf-symbols-typescript: 2.1.0
12159
12672
shallowequal: 1.1.0
12673
12673
+
use-latest-callback: 0.2.3(react@19.2.0)
12674
12674
+
vaul: 1.1.2(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
12160
12675
optionalDependencies:
12161
12161
-
react-native-reanimated: 3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12676
12676
+
react-dom: 19.2.0(react@19.2.0)
12677
12677
+
react-native-gesture-handler: 2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12678
12678
+
react-native-reanimated: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12679
12679
+
react-native-web: 0.21.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
12680
12680
+
react-server-dom-webpack: 19.0.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(webpack@5.97.1)
12162
12681
transitivePeerDependencies:
12163
12682
- '@react-native-masked-view/masked-view'
12164
12683
- '@types/react'
12165
12165
-
- react
12166
12166
-
- react-native
12684
12684
+
- '@types/react-dom'
12167
12685
- supports-color
12686
12686
+
optional: true
12687
12687
+
12688
12688
+
expo-server@1.0.0: {}
12168
12689
12169
12169
-
expo-splash-screen@0.30.8(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)):
12690
12690
+
expo-splash-screen@31.0.10(expo@54.0.12):
12170
12691
dependencies:
12171
12171
-
'@expo/prebuild-config': 9.0.11
12172
12172
-
expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12692
12692
+
'@expo/prebuild-config': 54.0.4(expo@54.0.12)
12693
12693
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12173
12694
transitivePeerDependencies:
12174
12695
- supports-color
12175
12696
12176
12176
-
expo-sqlite@15.2.9(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
12697
12697
+
expo-sqlite@15.2.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
12177
12698
dependencies:
12178
12178
-
expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12179
12179
-
react: 19.0.0
12180
12180
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
12699
12699
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12700
12700
+
react: 19.1.0
12701
12701
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
12181
12702
12182
12182
-
expo-status-bar@2.2.3(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
12703
12703
+
expo-sqlite@16.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
12183
12704
dependencies:
12184
12184
-
react: 19.0.0
12185
12185
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
12186
12186
-
react-native-edge-to-edge: 1.6.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12187
12187
-
react-native-is-edge-to-edge: 1.1.6(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12705
12705
+
await-lock: 2.2.2
12706
12706
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12707
12707
+
react: 19.1.0
12708
12708
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
12188
12709
12189
12189
-
expo-system-ui@5.0.7(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)):
12710
12710
+
expo-status-bar@3.0.8(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
12190
12711
dependencies:
12191
12191
-
'@react-native/normalize-colors': 0.79.2
12712
12712
+
react: 19.1.0
12713
12713
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
12714
12714
+
react-native-is-edge-to-edge: 1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12715
12715
+
12716
12716
+
expo-system-ui@6.0.7(expo@54.0.12)(react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)):
12717
12717
+
dependencies:
12718
12718
+
'@react-native/normalize-colors': 0.81.4
12192
12719
debug: 4.4.0
12193
12193
-
expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12194
12194
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
12720
12720
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12721
12721
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
12195
12722
optionalDependencies:
12196
12196
-
react-native-web: 0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
12723
12723
+
react-native-web: 0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
12197
12724
transitivePeerDependencies:
12198
12725
- supports-color
12199
12726
12200
12200
-
expo-web-browser@14.1.6(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)):
12727
12727
+
expo-updates-interface@2.0.0(expo@54.0.12):
12201
12728
dependencies:
12202
12202
-
expo: 53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12203
12203
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
12729
12729
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12204
12730
12205
12205
-
expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
12731
12731
+
expo-web-browser@15.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)):
12206
12732
dependencies:
12207
12207
-
'@babel/runtime': 7.26.0
12208
12208
-
'@expo/cli': 0.24.20
12209
12209
-
'@expo/config': 11.0.13
12210
12210
-
'@expo/config-plugins': 10.1.2
12211
12211
-
'@expo/fingerprint': 0.13.4
12212
12212
-
'@expo/metro-config': 0.20.17
12213
12213
-
'@expo/vector-icons': 14.1.0(expo-font@13.3.2(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12214
12214
-
babel-preset-expo: 13.2.3(@babel/core@7.26.0)(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)
12215
12215
-
expo-asset: 11.1.7(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12216
12216
-
expo-constants: 17.1.7(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))
12217
12217
-
expo-file-system: 18.1.11(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))
12218
12218
-
expo-font: 13.3.2(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0)
12219
12219
-
expo-keep-awake: 14.1.4(expo@53.0.20(@babel/core@7.26.0)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)))(babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0)
12220
12220
-
expo-modules-autolinking: 2.1.14
12221
12221
-
expo-modules-core: 2.5.0
12222
12222
-
react: 19.0.0
12223
12223
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
12224
12224
-
react-native-edge-to-edge: 1.6.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12733
12733
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12734
12734
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
12735
12735
+
12736
12736
+
expo@54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
12737
12737
+
dependencies:
12738
12738
+
'@babel/runtime': 7.28.4
12739
12739
+
'@expo/cli': 54.0.10(expo-router@6.0.10)(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))
12740
12740
+
'@expo/config': 12.0.10
12741
12741
+
'@expo/config-plugins': 54.0.2
12742
12742
+
'@expo/devtools': 0.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12743
12743
+
'@expo/fingerprint': 0.15.1
12744
12744
+
'@expo/metro': 54.0.0
12745
12745
+
'@expo/metro-config': 54.0.6(expo@54.0.12)
12746
12746
+
'@expo/vector-icons': 15.0.2(expo-font@14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12747
12747
+
'@ungap/structured-clone': 1.3.0
12748
12748
+
babel-preset-expo: 54.0.3(@babel/core@7.28.4)(@babel/runtime@7.28.4)(expo@54.0.12)(react-refresh@0.14.2)
12749
12749
+
expo-asset: 12.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12750
12750
+
expo-constants: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))
12751
12751
+
expo-file-system: 19.0.16(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))
12752
12752
+
expo-font: 14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12753
12753
+
expo-keep-awake: 15.0.7(expo@54.0.12)(react@19.1.0)
12754
12754
+
expo-modules-autolinking: 3.0.14
12755
12755
+
expo-modules-core: 3.0.20(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12756
12756
+
pretty-format: 29.7.0
12757
12757
+
react: 19.1.0
12758
12758
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
12759
12759
+
react-refresh: 0.14.2
12225
12760
whatwg-url-without-unicode: 8.0.0-3
12226
12761
optionalDependencies:
12227
12227
-
'@expo/metro-runtime': 5.0.4(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))
12762
12762
+
'@expo/metro-runtime': 6.1.2(expo@54.0.12)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
12228
12763
transitivePeerDependencies:
12229
12764
- '@babel/core'
12230
12230
-
- babel-plugin-react-compiler
12765
12765
+
- '@modelcontextprotocol/sdk'
12231
12766
- bufferutil
12767
12767
+
- expo-router
12232
12768
- graphql
12233
12769
- supports-color
12234
12770
- utf-8-validate
12235
12771
12236
12236
-
expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
12772
12772
+
expo@54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0):
12237
12773
dependencies:
12238
12238
-
'@babel/runtime': 7.26.0
12239
12239
-
'@expo/cli': 0.24.20
12240
12240
-
'@expo/config': 11.0.13
12241
12241
-
'@expo/config-plugins': 10.1.2
12242
12242
-
'@expo/fingerprint': 0.13.4
12243
12243
-
'@expo/metro-config': 0.20.17
12244
12244
-
'@expo/vector-icons': 14.1.0(expo-font@13.3.2(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12245
12245
-
babel-preset-expo: 13.2.3(@babel/core@7.28.4)
12246
12246
-
expo-asset: 11.1.7(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12247
12247
-
expo-constants: 17.1.7(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))
12248
12248
-
expo-file-system: 18.1.11(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))
12249
12249
-
expo-font: 13.3.2(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0)
12250
12250
-
expo-keep-awake: 14.1.4(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react@19.0.0)
12251
12251
-
expo-modules-autolinking: 2.1.14
12252
12252
-
expo-modules-core: 2.5.0
12253
12253
-
react: 19.0.0
12254
12254
-
react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
12255
12255
-
react-native-edge-to-edge: 1.6.0(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
12774
12774
+
'@babel/runtime': 7.28.4
12775
12775
+
'@expo/cli': 54.0.10(expo-router@6.0.10)(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))
12776
12776
+
'@expo/config': 12.0.10
12777
12777
+
'@expo/config-plugins': 54.0.2
12778
12778
+
'@expo/devtools': 0.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12779
12779
+
'@expo/fingerprint': 0.15.1
12780
12780
+
'@expo/metro': 54.0.0
12781
12781
+
'@expo/metro-config': 54.0.6(expo@54.0.12)
12782
12782
+
'@expo/vector-icons': 15.0.2(expo-font@14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12783
12783
+
'@ungap/structured-clone': 1.3.0
12784
12784
+
babel-preset-expo: 54.0.3(@babel/core@7.28.4)(@babel/runtime@7.28.4)(expo@54.0.12)(react-refresh@0.14.2)
12785
12785
+
expo-asset: 12.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12786
12786
+
expo-constants: 18.0.9(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))
12787
12787
+
expo-file-system: 19.0.16(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))
12788
12788
+
expo-font: 14.0.8(expo@54.0.12)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12789
12789
+
expo-keep-awake: 15.0.7(expo@54.0.12)(react@19.2.0)
12790
12790
+
expo-modules-autolinking: 3.0.14
12791
12791
+
expo-modules-core: 3.0.20(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12792
12792
+
pretty-format: 29.7.0
12793
12793
+
react: 19.2.0
12794
12794
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
12795
12795
+
react-refresh: 0.14.2
12256
12796
whatwg-url-without-unicode: 8.0.0-3
12257
12797
optionalDependencies:
12258
12258
-
'@expo/metro-runtime': 5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))
12798
12798
+
'@expo/metro-runtime': 6.1.2(expo@54.0.12)(react-dom@19.2.0(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
12259
12799
transitivePeerDependencies:
12260
12800
- '@babel/core'
12261
12261
-
- babel-plugin-react-compiler
12801
12801
+
- '@modelcontextprotocol/sdk'
12262
12802
- bufferutil
12803
12803
+
- expo-router
12263
12804
- graphql
12264
12805
- supports-color
12265
12806
- utf-8-validate
···
12308
12849
12309
12850
fast-deep-equal@3.1.3: {}
12310
12851
12311
12311
-
fast-glob@3.3.2:
12852
12852
+
fast-glob@3.3.3:
12312
12853
dependencies:
12313
12854
'@nodelib/fs.stat': 2.0.5
12314
12855
'@nodelib/fs.walk': 1.2.8
···
12324
12865
12325
12866
fast-uri@3.0.3: {}
12326
12867
12327
12327
-
fastq@1.17.1:
12868
12868
+
fastq@1.19.1:
12328
12869
dependencies:
12329
12329
-
reusify: 1.0.4
12870
12870
+
reusify: 1.1.0
12330
12871
12331
12872
fb-watchman@2.0.2:
12332
12873
dependencies:
···
12346
12887
transitivePeerDependencies:
12347
12888
- encoding
12348
12889
12349
12349
-
fdir@6.4.2(picomatch@4.0.2):
12890
12890
+
fdir@6.5.0(picomatch@4.0.3):
12350
12891
optionalDependencies:
12351
12351
-
picomatch: 4.0.2
12892
12892
+
picomatch: 4.0.3
12352
12893
12353
12894
figures@1.7.0:
12354
12895
dependencies:
···
12413
12954
12414
12955
flat-cache@3.2.0:
12415
12956
dependencies:
12416
12416
-
flatted: 3.3.2
12957
12957
+
flatted: 3.3.3
12417
12958
keyv: 4.5.4
12418
12959
rimraf: 3.0.2
12419
12960
12420
12420
-
flatted@3.3.2: {}
12961
12961
+
flatted@3.3.3: {}
12421
12962
12422
12963
flow-enums-runtime@0.0.6: {}
12423
12964
···
12427
12968
dependencies:
12428
12969
is-callable: 1.2.7
12429
12970
12971
12971
+
for-each@0.3.5:
12972
12972
+
dependencies:
12973
12973
+
is-callable: 1.2.7
12974
12974
+
12430
12975
foreground-child@3.3.0:
12431
12976
dependencies:
12432
12977
cross-spawn: 7.0.6
12433
12978
signal-exit: 4.1.0
12434
12979
12980
12980
+
foreground-child@3.3.1:
12981
12981
+
dependencies:
12982
12982
+
cross-spawn: 7.0.6
12983
12983
+
signal-exit: 4.1.0
12984
12984
+
12435
12985
forever-agent@0.6.1: {}
12436
12986
12437
12987
form-data@2.3.3:
···
12479
13029
function.prototype.name@1.1.8:
12480
13030
dependencies:
12481
13031
call-bind: 1.0.8
12482
12482
-
call-bound: 1.0.3
13032
13032
+
call-bound: 1.0.4
12483
13033
define-properties: 1.2.1
12484
13034
functions-have-names: 1.2.3
12485
13035
hasown: 2.0.2
···
12487
13037
12488
13038
functions-have-names@1.2.3: {}
12489
13039
13040
13040
+
generator-function@2.0.1: {}
13041
13041
+
12490
13042
gensync@1.0.0-beta.2: {}
12491
13043
12492
13044
get-caller-file@2.0.5: {}
12493
13045
12494
12494
-
get-intrinsic@1.2.5:
13046
13046
+
get-intrinsic@1.2.6:
12495
13047
dependencies:
12496
13048
call-bind-apply-helpers: 1.0.1
12497
12497
-
dunder-proto: 1.0.0
13049
13049
+
dunder-proto: 1.0.1
12498
13050
es-define-property: 1.0.1
12499
13051
es-errors: 1.3.0
13052
13052
+
es-object-atoms: 1.1.1
12500
13053
function-bind: 1.1.2
12501
13054
gopd: 1.2.0
12502
13055
has-symbols: 1.1.0
12503
13056
hasown: 2.0.2
13057
13057
+
math-intrinsics: 1.1.0
12504
13058
12505
12505
-
get-intrinsic@1.2.6:
13059
13059
+
get-intrinsic@1.3.0:
12506
13060
dependencies:
12507
12507
-
call-bind-apply-helpers: 1.0.1
12508
12508
-
dunder-proto: 1.0.1
13061
13061
+
call-bind-apply-helpers: 1.0.2
12509
13062
es-define-property: 1.0.1
12510
13063
es-errors: 1.3.0
12511
12511
-
es-object-atoms: 1.0.0
13064
13064
+
es-object-atoms: 1.1.1
12512
13065
function-bind: 1.1.2
13066
13066
+
get-proto: 1.0.1
12513
13067
gopd: 1.2.0
12514
13068
has-symbols: 1.1.0
12515
13069
hasown: 2.0.2
···
12521
13075
12522
13076
get-port@3.2.0: {}
12523
13077
13078
13078
+
get-proto@1.0.1:
13079
13079
+
dependencies:
13080
13080
+
dunder-proto: 1.0.1
13081
13081
+
es-object-atoms: 1.1.1
13082
13082
+
12524
13083
get-stream@6.0.1: {}
12525
13084
12526
13085
get-stream@9.0.1:
···
12530
13089
12531
13090
get-symbol-description@1.1.0:
12532
13091
dependencies:
12533
12533
-
call-bound: 1.0.3
13092
13092
+
call-bound: 1.0.4
12534
13093
es-errors: 1.3.0
12535
12535
-
get-intrinsic: 1.2.6
13094
13094
+
get-intrinsic: 1.3.0
12536
13095
12537
12537
-
get-tsconfig@4.8.1:
13096
13096
+
get-tsconfig@4.10.1:
12538
13097
dependencies:
12539
13098
resolve-pkg-maps: 1.0.0
12540
12540
-
12541
12541
-
getenv@1.0.0: {}
12542
13099
12543
13100
getenv@2.0.0: {}
12544
13101
···
12569
13126
dependencies:
12570
13127
foreground-child: 3.3.0
12571
13128
jackspeak: 4.0.2
12572
12572
-
minimatch: 10.0.1
13129
13129
+
minimatch: 10.0.3
13130
13130
+
minipass: 7.1.2
13131
13131
+
package-json-from-dist: 1.0.1
13132
13132
+
path-scurry: 2.0.0
13133
13133
+
13134
13134
+
glob@11.0.3:
13135
13135
+
dependencies:
13136
13136
+
foreground-child: 3.3.1
13137
13137
+
jackspeak: 4.1.1
13138
13138
+
minimatch: 10.0.3
12573
13139
minipass: 7.1.2
12574
13140
package-json-from-dist: 1.0.1
12575
13141
path-scurry: 2.0.0
···
12589
13155
minimatch: 8.0.4
12590
13156
minipass: 4.2.8
12591
13157
path-scurry: 1.11.1
13158
13158
+
13159
13159
+
global-dirs@0.1.1:
13160
13160
+
dependencies:
13161
13161
+
ini: 1.3.8
12592
13162
12593
13163
globals@11.12.0: {}
12594
13164
···
12596
13166
dependencies:
12597
13167
type-fest: 0.20.2
12598
13168
12599
12599
-
globals@16.2.0: {}
12600
12600
-
12601
13169
globalthis@1.0.4:
12602
13170
dependencies:
12603
13171
define-properties: 1.2.1
12604
13172
gopd: 1.2.0
12605
13173
13174
13174
+
globby@11.1.0:
13175
13175
+
dependencies:
13176
13176
+
array-union: 2.1.0
13177
13177
+
dir-glob: 3.0.1
13178
13178
+
fast-glob: 3.3.3
13179
13179
+
ignore: 5.3.2
13180
13180
+
merge2: 1.4.1
13181
13181
+
slash: 3.0.0
13182
13182
+
12606
13183
gopd@1.2.0: {}
12607
13184
12608
13185
graceful-fs@4.2.11: {}
···
12648
13225
12649
13226
hermes-estree@0.25.1: {}
12650
13227
12651
12651
-
hermes-estree@0.28.1: {}
13228
13228
+
hermes-estree@0.29.1: {}
12652
13229
12653
13230
hermes-parser@0.25.1:
12654
13231
dependencies:
12655
13232
hermes-estree: 0.25.1
12656
13233
12657
12657
-
hermes-parser@0.28.1:
13234
13234
+
hermes-parser@0.29.1:
12658
13235
dependencies:
12659
12659
-
hermes-estree: 0.28.1
13236
13236
+
hermes-estree: 0.29.1
12660
13237
12661
13238
hoist-non-react-statics@3.3.2:
12662
13239
dependencies:
···
12686
13263
dependencies:
12687
13264
'@tootallnate/once': 2.0.0
12688
13265
agent-base: 6.0.2
12689
12689
-
debug: 4.4.0
13266
13266
+
debug: 4.4.3
12690
13267
transitivePeerDependencies:
12691
13268
- supports-color
12692
13269
···
12699
13276
https-proxy-agent@5.0.1:
12700
13277
dependencies:
12701
13278
agent-base: 6.0.2
12702
12702
-
debug: 4.4.0
13279
13279
+
debug: 4.4.3
12703
13280
transitivePeerDependencies:
12704
13281
- supports-color
12705
13282
12706
13283
https-proxy-agent@7.0.6:
12707
13284
dependencies:
12708
13285
agent-base: 7.1.3
12709
12709
-
debug: 4.4.0
13286
13286
+
debug: 4.4.3
12710
13287
transitivePeerDependencies:
12711
13288
- supports-color
12712
13289
···
12737
13314
caller-path: 2.0.0
12738
13315
resolve-from: 3.0.0
12739
13316
12740
12740
-
import-fresh@3.3.0:
13317
13317
+
import-fresh@3.3.1:
12741
13318
dependencies:
12742
13319
parent-module: 1.0.1
12743
13320
resolve-from: 4.0.0
···
12805
13382
is-array-buffer@3.0.5:
12806
13383
dependencies:
12807
13384
call-bind: 1.0.8
12808
12808
-
call-bound: 1.0.3
12809
12809
-
get-intrinsic: 1.2.6
13385
13385
+
call-bound: 1.0.4
13386
13386
+
get-intrinsic: 1.3.0
12810
13387
12811
13388
is-arrayish@0.2.1: {}
12812
13389
12813
13390
is-arrayish@0.3.2: {}
12814
13391
12815
12815
-
is-async-function@2.0.0:
13392
13392
+
is-async-function@2.1.1:
12816
13393
dependencies:
13394
13394
+
async-function: 1.0.0
13395
13395
+
call-bound: 1.0.4
13396
13396
+
get-proto: 1.0.1
12817
13397
has-tostringtag: 1.0.2
13398
13398
+
safe-regex-test: 1.1.0
12818
13399
12819
13400
is-bigint@1.1.0:
12820
13401
dependencies:
···
12824
13405
dependencies:
12825
13406
binary-extensions: 2.3.0
12826
13407
12827
12827
-
is-boolean-object@1.2.1:
13408
13408
+
is-boolean-object@1.2.2:
12828
13409
dependencies:
12829
12829
-
call-bound: 1.0.3
13410
13410
+
call-bound: 1.0.4
12830
13411
has-tostringtag: 1.0.2
12831
13412
12832
12832
-
is-bun-module@1.3.0:
13413
13413
+
is-bun-module@2.0.0:
12833
13414
dependencies:
12834
13415
semver: 7.7.2
12835
13416
···
12841
13422
12842
13423
is-data-view@1.0.2:
12843
13424
dependencies:
12844
12844
-
call-bound: 1.0.3
12845
12845
-
get-intrinsic: 1.2.6
13425
13425
+
call-bound: 1.0.4
13426
13426
+
get-intrinsic: 1.3.0
12846
13427
is-typed-array: 1.1.15
12847
13428
12848
13429
is-date-object@1.1.0:
12849
13430
dependencies:
12850
12850
-
call-bound: 1.0.3
13431
13431
+
call-bound: 1.0.4
12851
13432
has-tostringtag: 1.0.2
12852
13433
12853
13434
is-directory@0.3.1: {}
···
12858
13439
12859
13440
is-finalizationregistry@1.1.1:
12860
13441
dependencies:
12861
12861
-
call-bound: 1.0.3
13442
13442
+
call-bound: 1.0.4
12862
13443
12863
13444
is-fullwidth-code-point@1.0.0:
12864
13445
dependencies:
···
12872
13453
dependencies:
12873
13454
has-tostringtag: 1.0.2
12874
13455
13456
13456
+
is-generator-function@1.1.2:
13457
13457
+
dependencies:
13458
13458
+
call-bound: 1.0.4
13459
13459
+
generator-function: 2.0.1
13460
13460
+
get-proto: 1.0.1
13461
13461
+
has-tostringtag: 1.0.2
13462
13462
+
safe-regex-test: 1.1.0
13463
13463
+
12875
13464
is-glob@4.0.3:
12876
13465
dependencies:
12877
13466
is-extglob: 2.1.1
12878
13467
12879
13468
is-map@2.0.3: {}
12880
13469
13470
13470
+
is-negative-zero@2.0.3: {}
13471
13471
+
12881
13472
is-number-object@1.1.1:
12882
13473
dependencies:
12883
12883
-
call-bound: 1.0.3
13474
13474
+
call-bound: 1.0.4
12884
13475
has-tostringtag: 1.0.2
12885
13476
12886
13477
is-number@7.0.0: {}
···
12895
13486
12896
13487
is-regex@1.2.1:
12897
13488
dependencies:
12898
12898
-
call-bound: 1.0.3
13489
13489
+
call-bound: 1.0.4
12899
13490
gopd: 1.2.0
12900
13491
has-tostringtag: 1.0.2
12901
13492
hasown: 2.0.2
···
12904
13495
12905
13496
is-shared-array-buffer@1.0.4:
12906
13497
dependencies:
12907
12907
-
call-bound: 1.0.3
13498
13498
+
call-bound: 1.0.4
12908
13499
12909
13500
is-stream@2.0.1: {}
12910
13501
···
12912
13503
12913
13504
is-string@1.1.1:
12914
13505
dependencies:
12915
12915
-
call-bound: 1.0.3
13506
13506
+
call-bound: 1.0.4
12916
13507
has-tostringtag: 1.0.2
12917
13508
12918
13509
is-symbol@1.1.1:
12919
13510
dependencies:
12920
12920
-
call-bound: 1.0.3
13511
13511
+
call-bound: 1.0.4
12921
13512
has-symbols: 1.1.0
12922
13513
safe-regex-test: 1.1.0
12923
13514
···
12931
13522
12932
13523
is-weakmap@2.0.2: {}
12933
13524
12934
12934
-
is-weakref@1.1.0:
13525
13525
+
is-weakref@1.1.1:
12935
13526
dependencies:
12936
12936
-
call-bound: 1.0.3
13527
13527
+
call-bound: 1.0.4
12937
13528
12938
13529
is-weakset@2.0.4:
12939
13530
dependencies:
12940
12940
-
call-bound: 1.0.3
12941
12941
-
get-intrinsic: 1.2.6
13531
13531
+
call-bound: 1.0.4
13532
13532
+
get-intrinsic: 1.3.0
12942
13533
12943
13534
is-wsl@2.2.0:
12944
13535
dependencies:
···
12980
13571
make-dir: 4.0.0
12981
13572
supports-color: 7.2.0
12982
13573
13574
13574
+
istanbul-lib-source-maps@4.0.1:
13575
13575
+
dependencies:
13576
13576
+
debug: 4.4.3
13577
13577
+
istanbul-lib-coverage: 3.2.2
13578
13578
+
source-map: 0.6.1
13579
13579
+
transitivePeerDependencies:
13580
13580
+
- supports-color
13581
13581
+
12983
13582
istanbul-lib-source-maps@5.0.6:
12984
13583
dependencies:
12985
12985
-
'@jridgewell/trace-mapping': 0.3.25
12986
12986
-
debug: 4.4.0
13584
13584
+
'@jridgewell/trace-mapping': 0.3.31
13585
13585
+
debug: 4.4.3
12987
13586
istanbul-lib-coverage: 3.2.2
12988
13587
transitivePeerDependencies:
12989
13588
- supports-color
···
12993
13592
html-escaper: 2.0.2
12994
13593
istanbul-lib-report: 3.0.1
12995
13594
12996
12996
-
iterator.prototype@1.1.4:
13595
13595
+
iterator.prototype@1.1.5:
12997
13596
dependencies:
12998
13597
define-data-property: 1.1.4
12999
12999
-
es-object-atoms: 1.0.0
13000
13000
-
get-intrinsic: 1.2.6
13598
13598
+
es-object-atoms: 1.1.1
13599
13599
+
get-intrinsic: 1.3.0
13600
13600
+
get-proto: 1.0.1
13001
13601
has-symbols: 1.1.0
13002
13002
-
reflect.getprototypeof: 1.0.9
13003
13602
set-function-name: 2.0.2
13004
13603
13005
13604
jackspeak@3.4.3:
···
13012
13611
dependencies:
13013
13612
'@isaacs/cliui': 8.0.2
13014
13613
13614
13614
+
jackspeak@4.1.1:
13615
13615
+
dependencies:
13616
13616
+
'@isaacs/cliui': 8.0.2
13617
13617
+
13618
13618
+
jest-changed-files@29.7.0:
13619
13619
+
dependencies:
13620
13620
+
execa: 5.1.1
13621
13621
+
jest-util: 29.7.0
13622
13622
+
p-limit: 3.1.0
13623
13623
+
13015
13624
jest-changed-files@30.2.0:
13016
13625
dependencies:
13017
13626
execa: 5.1.1
13018
13627
jest-util: 30.2.0
13019
13628
p-limit: 3.1.0
13020
13629
13630
13630
+
jest-circus@29.7.0:
13631
13631
+
dependencies:
13632
13632
+
'@jest/environment': 29.7.0
13633
13633
+
'@jest/expect': 29.7.0
13634
13634
+
'@jest/test-result': 29.7.0
13635
13635
+
'@jest/types': 29.6.3
13636
13636
+
'@types/node': 22.18.8
13637
13637
+
chalk: 4.1.2
13638
13638
+
co: 4.6.0
13639
13639
+
dedent: 1.7.0
13640
13640
+
is-generator-fn: 2.1.0
13641
13641
+
jest-each: 29.7.0
13642
13642
+
jest-matcher-utils: 29.7.0
13643
13643
+
jest-message-util: 29.7.0
13644
13644
+
jest-runtime: 29.7.0
13645
13645
+
jest-snapshot: 29.7.0
13646
13646
+
jest-util: 29.7.0
13647
13647
+
p-limit: 3.1.0
13648
13648
+
pretty-format: 29.7.0
13649
13649
+
pure-rand: 6.1.0
13650
13650
+
slash: 3.0.0
13651
13651
+
stack-utils: 2.0.6
13652
13652
+
transitivePeerDependencies:
13653
13653
+
- babel-plugin-macros
13654
13654
+
- supports-color
13655
13655
+
13021
13656
jest-circus@30.2.0:
13022
13657
dependencies:
13023
13658
'@jest/environment': 30.2.0
13024
13659
'@jest/expect': 30.2.0
13025
13660
'@jest/test-result': 30.2.0
13026
13661
'@jest/types': 30.2.0
13027
13027
-
'@types/node': 22.10.2
13662
13662
+
'@types/node': 22.18.8
13028
13663
chalk: 4.1.2
13029
13664
co: 4.6.0
13030
13665
dedent: 1.7.0
···
13044
13679
- babel-plugin-macros
13045
13680
- supports-color
13046
13681
13047
13047
-
jest-cli@30.2.0(@types/node@20.17.10):
13682
13682
+
jest-cli@29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)):
13048
13683
dependencies:
13049
13049
-
'@jest/core': 30.2.0(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))
13050
13050
-
'@jest/test-result': 30.2.0
13051
13051
-
'@jest/types': 30.2.0
13684
13684
+
'@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))
13685
13685
+
'@jest/test-result': 29.7.0
13686
13686
+
'@jest/types': 29.6.3
13052
13687
chalk: 4.1.2
13053
13053
-
exit-x: 0.2.2
13688
13688
+
create-jest: 29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))
13689
13689
+
exit: 0.1.2
13054
13690
import-local: 3.2.0
13055
13055
-
jest-config: 30.2.0(@types/node@20.17.10)
13056
13056
-
jest-util: 30.2.0
13057
13057
-
jest-validate: 30.2.0
13691
13691
+
jest-config: 29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))
13692
13692
+
jest-util: 29.7.0
13693
13693
+
jest-validate: 29.7.0
13058
13694
yargs: 17.7.2
13059
13695
transitivePeerDependencies:
13060
13696
- '@types/node'
13061
13697
- babel-plugin-macros
13062
13062
-
- esbuild-register
13063
13698
- supports-color
13064
13699
- ts-node
13065
13700
13066
13066
-
jest-cli@30.2.0(@types/node@22.10.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)):
13701
13701
+
jest-cli@30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)):
13067
13702
dependencies:
13068
13068
-
'@jest/core': 30.2.0(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))
13703
13703
+
'@jest/core': 30.2.0(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))
13069
13704
'@jest/test-result': 30.2.0
13070
13705
'@jest/types': 30.2.0
13071
13706
chalk: 4.1.2
13072
13707
exit-x: 0.2.2
13073
13708
import-local: 3.2.0
13074
13074
-
jest-config: 30.2.0(@types/node@22.10.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))
13709
13709
+
jest-config: 30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))
13075
13710
jest-util: 30.2.0
13076
13711
jest-validate: 30.2.0
13077
13712
yargs: 17.7.2
···
13082
13717
- supports-color
13083
13718
- ts-node
13084
13719
13085
13085
-
jest-config@30.2.0(@types/node@20.17.10):
13720
13720
+
jest-config@29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)):
13086
13721
dependencies:
13087
13722
'@babel/core': 7.28.4
13088
13088
-
'@jest/get-type': 30.1.0
13089
13089
-
'@jest/pattern': 30.0.1
13090
13090
-
'@jest/test-sequencer': 30.2.0
13091
13091
-
'@jest/types': 30.2.0
13092
13092
-
babel-jest: 30.2.0(@babel/core@7.28.4)
13723
13723
+
'@jest/test-sequencer': 29.7.0
13724
13724
+
'@jest/types': 29.6.3
13725
13725
+
babel-jest: 29.7.0(@babel/core@7.28.4)
13093
13726
chalk: 4.1.2
13094
13094
-
ci-info: 4.3.0
13727
13727
+
ci-info: 3.9.0
13095
13728
deepmerge: 4.3.1
13096
13096
-
glob: 10.4.5
13729
13729
+
glob: 7.2.3
13097
13730
graceful-fs: 4.2.11
13098
13098
-
jest-circus: 30.2.0
13099
13099
-
jest-docblock: 30.2.0
13100
13100
-
jest-environment-node: 30.2.0
13101
13101
-
jest-regex-util: 30.0.1
13102
13102
-
jest-resolve: 30.2.0
13103
13103
-
jest-runner: 30.2.0
13104
13104
-
jest-util: 30.2.0
13105
13105
-
jest-validate: 30.2.0
13731
13731
+
jest-circus: 29.7.0
13732
13732
+
jest-environment-node: 29.7.0
13733
13733
+
jest-get-type: 29.6.3
13734
13734
+
jest-regex-util: 29.6.3
13735
13735
+
jest-resolve: 29.7.0
13736
13736
+
jest-runner: 29.7.0
13737
13737
+
jest-util: 29.7.0
13738
13738
+
jest-validate: 29.7.0
13106
13739
micromatch: 4.0.8
13107
13740
parse-json: 5.2.0
13108
13108
-
pretty-format: 30.2.0
13741
13741
+
pretty-format: 29.7.0
13109
13742
slash: 3.0.0
13110
13743
strip-json-comments: 3.1.1
13111
13744
optionalDependencies:
13112
13112
-
'@types/node': 20.17.10
13745
13745
+
'@types/node': 22.18.8
13746
13746
+
ts-node: 10.9.2(@types/node@22.18.8)(typescript@5.9.3)
13113
13747
transitivePeerDependencies:
13114
13748
- babel-plugin-macros
13115
13749
- supports-color
13116
13750
13117
13117
-
jest-config@30.2.0(@types/node@22.10.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)):
13751
13751
+
jest-config@30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)):
13118
13752
dependencies:
13119
13753
'@babel/core': 7.28.4
13120
13754
'@jest/get-type': 30.1.0
···
13141
13775
slash: 3.0.0
13142
13776
strip-json-comments: 3.1.1
13143
13777
optionalDependencies:
13144
13144
-
'@types/node': 22.10.2
13145
13145
-
ts-node: 10.9.2(@types/node@22.10.2)(typescript@5.8.3)
13778
13778
+
'@types/node': 22.18.8
13779
13779
+
ts-node: 10.9.2(@types/node@22.18.8)(typescript@5.9.3)
13146
13780
transitivePeerDependencies:
13147
13781
- babel-plugin-macros
13148
13782
- supports-color
···
13160
13794
'@jest/get-type': 30.1.0
13161
13795
chalk: 4.1.2
13162
13796
pretty-format: 30.2.0
13797
13797
+
13798
13798
+
jest-docblock@29.7.0:
13799
13799
+
dependencies:
13800
13800
+
detect-newline: 3.1.0
13163
13801
13164
13802
jest-docblock@30.2.0:
13165
13803
dependencies:
13166
13804
detect-newline: 3.1.0
13167
13805
13806
13806
+
jest-each@29.7.0:
13807
13807
+
dependencies:
13808
13808
+
'@jest/types': 29.6.3
13809
13809
+
chalk: 4.1.2
13810
13810
+
jest-get-type: 29.6.3
13811
13811
+
jest-util: 29.7.0
13812
13812
+
pretty-format: 29.7.0
13813
13813
+
13168
13814
jest-each@30.2.0:
13169
13815
dependencies:
13170
13816
'@jest/get-type': 30.1.0
···
13179
13825
'@jest/fake-timers': 29.7.0
13180
13826
'@jest/types': 29.6.3
13181
13827
'@types/jsdom': 20.0.1
13182
13182
-
'@types/node': 22.10.2
13828
13828
+
'@types/node': 22.18.8
13183
13829
jest-mock: 29.7.0
13184
13830
jest-util: 29.7.0
13185
13831
jsdom: 20.0.3
···
13193
13839
'@jest/environment': 29.7.0
13194
13840
'@jest/fake-timers': 29.7.0
13195
13841
'@jest/types': 29.6.3
13196
13196
-
'@types/node': 22.10.2
13842
13842
+
'@types/node': 22.18.8
13197
13843
jest-mock: 29.7.0
13198
13844
jest-util: 29.7.0
13199
13845
···
13202
13848
'@jest/environment': 30.2.0
13203
13849
'@jest/fake-timers': 30.2.0
13204
13850
'@jest/types': 30.2.0
13205
13205
-
'@types/node': 22.10.2
13851
13851
+
'@types/node': 22.18.8
13206
13852
jest-mock: 30.2.0
13207
13853
jest-util: 30.2.0
13208
13854
jest-validate: 30.2.0
13209
13855
13210
13210
-
jest-expo@54.0.12(@babel/core@7.28.4)(expo@53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(jest@30.2.0(@types/node@20.17.10))(react-dom@19.0.0(react@19.0.0))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(webpack@5.97.1):
13856
13856
+
jest-expo@54.0.12(@babel/core@7.28.4)(expo@54.0.12)(jest@30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)))(react-dom@19.2.0(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)(webpack@5.97.1):
13211
13857
dependencies:
13212
13858
'@expo/config': 12.0.10
13213
13859
'@expo/json-file': 10.0.7
13214
13860
'@jest/create-cache-key-function': 29.7.0
13215
13861
'@jest/globals': 29.7.0
13216
13862
babel-jest: 29.7.0(@babel/core@7.28.4)
13217
13217
-
expo: 53.0.20(@babel/core@7.28.4)(@expo/metro-runtime@5.0.4(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)))(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
13863
13863
+
expo: 54.0.12(@babel/core@7.28.4)(@expo/metro-runtime@6.1.2)(expo-router@6.0.10)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
13218
13864
jest-environment-jsdom: 29.7.0
13219
13865
jest-snapshot: 29.7.0
13220
13866
jest-watch-select-projects: 2.0.0
13221
13221
-
jest-watch-typeahead: 2.2.1(jest@30.2.0(@types/node@20.17.10))
13867
13867
+
jest-watch-typeahead: 2.2.1(jest@30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)))
13222
13868
json5: 2.2.3
13223
13869
lodash: 4.17.21
13224
13224
-
react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
13225
13225
-
react-server-dom-webpack: 19.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(webpack@5.97.1)
13226
13226
-
react-test-renderer: 19.1.0(react@19.0.0)
13870
13870
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
13871
13871
+
react-server-dom-webpack: 19.0.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(webpack@5.97.1)
13872
13872
+
react-test-renderer: 19.1.0(react@19.2.0)
13227
13873
server-only: 0.0.1
13228
13874
stacktrace-js: 2.0.2
13229
13875
transitivePeerDependencies:
···
13243
13889
dependencies:
13244
13890
'@jest/types': 29.6.3
13245
13891
'@types/graceful-fs': 4.1.9
13246
13246
-
'@types/node': 22.10.2
13892
13892
+
'@types/node': 22.18.8
13247
13893
anymatch: 3.1.3
13248
13894
fb-watchman: 2.0.2
13249
13895
graceful-fs: 4.2.11
···
13258
13904
jest-haste-map@30.2.0:
13259
13905
dependencies:
13260
13906
'@jest/types': 30.2.0
13261
13261
-
'@types/node': 22.10.2
13907
13907
+
'@types/node': 22.18.8
13262
13908
anymatch: 3.1.3
13263
13909
fb-watchman: 2.0.2
13264
13910
graceful-fs: 4.2.11
···
13269
13915
walker: 1.0.8
13270
13916
optionalDependencies:
13271
13917
fsevents: 2.3.3
13918
13918
+
13919
13919
+
jest-leak-detector@29.7.0:
13920
13920
+
dependencies:
13921
13921
+
jest-get-type: 29.6.3
13922
13922
+
pretty-format: 29.7.0
13272
13923
13273
13924
jest-leak-detector@30.2.0:
13274
13925
dependencies:
···
13316
13967
jest-mock@29.7.0:
13317
13968
dependencies:
13318
13969
'@jest/types': 29.6.3
13319
13319
-
'@types/node': 22.10.2
13970
13970
+
'@types/node': 22.18.8
13320
13971
jest-util: 29.7.0
13321
13972
13322
13973
jest-mock@30.2.0:
13323
13974
dependencies:
13324
13975
'@jest/types': 30.2.0
13325
13325
-
'@types/node': 22.10.2
13976
13976
+
'@types/node': 22.18.8
13326
13977
jest-util: 30.2.0
13327
13978
13979
13979
+
jest-pnp-resolver@1.2.3(jest-resolve@29.7.0):
13980
13980
+
optionalDependencies:
13981
13981
+
jest-resolve: 29.7.0
13982
13982
+
13328
13983
jest-pnp-resolver@1.2.3(jest-resolve@30.2.0):
13329
13984
optionalDependencies:
13330
13985
jest-resolve: 30.2.0
···
13333
13988
13334
13989
jest-regex-util@30.0.1: {}
13335
13990
13991
13991
+
jest-resolve-dependencies@29.7.0:
13992
13992
+
dependencies:
13993
13993
+
jest-regex-util: 29.6.3
13994
13994
+
jest-snapshot: 29.7.0
13995
13995
+
transitivePeerDependencies:
13996
13996
+
- supports-color
13997
13997
+
13336
13998
jest-resolve-dependencies@30.2.0:
13337
13999
dependencies:
13338
14000
jest-regex-util: 30.0.1
···
13340
14002
transitivePeerDependencies:
13341
14003
- supports-color
13342
14004
14005
14005
+
jest-resolve@29.7.0:
14006
14006
+
dependencies:
14007
14007
+
chalk: 4.1.2
14008
14008
+
graceful-fs: 4.2.11
14009
14009
+
jest-haste-map: 29.7.0
14010
14010
+
jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0)
14011
14011
+
jest-util: 29.7.0
14012
14012
+
jest-validate: 29.7.0
14013
14013
+
resolve: 1.22.10
14014
14014
+
resolve.exports: 2.0.3
14015
14015
+
slash: 3.0.0
14016
14016
+
13343
14017
jest-resolve@30.2.0:
13344
14018
dependencies:
13345
14019
chalk: 4.1.2
···
13351
14025
slash: 3.0.0
13352
14026
unrs-resolver: 1.11.1
13353
14027
14028
14028
+
jest-runner@29.7.0:
14029
14029
+
dependencies:
14030
14030
+
'@jest/console': 29.7.0
14031
14031
+
'@jest/environment': 29.7.0
14032
14032
+
'@jest/test-result': 29.7.0
14033
14033
+
'@jest/transform': 29.7.0
14034
14034
+
'@jest/types': 29.6.3
14035
14035
+
'@types/node': 22.18.8
14036
14036
+
chalk: 4.1.2
14037
14037
+
emittery: 0.13.1
14038
14038
+
graceful-fs: 4.2.11
14039
14039
+
jest-docblock: 29.7.0
14040
14040
+
jest-environment-node: 29.7.0
14041
14041
+
jest-haste-map: 29.7.0
14042
14042
+
jest-leak-detector: 29.7.0
14043
14043
+
jest-message-util: 29.7.0
14044
14044
+
jest-resolve: 29.7.0
14045
14045
+
jest-runtime: 29.7.0
14046
14046
+
jest-util: 29.7.0
14047
14047
+
jest-watcher: 29.7.0
14048
14048
+
jest-worker: 29.7.0
14049
14049
+
p-limit: 3.1.0
14050
14050
+
source-map-support: 0.5.13
14051
14051
+
transitivePeerDependencies:
14052
14052
+
- supports-color
14053
14053
+
13354
14054
jest-runner@30.2.0:
13355
14055
dependencies:
13356
14056
'@jest/console': 30.2.0
···
13358
14058
'@jest/test-result': 30.2.0
13359
14059
'@jest/transform': 30.2.0
13360
14060
'@jest/types': 30.2.0
13361
13361
-
'@types/node': 22.10.2
14061
14061
+
'@types/node': 22.18.8
13362
14062
chalk: 4.1.2
13363
14063
emittery: 0.13.1
13364
14064
exit-x: 0.2.2
···
13378
14078
transitivePeerDependencies:
13379
14079
- supports-color
13380
14080
14081
14081
+
jest-runtime@29.7.0:
14082
14082
+
dependencies:
14083
14083
+
'@jest/environment': 29.7.0
14084
14084
+
'@jest/fake-timers': 29.7.0
14085
14085
+
'@jest/globals': 29.7.0
14086
14086
+
'@jest/source-map': 29.6.3
14087
14087
+
'@jest/test-result': 29.7.0
14088
14088
+
'@jest/transform': 29.7.0
14089
14089
+
'@jest/types': 29.6.3
14090
14090
+
'@types/node': 22.18.8
14091
14091
+
chalk: 4.1.2
14092
14092
+
cjs-module-lexer: 1.4.3
14093
14093
+
collect-v8-coverage: 1.0.2
14094
14094
+
glob: 7.2.3
14095
14095
+
graceful-fs: 4.2.11
14096
14096
+
jest-haste-map: 29.7.0
14097
14097
+
jest-message-util: 29.7.0
14098
14098
+
jest-mock: 29.7.0
14099
14099
+
jest-regex-util: 29.6.3
14100
14100
+
jest-resolve: 29.7.0
14101
14101
+
jest-snapshot: 29.7.0
14102
14102
+
jest-util: 29.7.0
14103
14103
+
slash: 3.0.0
14104
14104
+
strip-bom: 4.0.0
14105
14105
+
transitivePeerDependencies:
14106
14106
+
- supports-color
14107
14107
+
13381
14108
jest-runtime@30.2.0:
13382
14109
dependencies:
13383
14110
'@jest/environment': 30.2.0
···
13387
14114
'@jest/test-result': 30.2.0
13388
14115
'@jest/transform': 30.2.0
13389
14116
'@jest/types': 30.2.0
13390
13390
-
'@types/node': 22.10.2
14117
14117
+
'@types/node': 22.18.8
13391
14118
chalk: 4.1.2
13392
14119
cjs-module-lexer: 2.1.0
13393
14120
collect-v8-coverage: 1.0.2
···
13459
14186
jest-util@29.7.0:
13460
14187
dependencies:
13461
14188
'@jest/types': 29.6.3
13462
13462
-
'@types/node': 22.10.2
14189
14189
+
'@types/node': 22.18.8
13463
14190
chalk: 4.1.2
13464
14191
ci-info: 3.9.0
13465
14192
graceful-fs: 4.2.11
···
13468
14195
jest-util@30.2.0:
13469
14196
dependencies:
13470
14197
'@jest/types': 30.2.0
13471
13471
-
'@types/node': 22.10.2
14198
14198
+
'@types/node': 22.18.8
13472
14199
chalk: 4.1.2
13473
14200
ci-info: 4.3.0
13474
14201
graceful-fs: 4.2.11
13475
13475
-
picomatch: 4.0.2
14202
14202
+
picomatch: 4.0.3
13476
14203
13477
14204
jest-validate@29.7.0:
13478
14205
dependencies:
···
13498
14225
chalk: 3.0.0
13499
14226
prompts: 2.4.2
13500
14227
13501
13501
-
jest-watch-typeahead@2.2.1(jest@30.2.0(@types/node@20.17.10)):
14228
14228
+
jest-watch-typeahead@2.2.1(jest@30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))):
13502
14229
dependencies:
13503
14230
ansi-escapes: 6.2.1
13504
14231
chalk: 4.1.2
13505
13505
-
jest: 30.2.0(@types/node@20.17.10)
14232
14232
+
jest: 30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))
13506
14233
jest-regex-util: 29.6.3
13507
14234
jest-watcher: 29.7.0
13508
14235
slash: 5.1.0
13509
14236
string-length: 5.0.1
13510
13510
-
strip-ansi: 7.1.0
14237
14237
+
strip-ansi: 7.1.2
13511
14238
13512
14239
jest-watcher@29.7.0:
13513
14240
dependencies:
13514
14241
'@jest/test-result': 29.7.0
13515
14242
'@jest/types': 29.6.3
13516
13516
-
'@types/node': 22.10.2
14243
14243
+
'@types/node': 22.18.8
13517
14244
ansi-escapes: 4.3.2
13518
14245
chalk: 4.1.2
13519
14246
emittery: 0.13.1
···
13524
14251
dependencies:
13525
14252
'@jest/test-result': 30.2.0
13526
14253
'@jest/types': 30.2.0
13527
13527
-
'@types/node': 22.10.2
14254
14254
+
'@types/node': 22.18.8
13528
14255
ansi-escapes: 4.3.2
13529
14256
chalk: 4.1.2
13530
14257
emittery: 0.13.1
···
13533
14260
13534
14261
jest-worker@27.5.1:
13535
14262
dependencies:
13536
13536
-
'@types/node': 22.10.2
14263
14263
+
'@types/node': 22.18.8
13537
14264
merge-stream: 2.0.0
13538
14265
supports-color: 8.1.1
13539
14266
13540
14267
jest-worker@29.7.0:
13541
14268
dependencies:
13542
13542
-
'@types/node': 22.10.2
14269
14269
+
'@types/node': 22.18.8
13543
14270
jest-util: 29.7.0
13544
14271
merge-stream: 2.0.0
13545
14272
supports-color: 8.1.1
13546
14273
13547
14274
jest-worker@30.2.0:
13548
14275
dependencies:
13549
13549
-
'@types/node': 22.10.2
14276
14276
+
'@types/node': 22.18.8
13550
14277
'@ungap/structured-clone': 1.3.0
13551
14278
jest-util: 30.2.0
13552
14279
merge-stream: 2.0.0
13553
14280
supports-color: 8.1.1
13554
14281
13555
13555
-
jest@30.2.0(@types/node@20.17.10):
14282
14282
+
jest@29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)):
13556
14283
dependencies:
13557
13557
-
'@jest/core': 30.2.0(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))
13558
13558
-
'@jest/types': 30.2.0
14284
14284
+
'@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))
14285
14285
+
'@jest/types': 29.6.3
13559
14286
import-local: 3.2.0
13560
13560
-
jest-cli: 30.2.0(@types/node@20.17.10)
14287
14287
+
jest-cli: 29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))
13561
14288
transitivePeerDependencies:
13562
14289
- '@types/node'
13563
14290
- babel-plugin-macros
13564
13564
-
- esbuild-register
13565
14291
- supports-color
13566
14292
- ts-node
13567
14293
13568
13568
-
jest@30.2.0(@types/node@22.10.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)):
14294
14294
+
jest@30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3)):
13569
14295
dependencies:
13570
13570
-
'@jest/core': 30.2.0(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))
14296
14296
+
'@jest/core': 30.2.0(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))
13571
14297
'@jest/types': 30.2.0
13572
14298
import-local: 3.2.0
13573
13573
-
jest-cli: 30.2.0(@types/node@22.10.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))
14299
14299
+
jest-cli: 30.2.0(@types/node@22.18.8)(ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3))
13574
14300
transitivePeerDependencies:
13575
14301
- '@types/node'
13576
14302
- babel-plugin-macros
···
13602
14328
jsdom@20.0.3:
13603
14329
dependencies:
13604
14330
abab: 2.0.6
13605
13605
-
acorn: 8.14.0
14331
14331
+
acorn: 8.15.0
13606
14332
acorn-globals: 7.0.1
13607
14333
cssom: 0.5.0
13608
14334
cssstyle: 2.3.0
···
13625
14351
whatwg-encoding: 2.0.0
13626
14352
whatwg-mimetype: 3.0.0
13627
14353
whatwg-url: 11.0.0
13628
13628
-
ws: 8.18.0
14354
14354
+
ws: 8.18.3
13629
14355
xml-name-validator: 4.0.0
13630
14356
transitivePeerDependencies:
13631
14357
- bufferutil
···
13671
14397
13672
14398
jsx-ast-utils@3.3.5:
13673
14399
dependencies:
13674
13674
-
array-includes: 3.1.8
14400
14400
+
array-includes: 3.1.9
13675
14401
array.prototype.flat: 1.3.3
13676
14402
object.assign: 4.1.7
13677
14403
object.values: 1.2.1
···
13706
14432
transitivePeerDependencies:
13707
14433
- supports-color
13708
14434
14435
14435
+
lightningcss-android-arm64@1.30.2:
14436
14436
+
optional: true
14437
14437
+
13709
14438
lightningcss-darwin-arm64@1.27.0:
13710
14439
optional: true
13711
14440
13712
13712
-
lightningcss-darwin-arm64@1.28.2:
14441
14441
+
lightningcss-darwin-arm64@1.30.2:
13713
14442
optional: true
13714
14443
13715
14444
lightningcss-darwin-x64@1.27.0:
13716
14445
optional: true
13717
14446
13718
13718
-
lightningcss-darwin-x64@1.28.2:
14447
14447
+
lightningcss-darwin-x64@1.30.2:
13719
14448
optional: true
13720
14449
13721
14450
lightningcss-freebsd-x64@1.27.0:
13722
14451
optional: true
13723
14452
13724
13724
-
lightningcss-freebsd-x64@1.28.2:
14453
14453
+
lightningcss-freebsd-x64@1.30.2:
13725
14454
optional: true
13726
14455
13727
14456
lightningcss-linux-arm-gnueabihf@1.27.0:
13728
14457
optional: true
13729
14458
13730
13730
-
lightningcss-linux-arm-gnueabihf@1.28.2:
14459
14459
+
lightningcss-linux-arm-gnueabihf@1.30.2:
13731
14460
optional: true
13732
14461
13733
14462
lightningcss-linux-arm64-gnu@1.27.0:
13734
14463
optional: true
13735
14464
13736
13736
-
lightningcss-linux-arm64-gnu@1.28.2:
14465
14465
+
lightningcss-linux-arm64-gnu@1.30.2:
13737
14466
optional: true
13738
14467
13739
14468
lightningcss-linux-arm64-musl@1.27.0:
13740
14469
optional: true
13741
14470
13742
13742
-
lightningcss-linux-arm64-musl@1.28.2:
14471
14471
+
lightningcss-linux-arm64-musl@1.30.2:
13743
14472
optional: true
13744
14473
13745
14474
lightningcss-linux-x64-gnu@1.27.0:
13746
14475
optional: true
13747
14476
13748
13748
-
lightningcss-linux-x64-gnu@1.28.2:
14477
14477
+
lightningcss-linux-x64-gnu@1.30.2:
13749
14478
optional: true
13750
14479
13751
14480
lightningcss-linux-x64-musl@1.27.0:
13752
14481
optional: true
13753
14482
13754
13754
-
lightningcss-linux-x64-musl@1.28.2:
14483
14483
+
lightningcss-linux-x64-musl@1.30.2:
13755
14484
optional: true
13756
14485
13757
14486
lightningcss-win32-arm64-msvc@1.27.0:
13758
14487
optional: true
13759
14488
13760
13760
-
lightningcss-win32-arm64-msvc@1.28.2:
14489
14489
+
lightningcss-win32-arm64-msvc@1.30.2:
13761
14490
optional: true
13762
14491
13763
14492
lightningcss-win32-x64-msvc@1.27.0:
13764
14493
optional: true
13765
14494
13766
13766
-
lightningcss-win32-x64-msvc@1.28.2:
14495
14495
+
lightningcss-win32-x64-msvc@1.30.2:
13767
14496
optional: true
13768
14497
13769
14498
lightningcss@1.27.0:
···
13781
14510
lightningcss-win32-arm64-msvc: 1.27.0
13782
14511
lightningcss-win32-x64-msvc: 1.27.0
13783
14512
13784
13784
-
lightningcss@1.28.2:
14513
14513
+
lightningcss@1.30.2:
13785
14514
dependencies:
13786
13786
-
detect-libc: 1.0.3
14515
14515
+
detect-libc: 2.0.3
13787
14516
optionalDependencies:
13788
13788
-
lightningcss-darwin-arm64: 1.28.2
13789
13789
-
lightningcss-darwin-x64: 1.28.2
13790
13790
-
lightningcss-freebsd-x64: 1.28.2
13791
13791
-
lightningcss-linux-arm-gnueabihf: 1.28.2
13792
13792
-
lightningcss-linux-arm64-gnu: 1.28.2
13793
13793
-
lightningcss-linux-arm64-musl: 1.28.2
13794
13794
-
lightningcss-linux-x64-gnu: 1.28.2
13795
13795
-
lightningcss-linux-x64-musl: 1.28.2
13796
13796
-
lightningcss-win32-arm64-msvc: 1.28.2
13797
13797
-
lightningcss-win32-x64-msvc: 1.28.2
14517
14517
+
lightningcss-android-arm64: 1.30.2
14518
14518
+
lightningcss-darwin-arm64: 1.30.2
14519
14519
+
lightningcss-darwin-x64: 1.30.2
14520
14520
+
lightningcss-freebsd-x64: 1.30.2
14521
14521
+
lightningcss-linux-arm-gnueabihf: 1.30.2
14522
14522
+
lightningcss-linux-arm64-gnu: 1.30.2
14523
14523
+
lightningcss-linux-arm64-musl: 1.30.2
14524
14524
+
lightningcss-linux-x64-gnu: 1.30.2
14525
14525
+
lightningcss-linux-x64-musl: 1.30.2
14526
14526
+
lightningcss-win32-arm64-msvc: 1.30.2
14527
14527
+
lightningcss-win32-x64-msvc: 1.30.2
13798
14528
13799
14529
lilconfig@3.1.3: {}
13800
14530
···
13847
14577
dependencies:
13848
14578
yallist: 3.1.1
13849
14579
13850
13850
-
lucide-react-native@0.507.0(react-native-svg@15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
14580
14580
+
lucide-react-native@0.507.0(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
13851
14581
dependencies:
13852
13852
-
react: 19.0.0
13853
13853
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
13854
13854
-
react-native-svg: 15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
14582
14582
+
react: 19.1.0
14583
14583
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
14584
14584
+
react-native-svg: 15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
13855
14585
13856
14586
make-dir@4.0.0:
13857
14587
dependencies:
···
13887
14617
13888
14618
methods@1.1.2: {}
13889
14619
13890
13890
-
metro-babel-transformer@0.82.4:
14620
14620
+
metro-babel-transformer@0.83.1:
13891
14621
dependencies:
13892
14622
'@babel/core': 7.28.4
13893
14623
flow-enums-runtime: 0.0.6
13894
13894
-
hermes-parser: 0.28.1
14624
14624
+
hermes-parser: 0.29.1
13895
14625
nullthrows: 1.1.1
13896
14626
transitivePeerDependencies:
13897
14627
- supports-color
13898
14628
13899
13899
-
metro-cache-key@0.82.4:
14629
14629
+
metro-cache-key@0.83.1:
13900
14630
dependencies:
13901
14631
flow-enums-runtime: 0.0.6
13902
14632
13903
13903
-
metro-cache@0.82.4:
14633
14633
+
metro-cache@0.83.1:
13904
14634
dependencies:
13905
14635
exponential-backoff: 3.1.1
13906
14636
flow-enums-runtime: 0.0.6
13907
14637
https-proxy-agent: 7.0.6
13908
13908
-
metro-core: 0.82.4
14638
14638
+
metro-core: 0.83.1
13909
14639
transitivePeerDependencies:
13910
14640
- supports-color
13911
14641
13912
13912
-
metro-config@0.82.4:
14642
14642
+
metro-config@0.83.1:
13913
14643
dependencies:
13914
14644
connect: 3.7.0
13915
14645
cosmiconfig: 5.2.1
13916
14646
flow-enums-runtime: 0.0.6
13917
14647
jest-validate: 29.7.0
13918
13918
-
metro: 0.82.4
13919
13919
-
metro-cache: 0.82.4
13920
13920
-
metro-core: 0.82.4
13921
13921
-
metro-runtime: 0.82.4
14648
14648
+
metro: 0.83.1
14649
14649
+
metro-cache: 0.83.1
14650
14650
+
metro-core: 0.83.1
14651
14651
+
metro-runtime: 0.83.1
13922
14652
transitivePeerDependencies:
13923
14653
- bufferutil
13924
14654
- supports-color
13925
14655
- utf-8-validate
13926
14656
13927
13927
-
metro-core@0.82.4:
14657
14657
+
metro-core@0.83.1:
13928
14658
dependencies:
13929
14659
flow-enums-runtime: 0.0.6
13930
14660
lodash.throttle: 4.1.1
13931
13931
-
metro-resolver: 0.82.4
14661
14661
+
metro-resolver: 0.83.1
13932
14662
13933
13933
-
metro-file-map@0.82.4:
14663
14663
+
metro-file-map@0.83.1:
13934
14664
dependencies:
13935
13935
-
debug: 4.4.0
14665
14665
+
debug: 4.4.3
13936
14666
fb-watchman: 2.0.2
13937
14667
flow-enums-runtime: 0.0.6
13938
14668
graceful-fs: 4.2.11
···
13944
14674
transitivePeerDependencies:
13945
14675
- supports-color
13946
14676
13947
13947
-
metro-minify-terser@0.82.4:
14677
14677
+
metro-minify-terser@0.83.1:
13948
14678
dependencies:
13949
14679
flow-enums-runtime: 0.0.6
13950
14680
terser: 5.37.0
13951
14681
13952
13952
-
metro-resolver@0.82.4:
14682
14682
+
metro-resolver@0.83.1:
13953
14683
dependencies:
13954
14684
flow-enums-runtime: 0.0.6
13955
14685
13956
13956
-
metro-runtime@0.82.4:
14686
14686
+
metro-runtime@0.83.1:
13957
14687
dependencies:
13958
13958
-
'@babel/runtime': 7.26.0
14688
14688
+
'@babel/runtime': 7.28.4
13959
14689
flow-enums-runtime: 0.0.6
13960
14690
13961
13961
-
metro-source-map@0.82.4:
14691
14691
+
metro-source-map@0.83.1:
13962
14692
dependencies:
13963
14693
'@babel/traverse': 7.28.4
13964
14694
'@babel/traverse--for-generate-function-map': '@babel/traverse@7.28.4'
13965
14695
'@babel/types': 7.28.4
13966
14696
flow-enums-runtime: 0.0.6
13967
14697
invariant: 2.2.4
13968
13968
-
metro-symbolicate: 0.82.4
14698
14698
+
metro-symbolicate: 0.83.1
13969
14699
nullthrows: 1.1.1
13970
13970
-
ob1: 0.82.4
14700
14700
+
ob1: 0.83.1
13971
14701
source-map: 0.5.7
13972
14702
vlq: 1.0.1
13973
14703
transitivePeerDependencies:
13974
14704
- supports-color
13975
14705
13976
13976
-
metro-symbolicate@0.82.4:
14706
14706
+
metro-symbolicate@0.83.1:
13977
14707
dependencies:
13978
14708
flow-enums-runtime: 0.0.6
13979
14709
invariant: 2.2.4
13980
13980
-
metro-source-map: 0.82.4
14710
14710
+
metro-source-map: 0.83.1
13981
14711
nullthrows: 1.1.1
13982
14712
source-map: 0.5.7
13983
14713
vlq: 1.0.1
13984
14714
transitivePeerDependencies:
13985
14715
- supports-color
13986
14716
13987
13987
-
metro-transform-plugins@0.82.4:
14717
14717
+
metro-transform-plugins@0.83.1:
13988
14718
dependencies:
13989
14719
'@babel/core': 7.28.4
13990
14720
'@babel/generator': 7.28.3
···
13995
14725
transitivePeerDependencies:
13996
14726
- supports-color
13997
14727
13998
13998
-
metro-transform-worker@0.82.4:
14728
14728
+
metro-transform-worker@0.83.1:
13999
14729
dependencies:
14000
14730
'@babel/core': 7.28.4
14001
14731
'@babel/generator': 7.28.3
14002
14732
'@babel/parser': 7.28.4
14003
14733
'@babel/types': 7.28.4
14004
14734
flow-enums-runtime: 0.0.6
14005
14005
-
metro: 0.82.4
14006
14006
-
metro-babel-transformer: 0.82.4
14007
14007
-
metro-cache: 0.82.4
14008
14008
-
metro-cache-key: 0.82.4
14009
14009
-
metro-minify-terser: 0.82.4
14010
14010
-
metro-source-map: 0.82.4
14011
14011
-
metro-transform-plugins: 0.82.4
14735
14735
+
metro: 0.83.1
14736
14736
+
metro-babel-transformer: 0.83.1
14737
14737
+
metro-cache: 0.83.1
14738
14738
+
metro-cache-key: 0.83.1
14739
14739
+
metro-minify-terser: 0.83.1
14740
14740
+
metro-source-map: 0.83.1
14741
14741
+
metro-transform-plugins: 0.83.1
14012
14742
nullthrows: 1.1.1
14013
14743
transitivePeerDependencies:
14014
14744
- bufferutil
14015
14745
- supports-color
14016
14746
- utf-8-validate
14017
14747
14018
14018
-
metro@0.82.4:
14748
14748
+
metro@0.83.1:
14019
14749
dependencies:
14020
14750
'@babel/code-frame': 7.27.1
14021
14751
'@babel/core': 7.28.4
···
14028
14758
chalk: 4.1.2
14029
14759
ci-info: 2.0.0
14030
14760
connect: 3.7.0
14031
14031
-
debug: 4.4.0
14761
14761
+
debug: 4.4.3
14032
14762
error-stack-parser: 2.1.4
14033
14763
flow-enums-runtime: 0.0.6
14034
14764
graceful-fs: 4.2.11
14035
14035
-
hermes-parser: 0.28.1
14765
14765
+
hermes-parser: 0.29.1
14036
14766
image-size: 1.2.0
14037
14767
invariant: 2.2.4
14038
14768
jest-worker: 29.7.0
14039
14769
jsc-safe-url: 0.2.4
14040
14770
lodash.throttle: 4.1.1
14041
14041
-
metro-babel-transformer: 0.82.4
14042
14042
-
metro-cache: 0.82.4
14043
14043
-
metro-cache-key: 0.82.4
14044
14044
-
metro-config: 0.82.4
14045
14045
-
metro-core: 0.82.4
14046
14046
-
metro-file-map: 0.82.4
14047
14047
-
metro-resolver: 0.82.4
14048
14048
-
metro-runtime: 0.82.4
14049
14049
-
metro-source-map: 0.82.4
14050
14050
-
metro-symbolicate: 0.82.4
14051
14051
-
metro-transform-plugins: 0.82.4
14052
14052
-
metro-transform-worker: 0.82.4
14771
14771
+
metro-babel-transformer: 0.83.1
14772
14772
+
metro-cache: 0.83.1
14773
14773
+
metro-cache-key: 0.83.1
14774
14774
+
metro-config: 0.83.1
14775
14775
+
metro-core: 0.83.1
14776
14776
+
metro-file-map: 0.83.1
14777
14777
+
metro-resolver: 0.83.1
14778
14778
+
metro-runtime: 0.83.1
14779
14779
+
metro-source-map: 0.83.1
14780
14780
+
metro-symbolicate: 0.83.1
14781
14781
+
metro-transform-plugins: 0.83.1
14782
14782
+
metro-transform-worker: 0.83.1
14053
14783
mime-types: 2.1.35
14054
14784
nullthrows: 1.1.1
14055
14785
serialize-error: 2.1.0
···
14079
14809
14080
14810
mimic-fn@2.1.0: {}
14081
14811
14082
14082
-
minimatch@10.0.1:
14812
14812
+
minimatch@10.0.3:
14083
14813
dependencies:
14084
14084
-
brace-expansion: 2.0.1
14814
14814
+
'@isaacs/brace-expansion': 5.0.0
14085
14815
14086
14816
minimatch@3.1.2:
14087
14817
dependencies:
···
14133
14863
14134
14864
nanoid@3.3.11: {}
14135
14865
14136
14136
-
nanoid@3.3.8: {}
14137
14137
-
14138
14866
napi-postinstall@0.3.4: {}
14139
14867
14140
14140
-
nativewind@4.1.23(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))):
14868
14868
+
nativewind@4.2.1(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.18):
14141
14869
dependencies:
14142
14870
comment-json: 4.2.5
14143
14871
debug: 4.4.0
14144
14144
-
react-native-css-interop: 0.1.22(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)))
14145
14145
-
tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))
14872
14872
+
react-native-css-interop: 0.2.1(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.18)
14873
14873
+
tailwindcss: 3.4.18
14146
14874
transitivePeerDependencies:
14147
14875
- react
14148
14876
- react-native
···
14174
14902
14175
14903
node-int64@0.4.0: {}
14176
14904
14177
14177
-
node-releases@2.0.19: {}
14905
14905
+
node-releases@2.0.23: {}
14178
14906
14179
14907
normalize-path@3.0.0: {}
14180
14908
···
14206
14934
14207
14935
oauth-sign@0.9.0: {}
14208
14936
14209
14209
-
ob1@0.82.4:
14937
14937
+
ob1@0.83.1:
14210
14938
dependencies:
14211
14939
flow-enums-runtime: 0.0.6
14212
14940
···
14214
14942
14215
14943
object-hash@3.0.0: {}
14216
14944
14217
14217
-
object-inspect@1.13.3: {}
14945
14945
+
object-inspect@1.13.4: {}
14218
14946
14219
14947
object-keys@1.1.1: {}
14220
14948
14221
14949
object.assign@4.1.7:
14222
14950
dependencies:
14223
14951
call-bind: 1.0.8
14224
14224
-
call-bound: 1.0.3
14952
14952
+
call-bound: 1.0.4
14225
14953
define-properties: 1.2.1
14226
14226
-
es-object-atoms: 1.0.0
14954
14954
+
es-object-atoms: 1.1.1
14227
14955
has-symbols: 1.1.0
14228
14956
object-keys: 1.1.1
14229
14957
14230
14230
-
object.entries@1.1.8:
14958
14958
+
object.entries@1.1.9:
14231
14959
dependencies:
14232
14960
call-bind: 1.0.8
14961
14961
+
call-bound: 1.0.4
14233
14962
define-properties: 1.2.1
14234
14234
-
es-object-atoms: 1.0.0
14963
14963
+
es-object-atoms: 1.1.1
14235
14964
14236
14965
object.fromentries@2.0.8:
14237
14966
dependencies:
14238
14967
call-bind: 1.0.8
14239
14968
define-properties: 1.2.1
14240
14240
-
es-abstract: 1.23.8
14241
14241
-
es-object-atoms: 1.0.0
14969
14969
+
es-abstract: 1.24.0
14970
14970
+
es-object-atoms: 1.1.1
14242
14971
14243
14972
object.groupby@1.0.3:
14244
14973
dependencies:
14245
14974
call-bind: 1.0.8
14246
14975
define-properties: 1.2.1
14247
14247
-
es-abstract: 1.23.8
14976
14976
+
es-abstract: 1.24.0
14248
14977
14249
14978
object.values@1.2.1:
14250
14979
dependencies:
14251
14980
call-bind: 1.0.8
14252
14252
-
call-bound: 1.0.3
14981
14981
+
call-bound: 1.0.4
14253
14982
define-properties: 1.2.1
14254
14254
-
es-object-atoms: 1.0.0
14983
14983
+
es-object-atoms: 1.1.1
14255
14984
14256
14985
on-exit-leak-free@2.1.2: {}
14257
14986
···
14314
15043
14315
15044
own-keys@1.0.1:
14316
15045
dependencies:
14317
14317
-
get-intrinsic: 1.2.6
15046
15046
+
get-intrinsic: 1.3.0
14318
15047
object-keys: 1.1.1
14319
15048
safe-push-apply: 1.0.0
14320
15049
···
14354
15083
parse-json@5.2.0:
14355
15084
dependencies:
14356
15085
'@babel/code-frame': 7.27.1
14357
14357
-
error-ex: 1.3.2
15086
15086
+
error-ex: 1.3.4
14358
15087
json-parse-even-better-errors: 2.3.1
14359
15088
lines-and-columns: 1.2.4
14360
15089
···
14401
15130
14402
15131
path-to-regexp@0.1.12: {}
14403
15132
15133
15133
+
path-type@4.0.0: {}
15134
15134
+
14404
15135
performance-now@2.1.0: {}
14405
15136
14406
15137
picocolors@1.1.1: {}
···
14409
15140
14410
15141
picomatch@3.0.1: {}
14411
15142
14412
14412
-
picomatch@4.0.2: {}
15143
15143
+
picomatch@4.0.3: {}
14413
15144
14414
15145
pify@2.3.0: {}
14415
15146
14416
15147
pino-abstract-transport@1.2.0:
14417
15148
dependencies:
14418
14418
-
readable-stream: 4.5.2
15149
15149
+
readable-stream: 4.7.0
14419
15150
split2: 4.2.0
14420
15151
14421
15152
pino-std-serializers@6.2.2: {}
···
14433
15164
safe-stable-stringify: 2.5.0
14434
15165
sonic-boom: 3.8.1
14435
15166
thread-stream: 2.7.0
14436
14436
-
14437
14437
-
pirates@4.0.6: {}
14438
15167
14439
15168
pirates@4.0.7: {}
14440
15169
···
14456
15185
14457
15186
possible-typed-array-names@1.0.0: {}
14458
15187
15188
15188
+
possible-typed-array-names@1.1.0: {}
15189
15189
+
14459
15190
postcss-import@15.1.0(postcss@8.4.49):
14460
15191
dependencies:
14461
15192
postcss: 8.4.49
···
14463
15194
read-cache: 1.0.0
14464
15195
resolve: 1.22.10
14465
15196
14466
14466
-
postcss-js@4.0.1(postcss@8.4.49):
15197
15197
+
postcss-js@4.1.0(postcss@8.4.49):
14467
15198
dependencies:
14468
15199
camelcase-css: 2.0.1
14469
15200
postcss: 8.4.49
14470
15201
14471
14471
-
postcss-load-config@4.0.2(postcss@8.4.49)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)):
15202
15202
+
postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.4.49):
14472
15203
dependencies:
14473
15204
lilconfig: 3.1.3
14474
14474
-
yaml: 2.6.1
14475
15205
optionalDependencies:
15206
15206
+
jiti: 1.21.7
14476
15207
postcss: 8.4.49
14477
14477
-
ts-node: 10.9.2(@types/node@22.10.2)(typescript@5.8.3)
14478
15208
14479
15209
postcss-nested@6.2.0(postcss@8.4.49):
14480
15210
dependencies:
···
14490
15220
14491
15221
postcss@8.4.49:
14492
15222
dependencies:
14493
14493
-
nanoid: 3.3.8
15223
15223
+
nanoid: 3.3.11
14494
15224
picocolors: 1.1.1
14495
15225
source-map-js: 1.2.1
14496
15226
14497
15227
prelude-ls@1.2.1: {}
14498
15228
14499
14499
-
prettier-plugin-tailwindcss@0.6.12(@ianvs/prettier-plugin-sort-imports@4.5.1(prettier@3.5.3))(prettier@3.5.3):
15229
15229
+
prettier-plugin-tailwindcss@0.6.14(@ianvs/prettier-plugin-sort-imports@4.7.0(prettier@3.6.2))(prettier@3.6.2):
14500
15230
dependencies:
14501
14501
-
prettier: 3.5.3
15231
15231
+
prettier: 3.6.2
14502
15232
optionalDependencies:
14503
14503
-
'@ianvs/prettier-plugin-sort-imports': 4.5.1(prettier@3.5.3)
14504
14504
-
14505
14505
-
prettier@3.4.2: {}
15233
15233
+
'@ianvs/prettier-plugin-sort-imports': 4.7.0(prettier@3.6.2)
14506
15234
14507
14507
-
prettier@3.5.3: {}
15235
15235
+
prettier@3.6.2: {}
14508
15236
14509
15237
pretty-bytes@5.6.0: {}
14510
15238
···
14562
15290
14563
15291
punycode@2.3.1: {}
14564
15292
15293
15293
+
pure-rand@6.1.0: {}
15294
15294
+
14565
15295
pure-rand@7.0.1: {}
14566
15296
14567
15297
qrcode-terminal@0.11.0: {}
14568
15298
14569
15299
qs@6.13.0:
14570
15300
dependencies:
14571
14571
-
side-channel: 1.0.6
15301
15301
+
side-channel: 1.1.0
14572
15302
14573
15303
qs@6.5.3: {}
14574
15304
···
14611
15341
minimist: 1.2.8
14612
15342
strip-json-comments: 2.0.1
14613
15343
14614
14614
-
react-compiler-runtime@19.0.0-beta-37ed2a7-20241206(react@19.0.0):
15344
15344
+
react-compiler-runtime@19.0.0-beta-37ed2a7-20241206(react@19.1.0):
14615
15345
dependencies:
14616
14616
-
react: 19.0.0
15346
15346
+
react: 19.1.0
14617
15347
14618
14618
-
react-devtools-core@6.1.2:
15348
15348
+
react-devtools-core@6.1.5:
14619
15349
dependencies:
14620
15350
shell-quote: 1.8.2
14621
15351
ws: 7.5.10
···
14623
15353
- bufferutil
14624
15354
- utf-8-validate
14625
15355
14626
14626
-
react-dom@19.0.0(react@19.0.0):
15356
15356
+
react-dom@19.1.0(react@19.1.0):
14627
15357
dependencies:
14628
14628
-
react: 19.0.0
14629
14629
-
scheduler: 0.25.0
15358
15358
+
react: 19.1.0
15359
15359
+
scheduler: 0.26.0
15360
15360
+
15361
15361
+
react-dom@19.2.0(react@19.2.0):
15362
15362
+
dependencies:
15363
15363
+
react: 19.2.0
15364
15364
+
scheduler: 0.27.0
14630
15365
14631
15366
react-fast-compare@3.2.2: {}
14632
15367
14633
14633
-
react-freeze@1.0.4(react@19.0.0):
15368
15368
+
react-freeze@1.0.4(react@19.1.0):
15369
15369
+
dependencies:
15370
15370
+
react: 19.1.0
15371
15371
+
15372
15372
+
react-freeze@1.0.4(react@19.2.0):
14634
15373
dependencies:
14635
14635
-
react: 19.0.0
15374
15374
+
react: 19.2.0
15375
15375
+
optional: true
14636
15376
14637
15377
react-is@16.13.1: {}
14638
15378
···
14640
15380
14641
15381
react-is@19.1.0: {}
14642
15382
14643
14643
-
react-native-css-interop@0.1.18(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))):
15383
15383
+
react-is@19.2.0: {}
15384
15384
+
15385
15385
+
react-native-css-interop@0.1.22(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.18):
14644
15386
dependencies:
14645
14645
-
'@babel/helper-module-imports': 7.25.9
14646
14646
-
'@babel/traverse': 7.26.4
14647
14647
-
'@babel/types': 7.26.3
14648
14648
-
debug: 4.4.0
14649
14649
-
lightningcss: 1.27.0
14650
14650
-
react: 19.0.0
14651
14651
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
14652
14652
-
react-native-reanimated: 3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
14653
14653
-
semver: 7.6.3
14654
14654
-
tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))
15387
15387
+
'@babel/helper-module-imports': 7.27.1
15388
15388
+
'@babel/traverse': 7.28.4
15389
15389
+
'@babel/types': 7.28.4
15390
15390
+
debug: 4.4.3
15391
15391
+
lightningcss: 1.30.2
15392
15392
+
react: 19.1.0
15393
15393
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
15394
15394
+
react-native-reanimated: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
15395
15395
+
semver: 7.7.2
15396
15396
+
tailwindcss: 3.4.18
14655
15397
optionalDependencies:
14656
14656
-
react-native-safe-area-context: 5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
14657
14657
-
react-native-svg: 15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
15398
15398
+
react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
15399
15399
+
react-native-svg: 15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
14658
15400
transitivePeerDependencies:
14659
15401
- supports-color
14660
15402
14661
14661
-
react-native-css-interop@0.1.22(react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0))(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))):
15403
15403
+
react-native-css-interop@0.2.1(react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.18):
14662
15404
dependencies:
14663
15405
'@babel/helper-module-imports': 7.25.9
14664
15406
'@babel/traverse': 7.26.4
14665
14665
-
'@babel/types': 7.26.3
14666
14666
-
debug: 4.4.0
14667
14667
-
lightningcss: 1.28.2
14668
14668
-
react: 19.0.0
14669
14669
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
14670
14670
-
react-native-reanimated: 3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
15407
15407
+
'@babel/types': 7.28.4
15408
15408
+
debug: 4.4.3
15409
15409
+
lightningcss: 1.27.0
15410
15410
+
react: 19.1.0
15411
15411
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
15412
15412
+
react-native-reanimated: 4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
14671
15413
semver: 7.6.3
14672
14672
-
tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))
15414
15414
+
tailwindcss: 3.4.18
14673
15415
optionalDependencies:
14674
14674
-
react-native-safe-area-context: 5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
14675
14675
-
react-native-svg: 15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
15416
15416
+
react-native-safe-area-context: 5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
15417
15417
+
react-native-svg: 15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
14676
15418
transitivePeerDependencies:
14677
15419
- supports-color
14678
15420
14679
14679
-
react-native-edge-to-edge@1.6.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
14680
14680
-
dependencies:
14681
14681
-
react: 19.0.0
14682
14682
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
14683
14683
-
14684
14684
-
react-native-edge-to-edge@1.6.0(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
15421
15421
+
react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
14685
15422
dependencies:
14686
14686
-
react: 19.0.0
14687
14687
-
react-native: 0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0)
15423
15423
+
'@egjs/hammerjs': 2.0.17
15424
15424
+
hoist-non-react-statics: 3.3.2
15425
15425
+
invariant: 2.2.4
15426
15426
+
react: 19.1.0
15427
15427
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
14688
15428
14689
14689
-
react-native-gesture-handler@2.24.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
15429
15429
+
react-native-gesture-handler@2.28.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0):
14690
15430
dependencies:
14691
15431
'@egjs/hammerjs': 2.0.17
14692
15432
hoist-non-react-statics: 3.3.2
14693
15433
invariant: 2.2.4
14694
14694
-
react: 19.0.0
14695
14695
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
15434
15434
+
react: 19.2.0
15435
15435
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
15436
15436
+
optional: true
14696
15437
14697
14697
-
react-native-is-edge-to-edge@1.1.6(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
15438
15438
+
react-native-is-edge-to-edge@1.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
14698
15439
dependencies:
14699
14699
-
react: 19.0.0
14700
14700
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
15440
15440
+
react: 19.1.0
15441
15441
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
14701
15442
14702
14702
-
react-native-is-edge-to-edge@1.1.7(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
15443
15443
+
react-native-is-edge-to-edge@1.1.7(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0):
14703
15444
dependencies:
14704
14704
-
react: 19.0.0
14705
14705
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
15445
15445
+
react: 19.2.0
15446
15446
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
15447
15447
+
optional: true
14706
15448
14707
14707
-
react-native-quick-base64@2.1.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
15449
15449
+
react-native-is-edge-to-edge@1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
15450
15450
+
dependencies:
15451
15451
+
react: 19.1.0
15452
15452
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
15453
15453
+
15454
15454
+
react-native-is-edge-to-edge@1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0):
15455
15455
+
dependencies:
15456
15456
+
react: 19.2.0
15457
15457
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
15458
15458
+
optional: true
15459
15459
+
15460
15460
+
react-native-quick-base64@2.1.2(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
14708
15461
dependencies:
14709
15462
base64-js: 1.5.1
14710
14710
-
react: 19.0.0
14711
14711
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
15463
15463
+
react: 19.1.0
15464
15464
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
14712
15465
14713
14713
-
react-native-quick-crypto@0.7.17(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
15466
15466
+
react-native-quick-crypto@0.7.17(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
14714
15467
dependencies:
14715
14715
-
'@craftzdog/react-native-buffer': 6.0.5(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
15468
15468
+
'@craftzdog/react-native-buffer': 6.0.5(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
14716
15469
events: 3.3.0
14717
15470
readable-stream: 4.5.2
14718
15471
string_decoder: 1.3.0
···
14721
15474
- react
14722
15475
- react-native
14723
15476
14724
14724
-
react-native-reanimated@3.17.5(@babel/core@7.26.0)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
15477
15477
+
react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
15478
15478
+
dependencies:
15479
15479
+
'@babel/core': 7.28.4
15480
15480
+
react: 19.1.0
15481
15481
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
15482
15482
+
react-native-is-edge-to-edge: 1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
15483
15483
+
react-native-worklets: 0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
15484
15484
+
semver: 7.7.2
15485
15485
+
15486
15486
+
react-native-reanimated@4.1.2(@babel/core@7.28.4)(react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0))(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0):
14725
15487
dependencies:
14726
14726
-
'@babel/core': 7.26.0
14727
14727
-
'@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0)
14728
14728
-
'@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
14729
14729
-
'@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0)
14730
14730
-
'@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0)
14731
14731
-
'@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
14732
14732
-
'@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0)
14733
14733
-
'@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0)
14734
14734
-
'@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0)
14735
14735
-
'@babel/preset-typescript': 7.26.0(@babel/core@7.26.0)
14736
14736
-
convert-source-map: 2.0.0
14737
14737
-
invariant: 2.2.4
14738
14738
-
react: 19.0.0
14739
14739
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
14740
14740
-
react-native-is-edge-to-edge: 1.1.7(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
14741
14741
-
transitivePeerDependencies:
14742
14742
-
- supports-color
15488
15488
+
'@babel/core': 7.28.4
15489
15489
+
react: 19.2.0
15490
15490
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
15491
15491
+
react-native-is-edge-to-edge: 1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
15492
15492
+
react-native-worklets: 0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
15493
15493
+
semver: 7.7.2
15494
15494
+
optional: true
14743
15495
14744
14744
-
react-native-safe-area-context@5.4.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
15496
15496
+
react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
14745
15497
dependencies:
14746
14746
-
react: 19.0.0
14747
14747
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
15498
15498
+
react: 19.1.0
15499
15499
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
14748
15500
14749
14749
-
react-native-screens@4.10.0(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
15501
15501
+
react-native-safe-area-context@5.6.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0):
14750
15502
dependencies:
14751
14751
-
react: 19.0.0
14752
14752
-
react-freeze: 1.0.4(react@19.0.0)
14753
14753
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
15503
15503
+
react: 19.2.0
15504
15504
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
15505
15505
+
optional: true
15506
15506
+
15507
15507
+
react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
15508
15508
+
dependencies:
15509
15509
+
react: 19.1.0
15510
15510
+
react-freeze: 1.0.4(react@19.1.0)
15511
15511
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
15512
15512
+
react-native-is-edge-to-edge: 1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
14754
15513
warn-once: 0.1.1
14755
15514
14756
14756
-
react-native-svg@15.11.2(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0):
15515
15515
+
react-native-screens@4.16.0(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0):
15516
15516
+
dependencies:
15517
15517
+
react: 19.2.0
15518
15518
+
react-freeze: 1.0.4(react@19.2.0)
15519
15519
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
15520
15520
+
react-native-is-edge-to-edge: 1.2.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
15521
15521
+
warn-once: 0.1.1
15522
15522
+
optional: true
15523
15523
+
15524
15524
+
react-native-svg@15.12.1(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
14757
15525
dependencies:
14758
15526
css-select: 5.1.0
14759
15527
css-tree: 1.1.3
14760
14760
-
react: 19.0.0
14761
14761
-
react-native: 0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0)
15528
15528
+
react: 19.1.0
15529
15529
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
14762
15530
warn-once: 0.1.1
14763
15531
14764
14764
-
react-native-web@0.20.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
15532
15532
+
react-native-web@0.21.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
14765
15533
dependencies:
14766
14766
-
'@babel/runtime': 7.26.0
15534
15534
+
'@babel/runtime': 7.28.4
14767
15535
'@react-native/normalize-colors': 0.74.88
14768
15536
fbjs: 3.0.5
14769
15537
inline-style-prefixer: 7.0.1
14770
15538
memoize-one: 6.0.0
14771
15539
nullthrows: 1.1.1
14772
15540
postcss-value-parser: 4.2.0
14773
14773
-
react: 19.0.0
14774
14774
-
react-dom: 19.0.0(react@19.0.0)
15541
15541
+
react: 19.1.0
15542
15542
+
react-dom: 19.1.0(react@19.1.0)
14775
15543
styleq: 0.1.3
14776
15544
transitivePeerDependencies:
14777
15545
- encoding
14778
15546
14779
14779
-
react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0):
15547
15547
+
react-native-web@0.21.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
15548
15548
+
dependencies:
15549
15549
+
'@babel/runtime': 7.28.4
15550
15550
+
'@react-native/normalize-colors': 0.74.88
15551
15551
+
fbjs: 3.0.5
15552
15552
+
inline-style-prefixer: 7.0.1
15553
15553
+
memoize-one: 6.0.0
15554
15554
+
nullthrows: 1.1.1
15555
15555
+
postcss-value-parser: 4.2.0
15556
15556
+
react: 19.2.0
15557
15557
+
react-dom: 19.2.0(react@19.2.0)
15558
15558
+
styleq: 0.1.3
15559
15559
+
transitivePeerDependencies:
15560
15560
+
- encoding
15561
15561
+
optional: true
15562
15562
+
15563
15563
+
react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
15564
15564
+
dependencies:
15565
15565
+
'@babel/core': 7.28.4
15566
15566
+
'@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.4)
15567
15567
+
'@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.4)
15568
15568
+
'@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.4)
15569
15569
+
'@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.4)
15570
15570
+
'@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4)
15571
15571
+
'@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.4)
15572
15572
+
'@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.4)
15573
15573
+
'@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.4)
15574
15574
+
'@babel/preset-typescript': 7.27.1(@babel/core@7.28.4)
15575
15575
+
convert-source-map: 2.0.0
15576
15576
+
react: 19.1.0
15577
15577
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0)
15578
15578
+
semver: 7.7.2
15579
15579
+
transitivePeerDependencies:
15580
15580
+
- supports-color
15581
15581
+
15582
15582
+
react-native-worklets@0.6.0(@babel/core@7.28.4)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0):
15583
15583
+
dependencies:
15584
15584
+
'@babel/core': 7.28.4
15585
15585
+
'@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.4)
15586
15586
+
'@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.4)
15587
15587
+
'@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.4)
15588
15588
+
'@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.4)
15589
15589
+
'@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4)
15590
15590
+
'@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.4)
15591
15591
+
'@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.4)
15592
15592
+
'@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.4)
15593
15593
+
'@babel/preset-typescript': 7.27.1(@babel/core@7.28.4)
15594
15594
+
convert-source-map: 2.0.0
15595
15595
+
react: 19.2.0
15596
15596
+
react-native: 0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0)
15597
15597
+
semver: 7.7.2
15598
15598
+
transitivePeerDependencies:
15599
15599
+
- supports-color
15600
15600
+
optional: true
15601
15601
+
15602
15602
+
react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0):
14780
15603
dependencies:
14781
15604
'@jest/create-cache-key-function': 29.7.0
14782
14782
-
'@react-native/assets-registry': 0.79.6
14783
14783
-
'@react-native/codegen': 0.79.6(@babel/core@7.26.0)
14784
14784
-
'@react-native/community-cli-plugin': 0.79.6
14785
14785
-
'@react-native/gradle-plugin': 0.79.6
14786
14786
-
'@react-native/js-polyfills': 0.79.6
14787
14787
-
'@react-native/normalize-colors': 0.79.6
14788
14788
-
'@react-native/virtualized-lists': 0.79.6(@types/react@19.0.14)(react-native@0.79.6(@babel/core@7.26.0)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
15605
15605
+
'@react-native/assets-registry': 0.81.4
15606
15606
+
'@react-native/codegen': 0.81.4(@babel/core@7.28.4)
15607
15607
+
'@react-native/community-cli-plugin': 0.81.4
15608
15608
+
'@react-native/gradle-plugin': 0.81.4
15609
15609
+
'@react-native/js-polyfills': 0.81.4
15610
15610
+
'@react-native/normalize-colors': 0.81.4
15611
15611
+
'@react-native/virtualized-lists': 0.81.4(@types/react@19.1.17)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
14789
15612
abort-controller: 3.0.0
14790
15613
anser: 1.4.10
14791
15614
ansi-regex: 5.0.1
14792
14792
-
babel-jest: 29.7.0(@babel/core@7.26.0)
14793
14793
-
babel-plugin-syntax-hermes-parser: 0.25.1
15615
15615
+
babel-jest: 29.7.0(@babel/core@7.28.4)
15616
15616
+
babel-plugin-syntax-hermes-parser: 0.29.1
14794
15617
base64-js: 1.5.1
14795
14795
-
chalk: 4.1.2
14796
15618
commander: 12.1.0
14797
14797
-
event-target-shim: 5.0.1
14798
15619
flow-enums-runtime: 0.0.6
14799
15620
glob: 7.2.3
14800
15621
invariant: 2.2.4
14801
15622
jest-environment-node: 29.7.0
14802
15623
memoize-one: 5.2.1
14803
14803
-
metro-runtime: 0.82.4
14804
14804
-
metro-source-map: 0.82.4
15624
15624
+
metro-runtime: 0.83.1
15625
15625
+
metro-source-map: 0.83.1
14805
15626
nullthrows: 1.1.1
14806
15627
pretty-format: 29.7.0
14807
15628
promise: 8.3.0
14808
14808
-
react: 19.0.0
14809
14809
-
react-devtools-core: 6.1.2
15629
15629
+
react: 19.1.0
15630
15630
+
react-devtools-core: 6.1.5
14810
15631
react-refresh: 0.14.2
14811
15632
regenerator-runtime: 0.13.11
14812
14812
-
scheduler: 0.25.0
15633
15633
+
scheduler: 0.26.0
14813
15634
semver: 7.7.2
14814
15635
stacktrace-parser: 0.1.10
14815
15636
whatwg-fetch: 3.6.20
14816
15637
ws: 6.2.3
14817
15638
yargs: 17.7.2
14818
15639
optionalDependencies:
14819
14819
-
'@types/react': 19.0.14
15640
15640
+
'@types/react': 19.1.17
14820
15641
transitivePeerDependencies:
14821
15642
- '@babel/core'
14822
15643
- '@react-native-community/cli'
15644
15644
+
- '@react-native/metro-config'
14823
15645
- bufferutil
14824
15646
- supports-color
14825
15647
- utf-8-validate
14826
15648
14827
14827
-
react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0):
15649
15649
+
react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0):
14828
15650
dependencies:
14829
15651
'@jest/create-cache-key-function': 29.7.0
14830
14830
-
'@react-native/assets-registry': 0.79.6
14831
14831
-
'@react-native/codegen': 0.79.6(@babel/core@7.28.4)
14832
14832
-
'@react-native/community-cli-plugin': 0.79.6
14833
14833
-
'@react-native/gradle-plugin': 0.79.6
14834
14834
-
'@react-native/js-polyfills': 0.79.6
14835
14835
-
'@react-native/normalize-colors': 0.79.6
14836
14836
-
'@react-native/virtualized-lists': 0.79.6(@types/react@19.0.14)(react-native@0.79.6(@babel/core@7.28.4)(@types/react@19.0.14)(react@19.0.0))(react@19.0.0)
15652
15652
+
'@react-native/assets-registry': 0.81.4
15653
15653
+
'@react-native/codegen': 0.81.4(@babel/core@7.28.4)
15654
15654
+
'@react-native/community-cli-plugin': 0.81.4
15655
15655
+
'@react-native/gradle-plugin': 0.81.4
15656
15656
+
'@react-native/js-polyfills': 0.81.4
15657
15657
+
'@react-native/normalize-colors': 0.81.4
15658
15658
+
'@react-native/virtualized-lists': 0.81.4(@types/react@19.2.0)(react-native@0.81.4(@babel/core@7.28.4)(@types/react@19.2.0)(react@19.2.0))(react@19.2.0)
14837
15659
abort-controller: 3.0.0
14838
15660
anser: 1.4.10
14839
15661
ansi-regex: 5.0.1
14840
15662
babel-jest: 29.7.0(@babel/core@7.28.4)
14841
14841
-
babel-plugin-syntax-hermes-parser: 0.25.1
15663
15663
+
babel-plugin-syntax-hermes-parser: 0.29.1
14842
15664
base64-js: 1.5.1
14843
14843
-
chalk: 4.1.2
14844
15665
commander: 12.1.0
14845
14845
-
event-target-shim: 5.0.1
14846
15666
flow-enums-runtime: 0.0.6
14847
15667
glob: 7.2.3
14848
15668
invariant: 2.2.4
14849
15669
jest-environment-node: 29.7.0
14850
15670
memoize-one: 5.2.1
14851
14851
-
metro-runtime: 0.82.4
14852
14852
-
metro-source-map: 0.82.4
15671
15671
+
metro-runtime: 0.83.1
15672
15672
+
metro-source-map: 0.83.1
14853
15673
nullthrows: 1.1.1
14854
15674
pretty-format: 29.7.0
14855
15675
promise: 8.3.0
14856
14856
-
react: 19.0.0
14857
14857
-
react-devtools-core: 6.1.2
15676
15676
+
react: 19.2.0
15677
15677
+
react-devtools-core: 6.1.5
14858
15678
react-refresh: 0.14.2
14859
15679
regenerator-runtime: 0.13.11
14860
14860
-
scheduler: 0.25.0
15680
15680
+
scheduler: 0.26.0
14861
15681
semver: 7.7.2
14862
15682
stacktrace-parser: 0.1.10
14863
15683
whatwg-fetch: 3.6.20
14864
15684
ws: 6.2.3
14865
15685
yargs: 17.7.2
14866
15686
optionalDependencies:
14867
14867
-
'@types/react': 19.0.14
15687
15687
+
'@types/react': 19.2.0
14868
15688
transitivePeerDependencies:
14869
15689
- '@babel/core'
14870
15690
- '@react-native-community/cli'
15691
15691
+
- '@react-native/metro-config'
14871
15692
- bufferutil
14872
15693
- supports-color
14873
15694
- utf-8-validate
···
14876
15697
14877
15698
react-refresh@0.16.0: {}
14878
15699
14879
14879
-
react-remove-scroll-bar@2.3.8(@types/react@19.0.14)(react@19.0.0):
15700
15700
+
react-remove-scroll-bar@2.3.8(@types/react@19.1.17)(react@19.1.0):
14880
15701
dependencies:
14881
14881
-
react: 19.0.0
14882
14882
-
react-style-singleton: 2.2.3(@types/react@19.0.14)(react@19.0.0)
15702
15702
+
react: 19.1.0
15703
15703
+
react-style-singleton: 2.2.3(@types/react@19.1.17)(react@19.1.0)
14883
15704
tslib: 2.8.1
14884
15705
optionalDependencies:
14885
14885
-
'@types/react': 19.0.14
15706
15706
+
'@types/react': 19.1.17
14886
15707
14887
14887
-
react-remove-scroll@2.6.2(@types/react@19.0.14)(react@19.0.0):
15708
15708
+
react-remove-scroll-bar@2.3.8(@types/react@19.2.0)(react@19.2.0):
14888
15709
dependencies:
14889
14889
-
react: 19.0.0
14890
14890
-
react-remove-scroll-bar: 2.3.8(@types/react@19.0.14)(react@19.0.0)
14891
14891
-
react-style-singleton: 2.2.3(@types/react@19.0.14)(react@19.0.0)
15710
15710
+
react: 19.2.0
15711
15711
+
react-style-singleton: 2.2.3(@types/react@19.2.0)(react@19.2.0)
14892
15712
tslib: 2.8.1
14893
14893
-
use-callback-ref: 1.3.3(@types/react@19.0.14)(react@19.0.0)
14894
14894
-
use-sidecar: 1.1.3(@types/react@19.0.14)(react@19.0.0)
14895
15713
optionalDependencies:
14896
14896
-
'@types/react': 19.0.14
15714
15714
+
'@types/react': 19.2.0
15715
15715
+
optional: true
14897
15716
14898
14898
-
react-server-dom-webpack@19.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(webpack@5.97.1):
15717
15717
+
react-remove-scroll@2.7.1(@types/react@19.1.17)(react@19.1.0):
15718
15718
+
dependencies:
15719
15719
+
react: 19.1.0
15720
15720
+
react-remove-scroll-bar: 2.3.8(@types/react@19.1.17)(react@19.1.0)
15721
15721
+
react-style-singleton: 2.2.3(@types/react@19.1.17)(react@19.1.0)
15722
15722
+
tslib: 2.8.1
15723
15723
+
use-callback-ref: 1.3.3(@types/react@19.1.17)(react@19.1.0)
15724
15724
+
use-sidecar: 1.1.3(@types/react@19.1.17)(react@19.1.0)
15725
15725
+
optionalDependencies:
15726
15726
+
'@types/react': 19.1.17
15727
15727
+
15728
15728
+
react-remove-scroll@2.7.1(@types/react@19.2.0)(react@19.2.0):
15729
15729
+
dependencies:
15730
15730
+
react: 19.2.0
15731
15731
+
react-remove-scroll-bar: 2.3.8(@types/react@19.2.0)(react@19.2.0)
15732
15732
+
react-style-singleton: 2.2.3(@types/react@19.2.0)(react@19.2.0)
15733
15733
+
tslib: 2.8.1
15734
15734
+
use-callback-ref: 1.3.3(@types/react@19.2.0)(react@19.2.0)
15735
15735
+
use-sidecar: 1.1.3(@types/react@19.2.0)(react@19.2.0)
15736
15736
+
optionalDependencies:
15737
15737
+
'@types/react': 19.2.0
15738
15738
+
optional: true
15739
15739
+
15740
15740
+
react-server-dom-webpack@19.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(webpack@5.97.1):
15741
15741
+
dependencies:
15742
15742
+
acorn-loose: 8.5.2
15743
15743
+
neo-async: 2.6.2
15744
15744
+
react: 19.1.0
15745
15745
+
react-dom: 19.1.0(react@19.1.0)
15746
15746
+
webpack: 5.97.1
15747
15747
+
webpack-sources: 3.2.3
15748
15748
+
optional: true
15749
15749
+
15750
15750
+
react-server-dom-webpack@19.0.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(webpack@5.97.1):
14899
15751
dependencies:
14900
15752
acorn-loose: 8.5.2
14901
15753
neo-async: 2.6.2
14902
14902
-
react: 19.0.0
14903
14903
-
react-dom: 19.0.0(react@19.0.0)
15754
15754
+
react: 19.2.0
15755
15755
+
react-dom: 19.2.0(react@19.2.0)
14904
15756
webpack: 5.97.1
14905
15757
webpack-sources: 3.2.3
14906
15758
14907
14907
-
react-style-singleton@2.2.3(@types/react@19.0.14)(react@19.0.0):
15759
15759
+
react-style-singleton@2.2.3(@types/react@19.1.17)(react@19.1.0):
14908
15760
dependencies:
14909
15761
get-nonce: 1.0.1
14910
14910
-
react: 19.0.0
15762
15762
+
react: 19.1.0
14911
15763
tslib: 2.8.1
14912
15764
optionalDependencies:
14913
14913
-
'@types/react': 19.0.14
15765
15765
+
'@types/react': 19.1.17
14914
15766
14915
14915
-
react-test-renderer@19.1.0(react@19.0.0):
15767
15767
+
react-style-singleton@2.2.3(@types/react@19.2.0)(react@19.2.0):
14916
15768
dependencies:
14917
14917
-
react: 19.0.0
15769
15769
+
get-nonce: 1.0.1
15770
15770
+
react: 19.2.0
15771
15771
+
tslib: 2.8.1
15772
15772
+
optionalDependencies:
15773
15773
+
'@types/react': 19.2.0
15774
15774
+
optional: true
15775
15775
+
15776
15776
+
react-test-renderer@19.1.0(react@19.2.0):
15777
15777
+
dependencies:
15778
15778
+
react: 19.2.0
14918
15779
react-is: 19.1.0
14919
15780
scheduler: 0.26.0
14920
15781
14921
14921
-
react@19.0.0: {}
15782
15782
+
react@19.1.0: {}
15783
15783
+
15784
15784
+
react@19.2.0: {}
14922
15785
14923
15786
read-cache@1.0.0:
14924
15787
dependencies:
···
14932
15795
process: 0.11.10
14933
15796
string_decoder: 1.3.0
14934
15797
15798
15798
+
readable-stream@4.7.0:
15799
15799
+
dependencies:
15800
15800
+
abort-controller: 3.0.0
15801
15801
+
buffer: 6.0.3
15802
15802
+
events: 3.3.0
15803
15803
+
process: 0.11.10
15804
15804
+
string_decoder: 1.3.0
15805
15805
+
14935
15806
readdirp@3.6.0:
14936
15807
dependencies:
14937
15808
picomatch: 2.3.1
···
14946
15817
14947
15818
real-require@0.2.0: {}
14948
15819
14949
14949
-
reflect.getprototypeof@1.0.9:
15820
15820
+
reflect.getprototypeof@1.0.10:
14950
15821
dependencies:
14951
15822
call-bind: 1.0.8
14952
15823
define-properties: 1.2.1
14953
14953
-
dunder-proto: 1.0.1
14954
14954
-
es-abstract: 1.23.8
15824
15824
+
es-abstract: 1.24.0
14955
15825
es-errors: 1.3.0
14956
14956
-
get-intrinsic: 1.2.6
14957
14957
-
gopd: 1.2.0
15826
15826
+
es-object-atoms: 1.1.1
15827
15827
+
get-intrinsic: 1.3.0
15828
15828
+
get-proto: 1.0.1
14958
15829
which-builtin-type: 1.2.1
14959
15830
14960
15831
regenerate-unicode-properties@10.2.0:
15832
15832
+
dependencies:
15833
15833
+
regenerate: 1.4.2
15834
15834
+
15835
15835
+
regenerate-unicode-properties@10.2.2:
14961
15836
dependencies:
14962
15837
regenerate: 1.4.2
14963
15838
···
14965
15840
14966
15841
regenerator-runtime@0.13.11: {}
14967
15842
14968
14968
-
regenerator-runtime@0.14.1: {}
14969
14969
-
14970
15843
regenerator-runtime@0.9.6: {}
14971
15844
14972
15845
regenerator-transform@0.15.2:
14973
15846
dependencies:
14974
14974
-
'@babel/runtime': 7.26.0
15847
15847
+
'@babel/runtime': 7.28.4
14975
15848
14976
14976
-
regexp.prototype.flags@1.5.3:
15849
15849
+
regexp.prototype.flags@1.5.4:
14977
15850
dependencies:
14978
15851
call-bind: 1.0.8
14979
15852
define-properties: 1.2.1
14980
15853
es-errors: 1.3.0
15854
15854
+
get-proto: 1.0.1
15855
15855
+
gopd: 1.2.0
14981
15856
set-function-name: 2.0.2
14982
15857
14983
15858
regexpu-core@6.2.0:
···
14989
15864
unicode-match-property-ecmascript: 2.0.0
14990
15865
unicode-match-property-value-ecmascript: 2.2.0
14991
15866
15867
15867
+
regexpu-core@6.4.0:
15868
15868
+
dependencies:
15869
15869
+
regenerate: 1.4.2
15870
15870
+
regenerate-unicode-properties: 10.2.2
15871
15871
+
regjsgen: 0.8.0
15872
15872
+
regjsparser: 0.13.0
15873
15873
+
unicode-match-property-ecmascript: 2.0.0
15874
15874
+
unicode-match-property-value-ecmascript: 2.2.1
15875
15875
+
14992
15876
regjsgen@0.8.0: {}
14993
15877
14994
15878
regjsparser@0.12.0:
14995
15879
dependencies:
14996
15880
jsesc: 3.0.2
15881
15881
+
15882
15882
+
regjsparser@0.13.0:
15883
15883
+
dependencies:
15884
15884
+
jsesc: 3.1.0
14997
15885
14998
15886
repeat-string@1.6.1: {}
14999
15887
···
15050
15938
15051
15939
resolve-from@5.0.0: {}
15052
15940
15941
15941
+
resolve-global@1.0.0:
15942
15942
+
dependencies:
15943
15943
+
global-dirs: 0.1.1
15944
15944
+
15053
15945
resolve-pkg-maps@1.0.0: {}
15054
15946
15055
15947
resolve-workspace-root@2.0.0: {}
···
15082
15974
onetime: 2.0.1
15083
15975
signal-exit: 3.0.7
15084
15976
15085
15085
-
reusify@1.0.4: {}
15977
15977
+
reusify@1.1.0: {}
15086
15978
15087
15979
rimraf@2.7.1:
15088
15980
dependencies:
···
15110
16002
safe-array-concat@1.1.3:
15111
16003
dependencies:
15112
16004
call-bind: 1.0.8
15113
15113
-
call-bound: 1.0.3
15114
15114
-
get-intrinsic: 1.2.6
16005
16005
+
call-bound: 1.0.4
16006
16006
+
get-intrinsic: 1.3.0
15115
16007
has-symbols: 1.1.0
15116
16008
isarray: 2.0.5
15117
16009
···
15124
16016
15125
16017
safe-regex-test@1.1.0:
15126
16018
dependencies:
15127
15127
-
call-bound: 1.0.3
16019
16019
+
call-bound: 1.0.4
15128
16020
es-errors: 1.3.0
15129
16021
is-regex: 1.2.1
15130
16022
···
15138
16030
dependencies:
15139
16031
xmlchars: 2.2.0
15140
16032
15141
15141
-
scheduler@0.25.0: {}
16033
16033
+
scheduler@0.26.0: {}
15142
16034
15143
15143
-
scheduler@0.26.0: {}
16035
16035
+
scheduler@0.27.0: {}
15144
16036
15145
16037
schema-utils@3.3.0:
15146
16038
dependencies:
···
15148
16040
ajv: 6.12.6
15149
16041
ajv-keywords: 3.5.2(ajv@6.12.6)
15150
16042
15151
15151
-
schema-utils@4.3.0:
16043
16043
+
schema-utils@4.3.3:
15152
16044
dependencies:
15153
16045
'@types/json-schema': 7.0.15
15154
16046
ajv: 8.17.1
···
15212
16104
functions-have-names: 1.2.3
15213
16105
has-property-descriptors: 1.0.2
15214
16106
16107
16107
+
set-proto@1.0.0:
16108
16108
+
dependencies:
16109
16109
+
dunder-proto: 1.0.1
16110
16110
+
es-errors: 1.3.0
16111
16111
+
es-object-atoms: 1.1.1
16112
16112
+
15215
16113
setimmediate@1.0.5: {}
15216
16114
15217
16115
setprototypeof@1.2.0: {}
15218
16116
16117
16117
+
sf-symbols-typescript@2.1.0: {}
16118
16118
+
15219
16119
shallowequal@1.1.0: {}
15220
16120
15221
16121
shebang-command@2.0.0:
···
15229
16129
side-channel-list@1.0.0:
15230
16130
dependencies:
15231
16131
es-errors: 1.3.0
15232
15232
-
object-inspect: 1.13.3
16132
16132
+
object-inspect: 1.13.4
15233
16133
15234
16134
side-channel-map@1.0.1:
15235
16135
dependencies:
15236
15236
-
call-bound: 1.0.3
16136
16136
+
call-bound: 1.0.4
15237
16137
es-errors: 1.3.0
15238
15238
-
get-intrinsic: 1.2.6
15239
15239
-
object-inspect: 1.13.3
16138
16138
+
get-intrinsic: 1.3.0
16139
16139
+
object-inspect: 1.13.4
15240
16140
15241
16141
side-channel-weakmap@1.0.2:
15242
16142
dependencies:
15243
15243
-
call-bound: 1.0.3
16143
16143
+
call-bound: 1.0.4
15244
16144
es-errors: 1.3.0
15245
15245
-
get-intrinsic: 1.2.6
15246
15246
-
object-inspect: 1.13.3
16145
16145
+
get-intrinsic: 1.3.0
16146
16146
+
object-inspect: 1.13.4
15247
16147
side-channel-map: 1.0.1
15248
16148
15249
15249
-
side-channel@1.0.6:
15250
15250
-
dependencies:
15251
15251
-
call-bind: 1.0.8
15252
15252
-
es-errors: 1.3.0
15253
15253
-
get-intrinsic: 1.2.5
15254
15254
-
object-inspect: 1.13.3
15255
15255
-
15256
16149
side-channel@1.1.0:
15257
16150
dependencies:
15258
16151
es-errors: 1.3.0
15259
15259
-
object-inspect: 1.13.3
16152
16152
+
object-inspect: 1.13.4
15260
16153
side-channel-list: 1.0.0
15261
16154
side-channel-map: 1.0.1
15262
16155
side-channel-weakmap: 1.0.2
···
15325
16218
safer-buffer: 2.1.2
15326
16219
tweetnacl: 0.14.5
15327
16220
15328
15328
-
stable-hash@0.0.4: {}
16221
16221
+
stable-hash@0.0.5: {}
15329
16222
15330
16223
stack-generator@2.0.10:
15331
16224
dependencies:
···
15355
16248
statuses@1.5.0: {}
15356
16249
15357
16250
statuses@2.0.1: {}
16251
16251
+
16252
16252
+
stop-iteration-iterator@1.1.0:
16253
16253
+
dependencies:
16254
16254
+
es-errors: 1.3.0
16255
16255
+
internal-slot: 1.1.0
15358
16256
15359
16257
stream-buffers@2.2.0: {}
15360
16258
···
15368
16266
string-length@5.0.1:
15369
16267
dependencies:
15370
16268
char-regex: 2.0.2
15371
15371
-
strip-ansi: 7.1.0
16269
16269
+
strip-ansi: 7.1.2
15372
16270
15373
16271
string-width@1.0.2:
15374
16272
dependencies:
···
15386
16284
dependencies:
15387
16285
eastasianwidth: 0.2.0
15388
16286
emoji-regex: 9.2.2
15389
15389
-
strip-ansi: 7.1.0
16287
16287
+
strip-ansi: 7.1.2
15390
16288
15391
16289
string.prototype.matchall@4.0.12:
15392
16290
dependencies:
15393
16291
call-bind: 1.0.8
15394
15394
-
call-bound: 1.0.3
16292
16292
+
call-bound: 1.0.4
15395
16293
define-properties: 1.2.1
15396
15396
-
es-abstract: 1.23.8
16294
16294
+
es-abstract: 1.24.0
15397
16295
es-errors: 1.3.0
15398
15398
-
es-object-atoms: 1.0.0
15399
15399
-
get-intrinsic: 1.2.6
16296
16296
+
es-object-atoms: 1.1.1
16297
16297
+
get-intrinsic: 1.3.0
15400
16298
gopd: 1.2.0
15401
16299
has-symbols: 1.1.0
15402
16300
internal-slot: 1.1.0
15403
15403
-
regexp.prototype.flags: 1.5.3
16301
16301
+
regexp.prototype.flags: 1.5.4
15404
16302
set-function-name: 2.0.2
15405
16303
side-channel: 1.1.0
15406
16304
15407
16305
string.prototype.repeat@1.0.0:
15408
16306
dependencies:
15409
16307
define-properties: 1.2.1
15410
15410
-
es-abstract: 1.23.8
16308
16308
+
es-abstract: 1.24.0
15411
16309
15412
16310
string.prototype.trim@1.2.10:
15413
16311
dependencies:
15414
16312
call-bind: 1.0.8
15415
15415
-
call-bound: 1.0.3
16313
16313
+
call-bound: 1.0.4
15416
16314
define-data-property: 1.1.4
15417
16315
define-properties: 1.2.1
15418
15418
-
es-abstract: 1.23.8
15419
15419
-
es-object-atoms: 1.0.0
16316
16316
+
es-abstract: 1.24.0
16317
16317
+
es-object-atoms: 1.1.1
15420
16318
has-property-descriptors: 1.0.2
15421
16319
15422
16320
string.prototype.trimend@1.0.9:
15423
16321
dependencies:
15424
16322
call-bind: 1.0.8
15425
15425
-
call-bound: 1.0.3
16323
16323
+
call-bound: 1.0.4
15426
16324
define-properties: 1.2.1
15427
15427
-
es-object-atoms: 1.0.0
16325
16325
+
es-object-atoms: 1.1.1
15428
16326
15429
16327
string.prototype.trimstart@1.0.8:
15430
16328
dependencies:
15431
16329
call-bind: 1.0.8
15432
16330
define-properties: 1.2.1
15433
15433
-
es-object-atoms: 1.0.0
16331
16331
+
es-object-atoms: 1.1.1
15434
16332
15435
16333
string_decoder@1.3.0:
15436
16334
dependencies:
···
15448
16346
dependencies:
15449
16347
ansi-regex: 5.0.1
15450
16348
15451
15451
-
strip-ansi@7.1.0:
16349
16349
+
strip-ansi@7.1.2:
15452
16350
dependencies:
15453
15453
-
ansi-regex: 6.1.0
16351
16351
+
ansi-regex: 6.2.2
15454
16352
15455
16353
strip-bom@3.0.0: {}
15456
16354
···
15470
16368
15471
16369
sucrase@3.35.0:
15472
16370
dependencies:
15473
15473
-
'@jridgewell/gen-mapping': 0.3.5
16371
16371
+
'@jridgewell/gen-mapping': 0.3.13
15474
16372
commander: 4.1.1
15475
16373
glob: 10.4.5
15476
16374
lines-and-columns: 1.2.4
15477
16375
mz: 2.7.0
15478
15478
-
pirates: 4.0.6
16376
16376
+
pirates: 4.0.7
15479
16377
ts-interface-checker: 0.1.13
15480
16378
15481
16379
sudo-prompt@8.2.5: {}
···
15509
16407
15510
16408
tailwind-merge@2.6.0: {}
15511
16409
15512
15512
-
tailwindcss-animate@1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))):
16410
16410
+
tailwindcss-animate@1.0.7(tailwindcss@3.4.18):
15513
16411
dependencies:
15514
15514
-
tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))
16412
16412
+
tailwindcss: 3.4.18
15515
16413
15516
15516
-
tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3)):
16414
16414
+
tailwindcss@3.4.18:
15517
16415
dependencies:
15518
16416
'@alloc/quick-lru': 5.2.0
15519
16417
arg: 5.0.2
15520
16418
chokidar: 3.6.0
15521
16419
didyoumean: 1.2.2
15522
16420
dlv: 1.1.3
15523
15523
-
fast-glob: 3.3.2
16421
16421
+
fast-glob: 3.3.3
15524
16422
glob-parent: 6.0.2
15525
16423
is-glob: 4.0.3
15526
16424
jiti: 1.21.7
···
15531
16429
picocolors: 1.1.1
15532
16430
postcss: 8.4.49
15533
16431
postcss-import: 15.1.0(postcss@8.4.49)
15534
15534
-
postcss-js: 4.0.1(postcss@8.4.49)
15535
15535
-
postcss-load-config: 4.0.2(postcss@8.4.49)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3))
16432
16432
+
postcss-js: 4.1.0(postcss@8.4.49)
16433
16433
+
postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.4.49)
15536
16434
postcss-nested: 6.2.0(postcss@8.4.49)
15537
16435
postcss-selector-parser: 6.1.2
15538
16436
resolve: 1.22.10
15539
16437
sucrase: 3.35.0
15540
16438
transitivePeerDependencies:
15541
15541
-
- ts-node
16439
16439
+
- tsx
16440
16440
+
- yaml
15542
16441
15543
15543
-
tapable@2.2.1: {}
16442
16442
+
tapable@2.3.0: {}
15544
16443
15545
16444
tar@7.4.3:
15546
16445
dependencies:
···
15558
16457
ansi-escapes: 4.3.2
15559
16458
supports-hyperlinks: 2.3.0
15560
16459
15561
15561
-
terser-webpack-plugin@5.3.11(webpack@5.97.1):
16460
16460
+
terser-webpack-plugin@5.3.14(webpack@5.97.1):
15562
16461
dependencies:
15563
16462
'@jridgewell/trace-mapping': 0.3.31
15564
16463
jest-worker: 27.5.1
15565
15565
-
schema-utils: 4.3.0
16464
16464
+
schema-utils: 4.3.3
15566
16465
serialize-javascript: 6.0.2
15567
15567
-
terser: 5.37.0
16466
16466
+
terser: 5.44.0
15568
16467
webpack: 5.97.1
15569
16468
15570
16469
terser@5.37.0:
15571
16470
dependencies:
15572
16471
'@jridgewell/source-map': 0.3.6
16472
16472
+
acorn: 8.15.0
16473
16473
+
commander: 2.20.3
16474
16474
+
source-map-support: 0.5.21
16475
16475
+
16476
16476
+
terser@5.44.0:
16477
16477
+
dependencies:
16478
16478
+
'@jridgewell/source-map': 0.3.11
15573
16479
acorn: 8.15.0
15574
16480
commander: 2.20.3
15575
16481
source-map-support: 0.5.21
···
15598
16504
15599
16505
through@2.3.8: {}
15600
16506
15601
15601
-
tinyglobby@0.2.10:
16507
16507
+
tinyglobby@0.2.15:
15602
16508
dependencies:
15603
15603
-
fdir: 6.4.2(picomatch@4.0.2)
15604
15604
-
picomatch: 4.0.2
16509
16509
+
fdir: 6.5.0(picomatch@4.0.3)
16510
16510
+
picomatch: 4.0.3
15605
16511
15606
16512
tlds@1.255.0: {}
15607
16513
···
15635
16541
dependencies:
15636
16542
punycode: 2.3.1
15637
16543
15638
15638
-
ts-api-utils@1.4.3(typescript@5.8.3):
16544
16544
+
ts-api-utils@1.4.3(typescript@5.9.3):
15639
16545
dependencies:
15640
15640
-
typescript: 5.8.3
16546
16546
+
typescript: 5.9.3
15641
16547
15642
15642
-
ts-api-utils@2.1.0(typescript@5.8.3):
16548
16548
+
ts-api-utils@2.1.0(typescript@5.9.3):
15643
16549
dependencies:
15644
15644
-
typescript: 5.8.3
16550
16550
+
typescript: 5.9.3
15645
16551
15646
16552
ts-interface-checker@0.1.13: {}
15647
16553
···
15655
16561
'@ts-morph/common': 0.25.0
15656
16562
code-block-writer: 13.0.3
15657
16563
15658
15658
-
ts-node@10.9.2(@types/node@22.10.2)(typescript@5.8.3):
16564
16564
+
ts-node@10.9.2(@types/node@22.18.8)(typescript@5.9.3):
15659
16565
dependencies:
15660
16566
'@cspotcode/source-map-support': 0.8.1
15661
16567
'@tsconfig/node10': 1.0.11
15662
16568
'@tsconfig/node12': 1.0.11
15663
16569
'@tsconfig/node14': 1.0.3
15664
16570
'@tsconfig/node16': 1.0.4
15665
15665
-
'@types/node': 22.10.2
16571
16571
+
'@types/node': 22.18.8
15666
16572
acorn: 8.14.0
15667
16573
acorn-walk: 8.3.4
15668
16574
arg: 4.1.3
15669
16575
create-require: 1.1.1
15670
16576
diff: 4.0.2
15671
16577
make-error: 1.3.6
15672
15672
-
typescript: 5.8.3
16578
16578
+
typescript: 5.9.3
15673
16579
v8-compile-cache-lib: 3.0.1
15674
16580
yn: 3.1.1
15675
16581
···
15686
16592
dependencies:
15687
16593
safe-buffer: 5.2.1
15688
16594
15689
15689
-
turbo-darwin-64@2.3.3:
16595
16595
+
turbo-darwin-64@2.5.8:
15690
16596
optional: true
15691
16597
15692
15692
-
turbo-darwin-arm64@2.3.3:
16598
16598
+
turbo-darwin-arm64@2.5.8:
15693
16599
optional: true
15694
16600
15695
15695
-
turbo-linux-64@2.3.3:
16601
16601
+
turbo-linux-64@2.5.8:
15696
16602
optional: true
15697
16603
15698
15698
-
turbo-linux-arm64@2.3.3:
16604
16604
+
turbo-linux-arm64@2.5.8:
15699
16605
optional: true
15700
16606
15701
15701
-
turbo-windows-64@2.3.3:
16607
16607
+
turbo-windows-64@2.5.8:
15702
16608
optional: true
15703
16609
15704
15704
-
turbo-windows-arm64@2.3.3:
16610
16610
+
turbo-windows-arm64@2.5.8:
15705
16611
optional: true
15706
16612
15707
15707
-
turbo@2.3.3:
16613
16613
+
turbo@2.5.8:
15708
16614
optionalDependencies:
15709
15709
-
turbo-darwin-64: 2.3.3
15710
15710
-
turbo-darwin-arm64: 2.3.3
15711
15711
-
turbo-linux-64: 2.3.3
15712
15712
-
turbo-linux-arm64: 2.3.3
15713
15713
-
turbo-windows-64: 2.3.3
15714
15714
-
turbo-windows-arm64: 2.3.3
16615
16615
+
turbo-darwin-64: 2.5.8
16616
16616
+
turbo-darwin-arm64: 2.5.8
16617
16617
+
turbo-linux-64: 2.5.8
16618
16618
+
turbo-linux-arm64: 2.5.8
16619
16619
+
turbo-windows-64: 2.5.8
16620
16620
+
turbo-windows-arm64: 2.5.8
15715
16621
15716
16622
tweetnacl@0.14.5: {}
15717
16623
···
15734
16640
15735
16641
typed-array-buffer@1.0.3:
15736
16642
dependencies:
15737
15737
-
call-bound: 1.0.3
16643
16643
+
call-bound: 1.0.4
15738
16644
es-errors: 1.3.0
15739
16645
is-typed-array: 1.1.15
15740
16646
15741
16647
typed-array-byte-length@1.0.3:
15742
16648
dependencies:
15743
16649
call-bind: 1.0.8
15744
15744
-
for-each: 0.3.3
16650
16650
+
for-each: 0.3.5
15745
16651
gopd: 1.2.0
15746
16652
has-proto: 1.2.0
15747
16653
is-typed-array: 1.1.15
···
15750
16656
dependencies:
15751
16657
available-typed-arrays: 1.0.7
15752
16658
call-bind: 1.0.8
15753
15753
-
for-each: 0.3.3
16659
16659
+
for-each: 0.3.5
15754
16660
gopd: 1.2.0
15755
16661
has-proto: 1.2.0
15756
16662
is-typed-array: 1.1.15
15757
15757
-
reflect.getprototypeof: 1.0.9
16663
16663
+
reflect.getprototypeof: 1.0.10
15758
16664
15759
16665
typed-array-length@1.0.7:
15760
16666
dependencies:
15761
16667
call-bind: 1.0.8
15762
15762
-
for-each: 0.3.3
16668
16668
+
for-each: 0.3.5
15763
16669
gopd: 1.2.0
15764
16670
is-typed-array: 1.1.15
15765
15765
-
possible-typed-array-names: 1.0.0
15766
15766
-
reflect.getprototypeof: 1.0.9
16671
16671
+
possible-typed-array-names: 1.1.0
16672
16672
+
reflect.getprototypeof: 1.0.10
15767
16673
15768
15768
-
typescript@5.8.3: {}
16674
16674
+
typescript@5.9.3: {}
15769
16675
15770
16676
ua-parser-js@1.0.40: {}
15771
16677
···
15775
16681
15776
16682
unbox-primitive@1.1.0:
15777
16683
dependencies:
15778
15778
-
call-bound: 1.0.3
16684
16684
+
call-bound: 1.0.4
15779
16685
has-bigints: 1.1.0
15780
16686
has-symbols: 1.1.0
15781
16687
which-boxed-primitive: 1.1.1
15782
16688
15783
15783
-
undici-types@6.19.8: {}
15784
15784
-
15785
15785
-
undici-types@6.20.0: {}
16689
16689
+
undici-types@6.21.0: {}
15786
16690
15787
16691
undici@6.21.0: {}
15788
16692
···
15794
16698
unicode-property-aliases-ecmascript: 2.1.0
15795
16699
15796
16700
unicode-match-property-value-ecmascript@2.2.0: {}
16701
16701
+
16702
16702
+
unicode-match-property-value-ecmascript@2.2.1: {}
15797
16703
15798
16704
unicode-property-aliases-ecmascript@2.1.0: {}
15799
16705
···
15833
16739
15834
16740
untildify@3.0.3: {}
15835
16741
15836
15836
-
update-browserslist-db@1.1.1(browserslist@4.24.3):
16742
16742
+
update-browserslist-db@1.1.3(browserslist@4.26.3):
15837
16743
dependencies:
15838
15838
-
browserslist: 4.24.3
16744
16744
+
browserslist: 4.26.3
15839
16745
escalade: 3.2.0
15840
16746
picocolors: 1.1.1
15841
16747
···
15848
16754
querystringify: 2.2.0
15849
16755
requires-port: 1.0.0
15850
16756
15851
15851
-
use-callback-ref@1.3.3(@types/react@19.0.14)(react@19.0.0):
16757
16757
+
use-callback-ref@1.3.3(@types/react@19.1.17)(react@19.1.0):
15852
16758
dependencies:
15853
15853
-
react: 19.0.0
16759
16759
+
react: 19.1.0
15854
16760
tslib: 2.8.1
15855
16761
optionalDependencies:
15856
15856
-
'@types/react': 19.0.14
16762
16762
+
'@types/react': 19.1.17
15857
16763
15858
15858
-
use-latest-callback@0.2.3(react@19.0.0):
16764
16764
+
use-callback-ref@1.3.3(@types/react@19.2.0)(react@19.2.0):
15859
16765
dependencies:
15860
15860
-
react: 19.0.0
16766
16766
+
react: 19.2.0
16767
16767
+
tslib: 2.8.1
16768
16768
+
optionalDependencies:
16769
16769
+
'@types/react': 19.2.0
16770
16770
+
optional: true
15861
16771
15862
15862
-
use-sidecar@1.1.3(@types/react@19.0.14)(react@19.0.0):
16772
16772
+
use-latest-callback@0.2.3(react@19.1.0):
16773
16773
+
dependencies:
16774
16774
+
react: 19.1.0
16775
16775
+
16776
16776
+
use-latest-callback@0.2.3(react@19.2.0):
16777
16777
+
dependencies:
16778
16778
+
react: 19.2.0
16779
16779
+
optional: true
16780
16780
+
16781
16781
+
use-latest-callback@0.2.4(react@19.1.0):
16782
16782
+
dependencies:
16783
16783
+
react: 19.1.0
16784
16784
+
16785
16785
+
use-latest-callback@0.2.4(react@19.2.0):
16786
16786
+
dependencies:
16787
16787
+
react: 19.2.0
16788
16788
+
optional: true
16789
16789
+
16790
16790
+
use-sidecar@1.1.3(@types/react@19.1.17)(react@19.1.0):
15863
16791
dependencies:
15864
16792
detect-node-es: 1.1.0
15865
15865
-
react: 19.0.0
16793
16793
+
react: 19.1.0
15866
16794
tslib: 2.8.1
15867
16795
optionalDependencies:
15868
15868
-
'@types/react': 19.0.14
16796
16796
+
'@types/react': 19.1.17
15869
16797
15870
15870
-
use-sync-external-store@1.5.0(react@19.0.0):
16798
16798
+
use-sidecar@1.1.3(@types/react@19.2.0)(react@19.2.0):
15871
16799
dependencies:
15872
15872
-
react: 19.0.0
16800
16800
+
detect-node-es: 1.1.0
16801
16801
+
react: 19.2.0
16802
16802
+
tslib: 2.8.1
16803
16803
+
optionalDependencies:
16804
16804
+
'@types/react': 19.2.0
16805
16805
+
optional: true
16806
16806
+
16807
16807
+
use-sync-external-store@1.5.0(react@19.1.0):
16808
16808
+
dependencies:
16809
16809
+
react: 19.1.0
16810
16810
+
16811
16811
+
use-sync-external-store@1.5.0(react@19.2.0):
16812
16812
+
dependencies:
16813
16813
+
react: 19.2.0
16814
16814
+
optional: true
16815
16815
+
16816
16816
+
use-sync-external-store@1.6.0(react@19.1.0):
16817
16817
+
dependencies:
16818
16818
+
react: 19.1.0
16819
16819
+
16820
16820
+
use-sync-external-store@1.6.0(react@19.2.0):
16821
16821
+
dependencies:
16822
16822
+
react: 19.2.0
16823
16823
+
optional: true
15873
16824
15874
16825
user-home@2.0.0:
15875
16826
dependencies:
···
15895
16846
15896
16847
v8-to-istanbul@9.3.0:
15897
16848
dependencies:
15898
15898
-
'@jridgewell/trace-mapping': 0.3.25
16849
16849
+
'@jridgewell/trace-mapping': 0.3.31
15899
16850
'@types/istanbul-lib-coverage': 2.0.6
15900
16851
convert-source-map: 2.0.0
15901
16852
···
15903
16854
15904
16855
vary@1.1.2: {}
15905
16856
16857
16857
+
vaul@1.1.2(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
16858
16858
+
dependencies:
16859
16859
+
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.1.11(@types/react@19.1.17))(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
16860
16860
+
react: 19.1.0
16861
16861
+
react-dom: 19.1.0(react@19.1.0)
16862
16862
+
transitivePeerDependencies:
16863
16863
+
- '@types/react'
16864
16864
+
- '@types/react-dom'
16865
16865
+
16866
16866
+
vaul@1.1.2(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
16867
16867
+
dependencies:
16868
16868
+
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
16869
16869
+
react: 19.2.0
16870
16870
+
react-dom: 19.2.0(react@19.2.0)
16871
16871
+
transitivePeerDependencies:
16872
16872
+
- '@types/react'
16873
16873
+
- '@types/react-dom'
16874
16874
+
optional: true
16875
16875
+
15906
16876
verror@1.10.0:
15907
16877
dependencies:
15908
16878
assert-plus: 1.0.0
···
15921
16891
15922
16892
warn-once@0.1.1: {}
15923
16893
15924
15924
-
watchpack@2.4.2:
16894
16894
+
watchpack@2.4.4:
15925
16895
dependencies:
15926
16896
glob-to-regexp: 0.4.1
15927
16897
graceful-fs: 4.2.11
···
15938
16908
15939
16909
webpack-sources@3.2.3: {}
15940
16910
16911
16911
+
webpack-sources@3.3.3: {}
16912
16912
+
15941
16913
webpack@5.97.1:
15942
16914
dependencies:
15943
16915
'@types/eslint-scope': 3.7.7
15944
15944
-
'@types/estree': 1.0.6
16916
16916
+
'@types/estree': 1.0.8
15945
16917
'@webassemblyjs/ast': 1.14.1
15946
16918
'@webassemblyjs/wasm-edit': 1.14.1
15947
16919
'@webassemblyjs/wasm-parser': 1.14.1
15948
16920
acorn: 8.15.0
15949
15949
-
browserslist: 4.24.3
16921
16921
+
browserslist: 4.26.3
15950
16922
chrome-trace-event: 1.0.4
15951
15951
-
enhanced-resolve: 5.17.1
15952
15952
-
es-module-lexer: 1.6.0
16923
16923
+
enhanced-resolve: 5.18.3
16924
16924
+
es-module-lexer: 1.7.0
15953
16925
eslint-scope: 5.1.1
15954
16926
events: 3.3.0
15955
16927
glob-to-regexp: 0.4.1
···
15959
16931
mime-types: 2.1.35
15960
16932
neo-async: 2.6.2
15961
16933
schema-utils: 3.3.0
15962
15962
-
tapable: 2.2.1
15963
15963
-
terser-webpack-plugin: 5.3.11(webpack@5.97.1)
15964
15964
-
watchpack: 2.4.2
15965
15965
-
webpack-sources: 3.2.3
16934
16934
+
tapable: 2.3.0
16935
16935
+
terser-webpack-plugin: 5.3.14(webpack@5.97.1)
16936
16936
+
watchpack: 2.4.4
16937
16937
+
webpack-sources: 3.3.3
15966
16938
transitivePeerDependencies:
15967
16939
- '@swc/core'
15968
16940
- esbuild
···
15995
16967
which-boxed-primitive@1.1.1:
15996
16968
dependencies:
15997
16969
is-bigint: 1.1.0
15998
15998
-
is-boolean-object: 1.2.1
16970
16970
+
is-boolean-object: 1.2.2
15999
16971
is-number-object: 1.1.1
16000
16972
is-string: 1.1.1
16001
16973
is-symbol: 1.1.1
16002
16974
16003
16975
which-builtin-type@1.2.1:
16004
16976
dependencies:
16005
16005
-
call-bound: 1.0.3
16977
16977
+
call-bound: 1.0.4
16006
16978
function.prototype.name: 1.1.8
16007
16979
has-tostringtag: 1.0.2
16008
16008
-
is-async-function: 2.0.0
16980
16980
+
is-async-function: 2.1.1
16009
16981
is-date-object: 1.1.0
16010
16982
is-finalizationregistry: 1.1.1
16011
16011
-
is-generator-function: 1.0.10
16983
16983
+
is-generator-function: 1.1.2
16012
16984
is-regex: 1.2.1
16013
16013
-
is-weakref: 1.1.0
16985
16985
+
is-weakref: 1.1.1
16014
16986
isarray: 2.0.5
16015
16987
which-boxed-primitive: 1.1.1
16016
16988
which-collection: 1.0.2
16017
16017
-
which-typed-array: 1.1.18
16989
16989
+
which-typed-array: 1.1.19
16018
16990
16019
16991
which-collection@1.0.2:
16020
16992
dependencies:
···
16032
17004
gopd: 1.2.0
16033
17005
has-tostringtag: 1.0.2
16034
17006
17007
17007
+
which-typed-array@1.1.19:
17008
17008
+
dependencies:
17009
17009
+
available-typed-arrays: 1.0.7
17010
17010
+
call-bind: 1.0.8
17011
17011
+
call-bound: 1.0.4
17012
17012
+
for-each: 0.3.5
17013
17013
+
get-proto: 1.0.1
17014
17014
+
gopd: 1.2.0
17015
17015
+
has-tostringtag: 1.0.2
17016
17016
+
16035
17017
which@2.0.2:
16036
17018
dependencies:
16037
17019
isexe: 2.0.0
···
16048
17030
16049
17031
wrap-ansi@8.1.0:
16050
17032
dependencies:
16051
16051
-
ansi-styles: 6.2.1
17033
17033
+
ansi-styles: 6.2.3
16052
17034
string-width: 5.1.2
16053
16053
-
strip-ansi: 7.1.0
17035
17035
+
strip-ansi: 7.1.2
16054
17036
16055
17037
wrappy@1.0.2: {}
16056
17038
···
16072
17054
16073
17055
ws@8.18.0: {}
16074
17056
17057
17057
+
ws@8.18.3: {}
17058
17058
+
16075
17059
xcode@3.0.1:
16076
17060
dependencies:
16077
17061
simple-plist: 1.3.1
···
16096
17080
16097
17081
yallist@5.0.0: {}
16098
17082
16099
16099
-
yaml@2.6.1: {}
16100
16100
-
16101
17083
yargs-parser@21.1.1: {}
16102
17084
16103
17085
yargs@17.7.2:
···
16118
17100
16119
17101
yoctocolors@2.1.1: {}
16120
17102
16121
16121
-
zod-validation-error@3.4.0(zod@3.23.8):
17103
17103
+
zod-to-json-schema@3.24.6(zod@3.25.76):
16122
17104
dependencies:
16123
16123
-
zod: 3.23.8
17105
17105
+
zod: 3.25.76
17106
17106
+
17107
17107
+
zod-validation-error@3.4.0(zod@3.25.76):
17108
17108
+
dependencies:
17109
17109
+
zod: 3.25.76
16124
17110
16125
17111
zod@3.23.8: {}
16126
17112
16127
16127
-
zustand@5.0.5(@types/react@19.0.14)(react@19.0.0)(use-sync-external-store@1.5.0(react@19.0.0)):
17113
17113
+
zod@3.25.76: {}
17114
17114
+
17115
17115
+
zustand@5.0.8(@types/react@19.1.17)(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)):
16128
17116
optionalDependencies:
16129
16129
-
'@types/react': 19.0.14
16130
16130
-
react: 19.0.0
16131
16131
-
use-sync-external-store: 1.5.0(react@19.0.0)
17117
17117
+
'@types/react': 19.1.17
17118
17118
+
react: 19.1.0
17119
17119
+
use-sync-external-store: 1.6.0(react@19.1.0)