@coze-arch/cli 0.0.1-alpha.89faa2 → 0.0.1-alpha.8b5326

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.
Files changed (151) hide show
  1. package/README.md +1 -0
  2. package/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +30 -21
  3. package/lib/__templates__/expo/.cozeproj/scripts/prod_build.sh +2 -2
  4. package/lib/__templates__/expo/.cozeproj/scripts/prod_run.sh +2 -2
  5. package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +46 -0
  6. package/lib/__templates__/expo/README.md +4 -2
  7. package/lib/__templates__/expo/client/app/+not-found.tsx +30 -0
  8. package/lib/__templates__/expo/client/app/_layout.tsx +15 -12
  9. package/lib/__templates__/expo/client/app/index.tsx +1 -1
  10. package/lib/__templates__/expo/client/app.config.ts +4 -3
  11. package/lib/__templates__/expo/client/components/Screen.tsx +3 -19
  12. package/lib/__templates__/expo/client/components/ThemedView.tsx +1 -2
  13. package/lib/__templates__/expo/client/constants/theme.ts +23 -700
  14. package/lib/__templates__/expo/client/declarations.d.ts +5 -0
  15. package/lib/__templates__/expo/client/eslint.config.mjs +37 -10
  16. package/lib/__templates__/expo/client/hooks/{useColorScheme.ts → useColorScheme.tsx} +20 -6
  17. package/lib/__templates__/expo/client/hooks/useSafeRouter.ts +152 -0
  18. package/lib/__templates__/expo/client/hooks/useTheme.ts +26 -6
  19. package/lib/__templates__/expo/client/metro.config.js +3 -0
  20. package/lib/__templates__/expo/client/package.json +36 -34
  21. package/lib/__templates__/expo/client/screens/{home → demo}/index.tsx +7 -3
  22. package/lib/__templates__/expo/client/screens/{home → demo}/styles.ts +10 -6
  23. package/lib/__templates__/expo/client/scripts/install-missing-deps.js +11 -10
  24. package/lib/__templates__/expo/client/utils/index.ts +22 -0
  25. package/lib/__templates__/expo/eslint-plugins/fontawesome6/index.js +9 -0
  26. package/lib/__templates__/expo/eslint-plugins/fontawesome6/names.js +1889 -0
  27. package/lib/__templates__/expo/eslint-plugins/fontawesome6/rule.js +174 -0
  28. package/lib/__templates__/expo/eslint-plugins/fontawesome6/v5-only-names.js +388 -0
  29. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
  30. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
  31. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
  32. package/lib/__templates__/expo/eslint-plugins/react-native/index.js +9 -0
  33. package/lib/__templates__/expo/eslint-plugins/react-native/rule.js +64 -0
  34. package/lib/__templates__/expo/eslint-plugins/reanimated/index.js +9 -0
  35. package/lib/__templates__/expo/eslint-plugins/reanimated/rule.js +88 -0
  36. package/lib/__templates__/expo/package.json +3 -0
  37. package/lib/__templates__/expo/patches/expo@54.0.33.patch +45 -0
  38. package/lib/__templates__/expo/pnpm-lock.yaml +1332 -2620
  39. package/lib/__templates__/expo/server/build.js +21 -0
  40. package/lib/__templates__/expo/server/package.json +10 -7
  41. package/lib/__templates__/expo/server/src/index.ts +3 -1
  42. package/lib/__templates__/expo/template.config.js +56 -0
  43. package/lib/__templates__/native-static/.coze +11 -0
  44. package/lib/__templates__/native-static/index.html +33 -0
  45. package/lib/__templates__/native-static/styles/main.css +136 -0
  46. package/lib/__templates__/native-static/template.config.js +22 -0
  47. package/lib/__templates__/nextjs/.babelrc +15 -0
  48. package/lib/__templates__/nextjs/README.md +5 -0
  49. package/lib/__templates__/nextjs/_npmrc +1 -0
  50. package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
  51. package/lib/__templates__/nextjs/next.config.ts +2 -1
  52. package/lib/__templates__/nextjs/package.json +8 -1
  53. package/lib/__templates__/nextjs/pnpm-lock.yaml +3488 -1569
  54. package/lib/__templates__/nextjs/scripts/build.sh +4 -1
  55. package/lib/__templates__/nextjs/scripts/dev.sh +8 -2
  56. package/lib/__templates__/nextjs/scripts/start.sh +7 -1
  57. package/lib/__templates__/nextjs/src/app/layout.tsx +5 -3
  58. package/lib/__templates__/nextjs/src/app/page.tsx +17 -60
  59. package/lib/__templates__/nextjs/src/server.ts +35 -0
  60. package/lib/__templates__/nextjs/template.config.js +52 -11
  61. package/lib/__templates__/nextjs/tsconfig.json +1 -1
  62. package/lib/__templates__/nuxt-vue/.coze +12 -0
  63. package/lib/__templates__/nuxt-vue/README.md +73 -0
  64. package/lib/__templates__/nuxt-vue/_gitignore +24 -0
  65. package/lib/__templates__/nuxt-vue/_npmrc +23 -0
  66. package/lib/__templates__/nuxt-vue/app/app.vue +6 -0
  67. package/lib/__templates__/nuxt-vue/app/pages/index.vue +23 -0
  68. package/lib/__templates__/nuxt-vue/assets/css/main.css +24 -0
  69. package/lib/__templates__/nuxt-vue/nuxt.config.ts +116 -0
  70. package/lib/__templates__/nuxt-vue/package.json +35 -0
  71. package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +8759 -0
  72. package/lib/__templates__/nuxt-vue/postcss.config.mjs +8 -0
  73. package/lib/__templates__/nuxt-vue/public/favicon.ico +0 -0
  74. package/lib/__templates__/nuxt-vue/public/robots.txt +2 -0
  75. package/lib/__templates__/nuxt-vue/scripts/build.sh +14 -0
  76. package/lib/__templates__/nuxt-vue/scripts/dev.sh +39 -0
  77. package/lib/__templates__/nuxt-vue/scripts/prepare.sh +14 -0
  78. package/lib/__templates__/nuxt-vue/scripts/start.sh +21 -0
  79. package/lib/__templates__/nuxt-vue/server/api/hello.ts +10 -0
  80. package/lib/__templates__/nuxt-vue/server/middleware/logger.ts +10 -0
  81. package/lib/__templates__/nuxt-vue/server/routes/health.ts +10 -0
  82. package/lib/__templates__/nuxt-vue/tailwind.config.js +13 -0
  83. package/lib/__templates__/nuxt-vue/template.config.js +87 -0
  84. package/lib/__templates__/nuxt-vue/tsconfig.json +18 -0
  85. package/lib/__templates__/taro/.coze +14 -0
  86. package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.sh +19 -0
  87. package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.sh +14 -0
  88. package/lib/__templates__/taro/.cozeproj/scripts/dev_build.sh +2 -0
  89. package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +151 -0
  90. package/lib/__templates__/taro/.cozeproj/scripts/init_env.sh +5 -0
  91. package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +24 -0
  92. package/lib/__templates__/taro/README.md +751 -0
  93. package/lib/__templates__/taro/_gitignore +40 -0
  94. package/lib/__templates__/taro/_npmrc +18 -0
  95. package/lib/__templates__/taro/babel.config.js +12 -0
  96. package/lib/__templates__/taro/config/dev.ts +9 -0
  97. package/lib/__templates__/taro/config/index.ts +223 -0
  98. package/lib/__templates__/taro/config/prod.ts +34 -0
  99. package/lib/__templates__/taro/eslint.config.mjs +80 -0
  100. package/lib/__templates__/taro/key/private.appid.key +0 -0
  101. package/lib/__templates__/taro/package.json +107 -0
  102. package/lib/__templates__/taro/patches/@tarojs__plugin-mini-ci@4.1.9.patch +30 -0
  103. package/lib/__templates__/taro/pnpm-lock.yaml +23100 -0
  104. package/lib/__templates__/taro/pnpm-workspace.yaml +2 -0
  105. package/lib/__templates__/taro/project.config.json +15 -0
  106. package/lib/__templates__/taro/server/nest-cli.json +10 -0
  107. package/lib/__templates__/taro/server/package.json +40 -0
  108. package/lib/__templates__/taro/server/src/app.controller.ts +23 -0
  109. package/lib/__templates__/taro/server/src/app.module.ts +10 -0
  110. package/lib/__templates__/taro/server/src/app.service.ts +8 -0
  111. package/lib/__templates__/taro/server/src/interceptors/http-status.interceptor.ts +23 -0
  112. package/lib/__templates__/taro/server/src/main.ts +49 -0
  113. package/lib/__templates__/taro/server/tsconfig.json +24 -0
  114. package/lib/__templates__/taro/src/app.config.ts +11 -0
  115. package/lib/__templates__/taro/src/app.css +52 -0
  116. package/lib/__templates__/taro/src/app.tsx +9 -0
  117. package/lib/__templates__/taro/src/index.html +39 -0
  118. package/lib/__templates__/taro/src/network.ts +39 -0
  119. package/lib/__templates__/taro/src/pages/index/index.config.ts +3 -0
  120. package/lib/__templates__/taro/src/pages/index/index.css +1 -0
  121. package/lib/__templates__/taro/src/pages/index/index.tsx +33 -0
  122. package/lib/__templates__/taro/src/presets/dev-debug.ts +23 -0
  123. package/lib/__templates__/taro/src/presets/h5-container.tsx +15 -0
  124. package/lib/__templates__/taro/src/presets/h5-navbar.tsx +201 -0
  125. package/lib/__templates__/taro/src/presets/h5-styles.ts +142 -0
  126. package/lib/__templates__/taro/src/presets/index.tsx +18 -0
  127. package/lib/__templates__/taro/stylelint.config.mjs +4 -0
  128. package/lib/__templates__/taro/template.config.js +68 -0
  129. package/lib/__templates__/taro/tsconfig.json +29 -0
  130. package/lib/__templates__/taro/types/global.d.ts +32 -0
  131. package/lib/__templates__/templates.json +75 -0
  132. package/lib/__templates__/vite/README.md +190 -11
  133. package/lib/__templates__/vite/_gitignore +1 -0
  134. package/lib/__templates__/vite/_npmrc +1 -0
  135. package/lib/__templates__/vite/eslint.config.mjs +6 -1
  136. package/lib/__templates__/vite/package.json +19 -2
  137. package/lib/__templates__/vite/pnpm-lock.yaml +1547 -172
  138. package/lib/__templates__/vite/scripts/build.sh +4 -1
  139. package/lib/__templates__/vite/scripts/dev.sh +9 -2
  140. package/lib/__templates__/vite/scripts/start.sh +9 -3
  141. package/lib/__templates__/vite/server/routes/index.ts +31 -0
  142. package/lib/__templates__/vite/server/server.ts +65 -0
  143. package/lib/__templates__/vite/server/vite.ts +67 -0
  144. package/lib/__templates__/vite/src/main.ts +17 -48
  145. package/lib/__templates__/vite/template.config.js +63 -6
  146. package/lib/__templates__/vite/tsconfig.json +4 -3
  147. package/lib/__templates__/vite/vite.config.ts +5 -0
  148. package/lib/cli.js +941 -195
  149. package/package.json +7 -3
  150. package/lib/__templates__/expo/client/app/home.tsx +0 -1
  151. package/lib/__templates__/expo/client/assets/images/coze-logo.png +0 -0
@@ -4,13 +4,39 @@ settings:
4
4
  autoInstallPeers: true
5
5
  excludeLinksFromLockfile: false
6
6
 
7
+ overrides:
8
+ esbuild: ^0.27.2
9
+ is-generator-function: 1.0.10
10
+
7
11
  importers:
8
12
 
9
13
  .:
14
+ dependencies:
15
+ '@supabase/supabase-js':
16
+ specifier: 2.95.3
17
+ version: 2.95.3
18
+ dotenv:
19
+ specifier: ^17.2.3
20
+ version: 17.2.4
21
+ express:
22
+ specifier: ^4.21.2
23
+ version: 4.22.1
10
24
  devDependencies:
25
+ '@types/express':
26
+ specifier: ^5.0.0
27
+ version: 5.0.6
28
+ '@types/node':
29
+ specifier: ^22.10.5
30
+ version: 22.19.15
11
31
  autoprefixer:
12
32
  specifier: ^10.4.20
13
33
  version: 10.4.23(postcss@8.5.6)
34
+ coze-coding-dev-sdk:
35
+ specifier: ^0.7.16
36
+ version: 0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0)
37
+ esbuild:
38
+ specifier: ^0.27.2
39
+ version: 0.27.2
14
40
  eslint:
15
41
  specifier: ^9
16
42
  version: 9.39.2(jiti@1.21.7)
@@ -22,16 +48,22 @@ importers:
22
48
  version: 8.5.6
23
49
  tailwindcss:
24
50
  specifier: ^3.4.17
25
- version: 3.4.19
51
+ version: 3.4.19(tsx@4.21.0)
52
+ tsup:
53
+ specifier: ^8.3.5
54
+ version: 8.5.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)
55
+ tsx:
56
+ specifier: ^4.19.2
57
+ version: 4.21.0
26
58
  typescript:
27
59
  specifier: ^5.6.0
28
60
  version: 5.9.3
29
61
  typescript-eslint:
30
62
  specifier: ^8
31
- version: 8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
63
+ version: 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
32
64
  vite:
33
65
  specifier: ^7.2.4
34
- version: 7.3.0(jiti@1.21.7)
66
+ version: 7.3.1(@types/node@22.19.15)(jiti@1.21.7)(tsx@4.21.0)
35
67
 
36
68
  packages:
37
69
 
@@ -39,6 +71,9 @@ packages:
39
71
  resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
40
72
  engines: {node: '>=10'}
41
73
 
74
+ '@cfworker/json-schema@4.1.1':
75
+ resolution: {integrity: sha512-gAmrUZSGtKc3AiBL71iNWxDsyUC5uMaKKGdvzYsBoTW/xi42JQHl7eKV2OYzCUqvc+D2RCcf7EXY2iCyFIk6og==}
76
+
42
77
  '@esbuild/aix-ppc64@0.27.2':
43
78
  resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
44
79
  engines: {node: '>=18'}
@@ -262,6 +297,16 @@ packages:
262
297
  '@jridgewell/trace-mapping@0.3.31':
263
298
  resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
264
299
 
300
+ '@langchain/core@1.1.16':
301
+ resolution: {integrity: sha512-2XKQKxvQdeQiuIo0tacAmDVojhSVAci8D2WDdmmyN+6CqDusLHEHyIDaOt4o+UBvpkyHXbCdrljzDTQY/AKeqg==}
302
+ engines: {node: '>=20'}
303
+
304
+ '@langchain/openai@1.2.3':
305
+ resolution: {integrity: sha512-+bKR4+Obz5a/NHEw0bAm3f/s4k0cXc/g46ZRRXqjcyDYP+9wFarItvGNn6DEEk5S7pGp1QqApAQNt9IZk1Ic1Q==}
306
+ engines: {node: '>=20'}
307
+ peerDependencies:
308
+ '@langchain/core': ^1.0.0
309
+
265
310
  '@nodelib/fs.scandir@2.1.5':
266
311
  resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
267
312
  engines: {node: '>= 8'}
@@ -274,192 +319,276 @@ packages:
274
319
  resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
275
320
  engines: {node: '>= 8'}
276
321
 
277
- '@rollup/rollup-android-arm-eabi@4.54.0':
278
- resolution: {integrity: sha512-OywsdRHrFvCdvsewAInDKCNyR3laPA2mc9bRYJ6LBp5IyvF3fvXbbNR0bSzHlZVFtn6E0xw2oZlyjg4rKCVcng==}
322
+ '@rollup/rollup-android-arm-eabi@4.55.3':
323
+ resolution: {integrity: sha512-qyX8+93kK/7R5BEXPC2PjUt0+fS/VO2BVHjEHyIEWiYn88rcRBHmdLgoJjktBltgAf+NY7RfCGB1SoyKS/p9kg==}
279
324
  cpu: [arm]
280
325
  os: [android]
281
326
 
282
- '@rollup/rollup-android-arm64@4.54.0':
283
- resolution: {integrity: sha512-Skx39Uv+u7H224Af+bDgNinitlmHyQX1K/atIA32JP3JQw6hVODX5tkbi2zof/E69M1qH2UoN3Xdxgs90mmNYw==}
327
+ '@rollup/rollup-android-arm64@4.55.3':
328
+ resolution: {integrity: sha512-6sHrL42bjt5dHQzJ12Q4vMKfN+kUnZ0atHHnv4V0Wd9JMTk7FDzSY35+7qbz3ypQYMBPANbpGK7JpnWNnhGt8g==}
284
329
  cpu: [arm64]
285
330
  os: [android]
286
331
 
