@coze-arch/cli 0.0.1-alpha.ee5d83 → 0.0.1-alpha.ef8b63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +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/README.md +4 -2
- 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 +1 -17
- 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 +33 -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 +1 -0
- 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/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/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/next.config.ts +2 -2
- package/lib/__templates__/nextjs/package.json +11 -1
- package/lib/__templates__/nextjs/pnpm-lock.yaml +2701 -1813
- package/lib/__templates__/nextjs/src/app/layout.tsx +5 -3
- package/lib/__templates__/nextjs/src/app/page.tsx +17 -59
- package/lib/__templates__/nextjs/template.config.js +47 -12
- package/lib/__templates__/taro/.coze +14 -0
- package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.sh +19 -0
- package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.sh +14 -0
- package/lib/__templates__/taro/.cozeproj/scripts/dev_build.sh +2 -0
- package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +151 -0
- package/lib/__templates__/taro/.cozeproj/scripts/init_env.sh +5 -0
- package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +24 -0
- package/lib/__templates__/taro/README.md +751 -0
- package/lib/__templates__/taro/_gitignore +40 -0
- package/lib/__templates__/taro/_npmrc +18 -0
- package/lib/__templates__/taro/babel.config.js +12 -0
- package/lib/__templates__/taro/config/dev.ts +9 -0
- package/lib/__templates__/taro/config/index.ts +174 -0
- package/lib/__templates__/taro/config/prod.ts +35 -0
- package/lib/__templates__/taro/eslint.config.mjs +80 -0
- package/lib/__templates__/taro/key/private.appid.key +0 -0
- package/lib/__templates__/taro/package.json +97 -0
- package/lib/__templates__/taro/pnpm-lock.yaml +22706 -0
- package/lib/__templates__/taro/pnpm-workspace.yaml +2 -0
- package/lib/__templates__/taro/project.config.json +15 -0
- package/lib/__templates__/taro/server/nest-cli.json +10 -0
- package/lib/__templates__/taro/server/package.json +40 -0
- package/lib/__templates__/taro/server/src/app.controller.ts +23 -0
- package/lib/__templates__/taro/server/src/app.module.ts +10 -0
- package/lib/__templates__/taro/server/src/app.service.ts +8 -0
- package/lib/__templates__/taro/server/src/interceptors/http-status.interceptor.ts +23 -0
- package/lib/__templates__/taro/server/src/main.ts +49 -0
- package/lib/__templates__/taro/server/tsconfig.json +24 -0
- package/lib/__templates__/taro/src/app.config.ts +11 -0
- package/lib/__templates__/taro/src/app.css +52 -0
- package/lib/__templates__/taro/src/app.tsx +9 -0
- package/lib/__templates__/taro/src/index.html +39 -0
- package/lib/__templates__/taro/src/network.ts +39 -0
- package/lib/__templates__/taro/src/pages/index/index.config.ts +3 -0
- package/lib/__templates__/taro/src/pages/index/index.css +1 -0
- package/lib/__templates__/taro/src/pages/index/index.tsx +33 -0
- package/lib/__templates__/taro/src/presets/h5-container.tsx +17 -0
- package/lib/__templates__/taro/src/presets/h5-navbar.tsx +167 -0
- package/lib/__templates__/taro/src/presets/h5-styles.ts +88 -0
- package/lib/__templates__/taro/src/presets/index.tsx +18 -0
- package/lib/__templates__/taro/src/presets/wx-debug.ts +23 -0
- package/lib/__templates__/taro/stylelint.config.mjs +4 -0
- package/lib/__templates__/taro/template.config.js +68 -0
- package/lib/__templates__/taro/tsconfig.json +29 -0
- package/lib/__templates__/taro/types/global.d.ts +32 -0
- package/lib/__templates__/templates.json +43 -0
- package/lib/__templates__/vite/package.json +10 -1
- package/lib/__templates__/vite/pnpm-lock.yaml +350 -2341
- package/lib/__templates__/vite/src/main.ts +17 -48
- package/lib/__templates__/vite/template.config.js +47 -10
- package/lib/__templates__/vite/vite.config.ts +1 -0
- package/lib/cli.js +850 -135
- package/package.json +2 -1
- 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,26 @@ settings:
|
|
|
4
4
|
autoInstallPeers: true
|
|
5
5
|
excludeLinksFromLockfile: false
|
|
6
6
|
|
|
7
|
+
overrides:
|
|
8
|
+
esbuild: ^0.27.2
|
|
9
|
+
|
|
7
10
|
importers:
|
|
8
11
|
|
|
9
12
|
.:
|
|
13
|
+
dependencies:
|
|
14
|
+
'@supabase/supabase-js':
|
|
15
|
+
specifier: 2.95.3
|
|
16
|
+
version: 2.95.3
|
|
17
|
+
dotenv:
|
|
18
|
+
specifier: ^17.2.3
|
|
19
|
+
version: 17.2.4
|
|
10
20
|
devDependencies:
|
|
11
21
|
autoprefixer:
|
|
12
22
|
specifier: ^10.4.20
|
|
13
23
|
version: 10.4.23(postcss@8.5.6)
|
|
14
24
|
coze-coding-dev-sdk:
|
|
15
|
-
specifier: ^0.7.
|
|
16
|
-
version: 0.7.
|
|
25
|
+
specifier: ^0.7.16
|
|
26
|
+
version: 0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0)
|
|
17
27
|
eslint:
|
|
18
28
|
specifier: ^9
|
|
19
29
|
version: 9.39.2(jiti@1.21.7)
|
|
@@ -31,10 +41,10 @@ importers:
|
|
|
31
41
|
version: 5.9.3
|
|
32
42
|
typescript-eslint:
|
|
33
43
|
specifier: ^8
|
|
34
|
-
version: 8.
|
|
44
|
+
version: 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
35
45
|
vite:
|
|
36
46
|
specifier: ^7.2.4
|
|
37
|
-
version: 7.3.
|
|
47
|
+
version: 7.3.1(@types/node@25.2.3)(jiti@1.21.7)
|
|
38
48
|
|
|
39
49
|
packages:
|
|
40
50
|
|
|
@@ -42,627 +52,159 @@ packages:
|
|
|
42
52
|
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
|
|
43
53
|
engines: {node: '>=10'}
|
|
44
54
|
|
|
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
55
|
'@cfworker/json-schema@4.1.1':
|
|
215
56
|
resolution: {integrity: sha512-gAmrUZSGtKc3AiBL71iNWxDsyUC5uMaKKGdvzYsBoTW/xi42JQHl7eKV2OYzCUqvc+D2RCcf7EXY2iCyFIk6og==}
|
|
216
57
|
|
|
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
58
|
'@esbuild/aix-ppc64@0.27.2':
|
|
235
59
|
resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
|
|
236
60
|
engines: {node: '>=18'}
|
|
237
61
|
cpu: [ppc64]
|
|
238
62
|
os: [aix]
|
|
239
63
|
|
|
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
64
|
'@esbuild/android-arm64@0.27.2':
|
|
253
65
|
resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==}
|
|
254
66
|
engines: {node: '>=18'}
|
|
255
67
|
cpu: [arm64]
|
|
256
68
|
os: [android]
|
|
257
69
|
|
|
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
70
|
'@esbuild/android-arm@0.27.2':
|
|
271
71
|
resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==}
|
|
272
72
|
engines: {node: '>=18'}
|
|
273
73
|
cpu: [arm]
|
|
274
74
|
os: [android]
|
|
275
75
|
|
|
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
76
|
'@esbuild/android-x64@0.27.2':
|
|
289
77
|
resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==}
|
|
290
78
|
engines: {node: '>=18'}
|
|
291
79
|
cpu: [x64]
|
|
292
80
|
os: [android]
|
|
293
81
|
|
|
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
82
|
'@esbuild/darwin-arm64@0.27.2':
|
|
307
83
|
resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==}
|
|
308
84
|
engines: {node: '>=18'}
|
|
309
85
|
cpu: [arm64]
|
|
310
86
|
os: [darwin]
|
|
311
87
|
|
|
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
88
|
'@esbuild/darwin-x64@0.27.2':
|
|
325
89
|
resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==}
|
|
326
90
|
engines: {node: '>=18'}
|
|
327
91
|
cpu: [x64]
|
|
328
92
|
os: [darwin]
|
|
329
93
|
|
|
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
94
|
'@esbuild/freebsd-arm64@0.27.2':
|
|
343
95
|
resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==}
|
|
344
96
|
engines: {node: '>=18'}
|
|
345
97
|
cpu: [arm64]
|
|
346
98
|
os: [freebsd]
|
|
347
99
|
|
|
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
100
|
'@esbuild/freebsd-x64@0.27.2':
|
|
361
101
|
resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==}
|
|
362
102
|
engines: {node: '>=18'}
|
|
363
103
|
cpu: [x64]
|
|
364
104
|
os: [freebsd]
|
|
365
105
|
|
|
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
106
|
'@esbuild/linux-arm64@0.27.2':
|
|
379
107
|
resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==}
|
|
380
108
|
engines: {node: '>=18'}
|
|
381
109
|
cpu: [arm64]
|
|
382
110
|
os: [linux]
|
|
383
111
|
|
|
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
112
|
'@esbuild/linux-arm@0.27.2':
|
|
397
113
|
resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==}
|
|
398
114
|
engines: {node: '>=18'}
|
|
399
115
|
cpu: [arm]
|
|
400
116
|
os: [linux]
|
|
401
117
|
|
|
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
118
|
'@esbuild/linux-ia32@0.27.2':
|
|
415
119
|
resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==}
|
|
416
120
|
engines: {node: '>=18'}
|
|
417
121
|
cpu: [ia32]
|
|
418
122
|
os: [linux]
|
|
419
123
|
|
|
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
124
|
'@esbuild/linux-loong64@0.27.2':
|
|
433
125
|
resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==}
|
|
434
126
|
engines: {node: '>=18'}
|
|
435
127
|
cpu: [loong64]
|
|
436
128
|
os: [linux]
|
|
437
129
|
|
|
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
130
|
'@esbuild/linux-mips64el@0.27.2':
|
|
451
131
|
resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==}
|
|
452
132
|
engines: {node: '>=18'}
|
|
453
133
|
cpu: [mips64el]
|
|
454
134
|
os: [linux]
|
|
455
135
|
|
|
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
136
|
'@esbuild/linux-ppc64@0.27.2':
|
|
469
137
|
resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
|
|
470
138
|
engines: {node: '>=18'}
|
|
471
139
|
cpu: [ppc64]
|
|
472
140
|
os: [linux]
|
|
473
141
|
|
|
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
142
|
'@esbuild/linux-riscv64@0.27.2':
|
|
487
143
|
resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==}
|
|
488
144
|
engines: {node: '>=18'}
|
|
489
145
|
cpu: [riscv64]
|
|
490
146
|
os: [linux]
|
|
491
147
|
|
|
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
148
|
'@esbuild/linux-s390x@0.27.2':
|
|
505
149
|
resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==}
|
|
506
150
|
engines: {node: '>=18'}
|
|
507
151
|
cpu: [s390x]
|
|
508
152
|
os: [linux]
|
|
509
153
|
|
|
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
154
|
'@esbuild/linux-x64@0.27.2':
|
|
523
155
|
resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==}
|
|
524
156
|
engines: {node: '>=18'}
|
|
525
157
|
cpu: [x64]
|
|
526
158
|
os: [linux]
|
|
527
159
|
|
|
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
160
|
'@esbuild/netbsd-arm64@0.27.2':
|
|
535
161
|
resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==}
|
|
536
162
|
engines: {node: '>=18'}
|
|
537
163
|
cpu: [arm64]
|
|
538
164
|
os: [netbsd]
|
|
539
165
|
|
|
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
166
|
'@esbuild/netbsd-x64@0.27.2':
|
|
553
167
|
resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==}
|
|
554
168
|
engines: {node: '>=18'}
|
|
555
169
|
cpu: [x64]
|
|
556
170
|
os: [netbsd]
|
|
557
171
|
|
|
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
172
|
'@esbuild/openbsd-arm64@0.27.2':
|
|
565
173
|
resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==}
|
|
566
174
|
engines: {node: '>=18'}
|
|
567
175
|
cpu: [arm64]
|
|
568
176
|
os: [openbsd]
|
|
569
177
|
|
|
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
178
|
'@esbuild/openbsd-x64@0.27.2':
|
|
583
179
|
resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==}
|
|
584
180
|
engines: {node: '>=18'}
|
|
585
181
|
cpu: [x64]
|
|
586
182
|
os: [openbsd]
|
|
587
183
|
|
|
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
184
|
'@esbuild/openharmony-arm64@0.27.2':
|
|
595
185
|
resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==}
|
|
596
186
|
engines: {node: '>=18'}
|
|
597
187
|
cpu: [arm64]
|
|
598
188
|
os: [openharmony]
|
|
599
189
|
|
|
600
|
-
'@esbuild/sunos-x64@0.18.20':
|
|
601
|
-
resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
|
|
602
|
-
engines: {node: '>=12'}
|
|
603
|
-
cpu: [x64]
|
|
604
|
-
os: [sunos]
|
|
605
|
-
|
|
606
|
-
'@esbuild/sunos-x64@0.25.12':
|
|
607
|
-
resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
|
|
608
|
-
engines: {node: '>=18'}
|
|
609
|
-
cpu: [x64]
|
|
610
|
-
os: [sunos]
|
|
611
|
-
|
|
612
190
|
'@esbuild/sunos-x64@0.27.2':
|
|
613
191
|
resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
|
|
614
192
|
engines: {node: '>=18'}
|
|
615
193
|
cpu: [x64]
|
|
616
194
|
os: [sunos]
|
|
617
195
|
|
|
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
196
|
'@esbuild/win32-arm64@0.27.2':
|
|
631
197
|
resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==}
|
|
632
198
|
engines: {node: '>=18'}
|
|
633
199
|
cpu: [arm64]
|
|
634
200
|
os: [win32]
|
|
635
201
|
|
|
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
202
|
'@esbuild/win32-ia32@0.27.2':
|
|
649
203
|
resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==}
|
|
650
204
|
engines: {node: '>=18'}
|
|
651
205
|
cpu: [ia32]
|
|
652
206
|
os: [win32]
|
|
653
207
|
|
|
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
208
|
'@esbuild/win32-x64@0.27.2':
|
|
667
209
|
resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==}
|
|
668
210
|
engines: {node: '>=18'}
|
|
@@ -736,12 +278,12 @@ packages:
|
|
|
736
278
|
'@jridgewell/trace-mapping@0.3.31':
|
|
737
279
|
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
738
280
|
|
|
739
|
-
'@langchain/core@1.1.
|
|
740
|
-
resolution: {integrity: sha512-
|
|
281
|
+
'@langchain/core@1.1.16':
|
|
282
|
+
resolution: {integrity: sha512-2XKQKxvQdeQiuIo0tacAmDVojhSVAci8D2WDdmmyN+6CqDusLHEHyIDaOt4o+UBvpkyHXbCdrljzDTQY/AKeqg==}
|
|
741
283
|
engines: {node: '>=20'}
|
|
742
284
|
|
|
743
|
-
'@langchain/openai@1.2.
|
|
744
|
-
resolution: {integrity: sha512
|
|
285
|
+
'@langchain/openai@1.2.3':
|
|
286
|
+
resolution: {integrity: sha512-+bKR4+Obz5a/NHEw0bAm3f/s4k0cXc/g46ZRRXqjcyDYP+9wFarItvGNn6DEEk5S7pGp1QqApAQNt9IZk1Ic1Q==}
|
|
745
287
|
engines: {node: '>=20'}
|
|
746
288
|
peerDependencies:
|
|
747
289
|
'@langchain/core': ^1.0.0
|
|
@@ -758,342 +300,167 @@ packages:
|
|
|
758
300
|
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
|
759
301
|
engines: {node: '>= 8'}
|
|
760
302
|
|
|
761
|
-
'@rollup/rollup-android-arm-eabi@4.
|
|
762
|
-
resolution: {integrity: sha512-
|
|
303
|
+
'@rollup/rollup-android-arm-eabi@4.55.3':
|
|
304
|
+
resolution: {integrity: sha512-qyX8+93kK/7R5BEXPC2PjUt0+fS/VO2BVHjEHyIEWiYn88rcRBHmdLgoJjktBltgAf+NY7RfCGB1SoyKS/p9kg==}
|
|
763
305
|
cpu: [arm]
|
|
764
306
|
os: [android]
|
|
765
307
|
|
|
766
|
-
'@rollup/rollup-android-arm64@4.
|
|
767
|
-
resolution: {integrity: sha512-
|
|
308
|
+
'@rollup/rollup-android-arm64@4.55.3':
|
|
309
|
+
resolution: {integrity: sha512-6sHrL42bjt5dHQzJ12Q4vMKfN+kUnZ0atHHnv4V0Wd9JMTk7FDzSY35+7qbz3ypQYMBPANbpGK7JpnWNnhGt8g==}
|
|
768
310
|
cpu: [arm64]
|
|
769
311
|
os: [android]
|
|
770
312
|
|
|
771
|
-
'@rollup/rollup-darwin-arm64@4.
|
|
772
|
-
resolution: {integrity: sha512-
|
|
313
|
+
'@rollup/rollup-darwin-arm64@4.55.3':
|
|
314
|
+
resolution: {integrity: sha512-1ht2SpGIjEl2igJ9AbNpPIKzb1B5goXOcmtD0RFxnwNuMxqkR6AUaaErZz+4o+FKmzxcSNBOLrzsICZVNYa1Rw==}
|
|
773
315
|
cpu: [arm64]
|
|
774
316
|
os: [darwin]
|
|
775
317
|
|
|
776
|
-
'@rollup/rollup-darwin-x64@4.
|
|
777
|
-
resolution: {integrity: sha512-
|
|
318
|
+
'@rollup/rollup-darwin-x64@4.55.3':
|
|
319
|
+
resolution: {integrity: sha512-FYZ4iVunXxtT+CZqQoPVwPhH7549e/Gy7PIRRtq4t5f/vt54pX6eG9ebttRH6QSH7r/zxAFA4EZGlQ0h0FvXiA==}
|
|
778
320
|
cpu: [x64]
|
|
779
321
|
os: [darwin]
|
|
780
322
|
|
|
781
|
-
'@rollup/rollup-freebsd-arm64@4.
|
|
782
|
-
resolution: {integrity: sha512-
|
|
323
|
+
'@rollup/rollup-freebsd-arm64@4.55.3':
|
|
324
|
+
resolution: {integrity: sha512-M/mwDCJ4wLsIgyxv2Lj7Len+UMHd4zAXu4GQ2UaCdksStglWhP61U3uowkaYBQBhVoNpwx5Hputo8eSqM7K82Q==}
|
|
783
325
|
cpu: [arm64]
|
|
784
326
|
os: [freebsd]
|
|
785
327
|
|
|
786
|
-
'@rollup/rollup-freebsd-x64@4.
|
|
787
|
-
resolution: {integrity: sha512-
|
|
328
|
+
'@rollup/rollup-freebsd-x64@4.55.3':
|
|
329
|
+
resolution: {integrity: sha512-5jZT2c7jBCrMegKYTYTpni8mg8y3uY8gzeq2ndFOANwNuC/xJbVAoGKR9LhMDA0H3nIhvaqUoBEuJoICBudFrA==}
|
|
788
330
|
cpu: [x64]
|
|
789
331
|
os: [freebsd]
|
|
790
332
|
|
|
791
|
-
'@rollup/rollup-linux-arm-gnueabihf@4.
|
|
792
|
-
resolution: {integrity: sha512-
|
|
333
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.55.3':
|
|
334
|
+
resolution: {integrity: sha512-YeGUhkN1oA+iSPzzhEjVPS29YbViOr8s4lSsFaZKLHswgqP911xx25fPOyE9+khmN6W4VeM0aevbDp4kkEoHiA==}
|
|
793
335
|
cpu: [arm]
|
|
794
336
|
os: [linux]
|
|
795
337
|
libc: [glibc]
|
|
796
338
|
|
|
797
|
-
'@rollup/rollup-linux-arm-musleabihf@4.
|
|
798
|
-
resolution: {integrity: sha512
|
|
339
|
+
'@rollup/rollup-linux-arm-musleabihf@4.55.3':
|
|
340
|
+
resolution: {integrity: sha512-eo0iOIOvcAlWB3Z3eh8pVM8hZ0oVkK3AjEM9nSrkSug2l15qHzF3TOwT0747omI6+CJJvl7drwZepT+re6Fy/w==}
|
|
799
341
|
cpu: [arm]
|
|
800
342
|
os: [linux]
|
|
801
343
|
libc: [musl]
|
|
802
344
|
|
|
803
|
-
'@rollup/rollup-linux-arm64-gnu@4.
|
|
804
|
-
resolution: {integrity: sha512-
|
|
345
|
+
'@rollup/rollup-linux-arm64-gnu@4.55.3':
|
|
346
|
+
resolution: {integrity: sha512-DJay3ep76bKUDImmn//W5SvpjRN5LmK/ntWyeJs/dcnwiiHESd3N4uteK9FDLf0S0W8E6Y0sVRXpOCoQclQqNg==}
|
|
805
347
|
cpu: [arm64]
|
|
806
348
|
os: [linux]
|
|
807
349
|
libc: [glibc]
|
|
808
350
|
|
|
809
|
-
'@rollup/rollup-linux-arm64-musl@4.
|
|
810
|
-
resolution: {integrity: sha512-
|
|
351
|
+
'@rollup/rollup-linux-arm64-musl@4.55.3':
|
|
352
|
+
resolution: {integrity: sha512-BKKWQkY2WgJ5MC/ayvIJTHjy0JUGb5efaHCUiG/39sSUvAYRBaO3+/EK0AZT1RF3pSj86O24GLLik9mAYu0IJg==}
|
|
811
353
|
cpu: [arm64]
|
|
812
354
|
os: [linux]
|
|
813
355
|
libc: [musl]
|
|
814
356
|
|
|
815
|
-
'@rollup/rollup-linux-loong64-gnu@4.
|
|
816
|
-
resolution: {integrity: sha512-
|
|
357
|
+
'@rollup/rollup-linux-loong64-gnu@4.55.3':
|
|
358
|
+
resolution: {integrity: sha512-Q9nVlWtKAG7ISW80OiZGxTr6rYtyDSkauHUtvkQI6TNOJjFvpj4gcH+KaJihqYInnAzEEUetPQubRwHef4exVg==}
|
|
817
359
|
cpu: [loong64]
|
|
818
360
|
os: [linux]
|
|
819
361
|
libc: [glibc]
|
|
820
362
|
|
|
821
|
-
'@rollup/rollup-linux-
|
|
822
|
-
resolution: {integrity: sha512-
|
|
363
|
+
'@rollup/rollup-linux-loong64-musl@4.55.3':
|
|
364
|
+
resolution: {integrity: sha512-2H5LmhzrpC4fFRNwknzmmTvvyJPHwESoJgyReXeFoYYuIDfBhP29TEXOkCJE/KxHi27mj7wDUClNq78ue3QEBQ==}
|
|
365
|
+
cpu: [loong64]
|
|
366
|
+
os: [linux]
|
|
367
|
+
libc: [musl]
|
|
368
|
+
|
|
369
|
+
'@rollup/rollup-linux-ppc64-gnu@4.55.3':
|
|
370
|
+
resolution: {integrity: sha512-9S542V0ie9LCTznPYlvaeySwBeIEa7rDBgLHKZ5S9DBgcqdJYburabm8TqiqG6mrdTzfV5uttQRHcbKff9lWtA==}
|
|
823
371
|
cpu: [ppc64]
|
|
824
372
|
os: [linux]
|
|
825
373
|
libc: [glibc]
|
|
826
374
|
|
|
827
|
-
'@rollup/rollup-linux-
|
|
828
|
-
resolution: {integrity: sha512-
|
|
375
|
+
'@rollup/rollup-linux-ppc64-musl@4.55.3':
|
|
376
|
+
resolution: {integrity: sha512-ukxw+YH3XXpcezLgbJeasgxyTbdpnNAkrIlFGDl7t+pgCxZ89/6n1a+MxlY7CegU+nDgrgdqDelPRNQ/47zs0g==}
|
|
377
|
+
cpu: [ppc64]
|
|
378
|
+
os: [linux]
|
|
379
|
+
libc: [musl]
|
|
380
|
+
|
|
381
|
+
'@rollup/rollup-linux-riscv64-gnu@4.55.3':
|
|
382
|
+
resolution: {integrity: sha512-Iauw9UsTTvlF++FhghFJjqYxyXdggXsOqGpFBylaRopVpcbfyIIsNvkf9oGwfgIcf57z3m8+/oSYTo6HutBFNw==}
|
|
829
383
|
cpu: [riscv64]
|
|
830
384
|
os: [linux]
|
|
831
385
|
libc: [glibc]
|
|
832
386
|
|
|
833
|
-
'@rollup/rollup-linux-riscv64-musl@4.
|
|
834
|
-
resolution: {integrity: sha512-
|
|
387
|
+
'@rollup/rollup-linux-riscv64-musl@4.55.3':
|
|
388
|
+
resolution: {integrity: sha512-3OqKAHSEQXKdq9mQ4eajqUgNIK27VZPW3I26EP8miIzuKzCJ3aW3oEn2pzF+4/Hj/Moc0YDsOtBgT5bZ56/vcA==}
|
|
835
389
|
cpu: [riscv64]
|
|
836
390
|
os: [linux]
|
|
837
391
|
libc: [musl]
|
|
838
392
|
|
|
839
|
-
'@rollup/rollup-linux-s390x-gnu@4.
|
|
840
|
-
resolution: {integrity: sha512-
|
|
393
|
+
'@rollup/rollup-linux-s390x-gnu@4.55.3':
|
|
394
|
+
resolution: {integrity: sha512-0CM8dSVzVIaqMcXIFej8zZrSFLnGrAE8qlNbbHfTw1EEPnFTg1U1ekI0JdzjPyzSfUsHWtodilQQG/RA55berA==}
|
|
841
395
|
cpu: [s390x]
|
|
842
396
|
os: [linux]
|
|
843
397
|
libc: [glibc]
|
|
844
398
|
|
|
845
|
-
'@rollup/rollup-linux-x64-gnu@4.
|
|
846
|
-
resolution: {integrity: sha512
|
|
399
|
+
'@rollup/rollup-linux-x64-gnu@4.55.3':
|
|
400
|
+
resolution: {integrity: sha512-+fgJE12FZMIgBaKIAGd45rxf+5ftcycANJRWk8Vz0NnMTM5rADPGuRFTYar+Mqs560xuART7XsX2lSACa1iOmQ==}
|
|
847
401
|
cpu: [x64]
|
|
848
402
|
os: [linux]
|
|
849
403
|
libc: [glibc]
|
|
850
404
|
|
|
851
|
-
'@rollup/rollup-linux-x64-musl@4.
|
|
852
|
-
resolution: {integrity: sha512-
|
|
405
|
+
'@rollup/rollup-linux-x64-musl@4.55.3':
|
|
406
|
+
resolution: {integrity: sha512-tMD7NnbAolWPzQlJQJjVFh/fNH3K/KnA7K8gv2dJWCwwnaK6DFCYST1QXYWfu5V0cDwarWC8Sf/cfMHniNq21A==}
|
|
853
407
|
cpu: [x64]
|
|
854
408
|
os: [linux]
|
|
855
409
|
libc: [musl]
|
|
856
410
|
|
|
857
|
-
'@rollup/rollup-
|
|
858
|
-
resolution: {integrity: sha512-
|
|
411
|
+
'@rollup/rollup-openbsd-x64@4.55.3':
|
|
412
|
+
resolution: {integrity: sha512-u5KsqxOxjEeIbn7bUK1MPM34jrnPwjeqgyin4/N6e/KzXKfpE9Mi0nCxcQjaM9lLmPcHmn/xx1yOjgTMtu1jWQ==}
|
|
413
|
+
cpu: [x64]
|
|
414
|
+
os: [openbsd]
|
|
415
|
+
|
|
416
|
+
'@rollup/rollup-openharmony-arm64@4.55.3':
|
|
417
|
+
resolution: {integrity: sha512-vo54aXwjpTtsAnb3ca7Yxs9t2INZg7QdXN/7yaoG7nPGbOBXYXQY41Km+S1Ov26vzOAzLcAjmMdjyEqS1JkVhw==}
|
|
859
418
|
cpu: [arm64]
|
|
860
419
|
os: [openharmony]
|
|
861
420
|
|
|
862
|
-
'@rollup/rollup-win32-arm64-msvc@4.
|
|
863
|
-
resolution: {integrity: sha512-
|
|
421
|
+
'@rollup/rollup-win32-arm64-msvc@4.55.3':
|
|
422
|
+
resolution: {integrity: sha512-HI+PIVZ+m+9AgpnY3pt6rinUdRYrGHvmVdsNQ4odNqQ/eRF78DVpMR7mOq7nW06QxpczibwBmeQzB68wJ+4W4A==}
|
|
864
423
|
cpu: [arm64]
|
|
865
424
|
os: [win32]
|
|
866
425
|
|
|
867
|
-
'@rollup/rollup-win32-ia32-msvc@4.
|
|
868
|
-
resolution: {integrity: sha512-
|
|
426
|
+
'@rollup/rollup-win32-ia32-msvc@4.55.3':
|
|
427
|
+
resolution: {integrity: sha512-vRByotbdMo3Wdi+8oC2nVxtc3RkkFKrGaok+a62AT8lz/YBuQjaVYAS5Zcs3tPzW43Vsf9J0wehJbUY5xRSekA==}
|
|
869
428
|
cpu: [ia32]
|
|
870
429
|
os: [win32]
|
|
871
430
|
|
|
872
|
-
'@rollup/rollup-win32-x64-gnu@4.
|
|
873
|
-
resolution: {integrity: sha512-
|
|
431
|
+
'@rollup/rollup-win32-x64-gnu@4.55.3':
|
|
432
|
+
resolution: {integrity: sha512-POZHq7UeuzMJljC5NjKi8vKMFN6/5EOqcX1yGntNLp7rUTpBAXQ1hW8kWPFxYLv07QMcNM75xqVLGPWQq6TKFA==}
|
|
874
433
|
cpu: [x64]
|
|
875
434
|
os: [win32]
|
|
876
435
|
|
|
877
|
-
'@rollup/rollup-win32-x64-msvc@4.
|
|
878
|
-
resolution: {integrity: sha512-
|
|
436
|
+
'@rollup/rollup-win32-x64-msvc@4.55.3':
|
|
437
|
+
resolution: {integrity: sha512-aPFONczE4fUFKNXszdvnd2GqKEYQdV5oEsIbKPujJmWlCI9zEsv1Otig8RKK+X9bed9gFUN6LAeN4ZcNuu4zjg==}
|
|
879
438
|
cpu: [x64]
|
|
880
439
|
os: [win32]
|
|
881
440
|
|
|
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'}
|
|
1033
|
-
|
|
1034
|
-
'@smithy/util-body-length-node@4.2.1':
|
|
1035
|
-
resolution: {integrity: sha512-h53dz/pISVrVrfxV1iqXlx5pRg3V2YWFcSQyPyXZRrZoZj4R4DeWRDo1a7dd3CPTcFi3kE+98tuNyD2axyZReA==}
|
|
1036
|
-
engines: {node: '>=18.0.0'}
|
|
1037
|
-
|
|
1038
|
-
'@smithy/util-buffer-from@2.2.0':
|
|
1039
|
-
resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==}
|
|
1040
|
-
engines: {node: '>=14.0.0'}
|
|
1041
|
-
|
|
1042
|
-
'@smithy/util-buffer-from@4.2.0':
|
|
1043
|
-
resolution: {integrity: sha512-kAY9hTKulTNevM2nlRtxAG2FQ3B2OR6QIrPY3zE5LqJy1oxzmgBGsHLWTcNhWXKchgA0WHW+mZkQrng/pgcCew==}
|
|
1044
|
-
engines: {node: '>=18.0.0'}
|
|
1045
|
-
|
|
1046
|
-
'@smithy/util-config-provider@4.2.0':
|
|
1047
|
-
resolution: {integrity: sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q==}
|
|
1048
|
-
engines: {node: '>=18.0.0'}
|
|
1049
|
-
|
|
1050
|
-
'@smithy/util-defaults-mode-browser@4.3.21':
|
|
1051
|
-
resolution: {integrity: sha512-DtmVJarzqtjghtGjCw/PFJolcJkP7GkZgy+hWTAN3YLXNH+IC82uMoMhFoC3ZtIz5mOgCm5+hOGi1wfhVYgrxw==}
|
|
1052
|
-
engines: {node: '>=18.0.0'}
|
|
1053
|
-
|
|
1054
|
-
'@smithy/util-defaults-mode-node@4.2.24':
|
|
1055
|
-
resolution: {integrity: sha512-JelBDKPAVswVY666rezBvY6b0nF/v9TXjUbNwDNAyme7qqKYEX687wJv0uze8lBIZVbg30wlWnlYfVSjjpKYFA==}
|
|
1056
|
-
engines: {node: '>=18.0.0'}
|
|
1057
|
-
|
|
1058
|
-
'@smithy/util-endpoints@3.2.8':
|
|
1059
|
-
resolution: {integrity: sha512-8JaVTn3pBDkhZgHQ8R0epwWt+BqPSLCjdjXXusK1onwJlRuN69fbvSK66aIKKO7SwVFM6x2J2ox5X8pOaWcUEw==}
|
|
1060
|
-
engines: {node: '>=18.0.0'}
|
|
1061
|
-
|
|
1062
|
-
'@smithy/util-hex-encoding@4.2.0':
|
|
1063
|
-
resolution: {integrity: sha512-CCQBwJIvXMLKxVbO88IukazJD9a4kQ9ZN7/UMGBjBcJYvatpWk+9g870El4cB8/EJxfe+k+y0GmR9CAzkF+Nbw==}
|
|
1064
|
-
engines: {node: '>=18.0.0'}
|
|
1065
|
-
|
|
1066
|
-
'@smithy/util-middleware@4.2.8':
|
|
1067
|
-
resolution: {integrity: sha512-PMqfeJxLcNPMDgvPbbLl/2Vpin+luxqTGPpW3NAQVLbRrFRzTa4rNAASYeIGjRV9Ytuhzny39SpyU04EQreF+A==}
|
|
1068
|
-
engines: {node: '>=18.0.0'}
|
|
1069
|
-
|
|
1070
|
-
'@smithy/util-retry@4.2.8':
|
|
1071
|
-
resolution: {integrity: sha512-CfJqwvoRY0kTGe5AkQokpURNCT1u/MkRzMTASWMPPo2hNSnKtF1D45dQl3DE2LKLr4m+PW9mCeBMJr5mCAVThg==}
|
|
1072
|
-
engines: {node: '>=18.0.0'}
|
|
1073
|
-
|
|
1074
|
-
'@smithy/util-stream@4.5.10':
|
|
1075
|
-
resolution: {integrity: sha512-jbqemy51UFSZSp2y0ZmRfckmrzuKww95zT9BYMmuJ8v3altGcqjwoV1tzpOwuHaKrwQrCjIzOib499ymr2f98g==}
|
|
1076
|
-
engines: {node: '>=18.0.0'}
|
|
441
|
+
'@supabase/auth-js@2.95.3':
|
|
442
|
+
resolution: {integrity: sha512-vD2YoS8E2iKIX0F7EwXTmqhUpaNsmbU6X2R0/NdFcs02oEfnHyNP/3M716f3wVJ2E5XHGiTFXki6lRckhJ0Thg==}
|
|
443
|
+
engines: {node: '>=20.0.0'}
|
|
1077
444
|
|
|
1078
|
-
'@
|
|
1079
|
-
resolution: {integrity: sha512-
|
|
1080
|
-
engines: {node: '>=
|
|
445
|
+
'@supabase/functions-js@2.95.3':
|
|
446
|
+
resolution: {integrity: sha512-uTuOAKzs9R/IovW1krO0ZbUHSJnsnyJElTXIRhjJTqymIVGcHzkAYnBCJqd7468Fs/Foz1BQ7Dv6DCl05lr7ig==}
|
|
447
|
+
engines: {node: '>=20.0.0'}
|
|
1081
448
|
|
|
1082
|
-
'@
|
|
1083
|
-
resolution: {integrity: sha512-
|
|
1084
|
-
engines: {node: '>=
|
|
449
|
+
'@supabase/postgrest-js@2.95.3':
|
|
450
|
+
resolution: {integrity: sha512-LTrRBqU1gOovxRm1vRXPItSMPBmEFqrfTqdPTRtzOILV4jPSueFz6pES5hpb4LRlkFwCPRmv3nQJ5N625V2Xrg==}
|
|
451
|
+
engines: {node: '>=20.0.0'}
|
|
1085
452
|
|
|
1086
|
-
'@
|
|
1087
|
-
resolution: {integrity: sha512-
|
|
1088
|
-
engines: {node: '>=
|
|
453
|
+
'@supabase/realtime-js@2.95.3':
|
|
454
|
+
resolution: {integrity: sha512-D7EAtfU3w6BEUxDACjowWNJo/ZRo7sDIuhuOGKHIm9FHieGeoJV5R6GKTLtga/5l/6fDr2u+WcW/m8I9SYmaIw==}
|
|
455
|
+
engines: {node: '>=20.0.0'}
|
|
1089
456
|
|
|
1090
|
-
'@
|
|
1091
|
-
resolution: {integrity: sha512-
|
|
1092
|
-
engines: {node: '>=
|
|
457
|
+
'@supabase/storage-js@2.95.3':
|
|
458
|
+
resolution: {integrity: sha512-4GxkJiXI3HHWjxpC3sDx1BVrV87O0hfX+wvJdqGv67KeCu+g44SPnII8y0LL/Wr677jB7tpjAxKdtVWf+xhc9A==}
|
|
459
|
+
engines: {node: '>=20.0.0'}
|
|
1093
460
|
|
|
1094
|
-
'@
|
|
1095
|
-
resolution: {integrity: sha512-
|
|
1096
|
-
engines: {node: '>=
|
|
461
|
+
'@supabase/supabase-js@2.95.3':
|
|
462
|
+
resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
|
|
463
|
+
engines: {node: '>=20.0.0'}
|
|
1097
464
|
|
|
1098
465
|
'@types/estree@1.0.8':
|
|
1099
466
|
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
@@ -1101,66 +468,75 @@ packages:
|
|
|
1101
468
|
'@types/json-schema@7.0.15':
|
|
1102
469
|
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
|
1103
470
|
|
|
471
|
+
'@types/node@25.2.3':
|
|
472
|
+
resolution: {integrity: sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==}
|
|
473
|
+
|
|
474
|
+
'@types/phoenix@1.6.7':
|
|
475
|
+
resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
|
|
476
|
+
|
|
1104
477
|
'@types/uuid@10.0.0':
|
|
1105
478
|
resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
|
|
1106
479
|
|
|
1107
|
-
'@
|
|
1108
|
-
resolution: {integrity: sha512-
|
|
480
|
+
'@types/ws@8.18.1':
|
|
481
|
+
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
|
|
482
|
+
|
|
483
|
+
'@typescript-eslint/eslint-plugin@8.53.1':
|
|
484
|
+
resolution: {integrity: sha512-cFYYFZ+oQFi6hUnBTbLRXfTJiaQtYE3t4O692agbBl+2Zy+eqSKWtPjhPXJu1G7j4RLjKgeJPDdq3EqOwmX5Ag==}
|
|
1109
485
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1110
486
|
peerDependencies:
|
|
1111
|
-
'@typescript-eslint/parser': ^8.
|
|
487
|
+
'@typescript-eslint/parser': ^8.53.1
|
|
1112
488
|
eslint: ^8.57.0 || ^9.0.0
|
|
1113
489
|
typescript: '>=4.8.4 <6.0.0'
|
|
1114
490
|
|
|
1115
|
-
'@typescript-eslint/parser@8.
|
|
1116
|
-
resolution: {integrity: sha512-
|
|
491
|
+
'@typescript-eslint/parser@8.53.1':
|
|
492
|
+
resolution: {integrity: sha512-nm3cvFN9SqZGXjmw5bZ6cGmvJSyJPn0wU9gHAZZHDnZl2wF9PhHv78Xf06E0MaNk4zLVHL8hb2/c32XvyJOLQg==}
|
|
1117
493
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1118
494
|
peerDependencies:
|
|
1119
495
|
eslint: ^8.57.0 || ^9.0.0
|
|
1120
496
|
typescript: '>=4.8.4 <6.0.0'
|
|
1121
497
|
|
|
1122
|
-
'@typescript-eslint/project-service@8.
|
|
1123
|
-
resolution: {integrity: sha512-
|
|
498
|
+
'@typescript-eslint/project-service@8.53.1':
|
|
499
|
+
resolution: {integrity: sha512-WYC4FB5Ra0xidsmlPb+1SsnaSKPmS3gsjIARwbEkHkoWloQmuzcfypljaJcR78uyLA1h8sHdWWPHSLDI+MtNog==}
|
|
1124
500
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1125
501
|
peerDependencies:
|
|
1126
502
|
typescript: '>=4.8.4 <6.0.0'
|
|
1127
503
|
|
|
1128
|
-
'@typescript-eslint/scope-manager@8.
|
|
1129
|
-
resolution: {integrity: sha512-
|
|
504
|
+
'@typescript-eslint/scope-manager@8.53.1':
|
|
505
|
+
resolution: {integrity: sha512-Lu23yw1uJMFY8cUeq7JlrizAgeQvWugNQzJp8C3x8Eo5Jw5Q2ykMdiiTB9vBVOOUBysMzmRRmUfwFrZuI2C4SQ==}
|
|
1130
506
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1131
507
|
|
|
1132
|
-
'@typescript-eslint/tsconfig-utils@8.
|
|
1133
|
-
resolution: {integrity: sha512-
|
|
508
|
+
'@typescript-eslint/tsconfig-utils@8.53.1':
|
|
509
|
+
resolution: {integrity: sha512-qfvLXS6F6b1y43pnf0pPbXJ+YoXIC7HKg0UGZ27uMIemKMKA6XH2DTxsEDdpdN29D+vHV07x/pnlPNVLhdhWiA==}
|
|
1134
510
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1135
511
|
peerDependencies:
|
|
1136
512
|
typescript: '>=4.8.4 <6.0.0'
|
|
1137
513
|
|
|
1138
|
-
'@typescript-eslint/type-utils@8.
|
|
1139
|
-
resolution: {integrity: sha512-
|
|
514
|
+
'@typescript-eslint/type-utils@8.53.1':
|
|
515
|
+
resolution: {integrity: sha512-MOrdtNvyhy0rHyv0ENzub1d4wQYKb2NmIqG7qEqPWFW7Mpy2jzFC3pQ2yKDvirZB7jypm5uGjF2Qqs6OIqu47w==}
|
|
1140
516
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1141
517
|
peerDependencies:
|
|
1142
518
|
eslint: ^8.57.0 || ^9.0.0
|
|
1143
519
|
typescript: '>=4.8.4 <6.0.0'
|
|
1144
520
|
|
|
1145
|
-
'@typescript-eslint/types@8.
|
|
1146
|
-
resolution: {integrity: sha512-
|
|
521
|
+
'@typescript-eslint/types@8.53.1':
|
|
522
|
+
resolution: {integrity: sha512-jr/swrr2aRmUAUjW5/zQHbMaui//vQlsZcJKijZf3M26bnmLj8LyZUpj8/Rd6uzaek06OWsqdofN/Thenm5O8A==}
|
|
1147
523
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1148
524
|
|
|
1149
|
-
'@typescript-eslint/typescript-estree@8.
|
|
1150
|
-
resolution: {integrity: sha512-
|
|
525
|
+
'@typescript-eslint/typescript-estree@8.53.1':
|
|
526
|
+
resolution: {integrity: sha512-RGlVipGhQAG4GxV1s34O91cxQ/vWiHJTDHbXRr0li2q/BGg3RR/7NM8QDWgkEgrwQYCvmJV9ichIwyoKCQ+DTg==}
|
|
1151
527
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1152
528
|
peerDependencies:
|
|
1153
529
|
typescript: '>=4.8.4 <6.0.0'
|
|
1154
530
|
|
|
1155
|
-
'@typescript-eslint/utils@8.
|
|
1156
|
-
resolution: {integrity: sha512-
|
|
531
|
+
'@typescript-eslint/utils@8.53.1':
|
|
532
|
+
resolution: {integrity: sha512-c4bMvGVWW4hv6JmDUEG7fSYlWOl3II2I4ylt0NM+seinYQlZMQIaKaXIIVJWt9Ofh6whrpM+EdDQXKXjNovvrg==}
|
|
1157
533
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1158
534
|
peerDependencies:
|
|
1159
535
|
eslint: ^8.57.0 || ^9.0.0
|
|
1160
536
|
typescript: '>=4.8.4 <6.0.0'
|
|
1161
537
|
|
|
1162
|
-
'@typescript-eslint/visitor-keys@8.
|
|
1163
|
-
resolution: {integrity: sha512-
|
|
538
|
+
'@typescript-eslint/visitor-keys@8.53.1':
|
|
539
|
+
resolution: {integrity: sha512-oy+wV7xDKFPRyNggmXuZQSBzvoLnpmJs+GhzRhPjrxl2b/jIlyjVokzm47CZCDUdXKr2zd7ZLodPfOBpOPyPlg==}
|
|
1164
540
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
1165
541
|
|
|
1166
542
|
acorn-jsx@5.3.2:
|
|
@@ -1176,10 +552,6 @@ packages:
|
|
|
1176
552
|
ajv@6.12.6:
|
|
1177
553
|
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
|
|
1178
554
|
|
|
1179
|
-
ansi-regex@6.2.2:
|
|
1180
|
-
resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
|
|
1181
|
-
engines: {node: '>=12'}
|
|
1182
|
-
|
|
1183
555
|
ansi-styles@4.3.0:
|
|
1184
556
|
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
|
1185
557
|
engines: {node: '>=8'}
|
|
@@ -1220,17 +592,14 @@ packages:
|
|
|
1220
592
|
base64-js@1.5.1:
|
|
1221
593
|
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
|
1222
594
|
|
|
1223
|
-
baseline-browser-mapping@2.9.
|
|
1224
|
-
resolution: {integrity: sha512-
|
|
595
|
+
baseline-browser-mapping@2.9.16:
|
|
596
|
+
resolution: {integrity: sha512-KeUZdBuxngy825i8xvzaK1Ncnkx0tBmb3k8DkEuqjKRkmtvNTjey2ZsNeh8Dw4lfKvbCOu9oeNx2TKm2vHqcRw==}
|
|
1225
597
|
hasBin: true
|
|
1226
598
|
|
|
1227
599
|
binary-extensions@2.3.0:
|
|
1228
600
|
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
|
|
1229
601
|
engines: {node: '>=8'}
|
|
1230
602
|
|
|
1231
|
-
bowser@2.13.1:
|
|
1232
|
-
resolution: {integrity: sha512-OHawaAbjwx6rqICCKgSG0SAnT05bzd7ppyKLVUITZpANBaaMFBAsaNkto3LoQ31tyFP5kNujE8Cdx85G9VzOkw==}
|
|
1233
|
-
|
|
1234
603
|
brace-expansion@1.1.12:
|
|
1235
604
|
resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
|
|
1236
605
|
|
|
@@ -1246,12 +615,6 @@ packages:
|
|
|
1246
615
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
1247
616
|
hasBin: true
|
|
1248
617
|
|
|
1249
|
-
buffer-from@1.1.2:
|
|
1250
|
-
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
|
|
1251
|
-
|
|
1252
|
-
buffer@5.6.0:
|
|
1253
|
-
resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==}
|
|
1254
|
-
|
|
1255
618
|
call-bind-apply-helpers@1.0.2:
|
|
1256
619
|
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
|
|
1257
620
|
engines: {node: '>= 0.4'}
|
|
@@ -1268,29 +631,17 @@ packages:
|
|
|
1268
631
|
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
|
|
1269
632
|
engines: {node: '>=10'}
|
|
1270
633
|
|
|
1271
|
-
caniuse-lite@1.0.
|
|
1272
|
-
resolution: {integrity: sha512-
|
|
634
|
+
caniuse-lite@1.0.30001765:
|
|
635
|
+
resolution: {integrity: sha512-LWcNtSyZrakjECqmpP4qdg0MMGdN368D7X8XvvAqOcqMv0RxnlqVKZl2V6/mBR68oYMxOZPLw/gO7DuisMHUvQ==}
|
|
1273
636
|
|
|
1274
637
|
chalk@4.1.2:
|
|
1275
638
|
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
|
1276
639
|
engines: {node: '>=10'}
|
|
1277
640
|
|
|
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
641
|
chokidar@3.6.0:
|
|
1283
642
|
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
|
|
1284
643
|
engines: {node: '>= 8.10.0'}
|
|
1285
644
|
|
|
1286
|
-
cli-cursor@5.0.0:
|
|
1287
|
-
resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
|
|
1288
|
-
engines: {node: '>=18'}
|
|
1289
|
-
|
|
1290
|
-
cli-spinners@3.4.0:
|
|
1291
|
-
resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==}
|
|
1292
|
-
engines: {node: '>=18.20'}
|
|
1293
|
-
|
|
1294
645
|
color-convert@2.0.1:
|
|
1295
646
|
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
|
1296
647
|
engines: {node: '>=7.0.0'}
|
|
@@ -1302,10 +653,6 @@ packages:
|
|
|
1302
653
|
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
|
|
1303
654
|
engines: {node: '>= 0.8'}
|
|
1304
655
|
|
|
1305
|
-
commander@14.0.2:
|
|
1306
|
-
resolution: {integrity: sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ==}
|
|
1307
|
-
engines: {node: '>=20'}
|
|
1308
|
-
|
|
1309
656
|
commander@4.1.1:
|
|
1310
657
|
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
|
|
1311
658
|
engines: {node: '>= 6'}
|
|
@@ -1316,8 +663,8 @@ packages:
|
|
|
1316
663
|
console-table-printer@2.15.0:
|
|
1317
664
|
resolution: {integrity: sha512-SrhBq4hYVjLCkBVOWaTzceJalvn5K1Zq5aQA6wXC/cYjI3frKWNPEMK3sZsJfNNQApvCQmgBcc13ZKmFj8qExw==}
|
|
1318
665
|
|
|
1319
|
-
coze-coding-dev-sdk@0.7.
|
|
1320
|
-
resolution: {integrity: sha512-
|
|
666
|
+
coze-coding-dev-sdk@0.7.16:
|
|
667
|
+
resolution: {integrity: sha512-B7gRPBa+sfrZL8ur0+F/92SOgZgFaWD/fOnCN2DjthnHSdmCYhAJWCfqzG2oO2vwTiYCXkKUuTBZ3MJLMj886g==}
|
|
1321
668
|
engines: {node: '>=18.0.0'}
|
|
1322
669
|
hasBin: true
|
|
1323
670
|
|
|
@@ -1356,101 +703,9 @@ packages:
|
|
|
1356
703
|
dlv@1.1.3:
|
|
1357
704
|
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
|
|
1358
705
|
|
|
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
|
|
706
|
+
dotenv@17.2.4:
|
|
707
|
+
resolution: {integrity: sha512-mudtfb4zRB4bVvdj0xRo+e6duH1csJRM8IukBqfTRvHotn9+LBXB8ynAidP9zHqoRC/fsllXgk4kCKlR21fIhw==}
|
|
708
|
+
engines: {node: '>=12'}
|
|
1454
709
|
|
|
1455
710
|
dunder-proto@1.0.1:
|
|
1456
711
|
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
|
|
@@ -1475,21 +730,6 @@ packages:
|
|
|
1475
730
|
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
|
|
1476
731
|
engines: {node: '>= 0.4'}
|
|
1477
732
|
|
|
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
733
|
esbuild@0.27.2:
|
|
1494
734
|
resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
|
|
1495
735
|
engines: {node: '>=18'}
|
|
@@ -1548,10 +788,6 @@ packages:
|
|
|
1548
788
|
eventemitter3@4.0.7:
|
|
1549
789
|
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
|
|
1550
790
|
|
|
1551
|
-
events@3.3.0:
|
|
1552
|
-
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
|
|
1553
|
-
engines: {node: '>=0.8.x'}
|
|
1554
|
-
|
|
1555
791
|
fast-deep-equal@3.1.3:
|
|
1556
792
|
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
|
1557
793
|
|
|
@@ -1565,10 +801,6 @@ packages:
|
|
|
1565
801
|
fast-levenshtein@2.0.6:
|
|
1566
802
|
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
|
1567
803
|
|
|
1568
|
-
fast-xml-parser@5.2.5:
|
|
1569
|
-
resolution: {integrity: sha512-pfX9uG9Ki0yekDHx2SiuRIyFdyAr1kMIMitPvb0YBo8SUfKvia7w7FIyd/l6av85pFYRhZscS75MwMnbvY+hcQ==}
|
|
1570
|
-
hasBin: true
|
|
1571
|
-
|
|
1572
804
|
fastq@1.20.1:
|
|
1573
805
|
resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
|
|
1574
806
|
|
|
@@ -1624,10 +856,6 @@ packages:
|
|
|
1624
856
|
function-bind@1.1.2:
|
|
1625
857
|
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
|
1626
858
|
|
|
1627
|
-
get-east-asian-width@1.4.0:
|
|
1628
|
-
resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==}
|
|
1629
|
-
engines: {node: '>=18'}
|
|
1630
|
-
|
|
1631
859
|
get-intrinsic@1.3.0:
|
|
1632
860
|
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
|
|
1633
861
|
engines: {node: '>= 0.4'}
|
|
@@ -1636,9 +864,6 @@ packages:
|
|
|
1636
864
|
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
|
|
1637
865
|
engines: {node: '>= 0.4'}
|
|
1638
866
|
|
|
1639
|
-
get-tsconfig@4.13.0:
|
|
1640
|
-
resolution: {integrity: sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==}
|
|
1641
|
-
|
|
1642
867
|
glob-parent@5.1.2:
|
|
1643
868
|
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
|
1644
869
|
engines: {node: '>= 6'}
|
|
@@ -1671,8 +896,9 @@ packages:
|
|
|
1671
896
|
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
|
|
1672
897
|
engines: {node: '>= 0.4'}
|
|
1673
898
|
|
|
1674
|
-
|
|
1675
|
-
resolution: {integrity: sha512-
|
|
899
|
+
iceberg-js@0.8.1:
|
|
900
|
+
resolution: {integrity: sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==}
|
|
901
|
+
engines: {node: '>=20.0.0'}
|
|
1676
902
|
|
|
1677
903
|
ignore@5.3.2:
|
|
1678
904
|
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
|
@@ -1690,9 +916,6 @@ packages:
|
|
|
1690
916
|
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
|
1691
917
|
engines: {node: '>=0.8.19'}
|
|
1692
918
|
|
|
1693
|
-
inherits@2.0.4:
|
|
1694
|
-
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
|
1695
|
-
|
|
1696
919
|
is-binary-path@2.1.0:
|
|
1697
920
|
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
|
1698
921
|
engines: {node: '>=8'}
|
|
@@ -1709,18 +932,10 @@ packages:
|
|
|
1709
932
|
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
|
1710
933
|
engines: {node: '>=0.10.0'}
|
|
1711
934
|
|
|
1712
|
-
is-interactive@2.0.0:
|
|
1713
|
-
resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==}
|
|
1714
|
-
engines: {node: '>=12'}
|
|
1715
|
-
|
|
1716
935
|
is-number@7.0.0:
|
|
1717
936
|
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
|
1718
937
|
engines: {node: '>=0.12.0'}
|
|
1719
938
|
|
|
1720
|
-
is-unicode-supported@2.1.0:
|
|
1721
|
-
resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
|
|
1722
|
-
engines: {node: '>=18'}
|
|
1723
|
-
|
|
1724
939
|
isexe@2.0.0:
|
|
1725
940
|
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
|
1726
941
|
|
|
@@ -1782,10 +997,6 @@ packages:
|
|
|
1782
997
|
lodash.merge@4.6.2:
|
|
1783
998
|
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
|
1784
999
|
|
|
1785
|
-
log-symbols@7.0.1:
|
|
1786
|
-
resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
|
|
1787
|
-
engines: {node: '>=18'}
|
|
1788
|
-
|
|
1789
1000
|
math-intrinsics@1.1.0:
|
|
1790
1001
|
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
|
|
1791
1002
|
engines: {node: '>= 0.4'}
|
|
@@ -1806,10 +1017,6 @@ packages:
|
|
|
1806
1017
|
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
|
|
1807
1018
|
engines: {node: '>= 0.6'}
|
|
1808
1019
|
|
|
1809
|
-
mimic-function@5.0.1:
|
|
1810
|
-
resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
|
|
1811
|
-
engines: {node: '>=18'}
|
|
1812
|
-
|
|
1813
1020
|
minimatch@3.1.2:
|
|
1814
1021
|
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
|
|
1815
1022
|
|
|
@@ -1850,10 +1057,6 @@ packages:
|
|
|
1850
1057
|
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
|
|
1851
1058
|
engines: {node: '>= 6'}
|
|
1852
1059
|
|
|
1853
|
-
onetime@7.0.0:
|
|
1854
|
-
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
|
|
1855
|
-
engines: {node: '>=18'}
|
|
1856
|
-
|
|
1857
1060
|
only-allow@1.2.2:
|
|
1858
1061
|
resolution: {integrity: sha512-uxyNYDsCh5YIJ780G7hC5OHjVUr9reHsbZNMM80L9tZlTpb3hUzb36KXgW4ZUGtJKQnGA3xegmWg1BxhWV0jJA==}
|
|
1859
1062
|
hasBin: true
|
|
@@ -1874,10 +1077,6 @@ packages:
|
|
|
1874
1077
|
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
|
|
1875
1078
|
engines: {node: '>= 0.8.0'}
|
|
1876
1079
|
|
|
1877
|
-
ora@9.0.0:
|
|
1878
|
-
resolution: {integrity: sha512-m0pg2zscbYgWbqRR6ABga5c3sZdEon7bSgjnlXC64kxtxLOyjRcbbUkLj7HFyy/FTD+P2xdBWu8snGhYI0jc4A==}
|
|
1879
|
-
engines: {node: '>=20'}
|
|
1880
|
-
|
|
1881
1080
|
p-finally@1.0.0:
|
|
1882
1081
|
resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
|
|
1883
1082
|
engines: {node: '>=4'}
|
|
@@ -1913,11 +1112,8 @@ packages:
|
|
|
1913
1112
|
path-parse@1.0.7:
|
|
1914
1113
|
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
|
1915
1114
|
|
|
1916
|
-
pg-
|
|
1917
|
-
resolution: {integrity: sha512-
|
|
1918
|
-
|
|
1919
|
-
pg-connection-string@2.10.0:
|
|
1920
|
-
resolution: {integrity: sha512-ur/eoPKzDx2IjPaYyXS6Y8NSblxM7X64deV2ObV57vhjsWiwLvUD6meukAzogiOsu60GO8m/3Cb6FdJsWNjwXg==}
|
|
1115
|
+
pg-connection-string@2.10.1:
|
|
1116
|
+
resolution: {integrity: sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==}
|
|
1921
1117
|
|
|
1922
1118
|
pg-int8@1.0.1:
|
|
1923
1119
|
resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==}
|
|
@@ -1935,8 +1131,8 @@ packages:
|
|
|
1935
1131
|
resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==}
|
|
1936
1132
|
engines: {node: '>=4'}
|
|
1937
1133
|
|
|
1938
|
-
pg@8.17.
|
|
1939
|
-
resolution: {integrity: sha512-
|
|
1134
|
+
pg@8.17.2:
|
|
1135
|
+
resolution: {integrity: sha512-vjbKdiBJRqzcYw1fNU5KuHyYvdJ1qpcQg1CeBrHFqV1pWgHeVR6j/+kX0E1AAXfyuLUGY1ICrN2ELKA/z2HWzw==}
|
|
1940
1136
|
engines: {node: '>= 16.0.0'}
|
|
1941
1137
|
peerDependencies:
|
|
1942
1138
|
pg-native: '>=3.0.1'
|
|
@@ -2046,10 +1242,6 @@ packages:
|
|
|
2046
1242
|
read-cache@1.0.0:
|
|
2047
1243
|
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
|
|
2048
1244
|
|
|
2049
|
-
readable-stream@3.6.2:
|
|
2050
|
-
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
|
|
2051
|
-
engines: {node: '>= 6'}
|
|
2052
|
-
|
|
2053
1245
|
readdirp@3.6.0:
|
|
2054
1246
|
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
|
|
2055
1247
|
engines: {node: '>=8.10.0'}
|
|
@@ -2058,33 +1250,23 @@ packages:
|
|
|
2058
1250
|
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
|
2059
1251
|
engines: {node: '>=4'}
|
|
2060
1252
|
|
|
2061
|
-
resolve-pkg-maps@1.0.0:
|
|
2062
|
-
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
2063
|
-
|
|
2064
1253
|
resolve@1.22.11:
|
|
2065
1254
|
resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
|
|
2066
1255
|
engines: {node: '>= 0.4'}
|
|
2067
1256
|
hasBin: true
|
|
2068
1257
|
|
|
2069
|
-
restore-cursor@5.1.0:
|
|
2070
|
-
resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
|
|
2071
|
-
engines: {node: '>=18'}
|
|
2072
|
-
|
|
2073
1258
|
reusify@1.1.0:
|
|
2074
1259
|
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
|
|
2075
1260
|
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
|
2076
1261
|
|
|
2077
|
-
rollup@4.
|
|
2078
|
-
resolution: {integrity: sha512-
|
|
1262
|
+
rollup@4.55.3:
|
|
1263
|
+
resolution: {integrity: sha512-y9yUpfQvetAjiDLtNMf1hL9NXchIJgWt6zIKeoB+tCd3npX08Eqfzg60V9DhIGVMtQ0AlMkFw5xa+AQ37zxnAA==}
|
|
2079
1264
|
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
2080
1265
|
hasBin: true
|
|
2081
1266
|
|
|
2082
1267
|
run-parallel@1.2.0:
|
|
2083
1268
|
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
|
2084
1269
|
|
|
2085
|
-
safe-buffer@5.2.1:
|
|
2086
|
-
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
|
2087
|
-
|
|
2088
1270
|
semver@7.7.3:
|
|
2089
1271
|
resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
|
|
2090
1272
|
engines: {node: '>=10'}
|
|
@@ -2098,10 +1280,6 @@ packages:
|
|
|
2098
1280
|
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
2099
1281
|
engines: {node: '>=8'}
|
|
2100
1282
|
|
|
2101
|
-
signal-exit@4.1.0:
|
|
2102
|
-
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
|
|
2103
|
-
engines: {node: '>=14'}
|
|
2104
|
-
|
|
2105
1283
|
simple-wcswidth@1.1.2:
|
|
2106
1284
|
resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
|
|
2107
1285
|
|
|
@@ -2109,42 +1287,14 @@ packages:
|
|
|
2109
1287
|
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
2110
1288
|
engines: {node: '>=0.10.0'}
|
|
2111
1289
|
|
|
2112
|
-
source-map-support@0.5.21:
|
|
2113
|
-
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
|
|
2114
|
-
|
|
2115
|
-
source-map@0.6.1:
|
|
2116
|
-
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
|
|
2117
|
-
engines: {node: '>=0.10.0'}
|
|
2118
|
-
|
|
2119
1290
|
split2@4.2.0:
|
|
2120
1291
|
resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
|
|
2121
1292
|
engines: {node: '>= 10.x'}
|
|
2122
1293
|
|
|
2123
|
-
stdin-discarder@0.2.2:
|
|
2124
|
-
resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
|
|
2125
|
-
engines: {node: '>=18'}
|
|
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'}
|
|
2140
|
-
|
|
2141
1294
|
strip-json-comments@3.1.1:
|
|
2142
1295
|
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
|
2143
1296
|
engines: {node: '>=8'}
|
|
2144
1297
|
|
|
2145
|
-
strnum@2.1.2:
|
|
2146
|
-
resolution: {integrity: sha512-l63NF9y/cLROq/yqKXSLtcMeeyOfnSQlfMSlzFt/K73oIaD8DGaQWd7Z34X9GPiKqP5rbSh84Hl4bOlLcjiSrQ==}
|
|
2147
|
-
|
|
2148
1298
|
sucrase@3.35.1:
|
|
2149
1299
|
resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
|
|
2150
1300
|
engines: {node: '>=16 || 14 >=14.17'}
|
|
@@ -2178,11 +1328,6 @@ packages:
|
|
|
2178
1328
|
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
|
2179
1329
|
engines: {node: '>=8.0'}
|
|
2180
1330
|
|
|
2181
|
-
transliteration@2.6.0:
|
|
2182
|
-
resolution: {integrity: sha512-T6frfMj7N5xNK0l+duIzIWKxkc9ewG72uv7NeOs4dIoysqTnYpwxeVEE5qYdKKmy7hby55ah0wNUoMaLsB2Zjw==}
|
|
2183
|
-
engines: {node: '>=20.0.0'}
|
|
2184
|
-
hasBin: true
|
|
2185
|
-
|
|
2186
1331
|
ts-api-utils@2.4.0:
|
|
2187
1332
|
resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
|
|
2188
1333
|
engines: {node: '>=18.12'}
|
|
@@ -2199,8 +1344,8 @@ packages:
|
|
|
2199
1344
|
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
2200
1345
|
engines: {node: '>= 0.8.0'}
|
|
2201
1346
|
|
|
2202
|
-
typescript-eslint@8.
|
|
2203
|
-
resolution: {integrity: sha512-
|
|
1347
|
+
typescript-eslint@8.53.1:
|
|
1348
|
+
resolution: {integrity: sha512-gB+EVQfP5RDElh9ittfXlhZJdjSU4jUSTyE2+ia8CYyNvet4ElfaLlAIqDvQV9JPknKx0jQH1racTYe/4LaLSg==}
|
|
2204
1349
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
2205
1350
|
peerDependencies:
|
|
2206
1351
|
eslint: ^8.57.0 || ^9.0.0
|
|
@@ -2211,6 +1356,9 @@ packages:
|
|
|
2211
1356
|
engines: {node: '>=14.17'}
|
|
2212
1357
|
hasBin: true
|
|
2213
1358
|
|
|
1359
|
+
undici-types@7.16.0:
|
|
1360
|
+
resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
|
|
1361
|
+
|
|
2214
1362
|
update-browserslist-db@1.2.3:
|
|
2215
1363
|
resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
|
|
2216
1364
|
hasBin: true
|
|
@@ -2227,8 +1375,8 @@ packages:
|
|
|
2227
1375
|
resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
|
|
2228
1376
|
hasBin: true
|
|
2229
1377
|
|
|
2230
|
-
vite@7.3.
|
|
2231
|
-
resolution: {integrity: sha512-
|
|
1378
|
+
vite@7.3.1:
|
|
1379
|
+
resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==}
|
|
2232
1380
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
2233
1381
|
hasBin: true
|
|
2234
1382
|
peerDependencies:
|
|
@@ -2280,6 +1428,18 @@ packages:
|
|
|
2280
1428
|
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
|
|
2281
1429
|
engines: {node: '>=0.10.0'}
|
|
2282
1430
|
|
|
1431
|
+
ws@8.19.0:
|
|
1432
|
+
resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
|
|
1433
|
+
engines: {node: '>=10.0.0'}
|
|
1434
|
+
peerDependencies:
|
|
1435
|
+
bufferutil: ^4.0.1
|
|
1436
|
+
utf-8-validate: '>=5.0.2'
|
|
1437
|
+
peerDependenciesMeta:
|
|
1438
|
+
bufferutil:
|
|
1439
|
+
optional: true
|
|
1440
|
+
utf-8-validate:
|
|
1441
|
+
optional: true
|
|
1442
|
+
|
|
2283
1443
|
xtend@4.0.2:
|
|
2284
1444
|
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
|
|
2285
1445
|
engines: {node: '>=0.4'}
|
|
@@ -2288,744 +1448,88 @@ packages:
|
|
|
2288
1448
|
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
|
2289
1449
|
engines: {node: '>=10'}
|
|
2290
1450
|
|
|
2291
|
-
yoctocolors@2.1.2:
|
|
2292
|
-
resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
|
|
2293
|
-
engines: {node: '>=18'}
|
|
2294
|
-
|
|
2295
1451
|
zod@4.3.5:
|
|
2296
1452
|
resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==}
|
|
2297
1453
|
|
|
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
|
|
2774
|
-
|
|
2775
|
-
'@aws-sdk/util-user-agent-browser@3.969.0':
|
|
2776
|
-
dependencies:
|
|
2777
|
-
'@aws-sdk/types': 3.969.0
|
|
2778
|
-
'@smithy/types': 4.12.0
|
|
2779
|
-
bowser: 2.13.1
|
|
2780
|
-
tslib: 2.8.1
|
|
2781
|
-
|
|
2782
|
-
'@aws-sdk/util-user-agent-node@3.969.0':
|
|
2783
|
-
dependencies:
|
|
2784
|
-
'@aws-sdk/middleware-user-agent': 3.969.0
|
|
2785
|
-
'@aws-sdk/types': 3.969.0
|
|
2786
|
-
'@smithy/node-config-provider': 4.3.8
|
|
2787
|
-
'@smithy/types': 4.12.0
|
|
2788
|
-
tslib: 2.8.1
|
|
2789
|
-
|
|
2790
|
-
'@aws-sdk/xml-builder@3.969.0':
|
|
2791
|
-
dependencies:
|
|
2792
|
-
'@smithy/types': 4.12.0
|
|
2793
|
-
fast-xml-parser: 5.2.5
|
|
2794
|
-
tslib: 2.8.1
|
|
2795
|
-
|
|
2796
|
-
'@aws/lambda-invoke-store@0.2.3': {}
|
|
2797
|
-
|
|
2798
|
-
'@cfworker/json-schema@4.1.1': {}
|
|
2799
|
-
|
|
2800
|
-
'@drizzle-team/brocli@0.10.2': {}
|
|
2801
|
-
|
|
2802
|
-
'@esbuild-kit/core-utils@3.3.2':
|
|
2803
|
-
dependencies:
|
|
2804
|
-
esbuild: 0.18.20
|
|
2805
|
-
source-map-support: 0.5.21
|
|
2806
|
-
|
|
2807
|
-
'@esbuild-kit/esm-loader@2.6.5':
|
|
2808
|
-
dependencies:
|
|
2809
|
-
'@esbuild-kit/core-utils': 3.3.2
|
|
2810
|
-
get-tsconfig: 4.13.0
|
|
2811
|
-
|
|
2812
|
-
'@esbuild/aix-ppc64@0.25.12':
|
|
2813
|
-
optional: true
|
|
2814
|
-
|
|
2815
|
-
'@esbuild/aix-ppc64@0.27.2':
|
|
2816
|
-
optional: true
|
|
2817
|
-
|
|
2818
|
-
'@esbuild/android-arm64@0.18.20':
|
|
2819
|
-
optional: true
|
|
2820
|
-
|
|
2821
|
-
'@esbuild/android-arm64@0.25.12':
|
|
2822
|
-
optional: true
|
|
2823
|
-
|
|
2824
|
-
'@esbuild/android-arm64@0.27.2':
|
|
2825
|
-
optional: true
|
|
2826
|
-
|
|
2827
|
-
'@esbuild/android-arm@0.18.20':
|
|
2828
|
-
optional: true
|
|
2829
|
-
|
|
2830
|
-
'@esbuild/android-arm@0.25.12':
|
|
2831
|
-
optional: true
|
|
2832
|
-
|
|
2833
|
-
'@esbuild/android-arm@0.27.2':
|
|
2834
|
-
optional: true
|
|
2835
|
-
|
|
2836
|
-
'@esbuild/android-x64@0.18.20':
|
|
2837
|
-
optional: true
|
|
2838
|
-
|
|
2839
|
-
'@esbuild/android-x64@0.25.12':
|
|
2840
|
-
optional: true
|
|
2841
|
-
|
|
2842
|
-
'@esbuild/android-x64@0.27.2':
|
|
2843
|
-
optional: true
|
|
2844
|
-
|
|
2845
|
-
'@esbuild/darwin-arm64@0.18.20':
|
|
2846
|
-
optional: true
|
|
2847
|
-
|
|
2848
|
-
'@esbuild/darwin-arm64@0.25.12':
|
|
2849
|
-
optional: true
|
|
2850
|
-
|
|
2851
|
-
'@esbuild/darwin-arm64@0.27.2':
|
|
2852
|
-
optional: true
|
|
2853
|
-
|
|
2854
|
-
'@esbuild/darwin-x64@0.18.20':
|
|
2855
|
-
optional: true
|
|
2856
|
-
|
|
2857
|
-
'@esbuild/darwin-x64@0.25.12':
|
|
2858
|
-
optional: true
|
|
2859
|
-
|
|
2860
|
-
'@esbuild/darwin-x64@0.27.2':
|
|
2861
|
-
optional: true
|
|
2862
|
-
|
|
2863
|
-
'@esbuild/freebsd-arm64@0.18.20':
|
|
2864
|
-
optional: true
|
|
2865
|
-
|
|
2866
|
-
'@esbuild/freebsd-arm64@0.25.12':
|
|
2867
|
-
optional: true
|
|
2868
|
-
|
|
2869
|
-
'@esbuild/freebsd-arm64@0.27.2':
|
|
2870
|
-
optional: true
|
|
2871
|
-
|
|
2872
|
-
'@esbuild/freebsd-x64@0.18.20':
|
|
2873
|
-
optional: true
|
|
2874
|
-
|
|
2875
|
-
'@esbuild/freebsd-x64@0.25.12':
|
|
2876
|
-
optional: true
|
|
2877
|
-
|
|
2878
|
-
'@esbuild/freebsd-x64@0.27.2':
|
|
2879
|
-
optional: true
|
|
2880
|
-
|
|
2881
|
-
'@esbuild/linux-arm64@0.18.20':
|
|
2882
|
-
optional: true
|
|
2883
|
-
|
|
2884
|
-
'@esbuild/linux-arm64@0.25.12':
|
|
2885
|
-
optional: true
|
|
2886
|
-
|
|
2887
|
-
'@esbuild/linux-arm64@0.27.2':
|
|
2888
|
-
optional: true
|
|
2889
|
-
|
|
2890
|
-
'@esbuild/linux-arm@0.18.20':
|
|
2891
|
-
optional: true
|
|
2892
|
-
|
|
2893
|
-
'@esbuild/linux-arm@0.25.12':
|
|
2894
|
-
optional: true
|
|
2895
|
-
|
|
2896
|
-
'@esbuild/linux-arm@0.27.2':
|
|
2897
|
-
optional: true
|
|
2898
|
-
|
|
2899
|
-
'@esbuild/linux-ia32@0.18.20':
|
|
2900
|
-
optional: true
|
|
2901
|
-
|
|
2902
|
-
'@esbuild/linux-ia32@0.25.12':
|
|
2903
|
-
optional: true
|
|
2904
|
-
|
|
2905
|
-
'@esbuild/linux-ia32@0.27.2':
|
|
2906
|
-
optional: true
|
|
2907
|
-
|
|
2908
|
-
'@esbuild/linux-loong64@0.18.20':
|
|
2909
|
-
optional: true
|
|
2910
|
-
|
|
2911
|
-
'@esbuild/linux-loong64@0.25.12':
|
|
2912
|
-
optional: true
|
|
2913
|
-
|
|
2914
|
-
'@esbuild/linux-loong64@0.27.2':
|
|
2915
|
-
optional: true
|
|
2916
|
-
|
|
2917
|
-
'@esbuild/linux-mips64el@0.18.20':
|
|
2918
|
-
optional: true
|
|
2919
|
-
|
|
2920
|
-
'@esbuild/linux-mips64el@0.25.12':
|
|
2921
|
-
optional: true
|
|
2922
|
-
|
|
2923
|
-
'@esbuild/linux-mips64el@0.27.2':
|
|
2924
|
-
optional: true
|
|
2925
|
-
|
|
2926
|
-
'@esbuild/linux-ppc64@0.18.20':
|
|
2927
|
-
optional: true
|
|
2928
|
-
|
|
2929
|
-
'@esbuild/linux-ppc64@0.25.12':
|
|
2930
|
-
optional: true
|
|
2931
|
-
|
|
2932
|
-
'@esbuild/linux-ppc64@0.27.2':
|
|
2933
|
-
optional: true
|
|
2934
|
-
|
|
2935
|
-
'@esbuild/linux-riscv64@0.18.20':
|
|
2936
|
-
optional: true
|
|
2937
|
-
|
|
2938
|
-
'@esbuild/linux-riscv64@0.25.12':
|
|
2939
|
-
optional: true
|
|
2940
|
-
|
|
2941
|
-
'@esbuild/linux-riscv64@0.27.2':
|
|
2942
|
-
optional: true
|
|
2943
|
-
|
|
2944
|
-
'@esbuild/linux-s390x@0.18.20':
|
|
2945
|
-
optional: true
|
|
2946
|
-
|
|
2947
|
-
'@esbuild/linux-s390x@0.25.12':
|
|
2948
|
-
optional: true
|
|
1454
|
+
snapshots:
|
|
2949
1455
|
|
|
2950
|
-
'@
|
|
2951
|
-
optional: true
|
|
1456
|
+
'@alloc/quick-lru@5.2.0': {}
|
|
2952
1457
|
|
|
2953
|
-
'@
|
|
2954
|
-
optional: true
|
|
1458
|
+
'@cfworker/json-schema@4.1.1': {}
|
|
2955
1459
|
|
|
2956
|
-
'@esbuild/
|
|
1460
|
+
'@esbuild/aix-ppc64@0.27.2':
|
|
2957
1461
|
optional: true
|
|
2958
1462
|
|
|
2959
|
-
'@esbuild/
|
|
1463
|
+
'@esbuild/android-arm64@0.27.2':
|
|
2960
1464
|
optional: true
|
|
2961
1465
|
|
|
2962
|
-
'@esbuild/
|
|
1466
|
+
'@esbuild/android-arm@0.27.2':
|
|
2963
1467
|
optional: true
|
|
2964
1468
|
|
|
2965
|
-
'@esbuild/
|
|
1469
|
+
'@esbuild/android-x64@0.27.2':
|
|
2966
1470
|
optional: true
|
|
2967
1471
|
|
|
2968
|
-
'@esbuild/
|
|
1472
|
+
'@esbuild/darwin-arm64@0.27.2':
|
|
2969
1473
|
optional: true
|
|
2970
1474
|
|
|
2971
|
-
'@esbuild/
|
|
1475
|
+
'@esbuild/darwin-x64@0.27.2':
|
|
2972
1476
|
optional: true
|
|
2973
1477
|
|
|
2974
|
-
'@esbuild/
|
|
1478
|
+
'@esbuild/freebsd-arm64@0.27.2':
|
|
2975
1479
|
optional: true
|
|
2976
1480
|
|
|
2977
|
-
'@esbuild/
|
|
1481
|
+
'@esbuild/freebsd-x64@0.27.2':
|
|
2978
1482
|
optional: true
|
|
2979
1483
|
|
|
2980
|
-
'@esbuild/
|
|
1484
|
+
'@esbuild/linux-arm64@0.27.2':
|
|
2981
1485
|
optional: true
|
|
2982
1486
|
|
|
2983
|
-
'@esbuild/
|
|
1487
|
+
'@esbuild/linux-arm@0.27.2':
|
|
2984
1488
|
optional: true
|
|
2985
1489
|
|
|
2986
|
-
'@esbuild/
|
|
1490
|
+
'@esbuild/linux-ia32@0.27.2':
|
|
2987
1491
|
optional: true
|
|
2988
1492
|
|
|
2989
|
-
'@esbuild/
|
|
1493
|
+
'@esbuild/linux-loong64@0.27.2':
|
|
2990
1494
|
optional: true
|
|
2991
1495
|
|
|
2992
|
-
'@esbuild/
|
|
1496
|
+
'@esbuild/linux-mips64el@0.27.2':
|
|
2993
1497
|
optional: true
|
|
2994
1498
|
|
|
2995
|
-
'@esbuild/
|
|
1499
|
+
'@esbuild/linux-ppc64@0.27.2':
|
|
2996
1500
|
optional: true
|
|
2997
1501
|
|
|
2998
|
-
'@esbuild/
|
|
1502
|
+
'@esbuild/linux-riscv64@0.27.2':
|
|
2999
1503
|
optional: true
|
|
3000
1504
|
|
|
3001
|
-
'@esbuild/
|
|
1505
|
+
'@esbuild/linux-s390x@0.27.2':
|
|
3002
1506
|
optional: true
|
|
3003
1507
|
|
|
3004
|
-
'@esbuild/
|
|
1508
|
+
'@esbuild/linux-x64@0.27.2':
|
|
3005
1509
|
optional: true
|
|
3006
1510
|
|
|
3007
|
-
'@esbuild/
|
|
1511
|
+
'@esbuild/netbsd-arm64@0.27.2':
|
|
3008
1512
|
optional: true
|
|
3009
1513
|
|
|
3010
|
-
'@esbuild/
|
|
1514
|
+
'@esbuild/netbsd-x64@0.27.2':
|
|
3011
1515
|
optional: true
|
|
3012
1516
|
|
|
3013
|
-
'@esbuild/
|
|
1517
|
+
'@esbuild/openbsd-arm64@0.27.2':
|
|
3014
1518
|
optional: true
|
|
3015
1519
|
|
|
3016
|
-
'@esbuild/
|
|
1520
|
+
'@esbuild/openbsd-x64@0.27.2':
|
|
3017
1521
|
optional: true
|
|
3018
1522
|
|
|
3019
|
-
'@esbuild/
|
|
1523
|
+
'@esbuild/openharmony-arm64@0.27.2':
|
|
3020
1524
|
optional: true
|
|
3021
1525
|
|
|
3022
|
-
'@esbuild/
|
|
1526
|
+
'@esbuild/sunos-x64@0.27.2':
|
|
3023
1527
|
optional: true
|
|
3024
1528
|
|
|
3025
|
-
'@esbuild/win32-
|
|
1529
|
+
'@esbuild/win32-arm64@0.27.2':
|
|
3026
1530
|
optional: true
|
|
3027
1531
|
|
|
3028
|
-
'@esbuild/win32-
|
|
1532
|
+
'@esbuild/win32-ia32@0.27.2':
|
|
3029
1533
|
optional: true
|
|
3030
1534
|
|
|
3031
1535
|
'@esbuild/win32-x64@0.27.2':
|
|
@@ -3102,14 +1606,14 @@ snapshots:
|
|
|
3102
1606
|
'@jridgewell/resolve-uri': 3.1.2
|
|
3103
1607
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
3104
1608
|
|
|
3105
|
-
'@langchain/core@1.1.
|
|
1609
|
+
'@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))':
|
|
3106
1610
|
dependencies:
|
|
3107
1611
|
'@cfworker/json-schema': 4.1.1
|
|
3108
1612
|
ansi-styles: 5.2.0
|
|
3109
1613
|
camelcase: 6.3.0
|
|
3110
1614
|
decamelize: 1.2.0
|
|
3111
1615
|
js-tiktoken: 1.0.21
|
|
3112
|
-
langsmith: 0.4.7(openai@6.16.0(zod@4.3.5))
|
|
1616
|
+
langsmith: 0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
|
|
3113
1617
|
mustache: 4.2.0
|
|
3114
1618
|
p-queue: 6.6.2
|
|
3115
1619
|
uuid: 10.0.0
|
|
@@ -3120,11 +1624,11 @@ snapshots:
|
|
|
3120
1624
|
- '@opentelemetry/sdk-trace-base'
|
|
3121
1625
|
- openai
|
|
3122
1626
|
|
|
3123
|
-
'@langchain/openai@1.2.
|
|
1627
|
+
'@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
1628
|
dependencies:
|
|
3125
|
-
'@langchain/core': 1.1.
|
|
1629
|
+
'@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
|
|
3126
1630
|
js-tiktoken: 1.0.21
|
|
3127
|
-
openai: 6.16.0(zod@4.3.5)
|
|
1631
|
+
openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
|
|
3128
1632
|
zod: 4.3.5
|
|
3129
1633
|
transitivePeerDependencies:
|
|
3130
1634
|
- ws
|
|
@@ -3141,424 +1645,143 @@ snapshots:
|
|
|
3141
1645
|
'@nodelib/fs.scandir': 2.1.5
|
|
3142
1646
|
fastq: 1.20.1
|
|
3143
1647
|
|
|
3144
|
-
'@rollup/rollup-android-arm-eabi@4.
|
|
1648
|
+
'@rollup/rollup-android-arm-eabi@4.55.3':
|
|
3145
1649
|
optional: true
|
|
3146
1650
|
|
|
3147
|
-
'@rollup/rollup-android-arm64@4.
|
|
1651
|
+
'@rollup/rollup-android-arm64@4.55.3':
|
|
3148
1652
|
optional: true
|
|
3149
1653
|
|
|
3150
|
-
'@rollup/rollup-darwin-arm64@4.
|
|
1654
|
+
'@rollup/rollup-darwin-arm64@4.55.3':
|
|
3151
1655
|
optional: true
|
|
3152
1656
|
|
|
3153
|
-
'@rollup/rollup-darwin-x64@4.
|
|
1657
|
+
'@rollup/rollup-darwin-x64@4.55.3':
|
|
3154
1658
|
optional: true
|
|
3155
1659
|
|
|
3156
|
-
'@rollup/rollup-freebsd-arm64@4.
|
|
1660
|
+
'@rollup/rollup-freebsd-arm64@4.55.3':
|
|
3157
1661
|
optional: true
|
|
3158
1662
|
|
|
3159
|
-
'@rollup/rollup-freebsd-x64@4.
|
|
1663
|
+
'@rollup/rollup-freebsd-x64@4.55.3':
|
|
3160
1664
|
optional: true
|
|
3161
1665
|
|
|
3162
|
-
'@rollup/rollup-linux-arm-gnueabihf@4.
|
|
1666
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.55.3':
|
|
3163
1667
|
optional: true
|
|
3164
1668
|
|
|
3165
|
-
'@rollup/rollup-linux-arm-musleabihf@4.
|
|
1669
|
+
'@rollup/rollup-linux-arm-musleabihf@4.55.3':
|
|
3166
1670
|
optional: true
|
|
3167
1671
|
|
|
3168
|
-
'@rollup/rollup-linux-arm64-gnu@4.
|
|
1672
|
+
'@rollup/rollup-linux-arm64-gnu@4.55.3':
|
|
3169
1673
|
optional: true
|
|
3170
1674
|
|
|
3171
|
-
'@rollup/rollup-linux-arm64-musl@4.
|
|
1675
|
+
'@rollup/rollup-linux-arm64-musl@4.55.3':
|
|
3172
1676
|
optional: true
|
|
3173
1677
|
|
|
3174
|
-
'@rollup/rollup-linux-loong64-gnu@4.
|
|
1678
|
+
'@rollup/rollup-linux-loong64-gnu@4.55.3':
|
|
3175
1679
|
optional: true
|
|
3176
1680
|
|
|
3177
|
-
'@rollup/rollup-linux-
|
|
1681
|
+
'@rollup/rollup-linux-loong64-musl@4.55.3':
|
|
3178
1682
|
optional: true
|
|
3179
1683
|
|
|
3180
|
-
'@rollup/rollup-linux-
|
|
1684
|
+
'@rollup/rollup-linux-ppc64-gnu@4.55.3':
|
|
3181
1685
|
optional: true
|
|
3182
1686
|
|
|
3183
|
-
'@rollup/rollup-linux-
|
|
1687
|
+
'@rollup/rollup-linux-ppc64-musl@4.55.3':
|
|
3184
1688
|
optional: true
|
|
3185
1689
|
|
|
3186
|
-
'@rollup/rollup-linux-
|
|
1690
|
+
'@rollup/rollup-linux-riscv64-gnu@4.55.3':
|
|
3187
1691
|
optional: true
|
|
3188
1692
|
|
|
3189
|
-
'@rollup/rollup-linux-
|
|
1693
|
+
'@rollup/rollup-linux-riscv64-musl@4.55.3':
|
|
3190
1694
|
optional: true
|
|
3191
1695
|
|
|
3192
|
-
'@rollup/rollup-linux-
|
|
1696
|
+
'@rollup/rollup-linux-s390x-gnu@4.55.3':
|
|
3193
1697
|
optional: true
|
|
3194
1698
|
|
|
3195
|
-
'@rollup/rollup-
|
|
1699
|
+
'@rollup/rollup-linux-x64-gnu@4.55.3':
|
|
3196
1700
|
optional: true
|
|
3197
1701
|
|
|
3198
|
-
'@rollup/rollup-
|
|
1702
|
+
'@rollup/rollup-linux-x64-musl@4.55.3':
|
|
3199
1703
|
optional: true
|
|
3200
1704
|
|
|
3201
|
-
'@rollup/rollup-
|
|
1705
|
+
'@rollup/rollup-openbsd-x64@4.55.3':
|
|
3202
1706
|
optional: true
|
|
3203
1707
|
|
|
3204
|
-
'@rollup/rollup-
|
|
1708
|
+
'@rollup/rollup-openharmony-arm64@4.55.3':
|
|
3205
1709
|
optional: true
|
|
3206
1710
|
|
|
3207
|
-
'@rollup/rollup-win32-
|
|
1711
|
+
'@rollup/rollup-win32-arm64-msvc@4.55.3':
|
|
3208
1712
|
optional: true
|
|
3209
1713
|
|
|
3210
|
-
'@
|
|
3211
|
-
|
|
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
|
|
3324
|
-
|
|
3325
|
-
'@smithy/md5-js@4.2.8':
|
|
3326
|
-
dependencies:
|
|
3327
|
-
'@smithy/types': 4.12.0
|
|
3328
|
-
'@smithy/util-utf8': 4.2.0
|
|
3329
|
-
tslib: 2.8.1
|
|
3330
|
-
|
|
3331
|
-
'@smithy/middleware-content-length@4.2.8':
|
|
3332
|
-
dependencies:
|
|
3333
|
-
'@smithy/protocol-http': 5.3.8
|
|
3334
|
-
'@smithy/types': 4.12.0
|
|
3335
|
-
tslib: 2.8.1
|
|
3336
|
-
|
|
3337
|
-
'@smithy/middleware-endpoint@4.4.6':
|
|
3338
|
-
dependencies:
|
|
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
|
|
3347
|
-
|
|
3348
|
-
'@smithy/middleware-retry@4.4.22':
|
|
3349
|
-
dependencies:
|
|
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
|
|
3359
|
-
|
|
3360
|
-
'@smithy/middleware-serde@4.2.9':
|
|
3361
|
-
dependencies:
|
|
3362
|
-
'@smithy/protocol-http': 5.3.8
|
|
3363
|
-
'@smithy/types': 4.12.0
|
|
3364
|
-
tslib: 2.8.1
|
|
3365
|
-
|
|
3366
|
-
'@smithy/middleware-stack@4.2.8':
|
|
3367
|
-
dependencies:
|
|
3368
|
-
'@smithy/types': 4.12.0
|
|
3369
|
-
tslib: 2.8.1
|
|
3370
|
-
|
|
3371
|
-
'@smithy/node-config-provider@4.3.8':
|
|
3372
|
-
dependencies:
|
|
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
|
|
3377
|
-
|
|
3378
|
-
'@smithy/node-http-handler@4.4.8':
|
|
3379
|
-
dependencies:
|
|
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
|
|
3385
|
-
|
|
3386
|
-
'@smithy/property-provider@4.2.8':
|
|
3387
|
-
dependencies:
|
|
3388
|
-
'@smithy/types': 4.12.0
|
|
3389
|
-
tslib: 2.8.1
|
|
3390
|
-
|
|
3391
|
-
'@smithy/protocol-http@5.3.8':
|
|
3392
|
-
dependencies:
|
|
3393
|
-
'@smithy/types': 4.12.0
|
|
3394
|
-
tslib: 2.8.1
|
|
3395
|
-
|
|
3396
|
-
'@smithy/querystring-builder@4.2.8':
|
|
3397
|
-
dependencies:
|
|
3398
|
-
'@smithy/types': 4.12.0
|
|
3399
|
-
'@smithy/util-uri-escape': 4.2.0
|
|
3400
|
-
tslib: 2.8.1
|
|
3401
|
-
|
|
3402
|
-
'@smithy/querystring-parser@4.2.8':
|
|
3403
|
-
dependencies:
|
|
3404
|
-
'@smithy/types': 4.12.0
|
|
3405
|
-
tslib: 2.8.1
|
|
3406
|
-
|
|
3407
|
-
'@smithy/service-error-classification@4.2.8':
|
|
3408
|
-
dependencies:
|
|
3409
|
-
'@smithy/types': 4.12.0
|
|
3410
|
-
|
|
3411
|
-
'@smithy/shared-ini-file-loader@4.4.3':
|
|
3412
|
-
dependencies:
|
|
3413
|
-
'@smithy/types': 4.12.0
|
|
3414
|
-
tslib: 2.8.1
|
|
3415
|
-
|
|
3416
|
-
'@smithy/signature-v4@5.3.8':
|
|
3417
|
-
dependencies:
|
|
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
|
|
3426
|
-
|
|
3427
|
-
'@smithy/smithy-client@4.10.7':
|
|
3428
|
-
dependencies:
|
|
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
|
|
3436
|
-
|
|
3437
|
-
'@smithy/types@4.12.0':
|
|
3438
|
-
dependencies:
|
|
3439
|
-
tslib: 2.8.1
|
|
3440
|
-
|
|
3441
|
-
'@smithy/url-parser@4.2.8':
|
|
3442
|
-
dependencies:
|
|
3443
|
-
'@smithy/querystring-parser': 4.2.8
|
|
3444
|
-
'@smithy/types': 4.12.0
|
|
3445
|
-
tslib: 2.8.1
|
|
3446
|
-
|
|
3447
|
-
'@smithy/util-base64@4.3.0':
|
|
3448
|
-
dependencies:
|
|
3449
|
-
'@smithy/util-buffer-from': 4.2.0
|
|
3450
|
-
'@smithy/util-utf8': 4.2.0
|
|
3451
|
-
tslib: 2.8.1
|
|
3452
|
-
|
|
3453
|
-
'@smithy/util-body-length-browser@4.2.0':
|
|
3454
|
-
dependencies:
|
|
3455
|
-
tslib: 2.8.1
|
|
3456
|
-
|
|
3457
|
-
'@smithy/util-body-length-node@4.2.1':
|
|
3458
|
-
dependencies:
|
|
3459
|
-
tslib: 2.8.1
|
|
3460
|
-
|
|
3461
|
-
'@smithy/util-buffer-from@2.2.0':
|
|
3462
|
-
dependencies:
|
|
3463
|
-
'@smithy/is-array-buffer': 2.2.0
|
|
3464
|
-
tslib: 2.8.1
|
|
1714
|
+
'@rollup/rollup-win32-ia32-msvc@4.55.3':
|
|
1715
|
+
optional: true
|
|
3465
1716
|
|
|
3466
|
-
'@
|
|
3467
|
-
|
|
3468
|
-
'@smithy/is-array-buffer': 4.2.0
|
|
3469
|
-
tslib: 2.8.1
|
|
1717
|
+
'@rollup/rollup-win32-x64-gnu@4.55.3':
|
|
1718
|
+
optional: true
|
|
3470
1719
|
|
|
3471
|
-
'@
|
|
3472
|
-
|
|
3473
|
-
tslib: 2.8.1
|
|
1720
|
+
'@rollup/rollup-win32-x64-msvc@4.55.3':
|
|
1721
|
+
optional: true
|
|
3474
1722
|
|
|
3475
|
-
'@
|
|
1723
|
+
'@supabase/auth-js@2.95.3':
|
|
3476
1724
|
dependencies:
|
|
3477
|
-
'@smithy/property-provider': 4.2.8
|
|
3478
|
-
'@smithy/smithy-client': 4.10.7
|
|
3479
|
-
'@smithy/types': 4.12.0
|
|
3480
1725
|
tslib: 2.8.1
|
|
3481
1726
|
|
|
3482
|
-
'@
|
|
1727
|
+
'@supabase/functions-js@2.95.3':
|
|
3483
1728
|
dependencies:
|
|
3484
|
-
'@smithy/config-resolver': 4.4.6
|
|
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
1729
|
tslib: 2.8.1
|
|
3491
1730
|
|
|
3492
|
-
'@
|
|
1731
|
+
'@supabase/postgrest-js@2.95.3':
|
|
3493
1732
|
dependencies:
|
|
3494
|
-
'@smithy/node-config-provider': 4.3.8
|
|
3495
|
-
'@smithy/types': 4.12.0
|
|
3496
1733
|
tslib: 2.8.1
|
|
3497
1734
|
|
|
3498
|
-
'@
|
|
1735
|
+
'@supabase/realtime-js@2.95.3':
|
|
3499
1736
|
dependencies:
|
|
1737
|
+
'@types/phoenix': 1.6.7
|
|
1738
|
+
'@types/ws': 8.18.1
|
|
3500
1739
|
tslib: 2.8.1
|
|
1740
|
+
ws: 8.19.0
|
|
1741
|
+
transitivePeerDependencies:
|
|
1742
|
+
- bufferutil
|
|
1743
|
+
- utf-8-validate
|
|
3501
1744
|
|
|
3502
|
-
'@
|
|
1745
|
+
'@supabase/storage-js@2.95.3':
|
|
3503
1746
|
dependencies:
|
|
3504
|
-
|
|
1747
|
+
iceberg-js: 0.8.1
|
|
3505
1748
|
tslib: 2.8.1
|
|
3506
1749
|
|
|
3507
|
-
'@
|
|
1750
|
+
'@supabase/supabase-js@2.95.3':
|
|
3508
1751
|
dependencies:
|
|
3509
|
-
'@
|
|
3510
|
-
'@
|
|
3511
|
-
|
|
1752
|
+
'@supabase/auth-js': 2.95.3
|
|
1753
|
+
'@supabase/functions-js': 2.95.3
|
|
1754
|
+
'@supabase/postgrest-js': 2.95.3
|
|
1755
|
+
'@supabase/realtime-js': 2.95.3
|
|
1756
|
+
'@supabase/storage-js': 2.95.3
|
|
1757
|
+
transitivePeerDependencies:
|
|
1758
|
+
- bufferutil
|
|
1759
|
+
- utf-8-validate
|
|
3512
1760
|
|
|
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
|
|
1761
|
+
'@types/estree@1.0.8': {}
|
|
3523
1762
|
|
|
3524
|
-
'@
|
|
3525
|
-
dependencies:
|
|
3526
|
-
tslib: 2.8.1
|
|
1763
|
+
'@types/json-schema@7.0.15': {}
|
|
3527
1764
|
|
|
3528
|
-
'@
|
|
1765
|
+
'@types/node@25.2.3':
|
|
3529
1766
|
dependencies:
|
|
3530
|
-
|
|
3531
|
-
tslib: 2.8.1
|
|
1767
|
+
undici-types: 7.16.0
|
|
3532
1768
|
|
|
3533
|
-
'@
|
|
3534
|
-
dependencies:
|
|
3535
|
-
'@smithy/util-buffer-from': 4.2.0
|
|
3536
|
-
tslib: 2.8.1
|
|
1769
|
+
'@types/phoenix@1.6.7': {}
|
|
3537
1770
|
|
|
3538
|
-
'@
|
|
3539
|
-
dependencies:
|
|
3540
|
-
'@smithy/abort-controller': 4.2.8
|
|
3541
|
-
'@smithy/types': 4.12.0
|
|
3542
|
-
tslib: 2.8.1
|
|
1771
|
+
'@types/uuid@10.0.0': {}
|
|
3543
1772
|
|
|
3544
|
-
'@
|
|
1773
|
+
'@types/ws@8.18.1':
|
|
3545
1774
|
dependencies:
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
'@types/estree@1.0.8': {}
|
|
3549
|
-
|
|
3550
|
-
'@types/json-schema@7.0.15': {}
|
|
3551
|
-
|
|
3552
|
-
'@types/uuid@10.0.0': {}
|
|
1775
|
+
'@types/node': 25.2.3
|
|
3553
1776
|
|
|
3554
|
-
'@typescript-eslint/eslint-plugin@8.
|
|
1777
|
+
'@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
1778
|
dependencies:
|
|
3556
1779
|
'@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.
|
|
1780
|
+
'@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
1781
|
+
'@typescript-eslint/scope-manager': 8.53.1
|
|
1782
|
+
'@typescript-eslint/type-utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
1783
|
+
'@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
1784
|
+
'@typescript-eslint/visitor-keys': 8.53.1
|
|
3562
1785
|
eslint: 9.39.2(jiti@1.21.7)
|
|
3563
1786
|
ignore: 7.0.5
|
|
3564
1787
|
natural-compare: 1.4.0
|
|
@@ -3567,41 +1790,41 @@ snapshots:
|
|
|
3567
1790
|
transitivePeerDependencies:
|
|
3568
1791
|
- supports-color
|
|
3569
1792
|
|
|
3570
|
-
'@typescript-eslint/parser@8.
|
|
1793
|
+
'@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
|
3571
1794
|
dependencies:
|
|
3572
|
-
'@typescript-eslint/scope-manager': 8.
|
|
3573
|
-
'@typescript-eslint/types': 8.
|
|
3574
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
3575
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
1795
|
+
'@typescript-eslint/scope-manager': 8.53.1
|
|
1796
|
+
'@typescript-eslint/types': 8.53.1
|
|
1797
|
+
'@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
|
|
1798
|
+
'@typescript-eslint/visitor-keys': 8.53.1
|
|
3576
1799
|
debug: 4.4.3
|
|
3577
1800
|
eslint: 9.39.2(jiti@1.21.7)
|
|
3578
1801
|
typescript: 5.9.3
|
|
3579
1802
|
transitivePeerDependencies:
|
|
3580
1803
|
- supports-color
|
|
3581
1804
|
|
|
3582
|
-
'@typescript-eslint/project-service@8.
|
|
1805
|
+
'@typescript-eslint/project-service@8.53.1(typescript@5.9.3)':
|
|
3583
1806
|
dependencies:
|
|
3584
|
-
'@typescript-eslint/tsconfig-utils': 8.
|
|
3585
|
-
'@typescript-eslint/types': 8.
|
|
1807
|
+
'@typescript-eslint/tsconfig-utils': 8.53.1(typescript@5.9.3)
|
|
1808
|
+
'@typescript-eslint/types': 8.53.1
|
|
3586
1809
|
debug: 4.4.3
|
|
3587
1810
|
typescript: 5.9.3
|
|
3588
1811
|
transitivePeerDependencies:
|
|
3589
1812
|
- supports-color
|
|
3590
1813
|
|
|
3591
|
-
'@typescript-eslint/scope-manager@8.
|
|
1814
|
+
'@typescript-eslint/scope-manager@8.53.1':
|
|
3592
1815
|
dependencies:
|
|
3593
|
-
'@typescript-eslint/types': 8.
|
|
3594
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
1816
|
+
'@typescript-eslint/types': 8.53.1
|
|
1817
|
+
'@typescript-eslint/visitor-keys': 8.53.1
|
|
3595
1818
|
|
|
3596
|
-
'@typescript-eslint/tsconfig-utils@8.
|
|
1819
|
+
'@typescript-eslint/tsconfig-utils@8.53.1(typescript@5.9.3)':
|
|
3597
1820
|
dependencies:
|
|
3598
1821
|
typescript: 5.9.3
|
|
3599
1822
|
|
|
3600
|
-
'@typescript-eslint/type-utils@8.
|
|
1823
|
+
'@typescript-eslint/type-utils@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
|
3601
1824
|
dependencies:
|
|
3602
|
-
'@typescript-eslint/types': 8.
|
|
3603
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
3604
|
-
'@typescript-eslint/utils': 8.
|
|
1825
|
+
'@typescript-eslint/types': 8.53.1
|
|
1826
|
+
'@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
|
|
1827
|
+
'@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
3605
1828
|
debug: 4.4.3
|
|
3606
1829
|
eslint: 9.39.2(jiti@1.21.7)
|
|
3607
1830
|
ts-api-utils: 2.4.0(typescript@5.9.3)
|
|
@@ -3609,14 +1832,14 @@ snapshots:
|
|
|
3609
1832
|
transitivePeerDependencies:
|
|
3610
1833
|
- supports-color
|
|
3611
1834
|
|
|
3612
|
-
'@typescript-eslint/types@8.
|
|
1835
|
+
'@typescript-eslint/types@8.53.1': {}
|
|
3613
1836
|
|
|
3614
|
-
'@typescript-eslint/typescript-estree@8.
|
|
1837
|
+
'@typescript-eslint/typescript-estree@8.53.1(typescript@5.9.3)':
|
|
3615
1838
|
dependencies:
|
|
3616
|
-
'@typescript-eslint/project-service': 8.
|
|
3617
|
-
'@typescript-eslint/tsconfig-utils': 8.
|
|
3618
|
-
'@typescript-eslint/types': 8.
|
|
3619
|
-
'@typescript-eslint/visitor-keys': 8.
|
|
1839
|
+
'@typescript-eslint/project-service': 8.53.1(typescript@5.9.3)
|
|
1840
|
+
'@typescript-eslint/tsconfig-utils': 8.53.1(typescript@5.9.3)
|
|
1841
|
+
'@typescript-eslint/types': 8.53.1
|
|
1842
|
+
'@typescript-eslint/visitor-keys': 8.53.1
|
|
3620
1843
|
debug: 4.4.3
|
|
3621
1844
|
minimatch: 9.0.5
|
|
3622
1845
|
semver: 7.7.3
|
|
@@ -3626,20 +1849,20 @@ snapshots:
|
|
|
3626
1849
|
transitivePeerDependencies:
|
|
3627
1850
|
- supports-color
|
|
3628
1851
|
|
|
3629
|
-
'@typescript-eslint/utils@8.
|
|
1852
|
+
'@typescript-eslint/utils@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
|
|
3630
1853
|
dependencies:
|
|
3631
1854
|
'@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.
|
|
1855
|
+
'@typescript-eslint/scope-manager': 8.53.1
|
|
1856
|
+
'@typescript-eslint/types': 8.53.1
|
|
1857
|
+
'@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
|
|
3635
1858
|
eslint: 9.39.2(jiti@1.21.7)
|
|
3636
1859
|
typescript: 5.9.3
|
|
3637
1860
|
transitivePeerDependencies:
|
|
3638
1861
|
- supports-color
|
|
3639
1862
|
|
|
3640
|
-
'@typescript-eslint/visitor-keys@8.
|
|
1863
|
+
'@typescript-eslint/visitor-keys@8.53.1':
|
|
3641
1864
|
dependencies:
|
|
3642
|
-
'@typescript-eslint/types': 8.
|
|
1865
|
+
'@typescript-eslint/types': 8.53.1
|
|
3643
1866
|
eslint-visitor-keys: 4.2.1
|
|
3644
1867
|
|
|
3645
1868
|
acorn-jsx@5.3.2(acorn@8.15.0):
|
|
@@ -3655,8 +1878,6 @@ snapshots:
|
|
|
3655
1878
|
json-schema-traverse: 0.4.1
|
|
3656
1879
|
uri-js: 4.4.1
|
|
3657
1880
|
|
|
3658
|
-
ansi-regex@6.2.2: {}
|
|
3659
|
-
|
|
3660
1881
|
ansi-styles@4.3.0:
|
|
3661
1882
|
dependencies:
|
|
3662
1883
|
color-convert: 2.0.1
|
|
@@ -3679,7 +1900,7 @@ snapshots:
|
|
|
3679
1900
|
autoprefixer@10.4.23(postcss@8.5.6):
|
|
3680
1901
|
dependencies:
|
|
3681
1902
|
browserslist: 4.28.1
|
|
3682
|
-
caniuse-lite: 1.0.
|
|
1903
|
+
caniuse-lite: 1.0.30001765
|
|
3683
1904
|
fraction.js: 5.3.4
|
|
3684
1905
|
picocolors: 1.1.1
|
|
3685
1906
|
postcss: 8.5.6
|
|
@@ -3697,12 +1918,10 @@ snapshots:
|
|
|
3697
1918
|
|
|
3698
1919
|
base64-js@1.5.1: {}
|
|
3699
1920
|
|
|
3700
|
-
baseline-browser-mapping@2.9.
|
|
1921
|
+
baseline-browser-mapping@2.9.16: {}
|
|
3701
1922
|
|
|
3702
1923
|
binary-extensions@2.3.0: {}
|
|
3703
1924
|
|
|
3704
|
-
bowser@2.13.1: {}
|
|
3705
|
-
|
|
3706
1925
|
brace-expansion@1.1.12:
|
|
3707
1926
|
dependencies:
|
|
3708
1927
|
balanced-match: 1.0.2
|
|
@@ -3718,19 +1937,12 @@ snapshots:
|
|
|
3718
1937
|
|
|
3719
1938
|
browserslist@4.28.1:
|
|
3720
1939
|
dependencies:
|
|
3721
|
-
baseline-browser-mapping: 2.9.
|
|
3722
|
-
caniuse-lite: 1.0.
|
|
1940
|
+
baseline-browser-mapping: 2.9.16
|
|
1941
|
+
caniuse-lite: 1.0.30001765
|
|
3723
1942
|
electron-to-chromium: 1.5.267
|
|
3724
1943
|
node-releases: 2.0.27
|
|
3725
1944
|
update-browserslist-db: 1.2.3(browserslist@4.28.1)
|
|
3726
1945
|
|
|
3727
|
-
buffer-from@1.1.2: {}
|
|
3728
|
-
|
|
3729
|
-
buffer@5.6.0:
|
|
3730
|
-
dependencies:
|
|
3731
|
-
base64-js: 1.5.1
|
|
3732
|
-
ieee754: 1.2.1
|
|
3733
|
-
|
|
3734
1946
|
call-bind-apply-helpers@1.0.2:
|
|
3735
1947
|
dependencies:
|
|
3736
1948
|
es-errors: 1.3.0
|
|
@@ -3742,15 +1954,13 @@ snapshots:
|
|
|
3742
1954
|
|
|
3743
1955
|
camelcase@6.3.0: {}
|
|
3744
1956
|
|
|
3745
|
-
caniuse-lite@1.0.
|
|
1957
|
+
caniuse-lite@1.0.30001765: {}
|
|
3746
1958
|
|
|
3747
1959
|
chalk@4.1.2:
|
|
3748
1960
|
dependencies:
|
|
3749
1961
|
ansi-styles: 4.3.0
|
|
3750
1962
|
supports-color: 7.2.0
|
|
3751
1963
|
|
|
3752
|
-
chalk@5.6.2: {}
|
|
3753
|
-
|
|
3754
1964
|
chokidar@3.6.0:
|
|
3755
1965
|
dependencies:
|
|
3756
1966
|
anymatch: 3.1.3
|
|
@@ -3763,12 +1973,6 @@ snapshots:
|
|
|
3763
1973
|
optionalDependencies:
|
|
3764
1974
|
fsevents: 2.3.3
|
|
3765
1975
|
|
|
3766
|
-
cli-cursor@5.0.0:
|
|
3767
|
-
dependencies:
|
|
3768
|
-
restore-cursor: 5.1.0
|
|
3769
|
-
|
|
3770
|
-
cli-spinners@3.4.0: {}
|
|
3771
|
-
|
|
3772
1976
|
color-convert@2.0.1:
|
|
3773
1977
|
dependencies:
|
|
3774
1978
|
color-name: 1.1.4
|
|
@@ -3779,8 +1983,6 @@ snapshots:
|
|
|
3779
1983
|
dependencies:
|
|
3780
1984
|
delayed-stream: 1.0.0
|
|
3781
1985
|
|
|
3782
|
-
commander@14.0.2: {}
|
|
3783
|
-
|
|
3784
1986
|
commander@4.1.1: {}
|
|
3785
1987
|
|
|
3786
1988
|
concat-map@0.0.1: {}
|
|
@@ -3789,56 +1991,22 @@ snapshots:
|
|
|
3789
1991
|
dependencies:
|
|
3790
1992
|
simple-wcswidth: 1.1.2
|
|
3791
1993
|
|
|
3792
|
-
coze-coding-dev-sdk@0.7.
|
|
1994
|
+
coze-coding-dev-sdk@0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0):
|
|
3793
1995
|
dependencies:
|
|
3794
|
-
'@
|
|
3795
|
-
'@
|
|
3796
|
-
'@
|
|
3797
|
-
'@langchain/openai': 1.2.2(@langchain/core@1.1.15(openai@6.16.0(zod@4.3.5)))
|
|
1996
|
+
'@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
|
|
1997
|
+
'@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)
|
|
1998
|
+
'@supabase/supabase-js': 2.95.3
|
|
3798
1999
|
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
|
|
2000
|
+
pg: 8.17.2
|
|
3806
2001
|
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
2002
|
- '@opentelemetry/api'
|
|
3815
2003
|
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
3816
2004
|
- '@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
|
|
2005
|
+
- bufferutil
|
|
3829
2006
|
- debug
|
|
3830
|
-
- expo-sqlite
|
|
3831
|
-
- gel
|
|
3832
|
-
- knex
|
|
3833
|
-
- kysely
|
|
3834
|
-
- mysql2
|
|
3835
2007
|
- openai
|
|
3836
2008
|
- pg-native
|
|
3837
|
-
-
|
|
3838
|
-
- prisma
|
|
3839
|
-
- sql.js
|
|
3840
|
-
- sqlite3
|
|
3841
|
-
- supports-color
|
|
2009
|
+
- utf-8-validate
|
|
3842
2010
|
- ws
|
|
3843
2011
|
|
|
3844
2012
|
cross-spawn@7.0.6:
|
|
@@ -3863,18 +2031,7 @@ snapshots:
|
|
|
3863
2031
|
|
|
3864
2032
|
dlv@1.1.3: {}
|
|
3865
2033
|
|
|
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
|
|
2034
|
+
dotenv@17.2.4: {}
|
|
3878
2035
|
|
|
3879
2036
|
dunder-proto@1.0.1:
|
|
3880
2037
|
dependencies:
|
|
@@ -3899,67 +2056,6 @@ snapshots:
|
|
|
3899
2056
|
has-tostringtag: 1.0.2
|
|
3900
2057
|
hasown: 2.0.2
|
|
3901
2058
|
|
|
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
2059
|
esbuild@0.27.2:
|
|
3964
2060
|
optionalDependencies:
|
|
3965
2061
|
'@esbuild/aix-ppc64': 0.27.2
|
|
@@ -4063,8 +2159,6 @@ snapshots:
|
|
|
4063
2159
|
|
|
4064
2160
|
eventemitter3@4.0.7: {}
|
|
4065
2161
|
|
|
4066
|
-
events@3.3.0: {}
|
|
4067
|
-
|
|
4068
2162
|
fast-deep-equal@3.1.3: {}
|
|
4069
2163
|
|
|
4070
2164
|
fast-glob@3.3.3:
|
|
@@ -4079,10 +2173,6 @@ snapshots:
|
|
|
4079
2173
|
|
|
4080
2174
|
fast-levenshtein@2.0.6: {}
|
|
4081
2175
|
|
|
4082
|
-
fast-xml-parser@5.2.5:
|
|
4083
|
-
dependencies:
|
|
4084
|
-
strnum: 2.1.2
|
|
4085
|
-
|
|
4086
2176
|
fastq@1.20.1:
|
|
4087
2177
|
dependencies:
|
|
4088
2178
|
reusify: 1.1.0
|
|
@@ -4128,8 +2218,6 @@ snapshots:
|
|
|
4128
2218
|
|
|
4129
2219
|
function-bind@1.1.2: {}
|
|
4130
2220
|
|
|
4131
|
-
get-east-asian-width@1.4.0: {}
|
|
4132
|
-
|
|
4133
2221
|
get-intrinsic@1.3.0:
|
|
4134
2222
|
dependencies:
|
|
4135
2223
|
call-bind-apply-helpers: 1.0.2
|
|
@@ -4148,10 +2236,6 @@ snapshots:
|
|
|
4148
2236
|
dunder-proto: 1.0.1
|
|
4149
2237
|
es-object-atoms: 1.1.1
|
|
4150
2238
|
|
|
4151
|
-
get-tsconfig@4.13.0:
|
|
4152
|
-
dependencies:
|
|
4153
|
-
resolve-pkg-maps: 1.0.0
|
|
4154
|
-
|
|
4155
2239
|
glob-parent@5.1.2:
|
|
4156
2240
|
dependencies:
|
|
4157
2241
|
is-glob: 4.0.3
|
|
@@ -4176,7 +2260,7 @@ snapshots:
|
|
|
4176
2260
|
dependencies:
|
|
4177
2261
|
function-bind: 1.1.2
|
|
4178
2262
|
|
|
4179
|
-
|
|
2263
|
+
iceberg-js@0.8.1: {}
|
|
4180
2264
|
|
|
4181
2265
|
ignore@5.3.2: {}
|
|
4182
2266
|
|
|
@@ -4189,8 +2273,6 @@ snapshots:
|
|
|
4189
2273
|
|
|
4190
2274
|
imurmurhash@0.1.4: {}
|
|
4191
2275
|
|
|
4192
|
-
inherits@2.0.4: {}
|
|
4193
|
-
|
|
4194
2276
|
is-binary-path@2.1.0:
|
|
4195
2277
|
dependencies:
|
|
4196
2278
|
binary-extensions: 2.3.0
|
|
@@ -4205,12 +2287,8 @@ snapshots:
|
|
|
4205
2287
|
dependencies:
|
|
4206
2288
|
is-extglob: 2.1.1
|
|
4207
2289
|
|
|
4208
|
-
is-interactive@2.0.0: {}
|
|
4209
|
-
|
|
4210
2290
|
is-number@7.0.0: {}
|
|
4211
2291
|
|
|
4212
|
-
is-unicode-supported@2.1.0: {}
|
|
4213
|
-
|
|
4214
2292
|
isexe@2.0.0: {}
|
|
4215
2293
|
|
|
4216
2294
|
jiti@1.21.7: {}
|
|
@@ -4233,7 +2311,7 @@ snapshots:
|
|
|
4233
2311
|
dependencies:
|
|
4234
2312
|
json-buffer: 3.0.1
|
|
4235
2313
|
|
|
4236
|
-
langsmith@0.4.7(openai@6.16.0(zod@4.3.5)):
|
|
2314
|
+
langsmith@0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5)):
|
|
4237
2315
|
dependencies:
|
|
4238
2316
|
'@types/uuid': 10.0.0
|
|
4239
2317
|
chalk: 4.1.2
|
|
@@ -4242,7 +2320,7 @@ snapshots:
|
|
|
4242
2320
|
semver: 7.7.3
|
|
4243
2321
|
uuid: 10.0.0
|
|
4244
2322
|
optionalDependencies:
|
|
4245
|
-
openai: 6.16.0(zod@4.3.5)
|
|
2323
|
+
openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
|
|
4246
2324
|
|
|
4247
2325
|
levn@0.4.1:
|
|
4248
2326
|
dependencies:
|
|
@@ -4259,11 +2337,6 @@ snapshots:
|
|
|
4259
2337
|
|
|
4260
2338
|
lodash.merge@4.6.2: {}
|
|
4261
2339
|
|
|
4262
|
-
log-symbols@7.0.1:
|
|
4263
|
-
dependencies:
|
|
4264
|
-
is-unicode-supported: 2.1.0
|
|
4265
|
-
yoctocolors: 2.1.2
|
|
4266
|
-
|
|
4267
2340
|
math-intrinsics@1.1.0: {}
|
|
4268
2341
|
|
|
4269
2342
|
merge2@1.4.1: {}
|
|
@@ -4279,8 +2352,6 @@ snapshots:
|
|
|
4279
2352
|
dependencies:
|
|
4280
2353
|
mime-db: 1.52.0
|
|
4281
2354
|
|
|
4282
|
-
mimic-function@5.0.1: {}
|
|
4283
|
-
|
|
4284
2355
|
minimatch@3.1.2:
|
|
4285
2356
|
dependencies:
|
|
4286
2357
|
brace-expansion: 1.1.12
|
|
@@ -4311,16 +2382,13 @@ snapshots:
|
|
|
4311
2382
|
|
|
4312
2383
|
object-hash@3.0.0: {}
|
|
4313
2384
|
|
|
4314
|
-
onetime@7.0.0:
|
|
4315
|
-
dependencies:
|
|
4316
|
-
mimic-function: 5.0.1
|
|
4317
|
-
|
|
4318
2385
|
only-allow@1.2.2:
|
|
4319
2386
|
dependencies:
|
|
4320
2387
|
which-pm-runs: 1.1.0
|
|
4321
2388
|
|
|
4322
|
-
openai@6.16.0(zod@4.3.5):
|
|
2389
|
+
openai@6.16.0(ws@8.19.0)(zod@4.3.5):
|
|
4323
2390
|
optionalDependencies:
|
|
2391
|
+
ws: 8.19.0
|
|
4324
2392
|
zod: 4.3.5
|
|
4325
2393
|
|
|
4326
2394
|
optionator@0.9.4:
|
|
@@ -4332,18 +2400,6 @@ snapshots:
|
|
|
4332
2400
|
type-check: 0.4.0
|
|
4333
2401
|
word-wrap: 1.2.5
|
|
4334
2402
|
|
|
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
2403
|
p-finally@1.0.0: {}
|
|
4348
2404
|
|
|
4349
2405
|
p-limit@3.1.0:
|
|
@@ -4373,16 +2429,13 @@ snapshots:
|
|
|
4373
2429
|
|
|
4374
2430
|
path-parse@1.0.7: {}
|
|
4375
2431
|
|
|
4376
|
-
pg-
|
|
4377
|
-
optional: true
|
|
4378
|
-
|
|
4379
|
-
pg-connection-string@2.10.0: {}
|
|
2432
|
+
pg-connection-string@2.10.1: {}
|
|
4380
2433
|
|
|
4381
2434
|
pg-int8@1.0.1: {}
|
|
4382
2435
|
|
|
4383
|
-
pg-pool@3.11.0(pg@8.17.
|
|
2436
|
+
pg-pool@3.11.0(pg@8.17.2):
|
|
4384
2437
|
dependencies:
|
|
4385
|
-
pg: 8.17.
|
|
2438
|
+
pg: 8.17.2
|
|
4386
2439
|
|
|
4387
2440
|
pg-protocol@1.11.0: {}
|
|
4388
2441
|
|
|
@@ -4394,15 +2447,13 @@ snapshots:
|
|
|
4394
2447
|
postgres-date: 1.0.7
|
|
4395
2448
|
postgres-interval: 1.2.0
|
|
4396
2449
|
|
|
4397
|
-
pg@8.17.
|
|
2450
|
+
pg@8.17.2:
|
|
4398
2451
|
dependencies:
|
|
4399
|
-
pg-connection-string: 2.10.
|
|
4400
|
-
pg-pool: 3.11.0(pg@8.17.
|
|
2452
|
+
pg-connection-string: 2.10.1
|
|
2453
|
+
pg-pool: 3.11.0(pg@8.17.2)
|
|
4401
2454
|
pg-protocol: 1.11.0
|
|
4402
2455
|
pg-types: 2.2.0
|
|
4403
2456
|
pgpass: 1.0.5
|
|
4404
|
-
optionalDependencies:
|
|
4405
|
-
pg-cloudflare: 1.3.0
|
|
4406
2457
|
|
|
4407
2458
|
pgpass@1.0.5:
|
|
4408
2459
|
dependencies:
|
|
@@ -4477,67 +2528,55 @@ snapshots:
|
|
|
4477
2528
|
dependencies:
|
|
4478
2529
|
pify: 2.3.0
|
|
4479
2530
|
|
|
4480
|
-
readable-stream@3.6.2:
|
|
4481
|
-
dependencies:
|
|
4482
|
-
inherits: 2.0.4
|
|
4483
|
-
string_decoder: 1.3.0
|
|
4484
|
-
util-deprecate: 1.0.2
|
|
4485
|
-
|
|
4486
2531
|
readdirp@3.6.0:
|
|
4487
2532
|
dependencies:
|
|
4488
2533
|
picomatch: 2.3.1
|
|
4489
2534
|
|
|
4490
2535
|
resolve-from@4.0.0: {}
|
|
4491
2536
|
|
|
4492
|
-
resolve-pkg-maps@1.0.0: {}
|
|
4493
|
-
|
|
4494
2537
|
resolve@1.22.11:
|
|
4495
2538
|
dependencies:
|
|
4496
2539
|
is-core-module: 2.16.1
|
|
4497
2540
|
path-parse: 1.0.7
|
|
4498
2541
|
supports-preserve-symlinks-flag: 1.0.0
|
|
4499
2542
|
|
|
4500
|
-
restore-cursor@5.1.0:
|
|
4501
|
-
dependencies:
|
|
4502
|
-
onetime: 7.0.0
|
|
4503
|
-
signal-exit: 4.1.0
|
|
4504
|
-
|
|
4505
2543
|
reusify@1.1.0: {}
|
|
4506
2544
|
|
|
4507
|
-
rollup@4.
|
|
2545
|
+
rollup@4.55.3:
|
|
4508
2546
|
dependencies:
|
|
4509
2547
|
'@types/estree': 1.0.8
|
|
4510
2548
|
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-
|
|
2549
|
+
'@rollup/rollup-android-arm-eabi': 4.55.3
|
|
2550
|
+
'@rollup/rollup-android-arm64': 4.55.3
|
|
2551
|
+
'@rollup/rollup-darwin-arm64': 4.55.3
|
|
2552
|
+
'@rollup/rollup-darwin-x64': 4.55.3
|
|
2553
|
+
'@rollup/rollup-freebsd-arm64': 4.55.3
|
|
2554
|
+
'@rollup/rollup-freebsd-x64': 4.55.3
|
|
2555
|
+
'@rollup/rollup-linux-arm-gnueabihf': 4.55.3
|
|
2556
|
+
'@rollup/rollup-linux-arm-musleabihf': 4.55.3
|
|
2557
|
+
'@rollup/rollup-linux-arm64-gnu': 4.55.3
|
|
2558
|
+
'@rollup/rollup-linux-arm64-musl': 4.55.3
|
|
2559
|
+
'@rollup/rollup-linux-loong64-gnu': 4.55.3
|
|
2560
|
+
'@rollup/rollup-linux-loong64-musl': 4.55.3
|
|
2561
|
+
'@rollup/rollup-linux-ppc64-gnu': 4.55.3
|
|
2562
|
+
'@rollup/rollup-linux-ppc64-musl': 4.55.3
|
|
2563
|
+
'@rollup/rollup-linux-riscv64-gnu': 4.55.3
|
|
2564
|
+
'@rollup/rollup-linux-riscv64-musl': 4.55.3
|
|
2565
|
+
'@rollup/rollup-linux-s390x-gnu': 4.55.3
|
|
2566
|
+
'@rollup/rollup-linux-x64-gnu': 4.55.3
|
|
2567
|
+
'@rollup/rollup-linux-x64-musl': 4.55.3
|
|
2568
|
+
'@rollup/rollup-openbsd-x64': 4.55.3
|
|
2569
|
+
'@rollup/rollup-openharmony-arm64': 4.55.3
|
|
2570
|
+
'@rollup/rollup-win32-arm64-msvc': 4.55.3
|
|
2571
|
+
'@rollup/rollup-win32-ia32-msvc': 4.55.3
|
|
2572
|
+
'@rollup/rollup-win32-x64-gnu': 4.55.3
|
|
2573
|
+
'@rollup/rollup-win32-x64-msvc': 4.55.3
|
|
4533
2574
|
fsevents: 2.3.3
|
|
4534
2575
|
|
|
4535
2576
|
run-parallel@1.2.0:
|
|
4536
2577
|
dependencies:
|
|
4537
2578
|
queue-microtask: 1.2.3
|
|
4538
2579
|
|
|
4539
|
-
safe-buffer@5.2.1: {}
|
|
4540
|
-
|
|
4541
2580
|
semver@7.7.3: {}
|
|
4542
2581
|
|
|
4543
2582
|
shebang-command@2.0.0:
|
|
@@ -4546,45 +2585,14 @@ snapshots:
|
|
|
4546
2585
|
|
|
4547
2586
|
shebang-regex@3.0.0: {}
|
|
4548
2587
|
|
|
4549
|
-
signal-exit@4.1.0: {}
|
|
4550
|
-
|
|
4551
2588
|
simple-wcswidth@1.1.2: {}
|
|
4552
2589
|
|
|
4553
2590
|
source-map-js@1.2.1: {}
|
|
4554
2591
|
|
|
4555
|
-
source-map-support@0.5.21:
|
|
4556
|
-
dependencies:
|
|
4557
|
-
buffer-from: 1.1.2
|
|
4558
|
-
source-map: 0.6.1
|
|
4559
|
-
|
|
4560
|
-
source-map@0.6.1: {}
|
|
4561
|
-
|
|
4562
2592
|
split2@4.2.0: {}
|
|
4563
2593
|
|
|
4564
|
-
stdin-discarder@0.2.2: {}
|
|
4565
|
-
|
|
4566
|
-
stream-browserify@3.0.0:
|
|
4567
|
-
dependencies:
|
|
4568
|
-
inherits: 2.0.4
|
|
4569
|
-
readable-stream: 3.6.2
|
|
4570
|
-
|
|
4571
|
-
string-width@8.1.0:
|
|
4572
|
-
dependencies:
|
|
4573
|
-
get-east-asian-width: 1.4.0
|
|
4574
|
-
strip-ansi: 7.1.2
|
|
4575
|
-
|
|
4576
|
-
string_decoder@1.3.0:
|
|
4577
|
-
dependencies:
|
|
4578
|
-
safe-buffer: 5.2.1
|
|
4579
|
-
|
|
4580
|
-
strip-ansi@7.1.2:
|
|
4581
|
-
dependencies:
|
|
4582
|
-
ansi-regex: 6.2.2
|
|
4583
|
-
|
|
4584
2594
|
strip-json-comments@3.1.1: {}
|
|
4585
2595
|
|
|
4586
|
-
strnum@2.1.2: {}
|
|
4587
|
-
|
|
4588
2596
|
sucrase@3.35.1:
|
|
4589
2597
|
dependencies:
|
|
4590
2598
|
'@jridgewell/gen-mapping': 0.3.13
|
|
@@ -4646,8 +2654,6 @@ snapshots:
|
|
|
4646
2654
|
dependencies:
|
|
4647
2655
|
is-number: 7.0.0
|
|
4648
2656
|
|
|
4649
|
-
transliteration@2.6.0: {}
|
|
4650
|
-
|
|
4651
2657
|
ts-api-utils@2.4.0(typescript@5.9.3):
|
|
4652
2658
|
dependencies:
|
|
4653
2659
|
typescript: 5.9.3
|
|
@@ -4660,12 +2666,12 @@ snapshots:
|
|
|
4660
2666
|
dependencies:
|
|
4661
2667
|
prelude-ls: 1.2.1
|
|
4662
2668
|
|
|
4663
|
-
typescript-eslint@8.
|
|
2669
|
+
typescript-eslint@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3):
|
|
4664
2670
|
dependencies:
|
|
4665
|
-
'@typescript-eslint/eslint-plugin': 8.
|
|
4666
|
-
'@typescript-eslint/parser': 8.
|
|
4667
|
-
'@typescript-eslint/typescript-estree': 8.
|
|
4668
|
-
'@typescript-eslint/utils': 8.
|
|
2671
|
+
'@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)
|
|
2672
|
+
'@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
2673
|
+
'@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
|
|
2674
|
+
'@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
|
|
4669
2675
|
eslint: 9.39.2(jiti@1.21.7)
|
|
4670
2676
|
typescript: 5.9.3
|
|
4671
2677
|
transitivePeerDependencies:
|
|
@@ -4673,6 +2679,8 @@ snapshots:
|
|
|
4673
2679
|
|
|
4674
2680
|
typescript@5.9.3: {}
|
|
4675
2681
|
|
|
2682
|
+
undici-types@7.16.0: {}
|
|
2683
|
+
|
|
4676
2684
|
update-browserslist-db@1.2.3(browserslist@4.28.1):
|
|
4677
2685
|
dependencies:
|
|
4678
2686
|
browserslist: 4.28.1
|
|
@@ -4687,15 +2695,16 @@ snapshots:
|
|
|
4687
2695
|
|
|
4688
2696
|
uuid@10.0.0: {}
|
|
4689
2697
|
|
|
4690
|
-
vite@7.3.
|
|
2698
|
+
vite@7.3.1(@types/node@25.2.3)(jiti@1.21.7):
|
|
4691
2699
|
dependencies:
|
|
4692
2700
|
esbuild: 0.27.2
|
|
4693
2701
|
fdir: 6.5.0(picomatch@4.0.3)
|
|
4694
2702
|
picomatch: 4.0.3
|
|
4695
2703
|
postcss: 8.5.6
|
|
4696
|
-
rollup: 4.
|
|
2704
|
+
rollup: 4.55.3
|
|
4697
2705
|
tinyglobby: 0.2.15
|
|
4698
2706
|
optionalDependencies:
|
|
2707
|
+
'@types/node': 25.2.3
|
|
4699
2708
|
fsevents: 2.3.3
|
|
4700
2709
|
jiti: 1.21.7
|
|
4701
2710
|
|
|
@@ -4707,10 +2716,10 @@ snapshots:
|
|
|
4707
2716
|
|
|
4708
2717
|
word-wrap@1.2.5: {}
|
|
4709
2718
|
|
|
2719
|
+
ws@8.19.0: {}
|
|
2720
|
+
|
|
4710
2721
|
xtend@4.0.2: {}
|
|
4711
2722
|
|
|
4712
2723
|
yocto-queue@0.1.0: {}
|
|
4713
2724
|
|
|
4714
|
-
yoctocolors@2.1.2: {}
|
|
4715
|
-
|
|
4716
2725
|
zod@4.3.5: {}
|