@coze-arch/cli 0.0.1-alpha.e8e1d7 → 0.0.1-alpha.eaa612

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 (124) hide show
  1. package/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +13 -12
  2. package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +9 -8
  3. package/lib/__templates__/expo/client/components/Screen.tsx +2 -2
  4. package/lib/__templates__/expo/client/eslint.config.mjs +8 -1
  5. package/lib/__templates__/expo/client/metro.config.js +3 -0
  6. package/lib/__templates__/expo/client/package.json +35 -35
  7. package/lib/__templates__/expo/client/screens/demo/index.tsx +3 -3
  8. package/lib/__templates__/expo/client/scripts/install-missing-deps.js +10 -10
  9. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
  10. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
  11. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
  12. package/lib/__templates__/expo/eslint-plugins/react-native/index.js +9 -0
  13. package/lib/__templates__/expo/eslint-plugins/react-native/rule.js +64 -0
  14. package/lib/__templates__/expo/package.json +1 -1
  15. package/lib/__templates__/expo/patches/{expo@54.0.32.patch → expo@54.0.33.patch} +3 -2
  16. package/lib/__templates__/expo/pnpm-lock.yaml +340 -1736
  17. package/lib/__templates__/expo/server/package.json +9 -7
  18. package/lib/__templates__/expo/server/src/index.ts +1 -0
  19. package/lib/__templates__/expo/template.config.js +56 -0
  20. package/lib/__templates__/native-static/.coze +11 -0
  21. package/lib/__templates__/native-static/index.html +33 -0
  22. package/lib/__templates__/native-static/styles/main.css +136 -0
  23. package/lib/__templates__/native-static/template.config.js +22 -0
  24. package/lib/__templates__/nextjs/README.md +5 -0
  25. package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
  26. package/lib/__templates__/nextjs/next.config.ts +1 -2
  27. package/lib/__templates__/nextjs/package.json +14 -6
  28. package/lib/__templates__/nextjs/pnpm-lock.yaml +1216 -132
  29. package/lib/__templates__/nextjs/scripts/build.sh +4 -1
  30. package/lib/__templates__/nextjs/scripts/dev.sh +3 -4
  31. package/lib/__templates__/nextjs/scripts/start.sh +3 -3
  32. package/lib/__templates__/nextjs/src/app/layout.tsx +1 -1
  33. package/lib/__templates__/nextjs/src/app/page.tsx +18 -60
  34. package/lib/__templates__/nextjs/src/server.ts +35 -0
  35. package/lib/__templates__/nextjs/template.config.js +49 -14
  36. package/lib/__templates__/nextjs/tsconfig.json +1 -1
  37. package/lib/__templates__/nuxt-app/.coze +12 -0
  38. package/lib/__templates__/nuxt-app/README.md +73 -0
  39. package/lib/__templates__/nuxt-app/_gitignore +24 -0
  40. package/lib/__templates__/nuxt-app/_npmrc +23 -0
  41. package/lib/__templates__/nuxt-app/app/app.vue +6 -0
  42. package/lib/__templates__/nuxt-app/app/pages/index.vue +23 -0
  43. package/lib/__templates__/nuxt-app/assets/css/main.css +24 -0
  44. package/lib/__templates__/nuxt-app/nuxt.config.ts +116 -0
  45. package/lib/__templates__/nuxt-app/package.json +35 -0
  46. package/lib/__templates__/nuxt-app/pnpm-lock.yaml +8759 -0
  47. package/lib/__templates__/nuxt-app/postcss.config.mjs +8 -0
  48. package/lib/__templates__/nuxt-app/public/favicon.ico +0 -0
  49. package/lib/__templates__/nuxt-app/public/robots.txt +2 -0
  50. package/lib/__templates__/nuxt-app/scripts/build.sh +14 -0
  51. package/lib/__templates__/nuxt-app/scripts/dev.sh +32 -0
  52. package/lib/__templates__/nuxt-app/scripts/prepare.sh +14 -0
  53. package/lib/__templates__/nuxt-app/scripts/start.sh +15 -0
  54. package/lib/__templates__/nuxt-app/server/api/hello.ts +10 -0
  55. package/lib/__templates__/nuxt-app/server/middleware/logger.ts +10 -0
  56. package/lib/__templates__/nuxt-app/server/routes/health.ts +10 -0
  57. package/lib/__templates__/nuxt-app/tailwind.config.js +13 -0
  58. package/lib/__templates__/nuxt-app/template.config.js +87 -0
  59. package/lib/__templates__/nuxt-app/tsconfig.json +18 -0
  60. package/lib/__templates__/taro/.coze +14 -0
  61. package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.sh +19 -0
  62. package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.sh +14 -0
  63. package/lib/__templates__/taro/.cozeproj/scripts/dev_build.sh +2 -0
  64. package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +151 -0
  65. package/lib/__templates__/taro/.cozeproj/scripts/init_env.sh +5 -0
  66. package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +24 -0
  67. package/lib/__templates__/taro/README.md +751 -0
  68. package/lib/__templates__/taro/_gitignore +40 -0
  69. package/lib/__templates__/taro/_npmrc +18 -0
  70. package/lib/__templates__/taro/babel.config.js +12 -0
  71. package/lib/__templates__/taro/config/dev.ts +9 -0
  72. package/lib/__templates__/taro/config/index.ts +223 -0
  73. package/lib/__templates__/taro/config/prod.ts +34 -0
  74. package/lib/__templates__/taro/eslint.config.mjs +80 -0
  75. package/lib/__templates__/taro/key/private.appid.key +0 -0
  76. package/lib/__templates__/taro/package.json +107 -0
  77. package/lib/__templates__/taro/patches/@tarojs__plugin-mini-ci@4.1.9.patch +30 -0
  78. package/lib/__templates__/taro/pnpm-lock.yaml +23100 -0
  79. package/lib/__templates__/taro/pnpm-workspace.yaml +2 -0
  80. package/lib/__templates__/taro/project.config.json +15 -0
  81. package/lib/__templates__/taro/server/nest-cli.json +10 -0
  82. package/lib/__templates__/taro/server/package.json +40 -0
  83. package/lib/__templates__/taro/server/src/app.controller.ts +23 -0
  84. package/lib/__templates__/taro/server/src/app.module.ts +10 -0
  85. package/lib/__templates__/taro/server/src/app.service.ts +8 -0
  86. package/lib/__templates__/taro/server/src/interceptors/http-status.interceptor.ts +23 -0
  87. package/lib/__templates__/taro/server/src/main.ts +49 -0
  88. package/lib/__templates__/taro/server/tsconfig.json +24 -0
  89. package/lib/__templates__/taro/src/app.config.ts +11 -0
  90. package/lib/__templates__/taro/src/app.css +52 -0
  91. package/lib/__templates__/taro/src/app.tsx +9 -0
  92. package/lib/__templates__/taro/src/index.html +39 -0
  93. package/lib/__templates__/taro/src/network.ts +39 -0
  94. package/lib/__templates__/taro/src/pages/index/index.config.ts +3 -0
  95. package/lib/__templates__/taro/src/pages/index/index.css +1 -0
  96. package/lib/__templates__/taro/src/pages/index/index.tsx +33 -0
  97. package/lib/__templates__/taro/src/presets/dev-debug.ts +23 -0
  98. package/lib/__templates__/taro/src/presets/h5-container.tsx +15 -0
  99. package/lib/__templates__/taro/src/presets/h5-navbar.tsx +201 -0
  100. package/lib/__templates__/taro/src/presets/h5-styles.ts +142 -0
  101. package/lib/__templates__/taro/src/presets/index.tsx +18 -0
  102. package/lib/__templates__/taro/stylelint.config.mjs +4 -0
  103. package/lib/__templates__/taro/template.config.js +68 -0
  104. package/lib/__templates__/taro/tsconfig.json +29 -0
  105. package/lib/__templates__/taro/types/global.d.ts +32 -0
  106. package/lib/__templates__/templates.json +75 -0
  107. package/lib/__templates__/vite/README.md +189 -11
  108. package/lib/__templates__/vite/_gitignore +1 -0
  109. package/lib/__templates__/vite/eslint.config.mjs +6 -1
  110. package/lib/__templates__/vite/package.json +19 -3
  111. package/lib/__templates__/vite/pnpm-lock.yaml +793 -1571
  112. package/lib/__templates__/vite/scripts/build-server.js +70 -0
  113. package/lib/__templates__/vite/scripts/build.sh +4 -1
  114. package/lib/__templates__/vite/scripts/dev.sh +4 -4
  115. package/lib/__templates__/vite/scripts/start.sh +5 -5
  116. package/lib/__templates__/vite/server/index.ts +57 -0
  117. package/lib/__templates__/vite/server/routes/index.ts +31 -0
  118. package/lib/__templates__/vite/server/vite.ts +79 -0
  119. package/lib/__templates__/vite/src/main.ts +17 -47
  120. package/lib/__templates__/vite/template.config.js +49 -14
  121. package/lib/__templates__/vite/tsconfig.json +4 -3
  122. package/lib/__templates__/vite/vite.config.ts +1 -0
  123. package/lib/cli.js +160 -159
  124. package/package.json +5 -1
@@ -4,13 +4,16 @@ settings:
4
4
  autoInstallPeers: true
5
5
  excludeLinksFromLockfile: false
6
6
 
7
- overrides:
8
- esbuild: ^0.25.12
9
-
10
7
  importers:
11
8
 
12
9
  .:
13
10
  dependencies:
11
+ '@aws-sdk/client-s3':
12
+ specifier: ^3.958.0
13
+ version: 3.975.0
14
+ '@aws-sdk/lib-storage':
15
+ specifier: ^3.958.0
16
+ version: 3.975.0(@aws-sdk/client-s3@3.975.0)
14
17
  '@hookform/resolvers':
15
18
  specifier: ^5.2.2
16
19
  version: 5.2.2(react-hook-form@7.71.1(react@19.2.3))
@@ -92,6 +95,9 @@ importers:
92
95
  '@radix-ui/react-tooltip':
93
96
  specifier: ^1.2.8
94
97
  version: 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
98
+ '@supabase/supabase-js':
99
+ specifier: 2.95.3
100
+ version: 2.95.3
95
101
  class-variance-authority:
96
102
  specifier: ^0.7.1
97
103
  version: 0.7.1
@@ -102,8 +108,23 @@ importers:
102
108
  specifier: ^1.1.1
103
109
  version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
104
110
  coze-coding-dev-sdk:
105
- specifier: ^0.7.4
106
- version: 0.7.4(openai@6.16.0(zod@4.3.6))
111
+ specifier: ^0.7.16
112
+ version: 0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.6))(ws@8.19.0)
113
+ date-fns:
114
+ specifier: ^4.1.0
115
+ version: 4.1.0
116
+ dotenv:
117
+ specifier: ^17.2.3
118
+ version: 17.2.3
119
+ drizzle-kit:
120
+ specifier: ^0.31.8
121
+ version: 0.31.8
122
+ drizzle-orm:
123
+ specifier: ^0.45.1
124
+ version: 0.45.1(@types/pg@8.16.0)(pg@8.17.2)
125
+ drizzle-zod:
126
+ specifier: ^0.8.3
127
+ version: 0.8.3(drizzle-orm@0.45.1(@types/pg@8.16.0)(pg@8.17.2))(zod@4.3.6)
107
128
  embla-carousel-react:
108
129
  specifier: ^8.6.0
109
130
  version: 8.6.0(react@19.2.3)
@@ -119,6 +140,9 @@ importers:
119
140
  next-themes:
120
141
  specifier: ^0.4.6
121
142
  version: 0.4.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
143
+ pg:
144
+ specifier: ^8.16.3
145
+ version: 8.17.2
122
146
  react:
123
147
  specifier: 19.2.3
124
148
  version: 19.2.3
@@ -156,12 +180,18 @@ importers:
156
180
  '@react-dev-inspector/babel-plugin':
157
181
  specifier: ^2.0.1
158
182
  version: 2.0.1
183
+ '@react-dev-inspector/middleware':
184
+ specifier: ^2.0.1
185
+ version: 2.0.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)(webpack@5.104.1(esbuild@0.25.12))
159
186
  '@tailwindcss/postcss':
160
187
  specifier: ^4
161
188
  version: 4.1.18
162
189
  '@types/node':
163
190
  specifier: ^20
164
191
  version: 20.19.30
192
+ '@types/pg':
193
+ specifier: ^8.16.0
194
+ version: 8.16.0
165
195
  '@types/react':
166
196
  specifier: ^19
167
197
  version: 19.2.10