287
- '@rollup/rollup-darwin-arm64@4.54.0':
288
- resolution: {integrity: sha512-k43D4qta/+6Fq+nCDhhv9yP2HdeKeP56QrUUTW7E6PhZP1US6NDqpJj4MY0jBHlJivVJD5P8NxrjuobZBJTCRw==}
332
+ '@rollup/rollup-darwin-arm64@4.55.3':
333
+ resolution: {integrity: sha512-1ht2SpGIjEl2igJ9AbNpPIKzb1B5goXOcmtD0RFxnwNuMxqkR6AUaaErZz+4o+FKmzxcSNBOLrzsICZVNYa1Rw==}
289
334
  cpu: [arm64]
290
335
  os: [darwin]
291
336
 
292
- '@rollup/rollup-darwin-x64@4.54.0':
293
- resolution: {integrity: sha512-cOo7biqwkpawslEfox5Vs8/qj83M/aZCSSNIWpVzfU2CYHa2G3P1UN5WF01RdTHSgCkri7XOlTdtk17BezlV3A==}
337
+ '@rollup/rollup-darwin-x64@4.55.3':
338
+ resolution: {integrity: sha512-FYZ4iVunXxtT+CZqQoPVwPhH7549e/Gy7PIRRtq4t5f/vt54pX6eG9ebttRH6QSH7r/zxAFA4EZGlQ0h0FvXiA==}
294
339
  cpu: [x64]
295
340
  os: [darwin]
296
341
 
297
- '@rollup/rollup-freebsd-arm64@4.54.0':
298
- resolution: {integrity: sha512-miSvuFkmvFbgJ1BevMa4CPCFt5MPGw094knM64W9I0giUIMMmRYcGW/JWZDriaw/k1kOBtsWh1z6nIFV1vPNtA==}
342
+ '@rollup/rollup-freebsd-arm64@4.55.3':
343
+ resolution: {integrity: sha512-M/mwDCJ4wLsIgyxv2Lj7Len+UMHd4zAXu4GQ2UaCdksStglWhP61U3uowkaYBQBhVoNpwx5Hputo8eSqM7K82Q==}
299
344
  cpu: [arm64]
300
345
  os: [freebsd]
301
346
 
302
- '@rollup/rollup-freebsd-x64@4.54.0':
303
- resolution: {integrity: sha512-KGXIs55+b/ZfZsq9aR026tmr/+7tq6VG6MsnrvF4H8VhwflTIuYh+LFUlIsRdQSgrgmtM3fVATzEAj4hBQlaqQ==}
347
+ '@rollup/rollup-freebsd-x64@4.55.3':
348
+ resolution: {integrity: sha512-5jZT2c7jBCrMegKYTYTpni8mg8y3uY8gzeq2ndFOANwNuC/xJbVAoGKR9LhMDA0H3nIhvaqUoBEuJoICBudFrA==}
304
349
  cpu: [x64]
305
350
  os: [freebsd]
306
351
 
307
- '@rollup/rollup-linux-arm-gnueabihf@4.54.0':
308
- resolution: {integrity: sha512-EHMUcDwhtdRGlXZsGSIuXSYwD5kOT9NVnx9sqzYiwAc91wfYOE1g1djOEDseZJKKqtHAHGwnGPQu3kytmfaXLQ==}
352
+ '@rollup/rollup-linux-arm-gnueabihf@4.55.3':
353
+ resolution: {integrity: sha512-YeGUhkN1oA+iSPzzhEjVPS29YbViOr8s4lSsFaZKLHswgqP911xx25fPOyE9+khmN6W4VeM0aevbDp4kkEoHiA==}
309
354
  cpu: [arm]
310
355
  os: [linux]
311
356
  libc: [glibc]
312
357
 
313
- '@rollup/rollup-linux-arm-musleabihf@4.54.0':
314
- resolution: {integrity: sha512-+pBrqEjaakN2ySv5RVrj/qLytYhPKEUwk+e3SFU5jTLHIcAtqh2rLrd/OkbNuHJpsBgxsD8ccJt5ga/SeG0JmA==}
358
+ '@rollup/rollup-linux-arm-musleabihf@4.55.3':
359
+ resolution: {integrity: sha512-eo0iOIOvcAlWB3Z3eh8pVM8hZ0oVkK3AjEM9nSrkSug2l15qHzF3TOwT0747omI6+CJJvl7drwZepT+re6Fy/w==}
315
360
  cpu: [arm]
316
361
  os: [linux]
317
362
  libc: [musl]
318
363
 
319
- '@rollup/rollup-linux-arm64-gnu@4.54.0':
320
- resolution: {integrity: sha512-NSqc7rE9wuUaRBsBp5ckQ5CVz5aIRKCwsoa6WMF7G01sX3/qHUw/z4pv+D+ahL1EIKy6Enpcnz1RY8pf7bjwng==}
364
+ '@rollup/rollup-linux-arm64-gnu@4.55.3':
365
+ resolution: {integrity: sha512-DJay3ep76bKUDImmn//W5SvpjRN5LmK/ntWyeJs/dcnwiiHESd3N4uteK9FDLf0S0W8E6Y0sVRXpOCoQclQqNg==}
321
366
  cpu: [arm64]
322
367
  os: [linux]
323
368
  libc: [glibc]
324
369
 
325
- '@rollup/rollup-linux-arm64-musl@4.54.0':
326
- resolution: {integrity: sha512-gr5vDbg3Bakga5kbdpqx81m2n9IX8M6gIMlQQIXiLTNeQW6CucvuInJ91EuCJ/JYvc+rcLLsDFcfAD1K7fMofg==}
370
+ '@rollup/rollup-linux-arm64-musl@4.55.3':
371
+ resolution: {integrity: sha512-BKKWQkY2WgJ5MC/ayvIJTHjy0JUGb5efaHCUiG/39sSUvAYRBaO3+/EK0AZT1RF3pSj86O24GLLik9mAYu0IJg==}
327
372
  cpu: [arm64]
328
373
  os: [linux]
329
374
  libc: [musl]
330
375
 
331
- '@rollup/rollup-linux-loong64-gnu@4.54.0':
332
- resolution: {integrity: sha512-gsrtB1NA3ZYj2vq0Rzkylo9ylCtW/PhpLEivlgWe0bpgtX5+9j9EZa0wtZiCjgu6zmSeZWyI/e2YRX1URozpIw==}
376
+ '@rollup/rollup-linux-loong64-gnu@4.55.3':
377
+ resolution: {integrity: sha512-Q9nVlWtKAG7ISW80OiZGxTr6rYtyDSkauHUtvkQI6TNOJjFvpj4gcH+KaJihqYInnAzEEUetPQubRwHef4exVg==}
333
378
  cpu: [loong64]
334
379
  os: [linux]
335
380
  libc: [glibc]
336
381
 
337
- '@rollup/rollup-linux-ppc64-gnu@4.54.0':
338
- resolution: {integrity: sha512-y3qNOfTBStmFNq+t4s7Tmc9hW2ENtPg8FeUD/VShI7rKxNW7O4fFeaYbMsd3tpFlIg1Q8IapFgy7Q9i2BqeBvA==}
382
+ '@rollup/rollup-linux-loong64-musl@4.55.3':
383
+ resolution: {integrity: sha512-2H5LmhzrpC4fFRNwknzmmTvvyJPHwESoJgyReXeFoYYuIDfBhP29TEXOkCJE/KxHi27mj7wDUClNq78ue3QEBQ==}
384
+ cpu: [loong64]
385
+ os: [linux]
386
+ libc: [musl]
387
+
388
+ '@rollup/rollup-linux-ppc64-gnu@4.55.3':
389
+ resolution: {integrity: sha512-9S542V0ie9LCTznPYlvaeySwBeIEa7rDBgLHKZ5S9DBgcqdJYburabm8TqiqG6mrdTzfV5uttQRHcbKff9lWtA==}
339
390
  cpu: [ppc64]
340
391
  os: [linux]
341
392
  libc: [glibc]
342
393
 
343
- '@rollup/rollup-linux-riscv64-gnu@4.54.0':
344
- resolution: {integrity: sha512-89sepv7h2lIVPsFma8iwmccN7Yjjtgz0Rj/Ou6fEqg3HDhpCa+Et+YSufy27i6b0Wav69Qv4WBNl3Rs6pwhebQ==}
394
+ '@rollup/rollup-linux-ppc64-musl@4.55.3':
395
+ resolution: {integrity: sha512-ukxw+YH3XXpcezLgbJeasgxyTbdpnNAkrIlFGDl7t+pgCxZ89/6n1a+MxlY7CegU+nDgrgdqDelPRNQ/47zs0g==}
396
+ cpu: [ppc64]
397
+ os: [linux]
398
+ libc: [musl]
399
+
400
+ '@rollup/rollup-linux-riscv64-gnu@4.55.3':
401
+ resolution: {integrity: sha512-Iauw9UsTTvlF++FhghFJjqYxyXdggXsOqGpFBylaRopVpcbfyIIsNvkf9oGwfgIcf57z3m8+/oSYTo6HutBFNw==}
345
402
  cpu: [riscv64]
346
403
  os: [linux]
347
404
  libc: [glibc]
348
405
 
349
- '@rollup/rollup-linux-riscv64-musl@4.54.0':
350
- resolution: {integrity: sha512-ZcU77ieh0M2Q8Ur7D5X7KvK+UxbXeDHwiOt/CPSBTI1fBmeDMivW0dPkdqkT4rOgDjrDDBUed9x4EgraIKoR2A==}
406
+ '@rollup/rollup-linux-riscv64-musl@4.55.3':
407
+ resolution: {integrity: sha512-3OqKAHSEQXKdq9mQ4eajqUgNIK27VZPW3I26EP8miIzuKzCJ3aW3oEn2pzF+4/Hj/Moc0YDsOtBgT5bZ56/vcA==}
351
408
  cpu: [riscv64]
352
409
  os: [linux]
353
410
  libc: [musl]
354
411
 
355
- '@rollup/rollup-linux-s390x-gnu@4.54.0':
356
- resolution: {integrity: sha512-2AdWy5RdDF5+4YfG/YesGDDtbyJlC9LHmL6rZw6FurBJ5n4vFGupsOBGfwMRjBYH7qRQowT8D/U4LoSvVwOhSQ==}
412
+ '@rollup/rollup-linux-s390x-gnu@4.55.3':
413
+ resolution: {integrity: sha512-0CM8dSVzVIaqMcXIFej8zZrSFLnGrAE8qlNbbHfTw1EEPnFTg1U1ekI0JdzjPyzSfUsHWtodilQQG/RA55berA==}
357
414
  cpu: [s390x]
358
415
  os: [linux]
359
416
  libc: [glibc]
360
417
 
361
- '@rollup/rollup-linux-x64-gnu@4.54.0':
362
- resolution: {integrity: sha512-WGt5J8Ij/rvyqpFexxk3ffKqqbLf9AqrTBbWDk7ApGUzaIs6V+s2s84kAxklFwmMF/vBNGrVdYgbblCOFFezMQ==}
418
+ '@rollup/rollup-linux-x64-gnu@4.55.3':
419
+ resolution: {integrity: sha512-+fgJE12FZMIgBaKIAGd45rxf+5ftcycANJRWk8Vz0NnMTM5rADPGuRFTYar+Mqs560xuART7XsX2lSACa1iOmQ==}
363
420
  cpu: [x64]
364
421
  os: [linux]
365
422
  libc: [glibc]
366
423
 
367
- '@rollup/rollup-linux-x64-musl@4.54.0':
368
- resolution: {integrity: sha512-JzQmb38ATzHjxlPHuTH6tE7ojnMKM2kYNzt44LO/jJi8BpceEC8QuXYA908n8r3CNuG/B3BV8VR3Hi1rYtmPiw==}
424
+ '@rollup/rollup-linux-x64-musl@4.55.3':
425
+ resolution: {integrity: sha512-tMD7NnbAolWPzQlJQJjVFh/fNH3K/KnA7K8gv2dJWCwwnaK6DFCYST1QXYWfu5V0cDwarWC8Sf/cfMHniNq21A==}
369
426
  cpu: [x64]
370
427
  os: [linux]
371
428
  libc: [musl]
372
429
 
373
- '@rollup/rollup-openharmony-arm64@4.54.0':
374
- resolution: {integrity: sha512-huT3fd0iC7jigGh7n3q/+lfPcXxBi+om/Rs3yiFxjvSxbSB6aohDFXbWvlspaqjeOh+hx7DDHS+5Es5qRkWkZg==}
430
+ '@rollup/rollup-openbsd-x64@4.55.3':
431
+ resolution: {integrity: sha512-u5KsqxOxjEeIbn7bUK1MPM34jrnPwjeqgyin4/N6e/KzXKfpE9Mi0nCxcQjaM9lLmPcHmn/xx1yOjgTMtu1jWQ==}
432
+ cpu: [x64]
433
+ os: [openbsd]
434
+
435
+ '@rollup/rollup-openharmony-arm64@4.55.3':
436
+ resolution: {integrity: sha512-vo54aXwjpTtsAnb3ca7Yxs9t2INZg7QdXN/7yaoG7nPGbOBXYXQY41Km+S1Ov26vzOAzLcAjmMdjyEqS1JkVhw==}
375
437
  cpu: [arm64]
376
438
  os: [openharmony]
377
439
 
378
- '@rollup/rollup-win32-arm64-msvc@4.54.0':
379
- resolution: {integrity: sha512-c2V0W1bsKIKfbLMBu/WGBz6Yci8nJ/ZJdheE0EwB73N3MvHYKiKGs3mVilX4Gs70eGeDaMqEob25Tw2Gb9Nqyw==}
440
+ '@rollup/rollup-win32-arm64-msvc@4.55.3':
441
+ resolution: {integrity: sha512-HI+PIVZ+m+9AgpnY3pt6rinUdRYrGHvmVdsNQ4odNqQ/eRF78DVpMR7mOq7nW06QxpczibwBmeQzB68wJ+4W4A==}
380
442
  cpu: [arm64]
381
443
  os: [win32]
382
444
 
383
- '@rollup/rollup-win32-ia32-msvc@4.54.0':
384
- resolution: {integrity: sha512-woEHgqQqDCkAzrDhvDipnSirm5vxUXtSKDYTVpZG3nUdW/VVB5VdCYA2iReSj/u3yCZzXID4kuKG7OynPnB3WQ==}
445
+ '@rollup/rollup-win32-ia32-msvc@4.55.3':
446
+ resolution: {integrity: sha512-vRByotbdMo3Wdi+8oC2nVxtc3RkkFKrGaok+a62AT8lz/YBuQjaVYAS5Zcs3tPzW43Vsf9J0wehJbUY5xRSekA==}
385
447
  cpu: [ia32]
386
448
  os: [win32]
387
449
 
388
- '@rollup/rollup-win32-x64-gnu@4.54.0':
389
- resolution: {integrity: sha512-dzAc53LOuFvHwbCEOS0rPbXp6SIhAf2txMP5p6mGyOXXw5mWY8NGGbPMPrs4P1WItkfApDathBj/NzMLUZ9rtQ==}
450
+ '@rollup/rollup-win32-x64-gnu@4.55.3':
451
+ resolution: {integrity: sha512-POZHq7UeuzMJljC5NjKi8vKMFN6/5EOqcX1yGntNLp7rUTpBAXQ1hW8kWPFxYLv07QMcNM75xqVLGPWQq6TKFA==}
390
452
  cpu: [x64]
391
453
  os: [win32]
392
454
 
393
- '@rollup/rollup-win32-x64-msvc@4.54.0':
394
- resolution: {integrity: sha512-hYT5d3YNdSh3mbCU1gwQyPgQd3T2ne0A3KG8KSBdav5TiBg6eInVmV+TeR5uHufiIgSFg0XsOWGW5/RhNcSvPg==}
455
+ '@rollup/rollup-win32-x64-msvc@4.55.3':
456
+ resolution: {integrity: sha512-aPFONczE4fUFKNXszdvnd2GqKEYQdV5oEsIbKPujJmWlCI9zEsv1Otig8RKK+X9bed9gFUN6LAeN4ZcNuu4zjg==}
395
457
  cpu: [x64]
396
458
  os: [win32]
397
459
 
460
+ '@supabase/auth-js@2.95.3':
461
+ resolution: {integrity: sha512-vD2YoS8E2iKIX0F7EwXTmqhUpaNsmbU6X2R0/NdFcs02oEfnHyNP/3M716f3wVJ2E5XHGiTFXki6lRckhJ0Thg==}
462
+ engines: {node: '>=20.0.0'}
463
+
464
+ '@supabase/functions-js@2.95.3':
465
+ resolution: {integrity: sha512-uTuOAKzs9R/IovW1krO0ZbUHSJnsnyJElTXIRhjJTqymIVGcHzkAYnBCJqd7468Fs/Foz1BQ7Dv6DCl05lr7ig==}
466
+ engines: {node: '>=20.0.0'}
467
+
468
+ '@supabase/postgrest-js@2.95.3':
469
+ resolution: {integrity: sha512-LTrRBqU1gOovxRm1vRXPItSMPBmEFqrfTqdPTRtzOILV4jPSueFz6pES5hpb4LRlkFwCPRmv3nQJ5N625V2Xrg==}
470
+ engines: {node: '>=20.0.0'}
471
+
472
+ '@supabase/realtime-js@2.95.3':
473
+ resolution: {integrity: sha512-D7EAtfU3w6BEUxDACjowWNJo/ZRo7sDIuhuOGKHIm9FHieGeoJV5R6GKTLtga/5l/6fDr2u+WcW/m8I9SYmaIw==}
474
+ engines: {node: '>=20.0.0'}
475
+
476
+ '@supabase/storage-js@2.95.3':
477
+ resolution: {integrity: sha512-4GxkJiXI3HHWjxpC3sDx1BVrV87O0hfX+wvJdqGv67KeCu+g44SPnII8y0LL/Wr677jB7tpjAxKdtVWf+xhc9A==}
478
+ engines: {node: '>=20.0.0'}
479
+
480
+ '@supabase/supabase-js@2.95.3':
481
+ resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
482
+ engines: {node: '>=20.0.0'}
483
+
484
+ '@types/body-parser@1.19.6':
485
+ resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==}
486
+
487
+ '@types/connect@3.4.38':
488
+ resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
489
+
398
490
  '@types/estree@1.0.8':
