@coze-arch/cli 0.0.1-alpha.afefde → 0.0.1-alpha.b287c1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +30 -21
- package/lib/__templates__/expo/.cozeproj/scripts/prod_build.sh +2 -2
- package/lib/__templates__/expo/.cozeproj/scripts/prod_run.sh +2 -2
- package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +46 -0
- package/lib/__templates__/expo/AGENTS.md +74 -0
- package/lib/__templates__/expo/README.md +0 -71
- package/lib/__templates__/expo/_npmrc +1 -0
- package/lib/__templates__/expo/client/app/+not-found.tsx +30 -0
- package/lib/__templates__/expo/client/app/_layout.tsx +15 -12
- package/lib/__templates__/expo/client/app/index.tsx +1 -1
- package/lib/__templates__/expo/client/app.config.ts +4 -3
- package/lib/__templates__/expo/client/components/Screen.tsx +3 -19
- package/lib/__templates__/expo/client/components/ThemedView.tsx +1 -2
- package/lib/__templates__/expo/client/constants/theme.ts +21 -698
- package/lib/__templates__/expo/client/declarations.d.ts +5 -0
- package/lib/__templates__/expo/client/eslint.config.mjs +40 -10
- package/lib/__templates__/expo/client/hooks/{useColorScheme.ts → useColorScheme.tsx} +20 -6
- package/lib/__templates__/expo/client/hooks/useSafeRouter.ts +152 -0
- package/lib/__templates__/expo/client/hooks/useTheme.ts +26 -6
- 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/{home → demo}/index.tsx +4 -4
- package/lib/__templates__/expo/client/scripts/install-missing-deps.js +11 -10
- package/lib/__templates__/expo/client/utils/index.ts +22 -0
- package/lib/__templates__/expo/eslint-plugins/fontawesome6/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/fontawesome6/names.js +1889 -0
- package/lib/__templates__/expo/eslint-plugins/fontawesome6/rule.js +174 -0
- package/lib/__templates__/expo/eslint-plugins/fontawesome6/v5-only-names.js +388 -0
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
- package/lib/__templates__/expo/eslint-plugins/react-native/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/react-native/rule.js +64 -0
- package/lib/__templates__/expo/eslint-plugins/reanimated/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/reanimated/rule.js +88 -0
- package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/rule.js +120 -0
- package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/tech.md +58 -0
- package/lib/__templates__/expo/package.json +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/build.js +21 -0
- package/lib/__templates__/expo/server/package.json +9 -7
- package/lib/__templates__/expo/server/src/index.ts +3 -1
- 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/.babelrc +15 -0
- package/lib/__templates__/nextjs/AGENTS.md +54 -0
- package/lib/__templates__/nextjs/README.md +5 -0
- package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
- package/lib/__templates__/nextjs/next.config.ts +2 -3
- package/lib/__templates__/nextjs/package.json +8 -1
- package/lib/__templates__/nextjs/pnpm-lock.yaml +3472 -1561
- package/lib/__templates__/nextjs/scripts/build.sh +4 -1
- package/lib/__templates__/nextjs/scripts/dev.sh +8 -2
- package/lib/__templates__/nextjs/scripts/start.sh +7 -1
- package/lib/__templates__/nextjs/src/app/layout.tsx +5 -3
- package/lib/__templates__/nextjs/src/app/page.tsx +17 -60
- package/lib/__templates__/nextjs/src/server.ts +35 -0
- package/lib/__templates__/nextjs/template.config.js +47 -12
- package/lib/__templates__/nextjs/tsconfig.json +1 -1
- package/lib/__templates__/nuxt-vue/.coze +12 -0
- package/lib/__templates__/nuxt-vue/AGENTS.md +42 -0
- package/lib/__templates__/nuxt-vue/README.md +73 -0
- package/lib/__templates__/nuxt-vue/_gitignore +24 -0
- package/lib/__templates__/nuxt-vue/_npmrc +23 -0
- package/lib/__templates__/nuxt-vue/app/app.vue +6 -0
- package/lib/__templates__/nuxt-vue/app/pages/index.vue +23 -0
- package/lib/__templates__/nuxt-vue/assets/css/main.css +24 -0
- package/lib/__templates__/nuxt-vue/nuxt.config.ts +116 -0
- package/lib/__templates__/nuxt-vue/package.json +35 -0
- package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +8759 -0
- package/lib/__templates__/nuxt-vue/postcss.config.mjs +8 -0
- package/lib/__templates__/nuxt-vue/public/favicon.ico +0 -0
- package/lib/__templates__/nuxt-vue/public/robots.txt +2 -0
- package/lib/__templates__/nuxt-vue/scripts/build.sh +14 -0
- package/lib/__templates__/nuxt-vue/scripts/dev.sh +39 -0
- package/lib/__templates__/nuxt-vue/scripts/prepare.sh +14 -0
- package/lib/__templates__/nuxt-vue/scripts/start.sh +21 -0
- package/lib/__templates__/nuxt-vue/server/api/hello.ts +10 -0
- package/lib/__templates__/nuxt-vue/server/middleware/logger.ts +10 -0
- package/lib/__templates__/nuxt-vue/server/routes/health.ts +10 -0
- package/lib/__templates__/nuxt-vue/tailwind.config.js +13 -0
- package/lib/__templates__/nuxt-vue/template.config.js +87 -0
- package/lib/__templates__/nuxt-vue/tsconfig.json +18 -0
- package/lib/__templates__/taro/.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 +763 -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 +238 -0
- package/lib/__templates__/taro/config/prod.ts +34 -0
- package/lib/__templates__/taro/eslint.config.mjs +135 -0
- package/lib/__templates__/taro/key/private.appid.key +0 -0
- package/lib/__templates__/taro/package.json +112 -0
- package/lib/__templates__/taro/patches/@tarojs__plugin-mini-ci@4.1.9.patch +30 -0
- package/lib/__templates__/taro/pnpm-lock.yaml +23412 -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 +156 -0
- package/lib/__templates__/taro/src/app.tsx +9 -0
- package/lib/__templates__/taro/src/components/ui/accordion.tsx +159 -0
- package/lib/__templates__/taro/src/components/ui/alert-dialog.tsx +260 -0
- package/lib/__templates__/taro/src/components/ui/alert.tsx +60 -0
- package/lib/__templates__/taro/src/components/ui/aspect-ratio.tsx +36 -0
- package/lib/__templates__/taro/src/components/ui/avatar.tsx +84 -0
- package/lib/__templates__/taro/src/components/ui/badge.tsx +37 -0
- package/lib/__templates__/taro/src/components/ui/breadcrumb.tsx +117 -0
- package/lib/__templates__/taro/src/components/ui/button-group.tsx +83 -0
- package/lib/__templates__/taro/src/components/ui/button.tsx +67 -0
- package/lib/__templates__/taro/src/components/ui/calendar.tsx +394 -0
- package/lib/__templates__/taro/src/components/ui/card.tsx +108 -0
- package/lib/__templates__/taro/src/components/ui/carousel.tsx +228 -0
- package/lib/__templates__/taro/src/components/ui/checkbox.tsx +58 -0
- package/lib/__templates__/taro/src/components/ui/code-block.tsx +169 -0
- package/lib/__templates__/taro/src/components/ui/collapsible.tsx +71 -0
- package/lib/__templates__/taro/src/components/ui/command.tsx +385 -0
- package/lib/__templates__/taro/src/components/ui/context-menu.tsx +614 -0
- package/lib/__templates__/taro/src/components/ui/dialog.tsx +256 -0
- package/lib/__templates__/taro/src/components/ui/drawer.tsx +192 -0
- package/lib/__templates__/taro/src/components/ui/dropdown-menu.tsx +561 -0
- package/lib/__templates__/taro/src/components/ui/field.tsx +228 -0
- package/lib/__templates__/taro/src/components/ui/hover-card.tsx +282 -0
- package/lib/__templates__/taro/src/components/ui/input-group.tsx +197 -0
- package/lib/__templates__/taro/src/components/ui/input-otp.tsx +136 -0
- package/lib/__templates__/taro/src/components/ui/input.tsx +56 -0
- package/lib/__templates__/taro/src/components/ui/label.tsx +24 -0
- package/lib/__templates__/taro/src/components/ui/menubar.tsx +595 -0
- package/lib/__templates__/taro/src/components/ui/navigation-menu.tsx +264 -0
- package/lib/__templates__/taro/src/components/ui/pagination.tsx +118 -0
- package/lib/__templates__/taro/src/components/ui/popover.tsx +291 -0
- package/lib/__templates__/taro/src/components/ui/portal.tsx +19 -0
- package/lib/__templates__/taro/src/components/ui/progress.tsx +28 -0
- package/lib/__templates__/taro/src/components/ui/radio-group.tsx +64 -0
- package/lib/__templates__/taro/src/components/ui/resizable.tsx +346 -0
- package/lib/__templates__/taro/src/components/ui/scroll-area.tsx +34 -0
- package/lib/__templates__/taro/src/components/ui/select.tsx +438 -0
- package/lib/__templates__/taro/src/components/ui/separator.tsx +30 -0
- package/lib/__templates__/taro/src/components/ui/sheet.tsx +262 -0
- package/lib/__templates__/taro/src/components/ui/skeleton.tsx +17 -0
- package/lib/__templates__/taro/src/components/ui/slider.tsx +203 -0
- package/lib/__templates__/taro/src/components/ui/sonner.tsx +1 -0
- package/lib/__templates__/taro/src/components/ui/switch.tsx +55 -0
- package/lib/__templates__/taro/src/components/ui/table.tsx +142 -0
- package/lib/__templates__/taro/src/components/ui/tabs.tsx +114 -0
- package/lib/__templates__/taro/src/components/ui/textarea.tsx +54 -0
- package/lib/__templates__/taro/src/components/ui/toast.tsx +517 -0
- package/lib/__templates__/taro/src/components/ui/toggle-group.tsx +120 -0
- package/lib/__templates__/taro/src/components/ui/toggle.tsx +77 -0
- package/lib/__templates__/taro/src/components/ui/tooltip.tsx +455 -0
- package/lib/__templates__/taro/src/index.html +39 -0
- package/lib/__templates__/taro/src/lib/hooks/use-keyboard-offset.ts +37 -0
- package/lib/__templates__/taro/src/lib/measure.ts +115 -0
- package/lib/__templates__/taro/src/lib/platform.ts +12 -0
- package/lib/__templates__/taro/src/lib/utils.ts +6 -0
- package/lib/__templates__/taro/src/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 +238 -0
- package/lib/__templates__/taro/src/presets/h5-styles.ts +220 -0
- package/lib/__templates__/taro/src/presets/index.tsx +18 -0
- package/lib/__templates__/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 +52 -14
- package/lib/__templates__/vite/AGENTS.md +41 -0
- package/lib/__templates__/vite/README.md +190 -11
- package/lib/__templates__/vite/_gitignore +1 -0
- package/lib/__templates__/vite/eslint.config.mjs +6 -1
- package/lib/__templates__/vite/package.json +18 -2
- package/lib/__templates__/vite/pnpm-lock.yaml +1079 -2330
- package/lib/__templates__/vite/scripts/build.sh +4 -1
- package/lib/__templates__/vite/scripts/dev.sh +9 -2
- package/lib/__templates__/vite/scripts/start.sh +9 -3
- package/lib/__templates__/vite/server/routes/index.ts +31 -0
- package/lib/__templates__/vite/server/server.ts +65 -0
- package/lib/__templates__/vite/server/vite.ts +67 -0
- package/lib/__templates__/vite/src/main.ts +17 -48
- package/lib/__templates__/vite/template.config.js +47 -10
- package/lib/__templates__/vite/tsconfig.json +4 -3
- package/lib/__templates__/vite/vite.config.ts +5 -0
- package/lib/cli.js +909 -187
- package/package.json +7 -3
- package/lib/__templates__/expo/client/app/home.tsx +0 -1
- /package/lib/__templates__/expo/client/screens/{home → demo}/styles.ts +0 -0
|
@@ -4,16 +4,39 @@ settings:
|
|
|
4
4
|
autoInstallPeers: true
|
|
5
5
|
excludeLinksFromLockfile: false
|
|
6
6
|
|
|
7
|
+
overrides:
|
|
8
|
+
esbuild: ^0.27.2
|
|
9
|
+
is-generator-function: 1.0.10
|
|
10
|
+
|
|
7
11
|
importers:
|
|
8
12
|
|
|
9
13
|
.:
|
|
14
|
+
dependencies:
|
|
15
|
+
'@supabase/supabase-js':
|
|
16
|
+
specifier: 2.95.3
|
|
17
|
+
version: 2.95.3
|
|
18
|
+
dotenv:
|
|
19
|
+
specifier: ^17.2.3
|
|
20
|
+
version: 17.2.4
|
|
21
|
+
express:
|
|
22
|
+
specifier: ^4.21.2
|
|
23
|
+
version: 4.22.1
|
|
10
24
|
devDependencies:
|
|
25
|
+
'@types/express':
|
|
26
|
+
specifier: ^5.0.0
|
|
27
|
+
version: 5.0.6
|
|
28
|
+
'@types/node':
|
|
29
|
+
specifier: ^22.10.5
|
|
30
|
+
version: 22.19.15
|
|
11
31
|
autoprefixer:
|
|
12
32
|
specifier: ^10.4.20
|
|
13
33
|
version: 10.4.23(postcss@8.5.6)
|
|
14
34
|
coze-coding-dev-sdk:
|
|
15
|
-
specifier: ^0.7.
|
|
16
|
-
version: 0.7.
|
|
35
|
+
specifier: ^0.7.16
|
|
36
|
+
version: 0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0)
|
|
37
|
+
esbuild:
|
|
38
|
+
specifier: ^0.27.2
|
|
39
|
+
version: 0.27.2
|
|
17
40
|
eslint:
|
|
18
41
|
specifier: ^9
|
|
19
42
|
version: 9.39.2(jiti@1.21.7)
|
|
@@ -25,16 +48,22 @@ importers:
|
|
|
25
48
|
version: 8.5.6
|
|
26
49
|
tailwindcss:
|
|
27
50
|
specifier: ^3.4.17
|
|
28
|
-
version: 3.4.19
|
|
51
|
+
version: 3.4.19(tsx@4.21.0)
|
|
52
|
+
tsup:
|
|
53
|
+
specifier: ^8.3.5
|
|
54
|
+
version: 8.5.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)
|
|
55
|
+
tsx:
|
|
56
|
+
specifier: ^4.19.2
|
|
57
|
+
version: 4.21.0
|
|
29
58
|
typescript:
|
|
30
59
|
specifier: ^5.6.0
|
|
31
60
|
version: 5.9.3
|
|
32
61
|
typescript-eslint:
|
|
33
62
|
specifier: ^8
|
|
34
|
-
version: 8.
|
|
63
|
+
version: 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
35
64
|
vite:
|
|
36
65
|
specifier: ^7.2.4
|
|
37
|
-
version: 7.3.
|
|
66
|
+
version: 7.3.1(@types/node@22.19.15)(jiti@1.21.7)(tsx@4.21.0)
|
|
38
67
|
|
|
39
68
|
packages:
|
|
40
69
|
|
|
@@ -42,627 +71,159 @@ packages:
|
|
|
42
71
|
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
|
|
43
72
|
engines: {node: '>=10'}
|
|
44
73
|
|
|
45
|
-
'@aws-crypto/crc32@5.2.0':
|
|
46
|
-
resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==}
|
|
47
|
-
engines: {node: '>=16.0.0'}
|
|
48
|
-
|
|
49
|
-
'@aws-crypto/crc32c@5.2.0':
|
|
50
|
-
resolution: {integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==}
|
|
51
|
-
|
|
52
|
-
'@aws-crypto/sha1-browser@5.2.0':
|
|
53
|
-
resolution: {integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==}
|
|
54
|
-
|
|
55
|
-
'@aws-crypto/sha256-browser@5.2.0':
|
|
56
|
-
resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==}
|
|
57
|
-
|
|
58
|
-
'@aws-crypto/sha256-js@5.2.0':
|
|
59
|
-
resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==}
|
|
60
|
-
engines: {node: '>=16.0.0'}
|
|
61
|
-
|
|
62
|
-
'@aws-crypto/supports-web-crypto@5.2.0':
|
|
63
|
-
resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==}
|
|
64
|
-
|
|
65
|
-
'@aws-crypto/util@5.2.0':
|
|
66
|
-
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
|
|
67
|
-
|
|
68
|
-
'@aws-sdk/client-s3@3.969.0':
|
|
69
|
-
resolution: {integrity: sha512-dd19qt9wCY60AS0gc7K+C26U1SdtJddn8DkwHu3psCuGaZ8r9EAKbHTNC53iLsYD5OVGsZ5bkHKQ/BjjbSyVTQ==}
|
|
70
|
-
engines: {node: '>=20.0.0'}
|
|
71
|
-
|
|
72
|
-
'@aws-sdk/client-sso@3.969.0':
|
|
73
|
-
resolution: {integrity: sha512-Qn0Uz6o15q2S+1E6OpwRKmaAMoT4LktEn+Oibk28qb2Mne+emaDawhZXahOJb/wFw5lN2FEH7XoiSNenNNUmCw==}
|
|
74
|
-
engines: {node: '>=20.0.0'}
|
|
75
|
-
|
|
76
|
-
'@aws-sdk/core@3.969.0':
|
|
77
|
-
resolution: {integrity: sha512-qqmQt4z5rEK1OYVkVkboWgy/58CC5QaQ7oy0tvLe3iri/mfZbgJkA+pkwQyRP827DfCBZ3W7Ki9iwSa+B2U7uQ==}
|
|
78
|
-
engines: {node: '>=20.0.0'}
|
|
79
|
-
|
|
80
|
-
'@aws-sdk/crc64-nvme@3.969.0':
|
|
81
|
-
resolution: {integrity: sha512-IGNkP54HD3uuLnrPCYsv3ZD478UYq+9WwKrIVJ9Pdi3hxPg8562CH3ZHf8hEgfePN31P9Kj+Zu9kq2Qcjjt61A==}
|
|
82
|
-
engines: {node: '>=20.0.0'}
|
|
83
|
-
|
|
84
|
-
'@aws-sdk/credential-provider-env@3.969.0':
|
|
85
|
-
resolution: {integrity: sha512-yS96heH5XDUqS3qQNcdObKKMOqZaivuNInMVRpRli48aXW8fX1M3fY67K/Onlqa3Wxu6WfDc3ZGF52SywdLvbg==}
|
|
86
|
-
engines: {node: '>=20.0.0'}
|
|
87
|
-
|
|
88
|
-
'@aws-sdk/credential-provider-http@3.969.0':
|
|
89
|
-
resolution: {integrity: sha512-QCEFxBiUYFUW5VG6k8jKhT4luZndpC7uUY4u1olwt+OnJrl3N2yC7oS34isVBa3ioXZ4A0YagbXTa/3mXUhlAA==}
|
|
90
|
-
engines: {node: '>=20.0.0'}
|
|
91
|
-
|
|
92
|
-
'@aws-sdk/credential-provider-ini@3.969.0':
|
|
93
|
-
resolution: {integrity: sha512-lsXyTDkUrZPxjr0XruZrqdcHY9zHcIuoY3TOCQEm23VTc8Np2BenTtjGAIexkL3ar69K4u3FVLQroLpmFxeXqA==}
|
|
94
|
-
engines: {node: '>=20.0.0'}
|
|
95
|
-
|
|
96
|
-
'@aws-sdk/credential-provider-login@3.969.0':
|
|
97
|
-
resolution: {integrity: sha512-bIRFDf54qIUFFLTZNYt40d6EseNeK9w80dHEs7BVEAWoS23c9+MSqkdg/LJBBK9Kgy01vRmjiedfBZN+jGypLw==}
|
|
98
|
-
engines: {node: '>=20.0.0'}
|
|
99
|
-
|
|
100
|
-
'@aws-sdk/credential-provider-node@3.969.0':
|
|
101
|
-
resolution: {integrity: sha512-lImMjcy/5SGDIBk7PFJCqFO4rFuapKCvo1z2PidD3Cbz2D7wsJnyqUNQIp5Ix0Xc3/uAYG9zXI9kgaMf1dspIQ==}
|
|
102
|
-
engines: {node: '>=20.0.0'}
|
|
103
|
-
|
|
104
|
-
'@aws-sdk/credential-provider-process@3.969.0':
|
|
105
|
-
resolution: {integrity: sha512-2qQkM0rwd8Hl9nIHtUaqT8Z/djrulovqx/wBHsbRKaISwc2fiT3De1Lk1jx34Jzrz/dTHAMJJi+cML1N4Lk3kw==}
|
|
106
|
-
engines: {node: '>=20.0.0'}
|
|
107
|
-
|
|
108
|
-
'@aws-sdk/credential-provider-sso@3.969.0':
|
|
109
|
-
resolution: {integrity: sha512-JHqXw9Ct3dtZB86/zGFJYWyodr961GyIrqTBhV0brrZFPvcinM9abDSK58jt6GNBM2lqfMCvXL6I4ahNsMdkrg==}
|
|
110
|
-
engines: {node: '>=20.0.0'}
|
|
111
|
-
|
|
112
|
-
'@aws-sdk/credential-provider-web-identity@3.969.0':
|
|
113
|
-
resolution: {integrity: sha512-mKCZtqrs3ts3YmIjT4NFlYgT2Oe6syW0nX5m2l7iyrFrLXw26Zo3rx29DjGzycPdJHZZvsIy5y6yqChDuF65ng==}
|
|
114
|
-
engines: {node: '>=20.0.0'}
|
|
115
|
-
|
|
116
|
-
'@aws-sdk/lib-storage@3.969.0':
|
|
117
|
-
resolution: {integrity: sha512-p7Jxw8fr3pXRpqeM2VxWGzXF9DiI5qQWsDI81JM3Lkzg7KO5/7DObiyuGZrLuUB4ZUkkfkYtf9tooNYdDH4tSQ==}
|
|
118
|
-
engines: {node: '>=20.0.0'}
|
|
119
|
-
peerDependencies:
|
|
120
|
-
'@aws-sdk/client-s3': 3.969.0
|
|
121
|
-
|
|
122
|
-
'@aws-sdk/middleware-bucket-endpoint@3.969.0':
|
|
123
|
-
resolution: {integrity: sha512-MlbrlixtkTVhYhoasblKOkr7n2yydvUZjjxTnBhIuHmkyBS1619oGnTfq/uLeGYb4NYXdeQ5OYcqsRGvmWSuTw==}
|
|
124
|
-
engines: {node: '>=20.0.0'}
|
|
125
|
-
|
|
126
|
-
'@aws-sdk/middleware-expect-continue@3.969.0':
|
|
127
|
-
resolution: {integrity: sha512-qXygzSi8osok7tH9oeuS3HoKw6jRfbvg5Me/X5RlHOvSSqQz8c5O9f3MjUApaCUSwbAU92KrbZWasw2PKiaVHg==}
|
|
128
|
-
engines: {node: '>=20.0.0'}
|
|
129
|
-
|
|
130
|
-
'@aws-sdk/middleware-flexible-checksums@3.969.0':
|
|
131
|
-
resolution: {integrity: sha512-RKpo76qcHhQkSgu+wJNvwio8MzMD7ScwBaMCQhJfqzFTrhhlKtMkf8oxhBRRYU7rat368p35h6CbfxM18g/WNQ==}
|
|
132
|
-
engines: {node: '>=20.0.0'}
|
|
133
|
-
|
|
134
|
-
'@aws-sdk/middleware-host-header@3.969.0':
|
|
135
|
-
resolution: {integrity: sha512-AWa4rVsAfBR4xqm7pybQ8sUNJYnjyP/bJjfAw34qPuh3M9XrfGbAHG0aiAfQGrBnmS28jlO6Kz69o+c6PRw1dw==}
|
|
136
|
-
engines: {node: '>=20.0.0'}
|
|
137
|
-
|
|
138
|
-
'@aws-sdk/middleware-location-constraint@3.969.0':
|
|
139
|
-
resolution: {integrity: sha512-zH7pDfMLG/C4GWMOpvJEoYcSpj7XsNP9+irlgqwi667sUQ6doHQJ3yyDut3yiTk0maq1VgmriPFELyI9lrvH/g==}
|
|
140
|
-
engines: {node: '>=20.0.0'}
|
|
141
|
-
|
|
142
|
-
'@aws-sdk/middleware-logger@3.969.0':
|
|
143
|
-
resolution: {integrity: sha512-xwrxfip7Y2iTtCMJ+iifN1E1XMOuhxIHY9DreMCvgdl4r7+48x2S1bCYPWH3eNY85/7CapBWdJ8cerpEl12sQQ==}
|
|
144
|
-
engines: {node: '>=20.0.0'}
|
|
145
|
-
|
|
146
|
-
'@aws-sdk/middleware-recursion-detection@3.969.0':
|
|
147
|
-
resolution: {integrity: sha512-2r3PuNquU3CcS1Am4vn/KHFwLi8QFjMdA/R+CRDXT4AFO/0qxevF/YStW3gAKntQIgWgQV8ZdEtKAoJvLI4UWg==}
|
|
148
|
-
engines: {node: '>=20.0.0'}
|
|
149
|
-
|
|
150
|
-
'@aws-sdk/middleware-sdk-s3@3.969.0':
|
|
151
|
-
resolution: {integrity: sha512-xjcyZrbtvVaqkmjkhmqX+16Wf7zFVS/cYnNFu/JyG6ekkIxSXEAjptNwSEDzlAiLzf0Hf6dYj5erLZYGa40eWg==}
|
|
152
|
-
engines: {node: '>=20.0.0'}
|
|
153
|
-
|
|
154
|
-
'@aws-sdk/middleware-ssec@3.969.0':
|
|
155
|
-
resolution: {integrity: sha512-9wUYtd5ye4exygKHyl02lPVHUoAFlxxXoqvlw7u2sycfkK6uHLlwdsPru3MkMwj47ZSZs+lkyP/sVKXVMhuaAg==}
|
|
156
|
-
engines: {node: '>=20.0.0'}
|
|
157
|
-
|
|
158
|
-
'@aws-sdk/middleware-user-agent@3.969.0':
|
|
159
|
-
resolution: {integrity: sha512-Y6WkW8QQ2X9jG9HNBWyzp5KlJOCtLqX8VIvGLoGc2wXdZH7dgOy62uFhkfnHbgfiel6fkNYaycjGx/yyxi0JLQ==}
|
|
160
|
-
engines: {node: '>=20.0.0'}
|
|
161
|
-
|
|
162
|
-
'@aws-sdk/nested-clients@3.969.0':
|
|
163
|
-
resolution: {integrity: sha512-MJrejgODxVYZjQjSpPLJkVuxnbrue1x1R8+as3anT5V/wk9Qc/Pf5B1IFjM3Ak6uOtzuRYNY4auOvcg4U8twDA==}
|
|
164
|
-
engines: {node: '>=20.0.0'}
|
|
165
|
-
|
|
166
|
-
'@aws-sdk/region-config-resolver@3.969.0':
|
|
167
|
-
resolution: {integrity: sha512-scj9OXqKpcjJ4jsFLtqYWz3IaNvNOQTFFvEY8XMJXTv+3qF5I7/x9SJtKzTRJEBF3spjzBUYPtGFbs9sj4fisQ==}
|
|
168
|
-
engines: {node: '>=20.0.0'}
|
|
169
|
-
|
|
170
|
-
'@aws-sdk/signature-v4-multi-region@3.969.0':
|
|
171
|
-
resolution: {integrity: sha512-pv8BEQOlUzK+ww8ZfXZOnDzLfPO5+O7puBFtU1fE8CdCAQ/RP/B1XY3hxzW9Xs0dax7graYKnY8wd8ooYy7vBw==}
|
|
172
|
-
engines: {node: '>=20.0.0'}
|
|
173
|
-
|
|
174
|
-
'@aws-sdk/token-providers@3.969.0':
|
|
175
|
-
resolution: {integrity: sha512-ucs6QczPkvGinbGmhMlPCQnagGJ+xsM6itsSWlJzxo9YsP6jR75cBU8pRdaM7nEbtCDnrUHf8W9g3D2Hd9mgVA==}
|
|
176
|
-
engines: {node: '>=20.0.0'}
|
|
177
|
-
|
|
178
|
-
'@aws-sdk/types@3.969.0':
|
|
179
|
-
resolution: {integrity: sha512-7IIzM5TdiXn+VtgPdVLjmE6uUBUtnga0f4RiSEI1WW10RPuNvZ9U+pL3SwDiRDAdoGrOF9tSLJOFZmfuwYuVYQ==}
|
|
180
|
-
engines: {node: '>=20.0.0'}
|
|
181
|
-
|
|
182
|
-
'@aws-sdk/util-arn-parser@3.968.0':
|
|
183
|
-
resolution: {integrity: sha512-gqqvYcitIIM2K4lrDX9de9YvOfXBcVdxfT/iLnvHJd4YHvSXlt+gs+AsL4FfPCxG4IG9A+FyulP9Sb1MEA75vw==}
|
|
184
|
-
engines: {node: '>=20.0.0'}
|
|
185
|
-
|
|
186
|
-
'@aws-sdk/util-endpoints@3.969.0':
|
|
187
|
-
resolution: {integrity: sha512-H2x2UwYiA1pHg40jE+OCSc668W9GXRShTiCWy1UPKtZKREbQ63Mgd7NAj+bEMsZUSCdHywqmSsLqKM9IcqQ3Bg==}
|
|
188
|
-
engines: {node: '>=20.0.0'}
|
|
189
|
-
|
|
190
|
-
'@aws-sdk/util-locate-window@3.965.2':
|
|
191
|
-
resolution: {integrity: sha512-qKgO7wAYsXzhwCHhdbaKFyxd83Fgs8/1Ka+jjSPrv2Ll7mB55Wbwlo0kkfMLh993/yEc8aoDIAc1Fz9h4Spi4Q==}
|
|
192
|
-
engines: {node: '>=20.0.0'}
|
|
193
|
-
|
|
194
|
-
'@aws-sdk/util-user-agent-browser@3.969.0':
|
|
195
|
-
resolution: {integrity: sha512-bpJGjuKmFr0rA6UKUCmN8D19HQFMLXMx5hKBXqBlPFdalMhxJSjcxzX9DbQh0Fn6bJtxCguFmRGOBdQqNOt49g==}
|
|
196
|
-
|
|
197
|
-
'@aws-sdk/util-user-agent-node@3.969.0':
|
|
198
|
-
resolution: {integrity: sha512-D11ZuXNXdUMv8XTthMx+LPzkYNQAeQ68FnCTGnFLgLpnR8hVTeZMBBKjQ77wYGzWDk/csHKdCy697gU1On5KjA==}
|
|
199
|
-
engines: {node: '>=20.0.0'}
|
|
200
|
-
peerDependencies:
|
|
201
|
-
aws-crt: '>=1.0.0'
|
|
202
|
-
peerDependenciesMeta:
|
|
203
|
-
aws-crt:
|
|
204
|
-
optional: true
|
|
205
|
-
|
|
206
|
-
'@aws-sdk/xml-builder@3.969.0':
|
|
207
|
-
resolution: {integrity: sha512-BSe4Lx/qdRQQdX8cSSI7Et20vqBspzAjBy8ZmXVoyLkol3y4sXBXzn+BiLtR+oh60ExQn6o2DU4QjdOZbXaKIQ==}
|
|
208
|
-
engines: {node: '>=20.0.0'}
|
|
209
|
-
|
|
210
|
-
'@aws/lambda-invoke-store@0.2.3':
|
|
211
|
-
resolution: {integrity: sha512-oLvsaPMTBejkkmHhjf09xTgk71mOqyr/409NKhRIL08If7AhVfUsJhVsx386uJaqNd42v9kWamQ9lFbkoC2dYw==}
|
|
212
|
-
engines: {node: '>=18.0.0'}
|
|
213
|
-
|
|
214
74
|
'@cfworker/json-schema@4.1.1':
|
|
215
75
|
resolution: {integrity: sha512-gAmrUZSGtKc3AiBL71iNWxDsyUC5uMaKKGdvzYsBoTW/xi42JQHl7eKV2OYzCUqvc+D2RCcf7EXY2iCyFIk6og==}
|
|
216
76
|
|
|
217
|
-
'@drizzle-team/brocli@0.10.2':
|
|
218
|
-
resolution: {integrity: sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==}
|
|
219
|
-
|
|
220
|
-
'@esbuild-kit/core-utils@3.3.2':
|
|
221
|
-
resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==}
|
|
222
|
-
deprecated: 'Merged into tsx: https://tsx.is'
|
|
223
|
-
|
|
224
|
-
'@esbuild-kit/esm-loader@2.6.5':
|
|
225
|
-
resolution: {integrity: sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==}
|
|
226
|
-
deprecated: 'Merged into tsx: https://tsx.is'
|
|
227
|
-
|
|
228
|
-
'@esbuild/aix-ppc64@0.25.12':
|
|
229
|
-
resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
|
|
230
|
-
engines: {node: '>=18'}
|
|
231
|
-
cpu: [ppc64]
|
|
232
|
-
os: [aix]
|
|
233
|
-
|
|
234
77
|
'@esbuild/aix-ppc64@0.27.2':
|
|
235
78
|
resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
|
|
236
79
|
engines: {node: '>=18'}
|
|
237
80
|
cpu: [ppc64]
|
|
238
81
|
os: [aix]
|
|
239
82
|
|
|
240
|
-
'@esbuild/android-arm64@0.18.20':
|
|
241
|
-
resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
|
|
242
|
-
engines: {node: '>=12'}
|
|
243
|
-
cpu: [arm64]
|
|
244
|
-
os: [android]
|
|
245
|
-
|
|
246
|
-
'@esbuild/android-arm64@0.25.12':
|
|
247
|
-
resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
|
|
248
|
-
engines: {node: '>=18'}
|
|
249
|
-
cpu: [arm64]
|
|
250
|
-
os: [android]
|
|
251
|
-
|
|
252
83
|
'@esbuild/android-arm64@0.27.2':
|
|
253
84
|
resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==}
|
|
254
85
|
engines: {node: '>=18'}
|
|
255
86
|
cpu: [arm64]
|
|
256
87
|
os: [android]
|
|
257
88
|
|
|
258
|
-
'@esbuild/android-arm@0.18.20':
|
|
259
|
-
resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
|
|
260
|
-
engines: {node: '>=12'}
|
|
261
|
-
cpu: [arm]
|
|
262
|
-
os: [android]
|
|
263
|
-
|
|
264
|
-
'@esbuild/android-arm@0.25.12':
|
|
265
|
-
resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
|
|
266
|
-
engines: {node: '>=18'}
|
|
267
|
-
cpu: [arm]
|
|
268
|
-
os: [android]
|
|
269
|
-
|
|
270
89
|
'@esbuild/android-arm@0.27.2':
|
|
271
90
|
resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==}
|
|
272
91
|
engines: {node: '>=18'}
|
|
273
92
|
cpu: [arm]
|
|
274
93
|
os: [android]
|
|
275
94
|
|
|
276
|
-
'@esbuild/android-x64@0.18.20':
|
|
277
|
-
resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
|
|
278
|
-
engines: {node: '>=12'}
|
|
279
|
-
cpu: [x64]
|
|
280
|
-
os: [android]
|
|
281
|
-
|
|
282
|
-
'@esbuild/android-x64@0.25.12':
|
|
283
|
-
resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
|
|
284
|
-
engines: {node: '>=18'}
|
|
285
|
-
cpu: [x64]
|
|
286
|
-
os: [android]
|
|
287
|
-
|
|
288
95
|
'@esbuild/android-x64@0.27.2':
|
|
289
96
|
resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==}
|
|
290
97
|
engines: {node: '>=18'}
|
|
291
98
|
cpu: [x64]
|
|
292
99
|
os: [android]
|
|
293
100
|
|
|
294
|
-
'@esbuild/darwin-arm64@0.18.20':
|
|
295
|
-
resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
|
|
296
|
-
engines: {node: '>=12'}
|
|
297
|
-
cpu: [arm64]
|
|
298
|
-
os: [darwin]
|
|
299
|
-
|
|
300
|
-
'@esbuild/darwin-arm64@0.25.12':
|
|
301
|
-
resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
|
|
302
|
-
engines: {node: '>=18'}
|
|
303
|
-
cpu: [arm64]
|
|
304
|
-
os: [darwin]
|
|
305
|
-
|
|
306
101
|
'@esbuild/darwin-arm64@0.27.2':
|
|
307
102
|
resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==}
|
|
308
103
|
engines: {node: '>=18'}
|
|
309
104
|
cpu: [arm64]
|
|
310
105
|
os: [darwin]
|
|
311
106
|
|
|
312
|
-
'@esbuild/darwin-x64@0.18.20':
|
|
313
|
-
resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
|
|
314
|
-
engines: {node: '>=12'}
|
|
315
|
-
cpu: [x64]
|
|
316
|
-
os: [darwin]
|
|
317
|
-
|
|
318
|
-
'@esbuild/darwin-x64@0.25.12':
|
|
319
|
-
resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
|
|
320
|
-
engines: {node: '>=18'}
|
|
321
|
-
cpu: [x64]
|
|
322
|
-
os: [darwin]
|
|
323
|
-
|
|
324
107
|
'@esbuild/darwin-x64@0.27.2':
|
|
325
108
|
resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==}
|
|
326
109
|
engines: {node: '>=18'}
|
|
327
110
|
cpu: [x64]
|
|
328
111
|
os: [darwin]
|
|
329
112
|
|
|
330
|
-
'@esbuild/freebsd-arm64@0.18.20':
|
|
331
|
-
resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
|
|
332
|
-
engines: {node: '>=12'}
|
|
333
|
-
cpu: [arm64]
|
|
334
|
-
os: [freebsd]
|
|
335
|
-
|
|
336
|
-
'@esbuild/freebsd-arm64@0.25.12':
|
|
337
|
-
resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
|
|
338
|
-
engines: {node: '>=18'}
|
|
339
|
-
cpu: [arm64]
|
|
340
|
-
os: [freebsd]
|
|
341
|
-
|
|
342
113
|
'@esbuild/freebsd-arm64@0.27.2':
|
|
343
114
|
resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==}
|
|
344
115
|
engines: {node: '>=18'}
|
|
345
116
|
cpu: [arm64]
|
|
346
117
|
os: [freebsd]
|
|
347
118
|
|
|
348
|
-
'@esbuild/freebsd-x64@0.18.20':
|
|
349
|
-
resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
|
|
350
|
-
engines: {node: '>=12'}
|
|
351
|
-
cpu: [x64]
|
|
352
|
-
os: [freebsd]
|
|
353
|
-
|
|
354
|
-
'@esbuild/freebsd-x64@0.25.12':
|
|
355
|
-
resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
|
|
356
|
-
engines: {node: '>=18'}
|
|
357
|
-
cpu: [x64]
|
|
358
|
-
os: [freebsd]
|
|
359
|
-
|
|
360
119
|
'@esbuild/freebsd-x64@0.27.2':
|
|
361
120
|
resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==}
|
|
362
121
|
engines: {node: '>=18'}
|
|
363
122
|
cpu: [x64]
|
|
364
123
|
os: [freebsd]
|
|
365
124
|
|
|
366
|
-
'@esbuild/linux-arm64@0.18.20':
|
|
367
|
-
resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
|
|
368
|
-
engines: {node: '>=12'}
|
|
369
|
-
cpu: [arm64]
|
|
370
|
-
os: [linux]
|
|
371
|
-
|
|
372
|
-
'@esbuild/linux-arm64@0.25.12':
|
|
373
|
-
resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
|
|
374
|
-
engines: {node: '>=18'}
|
|
375
|
-
cpu: [arm64]
|
|
376
|
-
os: [linux]
|
|
377
|
-
|
|
378
125
|
'@esbuild/linux-arm64@0.27.2':
|
|
379
126
|
resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==}
|
|
380
127
|
engines: {node: '>=18'}
|
|
381
128
|
cpu: [arm64]
|
|
382
129
|
os: [linux]
|
|
383
130
|
|
|
384
|
-
'@esbuild/linux-arm@0.18.20':
|
|
385
|
-
resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
|
|
386
|
-
engines: {node: '>=12'}
|
|
387
|
-
cpu: [arm]
|
|
388
|
-
os: [linux]
|
|
389
|
-
|
|
390
|
-
'@esbuild/linux-arm@0.25.12':
|
|
391
|
-
resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
|
|
392
|
-
engines: {node: '>=18'}
|
|
393
|
-
cpu: [arm]
|
|
394
|
-
os: [linux]
|
|
395
|
-
|
|
396
131
|
'@esbuild/linux-arm@0.27.2':
|
|
397
132
|
resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==}
|
|
398
133
|
engines: {node: '>=18'}
|
|
399
134
|
cpu: [arm]
|
|
400
135
|
os: [linux]
|
|
401
136
|
|
|
402
|
-
'@esbuild/linux-ia32@0.18.20':
|
|
403
|
-
resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
|
|
404
|
-
engines: {node: '>=12'}
|
|
405
|
-
cpu: [ia32]
|
|
406
|
-
os: [linux]
|
|
407
|
-
|
|
408
|
-
'@esbuild/linux-ia32@0.25.12':
|
|
409
|
-
resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
|
|
410
|
-
engines: {node: '>=18'}
|
|
411
|
-
cpu: [ia32]
|
|
412
|
-
os: [linux]
|
|
413
|
-
|
|
414
137
|
'@esbuild/linux-ia32@0.27.2':
|
|
415
138
|
resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==}
|
|
416
139
|
engines: {node: '>=18'}
|
|
417
140
|
cpu: [ia32]
|
|
418
141
|
os: [linux]
|
|
419
142
|
|
|
420
|
-
'@esbuild/linux-loong64@0.18.20':
|
|
421
|
-
resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
|
|
422
|
-
engines: {node: '>=12'}
|
|
423
|
-
cpu: [loong64]
|
|
424
|
-
os: [linux]
|
|
425
|
-
|
|
426
|
-
'@esbuild/linux-loong64@0.25.12':
|
|
427
|
-
resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
|
|
428
|
-
engines: {node: '>=18'}
|
|
429
|
-
cpu: [loong64]
|
|
430
|
-
os: [linux]
|
|
431
|
-
|
|
432
143
|
'@esbuild/linux-loong64@0.27.2':
|
|
433
144
|
resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==}
|
|
434
145
|
engines: {node: '>=18'}
|
|
435
146
|
cpu: [loong64]
|
|
436
147
|
os: [linux]
|
|
437
148
|
|
|
438
|
-
'@esbuild/linux-mips64el@0.18.20':
|
|
439
|
-
resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
|
|
440
|
-
engines: {node: '>=12'}
|
|
441
|
-
cpu: [mips64el]
|
|
442
|
-
os: [linux]
|
|
443
|
-
|
|
444
|
-
'@esbuild/linux-mips64el@0.25.12':
|
|
445
|
-
resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
|
|
446
|
-
engines: {node: '>=18'}
|
|
447
|
-
cpu: [mips64el]
|
|
448
|
-
os: [linux]
|
|
449
|
-
|
|
450
149
|
'@esbuild/linux-mips64el@0.27.2':
|
|
451
150
|
resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==}
|
|
452
151
|
engines: {node: '>=18'}
|
|
453
152
|
cpu: [mips64el]
|
|
454
153
|
os: [linux]
|
|
455
154
|
|
|
456
|
-
'@esbuild/linux-ppc64@0.18.20':
|
|
457
|
-
resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
|
|
458
|
-
engines: {node: '>=12'}
|
|
459
|
-
cpu: [ppc64]
|
|
460
|
-
os: [linux]
|
|
461
|
-
|
|
462
|
-
'@esbuild/linux-ppc64@0.25.12':
|
|
463
|
-
resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
|
|
464
|
-
engines: {node: '>=18'}
|
|
465
|
-
cpu: [ppc64]
|
|
466
|
-
os: [linux]
|
|
467
|
-
|
|
468
155
|
'@esbuild/linux-ppc64@0.27.2':
|
|
469
156
|
resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
|
|
470
157
|
engines: {node: '>=18'}
|
|
471
158
|
cpu: [ppc64]
|
|
472
159
|
os: [linux]
|
|
473
160
|
|
|
474
|
-
'@esbuild/linux-riscv64@0.18.20':
|
|
475
|
-
resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
|
|
476
|
-
engines: {node: '>=12'}
|
|
477
|
-
cpu: [riscv64]
|
|
478
|
-
os: [linux]
|
|
479
|
-
|
|
480
|
-
'@esbuild/linux-riscv64@0.25.12':
|
|
481
|
-
resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
|
|
482
|
-
engines: {node: '>=18'}
|
|
483
|
-
cpu: [riscv64]
|
|
484
|
-
os: [linux]
|
|
485
|
-
|
|
486
161
|
'@esbuild/linux-riscv64@0.27.2':
|
|
487
162
|
resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==}
|
|
488
163
|
engines: {node: '>=18'}
|
|
489
164
|
cpu: [riscv64]
|
|
490
165
|
os: [linux]
|
|
491
166
|
|
|
492
|
-
'@esbuild/linux-s390x@0.18.20':
|
|
493
|
-
resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
|
|
494
|
-
engines: {node: '>=12'}
|
|
495
|
-
cpu: [s390x]
|
|
496
|
-
os: [linux]
|
|
497
|
-
|
|
498
|
-
'@esbuild/linux-s390x@0.25.12':
|
|
499
|
-
resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
|
|
500
|
-
engines: {node: '>=18'}
|
|
501
|
-
cpu: [s390x]
|
|
502
|
-
os: [linux]
|
|
503
|
-
|
|
504
167
|
'@esbuild/linux-s390x@0.27.2':
|
|
505
168
|
resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==}
|
|
506
169
|
engines: {node: '>=18'}
|
|
507
170
|
cpu: [s390x]
|
|
508
171
|
os: [linux]
|
|
509
172
|
|
|
510
|
-
'@esbuild/linux-x64@0.18.20':
|
|
511
|
-
resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
|
|
512
|
-
engines: {node: '>=12'}
|
|
513
|
-
cpu: [x64]
|
|
514
|
-
os: [linux]
|
|
515
|
-
|
|
516
|
-
'@esbuild/linux-x64@0.25.12':
|
|
517
|
-
resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
|
|
518
|
-
engines: {node: '>=18'}
|
|
519
|
-
cpu: [x64]
|
|
520
|
-
os: [linux]
|
|
521
|
-
|
|
522
173
|
'@esbuild/linux-x64@0.27.2':
|
|
523
174
|
resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==}
|
|
524
175
|
engines: {node: '>=18'}
|
|
525
176
|
cpu: [x64]
|
|
526
177
|
os: [linux]
|
|
527
178
|
|
|
528
|
-
'@esbuild/netbsd-arm64@0.25.12':
|
|
529
|
-
resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
|
|
530
|
-
engines: {node: '>=18'}
|
|
531
|
-
cpu: [arm64]
|
|
532
|
-
os: [netbsd]
|
|
533
|
-
|
|
534
179
|
'@esbuild/netbsd-arm64@0.27.2':
|
|
535
180
|
resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==}
|
|
536
181
|
engines: {node: '>=18'}
|
|
537
182
|
cpu: [arm64]
|
|
538
183
|
os: [netbsd]
|
|
539
184
|
|
|
540
|
-
'@esbuild/netbsd-x64@0.18.20':
|
|
541
|
-
resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
|
|
542
|
-
engines: {node: '>=12'}
|
|
543
|
-
cpu: [x64]
|
|
544
|
-
os: [netbsd]
|
|
545
|
-
|
|
546
|
-
'@esbuild/netbsd-x64@0.25.12':
|
|
547
|
-
resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
|
|
548
|
-
engines: {node: '>=18'}
|
|
549
|
-
cpu: [x64]
|
|
550
|
-
os: [netbsd]
|
|
551
|
-
|
|
552
185
|
'@esbuild/netbsd-x64@0.27.2':
|
|
553
186
|
resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==}
|
|
554
187
|
engines: {node: '>=18'}
|
|
555
188
|
cpu: [x64]
|
|
556
189
|
os: [netbsd]
|
|
557
190
|
|
|
558
|
-
'@esbuild/openbsd-arm64@0.25.12':
|
|
559
|
-
resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
|
|
560
|
-
engines: {node: '>=18'}
|
|
561
|
-
cpu: [arm64]
|
|
562
|
-
os: [openbsd]
|
|
563
|
-
|
|
564
191
|
'@esbuild/openbsd-arm64@0.27.2':
|
|
565
192
|
resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==}
|
|
566
193
|
engines: {node: '>=18'}
|
|
567
194
|
cpu: [arm64]
|
|
568
195
|
os: [openbsd]
|
|
569
196
|
|
|
570
|
-
'@esbuild/openbsd-x64@0.18.20':
|
|
571
|
-
resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
|
|
572
|
-
engines: {node: '>=12'}
|
|
573
|
-
cpu: [x64]
|
|
574
|
-
os: [openbsd]
|
|
575
|
-
|
|
576
|
-
'@esbuild/openbsd-x64@0.25.12':
|
|
577
|
-
resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
|
|
578
|
-
engines: {node: '>=18'}
|
|
579
|
-
cpu: [x64]
|
|
580
|
-
os: [openbsd]
|
|
581
|
-
|
|
582
197
|
'@esbuild/openbsd-x64@0.27.2':
|
|
583
198
|
resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==}
|
|
584
199
|
engines: {node: '>=18'}
|
|
585
200
|
cpu: [x64]
|
|
586
201
|
os: [openbsd]
|
|
587
202
|
|
|
588
|
-
'@esbuild/openharmony-arm64@0.25.12':
|
|
589
|
-
resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
|
|
590
|
-
engines: {node: '>=18'}
|
|
591
|
-
cpu: [arm64]
|
|
592
|
-
os: [openharmony]
|
|
593
|
-
|
|
594
203
|
'@esbuild/openharmony-arm64@0.27.2':
|
|
595
204
|
resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==}
|
|
596
205
|
engines: {node: '>=18'}
|
|
597
206
|
cpu: [arm64]
|
|
598
207
|
os: [openharmony]
|
|
599
208
|
|
|
600
|
-
'@esbuild/sunos-x64@0.
|
|
601
|
-
resolution: {integrity: sha512-
|
|
602
|
-
engines: {node: '>=12'}
|
|
603
|
-
cpu: [x64]
|
|
604
|
-
os: [sunos]
|
|
605
|
-
|
|
606
|
-
'@esbuild/sunos-x64@0.25.12':
|
|
607
|
-
resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
|
|
209
|
+
'@esbuild/sunos-x64@0.27.2':
|
|
210
|
+
resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
|
|
608
211
|
engines: {node: '>=18'}
|
|
609
212
|
cpu: [x64]
|
|
610
213
|
os: [sunos]
|
|
611
214
|
|
|
612
|
-
'@esbuild/sunos-x64@0.27.2':
|
|
613
|
-
resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
|
|
614
|
-
engines: {node: '>=18'}
|
|
615
|
-
cpu: [x64]
|
|
616
|
-
os: [sunos]
|
|
617
|
-
|
|
618
|
-
'@esbuild/win32-arm64@0.18.20':
|
|
619
|
-
resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
|
|
620
|
-
engines: {node: '>=12'}
|
|
621
|
-
cpu: [arm64]
|
|
622
|
-
os: [win32]
|
|
623
|
-
|
|
624
|
-
'@esbuild/win32-arm64@0.25.12':
|
|
625
|
-
resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
|
|
626
|
-
engines: {node: '>=18'}
|
|
627
|
-
cpu: [arm64]
|
|
628
|
-
os: [win32]
|
|
629
|
-
|
|
630
215
|
'@esbuild/win32-arm64@0.27.2':
|
|
631
216
|
resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==}
|
|
632
217
|
engines: {node: '>=18'}
|
|
633
218
|
cpu: [arm64]
|
|
634
219
|
os: [win32]
|
|
635
220
|
|
|
636
|
-
'@esbuild/win32-ia32@0.18.20':
|
|
637
|
-
resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
|
|
638
|
-
engines: {node: '>=12'}
|
|
639
|
-
cpu: [ia32]
|
|
640
|
-
os: [win32]
|
|
641
|
-
|
|
642
|
-
'@esbuild/win32-ia32@0.25.12':
|
|
643
|
-
resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
|
|
644
|
-
engines: {node: '>=18'}
|
|
645
|
-
cpu: [ia32]
|
|
646
|
-
os: [win32]
|
|
647
|
-
|
|
648
221
|
'@esbuild/win32-ia32@0.27.2':
|
|
649
222
|
resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==}
|
|
650
223
|
engines: {node: '>=18'}
|
|
651
224
|
cpu: [ia32]
|
|
652
225
|
os: [win32]
|
|
653
226
|
|
|
654
|
-
'@esbuild/win32-x64@0.18.20':
|
|
655
|
-
resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
|
|
656
|
-
engines: {node: '>=12'}
|
|
657
|
-
cpu: [x64]
|
|
658
|
-
os: [win32]
|
|
659
|
-
|
|
660
|
-
'@esbuild/win32-x64@0.25.12':
|
|
661
|
-
resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
|
|
662
|
-
engines: {node: '>=18'}
|
|
663
|
-
cpu: [x64]
|
|
664
|
-
os: [win32]
|
|
665
|
-
|
|
666
227
|
'@esbuild/win32-x64@0.27.2':
|
|
667
228
|
resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==}
|
|
668
229
|
engines: {node: '>=18'}
|
|
@@ -736,12 +297,12 @@ packages:
|
|
|
736
297
|
'@jridgewell/trace-mapping@0.3.31':
|
|
737
298
|
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
738
299
|
|
|
739
|
-
'@langchain/core@1.1.
|
|
740
|
-
resolution: {integrity: sha512-
|
|
300
|
+
'@langchain/core@1.1.16':
|
|
301
|
+
resolution: {integrity: sha512-2XKQKxvQdeQiuIo0tacAmDVojhSVAci8D2WDdmmyN+6CqDusLHEHyIDaOt4o+UBvpkyHXbCdrljzDTQY/AKeqg==}
|
|
741
302
|
engines: {node: '>=20'}
|
|
742
303
|
|
|
743
|
-
'@langchain/openai@1.2.
|
|
744
|
-
resolution: {integrity: sha512
|
|
304
|
+
'@langchain/openai@1.2.3':
|
|
305
|
+
resolution: {integrity: sha512-+bKR4+Obz5a/NHEw0bAm3f/s4k0cXc/g46ZRRXqjcyDYP+9wFarItvGNn6DEEk5S7pGp1QqApAQNt9IZk1Ic1Q==}
|
|
745
306
|
engines: {node: '>=20'}
|
|
746
307
|
peerDependencies:
|
|
747
308
|
'@langchain/core': ^1.0.0
|
|
@@ -758,411 +319,276 @@ packages:
|
|
|
758
319
|
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
|
759
320
|
engines: {node: '>= 8'}
|
|
760
321
|
|
|
761
|
-
'@rollup/rollup-android-arm-eabi@4.
|
|
762
|
-
resolution: {integrity: sha512-
|
|
322
|
+
'@rollup/rollup-android-arm-eabi@4.55.3':
|
|
323
|
+
resolution: {integrity: sha512-qyX8+93kK/7R5BEXPC2PjUt0+fS/VO2BVHjEHyIEWiYn88rcRBHmdLgoJjktBltgAf+NY7RfCGB1SoyKS/p9kg==}
|
|
763
324
|
cpu: [arm]
|
|
764
325
|
os: [android]
|
|
765
326
|
|
|
766
|
-
'@rollup/rollup-android-arm64@4.
|
|
767
|
-
resolution: {integrity: sha512-
|
|
327
|
+
'@rollup/rollup-android-arm64@4.55.3':
|
|
328
|
+
resolution: {integrity: sha512-6sHrL42bjt5dHQzJ12Q4vMKfN+kUnZ0atHHnv4V0Wd9JMTk7FDzSY35+7qbz3ypQYMBPANbpGK7JpnWNnhGt8g==}
|
|
768
329
|
cpu: [arm64]
|
|
769
330
|
os: [android]
|
|
770
331
|
|
|
771
|
-
'@rollup/rollup-darwin-arm64@4.
|
|
772
|
-
resolution: {integrity: sha512-
|
|
332
|
+
'@rollup/rollup-darwin-arm64@4.55.3':
|
|
333
|
+
resolution: {integrity: sha512-1ht2SpGIjEl2igJ9AbNpPIKzb1B5goXOcmtD0RFxnwNuMxqkR6AUaaErZz+4o+FKmzxcSNBOLrzsICZVNYa1Rw==}
|
|
773
334
|
cpu: [arm64]
|
|
774
335
|
os: [darwin]
|
|
775
336
|
|
|
776
|
-
'@rollup/rollup-darwin-x64@4.
|
|
777
|
-
resolution: {integrity: sha512-
|
|
337
|
+
'@rollup/rollup-darwin-x64@4.55.3':
|
|
338
|
+
resolution: {integrity: sha512-FYZ4iVunXxtT+CZqQoPVwPhH7549e/Gy7PIRRtq4t5f/vt54pX6eG9ebttRH6QSH7r/zxAFA4EZGlQ0h0FvXiA==}
|
|
778
339
|
cpu: [x64]
|
|
779
340
|
os: [darwin]
|
|
780
341
|
|
|
781
|
-
'@rollup/rollup-freebsd-arm64@4.
|
|
782
|
-
resolution: {integrity: sha512-
|
|
342
|
+
'@rollup/rollup-freebsd-arm64@4.55.3':
|
|
343
|
+
resolution: {integrity: sha512-M/mwDCJ4wLsIgyxv2Lj7Len+UMHd4zAXu4GQ2UaCdksStglWhP61U3uowkaYBQBhVoNpwx5Hputo8eSqM7K82Q==}
|
|
783
344
|
cpu: [arm64]
|
|
784
345
|
os: [freebsd]
|
|
785
346
|
|
|
786
|
-
'@rollup/rollup-freebsd-x64@4.
|
|
787
|
-
resolution: {integrity: sha512-
|
|
347
|
+
'@rollup/rollup-freebsd-x64@4.55.3':
|
|
348
|
+
resolution: {integrity: sha512-5jZT2c7jBCrMegKYTYTpni8mg8y3uY8gzeq2ndFOANwNuC/xJbVAoGKR9LhMDA0H3nIhvaqUoBEuJoICBudFrA==}
|
|
788
349
|
cpu: [x64]
|
|
789
350
|
os: [freebsd]
|
|
790
351
|
|
|
791
|
-
'@rollup/rollup-linux-arm-gnueabihf@4.
|
|
792
|
-
resolution: {integrity: sha512-
|
|
352
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.55.3':
|
|
353
|
+
resolution: {integrity: sha512-YeGUhkN1oA+iSPzzhEjVPS29YbViOr8s4lSsFaZKLHswgqP911xx25fPOyE9+khmN6W4VeM0aevbDp4kkEoHiA==}
|
|
793
354
|
cpu: [arm]
|
|
794
355
|
os: [linux]
|
|
795
356
|
libc: [glibc]
|
|
796
357
|
|
|
797
|
-
'@rollup/rollup-linux-arm-musleabihf@4.
|
|
798
|
-
resolution: {integrity: sha512
|
|
358
|
+
'@rollup/rollup-linux-arm-musleabihf@4.55.3':
|
|
359
|
+
resolution: {integrity: sha512-eo0iOIOvcAlWB3Z3eh8pVM8hZ0oVkK3AjEM9nSrkSug2l15qHzF3TOwT0747omI6+CJJvl7drwZepT+re6Fy/w==}
|
|
799
360
|
cpu: [arm]
|
|
800
361
|
os: [linux]
|
|
801
362
|
libc: [musl]
|
|
802
363
|
|
|
803
|
-
'@rollup/rollup-linux-arm64-gnu@4.
|
|
804
|
-
resolution: {integrity: sha512-
|
|
364
|
+
'@rollup/rollup-linux-arm64-gnu@4.55.3':
|
|
365
|
+
resolution: {integrity: sha512-DJay3ep76bKUDImmn//W5SvpjRN5LmK/ntWyeJs/dcnwiiHESd3N4uteK9FDLf0S0W8E6Y0sVRXpOCoQclQqNg==}
|
|
805
366
|
cpu: [arm64]
|
|
806
367
|
os: [linux]
|
|
807
368
|
libc: [glibc]
|
|
808
369
|
|
|
809
|
-
'@rollup/rollup-linux-arm64-musl@4.
|
|
810
|
-
resolution: {integrity: sha512-
|
|
370
|
+
'@rollup/rollup-linux-arm64-musl@4.55.3':
|
|
371
|
+
resolution: {integrity: sha512-BKKWQkY2WgJ5MC/ayvIJTHjy0JUGb5efaHCUiG/39sSUvAYRBaO3+/EK0AZT1RF3pSj86O24GLLik9mAYu0IJg==}
|
|
811
372
|
cpu: [arm64]
|
|
812
373
|
os: [linux]
|
|
813
374
|
libc: [musl]
|
|
814
375
|
|
|
815
|
-
'@rollup/rollup-linux-loong64-gnu@4.
|
|
816
|
-
resolution: {integrity: sha512-
|
|
376
|
+
'@rollup/rollup-linux-loong64-gnu@4.55.3':
|
|
377
|
+
resolution: {integrity: sha512-Q9nVlWtKAG7ISW80OiZGxTr6rYtyDSkauHUtvkQI6TNOJjFvpj4gcH+KaJihqYInnAzEEUetPQubRwHef4exVg==}
|
|
817
378
|
cpu: [loong64]
|
|
818
379
|
os: [linux]
|
|
819
380
|
libc: [glibc]
|
|
820
381
|
|
|
821
|
-
'@rollup/rollup-linux-
|
|
822
|
-
resolution: {integrity: sha512-
|
|
382
|
+
'@rollup/rollup-linux-loong64-musl@4.55.3':
|
|
383
|
+
resolution: {integrity: sha512-2H5LmhzrpC4fFRNwknzmmTvvyJPHwESoJgyReXeFoYYuIDfBhP29TEXOkCJE/KxHi27mj7wDUClNq78ue3QEBQ==}
|
|
384
|
+
cpu: [loong64]
|
|
385
|
+
os: [linux]
|
|
386
|
+
libc: [musl]
|
|
387
|
+
|
|
388
|
+
'@rollup/rollup-linux-ppc64-gnu@4.55.3':
|
|
389
|
+
resolution: {integrity: sha512-9S542V0ie9LCTznPYlvaeySwBeIEa7rDBgLHKZ5S9DBgcqdJYburabm8TqiqG6mrdTzfV5uttQRHcbKff9lWtA==}
|
|
823
390
|
cpu: [ppc64]
|
|
824
391
|
os: [linux]
|
|
825
392
|
libc: [glibc]
|
|
826
393
|
|
|
827
|
-
'@rollup/rollup-linux-
|
|
828
|
-
resolution: {integrity: sha512-
|
|
394
|
+
'@rollup/rollup-linux-ppc64-musl@4.55.3':
|
|
395
|
+
resolution: {integrity: sha512-ukxw+YH3XXpcezLgbJeasgxyTbdpnNAkrIlFGDl7t+pgCxZ89/6n1a+MxlY7CegU+nDgrgdqDelPRNQ/47zs0g==}
|
|
396
|
+
cpu: [ppc64]
|
|
397
|
+
os: [linux]
|
|
398
|
+
libc: [musl]
|
|
399
|
+
|
|
400
|
+
'@rollup/rollup-linux-riscv64-gnu@4.55.3':
|
|
401
|
+
resolution: {integrity: sha512-Iauw9UsTTvlF++FhghFJjqYxyXdggXsOqGpFBylaRopVpcbfyIIsNvkf9oGwfgIcf57z3m8+/oSYTo6HutBFNw==}
|
|
829
402
|
cpu: [riscv64]
|
|
830
403
|
os: [linux]
|
|
831
404
|
libc: [glibc]
|
|
832
405
|
|
|
833
|
-
'@rollup/rollup-linux-riscv64-musl@4.
|
|
834
|
-
resolution: {integrity: sha512-
|
|
406
|
+
'@rollup/rollup-linux-riscv64-musl@4.55.3':
|
|
407
|
+
resolution: {integrity: sha512-3OqKAHSEQXKdq9mQ4eajqUgNIK27VZPW3I26EP8miIzuKzCJ3aW3oEn2pzF+4/Hj/Moc0YDsOtBgT5bZ56/vcA==}
|
|
835
408
|
cpu: [riscv64]
|
|
836
409
|
os: [linux]
|
|
837
410
|
libc: [musl]
|
|
838
411
|
|
|
839
|
-
'@rollup/rollup-linux-s390x-gnu@4.
|
|
840
|
-
resolution: {integrity: sha512-
|
|
412
|
+
'@rollup/rollup-linux-s390x-gnu@4.55.3':
|
|
413
|
+
resolution: {integrity: sha512-0CM8dSVzVIaqMcXIFej8zZrSFLnGrAE8qlNbbHfTw1EEPnFTg1U1ekI0JdzjPyzSfUsHWtodilQQG/RA55berA==}
|
|
841
414
|
cpu: [s390x]
|
|
842
415
|
os: [linux]
|
|
843
416
|
libc: [glibc]
|
|
844
417
|
|
|
845
|
-
'@rollup/rollup-linux-x64-gnu@4.
|
|
846
|
-
resolution: {integrity: sha512
|
|
418
|
+
'@rollup/rollup-linux-x64-gnu@4.55.3':
|
|
419
|
+
resolution: {integrity: sha512-+fgJE12FZMIgBaKIAGd45rxf+5ftcycANJRWk8Vz0NnMTM5rADPGuRFTYar+Mqs560xuART7XsX2lSACa1iOmQ==}
|
|
847
420
|
cpu: [x64]
|
|
848
421
|
os: [linux]
|
|
849
422
|
libc: [glibc]
|
|
850
423
|
|
|
851
|
-
'@rollup/rollup-linux-x64-musl@4.
|
|
852
|
-
resolution: {integrity: sha512-
|
|
424
|
+
'@rollup/rollup-linux-x64-musl@4.55.3':
|
|
425
|
+
resolution: {integrity: sha512-tMD7NnbAolWPzQlJQJjVFh/fNH3K/KnA7K8gv2dJWCwwnaK6DFCYST1QXYWfu5V0cDwarWC8Sf/cfMHniNq21A==}
|
|
853
426
|
cpu: [x64]
|
|
854
427
|
os: [linux]
|
|
855
428
|
libc: [musl]
|
|
856
429
|
|
|
857
|
-
'@rollup/rollup-
|
|
858
|
-
resolution: {integrity: sha512-
|
|
430
|
+
'@rollup/rollup-openbsd-x64@4.55.3':
|
|
431
|
+
resolution: {integrity: sha512-u5KsqxOxjEeIbn7bUK1MPM34jrnPwjeqgyin4/N6e/KzXKfpE9Mi0nCxcQjaM9lLmPcHmn/xx1yOjgTMtu1jWQ==}
|
|
432
|
+
cpu: [x64]
|
|
433
|
+
os: [openbsd]
|
|
434
|
+
|
|
435
|
+
'@rollup/rollup-openharmony-arm64@4.55.3':
|
|
436
|
+
resolution: {integrity: sha512-vo54aXwjpTtsAnb3ca7Yxs9t2INZg7QdXN/7yaoG7nPGbOBXYXQY41Km+S1Ov26vzOAzLcAjmMdjyEqS1JkVhw==}
|
|
859
437
|
cpu: [arm64]
|
|
860
438
|
os: [openharmony]
|
|
861
439
|
|
|
862
|
-
'@rollup/rollup-win32-arm64-msvc@4.
|
|
863
|
-
resolution: {integrity: sha512-
|
|
440
|
+
'@rollup/rollup-win32-arm64-msvc@4.55.3':
|
|
441
|
+
resolution: {integrity: sha512-HI+PIVZ+m+9AgpnY3pt6rinUdRYrGHvmVdsNQ4odNqQ/eRF78DVpMR7mOq7nW06QxpczibwBmeQzB68wJ+4W4A==}
|
|
864
442
|
cpu: [arm64]
|
|
865
443
|
os: [win32]
|
|
866
444
|
|
|
867
|
-
'@rollup/rollup-win32-ia32-msvc@4.
|
|
868
|
-
resolution: {integrity: sha512-
|
|
445
|
+
'@rollup/rollup-win32-ia32-msvc@4.55.3':
|
|
446
|
+
resolution: {integrity: sha512-vRByotbdMo3Wdi+8oC2nVxtc3RkkFKrGaok+a62AT8lz/YBuQjaVYAS5Zcs3tPzW43Vsf9J0wehJbUY5xRSekA==}
|
|
869
447
|
cpu: [ia32]
|
|
870
448
|
os: [win32]
|
|
871
449
|
|
|
872
|
-
'@rollup/rollup-win32-x64-gnu@4.
|
|
873
|
-
resolution: {integrity: sha512-
|
|
450
|
+
'@rollup/rollup-win32-x64-gnu@4.55.3':
|
|
451
|
+
resolution: {integrity: sha512-POZHq7UeuzMJljC5NjKi8vKMFN6/5EOqcX1yGntNLp7rUTpBAXQ1hW8kWPFxYLv07QMcNM75xqVLGPWQq6TKFA==}
|
|
874
452
|
cpu: [x64]
|
|
875
453
|
os: [win32]
|
|
876
454
|
|
|
877
|
-
'@rollup/rollup-win32-x64-msvc@4.
|
|
878
|
-
resolution: {integrity: sha512-
|
|
455
|
+
'@rollup/rollup-win32-x64-msvc@4.55.3':
|
|
456
|
+
resolution: {integrity: sha512-aPFONczE4fUFKNXszdvnd2GqKEYQdV5oEsIbKPujJmWlCI9zEsv1Otig8RKK+X9bed9gFUN6LAeN4ZcNuu4zjg==}
|
|
879
457
|
cpu: [x64]
|
|
880
458
|
os: [win32]
|
|
881
459
|
|
|
882
|
-
'@
|
|
883
|
-
resolution: {integrity: sha512-
|
|
884
|
-
engines: {node: '>=
|
|
885
|
-
|
|
886
|
-
'@smithy/chunked-blob-reader-native@4.2.1':
|
|
887
|
-
resolution: {integrity: sha512-lX9Ay+6LisTfpLid2zZtIhSEjHMZoAR5hHCR4H7tBz/Zkfr5ea8RcQ7Tk4mi0P76p4cN+Btz16Ffno7YHpKXnQ==}
|
|
888
|
-
engines: {node: '>=18.0.0'}
|
|
889
|
-
|
|
890
|
-
'@smithy/chunked-blob-reader@5.2.0':
|
|
891
|
-
resolution: {integrity: sha512-WmU0TnhEAJLWvfSeMxBNe5xtbselEO8+4wG0NtZeL8oR21WgH1xiO37El+/Y+H/Ie4SCwBy3MxYWmOYaGgZueA==}
|
|
892
|
-
engines: {node: '>=18.0.0'}
|
|
893
|
-
|
|
894
|
-
'@smithy/config-resolver@4.4.6':
|
|
895
|
-
resolution: {integrity: sha512-qJpzYC64kaj3S0fueiu3kXm8xPrR3PcXDPEgnaNMRn0EjNSZFoFjvbUp0YUDsRhN1CB90EnHJtbxWKevnH99UQ==}
|
|
896
|
-
engines: {node: '>=18.0.0'}
|
|
897
|
-
|
|
898
|
-
'@smithy/core@3.20.5':
|
|
899
|
-
resolution: {integrity: sha512-0Tz77Td8ynHaowXfOdrD0F1IH4tgWGUhwmLwmpFyTbr+U9WHXNNp9u/k2VjBXGnSe7BwjBERRpXsokGTXzNjhA==}
|
|
900
|
-
engines: {node: '>=18.0.0'}
|
|
901
|
-
|
|
902
|
-
'@smithy/credential-provider-imds@4.2.8':
|
|
903
|
-
resolution: {integrity: sha512-FNT0xHS1c/CPN8upqbMFP83+ul5YgdisfCfkZ86Jh2NSmnqw/AJ6x5pEogVCTVvSm7j9MopRU89bmDelxuDMYw==}
|
|
904
|
-
engines: {node: '>=18.0.0'}
|
|
905
|
-
|
|
906
|
-
'@smithy/eventstream-codec@4.2.8':
|
|
907
|
-
resolution: {integrity: sha512-jS/O5Q14UsufqoGhov7dHLOPCzkYJl9QDzusI2Psh4wyYx/izhzvX9P4D69aTxcdfVhEPhjK+wYyn/PzLjKbbw==}
|
|
908
|
-
engines: {node: '>=18.0.0'}
|
|
909
|
-
|
|
910
|
-
'@smithy/eventstream-serde-browser@4.2.8':
|
|
911
|
-
resolution: {integrity: sha512-MTfQT/CRQz5g24ayXdjg53V0mhucZth4PESoA5IhvaWVDTOQLfo8qI9vzqHcPsdd2v6sqfTYqF5L/l+pea5Uyw==}
|
|
912
|
-
engines: {node: '>=18.0.0'}
|
|
913
|
-
|
|
914
|
-
'@smithy/eventstream-serde-config-resolver@4.3.8':
|
|
915
|
-
resolution: {integrity: sha512-ah12+luBiDGzBruhu3efNy1IlbwSEdNiw8fOZksoKoWW1ZHvO/04MQsdnws/9Aj+5b0YXSSN2JXKy/ClIsW8MQ==}
|
|
916
|
-
engines: {node: '>=18.0.0'}
|
|
917
|
-
|
|
918
|
-
'@smithy/eventstream-serde-node@4.2.8':
|
|
919
|
-
resolution: {integrity: sha512-cYpCpp29z6EJHa5T9WL0KAlq3SOKUQkcgSoeRfRVwjGgSFl7Uh32eYGt7IDYCX20skiEdRffyDpvF2efEZPC0A==}
|
|
920
|
-
engines: {node: '>=18.0.0'}
|
|
921
|
-
|
|
922
|
-
'@smithy/eventstream-serde-universal@4.2.8':
|
|
923
|
-
resolution: {integrity: sha512-iJ6YNJd0bntJYnX6s52NC4WFYcZeKrPUr1Kmmr5AwZcwCSzVpS7oavAmxMR7pMq7V+D1G4s9F5NJK0xwOsKAlQ==}
|
|
924
|
-
engines: {node: '>=18.0.0'}
|
|
925
|
-
|
|
926
|
-
'@smithy/fetch-http-handler@5.3.9':
|
|
927
|
-
resolution: {integrity: sha512-I4UhmcTYXBrct03rwzQX1Y/iqQlzVQaPxWjCjula++5EmWq9YGBrx6bbGqluGc1f0XEfhSkiY4jhLgbsJUMKRA==}
|
|
928
|
-
engines: {node: '>=18.0.0'}
|
|
929
|
-
|
|
930
|
-
'@smithy/hash-blob-browser@4.2.9':
|
|
931
|
-
resolution: {integrity: sha512-m80d/iicI7DlBDxyQP6Th7BW/ejDGiF0bgI754+tiwK0lgMkcaIBgvwwVc7OFbY4eUzpGtnig52MhPAEJ7iNYg==}
|
|
932
|
-
engines: {node: '>=18.0.0'}
|
|
933
|
-
|
|
934
|
-
'@smithy/hash-node@4.2.8':
|
|
935
|
-
resolution: {integrity: sha512-7ZIlPbmaDGxVoxErDZnuFG18WekhbA/g2/i97wGj+wUBeS6pcUeAym8u4BXh/75RXWhgIJhyC11hBzig6MljwA==}
|
|
936
|
-
engines: {node: '>=18.0.0'}
|
|
937
|
-
|
|
938
|
-
'@smithy/hash-stream-node@4.2.8':
|
|
939
|
-
resolution: {integrity: sha512-v0FLTXgHrTeheYZFGhR+ehX5qUm4IQsjAiL9qehad2cyjMWcN2QG6/4mSwbSgEQzI7jwfoXj7z4fxZUx/Mhj2w==}
|
|
940
|
-
engines: {node: '>=18.0.0'}
|
|
941
|
-
|
|
942
|
-
'@smithy/invalid-dependency@4.2.8':
|
|
943
|
-
resolution: {integrity: sha512-N9iozRybwAQ2dn9Fot9kI6/w9vos2oTXLhtK7ovGqwZjlOcxu6XhPlpLpC+INsxktqHinn5gS2DXDjDF2kG5sQ==}
|
|
944
|
-
engines: {node: '>=18.0.0'}
|
|
945
|
-
|
|
946
|
-
'@smithy/is-array-buffer@2.2.0':
|
|
947
|
-
resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
|
|
948
|
-
engines: {node: '>=14.0.0'}
|
|
949
|
-
|
|
950
|
-
'@smithy/is-array-buffer@4.2.0':
|
|
951
|
-
resolution: {integrity: sha512-DZZZBvC7sjcYh4MazJSGiWMI2L7E0oCiRHREDzIxi/M2LY79/21iXt6aPLHge82wi5LsuRF5A06Ds3+0mlh6CQ==}
|
|
952
|
-
engines: {node: '>=18.0.0'}
|
|
953
|
-
|
|
954
|
-
'@smithy/md5-js@4.2.8':
|
|
955
|
-
resolution: {integrity: sha512-oGMaLj4tVZzLi3itBa9TCswgMBr7k9b+qKYowQ6x1rTyTuO1IU2YHdHUa+891OsOH+wCsH7aTPRsTJO3RMQmjQ==}
|
|
956
|
-
engines: {node: '>=18.0.0'}
|
|
957
|
-
|
|
958
|
-
'@smithy/middleware-content-length@4.2.8':
|
|
959
|
-
resolution: {integrity: sha512-RO0jeoaYAB1qBRhfVyq0pMgBoUK34YEJxVxyjOWYZiOKOq2yMZ4MnVXMZCUDenpozHue207+9P5ilTV1zeda0A==}
|
|
960
|
-
engines: {node: '>=18.0.0'}
|
|
961
|
-
|
|
962
|
-
'@smithy/middleware-endpoint@4.4.6':
|
|
963
|
-
resolution: {integrity: sha512-dpq3bHqbEOBqGBjRVHVFP3eUSPpX0BYtg1D5d5Irgk6orGGAuZfY22rC4sErhg+ZfY/Y0kPqm1XpAmDZg7DeuA==}
|
|
964
|
-
engines: {node: '>=18.0.0'}
|
|
965
|
-
|
|
966
|
-
'@smithy/middleware-retry@4.4.22':
|
|
967
|
-
resolution: {integrity: sha512-vwWDMaObSMjw6WCC/3Ae9G7uul5Sk95jr07CDk1gkIMpaDic0phPS1MpVAZ6+YkF7PAzRlpsDjxPwRlh/S11FQ==}
|
|
968
|
-
engines: {node: '>=18.0.0'}
|
|
969
|
-
|
|
970
|
-
'@smithy/middleware-serde@4.2.9':
|
|
971
|
-
resolution: {integrity: sha512-eMNiej0u/snzDvlqRGSN3Vl0ESn3838+nKyVfF2FKNXFbi4SERYT6PR392D39iczngbqqGG0Jl1DlCnp7tBbXQ==}
|
|
972
|
-
engines: {node: '>=18.0.0'}
|
|
973
|
-
|
|
974
|
-
'@smithy/middleware-stack@4.2.8':
|
|
975
|
-
resolution: {integrity: sha512-w6LCfOviTYQjBctOKSwy6A8FIkQy7ICvglrZFl6Bw4FmcQ1Z420fUtIhxaUZZshRe0VCq4kvDiPiXrPZAe8oRA==}
|
|
976
|
-
engines: {node: '>=18.0.0'}
|
|
977
|
-
|
|
978
|
-
'@smithy/node-config-provider@4.3.8':
|
|
979
|
-
resolution: {integrity: sha512-aFP1ai4lrbVlWjfpAfRSL8KFcnJQYfTl5QxLJXY32vghJrDuFyPZ6LtUL+JEGYiFRG1PfPLHLoxj107ulncLIg==}
|
|
980
|
-
engines: {node: '>=18.0.0'}
|
|
981
|
-
|
|
982
|
-
'@smithy/node-http-handler@4.4.8':
|
|
983
|
-
resolution: {integrity: sha512-q9u+MSbJVIJ1QmJ4+1u+cERXkrhuILCBDsJUBAW1MPE6sFonbCNaegFuwW9ll8kh5UdyY3jOkoOGlc7BesoLpg==}
|
|
984
|
-
engines: {node: '>=18.0.0'}
|
|
985
|
-
|
|
986
|
-
'@smithy/property-provider@4.2.8':
|
|
987
|
-
resolution: {integrity: sha512-EtCTbyIveCKeOXDSWSdze3k612yCPq1YbXsbqX3UHhkOSW8zKsM9NOJG5gTIya0vbY2DIaieG8pKo1rITHYL0w==}
|
|
988
|
-
engines: {node: '>=18.0.0'}
|
|
989
|
-
|
|
990
|
-
'@smithy/protocol-http@5.3.8':
|
|
991
|
-
resolution: {integrity: sha512-QNINVDhxpZ5QnP3aviNHQFlRogQZDfYlCkQT+7tJnErPQbDhysondEjhikuANxgMsZrkGeiAxXy4jguEGsDrWQ==}
|
|
992
|
-
engines: {node: '>=18.0.0'}
|
|
993
|
-
|
|
994
|
-
'@smithy/querystring-builder@4.2.8':
|
|
995
|
-
resolution: {integrity: sha512-Xr83r31+DrE8CP3MqPgMJl+pQlLLmOfiEUnoyAlGzzJIrEsbKsPy1hqH0qySaQm4oWrCBlUqRt+idEgunKB+iw==}
|
|
996
|
-
engines: {node: '>=18.0.0'}
|
|
997
|
-
|
|
998
|
-
'@smithy/querystring-parser@4.2.8':
|
|
999
|
-
resolution: {integrity: sha512-vUurovluVy50CUlazOiXkPq40KGvGWSdmusa3130MwrR1UNnNgKAlj58wlOe61XSHRpUfIIh6cE0zZ8mzKaDPA==}
|
|
1000
|
-
engines: {node: '>=18.0.0'}
|
|
1001
|
-
|
|
1002
|
-
'@smithy/service-error-classification@4.2.8':
|
|
1003
|
-
resolution: {integrity: sha512-mZ5xddodpJhEt3RkCjbmUQuXUOaPNTkbMGR0bcS8FE0bJDLMZlhmpgrvPNCYglVw5rsYTpSnv19womw9WWXKQQ==}
|
|
1004
|
-
engines: {node: '>=18.0.0'}
|
|
1005
|
-
|
|
1006
|
-
'@smithy/shared-ini-file-loader@4.4.3':
|
|
1007
|
-
resolution: {integrity: sha512-DfQjxXQnzC5UbCUPeC3Ie8u+rIWZTvuDPAGU/BxzrOGhRvgUanaP68kDZA+jaT3ZI+djOf+4dERGlm9mWfFDrg==}
|
|
1008
|
-
engines: {node: '>=18.0.0'}
|
|
1009
|
-
|
|
1010
|
-
'@smithy/signature-v4@5.3.8':
|
|
1011
|
-
resolution: {integrity: sha512-6A4vdGj7qKNRF16UIcO8HhHjKW27thsxYci+5r/uVRkdcBEkOEiY8OMPuydLX4QHSrJqGHPJzPRwwVTqbLZJhg==}
|
|
1012
|
-
engines: {node: '>=18.0.0'}
|
|
1013
|
-
|
|
1014
|
-
'@smithy/smithy-client@4.10.7':
|
|
1015
|
-
resolution: {integrity: sha512-Uznt0I9z3os3Z+8pbXrOSCTXCA6vrjyN7Ub+8l2pRDum44vLv8qw0qGVkJN0/tZBZotaEFHrDPKUoPNueTr5Vg==}
|
|
1016
|
-
engines: {node: '>=18.0.0'}
|
|
1017
|
-
|
|
1018
|
-
'@smithy/types@4.12.0':
|
|
1019
|
-
resolution: {integrity: sha512-9YcuJVTOBDjg9LWo23Qp0lTQ3D7fQsQtwle0jVfpbUHy9qBwCEgKuVH4FqFB3VYu0nwdHKiEMA+oXz7oV8X1kw==}
|
|
1020
|
-
engines: {node: '>=18.0.0'}
|
|
1021
|
-
|
|
1022
|
-
'@smithy/url-parser@4.2.8':
|
|
1023
|
-
resolution: {integrity: sha512-NQho9U68TGMEU639YkXnVMV3GEFFULmmaWdlu1E9qzyIePOHsoSnagTGSDv1Zi8DCNN6btxOSdgmy5E/hsZwhA==}
|
|
1024
|
-
engines: {node: '>=18.0.0'}
|
|
1025
|
-
|
|
1026
|
-
'@smithy/util-base64@4.3.0':
|
|
1027
|
-
resolution: {integrity: sha512-GkXZ59JfyxsIwNTWFnjmFEI8kZpRNIBfxKjv09+nkAWPt/4aGaEWMM04m4sxgNVWkbt2MdSvE3KF/PfX4nFedQ==}
|
|
1028
|
-
engines: {node: '>=18.0.0'}
|
|
1029
|
-
|
|
1030
|
-
'@smithy/util-body-length-browser@4.2.0':
|
|
1031
|
-
resolution: {integrity: sha512-Fkoh/I76szMKJnBXWPdFkQJl2r9SjPt3cMzLdOB6eJ4Pnpas8hVoWPYemX/peO0yrrvldgCUVJqOAjUrOLjbxg==}
|
|
1032
|
-
engines: {node: '>=18.0.0'}
|
|
460
|
+
'@supabase/auth-js@2.95.3':
|
|
461
|
+
resolution: {integrity: sha512-vD2YoS8E2iKIX0F7EwXTmqhUpaNsmbU6X2R0/NdFcs02oEfnHyNP/3M716f3wVJ2E5XHGiTFXki6lRckhJ0Thg==}
|
|
462
|
+
engines: {node: '>=20.0.0'}
|
|
1033
463
|
|
|
1034
|
-
'@
|
|
1035
|
-
resolution: {integrity: sha512-
|
|
1036
|
-
engines: {node: '>=
|
|
464
|
+
'@supabase/functions-js@2.95.3':
|
|
465
|
+
resolution: {integrity: sha512-uTuOAKzs9R/IovW1krO0ZbUHSJnsnyJElTXIRhjJTqymIVGcHzkAYnBCJqd7468Fs/Foz1BQ7Dv6DCl05lr7ig==}
|
|
466
|
+
engines: {node: '>=20.0.0'}
|
|
1037
467
|
|
|
1038
|
-
'@
|
|
1039
|
-
resolution: {integrity: sha512-
|
|
1040
|
-
engines: {node: '>=
|
|
468
|
+
'@supabase/postgrest-js@2.95.3':
|
|
469
|
+
resolution: {integrity: sha512-LTrRBqU1gOovxRm1vRXPItSMPBmEFqrfTqdPTRtzOILV4jPSueFz6pES5hpb4LRlkFwCPRmv3nQJ5N625V2Xrg==}
|
|
470
|
+
engines: {node: '>=20.0.0'}
|
|
1041
471
|
|
|
1042
|
-
'@
|
|
1043
|
-
resolution: {integrity: sha512-
|
|
1044
|
-
engines: {node: '>=
|
|
472
|
+
'@supabase/realtime-js@2.95.3':
|
|
473
|
+
resolution: {integrity: sha512-D7EAtfU3w6BEUxDACjowWNJo/ZRo7sDIuhuOGKHIm9FHieGeoJV5R6GKTLtga/5l/6fDr2u+WcW/m8I9SYmaIw==}
|
|
474
|
+
engines: {node: '>=20.0.0'}
|
|
1045
475
|
|
|
1046
|
-
'@
|
|
1047
|
-
resolution: {integrity: sha512-
|
|
1048
|
-
engines: {node: '>=
|
|
476
|
+
'@supabase/storage-js@2.95.3':
|
|
477
|
+
resolution: {integrity: sha512-4GxkJiXI3HHWjxpC3sDx1BVrV87O0hfX+wvJdqGv67KeCu+g44SPnII8y0LL/Wr677jB7tpjAxKdtVWf+xhc9A==}
|
|
478
|
+
engines: {node: '>=20.0.0'}
|
|
1049
479
|
|
|
1050
|
-
'@
|
|
1051
|
-
resolution: {integrity: sha512-
|
|
1052
|
-
engines: {node: '>=
|
|
480
|
+
'@supabase/supabase-js@2.95.3':
|
|
481
|
+
resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
|
|
482
|
+
engines: {node: '>=20.0.0'}
|
|
1053
483
|
|
|
1054
|
-
'@
|
|
1055
|
-
resolution: {integrity: sha512-
|
|
1056
|
-
engines: {node: '>=18.0.0'}
|
|
484
|
+
'@types/body-parser@1.19.6':
|
|
485
|
+
resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==}
|
|
1057
486
|
|
|
1058
|
-
'@
|
|
1059
|
-
resolution: {integrity: sha512-
|
|
1060
|
-
engines: {node: '>=18.0.0'}
|
|
487
|
+
'@types/connect@3.4.38':
|
|
488
|
+
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
|
|
1061
489
|
|
|
1062
|
-
'@
|
|
1063
|
-
resolution: {integrity: sha512-
|
|
1064
|
-
engines: {node: '>=18.0.0'}
|
|
490
|
+
'@types/estree@1.0.8':
|
|
491
|
+
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
1065
492
|
|
|
1066
|
-
'@
|
|
1067
|
-
resolution: {integrity: sha512-
|
|
1068
|
-
engines: {node: '>=18.0.0'}
|
|
493
|
+
'@types/express-serve-static-core@5.1.1':
|
|
494
|
+
resolution: {integrity: sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==}
|
|
1069
495
|
|
|
1070
|
-
'@
|
|
1071
|
-
resolution: {integrity: sha512-
|
|
1072
|
-
engines: {node: '>=18.0.0'}
|
|
496
|
+
'@types/express@5.0.6':
|
|
497
|
+
resolution: {integrity: sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==}
|
|
1073
498
|
|
|
1074
|
-
'@
|
|
1075
|
-
resolution: {integrity: sha512-
|
|
1076
|
-
engines: {node: '>=18.0.0'}
|
|
499
|
+
'@types/http-errors@2.0.5':
|
|
500
|
+
resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==}
|
|
1077
501
|
|
|
1078
|
-
'@
|
|
1079
|
-
resolution: {integrity: sha512-
|
|
1080
|
-
engines: {node: '>=18.0.0'}
|
|
502
|
+
'@types/json-schema@7.0.15':
|
|
503
|
+
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
|
1081
504
|
|
|
1082
|
-
'@
|
|
1083
|
-
resolution: {integrity: sha512-
|
|
1084
|
-
engines: {node: '>=14.0.0'}
|
|
505
|
+
'@types/node@22.19.15':
|
|
506
|
+
resolution: {integrity: sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg==}
|
|
1085
507
|
|
|
1086
|
-
'@
|
|
1087
|
-
resolution: {integrity: sha512-
|
|
1088
|
-
engines: {node: '>=18.0.0'}
|
|
508
|
+
'@types/phoenix@1.6.7':
|
|
509
|
+
resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
|
|
1089
510
|
|
|
1090
|
-
'@
|
|
1091
|
-
resolution: {integrity: sha512-
|
|
1092
|
-
engines: {node: '>=18.0.0'}
|
|
511
|
+
'@types/qs@6.15.0':
|
|
512
|
+
resolution: {integrity: sha512-JawvT8iBVWpzTrz3EGw9BTQFg3BQNmwERdKE22vlTxawwtbyUSlMppvZYKLZzB5zgACXdXxbD3m1bXaMqP/9ow==}
|
|
1093
513
|
|
|
1094
|
-
'@
|
|
1095
|
-
resolution: {integrity: sha512-
|
|
1096
|
-
engines: {node: '>=18.0.0'}
|
|
514
|
+
'@types/range-parser@1.2.7':
|
|
515
|
+
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
|
|
1097
516
|
|
|
1098
|
-
'@types/
|
|
1099
|
-
resolution: {integrity: sha512-
|
|
517
|
+
'@types/send@1.2.1':
|
|
518
|
+
resolution: {integrity: sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==}
|
|
1100
519
|
|
|
1101
|
-
'@types/
|
|
1102
|
-
resolution: {integrity: sha512-
|
|
520
|
+
'@types/serve-static@2.2.0':
|
|
521
|
+
resolution: {integrity: sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==}
|
|
1103
522
|
|
|
1104
523
|
'@types/uuid@10.0.0':
|
|
1105
524
|
resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
|
|
1106
525
|
|
|
1107
|
-
'@
|
|
1108
|
-
resolution: {integrity: sha512-
|
|
526
|
+
'@types/ws@8.18.1':
|
|
527
|
+
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
|
|
528
|
+
|
|
529
|
+
'@typescript-eslint/eslint-plugin@8.53.1':
|
|
530
|
+
resolution: {integrity: sha512-cFYYFZ+oQFi6hUnBTbLRXfTJiaQtYE3t4O692agbBl+2Zy+eqSKWtPjhPXJu1G7j4RLjKgeJPDdq3EqOwmX5Ag==}
|
|
1109
531
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1110
532
|
peerDependencies:
|
|
1111
|
-
'@typescript-eslint/parser': ^8.
|
|
533
|
+
'@typescript-eslint/parser': ^8.53.1
|
|
1112
534
|
eslint: ^8.57.0 || ^9.0.0
|
|
1113
535
|
typescript: '>=4.8.4 <6.0.0'
|
|
1114
536
|
|
|
1115
|
-
'@typescript-eslint/parser@8.
|
|
1116
|
-
resolution: {integrity: sha512-
|
|
537
|
+
'@typescript-eslint/parser@8.53.1':
|
|
538
|
+
resolution: {integrity: sha512-nm3cvFN9SqZGXjmw5bZ6cGmvJSyJPn0wU9gHAZZHDnZl2wF9PhHv78Xf06E0MaNk4zLVHL8hb2/c32XvyJOLQg==}
|
|
1117
539
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1118
540
|
peerDependencies:
|
|
1119
541
|
eslint: ^8.57.0 || ^9.0.0
|
|
1120
542
|
typescript: '>=4.8.4 <6.0.0'
|
|
1121
543
|
|
|
1122
|
-
'@typescript-eslint/project-service@8.
|
|
1123
|
-
resolution: {integrity: sha512-
|
|
544
|
+
'@typescript-eslint/project-service@8.53.1':
|
|
545
|
+
resolution: {integrity: sha512-WYC4FB5Ra0xidsmlPb+1SsnaSKPmS3gsjIARwbEkHkoWloQmuzcfypljaJcR78uyLA1h8sHdWWPHSLDI+MtNog==}
|
|
1124
546
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1125
547
|
peerDependencies:
|
|
1126
548
|
typescript: '>=4.8.4 <6.0.0'
|
|
1127
549
|
|
|
1128
|
-
'@typescript-eslint/scope-manager@8.
|
|
1129
|
-
resolution: {integrity: sha512-
|
|
550
|
+
'@typescript-eslint/scope-manager@8.53.1':
|
|
551
|
+
resolution: {integrity: sha512-Lu23yw1uJMFY8cUeq7JlrizAgeQvWugNQzJp8C3x8Eo5Jw5Q2ykMdiiTB9vBVOOUBysMzmRRmUfwFrZuI2C4SQ==}
|
|
1130
552
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1131
553
|
|
|
1132
|
-
'@typescript-eslint/tsconfig-utils@8.
|
|
1133
|
-
resolution: {integrity: sha512-
|
|
554
|
+
'@typescript-eslint/tsconfig-utils@8.53.1':
|
|
555
|
+
resolution: {integrity: sha512-qfvLXS6F6b1y43pnf0pPbXJ+YoXIC7HKg0UGZ27uMIemKMKA6XH2DTxsEDdpdN29D+vHV07x/pnlPNVLhdhWiA==}
|
|
1134
556
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1135
557
|
peerDependencies:
|
|
1136
558
|
typescript: '>=4.8.4 <6.0.0'
|
|
1137
559
|
|
|
1138
|
-
'@typescript-eslint/type-utils@8.
|
|
1139
|
-
resolution: {integrity: sha512-
|
|
560
|
+
'@typescript-eslint/type-utils@8.53.1':
|
|
561
|
+
resolution: {integrity: sha512-MOrdtNvyhy0rHyv0ENzub1d4wQYKb2NmIqG7qEqPWFW7Mpy2jzFC3pQ2yKDvirZB7jypm5uGjF2Qqs6OIqu47w==}
|
|
1140
562
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1141
563
|
peerDependencies:
|
|
1142
564
|
eslint: ^8.57.0 || ^9.0.0
|
|
1143
565
|
typescript: '>=4.8.4 <6.0.0'
|
|
1144
566
|
|
|
1145
|
-
'@typescript-eslint/types@8.
|
|
1146
|
-
resolution: {integrity: sha512-
|
|
567
|
+
'@typescript-eslint/types@8.53.1':
|
|
568
|
+
resolution: {integrity: sha512-jr/swrr2aRmUAUjW5/zQHbMaui//vQlsZcJKijZf3M26bnmLj8LyZUpj8/Rd6uzaek06OWsqdofN/Thenm5O8A==}
|
|
1147
569
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1148
570
|
|
|
1149
|
-
'@typescript-eslint/typescript-estree@8.
|
|
1150
|
-
resolution: {integrity: sha512-
|
|
571
|
+
'@typescript-eslint/typescript-estree@8.53.1':
|
|
572
|
+
resolution: {integrity: sha512-RGlVipGhQAG4GxV1s34O91cxQ/vWiHJTDHbXRr0li2q/BGg3RR/7NM8QDWgkEgrwQYCvmJV9ichIwyoKCQ+DTg==}
|
|
1151
573
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1152
574
|
peerDependencies:
|
|
1153
575
|
typescript: '>=4.8.4 <6.0.0'
|
|
1154
576
|
|
|
1155
|
-
'@typescript-eslint/utils@8.
|
|
1156
|
-
resolution: {integrity: sha512-
|
|
577
|
+
'@typescript-eslint/utils@8.53.1':
|
|
578
|
+
resolution: {integrity: sha512-c4bMvGVWW4hv6JmDUEG7fSYlWOl3II2I4ylt0NM+seinYQlZMQIaKaXIIVJWt9Ofh6whrpM+EdDQXKXjNovvrg==}
|
|
1157
579
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1158
580
|
peerDependencies:
|
|
1159
581
|
eslint: ^8.57.0 || ^9.0.0
|
|
1160
582
|
typescript: '>=4.8.4 <6.0.0'
|
|
1161
583
|
|
|
1162
|
-
'@typescript-eslint/visitor-keys@8.
|
|
1163
|
-
resolution: {integrity: sha512-
|
|
584
|
+
'@typescript-eslint/visitor-keys@8.53.1':
|
|
585
|
+
resolution: {integrity: sha512-oy+wV7xDKFPRyNggmXuZQSBzvoLnpmJs+GhzRhPjrxl2b/jIlyjVokzm47CZCDUdXKr2zd7ZLodPfOBpOPyPlg==}
|
|
1164
586
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1165
587
|
|
|
588
|
+
accepts@1.3.8:
|
|
589
|
+
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
|
|
590
|
+
engines: {node: '>= 0.6'}
|
|
591
|
+
|
|
1166
592
|
acorn-jsx@5.3.2:
|
|
1167
593
|
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
|
1168
594
|
peerDependencies:
|
|
@@ -1173,13 +599,14 @@ packages:
|
|
|
1173
599
|
engines: {node: '>=0.4.0'}
|
|
1174
600
|
hasBin: true
|
|
1175
601
|
|
|
602
|
+
acorn@8.16.0:
|
|
603
|
+
resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
|
|
604
|
+
engines: {node: '>=0.4.0'}
|
|
605
|
+
hasBin: true
|
|
606
|
+
|
|
1176
607
|
ajv@6.12.6:
|
|
1177
608
|
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
|
|
1178
609
|
|
|
1179
|
-
ansi-regex@6.2.2:
|
|
1180
|
-
resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
|
|
1181
|
-
engines: {node: '>=12'}
|
|
1182
|
-
|
|
1183
610
|
ansi-styles@4.3.0:
|
|
1184
611
|
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
|
1185
612
|
engines: {node: '>=8'}
|
|
@@ -1201,6 +628,9 @@ packages:
|
|
|
1201
628
|
argparse@2.0.1:
|
|
1202
629
|
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
|
1203
630
|
|
|
631
|
+
array-flatten@1.1.1:
|
|
632
|
+
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
|
|
633
|
+
|
|
1204
634
|
asynckit@0.4.0:
|
|
1205
635
|
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
|
1206
636
|
|
|
@@ -1220,16 +650,17 @@ packages:
|
|
|
1220
650
|
base64-js@1.5.1:
|
|
1221
651
|
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
|
1222
652
|
|
|
1223
|
-
baseline-browser-mapping@2.9.
|
|
1224
|
-
resolution: {integrity: sha512-
|
|
653
|
+
baseline-browser-mapping@2.9.16:
|
|
654
|
+
resolution: {integrity: sha512-KeUZdBuxngy825i8xvzaK1Ncnkx0tBmb3k8DkEuqjKRkmtvNTjey2ZsNeh8Dw4lfKvbCOu9oeNx2TKm2vHqcRw==}
|
|
1225
655
|
hasBin: true
|
|
1226
656
|
|
|
1227
657
|
binary-extensions@2.3.0:
|
|
1228
658
|
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
|
|
1229
659
|
engines: {node: '>=8'}
|
|
1230
660
|
|
|
1231
|
-
|
|
1232
|
-
resolution: {integrity: sha512-
|
|
661
|
+
body-parser@1.20.4:
|
|
662
|
+
resolution: {integrity: sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==}
|
|
663
|
+
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
|
|
1233
664
|
|
|
1234
665
|
brace-expansion@1.1.12:
|
|
1235
666
|
resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
|
|
@@ -1246,16 +677,28 @@ packages:
|
|
|
1246
677
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
1247
678
|
hasBin: true
|
|
1248
679
|
|
|
1249
|
-
|
|
1250
|
-
resolution: {integrity: sha512-
|
|
680
|
+
bundle-require@5.1.0:
|
|
681
|
+
resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
|
|
682
|
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
|
683
|
+
peerDependencies:
|
|
684
|
+
esbuild: ^0.27.2
|
|
685
|
+
|
|
686
|
+
bytes@3.1.2:
|
|
687
|
+
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
|
|
688
|
+
engines: {node: '>= 0.8'}
|
|
1251
689
|
|
|
1252
|
-
|
|
1253
|
-
resolution: {integrity: sha512
|
|
690
|
+
cac@6.7.14:
|
|
691
|
+
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
|
|
692
|
+
engines: {node: '>=8'}
|
|
1254
693
|
|
|
1255
694
|
call-bind-apply-helpers@1.0.2:
|
|
1256
695
|
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
|
|
1257
696
|
engines: {node: '>= 0.4'}
|
|
1258
697
|
|
|
698
|
+
call-bound@1.0.4:
|
|
699
|
+
resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
|
|
700
|
+
engines: {node: '>= 0.4'}
|
|
701
|
+
|
|
1259
702
|
callsites@3.1.0:
|
|
1260
703
|
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
|
|
1261
704
|
engines: {node: '>=6'}
|
|
@@ -1268,28 +711,20 @@ packages:
|
|
|
1268
711
|
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
|
|
1269
712
|
engines: {node: '>=10'}
|
|
1270
713
|
|
|
1271
|
-
caniuse-lite@1.0.
|
|
1272
|
-
resolution: {integrity: sha512-
|
|
714
|
+
caniuse-lite@1.0.30001765:
|
|
715
|
+
resolution: {integrity: sha512-LWcNtSyZrakjECqmpP4qdg0MMGdN368D7X8XvvAqOcqMv0RxnlqVKZl2V6/mBR68oYMxOZPLw/gO7DuisMHUvQ==}
|
|
1273
716
|
|
|
1274
717
|
chalk@4.1.2:
|
|
1275
718
|
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
|
1276
719
|
engines: {node: '>=10'}
|
|
1277
720
|
|
|
1278
|
-
chalk@5.6.2:
|
|
1279
|
-
resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
|
|
1280
|
-
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
|
|
1281
|
-
|
|
1282
721
|
chokidar@3.6.0:
|
|
1283
722
|
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
|
|
1284
723
|
engines: {node: '>= 8.10.0'}
|
|
1285
724
|
|
|
1286
|
-
|
|
1287
|
-
resolution: {integrity: sha512-
|
|
1288
|
-
engines: {node: '>=
|
|
1289
|
-
|
|
1290
|
-
cli-spinners@3.4.0:
|
|
1291
|
-
resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==}
|
|
1292
|
-
engines: {node: '>=18.20'}
|
|
725
|
+
chokidar@4.0.3:
|
|
726
|
+
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
|
|
727
|
+
engines: {node: '>= 14.16.0'}
|
|
1293
728
|
|
|
1294
729
|
color-convert@2.0.1:
|
|
1295
730
|
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
|
@@ -1302,10 +737,6 @@ packages:
|
|
|
1302
737
|
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
|
|
1303
738
|
engines: {node: '>= 0.8'}
|
|
1304
739
|
|
|
1305
|
-
commander@14.0.2:
|
|
1306
|
-
resolution: {integrity: sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ==}
|
|
1307
|
-
engines: {node: '>=20'}
|
|
1308
|
-
|
|
1309
740
|
commander@4.1.1:
|
|
1310
741
|
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
|
|
1311
742
|
engines: {node: '>= 6'}
|
|
@@ -1313,11 +744,33 @@ packages:
|
|
|
1313
744
|
concat-map@0.0.1:
|
|
1314
745
|
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
|
1315
746
|
|
|
747
|
+
confbox@0.1.8:
|
|
748
|
+
resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
|
|
749
|
+
|
|
750
|
+
consola@3.4.2:
|
|
751
|
+
resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
|
|
752
|
+
engines: {node: ^14.18.0 || >=16.10.0}
|
|
753
|
+
|
|
1316
754
|
console-table-printer@2.15.0:
|
|
1317
755
|
resolution: {integrity: sha512-SrhBq4hYVjLCkBVOWaTzceJalvn5K1Zq5aQA6wXC/cYjI3frKWNPEMK3sZsJfNNQApvCQmgBcc13ZKmFj8qExw==}
|
|
1318
756
|
|
|
1319
|
-
|
|
1320
|
-
resolution: {integrity: sha512-
|
|
757
|
+
content-disposition@0.5.4:
|
|
758
|
+
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
|
|
759
|
+
engines: {node: '>= 0.6'}
|
|
760
|
+
|
|
761
|
+
content-type@1.0.5:
|
|
762
|
+
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
|
|
763
|
+
engines: {node: '>= 0.6'}
|
|
764
|
+
|
|
765
|
+
cookie-signature@1.0.7:
|
|
766
|
+
resolution: {integrity: sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==}
|
|
767
|
+
|
|
768
|
+
cookie@0.7.2:
|
|
769
|
+
resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
|
|
770
|
+
engines: {node: '>= 0.6'}
|
|
771
|
+
|
|
772
|
+
coze-coding-dev-sdk@0.7.16:
|
|
773
|
+
resolution: {integrity: sha512-B7gRPBa+sfrZL8ur0+F/92SOgZgFaWD/fOnCN2DjthnHSdmCYhAJWCfqzG2oO2vwTiYCXkKUuTBZ3MJLMj886g==}
|
|
1321
774
|
engines: {node: '>=18.0.0'}
|
|
1322
775
|
hasBin: true
|
|
1323
776
|
|
|
@@ -1330,6 +783,14 @@ packages:
|
|
|
1330
783
|
engines: {node: '>=4'}
|
|
1331
784
|
hasBin: true
|
|
1332
785
|
|
|
786
|
+
debug@2.6.9:
|
|
787
|
+
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
|
|
788
|
+
peerDependencies:
|
|
789
|
+
supports-color: '*'
|
|
790
|
+
peerDependenciesMeta:
|
|
791
|
+
supports-color:
|
|
792
|
+
optional: true
|
|
793
|
+
|
|
1333
794
|
debug@4.4.3:
|
|
1334
795
|
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
|
1335
796
|
engines: {node: '>=6.0'}
|
|
@@ -1350,115 +811,38 @@ packages:
|
|
|
1350
811
|
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
|
|
1351
812
|
engines: {node: '>=0.4.0'}
|
|
1352
813
|
|
|
814
|
+
depd@2.0.0:
|
|
815
|
+
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
|
|
816
|
+
engines: {node: '>= 0.8'}
|
|
817
|
+
|
|
818
|
+
destroy@1.2.0:
|
|
819
|
+
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
|
|
820
|
+
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
|
|
821
|
+
|
|
1353
822
|
didyoumean@1.2.2:
|
|
1354
823
|
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
|
|
1355
824
|
|
|
1356
825
|
dlv@1.1.3:
|
|
1357
826
|
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
|
|
1358
827
|
|
|
1359
|
-
|
|
1360
|
-
resolution: {integrity: sha512-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
drizzle-orm@0.45.1:
|
|
1364
|
-
resolution: {integrity: sha512-Te0FOdKIistGNPMq2jscdqngBRfBpC8uMFVwqjf6gtTVJHIQ/dosgV/CLBU2N4ZJBsXL5savCba9b0YJskKdcA==}
|
|
1365
|
-
peerDependencies:
|
|
1366
|
-
'@aws-sdk/client-rds-data': '>=3'
|
|
1367
|
-
'@cloudflare/workers-types': '>=4'
|
|
1368
|
-
'@electric-sql/pglite': '>=0.2.0'
|
|
1369
|
-
'@libsql/client': '>=0.10.0'
|
|
1370
|
-
'@libsql/client-wasm': '>=0.10.0'
|
|
1371
|
-
'@neondatabase/serverless': '>=0.10.0'
|
|
1372
|
-
'@op-engineering/op-sqlite': '>=2'
|
|
1373
|
-
'@opentelemetry/api': ^1.4.1
|
|
1374
|
-
'@planetscale/database': '>=1.13'
|
|
1375
|
-
'@prisma/client': '*'
|
|
1376
|
-
'@tidbcloud/serverless': '*'
|
|
1377
|
-
'@types/better-sqlite3': '*'
|
|
1378
|
-
'@types/pg': '*'
|
|
1379
|
-
'@types/sql.js': '*'
|
|
1380
|
-
'@upstash/redis': '>=1.34.7'
|
|
1381
|
-
'@vercel/postgres': '>=0.8.0'
|
|
1382
|
-
'@xata.io/client': '*'
|
|
1383
|
-
better-sqlite3: '>=7'
|
|
1384
|
-
bun-types: '*'
|
|
1385
|
-
expo-sqlite: '>=14.0.0'
|
|
1386
|
-
gel: '>=2'
|
|
1387
|
-
knex: '*'
|
|
1388
|
-
kysely: '*'
|
|
1389
|
-
mysql2: '>=2'
|
|
1390
|
-
pg: '>=8'
|
|
1391
|
-
postgres: '>=3'
|
|
1392
|
-
prisma: '*'
|
|
1393
|
-
sql.js: '>=1'
|
|
1394
|
-
sqlite3: '>=5'
|
|
1395
|
-
peerDependenciesMeta:
|
|
1396
|
-
'@aws-sdk/client-rds-data':
|
|
1397
|
-
optional: true
|
|
1398
|
-
'@cloudflare/workers-types':
|
|
1399
|
-
optional: true
|
|
1400
|
-
'@electric-sql/pglite':
|
|
1401
|
-
optional: true
|
|
1402
|
-
'@libsql/client':
|
|
1403
|
-
optional: true
|
|
1404
|
-
'@libsql/client-wasm':
|
|
1405
|
-
optional: true
|
|
1406
|
-
'@neondatabase/serverless':
|
|
1407
|
-
optional: true
|
|
1408
|
-
'@op-engineering/op-sqlite':
|
|
1409
|
-
optional: true
|
|
1410
|
-
'@opentelemetry/api':
|
|
1411
|
-
optional: true
|
|
1412
|
-
'@planetscale/database':
|
|
1413
|
-
optional: true
|
|
1414
|
-
'@prisma/client':
|
|
1415
|
-
optional: true
|
|
1416
|
-
'@tidbcloud/serverless':
|
|
1417
|
-
optional: true
|
|
1418
|
-
'@types/better-sqlite3':
|
|
1419
|
-
optional: true
|
|
1420
|
-
'@types/pg':
|
|
1421
|
-
optional: true
|
|
1422
|
-
'@types/sql.js':
|
|
1423
|
-
optional: true
|
|
1424
|
-
'@upstash/redis':
|
|
1425
|
-
optional: true
|
|
1426
|
-
'@vercel/postgres':
|
|
1427
|
-
optional: true
|
|
1428
|
-
'@xata.io/client':
|
|
1429
|
-
optional: true
|
|
1430
|
-
better-sqlite3:
|
|
1431
|
-
optional: true
|
|
1432
|
-
bun-types:
|
|
1433
|
-
optional: true
|
|
1434
|
-
expo-sqlite:
|
|
1435
|
-
optional: true
|
|
1436
|
-
gel:
|
|
1437
|
-
optional: true
|
|
1438
|
-
knex:
|
|
1439
|
-
optional: true
|
|
1440
|
-
kysely:
|
|
1441
|
-
optional: true
|
|
1442
|
-
mysql2:
|
|
1443
|
-
optional: true
|
|
1444
|
-
pg:
|
|
1445
|
-
optional: true
|
|
1446
|
-
postgres:
|
|
1447
|
-
optional: true
|
|
1448
|
-
prisma:
|
|
1449
|
-
optional: true
|
|
1450
|
-
sql.js:
|
|
1451
|
-
optional: true
|
|
1452
|
-
sqlite3:
|
|
1453
|
-
optional: true
|
|
828
|
+
dotenv@17.2.4:
|
|
829
|
+
resolution: {integrity: sha512-mudtfb4zRB4bVvdj0xRo+e6duH1csJRM8IukBqfTRvHotn9+LBXB8ynAidP9zHqoRC/fsllXgk4kCKlR21fIhw==}
|
|
830
|
+
engines: {node: '>=12'}
|
|
1454
831
|
|
|
1455
832
|
dunder-proto@1.0.1:
|
|
1456
833
|
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
|
|
1457
834
|
engines: {node: '>= 0.4'}
|
|
1458
835
|
|
|
836
|
+
ee-first@1.1.1:
|
|
837
|
+
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
|
|
838
|
+
|
|
1459
839
|
electron-to-chromium@1.5.267:
|
|
1460
840
|
resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==}
|
|
1461
841
|
|
|
842
|
+
encodeurl@2.0.0:
|
|
843
|
+
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
|
|
844
|
+
engines: {node: '>= 0.8'}
|
|
845
|
+
|
|
1462
846
|
es-define-property@1.0.1:
|
|
1463
847
|
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
|
|
1464
848
|
engines: {node: '>= 0.4'}
|
|
@@ -1475,21 +859,6 @@ packages:
|
|
|
1475
859
|
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
|
|
1476
860
|
engines: {node: '>= 0.4'}
|
|
1477
861
|
|
|
1478
|
-
esbuild-register@3.6.0:
|
|
1479
|
-
resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
|
|
1480
|
-
peerDependencies:
|
|
1481
|
-
esbuild: '>=0.12 <1'
|
|
1482
|
-
|
|
1483
|
-
esbuild@0.18.20:
|
|
1484
|
-
resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
|
|
1485
|
-
engines: {node: '>=12'}
|
|
1486
|
-
hasBin: true
|
|
1487
|
-
|
|
1488
|
-
esbuild@0.25.12:
|
|
1489
|
-
resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
|
|
1490
|
-
engines: {node: '>=18'}
|
|
1491
|
-
hasBin: true
|
|
1492
|
-
|
|
1493
862
|
esbuild@0.27.2:
|
|
1494
863
|
resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
|
|
1495
864
|
engines: {node: '>=18'}
|
|
@@ -1499,6 +868,9 @@ packages:
|
|
|
1499
868
|
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
1500
869
|
engines: {node: '>=6'}
|
|
1501
870
|
|
|
871
|
+
escape-html@1.0.3:
|
|
872
|
+
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
|
|
873
|
+
|
|
1502
874
|
escape-string-regexp@4.0.0:
|
|
1503
875
|
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
|
1504
876
|
engines: {node: '>=10'}
|
|
@@ -1545,12 +917,16 @@ packages:
|
|
|
1545
917
|
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
|
1546
918
|
engines: {node: '>=0.10.0'}
|
|
1547
919
|
|
|
920
|
+
etag@1.8.1:
|
|
921
|
+
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
|
|
922
|
+
engines: {node: '>= 0.6'}
|
|
923
|
+
|
|
1548
924
|
eventemitter3@4.0.7:
|
|
1549
925
|
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
|
|
1550
926
|
|
|
1551
|
-
|
|
1552
|
-
resolution: {integrity: sha512-
|
|
1553
|
-
engines: {node: '>=0.
|
|
927
|
+
express@4.22.1:
|
|
928
|
+
resolution: {integrity: sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==}
|
|
929
|
+
engines: {node: '>= 0.10.0'}
|
|
1554
930
|
|
|
1555
931
|
fast-deep-equal@3.1.3:
|
|
1556
932
|
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
|
@@ -1565,10 +941,6 @@ packages:
|
|
|
1565
941
|
fast-levenshtein@2.0.6:
|
|
1566
942
|
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
|
1567
943
|
|
|
1568
|
-
fast-xml-parser@5.2.5:
|
|
1569
|
-
resolution: {integrity: sha512-pfX9uG9Ki0yekDHx2SiuRIyFdyAr1kMIMitPvb0YBo8SUfKvia7w7FIyd/l6av85pFYRhZscS75MwMnbvY+hcQ==}
|
|
1570
|
-
hasBin: true
|
|
1571
|
-
|
|
1572
944
|
fastq@1.20.1:
|
|
1573
945
|
resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
|
|
1574
946
|
|
|
@@ -1589,10 +961,17 @@ packages:
|
|
|
1589
961
|
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
|
|
1590
962
|
engines: {node: '>=8'}
|
|
1591
963
|
|
|
964
|
+
finalhandler@1.3.2:
|
|
965
|
+
resolution: {integrity: sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==}
|
|
966
|
+
engines: {node: '>= 0.8'}
|
|
967
|
+
|
|
1592
968
|
find-up@5.0.0:
|
|
1593
969
|
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
|
|
1594
970
|
engines: {node: '>=10'}
|
|
1595
971
|
|
|
972
|
+
fix-dts-default-cjs-exports@1.0.1:
|
|
973
|
+
resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==}
|
|
974
|
+
|
|
1596
975
|
flat-cache@4.0.1:
|
|
1597
976
|
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
|
|
1598
977
|
engines: {node: '>=16'}
|
|
@@ -1613,9 +992,17 @@ packages:
|
|
|
1613
992
|
resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
|
|
1614
993
|
engines: {node: '>= 6'}
|
|
1615
994
|
|
|
995
|
+
forwarded@0.2.0:
|
|
996
|
+
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
|
|
997
|
+
engines: {node: '>= 0.6'}
|
|
998
|
+
|
|
1616
999
|
fraction.js@5.3.4:
|
|
1617
1000
|
resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
|
|
1618
1001
|
|
|
1002
|
+
fresh@0.5.2:
|
|
1003
|
+
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
|
|
1004
|
+
engines: {node: '>= 0.6'}
|
|
1005
|
+
|
|
1619
1006
|
fsevents@2.3.3:
|
|
1620
1007
|
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
1621
1008
|
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
@@ -1624,10 +1011,6 @@ packages:
|
|
|
1624
1011
|
function-bind@1.1.2:
|
|
1625
1012
|
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
|
1626
1013
|
|
|
1627
|
-
get-east-asian-width@1.4.0:
|
|
1628
|
-
resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==}
|
|
1629
|
-
engines: {node: '>=18'}
|
|
1630
|
-
|
|
1631
1014
|
get-intrinsic@1.3.0:
|
|
1632
1015
|
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
|
|
1633
1016
|
engines: {node: '>= 0.4'}
|
|
@@ -1636,8 +1019,8 @@ packages:
|
|
|
1636
1019
|
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
|
|
1637
1020
|
engines: {node: '>= 0.4'}
|
|
1638
1021
|
|
|
1639
|
-
get-tsconfig@4.13.
|
|
1640
|
-
resolution: {integrity: sha512-
|
|
1022
|
+
get-tsconfig@4.13.6:
|
|
1023
|
+
resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==}
|
|
1641
1024
|
|
|
1642
1025
|
glob-parent@5.1.2:
|
|
1643
1026
|
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
|
@@ -1671,8 +1054,17 @@ packages:
|
|
|
1671
1054
|
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
|
|
1672
1055
|
engines: {node: '>= 0.4'}
|
|
1673
1056
|
|
|
1674
|
-
|
|
1675
|
-
resolution: {integrity: sha512-
|
|
1057
|
+
http-errors@2.0.1:
|
|
1058
|
+
resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
|
|
1059
|
+
engines: {node: '>= 0.8'}
|
|
1060
|
+
|
|
1061
|
+
iceberg-js@0.8.1:
|
|
1062
|
+
resolution: {integrity: sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==}
|
|
1063
|
+
engines: {node: '>=20.0.0'}
|
|
1064
|
+
|
|
1065
|
+
iconv-lite@0.4.24:
|
|
1066
|
+
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
|
|
1067
|
+
engines: {node: '>=0.10.0'}
|
|
1676
1068
|
|
|
1677
1069
|
ignore@5.3.2:
|
|
1678
1070
|
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
|
@@ -1693,6 +1085,10 @@ packages:
|
|
|
1693
1085
|
inherits@2.0.4:
|
|
1694
1086
|
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
|
1695
1087
|
|
|
1088
|
+
ipaddr.js@1.9.1:
|
|
1089
|
+
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
|
|
1090
|
+
engines: {node: '>= 0.10'}
|
|
1091
|
+
|
|
1696
1092
|
is-binary-path@2.1.0:
|
|
1697
1093
|
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
|
1698
1094
|
engines: {node: '>=8'}
|
|
@@ -1709,18 +1105,10 @@ packages:
|
|
|
1709
1105
|
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
|
1710
1106
|
engines: {node: '>=0.10.0'}
|
|
1711
1107
|
|
|
1712
|
-
is-interactive@2.0.0:
|
|
1713
|
-
resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==}
|
|
1714
|
-
engines: {node: '>=12'}
|
|
1715
|
-
|
|
1716
1108
|
is-number@7.0.0:
|
|
1717
1109
|
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
|
1718
1110
|
engines: {node: '>=0.12.0'}
|
|
1719
1111
|
|
|
1720
|
-
is-unicode-supported@2.1.0:
|
|
1721
|
-
resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
|
|
1722
|
-
engines: {node: '>=18'}
|
|
1723
|
-
|
|
1724
1112
|
isexe@2.0.0:
|
|
1725
1113
|
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
|
1726
1114
|
|
|
@@ -1728,6 +1116,10 @@ packages:
|
|
|
1728
1116
|
resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
|
|
1729
1117
|
hasBin: true
|
|
1730
1118
|
|
|
1119
|
+
joycon@3.1.1:
|
|
1120
|
+
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
|
|
1121
|
+
engines: {node: '>=10'}
|
|
1122
|
+
|
|
1731
1123
|
js-tiktoken@1.0.21:
|
|
1732
1124
|
resolution: {integrity: sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g==}
|
|
1733
1125
|
|
|
@@ -1775,6 +1167,10 @@ packages:
|
|
|
1775
1167
|
lines-and-columns@1.2.4:
|
|
1776
1168
|
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
|
|
1777
1169
|
|
|
1170
|
+
load-tsconfig@0.2.5:
|
|
1171
|
+
resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
|
|
1172
|
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
|
1173
|
+
|
|
1778
1174
|
locate-path@6.0.0:
|
|
1779
1175
|
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
|
1780
1176
|
engines: {node: '>=10'}
|
|
@@ -1782,18 +1178,28 @@ packages:
|
|
|
1782
1178
|
lodash.merge@4.6.2:
|
|
1783
1179
|
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
|
1784
1180
|
|
|
1785
|
-
|
|
1786
|
-
resolution: {integrity: sha512-
|
|
1787
|
-
engines: {node: '>=18'}
|
|
1181
|
+
magic-string@0.30.21:
|
|
1182
|
+
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
1788
1183
|
|
|
1789
1184
|
math-intrinsics@1.1.0:
|
|
1790
1185
|
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
|
|
1791
1186
|
engines: {node: '>= 0.4'}
|
|
1792
1187
|
|
|
1188
|
+
media-typer@0.3.0:
|
|
1189
|
+
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
|
|
1190
|
+
engines: {node: '>= 0.6'}
|
|
1191
|
+
|
|
1192
|
+
merge-descriptors@1.0.3:
|
|
1193
|
+
resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
|
|
1194
|
+
|
|
1793
1195
|
merge2@1.4.1:
|
|
1794
1196
|
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
|
1795
1197
|
engines: {node: '>= 8'}
|
|
1796
1198
|
|
|
1199
|
+
methods@1.1.2:
|
|
1200
|
+
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
|
|
1201
|
+
engines: {node: '>= 0.6'}
|
|
1202
|
+
|
|
1797
1203
|
micromatch@4.0.8:
|
|
1798
1204
|
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
|
|
1799
1205
|
engines: {node: '>=8.6'}
|
|
@@ -1806,9 +1212,10 @@ packages:
|
|
|
1806
1212
|
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
|
|
1807
1213
|
engines: {node: '>= 0.6'}
|
|
1808
1214
|
|
|
1809
|
-
|
|
1810
|
-
resolution: {integrity: sha512-
|
|
1811
|
-
engines: {node: '>=
|
|
1215
|
+
mime@1.6.0:
|
|
1216
|
+
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
|
|
1217
|
+
engines: {node: '>=4'}
|
|
1218
|
+
hasBin: true
|
|
1812
1219
|
|
|
1813
1220
|
minimatch@3.1.2:
|
|
1814
1221
|
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
|
|
@@ -1817,6 +1224,12 @@ packages:
|
|
|
1817
1224
|
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
|
|
1818
1225
|
engines: {node: '>=16 || 14 >=14.17'}
|
|
1819
1226
|
|
|
1227
|
+
mlly@1.8.1:
|
|
1228
|
+
resolution: {integrity: sha512-SnL6sNutTwRWWR/vcmCYHSADjiEesp5TGQQ0pXyLhW5IoeibRlF/CbSLailbB3CNqJUk9cVJ9dUDnbD7GrcHBQ==}
|
|
1229
|
+
|
|
1230
|
+
ms@2.0.0:
|
|
1231
|
+
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
|
|
1232
|
+
|
|
1820
1233
|
ms@2.1.3:
|
|
1821
1234
|
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
1822
1235
|
|
|
@@ -1835,6 +1248,10 @@ packages:
|
|
|
1835
1248
|
natural-compare@1.4.0:
|
|
1836
1249
|
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
|
1837
1250
|
|
|
1251
|
+
negotiator@0.6.3:
|
|
1252
|
+
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
|
|
1253
|
+
engines: {node: '>= 0.6'}
|
|
1254
|
+
|
|
1838
1255
|
node-releases@2.0.27:
|
|
1839
1256
|
resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
|
|
1840
1257
|
|
|
@@ -1850,9 +1267,13 @@ packages:
|
|
|
1850
1267
|
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
|
|
1851
1268
|
engines: {node: '>= 6'}
|
|
1852
1269
|
|
|
1853
|
-
|
|
1854
|
-
resolution: {integrity: sha512-
|
|
1855
|
-
engines: {node: '>=
|
|
1270
|
+
object-inspect@1.13.4:
|
|
1271
|
+
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
|
|
1272
|
+
engines: {node: '>= 0.4'}
|
|
1273
|
+
|
|
1274
|
+
on-finished@2.4.1:
|
|
1275
|
+
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
|
|
1276
|
+
engines: {node: '>= 0.8'}
|
|
1856
1277
|
|
|
1857
1278
|
only-allow@1.2.2:
|
|
1858
1279
|
resolution: {integrity: sha512-uxyNYDsCh5YIJ780G7hC5OHjVUr9reHsbZNMM80L9tZlTpb3hUzb36KXgW4ZUGtJKQnGA3xegmWg1BxhWV0jJA==}
|
|
@@ -1874,10 +1295,6 @@ packages:
|
|
|
1874
1295
|
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
|
|
1875
1296
|
engines: {node: '>= 0.8.0'}
|
|
1876
1297
|
|
|
1877
|
-
ora@9.0.0:
|
|
1878
|
-
resolution: {integrity: sha512-m0pg2zscbYgWbqRR6ABga5c3sZdEon7bSgjnlXC64kxtxLOyjRcbbUkLj7HFyy/FTD+P2xdBWu8snGhYI0jc4A==}
|
|
1879
|
-
engines: {node: '>=20'}
|
|
1880
|
-
|
|
1881
1298
|
p-finally@1.0.0:
|
|
1882
1299
|
resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
|
|
1883
1300
|
engines: {node: '>=4'}
|
|
@@ -1902,6 +1319,10 @@ packages:
|
|
|
1902
1319
|
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
|
|
1903
1320
|
engines: {node: '>=6'}
|
|
1904
1321
|
|
|
1322
|
+
parseurl@1.3.3:
|
|
1323
|
+
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
|
|
1324
|
+
engines: {node: '>= 0.8'}
|
|
1325
|
+
|
|
1905
1326
|
path-exists@4.0.0:
|
|
1906
1327
|
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
|
1907
1328
|
engines: {node: '>=8'}
|
|
@@ -1913,11 +1334,17 @@ packages:
|
|
|
1913
1334
|
path-parse@1.0.7:
|
|
1914
1335
|
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
|
1915
1336
|
|
|
1337
|
+
path-to-regexp@0.1.12:
|
|
1338
|
+
resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
|
|
1339
|
+
|
|
1340
|
+
pathe@2.0.3:
|
|
1341
|
+
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
|
|
1342
|
+
|
|
1916
1343
|
pg-cloudflare@1.3.0:
|
|
1917
1344
|
resolution: {integrity: sha512-6lswVVSztmHiRtD6I8hw4qP/nDm1EJbKMRhf3HCYaqud7frGysPv7FYJ5noZQdhQtN2xJnimfMtvQq21pdbzyQ==}
|
|
1918
1345
|
|
|
1919
|
-
pg-connection-string@2.10.
|
|
1920
|
-
resolution: {integrity: sha512-
|
|
1346
|
+
pg-connection-string@2.10.1:
|
|
1347
|
+
resolution: {integrity: sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==}
|
|
1921
1348
|
|
|
1922
1349
|
pg-int8@1.0.1:
|
|
1923
1350
|
resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==}
|
|
@@ -1935,8 +1362,8 @@ packages:
|
|
|
1935
1362
|
resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==}
|
|
1936
1363
|
engines: {node: '>=4'}
|
|
1937
1364
|
|
|
1938
|
-
pg@8.17.
|
|
1939
|
-
resolution: {integrity: sha512-
|
|
1365
|
+
pg@8.17.2:
|
|
1366
|
+
resolution: {integrity: sha512-vjbKdiBJRqzcYw1fNU5KuHyYvdJ1qpcQg1CeBrHFqV1pWgHeVR6j/+kX0E1AAXfyuLUGY1ICrN2ELKA/z2HWzw==}
|
|
1940
1367
|
engines: {node: '>= 16.0.0'}
|
|
1941
1368
|
peerDependencies:
|
|
1942
1369
|
pg-native: '>=3.0.1'
|
|
@@ -1966,6 +1393,9 @@ packages:
|
|
|
1966
1393
|
resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
|
|
1967
1394
|
engines: {node: '>= 6'}
|
|
1968
1395
|
|
|
1396
|
+
pkg-types@1.3.1:
|
|
1397
|
+
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
|
|
1398
|
+
|
|
1969
1399
|
postcss-import@15.1.0:
|
|
1970
1400
|
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
|
|
1971
1401
|
engines: {node: '>=14.0.0'}
|
|
@@ -2033,6 +1463,10 @@ packages:
|
|
|
2033
1463
|
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
|
|
2034
1464
|
engines: {node: '>= 0.8.0'}
|
|
2035
1465
|
|
|
1466
|
+
proxy-addr@2.0.7:
|
|
1467
|
+
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
|
|
1468
|
+
engines: {node: '>= 0.10'}
|
|
1469
|
+
|
|
2036
1470
|
proxy-from-env@1.1.0:
|
|
2037
1471
|
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
|
|
2038
1472
|
|
|
@@ -2040,24 +1474,40 @@ packages:
|
|
|
2040
1474
|
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
|
2041
1475
|
engines: {node: '>=6'}
|
|
2042
1476
|
|
|
1477
|
+
qs@6.14.2:
|
|
1478
|
+
resolution: {integrity: sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==}
|
|
1479
|
+
engines: {node: '>=0.6'}
|
|
1480
|
+
|
|
2043
1481
|
queue-microtask@1.2.3:
|
|
2044
1482
|
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
|
2045
1483
|
|
|
1484
|
+
range-parser@1.2.1:
|
|
1485
|
+
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
|
|
1486
|
+
engines: {node: '>= 0.6'}
|
|
1487
|
+
|
|
1488
|
+
raw-body@2.5.3:
|
|
1489
|
+
resolution: {integrity: sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==}
|
|
1490
|
+
engines: {node: '>= 0.8'}
|
|
1491
|
+
|
|
2046
1492
|
read-cache@1.0.0:
|
|
2047
1493
|
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
|
|
2048
1494
|
|
|
2049
|
-
readable-stream@3.6.2:
|
|
2050
|
-
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
|
|
2051
|
-
engines: {node: '>= 6'}
|
|
2052
|
-
|
|
2053
1495
|
readdirp@3.6.0:
|
|
2054
1496
|
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
|
|
2055
1497
|
engines: {node: '>=8.10.0'}
|
|
2056
1498
|
|
|
1499
|
+
readdirp@4.1.2:
|
|
1500
|
+
resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
|
|
1501
|
+
engines: {node: '>= 14.18.0'}
|
|
1502
|
+
|
|
2057
1503
|
resolve-from@4.0.0:
|
|
2058
1504
|
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
|
2059
1505
|
engines: {node: '>=4'}
|
|
2060
1506
|
|
|
1507
|
+
resolve-from@5.0.0:
|
|
1508
|
+
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
|
|
1509
|
+
engines: {node: '>=8'}
|
|
1510
|
+
|
|
2061
1511
|
resolve-pkg-maps@1.0.0:
|
|
2062
1512
|
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
2063
1513
|
|
|
@@ -2066,16 +1516,12 @@ packages:
|
|
|
2066
1516
|
engines: {node: '>= 0.4'}
|
|
2067
1517
|
hasBin: true
|
|
2068
1518
|
|
|
2069
|
-
restore-cursor@5.1.0:
|
|
2070
|
-
resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
|
|
2071
|
-
engines: {node: '>=18'}
|
|
2072
|
-
|
|
2073
1519
|
reusify@1.1.0:
|
|
2074
1520
|
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
|
|
2075
1521
|
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
|
2076
1522
|
|
|
2077
|
-
rollup@4.
|
|
2078
|
-
resolution: {integrity: sha512-
|
|
1523
|
+
rollup@4.55.3:
|
|
1524
|
+
resolution: {integrity: sha512-y9yUpfQvetAjiDLtNMf1hL9NXchIJgWt6zIKeoB+tCd3npX08Eqfzg60V9DhIGVMtQ0AlMkFw5xa+AQ37zxnAA==}
|
|
2079
1525
|
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
2080
1526
|
hasBin: true
|
|
2081
1527
|
|
|
@@ -2085,11 +1531,25 @@ packages:
|
|
|
2085
1531
|
safe-buffer@5.2.1:
|
|
2086
1532
|
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
|
2087
1533
|
|
|
1534
|
+
safer-buffer@2.1.2:
|
|
1535
|
+
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
|
1536
|
+
|
|
2088
1537
|
semver@7.7.3:
|
|
2089
1538
|
resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
|
|
2090
1539
|
engines: {node: '>=10'}
|
|
2091
1540
|
hasBin: true
|
|
2092
1541
|
|
|
1542
|
+
send@0.19.2:
|
|
1543
|
+
resolution: {integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==}
|
|
1544
|
+
engines: {node: '>= 0.8.0'}
|
|
1545
|
+
|
|
1546
|
+
serve-static@1.16.3:
|
|
1547
|
+
resolution: {integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==}
|
|
1548
|
+
engines: {node: '>= 0.8.0'}
|
|
1549
|
+
|
|
1550
|
+
setprototypeof@1.2.0:
|
|
1551
|
+
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
|
|
1552
|
+
|
|
2093
1553
|
shebang-command@2.0.0:
|
|
2094
1554
|
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
2095
1555
|
engines: {node: '>=8'}
|
|
@@ -2098,9 +1558,21 @@ packages:
|
|
|
2098
1558
|
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
2099
1559
|
engines: {node: '>=8'}
|
|
2100
1560
|
|
|
2101
|
-
|
|
2102
|
-
resolution: {integrity: sha512-
|
|
2103
|
-
engines: {node: '>=
|
|
1561
|
+
side-channel-list@1.0.0:
|
|
1562
|
+
resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
|
|
1563
|
+
engines: {node: '>= 0.4'}
|
|
1564
|
+
|
|
1565
|
+
side-channel-map@1.0.1:
|
|
1566
|
+
resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
|
|
1567
|
+
engines: {node: '>= 0.4'}
|
|
1568
|
+
|
|
1569
|
+
side-channel-weakmap@1.0.2:
|
|
1570
|
+
resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
|
|
1571
|
+
engines: {node: '>= 0.4'}
|
|
1572
|
+
|
|
1573
|
+
side-channel@1.1.0:
|
|
1574
|
+
resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
|
|
1575
|
+
engines: {node: '>= 0.4'}
|
|
2104
1576
|
|
|
2105
1577
|
simple-wcswidth@1.1.2:
|
|
2106
1578
|
resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
|
|
@@ -2109,42 +1581,22 @@ packages:
|
|
|
2109
1581
|
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
2110
1582
|
engines: {node: '>=0.10.0'}
|
|
2111
1583
|
|
|
2112
|
-
source-map
|
|
2113
|
-
resolution: {integrity: sha512-
|
|
2114
|
-
|
|
2115
|
-
source-map@0.6.1:
|
|
2116
|
-
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
|
|
2117
|
-
engines: {node: '>=0.10.0'}
|
|
1584
|
+
source-map@0.7.6:
|
|
1585
|
+
resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==}
|
|
1586
|
+
engines: {node: '>= 12'}
|
|
2118
1587
|
|
|
2119
1588
|
split2@4.2.0:
|
|
2120
1589
|
resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
|
|
2121
1590
|
engines: {node: '>= 10.x'}
|
|
2122
1591
|
|
|
2123
|
-
|
|
2124
|
-
resolution: {integrity: sha512-
|
|
2125
|
-
engines: {node: '>=
|
|
2126
|
-
|
|
2127
|
-
stream-browserify@3.0.0:
|
|
2128
|
-
resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==}
|
|
2129
|
-
|
|
2130
|
-
string-width@8.1.0:
|
|
2131
|
-
resolution: {integrity: sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==}
|
|
2132
|
-
engines: {node: '>=20'}
|
|
2133
|
-
|
|
2134
|
-
string_decoder@1.3.0:
|
|
2135
|
-
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
|
|
2136
|
-
|
|
2137
|
-
strip-ansi@7.1.2:
|
|
2138
|
-
resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
|
|
2139
|
-
engines: {node: '>=12'}
|
|
1592
|
+
statuses@2.0.2:
|
|
1593
|
+
resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
|
|
1594
|
+
engines: {node: '>= 0.8'}
|
|
2140
1595
|
|
|
2141
1596
|
strip-json-comments@3.1.1:
|
|
2142
1597
|
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
|
2143
1598
|
engines: {node: '>=8'}
|
|
2144
1599
|
|
|
2145
|
-
strnum@2.1.2:
|
|
2146
|
-
resolution: {integrity: sha512-l63NF9y/cLROq/yqKXSLtcMeeyOfnSQlfMSlzFt/K73oIaD8DGaQWd7Z34X9GPiKqP5rbSh84Hl4bOlLcjiSrQ==}
|
|
2147
|
-
|
|
2148
1600
|
sucrase@3.35.1:
|
|
2149
1601
|
resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
|
|
2150
1602
|
engines: {node: '>=16 || 14 >=14.17'}
|
|
@@ -2170,6 +1622,9 @@ packages:
|
|
|
2170
1622
|
thenify@3.3.1:
|
|
2171
1623
|
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
|
|
2172
1624
|
|
|
1625
|
+
tinyexec@0.3.2:
|
|
1626
|
+
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
|
|
1627
|
+
|
|
2173
1628
|
tinyglobby@0.2.15:
|
|
2174
1629
|
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
|
|
2175
1630
|
engines: {node: '>=12.0.0'}
|
|
@@ -2178,9 +1633,12 @@ packages:
|
|
|
2178
1633
|
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
|
2179
1634
|
engines: {node: '>=8.0'}
|
|
2180
1635
|
|
|
2181
|
-
|
|
2182
|
-
resolution: {integrity: sha512-
|
|
2183
|
-
engines: {node: '>=
|
|
1636
|
+
toidentifier@1.0.1:
|
|
1637
|
+
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
|
|
1638
|
+
engines: {node: '>=0.6'}
|
|
1639
|
+
|
|
1640
|
+
tree-kill@1.2.2:
|
|
1641
|
+
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
|
|
2184
1642
|
hasBin: true
|
|
2185
1643
|
|
|
2186
1644
|
ts-api-utils@2.4.0:
|
|
@@ -2195,839 +1653,241 @@ packages:
|
|
|
2195
1653
|
tslib@2.8.1:
|
|
2196
1654
|
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
2197
1655
|
|
|
2198
|
-
|
|
2199
|
-
resolution: {integrity: sha512-
|
|
2200
|
-
engines: {node: '>=
|
|
2201
|
-
|
|
2202
|
-
typescript-eslint@8.52.0:
|
|
2203
|
-
resolution: {integrity: sha512-atlQQJ2YkO4pfTVQmQ+wvYQwexPDOIgo+RaVcD7gHgzy/IQA+XTyuxNM9M9TVXvttkF7koBHmcwisKdOAf2EcA==}
|
|
2204
|
-
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2205
|
-
peerDependencies:
|
|
2206
|
-
eslint: ^8.57.0 || ^9.0.0
|
|
2207
|
-
typescript: '>=4.8.4 <6.0.0'
|
|
2208
|
-
|
|
2209
|
-
typescript@5.9.3:
|
|
2210
|
-
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
|
2211
|
-
engines: {node: '>=14.17'}
|
|
2212
|
-
hasBin: true
|
|
2213
|
-
|
|
2214
|
-
update-browserslist-db@1.2.3:
|
|
2215
|
-
resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
|
|
2216
|
-
hasBin: true
|
|
2217
|
-
peerDependencies:
|
|
2218
|
-
browserslist: '>= 4.21.0'
|
|
2219
|
-
|
|
2220
|
-
uri-js@4.4.1:
|
|
2221
|
-
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
|
2222
|
-
|
|
2223
|
-
util-deprecate@1.0.2:
|
|
2224
|
-
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
2225
|
-
|
|
2226
|
-
uuid@10.0.0:
|
|
2227
|
-
resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
|
|
2228
|
-
hasBin: true
|
|
2229
|
-
|
|
2230
|
-
vite@7.3.0:
|
|
2231
|
-
resolution: {integrity: sha512-dZwN5L1VlUBewiP6H9s2+B3e3Jg96D0vzN+Ry73sOefebhYr9f94wwkMNN/9ouoU8pV1BqA1d1zGk8928cx0rg==}
|
|
2232
|
-
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1656
|
+
tsup@8.5.1:
|
|
1657
|
+
resolution: {integrity: sha512-xtgkqwdhpKWr3tKPmCkvYmS9xnQK3m3XgxZHwSUjvfTjp7YfXe5tT3GgWi0F2N+ZSMsOeWeZFh7ZZFg5iPhing==}
|
|
1658
|
+
engines: {node: '>=18'}
|
|
2233
1659
|
hasBin: true
|
|
2234
1660
|
peerDependencies:
|
|
2235
|
-
'@
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
sass: ^1.70.0
|
|
2240
|
-
sass-embedded: ^1.70.0
|
|
2241
|
-
stylus: '>=0.54.8'
|
|
2242
|
-
sugarss: ^5.0.0
|
|
2243
|
-
terser: ^5.16.0
|
|
2244
|
-
tsx: ^4.8.1
|
|
2245
|
-
yaml: ^2.4.2
|
|
1661
|
+
'@microsoft/api-extractor': ^7.36.0
|
|
1662
|
+
'@swc/core': ^1
|
|
1663
|
+
postcss: ^8.4.12
|
|
1664
|
+
typescript: '>=4.5.0'
|
|
2246
1665
|
peerDependenciesMeta:
|
|
2247
|
-
'@
|
|
2248
|
-
optional: true
|
|
2249
|
-
jiti:
|
|
2250
|
-
optional: true
|
|
2251
|
-
less:
|
|
2252
|
-
optional: true
|
|
2253
|
-
lightningcss:
|
|
2254
|
-
optional: true
|
|
2255
|
-
sass:
|
|
1666
|
+
'@microsoft/api-extractor':
|
|
2256
1667
|
optional: true
|
|
2257
|
-
|
|
2258
|
-
optional: true
|
|
2259
|
-
stylus:
|
|
2260
|
-
optional: true
|
|
2261
|
-
sugarss:
|
|
1668
|
+
'@swc/core':
|
|
2262
1669
|
optional: true
|
|
2263
|
-
|
|
2264
|
-
optional: true
|
|
2265
|
-
tsx:
|
|
1670
|
+
postcss:
|
|
2266
1671
|
optional: true
|
|
2267
|
-
|
|
1672
|
+
typescript:
|
|
2268
1673
|
optional: true
|
|
2269
1674
|
|
|
2270
|
-
|
|
2271
|
-
resolution: {integrity: sha512-
|
|
2272
|
-
engines: {node: '>=
|
|
2273
|
-
|
|
2274
|
-
which@2.0.2:
|
|
2275
|
-
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
|
2276
|
-
engines: {node: '>= 8'}
|
|
1675
|
+
tsx@4.21.0:
|
|
1676
|
+
resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
|
|
1677
|
+
engines: {node: '>=18.0.0'}
|
|
2277
1678
|
hasBin: true
|
|
2278
1679
|
|
|
2279
|
-
|
|
2280
|
-
resolution: {integrity: sha512-
|
|
2281
|
-
engines: {node: '>=0.
|
|
2282
|
-
|
|
2283
|
-
xtend@4.0.2:
|
|
2284
|
-
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
|
|
2285
|
-
engines: {node: '>=0.4'}
|
|
2286
|
-
|
|
2287
|
-
yocto-queue@0.1.0:
|
|
2288
|
-
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
|
2289
|
-
engines: {node: '>=10'}
|
|
2290
|
-
|
|
2291
|
-
yoctocolors@2.1.2:
|
|
2292
|
-
resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
|
|
2293
|
-
engines: {node: '>=18'}
|
|
2294
|
-
|
|
2295
|
-
zod@4.3.5:
|
|
2296
|
-
resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==}
|
|
2297
|
-
|
|
2298
|
-
snapshots:
|
|
2299
|
-
|
|
2300
|
-
'@alloc/quick-lru@5.2.0': {}
|
|
2301
|
-
|
|
2302
|
-
'@aws-crypto/crc32@5.2.0':
|
|
2303
|
-
dependencies:
|
|
2304
|
-
'@aws-crypto/util': 5.2.0
|
|
2305
|
-
'@aws-sdk/types': 3.969.0
|
|
2306
|
-
tslib: 2.8.1
|
|
2307
|
-
|
|
2308
|
-
'@aws-crypto/crc32c@5.2.0':
|
|
2309
|
-
dependencies:
|
|
2310
|
-
'@aws-crypto/util': 5.2.0
|
|
2311
|
-
'@aws-sdk/types': 3.969.0
|
|
2312
|
-
tslib: 2.8.1
|
|
2313
|
-
|
|
2314
|
-
'@aws-crypto/sha1-browser@5.2.0':
|
|
2315
|
-
dependencies:
|
|
2316
|
-
'@aws-crypto/supports-web-crypto': 5.2.0
|
|
2317
|
-
'@aws-crypto/util': 5.2.0
|
|
2318
|
-
'@aws-sdk/types': 3.969.0
|
|
2319
|
-
'@aws-sdk/util-locate-window': 3.965.2
|
|
2320
|
-
'@smithy/util-utf8': 2.3.0
|
|
2321
|
-
tslib: 2.8.1
|
|
2322
|
-
|
|
2323
|
-
'@aws-crypto/sha256-browser@5.2.0':
|
|
2324
|
-
dependencies:
|
|
2325
|
-
'@aws-crypto/sha256-js': 5.2.0
|
|
2326
|
-
'@aws-crypto/supports-web-crypto': 5.2.0
|
|
2327
|
-
'@aws-crypto/util': 5.2.0
|
|
2328
|
-
'@aws-sdk/types': 3.969.0
|
|
2329
|
-
'@aws-sdk/util-locate-window': 3.965.2
|
|
2330
|
-
'@smithy/util-utf8': 2.3.0
|
|
2331
|
-
tslib: 2.8.1
|
|
2332
|
-
|
|
2333
|
-
'@aws-crypto/sha256-js@5.2.0':
|
|
2334
|
-
dependencies:
|
|
2335
|
-
'@aws-crypto/util': 5.2.0
|
|
2336
|
-
'@aws-sdk/types': 3.969.0
|
|
2337
|
-
tslib: 2.8.1
|
|
2338
|
-
|
|
2339
|
-
'@aws-crypto/supports-web-crypto@5.2.0':
|
|
2340
|
-
dependencies:
|
|
2341
|
-
tslib: 2.8.1
|
|
2342
|
-
|
|
2343
|
-
'@aws-crypto/util@5.2.0':
|
|
2344
|
-
dependencies:
|
|
2345
|
-
'@aws-sdk/types': 3.969.0
|
|
2346
|
-
'@smithy/util-utf8': 2.3.0
|
|
2347
|
-
tslib: 2.8.1
|
|
2348
|
-
|
|
2349
|
-
'@aws-sdk/client-s3@3.969.0':
|
|
2350
|
-
dependencies:
|
|
2351
|
-
'@aws-crypto/sha1-browser': 5.2.0
|
|
2352
|
-
'@aws-crypto/sha256-browser': 5.2.0
|
|
2353
|
-
'@aws-crypto/sha256-js': 5.2.0
|
|
2354
|
-
'@aws-sdk/core': 3.969.0
|
|
2355
|
-
'@aws-sdk/credential-provider-node': 3.969.0
|
|
2356
|
-
'@aws-sdk/middleware-bucket-endpoint': 3.969.0
|
|
2357
|
-
'@aws-sdk/middleware-expect-continue': 3.969.0
|
|
2358
|
-
'@aws-sdk/middleware-flexible-checksums': 3.969.0
|
|
2359
|
-
'@aws-sdk/middleware-host-header': 3.969.0
|
|
2360
|
-
'@aws-sdk/middleware-location-constraint': 3.969.0
|
|
2361
|
-
'@aws-sdk/middleware-logger': 3.969.0
|
|
2362
|
-
'@aws-sdk/middleware-recursion-detection': 3.969.0
|
|
2363
|
-
'@aws-sdk/middleware-sdk-s3': 3.969.0
|
|
2364
|
-
'@aws-sdk/middleware-ssec': 3.969.0
|
|
2365
|
-
'@aws-sdk/middleware-user-agent': 3.969.0
|
|
2366
|
-
'@aws-sdk/region-config-resolver': 3.969.0
|
|
2367
|
-
'@aws-sdk/signature-v4-multi-region': 3.969.0
|
|
2368
|
-
'@aws-sdk/types': 3.969.0
|
|
2369
|
-
'@aws-sdk/util-endpoints': 3.969.0
|
|
2370
|
-
'@aws-sdk/util-user-agent-browser': 3.969.0
|
|
2371
|
-
'@aws-sdk/util-user-agent-node': 3.969.0
|
|
2372
|
-
'@smithy/config-resolver': 4.4.6
|
|
2373
|
-
'@smithy/core': 3.20.5
|
|
2374
|
-
'@smithy/eventstream-serde-browser': 4.2.8
|
|
2375
|
-
'@smithy/eventstream-serde-config-resolver': 4.3.8
|
|
2376
|
-
'@smithy/eventstream-serde-node': 4.2.8
|
|
2377
|
-
'@smithy/fetch-http-handler': 5.3.9
|
|
2378
|
-
'@smithy/hash-blob-browser': 4.2.9
|
|
2379
|
-
'@smithy/hash-node': 4.2.8
|
|
2380
|
-
'@smithy/hash-stream-node': 4.2.8
|
|
2381
|
-
'@smithy/invalid-dependency': 4.2.8
|
|
2382
|
-
'@smithy/md5-js': 4.2.8
|
|
2383
|
-
'@smithy/middleware-content-length': 4.2.8
|
|
2384
|
-
'@smithy/middleware-endpoint': 4.4.6
|
|
2385
|
-
'@smithy/middleware-retry': 4.4.22
|
|
2386
|
-
'@smithy/middleware-serde': 4.2.9
|
|
2387
|
-
'@smithy/middleware-stack': 4.2.8
|
|
2388
|
-
'@smithy/node-config-provider': 4.3.8
|
|
2389
|
-
'@smithy/node-http-handler': 4.4.8
|
|
2390
|
-
'@smithy/protocol-http': 5.3.8
|
|
2391
|
-
'@smithy/smithy-client': 4.10.7
|
|
2392
|
-
'@smithy/types': 4.12.0
|
|
2393
|
-
'@smithy/url-parser': 4.2.8
|
|
2394
|
-
'@smithy/util-base64': 4.3.0
|
|
2395
|
-
'@smithy/util-body-length-browser': 4.2.0
|
|
2396
|
-
'@smithy/util-body-length-node': 4.2.1
|
|
2397
|
-
'@smithy/util-defaults-mode-browser': 4.3.21
|
|
2398
|
-
'@smithy/util-defaults-mode-node': 4.2.24
|
|
2399
|
-
'@smithy/util-endpoints': 3.2.8
|
|
2400
|
-
'@smithy/util-middleware': 4.2.8
|
|
2401
|
-
'@smithy/util-retry': 4.2.8
|
|
2402
|
-
'@smithy/util-stream': 4.5.10
|
|
2403
|
-
'@smithy/util-utf8': 4.2.0
|
|
2404
|
-
'@smithy/util-waiter': 4.2.8
|
|
2405
|
-
tslib: 2.8.1
|
|
2406
|
-
transitivePeerDependencies:
|
|
2407
|
-
- aws-crt
|
|
2408
|
-
|
|
2409
|
-
'@aws-sdk/client-sso@3.969.0':
|
|
2410
|
-
dependencies:
|
|
2411
|
-
'@aws-crypto/sha256-browser': 5.2.0
|
|
2412
|
-
'@aws-crypto/sha256-js': 5.2.0
|
|
2413
|
-
'@aws-sdk/core': 3.969.0
|
|
2414
|
-
'@aws-sdk/middleware-host-header': 3.969.0
|
|
2415
|
-
'@aws-sdk/middleware-logger': 3.969.0
|
|
2416
|
-
'@aws-sdk/middleware-recursion-detection': 3.969.0
|
|
2417
|
-
'@aws-sdk/middleware-user-agent': 3.969.0
|
|
2418
|
-
'@aws-sdk/region-config-resolver': 3.969.0
|
|
2419
|
-
'@aws-sdk/types': 3.969.0
|
|
2420
|
-
'@aws-sdk/util-endpoints': 3.969.0
|
|
2421
|
-
'@aws-sdk/util-user-agent-browser': 3.969.0
|
|
2422
|
-
'@aws-sdk/util-user-agent-node': 3.969.0
|
|
2423
|
-
'@smithy/config-resolver': 4.4.6
|
|
2424
|
-
'@smithy/core': 3.20.5
|
|
2425
|
-
'@smithy/fetch-http-handler': 5.3.9
|
|
2426
|
-
'@smithy/hash-node': 4.2.8
|
|
2427
|
-
'@smithy/invalid-dependency': 4.2.8
|
|
2428
|
-
'@smithy/middleware-content-length': 4.2.8
|
|
2429
|
-
'@smithy/middleware-endpoint': 4.4.6
|
|
2430
|
-
'@smithy/middleware-retry': 4.4.22
|
|
2431
|
-
'@smithy/middleware-serde': 4.2.9
|
|
2432
|
-
'@smithy/middleware-stack': 4.2.8
|
|
2433
|
-
'@smithy/node-config-provider': 4.3.8
|
|
2434
|
-
'@smithy/node-http-handler': 4.4.8
|
|
2435
|
-
'@smithy/protocol-http': 5.3.8
|
|
2436
|
-
'@smithy/smithy-client': 4.10.7
|
|
2437
|
-
'@smithy/types': 4.12.0
|
|
2438
|
-
'@smithy/url-parser': 4.2.8
|
|
2439
|
-
'@smithy/util-base64': 4.3.0
|
|
2440
|
-
'@smithy/util-body-length-browser': 4.2.0
|
|
2441
|
-
'@smithy/util-body-length-node': 4.2.1
|
|
2442
|
-
'@smithy/util-defaults-mode-browser': 4.3.21
|
|
2443
|
-
'@smithy/util-defaults-mode-node': 4.2.24
|
|
2444
|
-
'@smithy/util-endpoints': 3.2.8
|
|
2445
|
-
'@smithy/util-middleware': 4.2.8
|
|
2446
|
-
'@smithy/util-retry': 4.2.8
|
|
2447
|
-
'@smithy/util-utf8': 4.2.0
|
|
2448
|
-
tslib: 2.8.1
|
|
2449
|
-
transitivePeerDependencies:
|
|
2450
|
-
- aws-crt
|
|
2451
|
-
|
|
2452
|
-
'@aws-sdk/core@3.969.0':
|
|
2453
|
-
dependencies:
|
|
2454
|
-
'@aws-sdk/types': 3.969.0
|
|
2455
|
-
'@aws-sdk/xml-builder': 3.969.0
|
|
2456
|
-
'@smithy/core': 3.20.5
|
|
2457
|
-
'@smithy/node-config-provider': 4.3.8
|
|
2458
|
-
'@smithy/property-provider': 4.2.8
|
|
2459
|
-
'@smithy/protocol-http': 5.3.8
|
|
2460
|
-
'@smithy/signature-v4': 5.3.8
|
|
2461
|
-
'@smithy/smithy-client': 4.10.7
|
|
2462
|
-
'@smithy/types': 4.12.0
|
|
2463
|
-
'@smithy/util-base64': 4.3.0
|
|
2464
|
-
'@smithy/util-middleware': 4.2.8
|
|
2465
|
-
'@smithy/util-utf8': 4.2.0
|
|
2466
|
-
tslib: 2.8.1
|
|
2467
|
-
|
|
2468
|
-
'@aws-sdk/crc64-nvme@3.969.0':
|
|
2469
|
-
dependencies:
|
|
2470
|
-
'@smithy/types': 4.12.0
|
|
2471
|
-
tslib: 2.8.1
|
|
2472
|
-
|
|
2473
|
-
'@aws-sdk/credential-provider-env@3.969.0':
|
|
2474
|
-
dependencies:
|
|
2475
|
-
'@aws-sdk/core': 3.969.0
|
|
2476
|
-
'@aws-sdk/types': 3.969.0
|
|
2477
|
-
'@smithy/property-provider': 4.2.8
|
|
2478
|
-
'@smithy/types': 4.12.0
|
|
2479
|
-
tslib: 2.8.1
|
|
2480
|
-
|
|
2481
|
-
'@aws-sdk/credential-provider-http@3.969.0':
|
|
2482
|
-
dependencies:
|
|
2483
|
-
'@aws-sdk/core': 3.969.0
|
|
2484
|
-
'@aws-sdk/types': 3.969.0
|
|
2485
|
-
'@smithy/fetch-http-handler': 5.3.9
|
|
2486
|
-
'@smithy/node-http-handler': 4.4.8
|
|
2487
|
-
'@smithy/property-provider': 4.2.8
|
|
2488
|
-
'@smithy/protocol-http': 5.3.8
|
|
2489
|
-
'@smithy/smithy-client': 4.10.7
|
|
2490
|
-
'@smithy/types': 4.12.0
|
|
2491
|
-
'@smithy/util-stream': 4.5.10
|
|
2492
|
-
tslib: 2.8.1
|
|
2493
|
-
|
|
2494
|
-
'@aws-sdk/credential-provider-ini@3.969.0':
|
|
2495
|
-
dependencies:
|
|
2496
|
-
'@aws-sdk/core': 3.969.0
|
|
2497
|
-
'@aws-sdk/credential-provider-env': 3.969.0
|
|
2498
|
-
'@aws-sdk/credential-provider-http': 3.969.0
|
|
2499
|
-
'@aws-sdk/credential-provider-login': 3.969.0
|
|
2500
|
-
'@aws-sdk/credential-provider-process': 3.969.0
|
|
2501
|
-
'@aws-sdk/credential-provider-sso': 3.969.0
|
|
2502
|
-
'@aws-sdk/credential-provider-web-identity': 3.969.0
|
|
2503
|
-
'@aws-sdk/nested-clients': 3.969.0
|
|
2504
|
-
'@aws-sdk/types': 3.969.0
|
|
2505
|
-
'@smithy/credential-provider-imds': 4.2.8
|
|
2506
|
-
'@smithy/property-provider': 4.2.8
|
|
2507
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
2508
|
-
'@smithy/types': 4.12.0
|
|
2509
|
-
tslib: 2.8.1
|
|
2510
|
-
transitivePeerDependencies:
|
|
2511
|
-
- aws-crt
|
|
2512
|
-
|
|
2513
|
-
'@aws-sdk/credential-provider-login@3.969.0':
|
|
2514
|
-
dependencies:
|
|
2515
|
-
'@aws-sdk/core': 3.969.0
|
|
2516
|
-
'@aws-sdk/nested-clients': 3.969.0
|
|
2517
|
-
'@aws-sdk/types': 3.969.0
|
|
2518
|
-
'@smithy/property-provider': 4.2.8
|
|
2519
|
-
'@smithy/protocol-http': 5.3.8
|
|
2520
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
2521
|
-
'@smithy/types': 4.12.0
|
|
2522
|
-
tslib: 2.8.1
|
|
2523
|
-
transitivePeerDependencies:
|
|
2524
|
-
- aws-crt
|
|
2525
|
-
|
|
2526
|
-
'@aws-sdk/credential-provider-node@3.969.0':
|
|
2527
|
-
dependencies:
|
|
2528
|
-
'@aws-sdk/credential-provider-env': 3.969.0
|
|
2529
|
-
'@aws-sdk/credential-provider-http': 3.969.0
|
|
2530
|
-
'@aws-sdk/credential-provider-ini': 3.969.0
|
|
2531
|
-
'@aws-sdk/credential-provider-process': 3.969.0
|
|
2532
|
-
'@aws-sdk/credential-provider-sso': 3.969.0
|
|
2533
|
-
'@aws-sdk/credential-provider-web-identity': 3.969.0
|
|
2534
|
-
'@aws-sdk/types': 3.969.0
|
|
2535
|
-
'@smithy/credential-provider-imds': 4.2.8
|
|
2536
|
-
'@smithy/property-provider': 4.2.8
|
|
2537
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
2538
|
-
'@smithy/types': 4.12.0
|
|
2539
|
-
tslib: 2.8.1
|
|
2540
|
-
transitivePeerDependencies:
|
|
2541
|
-
- aws-crt
|
|
2542
|
-
|
|
2543
|
-
'@aws-sdk/credential-provider-process@3.969.0':
|
|
2544
|
-
dependencies:
|
|
2545
|
-
'@aws-sdk/core': 3.969.0
|
|
2546
|
-
'@aws-sdk/types': 3.969.0
|
|
2547
|
-
'@smithy/property-provider': 4.2.8
|
|
2548
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
2549
|
-
'@smithy/types': 4.12.0
|
|
2550
|
-
tslib: 2.8.1
|
|
2551
|
-
|
|
2552
|
-
'@aws-sdk/credential-provider-sso@3.969.0':
|
|
2553
|
-
dependencies:
|
|
2554
|
-
'@aws-sdk/client-sso': 3.969.0
|
|
2555
|
-
'@aws-sdk/core': 3.969.0
|
|
2556
|
-
'@aws-sdk/token-providers': 3.969.0
|
|
2557
|
-
'@aws-sdk/types': 3.969.0
|
|
2558
|
-
'@smithy/property-provider': 4.2.8
|
|
2559
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
2560
|
-
'@smithy/types': 4.12.0
|
|
2561
|
-
tslib: 2.8.1
|
|
2562
|
-
transitivePeerDependencies:
|
|
2563
|
-
- aws-crt
|
|
2564
|
-
|
|
2565
|
-
'@aws-sdk/credential-provider-web-identity@3.969.0':
|
|
2566
|
-
dependencies:
|
|
2567
|
-
'@aws-sdk/core': 3.969.0
|
|
2568
|
-
'@aws-sdk/nested-clients': 3.969.0
|
|
2569
|
-
'@aws-sdk/types': 3.969.0
|
|
2570
|
-
'@smithy/property-provider': 4.2.8
|
|
2571
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
2572
|
-
'@smithy/types': 4.12.0
|
|
2573
|
-
tslib: 2.8.1
|
|
2574
|
-
transitivePeerDependencies:
|
|
2575
|
-
- aws-crt
|
|
2576
|
-
|
|
2577
|
-
'@aws-sdk/lib-storage@3.969.0(@aws-sdk/client-s3@3.969.0)':
|
|
2578
|
-
dependencies:
|
|
2579
|
-
'@aws-sdk/client-s3': 3.969.0
|
|
2580
|
-
'@smithy/abort-controller': 4.2.8
|
|
2581
|
-
'@smithy/middleware-endpoint': 4.4.6
|
|
2582
|
-
'@smithy/smithy-client': 4.10.7
|
|
2583
|
-
buffer: 5.6.0
|
|
2584
|
-
events: 3.3.0
|
|
2585
|
-
stream-browserify: 3.0.0
|
|
2586
|
-
tslib: 2.8.1
|
|
2587
|
-
|
|
2588
|
-
'@aws-sdk/middleware-bucket-endpoint@3.969.0':
|
|
2589
|
-
dependencies:
|
|
2590
|
-
'@aws-sdk/types': 3.969.0
|
|
2591
|
-
'@aws-sdk/util-arn-parser': 3.968.0
|
|
2592
|
-
'@smithy/node-config-provider': 4.3.8
|
|
2593
|
-
'@smithy/protocol-http': 5.3.8
|
|
2594
|
-
'@smithy/types': 4.12.0
|
|
2595
|
-
'@smithy/util-config-provider': 4.2.0
|
|
2596
|
-
tslib: 2.8.1
|
|
2597
|
-
|
|
2598
|
-
'@aws-sdk/middleware-expect-continue@3.969.0':
|
|
2599
|
-
dependencies:
|
|
2600
|
-
'@aws-sdk/types': 3.969.0
|
|
2601
|
-
'@smithy/protocol-http': 5.3.8
|
|
2602
|
-
'@smithy/types': 4.12.0
|
|
2603
|
-
tslib: 2.8.1
|
|
2604
|
-
|
|
2605
|
-
'@aws-sdk/middleware-flexible-checksums@3.969.0':
|
|
2606
|
-
dependencies:
|
|
2607
|
-
'@aws-crypto/crc32': 5.2.0
|
|
2608
|
-
'@aws-crypto/crc32c': 5.2.0
|
|
2609
|
-
'@aws-crypto/util': 5.2.0
|
|
2610
|
-
'@aws-sdk/core': 3.969.0
|
|
2611
|
-
'@aws-sdk/crc64-nvme': 3.969.0
|
|
2612
|
-
'@aws-sdk/types': 3.969.0
|
|
2613
|
-
'@smithy/is-array-buffer': 4.2.0
|
|
2614
|
-
'@smithy/node-config-provider': 4.3.8
|
|
2615
|
-
'@smithy/protocol-http': 5.3.8
|
|
2616
|
-
'@smithy/types': 4.12.0
|
|
2617
|
-
'@smithy/util-middleware': 4.2.8
|
|
2618
|
-
'@smithy/util-stream': 4.5.10
|
|
2619
|
-
'@smithy/util-utf8': 4.2.0
|
|
2620
|
-
tslib: 2.8.1
|
|
2621
|
-
|
|
2622
|
-
'@aws-sdk/middleware-host-header@3.969.0':
|
|
2623
|
-
dependencies:
|
|
2624
|
-
'@aws-sdk/types': 3.969.0
|
|
2625
|
-
'@smithy/protocol-http': 5.3.8
|
|
2626
|
-
'@smithy/types': 4.12.0
|
|
2627
|
-
tslib: 2.8.1
|
|
2628
|
-
|
|
2629
|
-
'@aws-sdk/middleware-location-constraint@3.969.0':
|
|
2630
|
-
dependencies:
|
|
2631
|
-
'@aws-sdk/types': 3.969.0
|
|
2632
|
-
'@smithy/types': 4.12.0
|
|
2633
|
-
tslib: 2.8.1
|
|
2634
|
-
|
|
2635
|
-
'@aws-sdk/middleware-logger@3.969.0':
|
|
2636
|
-
dependencies:
|
|
2637
|
-
'@aws-sdk/types': 3.969.0
|
|
2638
|
-
'@smithy/types': 4.12.0
|
|
2639
|
-
tslib: 2.8.1
|
|
2640
|
-
|
|
2641
|
-
'@aws-sdk/middleware-recursion-detection@3.969.0':
|
|
2642
|
-
dependencies:
|
|
2643
|
-
'@aws-sdk/types': 3.969.0
|
|
2644
|
-
'@aws/lambda-invoke-store': 0.2.3
|
|
2645
|
-
'@smithy/protocol-http': 5.3.8
|
|
2646
|
-
'@smithy/types': 4.12.0
|
|
2647
|
-
tslib: 2.8.1
|
|
2648
|
-
|
|
2649
|
-
'@aws-sdk/middleware-sdk-s3@3.969.0':
|
|
2650
|
-
dependencies:
|
|
2651
|
-
'@aws-sdk/core': 3.969.0
|
|
2652
|
-
'@aws-sdk/types': 3.969.0
|
|
2653
|
-
'@aws-sdk/util-arn-parser': 3.968.0
|
|
2654
|
-
'@smithy/core': 3.20.5
|
|
2655
|
-
'@smithy/node-config-provider': 4.3.8
|
|
2656
|
-
'@smithy/protocol-http': 5.3.8
|
|
2657
|
-
'@smithy/signature-v4': 5.3.8
|
|
2658
|
-
'@smithy/smithy-client': 4.10.7
|
|
2659
|
-
'@smithy/types': 4.12.0
|
|
2660
|
-
'@smithy/util-config-provider': 4.2.0
|
|
2661
|
-
'@smithy/util-middleware': 4.2.8
|
|
2662
|
-
'@smithy/util-stream': 4.5.10
|
|
2663
|
-
'@smithy/util-utf8': 4.2.0
|
|
2664
|
-
tslib: 2.8.1
|
|
2665
|
-
|
|
2666
|
-
'@aws-sdk/middleware-ssec@3.969.0':
|
|
2667
|
-
dependencies:
|
|
2668
|
-
'@aws-sdk/types': 3.969.0
|
|
2669
|
-
'@smithy/types': 4.12.0
|
|
2670
|
-
tslib: 2.8.1
|
|
2671
|
-
|
|
2672
|
-
'@aws-sdk/middleware-user-agent@3.969.0':
|
|
2673
|
-
dependencies:
|
|
2674
|
-
'@aws-sdk/core': 3.969.0
|
|
2675
|
-
'@aws-sdk/types': 3.969.0
|
|
2676
|
-
'@aws-sdk/util-endpoints': 3.969.0
|
|
2677
|
-
'@smithy/core': 3.20.5
|
|
2678
|
-
'@smithy/protocol-http': 5.3.8
|
|
2679
|
-
'@smithy/types': 4.12.0
|
|
2680
|
-
tslib: 2.8.1
|
|
2681
|
-
|
|
2682
|
-
'@aws-sdk/nested-clients@3.969.0':
|
|
2683
|
-
dependencies:
|
|
2684
|
-
'@aws-crypto/sha256-browser': 5.2.0
|
|
2685
|
-
'@aws-crypto/sha256-js': 5.2.0
|
|
2686
|
-
'@aws-sdk/core': 3.969.0
|
|
2687
|
-
'@aws-sdk/middleware-host-header': 3.969.0
|
|
2688
|
-
'@aws-sdk/middleware-logger': 3.969.0
|
|
2689
|
-
'@aws-sdk/middleware-recursion-detection': 3.969.0
|
|
2690
|
-
'@aws-sdk/middleware-user-agent': 3.969.0
|
|
2691
|
-
'@aws-sdk/region-config-resolver': 3.969.0
|
|
2692
|
-
'@aws-sdk/types': 3.969.0
|
|
2693
|
-
'@aws-sdk/util-endpoints': 3.969.0
|
|
2694
|
-
'@aws-sdk/util-user-agent-browser': 3.969.0
|
|
2695
|
-
'@aws-sdk/util-user-agent-node': 3.969.0
|
|
2696
|
-
'@smithy/config-resolver': 4.4.6
|
|
2697
|
-
'@smithy/core': 3.20.5
|
|
2698
|
-
'@smithy/fetch-http-handler': 5.3.9
|
|
2699
|
-
'@smithy/hash-node': 4.2.8
|
|
2700
|
-
'@smithy/invalid-dependency': 4.2.8
|
|
2701
|
-
'@smithy/middleware-content-length': 4.2.8
|
|
2702
|
-
'@smithy/middleware-endpoint': 4.4.6
|
|
2703
|
-
'@smithy/middleware-retry': 4.4.22
|
|
2704
|
-
'@smithy/middleware-serde': 4.2.9
|
|
2705
|
-
'@smithy/middleware-stack': 4.2.8
|
|
2706
|
-
'@smithy/node-config-provider': 4.3.8
|
|
2707
|
-
'@smithy/node-http-handler': 4.4.8
|
|
2708
|
-
'@smithy/protocol-http': 5.3.8
|
|
2709
|
-
'@smithy/smithy-client': 4.10.7
|
|
2710
|
-
'@smithy/types': 4.12.0
|
|
2711
|
-
'@smithy/url-parser': 4.2.8
|
|
2712
|
-
'@smithy/util-base64': 4.3.0
|
|
2713
|
-
'@smithy/util-body-length-browser': 4.2.0
|
|
2714
|
-
'@smithy/util-body-length-node': 4.2.1
|
|
2715
|
-
'@smithy/util-defaults-mode-browser': 4.3.21
|
|
2716
|
-
'@smithy/util-defaults-mode-node': 4.2.24
|
|
2717
|
-
'@smithy/util-endpoints': 3.2.8
|
|
2718
|
-
'@smithy/util-middleware': 4.2.8
|
|
2719
|
-
'@smithy/util-retry': 4.2.8
|
|
2720
|
-
'@smithy/util-utf8': 4.2.0
|
|
2721
|
-
tslib: 2.8.1
|
|
2722
|
-
transitivePeerDependencies:
|
|
2723
|
-
- aws-crt
|
|
2724
|
-
|
|
2725
|
-
'@aws-sdk/region-config-resolver@3.969.0':
|
|
2726
|
-
dependencies:
|
|
2727
|
-
'@aws-sdk/types': 3.969.0
|
|
2728
|
-
'@smithy/config-resolver': 4.4.6
|
|
2729
|
-
'@smithy/node-config-provider': 4.3.8
|
|
2730
|
-
'@smithy/types': 4.12.0
|
|
2731
|
-
tslib: 2.8.1
|
|
2732
|
-
|
|
2733
|
-
'@aws-sdk/signature-v4-multi-region@3.969.0':
|
|
2734
|
-
dependencies:
|
|
2735
|
-
'@aws-sdk/middleware-sdk-s3': 3.969.0
|
|
2736
|
-
'@aws-sdk/types': 3.969.0
|
|
2737
|
-
'@smithy/protocol-http': 5.3.8
|
|
2738
|
-
'@smithy/signature-v4': 5.3.8
|
|
2739
|
-
'@smithy/types': 4.12.0
|
|
2740
|
-
tslib: 2.8.1
|
|
2741
|
-
|
|
2742
|
-
'@aws-sdk/token-providers@3.969.0':
|
|
2743
|
-
dependencies:
|
|
2744
|
-
'@aws-sdk/core': 3.969.0
|
|
2745
|
-
'@aws-sdk/nested-clients': 3.969.0
|
|
2746
|
-
'@aws-sdk/types': 3.969.0
|
|
2747
|
-
'@smithy/property-provider': 4.2.8
|
|
2748
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
2749
|
-
'@smithy/types': 4.12.0
|
|
2750
|
-
tslib: 2.8.1
|
|
2751
|
-
transitivePeerDependencies:
|
|
2752
|
-
- aws-crt
|
|
2753
|
-
|
|
2754
|
-
'@aws-sdk/types@3.969.0':
|
|
2755
|
-
dependencies:
|
|
2756
|
-
'@smithy/types': 4.12.0
|
|
2757
|
-
tslib: 2.8.1
|
|
2758
|
-
|
|
2759
|
-
'@aws-sdk/util-arn-parser@3.968.0':
|
|
2760
|
-
dependencies:
|
|
2761
|
-
tslib: 2.8.1
|
|
2762
|
-
|
|
2763
|
-
'@aws-sdk/util-endpoints@3.969.0':
|
|
2764
|
-
dependencies:
|
|
2765
|
-
'@aws-sdk/types': 3.969.0
|
|
2766
|
-
'@smithy/types': 4.12.0
|
|
2767
|
-
'@smithy/url-parser': 4.2.8
|
|
2768
|
-
'@smithy/util-endpoints': 3.2.8
|
|
2769
|
-
tslib: 2.8.1
|
|
2770
|
-
|
|
2771
|
-
'@aws-sdk/util-locate-window@3.965.2':
|
|
2772
|
-
dependencies:
|
|
2773
|
-
tslib: 2.8.1
|
|
1680
|
+
type-check@0.4.0:
|
|
1681
|
+
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
1682
|
+
engines: {node: '>= 0.8.0'}
|
|
2774
1683
|
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
'@smithy/types': 4.12.0
|
|
2779
|
-
bowser: 2.13.1
|
|
2780
|
-
tslib: 2.8.1
|
|
1684
|
+
type-is@1.6.18:
|
|
1685
|
+
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
|
|
1686
|
+
engines: {node: '>= 0.6'}
|
|
2781
1687
|
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
tslib: 2.8.1
|
|
1688
|
+
typescript-eslint@8.53.1:
|
|
1689
|
+
resolution: {integrity: sha512-gB+EVQfP5RDElh9ittfXlhZJdjSU4jUSTyE2+ia8CYyNvet4ElfaLlAIqDvQV9JPknKx0jQH1racTYe/4LaLSg==}
|
|
1690
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1691
|
+
peerDependencies:
|
|
1692
|
+
eslint: ^8.57.0 || ^9.0.0
|
|
1693
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
2789
1694
|
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
tslib: 2.8.1
|
|
1695
|
+
typescript@5.9.3:
|
|
1696
|
+
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
|
1697
|
+
engines: {node: '>=14.17'}
|
|
1698
|
+
hasBin: true
|
|
2795
1699
|
|
|
2796
|
-
|
|
1700
|
+
ufo@1.6.3:
|
|
1701
|
+
resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==}
|
|
2797
1702
|
|
|
2798
|
-
|
|
1703
|
+
undici-types@6.21.0:
|
|
1704
|
+
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
|
|
2799
1705
|
|
|
2800
|
-
|
|
1706
|
+
unpipe@1.0.0:
|
|
1707
|
+
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
|
|
1708
|
+
engines: {node: '>= 0.8'}
|
|
2801
1709
|
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
1710
|
+
update-browserslist-db@1.2.3:
|
|
1711
|
+
resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
|
|
1712
|
+
hasBin: true
|
|
1713
|
+
peerDependencies:
|
|
1714
|
+
browserslist: '>= 4.21.0'
|
|
2806
1715
|
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
'@esbuild-kit/core-utils': 3.3.2
|
|
2810
|
-
get-tsconfig: 4.13.0
|
|
1716
|
+
uri-js@4.4.1:
|
|
1717
|
+
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
|
2811
1718
|
|
|
2812
|
-
|
|
2813
|
-
|
|
1719
|
+
util-deprecate@1.0.2:
|
|
1720
|
+
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
2814
1721
|
|
|
2815
|
-
|
|
2816
|
-
|
|
1722
|
+
utils-merge@1.0.1:
|
|
1723
|
+
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
|
|
1724
|
+
engines: {node: '>= 0.4.0'}
|
|
2817
1725
|
|
|
2818
|
-
|
|
2819
|
-
|
|
1726
|
+
uuid@10.0.0:
|
|
1727
|
+
resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
|
|
1728
|
+
hasBin: true
|
|
2820
1729
|
|
|
2821
|
-
|
|
2822
|
-
|
|
1730
|
+
vary@1.1.2:
|
|
1731
|
+
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
|
|
1732
|
+
engines: {node: '>= 0.8'}
|
|
2823
1733
|
|
|
2824
|
-
|
|
2825
|
-
|
|
1734
|
+
vite@7.3.1:
|
|
1735
|
+
resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==}
|
|
1736
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1737
|
+
hasBin: true
|
|
1738
|
+
peerDependencies:
|
|
1739
|
+
'@types/node': ^20.19.0 || >=22.12.0
|
|
1740
|
+
jiti: '>=1.21.0'
|
|
1741
|
+
less: ^4.0.0
|
|
1742
|
+
lightningcss: ^1.21.0
|
|
1743
|
+
sass: ^1.70.0
|
|
1744
|
+
sass-embedded: ^1.70.0
|
|
1745
|
+
stylus: '>=0.54.8'
|
|
1746
|
+
sugarss: ^5.0.0
|
|
1747
|
+
terser: ^5.16.0
|
|
1748
|
+
tsx: ^4.8.1
|
|
1749
|
+
yaml: ^2.4.2
|
|
1750
|
+
peerDependenciesMeta:
|
|
1751
|
+
'@types/node':
|
|
1752
|
+
optional: true
|
|
1753
|
+
jiti:
|
|
1754
|
+
optional: true
|
|
1755
|
+
less:
|
|
1756
|
+
optional: true
|
|
1757
|
+
lightningcss:
|
|
1758
|
+
optional: true
|
|
1759
|
+
sass:
|
|
1760
|
+
optional: true
|
|
1761
|
+
sass-embedded:
|
|
1762
|
+
optional: true
|
|
1763
|
+
stylus:
|
|
1764
|
+
optional: true
|
|
1765
|
+
sugarss:
|
|
1766
|
+
optional: true
|
|
1767
|
+
terser:
|
|
1768
|
+
optional: true
|
|
1769
|
+
tsx:
|
|
1770
|
+
optional: true
|
|
1771
|
+
yaml:
|
|
1772
|
+
optional: true
|
|
2826
1773
|
|
|
2827
|
-
|
|
2828
|
-
|
|
1774
|
+
which-pm-runs@1.1.0:
|
|
1775
|
+
resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==}
|
|
1776
|
+
engines: {node: '>=4'}
|
|
2829
1777
|
|
|
2830
|
-
|
|
2831
|
-
|
|
1778
|
+
which@2.0.2:
|
|
1779
|
+
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
|
1780
|
+
engines: {node: '>= 8'}
|
|
1781
|
+
hasBin: true
|
|
2832
1782
|
|
|
2833
|
-
|
|
2834
|
-
|
|
1783
|
+
word-wrap@1.2.5:
|
|
1784
|
+
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
|
|
1785
|
+
engines: {node: '>=0.10.0'}
|
|
2835
1786
|
|
|
2836
|
-
|
|
2837
|
-
|
|
1787
|
+
ws@8.19.0:
|
|
1788
|
+
resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
|
|
1789
|
+
engines: {node: '>=10.0.0'}
|
|
1790
|
+
peerDependencies:
|
|
1791
|
+
bufferutil: ^4.0.1
|
|
1792
|
+
utf-8-validate: '>=5.0.2'
|
|
1793
|
+
peerDependenciesMeta:
|
|
1794
|
+
bufferutil:
|
|
1795
|
+
optional: true
|
|
1796
|
+
utf-8-validate:
|
|
1797
|
+
optional: true
|
|
2838
1798
|
|
|
2839
|
-
|
|
2840
|
-
|
|
1799
|
+
xtend@4.0.2:
|
|
1800
|
+
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
|
|
1801
|
+
engines: {node: '>=0.4'}
|
|
2841
1802
|
|
|
2842
|
-
|
|
2843
|
-
|
|
1803
|
+
yocto-queue@0.1.0:
|
|
1804
|
+
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
|
1805
|
+
engines: {node: '>=10'}
|
|
2844
1806
|
|
|
2845
|
-
|
|
2846
|
-
|
|
1807
|
+
zod@4.3.5:
|
|
1808
|
+
resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==}
|
|
2847
1809
|
|
|
2848
|
-
|
|
2849
|
-
optional: true
|
|
1810
|
+
snapshots:
|
|
2850
1811
|
|
|
2851
|
-
'@
|
|
2852
|
-
optional: true
|
|
1812
|
+
'@alloc/quick-lru@5.2.0': {}
|
|
2853
1813
|
|
|
2854
|
-
'@
|
|
2855
|
-
optional: true
|
|
1814
|
+
'@cfworker/json-schema@4.1.1': {}
|
|
2856
1815
|
|
|
2857
|
-
'@esbuild/
|
|
1816
|
+
'@esbuild/aix-ppc64@0.27.2':
|
|
2858
1817
|
optional: true
|
|
2859
1818
|
|
|
2860
|
-
'@esbuild/
|
|
1819
|
+
'@esbuild/android-arm64@0.27.2':
|
|
2861
1820
|
optional: true
|
|
2862
1821
|
|
|
2863
|
-
'@esbuild/
|
|
1822
|
+
'@esbuild/android-arm@0.27.2':
|
|
2864
1823
|
optional: true
|
|
2865
1824
|
|
|
2866
|
-
'@esbuild/
|
|
1825
|
+
'@esbuild/android-x64@0.27.2':
|
|
2867
1826
|
optional: true
|
|
2868
1827
|
|
|
2869
|
-
'@esbuild/
|
|
1828
|
+
'@esbuild/darwin-arm64@0.27.2':
|
|
2870
1829
|
optional: true
|
|
2871
1830
|
|
|
2872
|
-
'@esbuild/
|
|
1831
|
+
'@esbuild/darwin-x64@0.27.2':
|
|
2873
1832
|
optional: true
|
|
2874
1833
|
|
|
2875
|
-
'@esbuild/freebsd-
|
|
1834
|
+
'@esbuild/freebsd-arm64@0.27.2':
|
|
2876
1835
|
optional: true
|
|
2877
1836
|
|
|
2878
1837
|
'@esbuild/freebsd-x64@0.27.2':
|
|
2879
1838
|
optional: true
|
|
2880
1839
|
|
|
2881
|
-
'@esbuild/linux-arm64@0.18.20':
|
|
2882
|
-
optional: true
|
|
2883
|
-
|
|
2884
|
-
'@esbuild/linux-arm64@0.25.12':
|
|
2885
|
-
optional: true
|
|
2886
|
-
|
|
2887
1840
|
'@esbuild/linux-arm64@0.27.2':
|
|
2888
1841
|
optional: true
|
|
2889
1842
|
|
|
2890
|
-
'@esbuild/linux-arm@0.18.20':
|
|
2891
|
-
optional: true
|
|
2892
|
-
|
|
2893
|
-
'@esbuild/linux-arm@0.25.12':
|
|
2894
|
-
optional: true
|
|
2895
|
-
|
|
2896
1843
|
'@esbuild/linux-arm@0.27.2':
|
|
2897
1844
|
optional: true
|
|
2898
1845
|
|
|
2899
|
-
'@esbuild/linux-ia32@0.18.20':
|
|
2900
|
-
optional: true
|
|
2901
|
-
|
|
2902
|
-
'@esbuild/linux-ia32@0.25.12':
|
|
2903
|
-
optional: true
|
|
2904
|
-
|
|
2905
1846
|
'@esbuild/linux-ia32@0.27.2':
|
|
2906
1847
|
optional: true
|
|
2907
1848
|
|
|
2908
|
-
'@esbuild/linux-loong64@0.18.20':
|
|
2909
|
-
optional: true
|
|
2910
|
-
|
|
2911
|
-
'@esbuild/linux-loong64@0.25.12':
|
|
2912
|
-
optional: true
|
|
2913
|
-
|
|
2914
1849
|
'@esbuild/linux-loong64@0.27.2':
|
|
2915
1850
|
optional: true
|
|
2916
1851
|
|
|
2917
|
-
'@esbuild/linux-mips64el@0.18.20':
|
|
2918
|
-
optional: true
|
|
2919
|
-
|
|
2920
|
-
'@esbuild/linux-mips64el@0.25.12':
|
|
2921
|
-
optional: true
|
|
2922
|
-
|
|
2923
1852
|
'@esbuild/linux-mips64el@0.27.2':
|
|
2924
1853
|
optional: true
|
|
2925
1854
|
|
|
2926
|
-
'@esbuild/linux-ppc64@0.18.20':
|
|
2927
|
-
optional: true
|
|
2928
|
-
|
|
2929
|
-
'@esbuild/linux-ppc64@0.25.12':
|
|
2930
|
-
optional: true
|
|
2931
|
-
|
|
2932
1855
|
'@esbuild/linux-ppc64@0.27.2':
|
|
2933
1856
|
optional: true
|
|
2934
1857
|
|
|
2935
|
-
'@esbuild/linux-riscv64@0.18.20':
|
|
2936
|
-
optional: true
|
|
2937
|
-
|
|
2938
|
-
'@esbuild/linux-riscv64@0.25.12':
|
|
2939
|
-
optional: true
|
|
2940
|
-
|
|
2941
1858
|
'@esbuild/linux-riscv64@0.27.2':
|
|
2942
1859
|
optional: true
|
|
2943
1860
|
|
|
2944
|
-
'@esbuild/linux-s390x@0.18.20':
|
|
2945
|
-
optional: true
|
|
2946
|
-
|
|
2947
|
-
'@esbuild/linux-s390x@0.25.12':
|
|
2948
|
-
optional: true
|
|
2949
|
-
|
|
2950
1861
|
'@esbuild/linux-s390x@0.27.2':
|
|
2951
1862
|
optional: true
|
|
2952
1863
|
|
|
2953
|
-
'@esbuild/linux-x64@0.18.20':
|
|
2954
|
-
optional: true
|
|
2955
|
-
|
|
2956
|
-
'@esbuild/linux-x64@0.25.12':
|
|
2957
|
-
optional: true
|
|
2958
|
-
|
|
2959
1864
|
'@esbuild/linux-x64@0.27.2':
|
|
2960
1865
|
optional: true
|
|
2961
1866
|
|
|
2962
|
-
'@esbuild/netbsd-arm64@0.25.12':
|
|
2963
|
-
optional: true
|
|
2964
|
-
|
|
2965
1867
|
'@esbuild/netbsd-arm64@0.27.2':
|
|
2966
1868
|
optional: true
|
|
2967
1869
|
|
|
2968
|
-
'@esbuild/netbsd-x64@0.18.20':
|
|
2969
|
-
optional: true
|
|
2970
|
-
|
|
2971
|
-
'@esbuild/netbsd-x64@0.25.12':
|
|
2972
|
-
optional: true
|
|
2973
|
-
|
|
2974
1870
|
'@esbuild/netbsd-x64@0.27.2':
|
|
2975
1871
|
optional: true
|
|
2976
1872
|
|
|
2977
|
-
'@esbuild/openbsd-arm64@0.25.12':
|
|
2978
|
-
optional: true
|
|
2979
|
-
|
|
2980
1873
|
'@esbuild/openbsd-arm64@0.27.2':
|
|
2981
1874
|
optional: true
|
|
2982
1875
|
|
|
2983
|
-
'@esbuild/openbsd-x64@0.18.20':
|
|
2984
|
-
optional: true
|
|
2985
|
-
|
|
2986
|
-
'@esbuild/openbsd-x64@0.25.12':
|
|
2987
|
-
optional: true
|
|
2988
|
-
|
|
2989
1876
|
'@esbuild/openbsd-x64@0.27.2':
|
|
2990
1877
|
optional: true
|
|
2991
1878
|
|
|
2992
|
-
'@esbuild/openharmony-arm64@0.25.12':
|
|
2993
|
-
optional: true
|
|
2994
|
-
|
|
2995
1879
|
'@esbuild/openharmony-arm64@0.27.2':
|
|
2996
1880
|
optional: true
|
|
2997
1881
|
|
|
2998
|
-
'@esbuild/sunos-x64@0.18.20':
|
|
2999
|
-
optional: true
|
|
3000
|
-
|
|
3001
|
-
'@esbuild/sunos-x64@0.25.12':
|
|
3002
|
-
optional: true
|
|
3003
|
-
|
|
3004
1882
|
'@esbuild/sunos-x64@0.27.2':
|
|
3005
1883
|
optional: true
|
|
3006
1884
|
|
|
3007
|
-
'@esbuild/win32-arm64@0.18.20':
|
|
3008
|
-
optional: true
|
|
3009
|
-
|
|
3010
|
-
'@esbuild/win32-arm64@0.25.12':
|
|
3011
|
-
optional: true
|
|
3012
|
-
|
|
3013
1885
|
'@esbuild/win32-arm64@0.27.2':
|
|
3014
1886
|
optional: true
|
|
3015
1887
|
|
|
3016
|
-
'@esbuild/win32-ia32@0.18.20':
|
|
3017
|
-
optional: true
|
|
3018
|
-
|
|
3019
|
-
'@esbuild/win32-ia32@0.25.12':
|
|
3020
|
-
optional: true
|
|
3021
|
-
|
|
3022
1888
|
'@esbuild/win32-ia32@0.27.2':
|
|
3023
1889
|
optional: true
|
|
3024
1890
|
|
|
3025
|
-
'@esbuild/win32-x64@0.18.20':
|
|
3026
|
-
optional: true
|
|
3027
|
-
|
|
3028
|
-
'@esbuild/win32-x64@0.25.12':
|
|
3029
|
-
optional: true
|
|
3030
|
-
|
|
3031
1891
|
'@esbuild/win32-x64@0.27.2':
|
|
3032
1892
|
optional: true
|
|
3033
1893
|
|
|
@@ -3102,14 +1962,14 @@ snapshots:
|
|
|
3102
1962
|
'@jridgewell/resolve-uri': 3.1.2
|
|
3103
1963
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
3104
1964
|
|
|
3105
|
-
'@langchain/core@1.1.
|
|
1965
|
+
'@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))':
|
|
3106
1966
|
dependencies:
|
|
3107
1967
|
'@cfworker/json-schema': 4.1.1
|
|
3108
1968
|
ansi-styles: 5.2.0
|
|
3109
1969
|
camelcase: 6.3.0
|
|
3110
1970
|
decamelize: 1.2.0
|
|
3111
1971
|
js-tiktoken: 1.0.21
|
|
3112
|
-
langsmith: 0.4.7(openai@6.16.0(zod@4.3.5))
|
|
1972
|
+
langsmith: 0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
|
|
3113
1973
|
mustache: 4.2.0
|
|
3114
1974
|
p-queue: 6.6.2
|
|
3115
1975
|
uuid: 10.0.0
|
|
@@ -3120,11 +1980,11 @@ snapshots:
|
|
|
3120
1980
|
- '@opentelemetry/sdk-trace-base'
|
|
3121
1981
|
- openai
|
|
3122
1982
|
|
|
3123
|
-
'@langchain/openai@1.2.
|
|
1983
|
+
'@langchain/openai@1.2.3(@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5)))(ws@8.19.0)':
|
|
3124
1984
|
dependencies:
|
|
3125
|
-
'@langchain/core': 1.1.
|
|
1985
|
+
'@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
|
|
3126
1986
|
js-tiktoken: 1.0.21
|
|
3127
|
-
openai: 6.16.0(zod@4.3.5)
|
|
1987
|
+
openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
|
|
3128
1988
|
zod: 4.3.5
|
|
3129
1989
|
transitivePeerDependencies:
|
|
3130
1990
|
- ws
|
|
@@ -3141,424 +2001,180 @@ snapshots:
|
|
|
3141
2001
|
'@nodelib/fs.scandir': 2.1.5
|
|
3142
2002
|
fastq: 1.20.1
|
|
3143
2003
|
|
|
3144
|
-
'@rollup/rollup-android-arm-eabi@4.
|
|
3145
|
-
optional: true
|
|
3146
|
-
|
|
3147
|
-
'@rollup/rollup-android-arm64@4.54.0':
|
|
3148
|
-
optional: true
|
|
3149
|
-
|
|
3150
|
-
'@rollup/rollup-darwin-arm64@4.54.0':
|
|
3151
|
-
optional: true
|
|
3152
|
-
|
|
3153
|
-
'@rollup/rollup-darwin-x64@4.54.0':
|
|
3154
|
-
optional: true
|
|
3155
|
-
|
|
3156
|
-
'@rollup/rollup-freebsd-arm64@4.54.0':
|
|
3157
|
-
optional: true
|
|
3158
|
-
|
|
3159
|
-
'@rollup/rollup-freebsd-x64@4.54.0':
|
|
3160
|
-
optional: true
|
|
3161
|
-
|
|
3162
|
-
'@rollup/rollup-linux-arm-gnueabihf@4.54.0':
|
|
3163
|
-
optional: true
|
|
3164
|
-
|
|
3165
|
-
'@rollup/rollup-linux-arm-musleabihf@4.54.0':
|
|
3166
|
-
optional: true
|
|
3167
|
-
|
|
3168
|
-
'@rollup/rollup-linux-arm64-gnu@4.54.0':
|
|
3169
|
-
optional: true
|
|
3170
|
-
|
|
3171
|
-
'@rollup/rollup-linux-arm64-musl@4.54.0':
|
|
2004
|
+
'@rollup/rollup-android-arm-eabi@4.55.3':
|
|
3172
2005
|
optional: true
|
|
3173
2006
|
|
|
3174
|
-
'@rollup/rollup-
|
|
2007
|
+
'@rollup/rollup-android-arm64@4.55.3':
|
|
3175
2008
|
optional: true
|
|
3176
2009
|
|
|
3177
|
-
'@rollup/rollup-
|
|
2010
|
+
'@rollup/rollup-darwin-arm64@4.55.3':
|
|
3178
2011
|
optional: true
|
|
3179
2012
|
|
|
3180
|
-
'@rollup/rollup-
|
|
2013
|
+
'@rollup/rollup-darwin-x64@4.55.3':
|
|
3181
2014
|
optional: true
|
|
3182
2015
|
|
|
3183
|
-
'@rollup/rollup-
|
|
2016
|
+
'@rollup/rollup-freebsd-arm64@4.55.3':
|
|
3184
2017
|
optional: true
|
|
3185
2018
|
|
|
3186
|
-
'@rollup/rollup-
|
|
2019
|
+
'@rollup/rollup-freebsd-x64@4.55.3':
|
|
3187
2020
|
optional: true
|
|
3188
2021
|
|
|
3189
|
-
'@rollup/rollup-linux-
|
|
3190
|
-
optional: true
|
|
3191
|
-
|
|
3192
|
-
'@rollup/rollup-linux-x64-musl@4.54.0':
|
|
3193
|
-
optional: true
|
|
3194
|
-
|
|
3195
|
-
'@rollup/rollup-openharmony-arm64@4.54.0':
|
|
3196
|
-
optional: true
|
|
3197
|
-
|
|
3198
|
-
'@rollup/rollup-win32-arm64-msvc@4.54.0':
|
|
3199
|
-
optional: true
|
|
3200
|
-
|
|
3201
|
-
'@rollup/rollup-win32-ia32-msvc@4.54.0':
|
|
3202
|
-
optional: true
|
|
3203
|
-
|
|
3204
|
-
'@rollup/rollup-win32-x64-gnu@4.54.0':
|
|
3205
|
-
optional: true
|
|
3206
|
-
|
|
3207
|
-
'@rollup/rollup-win32-x64-msvc@4.54.0':
|
|
3208
|
-
optional: true
|
|
3209
|
-
|
|
3210
|
-
'@smithy/abort-controller@4.2.8':
|
|
3211
|
-
dependencies:
|
|
3212
|
-
'@smithy/types': 4.12.0
|
|
3213
|
-
tslib: 2.8.1
|
|
3214
|
-
|
|
3215
|
-
'@smithy/chunked-blob-reader-native@4.2.1':
|
|
3216
|
-
dependencies:
|
|
3217
|
-
'@smithy/util-base64': 4.3.0
|
|
3218
|
-
tslib: 2.8.1
|
|
3219
|
-
|
|
3220
|
-
'@smithy/chunked-blob-reader@5.2.0':
|
|
3221
|
-
dependencies:
|
|
3222
|
-
tslib: 2.8.1
|
|
3223
|
-
|
|
3224
|
-
'@smithy/config-resolver@4.4.6':
|
|
3225
|
-
dependencies:
|
|
3226
|
-
'@smithy/node-config-provider': 4.3.8
|
|
3227
|
-
'@smithy/types': 4.12.0
|
|
3228
|
-
'@smithy/util-config-provider': 4.2.0
|
|
3229
|
-
'@smithy/util-endpoints': 3.2.8
|
|
3230
|
-
'@smithy/util-middleware': 4.2.8
|
|
3231
|
-
tslib: 2.8.1
|
|
3232
|
-
|
|
3233
|
-
'@smithy/core@3.20.5':
|
|
3234
|
-
dependencies:
|
|
3235
|
-
'@smithy/middleware-serde': 4.2.9
|
|
3236
|
-
'@smithy/protocol-http': 5.3.8
|
|
3237
|
-
'@smithy/types': 4.12.0
|
|
3238
|
-
'@smithy/util-base64': 4.3.0
|
|
3239
|
-
'@smithy/util-body-length-browser': 4.2.0
|
|
3240
|
-
'@smithy/util-middleware': 4.2.8
|
|
3241
|
-
'@smithy/util-stream': 4.5.10
|
|
3242
|
-
'@smithy/util-utf8': 4.2.0
|
|
3243
|
-
'@smithy/uuid': 1.1.0
|
|
3244
|
-
tslib: 2.8.1
|
|
3245
|
-
|
|
3246
|
-
'@smithy/credential-provider-imds@4.2.8':
|
|
3247
|
-
dependencies:
|
|
3248
|
-
'@smithy/node-config-provider': 4.3.8
|
|
3249
|
-
'@smithy/property-provider': 4.2.8
|
|
3250
|
-
'@smithy/types': 4.12.0
|
|
3251
|
-
'@smithy/url-parser': 4.2.8
|
|
3252
|
-
tslib: 2.8.1
|
|
3253
|
-
|
|
3254
|
-
'@smithy/eventstream-codec@4.2.8':
|
|
3255
|
-
dependencies:
|
|
3256
|
-
'@aws-crypto/crc32': 5.2.0
|
|
3257
|
-
'@smithy/types': 4.12.0
|
|
3258
|
-
'@smithy/util-hex-encoding': 4.2.0
|
|
3259
|
-
tslib: 2.8.1
|
|
3260
|
-
|
|
3261
|
-
'@smithy/eventstream-serde-browser@4.2.8':
|
|
3262
|
-
dependencies:
|
|
3263
|
-
'@smithy/eventstream-serde-universal': 4.2.8
|
|
3264
|
-
'@smithy/types': 4.12.0
|
|
3265
|
-
tslib: 2.8.1
|
|
3266
|
-
|
|
3267
|
-
'@smithy/eventstream-serde-config-resolver@4.3.8':
|
|
3268
|
-
dependencies:
|
|
3269
|
-
'@smithy/types': 4.12.0
|
|
3270
|
-
tslib: 2.8.1
|
|
3271
|
-
|
|
3272
|
-
'@smithy/eventstream-serde-node@4.2.8':
|
|
3273
|
-
dependencies:
|
|
3274
|
-
'@smithy/eventstream-serde-universal': 4.2.8
|
|
3275
|
-
'@smithy/types': 4.12.0
|
|
3276
|
-
tslib: 2.8.1
|
|
3277
|
-
|
|
3278
|
-
'@smithy/eventstream-serde-universal@4.2.8':
|
|
3279
|
-
dependencies:
|
|
3280
|
-
'@smithy/eventstream-codec': 4.2.8
|
|
3281
|
-
'@smithy/types': 4.12.0
|
|
3282
|
-
tslib: 2.8.1
|
|
3283
|
-
|
|
3284
|
-
'@smithy/fetch-http-handler@5.3.9':
|
|
3285
|
-
dependencies:
|
|
3286
|
-
'@smithy/protocol-http': 5.3.8
|
|
3287
|
-
'@smithy/querystring-builder': 4.2.8
|
|
3288
|
-
'@smithy/types': 4.12.0
|
|
3289
|
-
'@smithy/util-base64': 4.3.0
|
|
3290
|
-
tslib: 2.8.1
|
|
3291
|
-
|
|
3292
|
-
'@smithy/hash-blob-browser@4.2.9':
|
|
3293
|
-
dependencies:
|
|
3294
|
-
'@smithy/chunked-blob-reader': 5.2.0
|
|
3295
|
-
'@smithy/chunked-blob-reader-native': 4.2.1
|
|
3296
|
-
'@smithy/types': 4.12.0
|
|
3297
|
-
tslib: 2.8.1
|
|
3298
|
-
|
|
3299
|
-
'@smithy/hash-node@4.2.8':
|
|
3300
|
-
dependencies:
|
|
3301
|
-
'@smithy/types': 4.12.0
|
|
3302
|
-
'@smithy/util-buffer-from': 4.2.0
|
|
3303
|
-
'@smithy/util-utf8': 4.2.0
|
|
3304
|
-
tslib: 2.8.1
|
|
3305
|
-
|
|
3306
|
-
'@smithy/hash-stream-node@4.2.8':
|
|
3307
|
-
dependencies:
|
|
3308
|
-
'@smithy/types': 4.12.0
|
|
3309
|
-
'@smithy/util-utf8': 4.2.0
|
|
3310
|
-
tslib: 2.8.1
|
|
3311
|
-
|
|
3312
|
-
'@smithy/invalid-dependency@4.2.8':
|
|
3313
|
-
dependencies:
|
|
3314
|
-
'@smithy/types': 4.12.0
|
|
3315
|
-
tslib: 2.8.1
|
|
3316
|
-
|
|
3317
|
-
'@smithy/is-array-buffer@2.2.0':
|
|
3318
|
-
dependencies:
|
|
3319
|
-
tslib: 2.8.1
|
|
3320
|
-
|
|
3321
|
-
'@smithy/is-array-buffer@4.2.0':
|
|
3322
|
-
dependencies:
|
|
3323
|
-
tslib: 2.8.1
|
|
2022
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.55.3':
|
|
2023
|
+
optional: true
|
|
3324
2024
|
|
|
3325
|
-
'@
|
|
3326
|
-
|
|
3327
|
-
'@smithy/types': 4.12.0
|
|
3328
|
-
'@smithy/util-utf8': 4.2.0
|
|
3329
|
-
tslib: 2.8.1
|
|
2025
|
+
'@rollup/rollup-linux-arm-musleabihf@4.55.3':
|
|
2026
|
+
optional: true
|
|
3330
2027
|
|
|
3331
|
-
'@
|
|
3332
|
-
|
|
3333
|
-
'@smithy/protocol-http': 5.3.8
|
|
3334
|
-
'@smithy/types': 4.12.0
|
|
3335
|
-
tslib: 2.8.1
|
|
2028
|
+
'@rollup/rollup-linux-arm64-gnu@4.55.3':
|
|
2029
|
+
optional: true
|
|
3336
2030
|
|
|
3337
|
-
'@
|
|
3338
|
-
|
|
3339
|
-
'@smithy/core': 3.20.5
|
|
3340
|
-
'@smithy/middleware-serde': 4.2.9
|
|
3341
|
-
'@smithy/node-config-provider': 4.3.8
|
|
3342
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
3343
|
-
'@smithy/types': 4.12.0
|
|
3344
|
-
'@smithy/url-parser': 4.2.8
|
|
3345
|
-
'@smithy/util-middleware': 4.2.8
|
|
3346
|
-
tslib: 2.8.1
|
|
2031
|
+
'@rollup/rollup-linux-arm64-musl@4.55.3':
|
|
2032
|
+
optional: true
|
|
3347
2033
|
|
|
3348
|
-
'@
|
|
3349
|
-
|
|
3350
|
-
'@smithy/node-config-provider': 4.3.8
|
|
3351
|
-
'@smithy/protocol-http': 5.3.8
|
|
3352
|
-
'@smithy/service-error-classification': 4.2.8
|
|
3353
|
-
'@smithy/smithy-client': 4.10.7
|
|
3354
|
-
'@smithy/types': 4.12.0
|
|
3355
|
-
'@smithy/util-middleware': 4.2.8
|
|
3356
|
-
'@smithy/util-retry': 4.2.8
|
|
3357
|
-
'@smithy/uuid': 1.1.0
|
|
3358
|
-
tslib: 2.8.1
|
|
2034
|
+
'@rollup/rollup-linux-loong64-gnu@4.55.3':
|
|
2035
|
+
optional: true
|
|
3359
2036
|
|
|
3360
|
-
'@
|
|
3361
|
-
|
|
3362
|
-
'@smithy/protocol-http': 5.3.8
|
|
3363
|
-
'@smithy/types': 4.12.0
|
|
3364
|
-
tslib: 2.8.1
|
|
2037
|
+
'@rollup/rollup-linux-loong64-musl@4.55.3':
|
|
2038
|
+
optional: true
|
|
3365
2039
|
|
|
3366
|
-
'@
|
|
3367
|
-
|
|
3368
|
-
'@smithy/types': 4.12.0
|
|
3369
|
-
tslib: 2.8.1
|
|
2040
|
+
'@rollup/rollup-linux-ppc64-gnu@4.55.3':
|
|
2041
|
+
optional: true
|
|
3370
2042
|
|
|
3371
|
-
'@
|
|
3372
|
-
|
|
3373
|
-
'@smithy/property-provider': 4.2.8
|
|
3374
|
-
'@smithy/shared-ini-file-loader': 4.4.3
|
|
3375
|
-
'@smithy/types': 4.12.0
|
|
3376
|
-
tslib: 2.8.1
|
|
2043
|
+
'@rollup/rollup-linux-ppc64-musl@4.55.3':
|
|
2044
|
+
optional: true
|
|
3377
2045
|
|
|
3378
|
-
'@
|
|
3379
|
-
|
|
3380
|
-
'@smithy/abort-controller': 4.2.8
|
|
3381
|
-
'@smithy/protocol-http': 5.3.8
|
|
3382
|
-
'@smithy/querystring-builder': 4.2.8
|
|
3383
|
-
'@smithy/types': 4.12.0
|
|
3384
|
-
tslib: 2.8.1
|
|
2046
|
+
'@rollup/rollup-linux-riscv64-gnu@4.55.3':
|
|
2047
|
+
optional: true
|
|
3385
2048
|
|
|
3386
|
-
'@
|
|
3387
|
-
|
|
3388
|
-
'@smithy/types': 4.12.0
|
|
3389
|
-
tslib: 2.8.1
|
|
2049
|
+
'@rollup/rollup-linux-riscv64-musl@4.55.3':
|
|
2050
|
+
optional: true
|
|
3390
2051
|
|
|
3391
|
-
'@
|
|
3392
|
-
|
|
3393
|
-
'@smithy/types': 4.12.0
|
|
3394
|
-
tslib: 2.8.1
|
|
2052
|
+
'@rollup/rollup-linux-s390x-gnu@4.55.3':
|
|
2053
|
+
optional: true
|
|
3395
2054
|
|
|
3396
|
-
'@
|
|
3397
|
-
|
|
3398
|
-
'@smithy/types': 4.12.0
|
|
3399
|
-
'@smithy/util-uri-escape': 4.2.0
|
|
3400
|
-
tslib: 2.8.1
|
|
2055
|
+
'@rollup/rollup-linux-x64-gnu@4.55.3':
|
|
2056
|
+
optional: true
|
|
3401
2057
|
|
|
3402
|
-
'@
|
|
3403
|
-
|
|
3404
|
-
'@smithy/types': 4.12.0
|
|
3405
|
-
tslib: 2.8.1
|
|
2058
|
+
'@rollup/rollup-linux-x64-musl@4.55.3':
|
|
2059
|
+
optional: true
|
|
3406
2060
|
|
|
3407
|
-
'@
|
|
3408
|
-
|
|
3409
|
-
'@smithy/types': 4.12.0
|
|
2061
|
+
'@rollup/rollup-openbsd-x64@4.55.3':
|
|
2062
|
+
optional: true
|
|
3410
2063
|
|
|
3411
|
-
'@
|
|
3412
|
-
|
|
3413
|
-
'@smithy/types': 4.12.0
|
|
3414
|
-
tslib: 2.8.1
|
|
2064
|
+
'@rollup/rollup-openharmony-arm64@4.55.3':
|
|
2065
|
+
optional: true
|
|
3415
2066
|
|
|
3416
|
-
'@
|
|
3417
|
-
|
|
3418
|
-
'@smithy/is-array-buffer': 4.2.0
|
|
3419
|
-
'@smithy/protocol-http': 5.3.8
|
|
3420
|
-
'@smithy/types': 4.12.0
|
|
3421
|
-
'@smithy/util-hex-encoding': 4.2.0
|
|
3422
|
-
'@smithy/util-middleware': 4.2.8
|
|
3423
|
-
'@smithy/util-uri-escape': 4.2.0
|
|
3424
|
-
'@smithy/util-utf8': 4.2.0
|
|
3425
|
-
tslib: 2.8.1
|
|
2067
|
+
'@rollup/rollup-win32-arm64-msvc@4.55.3':
|
|
2068
|
+
optional: true
|
|
3426
2069
|
|
|
3427
|
-
'@
|
|
3428
|
-
|
|
3429
|
-
'@smithy/core': 3.20.5
|
|
3430
|
-
'@smithy/middleware-endpoint': 4.4.6
|
|
3431
|
-
'@smithy/middleware-stack': 4.2.8
|
|
3432
|
-
'@smithy/protocol-http': 5.3.8
|
|
3433
|
-
'@smithy/types': 4.12.0
|
|
3434
|
-
'@smithy/util-stream': 4.5.10
|
|
3435
|
-
tslib: 2.8.1
|
|
2070
|
+
'@rollup/rollup-win32-ia32-msvc@4.55.3':
|
|
2071
|
+
optional: true
|
|
3436
2072
|
|
|
3437
|
-
'@
|
|
3438
|
-
|
|
3439
|
-
tslib: 2.8.1
|
|
2073
|
+
'@rollup/rollup-win32-x64-gnu@4.55.3':
|
|
2074
|
+
optional: true
|
|
3440
2075
|
|
|
3441
|
-
'@
|
|
3442
|
-
|
|
3443
|
-
'@smithy/querystring-parser': 4.2.8
|
|
3444
|
-
'@smithy/types': 4.12.0
|
|
3445
|
-
tslib: 2.8.1
|
|
2076
|
+
'@rollup/rollup-win32-x64-msvc@4.55.3':
|
|
2077
|
+
optional: true
|
|
3446
2078
|
|
|
3447
|
-
'@
|
|
2079
|
+
'@supabase/auth-js@2.95.3':
|
|
3448
2080
|
dependencies:
|
|
3449
|
-
'@smithy/util-buffer-from': 4.2.0
|
|
3450
|
-
'@smithy/util-utf8': 4.2.0
|
|
3451
2081
|
tslib: 2.8.1
|
|
3452
2082
|
|
|
3453
|
-
'@
|
|
2083
|
+
'@supabase/functions-js@2.95.3':
|
|
3454
2084
|
dependencies:
|
|
3455
2085
|
tslib: 2.8.1
|
|
3456
2086
|
|
|
3457
|
-
'@
|
|
2087
|
+
'@supabase/postgrest-js@2.95.3':
|
|
3458
2088
|
dependencies:
|
|
3459
2089
|
tslib: 2.8.1
|
|
3460
2090
|
|
|
3461
|
-
'@
|
|
2091
|
+
'@supabase/realtime-js@2.95.3':
|
|
3462
2092
|
dependencies:
|
|
3463
|
-
'@
|
|
2093
|
+
'@types/phoenix': 1.6.7
|
|
2094
|
+
'@types/ws': 8.18.1
|
|
3464
2095
|
tslib: 2.8.1
|
|
2096
|
+
ws: 8.19.0
|
|
2097
|
+
transitivePeerDependencies:
|
|
2098
|
+
- bufferutil
|
|
2099
|
+
- utf-8-validate
|
|
3465
2100
|
|
|
3466
|
-
'@
|
|
2101
|
+
'@supabase/storage-js@2.95.3':
|
|
3467
2102
|
dependencies:
|
|
3468
|
-
|
|
2103
|
+
iceberg-js: 0.8.1
|
|
3469
2104
|
tslib: 2.8.1
|
|
3470
2105
|
|
|
3471
|
-
'@
|
|
2106
|
+
'@supabase/supabase-js@2.95.3':
|
|
3472
2107
|
dependencies:
|
|
3473
|
-
|
|
2108
|
+
'@supabase/auth-js': 2.95.3
|
|
2109
|
+
'@supabase/functions-js': 2.95.3
|
|
2110
|
+
'@supabase/postgrest-js': 2.95.3
|
|
2111
|
+
'@supabase/realtime-js': 2.95.3
|
|
2112
|
+
'@supabase/storage-js': 2.95.3
|
|
2113
|
+
transitivePeerDependencies:
|
|
2114
|
+
- bufferutil
|
|
2115
|
+
- utf-8-validate
|
|
3474
2116
|
|
|
3475
|
-
'@
|
|
2117
|
+
'@types/body-parser@1.19.6':
|
|
3476
2118
|
dependencies:
|
|
3477
|
-
'@
|
|
3478
|
-
'@
|
|
3479
|
-
'@smithy/types': 4.12.0
|
|
3480
|
-
tslib: 2.8.1
|
|
2119
|
+
'@types/connect': 3.4.38
|
|
2120
|
+
'@types/node': 22.19.15
|
|
3481
2121
|
|
|
3482
|
-
'@
|
|
2122
|
+
'@types/connect@3.4.38':
|
|
3483
2123
|
dependencies:
|
|
3484
|
-
'@
|
|
3485
|
-
'@smithy/credential-provider-imds': 4.2.8
|
|
3486
|
-
'@smithy/node-config-provider': 4.3.8
|
|
3487
|
-
'@smithy/property-provider': 4.2.8
|
|
3488
|
-
'@smithy/smithy-client': 4.10.7
|
|
3489
|
-
'@smithy/types': 4.12.0
|
|
3490
|
-
tslib: 2.8.1
|
|
2124
|
+
'@types/node': 22.19.15
|
|
3491
2125
|
|
|
3492
|
-
'@
|
|
3493
|
-
dependencies:
|
|
3494
|
-
'@smithy/node-config-provider': 4.3.8
|
|
3495
|
-
'@smithy/types': 4.12.0
|
|
3496
|
-
tslib: 2.8.1
|
|
2126
|
+
'@types/estree@1.0.8': {}
|
|
3497
2127
|
|
|
3498
|
-
'@
|
|
2128
|
+
'@types/express-serve-static-core@5.1.1':
|
|
3499
2129
|
dependencies:
|
|
3500
|
-
|
|
2130
|
+
'@types/node': 22.19.15
|
|
2131
|
+
'@types/qs': 6.15.0
|
|
2132
|
+
'@types/range-parser': 1.2.7
|
|
2133
|
+
'@types/send': 1.2.1
|
|
3501
2134
|
|
|
3502
|
-
'@
|
|
2135
|
+
'@types/express@5.0.6':
|
|
3503
2136
|
dependencies:
|
|
3504
|
-
'@
|
|
3505
|
-
|
|
2137
|
+
'@types/body-parser': 1.19.6
|
|
2138
|
+
'@types/express-serve-static-core': 5.1.1
|
|
2139
|
+
'@types/serve-static': 2.2.0
|
|
3506
2140
|
|
|
3507
|
-
'@
|
|
3508
|
-
dependencies:
|
|
3509
|
-
'@smithy/service-error-classification': 4.2.8
|
|
3510
|
-
'@smithy/types': 4.12.0
|
|
3511
|
-
tslib: 2.8.1
|
|
2141
|
+
'@types/http-errors@2.0.5': {}
|
|
3512
2142
|
|
|
3513
|
-
'@
|
|
3514
|
-
dependencies:
|
|
3515
|
-
'@smithy/fetch-http-handler': 5.3.9
|
|
3516
|
-
'@smithy/node-http-handler': 4.4.8
|
|
3517
|
-
'@smithy/types': 4.12.0
|
|
3518
|
-
'@smithy/util-base64': 4.3.0
|
|
3519
|
-
'@smithy/util-buffer-from': 4.2.0
|
|
3520
|
-
'@smithy/util-hex-encoding': 4.2.0
|
|
3521
|
-
'@smithy/util-utf8': 4.2.0
|
|
3522
|
-
tslib: 2.8.1
|
|
2143
|
+
'@types/json-schema@7.0.15': {}
|
|
3523
2144
|
|
|
3524
|
-
'@
|
|
2145
|
+
'@types/node@22.19.15':
|
|
3525
2146
|
dependencies:
|
|
3526
|
-
|
|
2147
|
+
undici-types: 6.21.0
|
|
3527
2148
|
|
|
3528
|
-
'@
|
|
3529
|
-
dependencies:
|
|
3530
|
-
'@smithy/util-buffer-from': 2.2.0
|
|
3531
|
-
tslib: 2.8.1
|
|
2149
|
+
'@types/phoenix@1.6.7': {}
|
|
3532
2150
|
|
|
3533
|
-
'@
|
|
3534
|
-
dependencies:
|
|
3535
|
-
'@smithy/util-buffer-from': 4.2.0
|
|
3536
|
-
tslib: 2.8.1
|
|
2151
|
+
'@types/qs@6.15.0': {}
|
|
3537
2152
|
|
|
3538
|
-
'@
|
|
3539
|
-
dependencies:
|
|
3540
|
-
'@smithy/abort-controller': 4.2.8
|
|
3541
|
-
'@smithy/types': 4.12.0
|
|
3542
|
-
tslib: 2.8.1
|
|
2153
|
+
'@types/range-parser@1.2.7': {}
|
|
3543
2154
|
|
|
3544
|
-
'@
|
|
2155
|
+
'@types/send@1.2.1':
|
|
3545
2156
|
dependencies:
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
'@types/estree@1.0.8': {}
|
|
2157
|
+
'@types/node': 22.19.15
|
|
3549
2158
|
|
|
3550
|
-
'@types/
|
|
2159
|
+
'@types/serve-static@2.2.0':
|
|
2160
|
+
dependencies:
|
|
2161
|
+
'@types/http-errors': 2.0.5
|
|
2162
|
+
'@types/node': 22.19.15
|
|
3551
2163
|
|
|
3552
2164
|
'@types/uuid@10.0.0': {}
|
|
3553
2165
|
|
|
3554
|
-
'@
|
|
2166
|
+
'@types/ws@8.18.1':
|
|
2167
|
+
dependencies:
|
|
2168
|
+
'@types/node': 22.19.15
|
|
2169
|
+
|
|
2170
|
+
'@typescript-eslint/eslint-plugin@8.53.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
|
3555
2171
|
dependencies:
|
|
3556
2172
|
'@eslint-community/regexpp': 4.12.2
|
|
3557
|
-
'@typescript-eslint/parser': 8.
|
|
3558
|
-
'@typescript-eslint/scope-manager': 8.
|
|
3559
|
-
'@typescript-eslint/type-utils': 8.
|
|
3560
|
-
'@typescript-eslint/utils': 8.
|
|
3561
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
2173
|
+
'@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
2174
|
+
'@typescript-eslint/scope-manager': 8.53.1
|
|
2175
|
+
'@typescript-eslint/type-utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
2176
|
+
'@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
2177
|
+
'@typescript-eslint/visitor-keys': 8.53.1
|
|
3562
2178
|
eslint: 9.39.2(jiti@1.21.7)
|
|
3563
2179
|
ignore: 7.0.5
|
|
3564
2180
|
natural-compare: 1.4.0
|
|
@@ -3567,41 +2183,41 @@ snapshots:
|
|
|
3567
2183
|
transitivePeerDependencies:
|
|
3568
2184
|
- supports-color
|
|
3569
2185
|
|
|
3570
|
-
'@typescript-eslint/parser@8.
|
|
2186
|
+
'@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
|
3571
2187
|
dependencies:
|
|
3572
|
-
'@typescript-eslint/scope-manager': 8.
|
|
3573
|
-
'@typescript-eslint/types': 8.
|
|
3574
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
3575
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
2188
|
+
'@typescript-eslint/scope-manager': 8.53.1
|
|
2189
|
+
'@typescript-eslint/types': 8.53.1
|
|
2190
|
+
'@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
|
|
2191
|
+
'@typescript-eslint/visitor-keys': 8.53.1
|
|
3576
2192
|
debug: 4.4.3
|
|
3577
2193
|
eslint: 9.39.2(jiti@1.21.7)
|
|
3578
2194
|
typescript: 5.9.3
|
|
3579
2195
|
transitivePeerDependencies:
|
|
3580
2196
|
- supports-color
|
|
3581
2197
|
|
|
3582
|
-
'@typescript-eslint/project-service@8.
|
|
2198
|
+
'@typescript-eslint/project-service@8.53.1(typescript@5.9.3)':
|
|
3583
2199
|
dependencies:
|
|
3584
|
-
'@typescript-eslint/tsconfig-utils': 8.
|
|
3585
|
-
'@typescript-eslint/types': 8.
|
|
2200
|
+
'@typescript-eslint/tsconfig-utils': 8.53.1(typescript@5.9.3)
|
|
2201
|
+
'@typescript-eslint/types': 8.53.1
|
|
3586
2202
|
debug: 4.4.3
|
|
3587
2203
|
typescript: 5.9.3
|
|
3588
2204
|
transitivePeerDependencies:
|
|
3589
2205
|
- supports-color
|
|
3590
2206
|
|
|
3591
|
-
'@typescript-eslint/scope-manager@8.
|
|
2207
|
+
'@typescript-eslint/scope-manager@8.53.1':
|
|
3592
2208
|
dependencies:
|
|
3593
|
-
'@typescript-eslint/types': 8.
|
|
3594
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
2209
|
+
'@typescript-eslint/types': 8.53.1
|
|
2210
|
+
'@typescript-eslint/visitor-keys': 8.53.1
|
|
3595
2211
|
|
|
3596
|
-
'@typescript-eslint/tsconfig-utils@8.
|
|
2212
|
+
'@typescript-eslint/tsconfig-utils@8.53.1(typescript@5.9.3)':
|
|
3597
2213
|
dependencies:
|
|
3598
2214
|
typescript: 5.9.3
|
|
3599
2215
|
|
|
3600
|
-
'@typescript-eslint/type-utils@8.
|
|
2216
|
+
'@typescript-eslint/type-utils@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
|
3601
2217
|
dependencies:
|
|
3602
|
-
'@typescript-eslint/types': 8.
|
|
3603
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
3604
|
-
'@typescript-eslint/utils': 8.
|
|
2218
|
+
'@typescript-eslint/types': 8.53.1
|
|
2219
|
+
'@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
|
|
2220
|
+
'@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
3605
2221
|
debug: 4.4.3
|
|
3606
2222
|
eslint: 9.39.2(jiti@1.21.7)
|
|
3607
2223
|
ts-api-utils: 2.4.0(typescript@5.9.3)
|
|
@@ -3609,14 +2225,14 @@ snapshots:
|
|
|
3609
2225
|
transitivePeerDependencies:
|
|
3610
2226
|
- supports-color
|
|
3611
2227
|
|
|
3612
|
-
'@typescript-eslint/types@8.
|
|
2228
|
+
'@typescript-eslint/types@8.53.1': {}
|
|
3613
2229
|
|
|
3614
|
-
'@typescript-eslint/typescript-estree@8.
|
|
2230
|
+
'@typescript-eslint/typescript-estree@8.53.1(typescript@5.9.3)':
|
|
3615
2231
|
dependencies:
|
|
3616
|
-
'@typescript-eslint/project-service': 8.
|
|
3617
|
-
'@typescript-eslint/tsconfig-utils': 8.
|
|
3618
|
-
'@typescript-eslint/types': 8.
|
|
3619
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
2232
|
+
'@typescript-eslint/project-service': 8.53.1(typescript@5.9.3)
|
|
2233
|
+
'@typescript-eslint/tsconfig-utils': 8.53.1(typescript@5.9.3)
|
|
2234
|
+
'@typescript-eslint/types': 8.53.1
|
|
2235
|
+
'@typescript-eslint/visitor-keys': 8.53.1
|
|
3620
2236
|
debug: 4.4.3
|
|
3621
2237
|
minimatch: 9.0.5
|
|
3622
2238
|
semver: 7.7.3
|
|
@@ -3626,28 +2242,35 @@ snapshots:
|
|
|
3626
2242
|
transitivePeerDependencies:
|
|
3627
2243
|
- supports-color
|
|
3628
2244
|
|
|
3629
|
-
'@typescript-eslint/utils@8.
|
|
2245
|
+
'@typescript-eslint/utils@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
|
3630
2246
|
dependencies:
|
|
3631
2247
|
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.7))
|
|
3632
|
-
'@typescript-eslint/scope-manager': 8.
|
|
3633
|
-
'@typescript-eslint/types': 8.
|
|
3634
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
2248
|
+
'@typescript-eslint/scope-manager': 8.53.1
|
|
2249
|
+
'@typescript-eslint/types': 8.53.1
|
|
2250
|
+
'@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
|
|
3635
2251
|
eslint: 9.39.2(jiti@1.21.7)
|
|
3636
2252
|
typescript: 5.9.3
|
|
3637
2253
|
transitivePeerDependencies:
|
|
3638
2254
|
- supports-color
|
|
3639
2255
|
|
|
3640
|
-
'@typescript-eslint/visitor-keys@8.
|
|
2256
|
+
'@typescript-eslint/visitor-keys@8.53.1':
|
|
3641
2257
|
dependencies:
|
|
3642
|
-
'@typescript-eslint/types': 8.
|
|
2258
|
+
'@typescript-eslint/types': 8.53.1
|
|
3643
2259
|
eslint-visitor-keys: 4.2.1
|
|
3644
2260
|
|
|
2261
|
+
accepts@1.3.8:
|
|
2262
|
+
dependencies:
|
|
2263
|
+
mime-types: 2.1.35
|
|
2264
|
+
negotiator: 0.6.3
|
|
2265
|
+
|
|
3645
2266
|
acorn-jsx@5.3.2(acorn@8.15.0):
|
|
3646
2267
|
dependencies:
|
|
3647
2268
|
acorn: 8.15.0
|
|
3648
2269
|
|
|
3649
2270
|
acorn@8.15.0: {}
|
|
3650
2271
|
|
|
2272
|
+
acorn@8.16.0: {}
|
|
2273
|
+
|
|
3651
2274
|
ajv@6.12.6:
|
|
3652
2275
|
dependencies:
|
|
3653
2276
|
fast-deep-equal: 3.1.3
|
|
@@ -3655,8 +2278,6 @@ snapshots:
|
|
|
3655
2278
|
json-schema-traverse: 0.4.1
|
|
3656
2279
|
uri-js: 4.4.1
|
|
3657
2280
|
|
|
3658
|
-
ansi-regex@6.2.2: {}
|
|
3659
|
-
|
|
3660
2281
|
ansi-styles@4.3.0:
|
|
3661
2282
|
dependencies:
|
|
3662
2283
|
color-convert: 2.0.1
|
|
@@ -3674,12 +2295,14 @@ snapshots:
|
|
|
3674
2295
|
|
|
3675
2296
|
argparse@2.0.1: {}
|
|
3676
2297
|
|
|
2298
|
+
array-flatten@1.1.1: {}
|
|
2299
|
+
|
|
3677
2300
|
asynckit@0.4.0: {}
|
|
3678
2301
|
|
|
3679
2302
|
autoprefixer@10.4.23(postcss@8.5.6):
|
|
3680
2303
|
dependencies:
|
|
3681
2304
|
browserslist: 4.28.1
|
|
3682
|
-
caniuse-lite: 1.0.
|
|
2305
|
+
caniuse-lite: 1.0.30001765
|
|
3683
2306
|
fraction.js: 5.3.4
|
|
3684
2307
|
picocolors: 1.1.1
|
|
3685
2308
|
postcss: 8.5.6
|
|
@@ -3697,11 +2320,26 @@ snapshots:
|
|
|
3697
2320
|
|
|
3698
2321
|
base64-js@1.5.1: {}
|
|
3699
2322
|
|
|
3700
|
-
baseline-browser-mapping@2.9.
|
|
2323
|
+
baseline-browser-mapping@2.9.16: {}
|
|
3701
2324
|
|
|
3702
2325
|
binary-extensions@2.3.0: {}
|
|
3703
2326
|
|
|
3704
|
-
|
|
2327
|
+
body-parser@1.20.4:
|
|
2328
|
+
dependencies:
|
|
2329
|
+
bytes: 3.1.2
|
|
2330
|
+
content-type: 1.0.5
|
|
2331
|
+
debug: 2.6.9
|
|
2332
|
+
depd: 2.0.0
|
|
2333
|
+
destroy: 1.2.0
|
|
2334
|
+
http-errors: 2.0.1
|
|
2335
|
+
iconv-lite: 0.4.24
|
|
2336
|
+
on-finished: 2.4.1
|
|
2337
|
+
qs: 6.14.2
|
|
2338
|
+
raw-body: 2.5.3
|
|
2339
|
+
type-is: 1.6.18
|
|
2340
|
+
unpipe: 1.0.0
|
|
2341
|
+
transitivePeerDependencies:
|
|
2342
|
+
- supports-color
|
|
3705
2343
|
|
|
3706
2344
|
brace-expansion@1.1.12:
|
|
3707
2345
|
dependencies:
|
|
@@ -3718,39 +2356,44 @@ snapshots:
|
|
|
3718
2356
|
|
|
3719
2357
|
browserslist@4.28.1:
|
|
3720
2358
|
dependencies:
|
|
3721
|
-
baseline-browser-mapping: 2.9.
|
|
3722
|
-
caniuse-lite: 1.0.
|
|
2359
|
+
baseline-browser-mapping: 2.9.16
|
|
2360
|
+
caniuse-lite: 1.0.30001765
|
|
3723
2361
|
electron-to-chromium: 1.5.267
|
|
3724
2362
|
node-releases: 2.0.27
|
|
3725
2363
|
update-browserslist-db: 1.2.3(browserslist@4.28.1)
|
|
3726
2364
|
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
buffer@5.6.0:
|
|
2365
|
+
bundle-require@5.1.0(esbuild@0.27.2):
|
|
3730
2366
|
dependencies:
|
|
3731
|
-
|
|
3732
|
-
|
|
2367
|
+
esbuild: 0.27.2
|
|
2368
|
+
load-tsconfig: 0.2.5
|
|
2369
|
+
|
|
2370
|
+
bytes@3.1.2: {}
|
|
2371
|
+
|
|
2372
|
+
cac@6.7.14: {}
|
|
3733
2373
|
|
|
3734
2374
|
call-bind-apply-helpers@1.0.2:
|
|
3735
2375
|
dependencies:
|
|
3736
2376
|
es-errors: 1.3.0
|
|
3737
2377
|
function-bind: 1.1.2
|
|
3738
2378
|
|
|
2379
|
+
call-bound@1.0.4:
|
|
2380
|
+
dependencies:
|
|
2381
|
+
call-bind-apply-helpers: 1.0.2
|
|
2382
|
+
get-intrinsic: 1.3.0
|
|
2383
|
+
|
|
3739
2384
|
callsites@3.1.0: {}
|
|
3740
2385
|
|
|
3741
2386
|
camelcase-css@2.0.1: {}
|
|
3742
2387
|
|
|
3743
2388
|
camelcase@6.3.0: {}
|
|
3744
2389
|
|
|
3745
|
-
caniuse-lite@1.0.
|
|
2390
|
+
caniuse-lite@1.0.30001765: {}
|
|
3746
2391
|
|
|
3747
2392
|
chalk@4.1.2:
|
|
3748
2393
|
dependencies:
|
|
3749
2394
|
ansi-styles: 4.3.0
|
|
3750
2395
|
supports-color: 7.2.0
|
|
3751
2396
|
|
|
3752
|
-
chalk@5.6.2: {}
|
|
3753
|
-
|
|
3754
2397
|
chokidar@3.6.0:
|
|
3755
2398
|
dependencies:
|
|
3756
2399
|
anymatch: 3.1.3
|
|
@@ -3763,11 +2406,9 @@ snapshots:
|
|
|
3763
2406
|
optionalDependencies:
|
|
3764
2407
|
fsevents: 2.3.3
|
|
3765
2408
|
|
|
3766
|
-
|
|
2409
|
+
chokidar@4.0.3:
|
|
3767
2410
|
dependencies:
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
cli-spinners@3.4.0: {}
|
|
2411
|
+
readdirp: 4.1.2
|
|
3771
2412
|
|
|
3772
2413
|
color-convert@2.0.1:
|
|
3773
2414
|
dependencies:
|
|
@@ -3779,66 +2420,44 @@ snapshots:
|
|
|
3779
2420
|
dependencies:
|
|
3780
2421
|
delayed-stream: 1.0.0
|
|
3781
2422
|
|
|
3782
|
-
commander@14.0.2: {}
|
|
3783
|
-
|
|
3784
2423
|
commander@4.1.1: {}
|
|
3785
2424
|
|
|
3786
2425
|
concat-map@0.0.1: {}
|
|
3787
2426
|
|
|
2427
|
+
confbox@0.1.8: {}
|
|
2428
|
+
|
|
2429
|
+
consola@3.4.2: {}
|
|
2430
|
+
|
|
3788
2431
|
console-table-printer@2.15.0:
|
|
3789
2432
|
dependencies:
|
|
3790
2433
|
simple-wcswidth: 1.1.2
|
|
3791
2434
|
|
|
3792
|
-
|
|
2435
|
+
content-disposition@0.5.4:
|
|
2436
|
+
dependencies:
|
|
2437
|
+
safe-buffer: 5.2.1
|
|
2438
|
+
|
|
2439
|
+
content-type@1.0.5: {}
|
|
2440
|
+
|
|
2441
|
+
cookie-signature@1.0.7: {}
|
|
2442
|
+
|
|
2443
|
+
cookie@0.7.2: {}
|
|
2444
|
+
|
|
2445
|
+
coze-coding-dev-sdk@0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0):
|
|
3793
2446
|
dependencies:
|
|
3794
|
-
'@
|
|
3795
|
-
'@
|
|
3796
|
-
'@
|
|
3797
|
-
'@langchain/openai': 1.2.2(@langchain/core@1.1.15(openai@6.16.0(zod@4.3.5)))
|
|
2447
|
+
'@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
|
|
2448
|
+
'@langchain/openai': 1.2.3(@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5)))(ws@8.19.0)
|
|
2449
|
+
'@supabase/supabase-js': 2.95.3
|
|
3798
2450
|
axios: 1.13.2
|
|
3799
|
-
|
|
3800
|
-
commander: 14.0.2
|
|
3801
|
-
drizzle-kit: 0.31.8
|
|
3802
|
-
drizzle-orm: 0.45.1(pg@8.17.1)
|
|
3803
|
-
ora: 9.0.0
|
|
3804
|
-
pg: 8.17.1
|
|
3805
|
-
transliteration: 2.6.0
|
|
2451
|
+
pg: 8.17.2
|
|
3806
2452
|
transitivePeerDependencies:
|
|
3807
|
-
- '@aws-sdk/client-rds-data'
|
|
3808
|
-
- '@cloudflare/workers-types'
|
|
3809
|
-
- '@electric-sql/pglite'
|
|
3810
|
-
- '@libsql/client'
|
|
3811
|
-
- '@libsql/client-wasm'
|
|
3812
|
-
- '@neondatabase/serverless'
|
|
3813
|
-
- '@op-engineering/op-sqlite'
|
|
3814
2453
|
- '@opentelemetry/api'
|
|
3815
2454
|
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
3816
2455
|
- '@opentelemetry/sdk-trace-base'
|
|
3817
|
-
-
|
|
3818
|
-
- '@prisma/client'
|
|
3819
|
-
- '@tidbcloud/serverless'
|
|
3820
|
-
- '@types/better-sqlite3'
|
|
3821
|
-
- '@types/pg'
|
|
3822
|
-
- '@types/sql.js'
|
|
3823
|
-
- '@upstash/redis'
|
|
3824
|
-
- '@vercel/postgres'
|
|
3825
|
-
- '@xata.io/client'
|
|
3826
|
-
- aws-crt
|
|
3827
|
-
- better-sqlite3
|
|
3828
|
-
- bun-types
|
|
2456
|
+
- bufferutil
|
|
3829
2457
|
- debug
|
|
3830
|
-
- expo-sqlite
|
|
3831
|
-
- gel
|
|
3832
|
-
- knex
|
|
3833
|
-
- kysely
|
|
3834
|
-
- mysql2
|
|
3835
2458
|
- openai
|
|
3836
2459
|
- pg-native
|
|
3837
|
-
-
|
|
3838
|
-
- prisma
|
|
3839
|
-
- sql.js
|
|
3840
|
-
- sqlite3
|
|
3841
|
-
- supports-color
|
|
2460
|
+
- utf-8-validate
|
|
3842
2461
|
- ws
|
|
3843
2462
|
|
|
3844
2463
|
cross-spawn@7.0.6:
|
|
@@ -3849,6 +2468,10 @@ snapshots:
|
|
|
3849
2468
|
|
|
3850
2469
|
cssesc@3.0.0: {}
|
|
3851
2470
|
|
|
2471
|
+
debug@2.6.9:
|
|
2472
|
+
dependencies:
|
|
2473
|
+
ms: 2.0.0
|
|
2474
|
+
|
|
3852
2475
|
debug@4.4.3:
|
|
3853
2476
|
dependencies:
|
|
3854
2477
|
ms: 2.1.3
|
|
@@ -3859,22 +2482,15 @@ snapshots:
|
|
|
3859
2482
|
|
|
3860
2483
|
delayed-stream@1.0.0: {}
|
|
3861
2484
|
|
|
2485
|
+
depd@2.0.0: {}
|
|
2486
|
+
|
|
2487
|
+
destroy@1.2.0: {}
|
|
2488
|
+
|
|
3862
2489
|
didyoumean@1.2.2: {}
|
|
3863
2490
|
|
|
3864
2491
|
dlv@1.1.3: {}
|
|
3865
2492
|
|
|
3866
|
-
|
|
3867
|
-
dependencies:
|
|
3868
|
-
'@drizzle-team/brocli': 0.10.2
|
|
3869
|
-
'@esbuild-kit/esm-loader': 2.6.5
|
|
3870
|
-
esbuild: 0.25.12
|
|
3871
|
-
esbuild-register: 3.6.0(esbuild@0.25.12)
|
|
3872
|
-
transitivePeerDependencies:
|
|
3873
|
-
- supports-color
|
|
3874
|
-
|
|
3875
|
-
drizzle-orm@0.45.1(pg@8.17.1):
|
|
3876
|
-
optionalDependencies:
|
|
3877
|
-
pg: 8.17.1
|
|
2493
|
+
dotenv@17.2.4: {}
|
|
3878
2494
|
|
|
3879
2495
|
dunder-proto@1.0.1:
|
|
3880
2496
|
dependencies:
|
|
@@ -3882,8 +2498,12 @@ snapshots:
|
|
|
3882
2498
|
es-errors: 1.3.0
|
|
3883
2499
|
gopd: 1.2.0
|
|
3884
2500
|
|
|
2501
|
+
ee-first@1.1.1: {}
|
|
2502
|
+
|
|
3885
2503
|
electron-to-chromium@1.5.267: {}
|
|
3886
2504
|
|
|
2505
|
+
encodeurl@2.0.0: {}
|
|
2506
|
+
|
|
3887
2507
|
es-define-property@1.0.1: {}
|
|
3888
2508
|
|
|
3889
2509
|
es-errors@1.3.0: {}
|
|
@@ -3899,67 +2519,6 @@ snapshots:
|
|
|
3899
2519
|
has-tostringtag: 1.0.2
|
|
3900
2520
|
hasown: 2.0.2
|
|
3901
2521
|
|
|
3902
|
-
esbuild-register@3.6.0(esbuild@0.25.12):
|
|
3903
|
-
dependencies:
|
|
3904
|
-
debug: 4.4.3
|
|
3905
|
-
esbuild: 0.25.12
|
|
3906
|
-
transitivePeerDependencies:
|
|
3907
|
-
- supports-color
|
|
3908
|
-
|
|
3909
|
-
esbuild@0.18.20:
|
|
3910
|
-
optionalDependencies:
|
|
3911
|
-
'@esbuild/android-arm': 0.18.20
|
|
3912
|
-
'@esbuild/android-arm64': 0.18.20
|
|
3913
|
-
'@esbuild/android-x64': 0.18.20
|
|
3914
|
-
'@esbuild/darwin-arm64': 0.18.20
|
|
3915
|
-
'@esbuild/darwin-x64': 0.18.20
|
|
3916
|
-
'@esbuild/freebsd-arm64': 0.18.20
|
|
3917
|
-
'@esbuild/freebsd-x64': 0.18.20
|
|
3918
|
-
'@esbuild/linux-arm': 0.18.20
|
|
3919
|
-
'@esbuild/linux-arm64': 0.18.20
|
|
3920
|
-
'@esbuild/linux-ia32': 0.18.20
|
|
3921
|
-
'@esbuild/linux-loong64': 0.18.20
|
|
3922
|
-
'@esbuild/linux-mips64el': 0.18.20
|
|
3923
|
-
'@esbuild/linux-ppc64': 0.18.20
|
|
3924
|
-
'@esbuild/linux-riscv64': 0.18.20
|
|
3925
|
-
'@esbuild/linux-s390x': 0.18.20
|
|
3926
|
-
'@esbuild/linux-x64': 0.18.20
|
|
3927
|
-
'@esbuild/netbsd-x64': 0.18.20
|
|
3928
|
-
'@esbuild/openbsd-x64': 0.18.20
|
|
3929
|
-
'@esbuild/sunos-x64': 0.18.20
|
|
3930
|
-
'@esbuild/win32-arm64': 0.18.20
|
|
3931
|
-
'@esbuild/win32-ia32': 0.18.20
|
|
3932
|
-
'@esbuild/win32-x64': 0.18.20
|
|
3933
|
-
|
|
3934
|
-
esbuild@0.25.12:
|
|
3935
|
-
optionalDependencies:
|
|
3936
|
-
'@esbuild/aix-ppc64': 0.25.12
|
|
3937
|
-
'@esbuild/android-arm': 0.25.12
|
|
3938
|
-
'@esbuild/android-arm64': 0.25.12
|
|
3939
|
-
'@esbuild/android-x64': 0.25.12
|
|
3940
|
-
'@esbuild/darwin-arm64': 0.25.12
|
|
3941
|
-
'@esbuild/darwin-x64': 0.25.12
|
|
3942
|
-
'@esbuild/freebsd-arm64': 0.25.12
|
|
3943
|
-
'@esbuild/freebsd-x64': 0.25.12
|
|
3944
|
-
'@esbuild/linux-arm': 0.25.12
|
|
3945
|
-
'@esbuild/linux-arm64': 0.25.12
|
|
3946
|
-
'@esbuild/linux-ia32': 0.25.12
|
|
3947
|
-
'@esbuild/linux-loong64': 0.25.12
|
|
3948
|
-
'@esbuild/linux-mips64el': 0.25.12
|
|
3949
|
-
'@esbuild/linux-ppc64': 0.25.12
|
|
3950
|
-
'@esbuild/linux-riscv64': 0.25.12
|
|
3951
|
-
'@esbuild/linux-s390x': 0.25.12
|
|
3952
|
-
'@esbuild/linux-x64': 0.25.12
|
|
3953
|
-
'@esbuild/netbsd-arm64': 0.25.12
|
|
3954
|
-
'@esbuild/netbsd-x64': 0.25.12
|
|
3955
|
-
'@esbuild/openbsd-arm64': 0.25.12
|
|
3956
|
-
'@esbuild/openbsd-x64': 0.25.12
|
|
3957
|
-
'@esbuild/openharmony-arm64': 0.25.12
|
|
3958
|
-
'@esbuild/sunos-x64': 0.25.12
|
|
3959
|
-
'@esbuild/win32-arm64': 0.25.12
|
|
3960
|
-
'@esbuild/win32-ia32': 0.25.12
|
|
3961
|
-
'@esbuild/win32-x64': 0.25.12
|
|
3962
|
-
|
|
3963
2522
|
esbuild@0.27.2:
|
|
3964
2523
|
optionalDependencies:
|
|
3965
2524
|
'@esbuild/aix-ppc64': 0.27.2
|
|
@@ -3991,6 +2550,8 @@ snapshots:
|
|
|
3991
2550
|
|
|
3992
2551
|
escalade@3.2.0: {}
|
|
3993
2552
|
|
|
2553
|
+
escape-html@1.0.3: {}
|
|
2554
|
+
|
|
3994
2555
|
escape-string-regexp@4.0.0: {}
|
|
3995
2556
|
|
|
3996
2557
|
eslint-scope@8.4.0:
|
|
@@ -4061,9 +2622,45 @@ snapshots:
|
|
|
4061
2622
|
|
|
4062
2623
|
esutils@2.0.3: {}
|
|
4063
2624
|
|
|
2625
|
+
etag@1.8.1: {}
|
|
2626
|
+
|
|
4064
2627
|
eventemitter3@4.0.7: {}
|
|
4065
2628
|
|
|
4066
|
-
|
|
2629
|
+
express@4.22.1:
|
|
2630
|
+
dependencies:
|
|
2631
|
+
accepts: 1.3.8
|
|
2632
|
+
array-flatten: 1.1.1
|
|
2633
|
+
body-parser: 1.20.4
|
|
2634
|
+
content-disposition: 0.5.4
|
|
2635
|
+
content-type: 1.0.5
|
|
2636
|
+
cookie: 0.7.2
|
|
2637
|
+
cookie-signature: 1.0.7
|
|
2638
|
+
debug: 2.6.9
|
|
2639
|
+
depd: 2.0.0
|
|
2640
|
+
encodeurl: 2.0.0
|
|
2641
|
+
escape-html: 1.0.3
|
|
2642
|
+
etag: 1.8.1
|
|
2643
|
+
finalhandler: 1.3.2
|
|
2644
|
+
fresh: 0.5.2
|
|
2645
|
+
http-errors: 2.0.1
|
|
2646
|
+
merge-descriptors: 1.0.3
|
|
2647
|
+
methods: 1.1.2
|
|
2648
|
+
on-finished: 2.4.1
|
|
2649
|
+
parseurl: 1.3.3
|
|
2650
|
+
path-to-regexp: 0.1.12
|
|
2651
|
+
proxy-addr: 2.0.7
|
|
2652
|
+
qs: 6.14.2
|
|
2653
|
+
range-parser: 1.2.1
|
|
2654
|
+
safe-buffer: 5.2.1
|
|
2655
|
+
send: 0.19.2
|
|
2656
|
+
serve-static: 1.16.3
|
|
2657
|
+
setprototypeof: 1.2.0
|
|
2658
|
+
statuses: 2.0.2
|
|
2659
|
+
type-is: 1.6.18
|
|
2660
|
+
utils-merge: 1.0.1
|
|
2661
|
+
vary: 1.1.2
|
|
2662
|
+
transitivePeerDependencies:
|
|
2663
|
+
- supports-color
|
|
4067
2664
|
|
|
4068
2665
|
fast-deep-equal@3.1.3: {}
|
|
4069
2666
|
|
|
@@ -4079,10 +2676,6 @@ snapshots:
|
|
|
4079
2676
|
|
|
4080
2677
|
fast-levenshtein@2.0.6: {}
|
|
4081
2678
|
|
|
4082
|
-
fast-xml-parser@5.2.5:
|
|
4083
|
-
dependencies:
|
|
4084
|
-
strnum: 2.1.2
|
|
4085
|
-
|
|
4086
2679
|
fastq@1.20.1:
|
|
4087
2680
|
dependencies:
|
|
4088
2681
|
reusify: 1.1.0
|
|
@@ -4099,11 +2692,29 @@ snapshots:
|
|
|
4099
2692
|
dependencies:
|
|
4100
2693
|
to-regex-range: 5.0.1
|
|
4101
2694
|
|
|
2695
|
+
finalhandler@1.3.2:
|
|
2696
|
+
dependencies:
|
|
2697
|
+
debug: 2.6.9
|
|
2698
|
+
encodeurl: 2.0.0
|
|
2699
|
+
escape-html: 1.0.3
|
|
2700
|
+
on-finished: 2.4.1
|
|
2701
|
+
parseurl: 1.3.3
|
|
2702
|
+
statuses: 2.0.2
|
|
2703
|
+
unpipe: 1.0.0
|
|
2704
|
+
transitivePeerDependencies:
|
|
2705
|
+
- supports-color
|
|
2706
|
+
|
|
4102
2707
|
find-up@5.0.0:
|
|
4103
2708
|
dependencies:
|
|
4104
2709
|
locate-path: 6.0.0
|
|
4105
2710
|
path-exists: 4.0.0
|
|
4106
2711
|
|
|
2712
|
+
fix-dts-default-cjs-exports@1.0.1:
|
|
2713
|
+
dependencies:
|
|
2714
|
+
magic-string: 0.30.21
|
|
2715
|
+
mlly: 1.8.1
|
|
2716
|
+
rollup: 4.55.3
|
|
2717
|
+
|
|
4107
2718
|
flat-cache@4.0.1:
|
|
4108
2719
|
dependencies:
|
|
4109
2720
|
flatted: 3.3.3
|
|
@@ -4121,15 +2732,17 @@ snapshots:
|
|
|
4121
2732
|
hasown: 2.0.2
|
|
4122
2733
|
mime-types: 2.1.35
|
|
4123
2734
|
|
|
2735
|
+
forwarded@0.2.0: {}
|
|
2736
|
+
|
|
4124
2737
|
fraction.js@5.3.4: {}
|
|
4125
2738
|
|
|
2739
|
+
fresh@0.5.2: {}
|
|
2740
|
+
|
|
4126
2741
|
fsevents@2.3.3:
|
|
4127
2742
|
optional: true
|
|
4128
2743
|
|
|
4129
2744
|
function-bind@1.1.2: {}
|
|
4130
2745
|
|
|
4131
|
-
get-east-asian-width@1.4.0: {}
|
|
4132
|
-
|
|
4133
2746
|
get-intrinsic@1.3.0:
|
|
4134
2747
|
dependencies:
|
|
4135
2748
|
call-bind-apply-helpers: 1.0.2
|
|
@@ -4148,7 +2761,7 @@ snapshots:
|
|
|
4148
2761
|
dunder-proto: 1.0.1
|
|
4149
2762
|
es-object-atoms: 1.1.1
|
|
4150
2763
|
|
|
4151
|
-
get-tsconfig@4.13.
|
|
2764
|
+
get-tsconfig@4.13.6:
|
|
4152
2765
|
dependencies:
|
|
4153
2766
|
resolve-pkg-maps: 1.0.0
|
|
4154
2767
|
|
|
@@ -4176,7 +2789,19 @@ snapshots:
|
|
|
4176
2789
|
dependencies:
|
|
4177
2790
|
function-bind: 1.1.2
|
|
4178
2791
|
|
|
4179
|
-
|
|
2792
|
+
http-errors@2.0.1:
|
|
2793
|
+
dependencies:
|
|
2794
|
+
depd: 2.0.0
|
|
2795
|
+
inherits: 2.0.4
|
|
2796
|
+
setprototypeof: 1.2.0
|
|
2797
|
+
statuses: 2.0.2
|
|
2798
|
+
toidentifier: 1.0.1
|
|
2799
|
+
|
|
2800
|
+
iceberg-js@0.8.1: {}
|
|
2801
|
+
|
|
2802
|
+
iconv-lite@0.4.24:
|
|
2803
|
+
dependencies:
|
|
2804
|
+
safer-buffer: 2.1.2
|
|
4180
2805
|
|
|
4181
2806
|
ignore@5.3.2: {}
|
|
4182
2807
|
|
|
@@ -4191,6 +2816,8 @@ snapshots:
|
|
|
4191
2816
|
|
|
4192
2817
|
inherits@2.0.4: {}
|
|
4193
2818
|
|
|
2819
|
+
ipaddr.js@1.9.1: {}
|
|
2820
|
+
|
|
4194
2821
|
is-binary-path@2.1.0:
|
|
4195
2822
|
dependencies:
|
|
4196
2823
|
binary-extensions: 2.3.0
|
|
@@ -4205,16 +2832,14 @@ snapshots:
|
|
|
4205
2832
|
dependencies:
|
|
4206
2833
|
is-extglob: 2.1.1
|
|
4207
2834
|
|
|
4208
|
-
is-interactive@2.0.0: {}
|
|
4209
|
-
|
|
4210
2835
|
is-number@7.0.0: {}
|
|
4211
2836
|
|
|
4212
|
-
is-unicode-supported@2.1.0: {}
|
|
4213
|
-
|
|
4214
2837
|
isexe@2.0.0: {}
|
|
4215
2838
|
|
|
4216
2839
|
jiti@1.21.7: {}
|
|
4217
2840
|
|
|
2841
|
+
joycon@3.1.1: {}
|
|
2842
|
+
|
|
4218
2843
|
js-tiktoken@1.0.21:
|
|
4219
2844
|
dependencies:
|
|
4220
2845
|
base64-js: 1.5.1
|
|
@@ -4233,7 +2858,7 @@ snapshots:
|
|
|
4233
2858
|
dependencies:
|
|
4234
2859
|
json-buffer: 3.0.1
|
|
4235
2860
|
|
|
4236
|
-
langsmith@0.4.7(openai@6.16.0(zod@4.3.5)):
|
|
2861
|
+
langsmith@0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5)):
|
|
4237
2862
|
dependencies:
|
|
4238
2863
|
'@types/uuid': 10.0.0
|
|
4239
2864
|
chalk: 4.1.2
|
|
@@ -4242,7 +2867,7 @@ snapshots:
|
|
|
4242
2867
|
semver: 7.7.3
|
|
4243
2868
|
uuid: 10.0.0
|
|
4244
2869
|
optionalDependencies:
|
|
4245
|
-
openai: 6.16.0(zod@4.3.5)
|
|
2870
|
+
openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
|
|
4246
2871
|
|
|
4247
2872
|
levn@0.4.1:
|
|
4248
2873
|
dependencies:
|
|
@@ -4253,21 +2878,28 @@ snapshots:
|
|
|
4253
2878
|
|
|
4254
2879
|
lines-and-columns@1.2.4: {}
|
|
4255
2880
|
|
|
2881
|
+
load-tsconfig@0.2.5: {}
|
|
2882
|
+
|
|
4256
2883
|
locate-path@6.0.0:
|
|
4257
2884
|
dependencies:
|
|
4258
2885
|
p-locate: 5.0.0
|
|
4259
2886
|
|
|
4260
2887
|
lodash.merge@4.6.2: {}
|
|
4261
2888
|
|
|
4262
|
-
|
|
2889
|
+
magic-string@0.30.21:
|
|
4263
2890
|
dependencies:
|
|
4264
|
-
|
|
4265
|
-
yoctocolors: 2.1.2
|
|
2891
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
4266
2892
|
|
|
4267
2893
|
math-intrinsics@1.1.0: {}
|
|
4268
2894
|
|
|
2895
|
+
media-typer@0.3.0: {}
|
|
2896
|
+
|
|
2897
|
+
merge-descriptors@1.0.3: {}
|
|
2898
|
+
|
|
4269
2899
|
merge2@1.4.1: {}
|
|
4270
2900
|
|
|
2901
|
+
methods@1.1.2: {}
|
|
2902
|
+
|
|
4271
2903
|
micromatch@4.0.8:
|
|
4272
2904
|
dependencies:
|
|
4273
2905
|
braces: 3.0.3
|
|
@@ -4279,7 +2911,7 @@ snapshots:
|
|
|
4279
2911
|
dependencies:
|
|
4280
2912
|
mime-db: 1.52.0
|
|
4281
2913
|
|
|
4282
|
-
|
|
2914
|
+
mime@1.6.0: {}
|
|
4283
2915
|
|
|
4284
2916
|
minimatch@3.1.2:
|
|
4285
2917
|
dependencies:
|
|
@@ -4289,6 +2921,15 @@ snapshots:
|
|
|
4289
2921
|
dependencies:
|
|
4290
2922
|
brace-expansion: 2.0.2
|
|
4291
2923
|
|
|
2924
|
+
mlly@1.8.1:
|
|
2925
|
+
dependencies:
|
|
2926
|
+
acorn: 8.16.0
|
|
2927
|
+
pathe: 2.0.3
|
|
2928
|
+
pkg-types: 1.3.1
|
|
2929
|
+
ufo: 1.6.3
|
|
2930
|
+
|
|
2931
|
+
ms@2.0.0: {}
|
|
2932
|
+
|
|
4292
2933
|
ms@2.1.3: {}
|
|
4293
2934
|
|
|
4294
2935
|
mustache@4.2.0: {}
|
|
@@ -4303,6 +2944,8 @@ snapshots:
|
|
|
4303
2944
|
|
|
4304
2945
|
natural-compare@1.4.0: {}
|
|
4305
2946
|
|
|
2947
|
+
negotiator@0.6.3: {}
|
|
2948
|
+
|
|
4306
2949
|
node-releases@2.0.27: {}
|
|
4307
2950
|
|
|
4308
2951
|
normalize-path@3.0.0: {}
|
|
@@ -4311,16 +2954,19 @@ snapshots:
|
|
|
4311
2954
|
|
|
4312
2955
|
object-hash@3.0.0: {}
|
|
4313
2956
|
|
|
4314
|
-
|
|
2957
|
+
object-inspect@1.13.4: {}
|
|
2958
|
+
|
|
2959
|
+
on-finished@2.4.1:
|
|
4315
2960
|
dependencies:
|
|
4316
|
-
|
|
2961
|
+
ee-first: 1.1.1
|
|
4317
2962
|
|
|
4318
2963
|
only-allow@1.2.2:
|
|
4319
2964
|
dependencies:
|
|
4320
2965
|
which-pm-runs: 1.1.0
|
|
4321
2966
|
|
|
4322
|
-
openai@6.16.0(zod@4.3.5):
|
|
2967
|
+
openai@6.16.0(ws@8.19.0)(zod@4.3.5):
|
|
4323
2968
|
optionalDependencies:
|
|
2969
|
+
ws: 8.19.0
|
|
4324
2970
|
zod: 4.3.5
|
|
4325
2971
|
|
|
4326
2972
|
optionator@0.9.4:
|
|
@@ -4332,18 +2978,6 @@ snapshots:
|
|
|
4332
2978
|
type-check: 0.4.0
|
|
4333
2979
|
word-wrap: 1.2.5
|
|
4334
2980
|
|
|
4335
|
-
ora@9.0.0:
|
|
4336
|
-
dependencies:
|
|
4337
|
-
chalk: 5.6.2
|
|
4338
|
-
cli-cursor: 5.0.0
|
|
4339
|
-
cli-spinners: 3.4.0
|
|
4340
|
-
is-interactive: 2.0.0
|
|
4341
|
-
is-unicode-supported: 2.1.0
|
|
4342
|
-
log-symbols: 7.0.1
|
|
4343
|
-
stdin-discarder: 0.2.2
|
|
4344
|
-
string-width: 8.1.0
|
|
4345
|
-
strip-ansi: 7.1.2
|
|
4346
|
-
|
|
4347
2981
|
p-finally@1.0.0: {}
|
|
4348
2982
|
|
|
4349
2983
|
p-limit@3.1.0:
|
|
@@ -4367,22 +3001,28 @@ snapshots:
|
|
|
4367
3001
|
dependencies:
|
|
4368
3002
|
callsites: 3.1.0
|
|
4369
3003
|
|
|
3004
|
+
parseurl@1.3.3: {}
|
|
3005
|
+
|
|
4370
3006
|
path-exists@4.0.0: {}
|
|
4371
3007
|
|
|
4372
3008
|
path-key@3.1.1: {}
|
|
4373
3009
|
|
|
4374
3010
|
path-parse@1.0.7: {}
|
|
4375
3011
|
|
|
3012
|
+
path-to-regexp@0.1.12: {}
|
|
3013
|
+
|
|
3014
|
+
pathe@2.0.3: {}
|
|
3015
|
+
|
|
4376
3016
|
pg-cloudflare@1.3.0:
|
|
4377
3017
|
optional: true
|
|
4378
3018
|
|
|
4379
|
-
pg-connection-string@2.10.
|
|
3019
|
+
pg-connection-string@2.10.1: {}
|
|
4380
3020
|
|
|
4381
3021
|
pg-int8@1.0.1: {}
|
|
4382
3022
|
|
|
4383
|
-
pg-pool@3.11.0(pg@8.17.
|
|
3023
|
+
pg-pool@3.11.0(pg@8.17.2):
|
|
4384
3024
|
dependencies:
|
|
4385
|
-
pg: 8.17.
|
|
3025
|
+
pg: 8.17.2
|
|
4386
3026
|
|
|
4387
3027
|
pg-protocol@1.11.0: {}
|
|
4388
3028
|
|
|
@@ -4394,10 +3034,10 @@ snapshots:
|
|
|
4394
3034
|
postgres-date: 1.0.7
|
|
4395
3035
|
postgres-interval: 1.2.0
|
|
4396
3036
|
|
|
4397
|
-
pg@8.17.
|
|
3037
|
+
pg@8.17.2:
|
|
4398
3038
|
dependencies:
|
|
4399
|
-
pg-connection-string: 2.10.
|
|
4400
|
-
pg-pool: 3.11.0(pg@8.17.
|
|
3039
|
+
pg-connection-string: 2.10.1
|
|
3040
|
+
pg-pool: 3.11.0(pg@8.17.2)
|
|
4401
3041
|
pg-protocol: 1.11.0
|
|
4402
3042
|
pg-types: 2.2.0
|
|
4403
3043
|
pgpass: 1.0.5
|
|
@@ -4418,6 +3058,12 @@ snapshots:
|
|
|
4418
3058
|
|
|
4419
3059
|
pirates@4.0.7: {}
|
|
4420
3060
|
|
|
3061
|
+
pkg-types@1.3.1:
|
|
3062
|
+
dependencies:
|
|
3063
|
+
confbox: 0.1.8
|
|
3064
|
+
mlly: 1.8.1
|
|
3065
|
+
pathe: 2.0.3
|
|
3066
|
+
|
|
4421
3067
|
postcss-import@15.1.0(postcss@8.5.6):
|
|
4422
3068
|
dependencies:
|
|
4423
3069
|
postcss: 8.5.6
|
|
@@ -4430,12 +3076,13 @@ snapshots:
|
|
|
4430
3076
|
camelcase-css: 2.0.1
|
|
4431
3077
|
postcss: 8.5.6
|
|
4432
3078
|
|
|
4433
|
-
postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6):
|
|
3079
|
+
postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0):
|
|
4434
3080
|
dependencies:
|
|
4435
3081
|
lilconfig: 3.1.3
|
|
4436
3082
|
optionalDependencies:
|
|
4437
3083
|
jiti: 1.21.7
|
|
4438
3084
|
postcss: 8.5.6
|
|
3085
|
+
tsx: 4.21.0
|
|
4439
3086
|
|
|
4440
3087
|
postcss-nested@6.2.0(postcss@8.5.6):
|
|
4441
3088
|
dependencies:
|
|
@@ -4467,28 +3114,44 @@ snapshots:
|
|
|
4467
3114
|
|
|
4468
3115
|
prelude-ls@1.2.1: {}
|
|
4469
3116
|
|
|
3117
|
+
proxy-addr@2.0.7:
|
|
3118
|
+
dependencies:
|
|
3119
|
+
forwarded: 0.2.0
|
|
3120
|
+
ipaddr.js: 1.9.1
|
|
3121
|
+
|
|
4470
3122
|
proxy-from-env@1.1.0: {}
|
|
4471
3123
|
|
|
4472
3124
|
punycode@2.3.1: {}
|
|
4473
3125
|
|
|
3126
|
+
qs@6.14.2:
|
|
3127
|
+
dependencies:
|
|
3128
|
+
side-channel: 1.1.0
|
|
3129
|
+
|
|
4474
3130
|
queue-microtask@1.2.3: {}
|
|
4475
3131
|
|
|
4476
|
-
|
|
3132
|
+
range-parser@1.2.1: {}
|
|
3133
|
+
|
|
3134
|
+
raw-body@2.5.3:
|
|
4477
3135
|
dependencies:
|
|
4478
|
-
|
|
3136
|
+
bytes: 3.1.2
|
|
3137
|
+
http-errors: 2.0.1
|
|
3138
|
+
iconv-lite: 0.4.24
|
|
3139
|
+
unpipe: 1.0.0
|
|
4479
3140
|
|
|
4480
|
-
|
|
3141
|
+
read-cache@1.0.0:
|
|
4481
3142
|
dependencies:
|
|
4482
|
-
|
|
4483
|
-
string_decoder: 1.3.0
|
|
4484
|
-
util-deprecate: 1.0.2
|
|
3143
|
+
pify: 2.3.0
|
|
4485
3144
|
|
|
4486
3145
|
readdirp@3.6.0:
|
|
4487
3146
|
dependencies:
|
|
4488
3147
|
picomatch: 2.3.1
|
|
4489
3148
|
|
|
3149
|
+
readdirp@4.1.2: {}
|
|
3150
|
+
|
|
4490
3151
|
resolve-from@4.0.0: {}
|
|
4491
3152
|
|
|
3153
|
+
resolve-from@5.0.0: {}
|
|
3154
|
+
|
|
4492
3155
|
resolve-pkg-maps@1.0.0: {}
|
|
4493
3156
|
|
|
4494
3157
|
resolve@1.22.11:
|
|
@@ -4497,39 +3160,37 @@ snapshots:
|
|
|
4497
3160
|
path-parse: 1.0.7
|
|
4498
3161
|
supports-preserve-symlinks-flag: 1.0.0
|
|
4499
3162
|
|
|
4500
|
-
restore-cursor@5.1.0:
|
|
4501
|
-
dependencies:
|
|
4502
|
-
onetime: 7.0.0
|
|
4503
|
-
signal-exit: 4.1.0
|
|
4504
|
-
|
|
4505
3163
|
reusify@1.1.0: {}
|
|
4506
3164
|
|
|
4507
|
-
rollup@4.
|
|
3165
|
+
rollup@4.55.3:
|
|
4508
3166
|
dependencies:
|
|
4509
3167
|
'@types/estree': 1.0.8
|
|
4510
3168
|
optionalDependencies:
|
|
4511
|
-
'@rollup/rollup-android-arm-eabi': 4.
|
|
4512
|
-
'@rollup/rollup-android-arm64': 4.
|
|
4513
|
-
'@rollup/rollup-darwin-arm64': 4.
|
|
4514
|
-
'@rollup/rollup-darwin-x64': 4.
|
|
4515
|
-
'@rollup/rollup-freebsd-arm64': 4.
|
|
4516
|
-
'@rollup/rollup-freebsd-x64': 4.
|
|
4517
|
-
'@rollup/rollup-linux-arm-gnueabihf': 4.
|
|
4518
|
-
'@rollup/rollup-linux-arm-musleabihf': 4.
|
|
4519
|
-
'@rollup/rollup-linux-arm64-gnu': 4.
|
|
4520
|
-
'@rollup/rollup-linux-arm64-musl': 4.
|
|
4521
|
-
'@rollup/rollup-linux-loong64-gnu': 4.
|
|
4522
|
-
'@rollup/rollup-linux-
|
|
4523
|
-
'@rollup/rollup-linux-
|
|
4524
|
-
'@rollup/rollup-linux-
|
|
4525
|
-
'@rollup/rollup-linux-
|
|
4526
|
-
'@rollup/rollup-linux-
|
|
4527
|
-
'@rollup/rollup-linux-
|
|
4528
|
-
'@rollup/rollup-
|
|
4529
|
-
'@rollup/rollup-
|
|
4530
|
-
'@rollup/rollup-
|
|
4531
|
-
'@rollup/rollup-
|
|
4532
|
-
'@rollup/rollup-win32-
|
|
3169
|
+
'@rollup/rollup-android-arm-eabi': 4.55.3
|
|
3170
|
+
'@rollup/rollup-android-arm64': 4.55.3
|
|
3171
|
+
'@rollup/rollup-darwin-arm64': 4.55.3
|
|
3172
|
+
'@rollup/rollup-darwin-x64': 4.55.3
|
|
3173
|
+
'@rollup/rollup-freebsd-arm64': 4.55.3
|
|
3174
|
+
'@rollup/rollup-freebsd-x64': 4.55.3
|
|
3175
|
+
'@rollup/rollup-linux-arm-gnueabihf': 4.55.3
|
|
3176
|
+
'@rollup/rollup-linux-arm-musleabihf': 4.55.3
|
|
3177
|
+
'@rollup/rollup-linux-arm64-gnu': 4.55.3
|
|
3178
|
+
'@rollup/rollup-linux-arm64-musl': 4.55.3
|
|
3179
|
+
'@rollup/rollup-linux-loong64-gnu': 4.55.3
|
|
3180
|
+
'@rollup/rollup-linux-loong64-musl': 4.55.3
|
|
3181
|
+
'@rollup/rollup-linux-ppc64-gnu': 4.55.3
|
|
3182
|
+
'@rollup/rollup-linux-ppc64-musl': 4.55.3
|
|
3183
|
+
'@rollup/rollup-linux-riscv64-gnu': 4.55.3
|
|
3184
|
+
'@rollup/rollup-linux-riscv64-musl': 4.55.3
|
|
3185
|
+
'@rollup/rollup-linux-s390x-gnu': 4.55.3
|
|
3186
|
+
'@rollup/rollup-linux-x64-gnu': 4.55.3
|
|
3187
|
+
'@rollup/rollup-linux-x64-musl': 4.55.3
|
|
3188
|
+
'@rollup/rollup-openbsd-x64': 4.55.3
|
|
3189
|
+
'@rollup/rollup-openharmony-arm64': 4.55.3
|
|
3190
|
+
'@rollup/rollup-win32-arm64-msvc': 4.55.3
|
|
3191
|
+
'@rollup/rollup-win32-ia32-msvc': 4.55.3
|
|
3192
|
+
'@rollup/rollup-win32-x64-gnu': 4.55.3
|
|
3193
|
+
'@rollup/rollup-win32-x64-msvc': 4.55.3
|
|
4533
3194
|
fsevents: 2.3.3
|
|
4534
3195
|
|
|
4535
3196
|
run-parallel@1.2.0:
|
|
@@ -4538,53 +3199,85 @@ snapshots:
|
|
|
4538
3199
|
|
|
4539
3200
|
safe-buffer@5.2.1: {}
|
|
4540
3201
|
|
|
3202
|
+
safer-buffer@2.1.2: {}
|
|
3203
|
+
|
|
4541
3204
|
semver@7.7.3: {}
|
|
4542
3205
|
|
|
3206
|
+
send@0.19.2:
|
|
3207
|
+
dependencies:
|
|
3208
|
+
debug: 2.6.9
|
|
3209
|
+
depd: 2.0.0
|
|
3210
|
+
destroy: 1.2.0
|
|
3211
|
+
encodeurl: 2.0.0
|
|
3212
|
+
escape-html: 1.0.3
|
|
3213
|
+
etag: 1.8.1
|
|
3214
|
+
fresh: 0.5.2
|
|
3215
|
+
http-errors: 2.0.1
|
|
3216
|
+
mime: 1.6.0
|
|
3217
|
+
ms: 2.1.3
|
|
3218
|
+
on-finished: 2.4.1
|
|
3219
|
+
range-parser: 1.2.1
|
|
3220
|
+
statuses: 2.0.2
|
|
3221
|
+
transitivePeerDependencies:
|
|
3222
|
+
- supports-color
|
|
3223
|
+
|
|
3224
|
+
serve-static@1.16.3:
|
|
3225
|
+
dependencies:
|
|
3226
|
+
encodeurl: 2.0.0
|
|
3227
|
+
escape-html: 1.0.3
|
|
3228
|
+
parseurl: 1.3.3
|
|
3229
|
+
send: 0.19.2
|
|
3230
|
+
transitivePeerDependencies:
|
|
3231
|
+
- supports-color
|
|
3232
|
+
|
|
3233
|
+
setprototypeof@1.2.0: {}
|
|
3234
|
+
|
|
4543
3235
|
shebang-command@2.0.0:
|
|
4544
3236
|
dependencies:
|
|
4545
3237
|
shebang-regex: 3.0.0
|
|
4546
3238
|
|
|
4547
3239
|
shebang-regex@3.0.0: {}
|
|
4548
3240
|
|
|
4549
|
-
|
|
4550
|
-
|
|
4551
|
-
|
|
4552
|
-
|
|
4553
|
-
source-map-js@1.2.1: {}
|
|
3241
|
+
side-channel-list@1.0.0:
|
|
3242
|
+
dependencies:
|
|
3243
|
+
es-errors: 1.3.0
|
|
3244
|
+
object-inspect: 1.13.4
|
|
4554
3245
|
|
|
4555
|
-
|
|
3246
|
+
side-channel-map@1.0.1:
|
|
4556
3247
|
dependencies:
|
|
4557
|
-
|
|
4558
|
-
|
|
3248
|
+
call-bound: 1.0.4
|
|
3249
|
+
es-errors: 1.3.0
|
|
3250
|
+
get-intrinsic: 1.3.0
|
|
3251
|
+
object-inspect: 1.13.4
|
|
4559
3252
|
|
|
4560
|
-
|
|
3253
|
+
side-channel-weakmap@1.0.2:
|
|
3254
|
+
dependencies:
|
|
3255
|
+
call-bound: 1.0.4
|
|
3256
|
+
es-errors: 1.3.0
|
|
3257
|
+
get-intrinsic: 1.3.0
|
|
3258
|
+
object-inspect: 1.13.4
|
|
3259
|
+
side-channel-map: 1.0.1
|
|
4561
3260
|
|
|
4562
|
-
|
|
3261
|
+
side-channel@1.1.0:
|
|
3262
|
+
dependencies:
|
|
3263
|
+
es-errors: 1.3.0
|
|
3264
|
+
object-inspect: 1.13.4
|
|
3265
|
+
side-channel-list: 1.0.0
|
|
3266
|
+
side-channel-map: 1.0.1
|
|
3267
|
+
side-channel-weakmap: 1.0.2
|
|
4563
3268
|
|
|
4564
|
-
|
|
3269
|
+
simple-wcswidth@1.1.2: {}
|
|
4565
3270
|
|
|
4566
|
-
|
|
4567
|
-
dependencies:
|
|
4568
|
-
inherits: 2.0.4
|
|
4569
|
-
readable-stream: 3.6.2
|
|
3271
|
+
source-map-js@1.2.1: {}
|
|
4570
3272
|
|
|
4571
|
-
|
|
4572
|
-
dependencies:
|
|
4573
|
-
get-east-asian-width: 1.4.0
|
|
4574
|
-
strip-ansi: 7.1.2
|
|
3273
|
+
source-map@0.7.6: {}
|
|
4575
3274
|
|
|
4576
|
-
|
|
4577
|
-
dependencies:
|
|
4578
|
-
safe-buffer: 5.2.1
|
|
3275
|
+
split2@4.2.0: {}
|
|
4579
3276
|
|
|
4580
|
-
|
|
4581
|
-
dependencies:
|
|
4582
|
-
ansi-regex: 6.2.2
|
|
3277
|
+
statuses@2.0.2: {}
|
|
4583
3278
|
|
|
4584
3279
|
strip-json-comments@3.1.1: {}
|
|
4585
3280
|
|
|
4586
|
-
strnum@2.1.2: {}
|
|
4587
|
-
|
|
4588
3281
|
sucrase@3.35.1:
|
|
4589
3282
|
dependencies:
|
|
4590
3283
|
'@jridgewell/gen-mapping': 0.3.13
|
|
@@ -4601,7 +3294,7 @@ snapshots:
|
|
|
4601
3294
|
|
|
4602
3295
|
supports-preserve-symlinks-flag@1.0.0: {}
|
|
4603
3296
|
|
|
4604
|
-
tailwindcss@3.4.19:
|
|
3297
|
+
tailwindcss@3.4.19(tsx@4.21.0):
|
|
4605
3298
|
dependencies:
|
|
4606
3299
|
'@alloc/quick-lru': 5.2.0
|
|
4607
3300
|
arg: 5.0.2
|
|
@@ -4620,7 +3313,7 @@ snapshots:
|
|
|
4620
3313
|
postcss: 8.5.6
|
|
4621
3314
|
postcss-import: 15.1.0(postcss@8.5.6)
|
|
4622
3315
|
postcss-js: 4.1.0(postcss@8.5.6)
|
|
4623
|
-
postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)
|
|
3316
|
+
postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)
|
|
4624
3317
|
postcss-nested: 6.2.0(postcss@8.5.6)
|
|
4625
3318
|
postcss-selector-parser: 6.1.2
|
|
4626
3319
|
resolve: 1.22.11
|
|
@@ -4637,6 +3330,8 @@ snapshots:
|
|
|
4637
3330
|
dependencies:
|
|
4638
3331
|
any-promise: 1.3.0
|
|
4639
3332
|
|
|
3333
|
+
tinyexec@0.3.2: {}
|
|
3334
|
+
|
|
4640
3335
|
tinyglobby@0.2.15:
|
|
4641
3336
|
dependencies:
|
|
4642
3337
|
fdir: 6.5.0(picomatch@4.0.3)
|
|
@@ -4646,7 +3341,9 @@ snapshots:
|
|
|
4646
3341
|
dependencies:
|
|
4647
3342
|
is-number: 7.0.0
|
|
4648
3343
|
|
|
4649
|
-
|
|
3344
|
+
toidentifier@1.0.1: {}
|
|
3345
|
+
|
|
3346
|
+
tree-kill@1.2.2: {}
|
|
4650
3347
|
|
|
4651
3348
|
ts-api-utils@2.4.0(typescript@5.9.3):
|
|
4652
3349
|
dependencies:
|
|
@@ -4656,16 +3353,56 @@ snapshots:
|
|
|
4656
3353
|
|
|
4657
3354
|
tslib@2.8.1: {}
|
|
4658
3355
|
|
|
3356
|
+
tsup@8.5.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3):
|
|
3357
|
+
dependencies:
|
|
3358
|
+
bundle-require: 5.1.0(esbuild@0.27.2)
|
|
3359
|
+
cac: 6.7.14
|
|
3360
|
+
chokidar: 4.0.3
|
|
3361
|
+
consola: 3.4.2
|
|
3362
|
+
debug: 4.4.3
|
|
3363
|
+
esbuild: 0.27.2
|
|
3364
|
+
fix-dts-default-cjs-exports: 1.0.1
|
|
3365
|
+
joycon: 3.1.1
|
|
3366
|
+
picocolors: 1.1.1
|
|
3367
|
+
postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)
|
|
3368
|
+
resolve-from: 5.0.0
|
|
3369
|
+
rollup: 4.55.3
|
|
3370
|
+
source-map: 0.7.6
|
|
3371
|
+
sucrase: 3.35.1
|
|
3372
|
+
tinyexec: 0.3.2
|
|
3373
|
+
tinyglobby: 0.2.15
|
|
3374
|
+
tree-kill: 1.2.2
|
|
3375
|
+
optionalDependencies:
|
|
3376
|
+
postcss: 8.5.6
|
|
3377
|
+
typescript: 5.9.3
|
|
3378
|
+
transitivePeerDependencies:
|
|
3379
|
+
- jiti
|
|
3380
|
+
- supports-color
|
|
3381
|
+
- tsx
|
|
3382
|
+
- yaml
|
|
3383
|
+
|
|
3384
|
+
tsx@4.21.0:
|
|
3385
|
+
dependencies:
|
|
3386
|
+
esbuild: 0.27.2
|
|
3387
|
+
get-tsconfig: 4.13.6
|
|
3388
|
+
optionalDependencies:
|
|
3389
|
+
fsevents: 2.3.3
|
|
3390
|
+
|
|
4659
3391
|
type-check@0.4.0:
|
|
4660
3392
|
dependencies:
|
|
4661
3393
|
prelude-ls: 1.2.1
|
|
4662
3394
|
|
|
4663
|
-
|
|
3395
|
+
type-is@1.6.18:
|
|
3396
|
+
dependencies:
|
|
3397
|
+
media-typer: 0.3.0
|
|
3398
|
+
mime-types: 2.1.35
|
|
3399
|
+
|
|
3400
|
+
typescript-eslint@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3):
|
|
4664
3401
|
dependencies:
|
|
4665
|
-
'@typescript-eslint/eslint-plugin': 8.
|
|
4666
|
-
'@typescript-eslint/parser': 8.
|
|
4667
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
4668
|
-
'@typescript-eslint/utils': 8.
|
|
3402
|
+
'@typescript-eslint/eslint-plugin': 8.53.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
3403
|
+
'@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
3404
|
+
'@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
|
|
3405
|
+
'@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
4669
3406
|
eslint: 9.39.2(jiti@1.21.7)
|
|
4670
3407
|
typescript: 5.9.3
|
|
4671
3408
|
transitivePeerDependencies:
|
|
@@ -4673,6 +3410,12 @@ snapshots:
|
|
|
4673
3410
|
|
|
4674
3411
|
typescript@5.9.3: {}
|
|
4675
3412
|
|
|
3413
|
+
ufo@1.6.3: {}
|
|
3414
|
+
|
|
3415
|
+
undici-types@6.21.0: {}
|
|
3416
|
+
|
|
3417
|
+
unpipe@1.0.0: {}
|
|
3418
|
+
|
|
4676
3419
|
update-browserslist-db@1.2.3(browserslist@4.28.1):
|
|
4677
3420
|
dependencies:
|
|
4678
3421
|
browserslist: 4.28.1
|
|
@@ -4685,19 +3428,25 @@ snapshots:
|
|
|
4685
3428
|
|
|
4686
3429
|
util-deprecate@1.0.2: {}
|
|
4687
3430
|
|
|
3431
|
+
utils-merge@1.0.1: {}
|
|
3432
|
+
|
|
4688
3433
|
uuid@10.0.0: {}
|
|
4689
3434
|
|
|
4690
|
-
|
|
3435
|
+
vary@1.1.2: {}
|
|
3436
|
+
|
|
3437
|
+
vite@7.3.1(@types/node@22.19.15)(jiti@1.21.7)(tsx@4.21.0):
|
|
4691
3438
|
dependencies:
|
|
4692
3439
|
esbuild: 0.27.2
|
|
4693
3440
|
fdir: 6.5.0(picomatch@4.0.3)
|
|
4694
3441
|
picomatch: 4.0.3
|
|
4695
3442
|
postcss: 8.5.6
|
|
4696
|
-
rollup: 4.
|
|
3443
|
+
rollup: 4.55.3
|
|
4697
3444
|
tinyglobby: 0.2.15
|
|
4698
3445
|
optionalDependencies:
|
|
3446
|
+
'@types/node': 22.19.15
|
|
4699
3447
|
fsevents: 2.3.3
|
|
4700
3448
|
jiti: 1.21.7
|
|
3449
|
+
tsx: 4.21.0
|
|
4701
3450
|
|
|
4702
3451
|
which-pm-runs@1.1.0: {}
|
|
4703
3452
|
|
|
@@ -4707,10 +3456,10 @@ snapshots:
|
|
|
4707
3456
|
|
|
4708
3457
|
word-wrap@1.2.5: {}
|
|
4709
3458
|
|
|
3459
|
+
ws@8.19.0: {}
|
|
3460
|
+
|
|
4710
3461
|
xtend@4.0.2: {}
|
|
4711
3462
|
|
|
4712
3463
|
yocto-queue@0.1.0: {}
|
|
4713
3464
|
|
|
4714
|
-
yoctocolors@2.1.2: {}
|
|
4715
|
-
|
|
4716
3465
|
zod@4.3.5: {}
|