@@ -186,6 +216,12 @@ importers:
186
216
  tailwindcss:
187
217
  specifier: ^4
188
218
  version: 4.1.18
219
+ tsup:
220
+ specifier: ^8.3.5
221
+ version: 8.5.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@1.10.2)
222
+ tsx:
223
+ specifier: ^4.19.2
224
+ version: 4.21.0
189
225
  typescript:
190
226
  specifier: ^5
191
227
  version: 5.9.3
@@ -568,156 +604,444 @@ packages:
568
604
  cpu: [ppc64]
569
605
  os: [aix]
570
606
 
607
+ '@esbuild/aix-ppc64@0.27.3':
608
+ resolution: {integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==}
609
+ engines: {node: '>=18'}
610
+ cpu: [ppc64]
611
+ os: [aix]
612
+
613
+ '@esbuild/android-arm64@0.18.20':
614
+ resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
615
+ engines: {node: '>=12'}
616
+ cpu: [arm64]
617
+ os: [android]
618
+
571
619
  '@esbuild/android-arm64@0.25.12':
572
620
  resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
573
621
  engines: {node: '>=18'}
574
622
  cpu: [arm64]
575
623
  os: [android]
576
624
 
625
+ '@esbuild/android-arm64@0.27.3':
626
+ resolution: {integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==}
627
+ engines: {node: '>=18'}
628
+ cpu: [arm64]
629
+ os: [android]
630
+
631
+ '@esbuild/android-arm@0.18.20':
632
+ resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
633
+ engines: {node: '>=12'}
634
+ cpu: [arm]
635
+ os: [android]
636
+
577
637
  '@esbuild/android-arm@0.25.12':
578
638
  resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
579
639
  engines: {node: '>=18'}
580
640
  cpu: [arm]
581
641
  os: [android]
582
642
 
643
+ '@esbuild/android-arm@0.27.3':
644
+ resolution: {integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==}
645
+ engines: {node: '>=18'}
646
+ cpu: [arm]
647
+ os: [android]
648
+
649
+ '@esbuild/android-x64@0.18.20':
650
+ resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
651
+ engines: {node: '>=12'}
652
+ cpu: [x64]
653
+ os: [android]
654
+
583
655
  '@esbuild/android-x64@0.25.12':
584
656
  resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
585
657
  engines: {node: '>=18'}
586
658
  cpu: [x64]
587
659
  os: [android]
588
660
 
661
+ '@esbuild/android-x64@0.27.3':
662
+ resolution: {integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==}
663
+ engines: {node: '>=18'}
664
+ cpu: [x64]
665
+ os: [android]
666
+
667
+ '@esbuild/darwin-arm64@0.18.20':
668
+ resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
669
+ engines: {node: '>=12'}
670
+ cpu: [arm64]
671
+ os: [darwin]
672
+
589
673
  '@esbuild/darwin-arm64@0.25.12':
590
674
  resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
591
675
  engines: {node: '>=18'}
592
676
  cpu: [arm64]
593
677
  os: [darwin]
594
678
 
679
+ '@esbuild/darwin-arm64@0.27.3':
680
+ resolution: {integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==}
681
+ engines: {node: '>=18'}
682
+ cpu: [arm64]
683
+ os: [darwin]
684
+
685
+ '@esbuild/darwin-x64@0.18.20':
686
+ resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
687
+ engines: {node: '>=12'}
688
+ cpu: [x64]
689
+ os: [darwin]
690
+
595
691
  '@esbuild/darwin-x64@0.25.12':
596
692
  resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
597
693
  engines: {node: '>=18'}
598
694
  cpu: [x64]
599
695
  os: [darwin]
600
696
 
697
+ '@esbuild/darwin-x64@0.27.3':
698
+ resolution: {integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==}
699
+ engines: {node: '>=18'}
700
+ cpu: [x64]
701
+ os: [darwin]
702
+
703
+ '@esbuild/freebsd-arm64@0.18.20':
704
+ resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
705
+ engines: {node: '>=12'}
706
+ cpu: [arm64]
707
+ os: [freebsd]
708
+
601
709
  '@esbuild/freebsd-arm64@0.25.12':
602
710
  resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
603
711
  engines: {node: '>=18'}
604
712
  cpu: [arm64]
605
713
  os: [freebsd]
606
714
 
715
+ '@esbuild/freebsd-arm64@0.27.3':
716
+ resolution: {integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==}
717
+ engines: {node: '>=18'}
718
+ cpu: [arm64]
719
+ os: [freebsd]
720
+
721
+ '@esbuild/freebsd-x64@0.18.20':
722
+ resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
723
+ engines: {node: '>=12'}
724
+ cpu: [x64]
725
+ os: [freebsd]
726
+
607
727
  '@esbuild/freebsd-x64@0.25.12':
608
728
  resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
609
729
  engines: {node: '>=18'}
610
730
  cpu: [x64]
611
731
  os: [freebsd]
612
732
 
733
+ '@esbuild/freebsd-x64@0.27.3':
734
+ resolution: {integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==}
735
+ engines: {node: '>=18'}
736
+ cpu: [x64]
737
+ os: [freebsd]
738
+
739
+ '@esbuild/linux-arm64@0.18.20':
740
+ resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
741
+ engines: {node: '>=12'}
742
+ cpu: [arm64]
743
+ os: [linux]
744
+
613
745
  '@esbuild/linux-arm64@0.25.12':
614
746
  resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
615
747
  engines: {node: '>=18'}
616
748
  cpu: [arm64]
617
749
  os: [linux]
618
750
 
751
+ '@esbuild/linux-arm64@0.27.3':
752
+ resolution: {integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==}
753
+ engines: {node: '>=18'}
754
+ cpu: [arm64]
755
+ os: [linux]
756
+
757
+ '@esbuild/linux-arm@0.18.20':
758
+ resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
759
+ engines: {node: '>=12'}
760
+ cpu: [arm]
761
+ os: [linux]
762
+
619
763
  '@esbuild/linux-arm@0.25.12':
620
764
  resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
621
765
  engines: {node: '>=18'}
622
766
  cpu: [arm]
623
767
  os: [linux]
624
768
 
769
+ '@esbuild/linux-arm@0.27.3':
770
+ resolution: {integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==}
771
+ engines: {node: '>=18'}
772
+ cpu: [arm]
773
+ os: [linux]
774
+
775
+ '@esbuild/linux-ia32@0.18.20':
776
+ resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
777
+ engines: {node: '>=12'}
778
+ cpu: [ia32]
779
+ os: [linux]
780
+
625
781
  '@esbuild/linux-ia32@0.25.12':
626
782
  resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
627
783
  engines: {node: '>=18'}
628
784
  cpu: [ia32]
629
785
  os: [linux]
630
786
 
787
+ '@esbuild/linux-ia32@0.27.3':
788
+ resolution: {integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==}
789
+ engines: {node: '>=18'}
790
+ cpu: [ia32]
791
+ os: [linux]
792
+
793
+ '@esbuild/linux-loong64@0.18.20':
794
+ resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
795
+ engines: {node: '>=12'}
796
+ cpu: [loong64]
797
+ os: [linux]
798
+
631
799
  '@esbuild/linux-loong64@0.25.12':
632
800
  resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
633
801
  engines: {node: '>=18'}
634
802
  cpu: [loong64]
635
803
  os: [linux]
636
804
 
805
+ '@esbuild/linux-loong64@0.27.3':
806
+ resolution: {integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==}
807
+ engines: {node: '>=18'}
808
+ cpu: [loong64]
809
+ os: [linux]
810
+
811
+ '@esbuild/linux-mips64el@0.18.20':
812
+ resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
813
+ engines: {node: '>=12'}
814
+ cpu: [mips64el]
815
+ os: [linux]
816
+
637
817
  '@esbuild/linux-mips64el@0.25.12':
638
818
  resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
639
819
  engines: {node: '>=18'}
640
820
  cpu: [mips64el]
641
821
  os: [linux]
642
822
 
823
+ '@esbuild/linux-mips64el@0.27.3':
824
+ resolution: {integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==}
825
+ engines: {node: '>=18'}
826
+ cpu: [mips64el]
827
+ os: [linux]
828
+
829
+ '@esbuild/linux-ppc64@0.18.20':
830
+ resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
831
+ engines: {node: '>=12'}
832
+ cpu: [ppc64]
833
+ os: [linux]
834
+
643
835
  '@esbuild/linux-ppc64@0.25.12':
644
836
  resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
645
837
  engines: {node: '>=18'}
646
838
  cpu: [ppc64]
647
839
  os: [linux]
648
840
 
841
+ '@esbuild/linux-ppc64@0.27.3':
842
+ resolution: {integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==}
843
+ engines: {node: '>=18'}
844
+ cpu: [ppc64]
845
+ os: [linux]
846
+
847
+ '@esbuild/linux-riscv64@0.18.20':
848
+ resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
849
+ engines: {node: '>=12'}
850
+ cpu: [riscv64]
851
+ os: [linux]
852
+
649
853
  '@esbuild/linux-riscv64@0.25.12':
650
854
  resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
651
855
  engines: {node: '>=18'}
652
856
  cpu: [riscv64]
653
857
  os: [linux]
654
858
 
859
+ '@esbuild/linux-riscv64@0.27.3':
860
+ resolution: {integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==}
861
+ engines: {node: '>=18'}
862
+ cpu: [riscv64]
863
+ os: [linux]
864
+
865
+ '@esbuild/linux-s390x@0.18.20':
866
+ resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
867
+ engines: {node: '>=12'}
868
+ cpu: [s390x]
869
+ os: [linux]
870
+
655
871
  '@esbuild/linux-s390x@0.25.12':
656
872
  resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
657
873
  engines: {node: '>=18'}
658
874
  cpu: [s390x]
659
875
  os: [linux]
660
876
 
877
+ '@esbuild/linux-s390x@0.27.3':
878
+ resolution: {integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==}
879
+ engines: {node: '>=18'}
880
+ cpu: [s390x]
881
+ os: [linux]
882
+
883
+ '@esbuild/linux-x64@0.18.20':
884
+ resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
885
+ engines: {node: '>=12'}
886
+ cpu: [x64]
887
+ os: [linux]
888
+
661
889
  '@esbuild/linux-x64@0.25.12':
662
890
  resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
663
891
  engines: {node: '>=18'}
664
892
  cpu: [x64]
665
893
  os: [linux]
666
894
 
895
+ '@esbuild/linux-x64@0.27.3':
896
+ resolution: {integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==}
897
+ engines: {node: '>=18'}
898
+ cpu: [x64]
899
+ os: [linux]
900
+
667
901
  '@esbuild/netbsd-arm64@0.25.12':
668
902
  resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
669
903
  engines: {node: '>=18'}
670
904
  cpu: [arm64]
671
905
  os: [netbsd]
672
906
 
907
+ '@esbuild/netbsd-arm64@0.27.3':
908
+ resolution: {integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==}
909
+ engines: {node: '>=18'}
910
+ cpu: [arm64]
911
+ os: [netbsd]
912
+
913
+ '@esbuild/netbsd-x64@0.18.20':
914
+ resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
915
+ engines: {node: '>=12'}
916
+ cpu: [x64]
917
+ os: [netbsd]
918
+
673
919
  '@esbuild/netbsd-x64@0.25.12':
674
920
  resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
675
921
  engines: {node: '>=18'}
676
922
  cpu: [x64]
677
923
  os: [netbsd]
678
924
 
925
+ '@esbuild/netbsd-x64@0.27.3':
926
+ resolution: {integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==}
927
+ engines: {node: '>=18'}
928
+ cpu: [x64]
929
+ os: [netbsd]
930
+
679
931
  '@esbuild/openbsd-arm64@0.25.12':
680
932
  resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
681
933
  engines: {node: '>=18'}
682
934
  cpu: [arm64]
683
935
  os: [openbsd]
684
936
 
937
+ '@esbuild/openbsd-arm64@0.27.3':
938
+ resolution: {integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==}
939
+ engines: {node: '>=18'}
940
+ cpu: [arm64]
941
+ os: [openbsd]
942
+
943
+ '@esbuild/openbsd-x64@0.18.20':
944
+ resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
945
+ engines: {node: '>=12'}
946
+ cpu: [x64]
947
+ os: [openbsd]
948
+
685
949
  '@esbuild/openbsd-x64@0.25.12':
686
950
  resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
687
951
  engines: {node: '>=18'}
688
952
  cpu: [x64]
689
953
  os: [openbsd]
690
954
 