399
491
  resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
400
492
 
493
+ '@types/express-serve-static-core@5.1.1':
494
+ resolution: {integrity: sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==}
495
+
496
+ '@types/express@5.0.6':
497
+ resolution: {integrity: sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==}
498
+
499
+ '@types/http-errors@2.0.5':
500
+ resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==}
501
+
401
502
  '@types/json-schema@7.0.15':
402
503
  resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
403
504
 
404
- '@typescript-eslint/eslint-plugin@8.52.0':
405
- resolution: {integrity: sha512-okqtOgqu2qmZJ5iN4TWlgfF171dZmx2FzdOv2K/ixL2LZWDStL8+JgQerI2sa8eAEfoydG9+0V96m7V+P8yE1Q==}
505
+ '@types/node@22.19.15':
506
+ resolution: {integrity: sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg==}
507
+
508
+ '@types/phoenix@1.6.7':
509
+ resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
510
+
511
+ '@types/qs@6.15.0':
512
+ resolution: {integrity: sha512-JawvT8iBVWpzTrz3EGw9BTQFg3BQNmwERdKE22vlTxawwtbyUSlMppvZYKLZzB5zgACXdXxbD3m1bXaMqP/9ow==}
513
+
514
+ '@types/range-parser@1.2.7':
515
+ resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
516
+
517
+ '@types/send@1.2.1':
518
+ resolution: {integrity: sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==}
519
+
520
+ '@types/serve-static@2.2.0':
521
+ resolution: {integrity: sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==}
522
+
523
+ '@types/uuid@10.0.0':
524
+ resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
525
+
526
+ '@types/ws@8.18.1':
527
+ resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
528
+
529
+ '@typescript-eslint/eslint-plugin@8.53.1':
530
+ resolution: {integrity: sha512-cFYYFZ+oQFi6hUnBTbLRXfTJiaQtYE3t4O692agbBl+2Zy+eqSKWtPjhPXJu1G7j4RLjKgeJPDdq3EqOwmX5Ag==}
406
531
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
407
532
  peerDependencies:
408
- '@typescript-eslint/parser': ^8.52.0
533
+ '@typescript-eslint/parser': ^8.53.1
409
534
  eslint: ^8.57.0 || ^9.0.0
410
535
  typescript: '>=4.8.4 <6.0.0'
411
536
 
412
- '@typescript-eslint/parser@8.52.0':
413
- resolution: {integrity: sha512-iIACsx8pxRnguSYhHiMn2PvhvfpopO9FXHyn1mG5txZIsAaB6F0KwbFnUQN3KCiG3Jcuad/Cao2FAs1Wp7vAyg==}
537
+ '@typescript-eslint/parser@8.53.1':
538
+ resolution: {integrity: sha512-nm3cvFN9SqZGXjmw5bZ6cGmvJSyJPn0wU9gHAZZHDnZl2wF9PhHv78Xf06E0MaNk4zLVHL8hb2/c32XvyJOLQg==}
414
539
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
415
540
  peerDependencies:
416
541
  eslint: ^8.57.0 || ^9.0.0
417
542
  typescript: '>=4.8.4 <6.0.0'
418
543
 
419
- '@typescript-eslint/project-service@8.52.0':
420
- resolution: {integrity: sha512-xD0MfdSdEmeFa3OmVqonHi+Cciab96ls1UhIF/qX/O/gPu5KXD0bY9lu33jj04fjzrXHcuvjBcBC+D3SNSadaw==}
544
+ '@typescript-eslint/project-service@8.53.1':
545
+ resolution: {integrity: sha512-WYC4FB5Ra0xidsmlPb+1SsnaSKPmS3gsjIARwbEkHkoWloQmuzcfypljaJcR78uyLA1h8sHdWWPHSLDI+MtNog==}
421
546
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
422
547
  peerDependencies:
423
548
  typescript: '>=4.8.4 <6.0.0'
424
549
 
425
- '@typescript-eslint/scope-manager@8.52.0':
426
- resolution: {integrity: sha512-ixxqmmCcc1Nf8S0mS0TkJ/3LKcC8mruYJPOU6Ia2F/zUUR4pApW7LzrpU3JmtePbRUTes9bEqRc1Gg4iyRnDzA==}
550
+ '@typescript-eslint/scope-manager@8.53.1':
551
+ resolution: {integrity: sha512-Lu23yw1uJMFY8cUeq7JlrizAgeQvWugNQzJp8C3x8Eo5Jw5Q2ykMdiiTB9vBVOOUBysMzmRRmUfwFrZuI2C4SQ==}
427
552
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
428
553
 
429
- '@typescript-eslint/tsconfig-utils@8.52.0':
430
- resolution: {integrity: sha512-jl+8fzr/SdzdxWJznq5nvoI7qn2tNYV/ZBAEcaFMVXf+K6jmXvAFrgo/+5rxgnL152f//pDEAYAhhBAZGrVfwg==}
554
+ '@typescript-eslint/tsconfig-utils@8.53.1':
555
+ resolution: {integrity: sha512-qfvLXS6F6b1y43pnf0pPbXJ+YoXIC7HKg0UGZ27uMIemKMKA6XH2DTxsEDdpdN29D+vHV07x/pnlPNVLhdhWiA==}
431
556
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
432
557
  peerDependencies:
433
558
  typescript: '>=4.8.4 <6.0.0'
434
559
 
435
- '@typescript-eslint/type-utils@8.52.0':
436
- resolution: {integrity: sha512-JD3wKBRWglYRQkAtsyGz1AewDu3mTc7NtRjR/ceTyGoPqmdS5oCdx/oZMWD5Zuqmo6/MpsYs0wp6axNt88/2EQ==}
560
+ '@typescript-eslint/type-utils@8.53.1':
561
+ resolution: {integrity: sha512-MOrdtNvyhy0rHyv0ENzub1d4wQYKb2NmIqG7qEqPWFW7Mpy2jzFC3pQ2yKDvirZB7jypm5uGjF2Qqs6OIqu47w==}
437
562
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
438
563
  peerDependencies:
439
564
  eslint: ^8.57.0 || ^9.0.0
440
565
  typescript: '>=4.8.4 <6.0.0'
441
566
 
442
- '@typescript-eslint/types@8.52.0':
443
- resolution: {integrity: sha512-LWQV1V4q9V4cT4H5JCIx3481iIFxH1UkVk+ZkGGAV1ZGcjGI9IoFOfg3O6ywz8QqCDEp7Inlg6kovMofsNRaGg==}
567
+ '@typescript-eslint/types@8.53.1':
568
+ resolution: {integrity: sha512-jr/swrr2aRmUAUjW5/zQHbMaui//vQlsZcJKijZf3M26bnmLj8LyZUpj8/Rd6uzaek06OWsqdofN/Thenm5O8A==}
444
569
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
445
570
 
446
- '@typescript-eslint/typescript-estree@8.52.0':
447
- resolution: {integrity: sha512-XP3LClsCc0FsTK5/frGjolyADTh3QmsLp6nKd476xNI9CsSsLnmn4f0jrzNoAulmxlmNIpeXuHYeEQv61Q6qeQ==}
571
+ '@typescript-eslint/typescript-estree@8.53.1':
572
+ resolution: {integrity: sha512-RGlVipGhQAG4GxV1s34O91cxQ/vWiHJTDHbXRr0li2q/BGg3RR/7NM8QDWgkEgrwQYCvmJV9ichIwyoKCQ+DTg==}
448
573
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
449
574
  peerDependencies:
450
575
  typescript: '>=4.8.4 <6.0.0'
451
576
 
452
- '@typescript-eslint/utils@8.52.0':
453
- resolution: {integrity: sha512-wYndVMWkweqHpEpwPhwqE2lnD2DxC6WVLupU/DOt/0/v+/+iQbbzO3jOHjmBMnhu0DgLULvOaU4h4pwHYi2oRQ==}
577
+ '@typescript-eslint/utils@8.53.1':
578
+ resolution: {integrity: sha512-c4bMvGVWW4hv6JmDUEG7fSYlWOl3II2I4ylt0NM+seinYQlZMQIaKaXIIVJWt9Ofh6whrpM+EdDQXKXjNovvrg==}
454
579
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
455
580
  peerDependencies:
456
581
  eslint: ^8.57.0 || ^9.0.0
457
582
  typescript: '>=4.8.4 <6.0.0'
458
583
 
459
- '@typescript-eslint/visitor-keys@8.52.0':
460
- resolution: {integrity: sha512-ink3/Zofus34nmBsPjow63FP5M7IGff0RKAgqR6+CFpdk22M7aLwC9gOcLGYqr7MczLPzZVERW9hRog3O4n1sQ==}
584
+ '@typescript-eslint/visitor-keys@8.53.1':
585
+ resolution: {integrity: sha512-oy+wV7xDKFPRyNggmXuZQSBzvoLnpmJs+GhzRhPjrxl2b/jIlyjVokzm47CZCDUdXKr2zd7ZLodPfOBpOPyPlg==}
461
586
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
462
587
 
588
+ accepts@1.3.8:
589
+ resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
590
+ engines: {node: '>= 0.6'}
591
+
463
592
  acorn-jsx@5.3.2:
464
593
  resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
465
594
  peerDependencies:
@@ -470,6 +599,11 @@ packages:
470
599
  engines: {node: '>=0.4.0'}
471
600
  hasBin: true
472
601
 
602
+ acorn@8.16.0:
603
+ resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
604
+ engines: {node: '>=0.4.0'}
605
+ hasBin: true
606
+
473
607
  ajv@6.12.6:
474
608
  resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
475
609
 
@@ -477,6 +611,10 @@ packages:
477
611
  resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
478
612
  engines: {node: '>=8'}
479
613
 
614
+ ansi-styles@5.2.0:
615
+ resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
616
+ engines: {node: '>=10'}
617
+
480
618
  any-promise@1.3.0:
481
619
  resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
482
620
 
@@ -490,6 +628,12 @@ packages:
490
628
  argparse@2.0.1:
491
629
  resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
492
630
 
631
+ array-flatten@1.1.1:
632
+ resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
633
+
634
+ asynckit@0.4.0:
635
+ resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
636
+
493
637
  autoprefixer@10.4.23:
494
638
  resolution: {integrity: sha512-YYTXSFulfwytnjAPlw8QHncHJmlvFKtczb8InXaAx9Q0LbfDnfEYDE55omerIJKihhmU61Ft+cAOSzQVaBUmeA==}
495
639
  engines: {node: ^10 || ^12 || >=14}
@@ -497,17 +641,27 @@ packages:
497
641
  peerDependencies:
498
642
  postcss: ^8.1.0
499
643
 
644
+ axios@1.13.2:
645
+ resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==}
646
+
500
647
  balanced-match@1.0.2:
501
648
  resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
502
649
 
503
- baseline-browser-mapping@2.9.11:
504
- resolution: {integrity: sha512-Sg0xJUNDU1sJNGdfGWhVHX0kkZ+HWcvmVymJbj6NSgZZmW/8S9Y2HQ5euytnIgakgxN6papOAWiwDo1ctFDcoQ==}
650
+ base64-js@1.5.1:
651
+ resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
652
+
653
+ baseline-browser-mapping@2.9.16:
654
+ resolution: {integrity: sha512-KeUZdBuxngy825i8xvzaK1Ncnkx0tBmb3k8DkEuqjKRkmtvNTjey2ZsNeh8Dw4lfKvbCOu9oeNx2TKm2vHqcRw==}
505
655
  hasBin: true
506
656
 
507
657
  binary-extensions@2.3.0:
508
658
  resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
509
659
  engines: {node: '>=8'}
510
660
 
661
+ body-parser@1.20.4:
662
+ resolution: {integrity: sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==}
663
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
664
+
511
665
  brace-expansion@1.1.12:
512
666
  resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
513
667
 
@@ -523,6 +677,28 @@ packages:
523
677
  engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
524
678
  hasBin: true
525
679
 
680
+ bundle-require@5.1.0:
681
+ resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
682
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
683
+ peerDependencies:
684
+ esbuild: ^0.27.2
685
+
686
+ bytes@3.1.2:
687
+ resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
688
+ engines: {node: '>= 0.8'}
689
+
690
+ cac@6.7.14:
691
+ resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
692
+ engines: {node: '>=8'}
693
+
694
+ call-bind-apply-helpers@1.0.2:
695
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
696
+ engines: {node: '>= 0.4'}
697
+
698
+ call-bound@1.0.4:
699
+ resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
700
+ engines: {node: '>= 0.4'}
701
+
526
702
  callsites@3.1.0:
527
703
  resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
528
704
  engines: {node: '>=6'}
@@ -531,8 +707,12 @@ packages:
531
707
  resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
532
708
  engines: {node: '>= 6'}
533
709
 
534
- caniuse-lite@1.0.30001762:
535
- resolution: {integrity: sha512-PxZwGNvH7Ak8WX5iXzoK1KPZttBXNPuaOvI2ZYU7NrlM+d9Ov+TUvlLOBNGzVXAntMSMMlJPd+jY6ovrVjSmUw==}
710
+ camelcase@6.3.0:
711
+ resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
712
+ engines: {node: '>=10'}
713
+
714
+ caniuse-lite@1.0.30001765:
715
+ resolution: {integrity: sha512-LWcNtSyZrakjECqmpP4qdg0MMGdN368D7X8XvvAqOcqMv0RxnlqVKZl2V6/mBR68oYMxOZPLw/gO7DuisMHUvQ==}
536
716
 
537
717
  chalk@4.1.2:
538
718
  resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
@@ -542,6 +722,10 @@ packages:
542
722
  resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
543
723
  engines: {node: '>= 8.10.0'}
544
724
 
725
+ chokidar@4.0.3:
726
+ resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
727
+ engines: {node: '>= 14.16.0'}
728
+
545
729
  color-convert@2.0.1:
546
730
  resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
547
731
  engines: {node: '>=7.0.0'}
@@ -549,6 +733,10 @@ packages:
549
733
  color-name@1.1.4:
550
734
  resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
551
735
 
736
+ combined-stream@1.0.8:
737
+ resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
738
+ engines: {node: '>= 0.8'}
739
+
552
740
  commander@4.1.1:
553
741
  resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
554
742
  engines: {node: '>= 6'}
@@ -556,6 +744,36 @@ packages:
556
744
  concat-map@0.0.1:
557
745
  resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
558
746
 
747
+ confbox@0.1.8:
748
+ resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
749
+
750
+ consola@3.4.2:
751
+ resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
752
+ engines: {node: ^14.18.0 || >=16.10.0}
753
+
754
+ console-table-printer@2.15.0:
755
+ resolution: {integrity: sha512-SrhBq4hYVjLCkBVOWaTzceJalvn5K1Zq5aQA6wXC/cYjI3frKWNPEMK3sZsJfNNQApvCQmgBcc13ZKmFj8qExw==}
756
+
757
+ content-disposition@0.5.4:
758
+ resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
759
+ engines: {node: '>= 0.6'}
760
+
761
+ content-type@1.0.5:
762
+ resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
763
+ engines: {node: '>= 0.6'}
764
+
765
+ cookie-signature@1.0.7:
766
+ resolution: {integrity: sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==}
767
+
768
+ cookie@0.7.2:
769
+ resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
770
+ engines: {node: '>= 0.6'}
771
+
772
+ coze-coding-dev-sdk@0.7.16:
773
+ resolution: {integrity: sha512-B7gRPBa+sfrZL8ur0+F/92SOgZgFaWD/fOnCN2DjthnHSdmCYhAJWCfqzG2oO2vwTiYCXkKUuTBZ3MJLMj886g==}
774
+ engines: {node: '>=18.0.0'}
775
+ hasBin: true
776
+
559
777
  cross-spawn@7.0.6:
560
778
  resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
561
779
  engines: {node: '>= 8'}
@@ -565,6 +783,14 @@ packages:
565
783
  engines: {node: '>=4'}
566
784
  hasBin: true
567
785
 
786
+ debug@2.6.9:
787
+ resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
788
+ peerDependencies:
789
+ supports-color: '*'
790
+ peerDependenciesMeta:
791
+ supports-color:
792
+ optional: true
793
+
568
794
  debug@4.4.3:
569
795
  resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
570
796
  engines: {node: '>=6.0'}
@@ -574,18 +800,65 @@ packages:
574
800
  supports-color:
575
801
  optional: true
576
802
 
803
+ decamelize@1.2.0:
804
+ resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
805
+ engines: {node: '>=0.10.0'}
806
+
577
807
  deep-is@0.1.4:
578
808
  resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
579
809
 
810
+ delayed-stream@1.0.0:
811
+ resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
812
+ engines: {node: '>=0.4.0'}
813
+
814
+ depd@2.0.0:
815
+ resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
816
+ engines: {node: '>= 0.8'}
817
+
818
+ destroy@1.2.0:
819
+ resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
820
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
821
+
580
822
  didyoumean@1.2.2:
581
823
  resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
582
824
 
583
825
  dlv@1.1.3:
584
826
  resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
585
827
 
828
+ dotenv@17.2.4:
829
+ resolution: {integrity: sha512-mudtfb4zRB4bVvdj0xRo+e6duH1csJRM8IukBqfTRvHotn9+LBXB8ynAidP9zHqoRC/fsllXgk4kCKlR21fIhw==}
830
+ engines: {node: '>=12'}
831
+
832
+ dunder-proto@1.0.1:
833
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
834
+ engines: {node: '>= 0.4'}
835
+
836
+ ee-first@1.1.1:
837
+ resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
838
+
586
839
  electron-to-chromium@1.5.267:
587
840
  resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==}
