@coze-arch/cli 0.0.1-alpha.77c1b0 → 0.0.1-alpha.8e1417
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/.coze +7 -2
- package/lib/__templates__/expo/.cozeproj/scripts/{deploy_build.sh → dev_build.sh} +25 -25
- package/lib/__templates__/expo/.cozeproj/scripts/{deploy_run.sh → dev_run.sh} +45 -63
- package/lib/__templates__/expo/.cozeproj/scripts/prod_build.sh +47 -0
- package/lib/__templates__/expo/.cozeproj/scripts/prod_run.sh +35 -0
- package/lib/__templates__/expo/_gitignore +1 -1
- package/lib/__templates__/expo/_npmrc +3 -5
- package/lib/__templates__/expo/{app.json → client/app.json} +4 -4
- package/lib/__templates__/expo/client/metro.config.js +51 -0
- package/lib/__templates__/expo/client/package.json +92 -0
- package/lib/__templates__/expo/client/scripts/install-missing-deps.js +36 -12
- package/lib/__templates__/expo/client/src/app/index.ts +1 -0
- package/lib/__templates__/expo/client/{constants → src/constants}/theme.ts +10 -0
- package/lib/__templates__/expo/client/src/contexts/AuthContext.tsx +49 -0
- package/lib/__templates__/expo/client/{hooks → src/hooks}/useTheme.ts +1 -1
- package/lib/__templates__/expo/client/{screens → src/screens}/home/index.tsx +1 -5
- package/lib/__templates__/expo/client/src/screens/home/styles.ts +60 -0
- package/lib/__templates__/expo/client/{utils → src/utils}/index.ts +1 -2
- package/lib/__templates__/expo/client/tsconfig.json +24 -0
- package/lib/__templates__/expo/package.json +27 -13
- package/lib/__templates__/expo/pnpm-lock.yaml +426 -514
- package/lib/__templates__/expo/pnpm-workspace.yaml +3 -0
- package/lib/__templates__/expo/server/package.json +17 -0
- package/lib/__templates__/expo/{src → server/src}/index.ts +2 -2
- package/lib/__templates__/expo/template.config.js +1 -1
- package/lib/__templates__/expo/tsconfig.json +1 -24
- package/lib/__templates__/nextjs/.coze +3 -3
- package/lib/__templates__/nextjs/README.md +341 -19
- package/lib/__templates__/nextjs/_npmrc +1 -1
- package/lib/__templates__/nextjs/components.json +21 -0
- package/lib/__templates__/nextjs/package.json +54 -1
- package/lib/__templates__/nextjs/pnpm-lock.yaml +7947 -1523
- package/lib/__templates__/nextjs/scripts/dev.sh +9 -27
- package/lib/__templates__/nextjs/src/app/globals.css +114 -11
- package/lib/__templates__/nextjs/src/app/layout.tsx +18 -18
- package/lib/__templates__/nextjs/src/components/ui/accordion.tsx +66 -0
- package/lib/__templates__/nextjs/src/components/ui/alert-dialog.tsx +157 -0
- package/lib/__templates__/nextjs/src/components/ui/alert.tsx +66 -0
- package/lib/__templates__/nextjs/src/components/ui/aspect-ratio.tsx +11 -0
- package/lib/__templates__/nextjs/src/components/ui/avatar.tsx +53 -0
- package/lib/__templates__/nextjs/src/components/ui/badge.tsx +46 -0
- package/lib/__templates__/nextjs/src/components/ui/breadcrumb.tsx +109 -0
- package/lib/__templates__/nextjs/src/components/ui/button-group.tsx +83 -0
- package/lib/__templates__/nextjs/src/components/ui/button.tsx +62 -0
- package/lib/__templates__/nextjs/src/components/ui/calendar.tsx +220 -0
- package/lib/__templates__/nextjs/src/components/ui/card.tsx +92 -0
- package/lib/__templates__/nextjs/src/components/ui/carousel.tsx +241 -0
- package/lib/__templates__/nextjs/src/components/ui/chart.tsx +357 -0
- package/lib/__templates__/nextjs/src/components/ui/checkbox.tsx +32 -0
- package/lib/__templates__/nextjs/src/components/ui/collapsible.tsx +33 -0
- package/lib/__templates__/nextjs/src/components/ui/command.tsx +184 -0
- package/lib/__templates__/nextjs/src/components/ui/context-menu.tsx +252 -0
- package/lib/__templates__/nextjs/src/components/ui/dialog.tsx +143 -0
- package/lib/__templates__/nextjs/src/components/ui/drawer.tsx +135 -0
- package/lib/__templates__/nextjs/src/components/ui/dropdown-menu.tsx +257 -0
- package/lib/__templates__/nextjs/src/components/ui/empty.tsx +104 -0
- package/lib/__templates__/nextjs/src/components/ui/field.tsx +248 -0
- package/lib/__templates__/nextjs/src/components/ui/form.tsx +167 -0
- package/lib/__templates__/nextjs/src/components/ui/hover-card.tsx +44 -0
- package/lib/__templates__/nextjs/src/components/ui/input-group.tsx +170 -0
- package/lib/__templates__/nextjs/src/components/ui/input-otp.tsx +77 -0
- package/lib/__templates__/nextjs/src/components/ui/input.tsx +21 -0
- package/lib/__templates__/nextjs/src/components/ui/item.tsx +193 -0
- package/lib/__templates__/nextjs/src/components/ui/kbd.tsx +28 -0
- package/lib/__templates__/nextjs/src/components/ui/label.tsx +24 -0
- package/lib/__templates__/nextjs/src/components/ui/menubar.tsx +276 -0
- package/lib/__templates__/nextjs/src/components/ui/navigation-menu.tsx +168 -0
- package/lib/__templates__/nextjs/src/components/ui/pagination.tsx +127 -0
- package/lib/__templates__/nextjs/src/components/ui/popover.tsx +48 -0
- package/lib/__templates__/nextjs/src/components/ui/progress.tsx +31 -0
- package/lib/__templates__/nextjs/src/components/ui/radio-group.tsx +45 -0
- package/lib/__templates__/nextjs/src/components/ui/resizable.tsx +56 -0
- package/lib/__templates__/nextjs/src/components/ui/scroll-area.tsx +58 -0
- package/lib/__templates__/nextjs/src/components/ui/select.tsx +190 -0
- package/lib/__templates__/nextjs/src/components/ui/separator.tsx +28 -0
- package/lib/__templates__/nextjs/src/components/ui/sheet.tsx +139 -0
- package/lib/__templates__/nextjs/src/components/ui/sidebar.tsx +726 -0
- package/lib/__templates__/nextjs/src/components/ui/skeleton.tsx +13 -0
- package/lib/__templates__/nextjs/src/components/ui/slider.tsx +63 -0
- package/lib/__templates__/nextjs/src/components/ui/sonner.tsx +40 -0
- package/lib/__templates__/nextjs/src/components/ui/spinner.tsx +16 -0
- package/lib/__templates__/nextjs/src/components/ui/switch.tsx +31 -0
- package/lib/__templates__/nextjs/src/components/ui/table.tsx +116 -0
- package/lib/__templates__/nextjs/src/components/ui/tabs.tsx +66 -0
- package/lib/__templates__/nextjs/src/components/ui/textarea.tsx +18 -0
- package/lib/__templates__/nextjs/src/components/ui/toggle-group.tsx +83 -0
- package/lib/__templates__/nextjs/src/components/ui/toggle.tsx +47 -0
- package/lib/__templates__/nextjs/src/components/ui/tooltip.tsx +61 -0
- package/lib/__templates__/nextjs/src/hooks/use-mobile.ts +19 -0
- package/lib/__templates__/nextjs/src/lib/utils.ts +6 -0
- package/lib/__templates__/nextjs/template.config.js +2 -2
- package/lib/__templates__/templates.json +6 -37
- package/lib/__templates__/vite/.coze +3 -3
- package/lib/__templates__/vite/README.md +204 -26
- package/lib/__templates__/vite/_npmrc +1 -1
- package/lib/__templates__/vite/package.json +1 -1
- package/lib/__templates__/vite/pnpm-lock.yaml +120 -120
- package/lib/__templates__/vite/scripts/dev.sh +7 -26
- package/lib/__templates__/vite/template.config.js +11 -2
- package/lib/__templates__/vite/vite.config.ts +3 -3
- package/lib/cli.js +426 -249
- package/package.json +7 -4
- package/lib/__templates__/expo/babel.config.js +0 -9
- package/lib/__templates__/expo/client/app/(tabs)/_layout.tsx +0 -43
- package/lib/__templates__/expo/client/app/(tabs)/home.tsx +0 -1
- package/lib/__templates__/expo/client/app/(tabs)/index.tsx +0 -7
- package/lib/__templates__/expo/client/app/+not-found.tsx +0 -79
- package/lib/__templates__/expo/client/contexts/AuthContext.tsx +0 -142
- package/lib/__templates__/expo/client/index.js +0 -12
- package/lib/__templates__/expo/client/screens/home/styles.ts +0 -332
- package/lib/__templates__/expo/metro.config.js +0 -53
- package/lib/__templates__/react-rsbuild/.coze +0 -11
- package/lib/__templates__/react-rsbuild/.vscode/settings.json +0 -121
- package/lib/__templates__/react-rsbuild/README.md +0 -61
- package/lib/__templates__/react-rsbuild/_gitignore +0 -97
- package/lib/__templates__/react-rsbuild/_npmrc +0 -22
- package/lib/__templates__/react-rsbuild/package.json +0 -31
- package/lib/__templates__/react-rsbuild/pnpm-lock.yaml +0 -997
- package/lib/__templates__/react-rsbuild/rsbuild.config.ts +0 -13
- package/lib/__templates__/react-rsbuild/scripts/build.sh +0 -14
- package/lib/__templates__/react-rsbuild/scripts/dev.sh +0 -51
- package/lib/__templates__/react-rsbuild/scripts/start.sh +0 -15
- package/lib/__templates__/react-rsbuild/src/App.tsx +0 -60
- package/lib/__templates__/react-rsbuild/src/index.css +0 -21
- package/lib/__templates__/react-rsbuild/src/index.html +0 -12
- package/lib/__templates__/react-rsbuild/src/index.tsx +0 -16
- package/lib/__templates__/react-rsbuild/tailwind.config.js +0 -9
- package/lib/__templates__/react-rsbuild/template.config.js +0 -54
- package/lib/__templates__/react-rsbuild/tsconfig.json +0 -17
- package/lib/__templates__/rsbuild/.coze +0 -11
- package/lib/__templates__/rsbuild/.vscode/settings.json +0 -7
- package/lib/__templates__/rsbuild/README.md +0 -61
- package/lib/__templates__/rsbuild/_gitignore +0 -97
- package/lib/__templates__/rsbuild/_npmrc +0 -22
- package/lib/__templates__/rsbuild/package.json +0 -24
- package/lib/__templates__/rsbuild/pnpm-lock.yaml +0 -888
- package/lib/__templates__/rsbuild/rsbuild.config.ts +0 -12
- package/lib/__templates__/rsbuild/scripts/build.sh +0 -14
- package/lib/__templates__/rsbuild/scripts/dev.sh +0 -51
- package/lib/__templates__/rsbuild/scripts/start.sh +0 -15
- package/lib/__templates__/rsbuild/src/index.css +0 -21
- package/lib/__templates__/rsbuild/src/index.html +0 -12
- package/lib/__templates__/rsbuild/src/index.ts +0 -5
- package/lib/__templates__/rsbuild/src/main.ts +0 -65
- package/lib/__templates__/rsbuild/tailwind.config.js +0 -9
- package/lib/__templates__/rsbuild/template.config.js +0 -56
- package/lib/__templates__/rsbuild/tsconfig.json +0 -16
- /package/lib/__templates__/expo/{eslint-formatter-simple.mjs → client/eslint-formatter-simple.mjs} +0 -0
- /package/lib/__templates__/expo/{eslint.config.mjs → client/eslint.config.mjs} +0 -0
- /package/lib/__templates__/expo/client/{app → src/app}/_layout.tsx +0 -0
- /package/lib/__templates__/expo/client/{assets → src/assets}/fonts/SpaceMono-Regular.ttf +0 -0
- /package/lib/__templates__/expo/client/{assets → src/assets}/images/adaptive-icon.png +0 -0
- /package/lib/__templates__/expo/client/{assets → src/assets}/images/default-avatar.png +0 -0
- /package/lib/__templates__/expo/client/{assets → src/assets}/images/favicon.png +0 -0
- /package/lib/__templates__/expo/client/{assets → src/assets}/images/icon.png +0 -0
- /package/lib/__templates__/expo/client/{assets → src/assets}/images/partial-react-logo.png +0 -0
- /package/lib/__templates__/expo/client/{assets → src/assets}/images/react-logo.png +0 -0
- /package/lib/__templates__/expo/client/{assets → src/assets}/images/react-logo@2x.png +0 -0
- /package/lib/__templates__/expo/client/{assets → src/assets}/images/react-logo@3x.png +0 -0
- /package/lib/__templates__/expo/client/{assets → src/assets}/images/splash-icon.png +0 -0
- /package/lib/__templates__/expo/client/{components → src/components}/Screen.tsx +0 -0
- /package/lib/__templates__/expo/client/{components → src/components}/SmartDateInput.tsx +0 -0
- /package/lib/__templates__/expo/client/{hooks → src/hooks}/useColorScheme.ts +0 -0
|
@@ -4,10 +4,19 @@ 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
|
.:
|
|
10
13
|
dependencies:
|
|
14
|
+
'@aws-sdk/client-s3':
|
|
15
|
+
specifier: ^3.958.0
|
|
16
|
+
version: 3.958.0
|
|
17
|
+
'@aws-sdk/lib-storage':
|
|
18
|
+
specifier: ^3.958.0
|
|
19
|
+
version: 3.958.0(@aws-sdk/client-s3@3.958.0)
|
|
11
20
|
'@expo/metro-runtime':
|
|
12
21
|
specifier: ^6.1.2
|
|
13
22
|
version: 6.1.2(expo@54.0.30)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
@@ -41,12 +50,30 @@ importers:
|
|
|
41
50
|
ajv-formats:
|
|
42
51
|
specifier: ^3.0.1
|
|
43
52
|
version: 3.0.1(ajv@8.17.1)
|
|
53
|
+
babel-plugin-module-resolver:
|
|
54
|
+
specifier: ^5.0.2
|
|
55
|
+
version: 5.0.2
|
|
56
|
+
babel-preset-expo:
|
|
57
|
+
specifier: ^54.0.9
|
|
58
|
+
version: 54.0.9(@babel/core@7.28.5)(@babel/runtime@7.28.4)(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2)
|
|
59
|
+
connect:
|
|
60
|
+
specifier: ^3.7.0
|
|
61
|
+
version: 3.7.0
|
|
44
62
|
coze-coding-dev-sdk:
|
|
45
|
-
specifier: 0.5.
|
|
46
|
-
version: 0.5.0(openai@6.15.0(ws@8.18.3)(zod@4.3.2))(ws@8.18.3)
|
|
63
|
+
specifier: ^0.5.5
|
|
64
|
+
version: 0.5.5(@types/pg@8.16.0)(openai@6.15.0(ws@8.18.3)(zod@4.3.2))(ws@8.18.3)
|
|
47
65
|
dayjs:
|
|
48
66
|
specifier: ^1.11.19
|
|
49
67
|
version: 1.11.19
|
|
68
|
+
drizzle-kit:
|
|
69
|
+
specifier: ^0.31.8
|
|
70
|
+
version: 0.31.8
|
|
71
|
+
drizzle-orm:
|
|
72
|
+
specifier: ^0.45.1
|
|
73
|
+
version: 0.45.1(@types/pg@8.16.0)(pg@8.16.3)
|
|
74
|
+
drizzle-zod:
|
|
75
|
+
specifier: ^0.8.3
|
|
76
|
+
version: 0.8.3(drizzle-orm@0.45.1(@types/pg@8.16.0)(pg@8.16.3))(zod@4.3.2)
|
|
50
77
|
expo:
|
|
51
78
|
specifier: ^54.0.7
|
|
52
79
|
version: 54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
@@ -107,6 +134,15 @@ importers:
|
|
|
107
134
|
express:
|
|
108
135
|
specifier: ^4.22.1
|
|
109
136
|
version: 4.22.1
|
|
137
|
+
http-proxy-middleware:
|
|
138
|
+
specifier: ^3.0.5
|
|
139
|
+
version: 3.0.5
|
|
140
|
+
multer:
|
|
141
|
+
specifier: ^2.0.2
|
|
142
|
+
version: 2.0.2
|
|
143
|
+
pg:
|
|
144
|
+
specifier: ^8.16.3
|
|
145
|
+
version: 8.16.3
|
|
110
146
|
react:
|
|
111
147
|
specifier: 19.1.0
|
|
112
148
|
version: 19.1.0
|
|
@@ -168,26 +204,243 @@ importers:
|
|
|
168
204
|
'@types/jest':
|
|
169
205
|
specifier: ^29.5.12
|
|
170
206
|
version: 29.5.14
|
|
207
|
+
'@types/multer':
|
|
208
|
+
specifier: ^2.0.0
|
|
209
|
+
version: 2.0.0
|
|
210
|
+
'@types/pg':
|
|
211
|
+
specifier: ^8.16.0
|
|
212
|
+
version: 8.16.0
|
|
171
213
|
'@types/react':
|
|
172
214
|
specifier: ~19.1.0
|
|
173
215
|
version: 19.1.17
|
|
174
216
|
'@types/react-test-renderer':
|
|
175
217
|
specifier: 19.1.0
|
|
176
218
|
version: 19.1.0
|
|
219
|
+
chalk:
|
|
220
|
+
specifier: ^4.1.2
|
|
221
|
+
version: 4.1.2
|
|
222
|
+
depcheck:
|
|
223
|
+
specifier: ^1.4.7
|
|
224
|
+
version: 1.4.7
|
|
225
|
+
esbuild:
|
|
226
|
+
specifier: 0.27.2
|
|
227
|
+
version: 0.27.2
|
|
228
|
+
eslint:
|
|
229
|
+
specifier: ^9.39.2
|
|
230
|
+
version: 9.39.2
|
|
231
|
+
eslint-formatter-compact:
|
|
232
|
+
specifier: ^9.0.1
|
|
233
|
+
version: 9.0.1
|
|
234
|
+
eslint-import-resolver-typescript:
|
|
235
|
+
specifier: ^4.4.4
|
|
236
|
+
version: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.2)
|
|
237
|
+
eslint-plugin-import:
|
|
238
|
+
specifier: ^2.32.0
|
|
239
|
+
version: 2.32.0(@typescript-eslint/parser@8.51.0(eslint@9.39.2)(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.2)
|
|
240
|
+
eslint-plugin-react:
|
|
241
|
+
specifier: ^7.37.5
|
|
242
|
+
version: 7.37.5(eslint@9.39.2)
|
|
243
|
+
eslint-plugin-react-hooks:
|
|
244
|
+
specifier: ^7.0.1
|
|
245
|
+
version: 7.0.1(eslint@9.39.2)
|
|
246
|
+
eslint-plugin-regexp:
|
|
247
|
+
specifier: ^2.10.0
|
|
248
|
+
version: 2.10.0(eslint@9.39.2)
|
|
249
|
+
globals:
|
|
250
|
+
specifier: ^16.1.0
|
|
251
|
+
version: 16.5.0
|
|
252
|
+
jest:
|
|
253
|
+
specifier: ^29.2.1
|
|
254
|
+
version: 29.7.0(@types/node@25.0.3)
|
|
255
|
+
jest-expo:
|
|
256
|
+
specifier: ~54.0.10
|
|
257
|
+
version: 54.0.16(@babel/core@7.28.5)(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(jest@29.7.0(@types/node@25.0.3))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
258
|
+
react-test-renderer:
|
|
259
|
+
specifier: 19.1.0
|
|
260
|
+
version: 19.1.0(react@19.1.0)
|
|
261
|
+
tsx:
|
|
262
|
+
specifier: ^4.21.0
|
|
263
|
+
version: 4.21.0
|
|
264
|
+
typescript:
|
|
265
|
+
specifier: ^5.8.3
|
|
266
|
+
version: 5.9.3
|
|
267
|
+
typescript-eslint:
|
|
268
|
+
specifier: ^8.32.1
|
|
269
|
+
version: 8.51.0(eslint@9.39.2)(typescript@5.9.3)
|
|
270
|
+
|
|
271
|
+
client:
|
|
272
|
+
dependencies:
|
|
273
|
+
'@expo/metro-runtime':
|
|
274
|
+
specifier: ^6.1.2
|
|
275
|
+
version: 6.1.2(expo@54.0.30)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
276
|
+
'@expo/vector-icons':
|
|
277
|
+
specifier: ^15.0.0
|
|
278
|
+
version: 15.0.3(expo-font@14.0.10(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
279
|
+
'@react-native-async-storage/async-storage':
|
|
280
|
+
specifier: ^2.2.0
|
|
281
|
+
version: 2.2.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))
|
|
282
|
+
'@react-native-community/datetimepicker':
|
|
283
|
+
specifier: ^8.5.0
|
|
284
|
+
version: 8.5.1(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
285
|
+
'@react-native-community/slider':
|
|
286
|
+
specifier: ^5.0.1
|
|
287
|
+
version: 5.1.1
|
|
288
|
+
'@react-native-masked-view/masked-view':
|
|
289
|
+
specifier: ^0.3.2
|
|
290
|
+
version: 0.3.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
291
|
+
'@react-native-picker/picker':
|
|
292
|
+
specifier: ^2.11.0
|
|
293
|
+
version: 2.11.4(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
294
|
+
'@react-navigation/bottom-tabs':
|
|
295
|
+
specifier: ^7.2.0
|
|
296
|
+
version: 7.9.0(@react-native-masked-view/masked-view@0.3.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(@react-navigation/native@7.1.26(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
297
|
+
'@react-navigation/native':
|
|
298
|
+
specifier: ^7.0.14
|
|
299
|
+
version: 7.1.26(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
177
300
|
babel-plugin-module-resolver:
|
|
178
301
|
specifier: ^5.0.2
|
|
179
302
|
version: 5.0.2
|
|
180
303
|
babel-preset-expo:
|
|
181
304
|
specifier: ^54.0.9
|
|
182
305
|
version: 54.0.9(@babel/core@7.28.5)(@babel/runtime@7.28.4)(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2)
|
|
306
|
+
dayjs:
|
|
307
|
+
specifier: ^1.11.19
|
|
308
|
+
version: 1.11.19
|
|
309
|
+
expo:
|
|
310
|
+
specifier: ^54.0.7
|
|
311
|
+
version: 54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
312
|
+
expo-auth-session:
|
|
313
|
+
specifier: ^7.0.9
|
|
314
|
+
version: 7.0.10(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
315
|
+
expo-av:
|
|
316
|
+
specifier: ~16.0.6
|
|
317
|
+
version: 16.0.8(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
318
|
+
expo-blur:
|
|
319
|
+
specifier: ~15.0.6
|
|
320
|
+
version: 15.0.8(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
321
|
+
expo-camera:
|
|
322
|
+
specifier: ~17.0.10
|
|
323
|
+
version: 17.0.10(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
324
|
+
expo-constants:
|
|
325
|
+
specifier: ~18.0.8
|
|
326
|
+
version: 18.0.12(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))
|
|
327
|
+
expo-crypto:
|
|
328
|
+
specifier: ^15.0.7
|
|
329
|
+
version: 15.0.8(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))
|
|
330
|
+
expo-font:
|
|
331
|
+
specifier: ~14.0.7
|
|
332
|
+
version: 14.0.10(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
333
|
+
expo-haptics:
|
|
334
|
+
specifier: ~15.0.6
|
|
335
|
+
version: 15.0.8(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))
|
|
336
|
+
expo-image-picker:
|
|
337
|
+
specifier: ~17.0.7
|
|
338
|
+
version: 17.0.10(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))
|
|
339
|
+
expo-linear-gradient:
|
|
340
|
+
specifier: ~15.0.6
|
|
341
|
+
version: 15.0.8(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
342
|
+
expo-linking:
|
|
343
|
+
specifier: ~8.0.7
|
|
344
|
+
version: 8.0.11(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
345
|
+
expo-location:
|
|
346
|
+
specifier: ~19.0.7
|
|
347
|
+
version: 19.0.8(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))
|
|
348
|
+
expo-router:
|
|
349
|
+
specifier: ~6.0.0
|
|
350
|
+
version: 6.0.21(@expo/metro-runtime@6.1.2)(@react-native-masked-view/masked-view@0.3.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(@types/react@19.1.17)(expo-constants@18.0.12)(expo-linking@8.0.11)(expo@54.0.30)(react-dom@19.1.0(react@19.1.0))(react-native-gesture-handler@2.28.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-reanimated@4.1.6(@babel/core@7.28.5)(react-native-worklets@0.5.1(@babel/core@7.28.5)(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.16.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
351
|
+
expo-splash-screen:
|
|
352
|
+
specifier: ~31.0.8
|
|
353
|
+
version: 31.0.13(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))
|
|
354
|
+
expo-status-bar:
|
|
355
|
+
specifier: ~3.0.7
|
|
356
|
+
version: 3.0.9(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
357
|
+
expo-symbols:
|
|
358
|
+
specifier: ~1.0.6
|
|
359
|
+
version: 1.0.8(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))
|
|
360
|
+
expo-system-ui:
|
|
361
|
+
specifier: ~6.0.9
|
|
362
|
+
version: 6.0.9(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))
|
|
363
|
+
expo-web-browser:
|
|
364
|
+
specifier: ~15.0.10
|
|
365
|
+
version: 15.0.10(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))
|
|
366
|
+
react:
|
|
367
|
+
specifier: 19.1.0
|
|
368
|
+
version: 19.1.0
|
|
369
|
+
react-dom:
|
|
370
|
+
specifier: 19.1.0
|
|
371
|
+
version: 19.1.0(react@19.1.0)
|
|
372
|
+
react-native:
|
|
373
|
+
specifier: 0.81.5
|
|
374
|
+
version: 0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0)
|
|
375
|
+
react-native-chart-kit:
|
|
376
|
+
specifier: ^6.12.0
|
|
377
|
+
version: 6.12.0(react-native-svg@15.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
378
|
+
react-native-gesture-handler:
|
|
379
|
+
specifier: ~2.28.0
|
|
380
|
+
version: 2.28.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
381
|
+
react-native-keyboard-aware-scroll-view:
|
|
382
|
+
specifier: ^0.9.5
|
|
383
|
+
version: 0.9.5(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))
|
|
384
|
+
react-native-modal-datetime-picker:
|
|
385
|
+
specifier: 18.0.0
|
|
386
|
+
version: 18.0.0(@react-native-community/datetimepicker@8.5.1(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))
|
|
387
|
+
react-native-reanimated:
|
|
388
|
+
specifier: ~4.1.0
|
|
389
|
+
version: 4.1.6(@babel/core@7.28.5)(react-native-worklets@0.5.1(@babel/core@7.28.5)(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
390
|
+
react-native-safe-area-context:
|
|
391
|
+
specifier: ~5.6.0
|
|
392
|
+
version: 5.6.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
393
|
+
react-native-screens:
|
|
394
|
+
specifier: ~4.16.0
|
|
395
|
+
version: 4.16.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
396
|
+
react-native-svg:
|
|
397
|
+
specifier: 15.15.0
|
|
398
|
+
version: 15.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
399
|
+
react-native-toast-message:
|
|
400
|
+
specifier: ^2.3.3
|
|
401
|
+
version: 2.3.3(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
402
|
+
react-native-web:
|
|
403
|
+
specifier: ^0.21.2
|
|
404
|
+
version: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
|
405
|
+
react-native-webview:
|
|
406
|
+
specifier: ~13.15.0
|
|
407
|
+
version: 13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
408
|
+
react-native-worklets:
|
|
409
|
+
specifier: 0.5.1
|
|
410
|
+
version: 0.5.1(@babel/core@7.28.5)(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
|
|
411
|
+
zod:
|
|
412
|
+
specifier: ^4.2.1
|
|
413
|
+
version: 4.3.2
|
|
414
|
+
devDependencies:
|
|
415
|
+
'@babel/core':
|
|
416
|
+
specifier: ^7.25.2
|
|
417
|
+
version: 7.28.5
|
|
418
|
+
'@eslint/js':
|
|
419
|
+
specifier: ^9.27.0
|
|
420
|
+
version: 9.39.2
|
|
421
|
+
'@types/jest':
|
|
422
|
+
specifier: ^29.5.12
|
|
423
|
+
version: 29.5.14
|
|
424
|
+
'@types/react':
|
|
425
|
+
specifier: ~19.1.0
|
|
426
|
+
version: 19.1.17
|
|
427
|
+
'@types/react-test-renderer':
|
|
428
|
+
specifier: 19.1.0
|
|
429
|
+
version: 19.1.0
|
|
183
430
|
chalk:
|
|
184
431
|
specifier: ^4.1.2
|
|
185
432
|
version: 4.1.2
|
|
433
|
+
connect:
|
|
434
|
+
specifier: ^3.7.0
|
|
435
|
+
version: 3.7.0
|
|
186
436
|
depcheck:
|
|
187
437
|
specifier: ^1.4.7
|
|
188
438
|
version: 1.4.7
|
|
439
|
+
esbuild:
|
|
440
|
+
specifier: 0.27.2
|
|
441
|
+
version: 0.27.2
|
|
189
442
|
eslint:
|
|
190
|
-
specifier: ^9.
|
|
443
|
+
specifier: ^9.39.2
|
|
191
444
|
version: 9.39.2
|
|
192
445
|
eslint-formatter-compact:
|
|
193
446
|
specifier: ^9.0.1
|
|
@@ -210,6 +463,9 @@ importers:
|
|
|
210
463
|
globals:
|
|
211
464
|
specifier: ^16.1.0
|
|
212
465
|
version: 16.5.0
|
|
466
|
+
http-proxy-middleware:
|
|
467
|
+
specifier: ^3.0.5
|
|
468
|
+
version: 3.0.5
|
|
213
469
|
jest:
|
|
214
470
|
specifier: ^29.2.1
|
|
215
471
|
version: 29.7.0(@types/node@25.0.3)
|
|
@@ -229,6 +485,19 @@ importers:
|
|
|
229
485
|
specifier: ^8.32.1
|
|
230
486
|
version: 8.51.0(eslint@9.39.2)(typescript@5.9.3)
|
|
231
487
|
|
|
488
|
+
server:
|
|
489
|
+
dependencies:
|
|
490
|
+
express:
|
|
491
|
+
specifier: ^4.22.1
|
|
492
|
+
version: 4.22.1
|
|
493
|
+
devDependencies:
|
|
494
|
+
'@types/express':
|
|
495
|
+
specifier: ^5.0.6
|
|
496
|
+
version: 5.0.6
|
|
497
|
+
tsx:
|
|
498
|
+
specifier: ^4.21.0
|
|
499
|
+
version: 4.21.0
|
|
500
|
+
|
|
232
501
|
packages:
|
|
233
502
|
|
|
234
503
|
'@0no-co/graphql.web@1.2.0':
|
|
@@ -941,262 +1210,88 @@ packages:
|
|
|
941
1210
|
resolution: {integrity: sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==}
|
|
942
1211
|
deprecated: 'Merged into tsx: https://tsx.is'
|
|
943
1212
|
|
|
944
|
-
'@esbuild/aix-ppc64@0.25.12':
|
|
945
|
-
resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
|
|
946
|
-
engines: {node: '>=18'}
|
|
947
|
-
cpu: [ppc64]
|
|
948
|
-
os: [aix]
|
|
949
|
-
|
|
950
1213
|
'@esbuild/aix-ppc64@0.27.2':
|
|
951
1214
|
resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
|
|
952
1215
|
engines: {node: '>=18'}
|
|
953
1216
|
cpu: [ppc64]
|
|
954
1217
|
os: [aix]
|
|
955
1218
|
|
|
956
|
-
'@esbuild/android-arm64@0.18.20':
|
|
957
|
-
resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
|
|
958
|
-
engines: {node: '>=12'}
|
|
959
|
-
cpu: [arm64]
|
|
960
|
-
os: [android]
|
|
961
|
-
|
|
962
|
-
'@esbuild/android-arm64@0.25.12':
|
|
963
|
-
resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
|
|
964
|
-
engines: {node: '>=18'}
|
|
965
|
-
cpu: [arm64]
|
|
966
|
-
os: [android]
|
|
967
|
-
|
|
968
1219
|
'@esbuild/android-arm64@0.27.2':
|
|
969
1220
|
resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==}
|
|
970
1221
|
engines: {node: '>=18'}
|
|
971
1222
|
cpu: [arm64]
|
|
972
1223
|
os: [android]
|
|
973
1224
|
|
|
974
|
-
'@esbuild/android-arm@0.18.20':
|
|
975
|
-
resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
|
|
976
|
-
engines: {node: '>=12'}
|
|
977
|
-
cpu: [arm]
|
|
978
|
-
os: [android]
|
|
979
|
-
|
|
980
|
-
'@esbuild/android-arm@0.25.12':
|
|
981
|
-
resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
|
|
982
|
-
engines: {node: '>=18'}
|
|
983
|
-
cpu: [arm]
|
|
984
|
-
os: [android]
|
|
985
|
-
|
|
986
1225
|
'@esbuild/android-arm@0.27.2':
|
|
987
1226
|
resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==}
|
|
988
1227
|
engines: {node: '>=18'}
|
|
989
1228
|
cpu: [arm]
|
|
990
1229
|
os: [android]
|
|
991
1230
|
|
|
992
|
-
'@esbuild/android-x64@0.18.20':
|
|
993
|
-
resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
|
|
994
|
-
engines: {node: '>=12'}
|
|
995
|
-
cpu: [x64]
|
|
996
|
-
os: [android]
|
|
997
|
-
|
|
998
|
-
'@esbuild/android-x64@0.25.12':
|
|
999
|
-
resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
|
|
1000
|
-
engines: {node: '>=18'}
|
|
1001
|
-
cpu: [x64]
|
|
1002
|
-
os: [android]
|
|
1003
|
-
|
|
1004
1231
|
'@esbuild/android-x64@0.27.2':
|
|
1005
1232
|
resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==}
|
|
1006
1233
|
engines: {node: '>=18'}
|
|
1007
1234
|
cpu: [x64]
|
|
1008
1235
|
os: [android]
|
|
1009
1236
|
|
|
1010
|
-
'@esbuild/darwin-arm64@0.18.20':
|
|
1011
|
-
resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
|
|
1012
|
-
engines: {node: '>=12'}
|
|
1013
|
-
cpu: [arm64]
|
|
1014
|
-
os: [darwin]
|
|
1015
|
-
|
|
1016
|
-
'@esbuild/darwin-arm64@0.25.12':
|
|
1017
|
-
resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
|
|
1018
|
-
engines: {node: '>=18'}
|
|
1019
|
-
cpu: [arm64]
|
|
1020
|
-
os: [darwin]
|
|
1021
|
-
|
|
1022
1237
|
'@esbuild/darwin-arm64@0.27.2':
|
|
1023
1238
|
resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==}
|
|
1024
1239
|
engines: {node: '>=18'}
|
|
1025
1240
|
cpu: [arm64]
|
|
1026
1241
|
os: [darwin]
|
|
1027
1242
|
|
|
1028
|
-
'@esbuild/darwin-x64@0.18.20':
|
|
1029
|
-
resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
|
|
1030
|
-
engines: {node: '>=12'}
|
|
1031
|
-
cpu: [x64]
|
|
1032
|
-
os: [darwin]
|
|
1033
|
-
|
|
1034
|
-
'@esbuild/darwin-x64@0.25.12':
|
|
1035
|
-
resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
|
|
1036
|
-
engines: {node: '>=18'}
|
|
1037
|
-
cpu: [x64]
|
|
1038
|
-
os: [darwin]
|
|
1039
|
-
|
|
1040
1243
|
'@esbuild/darwin-x64@0.27.2':
|
|
1041
1244
|
resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==}
|
|
1042
1245
|
engines: {node: '>=18'}
|
|
1043
1246
|
cpu: [x64]
|
|
1044
1247
|
os: [darwin]
|
|
1045
1248
|
|
|
1046
|
-
'@esbuild/freebsd-arm64@0.18.20':
|
|
1047
|
-
resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
|
|
1048
|
-
engines: {node: '>=12'}
|
|
1049
|
-
cpu: [arm64]
|
|
1050
|
-
os: [freebsd]
|
|
1051
|
-
|
|
1052
|
-
'@esbuild/freebsd-arm64@0.25.12':
|
|
1053
|
-
resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
|
|
1054
|
-
engines: {node: '>=18'}
|
|
1055
|
-
cpu: [arm64]
|
|
1056
|
-
os: [freebsd]
|
|
1057
|
-
|
|
1058
1249
|
'@esbuild/freebsd-arm64@0.27.2':
|
|
1059
1250
|
resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==}
|
|
1060
1251
|
engines: {node: '>=18'}
|
|
1061
1252
|
cpu: [arm64]
|
|
1062
1253
|
os: [freebsd]
|
|
1063
1254
|
|
|
1064
|
-
'@esbuild/freebsd-x64@0.18.20':
|
|
1065
|
-
resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
|
|
1066
|
-
engines: {node: '>=12'}
|
|
1067
|
-
cpu: [x64]
|
|
1068
|
-
os: [freebsd]
|
|
1069
|
-
|
|
1070
|
-
'@esbuild/freebsd-x64@0.25.12':
|
|
1071
|
-
resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
|
|
1072
|
-
engines: {node: '>=18'}
|
|
1073
|
-
cpu: [x64]
|
|
1074
|
-
os: [freebsd]
|
|
1075
|
-
|
|
1076
1255
|
'@esbuild/freebsd-x64@0.27.2':
|
|
1077
1256
|
resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==}
|
|
1078
1257
|
engines: {node: '>=18'}
|
|
1079
1258
|
cpu: [x64]
|
|
1080
1259
|
os: [freebsd]
|
|
1081
1260
|
|
|
1082
|
-
'@esbuild/linux-arm64@0.18.20':
|
|
1083
|
-
resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
|
|
1084
|
-
engines: {node: '>=12'}
|
|
1085
|
-
cpu: [arm64]
|
|
1086
|
-
os: [linux]
|
|
1087
|
-
|
|
1088
|
-
'@esbuild/linux-arm64@0.25.12':
|
|
1089
|
-
resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
|
|
1090
|
-
engines: {node: '>=18'}
|
|
1091
|
-
cpu: [arm64]
|
|
1092
|
-
os: [linux]
|
|
1093
|
-
|
|
1094
1261
|
'@esbuild/linux-arm64@0.27.2':
|
|
1095
1262
|
resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==}
|
|
1096
1263
|
engines: {node: '>=18'}
|
|
1097
1264
|
cpu: [arm64]
|
|
1098
1265
|
os: [linux]
|
|
1099
1266
|
|
|
1100
|
-
'@esbuild/linux-arm@0.18.20':
|
|
1101
|
-
resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
|
|
1102
|
-
engines: {node: '>=12'}
|
|
1103
|
-
cpu: [arm]
|
|
1104
|
-
os: [linux]
|
|
1105
|
-
|
|
1106
|
-
'@esbuild/linux-arm@0.25.12':
|
|
1107
|
-
resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
|
|
1108
|
-
engines: {node: '>=18'}
|
|
1109
|
-
cpu: [arm]
|
|
1110
|
-
os: [linux]
|
|
1111
|
-
|
|
1112
1267
|
'@esbuild/linux-arm@0.27.2':
|
|
1113
1268
|
resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==}
|
|
1114
1269
|
engines: {node: '>=18'}
|
|
1115
1270
|
cpu: [arm]
|
|
1116
1271
|
os: [linux]
|
|
1117
1272
|
|
|
1118
|
-
'@esbuild/linux-ia32@0.18.20':
|
|
1119
|
-
resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
|
|
1120
|
-
engines: {node: '>=12'}
|
|
1121
|
-
cpu: [ia32]
|
|
1122
|
-
os: [linux]
|
|
1123
|
-
|
|
1124
|
-
'@esbuild/linux-ia32@0.25.12':
|
|
1125
|
-
resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
|
|
1126
|
-
engines: {node: '>=18'}
|
|
1127
|
-
cpu: [ia32]
|
|
1128
|
-
os: [linux]
|
|
1129
|
-
|
|
1130
1273
|
'@esbuild/linux-ia32@0.27.2':
|
|
1131
1274
|
resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==}
|
|
1132
1275
|
engines: {node: '>=18'}
|
|
1133
1276
|
cpu: [ia32]
|
|
1134
1277
|
os: [linux]
|
|
1135
1278
|
|
|
1136
|
-
'@esbuild/linux-loong64@0.18.20':
|
|
1137
|
-
resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
|
|
1138
|
-
engines: {node: '>=12'}
|
|
1139
|
-
cpu: [loong64]
|
|
1140
|
-
os: [linux]
|
|
1141
|
-
|
|
1142
|
-
'@esbuild/linux-loong64@0.25.12':
|
|
1143
|
-
resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
|
|
1144
|
-
engines: {node: '>=18'}
|
|
1145
|
-
cpu: [loong64]
|
|
1146
|
-
os: [linux]
|
|
1147
|
-
|
|
1148
1279
|
'@esbuild/linux-loong64@0.27.2':
|
|
1149
1280
|
resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==}
|
|
1150
1281
|
engines: {node: '>=18'}
|
|
1151
1282
|
cpu: [loong64]
|
|
1152
1283
|
os: [linux]
|
|
1153
1284
|
|
|
1154
|
-
'@esbuild/linux-mips64el@0.18.20':
|
|
1155
|
-
resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
|
|
1156
|
-
engines: {node: '>=12'}
|
|
1157
|
-
cpu: [mips64el]
|
|
1158
|
-
os: [linux]
|
|
1159
|
-
|
|
1160
|
-
'@esbuild/linux-mips64el@0.25.12':
|
|
1161
|
-
resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
|
|
1162
|
-
engines: {node: '>=18'}
|
|
1163
|
-
cpu: [mips64el]
|
|
1164
|
-
os: [linux]
|
|
1165
|
-
|
|
1166
1285
|
'@esbuild/linux-mips64el@0.27.2':
|
|
1167
1286
|
resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==}
|
|
1168
1287
|
engines: {node: '>=18'}
|
|
1169
1288
|
cpu: [mips64el]
|
|
1170
1289
|
os: [linux]
|
|
1171
1290
|
|
|
1172
|
-
'@esbuild/linux-ppc64@0.18.20':
|
|
1173
|
-
resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
|
|
1174
|
-
engines: {node: '>=12'}
|
|
1175
|
-
cpu: [ppc64]
|
|
1176
|
-
os: [linux]
|
|
1177
|
-
|
|
1178
|
-
'@esbuild/linux-ppc64@0.25.12':
|
|
1179
|
-
resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
|
|
1180
|
-
engines: {node: '>=18'}
|
|
1181
|
-
cpu: [ppc64]
|
|
1182
|
-
os: [linux]
|
|
1183
|
-
|
|
1184
1291
|
'@esbuild/linux-ppc64@0.27.2':
|
|
1185
|
-
resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
|
|
1186
|
-
engines: {node: '>=18'}
|
|
1187
|
-
cpu: [ppc64]
|
|
1188
|
-
os: [linux]
|
|
1189
|
-
|
|
1190
|
-
'@esbuild/linux-riscv64@0.18.20':
|
|
1191
|
-
resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
|
|
1192
|
-
engines: {node: '>=12'}
|
|
1193
|
-
cpu: [riscv64]
|
|
1194
|
-
os: [linux]
|
|
1195
|
-
|
|
1196
|
-
'@esbuild/linux-riscv64@0.25.12':
|
|
1197
|
-
resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
|
|
1292
|
+
resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
|
|
1198
1293
|
engines: {node: '>=18'}
|
|
1199
|
-
cpu: [
|
|
1294
|
+
cpu: [ppc64]
|
|
1200
1295
|
os: [linux]
|
|
1201
1296
|
|
|
1202
1297
|
'@esbuild/linux-riscv64@0.27.2':
|
|
@@ -1205,180 +1300,66 @@ packages:
|
|
|
1205
1300
|
cpu: [riscv64]
|
|
1206
1301
|
os: [linux]
|
|
1207
1302
|
|
|
1208
|
-
'@esbuild/linux-s390x@0.18.20':
|
|
1209
|
-
resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
|
|
1210
|
-
engines: {node: '>=12'}
|
|
1211
|
-
cpu: [s390x]
|
|
1212
|
-
os: [linux]
|
|
1213
|
-
|
|
1214
|
-
'@esbuild/linux-s390x@0.25.12':
|
|
1215
|
-
resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
|
|
1216
|
-
engines: {node: '>=18'}
|
|
1217
|
-
cpu: [s390x]
|
|
1218
|
-
os: [linux]
|
|
1219
|
-
|
|
1220
1303
|
'@esbuild/linux-s390x@0.27.2':
|
|
1221
1304
|
resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==}
|
|
1222
1305
|
engines: {node: '>=18'}
|
|
1223
1306
|
cpu: [s390x]
|
|
1224
1307
|
os: [linux]
|
|
1225
1308
|
|
|
1226
|
-
'@esbuild/linux-x64@0.18.20':
|
|
1227
|
-
resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
|
|
1228
|
-
engines: {node: '>=12'}
|
|
1229
|
-
cpu: [x64]
|
|
1230
|
-
os: [linux]
|
|
1231
|
-
|
|
1232
|
-
'@esbuild/linux-x64@0.25.12':
|
|
1233
|
-
resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
|
|
1234
|
-
engines: {node: '>=18'}
|
|
1235
|
-
cpu: [x64]
|
|
1236
|
-
os: [linux]
|
|
1237
|
-
|
|
1238
1309
|
'@esbuild/linux-x64@0.27.2':
|
|
1239
1310
|
resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==}
|
|
1240
1311
|
engines: {node: '>=18'}
|
|
1241
1312
|
cpu: [x64]
|
|
1242
1313
|
os: [linux]
|
|
1243
1314
|
|
|
1244
|
-
'@esbuild/netbsd-arm64@0.25.12':
|
|
1245
|
-
resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
|
|
1246
|
-
engines: {node: '>=18'}
|
|
1247
|
-
cpu: [arm64]
|
|
1248
|
-
os: [netbsd]
|
|
1249
|
-
|
|
1250
1315
|
'@esbuild/netbsd-arm64@0.27.2':
|
|
1251
1316
|
resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==}
|
|
1252
1317
|
engines: {node: '>=18'}
|
|
1253
1318
|
cpu: [arm64]
|
|
1254
1319
|
os: [netbsd]
|
|
1255
1320
|
|
|
1256
|
-
'@esbuild/netbsd-x64@0.18.20':
|
|
1257
|
-
resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
|
|
1258
|
-
engines: {node: '>=12'}
|
|
1259
|
-
cpu: [x64]
|
|
1260
|
-
os: [netbsd]
|
|
1261
|
-
|
|
1262
|
-
'@esbuild/netbsd-x64@0.25.12':
|
|
1263
|
-
resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
|
|
1264
|
-
engines: {node: '>=18'}
|
|
1265
|
-
cpu: [x64]
|
|
1266
|
-
os: [netbsd]
|
|
1267
|
-
|
|
1268
1321
|
'@esbuild/netbsd-x64@0.27.2':
|
|
1269
1322
|
resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==}
|
|
1270
1323
|
engines: {node: '>=18'}
|
|
1271
1324
|
cpu: [x64]
|
|
1272
1325
|
os: [netbsd]
|
|
1273
1326
|
|
|
1274
|
-
'@esbuild/openbsd-arm64@0.25.12':
|
|
1275
|
-
resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
|
|
1276
|
-
engines: {node: '>=18'}
|
|
1277
|
-
cpu: [arm64]
|
|
1278
|
-
os: [openbsd]
|
|
1279
|
-
|
|
1280
1327
|
'@esbuild/openbsd-arm64@0.27.2':
|
|
1281
1328
|
resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==}
|
|
1282
1329
|
engines: {node: '>=18'}
|
|
1283
1330
|
cpu: [arm64]
|
|
1284
1331
|
os: [openbsd]
|
|
1285
1332
|
|
|
1286
|
-
'@esbuild/openbsd-x64@0.18.20':
|
|
1287
|
-
resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
|
|
1288
|
-
engines: {node: '>=12'}
|
|
1289
|
-
cpu: [x64]
|
|
1290
|
-
os: [openbsd]
|
|
1291
|
-
|
|
1292
|
-
'@esbuild/openbsd-x64@0.25.12':
|
|
1293
|
-
resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
|
|
1294
|
-
engines: {node: '>=18'}
|
|
1295
|
-
cpu: [x64]
|
|
1296
|
-
os: [openbsd]
|
|
1297
|
-
|
|
1298
1333
|
'@esbuild/openbsd-x64@0.27.2':
|
|
1299
1334
|
resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==}
|
|
1300
1335
|
engines: {node: '>=18'}
|
|
1301
1336
|
cpu: [x64]
|
|
1302
1337
|
os: [openbsd]
|
|
1303
1338
|
|
|
1304
|
-
'@esbuild/openharmony-arm64@0.25.12':
|
|
1305
|
-
resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
|
|
1306
|
-
engines: {node: '>=18'}
|
|
1307
|
-
cpu: [arm64]
|
|
1308
|
-
os: [openharmony]
|
|
1309
|
-
|
|
1310
1339
|
'@esbuild/openharmony-arm64@0.27.2':
|
|
1311
1340
|
resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==}
|
|
1312
1341
|
engines: {node: '>=18'}
|
|
1313
1342
|
cpu: [arm64]
|
|
1314
1343
|
os: [openharmony]
|
|
1315
1344
|
|
|
1316
|
-
'@esbuild/sunos-x64@0.18.20':
|
|
1317
|
-
resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
|
|
1318
|
-
engines: {node: '>=12'}
|
|
1319
|
-
cpu: [x64]
|
|
1320
|
-
os: [sunos]
|
|
1321
|
-
|
|
1322
|
-
'@esbuild/sunos-x64@0.25.12':
|
|
1323
|
-
resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
|
|
1324
|
-
engines: {node: '>=18'}
|
|
1325
|
-
cpu: [x64]
|
|
1326
|
-
os: [sunos]
|
|
1327
|
-
|
|
1328
1345
|
'@esbuild/sunos-x64@0.27.2':
|
|
1329
1346
|
resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
|
|
1330
1347
|
engines: {node: '>=18'}
|
|
1331
1348
|
cpu: [x64]
|
|
1332
1349
|
os: [sunos]
|
|
1333
1350
|
|
|
1334
|
-
'@esbuild/win32-arm64@0.18.20':
|
|
1335
|
-
resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
|
|
1336
|
-
engines: {node: '>=12'}
|
|
1337
|
-
cpu: [arm64]
|
|
1338
|
-
os: [win32]
|
|
1339
|
-
|
|
1340
|
-
'@esbuild/win32-arm64@0.25.12':
|
|
1341
|
-
resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
|
|
1342
|
-
engines: {node: '>=18'}
|
|
1343
|
-
cpu: [arm64]
|
|
1344
|
-
os: [win32]
|
|
1345
|
-
|
|
1346
1351
|
'@esbuild/win32-arm64@0.27.2':
|
|
1347
1352
|
resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==}
|
|
1348
1353
|
engines: {node: '>=18'}
|
|
1349
1354
|
cpu: [arm64]
|
|
1350
1355
|
os: [win32]
|
|
1351
1356
|
|
|
1352
|
-
'@esbuild/win32-ia32@0.18.20':
|
|
1353
|
-
resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
|
|
1354
|
-
engines: {node: '>=12'}
|
|
1355
|
-
cpu: [ia32]
|
|
1356
|
-
os: [win32]
|
|
1357
|
-
|
|
1358
|
-
'@esbuild/win32-ia32@0.25.12':
|
|
1359
|
-
resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
|
|
1360
|
-
engines: {node: '>=18'}
|
|
1361
|
-
cpu: [ia32]
|
|
1362
|
-
os: [win32]
|
|
1363
|
-
|
|
1364
1357
|
'@esbuild/win32-ia32@0.27.2':
|
|
1365
1358
|
resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==}
|
|
1366
1359
|
engines: {node: '>=18'}
|
|
1367
1360
|
cpu: [ia32]
|
|
1368
1361
|
os: [win32]
|
|
1369
1362
|
|
|
1370
|
-
'@esbuild/win32-x64@0.18.20':
|
|
1371
|
-
resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
|
|
1372
|
-
engines: {node: '>=12'}
|
|
1373
|
-
cpu: [x64]
|
|
1374
|
-
os: [win32]
|
|
1375
|
-
|
|
1376
|
-
'@esbuild/win32-x64@0.25.12':
|
|
1377
|
-
resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
|
|
1378
|
-
engines: {node: '>=18'}
|
|
1379
|
-
cpu: [x64]
|
|
1380
|
-
os: [win32]
|
|
1381
|
-
|
|
1382
1363
|
'@esbuild/win32-x64@0.27.2':
|
|
1383
1364
|
resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==}
|
|
1384
1365
|
engines: {node: '>=18'}
|
|
@@ -2322,6 +2303,9 @@ packages:
|
|
|
2322
2303
|
'@types/http-errors@2.0.5':
|
|
2323
2304
|
resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==}
|
|
2324
2305
|
|
|
2306
|
+
'@types/http-proxy@1.17.17':
|
|
2307
|
+
resolution: {integrity: sha512-ED6LB+Z1AVylNTu7hdzuBqOgMnvG/ld6wGCG8wFnAzKX5uyW2K3WD52v0gnLCTK/VLpXtKckgWuyScYK6cSPaw==}
|
|
2308
|
+
|
|
2325
2309
|
'@types/istanbul-lib-coverage@2.0.6':
|
|
2326
2310
|
resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
|
|
2327
2311
|
|
|
@@ -2346,12 +2330,18 @@ packages:
|
|
|
2346
2330
|
'@types/minimatch@3.0.5':
|
|
2347
2331
|
resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==}
|
|
2348
2332
|
|
|
2333
|
+
'@types/multer@2.0.0':
|
|
2334
|
+
resolution: {integrity: sha512-C3Z9v9Evij2yST3RSBktxP9STm6OdMc5uR1xF1SGr98uv8dUlAL2hqwrZ3GVB3uyMyiegnscEK6PGtYvNrjTjw==}
|
|
2335
|
+
|
|
2349
2336
|
'@types/node@25.0.3':
|
|
2350
2337
|
resolution: {integrity: sha512-W609buLVRVmeW693xKfzHeIV6nJGGz98uCPfeXI1ELMLXVeKYZ9m15fAMSaUPBHYLGFsVRcMmSCksQOrZV9BYA==}
|
|
2351
2338
|
|
|
2352
2339
|
'@types/parse-json@4.0.2':
|
|
2353
2340
|
resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
|
|
2354
2341
|
|
|
2342
|
+
'@types/pg@8.16.0':
|
|
2343
|
+
resolution: {integrity: sha512-RmhMd/wD+CF8Dfo+cVIy3RR5cl8CyfXQ0tGgW6XBL8L4LM/UTEbNXYRbLwU6w+CgrKBNbrQWt4FUtTfaU5jSYQ==}
|
|
2344
|
+
|
|
2355
2345
|
'@types/qs@6.14.0':
|
|
2356
2346
|
resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==}
|
|
2357
2347
|
|
|
@@ -2486,41 +2476,49 @@ packages:
|
|
|
2486
2476
|
resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==}
|
|
2487
2477
|
cpu: [arm64]
|
|
2488
2478
|
os: [linux]
|
|
2479
|
+
libc: [glibc]
|
|
2489
2480
|
|
|
2490
2481
|
'@unrs/resolver-binding-linux-arm64-musl@1.11.1':
|
|
2491
2482
|
resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==}
|
|
2492
2483
|
cpu: [arm64]
|
|
2493
2484
|
os: [linux]
|
|
2485
|
+
libc: [musl]
|
|
2494
2486
|
|
|
2495
2487
|
'@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
|
|
2496
2488
|
resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==}
|
|
2497
2489
|
cpu: [ppc64]
|
|
2498
2490
|
os: [linux]
|
|
2491
|
+
libc: [glibc]
|
|
2499
2492
|
|
|
2500
2493
|
'@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
|
|
2501
2494
|
resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==}
|
|
2502
2495
|
cpu: [riscv64]
|
|
2503
2496
|
os: [linux]
|
|
2497
|
+
libc: [glibc]
|
|
2504
2498
|
|
|
2505
2499
|
'@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
|
|
2506
2500
|
resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==}
|
|
2507
2501
|
cpu: [riscv64]
|
|
2508
2502
|
os: [linux]
|
|
2503
|
+
libc: [musl]
|
|
2509
2504
|
|
|
2510
2505
|
'@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
|
|
2511
2506
|
resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==}
|
|
2512
2507
|
cpu: [s390x]
|
|
2513
2508
|
os: [linux]
|
|
2509
|
+
libc: [glibc]
|
|
2514
2510
|
|
|
2515
2511
|
'@unrs/resolver-binding-linux-x64-gnu@1.11.1':
|
|
2516
2512
|
resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==}
|
|
2517
2513
|
cpu: [x64]
|
|
2518
2514
|
os: [linux]
|
|
2515
|
+
libc: [glibc]
|
|
2519
2516
|
|
|
2520
2517
|
'@unrs/resolver-binding-linux-x64-musl@1.11.1':
|
|
2521
2518
|
resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==}
|
|
2522
2519
|
cpu: [x64]
|
|
2523
2520
|
os: [linux]
|
|
2521
|
+
libc: [musl]
|
|
2524
2522
|
|
|
2525
2523
|
'@unrs/resolver-binding-wasm32-wasi@1.11.1':
|
|
2526
2524
|
resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==}
|
|
@@ -2662,6 +2660,9 @@ packages:
|
|
|
2662
2660
|
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
|
|
2663
2661
|
engines: {node: '>= 8'}
|
|
2664
2662
|
|
|
2663
|
+
append-field@1.0.0:
|
|
2664
|
+
resolution: {integrity: sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==}
|
|
2665
|
+
|
|
2665
2666
|
arg@5.0.2:
|
|
2666
2667
|
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
|
|
2667
2668
|
|
|
@@ -2875,6 +2876,10 @@ packages:
|
|
|
2875
2876
|
buffer@5.7.1:
|
|
2876
2877
|
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
|
|
2877
2878
|
|
|
2879
|
+
busboy@1.6.0:
|
|
2880
|
+
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
|
|
2881
|
+
engines: {node: '>=10.16.0'}
|
|
2882
|
+
|
|
2878
2883
|
bytes@3.1.2:
|
|
2879
2884
|
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
|
|
2880
2885
|
engines: {node: '>= 0.8'}
|
|
@@ -3050,6 +3055,10 @@ packages:
|
|
|
3050
3055
|
concat-map@0.0.1:
|
|
3051
3056
|
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
|
3052
3057
|
|
|
3058
|
+
concat-stream@2.0.0:
|
|
3059
|
+
resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==}
|
|
3060
|
+
engines: {'0': node >= 6.0}
|
|
3061
|
+
|
|
3053
3062
|
connect@3.7.0:
|
|
3054
3063
|
resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
|
|
3055
3064
|
engines: {node: '>= 0.10.0'}
|
|
@@ -3082,8 +3091,8 @@ packages:
|
|
|
3082
3091
|
resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
|
|
3083
3092
|
engines: {node: '>=10'}
|
|
3084
3093
|
|
|
3085
|
-
coze-coding-dev-sdk@0.5.
|
|
3086
|
-
resolution: {integrity: sha512-
|
|
3094
|
+
coze-coding-dev-sdk@0.5.5:
|
|
3095
|
+
resolution: {integrity: sha512-VVT/A4JwLgB0Cp3kO3Tnfl+ZhQcjbIcEcjeBNHTUmMs6eKLig6DaLnVh/blvUI3Pkih/GYCrk1IVaLF8uOi0Ug==}
|
|
3087
3096
|
engines: {node: '>=18.0.0'}
|
|
3088
3097
|
hasBin: true
|
|
3089
3098
|
|
|
@@ -3384,6 +3393,12 @@ packages:
|
|
|
3384
3393
|
sqlite3:
|
|
3385
3394
|
optional: true
|
|
3386
3395
|
|
|
3396
|
+
drizzle-zod@0.8.3:
|
|
3397
|
+
resolution: {integrity: sha512-66yVOuvGhKJnTdiqj1/Xaaz9/qzOdRJADpDa68enqS6g3t0kpNkwNYjUuaeXgZfO/UWuIM9HIhSlJ6C5ZraMww==}
|
|
3398
|
+
peerDependencies:
|
|
3399
|
+
drizzle-orm: '>=0.36.0'
|
|
3400
|
+
zod: ^3.25.0 || ^4.0.0
|
|
3401
|
+
|
|
3387
3402
|
dunder-proto@1.0.1:
|
|
3388
3403
|
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
|
|
3389
3404
|
engines: {node: '>= 0.4'}
|
|
@@ -3466,17 +3481,7 @@ packages:
|
|
|
3466
3481
|
esbuild-register@3.6.0:
|
|
3467
3482
|
resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
|
|
3468
3483
|
peerDependencies:
|
|
3469
|
-
esbuild:
|
|
3470
|
-
|
|
3471
|
-
esbuild@0.18.20:
|
|
3472
|
-
resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
|
|
3473
|
-
engines: {node: '>=12'}
|
|
3474
|
-
hasBin: true
|
|
3475
|
-
|
|
3476
|
-
esbuild@0.25.12:
|
|
3477
|
-
resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
|
|
3478
|
-
engines: {node: '>=18'}
|
|
3479
|
-
hasBin: true
|
|
3484
|
+
esbuild: 0.27.2
|
|
3480
3485
|
|
|
3481
3486
|
esbuild@0.27.2:
|
|
3482
3487
|
resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
|
|
@@ -4186,6 +4191,14 @@ packages:
|
|
|
4186
4191
|
resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
|
|
4187
4192
|
engines: {node: '>= 6'}
|
|
4188
4193
|
|
|
4194
|
+
http-proxy-middleware@3.0.5:
|
|
4195
|
+
resolution: {integrity: sha512-GLZZm1X38BPY4lkXA01jhwxvDoOkkXqjgVyUzVxiEK4iuRu03PZoYHhHRwxnfhQMDuaxi3vVri0YgSro/1oWqg==}
|
|
4196
|
+
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
|
4197
|
+
|
|
4198
|
+
http-proxy@1.18.1:
|
|
4199
|
+
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
|
|
4200
|
+
engines: {node: '>=8.0.0'}
|
|
4201
|
+
|
|
4189
4202
|
https-proxy-agent@5.0.1:
|
|
4190
4203
|
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
|
|
4191
4204
|
engines: {node: '>= 6'}
|
|
@@ -4356,6 +4369,10 @@ packages:
|
|
|
4356
4369
|
resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
|
|
4357
4370
|
engines: {node: '>=8'}
|
|
4358
4371
|
|
|
4372
|
+
is-plain-object@5.0.0:
|
|
4373
|
+
resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
|
|
4374
|
+
engines: {node: '>=0.10.0'}
|
|
4375
|
+
|
|
4359
4376
|
is-potential-custom-element-name@1.0.1:
|
|
4360
4377
|
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
|
|
4361
4378
|
|
|
@@ -4743,24 +4760,28 @@ packages:
|
|
|
4743
4760
|
engines: {node: '>= 12.0.0'}
|
|
4744
4761
|
cpu: [arm64]
|
|
4745
4762
|
os: [linux]
|
|
4763
|
+
libc: [glibc]
|
|
4746
4764
|
|
|
4747
4765
|
lightningcss-linux-arm64-musl@1.30.2:
|
|
4748
4766
|
resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
|
|
4749
4767
|
engines: {node: '>= 12.0.0'}
|
|
4750
4768
|
cpu: [arm64]
|
|
4751
4769
|
os: [linux]
|
|
4770
|
+
libc: [musl]
|
|
4752
4771
|
|
|
4753
4772
|
lightningcss-linux-x64-gnu@1.30.2:
|
|
4754
4773
|
resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
|
|
4755
4774
|
engines: {node: '>= 12.0.0'}
|
|
4756
4775
|
cpu: [x64]
|
|
4757
4776
|
os: [linux]
|
|
4777
|
+
libc: [glibc]
|
|
4758
4778
|
|
|
4759
4779
|
lightningcss-linux-x64-musl@1.30.2:
|
|
4760
4780
|
resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
|
|
4761
4781
|
engines: {node: '>= 12.0.0'}
|
|
4762
4782
|
cpu: [x64]
|
|
4763
4783
|
os: [linux]
|
|
4784
|
+
libc: [musl]
|
|
4764
4785
|
|
|
4765
4786
|
lightningcss-win32-arm64-msvc@1.30.2:
|
|
4766
4787
|
resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
|
|
@@ -4996,6 +5017,10 @@ packages:
|
|
|
4996
5017
|
resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==}
|
|
4997
5018
|
engines: {node: '>= 18'}
|
|
4998
5019
|
|
|
5020
|
+
mkdirp@0.5.6:
|
|
5021
|
+
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
|
|
5022
|
+
hasBin: true
|
|
5023
|
+
|
|
4999
5024
|
mkdirp@1.0.4:
|
|
5000
5025
|
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
|
|
5001
5026
|
engines: {node: '>=10'}
|
|
@@ -5007,6 +5032,10 @@ packages:
|
|
|
5007
5032
|
ms@2.1.3:
|
|
5008
5033
|
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
5009
5034
|
|
|
5035
|
+
multer@2.0.2:
|
|
5036
|
+
resolution: {integrity: sha512-u7f2xaZ/UG8oLXHvtF/oWTRvT44p9ecwBBqTwgJVq0+4BW1g8OW01TyMEGWBHbyMOYVHXslaut7qEQ1meATXgw==}
|
|
5037
|
+
engines: {node: '>= 10.16.0'}
|
|
5038
|
+
|
|
5010
5039
|
multimatch@5.0.0:
|
|
5011
5040
|
resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==}
|
|
5012
5041
|
engines: {node: '>=10'}
|
|
@@ -5984,6 +6013,10 @@ packages:
|
|
|
5984
6013
|
resolution: {integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==}
|
|
5985
6014
|
engines: {node: '>= 0.10.0'}
|
|
5986
6015
|
|
|
6016
|
+
streamsearch@1.1.0:
|
|
6017
|
+
resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
|
|
6018
|
+
engines: {node: '>=10.0.0'}
|
|
6019
|
+
|
|
5987
6020
|
strict-uri-encode@2.0.0:
|
|
5988
6021
|
resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
|
|
5989
6022
|
engines: {node: '>=4'}
|
|
@@ -6208,6 +6241,9 @@ packages:
|
|
|
6208
6241
|
resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
|
|
6209
6242
|
engines: {node: '>= 0.4'}
|
|
6210
6243
|
|
|
6244
|
+
typedarray@0.0.6:
|
|
6245
|
+
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
|
|
6246
|
+
|
|
6211
6247
|
typescript-eslint@8.51.0:
|
|
6212
6248
|
resolution: {integrity: sha512-jh8ZuM5oEh2PSdyQG9YAEM1TCGuWenLSuSUhf/irbVUNW9O5FhbFVONviN2TgMTBnUmyHv7E56rYnfLZK6TkiA==}
|
|
6213
6249
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
@@ -7687,7 +7723,7 @@ snapshots:
|
|
|
7687
7723
|
|
|
7688
7724
|
'@esbuild-kit/core-utils@3.3.2':
|
|
7689
7725
|
dependencies:
|
|
7690
|
-
esbuild: 0.
|
|
7726
|
+
esbuild: 0.27.2
|
|
7691
7727
|
source-map-support: 0.5.21
|
|
7692
7728
|
|
|
7693
7729
|
'@esbuild-kit/esm-loader@2.6.5':
|
|
@@ -7695,225 +7731,81 @@ snapshots:
|
|
|
7695
7731
|
'@esbuild-kit/core-utils': 3.3.2
|
|
7696
7732
|
get-tsconfig: 4.13.0
|
|
7697
7733
|
|
|
7698
|
-
'@esbuild/aix-ppc64@0.25.12':
|
|
7699
|
-
optional: true
|
|
7700
|
-
|
|
7701
7734
|
'@esbuild/aix-ppc64@0.27.2':
|
|
7702
7735
|
optional: true
|
|
7703
7736
|
|
|
7704
|
-
'@esbuild/android-arm64@0.18.20':
|
|
7705
|
-
optional: true
|
|
7706
|
-
|
|
7707
|
-
'@esbuild/android-arm64@0.25.12':
|
|
7708
|
-
optional: true
|
|
7709
|
-
|
|
7710
7737
|
'@esbuild/android-arm64@0.27.2':
|
|
7711
7738
|
optional: true
|
|
7712
7739
|
|
|
7713
|
-
'@esbuild/android-arm@0.18.20':
|
|
7714
|
-
optional: true
|
|
7715
|
-
|
|
7716
|
-
'@esbuild/android-arm@0.25.12':
|
|
7717
|
-
optional: true
|
|
7718
|
-
|
|
7719
7740
|
'@esbuild/android-arm@0.27.2':
|
|
7720
7741
|
optional: true
|
|
7721
7742
|
|
|
7722
|
-
'@esbuild/android-x64@0.18.20':
|
|
7723
|
-
optional: true
|
|
7724
|
-
|
|
7725
|
-
'@esbuild/android-x64@0.25.12':
|
|
7726
|
-
optional: true
|
|
7727
|
-
|
|
7728
7743
|
'@esbuild/android-x64@0.27.2':
|
|
7729
7744
|
optional: true
|
|
7730
7745
|
|
|
7731
|
-
'@esbuild/darwin-arm64@0.18.20':
|
|
7732
|
-
optional: true
|
|
7733
|
-
|
|
7734
|
-
'@esbuild/darwin-arm64@0.25.12':
|
|
7735
|
-
optional: true
|
|
7736
|
-
|
|
7737
7746
|
'@esbuild/darwin-arm64@0.27.2':
|
|
7738
7747
|
optional: true
|
|
7739
7748
|
|
|
7740
|
-
'@esbuild/darwin-x64@0.18.20':
|
|
7741
|
-
optional: true
|
|
7742
|
-
|
|
7743
|
-
'@esbuild/darwin-x64@0.25.12':
|
|
7744
|
-
optional: true
|
|
7745
|
-
|
|
7746
7749
|
'@esbuild/darwin-x64@0.27.2':
|
|
7747
7750
|
optional: true
|
|
7748
7751
|
|
|
7749
|
-
'@esbuild/freebsd-arm64@0.18.20':
|
|
7750
|
-
optional: true
|
|
7751
|
-
|
|
7752
|
-
'@esbuild/freebsd-arm64@0.25.12':
|
|
7753
|
-
optional: true
|
|
7754
|
-
|
|
7755
7752
|
'@esbuild/freebsd-arm64@0.27.2':
|
|
7756
7753
|
optional: true
|
|
7757
7754
|
|
|
7758
|
-
'@esbuild/freebsd-x64@0.18.20':
|
|
7759
|
-
optional: true
|
|
7760
|
-
|
|
7761
|
-
'@esbuild/freebsd-x64@0.25.12':
|
|
7762
|
-
optional: true
|
|
7763
|
-
|
|
7764
7755
|
'@esbuild/freebsd-x64@0.27.2':
|
|
7765
7756
|
optional: true
|
|
7766
7757
|
|
|
7767
|
-
'@esbuild/linux-arm64@0.18.20':
|
|
7768
|
-
optional: true
|
|
7769
|
-
|
|
7770
|
-
'@esbuild/linux-arm64@0.25.12':
|
|
7771
|
-
optional: true
|
|
7772
|
-
|
|
7773
7758
|
'@esbuild/linux-arm64@0.27.2':
|
|
7774
7759
|
optional: true
|
|
7775
7760
|
|
|
7776
|
-
'@esbuild/linux-arm@0.18.20':
|
|
7777
|
-
optional: true
|
|
7778
|
-
|
|
7779
|
-
'@esbuild/linux-arm@0.25.12':
|
|
7780
|
-
optional: true
|
|
7781
|
-
|
|
7782
7761
|
'@esbuild/linux-arm@0.27.2':
|
|
7783
7762
|
optional: true
|
|
7784
7763
|
|
|
7785
|
-
'@esbuild/linux-ia32@0.18.20':
|
|
7786
|
-
optional: true
|
|
7787
|
-
|
|
7788
|
-
'@esbuild/linux-ia32@0.25.12':
|
|
7789
|
-
optional: true
|
|
7790
|
-
|
|
7791
7764
|
'@esbuild/linux-ia32@0.27.2':
|
|
7792
7765
|
optional: true
|
|
7793
7766
|
|
|
7794
|
-
'@esbuild/linux-loong64@0.18.20':
|
|
7795
|
-
optional: true
|
|
7796
|
-
|
|
7797
|
-
'@esbuild/linux-loong64@0.25.12':
|
|
7798
|
-
optional: true
|
|
7799
|
-
|
|
7800
7767
|
'@esbuild/linux-loong64@0.27.2':
|
|
7801
7768
|
optional: true
|
|
7802
7769
|
|
|
7803
|
-
'@esbuild/linux-mips64el@0.18.20':
|
|
7804
|
-
optional: true
|
|
7805
|
-
|
|
7806
|
-
'@esbuild/linux-mips64el@0.25.12':
|
|
7807
|
-
optional: true
|
|
7808
|
-
|
|
7809
7770
|
'@esbuild/linux-mips64el@0.27.2':
|
|
7810
7771
|
optional: true
|
|
7811
7772
|
|
|
7812
|
-
'@esbuild/linux-ppc64@0.18.20':
|
|
7813
|
-
optional: true
|
|
7814
|
-
|
|
7815
|
-
'@esbuild/linux-ppc64@0.25.12':
|
|
7816
|
-
optional: true
|
|
7817
|
-
|
|
7818
7773
|
'@esbuild/linux-ppc64@0.27.2':
|
|
7819
7774
|
optional: true
|
|
7820
7775
|
|
|
7821
|
-
'@esbuild/linux-riscv64@0.18.20':
|
|
7822
|
-
optional: true
|
|
7823
|
-
|
|
7824
|
-
'@esbuild/linux-riscv64@0.25.12':
|
|
7825
|
-
optional: true
|
|
7826
|
-
|
|
7827
7776
|
'@esbuild/linux-riscv64@0.27.2':
|
|
7828
7777
|
optional: true
|
|
7829
7778
|
|
|
7830
|
-
'@esbuild/linux-s390x@0.18.20':
|
|
7831
|
-
optional: true
|
|
7832
|
-
|
|
7833
|
-
'@esbuild/linux-s390x@0.25.12':
|
|
7834
|
-
optional: true
|
|
7835
|
-
|
|
7836
7779
|
'@esbuild/linux-s390x@0.27.2':
|
|
7837
7780
|
optional: true
|
|
7838
7781
|
|
|
7839
|
-
'@esbuild/linux-x64@0.18.20':
|
|
7840
|
-
optional: true
|
|
7841
|
-
|
|
7842
|
-
'@esbuild/linux-x64@0.25.12':
|
|
7843
|
-
optional: true
|
|
7844
|
-
|
|
7845
7782
|
'@esbuild/linux-x64@0.27.2':
|
|
7846
7783
|
optional: true
|
|
7847
7784
|
|
|
7848
|
-
'@esbuild/netbsd-arm64@0.25.12':
|
|
7849
|
-
optional: true
|
|
7850
|
-
|
|
7851
7785
|
'@esbuild/netbsd-arm64@0.27.2':
|
|
7852
7786
|
optional: true
|
|
7853
7787
|
|
|
7854
|
-
'@esbuild/netbsd-x64@0.18.20':
|
|
7855
|
-
optional: true
|
|
7856
|
-
|
|
7857
|
-
'@esbuild/netbsd-x64@0.25.12':
|
|
7858
|
-
optional: true
|
|
7859
|
-
|
|
7860
7788
|
'@esbuild/netbsd-x64@0.27.2':
|
|
7861
7789
|
optional: true
|
|
7862
7790
|
|
|
7863
|
-
'@esbuild/openbsd-arm64@0.25.12':
|
|
7864
|
-
optional: true
|
|
7865
|
-
|
|
7866
7791
|
'@esbuild/openbsd-arm64@0.27.2':
|
|
7867
7792
|
optional: true
|
|
7868
7793
|
|
|
7869
|
-
'@esbuild/openbsd-x64@0.18.20':
|
|
7870
|
-
optional: true
|
|
7871
|
-
|
|
7872
|
-
'@esbuild/openbsd-x64@0.25.12':
|
|
7873
|
-
optional: true
|
|
7874
|
-
|
|
7875
7794
|
'@esbuild/openbsd-x64@0.27.2':
|
|
7876
7795
|
optional: true
|
|
7877
7796
|
|
|
7878
|
-
'@esbuild/openharmony-arm64@0.25.12':
|
|
7879
|
-
optional: true
|
|
7880
|
-
|
|
7881
7797
|
'@esbuild/openharmony-arm64@0.27.2':
|
|
7882
7798
|
optional: true
|
|
7883
7799
|
|
|
7884
|
-
'@esbuild/sunos-x64@0.18.20':
|
|
7885
|
-
optional: true
|
|
7886
|
-
|
|
7887
|
-
'@esbuild/sunos-x64@0.25.12':
|
|
7888
|
-
optional: true
|
|
7889
|
-
|
|
7890
7800
|
'@esbuild/sunos-x64@0.27.2':
|
|
7891
7801
|
optional: true
|
|
7892
7802
|
|
|
7893
|
-
'@esbuild/win32-arm64@0.18.20':
|
|
7894
|
-
optional: true
|
|
7895
|
-
|
|
7896
|
-
'@esbuild/win32-arm64@0.25.12':
|
|
7897
|
-
optional: true
|
|
7898
|
-
|
|
7899
7803
|
'@esbuild/win32-arm64@0.27.2':
|
|
7900
7804
|
optional: true
|
|
7901
7805
|
|
|
7902
|
-
'@esbuild/win32-ia32@0.18.20':
|
|
7903
|
-
optional: true
|
|
7904
|
-
|
|
7905
|
-
'@esbuild/win32-ia32@0.25.12':
|
|
7906
|
-
optional: true
|
|
7907
|
-
|
|
7908
7806
|
'@esbuild/win32-ia32@0.27.2':
|
|
7909
7807
|
optional: true
|
|
7910
7808
|
|
|
7911
|
-
'@esbuild/win32-x64@0.18.20':
|
|
7912
|
-
optional: true
|
|
7913
|
-
|
|
7914
|
-
'@esbuild/win32-x64@0.25.12':
|
|
7915
|
-
optional: true
|
|
7916
|
-
|
|
7917
7809
|
'@esbuild/win32-x64@0.27.2':
|
|
7918
7810
|
optional: true
|
|
7919
7811
|
|
|
@@ -9334,6 +9226,10 @@ snapshots:
|
|
|
9334
9226
|
|
|
9335
9227
|
'@types/http-errors@2.0.5': {}
|
|
9336
9228
|
|
|
9229
|
+
'@types/http-proxy@1.17.17':
|
|
9230
|
+
dependencies:
|
|
9231
|
+
'@types/node': 25.0.3
|
|
9232
|
+
|
|
9337
9233
|
'@types/istanbul-lib-coverage@2.0.6': {}
|
|
9338
9234
|
|
|
9339
9235
|
'@types/istanbul-lib-report@3.0.3':
|
|
@@ -9361,12 +9257,22 @@ snapshots:
|
|
|
9361
9257
|
|
|
9362
9258
|
'@types/minimatch@3.0.5': {}
|
|
9363
9259
|
|
|
9260
|
+
'@types/multer@2.0.0':
|
|
9261
|
+
dependencies:
|
|
9262
|
+
'@types/express': 5.0.6
|
|
9263
|
+
|
|
9364
9264
|
'@types/node@25.0.3':
|
|
9365
9265
|
dependencies:
|
|
9366
9266
|
undici-types: 7.16.0
|
|
9367
9267
|
|
|
9368
9268
|
'@types/parse-json@4.0.2': {}
|
|
9369
9269
|
|
|
9270
|
+
'@types/pg@8.16.0':
|
|
9271
|
+
dependencies:
|
|
9272
|
+
'@types/node': 25.0.3
|
|
9273
|
+
pg-protocol: 1.10.3
|
|
9274
|
+
pg-types: 2.2.0
|
|
9275
|
+
|
|
9370
9276
|
'@types/qs@6.14.0': {}
|
|
9371
9277
|
|
|
9372
9278
|
'@types/range-parser@1.2.7': {}
|
|
@@ -9681,6 +9587,8 @@ snapshots:
|
|
|
9681
9587
|
normalize-path: 3.0.0
|
|
9682
9588
|
picomatch: 2.3.1
|
|
9683
9589
|
|
|
9590
|
+
append-field@1.0.0: {}
|
|
9591
|
+
|
|
9684
9592
|
arg@5.0.2: {}
|
|
9685
9593
|
|
|
9686
9594
|
argparse@1.0.10:
|
|
@@ -9782,7 +9690,7 @@ snapshots:
|
|
|
9782
9690
|
|
|
9783
9691
|
axios@1.13.2:
|
|
9784
9692
|
dependencies:
|
|
9785
|
-
follow-redirects: 1.15.11
|
|
9693
|
+
follow-redirects: 1.15.11(debug@4.4.3)
|
|
9786
9694
|
form-data: 4.0.5
|
|
9787
9695
|
proxy-from-env: 1.1.0
|
|
9788
9696
|
transitivePeerDependencies:
|
|
@@ -10005,6 +9913,10 @@ snapshots:
|
|
|
10005
9913
|
base64-js: 1.5.1
|
|
10006
9914
|
ieee754: 1.2.1
|
|
10007
9915
|
|
|
9916
|
+
busboy@1.6.0:
|
|
9917
|
+
dependencies:
|
|
9918
|
+
streamsearch: 1.1.0
|
|
9919
|
+
|
|
10008
9920
|
bytes@3.1.2: {}
|
|
10009
9921
|
|
|
10010
9922
|
call-bind-apply-helpers@1.0.2:
|
|
@@ -10172,6 +10084,13 @@ snapshots:
|
|
|
10172
10084
|
|
|
10173
10085
|
concat-map@0.0.1: {}
|
|
10174
10086
|
|
|
10087
|
+
concat-stream@2.0.0:
|
|
10088
|
+
dependencies:
|
|
10089
|
+
buffer-from: 1.1.2
|
|
10090
|
+
inherits: 2.0.4
|
|
10091
|
+
readable-stream: 3.6.2
|
|
10092
|
+
typedarray: 0.0.6
|
|
10093
|
+
|
|
10175
10094
|
connect@3.7.0:
|
|
10176
10095
|
dependencies:
|
|
10177
10096
|
debug: 2.6.9
|
|
@@ -10209,7 +10128,7 @@ snapshots:
|
|
|
10209
10128
|
path-type: 4.0.0
|
|
10210
10129
|
yaml: 1.10.2
|
|
10211
10130
|
|
|
10212
|
-
coze-coding-dev-sdk@0.5.0(openai@6.15.0(ws@8.18.3)(zod@4.3.2))(ws@8.18.3):
|
|
10131
|
+
coze-coding-dev-sdk@0.5.5(@types/pg@8.16.0)(openai@6.15.0(ws@8.18.3)(zod@4.3.2))(ws@8.18.3):
|
|
10213
10132
|
dependencies:
|
|
10214
10133
|
'@aws-sdk/client-s3': 3.958.0
|
|
10215
10134
|
'@aws-sdk/lib-storage': 3.958.0(@aws-sdk/client-s3@3.958.0)
|
|
@@ -10219,7 +10138,7 @@ snapshots:
|
|
|
10219
10138
|
chalk: 5.6.2
|
|
10220
10139
|
commander: 14.0.2
|
|
10221
10140
|
drizzle-kit: 0.31.8
|
|
10222
|
-
drizzle-orm: 0.45.1(pg@8.16.3)
|
|
10141
|
+
drizzle-orm: 0.45.1(@types/pg@8.16.0)(pg@8.16.3)
|
|
10223
10142
|
ora: 9.0.0
|
|
10224
10143
|
pg: 8.16.3
|
|
10225
10144
|
transitivePeerDependencies:
|
|
@@ -10470,15 +10389,21 @@ snapshots:
|
|
|
10470
10389
|
dependencies:
|
|
10471
10390
|
'@drizzle-team/brocli': 0.10.2
|
|
10472
10391
|
'@esbuild-kit/esm-loader': 2.6.5
|
|
10473
|
-
esbuild: 0.
|
|
10474
|
-
esbuild-register: 3.6.0(esbuild@0.
|
|
10392
|
+
esbuild: 0.27.2
|
|
10393
|
+
esbuild-register: 3.6.0(esbuild@0.27.2)
|
|
10475
10394
|
transitivePeerDependencies:
|
|
10476
10395
|
- supports-color
|
|
10477
10396
|
|
|
10478
|
-
drizzle-orm@0.45.1(pg@8.16.3):
|
|
10397
|
+
drizzle-orm@0.45.1(@types/pg@8.16.0)(pg@8.16.3):
|
|
10479
10398
|
optionalDependencies:
|
|
10399
|
+
'@types/pg': 8.16.0
|
|
10480
10400
|
pg: 8.16.3
|
|
10481
10401
|
|
|
10402
|
+
drizzle-zod@0.8.3(drizzle-orm@0.45.1(@types/pg@8.16.0)(pg@8.16.3))(zod@4.3.2):
|
|
10403
|
+
dependencies:
|
|
10404
|
+
drizzle-orm: 0.45.1(@types/pg@8.16.0)(pg@8.16.3)
|
|
10405
|
+
zod: 4.3.2
|
|
10406
|
+
|
|
10482
10407
|
dunder-proto@1.0.1:
|
|
10483
10408
|
dependencies:
|
|
10484
10409
|
call-bind-apply-helpers: 1.0.2
|
|
@@ -10614,67 +10539,13 @@ snapshots:
|
|
|
10614
10539
|
is-date-object: 1.1.0
|
|
10615
10540
|
is-symbol: 1.1.1
|
|
10616
10541
|
|
|
10617
|
-
esbuild-register@3.6.0(esbuild@0.
|
|
10542
|
+
esbuild-register@3.6.0(esbuild@0.27.2):
|
|
10618
10543
|
dependencies:
|
|
10619
10544
|
debug: 4.4.3
|
|
10620
|
-
esbuild: 0.
|
|
10545
|
+
esbuild: 0.27.2
|
|
10621
10546
|
transitivePeerDependencies:
|
|
10622
10547
|
- supports-color
|
|
10623
10548
|
|
|
10624
|
-
esbuild@0.18.20:
|
|
10625
|
-
optionalDependencies:
|
|
10626
|
-
'@esbuild/android-arm': 0.18.20
|
|
10627
|
-
'@esbuild/android-arm64': 0.18.20
|
|
10628
|
-
'@esbuild/android-x64': 0.18.20
|
|
10629
|
-
'@esbuild/darwin-arm64': 0.18.20
|
|
10630
|
-
'@esbuild/darwin-x64': 0.18.20
|
|
10631
|
-
'@esbuild/freebsd-arm64': 0.18.20
|
|
10632
|
-
'@esbuild/freebsd-x64': 0.18.20
|
|
10633
|
-
'@esbuild/linux-arm': 0.18.20
|
|
10634
|
-
'@esbuild/linux-arm64': 0.18.20
|
|
10635
|
-
'@esbuild/linux-ia32': 0.18.20
|
|
10636
|
-
'@esbuild/linux-loong64': 0.18.20
|
|
10637
|
-
'@esbuild/linux-mips64el': 0.18.20
|
|
10638
|
-
'@esbuild/linux-ppc64': 0.18.20
|
|
10639
|
-
'@esbuild/linux-riscv64': 0.18.20
|
|
10640
|
-
'@esbuild/linux-s390x': 0.18.20
|
|
10641
|
-
'@esbuild/linux-x64': 0.18.20
|
|
10642
|
-
'@esbuild/netbsd-x64': 0.18.20
|
|
10643
|
-
'@esbuild/openbsd-x64': 0.18.20
|
|
10644
|
-
'@esbuild/sunos-x64': 0.18.20
|
|
10645
|
-
'@esbuild/win32-arm64': 0.18.20
|
|
10646
|
-
'@esbuild/win32-ia32': 0.18.20
|
|
10647
|
-
'@esbuild/win32-x64': 0.18.20
|
|
10648
|
-
|
|
10649
|
-
esbuild@0.25.12:
|
|
10650
|
-
optionalDependencies:
|
|
10651
|
-
'@esbuild/aix-ppc64': 0.25.12
|
|
10652
|
-
'@esbuild/android-arm': 0.25.12
|
|
10653
|
-
'@esbuild/android-arm64': 0.25.12
|
|
10654
|
-
'@esbuild/android-x64': 0.25.12
|
|
10655
|
-
'@esbuild/darwin-arm64': 0.25.12
|
|
10656
|
-
'@esbuild/darwin-x64': 0.25.12
|
|
10657
|
-
'@esbuild/freebsd-arm64': 0.25.12
|
|
10658
|
-
'@esbuild/freebsd-x64': 0.25.12
|
|
10659
|
-
'@esbuild/linux-arm': 0.25.12
|
|
10660
|
-
'@esbuild/linux-arm64': 0.25.12
|
|
10661
|
-
'@esbuild/linux-ia32': 0.25.12
|
|
10662
|
-
'@esbuild/linux-loong64': 0.25.12
|
|
10663
|
-
'@esbuild/linux-mips64el': 0.25.12
|
|
10664
|
-
'@esbuild/linux-ppc64': 0.25.12
|
|
10665
|
-
'@esbuild/linux-riscv64': 0.25.12
|
|
10666
|
-
'@esbuild/linux-s390x': 0.25.12
|
|
10667
|
-
'@esbuild/linux-x64': 0.25.12
|
|
10668
|
-
'@esbuild/netbsd-arm64': 0.25.12
|
|
10669
|
-
'@esbuild/netbsd-x64': 0.25.12
|
|
10670
|
-
'@esbuild/openbsd-arm64': 0.25.12
|
|
10671
|
-
'@esbuild/openbsd-x64': 0.25.12
|
|
10672
|
-
'@esbuild/openharmony-arm64': 0.25.12
|
|
10673
|
-
'@esbuild/sunos-x64': 0.25.12
|
|
10674
|
-
'@esbuild/win32-arm64': 0.25.12
|
|
10675
|
-
'@esbuild/win32-ia32': 0.25.12
|
|
10676
|
-
'@esbuild/win32-x64': 0.25.12
|
|
10677
|
-
|
|
10678
10549
|
esbuild@0.27.2:
|
|
10679
10550
|
optionalDependencies:
|
|
10680
10551
|
'@esbuild/aix-ppc64': 0.27.2
|
|
@@ -11329,7 +11200,9 @@ snapshots:
|
|
|
11329
11200
|
|
|
11330
11201
|
flow-enums-runtime@0.0.6: {}
|
|
11331
11202
|
|
|
11332
|
-
follow-redirects@1.15.11:
|
|
11203
|
+
follow-redirects@1.15.11(debug@4.4.3):
|
|
11204
|
+
optionalDependencies:
|
|
11205
|
+
debug: 4.4.3
|
|
11333
11206
|
|
|
11334
11207
|
fontfaceobserver@2.3.0: {}
|
|
11335
11208
|
|
|
@@ -11546,6 +11419,25 @@ snapshots:
|
|
|
11546
11419
|
transitivePeerDependencies:
|
|
11547
11420
|
- supports-color
|
|
11548
11421
|
|
|
11422
|
+
http-proxy-middleware@3.0.5:
|
|
11423
|
+
dependencies:
|
|
11424
|
+
'@types/http-proxy': 1.17.17
|
|
11425
|
+
debug: 4.4.3
|
|
11426
|
+
http-proxy: 1.18.1(debug@4.4.3)
|
|
11427
|
+
is-glob: 4.0.3
|
|
11428
|
+
is-plain-object: 5.0.0
|
|
11429
|
+
micromatch: 4.0.8
|
|
11430
|
+
transitivePeerDependencies:
|
|
11431
|
+
- supports-color
|
|
11432
|
+
|
|
11433
|
+
http-proxy@1.18.1(debug@4.4.3):
|
|
11434
|
+
dependencies:
|
|
11435
|
+
eventemitter3: 4.0.7
|
|
11436
|
+
follow-redirects: 1.15.11(debug@4.4.3)
|
|
11437
|
+
requires-port: 1.0.0
|
|
11438
|
+
transitivePeerDependencies:
|
|
11439
|
+
- debug
|
|
11440
|
+
|
|
11549
11441
|
https-proxy-agent@5.0.1:
|
|
11550
11442
|
dependencies:
|
|
11551
11443
|
agent-base: 6.0.2
|
|
@@ -11706,6 +11598,8 @@ snapshots:
|
|
|
11706
11598
|
|
|
11707
11599
|
is-plain-obj@2.1.0: {}
|
|
11708
11600
|
|
|
11601
|
+
is-plain-object@5.0.0: {}
|
|
11602
|
+
|
|
11709
11603
|
is-potential-custom-element-name@1.0.1: {}
|
|
11710
11604
|
|
|
11711
11605
|
is-regex@1.2.1:
|
|
@@ -12643,12 +12537,26 @@ snapshots:
|
|
|
12643
12537
|
dependencies:
|
|
12644
12538
|
minipass: 7.1.2
|
|
12645
12539
|
|
|
12540
|
+
mkdirp@0.5.6:
|
|
12541
|
+
dependencies:
|
|
12542
|
+
minimist: 1.2.8
|
|
12543
|
+
|
|
12646
12544
|
mkdirp@1.0.4: {}
|
|
12647
12545
|
|
|
12648
12546
|
ms@2.0.0: {}
|
|
12649
12547
|
|
|
12650
12548
|
ms@2.1.3: {}
|
|
12651
12549
|
|
|
12550
|
+
multer@2.0.2:
|
|
12551
|
+
dependencies:
|
|
12552
|
+
append-field: 1.0.0
|
|
12553
|
+
busboy: 1.6.0
|
|
12554
|
+
concat-stream: 2.0.0
|
|
12555
|
+
mkdirp: 0.5.6
|
|
12556
|
+
object-assign: 4.1.1
|
|
12557
|
+
type-is: 1.6.18
|
|
12558
|
+
xtend: 4.0.2
|
|
12559
|
+
|
|
12652
12560
|
multimatch@5.0.0:
|
|
12653
12561
|
dependencies:
|
|
12654
12562
|
'@types/minimatch': 3.0.5
|
|
@@ -13681,6 +13589,8 @@ snapshots:
|
|
|
13681
13589
|
|
|
13682
13590
|
stream-buffers@2.2.0: {}
|
|
13683
13591
|
|
|
13592
|
+
streamsearch@1.1.0: {}
|
|
13593
|
+
|
|
13684
13594
|
strict-uri-encode@2.0.0: {}
|
|
13685
13595
|
|
|
13686
13596
|
string-length@4.0.2:
|
|
@@ -13945,6 +13855,8 @@ snapshots:
|
|
|
13945
13855
|
possible-typed-array-names: 1.1.0
|
|
13946
13856
|
reflect.getprototypeof: 1.0.10
|
|
13947
13857
|
|
|
13858
|
+
typedarray@0.0.6: {}
|
|
13859
|
+
|
|
13948
13860
|
typescript-eslint@8.51.0(eslint@9.39.2)(typescript@5.9.3):
|
|
13949
13861
|
dependencies:
|
|
13950
13862
|
'@typescript-eslint/eslint-plugin': 8.51.0(@typescript-eslint/parser@8.51.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3)
|