955
+ '@esbuild/openbsd-x64@0.27.3':
956
+ resolution: {integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==}
957
+ engines: {node: '>=18'}
958
+ cpu: [x64]
959
+ os: [openbsd]
960
+
691
961
  '@esbuild/openharmony-arm64@0.25.12':
692
962
  resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
693
963
  engines: {node: '>=18'}
694
964
  cpu: [arm64]
695
965
  os: [openharmony]
696
966
 
967
+ '@esbuild/openharmony-arm64@0.27.3':
968
+ resolution: {integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==}
969
+ engines: {node: '>=18'}
970
+ cpu: [arm64]
971
+ os: [openharmony]
972
+
973
+ '@esbuild/sunos-x64@0.18.20':
974
+ resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
975
+ engines: {node: '>=12'}
976
+ cpu: [x64]
977
+ os: [sunos]
978
+
697
979
  '@esbuild/sunos-x64@0.25.12':
698
980
  resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
699
981
  engines: {node: '>=18'}
700
982
  cpu: [x64]
701
983
  os: [sunos]
702
984
 
985
+ '@esbuild/sunos-x64@0.27.3':
986
+ resolution: {integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==}
987
+ engines: {node: '>=18'}
988
+ cpu: [x64]
989
+ os: [sunos]
990
+
991
+ '@esbuild/win32-arm64@0.18.20':
992
+ resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
993
+ engines: {node: '>=12'}
994
+ cpu: [arm64]
995
+ os: [win32]
996
+
703
997
  '@esbuild/win32-arm64@0.25.12':
704
998
  resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
705
999
  engines: {node: '>=18'}
706
1000
  cpu: [arm64]
707
1001
  os: [win32]
708
1002
 
1003
+ '@esbuild/win32-arm64@0.27.3':
1004
+ resolution: {integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==}
1005
+ engines: {node: '>=18'}
1006
+ cpu: [arm64]
1007
+ os: [win32]
1008
+
1009
+ '@esbuild/win32-ia32@0.18.20':
1010
+ resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
1011
+ engines: {node: '>=12'}
1012
+ cpu: [ia32]
1013
+ os: [win32]
1014
+
709
1015
  '@esbuild/win32-ia32@0.25.12':
710
1016
  resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
711
1017
  engines: {node: '>=18'}
712
1018
  cpu: [ia32]
713
1019
  os: [win32]
714
1020
 
1021
+ '@esbuild/win32-ia32@0.27.3':
1022
+ resolution: {integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==}
1023
+ engines: {node: '>=18'}
1024
+ cpu: [ia32]
1025
+ os: [win32]
1026
+
1027
+ '@esbuild/win32-x64@0.18.20':
1028
+ resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
1029
+ engines: {node: '>=12'}
1030
+ cpu: [x64]
1031
+ os: [win32]
1032
+
715
1033
  '@esbuild/win32-x64@0.25.12':
716
1034
  resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
717
1035
  engines: {node: '>=18'}
718
1036
  cpu: [x64]
719
1037
  os: [win32]
720
1038
 
1039
+ '@esbuild/win32-x64@0.27.3':
1040
+ resolution: {integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==}
1041
+ engines: {node: '>=18'}
1042
+ cpu: [x64]
1043
+ os: [win32]
1044
+
721
1045
  '@eslint-community/eslint-utils@4.9.1':
722
1046
  resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
723
1047
  engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -1798,6 +2122,144 @@ packages:
1798
2122
  resolution: {integrity: sha512-J1eI7cIm2IXE6EwhHR1OyoefvobUJEn/vJWEBwOM5uW4JkkLwuVoV9vk++XJyAmKUNQ87gdWZvSWrI2LjfrSug==}
1799
2123
  engines: {node: '>=12.0.0'}
1800
2124
 
2125
+ '@rollup/rollup-android-arm-eabi@4.59.0':
2126
+ resolution: {integrity: sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==}
2127
+ cpu: [arm]
2128
+ os: [android]
2129
+
2130
+ '@rollup/rollup-android-arm64@4.59.0':
2131
+ resolution: {integrity: sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==}
2132
+ cpu: [arm64]
2133
+ os: [android]
2134
+
2135
+ '@rollup/rollup-darwin-arm64@4.59.0':
2136
+ resolution: {integrity: sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==}
2137
+ cpu: [arm64]
2138
+ os: [darwin]
2139
+
2140
+ '@rollup/rollup-darwin-x64@4.59.0':
2141
+ resolution: {integrity: sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==}
2142
+ cpu: [x64]
2143
+ os: [darwin]
2144
+
2145
+ '@rollup/rollup-freebsd-arm64@4.59.0':
2146
+ resolution: {integrity: sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==}
2147
+ cpu: [arm64]
2148
+ os: [freebsd]
2149
+
2150
+ '@rollup/rollup-freebsd-x64@4.59.0':
2151
+ resolution: {integrity: sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==}
2152
+ cpu: [x64]
2153
+ os: [freebsd]
2154
+
2155
+ '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
2156
+ resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==}
2157
+ cpu: [arm]
2158
+ os: [linux]
2159
+ libc: [glibc]
2160
+
2161
+ '@rollup/rollup-linux-arm-musleabihf@4.59.0':
2162
+ resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==}
2163
+ cpu: [arm]
2164
+ os: [linux]
2165
+ libc: [musl]
2166
+
2167
+ '@rollup/rollup-linux-arm64-gnu@4.59.0':
2168
+ resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==}
2169
+ cpu: [arm64]
2170
+ os: [linux]
2171
+ libc: [glibc]
2172
+
2173
+ '@rollup/rollup-linux-arm64-musl@4.59.0':
2174
+ resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==}
2175
+ cpu: [arm64]
2176
+ os: [linux]
2177
+ libc: [musl]
2178
+
2179
+ '@rollup/rollup-linux-loong64-gnu@4.59.0':
2180
+ resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==}
2181
+ cpu: [loong64]
2182
+ os: [linux]
2183
+ libc: [glibc]
2184
+
2185
+ '@rollup/rollup-linux-loong64-musl@4.59.0':
2186
+ resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==}
2187
+ cpu: [loong64]
2188
+ os: [linux]
2189
+ libc: [musl]
2190
+
2191
+ '@rollup/rollup-linux-ppc64-gnu@4.59.0':
2192
+ resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==}
2193
+ cpu: [ppc64]
2194
+ os: [linux]
2195
+ libc: [glibc]
2196
+
2197
+ '@rollup/rollup-linux-ppc64-musl@4.59.0':
2198
+ resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==}
2199
+ cpu: [ppc64]
2200
+ os: [linux]
2201
+ libc: [musl]
2202
+
2203
+ '@rollup/rollup-linux-riscv64-gnu@4.59.0':
2204
+ resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==}
2205
+ cpu: [riscv64]
2206
+ os: [linux]
2207
+ libc: [glibc]
2208
+
2209
+ '@rollup/rollup-linux-riscv64-musl@4.59.0':
2210
+ resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==}
2211
+ cpu: [riscv64]
2212
+ os: [linux]
2213
+ libc: [musl]
2214
+
2215
+ '@rollup/rollup-linux-s390x-gnu@4.59.0':
2216
+ resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==}
2217
+ cpu: [s390x]
2218
+ os: [linux]
2219
+ libc: [glibc]
2220
+
2221
+ '@rollup/rollup-linux-x64-gnu@4.59.0':
2222
+ resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==}
2223
+ cpu: [x64]
2224
+ os: [linux]
2225
+ libc: [glibc]
2226
+
2227
+ '@rollup/rollup-linux-x64-musl@4.59.0':
2228
+ resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==}
2229
+ cpu: [x64]
2230
+ os: [linux]
2231
+ libc: [musl]
2232
+
2233
+ '@rollup/rollup-openbsd-x64@4.59.0':
2234
+ resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==}
2235
+ cpu: [x64]
2236
+ os: [openbsd]
2237
+
2238
+ '@rollup/rollup-openharmony-arm64@4.59.0':
2239
+ resolution: {integrity: sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==}
2240
+ cpu: [arm64]
2241
+ os: [openharmony]
2242
+
2243
+ '@rollup/rollup-win32-arm64-msvc@4.59.0':
2244
+ resolution: {integrity: sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==}
2245
+ cpu: [arm64]
2246
+ os: [win32]
2247
+
2248
+ '@rollup/rollup-win32-ia32-msvc@4.59.0':
2249
+ resolution: {integrity: sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==}
2250
+ cpu: [ia32]
2251
+ os: [win32]
2252
+
2253
+ '@rollup/rollup-win32-x64-gnu@4.59.0':
2254
+ resolution: {integrity: sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==}
2255
+ cpu: [x64]
2256
+ os: [win32]
2257
+
2258
+ '@rollup/rollup-win32-x64-msvc@4.59.0':
2259
+ resolution: {integrity: sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==}
2260
+ cpu: [x64]
2261
+ os: [win32]
2262
+
1801
2263
  '@rtsao/scc@1.1.0':
1802
2264
  resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
1803
2265
 
@@ -2027,6 +2489,30 @@ packages:
2027
2489
  '@standard-schema/utils@0.3.0':
2028
2490
  resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
2029
2491
 
2492
+ '@supabase/auth-js@2.95.3':
2493
+ resolution: {integrity: sha512-vD2YoS8E2iKIX0F7EwXTmqhUpaNsmbU6X2R0/NdFcs02oEfnHyNP/3M716f3wVJ2E5XHGiTFXki6lRckhJ0Thg==}
2494
+ engines: {node: '>=20.0.0'}
2495
+
2496
+ '@supabase/functions-js@2.95.3':
2497
+ resolution: {integrity: sha512-uTuOAKzs9R/IovW1krO0ZbUHSJnsnyJElTXIRhjJTqymIVGcHzkAYnBCJqd7468Fs/Foz1BQ7Dv6DCl05lr7ig==}
2498
+ engines: {node: '>=20.0.0'}
2499
+
2500
+ '@supabase/postgrest-js@2.95.3':
2501
+ resolution: {integrity: sha512-LTrRBqU1gOovxRm1vRXPItSMPBmEFqrfTqdPTRtzOILV4jPSueFz6pES5hpb4LRlkFwCPRmv3nQJ5N625V2Xrg==}
2502
+ engines: {node: '>=20.0.0'}
2503
+
2504
+ '@supabase/realtime-js@2.95.3':
2505
+ resolution: {integrity: sha512-D7EAtfU3w6BEUxDACjowWNJo/ZRo7sDIuhuOGKHIm9FHieGeoJV5R6GKTLtga/5l/6fDr2u+WcW/m8I9SYmaIw==}
2506
+ engines: {node: '>=20.0.0'}
2507
+
2508
+ '@supabase/storage-js@2.95.3':
2509
+ resolution: {integrity: sha512-4GxkJiXI3HHWjxpC3sDx1BVrV87O0hfX+wvJdqGv67KeCu+g44SPnII8y0LL/Wr677jB7tpjAxKdtVWf+xhc9A==}
2510
+ engines: {node: '>=20.0.0'}
2511
+
2512
+ '@supabase/supabase-js@2.95.3':
2513
+ resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
2514
+ engines: {node: '>=20.0.0'}
2515
+
2030
2516
  '@swc/helpers@0.5.15':
2031
2517
  resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
2032
2518
 
@@ -2176,6 +2662,12 @@ packages:
2176
2662
  '@types/parse-json@4.0.2':
2177
2663
  resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
2178
2664
 
2665
+ '@types/pg@8.16.0':
2666
+ resolution: {integrity: sha512-RmhMd/wD+CF8Dfo+cVIy3RR5cl8CyfXQ0tGgW6XBL8L4LM/UTEbNXYRbLwU6w+CgrKBNbrQWt4FUtTfaU5jSYQ==}
2667
+
2668
+ '@types/phoenix@1.6.7':
2669
+ resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
2670
+
2179
2671
  '@types/react-dom@19.2.3':
2180
2672
  resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
2181
2673
  peerDependencies:
@@ -2198,6 +2690,9 @@ packages:
2198
2690
  '@types/validate-npm-package-name@4.0.2':
2199
2691
  resolution: {integrity: sha512-lrpDziQipxCEeK5kWxvljWYhUvOiB2A9izZd9B2AFarYAkqZshb4lPbRs7zKEic6eGtH8V/2qJW+dPp9OtF6bw==}
2200
2692
 
2693
+ '@types/ws@8.18.1':
2694
+ resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
2695
+
2201
2696
  '@typescript-eslint/eslint-plugin@8.54.0':