588
841
 
842
+ encodeurl@2.0.0:
843
+ resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
844
+ engines: {node: '>= 0.8'}
845
+
846
+ es-define-property@1.0.1:
847
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
848
+ engines: {node: '>= 0.4'}
849
+
850
+ es-errors@1.3.0:
851
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
852
+ engines: {node: '>= 0.4'}
853
+
854
+ es-object-atoms@1.1.1:
855
+ resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
856
+ engines: {node: '>= 0.4'}
857
+
858
+ es-set-tostringtag@2.1.0:
859
+ resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
860
+ engines: {node: '>= 0.4'}
861
+
589
862
  esbuild@0.27.2:
590
863
  resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
591
864
  engines: {node: '>=18'}
@@ -595,6 +868,9 @@ packages:
595
868
  resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
596
869
  engines: {node: '>=6'}
597
870
 
871
+ escape-html@1.0.3:
872
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
873
+
598
874
  escape-string-regexp@4.0.0:
599
875
  resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
600
876
  engines: {node: '>=10'}
@@ -641,6 +917,17 @@ packages:
641
917
  resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
642
918
  engines: {node: '>=0.10.0'}
643
919
 
920
+ etag@1.8.1:
921
+ resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
922
+ engines: {node: '>= 0.6'}
923
+
924
+ eventemitter3@4.0.7:
925
+ resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
926
+
927
+ express@4.22.1:
928
+ resolution: {integrity: sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==}
929
+ engines: {node: '>= 0.10.0'}
930
+
644
931
  fast-deep-equal@3.1.3:
645
932
  resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
646
933
 
@@ -674,10 +961,17 @@ packages:
674
961
  resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
675
962
  engines: {node: '>=8'}
676
963
 
964
+ finalhandler@1.3.2:
965
+ resolution: {integrity: sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==}
966
+ engines: {node: '>= 0.8'}
967
+
677
968
  find-up@5.0.0:
678
969
  resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
679
970
  engines: {node: '>=10'}
680
971
 
972
+ fix-dts-default-cjs-exports@1.0.1:
973
+ resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==}
974
+
681
975
  flat-cache@4.0.1:
682
976
  resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
683
977
  engines: {node: '>=16'}
@@ -685,9 +979,30 @@ packages:
685
979
  flatted@3.3.3:
686
980
  resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
687
981
 
982
+ follow-redirects@1.15.11:
983
+ resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
984
+ engines: {node: '>=4.0'}
985
+ peerDependencies:
986
+ debug: '*'
987
+ peerDependenciesMeta:
988
+ debug:
989
+ optional: true
990
+
991
+ form-data@4.0.5:
992
+ resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
993
+ engines: {node: '>= 6'}
994
+
995
+ forwarded@0.2.0:
996
+ resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
997
+ engines: {node: '>= 0.6'}
998
+
688
999
  fraction.js@5.3.4:
689
1000
  resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
690
1001
 
1002
+ fresh@0.5.2:
1003
+ resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
1004
+ engines: {node: '>= 0.6'}
1005
+
691
1006
  fsevents@2.3.3:
692
1007
  resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
693
1008
  engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
@@ -696,6 +1011,17 @@ packages:
696
1011
  function-bind@1.1.2:
697
1012
  resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
698
1013
 
1014
+ get-intrinsic@1.3.0:
1015
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
1016
+ engines: {node: '>= 0.4'}
1017
+
1018
+ get-proto@1.0.1:
1019
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
1020
+ engines: {node: '>= 0.4'}
1021
+
1022
+ get-tsconfig@4.13.6:
1023
+ resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==}
1024
+
699
1025
  glob-parent@5.1.2:
700
1026
  resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
701
1027
  engines: {node: '>= 6'}
@@ -708,14 +1034,38 @@ packages:
708
1034
  resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
709
1035
  engines: {node: '>=18'}
710
1036
 
1037
+ gopd@1.2.0:
1038
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
1039
+ engines: {node: '>= 0.4'}
1040
+
711
1041
  has-flag@4.0.0:
712
1042
  resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
713
1043
  engines: {node: '>=8'}
714
1044
 
1045
+ has-symbols@1.1.0:
1046
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
1047
+ engines: {node: '>= 0.4'}
1048
+
1049
+ has-tostringtag@1.0.2:
1050
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
1051
+ engines: {node: '>= 0.4'}
1052
+
715
1053
  hasown@2.0.2:
716
1054
  resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
717
1055
  engines: {node: '>= 0.4'}
718
1056
 
1057
+ http-errors@2.0.1:
1058
+ resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
1059
+ engines: {node: '>= 0.8'}
1060
+
1061
+ iceberg-js@0.8.1:
1062
+ resolution: {integrity: sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==}
1063
+ engines: {node: '>=20.0.0'}
1064
+
1065
+ iconv-lite@0.4.24:
1066
+ resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
1067
+ engines: {node: '>=0.10.0'}
1068
+
719
1069
  ignore@5.3.2:
720
1070
  resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
721
1071
  engines: {node: '>= 4'}
@@ -732,6 +1082,13 @@ packages:
732
1082
  resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
733
1083
  engines: {node: '>=0.8.19'}
734
1084
 
1085
+ inherits@2.0.4:
1086
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
1087
+
1088
+ ipaddr.js@1.9.1:
1089
+ resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
1090
+ engines: {node: '>= 0.10'}
1091
+
735
1092
  is-binary-path@2.1.0:
736
1093
  resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
737
1094
  engines: {node: '>=8'}
@@ -759,6 +1116,13 @@ packages:
759
1116
  resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
760
1117
  hasBin: true
761
1118
 
1119
+ joycon@3.1.1:
1120
+ resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
1121
+ engines: {node: '>=10'}
1122
+
1123
+ js-tiktoken@1.0.21:
1124
+ resolution: {integrity: sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g==}
1125
+
762
1126
  js-yaml@4.1.1:
763
1127
  resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
764
1128
  hasBin: true
@@ -775,6 +1139,23 @@ packages:
775
1139
  keyv@4.5.4:
776
1140
  resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
777
1141
 
1142
+ langsmith@0.4.7:
1143
+ resolution: {integrity: sha512-Esv5g/J8wwRwbGQr10PB9+bLsNk0mWbrXc7nnEreQDhh0azbU57I7epSnT7GC4sS4EOWavhbxk+6p8PTXtreHw==}
1144
+ peerDependencies:
1145
+ '@opentelemetry/api': '*'
1146
+ '@opentelemetry/exporter-trace-otlp-proto': '*'
1147
+ '@opentelemetry/sdk-trace-base': '*'
1148
+ openai: '*'
1149
+ peerDependenciesMeta:
1150
+ '@opentelemetry/api':
1151
+ optional: true
1152
+ '@opentelemetry/exporter-trace-otlp-proto':
1153
+ optional: true
1154
+ '@opentelemetry/sdk-trace-base':
1155
+ optional: true
1156
+ openai:
1157
+ optional: true
1158
+
778
1159
  levn@0.4.1:
779
1160
  resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
780
1161
  engines: {node: '>= 0.8.0'}
@@ -786,6 +1167,10 @@ packages:
786
1167
  lines-and-columns@1.2.4:
787
1168
  resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
788
1169
 
1170
+ load-tsconfig@0.2.5:
1171
+ resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
1172
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1173
+
789
1174
  locate-path@6.0.0:
790
1175
  resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
791
1176
  engines: {node: '>=10'}
@@ -793,14 +1178,45 @@ packages:
793
1178
  lodash.merge@4.6.2:
794
1179
  resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
795
1180
 
1181
+ magic-string@0.30.21:
1182
+ resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
1183
+
1184
+ math-intrinsics@1.1.0:
1185
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
1186
+ engines: {node: '>= 0.4'}
1187
+
1188
+ media-typer@0.3.0:
1189
+ resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
1190
+ engines: {node: '>= 0.6'}
1191
+
1192
+ merge-descriptors@1.0.3:
1193
+ resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
1194
+
796
1195
  merge2@1.4.1:
797
1196
  resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
798
1197
  engines: {node: '>= 8'}
799
1198
 
1199
+ methods@1.1.2:
1200
+ resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
1201
+ engines: {node: '>= 0.6'}
1202
+
800
1203
  micromatch@4.0.8:
801
1204
  resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
802
1205
  engines: {node: '>=8.6'}
803
1206
 
1207
+ mime-db@1.52.0:
1208
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
1209
+ engines: {node: '>= 0.6'}
1210
+
1211
+ mime-types@2.1.35:
1212
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
1213
+ engines: {node: '>= 0.6'}
1214
+
1215
+ mime@1.6.0:
1216
+ resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
1217
+ engines: {node: '>=4'}
1218
+ hasBin: true
1219
+
804
1220
  minimatch@3.1.2:
805
1221
  resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
806
1222
 
@@ -808,9 +1224,19 @@ packages:
808
1224
  resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
809
1225
  engines: {node: '>=16 || 14 >=14.17'}
810
1226
 
1227
+ mlly@1.8.1:
1228
+ resolution: {integrity: sha512-SnL6sNutTwRWWR/vcmCYHSADjiEesp5TGQQ0pXyLhW5IoeibRlF/CbSLailbB3CNqJUk9cVJ9dUDnbD7GrcHBQ==}
1229
+
1230
+ ms@2.0.0:
1231
+ resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
1232
+
811
1233
  ms@2.1.3:
812
1234
  resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
813
1235
 
1236
+ mustache@4.2.0:
1237
+ resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==}
1238
+ hasBin: true
1239
+
814
1240
  mz@2.7.0:
815
1241
  resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
816
1242
 
@@ -822,6 +1248,10 @@ packages:
822
1248
  natural-compare@1.4.0:
823
1249
  resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
824
1250
 
1251
+ negotiator@0.6.3:
1252
+ resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
1253
+ engines: {node: '>= 0.6'}
1254
+
825
1255
  node-releases@2.0.27:
826
1256
  resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
827
1257
 
@@ -837,14 +1267,38 @@ packages:
837
1267
  resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
838
1268
  engines: {node: '>= 6'}
839
1269
 
1270
+ object-inspect@1.13.4:
1271
+ resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
1272
+ engines: {node: '>= 0.4'}
1273
+
1274
+ on-finished@2.4.1:
1275
+ resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
1276
+ engines: {node: '>= 0.8'}
1277
+
840
1278
  only-allow@1.2.2:
841
1279
  resolution: {integrity: sha512-uxyNYDsCh5YIJ780G7hC5OHjVUr9reHsbZNMM80L9tZlTpb3hUzb36KXgW4ZUGtJKQnGA3xegmWg1BxhWV0jJA==}
842
1280
  hasBin: true
843
1281
 
1282
+ openai@6.16.0:
1283
+ resolution: {integrity: sha512-fZ1uBqjFUjXzbGc35fFtYKEOxd20kd9fDpFeqWtsOZWiubY8CZ1NAlXHW3iathaFvqmNtCWMIsosCuyeI7Joxg==}
1284
+ hasBin: true
1285
+ peerDependencies:
1286
+ ws: ^8.18.0
1287
+ zod: ^3.25 || ^4.0
1288
+ peerDependenciesMeta:
1289
+ ws:
1290
+ optional: true
1291
+ zod:
1292
+ optional: true
1293
+
844
1294
  optionator@0.9.4:
845
1295
  resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
846
1296
  engines: {node: '>= 0.8.0'}
847
1297
 
1298
+ p-finally@1.0.0:
1299
+ resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
1300
+ engines: {node: '>=4'}
1301
+
848
1302
  p-limit@3.1.0:
849
1303
  resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
850
1304
  engines: {node: '>=10'}
@@ -853,10 +1307,22 @@ packages:
853
1307
  resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
854
1308
  engines: {node: '>=10'}
855
1309
 
1310
+ p-queue@6.6.2:
1311
+ resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==}
1312
+ engines: {node: '>=8'}
1313
+
1314
+ p-timeout@3.2.0:
1315
+ resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==}
1316
+ engines: {node: '>=8'}
1317
+
856
1318
  parent-module@1.0.1:
857
1319
  resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
858
1320
  engines: {node: '>=6'}
859
1321
 
1322
+ parseurl@1.3.3:
1323
+ resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
1324
+ engines: {node: '>= 0.8'}
1325
+
860
1326
  path-exists@4.0.0:
861
1327
  resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
862
1328
  engines: {node: '>=8'}
@@ -868,6 +1334,46 @@ packages:
868
1334
  path-parse@1.0.7:
869
1335
  resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
870
1336
 
1337
+ path-to-regexp@0.1.12:
1338
+ resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
1339
+
1340
+ pathe@2.0.3:
1341
+ resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
1342
+
1343
+ pg-cloudflare@1.3.0:
1344
+ resolution: {integrity: sha512-6lswVVSztmHiRtD6I8hw4qP/nDm1EJbKMRhf3HCYaqud7frGysPv7FYJ5noZQdhQtN2xJnimfMtvQq21pdbzyQ==}
1345
+
1346
+ pg-connection-string@2.10.1:
1347
+ resolution: {integrity: sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==}
1348
+
1349
+ pg-int8@1.0.1:
1350
+ resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==}
1351
+ engines: {node: '>=4.0.0'}
1352
+
1353
+ pg-pool@3.11.0:
1354
+ resolution: {integrity: sha512-MJYfvHwtGp870aeusDh+hg9apvOe2zmpZJpyt+BMtzUWlVqbhFmMK6bOBXLBUPd7iRtIF9fZplDc7KrPN3PN7w==}
1355
+ peerDependencies:
1356
+ pg: '>=8.0'
1357
+
1358
+ pg-protocol@1.11.0:
1359
+ resolution: {integrity: sha512-pfsxk2M9M3BuGgDOfuy37VNRRX3jmKgMjcvAcWqNDpZSf4cUmv8HSOl5ViRQFsfARFn0KuUQTgLxVMbNq5NW3g==}
1360
+
1361
+ pg-types@2.2.0:
1362
+ resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==}
1363
+ engines: {node: '>=4'}
1364
+
1365
+ pg@8.17.2:
1366
+ resolution: {integrity: sha512-vjbKdiBJRqzcYw1fNU5KuHyYvdJ1qpcQg1CeBrHFqV1pWgHeVR6j/+kX0E1AAXfyuLUGY1ICrN2ELKA/z2HWzw==}
1367
+ engines: {node: '>= 16.0.0'}
1368
+ peerDependencies:
1369
+ pg-native: '>=3.0.1'
1370
+ peerDependenciesMeta:
1371
+ pg-native:
1372
+ optional: true
1373
+
1374
+ pgpass@1.0.5:
1375
+ resolution: {integrity: sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==}
1376
+
871
1377
  picocolors@1.1.1:
872
1378
  resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
873
1379
 
@@ -887,6 +1393,9 @@ packages:
887
1393
  resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
888
1394
  engines: {node: '>= 6'}
889
1395
 
1396
+ pkg-types@1.3.1:
1397
+ resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
1398
+
890
1399
  postcss-import@15.1.0:
891
1400
  resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
892
1401
  engines: {node: '>=14.0.0'}
@@ -934,17 +1443,52 @@ packages:
934
1443
  resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
935
1444
  engines: {node: ^10 || ^12 || >=14}
936
1445
 
1446
+ postgres-array@2.0.0:
1447
+ resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
1448
+ engines: {node: '>=4'}
1449
+
1450
+ postgres-bytea@1.0.1:
1451
+ resolution: {integrity: sha512-5+5HqXnsZPE65IJZSMkZtURARZelel2oXUEO8rH83VS/hxH5vv1uHquPg5wZs8yMAfdv971IU+kcPUczi7NVBQ==}
1452
+ engines: {node: '>=0.10.0'}
1453
+
1454
+ postgres-date@1.0.7:
1455
+ resolution: {integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==}
1456
+ engines: {node: '>=0.10.0'}
1457
+
1458
+ postgres-interval@1.2.0:
1459
+ resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==}
1460
+ engines: {node: '>=0.10.0'}
1461
+
937
1462
  prelude-ls@1.2.1:
938
1463
  resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
939
1464
  engines: {node: '>= 0.8.0'}
940
1465
 
1466
+ proxy-addr@2.0.7:
1467
+ resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
1468
+ engines: {node: '>= 0.10'}
1469
+
1470
+ proxy-from-env@1.1.0:
1471
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
1472
+
941
1473
  punycode@2.3.1:
942
1474
  resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
943
1475
  engines: {node: '>=6'}
944
1476
 
1477
+ qs@6.14.2:
1478
+ resolution: {integrity: sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==}
1479
+ engines: {node: '>=0.6'}
1480
+
945
1481
  queue-microtask@1.2.3:
946
1482
  resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
947
1483
 
1484
+ range-parser@1.2.1:
1485
+ resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
1486
+ engines: {node: '>= 0.6'}
1487
+
1488
+ raw-body@2.5.3:
1489
+ resolution: {integrity: sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==}
1490
+ engines: {node: '>= 0.8'}
1491
+
948
1492
  read-cache@1.0.0:
949
1493
  resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
950
1494
 
@@ -952,10 +1496,21 @@ packages:
952
1496
  resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
953
1497
  engines: {node: '>=8.10.0'}
954
1498
 
1499
+ readdirp@4.1.2:
1500
+ resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
1501
+ engines: {node: '>= 14.18.0'}
1502
+
955
1503
  resolve-from@4.0.0:
956
1504
  resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
957
1505
  engines: {node: '>=4'}
958
1506
 
1507
+ resolve-from@5.0.0:
1508
+ resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
1509
+ engines: {node: '>=8'}
1510
+
1511
+ resolve-pkg-maps@1.0.0:
1512
+ resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
1513
+
959
1514
  resolve@1.22.11:
960
1515
  resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
961
1516
  engines: {node: '>= 0.4'}
@@ -965,19 +1520,36 @@ packages:
965
1520
  resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
966
1521
  engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
967
1522
 
968
- rollup@4.54.0:
969
- resolution: {integrity: sha512-3nk8Y3a9Ea8szgKhinMlGMhGMw89mqule3KWczxhIzqudyHdCIOHw8WJlj/r329fACjKLEh13ZSk7oE22kyeIw==}
1523
+ rollup@4.55.3:
1524
+ resolution: {integrity: sha512-y9yUpfQvetAjiDLtNMf1hL9NXchIJgWt6zIKeoB+tCd3npX08Eqfzg60V9DhIGVMtQ0AlMkFw5xa+AQ37zxnAA==}
970
1525
  engines: {node: '>=18.0.0', npm: '>=8.0.0'}
971
1526
  hasBin: true
972
1527
 
973
1528
  run-parallel@1.2.0:
974
1529
  resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
975
1530
 
1531
+ safe-buffer@5.2.1:
1532
+ resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
1533
+
1534
+ safer-buffer@2.1.2:
1535
+ resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
1536
+
976
1537
  semver@7.7.3:
977
1538
  resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
978
1539
  engines: {node: '>=10'}
979
1540
  hasBin: true
980
1541
 
1542
+ send@0.19.2:
1543
+ resolution: {integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==}
1544
+ engines: {node: '>= 0.8.0'}
1545
+
1546
+ serve-static@1.16.3:
1547
+ resolution: {integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==}
1548
+ engines: {node: '>= 0.8.0'}
1549
+
1550
+ setprototypeof@1.2.0:
1551
+ resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
1552
+
981
1553
  shebang-command@2.0.0:
982
1554
  resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
983
1555
  engines: {node: '>=8'}
@@ -986,10 +1558,41 @@ packages:
986
1558
  resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
987
1559
  engines: {node: '>=8'}
988
1560
 
1561
+ side-channel-list@1.0.0:
1562
+ resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
1563
+ engines: {node: '>= 0.4'}
1564
+
1565
+ side-channel-map@1.0.1:
1566
+ resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
1567
+ engines: {node: '>= 0.4'}
1568
+
1569
+ side-channel-weakmap@1.0.2:
1570
+ resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
1571
+ engines: {node: '>= 0.4'}
1572
+
1573
+ side-channel@1.1.0:
1574
+ resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
1575
+ engines: {node: '>= 0.4'}
1576
+
1577
+ simple-wcswidth@1.1.2:
1578
+ resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
1579
+
989
1580
  source-map-js@1.2.1:
990
1581
  resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
991
1582
  engines: {node: '>=0.10.0'}
992
1583
 
1584
+ source-map@0.7.6:
1585
+ resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==}
1586
+ engines: {node: '>= 12'}
1587
+
1588
+ split2@4.2.0:
1589
+ resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
1590
+ engines: {node: '>= 10.x'}
1591
+
1592
+ statuses@2.0.2:
1593
+ resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
1594
+ engines: {node: '>= 0.8'}
1595
+
993
1596
  strip-json-comments@3.1.1:
994
1597
  resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
995
1598
  engines: {node: '>=8'}
@@ -1019,6 +1622,9 @@ packages:
1019
1622
  thenify@3.3.1:
1020
1623
  resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
1021
1624
 
1625
+ tinyexec@0.3.2:
1626
+ resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
1627
+
1022
1628
  tinyglobby@0.2.15:
1023
1629
  resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
1024
1630
  engines: {node: '>=12.0.0'}
@@ -1027,6 +1633,14 @@ packages:
1027
1633
  resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
1028
1634
  engines: {node: '>=8.0'}
1029
1635
 
1636
+ toidentifier@1.0.1:
1637
+ resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
1638
+ engines: {node: '>=0.6'}
1639
+
1640
+ tree-kill@1.2.2:
1641
+ resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
1642
+ hasBin: true
1643
+
1030
1644
  ts-api-utils@2.4.0:
1031
1645
  resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
1032
1646
  engines: {node: '>=18.12'}
@@ -1036,12 +1650,43 @@ packages:
1036
1650
  ts-interface-checker@0.1.13:
1037
1651
  resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
1038
1652
 
1653
+ tslib@2.8.1:
1654
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
1655
+
1656
+ tsup@8.5.1:
1657
+ resolution: {integrity: sha512-xtgkqwdhpKWr3tKPmCkvYmS9xnQK3m3XgxZHwSUjvfTjp7YfXe5tT3GgWi0F2N+ZSMsOeWeZFh7ZZFg5iPhing==}
1658
+ engines: {node: '>=18'}
1659
+ hasBin: true
1660
+ peerDependencies:
1661
+ '@microsoft/api-extractor': ^7.36.0
1662
+ '@swc/core': ^1
1663
+ postcss: ^8.4.12
1664
+ typescript: '>=4.5.0'
1665
+ peerDependenciesMeta:
1666
+ '@microsoft/api-extractor':
1667
+ optional: true
1668
+ '@swc/core':
1669
+ optional: true
1670
+ postcss:
1671
+ optional: true
1672
+ typescript:
1673
+ optional: true
1674
+
1675
+ tsx@4.21.0:
1676
+ resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
1677
+ engines: {node: '>=18.0.0'}
1678
+ hasBin: true
1679
+
1039
1680
  type-check@0.4.0:
1040
1681
  resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
1041
1682
  engines: {node: '>= 0.8.0'}
1042
1683
 
1043
- typescript-eslint@8.52.0:
1044
- resolution: {integrity: sha512-atlQQJ2YkO4pfTVQmQ+wvYQwexPDOIgo+RaVcD7gHgzy/IQA+XTyuxNM9M9TVXvttkF7koBHmcwisKdOAf2EcA==}
1684
+ type-is@1.6.18:
1685
+ resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
1686
+ engines: {node: '>= 0.6'}
1687
+
1688
+ typescript-eslint@8.53.1:
1689
+ resolution: {integrity: sha512-gB+EVQfP5RDElh9ittfXlhZJdjSU4jUSTyE2+ia8CYyNvet4ElfaLlAIqDvQV9JPknKx0jQH1racTYe/4LaLSg==}
1045
1690
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1046
1691
  peerDependencies:
1047
1692
  eslint: ^8.57.0 || ^9.0.0
@@ -1052,6 +1697,16 @@ packages:
1052
1697
  engines: {node: '>=14.17'}
1053
1698
  hasBin: true
1054
1699
 
1700
+ ufo@1.6.3:
1701
+ resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==}
1702
+
1703
+ undici-types@6.21.0:
1704
+ resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
1705
+
1706
+ unpipe@1.0.0:
1707
+ resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
1708
+ engines: {node: '>= 0.8'}
1709
+
1055
1710
  update-browserslist-db@1.2.3:
1056
1711
  resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
1057
1712
  hasBin: true
@@ -1064,8 +1719,20 @@ packages:
1064
1719
  util-deprecate@1.0.2:
1065
1720
  resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
1066
1721
 
1067
- vite@7.3.0:
1068
- resolution: {integrity: sha512-dZwN5L1VlUBewiP6H9s2+B3e3Jg96D0vzN+Ry73sOefebhYr9f94wwkMNN/9ouoU8pV1BqA1d1zGk8928cx0rg==}
1722
+ utils-merge@1.0.1:
1723
+ resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
1724
+ engines: {node: '>= 0.4.0'}
1725
+
1726
+ uuid@10.0.0:
1727
+ resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
1728
+ hasBin: true
1729
+
1730
+ vary@1.1.2:
1731
+ resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
1732
+ engines: {node: '>= 0.8'}
1733
+
1734
+ vite@7.3.1:
1735
+ resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==}
1069
1736
  engines: {node: ^20.19.0 || >=22.12.0}
1070
1737
  hasBin: true
1071
1738
  peerDependencies:
@@ -1117,14 +1784,35 @@ packages:
1117
1784
  resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
1118
1785
  engines: {node: '>=0.10.0'}
1119
1786
 
1787
+ ws@8.19.0:
1788
+ resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
1789
+ engines: {node: '>=10.0.0'}
1790
+ peerDependencies:
1791
+ bufferutil: ^4.0.1
1792
+ utf-8-validate: '>=5.0.2'
1793
+ peerDependenciesMeta:
1794
+ bufferutil:
1795
+ optional: true
1796
+ utf-8-validate:
1797
+ optional: true
1798
+
1799
+ xtend@4.0.2:
1800
+ resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
1801
+ engines: {node: '>=0.4'}
1802
+
1120
1803
  yocto-queue@0.1.0:
1121
1804
  resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
1122
1805
  engines: {node: '>=10'}
1123
1806
 
1807
+ zod@4.3.5:
1808
+ resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==}
1809
+
1124
1810
  snapshots:
1125
1811
 
1126
1812
  '@alloc/quick-lru@5.2.0': {}
1127
1813
 
1814
+ '@cfworker/json-schema@4.1.1': {}
1815
+
1128
1816
  '@esbuild/aix-ppc64@0.27.2':
1129
1817
  optional: true
1130
1818
 
@@ -1274,6 +1962,33 @@ snapshots:
1274
1962
  '@jridgewell/resolve-uri': 3.1.2
1275
1963
  '@jridgewell/sourcemap-codec': 1.5.5
1276
1964
 
1965
+ '@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))':
1966
+ dependencies:
1967
+ '@cfworker/json-schema': 4.1.1
1968
+ ansi-styles: 5.2.0
1969
+ camelcase: 6.3.0
1970
+ decamelize: 1.2.0
1971
+ js-tiktoken: 1.0.21
1972
+ langsmith: 0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
1973
+ mustache: 4.2.0
1974
+ p-queue: 6.6.2
1975
+ uuid: 10.0.0
1976
+ zod: 4.3.5
1977
+ transitivePeerDependencies:
1978
+ - '@opentelemetry/api'
1979
+ - '@opentelemetry/exporter-trace-otlp-proto'
1980
+ - '@opentelemetry/sdk-trace-base'
1981
+ - openai
1982
+
1983
+ '@langchain/openai@1.2.3(@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5)))(ws@8.19.0)':
1984
+ dependencies:
1985
+ '@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
1986
+ js-tiktoken: 1.0.21
1987
+ openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
1988
+ zod: 4.3.5
1989
+ transitivePeerDependencies:
1990
+ - ws
1991
+
1277
1992
  '@nodelib/fs.scandir@2.1.5':
1278
1993
  dependencies:
1279
1994
  '@nodelib/fs.stat': 2.0.5
@@ -1286,84 +2001,180 @@ snapshots:
1286
2001
  '@nodelib/fs.scandir': 2.1.5
1287
2002
  fastq: 1.20.1
1288
2003
 
1289
- '@rollup/rollup-android-arm-eabi@4.54.0':
2004
+ '@rollup/rollup-android-arm-eabi@4.55.3':
2005
+ optional: true
2006
+
2007
+ '@rollup/rollup-android-arm64@4.55.3':
1290
2008
  optional: true
1291
2009
 
1292
- '@rollup/rollup-android-arm64@4.54.0':
2010
+ '@rollup/rollup-darwin-arm64@4.55.3':
1293
2011
  optional: true
1294
2012
 
1295
- '@rollup/rollup-darwin-arm64@4.54.0':
2013
+ '@rollup/rollup-darwin-x64@4.55.3':
1296
2014
  optional: true
1297
2015
 
1298
- '@rollup/rollup-darwin-x64@4.54.0':
2016
+ '@rollup/rollup-freebsd-arm64@4.55.3':
1299
2017
  optional: true
1300
2018
 
1301
- '@rollup/rollup-freebsd-arm64@4.54.0':
2019
+ '@rollup/rollup-freebsd-x64@4.55.3':
1302
2020
  optional: true
1303
2021
 
1304
- '@rollup/rollup-freebsd-x64@4.54.0':
2022
+ '@rollup/rollup-linux-arm-gnueabihf@4.55.3':
1305
2023
  optional: true
1306
2024
 
1307
- '@rollup/rollup-linux-arm-gnueabihf@4.54.0':
2025
+ '@rollup/rollup-linux-arm-musleabihf@4.55.3':
1308
2026
  optional: true
1309
2027
 
1310
- '@rollup/rollup-linux-arm-musleabihf@4.54.0':
2028
+ '@rollup/rollup-linux-arm64-gnu@4.55.3':
1311
2029
  optional: true
1312
2030
 
1313
- '@rollup/rollup-linux-arm64-gnu@4.54.0':
2031
+ '@rollup/rollup-linux-arm64-musl@4.55.3':
1314
2032
  optional: true
1315
2033
 
1316
- '@rollup/rollup-linux-arm64-musl@4.54.0':
2034
+ '@rollup/rollup-linux-loong64-gnu@4.55.3':
1317
2035
  optional: true
1318
2036
 
1319
- '@rollup/rollup-linux-loong64-gnu@4.54.0':
2037
+ '@rollup/rollup-linux-loong64-musl@4.55.3':
1320
2038
  optional: true
1321
2039
 
1322
- '@rollup/rollup-linux-ppc64-gnu@4.54.0':
2040
+ '@rollup/rollup-linux-ppc64-gnu@4.55.3':
1323
2041
  optional: true
1324
2042
 
1325
- '@rollup/rollup-linux-riscv64-gnu@4.54.0':
2043
+ '@rollup/rollup-linux-ppc64-musl@4.55.3':
1326
2044
  optional: true
1327
2045
 
1328
- '@rollup/rollup-linux-riscv64-musl@4.54.0':
2046
+ '@rollup/rollup-linux-riscv64-gnu@4.55.3':
1329
2047
  optional: true
1330
2048
 
1331
- '@rollup/rollup-linux-s390x-gnu@4.54.0':
2049
+ '@rollup/rollup-linux-riscv64-musl@4.55.3':
1332
2050
  optional: true
1333
2051
 
1334
- '@rollup/rollup-linux-x64-gnu@4.54.0':
2052
+ '@rollup/rollup-linux-s390x-gnu@4.55.3':
1335
2053
  optional: true
1336
2054
 
