@coze-arch/cli 0.0.1-alpha.e8683e → 0.0.1-alpha.e9ff73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +25 -16
- package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +9 -8
- package/lib/__templates__/expo/README.md +2 -2
- package/lib/__templates__/expo/client/app/+not-found.tsx +30 -0
- package/lib/__templates__/expo/client/app.config.ts +2 -2
- package/lib/__templates__/expo/client/eslint.config.mjs +17 -1
- package/lib/__templates__/expo/client/hooks/useSafeRouter.ts +152 -0
- package/lib/__templates__/expo/client/metro.config.js +3 -0
- package/lib/__templates__/expo/client/package.json +36 -34
- package/lib/__templates__/expo/client/screens/demo/index.tsx +3 -3
- package/lib/__templates__/expo/eslint-plugins/react-native/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/react-native/rule.js +64 -0
- package/lib/__templates__/expo/package.json +3 -0
- package/lib/__templates__/expo/patches/expo@54.0.33.patch +45 -0
- package/lib/__templates__/expo/pnpm-lock.yaml +1318 -2636
- 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/_gitignore +3 -0
- package/lib/__templates__/nextjs/next.config.ts +1 -1
- package/lib/__templates__/nextjs/package.json +4 -1
- package/lib/__templates__/nextjs/pnpm-lock.yaml +1066 -926
- package/lib/__templates__/nextjs/scripts/build.sh +4 -1
- package/lib/__templates__/nextjs/scripts/dev.sh +1 -1
- package/lib/__templates__/nextjs/scripts/start.sh +1 -1
- package/lib/__templates__/nextjs/server.ts +35 -0
- package/lib/__templates__/nextjs/src/app/page.tsx +18 -60
- package/lib/__templates__/nextjs/template.config.js +49 -14
- package/lib/__templates__/nuxt-app/.coze +12 -0
- package/lib/__templates__/nuxt-app/.nuxt/app.config.mjs +21 -0
- package/lib/__templates__/nuxt-app/.nuxt/components.d.ts +64 -0
- package/lib/__templates__/nuxt-app/.nuxt/imports.d.ts +31 -0
- package/lib/__templates__/nuxt-app/.nuxt/manifest/meta/f97812ec-f25e-427b-b45d-eab58fba39f9.json +1 -0
- package/lib/__templates__/nuxt-app/.nuxt/nuxt.d.ts +19 -0
- package/lib/__templates__/nuxt-app/.nuxt/nuxt.node.d.ts +14 -0
- package/lib/__templates__/nuxt-app/.nuxt/nuxt.shared.d.ts +6 -0
- package/lib/__templates__/nuxt-app/.nuxt/schema/nuxt.schema.d.ts +17 -0
- package/lib/__templates__/nuxt-app/.nuxt/schema/nuxt.schema.json +3 -0
- package/lib/__templates__/nuxt-app/.nuxt/tsconfig.app.json +201 -0
- package/lib/__templates__/nuxt-app/.nuxt/tsconfig.json +203 -0
- package/lib/__templates__/nuxt-app/.nuxt/tsconfig.node.json +110 -0
- package/lib/__templates__/nuxt-app/.nuxt/tsconfig.server.json +140 -0
- package/lib/__templates__/nuxt-app/.nuxt/tsconfig.shared.json +152 -0
- package/lib/__templates__/nuxt-app/.nuxt/types/app.config.d.ts +35 -0
- package/lib/__templates__/nuxt-app/.nuxt/types/build.d.ts +24 -0
- package/lib/__templates__/nuxt-app/.nuxt/types/builder-env.d.ts +1 -0
- package/lib/__templates__/nuxt-app/.nuxt/types/components.d.ts +69 -0
- package/lib/__templates__/nuxt-app/.nuxt/types/imports.d.ts +360 -0
- package/lib/__templates__/nuxt-app/.nuxt/types/middleware.d.ts +11 -0
- package/lib/__templates__/nuxt-app/.nuxt/types/modules.d.ts +79 -0
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro-config.d.ts +14 -0
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro-imports.d.ts +151 -0
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro-layouts.d.ts +17 -0
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro-nuxt.d.ts +64 -0
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro-routes.d.ts +17 -0
- package/lib/__templates__/nuxt-app/.nuxt/types/nitro.d.ts +3 -0
- package/lib/__templates__/nuxt-app/.nuxt/types/plugins.d.ts +30 -0
- package/lib/__templates__/nuxt-app/.nuxt/types/runtime-config.d.ts +32 -0
- package/lib/__templates__/nuxt-app/.nuxt/types/shared-imports.d.ts +10 -0
- package/lib/__templates__/nuxt-app/.nuxt/types/vue-shim.d.ts +0 -0
- package/lib/__templates__/nuxt-app/README.md +83 -0
- package/lib/__templates__/nuxt-app/_gitignore +24 -0
- package/lib/__templates__/nuxt-app/_npmrc +23 -0
- package/lib/__templates__/nuxt-app/app/app.vue +193 -0
- package/lib/__templates__/nuxt-app/nuxt.config.ts +56 -0
- package/lib/__templates__/nuxt-app/package.json +28 -0
- package/lib/__templates__/nuxt-app/pnpm-lock.yaml +7202 -0
- package/lib/__templates__/nuxt-app/public/favicon.ico +0 -0
- package/lib/__templates__/nuxt-app/public/robots.txt +2 -0
- package/lib/__templates__/nuxt-app/scripts/build.sh +14 -0
- package/lib/__templates__/nuxt-app/scripts/dev.sh +33 -0
- package/lib/__templates__/nuxt-app/scripts/prepare.sh +14 -0
- package/lib/__templates__/nuxt-app/scripts/start.sh +15 -0
- package/lib/__templates__/nuxt-app/template.config.js +78 -0
- package/lib/__templates__/nuxt-app/tsconfig.json +18 -0
- package/lib/__templates__/taro/.coze +14 -0
- package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.sh +19 -0
- package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.sh +14 -0
- package/lib/__templates__/taro/.cozeproj/scripts/dev_build.sh +2 -0
- package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +151 -0
- package/lib/__templates__/taro/.cozeproj/scripts/init_env.sh +5 -0
- package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +24 -0
- package/lib/__templates__/taro/README.md +751 -0
- package/lib/__templates__/taro/_gitignore +40 -0
- package/lib/__templates__/taro/_npmrc +18 -0
- package/lib/__templates__/taro/babel.config.js +12 -0
- package/lib/__templates__/taro/config/dev.ts +9 -0
- package/lib/__templates__/taro/config/index.ts +223 -0
- package/lib/__templates__/taro/config/prod.ts +34 -0
- package/lib/__templates__/taro/eslint.config.mjs +80 -0
- package/lib/__templates__/taro/key/private.appid.key +0 -0
- package/lib/__templates__/taro/package.json +107 -0
- package/lib/__templates__/taro/patches/@tarojs__plugin-mini-ci@4.1.9.patch +30 -0
- package/lib/__templates__/taro/pnpm-lock.yaml +23100 -0
- package/lib/__templates__/taro/pnpm-workspace.yaml +2 -0
- package/lib/__templates__/taro/project.config.json +15 -0
- package/lib/__templates__/taro/server/nest-cli.json +10 -0
- package/lib/__templates__/taro/server/package.json +40 -0
- package/lib/__templates__/taro/server/src/app.controller.ts +23 -0
- package/lib/__templates__/taro/server/src/app.module.ts +10 -0
- package/lib/__templates__/taro/server/src/app.service.ts +8 -0
- package/lib/__templates__/taro/server/src/interceptors/http-status.interceptor.ts +23 -0
- package/lib/__templates__/taro/server/src/main.ts +49 -0
- package/lib/__templates__/taro/server/tsconfig.json +24 -0
- package/lib/__templates__/taro/src/app.config.ts +11 -0
- package/lib/__templates__/taro/src/app.css +52 -0
- package/lib/__templates__/taro/src/app.tsx +9 -0
- package/lib/__templates__/taro/src/index.html +39 -0
- package/lib/__templates__/taro/src/network.ts +39 -0
- package/lib/__templates__/taro/src/pages/index/index.config.ts +3 -0
- package/lib/__templates__/taro/src/pages/index/index.css +1 -0
- package/lib/__templates__/taro/src/pages/index/index.tsx +33 -0
- package/lib/__templates__/taro/src/presets/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 +201 -0
- package/lib/__templates__/taro/src/presets/h5-styles.ts +142 -0
- package/lib/__templates__/taro/src/presets/index.tsx +18 -0
- package/lib/__templates__/taro/stylelint.config.mjs +4 -0
- package/lib/__templates__/taro/template.config.js +68 -0
- package/lib/__templates__/taro/tsconfig.json +29 -0
- package/lib/__templates__/taro/types/global.d.ts +32 -0
- package/lib/__templates__/templates.json +68 -0
- package/lib/__templates__/vite/package.json +5 -1
- package/lib/__templates__/vite/pnpm-lock.yaml +146 -1659
- package/lib/__templates__/vite/src/main.ts +17 -47
- package/lib/__templates__/vite/template.config.js +49 -14
- package/lib/__templates__/vite/vite.config.ts +1 -0
- package/lib/cli.js +617 -128
- package/package.json +2 -1
|
@@ -13,91 +13,94 @@ importers:
|
|
|
13
13
|
dependencies:
|
|
14
14
|
'@aws-sdk/client-s3':
|
|
15
15
|
specifier: ^3.958.0
|
|
16
|
-
version: 3.
|
|
16
|
+
version: 3.975.0
|
|
17
17
|
'@aws-sdk/lib-storage':
|
|
18
18
|
specifier: ^3.958.0
|
|
19
|
-
version: 3.
|
|
19
|
+
version: 3.975.0(@aws-sdk/client-s3@3.975.0)
|
|
20
20
|
'@hookform/resolvers':
|
|
21
21
|
specifier: ^5.2.2
|
|
22
22
|
version: 5.2.2(react-hook-form@7.71.1(react@19.2.3))
|
|
23
23
|
'@radix-ui/react-accordion':
|
|
24
24
|
specifier: ^1.2.12
|
|
25
|
-
version: 1.2.12(@types/react-dom@19.2.3(@types/react@19.2.
|
|
25
|
+
version: 1.2.12(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
26
26
|
'@radix-ui/react-alert-dialog':
|
|
27
27
|
specifier: ^1.1.15
|
|
28
|
-
version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.
|
|
28
|
+
version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
29
29
|
'@radix-ui/react-aspect-ratio':
|
|
30
30
|
specifier: ^1.1.8
|
|
31
|
-
version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
31
|
+
version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
32
32
|
'@radix-ui/react-avatar':
|
|
33
33
|
specifier: ^1.1.11
|
|
34
|
-
version: 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
34
|
+
version: 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
35
35
|
'@radix-ui/react-checkbox':
|
|
36
36
|
specifier: ^1.3.3
|
|
37
|
-
version: 1.3.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
37
|
+
version: 1.3.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
38
38
|
'@radix-ui/react-collapsible':
|
|
39
39
|
specifier: ^1.1.12
|
|
40
|
-
version: 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.
|
|
40
|
+
version: 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
41
41
|
'@radix-ui/react-context-menu':
|
|
42
42
|
specifier: ^2.2.16
|
|
43
|
-
version: 2.2.16(@types/react-dom@19.2.3(@types/react@19.2.
|
|
43
|
+
version: 2.2.16(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
44
44
|
'@radix-ui/react-dialog':
|
|
45
45
|
specifier: ^1.1.15
|
|
46
|
-
version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.
|
|
46
|
+
version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
47
47
|
'@radix-ui/react-dropdown-menu':
|
|
48
48
|
specifier: ^2.1.16
|
|
49
|
-
version: 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.
|
|
49
|
+
version: 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
50
50
|
'@radix-ui/react-hover-card':
|
|
51
51
|
specifier: ^1.1.15
|
|
52
|
-
version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.
|
|
52
|
+
version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
53
53
|
'@radix-ui/react-label':
|
|
54
54
|
specifier: ^2.1.8
|
|
55
|
-
version: 2.1.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
55
|
+
version: 2.1.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
56
56
|
'@radix-ui/react-menubar':
|
|
57
57
|
specifier: ^1.1.16
|
|
58
|
-
version: 1.1.16(@types/react-dom@19.2.3(@types/react@19.2.
|
|
58
|
+
version: 1.1.16(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
59
59
|
'@radix-ui/react-navigation-menu':
|
|
60
60
|
specifier: ^1.2.14
|
|
61
|
-
version: 1.2.14(@types/react-dom@19.2.3(@types/react@19.2.
|
|
61
|
+
version: 1.2.14(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
62
62
|
'@radix-ui/react-popover':
|
|
63
63
|
specifier: ^1.1.15
|
|
64
|
-
version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.
|
|
64
|
+
version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
65
65
|
'@radix-ui/react-progress':
|
|
66
66
|
specifier: ^1.1.8
|
|
67
|
-
version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
67
|
+
version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
68
68
|
'@radix-ui/react-radio-group':
|
|
69
69
|
specifier: ^1.3.8
|
|
70
|
-
version: 1.3.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
70
|
+
version: 1.3.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
71
71
|
'@radix-ui/react-scroll-area':
|
|
72
72
|
specifier: ^1.2.10
|
|
73
|
-
version: 1.2.10(@types/react-dom@19.2.3(@types/react@19.2.
|
|
73
|
+
version: 1.2.10(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
74
74
|
'@radix-ui/react-select':
|
|
75
75
|
specifier: ^2.2.6
|
|
76
|
-
version: 2.2.6(@types/react-dom@19.2.3(@types/react@19.2.
|
|
76
|
+
version: 2.2.6(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
77
77
|
'@radix-ui/react-separator':
|
|
78
78
|
specifier: ^1.1.8
|
|
79
|
-
version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
79
|
+
version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
80
80
|
'@radix-ui/react-slider':
|
|
81
81
|
specifier: ^1.3.6
|
|
82
|
-
version: 1.3.6(@types/react-dom@19.2.3(@types/react@19.2.
|
|
82
|
+
version: 1.3.6(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
83
83
|
'@radix-ui/react-slot':
|
|
84
84
|
specifier: ^1.2.4
|
|
85
|
-
version: 1.2.4(@types/react@19.2.
|
|
85
|
+
version: 1.2.4(@types/react@19.2.10)(react@19.2.3)
|
|
86
86
|
'@radix-ui/react-switch':
|
|
87
87
|
specifier: ^1.2.6
|
|
88
|
-
version: 1.2.6(@types/react-dom@19.2.3(@types/react@19.2.
|
|
88
|
+
version: 1.2.6(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
89
89
|
'@radix-ui/react-tabs':
|
|
90
90
|
specifier: ^1.1.13
|
|
91
|
-
version: 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.
|
|
91
|
+
version: 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
92
92
|
'@radix-ui/react-toggle':
|
|
93
93
|
specifier: ^1.1.10
|
|
94
|
-
version: 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.
|
|
94
|
+
version: 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
95
95
|
'@radix-ui/react-toggle-group':
|
|
96
96
|
specifier: ^1.1.11
|
|
97
|
-
version: 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
97
|
+
version: 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
98
98
|
'@radix-ui/react-tooltip':
|
|
99
99
|
specifier: ^1.2.8
|
|
100
|
-
version: 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
100
|
+
version: 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
101
|
+
'@supabase/supabase-js':
|
|
102
|
+
specifier: 2.95.3
|
|
103
|
+
version: 2.95.3
|
|
101
104
|
class-variance-authority:
|
|
102
105
|
specifier: ^0.7.1
|
|
103
106
|
version: 0.7.1
|
|
@@ -106,13 +109,16 @@ importers:
|
|
|
106
109
|
version: 2.1.1
|
|
107
110
|
cmdk:
|
|
108
111
|
specifier: ^1.1.1
|
|
109
|
-
version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.
|
|
112
|
+
version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
110
113
|
coze-coding-dev-sdk:
|
|
111
|
-
specifier: ^0.7.
|
|
112
|
-
version: 0.7.
|
|
114
|
+
specifier: ^0.7.16
|
|
115
|
+
version: 0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.6))(ws@8.19.0)
|
|
113
116
|
date-fns:
|
|
114
117
|
specifier: ^4.1.0
|
|
115
118
|
version: 4.1.0
|
|
119
|
+
dotenv:
|
|
120
|
+
specifier: ^17.2.3
|
|
121
|
+
version: 17.2.3
|
|
116
122
|
drizzle-kit:
|
|
117
123
|
specifier: ^0.31.8
|
|
118
124
|
version: 0.31.8
|
|
@@ -121,7 +127,7 @@ importers:
|
|
|
121
127
|
version: 0.45.1(@types/pg@8.16.0)(pg@8.17.2)
|
|
122
128
|
drizzle-zod:
|
|
123
129
|
specifier: ^0.8.3
|
|
124
|
-
version: 0.8.3(drizzle-orm@0.45.1(@types/pg@8.16.0)(pg@8.17.2))(zod@4.3.
|
|
130
|
+
version: 0.8.3(drizzle-orm@0.45.1(@types/pg@8.16.0)(pg@8.17.2))(zod@4.3.6)
|
|
125
131
|
embla-carousel-react:
|
|
126
132
|
specifier: ^8.6.0
|
|
127
133
|
version: 8.6.0(react@19.2.3)
|
|
@@ -154,7 +160,7 @@ importers:
|
|
|
154
160
|
version: 7.71.1(react@19.2.3)
|
|
155
161
|
react-resizable-panels:
|
|
156
162
|
specifier: ^4.2.0
|
|
157
|
-
version: 4.
|
|
163
|
+
version: 4.5.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
158
164
|
recharts:
|
|
159
165
|
specifier: 2.15.4
|
|
160
166
|
version: 2.15.4(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
@@ -169,10 +175,10 @@ importers:
|
|
|
169
175
|
version: 1.4.0
|
|
170
176
|
vaul:
|
|
171
177
|
specifier: ^1.1.2
|
|
172
|
-
version: 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.
|
|
178
|
+
version: 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
173
179
|
zod:
|
|
174
180
|
specifier: ^4.3.5
|
|
175
|
-
version: 4.3.
|
|
181
|
+
version: 4.3.6
|
|
176
182
|
devDependencies:
|
|
177
183
|
'@react-dev-inspector/babel-plugin':
|
|
178
184
|
specifier: ^2.0.1
|
|
@@ -191,28 +197,31 @@ importers:
|
|
|
191
197
|
version: 8.16.0
|
|
192
198
|
'@types/react':
|
|
193
199
|
specifier: ^19
|
|
194
|
-
version: 19.2.
|
|
200
|
+
version: 19.2.10
|
|
195
201
|
'@types/react-dom':
|
|
196
202
|
specifier: ^19
|
|
197
|
-
version: 19.2.3(@types/react@19.2.
|
|
203
|
+
version: 19.2.3(@types/react@19.2.10)
|
|
198
204
|
eslint:
|
|
199
205
|
specifier: ^9
|
|
200
206
|
version: 9.39.2(jiti@2.6.1)
|
|
201
207
|
eslint-config-next:
|
|
202
208
|
specifier: 16.1.1
|
|
203
|
-
version: 16.1.1(@typescript-eslint/parser@8.
|
|
209
|
+
version: 16.1.1(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
|
|
204
210
|
only-allow:
|
|
205
211
|
specifier: ^1.2.2
|
|
206
212
|
version: 1.2.2
|
|
207
213
|
react-dev-inspector:
|
|
208
214
|
specifier: ^2.0.1
|
|
209
|
-
version: 2.0.1(@types/react@19.2.
|
|
215
|
+
version: 2.0.1(@types/react@19.2.10)(eslint@9.39.2(jiti@2.6.1))(react@19.2.3)(typescript@5.9.3)(webpack@5.104.1(esbuild@0.25.12))
|
|
210
216
|
shadcn:
|
|
211
217
|
specifier: latest
|
|
212
|
-
version: 3.7.0(@cfworker/json-schema@4.1.1)(@types/node@20.19.30)(hono@4.11.
|
|
218
|
+
version: 3.7.0(@cfworker/json-schema@4.1.1)(@types/node@20.19.30)(hono@4.11.7)(typescript@5.9.3)
|
|
213
219
|
tailwindcss:
|
|
214
220
|
specifier: ^4
|
|
215
221
|
version: 4.1.18
|
|
222
|
+
tsx:
|
|
223
|
+
specifier: ^4.19.2
|
|
224
|
+
version: 4.21.0
|
|
216
225
|
typescript:
|
|
217
226
|
specifier: ^5
|
|
218
227
|
version: 5.9.3
|
|
@@ -250,137 +259,153 @@ packages:
|
|
|
250
259
|
'@aws-crypto/util@5.2.0':
|
|
251
260
|
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
|
|
252
261
|
|
|
253
|
-
'@aws-sdk/client-s3@3.
|
|
254
|
-
resolution: {integrity: sha512-
|
|
262
|
+
'@aws-sdk/client-s3@3.975.0':
|
|
263
|
+
resolution: {integrity: sha512-aF1M/iMD29BPcpxjqoym0YFa4WR9Xie1/IhVumwOGH6TB45DaqYO7vLwantDBcYNRn/cZH6DFHksO7RmwTFBhw==}
|
|
255
264
|
engines: {node: '>=20.0.0'}
|
|
256
265
|
|
|
257
|
-
'@aws-sdk/client-sso@3.
|
|
258
|
-
resolution: {integrity: sha512-
|
|
266
|
+
'@aws-sdk/client-sso@3.975.0':
|
|
267
|
+
resolution: {integrity: sha512-HpgJuleH7P6uILxzJKQOmlHdwaCY+xYC6VgRDzlwVEqU/HXjo4m2gOAyjUbpXlBOCWfGgMUzfBlNJ9z3MboqEQ==}
|
|
259
268
|
engines: {node: '>=20.0.0'}
|
|
260
269
|
|
|
261
270
|
'@aws-sdk/core@3.972.0':
|
|
262
271
|
resolution: {integrity: sha512-nEeUW2M9F+xdIaD98F5MBcQ4ITtykj3yKbgFZ6J0JtL3bq+Z90szQ6Yy8H/BLPYXTs3V4n9ifnBo8cprRDiE6A==}
|
|
263
272
|
engines: {node: '>=20.0.0'}
|
|
264
273
|
|
|
274
|
+
'@aws-sdk/core@3.973.3':
|
|
275
|
+
resolution: {integrity: sha512-ZbM2Xy8ytAcfnNpkBltr6Qdw36W/4NW5nZdZieCuTfacoBFpi/NYiwb8U05KNJvLKeZnrV9Vi696i+r2DQFORg==}
|
|
276
|
+
engines: {node: '>=20.0.0'}
|
|
277
|
+
|
|
265
278
|
'@aws-sdk/crc64-nvme@3.972.0':
|
|
266
279
|
resolution: {integrity: sha512-ThlLhTqX68jvoIVv+pryOdb5coP1cX1/MaTbB9xkGDCbWbsqQcLqzPxuSoW1DCnAAIacmXCWpzUNOB9pv+xXQw==}
|
|
267
280
|
engines: {node: '>=20.0.0'}
|
|
268
281
|
|
|
269
|
-
'@aws-sdk/credential-provider-env@3.972.
|
|
270
|
-
resolution: {integrity: sha512-
|
|
282
|
+
'@aws-sdk/credential-provider-env@3.972.2':
|
|
283
|
+
resolution: {integrity: sha512-wzH1EdrZsytG1xN9UHaK12J9+kfrnd2+c8y0LVoS4O4laEjPoie1qVK3k8/rZe7KOtvULzyMnO3FT4Krr9Z0Dg==}
|
|
271
284
|
engines: {node: '>=20.0.0'}
|
|
272
285
|
|
|
273
|
-
'@aws-sdk/credential-provider-http@3.972.
|
|
274
|
-
resolution: {integrity: sha512-
|
|
286
|
+
'@aws-sdk/credential-provider-http@3.972.3':
|
|
287
|
+
resolution: {integrity: sha512-IbBGWhaxiEl64fznwh5PDEB0N7YJEAvK5b6nRtPVUKdKAHlOPgo6B9XB8mqWDs8Ct0oF/E34ZLiq2U0L5xDkrg==}
|
|
275
288
|
engines: {node: '>=20.0.0'}
|
|
276
289
|
|
|
277
|
-
'@aws-sdk/credential-provider-ini@3.972.
|
|
278
|
-
resolution: {integrity: sha512-
|
|
290
|
+
'@aws-sdk/credential-provider-ini@3.972.2':
|
|
291
|
+
resolution: {integrity: sha512-Jrb8sLm6k8+L7520irBrvCtdLxNtrG7arIxe9TCeMJt/HxqMGJdbIjw8wILzkEHLMIi4MecF2FbXCln7OT1Tag==}
|
|
279
292
|
engines: {node: '>=20.0.0'}
|
|
280
293
|
|
|
281
|
-
'@aws-sdk/credential-provider-login@3.972.
|
|
282
|
-
resolution: {integrity: sha512-
|
|
294
|
+
'@aws-sdk/credential-provider-login@3.972.2':
|
|
295
|
+
resolution: {integrity: sha512-mlaw2aiI3DrimW85ZMn3g7qrtHueidS58IGytZ+mbFpsYLK5wMjCAKZQtt7VatLMtSBG/dn/EY4njbnYXIDKeQ==}
|
|
283
296
|
engines: {node: '>=20.0.0'}
|
|
284
297
|
|
|
285
|
-
'@aws-sdk/credential-provider-node@3.972.
|
|
286
|
-
resolution: {integrity: sha512-
|
|
298
|
+
'@aws-sdk/credential-provider-node@3.972.2':
|
|
299
|
+
resolution: {integrity: sha512-Lz1J5IZdTjLYTVIcDP5DVDgi1xlgsF3p1cnvmbfKbjCRhQpftN2e2J4NFfRRvPD54W9+bZ8l5VipPXtTYK7aEg==}
|
|
287
300
|
engines: {node: '>=20.0.0'}
|
|
288
301
|
|
|
289
|
-
'@aws-sdk/credential-provider-process@3.972.
|
|
290
|
-
resolution: {integrity: sha512-
|
|
302
|
+
'@aws-sdk/credential-provider-process@3.972.2':
|
|
303
|
+
resolution: {integrity: sha512-NLKLTT7jnUe9GpQAVkPTJO+cs2FjlQDt5fArIYS7h/Iw/CvamzgGYGFRVD2SE05nOHCMwafUSi42If8esGFV+g==}
|
|
291
304
|
engines: {node: '>=20.0.0'}
|
|
292
305
|
|
|
293
|
-
'@aws-sdk/credential-provider-sso@3.972.
|
|
294
|
-
resolution: {integrity: sha512-
|
|
306
|
+
'@aws-sdk/credential-provider-sso@3.972.2':
|
|
307
|
+
resolution: {integrity: sha512-YpwDn8g3gCGUl61cCV0sRxP2pFIwg+ZsMfWQ/GalSyjXtRkctCMFA+u0yPb/Q4uTfNEiya1Y4nm0C5rIHyPW5Q==}
|
|
295
308
|
engines: {node: '>=20.0.0'}
|
|
296
309
|
|
|
297
|
-
'@aws-sdk/credential-provider-web-identity@3.972.
|
|
298
|
-
resolution: {integrity: sha512-
|
|
310
|
+
'@aws-sdk/credential-provider-web-identity@3.972.2':
|
|
311
|
+
resolution: {integrity: sha512-x9DAiN9Qz+NjJ99ltDiVQ8d511M/tuF/9MFbe2jUgo7HZhD6+x4S3iT1YcP07ndwDUjmzKGmeOEgE24k4qvfdg==}
|
|
299
312
|
engines: {node: '>=20.0.0'}
|
|
300
313
|
|
|
301
|
-
'@aws-sdk/lib-storage@3.
|
|
302
|
-
resolution: {integrity: sha512-
|
|
314
|
+
'@aws-sdk/lib-storage@3.975.0':
|
|
315
|
+
resolution: {integrity: sha512-F6vrnZ3F7oqr3oONCIpx+uZDTwXWfh8sBoNNJollDn5pIn7TI+R+7WxVIXAMq/JWLXE6N8T3M6ogWk4Y4JWPPw==}
|
|
303
316
|
engines: {node: '>=20.0.0'}
|
|
304
317
|
peerDependencies:
|
|
305
|
-
'@aws-sdk/client-s3': 3.
|
|
318
|
+
'@aws-sdk/client-s3': 3.975.0
|
|
306
319
|
|
|
307
|
-
'@aws-sdk/middleware-bucket-endpoint@3.972.
|
|
308
|
-
resolution: {integrity: sha512-
|
|
320
|
+
'@aws-sdk/middleware-bucket-endpoint@3.972.1':
|
|
321
|
+
resolution: {integrity: sha512-YVvoitBdE8WOpHqIXvv49efT73F4bJ99XH2bi3Dn3mx7WngI4RwHwn/zF5i0q1Wdi5frGSCNF3vuh+pY817//w==}
|
|
309
322
|
engines: {node: '>=20.0.0'}
|
|
310
323
|
|
|
311
|
-
'@aws-sdk/middleware-expect-continue@3.972.
|
|
312
|
-
resolution: {integrity: sha512-
|
|
324
|
+
'@aws-sdk/middleware-expect-continue@3.972.1':
|
|
325
|
+
resolution: {integrity: sha512-6lfl2/J/kutzw/RLu1kjbahsz4vrGPysrdxWaw8fkjLYG+6M6AswocIAZFS/LgAVi/IWRwPTx9YC0/NH2wDrSw==}
|
|
313
326
|
engines: {node: '>=20.0.0'}
|
|
314
327
|
|
|
315
|
-
'@aws-sdk/middleware-flexible-checksums@3.972.
|
|
316
|
-
resolution: {integrity: sha512-
|
|
328
|
+
'@aws-sdk/middleware-flexible-checksums@3.972.1':
|
|
329
|
+
resolution: {integrity: sha512-kjVVREpqeUkYQsXr78AcsJbEUlxGH7+H6yS7zkjrnu6HyEVxbdSndkKX6VpKneFOihjCAhIXlk4wf3butDHkNQ==}
|
|
317
330
|
engines: {node: '>=20.0.0'}
|
|
318
331
|
|
|
319
|
-
'@aws-sdk/middleware-host-header@3.972.
|
|
320
|
-
resolution: {integrity: sha512-
|
|
332
|
+
'@aws-sdk/middleware-host-header@3.972.2':
|
|
333
|
+
resolution: {integrity: sha512-42hZ8jEXT2uR6YybCzNq9OomqHPw43YIfRfz17biZjMQA4jKSQUaHIl6VvqO2Ddl5904pXg2Yd/ku78S0Ikgog==}
|
|
321
334
|
engines: {node: '>=20.0.0'}
|
|
322
335
|
|
|
323
|
-
'@aws-sdk/middleware-location-constraint@3.972.
|
|
324
|
-
resolution: {integrity: sha512-
|
|
336
|
+
'@aws-sdk/middleware-location-constraint@3.972.1':
|
|
337
|
+
resolution: {integrity: sha512-YisPaCbvBk9gY5aUI8jDMDKXsLZ9Fet0WYj1MviK8tZYMgxBIYHM6l3O/OHaAIujojZvamd9F3haYYYWp5/V3w==}
|
|
325
338
|
engines: {node: '>=20.0.0'}
|
|
326
339
|
|
|
327
|
-
'@aws-sdk/middleware-logger@3.972.
|
|
328
|
-
resolution: {integrity: sha512-
|
|
340
|
+
'@aws-sdk/middleware-logger@3.972.2':
|
|
341
|
+
resolution: {integrity: sha512-iUzdXKOgi4JVDDEG/VvoNw50FryRCEm0qAudw12DcZoiNJWl0rN6SYVLcL1xwugMfQncCXieK5UBlG6mhH7iYA==}
|
|
329
342
|
engines: {node: '>=20.0.0'}
|
|
330
343
|
|
|
331
|
-
'@aws-sdk/middleware-recursion-detection@3.972.
|
|
332
|
-
resolution: {integrity: sha512
|
|
344
|
+
'@aws-sdk/middleware-recursion-detection@3.972.2':
|
|
345
|
+
resolution: {integrity: sha512-/mzlyzJDtngNFd/rAYvqx29a2d0VuiYKN84Y/Mu9mGw7cfMOCyRK+896tb9wV6MoPRHUX7IXuKCIL8nzz2Pz5A==}
|
|
333
346
|
engines: {node: '>=20.0.0'}
|
|
334
347
|
|
|
335
348
|
'@aws-sdk/middleware-sdk-s3@3.972.0':
|
|
336
349
|
resolution: {integrity: sha512-0bcKFXWx+NZ7tIlOo7KjQ+O2rydiHdIQahrq+fN6k9Osky29v17guy68urUKfhTobR6iY6KvxkroFWaFtTgS5w==}
|
|
337
350
|
engines: {node: '>=20.0.0'}
|
|
338
351
|
|
|
339
|
-
'@aws-sdk/middleware-
|
|
340
|
-
resolution: {integrity: sha512-
|
|
352
|
+
'@aws-sdk/middleware-sdk-s3@3.972.2':
|
|
353
|
+
resolution: {integrity: sha512-5f9x9/G+StE8+7wd9EVDF3d+J74xK+WBA3FhZwLSkf3pHFGLKzlmUfxJJE1kkXkbj/j/H+Dh3zL/hrtQE9hNsg==}
|
|
354
|
+
engines: {node: '>=20.0.0'}
|
|
355
|
+
|
|
356
|
+
'@aws-sdk/middleware-ssec@3.972.1':
|
|
357
|
+
resolution: {integrity: sha512-fLtRTPd/MxJT2drJKft2GVGKm35PiNEeQ1Dvz1vc/WhhgAteYrp4f1SfSgjgLaYWGMExESJL4bt8Dxqp6tVsog==}
|
|
341
358
|
engines: {node: '>=20.0.0'}
|
|
342
359
|
|
|
343
|
-
'@aws-sdk/middleware-user-agent@3.972.
|
|
344
|
-
resolution: {integrity: sha512-
|
|
360
|
+
'@aws-sdk/middleware-user-agent@3.972.3':
|
|
361
|
+
resolution: {integrity: sha512-zq6aTiO/BiAIOA8EH8nB+wYvvnZ14Md9Gomm5DDhParshVEVglAyNPO5ADK4ZXFQbftIoO+Vgcvf4gewW/+iYQ==}
|
|
345
362
|
engines: {node: '>=20.0.0'}
|
|
346
363
|
|
|
347
|
-
'@aws-sdk/nested-clients@3.
|
|
348
|
-
resolution: {integrity: sha512-
|
|
364
|
+
'@aws-sdk/nested-clients@3.975.0':
|
|
365
|
+
resolution: {integrity: sha512-OkeFHPlQj2c/Y5bQGkX14pxhDWUGUFt3LRHhjcDKsSCw6lrxKcxN3WFZN0qbJwKNydP+knL5nxvfgKiCLpTLRA==}
|
|
349
366
|
engines: {node: '>=20.0.0'}
|
|
350
367
|
|
|
351
|
-
'@aws-sdk/region-config-resolver@3.972.
|
|
352
|
-
resolution: {integrity: sha512
|
|
368
|
+
'@aws-sdk/region-config-resolver@3.972.2':
|
|
369
|
+
resolution: {integrity: sha512-/7vRBsfmiOlg2X67EdKrzzQGw5/SbkXb7ALHQmlQLkZh8qNgvS2G2dDC6NtF3hzFlpP3j2k+KIEtql/6VrI6JA==}
|
|
353
370
|
engines: {node: '>=20.0.0'}
|
|
354
371
|
|
|
355
372
|
'@aws-sdk/signature-v4-multi-region@3.972.0':
|
|
356
373
|
resolution: {integrity: sha512-2udiRijmjpN81Pvajje4TsjbXDZNP6K9bYUanBYH8hXa/tZG5qfGCySD+TyX0sgDxCQmEDMg3LaQdfjNHBDEgQ==}
|
|
357
374
|
engines: {node: '>=20.0.0'}
|
|
358
375
|
|
|
359
|
-
'@aws-sdk/token-providers@3.
|
|
360
|
-
resolution: {integrity: sha512-
|
|
376
|
+
'@aws-sdk/token-providers@3.975.0':
|
|
377
|
+
resolution: {integrity: sha512-AWQt64hkVbDQ+CmM09wnvSk2mVyH4iRROkmYkr3/lmUtFNbE2L/fnw26sckZnUcFCsHPqbkQrcsZAnTcBLbH4w==}
|
|
361
378
|
engines: {node: '>=20.0.0'}
|
|
362
379
|
|
|
363
380
|
'@aws-sdk/types@3.972.0':
|
|
364
381
|
resolution: {integrity: sha512-U7xBIbLSetONxb2bNzHyDgND3oKGoIfmknrEVnoEU4GUSs+0augUOIn9DIWGUO2ETcRFdsRUnmx9KhPT9Ojbug==}
|
|
365
382
|
engines: {node: '>=20.0.0'}
|
|
366
383
|
|
|
384
|
+
'@aws-sdk/types@3.973.1':
|
|
385
|
+
resolution: {integrity: sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==}
|
|
386
|
+
engines: {node: '>=20.0.0'}
|
|
387
|
+
|
|
367
388
|
'@aws-sdk/util-arn-parser@3.972.0':
|
|
368
389
|
resolution: {integrity: sha512-RM5Mmo/KJ593iMSrALlHEOcc9YOIyOsDmS5x2NLOMdEmzv1o00fcpAkCQ02IGu1eFneBFT7uX0Mpag0HI+Cz2g==}
|
|
369
390
|
engines: {node: '>=20.0.0'}
|
|
370
391
|
|
|
392
|
+
'@aws-sdk/util-arn-parser@3.972.1':
|
|
393
|
+
resolution: {integrity: sha512-XnNit6H9PPHhqUXW/usjX6JeJ6Pm8ZNqivTjmNjgWHeOfVpblUc/MTic02UmCNR0jJLPjQ3mBKiMen0tnkNQjQ==}
|
|
394
|
+
engines: {node: '>=20.0.0'}
|
|
395
|
+
|
|
371
396
|
'@aws-sdk/util-endpoints@3.972.0':
|
|
372
397
|
resolution: {integrity: sha512-6JHsl1V/a1ZW8D8AFfd4R52fwZPnZ5H4U6DS8m/bWT8qad72NvbOFAC7U2cDtFs2TShqUO3TEiX/EJibtY3ijg==}
|
|
373
398
|
engines: {node: '>=20.0.0'}
|
|
374
399
|
|
|
375
|
-
'@aws-sdk/util-locate-window@3.965.
|
|
376
|
-
resolution: {integrity: sha512-
|
|
400
|
+
'@aws-sdk/util-locate-window@3.965.4':
|
|
401
|
+
resolution: {integrity: sha512-H1onv5SkgPBK2P6JR2MjGgbOnttoNzSPIRoeZTNPZYyaplwGg50zS3amXvXqF0/qfXpWEC9rLWU564QTB9bSog==}
|
|
377
402
|
engines: {node: '>=20.0.0'}
|
|
378
403
|
|
|
379
|
-
'@aws-sdk/util-user-agent-browser@3.972.
|
|
380
|
-
resolution: {integrity: sha512-
|
|
404
|
+
'@aws-sdk/util-user-agent-browser@3.972.2':
|
|
405
|
+
resolution: {integrity: sha512-gz76bUyebPZRxIsBHJUd/v+yiyFzm9adHbr8NykP2nm+z/rFyvQneOHajrUejtmnc5tTBeaDPL4X25TnagRk4A==}
|
|
381
406
|
|
|
382
|
-
'@aws-sdk/util-user-agent-node@3.972.
|
|
383
|
-
resolution: {integrity: sha512-
|
|
407
|
+
'@aws-sdk/util-user-agent-node@3.972.2':
|
|
408
|
+
resolution: {integrity: sha512-vnxOc4C6AR7hVbwyFo1YuH0GB6dgJlWt8nIOOJpnzJAWJPkUMPJ9Zv2lnKsSU7TTZbhP2hEO8OZ4PYH59XFv8Q==}
|
|
384
409
|
engines: {node: '>=20.0.0'}
|
|
385
410
|
peerDependencies:
|
|
386
411
|
aws-crt: '>=1.0.0'
|
|
@@ -392,6 +417,10 @@ packages:
|
|
|
392
417
|
resolution: {integrity: sha512-POaGMcXnozzqBUyJM3HLUZ9GR6OKJWPGJEmhtTnxZXt8B6JcJ/6K3xRJ5H/j8oovVLz8Wg6vFxAHv8lvuASxMg==}
|
|
393
418
|
engines: {node: '>=20.0.0'}
|
|
394
419
|
|
|
420
|
+
'@aws-sdk/xml-builder@3.972.2':
|
|
421
|
+
resolution: {integrity: sha512-jGOOV/bV1DhkkUhHiZ3/1GZ67cZyOXaDb7d1rYD6ZiXf5V9tBNOcgqXwRRPvrCbYaFRa1pPMFb3ZjqjWpR3YfA==}
|
|
422
|
+
engines: {node: '>=20.0.0'}
|
|
423
|
+
|
|
395
424
|
'@aws/lambda-invoke-store@0.2.3':
|
|
396
425
|
resolution: {integrity: sha512-oLvsaPMTBejkkmHhjf09xTgk71mOqyr/409NKhRIL08If7AhVfUsJhVsx386uJaqNd42v9kWamQ9lFbkoC2dYw==}
|
|
397
426
|
engines: {node: '>=18.0.0'}
|
|
@@ -539,8 +568,8 @@ packages:
|
|
|
539
568
|
'@date-fns/tz@1.4.1':
|
|
540
569
|
resolution: {integrity: sha512-P5LUNhtbj6YfI3iJjw5EL9eUAG6OitD0W3fWQcpQjDRc/QIsL0tRNuO1PcDvPccWL1fSTXXdE1ds+l95DV/OFA==}
|
|
541
570
|
|
|
542
|
-
'@dotenvx/dotenvx@1.
|
|
543
|
-
resolution: {integrity: sha512-
|
|
571
|
+
'@dotenvx/dotenvx@1.52.0':
|
|
572
|
+
resolution: {integrity: sha512-CaQcc8JvtzQhUSm9877b6V4Tb7HCotkcyud9X2YwdqtQKwgljkMRwU96fVYKnzN3V0Hj74oP7Es+vZ0mS+Aa1w==}
|
|
544
573
|
hasBin: true
|
|
545
574
|
|
|
546
575
|
'@drizzle-team/brocli@0.10.2':
|
|
@@ -763,14 +792,14 @@ packages:
|
|
|
763
792
|
resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
|
|
764
793
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
765
794
|
|
|
766
|
-
'@floating-ui/core@1.7.
|
|
767
|
-
resolution: {integrity: sha512-
|
|
795
|
+
'@floating-ui/core@1.7.4':
|
|
796
|
+
resolution: {integrity: sha512-C3HlIdsBxszvm5McXlB8PeOEWfBhcGBTZGkGlWc2U0KFY5IwG5OQEuQ8rq52DZmcHDlPLd+YFBK+cZcytwIFWg==}
|
|
768
797
|
|
|
769
|
-
'@floating-ui/dom@1.7.
|
|
770
|
-
resolution: {integrity: sha512-
|
|
798
|
+
'@floating-ui/dom@1.7.5':
|
|
799
|
+
resolution: {integrity: sha512-N0bD2kIPInNHUHehXhMke1rBGs1dwqvC9O9KYMyyjK7iXt7GAhnro7UlcuYcGdS/yYOlq0MAVgrow8IbWJwyqg==}
|
|
771
800
|
|
|
772
|
-
'@floating-ui/react-dom@2.1.
|
|
773
|
-
resolution: {integrity: sha512-
|
|
801
|
+
'@floating-ui/react-dom@2.1.7':
|
|
802
|
+
resolution: {integrity: sha512-0tLRojf/1Go2JgEVm+3Frg9A3IW8bJgKgdO0BN5RkF//ufuz2joZM63Npau2ff3J6lUVYgDSNzNkR+aH3IVfjg==}
|
|
774
803
|
peerDependencies:
|
|
775
804
|
react: '>=16.8.0'
|
|
776
805
|
react-dom: '>=16.8.0'
|
|
@@ -835,89 +864,105 @@ packages:
|
|
|
835
864
|
resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
|
|
836
865
|
cpu: [arm64]
|
|
837
866
|
os: [linux]
|
|
867
|
+
libc: [glibc]
|
|
838
868
|
|
|
839
869
|
'@img/sharp-libvips-linux-arm@1.2.4':
|
|
840
870
|
resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
|
|
841
871
|
cpu: [arm]
|
|
842
872
|
os: [linux]
|
|
873
|
+
libc: [glibc]
|
|
843
874
|
|
|
844
875
|
'@img/sharp-libvips-linux-ppc64@1.2.4':
|
|
845
876
|
resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==}
|
|
846
877
|
cpu: [ppc64]
|
|
847
878
|
os: [linux]
|
|
879
|
+
libc: [glibc]
|
|
848
880
|
|
|
849
881
|
'@img/sharp-libvips-linux-riscv64@1.2.4':
|
|
850
882
|
resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==}
|
|
851
883
|
cpu: [riscv64]
|
|
852
884
|
os: [linux]
|
|
885
|
+
libc: [glibc]
|
|
853
886
|
|
|
854
887
|
'@img/sharp-libvips-linux-s390x@1.2.4':
|
|
855
888
|
resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==}
|
|
856
889
|
cpu: [s390x]
|
|
857
890
|
os: [linux]
|
|
891
|
+
libc: [glibc]
|
|
858
892
|
|
|
859
893
|
'@img/sharp-libvips-linux-x64@1.2.4':
|
|
860
894
|
resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
|
|
861
895
|
cpu: [x64]
|
|
862
896
|
os: [linux]
|
|
897
|
+
libc: [glibc]
|
|
863
898
|
|
|
864
899
|
'@img/sharp-libvips-linuxmusl-arm64@1.2.4':
|
|
865
900
|
resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
|
|
866
901
|
cpu: [arm64]
|
|
867
902
|
os: [linux]
|
|
903
|
+
libc: [musl]
|
|
868
904
|
|
|
869
905
|
'@img/sharp-libvips-linuxmusl-x64@1.2.4':
|
|
870
906
|
resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
|
|
871
907
|
cpu: [x64]
|
|
872
908
|
os: [linux]
|
|
909
|
+
libc: [musl]
|
|
873
910
|
|
|
874
911
|
'@img/sharp-linux-arm64@0.34.5':
|
|
875
912
|
resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==}
|
|
876
913
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
877
914
|
cpu: [arm64]
|
|
878
915
|
os: [linux]
|
|
916
|
+
libc: [glibc]
|
|
879
917
|
|
|
880
918
|
'@img/sharp-linux-arm@0.34.5':
|
|
881
919
|
resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==}
|
|
882
920
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
883
921
|
cpu: [arm]
|
|
884
922
|
os: [linux]
|
|
923
|
+
libc: [glibc]
|
|
885
924
|
|
|
886
925
|
'@img/sharp-linux-ppc64@0.34.5':
|
|
887
926
|
resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==}
|
|
888
927
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
889
928
|
cpu: [ppc64]
|
|
890
929
|
os: [linux]
|
|
930
|
+
libc: [glibc]
|
|
891
931
|
|
|
892
932
|
'@img/sharp-linux-riscv64@0.34.5':
|
|
893
933
|
resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==}
|
|
894
934
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
895
935
|
cpu: [riscv64]
|
|
896
936
|
os: [linux]
|
|
937
|
+
libc: [glibc]
|
|
897
938
|
|
|
898
939
|
'@img/sharp-linux-s390x@0.34.5':
|
|
899
940
|
resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==}
|
|
900
941
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
901
942
|
cpu: [s390x]
|
|
902
943
|
os: [linux]
|
|
944
|
+
libc: [glibc]
|
|
903
945
|
|
|
904
946
|
'@img/sharp-linux-x64@0.34.5':
|
|
905
947
|
resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==}
|
|
906
948
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
907
949
|
cpu: [x64]
|
|
908
950
|
os: [linux]
|
|
951
|
+
libc: [glibc]
|
|
909
952
|
|
|
910
953
|
'@img/sharp-linuxmusl-arm64@0.34.5':
|
|
911
954
|
resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==}
|
|
912
955
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
913
956
|
cpu: [arm64]
|
|
914
957
|
os: [linux]
|
|
958
|
+
libc: [musl]
|
|
915
959
|
|
|
916
960
|
'@img/sharp-linuxmusl-x64@0.34.5':
|
|
917
961
|
resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==}
|
|
918
962
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
919
963
|
cpu: [x64]
|
|
920
964
|
os: [linux]
|
|
965
|
+
libc: [musl]
|
|
921
966
|
|
|
922
967
|
'@img/sharp-wasm32@0.34.5':
|
|
923
968
|
resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==}
|
|
@@ -1004,8 +1049,8 @@ packages:
|
|
|
1004
1049
|
'@jridgewell/trace-mapping@0.3.31':
|
|
1005
1050
|
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
1006
1051
|
|
|
1007
|
-
'@langchain/core@1.1.
|
|
1008
|
-
resolution: {integrity: sha512-
|
|
1052
|
+
'@langchain/core@1.1.17':
|
|
1053
|
+
resolution: {integrity: sha512-g7/kcKbKEwNZSyyT7aT0utxn7wTOtKErqz0cL6VjrV4v/aOb9g+dKcfj17YkSm42YQmJp/rB2IXGc17vQPEBqA==}
|
|
1009
1054
|
engines: {node: '>=20'}
|
|
1010
1055
|
|
|
1011
1056
|
'@langchain/openai@1.2.3':
|
|
@@ -1054,24 +1099,28 @@ packages:
|
|
|
1054
1099
|
engines: {node: '>= 10'}
|
|
1055
1100
|
cpu: [arm64]
|
|
1056
1101
|
os: [linux]
|
|
1102
|
+
libc: [glibc]
|
|
1057
1103
|
|
|
1058
1104
|
'@next/swc-linux-arm64-musl@16.1.1':
|
|
1059
1105
|
resolution: {integrity: sha512-MFHrgL4TXNQbBPzkKKur4Fb5ICEJa87HM7fczFs2+HWblM7mMLdco3dvyTI+QmLBU9xgns/EeeINSZD6Ar+oLg==}
|
|
1060
1106
|
engines: {node: '>= 10'}
|
|
1061
1107
|
cpu: [arm64]
|
|
1062
1108
|
os: [linux]
|
|
1109
|
+
libc: [musl]
|
|
1063
1110
|
|
|
1064
1111
|
'@next/swc-linux-x64-gnu@16.1.1':
|
|
1065
1112
|
resolution: {integrity: sha512-20bYDfgOQAPUkkKBnyP9PTuHiJGM7HzNBbuqmD0jiFVZ0aOldz+VnJhbxzjcSabYsnNjMPsE0cyzEudpYxsrUQ==}
|
|
1066
1113
|
engines: {node: '>= 10'}
|
|
1067
1114
|
cpu: [x64]
|
|
1068
1115
|
os: [linux]
|
|
1116
|
+
libc: [glibc]
|
|
1069
1117
|
|
|
1070
1118
|
'@next/swc-linux-x64-musl@16.1.1':
|
|
1071
1119
|
resolution: {integrity: sha512-9pRbK3M4asAHQRkwaXwu601oPZHghuSC8IXNENgbBSyImHv/zY4K5udBusgdHkvJ/Tcr96jJwQYOll0qU8+fPA==}
|
|
1072
1120
|
engines: {node: '>= 10'}
|
|
1073
1121
|
cpu: [x64]
|
|
1074
1122
|
os: [linux]
|
|
1123
|
+
libc: [musl]
|
|
1075
1124
|
|
|
1076
1125
|
'@next/swc-win32-arm64-msvc@16.1.1':
|
|
1077
1126
|
resolution: {integrity: sha512-bdfQkggaLgnmYrFkSQfsHfOhk/mCYmjnrbRCGgkMcoOBZ4n+TRRSLmT/CU5SATzlBJ9TpioUyBW/vWFXTqQRiA==}
|
|
@@ -1811,8 +1860,8 @@ packages:
|
|
|
1811
1860
|
resolution: {integrity: sha512-qJpzYC64kaj3S0fueiu3kXm8xPrR3PcXDPEgnaNMRn0EjNSZFoFjvbUp0YUDsRhN1CB90EnHJtbxWKevnH99UQ==}
|
|
1812
1861
|
engines: {node: '>=18.0.0'}
|
|
1813
1862
|
|
|
1814
|
-
'@smithy/core@3.
|
|
1815
|
-
resolution: {integrity: sha512-
|
|
1863
|
+
'@smithy/core@3.22.0':
|
|
1864
|
+
resolution: {integrity: sha512-6vjCHD6vaY8KubeNw2Fg3EK0KLGQYdldG4fYgQmA0xSW0dJ8G2xFhSOdrlUakWVoP5JuWHtFODg3PNd/DN3FDA==}
|
|
1816
1865
|
engines: {node: '>=18.0.0'}
|
|
1817
1866
|
|
|
1818
1867
|
'@smithy/credential-provider-imds@4.2.8':
|
|
@@ -1875,12 +1924,12 @@ packages:
|
|
|
1875
1924
|
resolution: {integrity: sha512-RO0jeoaYAB1qBRhfVyq0pMgBoUK34YEJxVxyjOWYZiOKOq2yMZ4MnVXMZCUDenpozHue207+9P5ilTV1zeda0A==}
|
|
1876
1925
|
engines: {node: '>=18.0.0'}
|
|
1877
1926
|
|
|
1878
|
-
'@smithy/middleware-endpoint@4.4.
|
|
1879
|
-
resolution: {integrity: sha512-
|
|
1927
|
+
'@smithy/middleware-endpoint@4.4.12':
|
|
1928
|
+
resolution: {integrity: sha512-9JMKHVJtW9RysTNjcBZQHDwB0p3iTP6B1IfQV4m+uCevkVd/VuLgwfqk5cnI4RHcp4cPwoIvxQqN4B1sxeHo8Q==}
|
|
1880
1929
|
engines: {node: '>=18.0.0'}
|
|
1881
1930
|
|
|
1882
|
-
'@smithy/middleware-retry@4.4.
|
|
1883
|
-
resolution: {integrity: sha512-
|
|
1931
|
+
'@smithy/middleware-retry@4.4.29':
|
|
1932
|
+
resolution: {integrity: sha512-bmTn75a4tmKRkC5w61yYQLb3DmxNzB8qSVu9SbTYqW6GAL0WXO2bDZuMAn/GJSbOdHEdjZvWxe+9Kk015bw6Cg==}
|
|
1884
1933
|
engines: {node: '>=18.0.0'}
|
|
1885
1934
|
|
|
1886
1935
|
'@smithy/middleware-serde@4.2.9':
|
|
@@ -1927,8 +1976,8 @@ packages:
|
|
|
1927
1976
|
resolution: {integrity: sha512-6A4vdGj7qKNRF16UIcO8HhHjKW27thsxYci+5r/uVRkdcBEkOEiY8OMPuydLX4QHSrJqGHPJzPRwwVTqbLZJhg==}
|
|
1928
1977
|
engines: {node: '>=18.0.0'}
|
|
1929
1978
|
|
|
1930
|
-
'@smithy/smithy-client@4.
|
|
1931
|
-
resolution: {integrity: sha512-
|
|
1979
|
+
'@smithy/smithy-client@4.11.1':
|
|
1980
|
+
resolution: {integrity: sha512-SERgNg5Z1U+jfR6/2xPYjSEHY1t3pyTHC/Ma3YQl6qWtmiL42bvNId3W/oMUWIwu7ekL2FMPdqAmwbQegM7HeQ==}
|
|
1932
1981
|
engines: {node: '>=18.0.0'}
|
|
1933
1982
|
|
|
1934
1983
|
'@smithy/types@4.12.0':
|
|
@@ -1963,12 +2012,12 @@ packages:
|
|
|
1963
2012
|
resolution: {integrity: sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q==}
|
|
1964
2013
|
engines: {node: '>=18.0.0'}
|
|
1965
2014
|
|
|
1966
|
-
'@smithy/util-defaults-mode-browser@4.3.
|
|
1967
|
-
resolution: {integrity: sha512
|
|
2015
|
+
'@smithy/util-defaults-mode-browser@4.3.28':
|
|
2016
|
+
resolution: {integrity: sha512-/9zcatsCao9h6g18p/9vH9NIi5PSqhCkxQ/tb7pMgRFnqYp9XUOyOlGPDMHzr8n5ih6yYgwJEY2MLEobUgi47w==}
|
|
1968
2017
|
engines: {node: '>=18.0.0'}
|
|
1969
2018
|
|
|
1970
|
-
'@smithy/util-defaults-mode-node@4.2.
|
|
1971
|
-
resolution: {integrity: sha512-
|
|
2019
|
+
'@smithy/util-defaults-mode-node@4.2.31':
|
|
2020
|
+
resolution: {integrity: sha512-JTvoApUXA5kbpceI2vuqQzRjeTbLpx1eoa5R/YEZbTgtxvIB7AQZxFJ0SEyfCpgPCyVV9IT7we+ytSeIB3CyWA==}
|
|
1972
2021
|
engines: {node: '>=18.0.0'}
|
|
1973
2022
|
|
|
1974
2023
|
'@smithy/util-endpoints@3.2.8':
|
|
@@ -2014,6 +2063,30 @@ packages:
|
|
|
2014
2063
|
'@standard-schema/utils@0.3.0':
|
|
2015
2064
|
resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
|
|
2016
2065
|
|
|
2066
|
+
'@supabase/auth-js@2.95.3':
|
|
2067
|
+
resolution: {integrity: sha512-vD2YoS8E2iKIX0F7EwXTmqhUpaNsmbU6X2R0/NdFcs02oEfnHyNP/3M716f3wVJ2E5XHGiTFXki6lRckhJ0Thg==}
|
|
2068
|
+
engines: {node: '>=20.0.0'}
|
|
2069
|
+
|
|
2070
|
+
'@supabase/functions-js@2.95.3':
|
|
2071
|
+
resolution: {integrity: sha512-uTuOAKzs9R/IovW1krO0ZbUHSJnsnyJElTXIRhjJTqymIVGcHzkAYnBCJqd7468Fs/Foz1BQ7Dv6DCl05lr7ig==}
|
|
2072
|
+
engines: {node: '>=20.0.0'}
|
|
2073
|
+
|
|
2074
|
+
'@supabase/postgrest-js@2.95.3':
|
|
2075
|
+
resolution: {integrity: sha512-LTrRBqU1gOovxRm1vRXPItSMPBmEFqrfTqdPTRtzOILV4jPSueFz6pES5hpb4LRlkFwCPRmv3nQJ5N625V2Xrg==}
|
|
2076
|
+
engines: {node: '>=20.0.0'}
|
|
2077
|
+
|
|
2078
|
+
'@supabase/realtime-js@2.95.3':
|
|
2079
|
+
resolution: {integrity: sha512-D7EAtfU3w6BEUxDACjowWNJo/ZRo7sDIuhuOGKHIm9FHieGeoJV5R6GKTLtga/5l/6fDr2u+WcW/m8I9SYmaIw==}
|
|
2080
|
+
engines: {node: '>=20.0.0'}
|
|
2081
|
+
|
|
2082
|
+
'@supabase/storage-js@2.95.3':
|
|
2083
|
+
resolution: {integrity: sha512-4GxkJiXI3HHWjxpC3sDx1BVrV87O0hfX+wvJdqGv67KeCu+g44SPnII8y0LL/Wr677jB7tpjAxKdtVWf+xhc9A==}
|
|
2084
|
+
engines: {node: '>=20.0.0'}
|
|
2085
|
+
|
|
2086
|
+
'@supabase/supabase-js@2.95.3':
|
|
2087
|
+
resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
|
|
2088
|
+
engines: {node: '>=20.0.0'}
|
|
2089
|
+
|
|
2017
2090
|
'@swc/helpers@0.5.15':
|
|
2018
2091
|
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
|
|
2019
2092
|
|
|
@@ -2055,24 +2128,28 @@ packages:
|
|
|
2055
2128
|
engines: {node: '>= 10'}
|
|
2056
2129
|
cpu: [arm64]
|
|
2057
2130
|
os: [linux]
|
|
2131
|
+
libc: [glibc]
|
|
2058
2132
|
|
|
2059
2133
|
'@tailwindcss/oxide-linux-arm64-musl@4.1.18':
|
|
2060
2134
|
resolution: {integrity: sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==}
|
|
2061
2135
|
engines: {node: '>= 10'}
|
|
2062
2136
|
cpu: [arm64]
|
|
2063
2137
|
os: [linux]
|
|
2138
|
+
libc: [musl]
|
|
2064
2139
|
|
|
2065
2140
|
'@tailwindcss/oxide-linux-x64-gnu@4.1.18':
|
|
2066
2141
|
resolution: {integrity: sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==}
|
|
2067
2142
|
engines: {node: '>= 10'}
|
|
2068
2143
|
cpu: [x64]
|
|
2069
2144
|
os: [linux]
|
|
2145
|
+
libc: [glibc]
|
|
2070
2146
|
|
|
2071
2147
|
'@tailwindcss/oxide-linux-x64-musl@4.1.18':
|
|
2072
2148
|
resolution: {integrity: sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==}
|
|
2073
2149
|
engines: {node: '>= 10'}
|
|
2074
2150
|
cpu: [x64]
|
|
2075
2151
|
os: [linux]
|
|
2152
|
+
libc: [musl]
|
|
2076
2153
|
|
|
2077
2154
|
'@tailwindcss/oxide-wasm32-wasi@4.1.18':
|
|
2078
2155
|
resolution: {integrity: sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==}
|
|
@@ -2162,18 +2239,21 @@ packages:
|
|
|
2162
2239
|
'@types/pg@8.16.0':
|
|
2163
2240
|
resolution: {integrity: sha512-RmhMd/wD+CF8Dfo+cVIy3RR5cl8CyfXQ0tGgW6XBL8L4LM/UTEbNXYRbLwU6w+CgrKBNbrQWt4FUtTfaU5jSYQ==}
|
|
2164
2241
|
|
|
2242
|
+
'@types/phoenix@1.6.7':
|
|
2243
|
+
resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
|
|
2244
|
+
|
|
2165
2245
|
'@types/react-dom@19.2.3':
|
|
2166
2246
|
resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
|
|
2167
2247
|
peerDependencies:
|
|
2168
2248
|
'@types/react': ^19.2.0
|
|
2169
2249
|
|
|
2170
|
-
'@types/react-reconciler@0.
|
|
2171
|
-
resolution: {integrity: sha512-
|
|
2250
|
+
'@types/react-reconciler@0.33.0':
|
|
2251
|
+
resolution: {integrity: sha512-HZOXsKT0tGI9LlUw2LuedXsVeB88wFa536vVL0M6vE8zN63nI+sSr1ByxmPToP5K5bukaVscyeCJcF9guVNJ1g==}
|
|
2172
2252
|
peerDependencies:
|
|
2173
2253
|
'@types/react': '*'
|
|
2174
2254
|
|
|
2175
|
-
'@types/react@19.2.
|
|
2176
|
-
resolution: {integrity: sha512-
|
|
2255
|
+
'@types/react@19.2.10':
|
|
2256
|
+
resolution: {integrity: sha512-WPigyYuGhgZ/cTPRXB2EwUw+XvsRA3GqHlsP4qteqrnnjDrApbS7MxcGr/hke5iUoeB7E/gQtrs9I37zAJ0Vjw==}
|
|
2177
2257
|
|
|
2178
2258
|
'@types/statuses@2.0.6':
|
|
2179
2259
|
resolution: {integrity: sha512-xMAgYwceFhRA2zY+XbEA7mxYbA093wdiW8Vu6gZPGWy9cmOyU9XesH1tNcEWsKFd5Vzrqx5T3D38PWx1FIIXkA==}
|
|
@@ -2184,63 +2264,66 @@ packages:
|
|
|
2184
2264
|
'@types/validate-npm-package-name@4.0.2':
|
|
2185
2265
|
resolution: {integrity: sha512-lrpDziQipxCEeK5kWxvljWYhUvOiB2A9izZd9B2AFarYAkqZshb4lPbRs7zKEic6eGtH8V/2qJW+dPp9OtF6bw==}
|
|
2186
2266
|
|
|
2187
|
-
'@
|
|
2188
|
-
resolution: {integrity: sha512-
|
|
2267
|
+
'@types/ws@8.18.1':
|
|
2268
|
+
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
|
|
2269
|
+
|
|
2270
|
+
'@typescript-eslint/eslint-plugin@8.54.0':
|
|
2271
|
+
resolution: {integrity: sha512-hAAP5io/7csFStuOmR782YmTthKBJ9ND3WVL60hcOjvtGFb+HJxH4O5huAcmcZ9v9G8P+JETiZ/G1B8MALnWZQ==}
|
|
2189
2272
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2190
2273
|
peerDependencies:
|
|
2191
|
-
'@typescript-eslint/parser': ^8.
|
|
2274
|
+
'@typescript-eslint/parser': ^8.54.0
|
|
2192
2275
|
eslint: ^8.57.0 || ^9.0.0
|
|
2193
2276
|
typescript: '>=4.8.4 <6.0.0'
|
|
2194
2277
|
|
|
2195
|
-
'@typescript-eslint/parser@8.
|
|
2196
|
-
resolution: {integrity: sha512-
|
|
2278
|
+
'@typescript-eslint/parser@8.54.0':
|
|
2279
|
+
resolution: {integrity: sha512-BtE0k6cjwjLZoZixN0t5AKP0kSzlGu7FctRXYuPAm//aaiZhmfq1JwdYpYr1brzEspYyFeF+8XF5j2VK6oalrA==}
|
|
2197
2280
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2198
2281
|
peerDependencies:
|
|
2199
2282
|
eslint: ^8.57.0 || ^9.0.0
|
|
2200
2283
|
typescript: '>=4.8.4 <6.0.0'
|
|
2201
2284
|
|
|
2202
|
-
'@typescript-eslint/project-service@8.
|
|
2203
|
-
resolution: {integrity: sha512-
|
|
2285
|
+
'@typescript-eslint/project-service@8.54.0':
|
|
2286
|
+
resolution: {integrity: sha512-YPf+rvJ1s7MyiWM4uTRhE4DvBXrEV+d8oC3P9Y2eT7S+HBS0clybdMIPnhiATi9vZOYDc7OQ1L/i6ga6NFYK/g==}
|
|
2204
2287
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2205
2288
|
peerDependencies:
|
|
2206
2289
|
typescript: '>=4.8.4 <6.0.0'
|
|
2207
2290
|
|
|
2208
|
-
'@typescript-eslint/scope-manager@8.
|
|
2209
|
-
resolution: {integrity: sha512-
|
|
2291
|
+
'@typescript-eslint/scope-manager@8.54.0':
|
|
2292
|
+
resolution: {integrity: sha512-27rYVQku26j/PbHYcVfRPonmOlVI6gihHtXFbTdB5sb6qA0wdAQAbyXFVarQ5t4HRojIz64IV90YtsjQSSGlQg==}
|
|
2210
2293
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2211
2294
|
|
|
2212
|
-
'@typescript-eslint/tsconfig-utils@8.
|
|
2213
|
-
resolution: {integrity: sha512-
|
|
2295
|
+
'@typescript-eslint/tsconfig-utils@8.54.0':
|
|
2296
|
+
resolution: {integrity: sha512-dRgOyT2hPk/JwxNMZDsIXDgyl9axdJI3ogZ2XWhBPsnZUv+hPesa5iuhdYt2gzwA9t8RE5ytOJ6xB0moV0Ujvw==}
|
|
2214
2297
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2215
2298
|
peerDependencies:
|
|
2216
2299
|
typescript: '>=4.8.4 <6.0.0'
|
|
2217
2300
|
|
|
2218
|
-
'@typescript-eslint/type-utils@8.
|
|
2219
|
-
resolution: {integrity: sha512-
|
|
2301
|
+
'@typescript-eslint/type-utils@8.54.0':
|
|
2302
|
+
resolution: {integrity: sha512-hiLguxJWHjjwL6xMBwD903ciAwd7DmK30Y9Axs/etOkftC3ZNN9K44IuRD/EB08amu+Zw6W37x9RecLkOo3pMA==}
|
|
2220
2303
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2221
2304
|
peerDependencies:
|
|
2222
2305
|
eslint: ^8.57.0 || ^9.0.0
|
|
2223
2306
|
typescript: '>=4.8.4 <6.0.0'
|
|
2224
2307
|
|
|
2225
|
-
'@typescript-eslint/types@8.
|
|
2226
|
-
resolution: {integrity: sha512-
|
|
2308
|
+
'@typescript-eslint/types@8.54.0':
|
|
2309
|
+
resolution: {integrity: sha512-PDUI9R1BVjqu7AUDsRBbKMtwmjWcn4J3le+5LpcFgWULN3LvHC5rkc9gCVxbrsrGmO1jfPybN5s6h4Jy+OnkAA==}
|
|
2227
2310
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2228
2311
|
|
|
2229
|
-
'@typescript-eslint/typescript-estree@8.
|
|
2230
|
-
resolution: {integrity: sha512-
|
|
2312
|
+
'@typescript-eslint/typescript-estree@8.54.0':
|
|
2313
|
+
resolution: {integrity: sha512-BUwcskRaPvTk6fzVWgDPdUndLjB87KYDrN5EYGetnktoeAvPtO4ONHlAZDnj5VFnUANg0Sjm7j4usBlnoVMHwA==}
|
|
2231
2314
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2232
2315
|
peerDependencies:
|
|
2233
2316
|
typescript: '>=4.8.4 <6.0.0'
|
|
2234
2317
|
|
|
2235
|
-
'@typescript-eslint/utils@8.
|
|
2236
|
-
resolution: {integrity: sha512-
|
|
2318
|
+
'@typescript-eslint/utils@8.54.0':
|
|
2319
|
+
resolution: {integrity: sha512-9Cnda8GS57AQakvRyG0PTejJNlA2xhvyNtEVIMlDWOOeEyBkYWhGPnfrIAnqxLMTSTo6q8g12XVjjev5l1NvMA==}
|
|
2237
2320
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2238
2321
|
peerDependencies:
|
|
2239
2322
|
eslint: ^8.57.0 || ^9.0.0
|
|
2240
2323
|
typescript: '>=4.8.4 <6.0.0'
|
|
2241
2324
|
|
|
2242
|
-
'@typescript-eslint/visitor-keys@8.
|
|
2243
|
-
resolution: {integrity: sha512-
|
|
2325
|
+
'@typescript-eslint/visitor-keys@8.54.0':
|
|
2326
|
+
resolution: {integrity: sha512-VFlhGSl4opC0bprJiItPQ1RfUhGDIBokcPwaFH4yiBCaNPeld/9VeXbiPO1cLyorQi1G1vL+ecBk1x8o1axORA==}
|
|
2244
2327
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2245
2328
|
|
|
2246
2329
|
'@unrs/resolver-binding-android-arm-eabi@1.11.1':
|
|
@@ -2282,41 +2365,49 @@ packages:
|
|
|
2282
2365
|
resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==}
|
|
2283
2366
|
cpu: [arm64]
|
|
2284
2367
|
os: [linux]
|
|
2368
|
+
libc: [glibc]
|
|
2285
2369
|
|
|
2286
2370
|
'@unrs/resolver-binding-linux-arm64-musl@1.11.1':
|
|
2287
2371
|
resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==}
|
|
2288
2372
|
cpu: [arm64]
|
|
2289
2373
|
os: [linux]
|
|
2374
|
+
libc: [musl]
|
|
2290
2375
|
|
|
2291
2376
|
'@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
|
|
2292
2377
|
resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==}
|
|
2293
2378
|
cpu: [ppc64]
|
|
2294
2379
|
os: [linux]
|
|
2380
|
+
libc: [glibc]
|
|
2295
2381
|
|
|
2296
2382
|
'@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
|
|
2297
2383
|
resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==}
|
|
2298
2384
|
cpu: [riscv64]
|
|
2299
2385
|
os: [linux]
|
|
2386
|
+
libc: [glibc]
|
|
2300
2387
|
|
|
2301
2388
|
'@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
|
|
2302
2389
|
resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==}
|
|
2303
2390
|
cpu: [riscv64]
|
|
2304
2391
|
os: [linux]
|
|
2392
|
+
libc: [musl]
|
|
2305
2393
|
|
|
2306
2394
|
'@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
|
|
2307
2395
|
resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==}
|
|
2308
2396
|
cpu: [s390x]
|
|
2309
2397
|
os: [linux]
|
|
2398
|
+
libc: [glibc]
|
|
2310
2399
|
|
|
2311
2400
|
'@unrs/resolver-binding-linux-x64-gnu@1.11.1':
|
|
2312
2401
|
resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==}
|
|
2313
2402
|
cpu: [x64]
|
|
2314
2403
|
os: [linux]
|
|
2404
|
+
libc: [glibc]
|
|
2315
2405
|
|
|
2316
2406
|
'@unrs/resolver-binding-linux-x64-musl@1.11.1':
|
|
2317
2407
|
resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==}
|
|
2318
2408
|
cpu: [x64]
|
|
2319
2409
|
os: [linux]
|
|
2410
|
+
libc: [musl]
|
|
2320
2411
|
|
|
2321
2412
|
'@unrs/resolver-binding-wasm32-wasi@1.11.1':
|
|
2322
2413
|
resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==}
|
|
@@ -2546,8 +2637,8 @@ packages:
|
|
|
2546
2637
|
resolution: {integrity: sha512-BASOg+YwO2C+346x3LZOeoovTIoTrRqEsqMa6fmfAV0P+U9mFr9NsyOEpiYvFjbc64NMrSswhV50WdXzdb/Z5A==}
|
|
2547
2638
|
engines: {node: '>=4'}
|
|
2548
2639
|
|
|
2549
|
-
axios@1.13.
|
|
2550
|
-
resolution: {integrity: sha512-
|
|
2640
|
+
axios@1.13.4:
|
|
2641
|
+
resolution: {integrity: sha512-1wVkUaAO6WyaYtCkcYCOx12ZgpGf9Zif+qXa4n+oYzK558YryKqiL6UWwd5DqiH3VRW0GYhTZQ/vlgJrCoNQlg==}
|
|
2551
2642
|
|
|
2552
2643
|
axobject-query@4.1.0:
|
|
2553
2644
|
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
|
|
@@ -2559,8 +2650,8 @@ packages:
|
|
|
2559
2650
|
base64-js@1.5.1:
|
|
2560
2651
|
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
|
2561
2652
|
|
|
2562
|
-
baseline-browser-mapping@2.9.
|
|
2563
|
-
resolution: {integrity: sha512-
|
|
2653
|
+
baseline-browser-mapping@2.9.18:
|
|
2654
|
+
resolution: {integrity: sha512-e23vBV1ZLfjb9apvfPk4rHVu2ry6RIr2Wfs+O324okSidrX7pTAnEJPCh/O5BtRlr7QtZI7ktOP3vsqr7Z5XoA==}
|
|
2564
2655
|
hasBin: true
|
|
2565
2656
|
|
|
2566
2657
|
binary-extensions@2.3.0:
|
|
@@ -2623,8 +2714,8 @@ packages:
|
|
|
2623
2714
|
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
|
|
2624
2715
|
engines: {node: '>=10'}
|
|
2625
2716
|
|
|
2626
|
-
caniuse-lite@1.0.
|
|
2627
|
-
resolution: {integrity: sha512-
|
|
2717
|
+
caniuse-lite@1.0.30001766:
|
|
2718
|
+
resolution: {integrity: sha512-4C0lfJ0/YPjJQHagaE9x2Elb69CIqEPZeG0anQt9SIvIoOH4a4uaRl73IavyO+0qZh6MDLH//DrXThEYKHkmYA==}
|
|
2628
2719
|
|
|
2629
2720
|
chalk@4.1.2:
|
|
2630
2721
|
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
|
@@ -2653,10 +2744,6 @@ packages:
|
|
|
2653
2744
|
resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
|
|
2654
2745
|
engines: {node: '>=6'}
|
|
2655
2746
|
|
|
2656
|
-
cli-spinners@3.4.0:
|
|
2657
|
-
resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==}
|
|
2658
|
-
engines: {node: '>=18.20'}
|
|
2659
|
-
|
|
2660
2747
|
cli-width@4.1.0:
|
|
2661
2748
|
resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
|
|
2662
2749
|
engines: {node: '>= 12'}
|
|
@@ -2732,8 +2819,8 @@ packages:
|
|
|
2732
2819
|
resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==}
|
|
2733
2820
|
engines: {node: '>=18'}
|
|
2734
2821
|
|
|
2735
|
-
cors@2.8.
|
|
2736
|
-
resolution: {integrity: sha512-
|
|
2822
|
+
cors@2.8.6:
|
|
2823
|
+
resolution: {integrity: sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==}
|
|
2737
2824
|
engines: {node: '>= 0.10'}
|
|
2738
2825
|
|
|
2739
2826
|
cosmiconfig@6.0.0:
|
|
@@ -2749,8 +2836,8 @@ packages:
|
|
|
2749
2836
|
typescript:
|
|
2750
2837
|
optional: true
|
|
2751
2838
|
|
|
2752
|
-
coze-coding-dev-sdk@0.7.
|
|
2753
|
-
resolution: {integrity: sha512-
|
|
2839
|
+
coze-coding-dev-sdk@0.7.16:
|
|
2840
|
+
resolution: {integrity: sha512-B7gRPBa+sfrZL8ur0+F/92SOgZgFaWD/fOnCN2DjthnHSdmCYhAJWCfqzG2oO2vwTiYCXkKUuTBZ3MJLMj886g==}
|
|
2754
2841
|
engines: {node: '>=18.0.0'}
|
|
2755
2842
|
hasBin: true
|
|
2756
2843
|
|
|
@@ -3054,15 +3141,15 @@ packages:
|
|
|
3054
3141
|
duplexer@0.1.2:
|
|
3055
3142
|
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
|
|
3056
3143
|
|
|
3057
|
-
eciesjs@0.4.
|
|
3058
|
-
resolution: {integrity: sha512-
|
|
3144
|
+
eciesjs@0.4.17:
|
|
3145
|
+
resolution: {integrity: sha512-TOOURki4G7sD1wDCjj7NfLaXZZ49dFOeEb5y39IXpb8p0hRzVvfvzZHOi5JcT+PpyAbi/Y+lxPb8eTag2WYH8w==}
|
|
3059
3146
|
engines: {bun: '>=1', deno: '>=2', node: '>=16'}
|
|
3060
3147
|
|
|
3061
3148
|
ee-first@1.1.1:
|
|
3062
3149
|
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
|
|
3063
3150
|
|
|
3064
|
-
electron-to-chromium@1.5.
|
|
3065
|
-
resolution: {integrity: sha512-
|
|
3151
|
+
electron-to-chromium@1.5.279:
|
|
3152
|
+
resolution: {integrity: sha512-0bblUU5UNdOt5G7XqGiJtpZMONma6WAfq9vsFmtn9x1+joAObr6x1chfqyxFSDCAFwFhCQDrqeAr6MYdpwJ9Hg==}
|
|
3066
3153
|
|
|
3067
3154
|
embla-carousel-react@8.6.0:
|
|
3068
3155
|
resolution: {integrity: sha512-0/PjqU7geVmo6F734pmPqpyHqiM99olvyecY7zdweCw+6tKEXnrE90pBiBbMMU8s5tICemzpQ3hi5EpxzGW+JA==}
|
|
@@ -3617,8 +3704,8 @@ packages:
|
|
|
3617
3704
|
hermes-parser@0.25.1:
|
|
3618
3705
|
resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==}
|
|
3619
3706
|
|
|
3620
|
-
hono@4.11.
|
|
3621
|
-
resolution: {integrity: sha512-
|
|
3707
|
+
hono@4.11.7:
|
|
3708
|
+
resolution: {integrity: sha512-l7qMiNee7t82bH3SeyUCt9UF15EVmaBvsppY2zQtrbIhl/yzBTny+YUxsVjSjQ6gaqaeVtZmGocom8TzBlA4Yw==}
|
|
3622
3709
|
engines: {node: '>=16.9.0'}
|
|
3623
3710
|
|
|
3624
3711
|
hotkeys-js@3.13.15:
|
|
@@ -3640,6 +3727,10 @@ packages:
|
|
|
3640
3727
|
resolution: {integrity: sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==}
|
|
3641
3728
|
engines: {node: '>=18.18.0'}
|
|
3642
3729
|
|
|
3730
|
+
iceberg-js@0.8.1:
|
|
3731
|
+
resolution: {integrity: sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==}
|
|
3732
|
+
engines: {node: '>=20.0.0'}
|
|
3733
|
+
|
|
3643
3734
|
iconv-lite@0.7.2:
|
|
3644
3735
|
resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==}
|
|
3645
3736
|
engines: {node: '>=0.10.0'}
|
|
@@ -3966,8 +4057,8 @@ packages:
|
|
|
3966
4057
|
resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
|
|
3967
4058
|
engines: {node: '>=6'}
|
|
3968
4059
|
|
|
3969
|
-
langsmith@0.4.
|
|
3970
|
-
resolution: {integrity: sha512-
|
|
4060
|
+
langsmith@0.4.9:
|
|
4061
|
+
resolution: {integrity: sha512-p2/BbVDAfgiqGx8iZzPoWQ+z/Actl6isbDJcogApYIz9UcMNu0jcDzGbFivJny2vihF0gMT6yhUIOZCsqZnNsg==}
|
|
3971
4062
|
peerDependencies:
|
|
3972
4063
|
'@opentelemetry/api': '*'
|
|
3973
4064
|
'@opentelemetry/exporter-trace-otlp-proto': '*'
|
|
@@ -4029,24 +4120,28 @@ packages:
|
|
|
4029
4120
|
engines: {node: '>= 12.0.0'}
|
|
4030
4121
|
cpu: [arm64]
|
|
4031
4122
|
os: [linux]
|
|
4123
|
+
libc: [glibc]
|
|
4032
4124
|
|
|
4033
4125
|
lightningcss-linux-arm64-musl@1.30.2:
|
|
4034
4126
|
resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
|
|
4035
4127
|
engines: {node: '>= 12.0.0'}
|
|
4036
4128
|
cpu: [arm64]
|
|
4037
4129
|
os: [linux]
|
|
4130
|
+
libc: [musl]
|
|
4038
4131
|
|
|
4039
4132
|
lightningcss-linux-x64-gnu@1.30.2:
|
|
4040
4133
|
resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
|
|
4041
4134
|
engines: {node: '>= 12.0.0'}
|
|
4042
4135
|
cpu: [x64]
|
|
4043
4136
|
os: [linux]
|
|
4137
|
+
libc: [glibc]
|
|
4044
4138
|
|
|
4045
4139
|
lightningcss-linux-x64-musl@1.30.2:
|
|
4046
4140
|
resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
|
|
4047
4141
|
engines: {node: '>= 12.0.0'}
|
|
4048
4142
|
cpu: [x64]
|
|
4049
4143
|
os: [linux]
|
|
4144
|
+
libc: [musl]
|
|
4050
4145
|
|
|
4051
4146
|
lightningcss-win32-arm64-msvc@1.30.2:
|
|
4052
4147
|
resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
|
|
@@ -4086,17 +4181,13 @@ packages:
|
|
|
4086
4181
|
lodash.merge@4.6.2:
|
|
4087
4182
|
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
|
4088
4183
|
|
|
4089
|
-
lodash@4.17.
|
|
4090
|
-
resolution: {integrity: sha512-
|
|
4184
|
+
lodash@4.17.23:
|
|
4185
|
+
resolution: {integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==}
|
|
4091
4186
|
|
|
4092
4187
|
log-symbols@6.0.0:
|
|
4093
4188
|
resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==}
|
|
4094
4189
|
engines: {node: '>=18'}
|
|
4095
4190
|
|
|
4096
|
-
log-symbols@7.0.1:
|
|
4097
|
-
resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
|
|
4098
|
-
engines: {node: '>=18'}
|
|
4099
|
-
|
|
4100
4191
|
loose-envify@1.4.0:
|
|
4101
4192
|
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
|
4102
4193
|
hasBin: true
|
|
@@ -4355,10 +4446,6 @@ packages:
|
|
|
4355
4446
|
resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==}
|
|
4356
4447
|
engines: {node: '>=18'}
|
|
4357
4448
|
|
|
4358
|
-
ora@9.1.0:
|
|
4359
|
-
resolution: {integrity: sha512-53uuLsXHOAJl5zLrUrzY9/kE+uIFEx7iaH4g2BIJQK4LZjY4LpCCYZVKDWIkL+F01wAaCg93duQ1whnK/AmY1A==}
|
|
4360
|
-
engines: {node: '>=20'}
|
|
4361
|
-
|
|
4362
4449
|
outvariant@1.4.3:
|
|
4363
4450
|
resolution: {integrity: sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==}
|
|
4364
4451
|
|
|
@@ -4651,8 +4738,8 @@ packages:
|
|
|
4651
4738
|
'@types/react':
|
|
4652
4739
|
optional: true
|
|
4653
4740
|
|
|
4654
|
-
react-resizable-panels@4.
|
|
4655
|
-
resolution: {integrity: sha512-
|
|
4741
|
+
react-resizable-panels@4.5.2:
|
|
4742
|
+
resolution: {integrity: sha512-PJyyR41poi1O1MvvQzDVtEBRq1x7B/9jB6yoFbm67pm8AvPUUwhljFtxfhaYy8klsmkQ6AvxZgDxXTkDl4vy4Q==}
|
|
4656
4743
|
peerDependencies:
|
|
4657
4744
|
react: ^18.0.0 || ^19.0.0
|
|
4658
4745
|
react-dom: ^18.0.0 || ^19.0.0
|
|
@@ -4930,10 +5017,6 @@ packages:
|
|
|
4930
5017
|
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
|
|
4931
5018
|
engines: {node: '>=18'}
|
|
4932
5019
|
|
|
4933
|
-
string-width@8.1.0:
|
|
4934
|
-
resolution: {integrity: sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==}
|
|
4935
|
-
engines: {node: '>=20'}
|
|
4936
|
-
|
|
4937
5020
|
string.prototype.includes@2.0.1:
|
|
4938
5021
|
resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
|
|
4939
5022
|
engines: {node: '>= 0.4'}
|
|
@@ -5092,11 +5175,6 @@ packages:
|
|
|
5092
5175
|
resolution: {integrity: sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==}
|
|
5093
5176
|
engines: {node: '>=16'}
|
|
5094
5177
|
|
|
5095
|
-
transliteration@2.6.1:
|
|
5096
|
-
resolution: {integrity: sha512-hJ9BhrQAOnNTbpOr1MxsNjZISkn7ppvF5TKUeFmTE1mG4ZPD/XVxF0L0LUoIUCWmQyxH0gJpVtfYLAWf298U9w==}
|
|
5097
|
-
engines: {node: '>=20.0.0'}
|
|
5098
|
-
hasBin: true
|
|
5099
|
-
|
|
5100
5178
|
ts-api-utils@2.4.0:
|
|
5101
5179
|
resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
|
|
5102
5180
|
engines: {node: '>=18.12'}
|
|
@@ -5116,6 +5194,11 @@ packages:
|
|
|
5116
5194
|
tslib@2.8.1:
|
|
5117
5195
|
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
5118
5196
|
|
|
5197
|
+
tsx@4.21.0:
|
|
5198
|
+
resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
|
|
5199
|
+
engines: {node: '>=18.0.0'}
|
|
5200
|
+
hasBin: true
|
|
5201
|
+
|
|
5119
5202
|
tw-animate-css@1.4.0:
|
|
5120
5203
|
resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==}
|
|
5121
5204
|
|
|
@@ -5123,8 +5206,8 @@ packages:
|
|
|
5123
5206
|
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
5124
5207
|
engines: {node: '>= 0.8.0'}
|
|
5125
5208
|
|
|
5126
|
-
type-fest@5.4.
|
|
5127
|
-
resolution: {integrity: sha512-
|
|
5209
|
+
type-fest@5.4.2:
|
|
5210
|
+
resolution: {integrity: sha512-FLEenlVYf7Zcd34ISMLo3ZzRE1gRjY1nMDTp+bQRBiPsaKyIW8K3Zr99ioHDUgA9OGuGGJPyYpNcffGmBhJfGg==}
|
|
5128
5211
|
engines: {node: '>=20'}
|
|
5129
5212
|
|
|
5130
5213
|
type-is@2.0.1:
|
|
@@ -5147,8 +5230,8 @@ packages:
|
|
|
5147
5230
|
resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
|
|
5148
5231
|
engines: {node: '>= 0.4'}
|
|
5149
5232
|
|
|
5150
|
-
typescript-eslint@8.
|
|
5151
|
-
resolution: {integrity: sha512-
|
|
5233
|
+
typescript-eslint@8.54.0:
|
|
5234
|
+
resolution: {integrity: sha512-CKsJ+g53QpsNPqbzUsfKVgd3Lny4yKZ1pP4qN3jdMOg/sisIDLGyDMezycquXLE5JsEU0wp3dGNdzig0/fmSVQ==}
|
|
5152
5235
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
5153
5236
|
peerDependencies:
|
|
5154
5237
|
eslint: ^8.57.0 || ^9.0.0
|
|
@@ -5313,6 +5396,18 @@ packages:
|
|
|
5313
5396
|
wrappy@1.0.2:
|
|
5314
5397
|
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
|
|
5315
5398
|
|
|
5399
|
+
ws@8.19.0:
|
|
5400
|
+
resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
|
|
5401
|
+
engines: {node: '>=10.0.0'}
|
|
5402
|
+
peerDependencies:
|
|
5403
|
+
bufferutil: ^4.0.1
|
|
5404
|
+
utf-8-validate: '>=5.0.2'
|
|
5405
|
+
peerDependenciesMeta:
|
|
5406
|
+
bufferutil:
|
|
5407
|
+
optional: true
|
|
5408
|
+
utf-8-validate:
|
|
5409
|
+
optional: true
|
|
5410
|
+
|
|
5316
5411
|
wsl-utils@0.3.1:
|
|
5317
5412
|
resolution: {integrity: sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==}
|
|
5318
5413
|
engines: {node: '>=20'}
|
|
@@ -5366,8 +5461,8 @@ packages:
|
|
|
5366
5461
|
zod@3.25.76:
|
|
5367
5462
|
resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
|
|
5368
5463
|
|
|
5369
|
-
zod@4.3.
|
|
5370
|
-
resolution: {integrity: sha512-
|
|
5464
|
+
zod@4.3.6:
|
|
5465
|
+
resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==}
|
|
5371
5466
|
|
|
5372
5467
|
snapshots:
|
|
5373
5468
|
|
|
@@ -5383,21 +5478,21 @@ snapshots:
|
|
|
5383
5478
|
'@aws-crypto/crc32@5.2.0':
|
|
5384
5479
|
dependencies:
|
|
5385
5480
|
'@aws-crypto/util': 5.2.0
|
|
5386
|
-
'@aws-sdk/types': 3.
|
|
5481
|
+
'@aws-sdk/types': 3.973.1
|
|
5387
5482
|
tslib: 2.8.1
|
|
5388
5483
|
|
|
5389
5484
|
'@aws-crypto/crc32c@5.2.0':
|
|
5390
5485
|
dependencies:
|
|
5391
5486
|
'@aws-crypto/util': 5.2.0
|
|
5392
|
-
'@aws-sdk/types': 3.
|
|
5487
|
+
'@aws-sdk/types': 3.973.1
|
|
5393
5488
|
tslib: 2.8.1
|
|
5394
5489
|
|
|
5395
5490
|
'@aws-crypto/sha1-browser@5.2.0':
|
|
5396
5491
|
dependencies:
|
|
5397
5492
|
'@aws-crypto/supports-web-crypto': 5.2.0
|
|
5398
5493
|
'@aws-crypto/util': 5.2.0
|
|
5399
|
-
'@aws-sdk/types': 3.
|
|
5400
|
-
'@aws-sdk/util-locate-window': 3.965.
|
|
5494
|
+
'@aws-sdk/types': 3.973.1
|
|
5495
|
+
'@aws-sdk/util-locate-window': 3.965.4
|
|
5401
5496
|
'@smithy/util-utf8': 2.3.0
|
|
5402
5497
|
tslib: 2.8.1
|
|
5403
5498
|
|
|
@@ -5406,15 +5501,15 @@ snapshots:
|
|
|
5406
5501
|
'@aws-crypto/sha256-js': 5.2.0
|
|
5407
5502
|
'@aws-crypto/supports-web-crypto': 5.2.0
|
|
5408
5503
|
'@aws-crypto/util': 5.2.0
|
|
5409
|
-
'@aws-sdk/types': 3.
|
|
5410
|
-
'@aws-sdk/util-locate-window': 3.965.
|
|
5504
|
+
'@aws-sdk/types': 3.973.1
|
|
5505
|
+
'@aws-sdk/util-locate-window': 3.965.4
|
|
5411
5506
|
'@smithy/util-utf8': 2.3.0
|
|
5412
5507
|
tslib: 2.8.1
|
|
5413
5508
|
|
|
5414
5509
|
'@aws-crypto/sha256-js@5.2.0':
|
|
5415
5510
|
dependencies:
|
|
5416
5511
|
'@aws-crypto/util': 5.2.0
|
|
5417
|
-
'@aws-sdk/types': 3.
|
|
5512
|
+
'@aws-sdk/types': 3.973.1
|
|
5418
5513
|
tslib: 2.8.1
|
|
5419
5514
|
|
|
5420
5515
|
'@aws-crypto/supports-web-crypto@5.2.0':
|
|
@@ -5423,35 +5518,35 @@ snapshots:
|
|
|
5423
5518
|
|
|
5424
5519
|
'@aws-crypto/util@5.2.0':
|
|
5425
5520
|
dependencies:
|
|
5426
|
-
'@aws-sdk/types': 3.
|
|
5521
|
+
'@aws-sdk/types': 3.973.1
|
|
5427
5522
|
'@smithy/util-utf8': 2.3.0
|
|
5428
5523
|
tslib: 2.8.1
|
|
5429
5524
|
|
|
5430
|
-
'@aws-sdk/client-s3@3.
|
|
5525
|
+
'@aws-sdk/client-s3@3.975.0':
|
|
5431
5526
|
dependencies:
|
|
5432
5527
|
'@aws-crypto/sha1-browser': 5.2.0
|
|
5433
5528
|
'@aws-crypto/sha256-browser': 5.2.0
|
|
5434
5529
|
'@aws-crypto/sha256-js': 5.2.0
|
|
5435
|
-
'@aws-sdk/core': 3.
|
|
5436
|
-
'@aws-sdk/credential-provider-node': 3.972.
|
|
5437
|
-
'@aws-sdk/middleware-bucket-endpoint': 3.972.
|
|
5438
|
-
'@aws-sdk/middleware-expect-continue': 3.972.
|
|
5439
|
-
'@aws-sdk/middleware-flexible-checksums': 3.972.
|
|
5440
|
-
'@aws-sdk/middleware-host-header': 3.972.
|
|
5441
|
-
'@aws-sdk/middleware-location-constraint': 3.972.
|
|
5442
|
-
'@aws-sdk/middleware-logger': 3.972.
|
|
5443
|
-
'@aws-sdk/middleware-recursion-detection': 3.972.
|
|
5444
|
-
'@aws-sdk/middleware-sdk-s3': 3.972.
|
|
5445
|
-
'@aws-sdk/middleware-ssec': 3.972.
|
|
5446
|
-
'@aws-sdk/middleware-user-agent': 3.972.
|
|
5447
|
-
'@aws-sdk/region-config-resolver': 3.972.
|
|
5530
|
+
'@aws-sdk/core': 3.973.3
|
|
5531
|
+
'@aws-sdk/credential-provider-node': 3.972.2
|
|
5532
|
+
'@aws-sdk/middleware-bucket-endpoint': 3.972.1
|
|
5533
|
+
'@aws-sdk/middleware-expect-continue': 3.972.1
|
|
5534
|
+
'@aws-sdk/middleware-flexible-checksums': 3.972.1
|
|
5535
|
+
'@aws-sdk/middleware-host-header': 3.972.2
|
|
5536
|
+
'@aws-sdk/middleware-location-constraint': 3.972.1
|
|
5537
|
+
'@aws-sdk/middleware-logger': 3.972.2
|
|
5538
|
+
'@aws-sdk/middleware-recursion-detection': 3.972.2
|
|
5539
|
+
'@aws-sdk/middleware-sdk-s3': 3.972.2
|
|
5540
|
+
'@aws-sdk/middleware-ssec': 3.972.1
|
|
5541
|
+
'@aws-sdk/middleware-user-agent': 3.972.3
|
|
5542
|
+
'@aws-sdk/region-config-resolver': 3.972.2
|
|
5448
5543
|
'@aws-sdk/signature-v4-multi-region': 3.972.0
|
|
5449
|
-
'@aws-sdk/types': 3.
|
|
5544
|
+
'@aws-sdk/types': 3.973.1
|
|
5450
5545
|
'@aws-sdk/util-endpoints': 3.972.0
|
|
5451
|
-
'@aws-sdk/util-user-agent-browser': 3.972.
|
|
5452
|
-
'@aws-sdk/util-user-agent-node': 3.972.
|
|
5546
|
+
'@aws-sdk/util-user-agent-browser': 3.972.2
|
|
5547
|
+
'@aws-sdk/util-user-agent-node': 3.972.2
|
|
5453
5548
|
'@smithy/config-resolver': 4.4.6
|
|
5454
|
-
'@smithy/core': 3.
|
|
5549
|
+
'@smithy/core': 3.22.0
|
|
5455
5550
|
'@smithy/eventstream-serde-browser': 4.2.8
|
|
5456
5551
|
'@smithy/eventstream-serde-config-resolver': 4.3.8
|
|
5457
5552
|
'@smithy/eventstream-serde-node': 4.2.8
|
|
@@ -5462,21 +5557,21 @@ snapshots:
|
|
|
5462
5557
|
'@smithy/invalid-dependency': 4.2.8
|
|
5463
5558
|
'@smithy/md5-js': 4.2.8
|
|
5464
5559
|
'@smithy/middleware-content-length': 4.2.8
|
|
5465
|
-
'@smithy/middleware-endpoint': 4.4.
|
|
5466
|
-
'@smithy/middleware-retry': 4.4.
|
|
5560
|
+
'@smithy/middleware-endpoint': 4.4.12
|
|
5561
|
+
'@smithy/middleware-retry': 4.4.29
|
|
5467
5562
|
'@smithy/middleware-serde': 4.2.9
|
|
5468
5563
|
'@smithy/middleware-stack': 4.2.8
|
|
5469
5564
|
'@smithy/node-config-provider': 4.3.8
|
|
5470
5565
|
'@smithy/node-http-handler': 4.4.8
|
|
5471
5566
|
'@smithy/protocol-http': 5.3.8
|
|
5472
|
-
'@smithy/smithy-client': 4.
|
|
5567
|
+
'@smithy/smithy-client': 4.11.1
|
|
5473
5568
|
'@smithy/types': 4.12.0
|
|
5474
5569
|
'@smithy/url-parser': 4.2.8
|
|
5475
5570
|
'@smithy/util-base64': 4.3.0
|
|
5476
5571
|
'@smithy/util-body-length-browser': 4.2.0
|
|
5477
5572
|
'@smithy/util-body-length-node': 4.2.1
|
|
5478
|
-
'@smithy/util-defaults-mode-browser': 4.3.
|
|
5479
|
-
'@smithy/util-defaults-mode-node': 4.2.
|
|
5573
|
+
'@smithy/util-defaults-mode-browser': 4.3.28
|
|
5574
|
+
'@smithy/util-defaults-mode-node': 4.2.31
|
|
5480
5575
|
'@smithy/util-endpoints': 3.2.8
|
|
5481
5576
|
'@smithy/util-middleware': 4.2.8
|
|
5482
5577
|
'@smithy/util-retry': 4.2.8
|
|
@@ -5487,41 +5582,41 @@ snapshots:
|
|
|
5487
5582
|
transitivePeerDependencies:
|
|
5488
5583
|
- aws-crt
|
|
5489
5584
|
|
|
5490
|
-
'@aws-sdk/client-sso@3.
|
|
5585
|
+
'@aws-sdk/client-sso@3.975.0':
|
|
5491
5586
|
dependencies:
|
|
5492
5587
|
'@aws-crypto/sha256-browser': 5.2.0
|
|
5493
5588
|
'@aws-crypto/sha256-js': 5.2.0
|
|
5494
|
-
'@aws-sdk/core': 3.
|
|
5495
|
-
'@aws-sdk/middleware-host-header': 3.972.
|
|
5496
|
-
'@aws-sdk/middleware-logger': 3.972.
|
|
5497
|
-
'@aws-sdk/middleware-recursion-detection': 3.972.
|
|
5498
|
-
'@aws-sdk/middleware-user-agent': 3.972.
|
|
5499
|
-
'@aws-sdk/region-config-resolver': 3.972.
|
|
5500
|
-
'@aws-sdk/types': 3.
|
|
5589
|
+
'@aws-sdk/core': 3.973.3
|
|
5590
|
+
'@aws-sdk/middleware-host-header': 3.972.2
|
|
5591
|
+
'@aws-sdk/middleware-logger': 3.972.2
|
|
5592
|
+
'@aws-sdk/middleware-recursion-detection': 3.972.2
|
|
5593
|
+
'@aws-sdk/middleware-user-agent': 3.972.3
|
|
5594
|
+
'@aws-sdk/region-config-resolver': 3.972.2
|
|
5595
|
+
'@aws-sdk/types': 3.973.1
|
|
5501
5596
|
'@aws-sdk/util-endpoints': 3.972.0
|
|
5502
|
-
'@aws-sdk/util-user-agent-browser': 3.972.
|
|
5503
|
-
'@aws-sdk/util-user-agent-node': 3.972.
|
|
5597
|
+
'@aws-sdk/util-user-agent-browser': 3.972.2
|
|
5598
|
+
'@aws-sdk/util-user-agent-node': 3.972.2
|
|
5504
5599
|
'@smithy/config-resolver': 4.4.6
|
|
5505
|
-
'@smithy/core': 3.
|
|
5600
|
+
'@smithy/core': 3.22.0
|
|
5506
5601
|
'@smithy/fetch-http-handler': 5.3.9
|
|
5507
5602
|
'@smithy/hash-node': 4.2.8
|
|
5508
5603
|
'@smithy/invalid-dependency': 4.2.8
|
|
5509
5604
|
'@smithy/middleware-content-length': 4.2.8
|
|
5510
|
-
'@smithy/middleware-endpoint': 4.4.
|
|
5511
|
-
'@smithy/middleware-retry': 4.4.
|
|
5605
|
+
'@smithy/middleware-endpoint': 4.4.12
|
|
5606
|
+
'@smithy/middleware-retry': 4.4.29
|
|
5512
5607
|
'@smithy/middleware-serde': 4.2.9
|
|
5513
5608
|
'@smithy/middleware-stack': 4.2.8
|
|
5514
5609
|
'@smithy/node-config-provider': 4.3.8
|
|
5515
5610
|
'@smithy/node-http-handler': 4.4.8
|
|
5516
5611
|
'@smithy/protocol-http': 5.3.8
|
|
5517
|
-
'@smithy/smithy-client': 4.
|
|
5612
|
+
'@smithy/smithy-client': 4.11.1
|
|
5518
5613
|
'@smithy/types': 4.12.0
|
|
5519
5614
|
'@smithy/url-parser': 4.2.8
|
|
5520
5615
|
'@smithy/util-base64': 4.3.0
|
|
5521
5616
|
'@smithy/util-body-length-browser': 4.2.0
|
|
5522
5617
|
'@smithy/util-body-length-node': 4.2.1
|
|
5523
|
-
'@smithy/util-defaults-mode-browser': 4.3.
|
|
5524
|
-
'@smithy/util-defaults-mode-node': 4.2.
|
|
5618
|
+
'@smithy/util-defaults-mode-browser': 4.3.28
|
|
5619
|
+
'@smithy/util-defaults-mode-node': 4.2.31
|
|
5525
5620
|
'@smithy/util-endpoints': 3.2.8
|
|
5526
5621
|
'@smithy/util-middleware': 4.2.8
|
|
5527
5622
|
'@smithy/util-retry': 4.2.8
|
|
@@ -5534,12 +5629,28 @@ snapshots:
|
|
|
5534
5629
|
dependencies:
|
|
5535
5630
|
'@aws-sdk/types': 3.972.0
|
|
5536
5631
|
'@aws-sdk/xml-builder': 3.972.0
|
|
5537
|
-
'@smithy/core': 3.
|
|
5632
|
+
'@smithy/core': 3.22.0
|
|
5633
|
+
'@smithy/node-config-provider': 4.3.8
|
|
5634
|
+
'@smithy/property-provider': 4.2.8
|
|
5635
|
+
'@smithy/protocol-http': 5.3.8
|
|
5636
|
+
'@smithy/signature-v4': 5.3.8
|
|
5637
|
+
'@smithy/smithy-client': 4.11.1
|
|
5638
|
+
'@smithy/types': 4.12.0
|
|
5639
|
+
'@smithy/util-base64': 4.3.0
|
|
5640
|
+
'@smithy/util-middleware': 4.2.8
|
|
5641
|
+
'@smithy/util-utf8': 4.2.0
|
|
5642
|
+
tslib: 2.8.1
|
|
5643
|
+
|
|
5644
|
+
'@aws-sdk/core@3.973.3':
|
|
5645
|
+
dependencies:
|
|
5646
|
+
'@aws-sdk/types': 3.973.1
|
|
5647
|
+
'@aws-sdk/xml-builder': 3.972.2
|
|
5648
|
+
'@smithy/core': 3.22.0
|
|
5538
5649
|
'@smithy/node-config-provider': 4.3.8
|
|
5539
5650
|
'@smithy/property-provider': 4.2.8
|
|
5540
5651
|
'@smithy/protocol-http': 5.3.8
|
|
5541
5652
|
'@smithy/signature-v4': 5.3.8
|
|
5542
|
-
'@smithy/smithy-client': 4.
|
|
5653
|
+
'@smithy/smithy-client': 4.11.1
|
|
5543
5654
|
'@smithy/types': 4.12.0
|
|
5544
5655
|
'@smithy/util-base64': 4.3.0
|
|
5545
5656
|
'@smithy/util-middleware': 4.2.8
|
|
@@ -5551,38 +5662,38 @@ snapshots:
|
|
|
5551
5662
|
'@smithy/types': 4.12.0
|
|
5552
5663
|
tslib: 2.8.1
|
|
5553
5664
|
|
|
5554
|
-
'@aws-sdk/credential-provider-env@3.972.
|
|
5665
|
+
'@aws-sdk/credential-provider-env@3.972.2':
|
|
5555
5666
|
dependencies:
|
|
5556
|
-
'@aws-sdk/core': 3.
|
|
5557
|
-
'@aws-sdk/types': 3.
|
|
5667
|
+
'@aws-sdk/core': 3.973.3
|
|
5668
|
+
'@aws-sdk/types': 3.973.1
|
|
5558
5669
|
'@smithy/property-provider': 4.2.8
|
|
5559
5670
|
'@smithy/types': 4.12.0
|
|
5560
5671
|
tslib: 2.8.1
|
|
5561
5672
|
|
|
5562
|
-
'@aws-sdk/credential-provider-http@3.972.
|
|
5673
|
+
'@aws-sdk/credential-provider-http@3.972.3':
|
|
5563
5674
|
dependencies:
|
|
5564
|
-
'@aws-sdk/core': 3.
|
|
5565
|
-
'@aws-sdk/types': 3.
|
|
5675
|
+
'@aws-sdk/core': 3.973.3
|
|
5676
|
+
'@aws-sdk/types': 3.973.1
|
|
5566
5677
|
'@smithy/fetch-http-handler': 5.3.9
|
|
5567
5678
|
'@smithy/node-http-handler': 4.4.8
|
|
5568
5679
|
'@smithy/property-provider': 4.2.8
|
|
5569
5680
|
'@smithy/protocol-http': 5.3.8
|
|
5570
|
-
'@smithy/smithy-client': 4.
|
|
5681
|
+
'@smithy/smithy-client': 4.11.1
|
|
5571
5682
|
'@smithy/types': 4.12.0
|
|
5572
5683
|
'@smithy/util-stream': 4.5.10
|
|
5573
5684
|
tslib: 2.8.1
|
|
5574
5685
|
|
|
5575
|
-
'@aws-sdk/credential-provider-ini@3.972.
|
|
5576
|
-
dependencies:
|
|
5577
|
-
'@aws-sdk/core': 3.
|
|
5578
|
-
'@aws-sdk/credential-provider-env': 3.972.
|
|
5579
|
-
'@aws-sdk/credential-provider-http': 3.972.
|
|
5580
|
-
'@aws-sdk/credential-provider-login': 3.972.
|
|
5581
|
-
'@aws-sdk/credential-provider-process': 3.972.
|
|
5582
|
-
'@aws-sdk/credential-provider-sso': 3.972.
|
|
5583
|
-
'@aws-sdk/credential-provider-web-identity': 3.972.
|
|
5584
|
-
'@aws-sdk/nested-clients': 3.
|
|
5585
|
-
'@aws-sdk/types': 3.
|
|
5686
|
+
'@aws-sdk/credential-provider-ini@3.972.2':
|
|
5687
|
+
dependencies:
|
|
5688
|
+
'@aws-sdk/core': 3.973.3
|
|
5689
|
+
'@aws-sdk/credential-provider-env': 3.972.2
|
|
5690
|
+
'@aws-sdk/credential-provider-http': 3.972.3
|
|
5691
|
+
'@aws-sdk/credential-provider-login': 3.972.2
|
|
5692
|
+
'@aws-sdk/credential-provider-process': 3.972.2
|
|
5693
|
+
'@aws-sdk/credential-provider-sso': 3.972.2
|
|
5694
|
+
'@aws-sdk/credential-provider-web-identity': 3.972.2
|
|
5695
|
+
'@aws-sdk/nested-clients': 3.975.0
|
|
5696
|
+
'@aws-sdk/types': 3.973.1
|
|
5586
5697
|
'@smithy/credential-provider-imds': 4.2.8
|
|
5587
5698
|
'@smithy/property-provider': 4.2.8
|
|
5588
5699
|
'@smithy/shared-ini-file-loader': 4.4.3
|
|
@@ -5591,11 +5702,11 @@ snapshots:
|
|
|
5591
5702
|
transitivePeerDependencies:
|
|
5592
5703
|
- aws-crt
|
|
5593
5704
|
|
|
5594
|
-
'@aws-sdk/credential-provider-login@3.972.
|
|
5705
|
+
'@aws-sdk/credential-provider-login@3.972.2':
|
|
5595
5706
|
dependencies:
|
|
5596
|
-
'@aws-sdk/core': 3.
|
|
5597
|
-
'@aws-sdk/nested-clients': 3.
|
|
5598
|
-
'@aws-sdk/types': 3.
|
|
5707
|
+
'@aws-sdk/core': 3.973.3
|
|
5708
|
+
'@aws-sdk/nested-clients': 3.975.0
|
|
5709
|
+
'@aws-sdk/types': 3.973.1
|
|
5599
5710
|
'@smithy/property-provider': 4.2.8
|
|
5600
5711
|
'@smithy/protocol-http': 5.3.8
|
|
5601
5712
|
'@smithy/shared-ini-file-loader': 4.4.3
|
|
@@ -5604,15 +5715,15 @@ snapshots:
|
|
|
5604
5715
|
transitivePeerDependencies:
|
|
5605
5716
|
- aws-crt
|
|
5606
5717
|
|
|
5607
|
-
'@aws-sdk/credential-provider-node@3.972.
|
|
5718
|
+
'@aws-sdk/credential-provider-node@3.972.2':
|
|
5608
5719
|
dependencies:
|
|
5609
|
-
'@aws-sdk/credential-provider-env': 3.972.
|
|
5610
|
-
'@aws-sdk/credential-provider-http': 3.972.
|
|
5611
|
-
'@aws-sdk/credential-provider-ini': 3.972.
|
|
5612
|
-
'@aws-sdk/credential-provider-process': 3.972.
|
|
5613
|
-
'@aws-sdk/credential-provider-sso': 3.972.
|
|
5614
|
-
'@aws-sdk/credential-provider-web-identity': 3.972.
|
|
5615
|
-
'@aws-sdk/types': 3.
|
|
5720
|
+
'@aws-sdk/credential-provider-env': 3.972.2
|
|
5721
|
+
'@aws-sdk/credential-provider-http': 3.972.3
|
|
5722
|
+
'@aws-sdk/credential-provider-ini': 3.972.2
|
|
5723
|
+
'@aws-sdk/credential-provider-process': 3.972.2
|
|
5724
|
+
'@aws-sdk/credential-provider-sso': 3.972.2
|
|
5725
|
+
'@aws-sdk/credential-provider-web-identity': 3.972.2
|
|
5726
|
+
'@aws-sdk/types': 3.973.1
|
|
5616
5727
|
'@smithy/credential-provider-imds': 4.2.8
|
|
5617
5728
|
'@smithy/property-provider': 4.2.8
|
|
5618
5729
|
'@smithy/shared-ini-file-loader': 4.4.3
|
|
@@ -5621,21 +5732,21 @@ snapshots:
|
|
|
5621
5732
|
transitivePeerDependencies:
|
|
5622
5733
|
- aws-crt
|
|
5623
5734
|
|
|
5624
|
-
'@aws-sdk/credential-provider-process@3.972.
|
|
5735
|
+
'@aws-sdk/credential-provider-process@3.972.2':
|
|
5625
5736
|
dependencies:
|
|
5626
|
-
'@aws-sdk/core': 3.
|
|
5627
|
-
'@aws-sdk/types': 3.
|
|
5737
|
+
'@aws-sdk/core': 3.973.3
|
|
5738
|
+
'@aws-sdk/types': 3.973.1
|
|
5628
5739
|
'@smithy/property-provider': 4.2.8
|
|
5629
5740
|
'@smithy/shared-ini-file-loader': 4.4.3
|
|
5630
5741
|
'@smithy/types': 4.12.0
|
|
5631
5742
|
tslib: 2.8.1
|
|
5632
5743
|
|
|
5633
|
-
'@aws-sdk/credential-provider-sso@3.972.
|
|
5744
|
+
'@aws-sdk/credential-provider-sso@3.972.2':
|
|
5634
5745
|
dependencies:
|
|
5635
|
-
'@aws-sdk/client-sso': 3.
|
|
5636
|
-
'@aws-sdk/core': 3.
|
|
5637
|
-
'@aws-sdk/token-providers': 3.
|
|
5638
|
-
'@aws-sdk/types': 3.
|
|
5746
|
+
'@aws-sdk/client-sso': 3.975.0
|
|
5747
|
+
'@aws-sdk/core': 3.973.3
|
|
5748
|
+
'@aws-sdk/token-providers': 3.975.0
|
|
5749
|
+
'@aws-sdk/types': 3.973.1
|
|
5639
5750
|
'@smithy/property-provider': 4.2.8
|
|
5640
5751
|
'@smithy/shared-ini-file-loader': 4.4.3
|
|
5641
5752
|
'@smithy/types': 4.12.0
|
|
@@ -5643,11 +5754,11 @@ snapshots:
|
|
|
5643
5754
|
transitivePeerDependencies:
|
|
5644
5755
|
- aws-crt
|
|
5645
5756
|
|
|
5646
|
-
'@aws-sdk/credential-provider-web-identity@3.972.
|
|
5757
|
+
'@aws-sdk/credential-provider-web-identity@3.972.2':
|
|
5647
5758
|
dependencies:
|
|
5648
|
-
'@aws-sdk/core': 3.
|
|
5649
|
-
'@aws-sdk/nested-clients': 3.
|
|
5650
|
-
'@aws-sdk/types': 3.
|
|
5759
|
+
'@aws-sdk/core': 3.973.3
|
|
5760
|
+
'@aws-sdk/nested-clients': 3.975.0
|
|
5761
|
+
'@aws-sdk/types': 3.973.1
|
|
5651
5762
|
'@smithy/property-provider': 4.2.8
|
|
5652
5763
|
'@smithy/shared-ini-file-loader': 4.4.3
|
|
5653
5764
|
'@smithy/types': 4.12.0
|
|
@@ -5655,42 +5766,42 @@ snapshots:
|
|
|
5655
5766
|
transitivePeerDependencies:
|
|
5656
5767
|
- aws-crt
|
|
5657
5768
|
|
|
5658
|
-
'@aws-sdk/lib-storage@3.
|
|
5769
|
+
'@aws-sdk/lib-storage@3.975.0(@aws-sdk/client-s3@3.975.0)':
|
|
5659
5770
|
dependencies:
|
|
5660
|
-
'@aws-sdk/client-s3': 3.
|
|
5771
|
+
'@aws-sdk/client-s3': 3.975.0
|
|
5661
5772
|
'@smithy/abort-controller': 4.2.8
|
|
5662
|
-
'@smithy/middleware-endpoint': 4.4.
|
|
5663
|
-
'@smithy/smithy-client': 4.
|
|
5773
|
+
'@smithy/middleware-endpoint': 4.4.12
|
|
5774
|
+
'@smithy/smithy-client': 4.11.1
|
|
5664
5775
|
buffer: 5.6.0
|
|
5665
5776
|
events: 3.3.0
|
|
5666
5777
|
stream-browserify: 3.0.0
|
|
5667
5778
|
tslib: 2.8.1
|
|
5668
5779
|
|
|
5669
|
-
'@aws-sdk/middleware-bucket-endpoint@3.972.
|
|
5780
|
+
'@aws-sdk/middleware-bucket-endpoint@3.972.1':
|
|
5670
5781
|
dependencies:
|
|
5671
|
-
'@aws-sdk/types': 3.
|
|
5672
|
-
'@aws-sdk/util-arn-parser': 3.972.
|
|
5782
|
+
'@aws-sdk/types': 3.973.1
|
|
5783
|
+
'@aws-sdk/util-arn-parser': 3.972.1
|
|
5673
5784
|
'@smithy/node-config-provider': 4.3.8
|
|
5674
5785
|
'@smithy/protocol-http': 5.3.8
|
|
5675
5786
|
'@smithy/types': 4.12.0
|
|
5676
5787
|
'@smithy/util-config-provider': 4.2.0
|
|
5677
5788
|
tslib: 2.8.1
|
|
5678
5789
|
|
|
5679
|
-
'@aws-sdk/middleware-expect-continue@3.972.
|
|
5790
|
+
'@aws-sdk/middleware-expect-continue@3.972.1':
|
|
5680
5791
|
dependencies:
|
|
5681
|
-
'@aws-sdk/types': 3.
|
|
5792
|
+
'@aws-sdk/types': 3.973.1
|
|
5682
5793
|
'@smithy/protocol-http': 5.3.8
|
|
5683
5794
|
'@smithy/types': 4.12.0
|
|
5684
5795
|
tslib: 2.8.1
|
|
5685
5796
|
|
|
5686
|
-
'@aws-sdk/middleware-flexible-checksums@3.972.
|
|
5797
|
+
'@aws-sdk/middleware-flexible-checksums@3.972.1':
|
|
5687
5798
|
dependencies:
|
|
5688
5799
|
'@aws-crypto/crc32': 5.2.0
|
|
5689
5800
|
'@aws-crypto/crc32c': 5.2.0
|
|
5690
5801
|
'@aws-crypto/util': 5.2.0
|
|
5691
|
-
'@aws-sdk/core': 3.
|
|
5802
|
+
'@aws-sdk/core': 3.973.3
|
|
5692
5803
|
'@aws-sdk/crc64-nvme': 3.972.0
|
|
5693
|
-
'@aws-sdk/types': 3.
|
|
5804
|
+
'@aws-sdk/types': 3.973.1
|
|
5694
5805
|
'@smithy/is-array-buffer': 4.2.0
|
|
5695
5806
|
'@smithy/node-config-provider': 4.3.8
|
|
5696
5807
|
'@smithy/protocol-http': 5.3.8
|
|
@@ -5700,28 +5811,28 @@ snapshots:
|
|
|
5700
5811
|
'@smithy/util-utf8': 4.2.0
|
|
5701
5812
|
tslib: 2.8.1
|
|
5702
5813
|
|
|
5703
|
-
'@aws-sdk/middleware-host-header@3.972.
|
|
5814
|
+
'@aws-sdk/middleware-host-header@3.972.2':
|
|
5704
5815
|
dependencies:
|
|
5705
|
-
'@aws-sdk/types': 3.
|
|
5816
|
+
'@aws-sdk/types': 3.973.1
|
|
5706
5817
|
'@smithy/protocol-http': 5.3.8
|
|
5707
5818
|
'@smithy/types': 4.12.0
|
|
5708
5819
|
tslib: 2.8.1
|
|
5709
5820
|
|
|
5710
|
-
'@aws-sdk/middleware-location-constraint@3.972.
|
|
5821
|
+
'@aws-sdk/middleware-location-constraint@3.972.1':
|
|
5711
5822
|
dependencies:
|
|
5712
|
-
'@aws-sdk/types': 3.
|
|
5823
|
+
'@aws-sdk/types': 3.973.1
|
|
5713
5824
|
'@smithy/types': 4.12.0
|
|
5714
5825
|
tslib: 2.8.1
|
|
5715
5826
|
|
|
5716
|
-
'@aws-sdk/middleware-logger@3.972.
|
|
5827
|
+
'@aws-sdk/middleware-logger@3.972.2':
|
|
5717
5828
|
dependencies:
|
|
5718
|
-
'@aws-sdk/types': 3.
|
|
5829
|
+
'@aws-sdk/types': 3.973.1
|
|
5719
5830
|
'@smithy/types': 4.12.0
|
|
5720
5831
|
tslib: 2.8.1
|
|
5721
5832
|
|
|
5722
|
-
'@aws-sdk/middleware-recursion-detection@3.972.
|
|
5833
|
+
'@aws-sdk/middleware-recursion-detection@3.972.2':
|
|
5723
5834
|
dependencies:
|
|
5724
|
-
'@aws-sdk/types': 3.
|
|
5835
|
+
'@aws-sdk/types': 3.973.1
|
|
5725
5836
|
'@aws/lambda-invoke-store': 0.2.3
|
|
5726
5837
|
'@smithy/protocol-http': 5.3.8
|
|
5727
5838
|
'@smithy/types': 4.12.0
|
|
@@ -5732,11 +5843,11 @@ snapshots:
|
|
|
5732
5843
|
'@aws-sdk/core': 3.972.0
|
|
5733
5844
|
'@aws-sdk/types': 3.972.0
|
|
5734
5845
|
'@aws-sdk/util-arn-parser': 3.972.0
|
|
5735
|
-
'@smithy/core': 3.
|
|
5846
|
+
'@smithy/core': 3.22.0
|
|
5736
5847
|
'@smithy/node-config-provider': 4.3.8
|
|
5737
5848
|
'@smithy/protocol-http': 5.3.8
|
|
5738
5849
|
'@smithy/signature-v4': 5.3.8
|
|
5739
|
-
'@smithy/smithy-client': 4.
|
|
5850
|
+
'@smithy/smithy-client': 4.11.1
|
|
5740
5851
|
'@smithy/types': 4.12.0
|
|
5741
5852
|
'@smithy/util-config-provider': 4.2.0
|
|
5742
5853
|
'@smithy/util-middleware': 4.2.8
|
|
@@ -5744,57 +5855,74 @@ snapshots:
|
|
|
5744
5855
|
'@smithy/util-utf8': 4.2.0
|
|
5745
5856
|
tslib: 2.8.1
|
|
5746
5857
|
|
|
5747
|
-
'@aws-sdk/middleware-
|
|
5858
|
+
'@aws-sdk/middleware-sdk-s3@3.972.2':
|
|
5748
5859
|
dependencies:
|
|
5749
|
-
'@aws-sdk/
|
|
5860
|
+
'@aws-sdk/core': 3.973.3
|
|
5861
|
+
'@aws-sdk/types': 3.973.1
|
|
5862
|
+
'@aws-sdk/util-arn-parser': 3.972.1
|
|
5863
|
+
'@smithy/core': 3.22.0
|
|
5864
|
+
'@smithy/node-config-provider': 4.3.8
|
|
5865
|
+
'@smithy/protocol-http': 5.3.8
|
|
5866
|
+
'@smithy/signature-v4': 5.3.8
|
|
5867
|
+
'@smithy/smithy-client': 4.11.1
|
|
5750
5868
|
'@smithy/types': 4.12.0
|
|
5869
|
+
'@smithy/util-config-provider': 4.2.0
|
|
5870
|
+
'@smithy/util-middleware': 4.2.8
|
|
5871
|
+
'@smithy/util-stream': 4.5.10
|
|
5872
|
+
'@smithy/util-utf8': 4.2.0
|
|
5751
5873
|
tslib: 2.8.1
|
|
5752
5874
|
|
|
5753
|
-
'@aws-sdk/middleware-
|
|
5875
|
+
'@aws-sdk/middleware-ssec@3.972.1':
|
|
5754
5876
|
dependencies:
|
|
5755
|
-
'@aws-sdk/
|
|
5756
|
-
'@
|
|
5877
|
+
'@aws-sdk/types': 3.973.1
|
|
5878
|
+
'@smithy/types': 4.12.0
|
|
5879
|
+
tslib: 2.8.1
|
|
5880
|
+
|
|
5881
|
+
'@aws-sdk/middleware-user-agent@3.972.3':
|
|
5882
|
+
dependencies:
|
|
5883
|
+
'@aws-sdk/core': 3.973.3
|
|
5884
|
+
'@aws-sdk/types': 3.973.1
|
|
5757
5885
|
'@aws-sdk/util-endpoints': 3.972.0
|
|
5758
|
-
'@smithy/core': 3.
|
|
5886
|
+
'@smithy/core': 3.22.0
|
|
5759
5887
|
'@smithy/protocol-http': 5.3.8
|
|
5760
5888
|
'@smithy/types': 4.12.0
|
|
5761
5889
|
tslib: 2.8.1
|
|
5762
5890
|
|
|
5763
|
-
'@aws-sdk/nested-clients@3.
|
|
5891
|
+
'@aws-sdk/nested-clients@3.975.0':
|
|
5764
5892
|
dependencies:
|
|
5765
5893
|
'@aws-crypto/sha256-browser': 5.2.0
|
|
5766
5894
|
'@aws-crypto/sha256-js': 5.2.0
|
|
5767
|
-
'@aws-sdk/core': 3.
|
|
5768
|
-
'@aws-sdk/middleware-host-header': 3.972.
|
|
5769
|
-
'@aws-sdk/middleware-logger': 3.972.
|
|
5770
|
-
'@aws-sdk/middleware-recursion-detection': 3.972.
|
|
5771
|
-
'@aws-sdk/middleware-user-agent': 3.972.
|
|
5772
|
-
'@aws-sdk/region-config-resolver': 3.972.
|
|
5773
|
-
'@aws-sdk/types': 3.
|
|
5895
|
+
'@aws-sdk/core': 3.973.3
|
|
5896
|
+
'@aws-sdk/middleware-host-header': 3.972.2
|
|
5897
|
+
'@aws-sdk/middleware-logger': 3.972.2
|
|
5898
|
+
'@aws-sdk/middleware-recursion-detection': 3.972.2
|
|
5899
|
+
'@aws-sdk/middleware-user-agent': 3.972.3
|
|
5900
|
+
'@aws-sdk/region-config-resolver': 3.972.2
|
|
5901
|
+
'@aws-sdk/types': 3.973.1
|
|
5774
5902
|
'@aws-sdk/util-endpoints': 3.972.0
|
|
5775
|
-
'@aws-sdk/util-user-agent-browser': 3.972.
|
|
5776
|
-
'@aws-sdk/util-user-agent-node': 3.972.
|
|
5903
|
+
'@aws-sdk/util-user-agent-browser': 3.972.2
|
|
5904
|
+
'@aws-sdk/util-user-agent-node': 3.972.2
|
|
5777
5905
|
'@smithy/config-resolver': 4.4.6
|
|
5778
|
-
'@smithy/core': 3.
|
|
5906
|
+
'@smithy/core': 3.22.0
|
|
5779
5907
|
'@smithy/fetch-http-handler': 5.3.9
|
|
5780
5908
|
'@smithy/hash-node': 4.2.8
|
|
5781
5909
|
'@smithy/invalid-dependency': 4.2.8
|
|
5782
5910
|
'@smithy/middleware-content-length': 4.2.8
|
|
5783
|
-
'@smithy/middleware-endpoint': 4.4.
|
|
5784
|
-
'@smithy/middleware-retry': 4.4.
|
|
5911
|
+
'@smithy/middleware-endpoint': 4.4.12
|
|
5912
|
+
'@smithy/middleware-retry': 4.4.29
|
|
5785
5913
|
'@smithy/middleware-serde': 4.2.9
|
|
5786
5914
|
'@smithy/middleware-stack': 4.2.8
|
|
5787
5915
|
'@smithy/node-config-provider': 4.3.8
|
|
5788
5916
|
'@smithy/node-http-handler': 4.4.8
|
|
5789
5917
|
'@smithy/protocol-http': 5.3.8
|
|
5790
|
-
'@smithy/smithy-client': 4.
|
|
5918
|
+
'@smithy/smithy-client': 4.11.1
|
|
5791
5919
|
'@smithy/types': 4.12.0
|
|
5792
5920
|
'@smithy/url-parser': 4.2.8
|
|
5793
5921
|
'@smithy/util-base64': 4.3.0
|
|
5794
5922
|
'@smithy/util-body-length-browser': 4.2.0
|
|
5795
5923
|
'@smithy/util-body-length-node': 4.2.1
|
|
5796
|
-
'@smithy/util-defaults-mode-browser': 4.3.
|
|
5797
|
-
'@smithy/util-defaults-mode-node': 4.2.
|
|
5924
|
+
'@smithy/util-defaults-mode-browser': 4.3.28
|
|
5925
|
+
'@smithy/util-defaults-mode-node': 4.2.31
|
|
5798
5926
|
'@smithy/util-endpoints': 3.2.8
|
|
5799
5927
|
'@smithy/util-middleware': 4.2.8
|
|
5800
5928
|
'@smithy/util-retry': 4.2.8
|
|
@@ -5803,9 +5931,9 @@ snapshots:
|
|
|
5803
5931
|
transitivePeerDependencies:
|
|
5804
5932
|
- aws-crt
|
|
5805
5933
|
|
|
5806
|
-
'@aws-sdk/region-config-resolver@3.972.
|
|
5934
|
+
'@aws-sdk/region-config-resolver@3.972.2':
|
|
5807
5935
|
dependencies:
|
|
5808
|
-
'@aws-sdk/types': 3.
|
|
5936
|
+
'@aws-sdk/types': 3.973.1
|
|
5809
5937
|
'@smithy/config-resolver': 4.4.6
|
|
5810
5938
|
'@smithy/node-config-provider': 4.3.8
|
|
5811
5939
|
'@smithy/types': 4.12.0
|
|
@@ -5820,11 +5948,11 @@ snapshots:
|
|
|
5820
5948
|
'@smithy/types': 4.12.0
|
|
5821
5949
|
tslib: 2.8.1
|
|
5822
5950
|
|
|
5823
|
-
'@aws-sdk/token-providers@3.
|
|
5951
|
+
'@aws-sdk/token-providers@3.975.0':
|
|
5824
5952
|
dependencies:
|
|
5825
|
-
'@aws-sdk/core': 3.
|
|
5826
|
-
'@aws-sdk/nested-clients': 3.
|
|
5827
|
-
'@aws-sdk/types': 3.
|
|
5953
|
+
'@aws-sdk/core': 3.973.3
|
|
5954
|
+
'@aws-sdk/nested-clients': 3.975.0
|
|
5955
|
+
'@aws-sdk/types': 3.973.1
|
|
5828
5956
|
'@smithy/property-provider': 4.2.8
|
|
5829
5957
|
'@smithy/shared-ini-file-loader': 4.4.3
|
|
5830
5958
|
'@smithy/types': 4.12.0
|
|
@@ -5837,10 +5965,19 @@ snapshots:
|
|
|
5837
5965
|
'@smithy/types': 4.12.0
|
|
5838
5966
|
tslib: 2.8.1
|
|
5839
5967
|
|
|
5968
|
+
'@aws-sdk/types@3.973.1':
|
|
5969
|
+
dependencies:
|
|
5970
|
+
'@smithy/types': 4.12.0
|
|
5971
|
+
tslib: 2.8.1
|
|
5972
|
+
|
|
5840
5973
|
'@aws-sdk/util-arn-parser@3.972.0':
|
|
5841
5974
|
dependencies:
|
|
5842
5975
|
tslib: 2.8.1
|
|
5843
5976
|
|
|
5977
|
+
'@aws-sdk/util-arn-parser@3.972.1':
|
|
5978
|
+
dependencies:
|
|
5979
|
+
tslib: 2.8.1
|
|
5980
|
+
|
|
5844
5981
|
'@aws-sdk/util-endpoints@3.972.0':
|
|
5845
5982
|
dependencies:
|
|
5846
5983
|
'@aws-sdk/types': 3.972.0
|
|
@@ -5849,21 +5986,21 @@ snapshots:
|
|
|
5849
5986
|
'@smithy/util-endpoints': 3.2.8
|
|
5850
5987
|
tslib: 2.8.1
|
|
5851
5988
|
|
|
5852
|
-
'@aws-sdk/util-locate-window@3.965.
|
|
5989
|
+
'@aws-sdk/util-locate-window@3.965.4':
|
|
5853
5990
|
dependencies:
|
|
5854
5991
|
tslib: 2.8.1
|
|
5855
5992
|
|
|
5856
|
-
'@aws-sdk/util-user-agent-browser@3.972.
|
|
5993
|
+
'@aws-sdk/util-user-agent-browser@3.972.2':
|
|
5857
5994
|
dependencies:
|
|
5858
|
-
'@aws-sdk/types': 3.
|
|
5995
|
+
'@aws-sdk/types': 3.973.1
|
|
5859
5996
|
'@smithy/types': 4.12.0
|
|
5860
5997
|
bowser: 2.13.1
|
|
5861
5998
|
tslib: 2.8.1
|
|
5862
5999
|
|
|
5863
|
-
'@aws-sdk/util-user-agent-node@3.972.
|
|
6000
|
+
'@aws-sdk/util-user-agent-node@3.972.2':
|
|
5864
6001
|
dependencies:
|
|
5865
|
-
'@aws-sdk/middleware-user-agent': 3.972.
|
|
5866
|
-
'@aws-sdk/types': 3.
|
|
6002
|
+
'@aws-sdk/middleware-user-agent': 3.972.3
|
|
6003
|
+
'@aws-sdk/types': 3.973.1
|
|
5867
6004
|
'@smithy/node-config-provider': 4.3.8
|
|
5868
6005
|
'@smithy/types': 4.12.0
|
|
5869
6006
|
tslib: 2.8.1
|
|
@@ -5874,6 +6011,12 @@ snapshots:
|
|
|
5874
6011
|
fast-xml-parser: 5.2.5
|
|
5875
6012
|
tslib: 2.8.1
|
|
5876
6013
|
|
|
6014
|
+
'@aws-sdk/xml-builder@3.972.2':
|
|
6015
|
+
dependencies:
|
|
6016
|
+
'@smithy/types': 4.12.0
|
|
6017
|
+
fast-xml-parser: 5.2.5
|
|
6018
|
+
tslib: 2.8.1
|
|
6019
|
+
|
|
5877
6020
|
'@aws/lambda-invoke-store@0.2.3': {}
|
|
5878
6021
|
|
|
5879
6022
|
'@babel/code-frame@7.28.6':
|
|
@@ -6074,11 +6217,11 @@ snapshots:
|
|
|
6074
6217
|
|
|
6075
6218
|
'@date-fns/tz@1.4.1': {}
|
|
6076
6219
|
|
|
6077
|
-
'@dotenvx/dotenvx@1.
|
|
6220
|
+
'@dotenvx/dotenvx@1.52.0':
|
|
6078
6221
|
dependencies:
|
|
6079
6222
|
commander: 11.1.0
|
|
6080
6223
|
dotenv: 17.2.3
|
|
6081
|
-
eciesjs: 0.4.
|
|
6224
|
+
eciesjs: 0.4.17
|
|
6082
6225
|
execa: 5.1.1
|
|
6083
6226
|
fdir: 6.5.0(picomatch@4.0.3)
|
|
6084
6227
|
ignore: 5.3.2
|
|
@@ -6242,26 +6385,26 @@ snapshots:
|
|
|
6242
6385
|
'@eslint/core': 0.17.0
|
|
6243
6386
|
levn: 0.4.1
|
|
6244
6387
|
|
|
6245
|
-
'@floating-ui/core@1.7.
|
|
6388
|
+
'@floating-ui/core@1.7.4':
|
|
6246
6389
|
dependencies:
|
|
6247
6390
|
'@floating-ui/utils': 0.2.10
|
|
6248
6391
|
|
|
6249
|
-
'@floating-ui/dom@1.7.
|
|
6392
|
+
'@floating-ui/dom@1.7.5':
|
|
6250
6393
|
dependencies:
|
|
6251
|
-
'@floating-ui/core': 1.7.
|
|
6394
|
+
'@floating-ui/core': 1.7.4
|
|
6252
6395
|
'@floating-ui/utils': 0.2.10
|
|
6253
6396
|
|
|
6254
|
-
'@floating-ui/react-dom@2.1.
|
|
6397
|
+
'@floating-ui/react-dom@2.1.7(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6255
6398
|
dependencies:
|
|
6256
|
-
'@floating-ui/dom': 1.7.
|
|
6399
|
+
'@floating-ui/dom': 1.7.5
|
|
6257
6400
|
react: 19.2.3
|
|
6258
6401
|
react-dom: 19.2.3(react@19.2.3)
|
|
6259
6402
|
|
|
6260
6403
|
'@floating-ui/utils@0.2.10': {}
|
|
6261
6404
|
|
|
6262
|
-
'@hono/node-server@1.19.9(hono@4.11.
|
|
6405
|
+
'@hono/node-server@1.19.9(hono@4.11.7)':
|
|
6263
6406
|
dependencies:
|
|
6264
|
-
hono: 4.11.
|
|
6407
|
+
hono: 4.11.7
|
|
6265
6408
|
|
|
6266
6409
|
'@hookform/resolvers@5.2.2(react-hook-form@7.71.1(react@19.2.3))':
|
|
6267
6410
|
dependencies:
|
|
@@ -6434,40 +6577,40 @@ snapshots:
|
|
|
6434
6577
|
'@jridgewell/resolve-uri': 3.1.2
|
|
6435
6578
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
6436
6579
|
|
|
6437
|
-
'@langchain/core@1.1.
|
|
6580
|
+
'@langchain/core@1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6))':
|
|
6438
6581
|
dependencies:
|
|
6439
6582
|
'@cfworker/json-schema': 4.1.1
|
|
6440
6583
|
ansi-styles: 5.2.0
|
|
6441
6584
|
camelcase: 6.3.0
|
|
6442
6585
|
decamelize: 1.2.0
|
|
6443
6586
|
js-tiktoken: 1.0.21
|
|
6444
|
-
langsmith: 0.4.
|
|
6587
|
+
langsmith: 0.4.9(openai@6.16.0(ws@8.19.0)(zod@4.3.6))
|
|
6445
6588
|
mustache: 4.2.0
|
|
6446
6589
|
p-queue: 6.6.2
|
|
6447
6590
|
uuid: 10.0.0
|
|
6448
|
-
zod: 4.3.
|
|
6591
|
+
zod: 4.3.6
|
|
6449
6592
|
transitivePeerDependencies:
|
|
6450
6593
|
- '@opentelemetry/api'
|
|
6451
6594
|
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
6452
6595
|
- '@opentelemetry/sdk-trace-base'
|
|
6453
6596
|
- openai
|
|
6454
6597
|
|
|
6455
|
-
'@langchain/openai@1.2.3(@langchain/core@1.1.
|
|
6598
|
+
'@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)':
|
|
6456
6599
|
dependencies:
|
|
6457
|
-
'@langchain/core': 1.1.
|
|
6600
|
+
'@langchain/core': 1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6))
|
|
6458
6601
|
js-tiktoken: 1.0.21
|
|
6459
|
-
openai: 6.16.0(zod@4.3.
|
|
6460
|
-
zod: 4.3.
|
|
6602
|
+
openai: 6.16.0(ws@8.19.0)(zod@4.3.6)
|
|
6603
|
+
zod: 4.3.6
|
|
6461
6604
|
transitivePeerDependencies:
|
|
6462
6605
|
- ws
|
|
6463
6606
|
|
|
6464
|
-
'@modelcontextprotocol/sdk@1.25.3(@cfworker/json-schema@4.1.1)(hono@4.11.
|
|
6607
|
+
'@modelcontextprotocol/sdk@1.25.3(@cfworker/json-schema@4.1.1)(hono@4.11.7)(zod@3.25.76)':
|
|
6465
6608
|
dependencies:
|
|
6466
|
-
'@hono/node-server': 1.19.9(hono@4.11.
|
|
6609
|
+
'@hono/node-server': 1.19.9(hono@4.11.7)
|
|
6467
6610
|
ajv: 8.17.1
|
|
6468
6611
|
ajv-formats: 3.0.1(ajv@8.17.1)
|
|
6469
6612
|
content-type: 1.0.5
|
|
6470
|
-
cors: 2.8.
|
|
6613
|
+
cors: 2.8.6
|
|
6471
6614
|
cross-spawn: 7.0.6
|
|
6472
6615
|
eventsource: 3.0.7
|
|
6473
6616
|
eventsource-parser: 3.0.6
|
|
@@ -6566,674 +6709,674 @@ snapshots:
|
|
|
6566
6709
|
|
|
6567
6710
|
'@radix-ui/primitive@1.1.3': {}
|
|
6568
6711
|
|
|
6569
|
-
'@radix-ui/react-accordion@1.2.12(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6712
|
+
'@radix-ui/react-accordion@1.2.12(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6570
6713
|
dependencies:
|
|
6571
6714
|
'@radix-ui/primitive': 1.1.3
|
|
6572
|
-
'@radix-ui/react-collapsible': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6573
|
-
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6574
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6575
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
6576
|
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.
|
|
6577
|
-
'@radix-ui/react-id': 1.1.1(@types/react@19.2.
|
|
6578
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6579
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
6715
|
+
'@radix-ui/react-collapsible': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6716
|
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6717
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6718
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6719
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6720
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6721
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6722
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
6580
6723
|
react: 19.2.3
|
|
6581
6724
|
react-dom: 19.2.3(react@19.2.3)
|
|
6582
6725
|
optionalDependencies:
|
|
6583
|
-
'@types/react': 19.2.
|
|
6584
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6726
|
+
'@types/react': 19.2.10
|
|
6727
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6585
6728
|
|
|
6586
|
-
'@radix-ui/react-alert-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6729
|
+
'@radix-ui/react-alert-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6587
6730
|
dependencies:
|
|
6588
6731
|
'@radix-ui/primitive': 1.1.3
|
|
6589
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6590
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
6591
|
-
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6592
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6593
|
-
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.
|
|
6732
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6733
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6734
|
+
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6735
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6736
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.10)(react@19.2.3)
|
|
6594
6737
|
react: 19.2.3
|
|
6595
6738
|
react-dom: 19.2.3(react@19.2.3)
|
|
6596
6739
|
optionalDependencies:
|
|
6597
|
-
'@types/react': 19.2.
|
|
6598
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6740
|
+
'@types/react': 19.2.10
|
|
6741
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6599
6742
|
|
|
6600
|
-
'@radix-ui/react-arrow@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6743
|
+
'@radix-ui/react-arrow@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6601
6744
|
dependencies:
|
|
6602
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6745
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6603
6746
|
react: 19.2.3
|
|
6604
6747
|
react-dom: 19.2.3(react@19.2.3)
|
|
6605
6748
|
optionalDependencies:
|
|
6606
|
-
'@types/react': 19.2.
|
|
6607
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6749
|
+
'@types/react': 19.2.10
|
|
6750
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6608
6751
|
|
|
6609
|
-
'@radix-ui/react-aspect-ratio@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6752
|
+
'@radix-ui/react-aspect-ratio@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6610
6753
|
dependencies:
|
|
6611
|
-
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6754
|
+
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6612
6755
|
react: 19.2.3
|
|
6613
6756
|
react-dom: 19.2.3(react@19.2.3)
|
|
6614
6757
|
optionalDependencies:
|
|
6615
|
-
'@types/react': 19.2.
|
|
6616
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6758
|
+
'@types/react': 19.2.10
|
|
6759
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6617
6760
|
|
|
6618
|
-
'@radix-ui/react-avatar@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6761
|
+
'@radix-ui/react-avatar@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6619
6762
|
dependencies:
|
|
6620
|
-
'@radix-ui/react-context': 1.1.3(@types/react@19.2.
|
|
6621
|
-
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6622
|
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.
|
|
6623
|
-
'@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.
|
|
6624
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.
|
|
6763
|
+
'@radix-ui/react-context': 1.1.3(@types/react@19.2.10)(react@19.2.3)
|
|
6764
|
+
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6765
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6766
|
+
'@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.10)(react@19.2.3)
|
|
6767
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6625
6768
|
react: 19.2.3
|
|
6626
6769
|
react-dom: 19.2.3(react@19.2.3)
|
|
6627
6770
|
optionalDependencies:
|
|
6628
|
-
'@types/react': 19.2.
|
|
6629
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6771
|
+
'@types/react': 19.2.10
|
|
6772
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6630
6773
|
|
|
6631
|
-
'@radix-ui/react-checkbox@1.3.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6774
|
+
'@radix-ui/react-checkbox@1.3.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6632
6775
|
dependencies:
|
|
6633
6776
|
'@radix-ui/primitive': 1.1.3
|
|
6634
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6635
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
6636
|
-
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6637
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6638
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
6639
|
-
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.
|
|
6640
|
-
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.
|
|
6777
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6778
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6779
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6780
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6781
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
6782
|
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6783
|
+
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6641
6784
|
react: 19.2.3
|
|
6642
6785
|
react-dom: 19.2.3(react@19.2.3)
|
|
6643
6786
|
optionalDependencies:
|
|
6644
|
-
'@types/react': 19.2.
|
|
6645
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6787
|
+
'@types/react': 19.2.10
|
|
6788
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6646
6789
|
|
|
6647
|
-
'@radix-ui/react-collapsible@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6790
|
+
'@radix-ui/react-collapsible@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6648
6791
|
dependencies:
|
|
6649
6792
|
'@radix-ui/primitive': 1.1.3
|
|
6650
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6651
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
6652
|
-
'@radix-ui/react-id': 1.1.1(@types/react@19.2.
|
|
6653
|
-
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6654
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6655
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
6656
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.
|
|
6793
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6794
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6795
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6796
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6797
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6798
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
6799
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6657
6800
|
react: 19.2.3
|
|
6658
6801
|
react-dom: 19.2.3(react@19.2.3)
|
|
6659
6802
|
optionalDependencies:
|
|
6660
|
-
'@types/react': 19.2.
|
|
6661
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6803
|
+
'@types/react': 19.2.10
|
|
6804
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6662
6805
|
|
|
6663
|
-
'@radix-ui/react-collection@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6806
|
+
'@radix-ui/react-collection@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6664
6807
|
dependencies:
|
|
6665
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6666
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
6667
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6668
|
-
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.
|
|
6808
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6809
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6810
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6811
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.10)(react@19.2.3)
|
|
6669
6812
|
react: 19.2.3
|
|
6670
6813
|
react-dom: 19.2.3(react@19.2.3)
|
|
6671
6814
|
optionalDependencies:
|
|
6672
|
-
'@types/react': 19.2.
|
|
6673
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6815
|
+
'@types/react': 19.2.10
|
|
6816
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6674
6817
|
|
|
6675
|
-
'@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.
|
|
6818
|
+
'@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.10)(react@19.2.3)':
|
|
6676
6819
|
dependencies:
|
|
6677
6820
|
react: 19.2.3
|
|
6678
6821
|
optionalDependencies:
|
|
6679
|
-
'@types/react': 19.2.
|
|
6822
|
+
'@types/react': 19.2.10
|
|
6680
6823
|
|
|
6681
|
-
'@radix-ui/react-context-menu@2.2.16(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6824
|
+
'@radix-ui/react-context-menu@2.2.16(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6682
6825
|
dependencies:
|
|
6683
6826
|
'@radix-ui/primitive': 1.1.3
|
|
6684
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
6685
|
-
'@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6686
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6687
|
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.
|
|
6688
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
6827
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6828
|
+
'@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6829
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6830
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6831
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
6689
6832
|
react: 19.2.3
|
|
6690
6833
|
react-dom: 19.2.3(react@19.2.3)
|
|
6691
6834
|
optionalDependencies:
|
|
6692
|
-
'@types/react': 19.2.
|
|
6693
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6835
|
+
'@types/react': 19.2.10
|
|
6836
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6694
6837
|
|
|
6695
|
-
'@radix-ui/react-context@1.1.2(@types/react@19.2.
|
|
6838
|
+
'@radix-ui/react-context@1.1.2(@types/react@19.2.10)(react@19.2.3)':
|
|
6696
6839
|
dependencies:
|
|
6697
6840
|
react: 19.2.3
|
|
6698
6841
|
optionalDependencies:
|
|
6699
|
-
'@types/react': 19.2.
|
|
6842
|
+
'@types/react': 19.2.10
|
|
6700
6843
|
|
|
6701
|
-
'@radix-ui/react-context@1.1.3(@types/react@19.2.
|
|
6844
|
+
'@radix-ui/react-context@1.1.3(@types/react@19.2.10)(react@19.2.3)':
|
|
6702
6845
|
dependencies:
|
|
6703
6846
|
react: 19.2.3
|
|
6704
6847
|
optionalDependencies:
|
|
6705
|
-
'@types/react': 19.2.
|
|
6848
|
+
'@types/react': 19.2.10
|
|
6706
6849
|
|
|
6707
|
-
'@radix-ui/react-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6850
|
+
'@radix-ui/react-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6708
6851
|
dependencies:
|
|
6709
6852
|
'@radix-ui/primitive': 1.1.3
|
|
6710
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6711
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
6712
|
-
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6713
|
-
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.
|
|
6714
|
-
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6715
|
-
'@radix-ui/react-id': 1.1.1(@types/react@19.2.
|
|
6716
|
-
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6717
|
-
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6718
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6719
|
-
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.
|
|
6720
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
6853
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6854
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6855
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6856
|
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.10)(react@19.2.3)
|
|
6857
|
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6858
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6859
|
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6860
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6861
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6862
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.10)(react@19.2.3)
|
|
6863
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
6721
6864
|
aria-hidden: 1.2.6
|
|
6722
6865
|
react: 19.2.3
|
|
6723
6866
|
react-dom: 19.2.3(react@19.2.3)
|
|
6724
|
-
react-remove-scroll: 2.7.2(@types/react@19.2.
|
|
6867
|
+
react-remove-scroll: 2.7.2(@types/react@19.2.10)(react@19.2.3)
|
|
6725
6868
|
optionalDependencies:
|
|
6726
|
-
'@types/react': 19.2.
|
|
6727
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6869
|
+
'@types/react': 19.2.10
|
|
6870
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6728
6871
|
|
|
6729
|
-
'@radix-ui/react-direction@1.1.1(@types/react@19.2.
|
|
6872
|
+
'@radix-ui/react-direction@1.1.1(@types/react@19.2.10)(react@19.2.3)':
|
|
6730
6873
|
dependencies:
|
|
6731
6874
|
react: 19.2.3
|
|
6732
6875
|
optionalDependencies:
|
|
6733
|
-
'@types/react': 19.2.
|
|
6876
|
+
'@types/react': 19.2.10
|
|
6734
6877
|
|
|
6735
|
-
'@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6878
|
+
'@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6736
6879
|
dependencies:
|
|
6737
6880
|
'@radix-ui/primitive': 1.1.3
|
|
6738
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6739
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6740
|
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.
|
|
6741
|
-
'@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.
|
|
6881
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6882
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6883
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6884
|
+
'@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6742
6885
|
react: 19.2.3
|
|
6743
6886
|
react-dom: 19.2.3(react@19.2.3)
|
|
6744
6887
|
optionalDependencies:
|
|
6745
|
-
'@types/react': 19.2.
|
|
6746
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6888
|
+
'@types/react': 19.2.10
|
|
6889
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6747
6890
|
|
|
6748
|
-
'@radix-ui/react-dropdown-menu@2.1.16(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6891
|
+
'@radix-ui/react-dropdown-menu@2.1.16(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6749
6892
|
dependencies:
|
|
6750
6893
|
'@radix-ui/primitive': 1.1.3
|
|
6751
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6752
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
6753
|
-
'@radix-ui/react-id': 1.1.1(@types/react@19.2.
|
|
6754
|
-
'@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6755
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6756
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
6894
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6895
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6896
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6897
|
+
'@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6898
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6899
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
6757
6900
|
react: 19.2.3
|
|
6758
6901
|
react-dom: 19.2.3(react@19.2.3)
|
|
6759
6902
|
optionalDependencies:
|
|
6760
|
-
'@types/react': 19.2.
|
|
6761
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6903
|
+
'@types/react': 19.2.10
|
|
6904
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6762
6905
|
|
|
6763
|
-
'@radix-ui/react-focus-guards@1.1.3(@types/react@19.2.
|
|
6906
|
+
'@radix-ui/react-focus-guards@1.1.3(@types/react@19.2.10)(react@19.2.3)':
|
|
6764
6907
|
dependencies:
|
|
6765
6908
|
react: 19.2.3
|
|
6766
6909
|
optionalDependencies:
|
|
6767
|
-
'@types/react': 19.2.
|
|
6910
|
+
'@types/react': 19.2.10
|
|
6768
6911
|
|
|
6769
|
-
'@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6912
|
+
'@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6770
6913
|
dependencies:
|
|
6771
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6772
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6773
|
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.
|
|
6914
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6915
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6916
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6774
6917
|
react: 19.2.3
|
|
6775
6918
|
react-dom: 19.2.3(react@19.2.3)
|
|
6776
6919
|
optionalDependencies:
|
|
6777
|
-
'@types/react': 19.2.
|
|
6778
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6920
|
+
'@types/react': 19.2.10
|
|
6921
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6779
6922
|
|
|
6780
|
-
'@radix-ui/react-hover-card@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6923
|
+
'@radix-ui/react-hover-card@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6781
6924
|
dependencies:
|
|
6782
6925
|
'@radix-ui/primitive': 1.1.3
|
|
6783
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6784
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
6785
|
-
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6786
|
-
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6787
|
-
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6788
|
-
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6789
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6790
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
6926
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6927
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6928
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6929
|
+
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6930
|
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6931
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6932
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6933
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
6791
6934
|
react: 19.2.3
|
|
6792
6935
|
react-dom: 19.2.3(react@19.2.3)
|
|
6793
6936
|
optionalDependencies:
|
|
6794
|
-
'@types/react': 19.2.
|
|
6795
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6937
|
+
'@types/react': 19.2.10
|
|
6938
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6796
6939
|
|
|
6797
|
-
'@radix-ui/react-id@1.1.1(@types/react@19.2.
|
|
6940
|
+
'@radix-ui/react-id@1.1.1(@types/react@19.2.10)(react@19.2.3)':
|
|
6798
6941
|
dependencies:
|
|
6799
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.
|
|
6942
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6800
6943
|
react: 19.2.3
|
|
6801
6944
|
optionalDependencies:
|
|
6802
|
-
'@types/react': 19.2.
|
|
6945
|
+
'@types/react': 19.2.10
|
|
6803
6946
|
|
|
6804
|
-
'@radix-ui/react-label@2.1.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6947
|
+
'@radix-ui/react-label@2.1.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6805
6948
|
dependencies:
|
|
6806
|
-
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6949
|
+
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6807
6950
|
react: 19.2.3
|
|
6808
6951
|
react-dom: 19.2.3(react@19.2.3)
|
|
6809
6952
|
optionalDependencies:
|
|
6810
|
-
'@types/react': 19.2.
|
|
6811
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6953
|
+
'@types/react': 19.2.10
|
|
6954
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6812
6955
|
|
|
6813
|
-
'@radix-ui/react-menu@2.1.16(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6956
|
+
'@radix-ui/react-menu@2.1.16(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6814
6957
|
dependencies:
|
|
6815
6958
|
'@radix-ui/primitive': 1.1.3
|
|
6816
|
-
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6817
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6818
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
6819
|
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.
|
|
6820
|
-
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6821
|
-
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.
|
|
6822
|
-
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6823
|
-
'@radix-ui/react-id': 1.1.1(@types/react@19.2.
|
|
6824
|
-
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6825
|
-
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6826
|
-
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6827
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6828
|
-
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6829
|
-
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.
|
|
6830
|
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.
|
|
6959
|
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6960
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6961
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6962
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6963
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6964
|
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.10)(react@19.2.3)
|
|
6965
|
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6966
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6967
|
+
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6968
|
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6969
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6970
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6971
|
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6972
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.10)(react@19.2.3)
|
|
6973
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6831
6974
|
aria-hidden: 1.2.6
|
|
6832
6975
|
react: 19.2.3
|
|
6833
6976
|
react-dom: 19.2.3(react@19.2.3)
|
|
6834
|
-
react-remove-scroll: 2.7.2(@types/react@19.2.
|
|
6977
|
+
react-remove-scroll: 2.7.2(@types/react@19.2.10)(react@19.2.3)
|
|
6835
6978
|
optionalDependencies:
|
|
6836
|
-
'@types/react': 19.2.
|
|
6837
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6979
|
+
'@types/react': 19.2.10
|
|
6980
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6838
6981
|
|
|
6839
|
-
'@radix-ui/react-menubar@1.1.16(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6982
|
+
'@radix-ui/react-menubar@1.1.16(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6840
6983
|
dependencies:
|
|
6841
6984
|
'@radix-ui/primitive': 1.1.3
|
|
6842
|
-
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6843
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6844
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
6845
|
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.
|
|
6846
|
-
'@radix-ui/react-id': 1.1.1(@types/react@19.2.
|
|
6847
|
-
'@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6848
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6849
|
-
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6850
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
6985
|
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6986
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6987
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
6988
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6989
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6990
|
+
'@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6991
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6992
|
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6993
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
6851
6994
|
react: 19.2.3
|
|
6852
6995
|
react-dom: 19.2.3(react@19.2.3)
|
|
6853
6996
|
optionalDependencies:
|
|
6854
|
-
'@types/react': 19.2.
|
|
6855
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6997
|
+
'@types/react': 19.2.10
|
|
6998
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6856
6999
|
|
|
6857
|
-
'@radix-ui/react-navigation-menu@1.2.14(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7000
|
+
'@radix-ui/react-navigation-menu@1.2.14(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6858
7001
|
dependencies:
|
|
6859
7002
|
'@radix-ui/primitive': 1.1.3
|
|
6860
|
-
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6861
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6862
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
6863
|
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.
|
|
6864
|
-
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6865
|
-
'@radix-ui/react-id': 1.1.1(@types/react@19.2.
|
|
6866
|
-
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6867
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6868
|
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.
|
|
6869
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
6870
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.
|
|
6871
|
-
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.
|
|
6872
|
-
'@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7003
|
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7004
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7005
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7006
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7007
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7008
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7009
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7010
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7011
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7012
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
7013
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7014
|
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7015
|
+
'@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6873
7016
|
react: 19.2.3
|
|
6874
7017
|
react-dom: 19.2.3(react@19.2.3)
|
|
6875
7018
|
optionalDependencies:
|
|
6876
|
-
'@types/react': 19.2.
|
|
6877
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7019
|
+
'@types/react': 19.2.10
|
|
7020
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6878
7021
|
|
|
6879
|
-
'@radix-ui/react-popover@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7022
|
+
'@radix-ui/react-popover@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6880
7023
|
dependencies:
|
|
6881
7024
|
'@radix-ui/primitive': 1.1.3
|
|
6882
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6883
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
6884
|
-
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6885
|
-
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.
|
|
6886
|
-
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6887
|
-
'@radix-ui/react-id': 1.1.1(@types/react@19.2.
|
|
6888
|
-
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6889
|
-
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6890
|
-
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6891
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6892
|
-
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.
|
|
6893
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
7025
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7026
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7027
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7028
|
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.10)(react@19.2.3)
|
|
7029
|
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7030
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7031
|
+
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7032
|
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7033
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7034
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7035
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.10)(react@19.2.3)
|
|
7036
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
6894
7037
|
aria-hidden: 1.2.6
|
|
6895
7038
|
react: 19.2.3
|
|
6896
7039
|
react-dom: 19.2.3(react@19.2.3)
|
|
6897
|
-
react-remove-scroll: 2.7.2(@types/react@19.2.
|
|
7040
|
+
react-remove-scroll: 2.7.2(@types/react@19.2.10)(react@19.2.3)
|
|
6898
7041
|
optionalDependencies:
|
|
6899
|
-
'@types/react': 19.2.
|
|
6900
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
6901
|
-
|
|
6902
|
-
'@radix-ui/react-popper@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6903
|
-
dependencies:
|
|
6904
|
-
'@floating-ui/react-dom': 2.1.
|
|
6905
|
-
'@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6906
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6907
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
6908
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6909
|
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.
|
|
6910
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.
|
|
6911
|
-
'@radix-ui/react-use-rect': 1.1.1(@types/react@19.2.
|
|
6912
|
-
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.
|
|
7042
|
+
'@types/react': 19.2.10
|
|
7043
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
7044
|
+
|
|
7045
|
+
'@radix-ui/react-popper@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
7046
|
+
dependencies:
|
|
7047
|
+
'@floating-ui/react-dom': 2.1.7(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7048
|
+
'@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7049
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7050
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7051
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7052
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7053
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7054
|
+
'@radix-ui/react-use-rect': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7055
|
+
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6913
7056
|
'@radix-ui/rect': 1.1.1
|
|
6914
7057
|
react: 19.2.3
|
|
6915
7058
|
react-dom: 19.2.3(react@19.2.3)
|
|
6916
7059
|
optionalDependencies:
|
|
6917
|
-
'@types/react': 19.2.
|
|
6918
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7060
|
+
'@types/react': 19.2.10
|
|
7061
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6919
7062
|
|
|
6920
|
-
'@radix-ui/react-portal@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7063
|
+
'@radix-ui/react-portal@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6921
7064
|
dependencies:
|
|
6922
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6923
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.
|
|
7065
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7066
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6924
7067
|
react: 19.2.3
|
|
6925
7068
|
react-dom: 19.2.3(react@19.2.3)
|
|
6926
7069
|
optionalDependencies:
|
|
6927
|
-
'@types/react': 19.2.
|
|
6928
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7070
|
+
'@types/react': 19.2.10
|
|
7071
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6929
7072
|
|
|
6930
|
-
'@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7073
|
+
'@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6931
7074
|
dependencies:
|
|
6932
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6933
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.
|
|
7075
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7076
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6934
7077
|
react: 19.2.3
|
|
6935
7078
|
react-dom: 19.2.3(react@19.2.3)
|
|
6936
7079
|
optionalDependencies:
|
|
6937
|
-
'@types/react': 19.2.
|
|
6938
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7080
|
+
'@types/react': 19.2.10
|
|
7081
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6939
7082
|
|
|
6940
|
-
'@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7083
|
+
'@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6941
7084
|
dependencies:
|
|
6942
|
-
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.
|
|
7085
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.10)(react@19.2.3)
|
|
6943
7086
|
react: 19.2.3
|
|
6944
7087
|
react-dom: 19.2.3(react@19.2.3)
|
|
6945
7088
|
optionalDependencies:
|
|
6946
|
-
'@types/react': 19.2.
|
|
6947
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7089
|
+
'@types/react': 19.2.10
|
|
7090
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6948
7091
|
|
|
6949
|
-
'@radix-ui/react-primitive@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7092
|
+
'@radix-ui/react-primitive@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6950
7093
|
dependencies:
|
|
6951
|
-
'@radix-ui/react-slot': 1.2.4(@types/react@19.2.
|
|
7094
|
+
'@radix-ui/react-slot': 1.2.4(@types/react@19.2.10)(react@19.2.3)
|
|
6952
7095
|
react: 19.2.3
|
|
6953
7096
|
react-dom: 19.2.3(react@19.2.3)
|
|
6954
7097
|
optionalDependencies:
|
|
6955
|
-
'@types/react': 19.2.
|
|
6956
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7098
|
+
'@types/react': 19.2.10
|
|
7099
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6957
7100
|
|
|
6958
|
-
'@radix-ui/react-progress@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7101
|
+
'@radix-ui/react-progress@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6959
7102
|
dependencies:
|
|
6960
|
-
'@radix-ui/react-context': 1.1.3(@types/react@19.2.
|
|
6961
|
-
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7103
|
+
'@radix-ui/react-context': 1.1.3(@types/react@19.2.10)(react@19.2.3)
|
|
7104
|
+
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
6962
7105
|
react: 19.2.3
|
|
6963
7106
|
react-dom: 19.2.3(react@19.2.3)
|
|
6964
7107
|
optionalDependencies:
|
|
6965
|
-
'@types/react': 19.2.
|
|
6966
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7108
|
+
'@types/react': 19.2.10
|
|
7109
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6967
7110
|
|
|
6968
|
-
'@radix-ui/react-radio-group@1.3.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7111
|
+
'@radix-ui/react-radio-group@1.3.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6969
7112
|
dependencies:
|
|
6970
7113
|
'@radix-ui/primitive': 1.1.3
|
|
6971
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6972
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
6973
|
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.
|
|
6974
|
-
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6975
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6976
|
-
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6977
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
6978
|
-
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.
|
|
6979
|
-
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.
|
|
7114
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7115
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7116
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7117
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7118
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7119
|
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7120
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
7121
|
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7122
|
+
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
6980
7123
|
react: 19.2.3
|
|
6981
7124
|
react-dom: 19.2.3(react@19.2.3)
|
|
6982
7125
|
optionalDependencies:
|
|
6983
|
-
'@types/react': 19.2.
|
|
6984
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7126
|
+
'@types/react': 19.2.10
|
|
7127
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
6985
7128
|
|
|
6986
|
-
'@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7129
|
+
'@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
6987
7130
|
dependencies:
|
|
6988
7131
|
'@radix-ui/primitive': 1.1.3
|
|
6989
|
-
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6990
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
6991
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
6992
|
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.
|
|
6993
|
-
'@radix-ui/react-id': 1.1.1(@types/react@19.2.
|
|
6994
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
6995
|
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.
|
|
6996
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
7132
|
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7133
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7134
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7135
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7136
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7137
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7138
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7139
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
6997
7140
|
react: 19.2.3
|
|
6998
7141
|
react-dom: 19.2.3(react@19.2.3)
|
|
6999
7142
|
optionalDependencies:
|
|
7000
|
-
'@types/react': 19.2.
|
|
7001
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7143
|
+
'@types/react': 19.2.10
|
|
7144
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
7002
7145
|
|
|
7003
|
-
'@radix-ui/react-scroll-area@1.2.10(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7146
|
+
'@radix-ui/react-scroll-area@1.2.10(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
7004
7147
|
dependencies:
|
|
7005
7148
|
'@radix-ui/number': 1.1.1
|
|
7006
7149
|
'@radix-ui/primitive': 1.1.3
|
|
7007
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
7008
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
7009
|
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.
|
|
7010
|
-
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7011
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7012
|
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.
|
|
7013
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.
|
|
7150
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7151
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7152
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7153
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7154
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7155
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7156
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7014
7157
|
react: 19.2.3
|
|
7015
7158
|
react-dom: 19.2.3(react@19.2.3)
|
|
7016
7159
|
optionalDependencies:
|
|
7017
|
-
'@types/react': 19.2.
|
|
7018
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7160
|
+
'@types/react': 19.2.10
|
|
7161
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
7019
7162
|
|
|
7020
|
-
'@radix-ui/react-select@2.2.6(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7163
|
+
'@radix-ui/react-select@2.2.6(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
7021
7164
|
dependencies:
|
|
7022
7165
|
'@radix-ui/number': 1.1.1
|
|
7023
7166
|
'@radix-ui/primitive': 1.1.3
|
|
7024
|
-
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7025
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
7026
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
7027
|
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.
|
|
7028
|
-
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7029
|
-
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.
|
|
7030
|
-
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7031
|
-
'@radix-ui/react-id': 1.1.1(@types/react@19.2.
|
|
7032
|
-
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7033
|
-
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7034
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7035
|
-
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.
|
|
7036
|
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.
|
|
7037
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
7038
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.
|
|
7039
|
-
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.
|
|
7040
|
-
'@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7167
|
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7168
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7169
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7170
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7171
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7172
|
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.10)(react@19.2.3)
|
|
7173
|
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7174
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7175
|
+
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7176
|
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7177
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7178
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.10)(react@19.2.3)
|
|
7179
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7180
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
7181
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7182
|
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7183
|
+
'@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7041
7184
|
aria-hidden: 1.2.6
|
|
7042
7185
|
react: 19.2.3
|
|
7043
7186
|
react-dom: 19.2.3(react@19.2.3)
|
|
7044
|
-
react-remove-scroll: 2.7.2(@types/react@19.2.
|
|
7187
|
+
react-remove-scroll: 2.7.2(@types/react@19.2.10)(react@19.2.3)
|
|
7045
7188
|
optionalDependencies:
|
|
7046
|
-
'@types/react': 19.2.
|
|
7047
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7189
|
+
'@types/react': 19.2.10
|
|
7190
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
7048
7191
|
|
|
7049
|
-
'@radix-ui/react-separator@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7192
|
+
'@radix-ui/react-separator@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
7050
7193
|
dependencies:
|
|
7051
|
-
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7194
|
+
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7052
7195
|
react: 19.2.3
|
|
7053
7196
|
react-dom: 19.2.3(react@19.2.3)
|
|
7054
7197
|
optionalDependencies:
|
|
7055
|
-
'@types/react': 19.2.
|
|
7056
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7198
|
+
'@types/react': 19.2.10
|
|
7199
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
7057
7200
|
|
|
7058
|
-
'@radix-ui/react-slider@1.3.6(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7201
|
+
'@radix-ui/react-slider@1.3.6(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
7059
7202
|
dependencies:
|
|
7060
7203
|
'@radix-ui/number': 1.1.1
|
|
7061
7204
|
'@radix-ui/primitive': 1.1.3
|
|
7062
|
-
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7063
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
7064
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
7065
|
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.
|
|
7066
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7067
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
7068
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.
|
|
7069
|
-
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.
|
|
7070
|
-
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.
|
|
7205
|
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7206
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7207
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7208
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7209
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7210
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
7211
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7212
|
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7213
|
+
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7071
7214
|
react: 19.2.3
|
|
7072
7215
|
react-dom: 19.2.3(react@19.2.3)
|
|
7073
7216
|
optionalDependencies:
|
|
7074
|
-
'@types/react': 19.2.
|
|
7075
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7217
|
+
'@types/react': 19.2.10
|
|
7218
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
7076
7219
|
|
|
7077
|
-
'@radix-ui/react-slot@1.2.3(@types/react@19.2.
|
|
7220
|
+
'@radix-ui/react-slot@1.2.3(@types/react@19.2.10)(react@19.2.3)':
|
|
7078
7221
|
dependencies:
|
|
7079
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
7222
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7080
7223
|
react: 19.2.3
|
|
7081
7224
|
optionalDependencies:
|
|
7082
|
-
'@types/react': 19.2.
|
|
7225
|
+
'@types/react': 19.2.10
|
|
7083
7226
|
|
|
7084
|
-
'@radix-ui/react-slot@1.2.4(@types/react@19.2.
|
|
7227
|
+
'@radix-ui/react-slot@1.2.4(@types/react@19.2.10)(react@19.2.3)':
|
|
7085
7228
|
dependencies:
|
|
7086
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
7229
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7087
7230
|
react: 19.2.3
|
|
7088
7231
|
optionalDependencies:
|
|
7089
|
-
'@types/react': 19.2.
|
|
7232
|
+
'@types/react': 19.2.10
|
|
7090
7233
|
|
|
7091
|
-
'@radix-ui/react-switch@1.2.6(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7234
|
+
'@radix-ui/react-switch@1.2.6(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
7092
7235
|
dependencies:
|
|
7093
7236
|
'@radix-ui/primitive': 1.1.3
|
|
7094
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
7095
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
7096
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7097
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
7098
|
-
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.
|
|
7099
|
-
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.
|
|
7237
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7238
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7239
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7240
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
7241
|
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7242
|
+
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7100
7243
|
react: 19.2.3
|
|
7101
7244
|
react-dom: 19.2.3(react@19.2.3)
|
|
7102
7245
|
optionalDependencies:
|
|
7103
|
-
'@types/react': 19.2.
|
|
7104
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7246
|
+
'@types/react': 19.2.10
|
|
7247
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
7105
7248
|
|
|
7106
|
-
'@radix-ui/react-tabs@1.1.13(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7249
|
+
'@radix-ui/react-tabs@1.1.13(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
7107
7250
|
dependencies:
|
|
7108
7251
|
'@radix-ui/primitive': 1.1.3
|
|
7109
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
7110
|
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.
|
|
7111
|
-
'@radix-ui/react-id': 1.1.1(@types/react@19.2.
|
|
7112
|
-
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7113
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7114
|
-
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7115
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
7252
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7253
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7254
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7255
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7256
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7257
|
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7258
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
7116
7259
|
react: 19.2.3
|
|
7117
7260
|
react-dom: 19.2.3(react@19.2.3)
|
|
7118
7261
|
optionalDependencies:
|
|
7119
|
-
'@types/react': 19.2.
|
|
7120
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7262
|
+
'@types/react': 19.2.10
|
|
7263
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
7121
7264
|
|
|
7122
|
-
'@radix-ui/react-toggle-group@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7265
|
+
'@radix-ui/react-toggle-group@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
7123
7266
|
dependencies:
|
|
7124
7267
|
'@radix-ui/primitive': 1.1.3
|
|
7125
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
7126
|
-
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.
|
|
7127
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7128
|
-
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7129
|
-
'@radix-ui/react-toggle': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7130
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
7268
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7269
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7270
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7271
|
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7272
|
+
'@radix-ui/react-toggle': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7273
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
7131
7274
|
react: 19.2.3
|
|
7132
7275
|
react-dom: 19.2.3(react@19.2.3)
|
|
7133
7276
|
optionalDependencies:
|
|
7134
|
-
'@types/react': 19.2.
|
|
7135
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7277
|
+
'@types/react': 19.2.10
|
|
7278
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
7136
7279
|
|
|
7137
|
-
'@radix-ui/react-toggle@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7280
|
+
'@radix-ui/react-toggle@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
7138
7281
|
dependencies:
|
|
7139
7282
|
'@radix-ui/primitive': 1.1.3
|
|
7140
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7141
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
7283
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7284
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
7142
7285
|
react: 19.2.3
|
|
7143
7286
|
react-dom: 19.2.3(react@19.2.3)
|
|
7144
7287
|
optionalDependencies:
|
|
7145
|
-
'@types/react': 19.2.
|
|
7146
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7288
|
+
'@types/react': 19.2.10
|
|
7289
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
7147
7290
|
|
|
7148
|
-
'@radix-ui/react-tooltip@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7291
|
+
'@radix-ui/react-tooltip@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
7149
7292
|
dependencies:
|
|
7150
7293
|
'@radix-ui/primitive': 1.1.3
|
|
7151
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
7152
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.
|
|
7153
|
-
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7154
|
-
'@radix-ui/react-id': 1.1.1(@types/react@19.2.
|
|
7155
|
-
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7156
|
-
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7157
|
-
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7158
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7159
|
-
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.
|
|
7160
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.
|
|
7161
|
-
'@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7294
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7295
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
7296
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7297
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7298
|
+
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7299
|
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7300
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7301
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7302
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.10)(react@19.2.3)
|
|
7303
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.10)(react@19.2.3)
|
|
7304
|
+
'@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7162
7305
|
react: 19.2.3
|
|
7163
7306
|
react-dom: 19.2.3(react@19.2.3)
|
|
7164
7307
|
optionalDependencies:
|
|
7165
|
-
'@types/react': 19.2.
|
|
7166
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7308
|
+
'@types/react': 19.2.10
|
|
7309
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
7167
7310
|
|
|
7168
|
-
'@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.
|
|
7311
|
+
'@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.10)(react@19.2.3)':
|
|
7169
7312
|
dependencies:
|
|
7170
7313
|
react: 19.2.3
|
|
7171
7314
|
optionalDependencies:
|
|
7172
|
-
'@types/react': 19.2.
|
|
7315
|
+
'@types/react': 19.2.10
|
|
7173
7316
|
|
|
7174
|
-
'@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.
|
|
7317
|
+
'@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.10)(react@19.2.3)':
|
|
7175
7318
|
dependencies:
|
|
7176
|
-
'@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.
|
|
7177
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.
|
|
7319
|
+
'@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.10)(react@19.2.3)
|
|
7320
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7178
7321
|
react: 19.2.3
|
|
7179
7322
|
optionalDependencies:
|
|
7180
|
-
'@types/react': 19.2.
|
|
7323
|
+
'@types/react': 19.2.10
|
|
7181
7324
|
|
|
7182
|
-
'@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.
|
|
7325
|
+
'@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.10)(react@19.2.3)':
|
|
7183
7326
|
dependencies:
|
|
7184
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.
|
|
7327
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7185
7328
|
react: 19.2.3
|
|
7186
7329
|
optionalDependencies:
|
|
7187
|
-
'@types/react': 19.2.
|
|
7330
|
+
'@types/react': 19.2.10
|
|
7188
7331
|
|
|
7189
|
-
'@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.
|
|
7332
|
+
'@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.10)(react@19.2.3)':
|
|
7190
7333
|
dependencies:
|
|
7191
|
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.
|
|
7334
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7192
7335
|
react: 19.2.3
|
|
7193
7336
|
optionalDependencies:
|
|
7194
|
-
'@types/react': 19.2.
|
|
7337
|
+
'@types/react': 19.2.10
|
|
7195
7338
|
|
|
7196
|
-
'@radix-ui/react-use-is-hydrated@0.1.0(@types/react@19.2.
|
|
7339
|
+
'@radix-ui/react-use-is-hydrated@0.1.0(@types/react@19.2.10)(react@19.2.3)':
|
|
7197
7340
|
dependencies:
|
|
7198
7341
|
react: 19.2.3
|
|
7199
7342
|
use-sync-external-store: 1.6.0(react@19.2.3)
|
|
7200
7343
|
optionalDependencies:
|
|
7201
|
-
'@types/react': 19.2.
|
|
7344
|
+
'@types/react': 19.2.10
|
|
7202
7345
|
|
|
7203
|
-
'@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.
|
|
7346
|
+
'@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.10)(react@19.2.3)':
|
|
7204
7347
|
dependencies:
|
|
7205
7348
|
react: 19.2.3
|
|
7206
7349
|
optionalDependencies:
|
|
7207
|
-
'@types/react': 19.2.
|
|
7350
|
+
'@types/react': 19.2.10
|
|
7208
7351
|
|
|
7209
|
-
'@radix-ui/react-use-previous@1.1.1(@types/react@19.2.
|
|
7352
|
+
'@radix-ui/react-use-previous@1.1.1(@types/react@19.2.10)(react@19.2.3)':
|
|
7210
7353
|
dependencies:
|
|
7211
7354
|
react: 19.2.3
|
|
7212
7355
|
optionalDependencies:
|
|
7213
|
-
'@types/react': 19.2.
|
|
7356
|
+
'@types/react': 19.2.10
|
|
7214
7357
|
|
|
7215
|
-
'@radix-ui/react-use-rect@1.1.1(@types/react@19.2.
|
|
7358
|
+
'@radix-ui/react-use-rect@1.1.1(@types/react@19.2.10)(react@19.2.3)':
|
|
7216
7359
|
dependencies:
|
|
7217
7360
|
'@radix-ui/rect': 1.1.1
|
|
7218
7361
|
react: 19.2.3
|
|
7219
7362
|
optionalDependencies:
|
|
7220
|
-
'@types/react': 19.2.
|
|
7363
|
+
'@types/react': 19.2.10
|
|
7221
7364
|
|
|
7222
|
-
'@radix-ui/react-use-size@1.1.1(@types/react@19.2.
|
|
7365
|
+
'@radix-ui/react-use-size@1.1.1(@types/react@19.2.10)(react@19.2.3)':
|
|
7223
7366
|
dependencies:
|
|
7224
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.
|
|
7367
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
7225
7368
|
react: 19.2.3
|
|
7226
7369
|
optionalDependencies:
|
|
7227
|
-
'@types/react': 19.2.
|
|
7370
|
+
'@types/react': 19.2.10
|
|
7228
7371
|
|
|
7229
|
-
'@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7372
|
+
'@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
|
|
7230
7373
|
dependencies:
|
|
7231
|
-
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.
|
|
7374
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
7232
7375
|
react: 19.2.3
|
|
7233
7376
|
react-dom: 19.2.3(react@19.2.3)
|
|
7234
7377
|
optionalDependencies:
|
|
7235
|
-
'@types/react': 19.2.
|
|
7236
|
-
'@types/react-dom': 19.2.3(@types/react@19.2.
|
|
7378
|
+
'@types/react': 19.2.10
|
|
7379
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.10)
|
|
7237
7380
|
|
|
7238
7381
|
'@radix-ui/rect@1.1.1': {}
|
|
7239
7382
|
|
|
@@ -7318,7 +7461,7 @@ snapshots:
|
|
|
7318
7461
|
'@smithy/util-middleware': 4.2.8
|
|
7319
7462
|
tslib: 2.8.1
|
|
7320
7463
|
|
|
7321
|
-
'@smithy/core@3.
|
|
7464
|
+
'@smithy/core@3.22.0':
|
|
7322
7465
|
dependencies:
|
|
7323
7466
|
'@smithy/middleware-serde': 4.2.9
|
|
7324
7467
|
'@smithy/protocol-http': 5.3.8
|
|
@@ -7422,9 +7565,9 @@ snapshots:
|
|
|
7422
7565
|
'@smithy/types': 4.12.0
|
|
7423
7566
|
tslib: 2.8.1
|
|
7424
7567
|
|
|
7425
|
-
'@smithy/middleware-endpoint@4.4.
|
|
7568
|
+
'@smithy/middleware-endpoint@4.4.12':
|
|
7426
7569
|
dependencies:
|
|
7427
|
-
'@smithy/core': 3.
|
|
7570
|
+
'@smithy/core': 3.22.0
|
|
7428
7571
|
'@smithy/middleware-serde': 4.2.9
|
|
7429
7572
|
'@smithy/node-config-provider': 4.3.8
|
|
7430
7573
|
'@smithy/shared-ini-file-loader': 4.4.3
|
|
@@ -7433,12 +7576,12 @@ snapshots:
|
|
|
7433
7576
|
'@smithy/util-middleware': 4.2.8
|
|
7434
7577
|
tslib: 2.8.1
|
|
7435
7578
|
|
|
7436
|
-
'@smithy/middleware-retry@4.4.
|
|
7579
|
+
'@smithy/middleware-retry@4.4.29':
|
|
7437
7580
|
dependencies:
|
|
7438
7581
|
'@smithy/node-config-provider': 4.3.8
|
|
7439
7582
|
'@smithy/protocol-http': 5.3.8
|
|
7440
7583
|
'@smithy/service-error-classification': 4.2.8
|
|
7441
|
-
'@smithy/smithy-client': 4.
|
|
7584
|
+
'@smithy/smithy-client': 4.11.1
|
|
7442
7585
|
'@smithy/types': 4.12.0
|
|
7443
7586
|
'@smithy/util-middleware': 4.2.8
|
|
7444
7587
|
'@smithy/util-retry': 4.2.8
|
|
@@ -7512,10 +7655,10 @@ snapshots:
|
|
|
7512
7655
|
'@smithy/util-utf8': 4.2.0
|
|
7513
7656
|
tslib: 2.8.1
|
|
7514
7657
|
|
|
7515
|
-
'@smithy/smithy-client@4.
|
|
7658
|
+
'@smithy/smithy-client@4.11.1':
|
|
7516
7659
|
dependencies:
|
|
7517
|
-
'@smithy/core': 3.
|
|
7518
|
-
'@smithy/middleware-endpoint': 4.4.
|
|
7660
|
+
'@smithy/core': 3.22.0
|
|
7661
|
+
'@smithy/middleware-endpoint': 4.4.12
|
|
7519
7662
|
'@smithy/middleware-stack': 4.2.8
|
|
7520
7663
|
'@smithy/protocol-http': 5.3.8
|
|
7521
7664
|
'@smithy/types': 4.12.0
|
|
@@ -7560,20 +7703,20 @@ snapshots:
|
|
|
7560
7703
|
dependencies:
|
|
7561
7704
|
tslib: 2.8.1
|
|
7562
7705
|
|
|
7563
|
-
'@smithy/util-defaults-mode-browser@4.3.
|
|
7706
|
+
'@smithy/util-defaults-mode-browser@4.3.28':
|
|
7564
7707
|
dependencies:
|
|
7565
7708
|
'@smithy/property-provider': 4.2.8
|
|
7566
|
-
'@smithy/smithy-client': 4.
|
|
7709
|
+
'@smithy/smithy-client': 4.11.1
|
|
7567
7710
|
'@smithy/types': 4.12.0
|
|
7568
7711
|
tslib: 2.8.1
|
|
7569
7712
|
|
|
7570
|
-
'@smithy/util-defaults-mode-node@4.2.
|
|
7713
|
+
'@smithy/util-defaults-mode-node@4.2.31':
|
|
7571
7714
|
dependencies:
|
|
7572
7715
|
'@smithy/config-resolver': 4.4.6
|
|
7573
7716
|
'@smithy/credential-provider-imds': 4.2.8
|
|
7574
7717
|
'@smithy/node-config-provider': 4.3.8
|
|
7575
7718
|
'@smithy/property-provider': 4.2.8
|
|
7576
|
-
'@smithy/smithy-client': 4.
|
|
7719
|
+
'@smithy/smithy-client': 4.11.1
|
|
7577
7720
|
'@smithy/types': 4.12.0
|
|
7578
7721
|
tslib: 2.8.1
|
|
7579
7722
|
|
|
@@ -7635,6 +7778,44 @@ snapshots:
|
|
|
7635
7778
|
|
|
7636
7779
|
'@standard-schema/utils@0.3.0': {}
|
|
7637
7780
|
|
|
7781
|
+
'@supabase/auth-js@2.95.3':
|
|
7782
|
+
dependencies:
|
|
7783
|
+
tslib: 2.8.1
|
|
7784
|
+
|
|
7785
|
+
'@supabase/functions-js@2.95.3':
|
|
7786
|
+
dependencies:
|
|
7787
|
+
tslib: 2.8.1
|
|
7788
|
+
|
|
7789
|
+
'@supabase/postgrest-js@2.95.3':
|
|
7790
|
+
dependencies:
|
|
7791
|
+
tslib: 2.8.1
|
|
7792
|
+
|
|
7793
|
+
'@supabase/realtime-js@2.95.3':
|
|
7794
|
+
dependencies:
|
|
7795
|
+
'@types/phoenix': 1.6.7
|
|
7796
|
+
'@types/ws': 8.18.1
|
|
7797
|
+
tslib: 2.8.1
|
|
7798
|
+
ws: 8.19.0
|
|
7799
|
+
transitivePeerDependencies:
|
|
7800
|
+
- bufferutil
|
|
7801
|
+
- utf-8-validate
|
|
7802
|
+
|
|
7803
|
+
'@supabase/storage-js@2.95.3':
|
|
7804
|
+
dependencies:
|
|
7805
|
+
iceberg-js: 0.8.1
|
|
7806
|
+
tslib: 2.8.1
|
|
7807
|
+
|
|
7808
|
+
'@supabase/supabase-js@2.95.3':
|
|
7809
|
+
dependencies:
|
|
7810
|
+
'@supabase/auth-js': 2.95.3
|
|
7811
|
+
'@supabase/functions-js': 2.95.3
|
|
7812
|
+
'@supabase/postgrest-js': 2.95.3
|
|
7813
|
+
'@supabase/realtime-js': 2.95.3
|
|
7814
|
+
'@supabase/storage-js': 2.95.3
|
|
7815
|
+
transitivePeerDependencies:
|
|
7816
|
+
- bufferutil
|
|
7817
|
+
- utf-8-validate
|
|
7818
|
+
|
|
7638
7819
|
'@swc/helpers@0.5.15':
|
|
7639
7820
|
dependencies:
|
|
7640
7821
|
tslib: 2.8.1
|
|
@@ -7771,15 +7952,17 @@ snapshots:
|
|
|
7771
7952
|
pg-protocol: 1.11.0
|
|
7772
7953
|
pg-types: 2.2.0
|
|
7773
7954
|
|
|
7774
|
-
'@types/
|
|
7955
|
+
'@types/phoenix@1.6.7': {}
|
|
7956
|
+
|
|
7957
|
+
'@types/react-dom@19.2.3(@types/react@19.2.10)':
|
|
7775
7958
|
dependencies:
|
|
7776
|
-
'@types/react': 19.2.
|
|
7959
|
+
'@types/react': 19.2.10
|
|
7777
7960
|
|
|
7778
|
-
'@types/react-reconciler@0.
|
|
7961
|
+
'@types/react-reconciler@0.33.0(@types/react@19.2.10)':
|
|
7779
7962
|
dependencies:
|
|
7780
|
-
'@types/react': 19.2.
|
|
7963
|
+
'@types/react': 19.2.10
|
|
7781
7964
|
|
|
7782
|
-
'@types/react@19.2.
|
|
7965
|
+
'@types/react@19.2.10':
|
|
7783
7966
|
dependencies:
|
|
7784
7967
|
csstype: 3.2.3
|
|
7785
7968
|
|
|
@@ -7789,14 +7972,18 @@ snapshots:
|
|
|
7789
7972
|
|
|
7790
7973
|
'@types/validate-npm-package-name@4.0.2': {}
|
|
7791
7974
|
|
|
7792
|
-
'@
|
|
7975
|
+
'@types/ws@8.18.1':
|
|
7976
|
+
dependencies:
|
|
7977
|
+
'@types/node': 20.19.30
|
|
7978
|
+
|
|
7979
|
+
'@typescript-eslint/eslint-plugin@8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
|
|
7793
7980
|
dependencies:
|
|
7794
7981
|
'@eslint-community/regexpp': 4.12.2
|
|
7795
|
-
'@typescript-eslint/parser': 8.
|
|
7796
|
-
'@typescript-eslint/scope-manager': 8.
|
|
7797
|
-
'@typescript-eslint/type-utils': 8.
|
|
7798
|
-
'@typescript-eslint/utils': 8.
|
|
7799
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
7982
|
+
'@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
|
|
7983
|
+
'@typescript-eslint/scope-manager': 8.54.0
|
|
7984
|
+
'@typescript-eslint/type-utils': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
|
|
7985
|
+
'@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
|
|
7986
|
+
'@typescript-eslint/visitor-keys': 8.54.0
|
|
7800
7987
|
eslint: 9.39.2(jiti@2.6.1)
|
|
7801
7988
|
ignore: 7.0.5
|
|
7802
7989
|
natural-compare: 1.4.0
|
|
@@ -7805,41 +7992,41 @@ snapshots:
|
|
|
7805
7992
|
transitivePeerDependencies:
|
|
7806
7993
|
- supports-color
|
|
7807
7994
|
|
|
7808
|
-
'@typescript-eslint/parser@8.
|
|
7995
|
+
'@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
|
|
7809
7996
|
dependencies:
|
|
7810
|
-
'@typescript-eslint/scope-manager': 8.
|
|
7811
|
-
'@typescript-eslint/types': 8.
|
|
7812
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
7813
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
7997
|
+
'@typescript-eslint/scope-manager': 8.54.0
|
|
7998
|
+
'@typescript-eslint/types': 8.54.0
|
|
7999
|
+
'@typescript-eslint/typescript-estree': 8.54.0(typescript@5.9.3)
|
|
8000
|
+
'@typescript-eslint/visitor-keys': 8.54.0
|
|
7814
8001
|
debug: 4.4.3
|
|
7815
8002
|
eslint: 9.39.2(jiti@2.6.1)
|
|
7816
8003
|
typescript: 5.9.3
|
|
7817
8004
|
transitivePeerDependencies:
|
|
7818
8005
|
- supports-color
|
|
7819
8006
|
|
|
7820
|
-
'@typescript-eslint/project-service@8.
|
|
8007
|
+
'@typescript-eslint/project-service@8.54.0(typescript@5.9.3)':
|
|
7821
8008
|
dependencies:
|
|
7822
|
-
'@typescript-eslint/tsconfig-utils': 8.
|
|
7823
|
-
'@typescript-eslint/types': 8.
|
|
8009
|
+
'@typescript-eslint/tsconfig-utils': 8.54.0(typescript@5.9.3)
|
|
8010
|
+
'@typescript-eslint/types': 8.54.0
|
|
7824
8011
|
debug: 4.4.3
|
|
7825
8012
|
typescript: 5.9.3
|
|
7826
8013
|
transitivePeerDependencies:
|
|
7827
8014
|
- supports-color
|
|
7828
8015
|
|
|
7829
|
-
'@typescript-eslint/scope-manager@8.
|
|
8016
|
+
'@typescript-eslint/scope-manager@8.54.0':
|
|
7830
8017
|
dependencies:
|
|
7831
|
-
'@typescript-eslint/types': 8.
|
|
7832
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
8018
|
+
'@typescript-eslint/types': 8.54.0
|
|
8019
|
+
'@typescript-eslint/visitor-keys': 8.54.0
|
|
7833
8020
|
|
|
7834
|
-
'@typescript-eslint/tsconfig-utils@8.
|
|
8021
|
+
'@typescript-eslint/tsconfig-utils@8.54.0(typescript@5.9.3)':
|
|
7835
8022
|
dependencies:
|
|
7836
8023
|
typescript: 5.9.3
|
|
7837
8024
|
|
|
7838
|
-
'@typescript-eslint/type-utils@8.
|
|
8025
|
+
'@typescript-eslint/type-utils@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
|
|
7839
8026
|
dependencies:
|
|
7840
|
-
'@typescript-eslint/types': 8.
|
|
7841
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
7842
|
-
'@typescript-eslint/utils': 8.
|
|
8027
|
+
'@typescript-eslint/types': 8.54.0
|
|
8028
|
+
'@typescript-eslint/typescript-estree': 8.54.0(typescript@5.9.3)
|
|
8029
|
+
'@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
|
|
7843
8030
|
debug: 4.4.3
|
|
7844
8031
|
eslint: 9.39.2(jiti@2.6.1)
|
|
7845
8032
|
ts-api-utils: 2.4.0(typescript@5.9.3)
|
|
@@ -7847,14 +8034,14 @@ snapshots:
|
|
|
7847
8034
|
transitivePeerDependencies:
|
|
7848
8035
|
- supports-color
|
|
7849
8036
|
|
|
7850
|
-
'@typescript-eslint/types@8.
|
|
8037
|
+
'@typescript-eslint/types@8.54.0': {}
|
|
7851
8038
|
|
|
7852
|
-
'@typescript-eslint/typescript-estree@8.
|
|
8039
|
+
'@typescript-eslint/typescript-estree@8.54.0(typescript@5.9.3)':
|
|
7853
8040
|
dependencies:
|
|
7854
|
-
'@typescript-eslint/project-service': 8.
|
|
7855
|
-
'@typescript-eslint/tsconfig-utils': 8.
|
|
7856
|
-
'@typescript-eslint/types': 8.
|
|
7857
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
8041
|
+
'@typescript-eslint/project-service': 8.54.0(typescript@5.9.3)
|
|
8042
|
+
'@typescript-eslint/tsconfig-utils': 8.54.0(typescript@5.9.3)
|
|
8043
|
+
'@typescript-eslint/types': 8.54.0
|
|
8044
|
+
'@typescript-eslint/visitor-keys': 8.54.0
|
|
7858
8045
|
debug: 4.4.3
|
|
7859
8046
|
minimatch: 9.0.5
|
|
7860
8047
|
semver: 7.7.3
|
|
@@ -7864,20 +8051,20 @@ snapshots:
|
|
|
7864
8051
|
transitivePeerDependencies:
|
|
7865
8052
|
- supports-color
|
|
7866
8053
|
|
|
7867
|
-
'@typescript-eslint/utils@8.
|
|
8054
|
+
'@typescript-eslint/utils@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
|
|
7868
8055
|
dependencies:
|
|
7869
8056
|
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
|
|
7870
|
-
'@typescript-eslint/scope-manager': 8.
|
|
7871
|
-
'@typescript-eslint/types': 8.
|
|
7872
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
8057
|
+
'@typescript-eslint/scope-manager': 8.54.0
|
|
8058
|
+
'@typescript-eslint/types': 8.54.0
|
|
8059
|
+
'@typescript-eslint/typescript-estree': 8.54.0(typescript@5.9.3)
|
|
7873
8060
|
eslint: 9.39.2(jiti@2.6.1)
|
|
7874
8061
|
typescript: 5.9.3
|
|
7875
8062
|
transitivePeerDependencies:
|
|
7876
8063
|
- supports-color
|
|
7877
8064
|
|
|
7878
|
-
'@typescript-eslint/visitor-keys@8.
|
|
8065
|
+
'@typescript-eslint/visitor-keys@8.54.0':
|
|
7879
8066
|
dependencies:
|
|
7880
|
-
'@typescript-eslint/types': 8.
|
|
8067
|
+
'@typescript-eslint/types': 8.54.0
|
|
7881
8068
|
eslint-visitor-keys: 4.2.1
|
|
7882
8069
|
|
|
7883
8070
|
'@unrs/resolver-binding-android-arm-eabi@1.11.1':
|
|
@@ -8181,7 +8368,7 @@ snapshots:
|
|
|
8181
8368
|
|
|
8182
8369
|
axe-core@4.11.1: {}
|
|
8183
8370
|
|
|
8184
|
-
axios@1.13.
|
|
8371
|
+
axios@1.13.4:
|
|
8185
8372
|
dependencies:
|
|
8186
8373
|
follow-redirects: 1.15.11
|
|
8187
8374
|
form-data: 4.0.5
|
|
@@ -8195,7 +8382,7 @@ snapshots:
|
|
|
8195
8382
|
|
|
8196
8383
|
base64-js@1.5.1: {}
|
|
8197
8384
|
|
|
8198
|
-
baseline-browser-mapping@2.9.
|
|
8385
|
+
baseline-browser-mapping@2.9.18: {}
|
|
8199
8386
|
|
|
8200
8387
|
binary-extensions@2.3.0: {}
|
|
8201
8388
|
|
|
@@ -8230,9 +8417,9 @@ snapshots:
|
|
|
8230
8417
|
|
|
8231
8418
|
browserslist@4.28.1:
|
|
8232
8419
|
dependencies:
|
|
8233
|
-
baseline-browser-mapping: 2.9.
|
|
8234
|
-
caniuse-lite: 1.0.
|
|
8235
|
-
electron-to-chromium: 1.5.
|
|
8420
|
+
baseline-browser-mapping: 2.9.18
|
|
8421
|
+
caniuse-lite: 1.0.30001766
|
|
8422
|
+
electron-to-chromium: 1.5.279
|
|
8236
8423
|
node-releases: 2.0.27
|
|
8237
8424
|
update-browserslist-db: 1.2.3(browserslist@4.28.1)
|
|
8238
8425
|
|
|
@@ -8270,7 +8457,7 @@ snapshots:
|
|
|
8270
8457
|
|
|
8271
8458
|
camelcase@6.3.0: {}
|
|
8272
8459
|
|
|
8273
|
-
caniuse-lite@1.0.
|
|
8460
|
+
caniuse-lite@1.0.30001766: {}
|
|
8274
8461
|
|
|
8275
8462
|
chalk@4.1.2:
|
|
8276
8463
|
dependencies:
|
|
@@ -8303,8 +8490,6 @@ snapshots:
|
|
|
8303
8490
|
|
|
8304
8491
|
cli-spinners@2.9.2: {}
|
|
8305
8492
|
|
|
8306
|
-
cli-spinners@3.4.0: {}
|
|
8307
|
-
|
|
8308
8493
|
cli-width@4.1.0: {}
|
|
8309
8494
|
|
|
8310
8495
|
client-only@0.0.1: {}
|
|
@@ -8317,12 +8502,12 @@ snapshots:
|
|
|
8317
8502
|
|
|
8318
8503
|
clsx@2.1.1: {}
|
|
8319
8504
|
|
|
8320
|
-
cmdk@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.
|
|
8505
|
+
cmdk@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
|
|
8321
8506
|
dependencies:
|
|
8322
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.
|
|
8323
|
-
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.
|
|
8324
|
-
'@radix-ui/react-id': 1.1.1(@types/react@19.2.
|
|
8325
|
-
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.
|
|
8507
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.10)(react@19.2.3)
|
|
8508
|
+
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
8509
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.10)(react@19.2.3)
|
|
8510
|
+
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
8326
8511
|
react: 19.2.3
|
|
8327
8512
|
react-dom: 19.2.3(react@19.2.3)
|
|
8328
8513
|
transitivePeerDependencies:
|
|
@@ -8365,7 +8550,7 @@ snapshots:
|
|
|
8365
8550
|
|
|
8366
8551
|
cookie@1.1.1: {}
|
|
8367
8552
|
|
|
8368
|
-
cors@2.8.
|
|
8553
|
+
cors@2.8.6:
|
|
8369
8554
|
dependencies:
|
|
8370
8555
|
object-assign: 4.1.1
|
|
8371
8556
|
vary: 1.1.2
|
|
@@ -8387,56 +8572,22 @@ snapshots:
|
|
|
8387
8572
|
optionalDependencies:
|
|
8388
8573
|
typescript: 5.9.3
|
|
8389
8574
|
|
|
8390
|
-
coze-coding-dev-sdk@0.7.
|
|
8575
|
+
coze-coding-dev-sdk@0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.6))(ws@8.19.0):
|
|
8391
8576
|
dependencies:
|
|
8392
|
-
'@
|
|
8393
|
-
'@
|
|
8394
|
-
'@
|
|
8395
|
-
|
|
8396
|
-
axios: 1.13.2
|
|
8397
|
-
chalk: 5.6.2
|
|
8398
|
-
commander: 14.0.2
|
|
8399
|
-
drizzle-kit: 0.31.8
|
|
8400
|
-
drizzle-orm: 0.45.1(@types/pg@8.16.0)(pg@8.17.2)
|
|
8401
|
-
ora: 9.1.0
|
|
8577
|
+
'@langchain/core': 1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6))
|
|
8578
|
+
'@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)
|
|
8579
|
+
'@supabase/supabase-js': 2.95.3
|
|
8580
|
+
axios: 1.13.4
|
|
8402
8581
|
pg: 8.17.2
|
|
8403
|
-
transliteration: 2.6.1
|
|
8404
8582
|
transitivePeerDependencies:
|
|
8405
|
-
- '@aws-sdk/client-rds-data'
|
|
8406
|
-
- '@cloudflare/workers-types'
|
|
8407
|
-
- '@electric-sql/pglite'
|
|
8408
|
-
- '@libsql/client'
|
|
8409
|
-
- '@libsql/client-wasm'
|
|
8410
|
-
- '@neondatabase/serverless'
|
|
8411
|
-
- '@op-engineering/op-sqlite'
|
|
8412
8583
|
- '@opentelemetry/api'
|
|
8413
8584
|
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
8414
8585
|
- '@opentelemetry/sdk-trace-base'
|
|
8415
|
-
-
|
|
8416
|
-
- '@prisma/client'
|
|
8417
|
-
- '@tidbcloud/serverless'
|
|
8418
|
-
- '@types/better-sqlite3'
|
|
8419
|
-
- '@types/pg'
|
|
8420
|
-
- '@types/sql.js'
|
|
8421
|
-
- '@upstash/redis'
|
|
8422
|
-
- '@vercel/postgres'
|
|
8423
|
-
- '@xata.io/client'
|
|
8424
|
-
- aws-crt
|
|
8425
|
-
- better-sqlite3
|
|
8426
|
-
- bun-types
|
|
8586
|
+
- bufferutil
|
|
8427
8587
|
- debug
|
|
8428
|
-
- expo-sqlite
|
|
8429
|
-
- gel
|
|
8430
|
-
- knex
|
|
8431
|
-
- kysely
|
|
8432
|
-
- mysql2
|
|
8433
8588
|
- openai
|
|
8434
8589
|
- pg-native
|
|
8435
|
-
-
|
|
8436
|
-
- prisma
|
|
8437
|
-
- sql.js
|
|
8438
|
-
- sqlite3
|
|
8439
|
-
- supports-color
|
|
8590
|
+
- utf-8-validate
|
|
8440
8591
|
- ws
|
|
8441
8592
|
|
|
8442
8593
|
cross-spawn@7.0.6:
|
|
@@ -8604,10 +8755,10 @@ snapshots:
|
|
|
8604
8755
|
'@types/pg': 8.16.0
|
|
8605
8756
|
pg: 8.17.2
|
|
8606
8757
|
|
|
8607
|
-
drizzle-zod@0.8.3(drizzle-orm@0.45.1(@types/pg@8.16.0)(pg@8.17.2))(zod@4.3.
|
|
8758
|
+
drizzle-zod@0.8.3(drizzle-orm@0.45.1(@types/pg@8.16.0)(pg@8.17.2))(zod@4.3.6):
|
|
8608
8759
|
dependencies:
|
|
8609
8760
|
drizzle-orm: 0.45.1(@types/pg@8.16.0)(pg@8.17.2)
|
|
8610
|
-
zod: 4.3.
|
|
8761
|
+
zod: 4.3.6
|
|
8611
8762
|
|
|
8612
8763
|
dunder-proto@1.0.1:
|
|
8613
8764
|
dependencies:
|
|
@@ -8617,7 +8768,7 @@ snapshots:
|
|
|
8617
8768
|
|
|
8618
8769
|
duplexer@0.1.2: {}
|
|
8619
8770
|
|
|
8620
|
-
eciesjs@0.4.
|
|
8771
|
+
eciesjs@0.4.17:
|
|
8621
8772
|
dependencies:
|
|
8622
8773
|
'@ecies/ciphers': 0.2.5(@noble/ciphers@1.3.0)
|
|
8623
8774
|
'@noble/ciphers': 1.3.0
|
|
@@ -8626,7 +8777,7 @@ snapshots:
|
|
|
8626
8777
|
|
|
8627
8778
|
ee-first@1.1.1: {}
|
|
8628
8779
|
|
|
8629
|
-
electron-to-chromium@1.5.
|
|
8780
|
+
electron-to-chromium@1.5.279: {}
|
|
8630
8781
|
|
|
8631
8782
|
embla-carousel-react@8.6.0(react@19.2.3):
|
|
8632
8783
|
dependencies:
|
|
@@ -8804,18 +8955,18 @@ snapshots:
|
|
|
8804
8955
|
|
|
8805
8956
|
escape-string-regexp@4.0.0: {}
|
|
8806
8957
|
|
|
8807
|
-
eslint-config-next@16.1.1(@typescript-eslint/parser@8.
|
|
8958
|
+
eslint-config-next@16.1.1(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3):
|
|
8808
8959
|
dependencies:
|
|
8809
8960
|
'@next/eslint-plugin-next': 16.1.1
|
|
8810
8961
|
eslint: 9.39.2(jiti@2.6.1)
|
|
8811
8962
|
eslint-import-resolver-node: 0.3.9
|
|
8812
8963
|
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1))
|
|
8813
|
-
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.
|
|
8964
|
+
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1))
|
|
8814
8965
|
eslint-plugin-jsx-a11y: 6.10.2(eslint@9.39.2(jiti@2.6.1))
|
|
8815
8966
|
eslint-plugin-react: 7.37.5(eslint@9.39.2(jiti@2.6.1))
|
|
8816
8967
|
eslint-plugin-react-hooks: 7.0.1(eslint@9.39.2(jiti@2.6.1))
|
|
8817
8968
|
globals: 16.4.0
|
|
8818
|
-
typescript-eslint: 8.
|
|
8969
|
+
typescript-eslint: 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
|
|
8819
8970
|
optionalDependencies:
|
|
8820
8971
|
typescript: 5.9.3
|
|
8821
8972
|
transitivePeerDependencies:
|
|
@@ -8843,22 +8994,22 @@ snapshots:
|
|
|
8843
8994
|
tinyglobby: 0.2.15
|
|
8844
8995
|
unrs-resolver: 1.11.1
|
|
8845
8996
|
optionalDependencies:
|
|
8846
|
-
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.
|
|
8997
|
+
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1))
|
|
8847
8998
|
transitivePeerDependencies:
|
|
8848
8999
|
- supports-color
|
|
8849
9000
|
|
|
8850
|
-
eslint-module-utils@2.12.1(@typescript-eslint/parser@8.
|
|
9001
|
+
eslint-module-utils@2.12.1(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1)):
|
|
8851
9002
|
dependencies:
|
|
8852
9003
|
debug: 3.2.7
|
|
8853
9004
|
optionalDependencies:
|
|
8854
|
-
'@typescript-eslint/parser': 8.
|
|
9005
|
+
'@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
|
|
8855
9006
|
eslint: 9.39.2(jiti@2.6.1)
|
|
8856
9007
|
eslint-import-resolver-node: 0.3.9
|
|
8857
9008
|
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1))
|
|
8858
9009
|
transitivePeerDependencies:
|
|
8859
9010
|
- supports-color
|
|
8860
9011
|
|
|
8861
|
-
eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.
|
|
9012
|
+
eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)):
|
|
8862
9013
|
dependencies:
|
|
8863
9014
|
'@rtsao/scc': 1.1.0
|
|
8864
9015
|
array-includes: 3.1.9
|
|
@@ -8869,7 +9020,7 @@ snapshots:
|
|
|
8869
9020
|
doctrine: 2.1.0
|
|
8870
9021
|
eslint: 9.39.2(jiti@2.6.1)
|
|
8871
9022
|
eslint-import-resolver-node: 0.3.9
|
|
8872
|
-
eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.
|
|
9023
|
+
eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1))
|
|
8873
9024
|
hasown: 2.0.2
|
|
8874
9025
|
is-core-module: 2.16.1
|
|
8875
9026
|
is-glob: 4.0.3
|
|
@@ -8881,7 +9032,7 @@ snapshots:
|
|
|
8881
9032
|
string.prototype.trimend: 1.0.9
|
|
8882
9033
|
tsconfig-paths: 3.15.0
|
|
8883
9034
|
optionalDependencies:
|
|
8884
|
-
'@typescript-eslint/parser': 8.
|
|
9035
|
+
'@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
|
|
8885
9036
|
transitivePeerDependencies:
|
|
8886
9037
|
- eslint-import-resolver-typescript
|
|
8887
9038
|
- eslint-import-resolver-webpack
|
|
@@ -8912,8 +9063,8 @@ snapshots:
|
|
|
8912
9063
|
'@babel/parser': 7.28.6
|
|
8913
9064
|
eslint: 9.39.2(jiti@2.6.1)
|
|
8914
9065
|
hermes-parser: 0.25.1
|
|
8915
|
-
zod: 4.3.
|
|
8916
|
-
zod-validation-error: 4.0.2(zod@4.3.
|
|
9066
|
+
zod: 4.3.6
|
|
9067
|
+
zod-validation-error: 4.0.2(zod@4.3.6)
|
|
8917
9068
|
transitivePeerDependencies:
|
|
8918
9069
|
- supports-color
|
|
8919
9070
|
|
|
@@ -9389,7 +9540,7 @@ snapshots:
|
|
|
9389
9540
|
dependencies:
|
|
9390
9541
|
hermes-estree: 0.25.1
|
|
9391
9542
|
|
|
9392
|
-
hono@4.11.
|
|
9543
|
+
hono@4.11.7: {}
|
|
9393
9544
|
|
|
9394
9545
|
hotkeys-js@3.13.15: {}
|
|
9395
9546
|
|
|
@@ -9412,6 +9563,8 @@ snapshots:
|
|
|
9412
9563
|
|
|
9413
9564
|
human-signals@8.0.1: {}
|
|
9414
9565
|
|
|
9566
|
+
iceberg-js@0.8.1: {}
|
|
9567
|
+
|
|
9415
9568
|
iconv-lite@0.7.2:
|
|
9416
9569
|
dependencies:
|
|
9417
9570
|
safer-buffer: 2.1.2
|
|
@@ -9693,7 +9846,7 @@ snapshots:
|
|
|
9693
9846
|
|
|
9694
9847
|
kleur@4.1.5: {}
|
|
9695
9848
|
|
|
9696
|
-
langsmith@0.4.
|
|
9849
|
+
langsmith@0.4.9(openai@6.16.0(ws@8.19.0)(zod@4.3.6)):
|
|
9697
9850
|
dependencies:
|
|
9698
9851
|
'@types/uuid': 10.0.0
|
|
9699
9852
|
chalk: 4.1.2
|
|
@@ -9702,7 +9855,7 @@ snapshots:
|
|
|
9702
9855
|
semver: 7.7.3
|
|
9703
9856
|
uuid: 10.0.0
|
|
9704
9857
|
optionalDependencies:
|
|
9705
|
-
openai: 6.16.0(zod@4.3.
|
|
9858
|
+
openai: 6.16.0(ws@8.19.0)(zod@4.3.6)
|
|
9706
9859
|
|
|
9707
9860
|
language-subtag-registry@0.3.23: {}
|
|
9708
9861
|
|
|
@@ -9781,18 +9934,13 @@ snapshots:
|
|
|
9781
9934
|
|
|
9782
9935
|
lodash.merge@4.6.2: {}
|
|
9783
9936
|
|
|
9784
|
-
lodash@4.17.
|
|
9937
|
+
lodash@4.17.23: {}
|
|
9785
9938
|
|
|
9786
9939
|
log-symbols@6.0.0:
|
|
9787
9940
|
dependencies:
|
|
9788
9941
|
chalk: 5.6.2
|
|
9789
9942
|
is-unicode-supported: 1.3.0
|
|
9790
9943
|
|
|
9791
|
-
log-symbols@7.0.1:
|
|
9792
|
-
dependencies:
|
|
9793
|
-
is-unicode-supported: 2.1.0
|
|
9794
|
-
yoctocolors: 2.1.2
|
|
9795
|
-
|
|
9796
9944
|
loose-envify@1.4.0:
|
|
9797
9945
|
dependencies:
|
|
9798
9946
|
js-tokens: 4.0.0
|
|
@@ -9879,7 +10027,7 @@ snapshots:
|
|
|
9879
10027
|
statuses: 2.0.2
|
|
9880
10028
|
strict-event-emitter: 0.5.1
|
|
9881
10029
|
tough-cookie: 6.0.0
|
|
9882
|
-
type-fest: 5.4.
|
|
10030
|
+
type-fest: 5.4.2
|
|
9883
10031
|
until-async: 3.0.2
|
|
9884
10032
|
yargs: 17.7.2
|
|
9885
10033
|
optionalDependencies:
|
|
@@ -9910,8 +10058,8 @@ snapshots:
|
|
|
9910
10058
|
dependencies:
|
|
9911
10059
|
'@next/env': 16.1.1
|
|
9912
10060
|
'@swc/helpers': 0.5.15
|
|
9913
|
-
baseline-browser-mapping: 2.9.
|
|
9914
|
-
caniuse-lite: 1.0.
|
|
10061
|
+
baseline-browser-mapping: 2.9.18
|
|
10062
|
+
caniuse-lite: 1.0.30001766
|
|
9915
10063
|
postcss: 8.4.31
|
|
9916
10064
|
react: 19.2.3
|
|
9917
10065
|
react-dom: 19.2.3(react@19.2.3)
|
|
@@ -10030,9 +10178,10 @@ snapshots:
|
|
|
10030
10178
|
is-docker: 2.2.1
|
|
10031
10179
|
is-wsl: 2.2.0
|
|
10032
10180
|
|
|
10033
|
-
openai@6.16.0(zod@4.3.
|
|
10181
|
+
openai@6.16.0(ws@8.19.0)(zod@4.3.6):
|
|
10034
10182
|
optionalDependencies:
|
|
10035
|
-
|
|
10183
|
+
ws: 8.19.0
|
|
10184
|
+
zod: 4.3.6
|
|
10036
10185
|
|
|
10037
10186
|
optionator@0.9.4:
|
|
10038
10187
|
dependencies:
|
|
@@ -10055,17 +10204,6 @@ snapshots:
|
|
|
10055
10204
|
string-width: 7.2.0
|
|
10056
10205
|
strip-ansi: 7.1.2
|
|
10057
10206
|
|
|
10058
|
-
ora@9.1.0:
|
|
10059
|
-
dependencies:
|
|
10060
|
-
chalk: 5.6.2
|
|
10061
|
-
cli-cursor: 5.0.0
|
|
10062
|
-
cli-spinners: 3.4.0
|
|
10063
|
-
is-interactive: 2.0.0
|
|
10064
|
-
is-unicode-supported: 2.1.0
|
|
10065
|
-
log-symbols: 7.0.1
|
|
10066
|
-
stdin-discarder: 0.2.2
|
|
10067
|
-
string-width: 8.1.0
|
|
10068
|
-
|
|
10069
10207
|
outvariant@1.4.3: {}
|
|
10070
10208
|
|
|
10071
10209
|
own-keys@1.0.1:
|
|
@@ -10272,14 +10410,14 @@ snapshots:
|
|
|
10272
10410
|
date-fns-jalali: 4.1.0-0
|
|
10273
10411
|
react: 19.2.3
|
|
10274
10412
|
|
|
10275
|
-
react-dev-inspector@2.0.1(@types/react@19.2.
|
|
10413
|
+
react-dev-inspector@2.0.1(@types/react@19.2.10)(eslint@9.39.2(jiti@2.6.1))(react@19.2.3)(typescript@5.9.3)(webpack@5.104.1(esbuild@0.25.12)):
|
|
10276
10414
|
dependencies:
|
|
10277
10415
|
'@react-dev-inspector/babel-plugin': 2.0.1
|
|
10278
10416
|
'@react-dev-inspector/middleware': 2.0.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)(webpack@5.104.1(esbuild@0.25.12))
|
|
10279
10417
|
'@react-dev-inspector/umi3-plugin': 2.0.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)(webpack@5.104.1(esbuild@0.25.12))
|
|
10280
10418
|
'@react-dev-inspector/umi4-plugin': 2.0.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)(webpack@5.104.1(esbuild@0.25.12))
|
|
10281
10419
|
'@react-dev-inspector/vite-plugin': 2.0.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)(webpack@5.104.1(esbuild@0.25.12))
|
|
10282
|
-
'@types/react-reconciler': 0.
|
|
10420
|
+
'@types/react-reconciler': 0.33.0(@types/react@19.2.10)
|
|
10283
10421
|
hotkeys-js: 3.13.15
|
|
10284
10422
|
picocolors: 1.0.0
|
|
10285
10423
|
react: 19.2.3
|
|
@@ -10341,26 +10479,26 @@ snapshots:
|
|
|
10341
10479
|
|
|
10342
10480
|
react-is@18.3.1: {}
|
|
10343
10481
|
|
|
10344
|
-
react-remove-scroll-bar@2.3.8(@types/react@19.2.
|
|
10482
|
+
react-remove-scroll-bar@2.3.8(@types/react@19.2.10)(react@19.2.3):
|
|
10345
10483
|
dependencies:
|
|
10346
10484
|
react: 19.2.3
|
|
10347
|
-
react-style-singleton: 2.2.3(@types/react@19.2.
|
|
10485
|
+
react-style-singleton: 2.2.3(@types/react@19.2.10)(react@19.2.3)
|
|
10348
10486
|
tslib: 2.8.1
|
|
10349
10487
|
optionalDependencies:
|
|
10350
|
-
'@types/react': 19.2.
|
|
10488
|
+
'@types/react': 19.2.10
|
|
10351
10489
|
|
|
10352
|
-
react-remove-scroll@2.7.2(@types/react@19.2.
|
|
10490
|
+
react-remove-scroll@2.7.2(@types/react@19.2.10)(react@19.2.3):
|
|
10353
10491
|
dependencies:
|
|
10354
10492
|
react: 19.2.3
|
|
10355
|
-
react-remove-scroll-bar: 2.3.8(@types/react@19.2.
|
|
10356
|
-
react-style-singleton: 2.2.3(@types/react@19.2.
|
|
10493
|
+
react-remove-scroll-bar: 2.3.8(@types/react@19.2.10)(react@19.2.3)
|
|
10494
|
+
react-style-singleton: 2.2.3(@types/react@19.2.10)(react@19.2.3)
|
|
10357
10495
|
tslib: 2.8.1
|
|
10358
|
-
use-callback-ref: 1.3.3(@types/react@19.2.
|
|
10359
|
-
use-sidecar: 1.1.3(@types/react@19.2.
|
|
10496
|
+
use-callback-ref: 1.3.3(@types/react@19.2.10)(react@19.2.3)
|
|
10497
|
+
use-sidecar: 1.1.3(@types/react@19.2.10)(react@19.2.3)
|
|
10360
10498
|
optionalDependencies:
|
|
10361
|
-
'@types/react': 19.2.
|
|
10499
|
+
'@types/react': 19.2.10
|
|
10362
10500
|
|
|
10363
|
-
react-resizable-panels@4.
|
|
10501
|
+
react-resizable-panels@4.5.2(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
|
|
10364
10502
|
dependencies:
|
|
10365
10503
|
react: 19.2.3
|
|
10366
10504
|
react-dom: 19.2.3(react@19.2.3)
|
|
@@ -10373,13 +10511,13 @@ snapshots:
|
|
|
10373
10511
|
react-dom: 19.2.3(react@19.2.3)
|
|
10374
10512
|
react-transition-group: 4.4.5(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
10375
10513
|
|
|
10376
|
-
react-style-singleton@2.2.3(@types/react@19.2.
|
|
10514
|
+
react-style-singleton@2.2.3(@types/react@19.2.10)(react@19.2.3):
|
|
10377
10515
|
dependencies:
|
|
10378
10516
|
get-nonce: 1.0.1
|
|
10379
10517
|
react: 19.2.3
|
|
10380
10518
|
tslib: 2.8.1
|
|
10381
10519
|
optionalDependencies:
|
|
10382
|
-
'@types/react': 19.2.
|
|
10520
|
+
'@types/react': 19.2.10
|
|
10383
10521
|
|
|
10384
10522
|
react-transition-group@4.4.5(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
|
|
10385
10523
|
dependencies:
|
|
@@ -10418,7 +10556,7 @@ snapshots:
|
|
|
10418
10556
|
dependencies:
|
|
10419
10557
|
clsx: 2.1.1
|
|
10420
10558
|
eventemitter3: 4.0.7
|
|
10421
|
-
lodash: 4.17.
|
|
10559
|
+
lodash: 4.17.23
|
|
10422
10560
|
react: 19.2.3
|
|
10423
10561
|
react-dom: 19.2.3(react@19.2.3)
|
|
10424
10562
|
react-is: 18.3.1
|
|
@@ -10591,15 +10729,15 @@ snapshots:
|
|
|
10591
10729
|
|
|
10592
10730
|
setprototypeof@1.2.0: {}
|
|
10593
10731
|
|
|
10594
|
-
shadcn@3.7.0(@cfworker/json-schema@4.1.1)(@types/node@20.19.30)(hono@4.11.
|
|
10732
|
+
shadcn@3.7.0(@cfworker/json-schema@4.1.1)(@types/node@20.19.30)(hono@4.11.7)(typescript@5.9.3):
|
|
10595
10733
|
dependencies:
|
|
10596
10734
|
'@antfu/ni': 25.0.0
|
|
10597
10735
|
'@babel/core': 7.28.6
|
|
10598
10736
|
'@babel/parser': 7.28.6
|
|
10599
10737
|
'@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.28.6)
|
|
10600
10738
|
'@babel/preset-typescript': 7.28.5(@babel/core@7.28.6)
|
|
10601
|
-
'@dotenvx/dotenvx': 1.
|
|
10602
|
-
'@modelcontextprotocol/sdk': 1.25.3(@cfworker/json-schema@4.1.1)(hono@4.11.
|
|
10739
|
+
'@dotenvx/dotenvx': 1.52.0
|
|
10740
|
+
'@modelcontextprotocol/sdk': 1.25.3(@cfworker/json-schema@4.1.1)(hono@4.11.7)(zod@3.25.76)
|
|
10603
10741
|
'@types/validate-npm-package-name': 4.0.2
|
|
10604
10742
|
browserslist: 4.28.1
|
|
10605
10743
|
commander: 14.0.2
|
|
@@ -10759,11 +10897,6 @@ snapshots:
|
|
|
10759
10897
|
get-east-asian-width: 1.4.0
|
|
10760
10898
|
strip-ansi: 7.1.2
|
|
10761
10899
|
|
|
10762
|
-
string-width@8.1.0:
|
|
10763
|
-
dependencies:
|
|
10764
|
-
get-east-asian-width: 1.4.0
|
|
10765
|
-
strip-ansi: 7.1.2
|
|
10766
|
-
|
|
10767
10900
|
string.prototype.includes@2.0.1:
|
|
10768
10901
|
dependencies:
|
|
10769
10902
|
call-bind: 1.0.8
|
|
@@ -10916,8 +11049,6 @@ snapshots:
|
|
|
10916
11049
|
dependencies:
|
|
10917
11050
|
tldts: 7.0.19
|
|
10918
11051
|
|
|
10919
|
-
transliteration@2.6.1: {}
|
|
10920
|
-
|
|
10921
11052
|
ts-api-utils@2.4.0(typescript@5.9.3):
|
|
10922
11053
|
dependencies:
|
|
10923
11054
|
typescript: 5.9.3
|
|
@@ -10942,13 +11073,20 @@ snapshots:
|
|
|
10942
11073
|
|
|
10943
11074
|
tslib@2.8.1: {}
|
|
10944
11075
|
|
|
11076
|
+
tsx@4.21.0:
|
|
11077
|
+
dependencies:
|
|
11078
|
+
esbuild: 0.25.12
|
|
11079
|
+
get-tsconfig: 4.13.0
|
|
11080
|
+
optionalDependencies:
|
|
11081
|
+
fsevents: 2.3.3
|
|
11082
|
+
|
|
10945
11083
|
tw-animate-css@1.4.0: {}
|
|
10946
11084
|
|
|
10947
11085
|
type-check@0.4.0:
|
|
10948
11086
|
dependencies:
|
|
10949
11087
|
prelude-ls: 1.2.1
|
|
10950
11088
|
|
|
10951
|
-
type-fest@5.4.
|
|
11089
|
+
type-fest@5.4.2:
|
|
10952
11090
|
dependencies:
|
|
10953
11091
|
tagged-tag: 1.0.0
|
|
10954
11092
|
|
|
@@ -10991,12 +11129,12 @@ snapshots:
|
|
|
10991
11129
|
possible-typed-array-names: 1.1.0
|
|
10992
11130
|
reflect.getprototypeof: 1.0.10
|
|
10993
11131
|
|
|
10994
|
-
typescript-eslint@8.
|
|
11132
|
+
typescript-eslint@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3):
|
|
10995
11133
|
dependencies:
|
|
10996
|
-
'@typescript-eslint/eslint-plugin': 8.
|
|
10997
|
-
'@typescript-eslint/parser': 8.
|
|
10998
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
10999
|
-
'@typescript-eslint/utils': 8.
|
|
11134
|
+
'@typescript-eslint/eslint-plugin': 8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
|
|
11135
|
+
'@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
|
|
11136
|
+
'@typescript-eslint/typescript-estree': 8.54.0(typescript@5.9.3)
|
|
11137
|
+
'@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
|
|
11000
11138
|
eslint: 9.39.2(jiti@2.6.1)
|
|
11001
11139
|
typescript: 5.9.3
|
|
11002
11140
|
transitivePeerDependencies:
|
|
@@ -11055,20 +11193,20 @@ snapshots:
|
|
|
11055
11193
|
dependencies:
|
|
11056
11194
|
punycode: 2.3.1
|
|
11057
11195
|
|
|
11058
|
-
use-callback-ref@1.3.3(@types/react@19.2.
|
|
11196
|
+
use-callback-ref@1.3.3(@types/react@19.2.10)(react@19.2.3):
|
|
11059
11197
|
dependencies:
|
|
11060
11198
|
react: 19.2.3
|
|
11061
11199
|
tslib: 2.8.1
|
|
11062
11200
|
optionalDependencies:
|
|
11063
|
-
'@types/react': 19.2.
|
|
11201
|
+
'@types/react': 19.2.10
|
|
11064
11202
|
|
|
11065
|
-
use-sidecar@1.1.3(@types/react@19.2.
|
|
11203
|
+
use-sidecar@1.1.3(@types/react@19.2.10)(react@19.2.3):
|
|
11066
11204
|
dependencies:
|
|
11067
11205
|
detect-node-es: 1.1.0
|
|
11068
11206
|
react: 19.2.3
|
|
11069
11207
|
tslib: 2.8.1
|
|
11070
11208
|
optionalDependencies:
|
|
11071
|
-
'@types/react': 19.2.
|
|
11209
|
+
'@types/react': 19.2.10
|
|
11072
11210
|
|
|
11073
11211
|
use-sync-external-store@1.6.0(react@19.2.3):
|
|
11074
11212
|
dependencies:
|
|
@@ -11082,9 +11220,9 @@ snapshots:
|
|
|
11082
11220
|
|
|
11083
11221
|
vary@1.1.2: {}
|
|
11084
11222
|
|
|
11085
|
-
vaul@1.1.2(@types/react-dom@19.2.3(@types/react@19.2.
|
|
11223
|
+
vaul@1.1.2(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
|
|
11086
11224
|
dependencies:
|
|
11087
|
-
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.
|
|
11225
|
+
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
11088
11226
|
react: 19.2.3
|
|
11089
11227
|
react-dom: 19.2.3(react@19.2.3)
|
|
11090
11228
|
transitivePeerDependencies:
|
|
@@ -11220,6 +11358,8 @@ snapshots:
|
|
|
11220
11358
|
|
|
11221
11359
|
wrappy@1.0.2: {}
|
|
11222
11360
|
|
|
11361
|
+
ws@8.19.0: {}
|
|
11362
|
+
|
|
11223
11363
|
wsl-utils@0.3.1:
|
|
11224
11364
|
dependencies:
|
|
11225
11365
|
is-wsl: 3.1.0
|
|
@@ -11255,10 +11395,10 @@ snapshots:
|
|
|
11255
11395
|
dependencies:
|
|
11256
11396
|
zod: 3.25.76
|
|
11257
11397
|
|
|
11258
|
-
zod-validation-error@4.0.2(zod@4.3.
|
|
11398
|
+
zod-validation-error@4.0.2(zod@4.3.6):
|
|
11259
11399
|
dependencies:
|
|
11260
|
-
zod: 4.3.
|
|
11400
|
+
zod: 4.3.6
|
|
11261
11401
|
|
|
11262
11402
|
zod@3.25.76: {}
|
|
11263
11403
|
|
|
11264
|
-
zod@4.3.
|
|
11404
|
+
zod@4.3.6: {}
|