2202
2697
  resolution: {integrity: sha512-hAAP5io/7csFStuOmR782YmTthKBJ9ND3WVL60hcOjvtGFb+HJxH4O5huAcmcZ9v9G8P+JETiZ/G1B8MALnWZQ==}
2203
2698
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -2431,6 +2926,11 @@ packages:
2431
2926
  engines: {node: '>=0.4.0'}
2432
2927
  hasBin: true
2433
2928
 
2929
+ acorn@8.16.0:
2930
+ resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
2931
+ engines: {node: '>=0.4.0'}
2932
+ hasBin: true
2933
+
2434
2934
  address@1.2.2:
2435
2935
  resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
2436
2936
  engines: {node: '>= 10.0.0'}
@@ -2491,6 +2991,9 @@ packages:
2491
2991
  resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==}
2492
2992
  engines: {node: '>=14'}
2493
2993
 
2994
+ any-promise@1.3.0:
2995
+ resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
2996
+
2494
2997
  anymatch@3.1.3:
2495
2998
  resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
2496
2999
  engines: {node: '>= 8'}
@@ -2621,10 +3124,20 @@ packages:
2621
3124
  resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
2622
3125
  engines: {node: '>=18'}
2623
3126
 
3127
+ bundle-require@5.1.0:
3128
+ resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
3129
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
3130
+ peerDependencies:
3131
+ esbuild: '>=0.18'
3132
+
2624
3133
  bytes@3.1.2:
2625
3134
  resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
2626
3135
  engines: {node: '>= 0.8'}
2627
3136
 
3137
+ cac@6.7.14:
3138
+ resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
3139
+ engines: {node: '>=8'}
3140
+
2628
3141
  call-bind-apply-helpers@1.0.2:
2629
3142
  resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
2630
3143
  engines: {node: '>= 0.4'}
@@ -2660,6 +3173,10 @@ packages:
2660
3173
  resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
2661
3174
  engines: {node: '>= 8.10.0'}
2662
3175
 
3176
+ chokidar@4.0.3:
3177
+ resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
3178
+ engines: {node: '>= 14.16.0'}
3179
+
2663
3180
  chrome-trace-event@1.0.4:
2664
3181
  resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
2665
3182
  engines: {node: '>=6.0'}
@@ -2675,10 +3192,6 @@ packages:
2675
3192
  resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
2676
3193
  engines: {node: '>=6'}
2677
3194
 
2678
- cli-spinners@3.4.0:
2679
- resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==}
2680
- engines: {node: '>=18.20'}
2681
-
2682
3195
  cli-width@4.1.0:
2683
3196
  resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
2684
3197
  engines: {node: '>= 12'}
@@ -2725,9 +3238,20 @@ packages:
2725
3238
  commander@2.20.3:
2726
3239
  resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
2727
3240
 
3241
+ commander@4.1.1:
3242
+ resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
3243
+ engines: {node: '>= 6'}
3244
+
2728
3245
  concat-map@0.0.1:
2729
3246
  resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
2730
3247
 
3248
+ confbox@0.1.8:
3249
+ resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
3250
+
3251
+ consola@3.4.2:
3252
+ resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
3253
+ engines: {node: ^14.18.0 || >=16.10.0}
3254
+
2731
3255
  console-table-printer@2.15.0:
2732
3256
  resolution: {integrity: sha512-SrhBq4hYVjLCkBVOWaTzceJalvn5K1Zq5aQA6wXC/cYjI3frKWNPEMK3sZsJfNNQApvCQmgBcc13ZKmFj8qExw==}
2733
3257
 
@@ -2771,8 +3295,8 @@ packages:
2771
3295
  typescript:
2772
3296
  optional: true
2773
3297
 
2774
- coze-coding-dev-sdk@0.7.4:
2775
- resolution: {integrity: sha512-aXC7y1PLowjFZhmHr/OlYtxRiByQADngxG6oyJXZnLN13BLjfUsiQUe8qRRl7957GW8LTxlv+KgMVeGsRIAXdQ==}
3298
+ coze-coding-dev-sdk@0.7.16:
3299
+ resolution: {integrity: sha512-B7gRPBa+sfrZL8ur0+F/92SOgZgFaWD/fOnCN2DjthnHSdmCYhAJWCfqzG2oO2vwTiYCXkKUuTBZ3MJLMj886g==}
2776
3300
  engines: {node: '>=18.0.0'}
2777
3301
  hasBin: true
2778
3302
 
@@ -3063,6 +3587,12 @@ packages:
3063
3587
  sqlite3:
3064
3588
  optional: true
3065
3589
 
3590
+ drizzle-zod@0.8.3:
3591
+ resolution: {integrity: sha512-66yVOuvGhKJnTdiqj1/Xaaz9/qzOdRJADpDa68enqS6g3t0kpNkwNYjUuaeXgZfO/UWuIM9HIhSlJ6C5ZraMww==}
3592
+ peerDependencies:
3593
+ drizzle-orm: '>=0.36.0'
3594
+ zod: ^3.25.0 || ^4.0.0
3595
+
3066
3596
  dunder-proto@1.0.1:
3067
3597
  resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
3068
3598
  engines: {node: '>= 0.4'}
@@ -3155,13 +3685,23 @@ packages:
3155
3685
  esbuild-register@3.6.0:
3156
3686
  resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
3157
3687
  peerDependencies:
3158
- esbuild: ^0.25.12
3688
+ esbuild: '>=0.12 <1'
3689
+
3690
+ esbuild@0.18.20:
3691
+ resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
3692
+ engines: {node: '>=12'}
3693
+ hasBin: true
3159
3694
 
3160
3695
  esbuild@0.25.12:
3161
3696
  resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
3162
3697
  engines: {node: '>=18'}
3163
3698
  hasBin: true
3164
3699
 
3700
+ esbuild@0.27.3:
3701
+ resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==}
3702
+ engines: {node: '>=18'}
3703
+ hasBin: true
3704
+
3165
3705
  escalade@3.2.0:
3166
3706
  resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
3167
3707
  engines: {node: '>=6'}
@@ -3411,6 +3951,9 @@ packages:
3411
3951
  resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
3412
3952
  engines: {node: '>=10'}
3413
3953
 
3954
+ fix-dts-default-cjs-exports@1.0.1:
3955
+ resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==}
3956
+
3414
3957
  flat-cache@4.0.1:
3415
3958
  resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
3416
3959
  engines: {node: '>=16'}
@@ -3656,6 +4199,10 @@ packages:
3656
4199
  resolution: {integrity: sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==}
3657
4200
  engines: {node: '>=18.18.0'}
3658
4201
 
4202
+ iceberg-js@0.8.1:
4203
+ resolution: {integrity: sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==}
4204
+ engines: {node: '>=20.0.0'}
4205
+
3659
4206
  iconv-lite@0.7.2:
3660
4207
  resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==}
3661
4208
  engines: {node: '>=0.10.0'}
@@ -3918,6 +4465,10 @@ packages:
3918
4465
  jose@6.1.3:
3919
4466
  resolution: {integrity: sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ==}
3920
4467
 
4468
+ joycon@3.1.1:
4469
+ resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
4470
+ engines: {node: '>=10'}
4471
+
3921
4472
  js-tiktoken@1.0.21:
3922
4473
  resolution: {integrity: sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g==}
3923
4474
 
@@ -4084,9 +4635,17 @@ packages:
4084
4635
  resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
4085
4636
  engines: {node: '>= 12.0.0'}
4086
4637
 
4638
+ lilconfig@3.1.3:
4639
+ resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
4640
+ engines: {node: '>=14'}
4641
+
4087
4642
  lines-and-columns@1.2.4:
4088
4643
  resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
4089
4644
 
4645
+ load-tsconfig@0.2.5:
4646
+ resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
4647
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
4648
+
4090
4649
  loader-runner@4.3.1:
4091
4650
  resolution: {integrity: sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==}
4092
4651
  engines: {node: '>=6.11.5'}
@@ -4113,10 +4672,6 @@ packages:
4113
4672
  resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==}
4114
4673
  engines: {node: '>=18'}
4115
4674
 
4116
- log-symbols@7.0.1:
4117
- resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
4118
- engines: {node: '>=18'}
4119
-
4120
4675
  loose-envify@1.4.0:
4121
4676
  resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
4122
4677
  hasBin: true
@@ -4197,6 +4752,9 @@ packages:
4197
4752
  minimist@1.2.8:
4198
4753
  resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
4199
4754
 
4755
+ mlly@1.8.1:
4756
+ resolution: {integrity: sha512-SnL6sNutTwRWWR/vcmCYHSADjiEesp5TGQQ0pXyLhW5IoeibRlF/CbSLailbB3CNqJUk9cVJ9dUDnbD7GrcHBQ==}
4757
+
4200
4758
  ms@2.0.0:
4201
4759
  resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
4202
4760
 
@@ -4221,6 +4779,9 @@ packages:
4221
4779
  resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
4222
4780
  engines: {node: ^18.17.0 || >=20.5.0}
4223
4781
 
4782
+ mz@2.7.0:
4783
+ resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
4784
+
4224
4785
  nanoid@3.3.11:
4225
4786
  resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
4226
4787
  engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
@@ -4375,10 +4936,6 @@ packages:
4375
4936
  resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==}
4376
4937
  engines: {node: '>=18'}
4377
4938
 
4378
- ora@9.1.0:
4379
- resolution: {integrity: sha512-53uuLsXHOAJl5zLrUrzY9/kE+uIFEx7iaH4g2BIJQK4LZjY4LpCCYZVKDWIkL+F01wAaCg93duQ1whnK/AmY1A==}
4380
- engines: {node: '>=20'}
4381
-
4382
4939
  outvariant@1.4.3:
4383
4940
  resolution: {integrity: sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==}
4384
4941
 
@@ -4473,8 +5030,8 @@ packages:
4473
5030
  resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
4474
5031
  engines: {node: '>=8'}
4475
5032
 
4476
- pg-cloudflare@1.3.0:
4477
- resolution: {integrity: sha512-6lswVVSztmHiRtD6I8hw4qP/nDm1EJbKMRhf3HCYaqud7frGysPv7FYJ5noZQdhQtN2xJnimfMtvQq21pdbzyQ==}
5033
+ pathe@2.0.3:
5034
+ resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
4478
5035
 
4479
5036
  pg-connection-string@2.10.1:
4480
5037
  resolution: {integrity: sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==}
@@ -4521,10 +5078,17 @@ packages:
4521
5078
  resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
4522
5079
  engines: {node: '>=12'}
4523
5080
 
5081
+ pirates@4.0.7:
5082
+ resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
5083
+ engines: {node: '>= 6'}
5084
+
4524
5085
  pkce-challenge@5.0.1:
4525
5086
  resolution: {integrity: sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==}
4526
5087
  engines: {node: '>=16.20.0'}
4527
5088
 
5089
+ pkg-types@1.3.1:
5090
+ resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
5091
+
4528
5092
  pkg-up@3.1.0:
4529
5093
  resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
4530
5094
  engines: {node: '>=8'}
@@ -4533,6 +5097,24 @@ packages:
4533
5097
  resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
4534
5098
  engines: {node: '>= 0.4'}
4535
5099
 
5100
+ postcss-load-config@6.0.1:
5101
+ resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
5102
+ engines: {node: '>= 18'}
5103
+ peerDependencies:
5104
+ jiti: '>=1.21.0'
5105
+ postcss: '>=8.0.9'
5106
+ tsx: ^4.8.1
5107
+ yaml: ^2.4.2
5108
+ peerDependenciesMeta:
5109
+ jiti:
5110
+ optional: true
5111
+ postcss:
5112
+ optional: true
5113
+ tsx:
5114
+ optional: true
5115
+ yaml:
5116
+ optional: true
5117
+
4536
5118
  postcss-selector-parser@7.1.1:
4537
5119
  resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==}
4538
5120
  engines: {node: '>=4'}
@@ -4711,6 +5293,10 @@ packages:
4711
5293
  resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
4712
5294
  engines: {node: '>=8.10.0'}
4713
5295
 
5296
+ readdirp@4.1.2:
5297
+ resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
5298
+ engines: {node: '>= 14.18.0'}
5299
+
4714
5300
  recast@0.23.11:
4715
5301
  resolution: {integrity: sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==}
4716
5302
  engines: {node: '>= 4'}
@@ -4749,6 +5335,10 @@ packages:
4749
5335
  resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
4750
5336
  engines: {node: '>=4'}
4751
5337
 
5338
+ resolve-from@5.0.0:
5339
+ resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
5340
+ engines: {node: '>=8'}
5341
+
4752
5342
  resolve-pkg-maps@1.0.0:
4753
5343
  resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
4754
5344
 
@@ -4772,6 +5362,11 @@ packages:
4772
5362
  resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
4773
5363
  engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
4774
5364
 
5365
+ rollup@4.59.0:
5366
+ resolution: {integrity: sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==}
5367
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
5368
+ hasBin: true
5369
+
4775
5370
  router@2.2.0:
4776
5371
  resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
4777
5372
  engines: {node: '>= 18'}
@@ -4917,6 +5512,10 @@ packages:
4917
5512
  resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
4918
5513
  engines: {node: '>=0.10.0'}
4919
5514
 
5515
+ source-map@0.7.6:
5516
+ resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==}
5517
+ engines: {node: '>= 12'}
5518
+
4920
5519
  split2@4.2.0:
4921
5520
  resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
4922
5521
  engines: {node: '>= 10.x'}
@@ -4950,10 +5549,6 @@ packages:
4950
5549
  resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
4951
5550
  engines: {node: '>=18'}
4952
5551
 
4953
- string-width@8.1.0:
4954
- resolution: {integrity: sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==}
4955
- engines: {node: '>=20'}
4956
-
4957
5552
  string.prototype.includes@2.0.1:
4958
5553
  resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
4959
5554
  engines: {node: '>= 0.4'}
@@ -5024,6 +5619,11 @@ packages:
5024
5619
  babel-plugin-macros:
5025
5620
  optional: true
5026
5621
 
5622
+ sucrase@3.35.1:
5623
+ resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
5624
+ engines: {node: '>=16 || 14 >=14.17'}
5625
+ hasBin: true
5626
+
5027
5627
  supports-color@7.2.0:
5028
5628
  resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
5029
5629
  engines: {node: '>=8'}
@@ -5078,9 +5678,19 @@ packages:
5078
5678
  text-table@0.2.0:
5079
5679
  resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
5080
5680
 
5681
+ thenify-all@1.6.0:
5682
+ resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
5683
+ engines: {node: '>=0.8'}
5684
+
5685
+ thenify@3.3.1:
5686
+ resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
5687
+
5081
5688
  tiny-invariant@1.3.3:
5082
5689
  resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
5083
5690
 
5691
+ tinyexec@0.3.2:
5692
+ resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
5693
+
5084
5694
  tinyexec@1.0.2:
5085
5695
  resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==}
5086
5696
  engines: {node: '>=18'}
@@ -5112,9 +5722,8 @@ packages:
5112
5722
  resolution: {integrity: sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==}
5113
5723
  engines: {node: '>=16'}
5114
5724
 
5115
- transliteration@2.6.1:
5116
- resolution: {integrity: sha512-hJ9BhrQAOnNTbpOr1MxsNjZISkn7ppvF5TKUeFmTE1mG4ZPD/XVxF0L0LUoIUCWmQyxH0gJpVtfYLAWf298U9w==}
5117
- engines: {node: '>=20.0.0'}
5725
+ tree-kill@1.2.2:
5726
+ resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
5118
5727
  hasBin: true
5119
5728
 
5120
5729
  ts-api-utils@2.4.0:
@@ -5123,6 +5732,9 @@ packages:
5123
5732
  peerDependencies:
5124
5733
  typescript: '>=4.8.4'
5125
5734
 
5735
+ ts-interface-checker@0.1.13:
5736
+ resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
5737
+
5126
5738
  ts-morph@26.0.0:
5127
5739
  resolution: {integrity: sha512-ztMO++owQnz8c/gIENcM9XfCEzgoGphTv+nKpYNM1bgsdOVC/jRZuEBf6N+mLLDNg68Kl+GgUZfOySaRiG1/Ug==}
5128
5740
 
@@ -5136,6 +5748,30 @@ packages:
5136
5748
  tslib@2.8.1:
5137
5749
  resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
5138
5750
 
5751
+ tsup@8.5.1:
5752
+ resolution: {integrity: sha512-xtgkqwdhpKWr3tKPmCkvYmS9xnQK3m3XgxZHwSUjvfTjp7YfXe5tT3GgWi0F2N+ZSMsOeWeZFh7ZZFg5iPhing==}
5753
+ engines: {node: '>=18'}
5754
+ hasBin: true
5755
+ peerDependencies:
5756
+ '@microsoft/api-extractor': ^7.36.0
5757
+ '@swc/core': ^1
5758
+ postcss: ^8.4.12
5759
+ typescript: '>=4.5.0'
5760
+ peerDependenciesMeta:
5761
+ '@microsoft/api-extractor':
5762
+ optional: true
5763
+ '@swc/core':
5764
+ optional: true
5765
+ postcss:
5766
+ optional: true
5767
+ typescript:
5768
+ optional: true
5769
+
5770
+ tsx@4.21.0:
5771
+ resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
5772
+ engines: {node: '>=18.0.0'}
5773
+ hasBin: true
5774
+
5139
5775
  tw-animate-css@1.4.0:
5140
5776
  resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==}
5141
5777
 
@@ -5179,6 +5815,9 @@ packages:
5179
5815
  engines: {node: '>=14.17'}
5180
5816
  hasBin: true
5181
5817
 
5818
+ ufo@1.6.3:
5819
+ resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==}
5820
+
5182
5821
  unbox-primitive@1.1.0:
5183
5822
  resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
5184
5823
  engines: {node: '>= 0.4'}
@@ -5333,6 +5972,18 @@ packages:
5333
5972
  wrappy@1.0.2:
5334
5973
  resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
5335
5974
 
5975
+ ws@8.19.0:
5976
+ resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
5977
+ engines: {node: '>=10.0.0'}
5978
+ peerDependencies:
5979
+ bufferutil: ^4.0.1
5980
+ utf-8-validate: '>=5.0.2'
5981
+ peerDependenciesMeta:
5982
+ bufferutil:
5983
+ optional: true
5984
+ utf-8-validate:
5985
+ optional: true
5986
+
5336
5987
  wsl-utils@0.3.1:
5337
5988
  resolution: {integrity: sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==}
5338
5989
  engines: {node: '>=20'}
@@ -6166,104 +6817,248 @@ snapshots:
6166
6817
  tslib: 2.8.1
6167
6818
  optional: true
6168
6819
 
6169
- '@emnapi/runtime@1.8.1':
6170
- dependencies:
6171
- tslib: 2.8.1
6820
+ '@emnapi/runtime@1.8.1':
6821
+ dependencies:
6822
+ tslib: 2.8.1
6823
+ optional: true
6824
+
6825
+ '@emnapi/wasi-threads@1.1.0':
6826
+ dependencies:
6827
+ tslib: 2.8.1
6828
+ optional: true
6829
+
6830
+ '@esbuild-kit/core-utils@3.3.2':
6831
+ dependencies:
6832
+ esbuild: 0.18.20
6833
+ source-map-support: 0.5.21
6834
+
6835
+ '@esbuild-kit/esm-loader@2.6.5':
6836
+ dependencies:
6837
+ '@esbuild-kit/core-utils': 3.3.2
6838
+ get-tsconfig: 4.13.0
6839
+
6840
+ '@esbuild/aix-ppc64@0.25.12':
6841
+ optional: true
6842
+
6843
+ '@esbuild/aix-ppc64@0.27.3':
6844
+ optional: true
6845
+
6846
+ '@esbuild/android-arm64@0.18.20':
6847
+ optional: true
6848
+
6849
+ '@esbuild/android-arm64@0.25.12':
6850
+ optional: true
6851
+
6852
+ '@esbuild/android-arm64@0.27.3':
6853
+ optional: true
6854
+
6855
+ '@esbuild/android-arm@0.18.20':
6856
+ optional: true
6857
+
6858
+ '@esbuild/android-arm@0.25.12':
6859
+ optional: true
6860
+
6861
+ '@esbuild/android-arm@0.27.3':
6862
+ optional: true
6863
+
6864
+ '@esbuild/android-x64@0.18.20':
6865
+ optional: true
6866
+
6867
+ '@esbuild/android-x64@0.25.12':
6868
+ optional: true
6869
+
6870
+ '@esbuild/android-x64@0.27.3':
6871
+ optional: true
6872
+
6873
+ '@esbuild/darwin-arm64@0.18.20':
6874
+ optional: true
6875
+
6876
+ '@esbuild/darwin-arm64@0.25.12':
6877
+ optional: true
6878
+
6879
+ '@esbuild/darwin-arm64@0.27.3':
6880
+ optional: true
6881
+
6882
+ '@esbuild/darwin-x64@0.18.20':
6883
+ optional: true
6884
+
6885
+ '@esbuild/darwin-x64@0.25.12':
6886
+ optional: true
6887
+
6888
+ '@esbuild/darwin-x64@0.27.3':
6889
+ optional: true
6890
+
6891
+ '@esbuild/freebsd-arm64@0.18.20':
6892
+ optional: true
6893
+
6894
+ '@esbuild/freebsd-arm64@0.25.12':
6895
+ optional: true
6896
+
6897
+ '@esbuild/freebsd-arm64@0.27.3':
6898
+ optional: true
6899
+
6900
+ '@esbuild/freebsd-x64@0.18.20':
6172
6901
  optional: true
6173
6902
 
6174
- '@emnapi/wasi-threads@1.1.0':
6175
- dependencies:
6176
- tslib: 2.8.1
6903
+ '@esbuild/freebsd-x64@0.25.12':
6177
6904
  optional: true
6178
6905
 
6179
- '@esbuild-kit/core-utils@3.3.2':
6180
- dependencies:
6181
- esbuild: 0.25.12
6182
- source-map-support: 0.5.21
6906
+ '@esbuild/freebsd-x64@0.27.3':
6907
+ optional: true
6183
6908
 
6184
- '@esbuild-kit/esm-loader@2.6.5':
6185
- dependencies:
6186
- '@esbuild-kit/core-utils': 3.3.2
6187
- get-tsconfig: 4.13.0
6909
+ '@esbuild/linux-arm64@0.18.20':
6910
+ optional: true
6188
6911
 
6189
- '@esbuild/aix-ppc64@0.25.12':
6912
+ '@esbuild/linux-arm64@0.25.12':
6190
6913
  optional: true
6191
6914
 
6192
- '@esbuild/android-arm64@0.25.12':
6915
+ '@esbuild/linux-arm64@0.27.3':
6193
6916
  optional: true
6194
6917
 
6195
- '@esbuild/android-arm@0.25.12':
6918
+ '@esbuild/linux-arm@0.18.20':
6196
6919
  optional: true
6197
6920
 
6198
- '@esbuild/android-x64@0.25.12':
6921
+ '@esbuild/linux-arm@0.25.12':
6199
6922
  optional: true
6200
6923
 
6201
- '@esbuild/darwin-arm64@0.25.12':
6924
+ '@esbuild/linux-arm@0.27.3':
6202
6925
  optional: true
6203
6926
 
6204
- '@esbuild/darwin-x64@0.25.12':
6927
+ '@esbuild/linux-ia32@0.18.20':
6205
6928
  optional: true
6206
6929
 
6207
- '@esbuild/freebsd-arm64@0.25.12':
6930
+ '@esbuild/linux-ia32@0.25.12':
6208
6931
  optional: true
6209
6932
 
6210
- '@esbuild/freebsd-x64@0.25.12':
6933
+ '@esbuild/linux-ia32@0.27.3':
6211
6934
  optional: true
6212
6935
 
6213
- '@esbuild/linux-arm64@0.25.12':
6936
+ '@esbuild/linux-loong64@0.18.20':
6214
6937
  optional: true
6215
6938
 
6216
- '@esbuild/linux-arm@0.25.12':
6939
+ '@esbuild/linux-loong64@0.25.12':
6217
6940
  optional: true
6218
6941
 
6219
- '@esbuild/linux-ia32@0.25.12':
6942
+ '@esbuild/linux-loong64@0.27.3':
6220
6943
  optional: true
6221
6944
 
6222
- '@esbuild/linux-loong64@0.25.12':
6945
+ '@esbuild/linux-mips64el@0.18.20':
6223
6946
  optional: true
6224
6947
 
6225
6948
  '@esbuild/linux-mips64el@0.25.12':
6226
6949
  optional: true
6227
6950
 
6951
+ '@esbuild/linux-mips64el@0.27.3':
6952
+ optional: true
6953
+
6954
+ '@esbuild/linux-ppc64@0.18.20':
6955
+ optional: true
6956
+
6228
6957
  '@esbuild/linux-ppc64@0.25.12':
6229
6958
  optional: true