1337
- '@rollup/rollup-linux-x64-musl@4.54.0':
2055
+ '@rollup/rollup-linux-x64-gnu@4.55.3':
1338
2056
  optional: true
1339
2057
 
1340
- '@rollup/rollup-openharmony-arm64@4.54.0':
2058
+ '@rollup/rollup-linux-x64-musl@4.55.3':
1341
2059
  optional: true
1342
2060
 
1343
- '@rollup/rollup-win32-arm64-msvc@4.54.0':
2061
+ '@rollup/rollup-openbsd-x64@4.55.3':
1344
2062
  optional: true
1345
2063
 
1346
- '@rollup/rollup-win32-ia32-msvc@4.54.0':
2064
+ '@rollup/rollup-openharmony-arm64@4.55.3':
1347
2065
  optional: true
1348
2066
 
1349
- '@rollup/rollup-win32-x64-gnu@4.54.0':
2067
+ '@rollup/rollup-win32-arm64-msvc@4.55.3':
1350
2068
  optional: true
1351
2069
 
1352
- '@rollup/rollup-win32-x64-msvc@4.54.0':
2070
+ '@rollup/rollup-win32-ia32-msvc@4.55.3':
1353
2071
  optional: true
1354
2072
 
2073
+ '@rollup/rollup-win32-x64-gnu@4.55.3':
2074
+ optional: true
2075
+
2076
+ '@rollup/rollup-win32-x64-msvc@4.55.3':
2077
+ optional: true
2078
+
2079
+ '@supabase/auth-js@2.95.3':
2080
+ dependencies:
2081
+ tslib: 2.8.1
2082
+
2083
+ '@supabase/functions-js@2.95.3':
2084
+ dependencies:
2085
+ tslib: 2.8.1
2086
+
2087
+ '@supabase/postgrest-js@2.95.3':
2088
+ dependencies:
2089
+ tslib: 2.8.1
2090
+
2091
+ '@supabase/realtime-js@2.95.3':
2092
+ dependencies:
2093
+ '@types/phoenix': 1.6.7
2094
+ '@types/ws': 8.18.1
2095
+ tslib: 2.8.1
2096
+ ws: 8.19.0
2097
+ transitivePeerDependencies:
2098
+ - bufferutil
2099
+ - utf-8-validate
2100
+
2101
+ '@supabase/storage-js@2.95.3':
2102
+ dependencies:
2103
+ iceberg-js: 0.8.1
2104
+ tslib: 2.8.1
2105
+
2106
+ '@supabase/supabase-js@2.95.3':
2107
+ dependencies:
2108
+ '@supabase/auth-js': 2.95.3
2109
+ '@supabase/functions-js': 2.95.3
2110
+ '@supabase/postgrest-js': 2.95.3
2111
+ '@supabase/realtime-js': 2.95.3
2112
+ '@supabase/storage-js': 2.95.3
2113
+ transitivePeerDependencies:
2114
+ - bufferutil
2115
+ - utf-8-validate
2116
+
2117
+ '@types/body-parser@1.19.6':
2118
+ dependencies:
2119
+ '@types/connect': 3.4.38
2120
+ '@types/node': 22.19.15
2121
+
2122
+ '@types/connect@3.4.38':
2123
+ dependencies:
2124
+ '@types/node': 22.19.15
2125
+
1355
2126
  '@types/estree@1.0.8': {}
1356
2127
 
2128
+ '@types/express-serve-static-core@5.1.1':
2129
+ dependencies:
2130
+ '@types/node': 22.19.15
2131
+ '@types/qs': 6.15.0
2132
+ '@types/range-parser': 1.2.7
2133
+ '@types/send': 1.2.1
2134
+
2135
+ '@types/express@5.0.6':
2136
+ dependencies:
2137
+ '@types/body-parser': 1.19.6
2138
+ '@types/express-serve-static-core': 5.1.1
2139
+ '@types/serve-static': 2.2.0
2140
+
2141
+ '@types/http-errors@2.0.5': {}
2142
+
1357
2143
  '@types/json-schema@7.0.15': {}
1358
2144
 
1359
- '@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
2145
+ '@types/node@22.19.15':
2146
+ dependencies:
2147
+ undici-types: 6.21.0
2148
+
2149
+ '@types/phoenix@1.6.7': {}
2150
+
2151
+ '@types/qs@6.15.0': {}
2152
+
2153
+ '@types/range-parser@1.2.7': {}
2154
+
2155
+ '@types/send@1.2.1':
2156
+ dependencies:
2157
+ '@types/node': 22.19.15
2158
+
2159
+ '@types/serve-static@2.2.0':
2160
+ dependencies:
2161
+ '@types/http-errors': 2.0.5
2162
+ '@types/node': 22.19.15
2163
+
2164
+ '@types/uuid@10.0.0': {}
2165
+
2166
+ '@types/ws@8.18.1':
2167
+ dependencies:
2168
+ '@types/node': 22.19.15
2169
+
2170
+ '@typescript-eslint/eslint-plugin@8.53.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
1360
2171
  dependencies:
1361
2172
  '@eslint-community/regexpp': 4.12.2
1362
- '@typescript-eslint/parser': 8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
1363
- '@typescript-eslint/scope-manager': 8.52.0
1364
- '@typescript-eslint/type-utils': 8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
1365
- '@typescript-eslint/utils': 8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
1366
- '@typescript-eslint/visitor-keys': 8.52.0
2173
+ '@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
2174
+ '@typescript-eslint/scope-manager': 8.53.1
2175
+ '@typescript-eslint/type-utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
2176
+ '@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
2177
+ '@typescript-eslint/visitor-keys': 8.53.1
1367
2178
  eslint: 9.39.2(jiti@1.21.7)
1368
2179
  ignore: 7.0.5
1369
2180
  natural-compare: 1.4.0
@@ -1372,41 +2183,41 @@ snapshots:
1372
2183
  transitivePeerDependencies:
1373
2184
  - supports-color
1374
2185
 
1375
- '@typescript-eslint/parser@8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
2186
+ '@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
1376
2187
  dependencies:
1377
- '@typescript-eslint/scope-manager': 8.52.0
1378
- '@typescript-eslint/types': 8.52.0
1379
- '@typescript-eslint/typescript-estree': 8.52.0(typescript@5.9.3)
1380
- '@typescript-eslint/visitor-keys': 8.52.0
2188
+ '@typescript-eslint/scope-manager': 8.53.1
2189
+ '@typescript-eslint/types': 8.53.1
2190
+ '@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
2191
+ '@typescript-eslint/visitor-keys': 8.53.1
1381
2192
  debug: 4.4.3
1382
2193
  eslint: 9.39.2(jiti@1.21.7)
1383
2194
  typescript: 5.9.3
1384
2195
  transitivePeerDependencies:
1385
2196
  - supports-color
1386
2197
 
1387
- '@typescript-eslint/project-service@8.52.0(typescript@5.9.3)':
2198
+ '@typescript-eslint/project-service@8.53.1(typescript@5.9.3)':
1388
2199
  dependencies:
1389
- '@typescript-eslint/tsconfig-utils': 8.52.0(typescript@5.9.3)
1390
- '@typescript-eslint/types': 8.52.0
2200
+ '@typescript-eslint/tsconfig-utils': 8.53.1(typescript@5.9.3)
2201
+ '@typescript-eslint/types': 8.53.1
1391
2202
  debug: 4.4.3
1392
2203
  typescript: 5.9.3
1393
2204
  transitivePeerDependencies:
1394
2205
  - supports-color
1395
2206
 
1396
- '@typescript-eslint/scope-manager@8.52.0':
2207
+ '@typescript-eslint/scope-manager@8.53.1':
1397
2208
  dependencies:
1398
- '@typescript-eslint/types': 8.52.0
1399
- '@typescript-eslint/visitor-keys': 8.52.0
2209
+ '@typescript-eslint/types': 8.53.1
2210
+ '@typescript-eslint/visitor-keys': 8.53.1
1400
2211
 
1401
- '@typescript-eslint/tsconfig-utils@8.52.0(typescript@5.9.3)':
2212
+ '@typescript-eslint/tsconfig-utils@8.53.1(typescript@5.9.3)':
1402
2213
  dependencies:
1403
2214
  typescript: 5.9.3
1404
2215
 
1405
- '@typescript-eslint/type-utils@8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
2216
+ '@typescript-eslint/type-utils@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
1406
2217
  dependencies:
1407
- '@typescript-eslint/types': 8.52.0
1408
- '@typescript-eslint/typescript-estree': 8.52.0(typescript@5.9.3)
1409
- '@typescript-eslint/utils': 8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
2218
+ '@typescript-eslint/types': 8.53.1
2219
+ '@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
2220
+ '@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
1410
2221
  debug: 4.4.3
1411
2222
  eslint: 9.39.2(jiti@1.21.7)
1412
2223
  ts-api-utils: 2.4.0(typescript@5.9.3)
@@ -1414,14 +2225,14 @@ snapshots:
1414
2225
  transitivePeerDependencies:
1415
2226
  - supports-color
1416
2227
 
1417
- '@typescript-eslint/types@8.52.0': {}
2228
+ '@typescript-eslint/types@8.53.1': {}
1418
2229
 
1419
- '@typescript-eslint/typescript-estree@8.52.0(typescript@5.9.3)':
2230
+ '@typescript-eslint/typescript-estree@8.53.1(typescript@5.9.3)':
1420
2231
  dependencies:
1421
- '@typescript-eslint/project-service': 8.52.0(typescript@5.9.3)
1422
- '@typescript-eslint/tsconfig-utils': 8.52.0(typescript@5.9.3)
1423
- '@typescript-eslint/types': 8.52.0
1424
- '@typescript-eslint/visitor-keys': 8.52.0
2232
+ '@typescript-eslint/project-service': 8.53.1(typescript@5.9.3)
2233
+ '@typescript-eslint/tsconfig-utils': 8.53.1(typescript@5.9.3)
2234
+ '@typescript-eslint/types': 8.53.1
2235
+ '@typescript-eslint/visitor-keys': 8.53.1
1425
2236
  debug: 4.4.3
1426
2237
  minimatch: 9.0.5
1427
2238
  semver: 7.7.3
@@ -1431,28 +2242,35 @@ snapshots:
1431
2242
  transitivePeerDependencies:
1432
2243
  - supports-color
1433
2244
 
1434
- '@typescript-eslint/utils@8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
2245
+ '@typescript-eslint/utils@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
1435
2246
  dependencies:
1436
2247
  '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@1.21.7))
1437
- '@typescript-eslint/scope-manager': 8.52.0
1438
- '@typescript-eslint/types': 8.52.0
1439
- '@typescript-eslint/typescript-estree': 8.52.0(typescript@5.9.3)
2248
+ '@typescript-eslint/scope-manager': 8.53.1
2249
+ '@typescript-eslint/types': 8.53.1
2250
+ '@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
1440
2251
  eslint: 9.39.2(jiti@1.21.7)
1441
2252
  typescript: 5.9.3
1442
2253
  transitivePeerDependencies:
1443
2254
  - supports-color
1444
2255
 
1445
- '@typescript-eslint/visitor-keys@8.52.0':
2256
+ '@typescript-eslint/visitor-keys@8.53.1':
1446
2257
  dependencies:
1447
- '@typescript-eslint/types': 8.52.0
2258
+ '@typescript-eslint/types': 8.53.1
1448
2259
  eslint-visitor-keys: 4.2.1
1449
2260
 
2261
+ accepts@1.3.8:
2262
+ dependencies:
2263
+ mime-types: 2.1.35
2264
+ negotiator: 0.6.3
2265
+
1450
2266
  acorn-jsx@5.3.2(acorn@8.15.0):
1451
2267
  dependencies:
1452
2268
  acorn: 8.15.0
1453
2269
 
1454
2270
  acorn@8.15.0: {}
1455
2271
 
2272
+ acorn@8.16.0: {}
2273
+
1456
2274
  ajv@6.12.6:
1457
2275
  dependencies:
1458
2276
  fast-deep-equal: 3.1.3
@@ -1464,6 +2282,8 @@ snapshots:
1464
2282
  dependencies:
1465
2283
  color-convert: 2.0.1
1466
2284
 
2285
+ ansi-styles@5.2.0: {}
2286
+
1467
2287
  any-promise@1.3.0: {}
1468
2288
 
1469
2289
  anymatch@3.1.3:
@@ -1475,21 +2295,52 @@ snapshots:
1475
2295
 
1476
2296
  argparse@2.0.1: {}
1477
2297
 
2298
+ array-flatten@1.1.1: {}
2299
+
2300
+ asynckit@0.4.0: {}
2301
+
1478
2302
  autoprefixer@10.4.23(postcss@8.5.6):
1479
2303
  dependencies:
1480
2304
  browserslist: 4.28.1
1481
- caniuse-lite: 1.0.30001762
2305
+ caniuse-lite: 1.0.30001765
1482
2306
  fraction.js: 5.3.4
1483
2307
  picocolors: 1.1.1
1484
2308
  postcss: 8.5.6
1485
2309
  postcss-value-parser: 4.2.0
1486
2310
 
2311
+ axios@1.13.2:
2312
+ dependencies:
2313
+ follow-redirects: 1.15.11
2314
+ form-data: 4.0.5
2315
+ proxy-from-env: 1.1.0
2316
+ transitivePeerDependencies:
2317
+ - debug
2318
+
1487
2319
  balanced-match@1.0.2: {}
1488
2320
 
1489
- baseline-browser-mapping@2.9.11: {}
2321
+ base64-js@1.5.1: {}
2322
+
2323
+ baseline-browser-mapping@2.9.16: {}
1490
2324
 
1491
2325
  binary-extensions@2.3.0: {}
1492
2326
 
2327
+ body-parser@1.20.4:
2328
+ dependencies:
2329
+ bytes: 3.1.2
2330
+ content-type: 1.0.5
2331
+ debug: 2.6.9
2332
+ depd: 2.0.0
2333
+ destroy: 1.2.0
2334
+ http-errors: 2.0.1
2335
+ iconv-lite: 0.4.24
2336
+ on-finished: 2.4.1
2337
+ qs: 6.14.2
2338
+ raw-body: 2.5.3
2339
+ type-is: 1.6.18
2340
+ unpipe: 1.0.0
2341
+ transitivePeerDependencies:
2342
+ - supports-color
2343
+
1493
2344
  brace-expansion@1.1.12:
1494
2345
  dependencies:
1495
2346
  balanced-match: 1.0.2
@@ -1505,17 +2356,38 @@ snapshots:
1505
2356
 
1506
2357
  browserslist@4.28.1:
1507
2358
  dependencies:
1508
- baseline-browser-mapping: 2.9.11
1509
- caniuse-lite: 1.0.30001762
2359
+ baseline-browser-mapping: 2.9.16
2360
+ caniuse-lite: 1.0.30001765
1510
2361
  electron-to-chromium: 1.5.267
1511
2362
  node-releases: 2.0.27
1512
2363
  update-browserslist-db: 1.2.3(browserslist@4.28.1)
1513
2364
 
2365
+ bundle-require@5.1.0(esbuild@0.27.2):
2366
+ dependencies:
2367
+ esbuild: 0.27.2
2368
+ load-tsconfig: 0.2.5
2369
+
2370
+ bytes@3.1.2: {}
2371
+
2372
+ cac@6.7.14: {}
2373
+
2374
+ call-bind-apply-helpers@1.0.2:
2375
+ dependencies:
2376
+ es-errors: 1.3.0
2377
+ function-bind: 1.1.2
2378
+
2379
+ call-bound@1.0.4:
2380
+ dependencies:
2381
+ call-bind-apply-helpers: 1.0.2
2382
+ get-intrinsic: 1.3.0
2383
+
1514
2384
  callsites@3.1.0: {}
1515
2385
 
1516
2386
  camelcase-css@2.0.1: {}
1517
2387
 
1518
- caniuse-lite@1.0.30001762: {}
2388
+ camelcase@6.3.0: {}
2389
+
2390
+ caniuse-lite@1.0.30001765: {}
1519
2391
 
1520
2392
  chalk@4.1.2:
1521
2393
  dependencies:
@@ -1534,16 +2406,60 @@ snapshots:
1534
2406
  optionalDependencies:
1535
2407
  fsevents: 2.3.3
1536
2408
 
2409
+ chokidar@4.0.3:
2410
+ dependencies:
2411
+ readdirp: 4.1.2
2412
+
1537
2413
  color-convert@2.0.1:
1538
2414
  dependencies:
1539
2415
  color-name: 1.1.4
1540
2416
 
1541
2417
  color-name@1.1.4: {}
1542
2418
 
2419
+ combined-stream@1.0.8:
2420
+ dependencies:
2421
+ delayed-stream: 1.0.0
2422
+
1543
2423
  commander@4.1.1: {}
1544
2424
 
1545
2425
  concat-map@0.0.1: {}
1546
2426
 
