@coze-arch/cli 0.0.1-alpha.f74941 → 0.0.1-alpha.f9be02
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 +34 -0
- package/lib/__templates__/expo/_gitignore +1 -1
- package/lib/__templates__/expo/_npmrc +3 -5
- package/lib/__templates__/expo/client/app.config.ts +71 -0
- package/lib/__templates__/expo/client/metro.config.js +121 -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/src/components/ThemedText.tsx +33 -0
- package/lib/__templates__/expo/client/src/components/ThemedView.tsx +38 -0
- package/lib/__templates__/expo/client/src/constants/theme.ts +850 -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 +29 -14
- package/lib/__templates__/expo/pnpm-lock.yaml +549 -351
- 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 +9 -4
- package/lib/__templates__/expo/app.json +0 -63
- 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/constants/theme.ts +0 -118
- package/lib/__templates__/expo/client/contexts/AuthContext.tsx +0 -142
- package/lib/__templates__/expo/client/index.js +0 -11
- 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,22 @@ 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)
|
|
20
|
+
'@expo/metro-runtime':
|
|
21
|
+
specifier: ^6.1.2
|
|
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)
|
|
11
23
|
'@expo/vector-icons':
|
|
12
24
|
specifier: ^15.0.0
|
|
13
25
|
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)
|
|
@@ -38,12 +50,30 @@ importers:
|
|
|
38
50
|
ajv-formats:
|
|
39
51
|
specifier: ^3.0.1
|
|
40
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
|
|
41
62
|
coze-coding-dev-sdk:
|
|
42
|
-
specifier: 0.5.
|
|
43
|
-
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)
|
|
44
65
|
dayjs:
|
|
45
66
|
specifier: ^1.11.19
|
|
46
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)
|
|
47
77
|
expo:
|
|
48
78
|
specifier: ^54.0.7
|
|
49
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)
|
|
@@ -104,6 +134,15 @@ importers:
|
|
|
104
134
|
express:
|
|
105
135
|
specifier: ^4.22.1
|
|
106
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
|
|
107
146
|
react:
|
|
108
147
|
specifier: 19.1.0
|
|
109
148
|
version: 19.1.0
|
|
@@ -165,26 +204,243 @@ importers:
|
|
|
165
204
|
'@types/jest':
|
|
166
205
|
specifier: ^29.5.12
|
|
167
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
|
|
168
213
|
'@types/react':
|
|
169
214
|
specifier: ~19.1.0
|
|
170
215
|
version: 19.1.17
|
|
171
216
|
'@types/react-test-renderer':
|
|
172
217
|
specifier: 19.1.0
|
|
173
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)
|
|
174
300
|
babel-plugin-module-resolver:
|
|
175
301
|
specifier: ^5.0.2
|
|
176
302
|
version: 5.0.2
|
|
177
303
|
babel-preset-expo:
|
|
178
304
|
specifier: ^54.0.9
|
|
179
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
|
|
180
430
|
chalk:
|
|
181
431
|
specifier: ^4.1.2
|
|
182
432
|
version: 4.1.2
|
|
433
|
+
connect:
|
|
434
|
+
specifier: ^3.7.0
|
|
435
|
+
version: 3.7.0
|
|
183
436
|
depcheck:
|
|
184
437
|
specifier: ^1.4.7
|
|
185
438
|
version: 1.4.7
|
|
439
|
+
esbuild:
|
|
440
|
+
specifier: 0.27.2
|
|
441
|
+
version: 0.27.2
|
|
186
442
|
eslint:
|
|
187
|
-
specifier: ^9.
|
|
443
|
+
specifier: ^9.39.2
|
|
188
444
|
version: 9.39.2
|
|
189
445
|
eslint-formatter-compact:
|
|
190
446
|
specifier: ^9.0.1
|
|
@@ -207,6 +463,9 @@ importers:
|
|
|
207
463
|
globals:
|
|
208
464
|
specifier: ^16.1.0
|
|
209
465
|
version: 16.5.0
|
|
466
|
+
http-proxy-middleware:
|
|
467
|
+
specifier: ^3.0.5
|
|
468
|
+
version: 3.0.5
|
|
210
469
|
jest:
|
|
211
470
|
specifier: ^29.2.1
|
|
212
471
|
version: 29.7.0(@types/node@25.0.3)
|
|
@@ -216,6 +475,9 @@ importers:
|
|
|
216
475
|
react-test-renderer:
|
|
217
476
|
specifier: 19.1.0
|
|
218
477
|
version: 19.1.0(react@19.1.0)
|
|
478
|
+
tsx:
|
|
479
|
+
specifier: ^4.21.0
|
|
480
|
+
version: 4.21.0
|
|
219
481
|
typescript:
|
|
220
482
|
specifier: ^5.8.3
|
|
221
483
|
version: 5.9.3
|
|
@@ -223,6 +485,19 @@ importers:
|
|
|
223
485
|
specifier: ^8.32.1
|
|
224
486
|
version: 8.51.0(eslint@9.39.2)(typescript@5.9.3)
|
|
225
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
|
+
|
|
226
501
|
packages:
|
|
227
502
|
|
|
228
503
|
'@0no-co/graphql.web@1.2.0':
|
|
@@ -935,290 +1210,158 @@ packages:
|
|
|
935
1210
|
resolution: {integrity: sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==}
|
|
936
1211
|
deprecated: 'Merged into tsx: https://tsx.is'
|
|
937
1212
|
|
|
938
|
-
'@esbuild/aix-ppc64@0.
|
|
939
|
-
resolution: {integrity: sha512-
|
|
1213
|
+
'@esbuild/aix-ppc64@0.27.2':
|
|
1214
|
+
resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
|
|
940
1215
|
engines: {node: '>=18'}
|
|
941
1216
|
cpu: [ppc64]
|
|
942
1217
|
os: [aix]
|
|
943
1218
|
|
|
944
|
-
'@esbuild/android-arm64@0.
|
|
945
|
-
resolution: {integrity: sha512-
|
|
946
|
-
engines: {node: '>=12'}
|
|
947
|
-
cpu: [arm64]
|
|
948
|
-
os: [android]
|
|
949
|
-
|
|
950
|
-
'@esbuild/android-arm64@0.25.12':
|
|
951
|
-
resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
|
|
1219
|
+
'@esbuild/android-arm64@0.27.2':
|
|
1220
|
+
resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==}
|
|
952
1221
|
engines: {node: '>=18'}
|
|
953
1222
|
cpu: [arm64]
|
|
954
1223
|
os: [android]
|
|
955
1224
|
|
|
956
|
-
'@esbuild/android-arm@0.
|
|
957
|
-
resolution: {integrity: sha512-
|
|
958
|
-
engines: {node: '>=12'}
|
|
959
|
-
cpu: [arm]
|
|
960
|
-
os: [android]
|
|
961
|
-
|
|
962
|
-
'@esbuild/android-arm@0.25.12':
|
|
963
|
-
resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
|
|
1225
|
+
'@esbuild/android-arm@0.27.2':
|
|
1226
|
+
resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==}
|
|
964
1227
|
engines: {node: '>=18'}
|
|
965
1228
|
cpu: [arm]
|
|
966
1229
|
os: [android]
|
|
967
1230
|
|
|
968
|
-
'@esbuild/android-x64@0.
|
|
969
|
-
resolution: {integrity: sha512-
|
|
970
|
-
engines: {node: '>=12'}
|
|
971
|
-
cpu: [x64]
|
|
972
|
-
os: [android]
|
|
973
|
-
|
|
974
|
-
'@esbuild/android-x64@0.25.12':
|
|
975
|
-
resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
|
|
1231
|
+
'@esbuild/android-x64@0.27.2':
|
|
1232
|
+
resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==}
|
|
976
1233
|
engines: {node: '>=18'}
|
|
977
1234
|
cpu: [x64]
|
|
978
1235
|
os: [android]
|
|
979
1236
|
|
|
980
|
-
'@esbuild/darwin-arm64@0.
|
|
981
|
-
resolution: {integrity: sha512-
|
|
982
|
-
engines: {node: '>=12'}
|
|
983
|
-
cpu: [arm64]
|
|
984
|
-
os: [darwin]
|
|
985
|
-
|
|
986
|
-
'@esbuild/darwin-arm64@0.25.12':
|
|
987
|
-
resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
|
|
1237
|
+
'@esbuild/darwin-arm64@0.27.2':
|
|
1238
|
+
resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==}
|
|
988
1239
|
engines: {node: '>=18'}
|
|
989
1240
|
cpu: [arm64]
|
|
990
1241
|
os: [darwin]
|
|
991
1242
|
|
|
992
|
-
'@esbuild/darwin-x64@0.
|
|
993
|
-
resolution: {integrity: sha512-
|
|
994
|
-
engines: {node: '>=12'}
|
|
995
|
-
cpu: [x64]
|
|
996
|
-
os: [darwin]
|
|
997
|
-
|
|
998
|
-
'@esbuild/darwin-x64@0.25.12':
|
|
999
|
-
resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
|
|
1243
|
+
'@esbuild/darwin-x64@0.27.2':
|
|
1244
|
+
resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==}
|
|
1000
1245
|
engines: {node: '>=18'}
|
|
1001
1246
|
cpu: [x64]
|
|
1002
1247
|
os: [darwin]
|
|
1003
1248
|
|
|
1004
|
-
'@esbuild/freebsd-arm64@0.
|
|
1005
|
-
resolution: {integrity: sha512-
|
|
1006
|
-
engines: {node: '>=12'}
|
|
1007
|
-
cpu: [arm64]
|
|
1008
|
-
os: [freebsd]
|
|
1009
|
-
|
|
1010
|
-
'@esbuild/freebsd-arm64@0.25.12':
|
|
1011
|
-
resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
|
|
1249
|
+
'@esbuild/freebsd-arm64@0.27.2':
|
|
1250
|
+
resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==}
|
|
1012
1251
|
engines: {node: '>=18'}
|
|
1013
1252
|
cpu: [arm64]
|
|
1014
1253
|
os: [freebsd]
|
|
1015
1254
|
|
|
1016
|
-
'@esbuild/freebsd-x64@0.
|
|
1017
|
-
resolution: {integrity: sha512-
|
|
1018
|
-
engines: {node: '>=12'}
|
|
1019
|
-
cpu: [x64]
|
|
1020
|
-
os: [freebsd]
|
|
1021
|
-
|
|
1022
|
-
'@esbuild/freebsd-x64@0.25.12':
|
|
1023
|
-
resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
|
|
1255
|
+
'@esbuild/freebsd-x64@0.27.2':
|
|
1256
|
+
resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==}
|
|
1024
1257
|
engines: {node: '>=18'}
|
|
1025
1258
|
cpu: [x64]
|
|
1026
1259
|
os: [freebsd]
|
|
1027
1260
|
|
|
1028
|
-
'@esbuild/linux-arm64@0.
|
|
1029
|
-
resolution: {integrity: sha512-
|
|
1030
|
-
engines: {node: '>=12'}
|
|
1031
|
-
cpu: [arm64]
|
|
1032
|
-
os: [linux]
|
|
1033
|
-
|
|
1034
|
-
'@esbuild/linux-arm64@0.25.12':
|
|
1035
|
-
resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
|
|
1261
|
+
'@esbuild/linux-arm64@0.27.2':
|
|
1262
|
+
resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==}
|
|
1036
1263
|
engines: {node: '>=18'}
|
|
1037
1264
|
cpu: [arm64]
|
|
1038
1265
|
os: [linux]
|
|
1039
1266
|
|
|
1040
|
-
'@esbuild/linux-arm@0.
|
|
1041
|
-
resolution: {integrity: sha512
|
|
1042
|
-
engines: {node: '>=12'}
|
|
1043
|
-
cpu: [arm]
|
|
1044
|
-
os: [linux]
|
|
1045
|
-
|
|
1046
|
-
'@esbuild/linux-arm@0.25.12':
|
|
1047
|
-
resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
|
|
1267
|
+
'@esbuild/linux-arm@0.27.2':
|
|
1268
|
+
resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==}
|
|
1048
1269
|
engines: {node: '>=18'}
|
|
1049
1270
|
cpu: [arm]
|
|
1050
1271
|
os: [linux]
|
|
1051
1272
|
|
|
1052
|
-
'@esbuild/linux-ia32@0.
|
|
1053
|
-
resolution: {integrity: sha512-
|
|
1054
|
-
engines: {node: '>=12'}
|
|
1055
|
-
cpu: [ia32]
|
|
1056
|
-
os: [linux]
|
|
1057
|
-
|
|
1058
|
-
'@esbuild/linux-ia32@0.25.12':
|
|
1059
|
-
resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
|
|
1273
|
+
'@esbuild/linux-ia32@0.27.2':
|
|
1274
|
+
resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==}
|
|
1060
1275
|
engines: {node: '>=18'}
|
|
1061
1276
|
cpu: [ia32]
|
|
1062
1277
|
os: [linux]
|
|
1063
1278
|
|
|
1064
|
-
'@esbuild/linux-loong64@0.
|
|
1065
|
-
resolution: {integrity: sha512-
|
|
1066
|
-
engines: {node: '>=12'}
|
|
1067
|
-
cpu: [loong64]
|
|
1068
|
-
os: [linux]
|
|
1069
|
-
|
|
1070
|
-
'@esbuild/linux-loong64@0.25.12':
|
|
1071
|
-
resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
|
|
1279
|
+
'@esbuild/linux-loong64@0.27.2':
|
|
1280
|
+
resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==}
|
|
1072
1281
|
engines: {node: '>=18'}
|
|
1073
1282
|
cpu: [loong64]
|
|
1074
1283
|
os: [linux]
|
|
1075
1284
|
|
|
1076
|
-
'@esbuild/linux-mips64el@0.
|
|
1077
|
-
resolution: {integrity: sha512-
|
|
1078
|
-
engines: {node: '>=12'}
|
|
1079
|
-
cpu: [mips64el]
|
|
1080
|
-
os: [linux]
|
|
1081
|
-
|
|
1082
|
-
'@esbuild/linux-mips64el@0.25.12':
|
|
1083
|
-
resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
|
|
1285
|
+
'@esbuild/linux-mips64el@0.27.2':
|
|
1286
|
+
resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==}
|
|
1084
1287
|
engines: {node: '>=18'}
|
|
1085
1288
|
cpu: [mips64el]
|
|
1086
1289
|
os: [linux]
|
|
1087
1290
|
|
|
1088
|
-
'@esbuild/linux-ppc64@0.
|
|
1089
|
-
resolution: {integrity: sha512-
|
|
1090
|
-
engines: {node: '>=12'}
|
|
1091
|
-
cpu: [ppc64]
|
|
1092
|
-
os: [linux]
|
|
1093
|
-
|
|
1094
|
-
'@esbuild/linux-ppc64@0.25.12':
|
|
1095
|
-
resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
|
|
1291
|
+
'@esbuild/linux-ppc64@0.27.2':
|
|
1292
|
+
resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
|
|
1096
1293
|
engines: {node: '>=18'}
|
|
1097
1294
|
cpu: [ppc64]
|
|
1098
1295
|
os: [linux]
|
|
1099
1296
|
|
|
1100
|
-
'@esbuild/linux-riscv64@0.
|
|
1101
|
-
resolution: {integrity: sha512-
|
|
1102
|
-
engines: {node: '>=12'}
|
|
1103
|
-
cpu: [riscv64]
|
|
1104
|
-
os: [linux]
|
|
1105
|
-
|
|
1106
|
-
'@esbuild/linux-riscv64@0.25.12':
|
|
1107
|
-
resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
|
|
1297
|
+
'@esbuild/linux-riscv64@0.27.2':
|
|
1298
|
+
resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==}
|
|
1108
1299
|
engines: {node: '>=18'}
|
|
1109
1300
|
cpu: [riscv64]
|
|
1110
1301
|
os: [linux]
|
|
1111
1302
|
|
|
1112
|
-
'@esbuild/linux-s390x@0.
|
|
1113
|
-
resolution: {integrity: sha512
|
|
1114
|
-
engines: {node: '>=12'}
|
|
1115
|
-
cpu: [s390x]
|
|
1116
|
-
os: [linux]
|
|
1117
|
-
|
|
1118
|
-
'@esbuild/linux-s390x@0.25.12':
|
|
1119
|
-
resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
|
|
1303
|
+
'@esbuild/linux-s390x@0.27.2':
|
|
1304
|
+
resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==}
|
|
1120
1305
|
engines: {node: '>=18'}
|
|
1121
1306
|
cpu: [s390x]
|
|
1122
1307
|
os: [linux]
|
|
1123
1308
|
|
|
1124
|
-
'@esbuild/linux-x64@0.
|
|
1125
|
-
resolution: {integrity: sha512-
|
|
1126
|
-
engines: {node: '>=12'}
|
|
1127
|
-
cpu: [x64]
|
|
1128
|
-
os: [linux]
|
|
1129
|
-
|
|
1130
|
-
'@esbuild/linux-x64@0.25.12':
|
|
1131
|
-
resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
|
|
1309
|
+
'@esbuild/linux-x64@0.27.2':
|
|
1310
|
+
resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==}
|
|
1132
1311
|
engines: {node: '>=18'}
|
|
1133
1312
|
cpu: [x64]
|
|
1134
1313
|
os: [linux]
|
|
1135
1314
|
|
|
1136
|
-
'@esbuild/netbsd-arm64@0.
|
|
1137
|
-
resolution: {integrity: sha512-
|
|
1315
|
+
'@esbuild/netbsd-arm64@0.27.2':
|
|
1316
|
+
resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==}
|
|
1138
1317
|
engines: {node: '>=18'}
|
|
1139
1318
|
cpu: [arm64]
|
|
1140
1319
|
os: [netbsd]
|
|
1141
1320
|
|
|
1142
|
-
'@esbuild/netbsd-x64@0.
|
|
1143
|
-
resolution: {integrity: sha512-
|
|
1144
|
-
engines: {node: '>=12'}
|
|
1145
|
-
cpu: [x64]
|
|
1146
|
-
os: [netbsd]
|
|
1147
|
-
|
|
1148
|
-
'@esbuild/netbsd-x64@0.25.12':
|
|
1149
|
-
resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
|
|
1321
|
+
'@esbuild/netbsd-x64@0.27.2':
|
|
1322
|
+
resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==}
|
|
1150
1323
|
engines: {node: '>=18'}
|
|
1151
1324
|
cpu: [x64]
|
|
1152
1325
|
os: [netbsd]
|
|
1153
1326
|
|
|
1154
|
-
'@esbuild/openbsd-arm64@0.
|
|
1155
|
-
resolution: {integrity: sha512-
|
|
1327
|
+
'@esbuild/openbsd-arm64@0.27.2':
|
|
1328
|
+
resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==}
|
|
1156
1329
|
engines: {node: '>=18'}
|
|
1157
1330
|
cpu: [arm64]
|
|
1158
1331
|
os: [openbsd]
|
|
1159
1332
|
|
|
1160
|
-
'@esbuild/openbsd-x64@0.
|
|
1161
|
-
resolution: {integrity: sha512
|
|
1162
|
-
engines: {node: '>=12'}
|
|
1163
|
-
cpu: [x64]
|
|
1164
|
-
os: [openbsd]
|
|
1165
|
-
|
|
1166
|
-
'@esbuild/openbsd-x64@0.25.12':
|
|
1167
|
-
resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
|
|
1333
|
+
'@esbuild/openbsd-x64@0.27.2':
|
|
1334
|
+
resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==}
|
|
1168
1335
|
engines: {node: '>=18'}
|
|
1169
1336
|
cpu: [x64]
|
|
1170
1337
|
os: [openbsd]
|
|
1171
1338
|
|
|
1172
|
-
'@esbuild/openharmony-arm64@0.
|
|
1173
|
-
resolution: {integrity: sha512-
|
|
1339
|
+
'@esbuild/openharmony-arm64@0.27.2':
|
|
1340
|
+
resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==}
|
|
1174
1341
|
engines: {node: '>=18'}
|
|
1175
1342
|
cpu: [arm64]
|
|
1176
1343
|
os: [openharmony]
|
|
1177
1344
|
|
|
1178
|
-
'@esbuild/sunos-x64@0.
|
|
1179
|
-
resolution: {integrity: sha512-
|
|
1180
|
-
engines: {node: '>=12'}
|
|
1181
|
-
cpu: [x64]
|
|
1182
|
-
os: [sunos]
|
|
1183
|
-
|
|
1184
|
-
'@esbuild/sunos-x64@0.25.12':
|
|
1185
|
-
resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
|
|
1345
|
+
'@esbuild/sunos-x64@0.27.2':
|
|
1346
|
+
resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
|
|
1186
1347
|
engines: {node: '>=18'}
|
|
1187
1348
|
cpu: [x64]
|
|
1188
1349
|
os: [sunos]
|
|
1189
1350
|
|
|
1190
|
-
'@esbuild/win32-arm64@0.
|
|
1191
|
-
resolution: {integrity: sha512-
|
|
1192
|
-
engines: {node: '>=12'}
|
|
1193
|
-
cpu: [arm64]
|
|
1194
|
-
os: [win32]
|
|
1195
|
-
|
|
1196
|
-
'@esbuild/win32-arm64@0.25.12':
|
|
1197
|
-
resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
|
|
1351
|
+
'@esbuild/win32-arm64@0.27.2':
|
|
1352
|
+
resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==}
|
|
1198
1353
|
engines: {node: '>=18'}
|
|
1199
1354
|
cpu: [arm64]
|
|
1200
1355
|
os: [win32]
|
|
1201
1356
|
|
|
1202
|
-
'@esbuild/win32-ia32@0.
|
|
1203
|
-
resolution: {integrity: sha512-
|
|
1204
|
-
engines: {node: '>=12'}
|
|
1205
|
-
cpu: [ia32]
|
|
1206
|
-
os: [win32]
|
|
1207
|
-
|
|
1208
|
-
'@esbuild/win32-ia32@0.25.12':
|
|
1209
|
-
resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
|
|
1357
|
+
'@esbuild/win32-ia32@0.27.2':
|
|
1358
|
+
resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==}
|
|
1210
1359
|
engines: {node: '>=18'}
|
|
1211
1360
|
cpu: [ia32]
|
|
1212
1361
|
os: [win32]
|
|
1213
1362
|
|
|
1214
|
-
'@esbuild/win32-x64@0.
|
|
1215
|
-
resolution: {integrity: sha512-
|
|
1216
|
-
engines: {node: '>=12'}
|
|
1217
|
-
cpu: [x64]
|
|
1218
|
-
os: [win32]
|
|
1219
|
-
|
|
1220
|
-
'@esbuild/win32-x64@0.25.12':
|
|
1221
|
-
resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
|
|
1363
|
+
'@esbuild/win32-x64@0.27.2':
|
|
1364
|
+
resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==}
|
|
1222
1365
|
engines: {node: '>=18'}
|
|
1223
1366
|
cpu: [x64]
|
|
1224
1367
|
os: [win32]
|
|
@@ -2160,6 +2303,9 @@ packages:
|
|
|
2160
2303
|
'@types/http-errors@2.0.5':
|
|
2161
2304
|
resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==}
|
|
2162
2305
|
|
|
2306
|
+
'@types/http-proxy@1.17.17':
|
|
2307
|
+
resolution: {integrity: sha512-ED6LB+Z1AVylNTu7hdzuBqOgMnvG/ld6wGCG8wFnAzKX5uyW2K3WD52v0gnLCTK/VLpXtKckgWuyScYK6cSPaw==}
|
|
2308
|
+
|
|
2163
2309
|
'@types/istanbul-lib-coverage@2.0.6':
|
|
2164
2310
|
resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
|
|
2165
2311
|
|
|
@@ -2184,12 +2330,18 @@ packages:
|
|
|
2184
2330
|
'@types/minimatch@3.0.5':
|
|
2185
2331
|
resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==}
|
|
2186
2332
|
|
|
2333
|
+
'@types/multer@2.0.0':
|
|
2334
|
+
resolution: {integrity: sha512-C3Z9v9Evij2yST3RSBktxP9STm6OdMc5uR1xF1SGr98uv8dUlAL2hqwrZ3GVB3uyMyiegnscEK6PGtYvNrjTjw==}
|
|
2335
|
+
|
|
2187
2336
|
'@types/node@25.0.3':
|
|
2188
2337
|
resolution: {integrity: sha512-W609buLVRVmeW693xKfzHeIV6nJGGz98uCPfeXI1ELMLXVeKYZ9m15fAMSaUPBHYLGFsVRcMmSCksQOrZV9BYA==}
|
|
2189
2338
|
|
|
2190
2339
|
'@types/parse-json@4.0.2':
|
|
2191
2340
|
resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
|
|
2192
2341
|
|
|
2342
|
+
'@types/pg@8.16.0':
|
|
2343
|
+
resolution: {integrity: sha512-RmhMd/wD+CF8Dfo+cVIy3RR5cl8CyfXQ0tGgW6XBL8L4LM/UTEbNXYRbLwU6w+CgrKBNbrQWt4FUtTfaU5jSYQ==}
|
|
2344
|
+
|
|
2193
2345
|
'@types/qs@6.14.0':
|
|
2194
2346
|
resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==}
|
|
2195
2347
|
|
|
@@ -2324,41 +2476,49 @@ packages:
|
|
|
2324
2476
|
resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==}
|
|
2325
2477
|
cpu: [arm64]
|
|
2326
2478
|
os: [linux]
|
|
2479
|
+
libc: [glibc]
|
|
2327
2480
|
|
|
2328
2481
|
'@unrs/resolver-binding-linux-arm64-musl@1.11.1':
|
|
2329
2482
|
resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==}
|
|
2330
2483
|
cpu: [arm64]
|
|
2331
2484
|
os: [linux]
|
|
2485
|
+
libc: [musl]
|
|
2332
2486
|
|
|
2333
2487
|
'@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
|
|
2334
2488
|
resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==}
|
|
2335
2489
|
cpu: [ppc64]
|
|
2336
2490
|
os: [linux]
|
|
2491
|
+
libc: [glibc]
|
|
2337
2492
|
|
|
2338
2493
|
'@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
|
|
2339
2494
|
resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==}
|
|
2340
2495
|
cpu: [riscv64]
|
|
2341
2496
|
os: [linux]
|
|
2497
|
+
libc: [glibc]
|
|
2342
2498
|
|
|
2343
2499
|
'@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
|
|
2344
2500
|
resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==}
|
|
2345
2501
|
cpu: [riscv64]
|
|
2346
2502
|
os: [linux]
|
|
2503
|
+
libc: [musl]
|
|
2347
2504
|
|
|
2348
2505
|
'@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
|
|
2349
2506
|
resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==}
|
|
2350
2507
|
cpu: [s390x]
|
|
2351
2508
|
os: [linux]
|
|
2509
|
+
libc: [glibc]
|
|
2352
2510
|
|
|
2353
2511
|
'@unrs/resolver-binding-linux-x64-gnu@1.11.1':
|
|
2354
2512
|
resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==}
|
|
2355
2513
|
cpu: [x64]
|
|
2356
2514
|
os: [linux]
|
|
2515
|
+
libc: [glibc]
|
|
2357
2516
|
|
|
2358
2517
|
'@unrs/resolver-binding-linux-x64-musl@1.11.1':
|
|
2359
2518
|
resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==}
|
|
2360
2519
|
cpu: [x64]
|
|
2361
2520
|
os: [linux]
|
|
2521
|
+
libc: [musl]
|
|
2362
2522
|
|
|
2363
2523
|
'@unrs/resolver-binding-wasm32-wasi@1.11.1':
|
|
2364
2524
|
resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==}
|
|
@@ -2500,6 +2660,9 @@ packages:
|
|
|
2500
2660
|
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
|
|
2501
2661
|
engines: {node: '>= 8'}
|
|
2502
2662
|
|
|
2663
|
+
append-field@1.0.0:
|
|
2664
|
+
resolution: {integrity: sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==}
|
|
2665
|
+
|
|
2503
2666
|
arg@5.0.2:
|
|
2504
2667
|
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
|
|
2505
2668
|
|
|
@@ -2713,6 +2876,10 @@ packages:
|
|
|
2713
2876
|
buffer@5.7.1:
|
|
2714
2877
|
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
|
|
2715
2878
|
|
|
2879
|
+
busboy@1.6.0:
|
|
2880
|
+
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
|
|
2881
|
+
engines: {node: '>=10.16.0'}
|
|
2882
|
+
|
|
2716
2883
|
bytes@3.1.2:
|
|
2717
2884
|
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
|
|
2718
2885
|
engines: {node: '>= 0.8'}
|
|
@@ -2888,6 +3055,10 @@ packages:
|
|
|
2888
3055
|
concat-map@0.0.1:
|
|
2889
3056
|
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
|
2890
3057
|
|
|
3058
|
+
concat-stream@2.0.0:
|
|
3059
|
+
resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==}
|
|
3060
|
+
engines: {'0': node >= 6.0}
|
|
3061
|
+
|
|
2891
3062
|
connect@3.7.0:
|
|
2892
3063
|
resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
|
|
2893
3064
|
engines: {node: '>= 0.10.0'}
|
|
@@ -2920,8 +3091,8 @@ packages:
|
|
|
2920
3091
|
resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
|
|
2921
3092
|
engines: {node: '>=10'}
|
|
2922
3093
|
|
|
2923
|
-
coze-coding-dev-sdk@0.5.
|
|
2924
|
-
resolution: {integrity: sha512-
|
|
3094
|
+
coze-coding-dev-sdk@0.5.5:
|
|
3095
|
+
resolution: {integrity: sha512-VVT/A4JwLgB0Cp3kO3Tnfl+ZhQcjbIcEcjeBNHTUmMs6eKLig6DaLnVh/blvUI3Pkih/GYCrk1IVaLF8uOi0Ug==}
|
|
2925
3096
|
engines: {node: '>=18.0.0'}
|
|
2926
3097
|
hasBin: true
|
|
2927
3098
|
|
|
@@ -3222,6 +3393,12 @@ packages:
|
|
|
3222
3393
|
sqlite3:
|
|
3223
3394
|
optional: true
|
|
3224
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
|
+
|
|
3225
3402
|
dunder-proto@1.0.1:
|
|
3226
3403
|
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
|
|
3227
3404
|
engines: {node: '>= 0.4'}
|
|
@@ -3304,15 +3481,10 @@ packages:
|
|
|
3304
3481
|
esbuild-register@3.6.0:
|
|
3305
3482
|
resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
|
|
3306
3483
|
peerDependencies:
|
|
3307
|
-
esbuild:
|
|
3308
|
-
|
|
3309
|
-
esbuild@0.18.20:
|
|
3310
|
-
resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
|
|
3311
|
-
engines: {node: '>=12'}
|
|
3312
|
-
hasBin: true
|
|
3484
|
+
esbuild: 0.27.2
|
|
3313
3485
|
|
|
3314
|
-
esbuild@0.
|
|
3315
|
-
resolution: {integrity: sha512-
|
|
3486
|
+
esbuild@0.27.2:
|
|
3487
|
+
resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
|
|
3316
3488
|
engines: {node: '>=18'}
|
|
3317
3489
|
hasBin: true
|
|
3318
3490
|
|
|
@@ -4019,6 +4191,14 @@ packages:
|
|
|
4019
4191
|
resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
|
|
4020
4192
|
engines: {node: '>= 6'}
|
|
4021
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
|
+
|
|
4022
4202
|
https-proxy-agent@5.0.1:
|
|
4023
4203
|
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
|
|
4024
4204
|
engines: {node: '>= 6'}
|
|
@@ -4189,6 +4369,10 @@ packages:
|
|
|
4189
4369
|
resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
|
|
4190
4370
|
engines: {node: '>=8'}
|
|
4191
4371
|
|
|
4372
|
+
is-plain-object@5.0.0:
|
|
4373
|
+
resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
|
|
4374
|
+
engines: {node: '>=0.10.0'}
|
|
4375
|
+
|
|
4192
4376
|
is-potential-custom-element-name@1.0.1:
|
|
4193
4377
|
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
|
|
4194
4378
|
|
|
@@ -4576,24 +4760,28 @@ packages:
|
|
|
4576
4760
|
engines: {node: '>= 12.0.0'}
|
|
4577
4761
|
cpu: [arm64]
|
|
4578
4762
|
os: [linux]
|
|
4763
|
+
libc: [glibc]
|
|
4579
4764
|
|
|
4580
4765
|
lightningcss-linux-arm64-musl@1.30.2:
|
|
4581
4766
|
resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
|
|
4582
4767
|
engines: {node: '>= 12.0.0'}
|
|
4583
4768
|
cpu: [arm64]
|
|
4584
4769
|
os: [linux]
|
|
4770
|
+
libc: [musl]
|
|
4585
4771
|
|
|
4586
4772
|
lightningcss-linux-x64-gnu@1.30.2:
|
|
4587
4773
|
resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
|
|
4588
4774
|
engines: {node: '>= 12.0.0'}
|
|
4589
4775
|
cpu: [x64]
|
|
4590
4776
|
os: [linux]
|
|
4777
|
+
libc: [glibc]
|
|
4591
4778
|
|
|
4592
4779
|
lightningcss-linux-x64-musl@1.30.2:
|
|
4593
4780
|
resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
|
|
4594
4781
|
engines: {node: '>= 12.0.0'}
|
|
4595
4782
|
cpu: [x64]
|
|
4596
4783
|
os: [linux]
|
|
4784
|
+
libc: [musl]
|
|
4597
4785
|
|
|
4598
4786
|
lightningcss-win32-arm64-msvc@1.30.2:
|
|
4599
4787
|
resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
|
|
@@ -4829,6 +5017,10 @@ packages:
|
|
|
4829
5017
|
resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==}
|
|
4830
5018
|
engines: {node: '>= 18'}
|
|
4831
5019
|
|
|
5020
|
+
mkdirp@0.5.6:
|
|
5021
|
+
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
|
|
5022
|
+
hasBin: true
|
|
5023
|
+
|
|
4832
5024
|
mkdirp@1.0.4:
|
|
4833
5025
|
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
|
|
4834
5026
|
engines: {node: '>=10'}
|
|
@@ -4840,6 +5032,10 @@ packages:
|
|
|
4840
5032
|
ms@2.1.3:
|
|
4841
5033
|
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
4842
5034
|
|
|
5035
|
+
multer@2.0.2:
|
|
5036
|
+
resolution: {integrity: sha512-u7f2xaZ/UG8oLXHvtF/oWTRvT44p9ecwBBqTwgJVq0+4BW1g8OW01TyMEGWBHbyMOYVHXslaut7qEQ1meATXgw==}
|
|
5037
|
+
engines: {node: '>= 10.16.0'}
|
|
5038
|
+
|
|
4843
5039
|
multimatch@5.0.0:
|
|
4844
5040
|
resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==}
|
|
4845
5041
|
engines: {node: '>=10'}
|
|
@@ -5817,6 +6013,10 @@ packages:
|
|
|
5817
6013
|
resolution: {integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==}
|
|
5818
6014
|
engines: {node: '>= 0.10.0'}
|
|
5819
6015
|
|
|
6016
|
+
streamsearch@1.1.0:
|
|
6017
|
+
resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
|
|
6018
|
+
engines: {node: '>=10.0.0'}
|
|
6019
|
+
|
|
5820
6020
|
strict-uri-encode@2.0.0:
|
|
5821
6021
|
resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
|
|
5822
6022
|
engines: {node: '>=4'}
|
|
@@ -6000,6 +6200,11 @@ packages:
|
|
|
6000
6200
|
tslib@2.8.1:
|
|
6001
6201
|
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
6002
6202
|
|
|
6203
|
+
tsx@4.21.0:
|
|
6204
|
+
resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
|
|
6205
|
+
engines: {node: '>=18.0.0'}
|
|
6206
|
+
hasBin: true
|
|
6207
|
+
|
|
6003
6208
|
type-check@0.4.0:
|
|
6004
6209
|
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
6005
6210
|
engines: {node: '>= 0.8.0'}
|
|
@@ -6036,6 +6241,9 @@ packages:
|
|
|
6036
6241
|
resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
|
|
6037
6242
|
engines: {node: '>= 0.4'}
|
|
6038
6243
|
|
|
6244
|
+
typedarray@0.0.6:
|
|
6245
|
+
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
|
|
6246
|
+
|
|
6039
6247
|
typescript-eslint@8.51.0:
|
|
6040
6248
|
resolution: {integrity: sha512-jh8ZuM5oEh2PSdyQG9YAEM1TCGuWenLSuSUhf/irbVUNW9O5FhbFVONviN2TgMTBnUmyHv7E56rYnfLZK6TkiA==}
|
|
6041
6249
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
@@ -7515,7 +7723,7 @@ snapshots:
|
|
|
7515
7723
|
|
|
7516
7724
|
'@esbuild-kit/core-utils@3.3.2':
|
|
7517
7725
|
dependencies:
|
|
7518
|
-
esbuild: 0.
|
|
7726
|
+
esbuild: 0.27.2
|
|
7519
7727
|
source-map-support: 0.5.21
|
|
7520
7728
|
|
|
7521
7729
|
'@esbuild-kit/esm-loader@2.6.5':
|
|
@@ -7523,148 +7731,82 @@ snapshots:
|
|
|
7523
7731
|
'@esbuild-kit/core-utils': 3.3.2
|
|
7524
7732
|
get-tsconfig: 4.13.0
|
|
7525
7733
|
|
|
7526
|
-
'@esbuild/aix-ppc64@0.
|
|
7527
|
-
optional: true
|
|
7528
|
-
|
|
7529
|
-
'@esbuild/android-arm64@0.18.20':
|
|
7530
|
-
optional: true
|
|
7531
|
-
|
|
7532
|
-
'@esbuild/android-arm64@0.25.12':
|
|
7533
|
-
optional: true
|
|
7534
|
-
|
|
7535
|
-
'@esbuild/android-arm@0.18.20':
|
|
7536
|
-
optional: true
|
|
7537
|
-
|
|
7538
|
-
'@esbuild/android-arm@0.25.12':
|
|
7539
|
-
optional: true
|
|
7540
|
-
|
|
7541
|
-
'@esbuild/android-x64@0.18.20':
|
|
7542
|
-
optional: true
|
|
7543
|
-
|
|
7544
|
-
'@esbuild/android-x64@0.25.12':
|
|
7545
|
-
optional: true
|
|
7546
|
-
|
|
7547
|
-
'@esbuild/darwin-arm64@0.18.20':
|
|
7548
|
-
optional: true
|
|
7549
|
-
|
|
7550
|
-
'@esbuild/darwin-arm64@0.25.12':
|
|
7551
|
-
optional: true
|
|
7552
|
-
|
|
7553
|
-
'@esbuild/darwin-x64@0.18.20':
|
|
7554
|
-
optional: true
|
|
7555
|
-
|
|
7556
|
-
'@esbuild/darwin-x64@0.25.12':
|
|
7557
|
-
optional: true
|
|
7558
|
-
|
|
7559
|
-
'@esbuild/freebsd-arm64@0.18.20':
|
|
7560
|
-
optional: true
|
|
7561
|
-
|
|
7562
|
-
'@esbuild/freebsd-arm64@0.25.12':
|
|
7563
|
-
optional: true
|
|
7564
|
-
|
|
7565
|
-
'@esbuild/freebsd-x64@0.18.20':
|
|
7566
|
-
optional: true
|
|
7567
|
-
|
|
7568
|
-
'@esbuild/freebsd-x64@0.25.12':
|
|
7569
|
-
optional: true
|
|
7570
|
-
|
|
7571
|
-
'@esbuild/linux-arm64@0.18.20':
|
|
7572
|
-
optional: true
|
|
7573
|
-
|
|
7574
|
-
'@esbuild/linux-arm64@0.25.12':
|
|
7575
|
-
optional: true
|
|
7576
|
-
|
|
7577
|
-
'@esbuild/linux-arm@0.18.20':
|
|
7578
|
-
optional: true
|
|
7579
|
-
|
|
7580
|
-
'@esbuild/linux-arm@0.25.12':
|
|
7581
|
-
optional: true
|
|
7582
|
-
|
|
7583
|
-
'@esbuild/linux-ia32@0.18.20':
|
|
7584
|
-
optional: true
|
|
7585
|
-
|
|
7586
|
-
'@esbuild/linux-ia32@0.25.12':
|
|
7587
|
-
optional: true
|
|
7588
|
-
|
|
7589
|
-
'@esbuild/linux-loong64@0.18.20':
|
|
7590
|
-
optional: true
|
|
7591
|
-
|
|
7592
|
-
'@esbuild/linux-loong64@0.25.12':
|
|
7734
|
+
'@esbuild/aix-ppc64@0.27.2':
|
|
7593
7735
|
optional: true
|
|
7594
7736
|
|
|
7595
|
-
'@esbuild/
|
|
7737
|
+
'@esbuild/android-arm64@0.27.2':
|
|
7596
7738
|
optional: true
|
|
7597
7739
|
|
|
7598
|
-
'@esbuild/
|
|
7740
|
+
'@esbuild/android-arm@0.27.2':
|
|
7599
7741
|
optional: true
|
|
7600
7742
|
|
|
7601
|
-
'@esbuild/
|
|
7743
|
+
'@esbuild/android-x64@0.27.2':
|
|
7602
7744
|
optional: true
|
|
7603
7745
|
|
|
7604
|
-
'@esbuild/
|
|
7746
|
+
'@esbuild/darwin-arm64@0.27.2':
|
|
7605
7747
|
optional: true
|
|
7606
7748
|
|
|
7607
|
-
'@esbuild/
|
|
7749
|
+
'@esbuild/darwin-x64@0.27.2':
|
|
7608
7750
|
optional: true
|
|
7609
7751
|
|
|
7610
|
-
'@esbuild/
|
|
7752
|
+
'@esbuild/freebsd-arm64@0.27.2':
|
|
7611
7753
|
optional: true
|
|
7612
7754
|
|
|
7613
|
-
'@esbuild/
|
|
7755
|
+
'@esbuild/freebsd-x64@0.27.2':
|
|
7614
7756
|
optional: true
|
|
7615
7757
|
|
|
7616
|
-
'@esbuild/linux-
|
|
7758
|
+
'@esbuild/linux-arm64@0.27.2':
|
|
7617
7759
|
optional: true
|
|
7618
7760
|
|
|
7619
|
-
'@esbuild/linux-
|
|
7761
|
+
'@esbuild/linux-arm@0.27.2':
|
|
7620
7762
|
optional: true
|
|
7621
7763
|
|
|
7622
|
-
'@esbuild/linux-
|
|
7764
|
+
'@esbuild/linux-ia32@0.27.2':
|
|
7623
7765
|
optional: true
|
|
7624
7766
|
|
|
7625
|
-
'@esbuild/
|
|
7767
|
+
'@esbuild/linux-loong64@0.27.2':
|
|
7626
7768
|
optional: true
|
|
7627
7769
|
|
|
7628
|
-
'@esbuild/
|
|
7770
|
+
'@esbuild/linux-mips64el@0.27.2':
|
|
7629
7771
|
optional: true
|
|
7630
7772
|
|
|
7631
|
-
'@esbuild/
|
|
7773
|
+
'@esbuild/linux-ppc64@0.27.2':
|
|
7632
7774
|
optional: true
|
|
7633
7775
|
|
|
7634
|
-
'@esbuild/
|
|
7776
|
+
'@esbuild/linux-riscv64@0.27.2':
|
|
7635
7777
|
optional: true
|
|
7636
7778
|
|
|
7637
|
-
'@esbuild/
|
|
7779
|
+
'@esbuild/linux-s390x@0.27.2':
|
|
7638
7780
|
optional: true
|
|
7639
7781
|
|
|
7640
|
-
'@esbuild/
|
|
7782
|
+
'@esbuild/linux-x64@0.27.2':
|
|
7641
7783
|
optional: true
|
|
7642
7784
|
|
|
7643
|
-
'@esbuild/
|
|
7785
|
+
'@esbuild/netbsd-arm64@0.27.2':
|
|
7644
7786
|
optional: true
|
|
7645
7787
|
|
|
7646
|
-
'@esbuild/
|
|
7788
|
+
'@esbuild/netbsd-x64@0.27.2':
|
|
7647
7789
|
optional: true
|
|
7648
7790
|
|
|
7649
|
-
'@esbuild/
|
|
7791
|
+
'@esbuild/openbsd-arm64@0.27.2':
|
|
7650
7792
|
optional: true
|
|
7651
7793
|
|
|
7652
|
-
'@esbuild/
|
|
7794
|
+
'@esbuild/openbsd-x64@0.27.2':
|
|
7653
7795
|
optional: true
|
|
7654
7796
|
|
|
7655
|
-
'@esbuild/
|
|
7797
|
+
'@esbuild/openharmony-arm64@0.27.2':
|
|
7656
7798
|
optional: true
|
|
7657
7799
|
|
|
7658
|
-
'@esbuild/
|
|
7800
|
+
'@esbuild/sunos-x64@0.27.2':
|
|
7659
7801
|
optional: true
|
|
7660
7802
|
|
|
7661
|
-
'@esbuild/win32-
|
|
7803
|
+
'@esbuild/win32-arm64@0.27.2':
|
|
7662
7804
|
optional: true
|
|
7663
7805
|
|
|
7664
|
-
'@esbuild/win32-
|
|
7806
|
+
'@esbuild/win32-ia32@0.27.2':
|
|
7665
7807
|
optional: true
|
|
7666
7808
|
|
|
7667
|
-
'@esbuild/win32-x64@0.
|
|
7809
|
+
'@esbuild/win32-x64@0.27.2':
|
|
7668
7810
|
optional: true
|
|
7669
7811
|
|
|
7670
7812
|
'@eslint-community/eslint-utils@4.9.0(eslint@9.39.2)':
|
|
@@ -9084,6 +9226,10 @@ snapshots:
|
|
|
9084
9226
|
|
|
9085
9227
|
'@types/http-errors@2.0.5': {}
|
|
9086
9228
|
|
|
9229
|
+
'@types/http-proxy@1.17.17':
|
|
9230
|
+
dependencies:
|
|
9231
|
+
'@types/node': 25.0.3
|
|
9232
|
+
|
|
9087
9233
|
'@types/istanbul-lib-coverage@2.0.6': {}
|
|
9088
9234
|
|
|
9089
9235
|
'@types/istanbul-lib-report@3.0.3':
|
|
@@ -9111,12 +9257,22 @@ snapshots:
|
|
|
9111
9257
|
|
|
9112
9258
|
'@types/minimatch@3.0.5': {}
|
|
9113
9259
|
|
|
9260
|
+
'@types/multer@2.0.0':
|
|
9261
|
+
dependencies:
|
|
9262
|
+
'@types/express': 5.0.6
|
|
9263
|
+
|
|
9114
9264
|
'@types/node@25.0.3':
|
|
9115
9265
|
dependencies:
|
|
9116
9266
|
undici-types: 7.16.0
|
|
9117
9267
|
|
|
9118
9268
|
'@types/parse-json@4.0.2': {}
|
|
9119
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
|
+
|
|
9120
9276
|
'@types/qs@6.14.0': {}
|
|
9121
9277
|
|
|
9122
9278
|
'@types/range-parser@1.2.7': {}
|
|
@@ -9431,6 +9587,8 @@ snapshots:
|
|
|
9431
9587
|
normalize-path: 3.0.0
|
|
9432
9588
|
picomatch: 2.3.1
|
|
9433
9589
|
|
|
9590
|
+
append-field@1.0.0: {}
|
|
9591
|
+
|
|
9434
9592
|
arg@5.0.2: {}
|
|
9435
9593
|
|
|
9436
9594
|
argparse@1.0.10:
|
|
@@ -9532,7 +9690,7 @@ snapshots:
|
|
|
9532
9690
|
|
|
9533
9691
|
axios@1.13.2:
|
|
9534
9692
|
dependencies:
|
|
9535
|
-
follow-redirects: 1.15.11
|
|
9693
|
+
follow-redirects: 1.15.11(debug@4.4.3)
|
|
9536
9694
|
form-data: 4.0.5
|
|
9537
9695
|
proxy-from-env: 1.1.0
|
|
9538
9696
|
transitivePeerDependencies:
|
|
@@ -9755,6 +9913,10 @@ snapshots:
|
|
|
9755
9913
|
base64-js: 1.5.1
|
|
9756
9914
|
ieee754: 1.2.1
|
|
9757
9915
|
|
|
9916
|
+
busboy@1.6.0:
|
|
9917
|
+
dependencies:
|
|
9918
|
+
streamsearch: 1.1.0
|
|
9919
|
+
|
|
9758
9920
|
bytes@3.1.2: {}
|
|
9759
9921
|
|
|
9760
9922
|
call-bind-apply-helpers@1.0.2:
|
|
@@ -9922,6 +10084,13 @@ snapshots:
|
|
|
9922
10084
|
|
|
9923
10085
|
concat-map@0.0.1: {}
|
|
9924
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
|
+
|
|
9925
10094
|
connect@3.7.0:
|
|
9926
10095
|
dependencies:
|
|
9927
10096
|
debug: 2.6.9
|
|
@@ -9959,7 +10128,7 @@ snapshots:
|
|
|
9959
10128
|
path-type: 4.0.0
|
|
9960
10129
|
yaml: 1.10.2
|
|
9961
10130
|
|
|
9962
|
-
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):
|
|
9963
10132
|
dependencies:
|
|
9964
10133
|
'@aws-sdk/client-s3': 3.958.0
|
|
9965
10134
|
'@aws-sdk/lib-storage': 3.958.0(@aws-sdk/client-s3@3.958.0)
|
|
@@ -9969,7 +10138,7 @@ snapshots:
|
|
|
9969
10138
|
chalk: 5.6.2
|
|
9970
10139
|
commander: 14.0.2
|
|
9971
10140
|
drizzle-kit: 0.31.8
|
|
9972
|
-
drizzle-orm: 0.45.1(pg@8.16.3)
|
|
10141
|
+
drizzle-orm: 0.45.1(@types/pg@8.16.0)(pg@8.16.3)
|
|
9973
10142
|
ora: 9.0.0
|
|
9974
10143
|
pg: 8.16.3
|
|
9975
10144
|
transitivePeerDependencies:
|
|
@@ -10220,15 +10389,21 @@ snapshots:
|
|
|
10220
10389
|
dependencies:
|
|
10221
10390
|
'@drizzle-team/brocli': 0.10.2
|
|
10222
10391
|
'@esbuild-kit/esm-loader': 2.6.5
|
|
10223
|
-
esbuild: 0.
|
|
10224
|
-
esbuild-register: 3.6.0(esbuild@0.
|
|
10392
|
+
esbuild: 0.27.2
|
|
10393
|
+
esbuild-register: 3.6.0(esbuild@0.27.2)
|
|
10225
10394
|
transitivePeerDependencies:
|
|
10226
10395
|
- supports-color
|
|
10227
10396
|
|
|
10228
|
-
drizzle-orm@0.45.1(pg@8.16.3):
|
|
10397
|
+
drizzle-orm@0.45.1(@types/pg@8.16.0)(pg@8.16.3):
|
|
10229
10398
|
optionalDependencies:
|
|
10399
|
+
'@types/pg': 8.16.0
|
|
10230
10400
|
pg: 8.16.3
|
|
10231
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
|
+
|
|
10232
10407
|
dunder-proto@1.0.1:
|
|
10233
10408
|
dependencies:
|
|
10234
10409
|
call-bind-apply-helpers: 1.0.2
|
|
@@ -10364,66 +10539,41 @@ snapshots:
|
|
|
10364
10539
|
is-date-object: 1.1.0
|
|
10365
10540
|
is-symbol: 1.1.1
|
|
10366
10541
|
|
|
10367
|
-
esbuild-register@3.6.0(esbuild@0.
|
|
10542
|
+
esbuild-register@3.6.0(esbuild@0.27.2):
|
|
10368
10543
|
dependencies:
|
|
10369
10544
|
debug: 4.4.3
|
|
10370
|
-
esbuild: 0.
|
|
10545
|
+
esbuild: 0.27.2
|
|
10371
10546
|
transitivePeerDependencies:
|
|
10372
10547
|
- supports-color
|
|
10373
10548
|
|
|
10374
|
-
esbuild@0.
|
|
10549
|
+
esbuild@0.27.2:
|
|
10375
10550
|
optionalDependencies:
|
|
10376
|
-
'@esbuild/
|
|
10377
|
-
'@esbuild/android-
|
|
10378
|
-
'@esbuild/android-
|
|
10379
|
-
'@esbuild/
|
|
10380
|
-
'@esbuild/darwin-
|
|
10381
|
-
'@esbuild/
|
|
10382
|
-
'@esbuild/freebsd-
|
|
10383
|
-
'@esbuild/
|
|
10384
|
-
'@esbuild/linux-
|
|
10385
|
-
'@esbuild/linux-
|
|
10386
|
-
'@esbuild/linux-
|
|
10387
|
-
'@esbuild/linux-
|
|
10388
|
-
'@esbuild/linux-
|
|
10389
|
-
'@esbuild/linux-
|
|
10390
|
-
'@esbuild/linux-
|
|
10391
|
-
'@esbuild/linux-
|
|
10392
|
-
'@esbuild/
|
|
10393
|
-
'@esbuild/
|
|
10394
|
-
'@esbuild/
|
|
10395
|
-
'@esbuild/
|
|
10396
|
-
'@esbuild/
|
|
10397
|
-
'@esbuild/
|
|
10398
|
-
|
|
10399
|
-
|
|
10400
|
-
|
|
10401
|
-
'@esbuild/
|
|
10402
|
-
'@esbuild/android-arm': 0.25.12
|
|
10403
|
-
'@esbuild/android-arm64': 0.25.12
|
|
10404
|
-
'@esbuild/android-x64': 0.25.12
|
|
10405
|
-
'@esbuild/darwin-arm64': 0.25.12
|
|
10406
|
-
'@esbuild/darwin-x64': 0.25.12
|
|
10407
|
-
'@esbuild/freebsd-arm64': 0.25.12
|
|
10408
|
-
'@esbuild/freebsd-x64': 0.25.12
|
|
10409
|
-
'@esbuild/linux-arm': 0.25.12
|
|
10410
|
-
'@esbuild/linux-arm64': 0.25.12
|
|
10411
|
-
'@esbuild/linux-ia32': 0.25.12
|
|
10412
|
-
'@esbuild/linux-loong64': 0.25.12
|
|
10413
|
-
'@esbuild/linux-mips64el': 0.25.12
|
|
10414
|
-
'@esbuild/linux-ppc64': 0.25.12
|
|
10415
|
-
'@esbuild/linux-riscv64': 0.25.12
|
|
10416
|
-
'@esbuild/linux-s390x': 0.25.12
|
|
10417
|
-
'@esbuild/linux-x64': 0.25.12
|
|
10418
|
-
'@esbuild/netbsd-arm64': 0.25.12
|
|
10419
|
-
'@esbuild/netbsd-x64': 0.25.12
|
|
10420
|
-
'@esbuild/openbsd-arm64': 0.25.12
|
|
10421
|
-
'@esbuild/openbsd-x64': 0.25.12
|
|
10422
|
-
'@esbuild/openharmony-arm64': 0.25.12
|
|
10423
|
-
'@esbuild/sunos-x64': 0.25.12
|
|
10424
|
-
'@esbuild/win32-arm64': 0.25.12
|
|
10425
|
-
'@esbuild/win32-ia32': 0.25.12
|
|
10426
|
-
'@esbuild/win32-x64': 0.25.12
|
|
10551
|
+
'@esbuild/aix-ppc64': 0.27.2
|
|
10552
|
+
'@esbuild/android-arm': 0.27.2
|
|
10553
|
+
'@esbuild/android-arm64': 0.27.2
|
|
10554
|
+
'@esbuild/android-x64': 0.27.2
|
|
10555
|
+
'@esbuild/darwin-arm64': 0.27.2
|
|
10556
|
+
'@esbuild/darwin-x64': 0.27.2
|
|
10557
|
+
'@esbuild/freebsd-arm64': 0.27.2
|
|
10558
|
+
'@esbuild/freebsd-x64': 0.27.2
|
|
10559
|
+
'@esbuild/linux-arm': 0.27.2
|
|
10560
|
+
'@esbuild/linux-arm64': 0.27.2
|
|
10561
|
+
'@esbuild/linux-ia32': 0.27.2
|
|
10562
|
+
'@esbuild/linux-loong64': 0.27.2
|
|
10563
|
+
'@esbuild/linux-mips64el': 0.27.2
|
|
10564
|
+
'@esbuild/linux-ppc64': 0.27.2
|
|
10565
|
+
'@esbuild/linux-riscv64': 0.27.2
|
|
10566
|
+
'@esbuild/linux-s390x': 0.27.2
|
|
10567
|
+
'@esbuild/linux-x64': 0.27.2
|
|
10568
|
+
'@esbuild/netbsd-arm64': 0.27.2
|
|
10569
|
+
'@esbuild/netbsd-x64': 0.27.2
|
|
10570
|
+
'@esbuild/openbsd-arm64': 0.27.2
|
|
10571
|
+
'@esbuild/openbsd-x64': 0.27.2
|
|
10572
|
+
'@esbuild/openharmony-arm64': 0.27.2
|
|
10573
|
+
'@esbuild/sunos-x64': 0.27.2
|
|
10574
|
+
'@esbuild/win32-arm64': 0.27.2
|
|
10575
|
+
'@esbuild/win32-ia32': 0.27.2
|
|
10576
|
+
'@esbuild/win32-x64': 0.27.2
|
|
10427
10577
|
|
|
10428
10578
|
escalade@3.2.0: {}
|
|
10429
10579
|
|
|
@@ -11050,7 +11200,9 @@ snapshots:
|
|
|
11050
11200
|
|
|
11051
11201
|
flow-enums-runtime@0.0.6: {}
|
|
11052
11202
|
|
|
11053
|
-
follow-redirects@1.15.11:
|
|
11203
|
+
follow-redirects@1.15.11(debug@4.4.3):
|
|
11204
|
+
optionalDependencies:
|
|
11205
|
+
debug: 4.4.3
|
|
11054
11206
|
|
|
11055
11207
|
fontfaceobserver@2.3.0: {}
|
|
11056
11208
|
|
|
@@ -11267,6 +11419,25 @@ snapshots:
|
|
|
11267
11419
|
transitivePeerDependencies:
|
|
11268
11420
|
- supports-color
|
|
11269
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
|
+
|
|
11270
11441
|
https-proxy-agent@5.0.1:
|
|
11271
11442
|
dependencies:
|
|
11272
11443
|
agent-base: 6.0.2
|
|
@@ -11427,6 +11598,8 @@ snapshots:
|
|
|
11427
11598
|
|
|
11428
11599
|
is-plain-obj@2.1.0: {}
|
|
11429
11600
|
|
|
11601
|
+
is-plain-object@5.0.0: {}
|
|
11602
|
+
|
|
11430
11603
|
is-potential-custom-element-name@1.0.1: {}
|
|
11431
11604
|
|
|
11432
11605
|
is-regex@1.2.1:
|
|
@@ -12364,12 +12537,26 @@ snapshots:
|
|
|
12364
12537
|
dependencies:
|
|
12365
12538
|
minipass: 7.1.2
|
|
12366
12539
|
|
|
12540
|
+
mkdirp@0.5.6:
|
|
12541
|
+
dependencies:
|
|
12542
|
+
minimist: 1.2.8
|
|
12543
|
+
|
|
12367
12544
|
mkdirp@1.0.4: {}
|
|
12368
12545
|
|
|
12369
12546
|
ms@2.0.0: {}
|
|
12370
12547
|
|
|
12371
12548
|
ms@2.1.3: {}
|
|
12372
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
|
+
|
|
12373
12560
|
multimatch@5.0.0:
|
|
12374
12561
|
dependencies:
|
|
12375
12562
|
'@types/minimatch': 3.0.5
|
|
@@ -13402,6 +13589,8 @@ snapshots:
|
|
|
13402
13589
|
|
|
13403
13590
|
stream-buffers@2.2.0: {}
|
|
13404
13591
|
|
|
13592
|
+
streamsearch@1.1.0: {}
|
|
13593
|
+
|
|
13405
13594
|
strict-uri-encode@2.0.0: {}
|
|
13406
13595
|
|
|
13407
13596
|
string-length@4.0.2:
|
|
@@ -13611,6 +13800,13 @@ snapshots:
|
|
|
13611
13800
|
|
|
13612
13801
|
tslib@2.8.1: {}
|
|
13613
13802
|
|
|
13803
|
+
tsx@4.21.0:
|
|
13804
|
+
dependencies:
|
|
13805
|
+
esbuild: 0.27.2
|
|
13806
|
+
get-tsconfig: 4.13.0
|
|
13807
|
+
optionalDependencies:
|
|
13808
|
+
fsevents: 2.3.3
|
|
13809
|
+
|
|
13614
13810
|
type-check@0.4.0:
|
|
13615
13811
|
dependencies:
|
|
13616
13812
|
prelude-ls: 1.2.1
|
|
@@ -13659,6 +13855,8 @@ snapshots:
|
|
|
13659
13855
|
possible-typed-array-names: 1.1.0
|
|
13660
13856
|
reflect.getprototypeof: 1.0.10
|
|
13661
13857
|
|
|
13858
|
+
typedarray@0.0.6: {}
|
|
13859
|
+
|
|
13662
13860
|
typescript-eslint@8.51.0(eslint@9.39.2)(typescript@5.9.3):
|
|
13663
13861
|
dependencies:
|
|
13664
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)
|