6230
6959
 
6960
+ '@esbuild/linux-ppc64@0.27.3':
6961
+ optional: true
6962
+
6963
+ '@esbuild/linux-riscv64@0.18.20':
6964
+ optional: true
6965
+
6231
6966
  '@esbuild/linux-riscv64@0.25.12':
6232
6967
  optional: true
6233
6968
 
6969
+ '@esbuild/linux-riscv64@0.27.3':
6970
+ optional: true
6971
+
6972
+ '@esbuild/linux-s390x@0.18.20':
6973
+ optional: true
6974
+
6234
6975
  '@esbuild/linux-s390x@0.25.12':
6235
6976
  optional: true
6236
6977
 
6978
+ '@esbuild/linux-s390x@0.27.3':
6979
+ optional: true
6980
+
6981
+ '@esbuild/linux-x64@0.18.20':
6982
+ optional: true
6983
+
6237
6984
  '@esbuild/linux-x64@0.25.12':
6238
6985
  optional: true
6239
6986
 
6987
+ '@esbuild/linux-x64@0.27.3':
6988
+ optional: true
6989
+
6240
6990
  '@esbuild/netbsd-arm64@0.25.12':
6241
6991
  optional: true
6242
6992
 
6993
+ '@esbuild/netbsd-arm64@0.27.3':
6994
+ optional: true
6995
+
6996
+ '@esbuild/netbsd-x64@0.18.20':
6997
+ optional: true
6998
+
6243
6999
  '@esbuild/netbsd-x64@0.25.12':
6244
7000
  optional: true
6245
7001
 
7002
+ '@esbuild/netbsd-x64@0.27.3':
7003
+ optional: true
7004
+
6246
7005
  '@esbuild/openbsd-arm64@0.25.12':
6247
7006
  optional: true
6248
7007
 
7008
+ '@esbuild/openbsd-arm64@0.27.3':
7009
+ optional: true
7010
+
7011
+ '@esbuild/openbsd-x64@0.18.20':
7012
+ optional: true
7013
+
6249
7014
  '@esbuild/openbsd-x64@0.25.12':
6250
7015
  optional: true
6251
7016
 
7017
+ '@esbuild/openbsd-x64@0.27.3':
7018
+ optional: true
7019
+
6252
7020
  '@esbuild/openharmony-arm64@0.25.12':
6253
7021
  optional: true
6254
7022
 
7023
+ '@esbuild/openharmony-arm64@0.27.3':
7024
+ optional: true
7025
+
7026
+ '@esbuild/sunos-x64@0.18.20':
7027
+ optional: true
7028
+
6255
7029
  '@esbuild/sunos-x64@0.25.12':
6256
7030
  optional: true
6257
7031
 
7032
+ '@esbuild/sunos-x64@0.27.3':
7033
+ optional: true
7034
+
7035
+ '@esbuild/win32-arm64@0.18.20':
7036
+ optional: true
7037
+
6258
7038
  '@esbuild/win32-arm64@0.25.12':
6259
7039
  optional: true
6260
7040
 
7041
+ '@esbuild/win32-arm64@0.27.3':
7042
+ optional: true
7043
+
7044
+ '@esbuild/win32-ia32@0.18.20':
7045
+ optional: true
7046
+
6261
7047
  '@esbuild/win32-ia32@0.25.12':
6262
7048
  optional: true
6263
7049
 
7050
+ '@esbuild/win32-ia32@0.27.3':
7051
+ optional: true
7052
+
7053
+ '@esbuild/win32-x64@0.18.20':
7054
+ optional: true
7055
+
6264
7056
  '@esbuild/win32-x64@0.25.12':
6265
7057
  optional: true
6266
7058
 
7059
+ '@esbuild/win32-x64@0.27.3':
7060
+ optional: true
7061
+
6267
7062
  '@eslint-community/eslint-utils@4.9.1(eslint@9.39.2(jiti@2.6.1))':
6268
7063
  dependencies:
6269
7064
  eslint: 9.39.2(jiti@2.6.1)
@@ -6502,14 +7297,14 @@ snapshots:
6502
7297
  '@jridgewell/resolve-uri': 3.1.2
6503
7298
  '@jridgewell/sourcemap-codec': 1.5.5
6504
7299
 
6505
- '@langchain/core@1.1.17(openai@6.16.0(zod@4.3.6))':
7300
+ '@langchain/core@1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6))':
6506
7301
  dependencies:
6507
7302
  '@cfworker/json-schema': 4.1.1
6508
7303
  ansi-styles: 5.2.0
6509
7304
  camelcase: 6.3.0
6510
7305
  decamelize: 1.2.0
6511
7306
  js-tiktoken: 1.0.21
6512
- langsmith: 0.4.9(openai@6.16.0(zod@4.3.6))
7307
+ langsmith: 0.4.9(openai@6.16.0(ws@8.19.0)(zod@4.3.6))
6513
7308
  mustache: 4.2.0
6514
7309
  p-queue: 6.6.2
6515
7310
  uuid: 10.0.0
@@ -6520,11 +7315,11 @@ snapshots:
6520
7315
  - '@opentelemetry/sdk-trace-base'
6521
7316
  - openai
6522
7317
 
6523
- '@langchain/openai@1.2.3(@langchain/core@1.1.17(openai@6.16.0(zod@4.3.6)))':
7318
+ '@langchain/openai@1.2.3(@langchain/core@1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6)))(ws@8.19.0)':
6524
7319
  dependencies:
6525
- '@langchain/core': 1.1.17(openai@6.16.0(zod@4.3.6))
7320
+ '@langchain/core': 1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6))
6526
7321
  js-tiktoken: 1.0.21
6527
- openai: 6.16.0(zod@4.3.6)
7322
+ openai: 6.16.0(ws@8.19.0)(zod@4.3.6)
6528
7323
  zod: 4.3.6
6529
7324
  transitivePeerDependencies:
6530
7325
  - ws
@@ -7357,6 +8152,81 @@ snapshots:
7357
8152
  - vue-template-compiler
7358
8153
  - webpack
7359
8154
 
8155
+ '@rollup/rollup-android-arm-eabi@4.59.0':
8156
+ optional: true
8157
+
8158
+ '@rollup/rollup-android-arm64@4.59.0':
8159
+ optional: true
8160
+
8161
+ '@rollup/rollup-darwin-arm64@4.59.0':
8162
+ optional: true
8163
+
8164
+ '@rollup/rollup-darwin-x64@4.59.0':
8165
+ optional: true
8166
+
8167
+ '@rollup/rollup-freebsd-arm64@4.59.0':
8168
+ optional: true
8169
+
8170
+ '@rollup/rollup-freebsd-x64@4.59.0':
8171
+ optional: true
8172
+
8173
+ '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
8174
+ optional: true
8175
+
8176
+ '@rollup/rollup-linux-arm-musleabihf@4.59.0':
8177
+ optional: true
8178
+
8179
+ '@rollup/rollup-linux-arm64-gnu@4.59.0':
8180
+ optional: true
8181
+
8182
+ '@rollup/rollup-linux-arm64-musl@4.59.0':
8183
+ optional: true
8184
+
8185
+ '@rollup/rollup-linux-loong64-gnu@4.59.0':
8186
+ optional: true
8187
+
8188
+ '@rollup/rollup-linux-loong64-musl@4.59.0':
8189
+ optional: true
8190
+
8191
+ '@rollup/rollup-linux-ppc64-gnu@4.59.0':
8192
+ optional: true
8193
+
8194
+ '@rollup/rollup-linux-ppc64-musl@4.59.0':
8195
+ optional: true
8196
+
8197
+ '@rollup/rollup-linux-riscv64-gnu@4.59.0':
8198
+ optional: true
8199
+
8200
+ '@rollup/rollup-linux-riscv64-musl@4.59.0':
8201
+ optional: true
8202
+
8203
+ '@rollup/rollup-linux-s390x-gnu@4.59.0':
8204
+ optional: true
8205
+
8206
+ '@rollup/rollup-linux-x64-gnu@4.59.0':
8207
+ optional: true
8208
+
8209
+ '@rollup/rollup-linux-x64-musl@4.59.0':
8210
+ optional: true
8211
+
8212
+ '@rollup/rollup-openbsd-x64@4.59.0':
8213
+ optional: true
8214
+
8215
+ '@rollup/rollup-openharmony-arm64@4.59.0':
8216
+ optional: true
8217
+
8218
+ '@rollup/rollup-win32-arm64-msvc@4.59.0':
8219
+ optional: true
8220
+
8221
+ '@rollup/rollup-win32-ia32-msvc@4.59.0':
8222
+ optional: true
8223
+
8224
+ '@rollup/rollup-win32-x64-gnu@4.59.0':
8225
+ optional: true
8226
+
8227
+ '@rollup/rollup-win32-x64-msvc@4.59.0':
8228
+ optional: true
8229
+
7360
8230
  '@rtsao/scc@1.1.0': {}
7361
8231
 
7362
8232
  '@sec-ant/readable-stream@0.4.1': {}
@@ -7703,6 +8573,44 @@ snapshots:
7703
8573
 
7704
8574
  '@standard-schema/utils@0.3.0': {}
7705
8575
 
8576
+ '@supabase/auth-js@2.95.3':
8577
+ dependencies:
8578
+ tslib: 2.8.1
8579
+
8580
+ '@supabase/functions-js@2.95.3':
8581
+ dependencies:
8582
+ tslib: 2.8.1
8583
+
8584
+ '@supabase/postgrest-js@2.95.3':
8585
+ dependencies:
8586
+ tslib: 2.8.1
8587
+
8588
+ '@supabase/realtime-js@2.95.3':
8589
+ dependencies:
8590
+ '@types/phoenix': 1.6.7
8591
+ '@types/ws': 8.18.1
8592
+ tslib: 2.8.1
8593
+ ws: 8.19.0
8594
+ transitivePeerDependencies:
8595
+ - bufferutil
8596
+ - utf-8-validate
8597
+
8598
+ '@supabase/storage-js@2.95.3':
8599
+ dependencies:
8600
+ iceberg-js: 0.8.1
8601
+ tslib: 2.8.1
8602
+
8603
+ '@supabase/supabase-js@2.95.3':
8604
+ dependencies:
8605
+ '@supabase/auth-js': 2.95.3
8606
+ '@supabase/functions-js': 2.95.3
8607
+ '@supabase/postgrest-js': 2.95.3
8608
+ '@supabase/realtime-js': 2.95.3
8609
+ '@supabase/storage-js': 2.95.3
8610
+ transitivePeerDependencies:
8611
+ - bufferutil
8612
+ - utf-8-validate
8613
+
7706
8614
  '@swc/helpers@0.5.15':
7707
8615
  dependencies:
7708
8616
  tslib: 2.8.1
@@ -7833,6 +8741,14 @@ snapshots:
7833
8741
 
7834
8742
  '@types/parse-json@4.0.2': {}
7835
8743
 
8744
+ '@types/pg@8.16.0':
8745
+ dependencies:
8746
+ '@types/node': 20.19.30
8747
+ pg-protocol: 1.11.0
8748
+ pg-types: 2.2.0
8749
+
8750
+ '@types/phoenix@1.6.7': {}
8751
+
7836
8752
  '@types/react-dom@19.2.3(@types/react@19.2.10)':
7837
8753
  dependencies:
7838
8754
  '@types/react': 19.2.10
@@ -7851,6 +8767,10 @@ snapshots:
7851
8767
 
7852
8768
  '@types/validate-npm-package-name@4.0.2': {}
7853
8769
 
8770
+ '@types/ws@8.18.1':
8771
+ dependencies:
8772
+ '@types/node': 20.19.30
8773
+
7854
8774
  '@typescript-eslint/eslint-plugin@8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
7855
8775
  dependencies:
7856
8776
  '@eslint-community/regexpp': 4.12.2
@@ -8096,6 +9016,8 @@ snapshots:
8096
9016
 
8097
9017
  acorn@8.15.0: {}
8098
9018
 
9019
+ acorn@8.16.0: {}
9020
+
8099
9021
  address@1.2.2: {}
8100
9022
 
8101
9023
  agent-base@7.1.4: {}
@@ -8143,6 +9065,8 @@ snapshots:
8143
9065
 
8144
9066
  ansis@4.2.0: {}
8145
9067
 
9068
+ any-promise@1.3.0: {}
9069
+
8146
9070
  anymatch@3.1.3:
8147
9071
  dependencies:
8148
9072
  normalize-path: 3.0.0
@@ -8309,8 +9233,15 @@ snapshots:
8309
9233
  dependencies:
8310
9234
  run-applescript: 7.1.0
8311
9235
 
9236
+ bundle-require@5.1.0(esbuild@0.27.3):
9237
+ dependencies:
9238
+ esbuild: 0.27.3
9239
+ load-tsconfig: 0.2.5
9240
+
8312
9241
  bytes@3.1.2: {}
8313
9242
 
9243
+ cac@6.7.14: {}
9244
+
8314
9245
  call-bind-apply-helpers@1.0.2:
8315
9246
  dependencies:
8316
9247
  es-errors: 1.3.0
@@ -8353,6 +9284,10 @@ snapshots:
8353
9284
  optionalDependencies:
8354
9285
  fsevents: 2.3.3
8355
9286
 
9287
+ chokidar@4.0.3:
9288
+ dependencies:
9289
+ readdirp: 4.1.2
9290
+
8356
9291
  chrome-trace-event@1.0.4: {}
8357
9292
 
8358
9293
  class-variance-authority@0.7.1:
@@ -8365,8 +9300,6 @@ snapshots:
8365
9300
 
8366
9301
  cli-spinners@2.9.2: {}
8367
9302
 
8368
- cli-spinners@3.4.0: {}
8369
-
8370
9303
  cli-width@4.1.0: {}
8371
9304
 
8372
9305
  client-only@0.0.1: {}
@@ -8409,8 +9342,14 @@ snapshots:
8409
9342
 
8410
9343
  commander@2.20.3: {}
8411
9344
 
9345
+ commander@4.1.1: {}
9346
+
8412
9347
  concat-map@0.0.1: {}
8413
9348
 
9349
+ confbox@0.1.8: {}
9350
+
9351
+ consola@3.4.2: {}
9352
+
8414
9353
  console-table-printer@2.15.0:
8415
9354
  dependencies:
8416
9355
  simple-wcswidth: 1.1.2
@@ -8449,56 +9388,22 @@ snapshots:
8449
9388
  optionalDependencies:
8450
9389
  typescript: 5.9.3
8451
9390
 
8452
- coze-coding-dev-sdk@0.7.4(openai@6.16.0(zod@4.3.6)):
9391
+ coze-coding-dev-sdk@0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.6))(ws@8.19.0):
8453
9392
  dependencies:
8454
- '@aws-sdk/client-s3': 3.975.0
8455
- '@aws-sdk/lib-storage': 3.975.0(@aws-sdk/client-s3@3.975.0)
8456
- '@langchain/core': 1.1.17(openai@6.16.0(zod@4.3.6))
8457
- '@langchain/openai': 1.2.3(@langchain/core@1.1.17(openai@6.16.0(zod@4.3.6)))
9393
+ '@langchain/core': 1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6))
9394
+ '@langchain/openai': 1.2.3(@langchain/core@1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6)))(ws@8.19.0)
9395
+ '@supabase/supabase-js': 2.95.3
8458
9396
  axios: 1.13.4
8459
- chalk: 5.6.2
8460
- commander: 14.0.2
8461
- drizzle-kit: 0.31.8
8462
- drizzle-orm: 0.45.1(pg@8.17.2)
8463
- ora: 9.1.0
8464
9397
  pg: 8.17.2
8465
- transliteration: 2.6.1
8466
9398
  transitivePeerDependencies:
8467
- - '@aws-sdk/client-rds-data'
8468
- - '@cloudflare/workers-types'
8469
- - '@electric-sql/pglite'
8470
- - '@libsql/client'
8471
- - '@libsql/client-wasm'
8472
- - '@neondatabase/serverless'
8473
- - '@op-engineering/op-sqlite'
8474
9399
  - '@opentelemetry/api'
8475
9400
  - '@opentelemetry/exporter-trace-otlp-proto'
8476
9401
  - '@opentelemetry/sdk-trace-base'
8477
- - '@planetscale/database'
8478
- - '@prisma/client'
8479
- - '@tidbcloud/serverless'
8480
- - '@types/better-sqlite3'
8481
- - '@types/pg'
8482
- - '@types/sql.js'
8483
- - '@upstash/redis'
8484
- - '@vercel/postgres'
8485
- - '@xata.io/client'
8486
- - aws-crt
8487
- - better-sqlite3
8488
- - bun-types
9402
+ - bufferutil
8489
9403
  - debug
8490
- - expo-sqlite
8491
- - gel
8492
- - knex
8493
- - kysely
8494
- - mysql2
8495
9404
  - openai
8496
9405
  - pg-native
8497
- - postgres
8498
- - prisma
8499
- - sql.js
8500
- - sqlite3
8501
- - supports-color
9406
+ - utf-8-validate
8502
9407
  - ws
8503
9408
 
8504
9409
  cross-spawn@7.0.6:
@@ -8661,10 +9566,16 @@ snapshots:
8661
9566
  transitivePeerDependencies:
8662
9567
  - supports-color
8663
9568
 
8664
- drizzle-orm@0.45.1(pg@8.17.2):
9569
+ drizzle-orm@0.45.1(@types/pg@8.16.0)(pg@8.17.2):
8665
9570
  optionalDependencies:
9571
+ '@types/pg': 8.16.0
8666
9572
  pg: 8.17.2
8667
9573
 
9574
+ drizzle-zod@0.8.3(drizzle-orm@0.45.1(@types/pg@8.16.0)(pg@8.17.2))(zod@4.3.6):
9575
+ dependencies:
9576
+ drizzle-orm: 0.45.1(@types/pg@8.16.0)(pg@8.17.2)
9577
+ zod: 4.3.6
9578
+
8668
9579
  dunder-proto@1.0.1:
8669
9580
  dependencies:
8670
9581
  call-bind-apply-helpers: 1.0.2
@@ -8825,6 +9736,31 @@ snapshots:
8825
9736
  transitivePeerDependencies:
8826
9737
  - supports-color
8827
9738
 
9739
+ esbuild@0.18.20:
9740
+ optionalDependencies:
9741
+ '@esbuild/android-arm': 0.18.20
9742
+ '@esbuild/android-arm64': 0.18.20
9743
+ '@esbuild/android-x64': 0.18.20
9744
+ '@esbuild/darwin-arm64': 0.18.20
9745
+ '@esbuild/darwin-x64': 0.18.20
9746
+ '@esbuild/freebsd-arm64': 0.18.20
9747
+ '@esbuild/freebsd-x64': 0.18.20
9748
+ '@esbuild/linux-arm': 0.18.20
9749
+ '@esbuild/linux-arm64': 0.18.20
9750
+ '@esbuild/linux-ia32': 0.18.20
9751
+ '@esbuild/linux-loong64': 0.18.20
9752
+ '@esbuild/linux-mips64el': 0.18.20
9753
+ '@esbuild/linux-ppc64': 0.18.20
9754
+ '@esbuild/linux-riscv64': 0.18.20
9755
+ '@esbuild/linux-s390x': 0.18.20
9756
+ '@esbuild/linux-x64': 0.18.20
9757
+ '@esbuild/netbsd-x64': 0.18.20
9758
+ '@esbuild/openbsd-x64': 0.18.20
9759
+ '@esbuild/sunos-x64': 0.18.20
9760
+ '@esbuild/win32-arm64': 0.18.20
9761
+ '@esbuild/win32-ia32': 0.18.20
9762
+ '@esbuild/win32-x64': 0.18.20
9763
+
8828
9764
  esbuild@0.25.12:
8829
9765
  optionalDependencies:
8830
9766
  '@esbuild/aix-ppc64': 0.25.12
@@ -8854,6 +9790,35 @@ snapshots:
8854
9790
  '@esbuild/win32-ia32': 0.25.12
8855
9791
  '@esbuild/win32-x64': 0.25.12
8856
9792
 
9793
+ esbuild@0.27.3:
9794
+ optionalDependencies:
9795
+ '@esbuild/aix-ppc64': 0.27.3
9796
+ '@esbuild/android-arm': 0.27.3
9797
+ '@esbuild/android-arm64': 0.27.3
9798
+ '@esbuild/android-x64': 0.27.3
9799
+ '@esbuild/darwin-arm64': 0.27.3
9800
+ '@esbuild/darwin-x64': 0.27.3
9801
+ '@esbuild/freebsd-arm64': 0.27.3
9802
+ '@esbuild/freebsd-x64': 0.27.3
9803
+ '@esbuild/linux-arm': 0.27.3
9804
+ '@esbuild/linux-arm64': 0.27.3
9805
+ '@esbuild/linux-ia32': 0.27.3
9806
+ '@esbuild/linux-loong64': 0.27.3
9807
+ '@esbuild/linux-mips64el': 0.27.3
9808
+ '@esbuild/linux-ppc64': 0.27.3
9809
+ '@esbuild/linux-riscv64': 0.27.3
9810
+ '@esbuild/linux-s390x': 0.27.3
9811
+ '@esbuild/linux-x64': 0.27.3
9812
+ '@esbuild/netbsd-arm64': 0.27.3
9813
+ '@esbuild/netbsd-x64': 0.27.3
9814
+ '@esbuild/openbsd-arm64': 0.27.3
9815
+ '@esbuild/openbsd-x64': 0.27.3
9816
+ '@esbuild/openharmony-arm64': 0.27.3
9817
+ '@esbuild/sunos-x64': 0.27.3
9818
+ '@esbuild/win32-arm64': 0.27.3
9819
+ '@esbuild/win32-ia32': 0.27.3
9820
+ '@esbuild/win32-x64': 0.27.3
9821
+
8857
9822
  escalade@3.2.0: {}
8858
9823
 
8859
9824
  escape-html@1.0.3: {}
@@ -9225,6 +10190,12 @@ snapshots:
9225
10190
  locate-path: 6.0.0
9226
10191
  path-exists: 4.0.0
9227
10192
 
10193
+ fix-dts-default-cjs-exports@1.0.1:
10194
+ dependencies:
10195
+ magic-string: 0.30.21
10196
+ mlly: 1.8.1
10197
+ rollup: 4.59.0
10198
+
9228
10199
  flat-cache@4.0.1:
9229
10200
  dependencies:
9230
10201
  flatted: 3.3.3
@@ -9468,6 +10439,8 @@ snapshots:
9468
10439
 
9469
10440
  human-signals@8.0.1: {}
9470
10441
 
10442
+ iceberg-js@0.8.1: {}
10443
+
9471
10444
  iconv-lite@0.7.2:
9472
10445
  dependencies:
9473
10446
  safer-buffer: 2.1.2
@@ -9696,6 +10669,8 @@ snapshots:
9696
10669
 
9697
10670
  jose@6.1.3: {}
9698
10671
 
10672
+ joycon@3.1.1: {}
10673
+
9699
10674
  js-tiktoken@1.0.21:
9700
10675
  dependencies:
9701
10676
  base64-js: 1.5.1
@@ -9749,7 +10724,7 @@ snapshots:
9749
10724
 
9750
10725
  kleur@4.1.5: {}
9751
10726
 
9752
- langsmith@0.4.9(openai@6.16.0(zod@4.3.6)):
10727
+ langsmith@0.4.9(openai@6.16.0(ws@8.19.0)(zod@4.3.6)):
9753
10728
  dependencies:
9754
10729
  '@types/uuid': 10.0.0
9755
10730
  chalk: 4.1.2
@@ -9758,7 +10733,7 @@ snapshots:
9758
10733
  semver: 7.7.3
9759
10734
  uuid: 10.0.0
9760
10735
  optionalDependencies:
9761
- openai: 6.16.0(zod@4.3.6)
10736
+ openai: 6.16.0(ws@8.19.0)(zod@4.3.6)
9762
10737
 
9763
10738
  language-subtag-registry@0.3.23: {}
9764
10739
 
@@ -9820,8 +10795,12 @@ snapshots:
9820
10795
  lightningcss-win32-arm64-msvc: 1.30.2
9821
10796
  lightningcss-win32-x64-msvc: 1.30.2
9822
10797
 
10798
+ lilconfig@3.1.3: {}
10799
+
9823
10800
  lines-and-columns@1.2.4: {}
9824
10801
 
10802
+ load-tsconfig@0.2.5: {}
10803
+
9825
10804
  loader-runner@4.3.1: {}
9826
10805
 
9827
10806
  loader-utils@3.3.1: {}
@@ -9844,11 +10823,6 @@ snapshots:
9844
10823
  chalk: 5.6.2
9845
10824
  is-unicode-supported: 1.3.0
9846
10825
 
9847
- log-symbols@7.0.1:
9848
- dependencies:
9849
- is-unicode-supported: 2.1.0
9850
- yoctocolors: 2.1.2
9851
-
9852
10826
  loose-envify@1.4.0:
9853
10827
  dependencies:
9854
10828
  js-tokens: 4.0.0
@@ -9914,6 +10888,13 @@ snapshots:
9914
10888
 
9915
10889
  minimist@1.2.8: {}
9916
10890
 
10891
+ mlly@1.8.1:
10892
+ dependencies:
10893
+ acorn: 8.16.0
10894
+ pathe: 2.0.3
10895
+ pkg-types: 1.3.1
10896
+ ufo: 1.6.3
10897
+
9917
10898
  ms@2.0.0: {}
9918
10899
 
9919
10900
  ms@2.1.3: {}
@@ -9947,6 +10928,12 @@ snapshots:
9947
10928
 
9948
10929
  mute-stream@2.0.0: {}
9949
10930
 
10931
+ mz@2.7.0:
10932
+ dependencies:
10933
+ any-promise: 1.3.0
10934
+ object-assign: 4.1.1
10935
+ thenify-all: 1.6.0
10936
+
9950
10937
  nanoid@3.3.11: {}
9951
10938
 
9952
10939
  napi-postinstall@0.3.4: {}
@@ -10086,8 +11073,9 @@ snapshots:
10086
11073
  is-docker: 2.2.1
10087
11074
  is-wsl: 2.2.0
10088
11075
 
10089
- openai@6.16.0(zod@4.3.6):
11076
+ openai@6.16.0(ws@8.19.0)(zod@4.3.6):
10090
11077
  optionalDependencies:
11078
+ ws: 8.19.0
10091
11079
  zod: 4.3.6
10092
11080
 
10093
11081
  optionator@0.9.4:
@@ -10111,17 +11099,6 @@ snapshots:
10111
11099
  string-width: 7.2.0
10112
11100
  strip-ansi: 7.1.2
10113
11101
 
10114
- ora@9.1.0:
10115
- dependencies:
10116
- chalk: 5.6.2
10117
- cli-cursor: 5.0.0
10118
- cli-spinners: 3.4.0
10119
- is-interactive: 2.0.0
10120
- is-unicode-supported: 2.1.0
10121
- log-symbols: 7.0.1
10122
- stdin-discarder: 0.2.2
10123
- string-width: 8.1.0
10124
-
10125
11102
  outvariant@1.4.3: {}
10126
11103
 
10127
11104
  own-keys@1.0.1:
@@ -10196,8 +11173,7 @@ snapshots:
10196
11173
 
10197
11174
  path-type@4.0.0: {}
10198
11175
 
10199
- pg-cloudflare@1.3.0:
10200
- optional: true
11176
+ pathe@2.0.3: {}
10201
11177
 
10202
11178
  pg-connection-string@2.10.1: {}
10203
11179
 
@@ -10224,8 +11200,6 @@ snapshots:
10224
11200
  pg-protocol: 1.11.0
10225
11201
  pg-types: 2.2.0
10226
11202
  pgpass: 1.0.5
10227
- optionalDependencies:
10228
- pg-cloudflare: 1.3.0
10229
11203
 
10230
11204
  pgpass@1.0.5:
10231
11205
  dependencies:
@@ -10239,14 +11213,31 @@ snapshots:
10239
11213
 
10240
11214
  picomatch@4.0.3: {}
10241
11215
 
11216
+ pirates@4.0.7: {}
11217
+
10242
11218
  pkce-challenge@5.0.1: {}
10243
11219
 
11220
+ pkg-types@1.3.1:
11221
+ dependencies:
11222
+ confbox: 0.1.8
11223
+ mlly: 1.8.1
11224
+ pathe: 2.0.3
11225
+
10244
11226
  pkg-up@3.1.0:
10245
11227
  dependencies:
10246
11228
  find-up: 3.0.0
10247
11229
 
10248
11230
  possible-typed-array-names@1.1.0: {}
10249
11231
 
11232
+ postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(yaml@1.10.2):
11233
+ dependencies:
11234
+ lilconfig: 3.1.3
11235
+ optionalDependencies:
11236
+ jiti: 2.6.1
11237
+ postcss: 8.5.6
11238
+ tsx: 4.21.0
11239
+ yaml: 1.10.2
11240
+
10250
11241
  postcss-selector-parser@7.1.1:
10251
11242
  dependencies:
10252
11243
  cssesc: 3.0.0
@@ -10458,6 +11449,8 @@ snapshots:
10458
11449
  dependencies:
10459
11450
  picomatch: 2.3.1
10460
11451
 
11452
+ readdirp@4.1.2: {}
11453
+
10461
11454
  recast@0.23.11:
10462
11455
  dependencies:
10463
11456
  ast-types: 0.16.1
@@ -10513,6 +11506,8 @@ snapshots:
10513
11506
 
10514
11507
  resolve-from@4.0.0: {}
10515
11508
 
11509
+ resolve-from@5.0.0: {}
11510
+
10516
11511
  resolve-pkg-maps@1.0.0: {}
10517
11512
 
10518
11513
  resolve@1.22.11:
@@ -10536,6 +11531,37 @@ snapshots:
10536
11531
 
10537
11532
  reusify@1.1.0: {}
10538
11533
 
11534
+ rollup@4.59.0:
11535
+ dependencies:
11536
+ '@types/estree': 1.0.8
11537
+ optionalDependencies:
11538
+ '@rollup/rollup-android-arm-eabi': 4.59.0
11539
+ '@rollup/rollup-android-arm64': 4.59.0
11540
+ '@rollup/rollup-darwin-arm64': 4.59.0
11541
+ '@rollup/rollup-darwin-x64': 4.59.0
11542
+ '@rollup/rollup-freebsd-arm64': 4.59.0
11543
+ '@rollup/rollup-freebsd-x64': 4.59.0
11544
+ '@rollup/rollup-linux-arm-gnueabihf': 4.59.0
11545
+ '@rollup/rollup-linux-arm-musleabihf': 4.59.0
11546
+ '@rollup/rollup-linux-arm64-gnu': 4.59.0
11547
+ '@rollup/rollup-linux-arm64-musl': 4.59.0
11548
+ '@rollup/rollup-linux-loong64-gnu': 4.59.0
11549
+ '@rollup/rollup-linux-loong64-musl': 4.59.0
11550
+ '@rollup/rollup-linux-ppc64-gnu': 4.59.0
11551
+ '@rollup/rollup-linux-ppc64-musl': 4.59.0
11552
+ '@rollup/rollup-linux-riscv64-gnu': 4.59.0
11553
+ '@rollup/rollup-linux-riscv64-musl': 4.59.0
11554
+ '@rollup/rollup-linux-s390x-gnu': 4.59.0
11555
+ '@rollup/rollup-linux-x64-gnu': 4.59.0
11556
+ '@rollup/rollup-linux-x64-musl': 4.59.0
11557
+ '@rollup/rollup-openbsd-x64': 4.59.0
11558
+ '@rollup/rollup-openharmony-arm64': 4.59.0
11559
+ '@rollup/rollup-win32-arm64-msvc': 4.59.0
11560
+ '@rollup/rollup-win32-ia32-msvc': 4.59.0
11561
+ '@rollup/rollup-win32-x64-gnu': 4.59.0
11562
+ '@rollup/rollup-win32-x64-msvc': 4.59.0
11563
+ fsevents: 2.3.3
11564
+
10539
11565
  router@2.2.0:
10540
11566
  dependencies:
10541
11567
  debug: 4.4.3
@@ -10783,6 +11809,8 @@ snapshots:
10783
11809
 
10784
11810
  source-map@0.6.1: {}
10785
11811
 
11812
+ source-map@0.7.6: {}
11813
+
10786
11814
  split2@4.2.0: {}
10787
11815
 
10788
11816
  stable-hash@0.0.5: {}
@@ -10815,11 +11843,6 @@ snapshots:
10815
11843
  get-east-asian-width: 1.4.0
10816
11844
  strip-ansi: 7.1.2
10817
11845
 
10818
- string-width@8.1.0:
10819
- dependencies:
10820
- get-east-asian-width: 1.4.0
10821
- strip-ansi: 7.1.2
10822
-
10823
11846
  string.prototype.includes@2.0.1:
10824
11847
  dependencies:
10825
11848
  call-bind: 1.0.8
@@ -10905,6 +11928,16 @@ snapshots:
10905
11928
  optionalDependencies:
10906
11929
  '@babel/core': 7.28.6
10907
11930
 
11931
+ sucrase@3.35.1:
11932
+ dependencies:
11933
+ '@jridgewell/gen-mapping': 0.3.13
11934
+ commander: 4.1.1
11935
+ lines-and-columns: 1.2.4
11936
+ mz: 2.7.0
11937
+ pirates: 4.0.7
11938
+ tinyglobby: 0.2.15
11939
+ ts-interface-checker: 0.1.13
11940
+
10908
11941
  supports-color@7.2.0:
10909
11942
  dependencies:
10910
11943
  has-flag: 4.0.0
@@ -10945,8 +11978,18 @@ snapshots:
10945
11978
 
10946
11979
  text-table@0.2.0: {}
10947
11980
 
11981
+ thenify-all@1.6.0:
11982
+ dependencies:
11983
+ thenify: 3.3.1
11984
+
11985
+ thenify@3.3.1:
11986
+ dependencies:
11987
+ any-promise: 1.3.0
11988
+
10948
11989
  tiny-invariant@1.3.3: {}
10949
11990
 
11991
+ tinyexec@0.3.2: {}
11992
+
10950
11993
  tinyexec@1.0.2: {}
10951
11994
 
10952
11995
  tinyglobby@0.2.15:
@@ -10972,12 +12015,14 @@ snapshots:
10972
12015
  dependencies:
10973
12016
  tldts: 7.0.19
10974
12017
 
10975
- transliteration@2.6.1: {}
12018
+ tree-kill@1.2.2: {}
10976
12019
 
10977
12020
  ts-api-utils@2.4.0(typescript@5.9.3):
10978
12021
  dependencies:
10979
12022
  typescript: 5.9.3
10980
12023
 
12024
+ ts-interface-checker@0.1.13: {}
12025
+
10981
12026
  ts-morph@26.0.0:
10982
12027
  dependencies:
10983
12028
  '@ts-morph/common': 0.27.0
@@ -10998,6 +12043,41 @@ snapshots:
10998
12043
 
10999
12044
  tslib@2.8.1: {}
11000
12045
 
12046
+ tsup@8.5.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@1.10.2):
12047
+ dependencies:
12048
+ bundle-require: 5.1.0(esbuild@0.27.3)
12049
+ cac: 6.7.14
12050
+ chokidar: 4.0.3
12051
+ consola: 3.4.2
12052
+ debug: 4.4.3
12053
+ esbuild: 0.27.3
12054
+ fix-dts-default-cjs-exports: 1.0.1
12055
+ joycon: 3.1.1
12056
+ picocolors: 1.1.1
12057
+ postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(yaml@1.10.2)
12058
+ resolve-from: 5.0.0
12059
+ rollup: 4.59.0
12060
+ source-map: 0.7.6
12061
+ sucrase: 3.35.1
12062
+ tinyexec: 0.3.2
12063
+ tinyglobby: 0.2.15
12064
+ tree-kill: 1.2.2
12065
+ optionalDependencies:
12066
+ postcss: 8.5.6
12067
+ typescript: 5.9.3
12068
+ transitivePeerDependencies:
12069
+ - jiti
12070
+ - supports-color
12071
+ - tsx
12072
+ - yaml
12073
+
12074
+ tsx@4.21.0:
12075
+ dependencies:
12076
+ esbuild: 0.27.3
12077
+ get-tsconfig: 4.13.0
12078
+ optionalDependencies:
12079
+ fsevents: 2.3.3
12080
+
11001
12081
  tw-animate-css@1.4.0: {}
11002
12082
 
11003
12083
  type-check@0.4.0:
@@ -11060,6 +12140,8 @@ snapshots:
11060
12140
 
11061
12141
  typescript@5.9.3: {}
11062
12142
 
12143
+ ufo@1.6.3: {}
12144
+
11063
12145
  unbox-primitive@1.1.0:
11064
12146
  dependencies:
11065
12147
  call-bound: 1.0.4
@@ -11276,6 +12358,8 @@ snapshots:
11276
12358
 
11277
12359
  wrappy@1.0.2: {}
11278
12360
 
12361
+ ws@8.19.0: {}
12362
+
11279
12363
  wsl-utils@0.3.1:
11280
12364
  dependencies:
11281
12365
  is-wsl: 3.1.0