2427
+ confbox@0.1.8: {}
2428
+
2429
+ consola@3.4.2: {}
2430
+
2431
+ console-table-printer@2.15.0:
2432
+ dependencies:
2433
+ simple-wcswidth: 1.1.2
2434
+
2435
+ content-disposition@0.5.4:
2436
+ dependencies:
2437
+ safe-buffer: 5.2.1
2438
+
2439
+ content-type@1.0.5: {}
2440
+
2441
+ cookie-signature@1.0.7: {}
2442
+
2443
+ cookie@0.7.2: {}
2444
+
2445
+ coze-coding-dev-sdk@0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0):
2446
+ dependencies:
2447
+ '@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
2448
+ '@langchain/openai': 1.2.3(@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5)))(ws@8.19.0)
2449
+ '@supabase/supabase-js': 2.95.3
2450
+ axios: 1.13.2
2451
+ pg: 8.17.2
2452
+ transitivePeerDependencies:
2453
+ - '@opentelemetry/api'
2454
+ - '@opentelemetry/exporter-trace-otlp-proto'
2455
+ - '@opentelemetry/sdk-trace-base'
2456
+ - bufferutil
2457
+ - debug
2458
+ - openai
2459
+ - pg-native
2460
+ - utf-8-validate
2461
+ - ws
2462
+
1547
2463
  cross-spawn@7.0.6:
1548
2464
  dependencies:
1549
2465
  path-key: 3.1.1
@@ -1552,18 +2468,57 @@ snapshots:
1552
2468
 
1553
2469
  cssesc@3.0.0: {}
1554
2470
 
2471
+ debug@2.6.9:
2472
+ dependencies:
2473
+ ms: 2.0.0
2474
+
1555
2475
  debug@4.4.3:
1556
2476
  dependencies:
1557
2477
  ms: 2.1.3
1558
2478
 
2479
+ decamelize@1.2.0: {}
2480
+
1559
2481
  deep-is@0.1.4: {}
1560
2482
 
2483
+ delayed-stream@1.0.0: {}
2484
+
2485
+ depd@2.0.0: {}
2486
+
2487
+ destroy@1.2.0: {}
2488
+
1561
2489
  didyoumean@1.2.2: {}
1562
2490
 
1563
2491
  dlv@1.1.3: {}
1564
2492
 
2493
+ dotenv@17.2.4: {}
2494
+
2495
+ dunder-proto@1.0.1:
2496
+ dependencies:
2497
+ call-bind-apply-helpers: 1.0.2
2498
+ es-errors: 1.3.0
2499
+ gopd: 1.2.0
2500
+
2501
+ ee-first@1.1.1: {}
2502
+
1565
2503
  electron-to-chromium@1.5.267: {}
1566
2504
 
2505
+ encodeurl@2.0.0: {}
2506
+
2507
+ es-define-property@1.0.1: {}
2508
+
2509
+ es-errors@1.3.0: {}
2510
+
2511
+ es-object-atoms@1.1.1:
2512
+ dependencies:
2513
+ es-errors: 1.3.0
2514
+
2515
+ es-set-tostringtag@2.1.0:
2516
+ dependencies:
2517
+ es-errors: 1.3.0
2518
+ get-intrinsic: 1.3.0
2519
+ has-tostringtag: 1.0.2
2520
+ hasown: 2.0.2
2521
+
1567
2522
  esbuild@0.27.2:
1568
2523
  optionalDependencies:
1569
2524
  '@esbuild/aix-ppc64': 0.27.2
@@ -1595,6 +2550,8 @@ snapshots:
1595
2550
 
1596
2551
  escalade@3.2.0: {}
1597
2552
 
2553
+ escape-html@1.0.3: {}
2554
+
1598
2555
  escape-string-regexp@4.0.0: {}
1599
2556
 
1600
2557
  eslint-scope@8.4.0:
@@ -1665,6 +2622,46 @@ snapshots:
1665
2622
 
1666
2623
  esutils@2.0.3: {}
1667
2624
 
2625
+ etag@1.8.1: {}
2626
+
2627
+ eventemitter3@4.0.7: {}
2628
+
2629
+ express@4.22.1:
2630
+ dependencies:
2631
+ accepts: 1.3.8
2632
+ array-flatten: 1.1.1
2633
+ body-parser: 1.20.4
2634
+ content-disposition: 0.5.4
2635
+ content-type: 1.0.5
2636
+ cookie: 0.7.2
2637
+ cookie-signature: 1.0.7
2638
+ debug: 2.6.9
2639
+ depd: 2.0.0
2640
+ encodeurl: 2.0.0
2641
+ escape-html: 1.0.3
2642
+ etag: 1.8.1
2643
+ finalhandler: 1.3.2
2644
+ fresh: 0.5.2
2645
+ http-errors: 2.0.1
2646
+ merge-descriptors: 1.0.3
2647
+ methods: 1.1.2
2648
+ on-finished: 2.4.1
2649
+ parseurl: 1.3.3
2650
+ path-to-regexp: 0.1.12
2651
+ proxy-addr: 2.0.7
2652
+ qs: 6.14.2
2653
+ range-parser: 1.2.1
2654
+ safe-buffer: 5.2.1
2655
+ send: 0.19.2
2656
+ serve-static: 1.16.3
2657
+ setprototypeof: 1.2.0
2658
+ statuses: 2.0.2
2659
+ type-is: 1.6.18
2660
+ utils-merge: 1.0.1
2661
+ vary: 1.1.2
2662
+ transitivePeerDependencies:
2663
+ - supports-color
2664
+
1668
2665
  fast-deep-equal@3.1.3: {}
1669
2666
 
1670
2667
  fast-glob@3.3.3:
@@ -1695,11 +2692,29 @@ snapshots:
1695
2692
  dependencies:
1696
2693
  to-regex-range: 5.0.1
1697
2694
 
2695
+ finalhandler@1.3.2:
2696
+ dependencies:
2697
+ debug: 2.6.9
2698
+ encodeurl: 2.0.0
2699
+ escape-html: 1.0.3
2700
+ on-finished: 2.4.1
2701
+ parseurl: 1.3.3
2702
+ statuses: 2.0.2
2703
+ unpipe: 1.0.0
2704
+ transitivePeerDependencies:
2705
+ - supports-color
2706
+
1698
2707
  find-up@5.0.0:
1699
2708
  dependencies:
1700
2709
  locate-path: 6.0.0
1701
2710
  path-exists: 4.0.0
1702
2711
 
2712
+ fix-dts-default-cjs-exports@1.0.1:
2713
+ dependencies:
2714
+ magic-string: 0.30.21
2715
+ mlly: 1.8.1
2716
+ rollup: 4.55.3
2717
+
1703
2718
  flat-cache@4.0.1:
1704
2719
  dependencies:
1705
2720
  flatted: 3.3.3
@@ -1707,13 +2722,49 @@ snapshots:
1707
2722
 
1708
2723
  flatted@3.3.3: {}
1709
2724
 
2725
+ follow-redirects@1.15.11: {}
2726
+
2727
+ form-data@4.0.5:
2728
+ dependencies:
2729
+ asynckit: 0.4.0
2730
+ combined-stream: 1.0.8
2731
+ es-set-tostringtag: 2.1.0
2732
+ hasown: 2.0.2
2733
+ mime-types: 2.1.35
2734
+
2735
+ forwarded@0.2.0: {}
2736
+
1710
2737
  fraction.js@5.3.4: {}
1711
2738
 
2739
+ fresh@0.5.2: {}
2740
+
1712
2741
  fsevents@2.3.3:
1713
2742
  optional: true
1714
2743
 
1715
2744
  function-bind@1.1.2: {}
1716
2745
 
2746
+ get-intrinsic@1.3.0:
2747
+ dependencies:
2748
+ call-bind-apply-helpers: 1.0.2
2749
+ es-define-property: 1.0.1
2750
+ es-errors: 1.3.0
2751
+ es-object-atoms: 1.1.1
2752
+ function-bind: 1.1.2
2753
+ get-proto: 1.0.1
2754
+ gopd: 1.2.0
2755
+ has-symbols: 1.1.0
2756
+ hasown: 2.0.2
2757
+ math-intrinsics: 1.1.0
2758
+
2759
+ get-proto@1.0.1:
2760
+ dependencies:
2761
+ dunder-proto: 1.0.1
2762
+ es-object-atoms: 1.1.1
2763
+
2764
+ get-tsconfig@4.13.6:
2765
+ dependencies:
2766
+ resolve-pkg-maps: 1.0.0
2767
+
1717
2768
  glob-parent@5.1.2:
1718
2769
  dependencies:
1719
2770
  is-glob: 4.0.3
@@ -1724,12 +2775,34 @@ snapshots:
1724
2775
 
1725
2776
  globals@14.0.0: {}
1726
2777
 
2778
+ gopd@1.2.0: {}
2779
+
1727
2780
  has-flag@4.0.0: {}
1728
2781
 
2782
+ has-symbols@1.1.0: {}
2783
+
2784
+ has-tostringtag@1.0.2:
2785
+ dependencies:
2786
+ has-symbols: 1.1.0
2787
+
1729
2788
  hasown@2.0.2:
1730
2789
  dependencies:
1731
2790
  function-bind: 1.1.2
1732
2791
 
2792
+ http-errors@2.0.1:
2793
+ dependencies:
2794
+ depd: 2.0.0
2795
+ inherits: 2.0.4
2796
+ setprototypeof: 1.2.0
2797
+ statuses: 2.0.2
2798
+ toidentifier: 1.0.1
2799
+
2800
+ iceberg-js@0.8.1: {}
2801
+
2802
+ iconv-lite@0.4.24:
2803
+ dependencies:
2804
+ safer-buffer: 2.1.2
2805
+
1733
2806
  ignore@5.3.2: {}
1734
2807
 
1735
2808
  ignore@7.0.5: {}
@@ -1741,6 +2814,10 @@ snapshots:
1741
2814
 
1742
2815
  imurmurhash@0.1.4: {}
1743
2816
 
2817
+ inherits@2.0.4: {}
2818
+
2819
+ ipaddr.js@1.9.1: {}
2820
+
1744
2821
  is-binary-path@2.1.0:
1745
2822
  dependencies:
1746
2823
  binary-extensions: 2.3.0
@@ -1761,6 +2838,12 @@ snapshots:
1761
2838
 
1762
2839
  jiti@1.21.7: {}
1763
2840
 
2841
+ joycon@3.1.1: {}
2842
+
2843
+ js-tiktoken@1.0.21:
2844
+ dependencies:
2845
+ base64-js: 1.5.1
2846
+
1764
2847
  js-yaml@4.1.1:
1765
2848
  dependencies:
1766
2849
  argparse: 2.0.1
@@ -1775,6 +2858,17 @@ snapshots:
1775
2858
  dependencies:
1776
2859
  json-buffer: 3.0.1
1777
2860
 
2861
+ langsmith@0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5)):
2862
+ dependencies:
2863
+ '@types/uuid': 10.0.0
2864
+ chalk: 4.1.2
2865
+ console-table-printer: 2.15.0
2866
+ p-queue: 6.6.2
2867
+ semver: 7.7.3
2868
+ uuid: 10.0.0
2869
+ optionalDependencies:
2870
+ openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
2871
+
1778
2872
  levn@0.4.1:
1779
2873
  dependencies:
1780
2874
  prelude-ls: 1.2.1
@@ -1784,19 +2878,41 @@ snapshots:
1784
2878
 
1785
2879
  lines-and-columns@1.2.4: {}
1786
2880
 
2881
+ load-tsconfig@0.2.5: {}
2882
+
1787
2883
  locate-path@6.0.0:
1788
2884
  dependencies:
1789
2885
  p-locate: 5.0.0
1790
2886
 
1791
2887
  lodash.merge@4.6.2: {}
1792
2888
 
2889
+ magic-string@0.30.21:
2890
+ dependencies:
2891
+ '@jridgewell/sourcemap-codec': 1.5.5
2892
+
2893
+ math-intrinsics@1.1.0: {}
2894
+
2895
+ media-typer@0.3.0: {}
2896
+
2897
+ merge-descriptors@1.0.3: {}
2898
+
1793
2899
  merge2@1.4.1: {}
1794
2900
 
2901
+ methods@1.1.2: {}
2902
+
1795
2903
  micromatch@4.0.8:
1796
2904
  dependencies:
1797
2905
  braces: 3.0.3
1798
2906
  picomatch: 2.3.1
1799
2907
 
2908
+ mime-db@1.52.0: {}
2909
+
2910
+ mime-types@2.1.35:
2911
+ dependencies:
2912
+ mime-db: 1.52.0
2913
+
2914
+ mime@1.6.0: {}
2915
+
1800
2916
  minimatch@3.1.2:
1801
2917
  dependencies:
1802
2918
  brace-expansion: 1.1.12
@@ -1805,8 +2921,19 @@ snapshots:
1805
2921
  dependencies:
1806
2922
  brace-expansion: 2.0.2
1807
2923
 
2924
+ mlly@1.8.1:
2925
+ dependencies:
2926
+ acorn: 8.16.0
2927
+ pathe: 2.0.3
2928
+ pkg-types: 1.3.1
2929
+ ufo: 1.6.3
2930
+
2931
+ ms@2.0.0: {}
2932
+
1808
2933
  ms@2.1.3: {}
1809
2934
 
2935
+ mustache@4.2.0: {}
2936
+
1810
2937
  mz@2.7.0:
1811
2938
  dependencies:
1812
2939
  any-promise: 1.3.0
@@ -1817,6 +2944,8 @@ snapshots:
1817
2944
 
1818
2945
  natural-compare@1.4.0: {}
1819
2946
 
2947
+ negotiator@0.6.3: {}
2948
+
1820
2949
  node-releases@2.0.27: {}
1821
2950
 
1822
2951
  normalize-path@3.0.0: {}
@@ -1825,10 +2954,21 @@ snapshots:
1825
2954
 
1826
2955
  object-hash@3.0.0: {}
1827
2956
 
2957
+ object-inspect@1.13.4: {}
2958
+
2959
+ on-finished@2.4.1:
2960
+ dependencies:
2961
+ ee-first: 1.1.1
2962
+
1828
2963
  only-allow@1.2.2:
1829
2964
  dependencies:
1830
2965
  which-pm-runs: 1.1.0
1831
2966
 
2967
+ openai@6.16.0(ws@8.19.0)(zod@4.3.5):
2968
+ optionalDependencies:
2969
+ ws: 8.19.0
2970
+ zod: 4.3.5
2971
+
1832
2972
  optionator@0.9.4:
1833
2973
  dependencies:
1834
2974
  deep-is: 0.1.4
@@ -1838,6 +2978,8 @@ snapshots:
1838
2978
  type-check: 0.4.0
1839
2979
  word-wrap: 1.2.5
1840
2980
 
2981
+ p-finally@1.0.0: {}
2982
+
1841
2983
  p-limit@3.1.0:
1842
2984
  dependencies:
1843
2985
  yocto-queue: 0.1.0
@@ -1846,16 +2988,66 @@ snapshots:
1846
2988
  dependencies:
1847
2989
  p-limit: 3.1.0
1848
2990
 
2991
+ p-queue@6.6.2:
2992
+ dependencies:
2993
+ eventemitter3: 4.0.7
2994
+ p-timeout: 3.2.0
2995
+
2996
+ p-timeout@3.2.0:
2997
+ dependencies:
2998
+ p-finally: 1.0.0
2999
+
1849
3000
  parent-module@1.0.1:
1850
3001
  dependencies:
1851
3002
  callsites: 3.1.0
1852
3003
 
3004
+ parseurl@1.3.3: {}
3005
+
1853
3006
  path-exists@4.0.0: {}
1854
3007
 
1855
3008
  path-key@3.1.1: {}
1856
3009
 
1857
3010
  path-parse@1.0.7: {}
1858
3011
 
3012
+ path-to-regexp@0.1.12: {}
3013
+
3014
+ pathe@2.0.3: {}
3015
+
3016
+ pg-cloudflare@1.3.0:
3017
+ optional: true
3018
+
3019
+ pg-connection-string@2.10.1: {}
3020
+
3021
+ pg-int8@1.0.1: {}
3022
+
3023
+ pg-pool@3.11.0(pg@8.17.2):
3024
+ dependencies:
3025
+ pg: 8.17.2
3026
+
3027
+ pg-protocol@1.11.0: {}
3028
+
3029
+ pg-types@2.2.0:
3030
+ dependencies:
3031
+ pg-int8: 1.0.1
3032
+ postgres-array: 2.0.0
3033
+ postgres-bytea: 1.0.1
3034
+ postgres-date: 1.0.7
3035
+ postgres-interval: 1.2.0
3036
+
3037
+ pg@8.17.2:
3038
+ dependencies:
3039
+ pg-connection-string: 2.10.1
3040
+ pg-pool: 3.11.0(pg@8.17.2)
3041
+ pg-protocol: 1.11.0
3042
+ pg-types: 2.2.0
3043
+ pgpass: 1.0.5
3044
+ optionalDependencies:
3045
+ pg-cloudflare: 1.3.0
3046
+
3047
+ pgpass@1.0.5:
3048
+ dependencies:
3049
+ split2: 4.2.0
3050
+
1859
3051
  picocolors@1.1.1: {}
