@coze-arch/cli 0.0.1-alpha.a1540f → 0.0.1-alpha.a166f2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +13 -12
- package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +9 -8
- package/lib/__templates__/expo/client/eslint.config.mjs +5 -1
- package/lib/__templates__/expo/client/metro.config.js +3 -0
- package/lib/__templates__/expo/client/package.json +36 -35
- package/lib/__templates__/expo/client/screens/demo/index.tsx +3 -3
- package/lib/__templates__/expo/eslint-plugins/react-native/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/react-native/rule.js +64 -0
- package/lib/__templates__/expo/package.json +1 -1
- package/lib/__templates__/expo/patches/{expo@54.0.32.patch → expo@54.0.33.patch} +3 -2
- package/lib/__templates__/expo/pnpm-lock.yaml +395 -1669
- package/lib/__templates__/expo/server/package.json +9 -7
- package/lib/__templates__/expo/server/src/index.ts +1 -0
- package/lib/__templates__/expo/template.config.js +56 -0
- package/lib/__templates__/native-static/.coze +11 -0
- package/lib/__templates__/native-static/index.html +33 -0
- package/lib/__templates__/native-static/styles/main.css +136 -0
- package/lib/__templates__/native-static/template.config.js +22 -0
- package/lib/__templates__/nextjs/package.json +3 -1
- package/lib/__templates__/nextjs/pnpm-lock.yaml +1051 -934
- package/lib/__templates__/nextjs/src/app/page.tsx +18 -60
- package/lib/__templates__/nextjs/template.config.js +49 -14
- package/lib/__templates__/taro/.coze +14 -0
- package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.sh +19 -0
- package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.sh +14 -0
- package/lib/__templates__/taro/.cozeproj/scripts/dev_build.sh +2 -0
- package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +151 -0
- package/lib/__templates__/taro/.cozeproj/scripts/init_env.sh +5 -0
- package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +24 -0
- package/lib/__templates__/taro/README.md +749 -0
- package/lib/__templates__/taro/_gitignore +40 -0
- package/lib/__templates__/taro/_npmrc +18 -0
- package/lib/__templates__/taro/babel.config.js +12 -0
- package/lib/__templates__/taro/config/dev.ts +9 -0
- package/lib/__templates__/taro/config/index.ts +173 -0
- package/lib/__templates__/taro/config/prod.ts +35 -0
- package/lib/__templates__/taro/eslint.config.mjs +79 -0
- package/lib/__templates__/taro/key/private.appid.key +0 -0
- package/lib/__templates__/taro/package.json +97 -0
- package/lib/__templates__/taro/pnpm-lock.yaml +22694 -0
- package/lib/__templates__/taro/pnpm-workspace.yaml +2 -0
- package/lib/__templates__/taro/project.config.json +15 -0
- package/lib/__templates__/taro/server/nest-cli.json +10 -0
- package/lib/__templates__/taro/server/package.json +40 -0
- package/lib/__templates__/taro/server/src/app.controller.ts +23 -0
- package/lib/__templates__/taro/server/src/app.module.ts +10 -0
- package/lib/__templates__/taro/server/src/app.service.ts +8 -0
- package/lib/__templates__/taro/server/src/interceptors/http-status.interceptor.ts +23 -0
- package/lib/__templates__/taro/server/src/main.ts +49 -0
- package/lib/__templates__/taro/server/tsconfig.json +24 -0
- package/lib/__templates__/taro/src/app.config.ts +11 -0
- package/lib/__templates__/taro/src/app.css +52 -0
- package/lib/__templates__/taro/src/app.tsx +9 -0
- package/lib/__templates__/taro/src/index.html +39 -0
- package/lib/__templates__/taro/src/network.ts +39 -0
- package/lib/__templates__/taro/src/pages/index/index.config.ts +3 -0
- package/lib/__templates__/taro/src/pages/index/index.css +1 -0
- package/lib/__templates__/taro/src/pages/index/index.tsx +33 -0
- package/lib/__templates__/taro/src/presets/h5-navbar.tsx +171 -0
- package/lib/__templates__/taro/src/presets/h5-styles.ts +33 -0
- package/lib/__templates__/taro/src/presets/index.tsx +18 -0
- package/lib/__templates__/taro/src/presets/wx-debug.ts +23 -0
- package/lib/__templates__/taro/stylelint.config.mjs +4 -0
- package/lib/__templates__/taro/template.config.js +68 -0
- package/lib/__templates__/taro/tsconfig.json +29 -0
- package/lib/__templates__/taro/types/global.d.ts +32 -0
- package/lib/__templates__/templates.json +43 -0
- package/lib/__templates__/vite/package.json +5 -1
- package/lib/__templates__/vite/pnpm-lock.yaml +146 -1659
- package/lib/__templates__/vite/src/main.ts +17 -47
- package/lib/__templates__/vite/template.config.js +49 -14
- package/lib/__templates__/vite/vite.config.ts +1 -0
- package/lib/cli.js +373 -82
- package/package.json +2 -1
|
@@ -8,9 +8,9 @@ overrides:
|
|
|
8
8
|
esbuild: 0.27.2
|
|
9
9
|
|
|
10
10
|
patchedDependencies:
|
|
11
|
-
expo@54.0.
|
|
12
|
-
hash:
|
|
13
|
-
path: patches/expo@54.0.
|
|
11
|
+
expo@54.0.33:
|
|
12
|
+
hash: oibatoworxrl4npxv627d5aa3e
|
|
13
|
+
path: patches/expo@54.0.33.patch
|
|
14
14
|
|
|
15
15
|
importers:
|
|
16
16
|
|
|
@@ -19,26 +19,26 @@ importers:
|
|
|
19
19
|
client:
|
|
20
20
|
dependencies:
|
|
21
21
|
'@expo/metro-runtime':
|
|
22
|
-
specifier:
|
|
23
|
-
version: 6.1.2(expo@54.0.
|
|
22
|
+
specifier: ~6.1.2
|
|
23
|
+
version: 6.1.2(expo@54.0.33)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
24
24
|
'@expo/vector-icons':
|
|
25
|
-
specifier: ^15.0.
|
|
26
|
-
version: 15.0.3(expo-font@14.0.11(expo@54.0.
|
|
25
|
+
specifier: ^15.0.3
|
|
26
|
+
version: 15.0.3(expo-font@14.0.11(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
27
27
|
'@react-native-async-storage/async-storage':
|
|
28
|
-
specifier:
|
|
28
|
+
specifier: 2.2.0
|
|
29
29
|
version: 2.2.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
30
30
|
'@react-native-community/datetimepicker':
|
|
31
|
-
specifier:
|
|
32
|
-
version: 8.
|
|
31
|
+
specifier: 8.4.4
|
|
32
|
+
version: 8.4.4(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
33
33
|
'@react-native-community/slider':
|
|
34
|
-
specifier:
|
|
35
|
-
version: 5.1
|
|
34
|
+
specifier: 5.0.1
|
|
35
|
+
version: 5.0.1
|
|
36
36
|
'@react-native-masked-view/masked-view':
|
|
37
|
-
specifier:
|
|
37
|
+
specifier: 0.3.2
|
|
38
38
|
version: 0.3.2(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
39
39
|
'@react-native-picker/picker':
|
|
40
|
-
specifier:
|
|
41
|
-
version: 2.11.
|
|
40
|
+
specifier: 2.11.1
|
|
41
|
+
version: 2.11.1(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
42
42
|
'@react-navigation/bottom-tabs':
|
|
43
43
|
specifier: ^7.2.0
|
|
44
44
|
version: 7.10.1(@react-native-masked-view/masked-view@0.3.2(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(@react-navigation/native@7.1.28(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
@@ -49,65 +49,68 @@ importers:
|
|
|
49
49
|
specifier: ^1.11.19
|
|
50
50
|
version: 1.11.19
|
|
51
51
|
expo:
|
|
52
|
-
specifier: 54.0.
|
|
53
|
-
version: 54.0.
|
|
52
|
+
specifier: 54.0.33
|
|
53
|
+
version: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
54
54
|
expo-auth-session:
|
|
55
|
-
specifier:
|
|
56
|
-
version: 7.0.10(expo@54.0.
|
|
55
|
+
specifier: ~7.0.10
|
|
56
|
+
version: 7.0.10(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
57
57
|
expo-av:
|
|
58
|
-
specifier: ~16.0.
|
|
59
|
-
version: 16.0.8(expo@54.0.
|
|
58
|
+
specifier: ~16.0.8
|
|
59
|
+
version: 16.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
60
60
|
expo-blur:
|
|
61
|
-
specifier: ~15.0.
|
|
62
|
-
version: 15.0.8(expo@54.0.
|
|
61
|
+
specifier: ~15.0.8
|
|
62
|
+
version: 15.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
63
63
|
expo-camera:
|
|
64
64
|
specifier: ~17.0.10
|
|
65
|
-
version: 17.0.10(expo@54.0.
|
|
65
|
+
version: 17.0.10(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
66
66
|
expo-constants:
|
|
67
|
-
specifier: ~18.0.
|
|
68
|
-
version: 18.0.13(expo@54.0.
|
|
67
|
+
specifier: ~18.0.13
|
|
68
|
+
version: 18.0.13(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
69
69
|
expo-crypto:
|
|
70
|
-
specifier:
|
|
71
|
-
version: 15.0.8(expo@54.0.
|
|
70
|
+
specifier: ~15.0.8
|
|
71
|
+
version: 15.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))
|
|
72
|
+
expo-file-system:
|
|
73
|
+
specifier: ~19.0.21
|
|
74
|
+
version: 19.0.21(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
72
75
|
expo-font:
|
|
73
|
-
specifier: ~14.0.
|
|
74
|
-
version: 14.0.11(expo@54.0.
|
|
76
|
+
specifier: ~14.0.11
|
|
77
|
+
version: 14.0.11(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
75
78
|
expo-haptics:
|
|
76
|
-
specifier: ~15.0.
|
|
77
|
-
version: 15.0.8(expo@54.0.
|
|
79
|
+
specifier: ~15.0.8
|
|
80
|
+
version: 15.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))
|
|
78
81
|
expo-image:
|
|
79
|
-
specifier:
|
|
80
|
-
version: 3.0.11(expo@54.0.
|
|
82
|
+
specifier: ~3.0.11
|
|
83
|
+
version: 3.0.11(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
81
84
|
expo-image-picker:
|
|
82
|
-
specifier: ~17.0.
|
|
83
|
-
version: 17.0.10(expo@54.0.
|
|
85
|
+
specifier: ~17.0.10
|
|
86
|
+
version: 17.0.10(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))
|
|
84
87
|
expo-linear-gradient:
|
|
85
|
-
specifier: ~15.0.
|
|
86
|
-
version: 15.0.8(expo@54.0.
|
|
88
|
+
specifier: ~15.0.8
|
|
89
|
+
version: 15.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
87
90
|
expo-linking:
|
|
88
|
-
specifier: ~8.0.
|
|
89
|
-
version: 8.0.11(expo@54.0.
|
|
91
|
+
specifier: ~8.0.11
|
|
92
|
+
version: 8.0.11(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
90
93
|
expo-location:
|
|
91
|
-
specifier: ~19.0.
|
|
92
|
-
version: 19.0.8(expo@54.0.
|
|
94
|
+
specifier: ~19.0.8
|
|
95
|
+
version: 19.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))
|
|
93
96
|
expo-router:
|
|
94
|
-
specifier: ~6.0.
|
|
95
|
-
version: 6.0.
|
|
97
|
+
specifier: ~6.0.23
|
|
98
|
+
version: 6.0.23(@expo/metro-runtime@6.1.2)(@react-native-masked-view/masked-view@0.3.2(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(@types/react@19.1.17)(expo-constants@18.0.13)(expo-linking@8.0.11)(expo@54.0.33)(react-dom@19.1.0(react@19.1.0))(react-native-gesture-handler@2.28.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.6(@babel/core@7.28.6)(react-native-worklets@0.5.1(@babel/core@7.28.6)(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
96
99
|
expo-splash-screen:
|
|
97
|
-
specifier: ~31.0.
|
|
98
|
-
version: 31.0.13(expo@54.0.
|
|
100
|
+
specifier: ~31.0.13
|
|
101
|
+
version: 31.0.13(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))
|
|
99
102
|
expo-status-bar:
|
|
100
|
-
specifier: ~3.0.
|
|
103
|
+
specifier: ~3.0.9
|
|
101
104
|
version: 3.0.9(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
102
105
|
expo-symbols:
|
|
103
|
-
specifier: ~1.0.
|
|
104
|
-
version: 1.0.8(expo@54.0.
|
|
106
|
+
specifier: ~1.0.8
|
|
107
|
+
version: 1.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
105
108
|
expo-system-ui:
|
|
106
109
|
specifier: ~6.0.9
|
|
107
|
-
version: 6.0.9(expo@54.0.
|
|
110
|
+
version: 6.0.9(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
108
111
|
expo-web-browser:
|
|
109
112
|
specifier: ~15.0.10
|
|
110
|
-
version: 15.0.10(expo@54.0.
|
|
113
|
+
version: 15.0.10(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
111
114
|
js-base64:
|
|
112
115
|
specifier: ^3.7.7
|
|
113
116
|
version: 3.7.8
|
|
@@ -122,7 +125,7 @@ importers:
|
|
|
122
125
|
version: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
123
126
|
react-native-chart-kit:
|
|
124
127
|
specifier: ^6.12.0
|
|
125
|
-
version: 6.12.0(react-native-svg@15.
|
|
128
|
+
version: 6.12.0(react-native-svg@15.12.1(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
126
129
|
react-native-gesture-handler:
|
|
127
130
|
specifier: ~2.28.0
|
|
128
131
|
version: 2.28.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
@@ -131,9 +134,9 @@ importers:
|
|
|
131
134
|
version: 0.9.5(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
132
135
|
react-native-modal-datetime-picker:
|
|
133
136
|
specifier: 18.0.0
|
|
134
|
-
version: 18.0.0(@react-native-community/datetimepicker@8.
|
|
137
|
+
version: 18.0.0(@react-native-community/datetimepicker@8.4.4(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
135
138
|
react-native-reanimated:
|
|
136
|
-
specifier: ~4.1.
|
|
139
|
+
specifier: ~4.1.1
|
|
137
140
|
version: 4.1.6(@babel/core@7.28.6)(react-native-worklets@0.5.1(@babel/core@7.28.6)(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
138
141
|
react-native-safe-area-context:
|
|
139
142
|
specifier: ~5.6.0
|
|
@@ -142,16 +145,16 @@ importers:
|
|
|
142
145
|
specifier: ~4.16.0
|
|
143
146
|
version: 4.16.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
144
147
|
react-native-svg:
|
|
145
|
-
specifier: 15.
|
|
146
|
-
version: 15.
|
|
148
|
+
specifier: 15.12.1
|
|
149
|
+
version: 15.12.1(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
147
150
|
react-native-toast-message:
|
|
148
151
|
specifier: ^2.3.3
|
|
149
152
|
version: 2.3.3(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
150
153
|
react-native-web:
|
|
151
|
-
specifier:
|
|
154
|
+
specifier: ~0.21.0
|
|
152
155
|
version: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
|
153
156
|
react-native-webview:
|
|
154
|
-
specifier:
|
|
157
|
+
specifier: 13.15.0
|
|
155
158
|
version: 13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
156
159
|
react-native-worklets:
|
|
157
160
|
specifier: 0.5.1
|
|
@@ -180,7 +183,7 @@ importers:
|
|
|
180
183
|
version: 5.0.2
|
|
181
184
|
babel-preset-expo:
|
|
182
185
|
specifier: ^54.0.9
|
|
183
|
-
version: 54.0.10(@babel/core@7.28.6)(@babel/runtime@7.28.6)(expo@54.0.
|
|
186
|
+
version: 54.0.10(@babel/core@7.28.6)(@babel/runtime@7.28.6)(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2)
|
|
184
187
|
chalk:
|
|
185
188
|
specifier: ^4.1.2
|
|
186
189
|
version: 4.1.2
|
|
@@ -224,8 +227,8 @@ importers:
|
|
|
224
227
|
specifier: ^29.2.1
|
|
225
228
|
version: 29.7.0(@types/node@25.0.10)
|
|
226
229
|
jest-expo:
|
|
227
|
-
specifier: ~54.0.
|
|
228
|
-
version: 54.0.
|
|
230
|
+
specifier: ~54.0.17
|
|
231
|
+
version: 54.0.17(@babel/core@7.28.6)(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(jest@29.7.0(@types/node@25.0.10))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
229
232
|
react-test-renderer:
|
|
230
233
|
specifier: 19.1.0
|
|
231
234
|
version: 19.1.0(react@19.1.0)
|
|
@@ -241,15 +244,21 @@ importers:
|
|
|
241
244
|
|
|
242
245
|
server:
|
|
243
246
|
dependencies:
|
|
247
|
+
'@supabase/supabase-js':
|
|
248
|
+
specifier: 2.95.3
|
|
249
|
+
version: 2.95.3
|
|
244
250
|
cors:
|
|
245
251
|
specifier: ^2.8.5
|
|
246
252
|
version: 2.8.6
|
|
247
253
|
coze-coding-dev-sdk:
|
|
248
|
-
specifier: ^0.7.
|
|
249
|
-
version: 0.7.
|
|
254
|
+
specifier: ^0.7.16
|
|
255
|
+
version: 0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.6))(ws@8.19.0)
|
|
250
256
|
dayjs:
|
|
251
257
|
specifier: ^1.11.19
|
|
252
258
|
version: 1.11.19
|
|
259
|
+
dotenv:
|
|
260
|
+
specifier: ^17.2.3
|
|
261
|
+
version: 17.2.4
|
|
253
262
|
drizzle-orm:
|
|
254
263
|
specifier: ^0.45.1
|
|
255
264
|
version: 0.45.1(@types/pg@8.16.0)(pg@8.17.2)
|
|
@@ -304,195 +313,6 @@ packages:
|
|
|
304
313
|
graphql:
|
|
305
314
|
optional: true
|
|
306
315
|
|
|
307
|
-
'@aws-crypto/crc32@5.2.0':
|
|
308
|
-
resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==}
|
|
309
|
-
engines: {node: '>=16.0.0'}
|
|
310
|
-
|
|
311
|
-
'@aws-crypto/crc32c@5.2.0':
|
|
312
|
-
resolution: {integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==}
|
|
313
|
-
|
|
314
|
-
'@aws-crypto/sha1-browser@5.2.0':
|
|
315
|
-
resolution: {integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==}
|
|
316
|
-
|
|
317
|
-
'@aws-crypto/sha256-browser@5.2.0':
|
|
318
|
-
resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==}
|
|
319
|
-
|
|
320
|
-
'@aws-crypto/sha256-js@5.2.0':
|
|
321
|
-
resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==}
|
|
322
|
-
engines: {node: '>=16.0.0'}
|
|
323
|
-
|
|
324
|
-
'@aws-crypto/supports-web-crypto@5.2.0':
|
|
325
|
-
resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==}
|
|
326
|
-
|
|
327
|
-
'@aws-crypto/util@5.2.0':
|
|
328
|
-
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
|
|
329
|
-
|
|
330
|
-
'@aws-sdk/client-s3@3.975.0':
|
|
331
|
-
resolution: {integrity: sha512-aF1M/iMD29BPcpxjqoym0YFa4WR9Xie1/IhVumwOGH6TB45DaqYO7vLwantDBcYNRn/cZH6DFHksO7RmwTFBhw==}
|
|
332
|
-
engines: {node: '>=20.0.0'}
|
|
333
|
-
|
|
334
|
-
'@aws-sdk/client-sso@3.974.0':
|
|
335
|
-
resolution: {integrity: sha512-ci+GiM0c4ULo4D79UMcY06LcOLcfvUfiyt8PzNY0vbt5O8BfCPYf4QomwVgkNcLLCYmroO4ge2Yy1EsLUlcD6g==}
|
|
336
|
-
engines: {node: '>=20.0.0'}
|
|
337
|
-
|
|
338
|
-
'@aws-sdk/core@3.972.0':
|
|
339
|
-
resolution: {integrity: sha512-nEeUW2M9F+xdIaD98F5MBcQ4ITtykj3yKbgFZ6J0JtL3bq+Z90szQ6Yy8H/BLPYXTs3V4n9ifnBo8cprRDiE6A==}
|
|
340
|
-
engines: {node: '>=20.0.0'}
|
|
341
|
-
|
|
342
|
-
'@aws-sdk/core@3.973.1':
|
|
343
|
-
resolution: {integrity: sha512-Ocubx42QsMyVs9ANSmFpRm0S+hubWljpPLjOi9UFrtcnVJjrVJTzQ51sN0e5g4e8i8QZ7uY73zosLmgYL7kZTQ==}
|
|
344
|
-
engines: {node: '>=20.0.0'}
|
|
345
|
-
|
|
346
|
-
'@aws-sdk/crc64-nvme@3.972.0':
|
|
347
|
-
resolution: {integrity: sha512-ThlLhTqX68jvoIVv+pryOdb5coP1cX1/MaTbB9xkGDCbWbsqQcLqzPxuSoW1DCnAAIacmXCWpzUNOB9pv+xXQw==}
|
|
348
|
-
engines: {node: '>=20.0.0'}
|
|
349
|
-
|
|
350
|
-
'@aws-sdk/credential-provider-env@3.972.1':
|
|
351
|
-
resolution: {integrity: sha512-/etNHqnx96phy/SjI0HRC588o4vKH5F0xfkZ13yAATV7aNrb+5gYGNE6ePWafP+FuZ3HkULSSlJFj0AxgrAqYw==}
|
|
352
|
-
engines: {node: '>=20.0.0'}
|
|
353
|
-
|
|
354
|
-
'@aws-sdk/credential-provider-http@3.972.2':
|
|
355
|
-
resolution: {integrity: sha512-mXgdaUfe5oM+tWKyeZ7Vh/iQ94FrkMky1uuzwTOmFADiRcSk5uHy/e3boEFedXiT/PRGzgBmqvJVK4F6lUISCg==}
|
|
356
|
-
engines: {node: '>=20.0.0'}
|
|
357
|
-
|
|
358
|
-
'@aws-sdk/credential-provider-ini@3.972.1':
|
|
359
|
-
resolution: {integrity: sha512-OdbJA3v+XlNDsrYzNPRUwr8l7gw1r/nR8l4r96MDzSBDU8WEo8T6C06SvwaXR8SpzsjO3sq5KMP86wXWg7Rj4g==}
|
|
360
|
-
engines: {node: '>=20.0.0'}
|
|
361
|
-
|
|
362
|
-
'@aws-sdk/credential-provider-login@3.972.1':
|
|
363
|
-
resolution: {integrity: sha512-CccqDGL6ZrF3/EFWZefvKW7QwwRdxlHUO8NVBKNVcNq6womrPDvqB6xc9icACtE0XB0a7PLoSTkAg8bQVkTO2w==}
|
|
364
|
-
engines: {node: '>=20.0.0'}
|
|
365
|
-
|
|
366
|
-
'@aws-sdk/credential-provider-node@3.972.1':
|
|
367
|
-
resolution: {integrity: sha512-DwXPk9GfuU/xG9tmCyXFVkCr6X3W8ZCoL5Ptb0pbltEx1/LCcg7T+PBqDlPiiinNCD6ilIoMJDWsnJ8ikzZA7Q==}
|
|
368
|
-
engines: {node: '>=20.0.0'}
|
|
369
|
-
|
|
370
|
-
'@aws-sdk/credential-provider-process@3.972.1':
|
|
371
|
-
resolution: {integrity: sha512-bi47Zigu3692SJwdBvo8y1dEwE6B61stCwCFnuRWJVTfiM84B+VTSCV661CSWJmIZzmcy7J5J3kWyxL02iHj0w==}
|
|
372
|
-
engines: {node: '>=20.0.0'}
|
|
373
|
-
|
|
374
|
-
'@aws-sdk/credential-provider-sso@3.972.1':
|
|
375
|
-
resolution: {integrity: sha512-dLZVNhM7wSgVUFsgVYgI5hb5Z/9PUkT46pk/SHrSmUqfx6YDvoV4YcPtaiRqviPpEGGiRtdQMEadyOKIRqulUQ==}
|
|
376
|
-
engines: {node: '>=20.0.0'}
|
|
377
|
-
|
|
378
|
-
'@aws-sdk/credential-provider-web-identity@3.972.1':
|
|
379
|
-
resolution: {integrity: sha512-YMDeYgi0u687Ay0dAq/pFPKuijrlKTgsaB/UATbxCs/FzZfMiG4If5ksywHmmW7MiYUF8VVv+uou3TczvLrN4w==}
|
|
380
|
-
engines: {node: '>=20.0.0'}
|
|
381
|
-
|
|
382
|
-
'@aws-sdk/lib-storage@3.975.0':
|
|
383
|
-
resolution: {integrity: sha512-F6vrnZ3F7oqr3oONCIpx+uZDTwXWfh8sBoNNJollDn5pIn7TI+R+7WxVIXAMq/JWLXE6N8T3M6ogWk4Y4JWPPw==}
|
|
384
|
-
engines: {node: '>=20.0.0'}
|
|
385
|
-
peerDependencies:
|
|
386
|
-
'@aws-sdk/client-s3': 3.975.0
|
|
387
|
-
|
|
388
|
-
'@aws-sdk/middleware-bucket-endpoint@3.972.1':
|
|
389
|
-
resolution: {integrity: sha512-YVvoitBdE8WOpHqIXvv49efT73F4bJ99XH2bi3Dn3mx7WngI4RwHwn/zF5i0q1Wdi5frGSCNF3vuh+pY817//w==}
|
|
390
|
-
engines: {node: '>=20.0.0'}
|
|
391
|
-
|
|
392
|
-
'@aws-sdk/middleware-expect-continue@3.972.1':
|
|
393
|
-
resolution: {integrity: sha512-6lfl2/J/kutzw/RLu1kjbahsz4vrGPysrdxWaw8fkjLYG+6M6AswocIAZFS/LgAVi/IWRwPTx9YC0/NH2wDrSw==}
|
|
394
|
-
engines: {node: '>=20.0.0'}
|
|
395
|
-
|
|
396
|
-
'@aws-sdk/middleware-flexible-checksums@3.972.1':
|
|
397
|
-
resolution: {integrity: sha512-kjVVREpqeUkYQsXr78AcsJbEUlxGH7+H6yS7zkjrnu6HyEVxbdSndkKX6VpKneFOihjCAhIXlk4wf3butDHkNQ==}
|
|
398
|
-
engines: {node: '>=20.0.0'}
|
|
399
|
-
|
|
400
|
-
'@aws-sdk/middleware-host-header@3.972.1':
|
|
401
|
-
resolution: {integrity: sha512-/R82lXLPmZ9JaUGSUdKtBp2k/5xQxvBT3zZWyKiBOhyulFotlfvdlrO8TnqstBimsl4lYEYySDL+W6ldFh6ALg==}
|
|
402
|
-
engines: {node: '>=20.0.0'}
|
|
403
|
-
|
|
404
|
-
'@aws-sdk/middleware-location-constraint@3.972.1':
|
|
405
|
-
resolution: {integrity: sha512-YisPaCbvBk9gY5aUI8jDMDKXsLZ9Fet0WYj1MviK8tZYMgxBIYHM6l3O/OHaAIujojZvamd9F3haYYYWp5/V3w==}
|
|
406
|
-
engines: {node: '>=20.0.0'}
|
|
407
|
-
|
|
408
|
-
'@aws-sdk/middleware-logger@3.972.1':
|
|
409
|
-
resolution: {integrity: sha512-JGgFl6cHg9G2FHu4lyFIzmFN8KESBiRr84gLC3Aeni0Gt1nKm+KxWLBuha/RPcXxJygGXCcMM4AykkIwxor8RA==}
|
|
410
|
-
engines: {node: '>=20.0.0'}
|
|
411
|
-
|
|
412
|
-
'@aws-sdk/middleware-recursion-detection@3.972.1':
|
|
413
|
-
resolution: {integrity: sha512-taGzNRe8vPHjnliqXIHp9kBgIemLE/xCaRTMH1NH0cncHeaPcjxtnCroAAM9aOlPuKvBe2CpZESyvM1+D8oI7Q==}
|
|
414
|
-
engines: {node: '>=20.0.0'}
|
|
415
|
-
|
|
416
|
-
'@aws-sdk/middleware-sdk-s3@3.972.0':
|
|
417
|
-
resolution: {integrity: sha512-0bcKFXWx+NZ7tIlOo7KjQ+O2rydiHdIQahrq+fN6k9Osky29v17guy68urUKfhTobR6iY6KvxkroFWaFtTgS5w==}
|
|
418
|
-
engines: {node: '>=20.0.0'}
|
|
419
|
-
|
|
420
|
-
'@aws-sdk/middleware-sdk-s3@3.972.2':
|
|
421
|
-
resolution: {integrity: sha512-5f9x9/G+StE8+7wd9EVDF3d+J74xK+WBA3FhZwLSkf3pHFGLKzlmUfxJJE1kkXkbj/j/H+Dh3zL/hrtQE9hNsg==}
|
|
422
|
-
engines: {node: '>=20.0.0'}
|
|
423
|
-
|
|
424
|
-
'@aws-sdk/middleware-ssec@3.972.1':
|
|
425
|
-
resolution: {integrity: sha512-fLtRTPd/MxJT2drJKft2GVGKm35PiNEeQ1Dvz1vc/WhhgAteYrp4f1SfSgjgLaYWGMExESJL4bt8Dxqp6tVsog==}
|
|
426
|
-
engines: {node: '>=20.0.0'}
|
|
427
|
-
|
|
428
|
-
'@aws-sdk/middleware-user-agent@3.972.2':
|
|
429
|
-
resolution: {integrity: sha512-d+Exq074wy0X6wvShg/kmZVtkah+28vMuqCtuY3cydg8LUZOJBtbAolCpEJizSyb8mJJZF9BjWaTANXL4OYnkg==}
|
|
430
|
-
engines: {node: '>=20.0.0'}
|
|
431
|
-
|
|
432
|
-
'@aws-sdk/nested-clients@3.974.0':
|
|
433
|
-
resolution: {integrity: sha512-k3dwdo/vOiHMJc9gMnkPl1BA5aQfTrZbz+8fiDkWrPagqAioZgmo5oiaOaeX0grObfJQKDtcpPFR4iWf8cgl8Q==}
|
|
434
|
-
engines: {node: '>=20.0.0'}
|
|
435
|
-
|
|
436
|
-
'@aws-sdk/region-config-resolver@3.972.1':
|
|
437
|
-
resolution: {integrity: sha512-voIY8RORpxLAEgEkYaTFnkaIuRwVBEc+RjVZYcSSllPV+ZEKAacai6kNhJeE3D70Le+JCfvRb52tng/AVHY+jQ==}
|
|
438
|
-
engines: {node: '>=20.0.0'}
|
|
439
|
-
|
|
440
|
-
'@aws-sdk/signature-v4-multi-region@3.972.0':
|
|
441
|
-
resolution: {integrity: sha512-2udiRijmjpN81Pvajje4TsjbXDZNP6K9bYUanBYH8hXa/tZG5qfGCySD+TyX0sgDxCQmEDMg3LaQdfjNHBDEgQ==}
|
|
442
|
-
engines: {node: '>=20.0.0'}
|
|
443
|
-
|
|
444
|
-
'@aws-sdk/token-providers@3.974.0':
|
|
445
|
-
resolution: {integrity: sha512-cBykL0LiccKIgNhGWvQRTPvsBLPZxnmJU3pYxG538jpFX8lQtrCy1L7mmIHNEdxIdIGEPgAEHF8/JQxgBToqUQ==}
|
|
446
|
-
engines: {node: '>=20.0.0'}
|
|
447
|
-
|
|
448
|
-
'@aws-sdk/types@3.972.0':
|
|
449
|
-
resolution: {integrity: sha512-U7xBIbLSetONxb2bNzHyDgND3oKGoIfmknrEVnoEU4GUSs+0augUOIn9DIWGUO2ETcRFdsRUnmx9KhPT9Ojbug==}
|
|
450
|
-
engines: {node: '>=20.0.0'}
|
|
451
|
-
|
|
452
|
-
'@aws-sdk/types@3.973.0':
|
|
453
|
-
resolution: {integrity: sha512-jYIdB7a7jhRTvyb378nsjyvJh1Si+zVduJ6urMNGpz8RjkmHZ+9vM2H07XaIB2Cfq0GhJRZYOfUCH8uqQhqBkQ==}
|
|
454
|
-
engines: {node: '>=20.0.0'}
|
|
455
|
-
|
|
456
|
-
'@aws-sdk/util-arn-parser@3.972.0':
|
|
457
|
-
resolution: {integrity: sha512-RM5Mmo/KJ593iMSrALlHEOcc9YOIyOsDmS5x2NLOMdEmzv1o00fcpAkCQ02IGu1eFneBFT7uX0Mpag0HI+Cz2g==}
|
|
458
|
-
engines: {node: '>=20.0.0'}
|
|
459
|
-
|
|
460
|
-
'@aws-sdk/util-arn-parser@3.972.1':
|
|
461
|
-
resolution: {integrity: sha512-XnNit6H9PPHhqUXW/usjX6JeJ6Pm8ZNqivTjmNjgWHeOfVpblUc/MTic02UmCNR0jJLPjQ3mBKiMen0tnkNQjQ==}
|
|
462
|
-
engines: {node: '>=20.0.0'}
|
|
463
|
-
|
|
464
|
-
'@aws-sdk/util-endpoints@3.972.0':
|
|
465
|
-
resolution: {integrity: sha512-6JHsl1V/a1ZW8D8AFfd4R52fwZPnZ5H4U6DS8m/bWT8qad72NvbOFAC7U2cDtFs2TShqUO3TEiX/EJibtY3ijg==}
|
|
466
|
-
engines: {node: '>=20.0.0'}
|
|
467
|
-
|
|
468
|
-
'@aws-sdk/util-locate-window@3.965.3':
|
|
469
|
-
resolution: {integrity: sha512-FNUqAjlKAGA7GM05kywE99q8wiPHPZqrzhq3wXRga6PRD6A0kzT85Pb0AzYBVTBRpSrKyyr6M92Y6bnSBVp2BA==}
|
|
470
|
-
engines: {node: '>=20.0.0'}
|
|
471
|
-
|
|
472
|
-
'@aws-sdk/util-user-agent-browser@3.972.1':
|
|
473
|
-
resolution: {integrity: sha512-IgF55NFmJX8d9Wql9M0nEpk2eYbuD8G4781FN4/fFgwTXBn86DvlZJuRWDCMcMqZymnBVX7HW9r+3r9ylqfW0w==}
|
|
474
|
-
|
|
475
|
-
'@aws-sdk/util-user-agent-node@3.972.1':
|
|
476
|
-
resolution: {integrity: sha512-oIs4JFcADzoZ0c915R83XvK2HltWupxNsXUIuZse2rgk7b97zTpkxaqXiH0h9ylh31qtgo/t8hp4tIqcsMrEbQ==}
|
|
477
|
-
engines: {node: '>=20.0.0'}
|
|
478
|
-
peerDependencies:
|
|
479
|
-
aws-crt: '>=1.0.0'
|
|
480
|
-
peerDependenciesMeta:
|
|
481
|
-
aws-crt:
|
|
482
|
-
optional: true
|
|
483
|
-
|
|
484
|
-
'@aws-sdk/xml-builder@3.972.0':
|
|
485
|
-
resolution: {integrity: sha512-POaGMcXnozzqBUyJM3HLUZ9GR6OKJWPGJEmhtTnxZXt8B6JcJ/6K3xRJ5H/j8oovVLz8Wg6vFxAHv8lvuASxMg==}
|
|
486
|
-
engines: {node: '>=20.0.0'}
|
|
487
|
-
|
|
488
|
-
'@aws-sdk/xml-builder@3.972.1':
|
|
489
|
-
resolution: {integrity: sha512-6zZGlPOqn7Xb+25MAXGb1JhgvaC5HjZj6GzszuVrnEgbhvzBRFGKYemuHBV4bho+dtqeYKPgaZUv7/e80hIGNg==}
|
|
490
|
-
engines: {node: '>=20.0.0'}
|
|
491
|
-
|
|
492
|
-
'@aws/lambda-invoke-store@0.2.3':
|
|
493
|
-
resolution: {integrity: sha512-oLvsaPMTBejkkmHhjf09xTgk71mOqyr/409NKhRIL08If7AhVfUsJhVsx386uJaqNd42v9kWamQ9lFbkoC2dYw==}
|
|
494
|
-
engines: {node: '>=18.0.0'}
|
|
495
|
-
|
|
496
316
|
'@babel/code-frame@7.10.4':
|
|
497
317
|
resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==}
|
|
498
318
|
|
|
@@ -1220,8 +1040,8 @@ packages:
|
|
|
1220
1040
|
resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
|
|
1221
1041
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1222
1042
|
|
|
1223
|
-
'@expo/cli@54.0.
|
|
1224
|
-
resolution: {integrity: sha512-
|
|
1043
|
+
'@expo/cli@54.0.23':
|
|
1044
|
+
resolution: {integrity: sha512-km0h72SFfQCmVycH/JtPFTVy69w6Lx1cHNDmfLfQqgKFYeeHTjx7LVDP4POHCtNxFP2UeRazrygJhlh4zz498g==}
|
|
1225
1045
|
hasBin: true
|
|
1226
1046
|
peerDependencies:
|
|
1227
1047
|
expo: '*'
|
|
@@ -1711,8 +1531,8 @@ packages:
|
|
|
1711
1531
|
peerDependencies:
|
|
1712
1532
|
react-native: ^0.0.0-0 || >=0.65 <1.0
|
|
1713
1533
|
|
|
1714
|
-
'@react-native-community/datetimepicker@8.
|
|
1715
|
-
resolution: {integrity: sha512-
|
|
1534
|
+
'@react-native-community/datetimepicker@8.4.4':
|
|
1535
|
+
resolution: {integrity: sha512-bc4ZixEHxZC9/qf5gbdYvIJiLZ5CLmEsC3j+Yhe1D1KC/3QhaIfGDVdUcid0PdlSoGOSEq4VlB93AWyetEyBSQ==}
|
|
1716
1536
|
peerDependencies:
|
|
1717
1537
|
expo: '>=52.0.0'
|
|
1718
1538
|
react: '*'
|
|
@@ -1724,8 +1544,8 @@ packages:
|
|
|
1724
1544
|
react-native-windows:
|
|
1725
1545
|
optional: true
|
|
1726
1546
|
|
|
1727
|
-
'@react-native-community/slider@5.1
|
|
1728
|
-
resolution: {integrity: sha512-
|
|
1547
|
+
'@react-native-community/slider@5.0.1':
|
|
1548
|
+
resolution: {integrity: sha512-K3JRWkIW4wQ79YJ6+BPZzp1SamoikxfPRw7Yw4B4PElEQmqZFrmH9M5LxvIo460/3QSrZF/wCgi3qizJt7g/iw==}
|
|
1729
1549
|
|
|
1730
1550
|
'@react-native-masked-view/masked-view@0.3.2':
|
|
1731
1551
|
resolution: {integrity: sha512-XwuQoW7/GEgWRMovOQtX3A4PrXhyaZm0lVUiY8qJDvdngjLms9Cpdck6SmGAUNqQwcj2EadHC1HwL0bEyoa/SQ==}
|
|
@@ -1733,8 +1553,8 @@ packages:
|
|
|
1733
1553
|
react: '>=16'
|
|
1734
1554
|
react-native: '>=0.57'
|
|
1735
1555
|
|
|
1736
|
-
'@react-native-picker/picker@2.11.
|
|
1737
|
-
resolution: {integrity: sha512-
|
|
1556
|
+
'@react-native-picker/picker@2.11.1':
|
|
1557
|
+
resolution: {integrity: sha512-ThklnkK4fV3yynnIIRBkxxjxR4IFbdMNJVF6tlLdOJ/zEFUEFUEdXY0KmH0iYzMwY8W4/InWsLiA7AkpAbnexA==}
|
|
1738
1558
|
peerDependencies:
|
|
1739
1559
|
react: '*'
|
|
1740
1560
|
react-native: '*'
|
|
@@ -1860,221 +1680,29 @@ packages:
|
|
|
1860
1680
|
'@sinonjs/fake-timers@10.3.0':
|
|
1861
1681
|
resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
|
|
1862
1682
|
|
|
1863
|
-
'@
|
|
1864
|
-
resolution: {integrity: sha512-
|
|
1865
|
-
engines: {node: '>=
|
|
1866
|
-
|
|
1867
|
-
'@smithy/chunked-blob-reader-native@4.2.1':
|
|
1868
|
-
resolution: {integrity: sha512-lX9Ay+6LisTfpLid2zZtIhSEjHMZoAR5hHCR4H7tBz/Zkfr5ea8RcQ7Tk4mi0P76p4cN+Btz16Ffno7YHpKXnQ==}
|
|
1869
|
-
engines: {node: '>=18.0.0'}
|
|
1870
|
-
|
|
1871
|
-
'@smithy/chunked-blob-reader@5.2.0':
|
|
1872
|
-
resolution: {integrity: sha512-WmU0TnhEAJLWvfSeMxBNe5xtbselEO8+4wG0NtZeL8oR21WgH1xiO37El+/Y+H/Ie4SCwBy3MxYWmOYaGgZueA==}
|
|
1873
|
-
engines: {node: '>=18.0.0'}
|
|
1874
|
-
|
|
1875
|
-
'@smithy/config-resolver@4.4.6':
|
|
1876
|
-
resolution: {integrity: sha512-qJpzYC64kaj3S0fueiu3kXm8xPrR3PcXDPEgnaNMRn0EjNSZFoFjvbUp0YUDsRhN1CB90EnHJtbxWKevnH99UQ==}
|
|
1877
|
-
engines: {node: '>=18.0.0'}
|
|
1878
|
-
|
|
1879
|
-
'@smithy/core@3.21.1':
|
|
1880
|
-
resolution: {integrity: sha512-NUH8R4O6FkN8HKMojzbGg/5pNjsfTjlMmeFclyPfPaXXUrbr5TzhWgbf7t92wfrpCHRgpjyz7ffASIS3wX28aA==}
|
|
1881
|
-
engines: {node: '>=18.0.0'}
|
|
1882
|
-
|
|
1883
|
-
'@smithy/credential-provider-imds@4.2.8':
|
|
1884
|
-
resolution: {integrity: sha512-FNT0xHS1c/CPN8upqbMFP83+ul5YgdisfCfkZ86Jh2NSmnqw/AJ6x5pEogVCTVvSm7j9MopRU89bmDelxuDMYw==}
|
|
1885
|
-
engines: {node: '>=18.0.0'}
|
|
1886
|
-
|
|
1887
|
-
'@smithy/eventstream-codec@4.2.8':
|
|
1888
|
-
resolution: {integrity: sha512-jS/O5Q14UsufqoGhov7dHLOPCzkYJl9QDzusI2Psh4wyYx/izhzvX9P4D69aTxcdfVhEPhjK+wYyn/PzLjKbbw==}
|
|
1889
|
-
engines: {node: '>=18.0.0'}
|
|
1890
|
-
|
|
1891
|
-
'@smithy/eventstream-serde-browser@4.2.8':
|
|
1892
|
-
resolution: {integrity: sha512-MTfQT/CRQz5g24ayXdjg53V0mhucZth4PESoA5IhvaWVDTOQLfo8qI9vzqHcPsdd2v6sqfTYqF5L/l+pea5Uyw==}
|
|
1893
|
-
engines: {node: '>=18.0.0'}
|
|
1894
|
-
|
|
1895
|
-
'@smithy/eventstream-serde-config-resolver@4.3.8':
|
|
1896
|
-
resolution: {integrity: sha512-ah12+luBiDGzBruhu3efNy1IlbwSEdNiw8fOZksoKoWW1ZHvO/04MQsdnws/9Aj+5b0YXSSN2JXKy/ClIsW8MQ==}
|
|
1897
|
-
engines: {node: '>=18.0.0'}
|
|
1898
|
-
|
|
1899
|
-
'@smithy/eventstream-serde-node@4.2.8':
|
|
1900
|
-
resolution: {integrity: sha512-cYpCpp29z6EJHa5T9WL0KAlq3SOKUQkcgSoeRfRVwjGgSFl7Uh32eYGt7IDYCX20skiEdRffyDpvF2efEZPC0A==}
|
|
1901
|
-
engines: {node: '>=18.0.0'}
|
|
1902
|
-
|
|
1903
|
-
'@smithy/eventstream-serde-universal@4.2.8':
|
|
1904
|
-
resolution: {integrity: sha512-iJ6YNJd0bntJYnX6s52NC4WFYcZeKrPUr1Kmmr5AwZcwCSzVpS7oavAmxMR7pMq7V+D1G4s9F5NJK0xwOsKAlQ==}
|
|
1905
|
-
engines: {node: '>=18.0.0'}
|
|
1906
|
-
|
|
1907
|
-
'@smithy/fetch-http-handler@5.3.9':
|
|
1908
|
-
resolution: {integrity: sha512-I4UhmcTYXBrct03rwzQX1Y/iqQlzVQaPxWjCjula++5EmWq9YGBrx6bbGqluGc1f0XEfhSkiY4jhLgbsJUMKRA==}
|
|
1909
|
-
engines: {node: '>=18.0.0'}
|
|
1910
|
-
|
|
1911
|
-
'@smithy/hash-blob-browser@4.2.9':
|
|
1912
|
-
resolution: {integrity: sha512-m80d/iicI7DlBDxyQP6Th7BW/ejDGiF0bgI754+tiwK0lgMkcaIBgvwwVc7OFbY4eUzpGtnig52MhPAEJ7iNYg==}
|
|
1913
|
-
engines: {node: '>=18.0.0'}
|
|
1914
|
-
|
|
1915
|
-
'@smithy/hash-node@4.2.8':
|
|
1916
|
-
resolution: {integrity: sha512-7ZIlPbmaDGxVoxErDZnuFG18WekhbA/g2/i97wGj+wUBeS6pcUeAym8u4BXh/75RXWhgIJhyC11hBzig6MljwA==}
|
|
1917
|
-
engines: {node: '>=18.0.0'}
|
|
1918
|
-
|
|
1919
|
-
'@smithy/hash-stream-node@4.2.8':
|
|
1920
|
-
resolution: {integrity: sha512-v0FLTXgHrTeheYZFGhR+ehX5qUm4IQsjAiL9qehad2cyjMWcN2QG6/4mSwbSgEQzI7jwfoXj7z4fxZUx/Mhj2w==}
|
|
1921
|
-
engines: {node: '>=18.0.0'}
|
|
1922
|
-
|
|
1923
|
-
'@smithy/invalid-dependency@4.2.8':
|
|
1924
|
-
resolution: {integrity: sha512-N9iozRybwAQ2dn9Fot9kI6/w9vos2oTXLhtK7ovGqwZjlOcxu6XhPlpLpC+INsxktqHinn5gS2DXDjDF2kG5sQ==}
|
|
1925
|
-
engines: {node: '>=18.0.0'}
|
|
1926
|
-
|
|
1927
|
-
'@smithy/is-array-buffer@2.2.0':
|
|
1928
|
-
resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
|
|
1929
|
-
engines: {node: '>=14.0.0'}
|
|
1930
|
-
|
|
1931
|
-
'@smithy/is-array-buffer@4.2.0':
|
|
1932
|
-
resolution: {integrity: sha512-DZZZBvC7sjcYh4MazJSGiWMI2L7E0oCiRHREDzIxi/M2LY79/21iXt6aPLHge82wi5LsuRF5A06Ds3+0mlh6CQ==}
|
|
1933
|
-
engines: {node: '>=18.0.0'}
|
|
1934
|
-
|
|
1935
|
-
'@smithy/md5-js@4.2.8':
|
|
1936
|
-
resolution: {integrity: sha512-oGMaLj4tVZzLi3itBa9TCswgMBr7k9b+qKYowQ6x1rTyTuO1IU2YHdHUa+891OsOH+wCsH7aTPRsTJO3RMQmjQ==}
|
|
1937
|
-
engines: {node: '>=18.0.0'}
|
|
1938
|
-
|
|
1939
|
-
'@smithy/middleware-content-length@4.2.8':
|
|
1940
|
-
resolution: {integrity: sha512-RO0jeoaYAB1qBRhfVyq0pMgBoUK34YEJxVxyjOWYZiOKOq2yMZ4MnVXMZCUDenpozHue207+9P5ilTV1zeda0A==}
|
|
1941
|
-
engines: {node: '>=18.0.0'}
|
|
1942
|
-
|
|
1943
|
-
'@smithy/middleware-endpoint@4.4.11':
|
|
1944
|
-
resolution: {integrity: sha512-/WqsrycweGGfb9sSzME4CrsuayjJF6BueBmkKlcbeU5q18OhxRrvvKlmfw3tpDsK5ilx2XUJvoukwxHB0nHs/Q==}
|
|
1945
|
-
engines: {node: '>=18.0.0'}
|
|
1946
|
-
|
|
1947
|
-
'@smithy/middleware-retry@4.4.27':
|
|
1948
|
-
resolution: {integrity: sha512-xFUYCGRVsfgiN5EjsJJSzih9+yjStgMTCLANPlf0LVQkPDYCe0hz97qbdTZosFOiYlGBlHYityGRxrQ/hxhfVQ==}
|
|
1949
|
-
engines: {node: '>=18.0.0'}
|
|
1950
|
-
|
|
1951
|
-
'@smithy/middleware-serde@4.2.9':
|
|
1952
|
-
resolution: {integrity: sha512-eMNiej0u/snzDvlqRGSN3Vl0ESn3838+nKyVfF2FKNXFbi4SERYT6PR392D39iczngbqqGG0Jl1DlCnp7tBbXQ==}
|
|
1953
|
-
engines: {node: '>=18.0.0'}
|
|
1954
|
-
|
|
1955
|
-
'@smithy/middleware-stack@4.2.8':
|
|
1956
|
-
resolution: {integrity: sha512-w6LCfOviTYQjBctOKSwy6A8FIkQy7ICvglrZFl6Bw4FmcQ1Z420fUtIhxaUZZshRe0VCq4kvDiPiXrPZAe8oRA==}
|
|
1957
|
-
engines: {node: '>=18.0.0'}
|
|
1958
|
-
|
|
1959
|
-
'@smithy/node-config-provider@4.3.8':
|
|
1960
|
-
resolution: {integrity: sha512-aFP1ai4lrbVlWjfpAfRSL8KFcnJQYfTl5QxLJXY32vghJrDuFyPZ6LtUL+JEGYiFRG1PfPLHLoxj107ulncLIg==}
|
|
1961
|
-
engines: {node: '>=18.0.0'}
|
|
1962
|
-
|
|
1963
|
-
'@smithy/node-http-handler@4.4.8':
|
|
1964
|
-
resolution: {integrity: sha512-q9u+MSbJVIJ1QmJ4+1u+cERXkrhuILCBDsJUBAW1MPE6sFonbCNaegFuwW9ll8kh5UdyY3jOkoOGlc7BesoLpg==}
|
|
1965
|
-
engines: {node: '>=18.0.0'}
|
|
1966
|
-
|
|
1967
|
-
'@smithy/property-provider@4.2.8':
|
|
1968
|
-
resolution: {integrity: sha512-EtCTbyIveCKeOXDSWSdze3k612yCPq1YbXsbqX3UHhkOSW8zKsM9NOJG5gTIya0vbY2DIaieG8pKo1rITHYL0w==}
|
|
1969
|
-
engines: {node: '>=18.0.0'}
|
|
1970
|
-
|
|
1971
|
-
'@smithy/protocol-http@5.3.8':
|
|
1972
|
-
resolution: {integrity: sha512-QNINVDhxpZ5QnP3aviNHQFlRogQZDfYlCkQT+7tJnErPQbDhysondEjhikuANxgMsZrkGeiAxXy4jguEGsDrWQ==}
|
|
1973
|
-
engines: {node: '>=18.0.0'}
|
|
1974
|
-
|
|
1975
|
-
'@smithy/querystring-builder@4.2.8':
|
|
1976
|
-
resolution: {integrity: sha512-Xr83r31+DrE8CP3MqPgMJl+pQlLLmOfiEUnoyAlGzzJIrEsbKsPy1hqH0qySaQm4oWrCBlUqRt+idEgunKB+iw==}
|
|
1977
|
-
engines: {node: '>=18.0.0'}
|
|
1978
|
-
|
|
1979
|
-
'@smithy/querystring-parser@4.2.8':
|
|
1980
|
-
resolution: {integrity: sha512-vUurovluVy50CUlazOiXkPq40KGvGWSdmusa3130MwrR1UNnNgKAlj58wlOe61XSHRpUfIIh6cE0zZ8mzKaDPA==}
|
|
1981
|
-
engines: {node: '>=18.0.0'}
|
|
1982
|
-
|
|
1983
|
-
'@smithy/service-error-classification@4.2.8':
|
|
1984
|
-
resolution: {integrity: sha512-mZ5xddodpJhEt3RkCjbmUQuXUOaPNTkbMGR0bcS8FE0bJDLMZlhmpgrvPNCYglVw5rsYTpSnv19womw9WWXKQQ==}
|
|
1985
|
-
engines: {node: '>=18.0.0'}
|
|
1986
|
-
|
|
1987
|
-
'@smithy/shared-ini-file-loader@4.4.3':
|
|
1988
|
-
resolution: {integrity: sha512-DfQjxXQnzC5UbCUPeC3Ie8u+rIWZTvuDPAGU/BxzrOGhRvgUanaP68kDZA+jaT3ZI+djOf+4dERGlm9mWfFDrg==}
|
|
1989
|
-
engines: {node: '>=18.0.0'}
|
|
1990
|
-
|
|
1991
|
-
'@smithy/signature-v4@5.3.8':
|
|
1992
|
-
resolution: {integrity: sha512-6A4vdGj7qKNRF16UIcO8HhHjKW27thsxYci+5r/uVRkdcBEkOEiY8OMPuydLX4QHSrJqGHPJzPRwwVTqbLZJhg==}
|
|
1993
|
-
engines: {node: '>=18.0.0'}
|
|
1994
|
-
|
|
1995
|
-
'@smithy/smithy-client@4.10.12':
|
|
1996
|
-
resolution: {integrity: sha512-VKO/HKoQ5OrSHW6AJUmEnUKeXI1/5LfCwO9cwyao7CmLvGnZeM1i36Lyful3LK1XU7HwTVieTqO1y2C/6t3qtA==}
|
|
1997
|
-
engines: {node: '>=18.0.0'}
|
|
1998
|
-
|
|
1999
|
-
'@smithy/types@4.12.0':
|
|
2000
|
-
resolution: {integrity: sha512-9YcuJVTOBDjg9LWo23Qp0lTQ3D7fQsQtwle0jVfpbUHy9qBwCEgKuVH4FqFB3VYu0nwdHKiEMA+oXz7oV8X1kw==}
|
|
2001
|
-
engines: {node: '>=18.0.0'}
|
|
2002
|
-
|
|
2003
|
-
'@smithy/url-parser@4.2.8':
|
|
2004
|
-
resolution: {integrity: sha512-NQho9U68TGMEU639YkXnVMV3GEFFULmmaWdlu1E9qzyIePOHsoSnagTGSDv1Zi8DCNN6btxOSdgmy5E/hsZwhA==}
|
|
2005
|
-
engines: {node: '>=18.0.0'}
|
|
2006
|
-
|
|
2007
|
-
'@smithy/util-base64@4.3.0':
|
|
2008
|
-
resolution: {integrity: sha512-GkXZ59JfyxsIwNTWFnjmFEI8kZpRNIBfxKjv09+nkAWPt/4aGaEWMM04m4sxgNVWkbt2MdSvE3KF/PfX4nFedQ==}
|
|
2009
|
-
engines: {node: '>=18.0.0'}
|
|
2010
|
-
|
|
2011
|
-
'@smithy/util-body-length-browser@4.2.0':
|
|
2012
|
-
resolution: {integrity: sha512-Fkoh/I76szMKJnBXWPdFkQJl2r9SjPt3cMzLdOB6eJ4Pnpas8hVoWPYemX/peO0yrrvldgCUVJqOAjUrOLjbxg==}
|
|
2013
|
-
engines: {node: '>=18.0.0'}
|
|
2014
|
-
|
|
2015
|
-
'@smithy/util-body-length-node@4.2.1':
|
|
2016
|
-
resolution: {integrity: sha512-h53dz/pISVrVrfxV1iqXlx5pRg3V2YWFcSQyPyXZRrZoZj4R4DeWRDo1a7dd3CPTcFi3kE+98tuNyD2axyZReA==}
|
|
2017
|
-
engines: {node: '>=18.0.0'}
|
|
2018
|
-
|
|
2019
|
-
'@smithy/util-buffer-from@2.2.0':
|
|
2020
|
-
resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==}
|
|
2021
|
-
engines: {node: '>=14.0.0'}
|
|
2022
|
-
|
|
2023
|
-
'@smithy/util-buffer-from@4.2.0':
|
|
2024
|
-
resolution: {integrity: sha512-kAY9hTKulTNevM2nlRtxAG2FQ3B2OR6QIrPY3zE5LqJy1oxzmgBGsHLWTcNhWXKchgA0WHW+mZkQrng/pgcCew==}
|
|
2025
|
-
engines: {node: '>=18.0.0'}
|
|
2026
|
-
|
|
2027
|
-
'@smithy/util-config-provider@4.2.0':
|
|
2028
|
-
resolution: {integrity: sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q==}
|
|
2029
|
-
engines: {node: '>=18.0.0'}
|
|
2030
|
-
|
|
2031
|
-
'@smithy/util-defaults-mode-browser@4.3.26':
|
|
2032
|
-
resolution: {integrity: sha512-vva0dzYUTgn7DdE0uaha10uEdAgmdLnNFowKFjpMm6p2R0XDk5FHPX3CBJLzWQkQXuEprsb0hGz9YwbicNWhjw==}
|
|
2033
|
-
engines: {node: '>=18.0.0'}
|
|
2034
|
-
|
|
2035
|
-
'@smithy/util-defaults-mode-node@4.2.29':
|
|
2036
|
-
resolution: {integrity: sha512-c6D7IUBsZt/aNnTBHMTf+OVh+h/JcxUUgfTcIJaWRe6zhOum1X+pNKSZtZ+7fbOn5I99XVFtmrnXKv8yHHErTQ==}
|
|
2037
|
-
engines: {node: '>=18.0.0'}
|
|
2038
|
-
|
|
2039
|
-
'@smithy/util-endpoints@3.2.8':
|
|
2040
|
-
resolution: {integrity: sha512-8JaVTn3pBDkhZgHQ8R0epwWt+BqPSLCjdjXXusK1onwJlRuN69fbvSK66aIKKO7SwVFM6x2J2ox5X8pOaWcUEw==}
|
|
2041
|
-
engines: {node: '>=18.0.0'}
|
|
2042
|
-
|
|
2043
|
-
'@smithy/util-hex-encoding@4.2.0':
|
|
2044
|
-
resolution: {integrity: sha512-CCQBwJIvXMLKxVbO88IukazJD9a4kQ9ZN7/UMGBjBcJYvatpWk+9g870El4cB8/EJxfe+k+y0GmR9CAzkF+Nbw==}
|
|
2045
|
-
engines: {node: '>=18.0.0'}
|
|
2046
|
-
|
|
2047
|
-
'@smithy/util-middleware@4.2.8':
|
|
2048
|
-
resolution: {integrity: sha512-PMqfeJxLcNPMDgvPbbLl/2Vpin+luxqTGPpW3NAQVLbRrFRzTa4rNAASYeIGjRV9Ytuhzny39SpyU04EQreF+A==}
|
|
2049
|
-
engines: {node: '>=18.0.0'}
|
|
2050
|
-
|
|
2051
|
-
'@smithy/util-retry@4.2.8':
|
|
2052
|
-
resolution: {integrity: sha512-CfJqwvoRY0kTGe5AkQokpURNCT1u/MkRzMTASWMPPo2hNSnKtF1D45dQl3DE2LKLr4m+PW9mCeBMJr5mCAVThg==}
|
|
2053
|
-
engines: {node: '>=18.0.0'}
|
|
2054
|
-
|
|
2055
|
-
'@smithy/util-stream@4.5.10':
|
|
2056
|
-
resolution: {integrity: sha512-jbqemy51UFSZSp2y0ZmRfckmrzuKww95zT9BYMmuJ8v3altGcqjwoV1tzpOwuHaKrwQrCjIzOib499ymr2f98g==}
|
|
2057
|
-
engines: {node: '>=18.0.0'}
|
|
1683
|
+
'@supabase/auth-js@2.95.3':
|
|
1684
|
+
resolution: {integrity: sha512-vD2YoS8E2iKIX0F7EwXTmqhUpaNsmbU6X2R0/NdFcs02oEfnHyNP/3M716f3wVJ2E5XHGiTFXki6lRckhJ0Thg==}
|
|
1685
|
+
engines: {node: '>=20.0.0'}
|
|
2058
1686
|
|
|
2059
|
-
'@
|
|
2060
|
-
resolution: {integrity: sha512-
|
|
2061
|
-
engines: {node: '>=
|
|
1687
|
+
'@supabase/functions-js@2.95.3':
|
|
1688
|
+
resolution: {integrity: sha512-uTuOAKzs9R/IovW1krO0ZbUHSJnsnyJElTXIRhjJTqymIVGcHzkAYnBCJqd7468Fs/Foz1BQ7Dv6DCl05lr7ig==}
|
|
1689
|
+
engines: {node: '>=20.0.0'}
|
|
2062
1690
|
|
|
2063
|
-
'@
|
|
2064
|
-
resolution: {integrity: sha512-
|
|
2065
|
-
engines: {node: '>=
|
|
1691
|
+
'@supabase/postgrest-js@2.95.3':
|
|
1692
|
+
resolution: {integrity: sha512-LTrRBqU1gOovxRm1vRXPItSMPBmEFqrfTqdPTRtzOILV4jPSueFz6pES5hpb4LRlkFwCPRmv3nQJ5N625V2Xrg==}
|
|
1693
|
+
engines: {node: '>=20.0.0'}
|
|
2066
1694
|
|
|
2067
|
-
'@
|
|
2068
|
-
resolution: {integrity: sha512-
|
|
2069
|
-
engines: {node: '>=
|
|
1695
|
+
'@supabase/realtime-js@2.95.3':
|
|
1696
|
+
resolution: {integrity: sha512-D7EAtfU3w6BEUxDACjowWNJo/ZRo7sDIuhuOGKHIm9FHieGeoJV5R6GKTLtga/5l/6fDr2u+WcW/m8I9SYmaIw==}
|
|
1697
|
+
engines: {node: '>=20.0.0'}
|
|
2070
1698
|
|
|
2071
|
-
'@
|
|
2072
|
-
resolution: {integrity: sha512-
|
|
2073
|
-
engines: {node: '>=
|
|
1699
|
+
'@supabase/storage-js@2.95.3':
|
|
1700
|
+
resolution: {integrity: sha512-4GxkJiXI3HHWjxpC3sDx1BVrV87O0hfX+wvJdqGv67KeCu+g44SPnII8y0LL/Wr677jB7tpjAxKdtVWf+xhc9A==}
|
|
1701
|
+
engines: {node: '>=20.0.0'}
|
|
2074
1702
|
|
|
2075
|
-
'@
|
|
2076
|
-
resolution: {integrity: sha512-
|
|
2077
|
-
engines: {node: '>=
|
|
1703
|
+
'@supabase/supabase-js@2.95.3':
|
|
1704
|
+
resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
|
|
1705
|
+
engines: {node: '>=20.0.0'}
|
|
2078
1706
|
|
|
2079
1707
|
'@tootallnate/once@2.0.0':
|
|
2080
1708
|
resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
|
|
@@ -2161,6 +1789,9 @@ packages:
|
|
|
2161
1789
|
'@types/pg@8.16.0':
|
|
2162
1790
|
resolution: {integrity: sha512-RmhMd/wD+CF8Dfo+cVIy3RR5cl8CyfXQ0tGgW6XBL8L4LM/UTEbNXYRbLwU6w+CgrKBNbrQWt4FUtTfaU5jSYQ==}
|
|
2163
1791
|
|
|
1792
|
+
'@types/phoenix@1.6.7':
|
|
1793
|
+
resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
|
|
1794
|
+
|
|
2164
1795
|
'@types/qs@6.14.0':
|
|
2165
1796
|
resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==}
|
|
2166
1797
|
|
|
@@ -2188,6 +1819,9 @@ packages:
|
|
|
2188
1819
|
'@types/uuid@10.0.0':
|
|
2189
1820
|
resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
|
|
2190
1821
|
|
|
1822
|
+
'@types/ws@8.18.1':
|
|
1823
|
+
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
|
|
1824
|
+
|
|
2191
1825
|
'@types/yargs-parser@21.0.3':
|
|
2192
1826
|
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
|
|
2193
1827
|
|
|
@@ -2643,9 +2277,6 @@ packages:
|
|
|
2643
2277
|
boolbase@1.0.0:
|
|
2644
2278
|
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
|
|
2645
2279
|
|
|
2646
|
-
bowser@2.13.1:
|
|
2647
|
-
resolution: {integrity: sha512-OHawaAbjwx6rqICCKgSG0SAnT05bzd7ppyKLVUITZpANBaaMFBAsaNkto3LoQ31tyFP5kNujE8Cdx85G9VzOkw==}
|
|
2648
|
-
|
|
2649
2280
|
bplist-creator@0.1.0:
|
|
2650
2281
|
resolution: {integrity: sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==}
|
|
2651
2282
|
|
|
@@ -2678,9 +2309,6 @@ packages:
|
|
|
2678
2309
|
buffer-from@1.1.2:
|
|
2679
2310
|
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
|
|
2680
2311
|
|
|
2681
|
-
buffer@5.6.0:
|
|
2682
|
-
resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==}
|
|
2683
|
-
|
|
2684
2312
|
buffer@5.7.1:
|
|
2685
2313
|
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
|
|
2686
2314
|
|
|
@@ -2734,10 +2362,6 @@ packages:
|
|
|
2734
2362
|
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
|
2735
2363
|
engines: {node: '>=10'}
|
|
2736
2364
|
|
|
2737
|
-
chalk@5.6.2:
|
|
2738
|
-
resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
|
|
2739
|
-
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
|
|
2740
|
-
|
|
2741
2365
|
char-regex@1.0.2:
|
|
2742
2366
|
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
|
|
2743
2367
|
engines: {node: '>=10'}
|
|
@@ -2772,18 +2396,10 @@ packages:
|
|
|
2772
2396
|
resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==}
|
|
2773
2397
|
engines: {node: '>=4'}
|
|
2774
2398
|
|
|
2775
|
-
cli-cursor@5.0.0:
|
|
2776
|
-
resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
|
|
2777
|
-
engines: {node: '>=18'}
|
|
2778
|
-
|
|
2779
2399
|
cli-spinners@2.9.2:
|
|
2780
2400
|
resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
|
|
2781
2401
|
engines: {node: '>=6'}
|
|
2782
2402
|
|
|
2783
|
-
cli-spinners@3.4.0:
|
|
2784
|
-
resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==}
|
|
2785
|
-
engines: {node: '>=18.20'}
|
|
2786
|
-
|
|
2787
2403
|
client-only@0.0.1:
|
|
2788
2404
|
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
|
|
2789
2405
|
|
|
@@ -2833,10 +2449,6 @@ packages:
|
|
|
2833
2449
|
resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
|
|
2834
2450
|
engines: {node: '>=18'}
|
|
2835
2451
|
|
|
2836
|
-
commander@14.0.2:
|
|
2837
|
-
resolution: {integrity: sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ==}
|
|
2838
|
-
engines: {node: '>=20'}
|
|
2839
|
-
|
|
2840
2452
|
commander@2.20.3:
|
|
2841
2453
|
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
|
|
2842
2454
|
|
|
@@ -2903,8 +2515,8 @@ packages:
|
|
|
2903
2515
|
resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
|
|
2904
2516
|
engines: {node: '>=10'}
|
|
2905
2517
|
|
|
2906
|
-
coze-coding-dev-sdk@0.7.
|
|
2907
|
-
resolution: {integrity: sha512-
|
|
2518
|
+
coze-coding-dev-sdk@0.7.16:
|
|
2519
|
+
resolution: {integrity: sha512-B7gRPBa+sfrZL8ur0+F/92SOgZgFaWD/fOnCN2DjthnHSdmCYhAJWCfqzG2oO2vwTiYCXkKUuTBZ3MJLMj886g==}
|
|
2908
2520
|
engines: {node: '>=18.0.0'}
|
|
2909
2521
|
hasBin: true
|
|
2910
2522
|
|
|
@@ -3109,6 +2721,10 @@ packages:
|
|
|
3109
2721
|
resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
|
|
3110
2722
|
engines: {node: '>=12'}
|
|
3111
2723
|
|
|
2724
|
+
dotenv@17.2.4:
|
|
2725
|
+
resolution: {integrity: sha512-mudtfb4zRB4bVvdj0xRo+e6duH1csJRM8IukBqfTRvHotn9+LBXB8ynAidP9zHqoRC/fsllXgk4kCKlR21fIhw==}
|
|
2726
|
+
engines: {node: '>=12'}
|
|
2727
|
+
|
|
3112
2728
|
drizzle-kit@0.31.8:
|
|
3113
2729
|
resolution: {integrity: sha512-O9EC/miwdnRDY10qRxM8P3Pg8hXe3LyU4ZipReKOgTwn4OqANmftj8XJz1UPUAS6NMHf0E2htjsbQujUTkncCg==}
|
|
3114
2730
|
hasBin: true
|
|
@@ -3463,10 +3079,6 @@ packages:
|
|
|
3463
3079
|
eventemitter3@4.0.7:
|
|
3464
3080
|
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
|
|
3465
3081
|
|
|
3466
|
-
events@3.3.0:
|
|
3467
|
-
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
|
|
3468
|
-
engines: {node: '>=0.8.x'}
|
|
3469
|
-
|
|
3470
3082
|
exec-async@2.2.0:
|
|
3471
3083
|
resolution: {integrity: sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==}
|
|
3472
3084
|
|
|
@@ -3617,8 +3229,8 @@ packages:
|
|
|
3617
3229
|
react: '*'
|
|
3618
3230
|
react-native: '*'
|
|
3619
3231
|
|
|
3620
|
-
expo-router@6.0.
|
|
3621
|
-
resolution: {integrity: sha512-
|
|
3232
|
+
expo-router@6.0.23:
|
|
3233
|
+
resolution: {integrity: sha512-qCxVAiCrCyu0npky6azEZ6dJDMt77OmCzEbpF6RbUTlfkaCA417LvY14SBkk0xyGruSxy/7pvJOI6tuThaUVCA==}
|
|
3622
3234
|
peerDependencies:
|
|
3623
3235
|
'@expo/metro-runtime': ^6.1.2
|
|
3624
3236
|
'@react-navigation/drawer': ^7.5.0
|
|
@@ -3634,7 +3246,7 @@ packages:
|
|
|
3634
3246
|
react-native-safe-area-context: '>= 5.4.0'
|
|
3635
3247
|
react-native-screens: '*'
|
|
3636
3248
|
react-native-web: '*'
|
|
3637
|
-
react-server-dom-webpack: ~19.0.
|
|
3249
|
+
react-server-dom-webpack: ~19.0.4 || ~19.1.5 || ~19.2.4
|
|
3638
3250
|
peerDependenciesMeta:
|
|
3639
3251
|
'@react-navigation/drawer':
|
|
3640
3252
|
optional: true
|
|
@@ -3688,8 +3300,8 @@ packages:
|
|
|
3688
3300
|
expo: '*'
|
|
3689
3301
|
react-native: '*'
|
|
3690
3302
|
|
|
3691
|
-
expo@54.0.
|
|
3692
|
-
resolution: {integrity: sha512-
|
|
3303
|
+
expo@54.0.33:
|
|
3304
|
+
resolution: {integrity: sha512-3yOEfAKqo+gqHcV8vKcnq0uA5zxlohnhA3fu4G43likN8ct5ZZ3LjAh9wDdKteEkoad3tFPvwxmXW711S5OHUw==}
|
|
3693
3305
|
hasBin: true
|
|
3694
3306
|
peerDependencies:
|
|
3695
3307
|
'@expo/dom-webview': '*'
|
|
@@ -3721,10 +3333,6 @@ packages:
|
|
|
3721
3333
|
fast-levenshtein@2.0.6:
|
|
3722
3334
|
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
|
3723
3335
|
|
|
3724
|
-
fast-xml-parser@5.2.5:
|
|
3725
|
-
resolution: {integrity: sha512-pfX9uG9Ki0yekDHx2SiuRIyFdyAr1kMIMitPvb0YBo8SUfKvia7w7FIyd/l6av85pFYRhZscS75MwMnbvY+hcQ==}
|
|
3726
|
-
hasBin: true
|
|
3727
|
-
|
|
3728
3336
|
fb-watchman@2.0.2:
|
|
3729
3337
|
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
|
|
3730
3338
|
|
|
@@ -3854,10 +3462,6 @@ packages:
|
|
|
3854
3462
|
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
|
|
3855
3463
|
engines: {node: 6.* || 8.* || >= 10.*}
|
|
3856
3464
|
|
|
3857
|
-
get-east-asian-width@1.4.0:
|
|
3858
|
-
resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==}
|
|
3859
|
-
engines: {node: '>=18'}
|
|
3860
|
-
|
|
3861
3465
|
get-intrinsic@1.3.0:
|
|
3862
3466
|
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
|
|
3863
3467
|
engines: {node: '>= 0.4'}
|
|
@@ -4034,6 +3638,10 @@ packages:
|
|
|
4034
3638
|
hyphenate-style-name@1.1.0:
|
|
4035
3639
|
resolution: {integrity: sha512-WDC/ui2VVRrz3jOVi+XtjqkDjiVjTtFaAGiW37k6b+ohyQ5wYDOGkvCZa8+H0nx3gyvv0+BST9xuOgIyGQ00gw==}
|
|
4036
3640
|
|
|
3641
|
+
iceberg-js@0.8.1:
|
|
3642
|
+
resolution: {integrity: sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==}
|
|
3643
|
+
engines: {node: '>=20.0.0'}
|
|
3644
|
+
|
|
4037
3645
|
iconv-lite@0.4.24:
|
|
4038
3646
|
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
|
|
4039
3647
|
engines: {node: '>=0.10.0'}
|
|
@@ -4165,10 +3773,6 @@ packages:
|
|
|
4165
3773
|
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
|
4166
3774
|
engines: {node: '>=0.10.0'}
|
|
4167
3775
|
|
|
4168
|
-
is-interactive@2.0.0:
|
|
4169
|
-
resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==}
|
|
4170
|
-
engines: {node: '>=12'}
|
|
4171
|
-
|
|
4172
3776
|
is-map@2.0.3:
|
|
4173
3777
|
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
|
|
4174
3778
|
engines: {node: '>= 0.4'}
|
|
@@ -4224,10 +3828,6 @@ packages:
|
|
|
4224
3828
|
resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
|
|
4225
3829
|
engines: {node: '>= 0.4'}
|
|
4226
3830
|
|
|
4227
|
-
is-unicode-supported@2.1.0:
|
|
4228
|
-
resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
|
|
4229
|
-
engines: {node: '>=18'}
|
|
4230
|
-
|
|
4231
3831
|
is-weakmap@2.0.2:
|
|
4232
3832
|
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
|
|
4233
3833
|
engines: {node: '>= 0.4'}
|
|
@@ -4337,13 +3937,13 @@ packages:
|
|
|
4337
3937
|
resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==}
|
|
4338
3938
|
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
|
4339
3939
|
|
|
4340
|
-
jest-expo@54.0.
|
|
4341
|
-
resolution: {integrity: sha512-
|
|
3940
|
+
jest-expo@54.0.17:
|
|
3941
|
+
resolution: {integrity: sha512-LyIhrsP4xvHEEcR1R024u/LBj3uPpAgB+UljgV+YXWkEHjprnr0KpE4tROsMNYCVTM1pPlAnPuoBmn5gnAN9KA==}
|
|
4342
3942
|
hasBin: true
|
|
4343
3943
|
peerDependencies:
|
|
4344
3944
|
expo: '*'
|
|
4345
3945
|
react-native: '*'
|
|
4346
|
-
react-server-dom-webpack: ~19.0.
|
|
3946
|
+
react-server-dom-webpack: ~19.0.4 || ~19.1.5 || ~19.2.4
|
|
4347
3947
|
peerDependenciesMeta:
|
|
4348
3948
|
react-server-dom-webpack:
|
|
4349
3949
|
optional: true
|
|
@@ -4545,8 +4145,78 @@ packages:
|
|
|
4545
4145
|
lighthouse-logger@1.4.2:
|
|
4546
4146
|
resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==}
|
|
4547
4147
|
|
|
4548
|
-
lightningcss@1.
|
|
4549
|
-
resolution: {integrity: sha512-
|
|
4148
|
+
lightningcss-android-arm64@1.30.2:
|
|
4149
|
+
resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==}
|
|
4150
|
+
engines: {node: '>= 12.0.0'}
|
|
4151
|
+
cpu: [arm64]
|
|
4152
|
+
os: [android]
|
|
4153
|
+
|
|
4154
|
+
lightningcss-darwin-arm64@1.30.2:
|
|
4155
|
+
resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
|
|
4156
|
+
engines: {node: '>= 12.0.0'}
|
|
4157
|
+
cpu: [arm64]
|
|
4158
|
+
os: [darwin]
|
|
4159
|
+
|
|
4160
|
+
lightningcss-darwin-x64@1.30.2:
|
|
4161
|
+
resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
|
|
4162
|
+
engines: {node: '>= 12.0.0'}
|
|
4163
|
+
cpu: [x64]
|
|
4164
|
+
os: [darwin]
|
|
4165
|
+
|
|
4166
|
+
lightningcss-freebsd-x64@1.30.2:
|
|
4167
|
+
resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
|
|
4168
|
+
engines: {node: '>= 12.0.0'}
|
|
4169
|
+
cpu: [x64]
|
|
4170
|
+
os: [freebsd]
|
|
4171
|
+
|
|
4172
|
+
lightningcss-linux-arm-gnueabihf@1.30.2:
|
|
4173
|
+
resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
|
|
4174
|
+
engines: {node: '>= 12.0.0'}
|
|
4175
|
+
cpu: [arm]
|
|
4176
|
+
os: [linux]
|
|
4177
|
+
|
|
4178
|
+
lightningcss-linux-arm64-gnu@1.30.2:
|
|
4179
|
+
resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
|
|
4180
|
+
engines: {node: '>= 12.0.0'}
|
|
4181
|
+
cpu: [arm64]
|
|
4182
|
+
os: [linux]
|
|
4183
|
+
libc: [glibc]
|
|
4184
|
+
|
|
4185
|
+
lightningcss-linux-arm64-musl@1.30.2:
|
|
4186
|
+
resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
|
|
4187
|
+
engines: {node: '>= 12.0.0'}
|
|
4188
|
+
cpu: [arm64]
|
|
4189
|
+
os: [linux]
|
|
4190
|
+
libc: [musl]
|
|
4191
|
+
|
|
4192
|
+
lightningcss-linux-x64-gnu@1.30.2:
|
|
4193
|
+
resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
|
|
4194
|
+
engines: {node: '>= 12.0.0'}
|
|
4195
|
+
cpu: [x64]
|
|
4196
|
+
os: [linux]
|
|
4197
|
+
libc: [glibc]
|
|
4198
|
+
|
|
4199
|
+
lightningcss-linux-x64-musl@1.30.2:
|
|
4200
|
+
resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
|
|
4201
|
+
engines: {node: '>= 12.0.0'}
|
|
4202
|
+
cpu: [x64]
|
|
4203
|
+
os: [linux]
|
|
4204
|
+
libc: [musl]
|
|
4205
|
+
|
|
4206
|
+
lightningcss-win32-arm64-msvc@1.30.2:
|
|
4207
|
+
resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
|
|
4208
|
+
engines: {node: '>= 12.0.0'}
|
|
4209
|
+
cpu: [arm64]
|
|
4210
|
+
os: [win32]
|
|
4211
|
+
|
|
4212
|
+
lightningcss-win32-x64-msvc@1.30.2:
|
|
4213
|
+
resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
|
|
4214
|
+
engines: {node: '>= 12.0.0'}
|
|
4215
|
+
cpu: [x64]
|
|
4216
|
+
os: [win32]
|
|
4217
|
+
|
|
4218
|
+
lightningcss@1.30.2:
|
|
4219
|
+
resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
|
|
4550
4220
|
engines: {node: '>= 12.0.0'}
|
|
4551
4221
|
|
|
4552
4222
|
lines-and-columns@1.2.4:
|
|
@@ -4580,10 +4250,6 @@ packages:
|
|
|
4580
4250
|
resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==}
|
|
4581
4251
|
engines: {node: '>=4'}
|
|
4582
4252
|
|
|
4583
|
-
log-symbols@7.0.1:
|
|
4584
|
-
resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
|
|
4585
|
-
engines: {node: '>=18'}
|
|
4586
|
-
|
|
4587
4253
|
loose-envify@1.4.0:
|
|
4588
4254
|
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
|
4589
4255
|
hasBin: true
|
|
@@ -4729,10 +4395,6 @@ packages:
|
|
|
4729
4395
|
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
|
|
4730
4396
|
engines: {node: '>=6'}
|
|
4731
4397
|
|
|
4732
|
-
mimic-function@5.0.1:
|
|
4733
|
-
resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
|
|
4734
|
-
engines: {node: '>=18'}
|
|
4735
|
-
|
|
4736
4398
|
minimatch@10.1.1:
|
|
4737
4399
|
resolution: {integrity: sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==}
|
|
4738
4400
|
engines: {node: 20 || >=22}
|
|
@@ -4920,10 +4582,6 @@ packages:
|
|
|
4920
4582
|
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
|
|
4921
4583
|
engines: {node: '>=6'}
|
|
4922
4584
|
|
|
4923
|
-
onetime@7.0.0:
|
|
4924
|
-
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
|
|
4925
|
-
engines: {node: '>=18'}
|
|
4926
|
-
|
|
4927
4585
|
open@7.4.2:
|
|
4928
4586
|
resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
|
|
4929
4587
|
engines: {node: '>=8'}
|
|
@@ -4952,10 +4610,6 @@ packages:
|
|
|
4952
4610
|
resolution: {integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==}
|
|
4953
4611
|
engines: {node: '>=6'}
|
|
4954
4612
|
|
|
4955
|
-
ora@9.1.0:
|
|
4956
|
-
resolution: {integrity: sha512-53uuLsXHOAJl5zLrUrzY9/kE+uIFEx7iaH4g2BIJQK4LZjY4LpCCYZVKDWIkL+F01wAaCg93duQ1whnK/AmY1A==}
|
|
4957
|
-
engines: {node: '>=20'}
|
|
4958
|
-
|
|
4959
4613
|
own-keys@1.0.1:
|
|
4960
4614
|
resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
|
|
4961
4615
|
engines: {node: '>= 0.4'}
|
|
@@ -5321,8 +4975,8 @@ packages:
|
|
|
5321
4975
|
react: '*'
|
|
5322
4976
|
react-native: '*'
|
|
5323
4977
|
|
|
5324
|
-
react-native-svg@15.
|
|
5325
|
-
resolution: {integrity: sha512
|
|
4978
|
+
react-native-svg@15.12.1:
|
|
4979
|
+
resolution: {integrity: sha512-vCuZJDf8a5aNC2dlMovEv4Z0jjEUET53lm/iILFnFewa15b4atjVxU6Wirm6O9y6dEsdjDZVD7Q3QM4T1wlI8g==}
|
|
5326
4980
|
peerDependencies:
|
|
5327
4981
|
react: '*'
|
|
5328
4982
|
react-native: '*'
|
|
@@ -5518,10 +5172,6 @@ packages:
|
|
|
5518
5172
|
resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==}
|
|
5519
5173
|
engines: {node: '>=4'}
|
|
5520
5174
|
|
|
5521
|
-
restore-cursor@5.1.0:
|
|
5522
|
-
resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
|
|
5523
|
-
engines: {node: '>=18'}
|
|
5524
|
-
|
|
5525
5175
|
rimraf@3.0.2:
|
|
5526
5176
|
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
|
|
5527
5177
|
deprecated: Rimraf versions prior to v4 are no longer supported
|
|
@@ -5653,10 +5303,6 @@ packages:
|
|
|
5653
5303
|
signal-exit@3.0.7:
|
|
5654
5304
|
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
|
|
5655
5305
|
|
|
5656
|
-
signal-exit@4.1.0:
|
|
5657
|
-
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
|
|
5658
|
-
engines: {node: '>=14'}
|
|
5659
|
-
|
|
5660
5306
|
simple-plist@1.3.1:
|
|
5661
5307
|
resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==}
|
|
5662
5308
|
|
|
@@ -5746,17 +5392,10 @@ packages:
|
|
|
5746
5392
|
resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
|
|
5747
5393
|
engines: {node: '>= 0.8'}
|
|
5748
5394
|
|
|
5749
|
-
stdin-discarder@0.2.2:
|
|
5750
|
-
resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
|
|
5751
|
-
engines: {node: '>=18'}
|
|
5752
|
-
|
|
5753
5395
|
stop-iteration-iterator@1.1.0:
|
|
5754
5396
|
resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
|
|
5755
5397
|
engines: {node: '>= 0.4'}
|
|
5756
5398
|
|
|
5757
|
-
stream-browserify@3.0.0:
|
|
5758
|
-
resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==}
|
|
5759
|
-
|
|
5760
5399
|
stream-buffers@2.2.0:
|
|
5761
5400
|
resolution: {integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==}
|
|
5762
5401
|
engines: {node: '>= 0.10.0'}
|
|
@@ -5781,10 +5420,6 @@ packages:
|
|
|
5781
5420
|
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
|
|
5782
5421
|
engines: {node: '>=8'}
|
|
5783
5422
|
|
|
5784
|
-
string-width@8.1.0:
|
|
5785
|
-
resolution: {integrity: sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==}
|
|
5786
|
-
engines: {node: '>=20'}
|
|
5787
|
-
|
|
5788
5423
|
string.prototype.matchall@4.0.12:
|
|
5789
5424
|
resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==}
|
|
5790
5425
|
engines: {node: '>= 0.4'}
|
|
@@ -5839,9 +5474,6 @@ packages:
|
|
|
5839
5474
|
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
|
5840
5475
|
engines: {node: '>=8'}
|
|
5841
5476
|
|
|
5842
|
-
strnum@2.1.2:
|
|
5843
|
-
resolution: {integrity: sha512-l63NF9y/cLROq/yqKXSLtcMeeyOfnSQlfMSlzFt/K73oIaD8DGaQWd7Z34X9GPiKqP5rbSh84Hl4bOlLcjiSrQ==}
|
|
5844
|
-
|
|
5845
5477
|
structured-headers@0.4.1:
|
|
5846
5478
|
resolution: {integrity: sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==}
|
|
5847
5479
|
|
|
@@ -5879,6 +5511,7 @@ packages:
|
|
|
5879
5511
|
tar@7.5.6:
|
|
5880
5512
|
resolution: {integrity: sha512-xqUeu2JAIJpXyvskvU3uvQW8PAmHrtXp2KDuMJwQqW8Sqq0CaZBAQ+dKS3RBXVhU4wC5NjAdKrmh84241gO9cA==}
|
|
5881
5513
|
engines: {node: '>=18'}
|
|
5514
|
+
deprecated: Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exhorbitant rates) by contacting i@izs.me
|
|
5882
5515
|
|
|
5883
5516
|
temp-dir@2.0.0:
|
|
5884
5517
|
resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
|
|
@@ -5933,11 +5566,6 @@ packages:
|
|
|
5933
5566
|
resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
|
|
5934
5567
|
engines: {node: '>=12'}
|
|
5935
5568
|
|
|
5936
|
-
transliteration@2.6.1:
|
|
5937
|
-
resolution: {integrity: sha512-hJ9BhrQAOnNTbpOr1MxsNjZISkn7ppvF5TKUeFmTE1mG4ZPD/XVxF0L0LUoIUCWmQyxH0gJpVtfYLAWf298U9w==}
|
|
5938
|
-
engines: {node: '>=20.0.0'}
|
|
5939
|
-
hasBin: true
|
|
5940
|
-
|
|
5941
5569
|
ts-api-utils@2.4.0:
|
|
5942
5570
|
resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
|
|
5943
5571
|
engines: {node: '>=18.12'}
|
|
@@ -6160,6 +5788,7 @@ packages:
|
|
|
6160
5788
|
whatwg-encoding@2.0.0:
|
|
6161
5789
|
resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
|
|
6162
5790
|
engines: {node: '>=12'}
|
|
5791
|
+
deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation
|
|
6163
5792
|
|
|
6164
5793
|
whatwg-fetch@3.6.20:
|
|
6165
5794
|
resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==}
|
|
@@ -6308,582 +5937,34 @@ packages:
|
|
|
6308
5937
|
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
|
|
6309
5938
|
engines: {node: '>=10'}
|
|
6310
5939
|
|
|
6311
|
-
yargs-parser@21.1.1:
|
|
6312
|
-
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
|
|
6313
|
-
engines: {node: '>=12'}
|
|
6314
|
-
|
|
6315
|
-
yargs@16.2.0:
|
|
6316
|
-
resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
|
|
6317
|
-
engines: {node: '>=10'}
|
|
6318
|
-
|
|
6319
|
-
yargs@17.7.2:
|
|
6320
|
-
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
|
|
6321
|
-
engines: {node: '>=12'}
|
|
6322
|
-
|
|
6323
|
-
yocto-queue@0.1.0:
|
|
6324
|
-
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
|
6325
|
-
engines: {node: '>=10'}
|
|
6326
|
-
|
|
6327
|
-
yoctocolors@2.1.2:
|
|
6328
|
-
resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
|
|
6329
|
-
engines: {node: '>=18'}
|
|
6330
|
-
|
|
6331
|
-
zod-validation-error@4.0.2:
|
|
6332
|
-
resolution: {integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==}
|
|
6333
|
-
engines: {node: '>=18.0.0'}
|
|
6334
|
-
peerDependencies:
|
|
6335
|
-
zod: ^3.25.0 || ^4.0.0
|
|
6336
|
-
|
|
6337
|
-
zod@4.3.6:
|
|
6338
|
-
resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==}
|
|
6339
|
-
|
|
6340
|
-
snapshots:
|
|
6341
|
-
|
|
6342
|
-
'@0no-co/graphql.web@1.2.0': {}
|
|
6343
|
-
|
|
6344
|
-
'@aws-crypto/crc32@5.2.0':
|
|
6345
|
-
dependencies:
|
|
6346
|
-
'@aws-crypto/util': 5.2.0
|
|
6347
|
-
'@aws-sdk/types': 3.973.0
|
|
6348
|
-
tslib: 2.8.1
|
|
6349
|
-
|
|
6350
|
-
'@aws-crypto/crc32c@5.2.0':
|
|
6351
|
-
dependencies:
|
|
6352
|
-
'@aws-crypto/util': 5.2.0
|
|
6353
|
-
'@aws-sdk/types': 3.973.0
|
|
6354
|
-
tslib: 2.8.1
|
|
6355
|
-
|
|
6356
|
-
'@aws-crypto/sha1-browser@5.2.0':
|
|
6357
|
-
dependencies:
|
|
6358
|
-
'@aws-crypto/supports-web-crypto': 5.2.0
|
|
6359
|
-
'@aws-crypto/util': 5.2.0
|
|
6360
|
-
'@aws-sdk/types': 3.973.0
|
|
6361
|
-
'@aws-sdk/util-locate-window': 3.965.3
|
|
6362
|
-
'@smithy/util-utf8': 2.3.0
|
|
6363
|
-
tslib: 2.8.1
|
|
6364
|
-
|
|
6365
|
-
'@aws-crypto/sha256-browser@5.2.0':
|
|
6366
|
-
dependencies:
|
|
6367
|
-
'@aws-crypto/sha256-js': 5.2.0
|
|
6368
|
-
'@aws-crypto/supports-web-crypto': 5.2.0
|
|
6369
|
-
'@aws-crypto/util': 5.2.0
|
|
6370
|
-
'@aws-sdk/types': 3.973.0
|
|
6371
|
-
'@aws-sdk/util-locate-window': 3.965.3
|
|
6372
|
-
'@smithy/util-utf8': 2.3.0
|
|
6373
|
-
tslib: 2.8.1
|
|
6374
|
-
|
|
6375
|
-
'@aws-crypto/sha256-js@5.2.0':
|
|
6376
|
-
dependencies:
|
|
6377
|
-
'@aws-crypto/util': 5.2.0
|
|
6378
|
-
'@aws-sdk/types': 3.973.0
|
|
6379
|
-
tslib: 2.8.1
|
|
6380
|
-
|
|
6381
|
-
'@aws-crypto/supports-web-crypto@5.2.0':
|
|
6382
|
-
dependencies:
|
|
6383
|
-
tslib: 2.8.1
|
|
6384
|
-
|
|
6385
|
-
'@aws-crypto/util@5.2.0':
|
|
6386
|
-
dependencies:
|
|
6387
|
-
'@aws-sdk/types': 3.973.0
|
|
6388
|
-
'@smithy/util-utf8': 2.3.0
|
|
6389
|
-
tslib: 2.8.1
|
|
6390
|
-
|
|
6391
|
-
'@aws-sdk/client-s3@3.975.0':
|
|
6392
|
-
dependencies:
|
|
6393
|
-
'@aws-crypto/sha1-browser': 5.2.0
|
|
6394
|
-
'@aws-crypto/sha256-browser': 5.2.0
|
|
6395
|
-
'@aws-crypto/sha256-js': 5.2.0
|
|
6396
|
-
'@aws-sdk/core': 3.973.1
|
|
6397
|
-
'@aws-sdk/credential-provider-node': 3.972.1
|
|
6398
|
-
'@aws-sdk/middleware-bucket-endpoint': 3.972.1
|
|
6399
|
-
'@aws-sdk/middleware-expect-continue': 3.972.1
|
|
6400
|
-
'@aws-sdk/middleware-flexible-checksums': 3.972.1
|
|
6401
|
-
'@aws-sdk/middleware-host-header': 3.972.1
|
|
6402
|
-
'@aws-sdk/middleware-location-constraint': 3.972.1
|
|
6403
|
-
'@aws-sdk/middleware-logger': 3.972.1
|
|
6404
|
-
'@aws-sdk/middleware-recursion-detection': 3.972.1
|
|
6405
|
-
'@aws-sdk/middleware-sdk-s3': 3.972.2
|
|
6406
|
-
'@aws-sdk/middleware-ssec': 3.972.1
|
|
6407
|
-
'@aws-sdk/middleware-user-agent': 3.972.2
|
|
6408
|
-
'@aws-sdk/region-config-resolver': 3.972.1
|
|
6409
|
-
'@aws-sdk/signature-v4-multi-region': 3.972.0
|
|
6410
|
-
'@aws-sdk/types': 3.973.0
|
|
6411
|
-
'@aws-sdk/util-endpoints': 3.972.0
|
|
6412
|
-
'@aws-sdk/util-user-agent-browser': 3.972.1
|
|
6413
|
-
'@aws-sdk/util-user-agent-node': 3.972.1
|
|
6414
|
-
'@smithy/config-resolver': 4.4.6
|
|
6415
|
-
'@smithy/core': 3.21.1
|
|
6416
|
-
'@smithy/eventstream-serde-browser': 4.2.8
|
|
6417
|
-
'@smithy/eventstream-serde-config-resolver': 4.3.8
|
|
6418
|
-
'@smithy/eventstream-serde-node': 4.2.8
|
|
6419
|
-
'@smithy/fetch-http-handler': 5.3.9
|
|
6420
|
-
'@smithy/hash-blob-browser': 4.2.9
|
|
6421
|
-
'@smithy/hash-node': 4.2.8
|
|
6422
|
-
'@smithy/hash-stream-node': 4.2.8
|
|
6423
|
-
'@smithy/invalid-dependency': 4.2.8
|
|
6424
|
-
'@smithy/md5-js': 4.2.8
|
|
6425
|
-
'@smithy/middleware-content-length': 4.2.8
|
|
6426
|
-
'@smithy/middleware-endpoint': 4.4.11
|
|
6427
|
-
'@smithy/middleware-retry': 4.4.27
|
|
6428
|
-
'@smithy/middleware-serde': 4.2.9
|
|
6429
|
-
'@smithy/middleware-stack': 4.2.8
|
|
6430
|
-
'@smithy/node-config-provider': 4.3.8
|
|
6431
|
-
'@smithy/node-http-handler': 4.4.8
|
|
6432
|
-
'@smithy/protocol-http': 5.3.8
|
|
6433
|
-
'@smithy/smithy-client': 4.10.12
|
|
6434
|
-
'@smithy/types': 4.12.0
|
|
6435
|
-
'@smithy/url-parser': 4.2.8
|
|
6436
|
-
'@smithy/util-base64': 4.3.0
|
|
6437
|
-
'@smithy/util-body-length-browser': 4.2.0
|
|
6438
|
-
'@smithy/util-body-length-node': 4.2.1
|
|
6439
|
-
'@smithy/util-defaults-mode-browser': 4.3.26
|
|
6440
|
-
'@smithy/util-defaults-mode-node': 4.2.29
|
|
6441
|
-
'@smithy/util-endpoints': 3.2.8
|
|
6442
|
-
'@smithy/util-middleware': 4.2.8
|
|
6443
|
-
'@smithy/util-retry': 4.2.8
|
|
6444
|
-
'@smithy/util-stream': 4.5.10
|
|
6445
|
-
'@smithy/util-utf8': 4.2.0
|
|
6446
|
-
'@smithy/util-waiter': 4.2.8
|
|
6447
|
-
tslib: 2.8.1
|
|
6448
|
-
transitivePeerDependencies:
|
|
6449
|
-
- aws-crt
|
|
6450
|
-
|
|
6451
|
-
'@aws-sdk/client-sso@3.974.0':
|
|
6452
|
-
dependencies:
|
|
6453
|
-
'@aws-crypto/sha256-browser': 5.2.0
|
|
6454
|
-
'@aws-crypto/sha256-js': 5.2.0
|
|
6455
|
-
'@aws-sdk/core': 3.973.1
|
|
6456
|
-
'@aws-sdk/middleware-host-header': 3.972.1
|
|
6457
|
-
'@aws-sdk/middleware-logger': 3.972.1
|
|
6458
|
-
'@aws-sdk/middleware-recursion-detection': 3.972.1
|
|
6459
|
-
'@aws-sdk/middleware-user-agent': 3.972.2
|
|
6460
|
-
'@aws-sdk/region-config-resolver': 3.972.1
|
|
6461
|
-
'@aws-sdk/types': 3.973.0
|
|
6462
|
-
'@aws-sdk/util-endpoints': 3.972.0
|
|
6463
|
-
'@aws-sdk/util-user-agent-browser': 3.972.1
|
|
6464
|
-
'@aws-sdk/util-user-agent-node': 3.972.1
|
|
6465
|
-
'@smithy/config-resolver': 4.4.6
|
|
6466
|
-
'@smithy/core': 3.21.1
|
|
6467
|
-
'@smithy/fetch-http-handler': 5.3.9
|
|
6468
|
-
'@smithy/hash-node': 4.2.8
|
|
6469
|
-
'@smithy/invalid-dependency': 4.2.8
|
|
6470
|
-
'@smithy/middleware-content-length': 4.2.8
|
|
6471
|
-
'@smithy/middleware-endpoint': 4.4.11
|
|
6472
|
-
'@smithy/middleware-retry': 4.4.27
|
|
6473
|
-
'@smithy/middleware-serde': 4.2.9
|
|
6474
|
-
'@smithy/middleware-stack': 4.2.8
|
|
6475
|
-
'@smithy/node-config-provider': 4.3.8
|
|
6476
|
-
'@smithy/node-http-handler': 4.4.8
|
|
6477
|
-
'@smithy/protocol-http': 5.3.8
|
|
6478
|
-
'@smithy/smithy-client': 4.10.12
|
|
6479
|
-
'@smithy/types': 4.12.0
|
|
6480
|
-
'@smithy/url-parser': 4.2.8
|
|
6481
|
-
'@smithy/util-base64': 4.3.0
|
|
6482
|
-
'@smithy/util-body-length-browser': 4.2.0
|
|
6483
|
-
'@smithy/util-body-length-node': 4.2.1
|
|
6484
|
-
'@smithy/util-defaults-mode-browser': 4.3.26
|
|
6485
|
-
'@smithy/util-defaults-mode-node': 4.2.29
|
|
6486
|
-
'@smithy/util-endpoints': 3.2.8
|
|
6487
|
-
'@smithy/util-middleware': 4.2.8
|
|
6488
|
-
'@smithy/util-retry': 4.2.8
|
|
6489
|
-
'@smithy/util-utf8': 4.2.0
|
|
6490
|
-
tslib: 2.8.1
|
|
6491
|
-
transitivePeerDependencies:
|
|
6492
|
-
- aws-crt
|
|
6493
|
-
|
|
6494
|
-
'@aws-sdk/core@3.972.0':
|
|
6495
|
-
dependencies:
|
|
6496
|
-
'@aws-sdk/types': 3.972.0
|
|
6497
|
-
'@aws-sdk/xml-builder': 3.972.0
|
|
6498
|
-
'@smithy/core': 3.21.1
|
|
6499
|
-
'@smithy/node-config-provider': 4.3.8
|
|
6500
|
-
'@smithy/property-provider': 4.2.8
|
|
6501
|
-
'@smithy/protocol-http': 5.3.8
|
|
6502
|
-
'@smithy/signature-v4': 5.3.8
|
|
6503
|
-
'@smithy/smithy-client': 4.10.12
|
|
6504
|
-
'@smithy/types': 4.12.0
|
|
6505
|
-
'@smithy/util-base64': 4.3.0
|
|
6506
|
-
'@smithy/util-middleware': 4.2.8
|
|
6507
|
-
'@smithy/util-utf8': 4.2.0
|
|
6508
|
-
tslib: 2.8.1
|
|
6509
|
-
|
|
6510
|
-
'@aws-sdk/core@3.973.1':
|
|
6511
|
-
dependencies:
|
|
6512
|
-
'@aws-sdk/types': 3.973.0
|
|
6513
|
-
'@aws-sdk/xml-builder': 3.972.1
|
|
6514
|
-
'@smithy/core': 3.21.1
|
|
6515
|
-
'@smithy/node-config-provider': 4.3.8
|
|
6516
|
-
'@smithy/property-provider': 4.2.8
|
|
6517
|
-
'@smithy/protocol-http': 5.3.8
|
|
6518
|
-
'@smithy/signature-v4': 5.3.8
|
|
6519
|
-
'@smithy/smithy-client': 4.10.12
|
|
6520
|
-
'@smithy/types': 4.12.0
|
|
6521
|
-
'@smithy/util-base64': 4.3.0
|
|
6522
|
-
'@smithy/util-middleware': 4.2.8
|
|
6523
|
-
'@smithy/util-utf8': 4.2.0
|
|
6524
|
-
tslib: 2.8.1
|
|
6525
|
-
|
|
6526
|
-
'@aws-sdk/crc64-nvme@3.972.0':
|
|
6527
|
-
dependencies:
|
|
6528
|
-
'@smithy/types': 4.12.0
|
|
6529
|
-
tslib: 2.8.1
|
|
6530
|
-
|
|
6531
|
-
'@aws-sdk/credential-provider-env@3.972.1':
|
|
6532
|
-
dependencies:
|
|
6533
|
-
'@aws-sdk/core': 3.973.1
|
|
6534
|
-
'@aws-sdk/types': 3.973.0
|
|
6535
|
-
'@smithy/property-provider': 4.2.8
|
|
6536
|
-
'@smithy/types': 4.12.0
|
|
6537
|
-
tslib: 2.8.1
|
|
6538
|
-
|
|
6539
|
-
'@aws-sdk/credential-provider-http@3.972.2':
|
|
6540
|
-
dependencies:
|
|
6541
|
-
'@aws-sdk/core': 3.973.1
|
|
6542
|
-
'@aws-sdk/types': 3.973.0
|
|
6543
|
-
'@smithy/fetch-http-handler': 5.3.9
|
|
6544
|
-
'@smithy/node-http-handler': 4.4.8
|
|
6545
|
-
'@smithy/property-provider': 4.2.8
|
|
6546
|
-
'@smithy/protocol-http': 5.3.8
|
|
6547
|
-
'@smithy/smithy-client': 4.10.12
|
|
6548
|
-
'@smithy/types': 4.12.0
|
|
6549
|
-
'@smithy/util-stream': 4.5.10
|
|
6550
|
-
tslib: 2.8.1
|
|
6551
|
-
|
|
6552
|
-
'@aws-sdk/credential-provider-ini@3.972.1':
|
|
6553
|
-
dependencies:
|
|
6554
|
-
'@aws-sdk/core': 3.973.1
|
|
6555
|
-
'@aws-sdk/credential-provider-env': 3.972.1
|
|
6556
|
-
'@aws-sdk/credential-provider-http': 3.972.2
|
|
6557
|
-
'@aws-sdk/credential-provider-login': 3.972.1
|
|
6558
|
-
'@aws-sdk/credential-provider-process': 3.972.1
|
|
6559
|
-
'@aws-sdk/credential-provider-sso': 3.972.1
|
|
6560
|
-
'@aws-sdk/credential-provider-web-identity': 3.972.1
|
|
6561
|
-
'@aws-sdk/nested-clients': 3.974.0
|
|
6562
|
-
'@aws-sdk/types': 3.973.0
|
|
6563
|
-
'@smithy/credential-provider-imds': 4.2.8
|
|
6564
|
-
'@smithy/property-provider': 4.2.8
|
|
6565
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
6566
|
-
'@smithy/types': 4.12.0
|
|
6567
|
-
tslib: 2.8.1
|
|
6568
|
-
transitivePeerDependencies:
|
|
6569
|
-
- aws-crt
|
|
6570
|
-
|
|
6571
|
-
'@aws-sdk/credential-provider-login@3.972.1':
|
|
6572
|
-
dependencies:
|
|
6573
|
-
'@aws-sdk/core': 3.973.1
|
|
6574
|
-
'@aws-sdk/nested-clients': 3.974.0
|
|
6575
|
-
'@aws-sdk/types': 3.973.0
|
|
6576
|
-
'@smithy/property-provider': 4.2.8
|
|
6577
|
-
'@smithy/protocol-http': 5.3.8
|
|
6578
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
6579
|
-
'@smithy/types': 4.12.0
|
|
6580
|
-
tslib: 2.8.1
|
|
6581
|
-
transitivePeerDependencies:
|
|
6582
|
-
- aws-crt
|
|
6583
|
-
|
|
6584
|
-
'@aws-sdk/credential-provider-node@3.972.1':
|
|
6585
|
-
dependencies:
|
|
6586
|
-
'@aws-sdk/credential-provider-env': 3.972.1
|
|
6587
|
-
'@aws-sdk/credential-provider-http': 3.972.2
|
|
6588
|
-
'@aws-sdk/credential-provider-ini': 3.972.1
|
|
6589
|
-
'@aws-sdk/credential-provider-process': 3.972.1
|
|
6590
|
-
'@aws-sdk/credential-provider-sso': 3.972.1
|
|
6591
|
-
'@aws-sdk/credential-provider-web-identity': 3.972.1
|
|
6592
|
-
'@aws-sdk/types': 3.973.0
|
|
6593
|
-
'@smithy/credential-provider-imds': 4.2.8
|
|
6594
|
-
'@smithy/property-provider': 4.2.8
|
|
6595
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
6596
|
-
'@smithy/types': 4.12.0
|
|
6597
|
-
tslib: 2.8.1
|
|
6598
|
-
transitivePeerDependencies:
|
|
6599
|
-
- aws-crt
|
|
6600
|
-
|
|
6601
|
-
'@aws-sdk/credential-provider-process@3.972.1':
|
|
6602
|
-
dependencies:
|
|
6603
|
-
'@aws-sdk/core': 3.973.1
|
|
6604
|
-
'@aws-sdk/types': 3.973.0
|
|
6605
|
-
'@smithy/property-provider': 4.2.8
|
|
6606
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
6607
|
-
'@smithy/types': 4.12.0
|
|
6608
|
-
tslib: 2.8.1
|
|
6609
|
-
|
|
6610
|
-
'@aws-sdk/credential-provider-sso@3.972.1':
|
|
6611
|
-
dependencies:
|
|
6612
|
-
'@aws-sdk/client-sso': 3.974.0
|
|
6613
|
-
'@aws-sdk/core': 3.973.1
|
|
6614
|
-
'@aws-sdk/token-providers': 3.974.0
|
|
6615
|
-
'@aws-sdk/types': 3.973.0
|
|
6616
|
-
'@smithy/property-provider': 4.2.8
|
|
6617
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
6618
|
-
'@smithy/types': 4.12.0
|
|
6619
|
-
tslib: 2.8.1
|
|
6620
|
-
transitivePeerDependencies:
|
|
6621
|
-
- aws-crt
|
|
6622
|
-
|
|
6623
|
-
'@aws-sdk/credential-provider-web-identity@3.972.1':
|
|
6624
|
-
dependencies:
|
|
6625
|
-
'@aws-sdk/core': 3.973.1
|
|
6626
|
-
'@aws-sdk/nested-clients': 3.974.0
|
|
6627
|
-
'@aws-sdk/types': 3.973.0
|
|
6628
|
-
'@smithy/property-provider': 4.2.8
|
|
6629
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
6630
|
-
'@smithy/types': 4.12.0
|
|
6631
|
-
tslib: 2.8.1
|
|
6632
|
-
transitivePeerDependencies:
|
|
6633
|
-
- aws-crt
|
|
6634
|
-
|
|
6635
|
-
'@aws-sdk/lib-storage@3.975.0(@aws-sdk/client-s3@3.975.0)':
|
|
6636
|
-
dependencies:
|
|
6637
|
-
'@aws-sdk/client-s3': 3.975.0
|
|
6638
|
-
'@smithy/abort-controller': 4.2.8
|
|
6639
|
-
'@smithy/middleware-endpoint': 4.4.11
|
|
6640
|
-
'@smithy/smithy-client': 4.10.12
|
|
6641
|
-
buffer: 5.6.0
|
|
6642
|
-
events: 3.3.0
|
|
6643
|
-
stream-browserify: 3.0.0
|
|
6644
|
-
tslib: 2.8.1
|
|
6645
|
-
|
|
6646
|
-
'@aws-sdk/middleware-bucket-endpoint@3.972.1':
|
|
6647
|
-
dependencies:
|
|
6648
|
-
'@aws-sdk/types': 3.973.0
|
|
6649
|
-
'@aws-sdk/util-arn-parser': 3.972.1
|
|
6650
|
-
'@smithy/node-config-provider': 4.3.8
|
|
6651
|
-
'@smithy/protocol-http': 5.3.8
|
|
6652
|
-
'@smithy/types': 4.12.0
|
|
6653
|
-
'@smithy/util-config-provider': 4.2.0
|
|
6654
|
-
tslib: 2.8.1
|
|
6655
|
-
|
|
6656
|
-
'@aws-sdk/middleware-expect-continue@3.972.1':
|
|
6657
|
-
dependencies:
|
|
6658
|
-
'@aws-sdk/types': 3.973.0
|
|
6659
|
-
'@smithy/protocol-http': 5.3.8
|
|
6660
|
-
'@smithy/types': 4.12.0
|
|
6661
|
-
tslib: 2.8.1
|
|
6662
|
-
|
|
6663
|
-
'@aws-sdk/middleware-flexible-checksums@3.972.1':
|
|
6664
|
-
dependencies:
|
|
6665
|
-
'@aws-crypto/crc32': 5.2.0
|
|
6666
|
-
'@aws-crypto/crc32c': 5.2.0
|
|
6667
|
-
'@aws-crypto/util': 5.2.0
|
|
6668
|
-
'@aws-sdk/core': 3.973.1
|
|
6669
|
-
'@aws-sdk/crc64-nvme': 3.972.0
|
|
6670
|
-
'@aws-sdk/types': 3.973.0
|
|
6671
|
-
'@smithy/is-array-buffer': 4.2.0
|
|
6672
|
-
'@smithy/node-config-provider': 4.3.8
|
|
6673
|
-
'@smithy/protocol-http': 5.3.8
|
|
6674
|
-
'@smithy/types': 4.12.0
|
|
6675
|
-
'@smithy/util-middleware': 4.2.8
|
|
6676
|
-
'@smithy/util-stream': 4.5.10
|
|
6677
|
-
'@smithy/util-utf8': 4.2.0
|
|
6678
|
-
tslib: 2.8.1
|
|
6679
|
-
|
|
6680
|
-
'@aws-sdk/middleware-host-header@3.972.1':
|
|
6681
|
-
dependencies:
|
|
6682
|
-
'@aws-sdk/types': 3.973.0
|
|
6683
|
-
'@smithy/protocol-http': 5.3.8
|
|
6684
|
-
'@smithy/types': 4.12.0
|
|
6685
|
-
tslib: 2.8.1
|
|
6686
|
-
|
|
6687
|
-
'@aws-sdk/middleware-location-constraint@3.972.1':
|
|
6688
|
-
dependencies:
|
|
6689
|
-
'@aws-sdk/types': 3.973.0
|
|
6690
|
-
'@smithy/types': 4.12.0
|
|
6691
|
-
tslib: 2.8.1
|
|
6692
|
-
|
|
6693
|
-
'@aws-sdk/middleware-logger@3.972.1':
|
|
6694
|
-
dependencies:
|
|
6695
|
-
'@aws-sdk/types': 3.973.0
|
|
6696
|
-
'@smithy/types': 4.12.0
|
|
6697
|
-
tslib: 2.8.1
|
|
6698
|
-
|
|
6699
|
-
'@aws-sdk/middleware-recursion-detection@3.972.1':
|
|
6700
|
-
dependencies:
|
|
6701
|
-
'@aws-sdk/types': 3.973.0
|
|
6702
|
-
'@aws/lambda-invoke-store': 0.2.3
|
|
6703
|
-
'@smithy/protocol-http': 5.3.8
|
|
6704
|
-
'@smithy/types': 4.12.0
|
|
6705
|
-
tslib: 2.8.1
|
|
6706
|
-
|
|
6707
|
-
'@aws-sdk/middleware-sdk-s3@3.972.0':
|
|
6708
|
-
dependencies:
|
|
6709
|
-
'@aws-sdk/core': 3.972.0
|
|
6710
|
-
'@aws-sdk/types': 3.972.0
|
|
6711
|
-
'@aws-sdk/util-arn-parser': 3.972.0
|
|
6712
|
-
'@smithy/core': 3.21.1
|
|
6713
|
-
'@smithy/node-config-provider': 4.3.8
|
|
6714
|
-
'@smithy/protocol-http': 5.3.8
|
|
6715
|
-
'@smithy/signature-v4': 5.3.8
|
|
6716
|
-
'@smithy/smithy-client': 4.10.12
|
|
6717
|
-
'@smithy/types': 4.12.0
|
|
6718
|
-
'@smithy/util-config-provider': 4.2.0
|
|
6719
|
-
'@smithy/util-middleware': 4.2.8
|
|
6720
|
-
'@smithy/util-stream': 4.5.10
|
|
6721
|
-
'@smithy/util-utf8': 4.2.0
|
|
6722
|
-
tslib: 2.8.1
|
|
6723
|
-
|
|
6724
|
-
'@aws-sdk/middleware-sdk-s3@3.972.2':
|
|
6725
|
-
dependencies:
|
|
6726
|
-
'@aws-sdk/core': 3.973.1
|
|
6727
|
-
'@aws-sdk/types': 3.973.0
|
|
6728
|
-
'@aws-sdk/util-arn-parser': 3.972.1
|
|
6729
|
-
'@smithy/core': 3.21.1
|
|
6730
|
-
'@smithy/node-config-provider': 4.3.8
|
|
6731
|
-
'@smithy/protocol-http': 5.3.8
|
|
6732
|
-
'@smithy/signature-v4': 5.3.8
|
|
6733
|
-
'@smithy/smithy-client': 4.10.12
|
|
6734
|
-
'@smithy/types': 4.12.0
|
|
6735
|
-
'@smithy/util-config-provider': 4.2.0
|
|
6736
|
-
'@smithy/util-middleware': 4.2.8
|
|
6737
|
-
'@smithy/util-stream': 4.5.10
|
|
6738
|
-
'@smithy/util-utf8': 4.2.0
|
|
6739
|
-
tslib: 2.8.1
|
|
6740
|
-
|
|
6741
|
-
'@aws-sdk/middleware-ssec@3.972.1':
|
|
6742
|
-
dependencies:
|
|
6743
|
-
'@aws-sdk/types': 3.973.0
|
|
6744
|
-
'@smithy/types': 4.12.0
|
|
6745
|
-
tslib: 2.8.1
|
|
6746
|
-
|
|
6747
|
-
'@aws-sdk/middleware-user-agent@3.972.2':
|
|
6748
|
-
dependencies:
|
|
6749
|
-
'@aws-sdk/core': 3.973.1
|
|
6750
|
-
'@aws-sdk/types': 3.973.0
|
|
6751
|
-
'@aws-sdk/util-endpoints': 3.972.0
|
|
6752
|
-
'@smithy/core': 3.21.1
|
|
6753
|
-
'@smithy/protocol-http': 5.3.8
|
|
6754
|
-
'@smithy/types': 4.12.0
|
|
6755
|
-
tslib: 2.8.1
|
|
6756
|
-
|
|
6757
|
-
'@aws-sdk/nested-clients@3.974.0':
|
|
6758
|
-
dependencies:
|
|
6759
|
-
'@aws-crypto/sha256-browser': 5.2.0
|
|
6760
|
-
'@aws-crypto/sha256-js': 5.2.0
|
|
6761
|
-
'@aws-sdk/core': 3.973.1
|
|
6762
|
-
'@aws-sdk/middleware-host-header': 3.972.1
|
|
6763
|
-
'@aws-sdk/middleware-logger': 3.972.1
|
|
6764
|
-
'@aws-sdk/middleware-recursion-detection': 3.972.1
|
|
6765
|
-
'@aws-sdk/middleware-user-agent': 3.972.2
|
|
6766
|
-
'@aws-sdk/region-config-resolver': 3.972.1
|
|
6767
|
-
'@aws-sdk/types': 3.973.0
|
|
6768
|
-
'@aws-sdk/util-endpoints': 3.972.0
|
|
6769
|
-
'@aws-sdk/util-user-agent-browser': 3.972.1
|
|
6770
|
-
'@aws-sdk/util-user-agent-node': 3.972.1
|
|
6771
|
-
'@smithy/config-resolver': 4.4.6
|
|
6772
|
-
'@smithy/core': 3.21.1
|
|
6773
|
-
'@smithy/fetch-http-handler': 5.3.9
|
|
6774
|
-
'@smithy/hash-node': 4.2.8
|
|
6775
|
-
'@smithy/invalid-dependency': 4.2.8
|
|
6776
|
-
'@smithy/middleware-content-length': 4.2.8
|
|
6777
|
-
'@smithy/middleware-endpoint': 4.4.11
|
|
6778
|
-
'@smithy/middleware-retry': 4.4.27
|
|
6779
|
-
'@smithy/middleware-serde': 4.2.9
|
|
6780
|
-
'@smithy/middleware-stack': 4.2.8
|
|
6781
|
-
'@smithy/node-config-provider': 4.3.8
|
|
6782
|
-
'@smithy/node-http-handler': 4.4.8
|
|
6783
|
-
'@smithy/protocol-http': 5.3.8
|
|
6784
|
-
'@smithy/smithy-client': 4.10.12
|
|
6785
|
-
'@smithy/types': 4.12.0
|
|
6786
|
-
'@smithy/url-parser': 4.2.8
|
|
6787
|
-
'@smithy/util-base64': 4.3.0
|
|
6788
|
-
'@smithy/util-body-length-browser': 4.2.0
|
|
6789
|
-
'@smithy/util-body-length-node': 4.2.1
|
|
6790
|
-
'@smithy/util-defaults-mode-browser': 4.3.26
|
|
6791
|
-
'@smithy/util-defaults-mode-node': 4.2.29
|
|
6792
|
-
'@smithy/util-endpoints': 3.2.8
|
|
6793
|
-
'@smithy/util-middleware': 4.2.8
|
|
6794
|
-
'@smithy/util-retry': 4.2.8
|
|
6795
|
-
'@smithy/util-utf8': 4.2.0
|
|
6796
|
-
tslib: 2.8.1
|
|
6797
|
-
transitivePeerDependencies:
|
|
6798
|
-
- aws-crt
|
|
6799
|
-
|
|
6800
|
-
'@aws-sdk/region-config-resolver@3.972.1':
|
|
6801
|
-
dependencies:
|
|
6802
|
-
'@aws-sdk/types': 3.973.0
|
|
6803
|
-
'@smithy/config-resolver': 4.4.6
|
|
6804
|
-
'@smithy/node-config-provider': 4.3.8
|
|
6805
|
-
'@smithy/types': 4.12.0
|
|
6806
|
-
tslib: 2.8.1
|
|
6807
|
-
|
|
6808
|
-
'@aws-sdk/signature-v4-multi-region@3.972.0':
|
|
6809
|
-
dependencies:
|
|
6810
|
-
'@aws-sdk/middleware-sdk-s3': 3.972.0
|
|
6811
|
-
'@aws-sdk/types': 3.972.0
|
|
6812
|
-
'@smithy/protocol-http': 5.3.8
|
|
6813
|
-
'@smithy/signature-v4': 5.3.8
|
|
6814
|
-
'@smithy/types': 4.12.0
|
|
6815
|
-
tslib: 2.8.1
|
|
6816
|
-
|
|
6817
|
-
'@aws-sdk/token-providers@3.974.0':
|
|
6818
|
-
dependencies:
|
|
6819
|
-
'@aws-sdk/core': 3.973.1
|
|
6820
|
-
'@aws-sdk/nested-clients': 3.974.0
|
|
6821
|
-
'@aws-sdk/types': 3.973.0
|
|
6822
|
-
'@smithy/property-provider': 4.2.8
|
|
6823
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
6824
|
-
'@smithy/types': 4.12.0
|
|
6825
|
-
tslib: 2.8.1
|
|
6826
|
-
transitivePeerDependencies:
|
|
6827
|
-
- aws-crt
|
|
6828
|
-
|
|
6829
|
-
'@aws-sdk/types@3.972.0':
|
|
6830
|
-
dependencies:
|
|
6831
|
-
'@smithy/types': 4.12.0
|
|
6832
|
-
tslib: 2.8.1
|
|
6833
|
-
|
|
6834
|
-
'@aws-sdk/types@3.973.0':
|
|
6835
|
-
dependencies:
|
|
6836
|
-
'@smithy/types': 4.12.0
|
|
6837
|
-
tslib: 2.8.1
|
|
6838
|
-
|
|
6839
|
-
'@aws-sdk/util-arn-parser@3.972.0':
|
|
6840
|
-
dependencies:
|
|
6841
|
-
tslib: 2.8.1
|
|
6842
|
-
|
|
6843
|
-
'@aws-sdk/util-arn-parser@3.972.1':
|
|
6844
|
-
dependencies:
|
|
6845
|
-
tslib: 2.8.1
|
|
5940
|
+
yargs-parser@21.1.1:
|
|
5941
|
+
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
|
|
5942
|
+
engines: {node: '>=12'}
|
|
6846
5943
|
|
|
6847
|
-
|
|
6848
|
-
|
|
6849
|
-
|
|
6850
|
-
'@smithy/types': 4.12.0
|
|
6851
|
-
'@smithy/url-parser': 4.2.8
|
|
6852
|
-
'@smithy/util-endpoints': 3.2.8
|
|
6853
|
-
tslib: 2.8.1
|
|
5944
|
+
yargs@16.2.0:
|
|
5945
|
+
resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
|
|
5946
|
+
engines: {node: '>=10'}
|
|
6854
5947
|
|
|
6855
|
-
|
|
6856
|
-
|
|
6857
|
-
|
|
5948
|
+
yargs@17.7.2:
|
|
5949
|
+
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
|
|
5950
|
+
engines: {node: '>=12'}
|
|
6858
5951
|
|
|
6859
|
-
|
|
6860
|
-
|
|
6861
|
-
|
|
6862
|
-
'@smithy/types': 4.12.0
|
|
6863
|
-
bowser: 2.13.1
|
|
6864
|
-
tslib: 2.8.1
|
|
5952
|
+
yocto-queue@0.1.0:
|
|
5953
|
+
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
|
5954
|
+
engines: {node: '>=10'}
|
|
6865
5955
|
|
|
6866
|
-
|
|
6867
|
-
|
|
6868
|
-
|
|
6869
|
-
|
|
6870
|
-
|
|
6871
|
-
'@smithy/types': 4.12.0
|
|
6872
|
-
tslib: 2.8.1
|
|
5956
|
+
zod-validation-error@4.0.2:
|
|
5957
|
+
resolution: {integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==}
|
|
5958
|
+
engines: {node: '>=18.0.0'}
|
|
5959
|
+
peerDependencies:
|
|
5960
|
+
zod: ^3.25.0 || ^4.0.0
|
|
6873
5961
|
|
|
6874
|
-
|
|
6875
|
-
|
|
6876
|
-
'@smithy/types': 4.12.0
|
|
6877
|
-
fast-xml-parser: 5.2.5
|
|
6878
|
-
tslib: 2.8.1
|
|
5962
|
+
zod@4.3.6:
|
|
5963
|
+
resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==}
|
|
6879
5964
|
|
|
6880
|
-
|
|
6881
|
-
dependencies:
|
|
6882
|
-
'@smithy/types': 4.12.0
|
|
6883
|
-
fast-xml-parser: 5.2.5
|
|
6884
|
-
tslib: 2.8.1
|
|
5965
|
+
snapshots:
|
|
6885
5966
|
|
|
6886
|
-
'@
|
|
5967
|
+
'@0no-co/graphql.web@1.2.0': {}
|
|
6887
5968
|
|
|
6888
5969
|
'@babel/code-frame@7.10.4':
|
|
6889
5970
|
dependencies:
|
|
@@ -7655,7 +6736,7 @@ snapshots:
|
|
|
7655
6736
|
'@eslint/core': 0.17.0
|
|
7656
6737
|
levn: 0.4.1
|
|
7657
6738
|
|
|
7658
|
-
? '@expo/cli@54.0.
|
|
6739
|
+
? '@expo/cli@54.0.23(expo-router@6.0.23(@expo/metro-runtime@6.1.2)(@react-native-masked-view/masked-view@0.3.2(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(@types/react@19.1.17)(expo-constants@18.0.13)(expo-linking@8.0.11)(expo@54.0.33)(react-dom@19.1.0(react@19.1.0))(react-native-gesture-handler@2.28.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.6(@babel/core@7.28.6)(react-native-worklets@0.5.1(@babel/core@7.28.6)(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))'
|
|
7659
6740
|
: dependencies:
|
|
7660
6741
|
'@0no-co/graphql.web': 1.2.0
|
|
7661
6742
|
'@expo/code-signing-certificates': 0.0.6
|
|
@@ -7666,11 +6747,11 @@ snapshots:
|
|
|
7666
6747
|
'@expo/image-utils': 0.8.8
|
|
7667
6748
|
'@expo/json-file': 10.0.8
|
|
7668
6749
|
'@expo/metro': 54.2.0
|
|
7669
|
-
'@expo/metro-config': 54.0.14(expo@54.0.
|
|
6750
|
+
'@expo/metro-config': 54.0.14(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))
|
|
7670
6751
|
'@expo/osascript': 2.3.8
|
|
7671
6752
|
'@expo/package-manager': 1.9.10
|
|
7672
6753
|
'@expo/plist': 0.4.8
|
|
7673
|
-
'@expo/prebuild-config': 54.0.8(expo@54.0.
|
|
6754
|
+
'@expo/prebuild-config': 54.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))
|
|
7674
6755
|
'@expo/schema-utils': 0.1.8
|
|
7675
6756
|
'@expo/spawn-async': 1.7.2
|
|
7676
6757
|
'@expo/ws-tunnel': 1.0.6
|
|
@@ -7689,7 +6770,7 @@ snapshots:
|
|
|
7689
6770
|
connect: 3.7.0
|
|
7690
6771
|
debug: 4.4.3
|
|
7691
6772
|
env-editor: 0.4.2
|
|
7692
|
-
expo: 54.0.
|
|
6773
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
7693
6774
|
expo-server: 1.0.5
|
|
7694
6775
|
freeport-async: 2.0.0
|
|
7695
6776
|
getenv: 2.0.0
|
|
@@ -7722,7 +6803,7 @@ snapshots:
|
|
|
7722
6803
|
wrap-ansi: 7.0.0
|
|
7723
6804
|
ws: 8.19.0
|
|
7724
6805
|
optionalDependencies:
|
|
7725
|
-
expo-router: 6.0.
|
|
6806
|
+
expo-router: 6.0.23(@expo/metro-runtime@6.1.2)(@react-native-masked-view/masked-view@0.3.2(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(@types/react@19.1.17)(expo-constants@18.0.13)(expo-linking@8.0.11)(expo@54.0.33)(react-dom@19.1.0(react@19.1.0))(react-native-gesture-handler@2.28.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.6(@babel/core@7.28.6)(react-native-worklets@0.5.1(@babel/core@7.28.6)(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
7726
6807
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
7727
6808
|
transitivePeerDependencies:
|
|
7728
6809
|
- bufferutil
|
|
@@ -7831,7 +6912,7 @@ snapshots:
|
|
|
7831
6912
|
'@babel/code-frame': 7.10.4
|
|
7832
6913
|
json5: 2.2.3
|
|
7833
6914
|
|
|
7834
|
-
'@expo/metro-config@54.0.14(expo@54.0.
|
|
6915
|
+
'@expo/metro-config@54.0.14(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))':
|
|
7835
6916
|
dependencies:
|
|
7836
6917
|
'@babel/code-frame': 7.28.6
|
|
7837
6918
|
'@babel/core': 7.28.6
|
|
@@ -7850,21 +6931,21 @@ snapshots:
|
|
|
7850
6931
|
glob: 13.0.0
|
|
7851
6932
|
hermes-parser: 0.29.1
|
|
7852
6933
|
jsc-safe-url: 0.2.4
|
|
7853
|
-
lightningcss: 1.
|
|
6934
|
+
lightningcss: 1.30.2
|
|
7854
6935
|
minimatch: 9.0.5
|
|
7855
6936
|
postcss: 8.4.49
|
|
7856
6937
|
resolve-from: 5.0.0
|
|
7857
6938
|
optionalDependencies:
|
|
7858
|
-
expo: 54.0.
|
|
6939
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
7859
6940
|
transitivePeerDependencies:
|
|
7860
6941
|
- bufferutil
|
|
7861
6942
|
- supports-color
|
|
7862
6943
|
- utf-8-validate
|
|
7863
6944
|
|
|
7864
|
-
'@expo/metro-runtime@6.1.2(expo@54.0.
|
|
6945
|
+
'@expo/metro-runtime@6.1.2(expo@54.0.33)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
|
|
7865
6946
|
dependencies:
|
|
7866
6947
|
anser: 1.4.10
|
|
7867
|
-
expo: 54.0.
|
|
6948
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
7868
6949
|
pretty-format: 29.7.0
|
|
7869
6950
|
react: 19.1.0
|
|
7870
6951
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
@@ -7914,7 +6995,7 @@ snapshots:
|
|
|
7914
6995
|
base64-js: 1.5.1
|
|
7915
6996
|
xmlbuilder: 15.1.1
|
|
7916
6997
|
|
|
7917
|
-
'@expo/prebuild-config@54.0.8(expo@54.0.
|
|
6998
|
+
'@expo/prebuild-config@54.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))':
|
|
7918
6999
|
dependencies:
|
|
7919
7000
|
'@expo/config': 12.0.13
|
|
7920
7001
|
'@expo/config-plugins': 54.0.4
|
|
@@ -7923,7 +7004,7 @@ snapshots:
|
|
|
7923
7004
|
'@expo/json-file': 10.0.8
|
|
7924
7005
|
'@react-native/normalize-colors': 0.81.5
|
|
7925
7006
|
debug: 4.4.3
|
|
7926
|
-
expo: 54.0.
|
|
7007
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
7927
7008
|
resolve-from: 5.0.0
|
|
7928
7009
|
semver: 7.7.3
|
|
7929
7010
|
xml2js: 0.6.0
|
|
@@ -7940,9 +7021,9 @@ snapshots:
|
|
|
7940
7021
|
|
|
7941
7022
|
'@expo/sudo-prompt@9.3.2': {}
|
|
7942
7023
|
|
|
7943
|
-
'@expo/vector-icons@15.0.3(expo-font@14.0.11(expo@54.0.
|
|
7024
|
+
'@expo/vector-icons@15.0.3(expo-font@14.0.11(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
|
|
7944
7025
|
dependencies:
|
|
7945
|
-
expo-font: 14.0.11(expo@54.0.
|
|
7026
|
+
expo-font: 14.0.11(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
7946
7027
|
react: 19.1.0
|
|
7947
7028
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
7948
7029
|
|
|
@@ -8409,22 +7490,22 @@ snapshots:
|
|
|
8409
7490
|
merge-options: 3.0.4
|
|
8410
7491
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
8411
7492
|
|
|
8412
|
-
'@react-native-community/datetimepicker@8.
|
|
7493
|
+
'@react-native-community/datetimepicker@8.4.4(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
|
|
8413
7494
|
dependencies:
|
|
8414
7495
|
invariant: 2.2.4
|
|
8415
7496
|
react: 19.1.0
|
|
8416
7497
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
8417
7498
|
optionalDependencies:
|
|
8418
|
-
expo: 54.0.
|
|
7499
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
8419
7500
|
|
|
8420
|
-
'@react-native-community/slider@5.1
|
|
7501
|
+
'@react-native-community/slider@5.0.1': {}
|
|
8421
7502
|
|
|
8422
7503
|
'@react-native-masked-view/masked-view@0.3.2(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
|
|
8423
7504
|
dependencies:
|
|
8424
7505
|
react: 19.1.0
|
|
8425
7506
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
8426
7507
|
|
|
8427
|
-
'@react-native-picker/picker@2.11.
|
|
7508
|
+
'@react-native-picker/picker@2.11.1(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)':
|
|
8428
7509
|
dependencies:
|
|
8429
7510
|
react: 19.1.0
|
|
8430
7511
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
@@ -8627,343 +7708,43 @@ snapshots:
|
|
|
8627
7708
|
dependencies:
|
|
8628
7709
|
'@sinonjs/commons': 3.0.1
|
|
8629
7710
|
|
|
8630
|
-
'@
|
|
8631
|
-
dependencies:
|
|
8632
|
-
'@smithy/types': 4.12.0
|
|
8633
|
-
tslib: 2.8.1
|
|
8634
|
-
|
|
8635
|
-
'@smithy/chunked-blob-reader-native@4.2.1':
|
|
8636
|
-
dependencies:
|
|
8637
|
-
'@smithy/util-base64': 4.3.0
|
|
8638
|
-
tslib: 2.8.1
|
|
8639
|
-
|
|
8640
|
-
'@smithy/chunked-blob-reader@5.2.0':
|
|
8641
|
-
dependencies:
|
|
8642
|
-
tslib: 2.8.1
|
|
8643
|
-
|
|
8644
|
-
'@smithy/config-resolver@4.4.6':
|
|
8645
|
-
dependencies:
|
|
8646
|
-
'@smithy/node-config-provider': 4.3.8
|
|
8647
|
-
'@smithy/types': 4.12.0
|
|
8648
|
-
'@smithy/util-config-provider': 4.2.0
|
|
8649
|
-
'@smithy/util-endpoints': 3.2.8
|
|
8650
|
-
'@smithy/util-middleware': 4.2.8
|
|
8651
|
-
tslib: 2.8.1
|
|
8652
|
-
|
|
8653
|
-
'@smithy/core@3.21.1':
|
|
8654
|
-
dependencies:
|
|
8655
|
-
'@smithy/middleware-serde': 4.2.9
|
|
8656
|
-
'@smithy/protocol-http': 5.3.8
|
|
8657
|
-
'@smithy/types': 4.12.0
|
|
8658
|
-
'@smithy/util-base64': 4.3.0
|
|
8659
|
-
'@smithy/util-body-length-browser': 4.2.0
|
|
8660
|
-
'@smithy/util-middleware': 4.2.8
|
|
8661
|
-
'@smithy/util-stream': 4.5.10
|
|
8662
|
-
'@smithy/util-utf8': 4.2.0
|
|
8663
|
-
'@smithy/uuid': 1.1.0
|
|
8664
|
-
tslib: 2.8.1
|
|
8665
|
-
|
|
8666
|
-
'@smithy/credential-provider-imds@4.2.8':
|
|
8667
|
-
dependencies:
|
|
8668
|
-
'@smithy/node-config-provider': 4.3.8
|
|
8669
|
-
'@smithy/property-provider': 4.2.8
|
|
8670
|
-
'@smithy/types': 4.12.0
|
|
8671
|
-
'@smithy/url-parser': 4.2.8
|
|
8672
|
-
tslib: 2.8.1
|
|
8673
|
-
|
|
8674
|
-
'@smithy/eventstream-codec@4.2.8':
|
|
8675
|
-
dependencies:
|
|
8676
|
-
'@aws-crypto/crc32': 5.2.0
|
|
8677
|
-
'@smithy/types': 4.12.0
|
|
8678
|
-
'@smithy/util-hex-encoding': 4.2.0
|
|
8679
|
-
tslib: 2.8.1
|
|
8680
|
-
|
|
8681
|
-
'@smithy/eventstream-serde-browser@4.2.8':
|
|
8682
|
-
dependencies:
|
|
8683
|
-
'@smithy/eventstream-serde-universal': 4.2.8
|
|
8684
|
-
'@smithy/types': 4.12.0
|
|
8685
|
-
tslib: 2.8.1
|
|
8686
|
-
|
|
8687
|
-
'@smithy/eventstream-serde-config-resolver@4.3.8':
|
|
8688
|
-
dependencies:
|
|
8689
|
-
'@smithy/types': 4.12.0
|
|
8690
|
-
tslib: 2.8.1
|
|
8691
|
-
|
|
8692
|
-
'@smithy/eventstream-serde-node@4.2.8':
|
|
8693
|
-
dependencies:
|
|
8694
|
-
'@smithy/eventstream-serde-universal': 4.2.8
|
|
8695
|
-
'@smithy/types': 4.12.0
|
|
8696
|
-
tslib: 2.8.1
|
|
8697
|
-
|
|
8698
|
-
'@smithy/eventstream-serde-universal@4.2.8':
|
|
8699
|
-
dependencies:
|
|
8700
|
-
'@smithy/eventstream-codec': 4.2.8
|
|
8701
|
-
'@smithy/types': 4.12.0
|
|
8702
|
-
tslib: 2.8.1
|
|
8703
|
-
|
|
8704
|
-
'@smithy/fetch-http-handler@5.3.9':
|
|
8705
|
-
dependencies:
|
|
8706
|
-
'@smithy/protocol-http': 5.3.8
|
|
8707
|
-
'@smithy/querystring-builder': 4.2.8
|
|
8708
|
-
'@smithy/types': 4.12.0
|
|
8709
|
-
'@smithy/util-base64': 4.3.0
|
|
8710
|
-
tslib: 2.8.1
|
|
8711
|
-
|
|
8712
|
-
'@smithy/hash-blob-browser@4.2.9':
|
|
8713
|
-
dependencies:
|
|
8714
|
-
'@smithy/chunked-blob-reader': 5.2.0
|
|
8715
|
-
'@smithy/chunked-blob-reader-native': 4.2.1
|
|
8716
|
-
'@smithy/types': 4.12.0
|
|
8717
|
-
tslib: 2.8.1
|
|
8718
|
-
|
|
8719
|
-
'@smithy/hash-node@4.2.8':
|
|
8720
|
-
dependencies:
|
|
8721
|
-
'@smithy/types': 4.12.0
|
|
8722
|
-
'@smithy/util-buffer-from': 4.2.0
|
|
8723
|
-
'@smithy/util-utf8': 4.2.0
|
|
8724
|
-
tslib: 2.8.1
|
|
8725
|
-
|
|
8726
|
-
'@smithy/hash-stream-node@4.2.8':
|
|
8727
|
-
dependencies:
|
|
8728
|
-
'@smithy/types': 4.12.0
|
|
8729
|
-
'@smithy/util-utf8': 4.2.0
|
|
8730
|
-
tslib: 2.8.1
|
|
8731
|
-
|
|
8732
|
-
'@smithy/invalid-dependency@4.2.8':
|
|
8733
|
-
dependencies:
|
|
8734
|
-
'@smithy/types': 4.12.0
|
|
8735
|
-
tslib: 2.8.1
|
|
8736
|
-
|
|
8737
|
-
'@smithy/is-array-buffer@2.2.0':
|
|
8738
|
-
dependencies:
|
|
8739
|
-
tslib: 2.8.1
|
|
8740
|
-
|
|
8741
|
-
'@smithy/is-array-buffer@4.2.0':
|
|
8742
|
-
dependencies:
|
|
8743
|
-
tslib: 2.8.1
|
|
8744
|
-
|
|
8745
|
-
'@smithy/md5-js@4.2.8':
|
|
8746
|
-
dependencies:
|
|
8747
|
-
'@smithy/types': 4.12.0
|
|
8748
|
-
'@smithy/util-utf8': 4.2.0
|
|
8749
|
-
tslib: 2.8.1
|
|
8750
|
-
|
|
8751
|
-
'@smithy/middleware-content-length@4.2.8':
|
|
8752
|
-
dependencies:
|
|
8753
|
-
'@smithy/protocol-http': 5.3.8
|
|
8754
|
-
'@smithy/types': 4.12.0
|
|
8755
|
-
tslib: 2.8.1
|
|
8756
|
-
|
|
8757
|
-
'@smithy/middleware-endpoint@4.4.11':
|
|
8758
|
-
dependencies:
|
|
8759
|
-
'@smithy/core': 3.21.1
|
|
8760
|
-
'@smithy/middleware-serde': 4.2.9
|
|
8761
|
-
'@smithy/node-config-provider': 4.3.8
|
|
8762
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
8763
|
-
'@smithy/types': 4.12.0
|
|
8764
|
-
'@smithy/url-parser': 4.2.8
|
|
8765
|
-
'@smithy/util-middleware': 4.2.8
|
|
8766
|
-
tslib: 2.8.1
|
|
8767
|
-
|
|
8768
|
-
'@smithy/middleware-retry@4.4.27':
|
|
8769
|
-
dependencies:
|
|
8770
|
-
'@smithy/node-config-provider': 4.3.8
|
|
8771
|
-
'@smithy/protocol-http': 5.3.8
|
|
8772
|
-
'@smithy/service-error-classification': 4.2.8
|
|
8773
|
-
'@smithy/smithy-client': 4.10.12
|
|
8774
|
-
'@smithy/types': 4.12.0
|
|
8775
|
-
'@smithy/util-middleware': 4.2.8
|
|
8776
|
-
'@smithy/util-retry': 4.2.8
|
|
8777
|
-
'@smithy/uuid': 1.1.0
|
|
8778
|
-
tslib: 2.8.1
|
|
8779
|
-
|
|
8780
|
-
'@smithy/middleware-serde@4.2.9':
|
|
8781
|
-
dependencies:
|
|
8782
|
-
'@smithy/protocol-http': 5.3.8
|
|
8783
|
-
'@smithy/types': 4.12.0
|
|
8784
|
-
tslib: 2.8.1
|
|
8785
|
-
|
|
8786
|
-
'@smithy/middleware-stack@4.2.8':
|
|
8787
|
-
dependencies:
|
|
8788
|
-
'@smithy/types': 4.12.0
|
|
8789
|
-
tslib: 2.8.1
|
|
8790
|
-
|
|
8791
|
-
'@smithy/node-config-provider@4.3.8':
|
|
8792
|
-
dependencies:
|
|
8793
|
-
'@smithy/property-provider': 4.2.8
|
|
8794
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
8795
|
-
'@smithy/types': 4.12.0
|
|
8796
|
-
tslib: 2.8.1
|
|
8797
|
-
|
|
8798
|
-
'@smithy/node-http-handler@4.4.8':
|
|
8799
|
-
dependencies:
|
|
8800
|
-
'@smithy/abort-controller': 4.2.8
|
|
8801
|
-
'@smithy/protocol-http': 5.3.8
|
|
8802
|
-
'@smithy/querystring-builder': 4.2.8
|
|
8803
|
-
'@smithy/types': 4.12.0
|
|
8804
|
-
tslib: 2.8.1
|
|
8805
|
-
|
|
8806
|
-
'@smithy/property-provider@4.2.8':
|
|
8807
|
-
dependencies:
|
|
8808
|
-
'@smithy/types': 4.12.0
|
|
8809
|
-
tslib: 2.8.1
|
|
8810
|
-
|
|
8811
|
-
'@smithy/protocol-http@5.3.8':
|
|
8812
|
-
dependencies:
|
|
8813
|
-
'@smithy/types': 4.12.0
|
|
8814
|
-
tslib: 2.8.1
|
|
8815
|
-
|
|
8816
|
-
'@smithy/querystring-builder@4.2.8':
|
|
8817
|
-
dependencies:
|
|
8818
|
-
'@smithy/types': 4.12.0
|
|
8819
|
-
'@smithy/util-uri-escape': 4.2.0
|
|
8820
|
-
tslib: 2.8.1
|
|
8821
|
-
|
|
8822
|
-
'@smithy/querystring-parser@4.2.8':
|
|
8823
|
-
dependencies:
|
|
8824
|
-
'@smithy/types': 4.12.0
|
|
8825
|
-
tslib: 2.8.1
|
|
8826
|
-
|
|
8827
|
-
'@smithy/service-error-classification@4.2.8':
|
|
8828
|
-
dependencies:
|
|
8829
|
-
'@smithy/types': 4.12.0
|
|
8830
|
-
|
|
8831
|
-
'@smithy/shared-ini-file-loader@4.4.3':
|
|
8832
|
-
dependencies:
|
|
8833
|
-
'@smithy/types': 4.12.0
|
|
8834
|
-
tslib: 2.8.1
|
|
8835
|
-
|
|
8836
|
-
'@smithy/signature-v4@5.3.8':
|
|
8837
|
-
dependencies:
|
|
8838
|
-
'@smithy/is-array-buffer': 4.2.0
|
|
8839
|
-
'@smithy/protocol-http': 5.3.8
|
|
8840
|
-
'@smithy/types': 4.12.0
|
|
8841
|
-
'@smithy/util-hex-encoding': 4.2.0
|
|
8842
|
-
'@smithy/util-middleware': 4.2.8
|
|
8843
|
-
'@smithy/util-uri-escape': 4.2.0
|
|
8844
|
-
'@smithy/util-utf8': 4.2.0
|
|
8845
|
-
tslib: 2.8.1
|
|
8846
|
-
|
|
8847
|
-
'@smithy/smithy-client@4.10.12':
|
|
8848
|
-
dependencies:
|
|
8849
|
-
'@smithy/core': 3.21.1
|
|
8850
|
-
'@smithy/middleware-endpoint': 4.4.11
|
|
8851
|
-
'@smithy/middleware-stack': 4.2.8
|
|
8852
|
-
'@smithy/protocol-http': 5.3.8
|
|
8853
|
-
'@smithy/types': 4.12.0
|
|
8854
|
-
'@smithy/util-stream': 4.5.10
|
|
8855
|
-
tslib: 2.8.1
|
|
8856
|
-
|
|
8857
|
-
'@smithy/types@4.12.0':
|
|
8858
|
-
dependencies:
|
|
8859
|
-
tslib: 2.8.1
|
|
8860
|
-
|
|
8861
|
-
'@smithy/url-parser@4.2.8':
|
|
8862
|
-
dependencies:
|
|
8863
|
-
'@smithy/querystring-parser': 4.2.8
|
|
8864
|
-
'@smithy/types': 4.12.0
|
|
8865
|
-
tslib: 2.8.1
|
|
8866
|
-
|
|
8867
|
-
'@smithy/util-base64@4.3.0':
|
|
8868
|
-
dependencies:
|
|
8869
|
-
'@smithy/util-buffer-from': 4.2.0
|
|
8870
|
-
'@smithy/util-utf8': 4.2.0
|
|
8871
|
-
tslib: 2.8.1
|
|
8872
|
-
|
|
8873
|
-
'@smithy/util-body-length-browser@4.2.0':
|
|
8874
|
-
dependencies:
|
|
8875
|
-
tslib: 2.8.1
|
|
8876
|
-
|
|
8877
|
-
'@smithy/util-body-length-node@4.2.1':
|
|
8878
|
-
dependencies:
|
|
8879
|
-
tslib: 2.8.1
|
|
8880
|
-
|
|
8881
|
-
'@smithy/util-buffer-from@2.2.0':
|
|
8882
|
-
dependencies:
|
|
8883
|
-
'@smithy/is-array-buffer': 2.2.0
|
|
8884
|
-
tslib: 2.8.1
|
|
8885
|
-
|
|
8886
|
-
'@smithy/util-buffer-from@4.2.0':
|
|
8887
|
-
dependencies:
|
|
8888
|
-
'@smithy/is-array-buffer': 4.2.0
|
|
8889
|
-
tslib: 2.8.1
|
|
8890
|
-
|
|
8891
|
-
'@smithy/util-config-provider@4.2.0':
|
|
8892
|
-
dependencies:
|
|
8893
|
-
tslib: 2.8.1
|
|
8894
|
-
|
|
8895
|
-
'@smithy/util-defaults-mode-browser@4.3.26':
|
|
8896
|
-
dependencies:
|
|
8897
|
-
'@smithy/property-provider': 4.2.8
|
|
8898
|
-
'@smithy/smithy-client': 4.10.12
|
|
8899
|
-
'@smithy/types': 4.12.0
|
|
8900
|
-
tslib: 2.8.1
|
|
8901
|
-
|
|
8902
|
-
'@smithy/util-defaults-mode-node@4.2.29':
|
|
8903
|
-
dependencies:
|
|
8904
|
-
'@smithy/config-resolver': 4.4.6
|
|
8905
|
-
'@smithy/credential-provider-imds': 4.2.8
|
|
8906
|
-
'@smithy/node-config-provider': 4.3.8
|
|
8907
|
-
'@smithy/property-provider': 4.2.8
|
|
8908
|
-
'@smithy/smithy-client': 4.10.12
|
|
8909
|
-
'@smithy/types': 4.12.0
|
|
8910
|
-
tslib: 2.8.1
|
|
8911
|
-
|
|
8912
|
-
'@smithy/util-endpoints@3.2.8':
|
|
8913
|
-
dependencies:
|
|
8914
|
-
'@smithy/node-config-provider': 4.3.8
|
|
8915
|
-
'@smithy/types': 4.12.0
|
|
8916
|
-
tslib: 2.8.1
|
|
8917
|
-
|
|
8918
|
-
'@smithy/util-hex-encoding@4.2.0':
|
|
8919
|
-
dependencies:
|
|
8920
|
-
tslib: 2.8.1
|
|
8921
|
-
|
|
8922
|
-
'@smithy/util-middleware@4.2.8':
|
|
8923
|
-
dependencies:
|
|
8924
|
-
'@smithy/types': 4.12.0
|
|
8925
|
-
tslib: 2.8.1
|
|
8926
|
-
|
|
8927
|
-
'@smithy/util-retry@4.2.8':
|
|
8928
|
-
dependencies:
|
|
8929
|
-
'@smithy/service-error-classification': 4.2.8
|
|
8930
|
-
'@smithy/types': 4.12.0
|
|
8931
|
-
tslib: 2.8.1
|
|
8932
|
-
|
|
8933
|
-
'@smithy/util-stream@4.5.10':
|
|
7711
|
+
'@supabase/auth-js@2.95.3':
|
|
8934
7712
|
dependencies:
|
|
8935
|
-
'@smithy/fetch-http-handler': 5.3.9
|
|
8936
|
-
'@smithy/node-http-handler': 4.4.8
|
|
8937
|
-
'@smithy/types': 4.12.0
|
|
8938
|
-
'@smithy/util-base64': 4.3.0
|
|
8939
|
-
'@smithy/util-buffer-from': 4.2.0
|
|
8940
|
-
'@smithy/util-hex-encoding': 4.2.0
|
|
8941
|
-
'@smithy/util-utf8': 4.2.0
|
|
8942
7713
|
tslib: 2.8.1
|
|
8943
7714
|
|
|
8944
|
-
'@
|
|
7715
|
+
'@supabase/functions-js@2.95.3':
|
|
8945
7716
|
dependencies:
|
|
8946
7717
|
tslib: 2.8.1
|
|
8947
7718
|
|
|
8948
|
-
'@
|
|
7719
|
+
'@supabase/postgrest-js@2.95.3':
|
|
8949
7720
|
dependencies:
|
|
8950
|
-
'@smithy/util-buffer-from': 2.2.0
|
|
8951
7721
|
tslib: 2.8.1
|
|
8952
7722
|
|
|
8953
|
-
'@
|
|
7723
|
+
'@supabase/realtime-js@2.95.3':
|
|
8954
7724
|
dependencies:
|
|
8955
|
-
'@
|
|
7725
|
+
'@types/phoenix': 1.6.7
|
|
7726
|
+
'@types/ws': 8.18.1
|
|
8956
7727
|
tslib: 2.8.1
|
|
7728
|
+
ws: 8.19.0
|
|
7729
|
+
transitivePeerDependencies:
|
|
7730
|
+
- bufferutil
|
|
7731
|
+
- utf-8-validate
|
|
8957
7732
|
|
|
8958
|
-
'@
|
|
7733
|
+
'@supabase/storage-js@2.95.3':
|
|
8959
7734
|
dependencies:
|
|
8960
|
-
|
|
8961
|
-
'@smithy/types': 4.12.0
|
|
7735
|
+
iceberg-js: 0.8.1
|
|
8962
7736
|
tslib: 2.8.1
|
|
8963
7737
|
|
|
8964
|
-
'@
|
|
7738
|
+
'@supabase/supabase-js@2.95.3':
|
|
8965
7739
|
dependencies:
|
|
8966
|
-
|
|
7740
|
+
'@supabase/auth-js': 2.95.3
|
|
7741
|
+
'@supabase/functions-js': 2.95.3
|
|
7742
|
+
'@supabase/postgrest-js': 2.95.3
|
|
7743
|
+
'@supabase/realtime-js': 2.95.3
|
|
7744
|
+
'@supabase/storage-js': 2.95.3
|
|
7745
|
+
transitivePeerDependencies:
|
|
7746
|
+
- bufferutil
|
|
7747
|
+
- utf-8-validate
|
|
8967
7748
|
|
|
8968
7749
|
'@tootallnate/once@2.0.0': {}
|
|
8969
7750
|
|
|
@@ -9076,6 +7857,8 @@ snapshots:
|
|
|
9076
7857
|
pg-protocol: 1.11.0
|
|
9077
7858
|
pg-types: 2.2.0
|
|
9078
7859
|
|
|
7860
|
+
'@types/phoenix@1.6.7': {}
|
|
7861
|
+
|
|
9079
7862
|
'@types/qs@6.14.0': {}
|
|
9080
7863
|
|
|
9081
7864
|
'@types/range-parser@1.2.7': {}
|
|
@@ -9103,6 +7886,10 @@ snapshots:
|
|
|
9103
7886
|
|
|
9104
7887
|
'@types/uuid@10.0.0': {}
|
|
9105
7888
|
|
|
7889
|
+
'@types/ws@8.18.1':
|
|
7890
|
+
dependencies:
|
|
7891
|
+
'@types/node': 25.0.10
|
|
7892
|
+
|
|
9106
7893
|
'@types/yargs-parser@21.0.3': {}
|
|
9107
7894
|
|
|
9108
7895
|
'@types/yargs@17.0.35':
|
|
@@ -9585,7 +8372,7 @@ snapshots:
|
|
|
9585
8372
|
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.6)
|
|
9586
8373
|
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.6)
|
|
9587
8374
|
|
|
9588
|
-
babel-preset-expo@54.0.10(@babel/core@7.28.6)(@babel/runtime@7.28.6)(expo@54.0.
|
|
8375
|
+
babel-preset-expo@54.0.10(@babel/core@7.28.6)(@babel/runtime@7.28.6)(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2):
|
|
9589
8376
|
dependencies:
|
|
9590
8377
|
'@babel/helper-module-imports': 7.28.6
|
|
9591
8378
|
'@babel/plugin-proposal-decorators': 7.28.6(@babel/core@7.28.6)
|
|
@@ -9612,7 +8399,7 @@ snapshots:
|
|
|
9612
8399
|
resolve-from: 5.0.0
|
|
9613
8400
|
optionalDependencies:
|
|
9614
8401
|
'@babel/runtime': 7.28.6
|
|
9615
|
-
expo: 54.0.
|
|
8402
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
9616
8403
|
transitivePeerDependencies:
|
|
9617
8404
|
- '@babel/core'
|
|
9618
8405
|
- supports-color
|
|
@@ -9654,8 +8441,6 @@ snapshots:
|
|
|
9654
8441
|
|
|
9655
8442
|
boolbase@1.0.0: {}
|
|
9656
8443
|
|
|
9657
|
-
bowser@2.13.1: {}
|
|
9658
|
-
|
|
9659
8444
|
bplist-creator@0.1.0:
|
|
9660
8445
|
dependencies:
|
|
9661
8446
|
stream-buffers: 2.2.0
|
|
@@ -9695,11 +8480,6 @@ snapshots:
|
|
|
9695
8480
|
|
|
9696
8481
|
buffer-from@1.1.2: {}
|
|
9697
8482
|
|
|
9698
|
-
buffer@5.6.0:
|
|
9699
|
-
dependencies:
|
|
9700
|
-
base64-js: 1.5.1
|
|
9701
|
-
ieee754: 1.2.1
|
|
9702
|
-
|
|
9703
8483
|
buffer@5.7.1:
|
|
9704
8484
|
dependencies:
|
|
9705
8485
|
base64-js: 1.5.1
|
|
@@ -9754,8 +8534,6 @@ snapshots:
|
|
|
9754
8534
|
ansi-styles: 4.3.0
|
|
9755
8535
|
supports-color: 7.2.0
|
|
9756
8536
|
|
|
9757
|
-
chalk@5.6.2: {}
|
|
9758
|
-
|
|
9759
8537
|
char-regex@1.0.2: {}
|
|
9760
8538
|
|
|
9761
8539
|
char-regex@2.0.2: {}
|
|
@@ -9792,14 +8570,8 @@ snapshots:
|
|
|
9792
8570
|
dependencies:
|
|
9793
8571
|
restore-cursor: 2.0.0
|
|
9794
8572
|
|
|
9795
|
-
cli-cursor@5.0.0:
|
|
9796
|
-
dependencies:
|
|
9797
|
-
restore-cursor: 5.1.0
|
|
9798
|
-
|
|
9799
8573
|
cli-spinners@2.9.2: {}
|
|
9800
8574
|
|
|
9801
|
-
cli-spinners@3.4.0: {}
|
|
9802
|
-
|
|
9803
8575
|
client-only@0.0.1: {}
|
|
9804
8576
|
|
|
9805
8577
|
cliui@7.0.4:
|
|
@@ -9848,8 +8620,6 @@ snapshots:
|
|
|
9848
8620
|
|
|
9849
8621
|
commander@12.1.0: {}
|
|
9850
8622
|
|
|
9851
|
-
commander@14.0.2: {}
|
|
9852
|
-
|
|
9853
8623
|
commander@2.20.3: {}
|
|
9854
8624
|
|
|
9855
8625
|
commander@4.1.1: {}
|
|
@@ -9925,56 +8695,22 @@ snapshots:
|
|
|
9925
8695
|
path-type: 4.0.0
|
|
9926
8696
|
yaml: 1.10.2
|
|
9927
8697
|
|
|
9928
|
-
coze-coding-dev-sdk@0.7.
|
|
8698
|
+
coze-coding-dev-sdk@0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.6))(ws@8.19.0):
|
|
9929
8699
|
dependencies:
|
|
9930
|
-
'@aws-sdk/client-s3': 3.975.0
|
|
9931
|
-
'@aws-sdk/lib-storage': 3.975.0(@aws-sdk/client-s3@3.975.0)
|
|
9932
8700
|
'@langchain/core': 1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6))
|
|
9933
8701
|
'@langchain/openai': 1.2.3(@langchain/core@1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6)))(ws@8.19.0)
|
|
8702
|
+
'@supabase/supabase-js': 2.95.3
|
|
9934
8703
|
axios: 1.13.3
|
|
9935
|
-
chalk: 5.6.2
|
|
9936
|
-
commander: 14.0.2
|
|
9937
|
-
drizzle-kit: 0.31.8
|
|
9938
|
-
drizzle-orm: 0.45.1(@types/pg@8.16.0)(pg@8.17.2)
|
|
9939
|
-
ora: 9.1.0
|
|
9940
8704
|
pg: 8.17.2
|
|
9941
|
-
|
|
9942
|
-
transitivePeerDependencies:
|
|
9943
|
-
- '@aws-sdk/client-rds-data'
|
|
9944
|
-
- '@cloudflare/workers-types'
|
|
9945
|
-
- '@electric-sql/pglite'
|
|
9946
|
-
- '@libsql/client'
|
|
9947
|
-
- '@libsql/client-wasm'
|
|
9948
|
-
- '@neondatabase/serverless'
|
|
9949
|
-
- '@op-engineering/op-sqlite'
|
|
8705
|
+
transitivePeerDependencies:
|
|
9950
8706
|
- '@opentelemetry/api'
|
|
9951
8707
|
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
9952
8708
|
- '@opentelemetry/sdk-trace-base'
|
|
9953
|
-
-
|
|
9954
|
-
- '@prisma/client'
|
|
9955
|
-
- '@tidbcloud/serverless'
|
|
9956
|
-
- '@types/better-sqlite3'
|
|
9957
|
-
- '@types/pg'
|
|
9958
|
-
- '@types/sql.js'
|
|
9959
|
-
- '@upstash/redis'
|
|
9960
|
-
- '@vercel/postgres'
|
|
9961
|
-
- '@xata.io/client'
|
|
9962
|
-
- aws-crt
|
|
9963
|
-
- better-sqlite3
|
|
9964
|
-
- bun-types
|
|
8709
|
+
- bufferutil
|
|
9965
8710
|
- debug
|
|
9966
|
-
- expo-sqlite
|
|
9967
|
-
- gel
|
|
9968
|
-
- knex
|
|
9969
|
-
- kysely
|
|
9970
|
-
- mysql2
|
|
9971
8711
|
- openai
|
|
9972
8712
|
- pg-native
|
|
9973
|
-
-
|
|
9974
|
-
- prisma
|
|
9975
|
-
- sql.js
|
|
9976
|
-
- sqlite3
|
|
9977
|
-
- supports-color
|
|
8713
|
+
- utf-8-validate
|
|
9978
8714
|
- ws
|
|
9979
8715
|
|
|
9980
8716
|
create-jest@29.7.0(@types/node@25.0.10):
|
|
@@ -10183,6 +8919,8 @@ snapshots:
|
|
|
10183
8919
|
|
|
10184
8920
|
dotenv@16.4.7: {}
|
|
10185
8921
|
|
|
8922
|
+
dotenv@17.2.4: {}
|
|
8923
|
+
|
|
10186
8924
|
drizzle-kit@0.31.8:
|
|
10187
8925
|
dependencies:
|
|
10188
8926
|
'@drizzle-team/brocli': 0.10.2
|
|
@@ -10583,8 +9321,6 @@ snapshots:
|
|
|
10583
9321
|
|
|
10584
9322
|
eventemitter3@4.0.7: {}
|
|
10585
9323
|
|
|
10586
|
-
events@3.3.0: {}
|
|
10587
|
-
|
|
10588
9324
|
exec-async@2.2.0: {}
|
|
10589
9325
|
|
|
10590
9326
|
execa@5.1.1:
|
|
@@ -10613,27 +9349,27 @@ snapshots:
|
|
|
10613
9349
|
jest-message-util: 29.7.0
|
|
10614
9350
|
jest-util: 29.7.0
|
|
10615
9351
|
|
|
10616
|
-
expo-application@7.0.8(expo@54.0.
|
|
9352
|
+
expo-application@7.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)):
|
|
10617
9353
|
dependencies:
|
|
10618
|
-
expo: 54.0.
|
|
9354
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10619
9355
|
|
|
10620
|
-
expo-asset@12.0.12(expo@54.0.
|
|
9356
|
+
expo-asset@12.0.12(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
|
|
10621
9357
|
dependencies:
|
|
10622
9358
|
'@expo/image-utils': 0.8.8
|
|
10623
|
-
expo: 54.0.
|
|
10624
|
-
expo-constants: 18.0.13(expo@54.0.
|
|
9359
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
9360
|
+
expo-constants: 18.0.13(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
10625
9361
|
react: 19.1.0
|
|
10626
9362
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
10627
9363
|
transitivePeerDependencies:
|
|
10628
9364
|
- supports-color
|
|
10629
9365
|
|
|
10630
|
-
expo-auth-session@7.0.10(expo@54.0.
|
|
9366
|
+
expo-auth-session@7.0.10(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
|
|
10631
9367
|
dependencies:
|
|
10632
|
-
expo-application: 7.0.8(expo@54.0.
|
|
10633
|
-
expo-constants: 18.0.13(expo@54.0.
|
|
10634
|
-
expo-crypto: 15.0.8(expo@54.0.
|
|
10635
|
-
expo-linking: 8.0.11(expo@54.0.
|
|
10636
|
-
expo-web-browser: 15.0.10(expo@54.0.
|
|
9368
|
+
expo-application: 7.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))
|
|
9369
|
+
expo-constants: 18.0.13(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
9370
|
+
expo-crypto: 15.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))
|
|
9371
|
+
expo-linking: 8.0.11(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
9372
|
+
expo-web-browser: 15.0.10(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
10637
9373
|
invariant: 2.2.4
|
|
10638
9374
|
react: 19.1.0
|
|
10639
9375
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
@@ -10641,90 +9377,90 @@ snapshots:
|
|
|
10641
9377
|
- expo
|
|
10642
9378
|
- supports-color
|
|
10643
9379
|
|
|
10644
|
-
expo-av@16.0.8(expo@54.0.
|
|
9380
|
+
expo-av@16.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
|
|
10645
9381
|
dependencies:
|
|
10646
|
-
expo: 54.0.
|
|
9382
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10647
9383
|
react: 19.1.0
|
|
10648
9384
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
10649
9385
|
optionalDependencies:
|
|
10650
9386
|
react-native-web: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
|
10651
9387
|
|
|
10652
|
-
expo-blur@15.0.8(expo@54.0.
|
|
9388
|
+
expo-blur@15.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
|
|
10653
9389
|
dependencies:
|
|
10654
|
-
expo: 54.0.
|
|
9390
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10655
9391
|
react: 19.1.0
|
|
10656
9392
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
10657
9393
|
|
|
10658
|
-
expo-camera@17.0.10(expo@54.0.
|
|
9394
|
+
expo-camera@17.0.10(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
|
|
10659
9395
|
dependencies:
|
|
10660
|
-
expo: 54.0.
|
|
9396
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10661
9397
|
invariant: 2.2.4
|
|
10662
9398
|
react: 19.1.0
|
|
10663
9399
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
10664
9400
|
optionalDependencies:
|
|
10665
9401
|
react-native-web: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
|
10666
9402
|
|
|
10667
|
-
expo-constants@18.0.13(expo@54.0.
|
|
9403
|
+
expo-constants@18.0.13(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)):
|
|
10668
9404
|
dependencies:
|
|
10669
9405
|
'@expo/config': 12.0.13
|
|
10670
9406
|
'@expo/env': 2.0.8
|
|
10671
|
-
expo: 54.0.
|
|
9407
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10672
9408
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
10673
9409
|
transitivePeerDependencies:
|
|
10674
9410
|
- supports-color
|
|
10675
9411
|
|
|
10676
|
-
expo-crypto@15.0.8(expo@54.0.
|
|
9412
|
+
expo-crypto@15.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)):
|
|
10677
9413
|
dependencies:
|
|
10678
9414
|
base64-js: 1.5.1
|
|
10679
|
-
expo: 54.0.
|
|
9415
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10680
9416
|
|
|
10681
|
-
expo-file-system@19.0.21(expo@54.0.
|
|
9417
|
+
expo-file-system@19.0.21(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)):
|
|
10682
9418
|
dependencies:
|
|
10683
|
-
expo: 54.0.
|
|
9419
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10684
9420
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
10685
9421
|
|
|
10686
|
-
expo-font@14.0.11(expo@54.0.
|
|
9422
|
+
expo-font@14.0.11(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
|
|
10687
9423
|
dependencies:
|
|
10688
|
-
expo: 54.0.
|
|
9424
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10689
9425
|
fontfaceobserver: 2.3.0
|
|
10690
9426
|
react: 19.1.0
|
|
10691
9427
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
10692
9428
|
|
|
10693
|
-
expo-haptics@15.0.8(expo@54.0.
|
|
9429
|
+
expo-haptics@15.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)):
|
|
10694
9430
|
dependencies:
|
|
10695
|
-
expo: 54.0.
|
|
9431
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10696
9432
|
|
|
10697
|
-
expo-image-loader@6.0.0(expo@54.0.
|
|
9433
|
+
expo-image-loader@6.0.0(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)):
|
|
10698
9434
|
dependencies:
|
|
10699
|
-
expo: 54.0.
|
|
9435
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10700
9436
|
|
|
10701
|
-
expo-image-picker@17.0.10(expo@54.0.
|
|
9437
|
+
expo-image-picker@17.0.10(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)):
|
|
10702
9438
|
dependencies:
|
|
10703
|
-
expo: 54.0.
|
|
10704
|
-
expo-image-loader: 6.0.0(expo@54.0.
|
|
9439
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
9440
|
+
expo-image-loader: 6.0.0(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))
|
|
10705
9441
|
|
|
10706
|
-
expo-image@3.0.11(expo@54.0.
|
|
9442
|
+
expo-image@3.0.11(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
|
|
10707
9443
|
dependencies:
|
|
10708
|
-
expo: 54.0.
|
|
9444
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10709
9445
|
react: 19.1.0
|
|
10710
9446
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
10711
9447
|
optionalDependencies:
|
|
10712
9448
|
react-native-web: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
|
10713
9449
|
|
|
10714
|
-
expo-keep-awake@15.0.8(expo@54.0.
|
|
9450
|
+
expo-keep-awake@15.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0):
|
|
10715
9451
|
dependencies:
|
|
10716
|
-
expo: 54.0.
|
|
9452
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10717
9453
|
react: 19.1.0
|
|
10718
9454
|
|
|
10719
|
-
expo-linear-gradient@15.0.8(expo@54.0.
|
|
9455
|
+
expo-linear-gradient@15.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
|
|
10720
9456
|
dependencies:
|
|
10721
|
-
expo: 54.0.
|
|
9457
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10722
9458
|
react: 19.1.0
|
|
10723
9459
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
10724
9460
|
|
|
10725
|
-
expo-linking@8.0.11(expo@54.0.
|
|
9461
|
+
expo-linking@8.0.11(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
|
|
10726
9462
|
dependencies:
|
|
10727
|
-
expo-constants: 18.0.13(expo@54.0.
|
|
9463
|
+
expo-constants: 18.0.13(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
10728
9464
|
invariant: 2.2.4
|
|
10729
9465
|
react: 19.1.0
|
|
10730
9466
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
@@ -10732,9 +9468,9 @@ snapshots:
|
|
|
10732
9468
|
- expo
|
|
10733
9469
|
- supports-color
|
|
10734
9470
|
|
|
10735
|
-
expo-location@19.0.8(expo@54.0.
|
|
9471
|
+
expo-location@19.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)):
|
|
10736
9472
|
dependencies:
|
|
10737
|
-
expo: 54.0.
|
|
9473
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10738
9474
|
|
|
10739
9475
|
expo-modules-autolinking@3.0.24:
|
|
10740
9476
|
dependencies:
|
|
@@ -10750,9 +9486,9 @@ snapshots:
|
|
|
10750
9486
|
react: 19.1.0
|
|
10751
9487
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
10752
9488
|
|
|
10753
|
-
? expo-router@6.0.
|
|
9489
|
+
? expo-router@6.0.23(@expo/metro-runtime@6.1.2)(@react-native-masked-view/masked-view@0.3.2(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(@types/react@19.1.17)(expo-constants@18.0.13)(expo-linking@8.0.11)(expo@54.0.33)(react-dom@19.1.0(react@19.1.0))(react-native-gesture-handler@2.28.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.6(@babel/core@7.28.6)(react-native-worklets@0.5.1(@babel/core@7.28.6)(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10754
9490
|
: dependencies:
|
|
10755
|
-
'@expo/metro-runtime': 6.1.2(expo@54.0.
|
|
9491
|
+
'@expo/metro-runtime': 6.1.2(expo@54.0.33)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10756
9492
|
'@expo/schema-utils': 0.1.8
|
|
10757
9493
|
'@radix-ui/react-slot': 1.2.0(@types/react@19.1.17)(react@19.1.0)
|
|
10758
9494
|
'@radix-ui/react-tabs': 1.1.13(@types/react@19.1.17)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
|
@@ -10762,9 +9498,9 @@ snapshots:
|
|
|
10762
9498
|
client-only: 0.0.1
|
|
10763
9499
|
debug: 4.4.3
|
|
10764
9500
|
escape-string-regexp: 4.0.0
|
|
10765
|
-
expo: 54.0.
|
|
10766
|
-
expo-constants: 18.0.13(expo@54.0.
|
|
10767
|
-
expo-linking: 8.0.11(expo@54.0.
|
|
9501
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
9502
|
+
expo-constants: 18.0.13(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
9503
|
+
expo-linking: 8.0.11(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10768
9504
|
expo-server: 1.0.5
|
|
10769
9505
|
fast-deep-equal: 3.1.3
|
|
10770
9506
|
invariant: 2.2.4
|
|
@@ -10795,10 +9531,10 @@ snapshots:
|
|
|
10795
9531
|
|
|
10796
9532
|
expo-server@1.0.5: {}
|
|
10797
9533
|
|
|
10798
|
-
expo-splash-screen@31.0.13(expo@54.0.
|
|
9534
|
+
expo-splash-screen@31.0.13(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)):
|
|
10799
9535
|
dependencies:
|
|
10800
|
-
'@expo/prebuild-config': 54.0.8(expo@54.0.
|
|
10801
|
-
expo: 54.0.
|
|
9536
|
+
'@expo/prebuild-config': 54.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))
|
|
9537
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10802
9538
|
transitivePeerDependencies:
|
|
10803
9539
|
- supports-color
|
|
10804
9540
|
|
|
@@ -10808,46 +9544,46 @@ snapshots:
|
|
|
10808
9544
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
10809
9545
|
react-native-is-edge-to-edge: 1.2.1(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10810
9546
|
|
|
10811
|
-
expo-symbols@1.0.8(expo@54.0.
|
|
9547
|
+
expo-symbols@1.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)):
|
|
10812
9548
|
dependencies:
|
|
10813
|
-
expo: 54.0.
|
|
9549
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10814
9550
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
10815
9551
|
sf-symbols-typescript: 2.2.0
|
|
10816
9552
|
|
|
10817
|
-
expo-system-ui@6.0.9(expo@54.0.
|
|
9553
|
+
expo-system-ui@6.0.9(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)):
|
|
10818
9554
|
dependencies:
|
|
10819
9555
|
'@react-native/normalize-colors': 0.81.5
|
|
10820
9556
|
debug: 4.4.3
|
|
10821
|
-
expo: 54.0.
|
|
9557
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10822
9558
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
10823
9559
|
optionalDependencies:
|
|
10824
9560
|
react-native-web: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
|
10825
9561
|
transitivePeerDependencies:
|
|
10826
9562
|
- supports-color
|
|
10827
9563
|
|
|
10828
|
-
expo-web-browser@15.0.10(expo@54.0.
|
|
9564
|
+
expo-web-browser@15.0.10(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)):
|
|
10829
9565
|
dependencies:
|
|
10830
|
-
expo: 54.0.
|
|
9566
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10831
9567
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
10832
9568
|
|
|
10833
|
-
expo@54.0.
|
|
9569
|
+
expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
|
|
10834
9570
|
dependencies:
|
|
10835
9571
|
'@babel/runtime': 7.28.6
|
|
10836
|
-
'@expo/cli': 54.0.
|
|
9572
|
+
'@expo/cli': 54.0.23(expo-router@6.0.23(@expo/metro-runtime@6.1.2)(@react-native-masked-view/masked-view@0.3.2(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(@types/react@19.1.17)(expo-constants@18.0.13)(expo-linking@8.0.11)(expo@54.0.33)(react-dom@19.1.0(react@19.1.0))(react-native-gesture-handler@2.28.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.6(@babel/core@7.28.6)(react-native-worklets@0.5.1(@babel/core@7.28.6)(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
10837
9573
|
'@expo/config': 12.0.13
|
|
10838
9574
|
'@expo/config-plugins': 54.0.4
|
|
10839
9575
|
'@expo/devtools': 0.1.8(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10840
9576
|
'@expo/fingerprint': 0.15.4
|
|
10841
9577
|
'@expo/metro': 54.2.0
|
|
10842
|
-
'@expo/metro-config': 54.0.14(expo@54.0.
|
|
10843
|
-
'@expo/vector-icons': 15.0.3(expo-font@14.0.11(expo@54.0.
|
|
9578
|
+
'@expo/metro-config': 54.0.14(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))
|
|
9579
|
+
'@expo/vector-icons': 15.0.3(expo-font@14.0.11(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10844
9580
|
'@ungap/structured-clone': 1.3.0
|
|
10845
|
-
babel-preset-expo: 54.0.10(@babel/core@7.28.6)(@babel/runtime@7.28.6)(expo@54.0.
|
|
10846
|
-
expo-asset: 12.0.12(expo@54.0.
|
|
10847
|
-
expo-constants: 18.0.13(expo@54.0.
|
|
10848
|
-
expo-file-system: 19.0.21(expo@54.0.
|
|
10849
|
-
expo-font: 14.0.11(expo@54.0.
|
|
10850
|
-
expo-keep-awake: 15.0.8(expo@54.0.
|
|
9581
|
+
babel-preset-expo: 54.0.10(@babel/core@7.28.6)(@babel/runtime@7.28.6)(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2)
|
|
9582
|
+
expo-asset: 12.0.12(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
9583
|
+
expo-constants: 18.0.13(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
9584
|
+
expo-file-system: 19.0.21(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
9585
|
+
expo-font: 14.0.11(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
9586
|
+
expo-keep-awake: 15.0.8(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0)
|
|
10851
9587
|
expo-modules-autolinking: 3.0.24
|
|
10852
9588
|
expo-modules-core: 3.0.29(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10853
9589
|
pretty-format: 29.7.0
|
|
@@ -10856,7 +9592,7 @@ snapshots:
|
|
|
10856
9592
|
react-refresh: 0.14.2
|
|
10857
9593
|
whatwg-url-without-unicode: 8.0.0-3
|
|
10858
9594
|
optionalDependencies:
|
|
10859
|
-
'@expo/metro-runtime': 6.1.2(expo@54.0.
|
|
9595
|
+
'@expo/metro-runtime': 6.1.2(expo@54.0.33)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10860
9596
|
react-native-webview: 13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
10861
9597
|
transitivePeerDependencies:
|
|
10862
9598
|
- '@babel/core'
|
|
@@ -10910,10 +9646,6 @@ snapshots:
|
|
|
10910
9646
|
|
|
10911
9647
|
fast-levenshtein@2.0.6: {}
|
|
10912
9648
|
|
|
10913
|
-
fast-xml-parser@5.2.5:
|
|
10914
|
-
dependencies:
|
|
10915
|
-
strnum: 2.1.2
|
|
10916
|
-
|
|
10917
9649
|
fb-watchman@2.0.2:
|
|
10918
9650
|
dependencies:
|
|
10919
9651
|
bser: 2.1.1
|
|
@@ -11052,8 +9784,6 @@ snapshots:
|
|
|
11052
9784
|
|
|
11053
9785
|
get-caller-file@2.0.5: {}
|
|
11054
9786
|
|
|
11055
|
-
get-east-asian-width@1.4.0: {}
|
|
11056
|
-
|
|
11057
9787
|
get-intrinsic@1.3.0:
|
|
11058
9788
|
dependencies:
|
|
11059
9789
|
call-bind-apply-helpers: 1.0.2
|
|
@@ -11260,6 +9990,8 @@ snapshots:
|
|
|
11260
9990
|
|
|
11261
9991
|
hyphenate-style-name@1.1.0: {}
|
|
11262
9992
|
|
|
9993
|
+
iceberg-js@0.8.1: {}
|
|
9994
|
+
|
|
11263
9995
|
iconv-lite@0.4.24:
|
|
11264
9996
|
dependencies:
|
|
11265
9997
|
safer-buffer: 2.1.2
|
|
@@ -11387,8 +10119,6 @@ snapshots:
|
|
|
11387
10119
|
dependencies:
|
|
11388
10120
|
is-extglob: 2.1.1
|
|
11389
10121
|
|
|
11390
|
-
is-interactive@2.0.0: {}
|
|
11391
|
-
|
|
11392
10122
|
is-map@2.0.3: {}
|
|
11393
10123
|
|
|
11394
10124
|
is-negative-zero@2.0.3: {}
|
|
@@ -11436,8 +10166,6 @@ snapshots:
|
|
|
11436
10166
|
dependencies:
|
|
11437
10167
|
which-typed-array: 1.1.20
|
|
11438
10168
|
|
|
11439
|
-
is-unicode-supported@2.1.0: {}
|
|
11440
|
-
|
|
11441
10169
|
is-weakmap@2.0.2: {}
|
|
11442
10170
|
|
|
11443
10171
|
is-weakref@1.1.1:
|
|
@@ -11633,14 +10361,14 @@ snapshots:
|
|
|
11633
10361
|
jest-mock: 29.7.0
|
|
11634
10362
|
jest-util: 29.7.0
|
|
11635
10363
|
|
|
11636
|
-
jest-expo@54.0.
|
|
10364
|
+
jest-expo@54.0.17(@babel/core@7.28.6)(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(jest@29.7.0(@types/node@25.0.10))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
|
|
11637
10365
|
dependencies:
|
|
11638
10366
|
'@expo/config': 12.0.13
|
|
11639
10367
|
'@expo/json-file': 10.0.8
|
|
11640
10368
|
'@jest/create-cache-key-function': 29.7.0
|
|
11641
10369
|
'@jest/globals': 29.7.0
|
|
11642
10370
|
babel-jest: 29.7.0(@babel/core@7.28.6)
|
|
11643
|
-
expo: 54.0.
|
|
10371
|
+
expo: 54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
11644
10372
|
jest-environment-jsdom: 29.7.0
|
|
11645
10373
|
jest-snapshot: 29.7.0
|
|
11646
10374
|
jest-watch-select-projects: 2.0.0
|
|
@@ -11988,9 +10716,54 @@ snapshots:
|
|
|
11988
10716
|
transitivePeerDependencies:
|
|
11989
10717
|
- supports-color
|
|
11990
10718
|
|
|
11991
|
-
lightningcss@1.
|
|
10719
|
+
lightningcss-android-arm64@1.30.2:
|
|
10720
|
+
optional: true
|
|
10721
|
+
|
|
10722
|
+
lightningcss-darwin-arm64@1.30.2:
|
|
10723
|
+
optional: true
|
|
10724
|
+
|
|
10725
|
+
lightningcss-darwin-x64@1.30.2:
|
|
10726
|
+
optional: true
|
|
10727
|
+
|
|
10728
|
+
lightningcss-freebsd-x64@1.30.2:
|
|
10729
|
+
optional: true
|
|
10730
|
+
|
|
10731
|
+
lightningcss-linux-arm-gnueabihf@1.30.2:
|
|
10732
|
+
optional: true
|
|
10733
|
+
|
|
10734
|
+
lightningcss-linux-arm64-gnu@1.30.2:
|
|
10735
|
+
optional: true
|
|
10736
|
+
|
|
10737
|
+
lightningcss-linux-arm64-musl@1.30.2:
|
|
10738
|
+
optional: true
|
|
10739
|
+
|
|
10740
|
+
lightningcss-linux-x64-gnu@1.30.2:
|
|
10741
|
+
optional: true
|
|
10742
|
+
|
|
10743
|
+
lightningcss-linux-x64-musl@1.30.2:
|
|
10744
|
+
optional: true
|
|
10745
|
+
|
|
10746
|
+
lightningcss-win32-arm64-msvc@1.30.2:
|
|
10747
|
+
optional: true
|
|
10748
|
+
|
|
10749
|
+
lightningcss-win32-x64-msvc@1.30.2:
|
|
10750
|
+
optional: true
|
|
10751
|
+
|
|
10752
|
+
lightningcss@1.30.2:
|
|
11992
10753
|
dependencies:
|
|
11993
10754
|
detect-libc: 2.1.2
|
|
10755
|
+
optionalDependencies:
|
|
10756
|
+
lightningcss-android-arm64: 1.30.2
|
|
10757
|
+
lightningcss-darwin-arm64: 1.30.2
|
|
10758
|
+
lightningcss-darwin-x64: 1.30.2
|
|
10759
|
+
lightningcss-freebsd-x64: 1.30.2
|
|
10760
|
+
lightningcss-linux-arm-gnueabihf: 1.30.2
|
|
10761
|
+
lightningcss-linux-arm64-gnu: 1.30.2
|
|
10762
|
+
lightningcss-linux-arm64-musl: 1.30.2
|
|
10763
|
+
lightningcss-linux-x64-gnu: 1.30.2
|
|
10764
|
+
lightningcss-linux-x64-musl: 1.30.2
|
|
10765
|
+
lightningcss-win32-arm64-msvc: 1.30.2
|
|
10766
|
+
lightningcss-win32-x64-msvc: 1.30.2
|
|
11994
10767
|
|
|
11995
10768
|
lines-and-columns@1.2.4: {}
|
|
11996
10769
|
|
|
@@ -12019,11 +10792,6 @@ snapshots:
|
|
|
12019
10792
|
dependencies:
|
|
12020
10793
|
chalk: 2.4.2
|
|
12021
10794
|
|
|
12022
|
-
log-symbols@7.0.1:
|
|
12023
|
-
dependencies:
|
|
12024
|
-
is-unicode-supported: 2.1.0
|
|
12025
|
-
yoctocolors: 2.1.2
|
|
12026
|
-
|
|
12027
10795
|
loose-envify@1.4.0:
|
|
12028
10796
|
dependencies:
|
|
12029
10797
|
js-tokens: 4.0.0
|
|
@@ -12264,8 +11032,6 @@ snapshots:
|
|
|
12264
11032
|
|
|
12265
11033
|
mimic-fn@2.1.0: {}
|
|
12266
11034
|
|
|
12267
|
-
mimic-function@5.0.1: {}
|
|
12268
|
-
|
|
12269
11035
|
minimatch@10.1.1:
|
|
12270
11036
|
dependencies:
|
|
12271
11037
|
'@isaacs/brace-expansion': 5.0.0
|
|
@@ -12443,10 +11209,6 @@ snapshots:
|
|
|
12443
11209
|
dependencies:
|
|
12444
11210
|
mimic-fn: 2.1.0
|
|
12445
11211
|
|
|
12446
|
-
onetime@7.0.0:
|
|
12447
|
-
dependencies:
|
|
12448
|
-
mimic-function: 5.0.1
|
|
12449
|
-
|
|
12450
11212
|
open@7.4.2:
|
|
12451
11213
|
dependencies:
|
|
12452
11214
|
is-docker: 2.2.1
|
|
@@ -12481,17 +11243,6 @@ snapshots:
|
|
|
12481
11243
|
strip-ansi: 5.2.0
|
|
12482
11244
|
wcwidth: 1.0.1
|
|
12483
11245
|
|
|
12484
|
-
ora@9.1.0:
|
|
12485
|
-
dependencies:
|
|
12486
|
-
chalk: 5.6.2
|
|
12487
|
-
cli-cursor: 5.0.0
|
|
12488
|
-
cli-spinners: 3.4.0
|
|
12489
|
-
is-interactive: 2.0.0
|
|
12490
|
-
is-unicode-supported: 2.1.0
|
|
12491
|
-
log-symbols: 7.0.1
|
|
12492
|
-
stdin-discarder: 0.2.2
|
|
12493
|
-
string-width: 8.1.0
|
|
12494
|
-
|
|
12495
11246
|
own-keys@1.0.1:
|
|
12496
11247
|
dependencies:
|
|
12497
11248
|
get-intrinsic: 1.3.0
|
|
@@ -12776,14 +11527,14 @@ snapshots:
|
|
|
12776
11527
|
|
|
12777
11528
|
react-is@19.2.3: {}
|
|
12778
11529
|
|
|
12779
|
-
react-native-chart-kit@6.12.0(react-native-svg@15.
|
|
11530
|
+
react-native-chart-kit@6.12.0(react-native-svg@15.12.1(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
|
|
12780
11531
|
dependencies:
|
|
12781
11532
|
lodash: 4.17.23
|
|
12782
11533
|
paths-js: 0.4.11
|
|
12783
11534
|
point-in-polygon: 1.1.0
|
|
12784
11535
|
react: 19.1.0
|
|
12785
11536
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
12786
|
-
react-native-svg: 15.
|
|
11537
|
+
react-native-svg: 15.12.1(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
12787
11538
|
|
|
12788
11539
|
react-native-gesture-handler@2.28.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
|
|
12789
11540
|
dependencies:
|
|
@@ -12808,9 +11559,9 @@ snapshots:
|
|
|
12808
11559
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
12809
11560
|
react-native-iphone-x-helper: 1.3.1(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
12810
11561
|
|
|
12811
|
-
react-native-modal-datetime-picker@18.0.0(@react-native-community/datetimepicker@8.
|
|
11562
|
+
react-native-modal-datetime-picker@18.0.0(@react-native-community/datetimepicker@8.4.4(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)):
|
|
12812
11563
|
dependencies:
|
|
12813
|
-
'@react-native-community/datetimepicker': 8.
|
|
11564
|
+
'@react-native-community/datetimepicker': 8.4.4(expo@54.0.33(patch_hash=oibatoworxrl4npxv627d5aa3e)(@babel/core@7.28.6)(@expo/metro-runtime@6.1.2)(expo-router@6.0.23)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
12814
11565
|
prop-types: 15.8.1
|
|
12815
11566
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
12816
11567
|
|
|
@@ -12836,7 +11587,7 @@ snapshots:
|
|
|
12836
11587
|
react-native-is-edge-to-edge: 1.2.1(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
12837
11588
|
warn-once: 0.1.1
|
|
12838
11589
|
|
|
12839
|
-
react-native-svg@15.
|
|
11590
|
+
react-native-svg@15.12.1(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0):
|
|
12840
11591
|
dependencies:
|
|
12841
11592
|
css-select: 5.2.2
|
|
12842
11593
|
css-tree: 1.1.3
|
|
@@ -13096,11 +11847,6 @@ snapshots:
|
|
|
13096
11847
|
onetime: 2.0.1
|
|
13097
11848
|
signal-exit: 3.0.7
|
|
13098
11849
|
|
|
13099
|
-
restore-cursor@5.1.0:
|
|
13100
|
-
dependencies:
|
|
13101
|
-
onetime: 7.0.0
|
|
13102
|
-
signal-exit: 4.1.0
|
|
13103
|
-
|
|
13104
11850
|
rimraf@3.0.2:
|
|
13105
11851
|
dependencies:
|
|
13106
11852
|
glob: 7.2.3
|
|
@@ -13251,8 +11997,6 @@ snapshots:
|
|
|
13251
11997
|
|
|
13252
11998
|
signal-exit@3.0.7: {}
|
|
13253
11999
|
|
|
13254
|
-
signal-exit@4.1.0: {}
|
|
13255
|
-
|
|
13256
12000
|
simple-plist@1.3.1:
|
|
13257
12001
|
dependencies:
|
|
13258
12002
|
bplist-creator: 0.1.0
|
|
@@ -13328,18 +12072,11 @@ snapshots:
|
|
|
13328
12072
|
|
|
13329
12073
|
statuses@2.0.2: {}
|
|
13330
12074
|
|
|
13331
|
-
stdin-discarder@0.2.2: {}
|
|
13332
|
-
|
|
13333
12075
|
stop-iteration-iterator@1.1.0:
|
|
13334
12076
|
dependencies:
|
|
13335
12077
|
es-errors: 1.3.0
|
|
13336
12078
|
internal-slot: 1.1.0
|
|
13337
12079
|
|
|
13338
|
-
stream-browserify@3.0.0:
|
|
13339
|
-
dependencies:
|
|
13340
|
-
inherits: 2.0.4
|
|
13341
|
-
readable-stream: 3.6.2
|
|
13342
|
-
|
|
13343
12080
|
stream-buffers@2.2.0: {}
|
|
13344
12081
|
|
|
13345
12082
|
streamsearch@1.1.0: {}
|
|
@@ -13362,11 +12099,6 @@ snapshots:
|
|
|
13362
12099
|
is-fullwidth-code-point: 3.0.0
|
|
13363
12100
|
strip-ansi: 6.0.1
|
|
13364
12101
|
|
|
13365
|
-
string-width@8.1.0:
|
|
13366
|
-
dependencies:
|
|
13367
|
-
get-east-asian-width: 1.4.0
|
|
13368
|
-
strip-ansi: 7.1.2
|
|
13369
|
-
|
|
13370
12102
|
string.prototype.matchall@4.0.12:
|
|
13371
12103
|
dependencies:
|
|
13372
12104
|
call-bind: 1.0.8
|
|
@@ -13437,8 +12169,6 @@ snapshots:
|
|
|
13437
12169
|
|
|
13438
12170
|
strip-json-comments@3.1.1: {}
|
|
13439
12171
|
|
|
13440
|
-
strnum@2.1.2: {}
|
|
13441
|
-
|
|
13442
12172
|
structured-headers@0.4.1: {}
|
|
13443
12173
|
|
|
13444
12174
|
styleq@0.1.3: {}
|
|
@@ -13538,8 +12268,6 @@ snapshots:
|
|
|
13538
12268
|
dependencies:
|
|
13539
12269
|
punycode: 2.3.1
|
|
13540
12270
|
|
|
13541
|
-
transliteration@2.6.1: {}
|
|
13542
|
-
|
|
13543
12271
|
ts-api-utils@2.4.0(typescript@5.9.3):
|
|
13544
12272
|
dependencies:
|
|
13545
12273
|
typescript: 5.9.3
|
|
@@ -13922,8 +12650,6 @@ snapshots:
|
|
|
13922
12650
|
|
|
13923
12651
|
yocto-queue@0.1.0: {}
|
|
13924
12652
|
|
|
13925
|
-
yoctocolors@2.1.2: {}
|
|
13926
|
-
|
|
13927
12653
|
zod-validation-error@4.0.2(zod@4.3.6):
|
|
13928
12654
|
dependencies:
|
|
13929
12655
|
zod: 4.3.6
|