@coze-arch/cli 0.0.1-alpha.374e8d → 0.0.1-alpha.3ed8e2
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/README.md +1 -0
- package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +1 -1
- package/lib/__templates__/expo/client/components/Screen.tsx +2 -2
- package/lib/__templates__/expo/client/eslint.config.mjs +7 -0
- package/lib/__templates__/expo/client/metro.config.js +3 -0
- package/lib/__templates__/expo/client/package.json +35 -35
- package/lib/__templates__/expo/client/scripts/install-missing-deps.js +10 -10
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
- package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/rule.js +120 -0
- package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/tech.md +58 -0
- package/lib/__templates__/expo/package.json +1 -1
- package/lib/__templates__/expo/pnpm-lock.yaml +394 -221
- 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/README.md +5 -0
- package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
- package/lib/__templates__/nextjs/next.config.ts +1 -2
- package/lib/__templates__/nextjs/package.json +5 -6
- package/lib/__templates__/nextjs/pnpm-lock.yaml +1145 -109
- package/lib/__templates__/nextjs/scripts/build.sh +4 -1
- package/lib/__templates__/nextjs/scripts/dev.sh +8 -2
- package/lib/__templates__/nextjs/scripts/start.sh +7 -1
- package/lib/__templates__/nextjs/src/app/layout.tsx +1 -1
- package/lib/__templates__/nextjs/src/app/page.tsx +4 -3
- package/lib/__templates__/nextjs/src/server.ts +35 -0
- package/lib/__templates__/nextjs/template.config.js +49 -14
- package/lib/__templates__/nextjs/tsconfig.json +1 -1
- package/lib/__templates__/nuxt-vue/.coze +12 -0
- package/lib/__templates__/nuxt-vue/README.md +73 -0
- package/lib/__templates__/nuxt-vue/_gitignore +24 -0
- package/lib/__templates__/nuxt-vue/_npmrc +23 -0
- package/lib/__templates__/nuxt-vue/app/app.vue +6 -0
- package/lib/__templates__/nuxt-vue/app/pages/index.vue +23 -0
- package/lib/__templates__/nuxt-vue/assets/css/main.css +24 -0
- package/lib/__templates__/nuxt-vue/nuxt.config.ts +116 -0
- package/lib/__templates__/nuxt-vue/package.json +35 -0
- package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +8759 -0
- package/lib/__templates__/nuxt-vue/postcss.config.mjs +8 -0
- package/lib/__templates__/nuxt-vue/public/favicon.ico +0 -0
- package/lib/__templates__/nuxt-vue/public/robots.txt +2 -0
- package/lib/__templates__/nuxt-vue/scripts/build.sh +14 -0
- package/lib/__templates__/nuxt-vue/scripts/dev.sh +39 -0
- package/lib/__templates__/nuxt-vue/scripts/prepare.sh +14 -0
- package/lib/__templates__/nuxt-vue/scripts/start.sh +21 -0
- package/lib/__templates__/nuxt-vue/server/api/hello.ts +10 -0
- package/lib/__templates__/nuxt-vue/server/middleware/logger.ts +10 -0
- package/lib/__templates__/nuxt-vue/server/routes/health.ts +10 -0
- package/lib/__templates__/nuxt-vue/tailwind.config.js +13 -0
- package/lib/__templates__/nuxt-vue/template.config.js +87 -0
- package/lib/__templates__/nuxt-vue/tsconfig.json +18 -0
- package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +107 -37
- package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +24 -1
- package/lib/__templates__/taro/README.md +138 -62
- package/lib/__templates__/taro/config/index.ts +105 -41
- package/lib/__templates__/taro/config/prod.ts +4 -5
- package/lib/__templates__/taro/eslint.config.mjs +82 -4
- package/lib/__templates__/taro/package.json +23 -6
- package/lib/__templates__/taro/patches/@tarojs__plugin-mini-ci@4.1.9.patch +30 -0
- package/lib/__templates__/taro/pnpm-lock.yaml +1293 -311
- package/lib/__templates__/taro/server/package.json +3 -1
- package/lib/__templates__/taro/src/app.css +141 -37
- package/lib/__templates__/taro/src/app.tsx +9 -0
- package/lib/__templates__/taro/src/components/ui/accordion.tsx +159 -0
- package/lib/__templates__/taro/src/components/ui/alert-dialog.tsx +260 -0
- package/lib/__templates__/taro/src/components/ui/alert.tsx +60 -0
- package/lib/__templates__/taro/src/components/ui/aspect-ratio.tsx +36 -0
- package/lib/__templates__/taro/src/components/ui/avatar.tsx +84 -0
- package/lib/__templates__/taro/src/components/ui/badge.tsx +37 -0
- package/lib/__templates__/taro/src/components/ui/breadcrumb.tsx +117 -0
- package/lib/__templates__/taro/src/components/ui/button-group.tsx +83 -0
- package/lib/__templates__/taro/src/components/ui/button.tsx +67 -0
- package/lib/__templates__/taro/src/components/ui/calendar.tsx +394 -0
- package/lib/__templates__/taro/src/components/ui/card.tsx +108 -0
- package/lib/__templates__/taro/src/components/ui/carousel.tsx +228 -0
- package/lib/__templates__/taro/src/components/ui/checkbox.tsx +58 -0
- package/lib/__templates__/taro/src/components/ui/code-block.tsx +169 -0
- package/lib/__templates__/taro/src/components/ui/collapsible.tsx +71 -0
- package/lib/__templates__/taro/src/components/ui/command.tsx +385 -0
- package/lib/__templates__/taro/src/components/ui/context-menu.tsx +614 -0
- package/lib/__templates__/taro/src/components/ui/dialog.tsx +256 -0
- package/lib/__templates__/taro/src/components/ui/drawer.tsx +192 -0
- package/lib/__templates__/taro/src/components/ui/dropdown-menu.tsx +561 -0
- package/lib/__templates__/taro/src/components/ui/field.tsx +228 -0
- package/lib/__templates__/taro/src/components/ui/hover-card.tsx +282 -0
- package/lib/__templates__/taro/src/components/ui/input-group.tsx +197 -0
- package/lib/__templates__/taro/src/components/ui/input-otp.tsx +136 -0
- package/lib/__templates__/taro/src/components/ui/input.tsx +56 -0
- package/lib/__templates__/taro/src/components/ui/label.tsx +24 -0
- package/lib/__templates__/taro/src/components/ui/menubar.tsx +595 -0
- package/lib/__templates__/taro/src/components/ui/navigation-menu.tsx +264 -0
- package/lib/__templates__/taro/src/components/ui/pagination.tsx +118 -0
- package/lib/__templates__/taro/src/components/ui/popover.tsx +291 -0
- package/lib/__templates__/taro/src/components/ui/portal.tsx +19 -0
- package/lib/__templates__/taro/src/components/ui/progress.tsx +28 -0
- package/lib/__templates__/taro/src/components/ui/radio-group.tsx +64 -0
- package/lib/__templates__/taro/src/components/ui/resizable.tsx +346 -0
- package/lib/__templates__/taro/src/components/ui/scroll-area.tsx +34 -0
- package/lib/__templates__/taro/src/components/ui/select.tsx +438 -0
- package/lib/__templates__/taro/src/components/ui/separator.tsx +30 -0
- package/lib/__templates__/taro/src/components/ui/sheet.tsx +262 -0
- package/lib/__templates__/taro/src/components/ui/skeleton.tsx +17 -0
- package/lib/__templates__/taro/src/components/ui/slider.tsx +203 -0
- package/lib/__templates__/taro/src/components/ui/sonner.tsx +1 -0
- package/lib/__templates__/taro/src/components/ui/switch.tsx +55 -0
- package/lib/__templates__/taro/src/components/ui/table.tsx +142 -0
- package/lib/__templates__/taro/src/components/ui/tabs.tsx +114 -0
- package/lib/__templates__/taro/src/components/ui/textarea.tsx +54 -0
- package/lib/__templates__/taro/src/components/ui/toast.tsx +517 -0
- package/lib/__templates__/taro/src/components/ui/toggle-group.tsx +120 -0
- package/lib/__templates__/taro/src/components/ui/toggle.tsx +77 -0
- package/lib/__templates__/taro/src/components/ui/tooltip.tsx +455 -0
- package/lib/__templates__/taro/src/lib/hooks/use-keyboard-offset.ts +37 -0
- package/lib/__templates__/taro/src/lib/measure.ts +115 -0
- package/lib/__templates__/taro/src/lib/platform.ts +12 -0
- package/lib/__templates__/taro/src/lib/utils.ts +6 -0
- package/lib/__templates__/taro/src/presets/dev-debug.ts +23 -0
- package/lib/__templates__/taro/src/presets/h5-container.tsx +15 -0
- package/lib/__templates__/taro/src/presets/h5-navbar.tsx +238 -0
- package/lib/__templates__/taro/src/presets/h5-styles.ts +220 -0
- package/lib/__templates__/taro/src/presets/index.tsx +18 -0
- package/lib/__templates__/templates.json +43 -0
- package/lib/__templates__/vite/README.md +190 -11
- package/lib/__templates__/vite/_gitignore +1 -0
- package/lib/__templates__/vite/eslint.config.mjs +6 -1
- package/lib/__templates__/vite/package.json +14 -3
- package/lib/__templates__/vite/pnpm-lock.yaml +820 -1593
- package/lib/__templates__/vite/scripts/build.sh +4 -1
- package/lib/__templates__/vite/scripts/dev.sh +9 -2
- package/lib/__templates__/vite/scripts/start.sh +9 -3
- package/lib/__templates__/vite/server/routes/index.ts +31 -0
- package/lib/__templates__/vite/server/server.ts +65 -0
- package/lib/__templates__/vite/server/vite.ts +67 -0
- package/lib/__templates__/vite/src/main.ts +2 -2
- package/lib/__templates__/vite/template.config.js +49 -14
- package/lib/__templates__/vite/tsconfig.json +4 -3
- package/lib/__templates__/vite/vite.config.ts +5 -0
- package/lib/cli.js +160 -159
- package/package.json +7 -3
- package/lib/__templates__/taro/src/app.ts +0 -14
- package/lib/__templates__/taro/src/utils/h5-styles.ts +0 -22
- package/lib/__templates__/taro/src/utils/wx-debug.ts +0 -23
- /package/lib/__templates__/expo/patches/{expo@54.0.32.patch → expo@54.0.33.patch} +0 -0
|
@@ -8,9 +8,9 @@ overrides:
|
|
|
8
8
|
esbuild: 0.27.2
|
|
9
9
|
|
|
10
10
|
patchedDependencies:
|
|
11
|
-
expo@54.0.
|
|
11
|
+
expo@54.0.33:
|
|
12
12
|
hash: oibatoworxrl4npxv627d5aa3e
|
|
13
|
-
path: patches/expo@54.0.
|
|
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,68 +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
72
|
expo-file-system:
|
|
73
73
|
specifier: ~19.0.21
|
|
74
|
-
version: 19.0.21(expo@54.0.
|
|
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))
|
|
75
75
|
expo-font:
|
|
76
|
-
specifier: ~14.0.
|
|
77
|
-
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)
|
|
78
78
|
expo-haptics:
|
|
79
|
-
specifier: ~15.0.
|
|
80
|
-
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))
|
|
81
81
|
expo-image:
|
|
82
|
-
specifier:
|
|
83
|
-
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)
|
|
84
84
|
expo-image-picker:
|
|
85
|
-
specifier: ~17.0.
|
|
86
|
-
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))
|
|
87
87
|
expo-linear-gradient:
|
|
88
|
-
specifier: ~15.0.
|
|
89
|
-
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)
|
|
90
90
|
expo-linking:
|
|
91
|
-
specifier: ~8.0.
|
|
92
|
-
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)
|
|
93
93
|
expo-location:
|
|
94
|
-
specifier: ~19.0.
|
|
95
|
-
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))
|
|
96
96
|
expo-router:
|
|
97
|
-
specifier: ~6.0.
|
|
98
|
-
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)
|
|
99
99
|
expo-splash-screen:
|
|
100
|
-
specifier: ~31.0.
|
|
101
|
-
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))
|
|
102
102
|
expo-status-bar:
|
|
103
|
-
specifier: ~3.0.
|
|
103
|
+
specifier: ~3.0.9
|
|
104
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)
|
|
105
105
|
expo-symbols:
|
|
106
|
-
specifier: ~1.0.
|
|
107
|
-
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))
|
|
108
108
|
expo-system-ui:
|
|
109
109
|
specifier: ~6.0.9
|
|
110
|
-
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))
|
|
111
111
|
expo-web-browser:
|
|
112
112
|
specifier: ~15.0.10
|
|
113
|
-
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))
|
|
114
114
|
js-base64:
|
|
115
115
|
specifier: ^3.7.7
|
|
116
116
|
version: 3.7.8
|
|
@@ -125,7 +125,7 @@ importers:
|
|
|
125
125
|
version: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
126
126
|
react-native-chart-kit:
|
|
127
127
|
specifier: ^6.12.0
|
|
128
|
-
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)
|
|
129
129
|
react-native-gesture-handler:
|
|
130
130
|
specifier: ~2.28.0
|
|
131
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)
|
|
@@ -134,9 +134,9 @@ importers:
|
|
|
134
134
|
version: 0.9.5(react-native@0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0))
|
|
135
135
|
react-native-modal-datetime-picker:
|
|
136
136
|
specifier: 18.0.0
|
|
137
|
-
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))
|
|
138
138
|
react-native-reanimated:
|
|
139
|
-
specifier: ~4.1.
|
|
139
|
+
specifier: ~4.1.1
|
|
140
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)
|
|
141
141
|
react-native-safe-area-context:
|
|
142
142
|
specifier: ~5.6.0
|
|
@@ -145,16 +145,16 @@ importers:
|
|
|
145
145
|
specifier: ~4.16.0
|
|
146
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)
|
|
147
147
|
react-native-svg:
|
|
148
|
-
specifier: 15.
|
|
149
|
-
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)
|
|
150
150
|
react-native-toast-message:
|
|
151
151
|
specifier: ^2.3.3
|
|
152
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)
|
|
153
153
|
react-native-web:
|
|
154
|
-
specifier:
|
|
154
|
+
specifier: ~0.21.0
|
|
155
155
|
version: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
|
156
156
|
react-native-webview:
|
|
157
|
-
specifier:
|
|
157
|
+
specifier: 13.15.0
|
|
158
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)
|
|
159
159
|
react-native-worklets:
|
|
160
160
|
specifier: 0.5.1
|
|
@@ -183,7 +183,7 @@ importers:
|
|
|
183
183
|
version: 5.0.2
|
|
184
184
|
babel-preset-expo:
|
|
185
185
|
specifier: ^54.0.9
|
|
186
|
-
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)
|
|
187
187
|
chalk:
|
|
188
188
|
specifier: ^4.1.2
|
|
189
189
|
version: 4.1.2
|
|
@@ -227,8 +227,8 @@ importers:
|
|
|
227
227
|
specifier: ^29.2.1
|
|
228
228
|
version: 29.7.0(@types/node@25.0.10)
|
|
229
229
|
jest-expo:
|
|
230
|
-
specifier: ~54.0.
|
|
231
|
-
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)
|
|
232
232
|
react-test-renderer:
|
|
233
233
|
specifier: 19.1.0
|
|
234
234
|
version: 19.1.0(react@19.1.0)
|
|
@@ -244,15 +244,21 @@ importers:
|
|
|
244
244
|
|
|
245
245
|
server:
|
|
246
246
|
dependencies:
|
|
247
|
+
'@supabase/supabase-js':
|
|
248
|
+
specifier: 2.95.3
|
|
249
|
+
version: 2.95.3
|
|
247
250
|
cors:
|
|
248
251
|
specifier: ^2.8.5
|
|
249
252
|
version: 2.8.6
|
|
250
253
|
coze-coding-dev-sdk:
|
|
251
|
-
specifier: ^0.7.
|
|
252
|
-
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)
|
|
253
256
|
dayjs:
|
|
254
257
|
specifier: ^1.11.19
|
|
255
258
|
version: 1.11.19
|
|
259
|
+
dotenv:
|
|
260
|
+
specifier: ^17.2.3
|
|
261
|
+
version: 17.2.4
|
|
256
262
|
drizzle-orm:
|
|
257
263
|
specifier: ^0.45.1
|
|
258
264
|
version: 0.45.1(@types/pg@8.16.0)(pg@8.17.2)
|
|
@@ -1034,8 +1040,8 @@ packages:
|
|
|
1034
1040
|
resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
|
|
1035
1041
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1036
1042
|
|
|
1037
|
-
'@expo/cli@54.0.
|
|
1038
|
-
resolution: {integrity: sha512-
|
|
1043
|
+
'@expo/cli@54.0.23':
|
|
1044
|
+
resolution: {integrity: sha512-km0h72SFfQCmVycH/JtPFTVy69w6Lx1cHNDmfLfQqgKFYeeHTjx7LVDP4POHCtNxFP2UeRazrygJhlh4zz498g==}
|
|
1039
1045
|
hasBin: true
|
|
1040
1046
|
peerDependencies:
|
|
1041
1047
|
expo: '*'
|
|
@@ -1525,8 +1531,8 @@ packages:
|
|
|
1525
1531
|
peerDependencies:
|
|
1526
1532
|
react-native: ^0.0.0-0 || >=0.65 <1.0
|
|
1527
1533
|
|
|
1528
|
-
'@react-native-community/datetimepicker@8.
|
|
1529
|
-
resolution: {integrity: sha512-
|
|
1534
|
+
'@react-native-community/datetimepicker@8.4.4':
|
|
1535
|
+
resolution: {integrity: sha512-bc4ZixEHxZC9/qf5gbdYvIJiLZ5CLmEsC3j+Yhe1D1KC/3QhaIfGDVdUcid0PdlSoGOSEq4VlB93AWyetEyBSQ==}
|
|
1530
1536
|
peerDependencies:
|
|
1531
1537
|
expo: '>=52.0.0'
|
|
1532
1538
|
react: '*'
|
|
@@ -1538,8 +1544,8 @@ packages:
|
|
|
1538
1544
|
react-native-windows:
|
|
1539
1545
|
optional: true
|
|
1540
1546
|
|
|
1541
|
-
'@react-native-community/slider@5.1
|
|
1542
|
-
resolution: {integrity: sha512-
|
|
1547
|
+
'@react-native-community/slider@5.0.1':
|
|
1548
|
+
resolution: {integrity: sha512-K3JRWkIW4wQ79YJ6+BPZzp1SamoikxfPRw7Yw4B4PElEQmqZFrmH9M5LxvIo460/3QSrZF/wCgi3qizJt7g/iw==}
|
|
1543
1549
|
|
|
1544
1550
|
'@react-native-masked-view/masked-view@0.3.2':
|
|
1545
1551
|
resolution: {integrity: sha512-XwuQoW7/GEgWRMovOQtX3A4PrXhyaZm0lVUiY8qJDvdngjLms9Cpdck6SmGAUNqQwcj2EadHC1HwL0bEyoa/SQ==}
|
|
@@ -1547,8 +1553,8 @@ packages:
|
|
|
1547
1553
|
react: '>=16'
|
|
1548
1554
|
react-native: '>=0.57'
|
|
1549
1555
|
|
|
1550
|
-
'@react-native-picker/picker@2.11.
|
|
1551
|
-
resolution: {integrity: sha512-
|
|
1556
|
+
'@react-native-picker/picker@2.11.1':
|
|
1557
|
+
resolution: {integrity: sha512-ThklnkK4fV3yynnIIRBkxxjxR4IFbdMNJVF6tlLdOJ/zEFUEFUEdXY0KmH0iYzMwY8W4/InWsLiA7AkpAbnexA==}
|
|
1552
1558
|
peerDependencies:
|
|
1553
1559
|
react: '*'
|
|
1554
1560
|
react-native: '*'
|
|
@@ -1674,6 +1680,30 @@ packages:
|
|
|
1674
1680
|
'@sinonjs/fake-timers@10.3.0':
|
|
1675
1681
|
resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
|
|
1676
1682
|
|
|
1683
|
+
'@supabase/auth-js@2.95.3':
|
|
1684
|
+
resolution: {integrity: sha512-vD2YoS8E2iKIX0F7EwXTmqhUpaNsmbU6X2R0/NdFcs02oEfnHyNP/3M716f3wVJ2E5XHGiTFXki6lRckhJ0Thg==}
|
|
1685
|
+
engines: {node: '>=20.0.0'}
|
|
1686
|
+
|
|
1687
|
+
'@supabase/functions-js@2.95.3':
|
|
1688
|
+
resolution: {integrity: sha512-uTuOAKzs9R/IovW1krO0ZbUHSJnsnyJElTXIRhjJTqymIVGcHzkAYnBCJqd7468Fs/Foz1BQ7Dv6DCl05lr7ig==}
|
|
1689
|
+
engines: {node: '>=20.0.0'}
|
|
1690
|
+
|
|
1691
|
+
'@supabase/postgrest-js@2.95.3':
|
|
1692
|
+
resolution: {integrity: sha512-LTrRBqU1gOovxRm1vRXPItSMPBmEFqrfTqdPTRtzOILV4jPSueFz6pES5hpb4LRlkFwCPRmv3nQJ5N625V2Xrg==}
|
|
1693
|
+
engines: {node: '>=20.0.0'}
|
|
1694
|
+
|
|
1695
|
+
'@supabase/realtime-js@2.95.3':
|
|
1696
|
+
resolution: {integrity: sha512-D7EAtfU3w6BEUxDACjowWNJo/ZRo7sDIuhuOGKHIm9FHieGeoJV5R6GKTLtga/5l/6fDr2u+WcW/m8I9SYmaIw==}
|
|
1697
|
+
engines: {node: '>=20.0.0'}
|
|
1698
|
+
|
|
1699
|
+
'@supabase/storage-js@2.95.3':
|
|
1700
|
+
resolution: {integrity: sha512-4GxkJiXI3HHWjxpC3sDx1BVrV87O0hfX+wvJdqGv67KeCu+g44SPnII8y0LL/Wr677jB7tpjAxKdtVWf+xhc9A==}
|
|
1701
|
+
engines: {node: '>=20.0.0'}
|
|
1702
|
+
|
|
1703
|
+
'@supabase/supabase-js@2.95.3':
|
|
1704
|
+
resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
|
|
1705
|
+
engines: {node: '>=20.0.0'}
|
|
1706
|
+
|
|
1677
1707
|
'@tootallnate/once@2.0.0':
|
|
1678
1708
|
resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
|
|
1679
1709
|
engines: {node: '>= 10'}
|
|
@@ -1759,6 +1789,9 @@ packages:
|
|
|
1759
1789
|
'@types/pg@8.16.0':
|
|
1760
1790
|
resolution: {integrity: sha512-RmhMd/wD+CF8Dfo+cVIy3RR5cl8CyfXQ0tGgW6XBL8L4LM/UTEbNXYRbLwU6w+CgrKBNbrQWt4FUtTfaU5jSYQ==}
|
|
1761
1791
|
|
|
1792
|
+
'@types/phoenix@1.6.7':
|
|
1793
|
+
resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
|
|
1794
|
+
|
|
1762
1795
|
'@types/qs@6.14.0':
|
|
1763
1796
|
resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==}
|
|
1764
1797
|
|
|
@@ -1786,6 +1819,9 @@ packages:
|
|
|
1786
1819
|
'@types/uuid@10.0.0':
|
|
1787
1820
|
resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
|
|
1788
1821
|
|
|
1822
|
+
'@types/ws@8.18.1':
|
|
1823
|
+
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
|
|
1824
|
+
|
|
1789
1825
|
'@types/yargs-parser@21.0.3':
|
|
1790
1826
|
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
|
|
1791
1827
|
|
|
@@ -2479,8 +2515,8 @@ packages:
|
|
|
2479
2515
|
resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
|
|
2480
2516
|
engines: {node: '>=10'}
|
|
2481
2517
|
|
|
2482
|
-
coze-coding-dev-sdk@0.7.
|
|
2483
|
-
resolution: {integrity: sha512-
|
|
2518
|
+
coze-coding-dev-sdk@0.7.16:
|
|
2519
|
+
resolution: {integrity: sha512-B7gRPBa+sfrZL8ur0+F/92SOgZgFaWD/fOnCN2DjthnHSdmCYhAJWCfqzG2oO2vwTiYCXkKUuTBZ3MJLMj886g==}
|
|
2484
2520
|
engines: {node: '>=18.0.0'}
|
|
2485
2521
|
hasBin: true
|
|
2486
2522
|
|
|
@@ -2685,6 +2721,10 @@ packages:
|
|
|
2685
2721
|
resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
|
|
2686
2722
|
engines: {node: '>=12'}
|
|
2687
2723
|
|
|
2724
|
+
dotenv@17.2.4:
|
|
2725
|
+
resolution: {integrity: sha512-mudtfb4zRB4bVvdj0xRo+e6duH1csJRM8IukBqfTRvHotn9+LBXB8ynAidP9zHqoRC/fsllXgk4kCKlR21fIhw==}
|
|
2726
|
+
engines: {node: '>=12'}
|
|
2727
|
+
|
|
2688
2728
|
drizzle-kit@0.31.8:
|
|
2689
2729
|
resolution: {integrity: sha512-O9EC/miwdnRDY10qRxM8P3Pg8hXe3LyU4ZipReKOgTwn4OqANmftj8XJz1UPUAS6NMHf0E2htjsbQujUTkncCg==}
|
|
2690
2730
|
hasBin: true
|
|
@@ -3189,8 +3229,8 @@ packages:
|
|
|
3189
3229
|
react: '*'
|
|
3190
3230
|
react-native: '*'
|
|
3191
3231
|
|
|
3192
|
-
expo-router@6.0.
|
|
3193
|
-
resolution: {integrity: sha512-
|
|
3232
|
+
expo-router@6.0.23:
|
|
3233
|
+
resolution: {integrity: sha512-qCxVAiCrCyu0npky6azEZ6dJDMt77OmCzEbpF6RbUTlfkaCA417LvY14SBkk0xyGruSxy/7pvJOI6tuThaUVCA==}
|
|
3194
3234
|
peerDependencies:
|
|
3195
3235
|
'@expo/metro-runtime': ^6.1.2
|
|
3196
3236
|
'@react-navigation/drawer': ^7.5.0
|
|
@@ -3206,7 +3246,7 @@ packages:
|
|
|
3206
3246
|
react-native-safe-area-context: '>= 5.4.0'
|
|
3207
3247
|
react-native-screens: '*'
|
|
3208
3248
|
react-native-web: '*'
|
|
3209
|
-
react-server-dom-webpack: ~19.0.
|
|
3249
|
+
react-server-dom-webpack: ~19.0.4 || ~19.1.5 || ~19.2.4
|
|
3210
3250
|
peerDependenciesMeta:
|
|
3211
3251
|
'@react-navigation/drawer':
|
|
3212
3252
|
optional: true
|
|
@@ -3260,8 +3300,8 @@ packages:
|
|
|
3260
3300
|
expo: '*'
|
|
3261
3301
|
react-native: '*'
|
|
3262
3302
|
|
|
3263
|
-
expo@54.0.
|
|
3264
|
-
resolution: {integrity: sha512-
|
|
3303
|
+
expo@54.0.33:
|
|
3304
|
+
resolution: {integrity: sha512-3yOEfAKqo+gqHcV8vKcnq0uA5zxlohnhA3fu4G43likN8ct5ZZ3LjAh9wDdKteEkoad3tFPvwxmXW711S5OHUw==}
|
|
3265
3305
|
hasBin: true
|
|
3266
3306
|
peerDependencies:
|
|
3267
3307
|
'@expo/dom-webview': '*'
|
|
@@ -3598,6 +3638,10 @@ packages:
|
|
|
3598
3638
|
hyphenate-style-name@1.1.0:
|
|
3599
3639
|
resolution: {integrity: sha512-WDC/ui2VVRrz3jOVi+XtjqkDjiVjTtFaAGiW37k6b+ohyQ5wYDOGkvCZa8+H0nx3gyvv0+BST9xuOgIyGQ00gw==}
|
|
3600
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
|
+
|
|
3601
3645
|
iconv-lite@0.4.24:
|
|
3602
3646
|
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
|
|
3603
3647
|
engines: {node: '>=0.10.0'}
|
|
@@ -3893,13 +3937,13 @@ packages:
|
|
|
3893
3937
|
resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==}
|
|
3894
3938
|
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
|
3895
3939
|
|
|
3896
|
-
jest-expo@54.0.
|
|
3897
|
-
resolution: {integrity: sha512-
|
|
3940
|
+
jest-expo@54.0.17:
|
|
3941
|
+
resolution: {integrity: sha512-LyIhrsP4xvHEEcR1R024u/LBj3uPpAgB+UljgV+YXWkEHjprnr0KpE4tROsMNYCVTM1pPlAnPuoBmn5gnAN9KA==}
|
|
3898
3942
|
hasBin: true
|
|
3899
3943
|
peerDependencies:
|
|
3900
3944
|
expo: '*'
|
|
3901
3945
|
react-native: '*'
|
|
3902
|
-
react-server-dom-webpack: ~19.0.
|
|
3946
|
+
react-server-dom-webpack: ~19.0.4 || ~19.1.5 || ~19.2.4
|
|
3903
3947
|
peerDependenciesMeta:
|
|
3904
3948
|
react-server-dom-webpack:
|
|
3905
3949
|
optional: true
|
|
@@ -4101,8 +4145,78 @@ packages:
|
|
|
4101
4145
|
lighthouse-logger@1.4.2:
|
|
4102
4146
|
resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==}
|
|
4103
4147
|
|
|
4104
|
-
lightningcss@1.
|
|
4105
|
-
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==}
|
|
4106
4220
|
engines: {node: '>= 12.0.0'}
|
|
4107
4221
|
|
|
4108
4222
|
lines-and-columns@1.2.4:
|
|
@@ -4597,9 +4711,6 @@ packages:
|
|
|
4597
4711
|
resolution: {integrity: sha512-3mqcLomDBXOo7Fo+UlaenG6f71bk1ZezPQy2JCmYHy2W2k5VKpP+Jbin9H0bjXynelTbglCqdFhSEkeIkKTYUA==}
|
|
4598
4712
|
engines: {node: '>=0.11.0'}
|
|
4599
4713
|
|
|
4600
|
-
pg-cloudflare@1.2.7:
|
|
4601
|
-
resolution: {integrity: sha512-YgCtzMH0ptvZJslLM1ffsY4EuGaU0cx4XSdXLRFae8bPP4dS5xL1tNB3k2o/N64cHJpwU7dxKli/nZ2lUa5fLg==}
|
|
4602
|
-
|
|
4603
4714
|
pg-connection-string@2.10.1:
|
|
4604
4715
|
resolution: {integrity: sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==}
|
|
4605
4716
|
|
|
@@ -4607,19 +4718,11 @@ packages:
|
|
|
4607
4718
|
resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==}
|
|
4608
4719
|
engines: {node: '>=4.0.0'}
|
|
4609
4720
|
|
|
4610
|
-
pg-pool@3.10.1:
|
|
4611
|
-
resolution: {integrity: sha512-Tu8jMlcX+9d8+QVzKIvM/uJtp07PKr82IUOYEphaWcoBhIYkoHpLXN3qO59nAI11ripznDsEzEv8nUxBVWajGg==}
|
|
4612
|
-
peerDependencies:
|
|
4613
|
-
pg: '>=8.0'
|
|
4614
|
-
|
|
4615
4721
|
pg-pool@3.11.0:
|
|
4616
4722
|
resolution: {integrity: sha512-MJYfvHwtGp870aeusDh+hg9apvOe2zmpZJpyt+BMtzUWlVqbhFmMK6bOBXLBUPd7iRtIF9fZplDc7KrPN3PN7w==}
|
|
4617
4723
|
peerDependencies:
|
|
4618
4724
|
pg: '>=8.0'
|
|
4619
4725
|
|
|
4620
|
-
pg-protocol@1.10.3:
|
|
4621
|
-
resolution: {integrity: sha512-6DIBgBQaTKDJyxnXaLiLR8wBpQQcGWuAESkRBX/t6OwA8YsqP+iVSiond2EDy6Y/dsGk8rh/jtax3js5NeV7JQ==}
|
|
4622
|
-
|
|
4623
4726
|
pg-protocol@1.11.0:
|
|
4624
4727
|
resolution: {integrity: sha512-pfsxk2M9M3BuGgDOfuy37VNRRX3jmKgMjcvAcWqNDpZSf4cUmv8HSOl5ViRQFsfARFn0KuUQTgLxVMbNq5NW3g==}
|
|
4625
4728
|
|
|
@@ -4627,15 +4730,6 @@ packages:
|
|
|
4627
4730
|
resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==}
|
|
4628
4731
|
engines: {node: '>=4'}
|
|
4629
4732
|
|
|
4630
|
-
pg@8.16.3:
|
|
4631
|
-
resolution: {integrity: sha512-enxc1h0jA/aq5oSDMvqyW3q89ra6XIIDZgCX9vkMrnz5DFTw/Ny3Li2lFQ+pt3L6MCgm/5o2o8HW9hiJji+xvw==}
|
|
4632
|
-
engines: {node: '>= 16.0.0'}
|
|
4633
|
-
peerDependencies:
|
|
4634
|
-
pg-native: '>=3.0.1'
|
|
4635
|
-
peerDependenciesMeta:
|
|
4636
|
-
pg-native:
|
|
4637
|
-
optional: true
|
|
4638
|
-
|
|
4639
4733
|
pg@8.17.2:
|
|
4640
4734
|
resolution: {integrity: sha512-vjbKdiBJRqzcYw1fNU5KuHyYvdJ1qpcQg1CeBrHFqV1pWgHeVR6j/+kX0E1AAXfyuLUGY1ICrN2ELKA/z2HWzw==}
|
|
4641
4735
|
engines: {node: '>= 16.0.0'}
|
|
@@ -4881,8 +4975,8 @@ packages:
|
|
|
4881
4975
|
react: '*'
|
|
4882
4976
|
react-native: '*'
|
|
4883
4977
|
|
|
4884
|
-
react-native-svg@15.
|
|
4885
|
-
resolution: {integrity: sha512
|
|
4978
|
+
react-native-svg@15.12.1:
|
|
4979
|
+
resolution: {integrity: sha512-vCuZJDf8a5aNC2dlMovEv4Z0jjEUET53lm/iILFnFewa15b4atjVxU6Wirm6O9y6dEsdjDZVD7Q3QM4T1wlI8g==}
|
|
4886
4980
|
peerDependencies:
|
|
4887
4981
|
react: '*'
|
|
4888
4982
|
react-native: '*'
|
|
@@ -5417,6 +5511,7 @@ packages:
|
|
|
5417
5511
|
tar@7.5.6:
|
|
5418
5512
|
resolution: {integrity: sha512-xqUeu2JAIJpXyvskvU3uvQW8PAmHrtXp2KDuMJwQqW8Sqq0CaZBAQ+dKS3RBXVhU4wC5NjAdKrmh84241gO9cA==}
|
|
5419
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
|
|
5420
5515
|
|
|
5421
5516
|
temp-dir@2.0.0:
|
|
5422
5517
|
resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
|
|
@@ -5693,6 +5788,7 @@ packages:
|
|
|
5693
5788
|
whatwg-encoding@2.0.0:
|
|
5694
5789
|
resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
|
|
5695
5790
|
engines: {node: '>=12'}
|
|
5791
|
+
deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation
|
|
5696
5792
|
|
|
5697
5793
|
whatwg-fetch@3.6.20:
|
|
5698
5794
|
resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==}
|
|
@@ -6640,7 +6736,7 @@ snapshots:
|
|
|
6640
6736
|
'@eslint/core': 0.17.0
|
|
6641
6737
|
levn: 0.4.1
|
|
6642
6738
|
|
|
6643
|
-
? '@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))'
|
|
6644
6740
|
: dependencies:
|
|
6645
6741
|
'@0no-co/graphql.web': 1.2.0
|
|
6646
6742
|
'@expo/code-signing-certificates': 0.0.6
|
|
@@ -6651,11 +6747,11 @@ snapshots:
|
|
|
6651
6747
|
'@expo/image-utils': 0.8.8
|
|
6652
6748
|
'@expo/json-file': 10.0.8
|
|
6653
6749
|
'@expo/metro': 54.2.0
|
|
6654
|
-
'@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))
|
|
6655
6751
|
'@expo/osascript': 2.3.8
|
|
6656
6752
|
'@expo/package-manager': 1.9.10
|
|
6657
6753
|
'@expo/plist': 0.4.8
|
|
6658
|
-
'@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))
|
|
6659
6755
|
'@expo/schema-utils': 0.1.8
|
|
6660
6756
|
'@expo/spawn-async': 1.7.2
|
|
6661
6757
|
'@expo/ws-tunnel': 1.0.6
|
|
@@ -6674,7 +6770,7 @@ snapshots:
|
|
|
6674
6770
|
connect: 3.7.0
|
|
6675
6771
|
debug: 4.4.3
|
|
6676
6772
|
env-editor: 0.4.2
|
|
6677
|
-
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)
|
|
6678
6774
|
expo-server: 1.0.5
|
|
6679
6775
|
freeport-async: 2.0.0
|
|
6680
6776
|
getenv: 2.0.0
|
|
@@ -6707,7 +6803,7 @@ snapshots:
|
|
|
6707
6803
|
wrap-ansi: 7.0.0
|
|
6708
6804
|
ws: 8.19.0
|
|
6709
6805
|
optionalDependencies:
|
|
6710
|
-
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)
|
|
6711
6807
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
6712
6808
|
transitivePeerDependencies:
|
|
6713
6809
|
- bufferutil
|
|
@@ -6816,7 +6912,7 @@ snapshots:
|
|
|
6816
6912
|
'@babel/code-frame': 7.10.4
|
|
6817
6913
|
json5: 2.2.3
|
|
6818
6914
|
|
|
6819
|
-
'@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))':
|
|
6820
6916
|
dependencies:
|
|
6821
6917
|
'@babel/code-frame': 7.28.6
|
|
6822
6918
|
'@babel/core': 7.28.6
|
|
@@ -6835,21 +6931,21 @@ snapshots:
|
|
|
6835
6931
|
glob: 13.0.0
|
|
6836
6932
|
hermes-parser: 0.29.1
|
|
6837
6933
|
jsc-safe-url: 0.2.4
|
|
6838
|
-
lightningcss: 1.
|
|
6934
|
+
lightningcss: 1.30.2
|
|
6839
6935
|
minimatch: 9.0.5
|
|
6840
6936
|
postcss: 8.4.49
|
|
6841
6937
|
resolve-from: 5.0.0
|
|
6842
6938
|
optionalDependencies:
|
|
6843
|
-
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)
|
|
6844
6940
|
transitivePeerDependencies:
|
|
6845
6941
|
- bufferutil
|
|
6846
6942
|
- supports-color
|
|
6847
6943
|
- utf-8-validate
|
|
6848
6944
|
|
|
6849
|
-
'@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)':
|
|
6850
6946
|
dependencies:
|
|
6851
6947
|
anser: 1.4.10
|
|
6852
|
-
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)
|
|
6853
6949
|
pretty-format: 29.7.0
|
|
6854
6950
|
react: 19.1.0
|
|
6855
6951
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
@@ -6899,7 +6995,7 @@ snapshots:
|
|
|
6899
6995
|
base64-js: 1.5.1
|
|
6900
6996
|
xmlbuilder: 15.1.1
|
|
6901
6997
|
|
|
6902
|
-
'@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))':
|
|
6903
6999
|
dependencies:
|
|
6904
7000
|
'@expo/config': 12.0.13
|
|
6905
7001
|
'@expo/config-plugins': 54.0.4
|
|
@@ -6908,7 +7004,7 @@ snapshots:
|
|
|
6908
7004
|
'@expo/json-file': 10.0.8
|
|
6909
7005
|
'@react-native/normalize-colors': 0.81.5
|
|
6910
7006
|
debug: 4.4.3
|
|
6911
|
-
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)
|
|
6912
7008
|
resolve-from: 5.0.0
|
|
6913
7009
|
semver: 7.7.3
|
|
6914
7010
|
xml2js: 0.6.0
|
|
@@ -6925,9 +7021,9 @@ snapshots:
|
|
|
6925
7021
|
|
|
6926
7022
|
'@expo/sudo-prompt@9.3.2': {}
|
|
6927
7023
|
|
|
6928
|
-
'@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)':
|
|
6929
7025
|
dependencies:
|
|
6930
|
-
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)
|
|
6931
7027
|
react: 19.1.0
|
|
6932
7028
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
6933
7029
|
|
|
@@ -7394,22 +7490,22 @@ snapshots:
|
|
|
7394
7490
|
merge-options: 3.0.4
|
|
7395
7491
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
7396
7492
|
|
|
7397
|
-
'@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)':
|
|
7398
7494
|
dependencies:
|
|
7399
7495
|
invariant: 2.2.4
|
|
7400
7496
|
react: 19.1.0
|
|
7401
7497
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
7402
7498
|
optionalDependencies:
|
|
7403
|
-
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)
|
|
7404
7500
|
|
|
7405
|
-
'@react-native-community/slider@5.1
|
|
7501
|
+
'@react-native-community/slider@5.0.1': {}
|
|
7406
7502
|
|
|
7407
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)':
|
|
7408
7504
|
dependencies:
|
|
7409
7505
|
react: 19.1.0
|
|
7410
7506
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
7411
7507
|
|
|
7412
|
-
'@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)':
|
|
7413
7509
|
dependencies:
|
|
7414
7510
|
react: 19.1.0
|
|
7415
7511
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
@@ -7612,6 +7708,44 @@ snapshots:
|
|
|
7612
7708
|
dependencies:
|
|
7613
7709
|
'@sinonjs/commons': 3.0.1
|
|
7614
7710
|
|
|
7711
|
+
'@supabase/auth-js@2.95.3':
|
|
7712
|
+
dependencies:
|
|
7713
|
+
tslib: 2.8.1
|
|
7714
|
+
|
|
7715
|
+
'@supabase/functions-js@2.95.3':
|
|
7716
|
+
dependencies:
|
|
7717
|
+
tslib: 2.8.1
|
|
7718
|
+
|
|
7719
|
+
'@supabase/postgrest-js@2.95.3':
|
|
7720
|
+
dependencies:
|
|
7721
|
+
tslib: 2.8.1
|
|
7722
|
+
|
|
7723
|
+
'@supabase/realtime-js@2.95.3':
|
|
7724
|
+
dependencies:
|
|
7725
|
+
'@types/phoenix': 1.6.7
|
|
7726
|
+
'@types/ws': 8.18.1
|
|
7727
|
+
tslib: 2.8.1
|
|
7728
|
+
ws: 8.19.0
|
|
7729
|
+
transitivePeerDependencies:
|
|
7730
|
+
- bufferutil
|
|
7731
|
+
- utf-8-validate
|
|
7732
|
+
|
|
7733
|
+
'@supabase/storage-js@2.95.3':
|
|
7734
|
+
dependencies:
|
|
7735
|
+
iceberg-js: 0.8.1
|
|
7736
|
+
tslib: 2.8.1
|
|
7737
|
+
|
|
7738
|
+
'@supabase/supabase-js@2.95.3':
|
|
7739
|
+
dependencies:
|
|
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
|
|
7748
|
+
|
|
7615
7749
|
'@tootallnate/once@2.0.0': {}
|
|
7616
7750
|
|
|
7617
7751
|
'@tybys/wasm-util@0.10.1':
|
|
@@ -7723,6 +7857,8 @@ snapshots:
|
|
|
7723
7857
|
pg-protocol: 1.11.0
|
|
7724
7858
|
pg-types: 2.2.0
|
|
7725
7859
|
|
|
7860
|
+
'@types/phoenix@1.6.7': {}
|
|
7861
|
+
|
|
7726
7862
|
'@types/qs@6.14.0': {}
|
|
7727
7863
|
|
|
7728
7864
|
'@types/range-parser@1.2.7': {}
|
|
@@ -7750,6 +7886,10 @@ snapshots:
|
|
|
7750
7886
|
|
|
7751
7887
|
'@types/uuid@10.0.0': {}
|
|
7752
7888
|
|
|
7889
|
+
'@types/ws@8.18.1':
|
|
7890
|
+
dependencies:
|
|
7891
|
+
'@types/node': 25.0.10
|
|
7892
|
+
|
|
7753
7893
|
'@types/yargs-parser@21.0.3': {}
|
|
7754
7894
|
|
|
7755
7895
|
'@types/yargs@17.0.35':
|
|
@@ -8232,7 +8372,7 @@ snapshots:
|
|
|
8232
8372
|
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.6)
|
|
8233
8373
|
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.6)
|
|
8234
8374
|
|
|
8235
|
-
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):
|
|
8236
8376
|
dependencies:
|
|
8237
8377
|
'@babel/helper-module-imports': 7.28.6
|
|
8238
8378
|
'@babel/plugin-proposal-decorators': 7.28.6(@babel/core@7.28.6)
|
|
@@ -8259,7 +8399,7 @@ snapshots:
|
|
|
8259
8399
|
resolve-from: 5.0.0
|
|
8260
8400
|
optionalDependencies:
|
|
8261
8401
|
'@babel/runtime': 7.28.6
|
|
8262
|
-
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)
|
|
8263
8403
|
transitivePeerDependencies:
|
|
8264
8404
|
- '@babel/core'
|
|
8265
8405
|
- supports-color
|
|
@@ -8555,19 +8695,22 @@ snapshots:
|
|
|
8555
8695
|
path-type: 4.0.0
|
|
8556
8696
|
yaml: 1.10.2
|
|
8557
8697
|
|
|
8558
|
-
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):
|
|
8559
8699
|
dependencies:
|
|
8560
8700
|
'@langchain/core': 1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6))
|
|
8561
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
|
|
8562
8703
|
axios: 1.13.3
|
|
8563
|
-
pg: 8.
|
|
8704
|
+
pg: 8.17.2
|
|
8564
8705
|
transitivePeerDependencies:
|
|
8565
8706
|
- '@opentelemetry/api'
|
|
8566
8707
|
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
8567
8708
|
- '@opentelemetry/sdk-trace-base'
|
|
8709
|
+
- bufferutil
|
|
8568
8710
|
- debug
|
|
8569
8711
|
- openai
|
|
8570
8712
|
- pg-native
|
|
8713
|
+
- utf-8-validate
|
|
8571
8714
|
- ws
|
|
8572
8715
|
|
|
8573
8716
|
create-jest@29.7.0(@types/node@25.0.10):
|
|
@@ -8776,6 +8919,8 @@ snapshots:
|
|
|
8776
8919
|
|
|
8777
8920
|
dotenv@16.4.7: {}
|
|
8778
8921
|
|
|
8922
|
+
dotenv@17.2.4: {}
|
|
8923
|
+
|
|
8779
8924
|
drizzle-kit@0.31.8:
|
|
8780
8925
|
dependencies:
|
|
8781
8926
|
'@drizzle-team/brocli': 0.10.2
|
|
@@ -9204,27 +9349,27 @@ snapshots:
|
|
|
9204
9349
|
jest-message-util: 29.7.0
|
|
9205
9350
|
jest-util: 29.7.0
|
|
9206
9351
|
|
|
9207
|
-
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)):
|
|
9208
9353
|
dependencies:
|
|
9209
|
-
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)
|
|
9210
9355
|
|
|
9211
|
-
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):
|
|
9212
9357
|
dependencies:
|
|
9213
9358
|
'@expo/image-utils': 0.8.8
|
|
9214
|
-
expo: 54.0.
|
|
9215
|
-
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))
|
|
9216
9361
|
react: 19.1.0
|
|
9217
9362
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
9218
9363
|
transitivePeerDependencies:
|
|
9219
9364
|
- supports-color
|
|
9220
9365
|
|
|
9221
|
-
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):
|
|
9222
9367
|
dependencies:
|
|
9223
|
-
expo-application: 7.0.8(expo@54.0.
|
|
9224
|
-
expo-constants: 18.0.13(expo@54.0.
|
|
9225
|
-
expo-crypto: 15.0.8(expo@54.0.
|
|
9226
|
-
expo-linking: 8.0.11(expo@54.0.
|
|
9227
|
-
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))
|
|
9228
9373
|
invariant: 2.2.4
|
|
9229
9374
|
react: 19.1.0
|
|
9230
9375
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
@@ -9232,90 +9377,90 @@ snapshots:
|
|
|
9232
9377
|
- expo
|
|
9233
9378
|
- supports-color
|
|
9234
9379
|
|
|
9235
|
-
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):
|
|
9236
9381
|
dependencies:
|
|
9237
|
-
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)
|
|
9238
9383
|
react: 19.1.0
|
|
9239
9384
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
9240
9385
|
optionalDependencies:
|
|
9241
9386
|
react-native-web: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
|
9242
9387
|
|
|
9243
|
-
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):
|
|
9244
9389
|
dependencies:
|
|
9245
|
-
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)
|
|
9246
9391
|
react: 19.1.0
|
|
9247
9392
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
9248
9393
|
|
|
9249
|
-
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):
|
|
9250
9395
|
dependencies:
|
|
9251
|
-
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)
|
|
9252
9397
|
invariant: 2.2.4
|
|
9253
9398
|
react: 19.1.0
|
|
9254
9399
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
9255
9400
|
optionalDependencies:
|
|
9256
9401
|
react-native-web: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
|
9257
9402
|
|
|
9258
|
-
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)):
|
|
9259
9404
|
dependencies:
|
|
9260
9405
|
'@expo/config': 12.0.13
|
|
9261
9406
|
'@expo/env': 2.0.8
|
|
9262
|
-
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)
|
|
9263
9408
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
9264
9409
|
transitivePeerDependencies:
|
|
9265
9410
|
- supports-color
|
|
9266
9411
|
|
|
9267
|
-
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)):
|
|
9268
9413
|
dependencies:
|
|
9269
9414
|
base64-js: 1.5.1
|
|
9270
|
-
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)
|
|
9271
9416
|
|
|
9272
|
-
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)):
|
|
9273
9418
|
dependencies:
|
|
9274
|
-
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)
|
|
9275
9420
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
9276
9421
|
|
|
9277
|
-
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):
|
|
9278
9423
|
dependencies:
|
|
9279
|
-
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)
|
|
9280
9425
|
fontfaceobserver: 2.3.0
|
|
9281
9426
|
react: 19.1.0
|
|
9282
9427
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
9283
9428
|
|
|
9284
|
-
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)):
|
|
9285
9430
|
dependencies:
|
|
9286
|
-
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)
|
|
9287
9432
|
|
|
9288
|
-
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)):
|
|
9289
9434
|
dependencies:
|
|
9290
|
-
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)
|
|
9291
9436
|
|
|
9292
|
-
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)):
|
|
9293
9438
|
dependencies:
|
|
9294
|
-
expo: 54.0.
|
|
9295
|
-
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))
|
|
9296
9441
|
|
|
9297
|
-
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):
|
|
9298
9443
|
dependencies:
|
|
9299
|
-
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)
|
|
9300
9445
|
react: 19.1.0
|
|
9301
9446
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
9302
9447
|
optionalDependencies:
|
|
9303
9448
|
react-native-web: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
|
9304
9449
|
|
|
9305
|
-
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):
|
|
9306
9451
|
dependencies:
|
|
9307
|
-
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)
|
|
9308
9453
|
react: 19.1.0
|
|
9309
9454
|
|
|
9310
|
-
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):
|
|
9311
9456
|
dependencies:
|
|
9312
|
-
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)
|
|
9313
9458
|
react: 19.1.0
|
|
9314
9459
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
9315
9460
|
|
|
9316
|
-
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):
|
|
9317
9462
|
dependencies:
|
|
9318
|
-
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))
|
|
9319
9464
|
invariant: 2.2.4
|
|
9320
9465
|
react: 19.1.0
|
|
9321
9466
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
@@ -9323,9 +9468,9 @@ snapshots:
|
|
|
9323
9468
|
- expo
|
|
9324
9469
|
- supports-color
|
|
9325
9470
|
|
|
9326
|
-
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)):
|
|
9327
9472
|
dependencies:
|
|
9328
|
-
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)
|
|
9329
9474
|
|
|
9330
9475
|
expo-modules-autolinking@3.0.24:
|
|
9331
9476
|
dependencies:
|
|
@@ -9341,9 +9486,9 @@ snapshots:
|
|
|
9341
9486
|
react: 19.1.0
|
|
9342
9487
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
9343
9488
|
|
|
9344
|
-
? 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)
|
|
9345
9490
|
: dependencies:
|
|
9346
|
-
'@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)
|
|
9347
9492
|
'@expo/schema-utils': 0.1.8
|
|
9348
9493
|
'@radix-ui/react-slot': 1.2.0(@types/react@19.1.17)(react@19.1.0)
|
|
9349
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)
|
|
@@ -9353,9 +9498,9 @@ snapshots:
|
|
|
9353
9498
|
client-only: 0.0.1
|
|
9354
9499
|
debug: 4.4.3
|
|
9355
9500
|
escape-string-regexp: 4.0.0
|
|
9356
|
-
expo: 54.0.
|
|
9357
|
-
expo-constants: 18.0.13(expo@54.0.
|
|
9358
|
-
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)
|
|
9359
9504
|
expo-server: 1.0.5
|
|
9360
9505
|
fast-deep-equal: 3.1.3
|
|
9361
9506
|
invariant: 2.2.4
|
|
@@ -9386,10 +9531,10 @@ snapshots:
|
|
|
9386
9531
|
|
|
9387
9532
|
expo-server@1.0.5: {}
|
|
9388
9533
|
|
|
9389
|
-
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)):
|
|
9390
9535
|
dependencies:
|
|
9391
|
-
'@expo/prebuild-config': 54.0.8(expo@54.0.
|
|
9392
|
-
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)
|
|
9393
9538
|
transitivePeerDependencies:
|
|
9394
9539
|
- supports-color
|
|
9395
9540
|
|
|
@@ -9399,46 +9544,46 @@ snapshots:
|
|
|
9399
9544
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
9400
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)
|
|
9401
9546
|
|
|
9402
|
-
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)):
|
|
9403
9548
|
dependencies:
|
|
9404
|
-
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)
|
|
9405
9550
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
9406
9551
|
sf-symbols-typescript: 2.2.0
|
|
9407
9552
|
|
|
9408
|
-
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)):
|
|
9409
9554
|
dependencies:
|
|
9410
9555
|
'@react-native/normalize-colors': 0.81.5
|
|
9411
9556
|
debug: 4.4.3
|
|
9412
|
-
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)
|
|
9413
9558
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
9414
9559
|
optionalDependencies:
|
|
9415
9560
|
react-native-web: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
|
9416
9561
|
transitivePeerDependencies:
|
|
9417
9562
|
- supports-color
|
|
9418
9563
|
|
|
9419
|
-
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)):
|
|
9420
9565
|
dependencies:
|
|
9421
|
-
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)
|
|
9422
9567
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
9423
9568
|
|
|
9424
|
-
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):
|
|
9425
9570
|
dependencies:
|
|
9426
9571
|
'@babel/runtime': 7.28.6
|
|
9427
|
-
'@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))
|
|
9428
9573
|
'@expo/config': 12.0.13
|
|
9429
9574
|
'@expo/config-plugins': 54.0.4
|
|
9430
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)
|
|
9431
9576
|
'@expo/fingerprint': 0.15.4
|
|
9432
9577
|
'@expo/metro': 54.2.0
|
|
9433
|
-
'@expo/metro-config': 54.0.14(expo@54.0.
|
|
9434
|
-
'@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)
|
|
9435
9580
|
'@ungap/structured-clone': 1.3.0
|
|
9436
|
-
babel-preset-expo: 54.0.10(@babel/core@7.28.6)(@babel/runtime@7.28.6)(expo@54.0.
|
|
9437
|
-
expo-asset: 12.0.12(expo@54.0.
|
|
9438
|
-
expo-constants: 18.0.13(expo@54.0.
|
|
9439
|
-
expo-file-system: 19.0.21(expo@54.0.
|
|
9440
|
-
expo-font: 14.0.11(expo@54.0.
|
|
9441
|
-
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)
|
|
9442
9587
|
expo-modules-autolinking: 3.0.24
|
|
9443
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)
|
|
9444
9589
|
pretty-format: 29.7.0
|
|
@@ -9447,7 +9592,7 @@ snapshots:
|
|
|
9447
9592
|
react-refresh: 0.14.2
|
|
9448
9593
|
whatwg-url-without-unicode: 8.0.0-3
|
|
9449
9594
|
optionalDependencies:
|
|
9450
|
-
'@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)
|
|
9451
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)
|
|
9452
9597
|
transitivePeerDependencies:
|
|
9453
9598
|
- '@babel/core'
|
|
@@ -9845,6 +9990,8 @@ snapshots:
|
|
|
9845
9990
|
|
|
9846
9991
|
hyphenate-style-name@1.1.0: {}
|
|
9847
9992
|
|
|
9993
|
+
iceberg-js@0.8.1: {}
|
|
9994
|
+
|
|
9848
9995
|
iconv-lite@0.4.24:
|
|
9849
9996
|
dependencies:
|
|
9850
9997
|
safer-buffer: 2.1.2
|
|
@@ -10214,14 +10361,14 @@ snapshots:
|
|
|
10214
10361
|
jest-mock: 29.7.0
|
|
10215
10362
|
jest-util: 29.7.0
|
|
10216
10363
|
|
|
10217
|
-
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):
|
|
10218
10365
|
dependencies:
|
|
10219
10366
|
'@expo/config': 12.0.13
|
|
10220
10367
|
'@expo/json-file': 10.0.8
|
|
10221
10368
|
'@jest/create-cache-key-function': 29.7.0
|
|
10222
10369
|
'@jest/globals': 29.7.0
|
|
10223
10370
|
babel-jest: 29.7.0(@babel/core@7.28.6)
|
|
10224
|
-
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)
|
|
10225
10372
|
jest-environment-jsdom: 29.7.0
|
|
10226
10373
|
jest-snapshot: 29.7.0
|
|
10227
10374
|
jest-watch-select-projects: 2.0.0
|
|
@@ -10569,9 +10716,54 @@ snapshots:
|
|
|
10569
10716
|
transitivePeerDependencies:
|
|
10570
10717
|
- supports-color
|
|
10571
10718
|
|
|
10572
|
-
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:
|
|
10573
10753
|
dependencies:
|
|
10574
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
|
|
10575
10767
|
|
|
10576
10768
|
lines-and-columns@1.2.4: {}
|
|
10577
10769
|
|
|
@@ -11139,23 +11331,14 @@ snapshots:
|
|
|
11139
11331
|
|
|
11140
11332
|
paths-js@0.4.11: {}
|
|
11141
11333
|
|
|
11142
|
-
pg-cloudflare@1.2.7:
|
|
11143
|
-
optional: true
|
|
11144
|
-
|
|
11145
11334
|
pg-connection-string@2.10.1: {}
|
|
11146
11335
|
|
|
11147
11336
|
pg-int8@1.0.1: {}
|
|
11148
11337
|
|
|
11149
|
-
pg-pool@3.10.1(pg@8.16.3):
|
|
11150
|
-
dependencies:
|
|
11151
|
-
pg: 8.16.3
|
|
11152
|
-
|
|
11153
11338
|
pg-pool@3.11.0(pg@8.17.2):
|
|
11154
11339
|
dependencies:
|
|
11155
11340
|
pg: 8.17.2
|
|
11156
11341
|
|
|
11157
|
-
pg-protocol@1.10.3: {}
|
|
11158
|
-
|
|
11159
11342
|
pg-protocol@1.11.0: {}
|
|
11160
11343
|
|
|
11161
11344
|
pg-types@2.2.0:
|
|
@@ -11166,16 +11349,6 @@ snapshots:
|
|
|
11166
11349
|
postgres-date: 1.0.7
|
|
11167
11350
|
postgres-interval: 1.2.0
|
|
11168
11351
|
|
|
11169
|
-
pg@8.16.3:
|
|
11170
|
-
dependencies:
|
|
11171
|
-
pg-connection-string: 2.10.1
|
|
11172
|
-
pg-pool: 3.10.1(pg@8.16.3)
|
|
11173
|
-
pg-protocol: 1.10.3
|
|
11174
|
-
pg-types: 2.2.0
|
|
11175
|
-
pgpass: 1.0.5
|
|
11176
|
-
optionalDependencies:
|
|
11177
|
-
pg-cloudflare: 1.2.7
|
|
11178
|
-
|
|
11179
11352
|
pg@8.17.2:
|
|
11180
11353
|
dependencies:
|
|
11181
11354
|
pg-connection-string: 2.10.1
|
|
@@ -11354,14 +11527,14 @@ snapshots:
|
|
|
11354
11527
|
|
|
11355
11528
|
react-is@19.2.3: {}
|
|
11356
11529
|
|
|
11357
|
-
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):
|
|
11358
11531
|
dependencies:
|
|
11359
11532
|
lodash: 4.17.23
|
|
11360
11533
|
paths-js: 0.4.11
|
|
11361
11534
|
point-in-polygon: 1.1.0
|
|
11362
11535
|
react: 19.1.0
|
|
11363
11536
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
11364
|
-
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)
|
|
11365
11538
|
|
|
11366
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):
|
|
11367
11540
|
dependencies:
|
|
@@ -11386,9 +11559,9 @@ snapshots:
|
|
|
11386
11559
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
11387
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))
|
|
11388
11561
|
|
|
11389
|
-
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)):
|
|
11390
11563
|
dependencies:
|
|
11391
|
-
'@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)
|
|
11392
11565
|
prop-types: 15.8.1
|
|
11393
11566
|
react-native: 0.81.5(@babel/core@7.28.6)(@types/react@19.1.17)(react@19.1.0)
|
|
11394
11567
|
|
|
@@ -11414,7 +11587,7 @@ snapshots:
|
|
|
11414
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)
|
|
11415
11588
|
warn-once: 0.1.1
|
|
11416
11589
|
|
|
11417
|
-
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):
|
|
11418
11591
|
dependencies:
|
|
11419
11592
|
css-select: 5.2.2
|
|
11420
11593
|
css-tree: 1.1.3
|