1860
3052
 
1861
3053
  picomatch@2.3.1: {}
@@ -1866,6 +3058,12 @@ snapshots:
1866
3058
 
1867
3059
  pirates@4.0.7: {}
1868
3060
 
3061
+ pkg-types@1.3.1:
3062
+ dependencies:
3063
+ confbox: 0.1.8
3064
+ mlly: 1.8.1
3065
+ pathe: 2.0.3
3066
+
1869
3067
  postcss-import@15.1.0(postcss@8.5.6):
1870
3068
  dependencies:
1871
3069
  postcss: 8.5.6
@@ -1878,12 +3076,13 @@ snapshots:
1878
3076
  camelcase-css: 2.0.1
1879
3077
  postcss: 8.5.6
1880
3078
 
1881
- postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6):
3079
+ postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0):
1882
3080
  dependencies:
1883
3081
  lilconfig: 3.1.3
1884
3082
  optionalDependencies:
1885
3083
  jiti: 1.21.7
1886
3084
  postcss: 8.5.6
3085
+ tsx: 4.21.0
1887
3086
 
1888
3087
  postcss-nested@6.2.0(postcss@8.5.6):
1889
3088
  dependencies:
@@ -1903,12 +3102,42 @@ snapshots:
1903
3102
  picocolors: 1.1.1
1904
3103
  source-map-js: 1.2.1
1905
3104
 
3105
+ postgres-array@2.0.0: {}
3106
+
3107
+ postgres-bytea@1.0.1: {}
3108
+
3109
+ postgres-date@1.0.7: {}
3110
+
3111
+ postgres-interval@1.2.0:
3112
+ dependencies:
3113
+ xtend: 4.0.2
3114
+
1906
3115
  prelude-ls@1.2.1: {}
1907
3116
 
3117
+ proxy-addr@2.0.7:
3118
+ dependencies:
3119
+ forwarded: 0.2.0
3120
+ ipaddr.js: 1.9.1
3121
+
3122
+ proxy-from-env@1.1.0: {}
3123
+
1908
3124
  punycode@2.3.1: {}
1909
3125
 
3126
+ qs@6.14.2:
3127
+ dependencies:
3128
+ side-channel: 1.1.0
3129
+
1910
3130
  queue-microtask@1.2.3: {}
1911
3131
 
3132
+ range-parser@1.2.1: {}
3133
+
3134
+ raw-body@2.5.3:
3135
+ dependencies:
3136
+ bytes: 3.1.2
3137
+ http-errors: 2.0.1
3138
+ iconv-lite: 0.4.24
3139
+ unpipe: 1.0.0
3140
+
1912
3141
  read-cache@1.0.0:
1913
3142
  dependencies:
1914
3143
  pify: 2.3.0
@@ -1917,8 +3146,14 @@ snapshots:
1917
3146
  dependencies:
1918
3147
  picomatch: 2.3.1
1919
3148
 
3149
+ readdirp@4.1.2: {}
3150
+
1920
3151
  resolve-from@4.0.0: {}
1921
3152
 
3153
+ resolve-from@5.0.0: {}
3154
+
3155
+ resolve-pkg-maps@1.0.0: {}
3156
+
1922
3157
  resolve@1.22.11:
1923
3158
  dependencies:
1924
3159
  is-core-module: 2.16.1
@@ -1927,48 +3162,120 @@ snapshots:
1927
3162
 
1928
3163
  reusify@1.1.0: {}
1929
3164
 
1930
- rollup@4.54.0:
3165
+ rollup@4.55.3:
1931
3166
  dependencies:
1932
3167
  '@types/estree': 1.0.8
1933
3168
  optionalDependencies:
1934
- '@rollup/rollup-android-arm-eabi': 4.54.0
1935
- '@rollup/rollup-android-arm64': 4.54.0
1936
- '@rollup/rollup-darwin-arm64': 4.54.0
1937
- '@rollup/rollup-darwin-x64': 4.54.0
1938
- '@rollup/rollup-freebsd-arm64': 4.54.0
1939
- '@rollup/rollup-freebsd-x64': 4.54.0
1940
- '@rollup/rollup-linux-arm-gnueabihf': 4.54.0
1941
- '@rollup/rollup-linux-arm-musleabihf': 4.54.0
1942
- '@rollup/rollup-linux-arm64-gnu': 4.54.0
1943
- '@rollup/rollup-linux-arm64-musl': 4.54.0
1944
- '@rollup/rollup-linux-loong64-gnu': 4.54.0
1945
- '@rollup/rollup-linux-ppc64-gnu': 4.54.0
1946
- '@rollup/rollup-linux-riscv64-gnu': 4.54.0
1947
- '@rollup/rollup-linux-riscv64-musl': 4.54.0
1948
- '@rollup/rollup-linux-s390x-gnu': 4.54.0
1949
- '@rollup/rollup-linux-x64-gnu': 4.54.0
1950
- '@rollup/rollup-linux-x64-musl': 4.54.0
1951
- '@rollup/rollup-openharmony-arm64': 4.54.0
1952
- '@rollup/rollup-win32-arm64-msvc': 4.54.0
1953
- '@rollup/rollup-win32-ia32-msvc': 4.54.0
1954
- '@rollup/rollup-win32-x64-gnu': 4.54.0
1955
- '@rollup/rollup-win32-x64-msvc': 4.54.0
3169
+ '@rollup/rollup-android-arm-eabi': 4.55.3
3170
+ '@rollup/rollup-android-arm64': 4.55.3
3171
+ '@rollup/rollup-darwin-arm64': 4.55.3
3172
+ '@rollup/rollup-darwin-x64': 4.55.3
3173
+ '@rollup/rollup-freebsd-arm64': 4.55.3
3174
+ '@rollup/rollup-freebsd-x64': 4.55.3
3175
+ '@rollup/rollup-linux-arm-gnueabihf': 4.55.3
3176
+ '@rollup/rollup-linux-arm-musleabihf': 4.55.3
3177
+ '@rollup/rollup-linux-arm64-gnu': 4.55.3
3178
+ '@rollup/rollup-linux-arm64-musl': 4.55.3
3179
+ '@rollup/rollup-linux-loong64-gnu': 4.55.3
3180
+ '@rollup/rollup-linux-loong64-musl': 4.55.3
3181
+ '@rollup/rollup-linux-ppc64-gnu': 4.55.3
3182
+ '@rollup/rollup-linux-ppc64-musl': 4.55.3
3183
+ '@rollup/rollup-linux-riscv64-gnu': 4.55.3
3184
+ '@rollup/rollup-linux-riscv64-musl': 4.55.3
3185
+ '@rollup/rollup-linux-s390x-gnu': 4.55.3
3186
+ '@rollup/rollup-linux-x64-gnu': 4.55.3
3187
+ '@rollup/rollup-linux-x64-musl': 4.55.3
3188
+ '@rollup/rollup-openbsd-x64': 4.55.3
3189
+ '@rollup/rollup-openharmony-arm64': 4.55.3
3190
+ '@rollup/rollup-win32-arm64-msvc': 4.55.3
3191
+ '@rollup/rollup-win32-ia32-msvc': 4.55.3
3192
+ '@rollup/rollup-win32-x64-gnu': 4.55.3
3193
+ '@rollup/rollup-win32-x64-msvc': 4.55.3
1956
3194
  fsevents: 2.3.3
1957
3195
 
1958
3196
  run-parallel@1.2.0:
1959
3197
  dependencies:
1960
3198
  queue-microtask: 1.2.3
1961
3199
 
3200
+ safe-buffer@5.2.1: {}
3201
+
3202
+ safer-buffer@2.1.2: {}
3203
+
1962
3204
  semver@7.7.3: {}
1963
3205
 
3206
+ send@0.19.2:
3207
+ dependencies:
3208
+ debug: 2.6.9
3209
+ depd: 2.0.0
3210
+ destroy: 1.2.0
3211
+ encodeurl: 2.0.0
3212
+ escape-html: 1.0.3
3213
+ etag: 1.8.1
3214
+ fresh: 0.5.2
3215
+ http-errors: 2.0.1
3216
+ mime: 1.6.0
3217
+ ms: 2.1.3
3218
+ on-finished: 2.4.1
3219
+ range-parser: 1.2.1
3220
+ statuses: 2.0.2
3221
+ transitivePeerDependencies:
3222
+ - supports-color
3223
+
3224
+ serve-static@1.16.3:
3225
+ dependencies:
3226
+ encodeurl: 2.0.0
3227
+ escape-html: 1.0.3
3228
+ parseurl: 1.3.3
3229
+ send: 0.19.2
3230
+ transitivePeerDependencies:
3231
+ - supports-color
3232
+
3233
+ setprototypeof@1.2.0: {}
3234
+
1964
3235
  shebang-command@2.0.0:
1965
3236
  dependencies:
1966
3237
  shebang-regex: 3.0.0
1967
3238
 
1968
3239
  shebang-regex@3.0.0: {}
1969
3240
 
3241
+ side-channel-list@1.0.0:
3242
+ dependencies:
3243
+ es-errors: 1.3.0
3244
+ object-inspect: 1.13.4
3245
+
3246
+ side-channel-map@1.0.1:
3247
+ dependencies:
3248
+ call-bound: 1.0.4
3249
+ es-errors: 1.3.0
3250
+ get-intrinsic: 1.3.0
3251
+ object-inspect: 1.13.4
3252
+
3253
+ side-channel-weakmap@1.0.2:
3254
+ dependencies:
3255
+ call-bound: 1.0.4
3256
+ es-errors: 1.3.0
3257
+ get-intrinsic: 1.3.0
3258
+ object-inspect: 1.13.4
3259
+ side-channel-map: 1.0.1
3260
+
3261
+ side-channel@1.1.0:
3262
+ dependencies:
3263
+ es-errors: 1.3.0
3264
+ object-inspect: 1.13.4
3265
+ side-channel-list: 1.0.0
3266
+ side-channel-map: 1.0.1
3267
+ side-channel-weakmap: 1.0.2
3268
+
3269
+ simple-wcswidth@1.1.2: {}
3270
+
1970
3271
  source-map-js@1.2.1: {}
1971
3272
 
3273
+ source-map@0.7.6: {}
3274
+
3275
+ split2@4.2.0: {}
3276
+
3277
+ statuses@2.0.2: {}
3278
+
1972
3279
  strip-json-comments@3.1.1: {}
1973
3280
 
1974
3281
  sucrase@3.35.1:
@@ -1987,7 +3294,7 @@ snapshots:
1987
3294
 
1988
3295
  supports-preserve-symlinks-flag@1.0.0: {}
1989
3296
 
1990
- tailwindcss@3.4.19:
3297
+ tailwindcss@3.4.19(tsx@4.21.0):
1991
3298
  dependencies:
1992
3299
  '@alloc/quick-lru': 5.2.0
1993
3300
  arg: 5.0.2
@@ -2006,7 +3313,7 @@ snapshots:
2006
3313
  postcss: 8.5.6
2007
3314
  postcss-import: 15.1.0(postcss@8.5.6)
2008
3315
  postcss-js: 4.1.0(postcss@8.5.6)
2009
- postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)
3316
+ postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)
2010
3317
  postcss-nested: 6.2.0(postcss@8.5.6)
2011
3318
  postcss-selector-parser: 6.1.2
2012
3319
  resolve: 1.22.11
@@ -2023,6 +3330,8 @@ snapshots:
2023
3330
  dependencies:
2024
3331
  any-promise: 1.3.0
2025
3332
 
3333
+ tinyexec@0.3.2: {}
3334
+
2026
3335
  tinyglobby@0.2.15:
2027
3336
  dependencies:
2028
3337
  fdir: 6.5.0(picomatch@4.0.3)
@@ -2032,22 +3341,68 @@ snapshots:
2032
3341
  dependencies:
2033
3342
  is-number: 7.0.0
2034
3343
 
3344
+ toidentifier@1.0.1: {}
3345
+
3346
+ tree-kill@1.2.2: {}
3347
+
2035
3348
  ts-api-utils@2.4.0(typescript@5.9.3):
2036
3349
  dependencies:
2037
3350
  typescript: 5.9.3
2038
3351
 
2039
3352
  ts-interface-checker@0.1.13: {}
2040
3353
 
3354
+ tslib@2.8.1: {}
3355
+
3356
+ tsup@8.5.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3):
3357
+ dependencies:
3358
+ bundle-require: 5.1.0(esbuild@0.27.2)
3359
+ cac: 6.7.14
3360
+ chokidar: 4.0.3
3361
+ consola: 3.4.2
3362
+ debug: 4.4.3
3363
+ esbuild: 0.27.2
3364
+ fix-dts-default-cjs-exports: 1.0.1
3365
+ joycon: 3.1.1
3366
+ picocolors: 1.1.1
3367
+ postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)
3368
+ resolve-from: 5.0.0
3369
+ rollup: 4.55.3
3370
+ source-map: 0.7.6
3371
+ sucrase: 3.35.1
3372
+ tinyexec: 0.3.2
3373
+ tinyglobby: 0.2.15
3374
+ tree-kill: 1.2.2
3375
+ optionalDependencies:
3376
+ postcss: 8.5.6
3377
+ typescript: 5.9.3
3378
+ transitivePeerDependencies:
3379
+ - jiti
3380
+ - supports-color
3381
+ - tsx
3382
+ - yaml
3383
+
3384
+ tsx@4.21.0:
3385
+ dependencies:
3386
+ esbuild: 0.27.2
3387
+ get-tsconfig: 4.13.6
3388
+ optionalDependencies:
3389
+ fsevents: 2.3.3
3390
+
2041
3391
  type-check@0.4.0:
2042
3392
  dependencies:
2043
3393
  prelude-ls: 1.2.1
2044
3394
 
2045
- typescript-eslint@8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3):
3395
+ type-is@1.6.18:
3396
+ dependencies:
3397
+ media-typer: 0.3.0
3398
+ mime-types: 2.1.35
3399
+
3400
+ typescript-eslint@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3):
2046
3401
  dependencies:
2047
- '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
2048
- '@typescript-eslint/parser': 8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
2049
- '@typescript-eslint/typescript-estree': 8.52.0(typescript@5.9.3)
2050
- '@typescript-eslint/utils': 8.52.0(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
3402
+ '@typescript-eslint/eslint-plugin': 8.53.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
3403
+ '@typescript-eslint/parser': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
3404
+ '@typescript-eslint/typescript-estree': 8.53.1(typescript@5.9.3)
3405
+ '@typescript-eslint/utils': 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
2051
3406
  eslint: 9.39.2(jiti@1.21.7)
2052
3407
  typescript: 5.9.3
2053
3408
  transitivePeerDependencies:
@@ -2055,6 +3410,12 @@ snapshots:
2055
3410
 
2056
3411
  typescript@5.9.3: {}
2057
3412
 
3413
+ ufo@1.6.3: {}
3414
+
3415
+ undici-types@6.21.0: {}
3416
+
3417
+ unpipe@1.0.0: {}
3418
+
2058
3419
  update-browserslist-db@1.2.3(browserslist@4.28.1):
2059
3420
  dependencies:
2060
3421
  browserslist: 4.28.1
@@ -2067,17 +3428,25 @@ snapshots:
2067
3428
 
2068
3429
  util-deprecate@1.0.2: {}
2069
3430
 
2070
- vite@7.3.0(jiti@1.21.7):
3431
+ utils-merge@1.0.1: {}
3432
+
3433
+ uuid@10.0.0: {}
3434
+
3435
+ vary@1.1.2: {}
3436
+
3437
+ vite@7.3.1(@types/node@22.19.15)(jiti@1.21.7)(tsx@4.21.0):
2071
3438
  dependencies:
2072
3439
  esbuild: 0.27.2
2073
3440
  fdir: 6.5.0(picomatch@4.0.3)
2074
3441
  picomatch: 4.0.3
2075
3442
  postcss: 8.5.6
2076
- rollup: 4.54.0
3443
+ rollup: 4.55.3
2077
3444
  tinyglobby: 0.2.15
2078
3445
  optionalDependencies:
3446
+ '@types/node': 22.19.15
2079
3447
  fsevents: 2.3.3
2080
3448
  jiti: 1.21.7
3449
+ tsx: 4.21.0
2081
3450
 
2082
3451
  which-pm-runs@1.1.0: {}
2083
3452
 
@@ -2087,4 +3456,10 @@ snapshots:
2087
3456
 
2088
3457
  word-wrap@1.2.5: {}
2089
3458
 
3459
+ ws@8.19.0: {}
3460
+
3461
+ xtend@4.0.2: {}
3462
+
2090
3463
  yocto-queue@0.1.0: {}
3464
+
3465
+ zod@4.3.5: {}