@coze-arch/cli 0.0.1-alpha.af8805 → 0.0.1-alpha.afbc41

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 (153) hide show
  1. package/README.md +1 -0
  2. package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +1 -1
  3. package/lib/__templates__/expo/client/components/Screen.tsx +2 -2
  4. package/lib/__templates__/expo/client/eslint.config.mjs +7 -0
  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/scripts/install-missing-deps.js +10 -10
  8. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
  9. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
  10. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
  11. package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/index.js +9 -0
  12. package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/rule.js +120 -0
  13. package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/tech.md +58 -0
  14. package/lib/__templates__/expo/package.json +1 -1
  15. package/lib/__templates__/expo/pnpm-lock.yaml +394 -221
  16. package/lib/__templates__/expo/server/package.json +9 -7
  17. package/lib/__templates__/expo/server/src/index.ts +1 -0
  18. package/lib/__templates__/expo/template.config.js +56 -0
  19. package/lib/__templates__/native-static/.coze +11 -0
  20. package/lib/__templates__/native-static/index.html +33 -0
  21. package/lib/__templates__/native-static/styles/main.css +136 -0
  22. package/lib/__templates__/native-static/template.config.js +22 -0
  23. package/lib/__templates__/nextjs/README.md +5 -0
  24. package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
  25. package/lib/__templates__/nextjs/next.config.ts +1 -2
  26. package/lib/__templates__/nextjs/package.json +5 -6
  27. package/lib/__templates__/nextjs/pnpm-lock.yaml +1145 -109
  28. package/lib/__templates__/nextjs/scripts/build.sh +4 -1
  29. package/lib/__templates__/nextjs/scripts/dev.sh +8 -2
  30. package/lib/__templates__/nextjs/scripts/start.sh +7 -1
  31. package/lib/__templates__/nextjs/src/app/layout.tsx +1 -1
  32. package/lib/__templates__/nextjs/src/app/page.tsx +4 -3
  33. package/lib/__templates__/nextjs/src/server.ts +35 -0
  34. package/lib/__templates__/nextjs/tsconfig.json +1 -1
  35. package/lib/__templates__/nuxt-vue/.coze +12 -0
  36. package/lib/__templates__/nuxt-vue/README.md +73 -0
  37. package/lib/__templates__/nuxt-vue/_gitignore +24 -0
  38. package/lib/__templates__/nuxt-vue/_npmrc +23 -0
  39. package/lib/__templates__/nuxt-vue/app/app.vue +6 -0
  40. package/lib/__templates__/nuxt-vue/app/pages/index.vue +23 -0
  41. package/lib/__templates__/nuxt-vue/assets/css/main.css +24 -0
  42. package/lib/__templates__/nuxt-vue/nuxt.config.ts +116 -0
  43. package/lib/__templates__/nuxt-vue/package.json +35 -0
  44. package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +8759 -0
  45. package/lib/__templates__/nuxt-vue/postcss.config.mjs +8 -0
  46. package/lib/__templates__/nuxt-vue/public/favicon.ico +0 -0
  47. package/lib/__templates__/nuxt-vue/public/robots.txt +2 -0
  48. package/lib/__templates__/nuxt-vue/scripts/build.sh +14 -0
  49. package/lib/__templates__/nuxt-vue/scripts/dev.sh +39 -0
  50. package/lib/__templates__/nuxt-vue/scripts/prepare.sh +14 -0
  51. package/lib/__templates__/nuxt-vue/scripts/start.sh +21 -0
  52. package/lib/__templates__/nuxt-vue/server/api/hello.ts +10 -0
  53. package/lib/__templates__/nuxt-vue/server/middleware/logger.ts +10 -0
  54. package/lib/__templates__/nuxt-vue/server/routes/health.ts +10 -0
  55. package/lib/__templates__/nuxt-vue/tailwind.config.js +13 -0
  56. package/lib/__templates__/nuxt-vue/template.config.js +87 -0
  57. package/lib/__templates__/nuxt-vue/tsconfig.json +18 -0
  58. package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.sh +2 -2
  59. package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.sh +4 -3
  60. package/lib/__templates__/taro/.cozeproj/scripts/dev_build.sh +0 -15
  61. package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +117 -24
  62. package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +24 -1
  63. package/lib/__templates__/taro/README.md +138 -62
  64. package/lib/__templates__/taro/config/index.ts +106 -41
  65. package/lib/__templates__/taro/config/prod.ts +4 -5
  66. package/lib/__templates__/taro/eslint.config.mjs +82 -4
  67. package/lib/__templates__/taro/package.json +23 -6
  68. package/lib/__templates__/taro/patches/@tarojs__plugin-mini-ci@4.1.9.patch +30 -0
  69. package/lib/__templates__/taro/pnpm-lock.yaml +1293 -311
  70. package/lib/__templates__/taro/server/package.json +3 -1
  71. package/lib/__templates__/taro/server/src/main.ts +14 -2
  72. package/lib/__templates__/taro/src/app.css +141 -37
  73. package/lib/__templates__/taro/src/app.tsx +9 -0
  74. package/lib/__templates__/taro/src/components/ui/accordion.tsx +159 -0
  75. package/lib/__templates__/taro/src/components/ui/alert-dialog.tsx +260 -0
  76. package/lib/__templates__/taro/src/components/ui/alert.tsx +60 -0
  77. package/lib/__templates__/taro/src/components/ui/aspect-ratio.tsx +36 -0
  78. package/lib/__templates__/taro/src/components/ui/avatar.tsx +84 -0
  79. package/lib/__templates__/taro/src/components/ui/badge.tsx +37 -0
  80. package/lib/__templates__/taro/src/components/ui/breadcrumb.tsx +117 -0
  81. package/lib/__templates__/taro/src/components/ui/button-group.tsx +83 -0
  82. package/lib/__templates__/taro/src/components/ui/button.tsx +67 -0
  83. package/lib/__templates__/taro/src/components/ui/calendar.tsx +394 -0
  84. package/lib/__templates__/taro/src/components/ui/card.tsx +108 -0
  85. package/lib/__templates__/taro/src/components/ui/carousel.tsx +228 -0
  86. package/lib/__templates__/taro/src/components/ui/checkbox.tsx +58 -0
  87. package/lib/__templates__/taro/src/components/ui/code-block.tsx +169 -0
  88. package/lib/__templates__/taro/src/components/ui/collapsible.tsx +71 -0
  89. package/lib/__templates__/taro/src/components/ui/command.tsx +385 -0
  90. package/lib/__templates__/taro/src/components/ui/context-menu.tsx +614 -0
  91. package/lib/__templates__/taro/src/components/ui/dialog.tsx +256 -0
  92. package/lib/__templates__/taro/src/components/ui/drawer.tsx +192 -0
  93. package/lib/__templates__/taro/src/components/ui/dropdown-menu.tsx +561 -0
  94. package/lib/__templates__/taro/src/components/ui/field.tsx +228 -0
  95. package/lib/__templates__/taro/src/components/ui/hover-card.tsx +282 -0
  96. package/lib/__templates__/taro/src/components/ui/input-group.tsx +197 -0
  97. package/lib/__templates__/taro/src/components/ui/input-otp.tsx +136 -0
  98. package/lib/__templates__/taro/src/components/ui/input.tsx +56 -0
  99. package/lib/__templates__/taro/src/components/ui/label.tsx +24 -0
  100. package/lib/__templates__/taro/src/components/ui/menubar.tsx +595 -0
  101. package/lib/__templates__/taro/src/components/ui/navigation-menu.tsx +264 -0
  102. package/lib/__templates__/taro/src/components/ui/pagination.tsx +118 -0
  103. package/lib/__templates__/taro/src/components/ui/popover.tsx +291 -0
  104. package/lib/__templates__/taro/src/components/ui/portal.tsx +19 -0
  105. package/lib/__templates__/taro/src/components/ui/progress.tsx +28 -0
  106. package/lib/__templates__/taro/src/components/ui/radio-group.tsx +64 -0
  107. package/lib/__templates__/taro/src/components/ui/resizable.tsx +346 -0
  108. package/lib/__templates__/taro/src/components/ui/scroll-area.tsx +34 -0
  109. package/lib/__templates__/taro/src/components/ui/select.tsx +438 -0
  110. package/lib/__templates__/taro/src/components/ui/separator.tsx +30 -0
  111. package/lib/__templates__/taro/src/components/ui/sheet.tsx +262 -0
  112. package/lib/__templates__/taro/src/components/ui/skeleton.tsx +17 -0
  113. package/lib/__templates__/taro/src/components/ui/slider.tsx +203 -0
  114. package/lib/__templates__/taro/src/components/ui/sonner.tsx +1 -0
  115. package/lib/__templates__/taro/src/components/ui/switch.tsx +55 -0
  116. package/lib/__templates__/taro/src/components/ui/table.tsx +142 -0
  117. package/lib/__templates__/taro/src/components/ui/tabs.tsx +114 -0
  118. package/lib/__templates__/taro/src/components/ui/textarea.tsx +54 -0
  119. package/lib/__templates__/taro/src/components/ui/toast.tsx +517 -0
  120. package/lib/__templates__/taro/src/components/ui/toggle-group.tsx +120 -0
  121. package/lib/__templates__/taro/src/components/ui/toggle.tsx +77 -0
  122. package/lib/__templates__/taro/src/components/ui/tooltip.tsx +455 -0
  123. package/lib/__templates__/taro/src/index.html +20 -1
  124. package/lib/__templates__/taro/src/lib/hooks/use-keyboard-offset.ts +37 -0
  125. package/lib/__templates__/taro/src/lib/measure.ts +115 -0
  126. package/lib/__templates__/taro/src/lib/platform.ts +12 -0
  127. package/lib/__templates__/taro/src/lib/utils.ts +6 -0
  128. package/lib/__templates__/taro/src/presets/dev-debug.ts +23 -0
  129. package/lib/__templates__/taro/src/presets/h5-container.tsx +15 -0
  130. package/lib/__templates__/taro/src/presets/h5-navbar.tsx +238 -0
  131. package/lib/__templates__/taro/src/presets/h5-styles.ts +220 -0
  132. package/lib/__templates__/taro/src/presets/index.tsx +18 -0
  133. package/lib/__templates__/templates.json +43 -0
  134. package/lib/__templates__/vite/README.md +190 -11
  135. package/lib/__templates__/vite/_gitignore +1 -0
  136. package/lib/__templates__/vite/eslint.config.mjs +6 -1
  137. package/lib/__templates__/vite/package.json +14 -3
  138. package/lib/__templates__/vite/pnpm-lock.yaml +820 -1593
  139. package/lib/__templates__/vite/scripts/build.sh +4 -1
  140. package/lib/__templates__/vite/scripts/dev.sh +9 -2
  141. package/lib/__templates__/vite/scripts/start.sh +9 -3
  142. package/lib/__templates__/vite/server/routes/index.ts +31 -0
  143. package/lib/__templates__/vite/server/server.ts +65 -0
  144. package/lib/__templates__/vite/server/vite.ts +67 -0
  145. package/lib/__templates__/vite/src/main.ts +2 -2
  146. package/lib/__templates__/vite/tsconfig.json +4 -3
  147. package/lib/__templates__/vite/vite.config.ts +5 -0
  148. package/lib/cli.js +123 -156
  149. package/package.json +7 -3
  150. package/lib/__templates__/taro/src/app.ts +0 -14
  151. package/lib/__templates__/taro/src/utils/h5-styles.ts +0 -22
  152. package/lib/__templates__/taro/src/utils/wx-debug.ts +0 -23
  153. /package/lib/__templates__/expo/patches/{expo@54.0.32.patch → expo@54.0.33.patch} +0 -0
@@ -4,6 +4,11 @@ settings:
4
4
  autoInstallPeers: true
5
5
  excludeLinksFromLockfile: false
6
6
 
7
+ patchedDependencies:
8
+ '@tarojs/plugin-mini-ci@4.1.9':
9
+ hash: j6dgmq33tuqqgowk7tjyyinctm
10
+ path: patches/@tarojs__plugin-mini-ci@4.1.9.patch
11
+
7
12
  importers:
8
13
 
9
14
  .:
@@ -13,16 +18,19 @@ importers:
13
18
  version: 7.28.4
14
19
  '@tarojs/components':
15
20
  specifier: 4.1.9
16
- version: 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
21
+ version: 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
17
22
  '@tarojs/helper':
18
23
  specifier: 4.1.9
19
24
  version: 4.1.9
20
25
  '@tarojs/plugin-framework-react':
21
26
  specifier: 4.1.9
22
- version: 4.1.9(@tarojs/helper@4.1.9)(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@vitejs/plugin-react@4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1)))(react@18.3.1)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1))(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
27
+ version: 4.1.9(@tarojs/helper@4.1.9)(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@vitejs/plugin-react@4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)))(react@18.3.1)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))(webpack@5.97.1(@swc/core@1.3.96))
23
28
  '@tarojs/plugin-platform-h5':
24
29
  specifier: 4.1.9
25
- version: 4.1.9(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@types/react@18.3.27)(postcss@8.5.6)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
30
+ version: 4.1.9(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@types/react@18.3.27)(postcss@8.5.6)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96))
31
+ '@tarojs/plugin-platform-tt':
32
+ specifier: 4.1.9
33
+ version: 4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)
26
34
  '@tarojs/plugin-platform-weapp':
27
35
  specifier: 4.1.9
28
36
  version: 4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)
@@ -37,19 +45,31 @@ importers:
37
45
  version: 4.1.9
38
46
  '@tarojs/taro':
39
47
  specifier: 4.1.9
40
- version: 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
41
- drizzle-kit:
42
- specifier: ^0.31.8
43
- version: 0.31.8
44
- lucide-react:
45
- specifier: ^0.511.0
46
- version: 0.511.0(react@18.3.1)
48
+ version: 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
49
+ class-variance-authority:
50
+ specifier: ^0.7.1
51
+ version: 0.7.1
52
+ clsx:
53
+ specifier: ^2.1.1
54
+ version: 2.1.1
55
+ date-fns:
56
+ specifier: ^4.1.0
57
+ version: 4.1.0
58
+ lucide-react-taro:
59
+ specifier: ^1.3.0
60
+ version: 1.3.0(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(react@18.3.1)
47
61
  react:
48
62
  specifier: ^18.0.0
49
63
  version: 18.3.1
50
64
  react-dom:
51
65
  specifier: ^18.0.0
52
66
  version: 18.3.1(react@18.3.1)
67
+ tailwind-merge:
68
+ specifier: ^3.5.0
69
+ version: 3.5.0
70
+ tailwindcss-animate:
71
+ specifier: ^1.0.7
72
+ version: 1.0.7(tailwindcss@4.1.18)
53
73
  zustand:
54
74
  specifier: ^5.0.9
55
75
  version: 5.0.9(@types/react@18.3.27)(react@18.3.1)
@@ -77,10 +97,10 @@ importers:
77
97
  version: 4.1.9(@types/node@22.19.6)
78
98
  '@tarojs/plugin-mini-ci':
79
99
  specifier: ^4.1.9
80
- version: 4.1.9(miniprogram-ci@2.1.26(eslint@8.57.1))
100
+ version: 4.1.9(patch_hash=j6dgmq33tuqqgowk7tjyyinctm)(miniprogram-ci@2.1.26(eslint@8.57.1))(tt-ide-cli@0.1.31(@types/node@22.19.6))
81
101
  '@tarojs/vite-runner':
82
102
  specifier: 4.1.9
83
- version: 4.1.9(@tarojs/runtime@4.1.9)(@types/babel__core@7.20.5)(jiti@2.6.1)(postcss@8.5.6)(rollup@3.29.5)(terser@5.44.1)(typescript@5.9.3)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1))
103
+ version: 4.1.9(@tarojs/runtime@4.1.9)(@types/babel__core@7.20.5)(jiti@2.6.1)(postcss@8.5.6)(rollup@3.29.5)(terser@5.44.1)(typescript@5.9.3)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))
84
104
  '@types/minimatch':
85
105
  specifier: ^5
86
106
  version: 5.1.2
@@ -89,7 +109,7 @@ importers:
89
109
  version: 18.3.27
90
110
  '@vitejs/plugin-react':
91
111
  specifier: ^4.3.0
92
- version: 4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1))
112
+ version: 4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))
93
113
  babel-preset-taro:
94
114
  specifier: 4.1.9
95
115
  version: 4.1.9(@babel/core@7.28.5)(@babel/plugin-transform-typescript@7.28.5(@babel/core@7.28.5))(@babel/preset-react@7.28.5(@babel/core@7.28.5))(react-refresh@0.14.2)
@@ -111,6 +131,9 @@ importers:
111
131
  eslint-plugin-react-hooks:
112
132
  specifier: ^4.4.0
113
133
  version: 4.6.2(eslint@8.57.1)
134
+ eslint-plugin-tailwindcss:
135
+ specifier: ^3.18.2
136
+ version: 3.18.2(tailwindcss@4.1.18)
114
137
  less:
115
138
  specifier: ^4.2.0
116
139
  version: 4.5.1
@@ -141,15 +164,18 @@ importers:
141
164
  terser:
142
165
  specifier: ^5.30.4
143
166
  version: 5.44.1
167
+ tt-ide-cli:
168
+ specifier: ^0.1.31
169
+ version: 0.1.31(@types/node@22.19.6)
144
170
  typescript:
145
171
  specifier: ^5.4.5
146
172
  version: 5.9.3
147
173
  vite:
148
174
  specifier: ^4.2.0
149
- version: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1)
175
+ version: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)
150
176
  weapp-tailwindcss:
151
- specifier: ^4.9.2
152
- version: 4.9.2(tailwindcss@4.1.18)
177
+ specifier: ^4.10.3
178
+ version: 4.10.3(tailwindcss@4.1.18)
153
179
 
154
180
  server:
155
181
  dependencies:
@@ -168,12 +194,18 @@ importers:
168
194
  '@nestjs/platform-express':
169
195
  specifier: ^10.4.15
170
196
  version: 10.4.20(@nestjs/common@10.4.20(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
197
+ '@supabase/supabase-js':
198
+ specifier: 2.95.3
199
+ version: 2.95.3
171
200
  better-sqlite3:
172
201
  specifier: ^11.9.1
173
202
  version: 11.10.0
174
203
  coze-coding-dev-sdk:
175
- specifier: ^0.7.3
176
- version: 0.7.3(@types/better-sqlite3@7.6.13)(better-sqlite3@11.10.0)(openai@6.16.0(zod@4.3.5))
204
+ specifier: ^0.7.16
205
+ version: 0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0)
206
+ dotenv:
207
+ specifier: ^17.2.3
208
+ version: 17.2.3
177
209
  drizzle-kit:
178
210
  specifier: ^0.31.8
179
211
  version: 0.31.8
@@ -423,6 +455,10 @@ packages:
423
455
  resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
424
456
  engines: {node: '>=6.9.0'}
425
457
 
458
+ '@babel/code-frame@7.29.0':
459
+ resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
460
+ engines: {node: '>=6.9.0'}
461
+
426
462
  '@babel/compat-data@7.22.9':
427
463
  resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
428
464
  engines: {node: '>=6.9.0'}
@@ -465,6 +501,10 @@ packages:
465
501
  resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
466
502
  engines: {node: '>=6.9.0'}
467
503
 
504
+ '@babel/generator@7.29.1':
505
+ resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
506
+ engines: {node: '>=6.9.0'}
507
+
468
508
  '@babel/helper-annotate-as-pure@7.22.5':
469
509
  resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
470
510
  engines: {node: '>=6.9.0'}
@@ -698,6 +738,11 @@ packages:
698
738
  engines: {node: '>=6.0.0'}
699
739
  hasBin: true
700
740
 
741
+ '@babel/parser@7.29.0':
742
+ resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
743
+ engines: {node: '>=6.0.0'}
744
+ hasBin: true
745
+
701
746
  '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5':
702
747
  resolution: {integrity: sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==}
703
748
  engines: {node: '>=6.9.0'}
@@ -1699,6 +1744,10 @@ packages:
1699
1744
  resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
1700
1745
  engines: {node: '>=6.9.0'}
1701
1746
 
1747
+ '@babel/template@7.28.6':
1748
+ resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
1749
+ engines: {node: '>=6.9.0'}
1750
+
1702
1751
  '@babel/traverse@7.21.4':
1703
1752
  resolution: {integrity: sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==}
1704
1753
  engines: {node: '>=6.9.0'}
@@ -1711,6 +1760,10 @@ packages:
1711
1760
  resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
1712
1761
  engines: {node: '>=6.9.0'}
1713
1762
 
1763
+ '@babel/traverse@7.29.0':
1764
+ resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
1765
+ engines: {node: '>=6.9.0'}
1766
+
1714
1767
  '@babel/types@7.24.0':
1715
1768
  resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
1716
1769
  engines: {node: '>=6.9.0'}
@@ -1723,6 +1776,10 @@ packages:
1723
1776
  resolution: {integrity: sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==}
1724
1777
  engines: {node: '>=6.9.0'}
1725
1778
 
1779
+ '@babel/types@7.29.0':
1780
+ resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
1781
+ engines: {node: '>=6.9.0'}
1782
+
1726
1783
  '@borewit/text-codec@0.2.1':
1727
1784
  resolution: {integrity: sha512-k7vvKPbf7J2fZ5klGRD9AeKfUvojuZIQ3BT5u7Jfv+puwXkUBUT5PVyMDfJZpy30CBDXGMgw7fguK/lpOMBvgw==}
1728
1785
 
@@ -2052,6 +2109,9 @@ packages:
2052
2109
  '@dual-bundle/import-meta-resolve@4.2.1':
2053
2110
  resolution: {integrity: sha512-id+7YRUgoUX6CgV0DtuhirQWodeeA7Lf4i2x71JS/vtA5pRb/hIGWlw+G6MeXvsM+MXrz0VAydTGElX1rAfgPg==}
2054
2111
 
2112
+ '@emnapi/runtime@1.8.1':
2113
+ resolution: {integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==}
2114
+
2055
2115
  '@esbuild-kit/core-utils@3.3.2':
2056
2116
  resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==}
2057
2117
  deprecated: 'Merged into tsx: https://tsx.is'
@@ -2536,6 +2596,123 @@ packages:
2536
2596
  resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
2537
2597
  deprecated: Use @eslint/object-schema instead
2538
2598
 
2599
+ '@img/sharp-darwin-arm64@0.33.5':
2600
+ resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
2601
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2602
+ cpu: [arm64]
2603
+ os: [darwin]
2604
+
2605
+ '@img/sharp-darwin-x64@0.33.5':
2606
+ resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==}
2607
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2608
+ cpu: [x64]
2609
+ os: [darwin]
2610
+
2611
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
2612
+ resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==}
2613
+ cpu: [arm64]
2614
+ os: [darwin]
2615
+
2616
+ '@img/sharp-libvips-darwin-x64@1.0.4':
2617
+ resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==}
2618
+ cpu: [x64]
2619
+ os: [darwin]
2620
+
2621
+ '@img/sharp-libvips-linux-arm64@1.0.4':
2622
+ resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
2623
+ cpu: [arm64]
2624
+ os: [linux]
2625
+ libc: [glibc]
2626
+
2627
+ '@img/sharp-libvips-linux-arm@1.0.5':
2628
+ resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
2629
+ cpu: [arm]
2630
+ os: [linux]
2631
+ libc: [glibc]
2632
+
2633
+ '@img/sharp-libvips-linux-s390x@1.0.4':
2634
+ resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
2635
+ cpu: [s390x]
2636
+ os: [linux]
2637
+ libc: [glibc]
2638
+
2639
+ '@img/sharp-libvips-linux-x64@1.0.4':
2640
+ resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
2641
+ cpu: [x64]
2642
+ os: [linux]
2643
+ libc: [glibc]
2644
+
2645
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
2646
+ resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
2647
+ cpu: [arm64]
2648
+ os: [linux]
2649
+ libc: [musl]
2650
+
2651
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
2652
+ resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
2653
+ cpu: [x64]
2654
+ os: [linux]
2655
+ libc: [musl]
2656
+
2657
+ '@img/sharp-linux-arm64@0.33.5':
2658
+ resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
2659
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2660
+ cpu: [arm64]
2661
+ os: [linux]
2662
+ libc: [glibc]
2663
+
2664
+ '@img/sharp-linux-arm@0.33.5':
2665
+ resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
2666
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2667
+ cpu: [arm]
2668
+ os: [linux]
2669
+ libc: [glibc]
2670
+
2671
+ '@img/sharp-linux-s390x@0.33.5':
2672
+ resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
2673
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2674
+ cpu: [s390x]
2675
+ os: [linux]
2676
+ libc: [glibc]
2677
+
2678
+ '@img/sharp-linux-x64@0.33.5':
2679
+ resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
2680
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2681
+ cpu: [x64]
2682
+ os: [linux]
2683
+ libc: [glibc]
2684
+
2685
+ '@img/sharp-linuxmusl-arm64@0.33.5':
2686
+ resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
2687
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2688
+ cpu: [arm64]
2689
+ os: [linux]
2690
+ libc: [musl]
2691
+
2692
+ '@img/sharp-linuxmusl-x64@0.33.5':
2693
+ resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
2694
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2695
+ cpu: [x64]
2696
+ os: [linux]
2697
+ libc: [musl]
2698
+
2699
+ '@img/sharp-wasm32@0.33.5':
2700
+ resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
2701
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2702
+ cpu: [wasm32]
2703
+
2704
+ '@img/sharp-win32-ia32@0.33.5':
2705
+ resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==}
2706
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2707
+ cpu: [ia32]
2708
+ os: [win32]
2709
+
2710
+ '@img/sharp-win32-x64@0.33.5':
2711
+ resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==}
2712
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2713
+ cpu: [x64]
2714
+ os: [win32]
2715
+
2539
2716
  '@inquirer/external-editor@1.0.3':
2540
2717
  resolution: {integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==}
2541
2718
  engines: {node: '>=18'}
@@ -3438,6 +3615,30 @@ packages:
3438
3615
  engines: {node: '>=12.10.0', npm: '>=6.0.0'}
3439
3616
  hasBin: true
3440
3617
 
3618
+ '@supabase/auth-js@2.95.3':
3619
+ resolution: {integrity: sha512-vD2YoS8E2iKIX0F7EwXTmqhUpaNsmbU6X2R0/NdFcs02oEfnHyNP/3M716f3wVJ2E5XHGiTFXki6lRckhJ0Thg==}
3620
+ engines: {node: '>=20.0.0'}
3621
+
3622
+ '@supabase/functions-js@2.95.3':
3623
+ resolution: {integrity: sha512-uTuOAKzs9R/IovW1krO0ZbUHSJnsnyJElTXIRhjJTqymIVGcHzkAYnBCJqd7468Fs/Foz1BQ7Dv6DCl05lr7ig==}
3624
+ engines: {node: '>=20.0.0'}
3625
+
3626
+ '@supabase/postgrest-js@2.95.3':
3627
+ resolution: {integrity: sha512-LTrRBqU1gOovxRm1vRXPItSMPBmEFqrfTqdPTRtzOILV4jPSueFz6pES5hpb4LRlkFwCPRmv3nQJ5N625V2Xrg==}
3628
+ engines: {node: '>=20.0.0'}
3629
+
3630
+ '@supabase/realtime-js@2.95.3':
3631
+ resolution: {integrity: sha512-D7EAtfU3w6BEUxDACjowWNJo/ZRo7sDIuhuOGKHIm9FHieGeoJV5R6GKTLtga/5l/6fDr2u+WcW/m8I9SYmaIw==}
3632
+ engines: {node: '>=20.0.0'}
3633
+
3634
+ '@supabase/storage-js@2.95.3':
3635
+ resolution: {integrity: sha512-4GxkJiXI3HHWjxpC3sDx1BVrV87O0hfX+wvJdqGv67KeCu+g44SPnII8y0LL/Wr677jB7tpjAxKdtVWf+xhc9A==}
3636
+ engines: {node: '>=20.0.0'}
3637
+
3638
+ '@supabase/supabase-js@2.95.3':
3639
+ resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
3640
+ engines: {node: '>=20.0.0'}
3641
+
3441
3642
  '@swc/core-darwin-arm64@1.3.96':
3442
3643
  resolution: {integrity: sha512-8hzgXYVd85hfPh6mJ9yrG26rhgzCmcLO0h1TIl8U31hwmTbfZLzRitFQ/kqMJNbIBCwmNH1RU2QcJnL3d7f69A==}
3443
3644
  engines: {node: '>=10'}
@@ -3601,15 +3802,18 @@ packages:
3601
3802
  resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==}
3602
3803
  engines: {node: '>=6'}
3603
3804
 
3604
- '@tailwindcss-mangle/config@6.1.0':
3605
- resolution: {integrity: sha512-74Ga5Z1ccg5trRbzD01cZcB3aaKv0bHKkxG9u6k880obwaH3XQuQOLDZu8UpYoMwt5J2eHqiD4urqpsmGb7irA==}
3805
+ '@tailwindcss-mangle/config@6.1.3':
3806
+ resolution: {integrity: sha512-e0wj/R582uyrqMLYDDyfl0BfysybOA1PiP0ChxQVch1JWxkLxM0SB7Nb6Cq0jiSYugX5hGfSV1UEqLhM0Q9PTQ==}
3606
3807
 
3607
- '@tailwindcss-mangle/shared@4.1.1':
3608
- resolution: {integrity: sha512-bVRIDBJlo+ysYySVgP1GWC+uHQzlZi6w9Gsvm/UOUA9SXwzwUBlR+25YLJJ9MIT4oaHTK4a/w1kWKHRZnQDbhQ==}
3808
+ '@tailwindcss-mangle/shared@4.1.3':
3809
+ resolution: {integrity: sha512-u7TSrR0PwEHUwP/gEE+yIy8QrkCnyVkN245uyn74aYWK73ksJAY2bb27OStzlMdfQADGf7xpBLshISM9UpDJEQ==}
3609
3810
 
3610
3811
  '@tailwindcss/node@4.1.18':
3611
3812
  resolution: {integrity: sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==}
3612
3813
 
3814
+ '@tailwindcss/node@4.2.1':
3815
+ resolution: {integrity: sha512-jlx6sLk4EOwO6hHe1oCGm1Q4AN/s0rSrTTPBGPM0/RQ6Uylwq17FuU8IeJJKEjtc6K6O07zsvP+gDO6MMWo7pg==}
3816
+
3613
3817
  '@tailwindcss/oxide-android-arm64@4.1.18':
3614
3818
  resolution: {integrity: sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==}
3615
3819
  engines: {node: '>= 10'}
@@ -3959,6 +4163,13 @@ packages:
3959
4163
  '@tarojs/plugin-platform-h5@4.1.9':
3960
4164
  resolution: {integrity: sha512-qrxJY7fiknzcBWI/bEQxAksi8fB5/ciYIbrF/hFbsH7Zc0VzQGA0IpdeOl8gya/mzmF9ieyr28/hObNjNnMyUw==}
3961
4165
 
4166
+ '@tarojs/plugin-platform-tt@4.1.9':
4167
+ resolution: {integrity: sha512-qkz0VKx7tflj6MHJgR7wrEXxn0oS+ph0S+HdqulJpev7k2bWWSMUcVHiDHL1ZI01PSMVavX/+WCgYcX8CPEcGQ==}
4168
+ engines: {node: '>= 18'}
4169
+ peerDependencies:
4170
+ '@tarojs/service': 4.1.9
4171
+ '@tarojs/shared': 4.1.9
4172
+
3962
4173
  '@tarojs/plugin-platform-weapp@4.1.9':
3963
4174
  resolution: {integrity: sha512-a3pHm2j4dksvuium6rMZwDmLazA/COAnwYNcbU3/vFkMA6MwTbra5JDL8Ari4op7HqeP72RZlEoYB5hp56jsXQ==}
3964
4175
  engines: {node: '>= 18'}
@@ -4053,6 +4264,9 @@ packages:
4053
4264
  '@ts-morph/common@0.27.0':
4054
4265
  resolution: {integrity: sha512-Wf29UqxWDpc+i61k3oIOzcUfQt79PIT9y/MWfAGlrkjg6lBC1hwDECLXPVJAhWjiGbfBCxZd65F/LIZF3+jeJQ==}
4055
4266
 
4267
+ '@tt-miniprogram/ext-pack@1.2.4':
4268
+ resolution: {integrity: sha512-pIXzF6YcCtJdlIGNByUIZr8OArdhi15ybS+N5Rr8x2YNQqFg/asacWqOSTnlOAOk2d5K6HA79sjdKodkrql7yQ==}
4269
+
4056
4270
  '@types/archy@0.0.31':
4057
4271
  resolution: {integrity: sha512-v+dxizsFVyXgD3EpFuqT9YjdEjbJmPxNf1QIX9ohZOhxh1ZF2yhqv3vYaeum9lg3VghhxS5S0a6yldN9J9lPEQ==}
4058
4272
 
@@ -4134,6 +4348,9 @@ packages:
4134
4348
  '@types/node@22.19.6':
4135
4349
  resolution: {integrity: sha512-qm+G8HuG6hOHQigsi7VGuLjUVu6TtBo/F05zvX04Mw2uCg9Dv0Qxy3Qw7j41SidlTcl5D/5yg0SEZqOB+EqZnQ==}
4136
4350
 
4351
+ '@types/phoenix@1.6.7':
4352
+ resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
4353
+
4137
4354
  '@types/postcss-url@10.0.4':
4138
4355
  resolution: {integrity: sha512-5QIO9NgbWmAkle65haRqkdgYPCOXheNsaFdbTJJQjT302yK3H49ql4t9a4y0NfpuPtU/UBo15VcV64WCSIMJKg==}
4139
4356
 
@@ -4168,6 +4385,9 @@ packages:
4168
4385
  '@types/uuid@10.0.0':
4169
4386
  resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
4170
4387
 
4388
+ '@types/ws@8.18.1':
4389
+ resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
4390
+
4171
4391
  '@typescript-eslint/eslint-plugin@6.21.0':
4172
4392
  resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==}
4173
4393
  engines: {node: ^16.0.0 || >=18.0.0}
@@ -4242,17 +4462,17 @@ packages:
4242
4462
  peerDependencies:
4243
4463
  vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
4244
4464
 
4245
- '@vue/compiler-core@3.5.26':
4246
- resolution: {integrity: sha512-vXyI5GMfuoBCnv5ucIT7jhHKl55Y477yxP6fc4eUswjP8FG3FFVFd41eNDArR+Uk3QKn2Z85NavjaxLxOC19/w==}
4465
+ '@vue/compiler-core@3.5.30':
4466
+ resolution: {integrity: sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==}
4247
4467
 
4248
- '@vue/compiler-dom@3.5.26':
4249
- resolution: {integrity: sha512-y1Tcd3eXs834QjswshSilCBnKGeQjQXB6PqFn/1nxcQw4pmG42G8lwz+FZPAZAby6gZeHSt/8LMPfZ4Rb+Bd/A==}
4468
+ '@vue/compiler-dom@3.5.30':
4469
+ resolution: {integrity: sha512-eCFYESUEVYHhiMuK4SQTldO3RYxyMR/UQL4KdGD1Yrkfdx4m/HYuZ9jSfPdA+nWJY34VWndiYdW/wZXyiPEB9g==}
4250
4470
 
4251
- '@vue/compiler-sfc@3.5.26':
4252
- resolution: {integrity: sha512-egp69qDTSEZcf4bGOSsprUr4xI73wfrY5oRs6GSgXFTiHrWj4Y3X5Ydtip9QMqiCMCPVwLglB9GBxXtTadJ3mA==}
4471
+ '@vue/compiler-sfc@3.5.30':
4472
+ resolution: {integrity: sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==}
4253
4473
 
4254
- '@vue/compiler-ssr@3.5.26':
4255
- resolution: {integrity: sha512-lZT9/Y0nSIRUPVvapFJEVDbEXruZh2IYHMk2zTtEgJSlP5gVOqeWXH54xDKAaFS4rTnDeDBQUYDtxKyoW9FwDw==}
4474
+ '@vue/compiler-ssr@3.5.30':
4475
+ resolution: {integrity: sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==}
4256
4476
 
4257
4477
  '@vue/reactivity@3.0.5':
4258
4478
  resolution: {integrity: sha512-3xodUE3sEIJgS7ntwUbopIpzzvi7vDAOjVamfb2l+v1FUg0jpd3gf62N2wggJw3fxBMr+QvyxpD+dBoxLsmAjw==}
@@ -4260,11 +4480,11 @@ packages:
4260
4480
  '@vue/shared@3.0.5':
4261
4481
  resolution: {integrity: sha512-gYsNoGkWejBxNO6SNRjOh/xKeZ0H0V+TFzaPzODfBjkAIb0aQgBuixC1brandC/CDJy1wYPwSoYrXpvul7m6yw==}
4262
4482
 
4263
- '@vue/shared@3.5.26':
4264
- resolution: {integrity: sha512-7Z6/y3uFI5PRoKeorTOSXKcDj0MSasfNNltcslbFrPpcw6aXRUALq4IfJlaTRspiWIUOEZbrpM+iQGmCOiWe4A==}
4483
+ '@vue/shared@3.5.30':
4484
+ resolution: {integrity: sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==}
4265
4485
 
4266
- '@weapp-core/escape@6.0.1':
4267
- resolution: {integrity: sha512-p9vzvAAOejWDAhNGrmlNBO8MpOJQTUj9SOwKx/pCjvCnR/N8CF8yUFBaPH9WOGHCFxGPWxPEhViQSeDF+3vfFA==}
4486
+ '@weapp-core/escape@7.0.0':
4487
+ resolution: {integrity: sha512-xMiRT/54YCuyXGXC6ozxmoF+wmnnPJNbouRaAhGLl1jBKsLqtkeILYU5/tGDtfJPxwKcQEFeDuaSmnMHaU3myg==}
4268
4488
 
4269
4489
  '@weapp-core/regex@1.0.1':
4270
4490
  resolution: {integrity: sha512-gRIHHAb1MoTmM1lzfaKldwNXgsScaVu9/bnZDKT0A1CgUkaHAouxvZta3yQgev91V3ZAHQ+tdwA8WGhpkstzUw==}
@@ -4278,11 +4498,13 @@ packages:
4278
4498
  peerDependencies:
4279
4499
  postcss: ^8.4.38
4280
4500
 
4281
- '@weapp-tailwindcss/postcss@2.1.0':
4282
- resolution: {integrity: sha512-c4Jw8IB+4wHWpCJ0cKm0dC1sXWPCwsXhRLulM7E1nvgYjFxa5dM/9mLkc6PoaVwghYC2UB4J8P4YIhg3yfJS6A==}
4501
+ '@weapp-tailwindcss/postcss@2.1.5':
4502
+ resolution: {integrity: sha512-7ftY2sWXZ/rIk6gl49UqC3FqzmxgLLmv2VfdA7dlM32TxwAlDFSMJggZhsR+CDPCsikIZi3w9rcRhB1aQSmWOQ==}
4503
+ engines: {node: ^20.19.0 || >=22.12.0}
4283
4504
 
4284
- '@weapp-tailwindcss/shared@1.1.1':
4285
- resolution: {integrity: sha512-xgh5n9gLJ5AWC5rr65aCSt+TvIL7DC3TLm8bo7/2i4hPgLOCJYYxu3RQQYz7LBIVhmM8YoohT8r9EAF5fnOzTw==}
4505
+ '@weapp-tailwindcss/shared@1.1.2':
4506
+ resolution: {integrity: sha512-n3RPB6D4hrKzg7SncNB0POqhdLfYV+qPY5e+cDUCsqr0QrzwDYj6uugA3GhBt72krAzVWmktJUUM5ZM9URCiYw==}
4507
+ engines: {node: ^20.19.0 || >=22.12.0}
4286
4508
 
4287
4509
  '@webassemblyjs/ast@1.14.1':
4288
4510
  resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
@@ -4484,6 +4706,9 @@ packages:
4484
4706
  append-field@1.0.0:
4485
4707
  resolution: {integrity: sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==}
4486
4708
 
4709
+ arch@2.2.0:
4710
+ resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
4711
+
4487
4712
  archive-type@4.0.0:
4488
4713
  resolution: {integrity: sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==}
4489
4714
  engines: {node: '>=4'}
@@ -4548,6 +4773,10 @@ packages:
4548
4773
  resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
4549
4774
  engines: {node: '>= 0.4'}
4550
4775
 
4776
+ array.prototype.reduce@1.0.8:
4777
+ resolution: {integrity: sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw==}
4778
+ engines: {node: '>= 0.4'}
4779
+
4551
4780
  array.prototype.tosorted@1.1.4:
4552
4781
  resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
4553
4782
  engines: {node: '>= 0.4'}
@@ -4943,6 +5172,9 @@ packages:
4943
5172
  resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
4944
5173
  engines: {node: '>=8'}
4945
5174
 
5175
+ binary@0.3.0:
5176
+ resolution: {integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==}
5177
+
4946
5178
  bindings@1.5.0:
4947
5179
  resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
4948
5180
 
@@ -4955,6 +5187,9 @@ packages:
4955
5187
  bl@5.1.0:
4956
5188
  resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==}
4957
5189
 
5190
+ bluebird@3.4.7:
5191
+ resolution: {integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==}
5192
+
4958
5193
  bmp-js@0.1.0:
4959
5194
  resolution: {integrity: sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==}
4960
5195
 
@@ -5013,6 +5248,10 @@ packages:
5013
5248
  buffer-from@1.1.2:
5014
5249
  resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
5015
5250
 
5251
+ buffer-indexof-polyfill@1.0.2:
5252
+ resolution: {integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==}
5253
+ engines: {node: '>=0.10'}
5254
+
5016
5255
  buffer@5.6.0:
5017
5256
  resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==}
5018
5257
 
@@ -5022,6 +5261,10 @@ packages:
5022
5261
  buffer@6.0.3:
5023
5262
  resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
5024
5263
 
5264
+ buffers@0.1.1:
5265
+ resolution: {integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==}
5266
+ engines: {node: '>=0.2.0'}
5267
+
5025
5268
  busboy@1.6.0:
5026
5269
  resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
5027
5270
  engines: {node: '>=10.16.0'}
@@ -5101,6 +5344,9 @@ packages:
5101
5344
  centra@2.7.0:
5102
5345
  resolution: {integrity: sha512-PbFMgMSrmgx6uxCdm57RUos9Tc3fclMvhLSATYN39XsDV29B89zZ3KA89jmY0vwSGazyU+uerqwa6t+KaodPcg==}
5103
5346
 
5347
+ chainsaw@0.1.0:
5348
+ resolution: {integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==}
5349
+
5104
5350
  chalk@1.1.3:
5105
5351
  resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
5106
5352
  engines: {node: '>=0.10.0'}
@@ -5155,6 +5401,9 @@ packages:
5155
5401
  citty@0.1.6:
5156
5402
  resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
5157
5403
 
5404
+ class-variance-authority@0.7.1:
5405
+ resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
5406
+
5158
5407
  classnames@2.5.1:
5159
5408
  resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
5160
5409
 
@@ -5183,10 +5432,6 @@ packages:
5183
5432
  resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
5184
5433
  engines: {node: '>=6'}
5185
5434
 
5186
- cli-spinners@3.4.0:
5187
- resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==}
5188
- engines: {node: '>=18.20'}
5189
-
5190
5435
  cli-table3@0.6.5:
5191
5436
  resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==}
5192
5437
  engines: {node: 10.* || >= 12.*}
@@ -5203,6 +5448,10 @@ packages:
5203
5448
  resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
5204
5449
  engines: {node: '>= 12'}
5205
5450
 
5451
+ clipboardy@2.3.0:
5452
+ resolution: {integrity: sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==}
5453
+ engines: {node: '>=8'}
5454
+
5206
5455
  cliui@6.0.0:
5207
5456
  resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
5208
5457
 
@@ -5230,6 +5479,10 @@ packages:
5230
5479
  resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
5231
5480
  engines: {node: '>=0.8'}
5232
5481
 
5482
+ clsx@2.1.1:
5483
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
5484
+ engines: {node: '>=6'}
5485
+
5233
5486
  code-block-writer@13.0.3:
5234
5487
  resolution: {integrity: sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==}
5235
5488
 
@@ -5246,10 +5499,17 @@ packages:
5246
5499
  color-name@1.1.4:
5247
5500
  resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
5248
5501
 
5502
+ color-string@1.9.1:
5503
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
5504
+
5249
5505
  color-support@1.1.3:
5250
5506
  resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
5251
5507
  hasBin: true
5252
5508
 
5509
+ color@4.2.3:
5510
+ resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
5511
+ engines: {node: '>=12.5.0'}
5512
+
5253
5513
  colord@2.9.3:
5254
5514
  resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
5255
5515
 
@@ -5274,6 +5534,10 @@ packages:
5274
5534
  resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
5275
5535
  engines: {node: '>= 6'}
5276
5536
 
5537
+ commander@5.1.0:
5538
+ resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==}
5539
+ engines: {node: '>= 6'}
5540
+
5277
5541
  commander@7.2.0:
5278
5542
  resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
5279
5543
  engines: {node: '>= 10'}
@@ -5415,8 +5679,8 @@ packages:
5415
5679
  typescript:
5416
5680
  optional: true
5417
5681
 
5418
- coze-coding-dev-sdk@0.7.3:
5419
- resolution: {integrity: sha512-BLOjwSjAHW/LL6l/KMbsKJt7xJCrFJfEUkGvlafjpYrsZ8w/xlyQMbAv5lwk+9En60quX93wpK6AsX3eMcw/Jw==}
5682
+ coze-coding-dev-sdk@0.7.16:
5683
+ resolution: {integrity: sha512-B7gRPBa+sfrZL8ur0+F/92SOgZgFaWD/fOnCN2DjthnHSdmCYhAJWCfqzG2oO2vwTiYCXkKUuTBZ3MJLMj886g==}
5420
5684
  engines: {node: '>=18.0.0'}
5421
5685
  hasBin: true
5422
5686
 
@@ -5429,6 +5693,10 @@ packages:
5429
5693
  resolution: {integrity: sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==}
5430
5694
  engines: {node: '>= 10'}
5431
5695
 
5696
+ cross-spawn@6.0.6:
5697
+ resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==}
5698
+ engines: {node: '>=4.8'}
5699
+
5432
5700
  cross-spawn@7.0.6:
5433
5701
  resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
5434
5702
  engines: {node: '>= 8'}
@@ -5528,6 +5796,9 @@ packages:
5528
5796
  resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
5529
5797
  engines: {node: '>= 0.4'}
5530
5798
 
5799
+ date-fns@4.1.0:
5800
+ resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
5801
+
5531
5802
  dateformat@2.2.0:
5532
5803
  resolution: {integrity: sha512-GODcnWq3YGoTnygPfi02ygEiRxqUxpJwuRHjdhJYuxpcZmDq4rjBiXYmbCCzStxo176ixfLT6i4NPwQooRySnw==}
5533
5804
 
@@ -5551,6 +5822,15 @@ packages:
5551
5822
  supports-color:
5552
5823
  optional: true
5553
5824
 
5825
+ debug@4.4.0:
5826
+ resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
5827
+ engines: {node: '>=6.0'}
5828
+ peerDependencies:
5829
+ supports-color: '*'
5830
+ peerDependenciesMeta:
5831
+ supports-color:
5832
+ optional: true
5833
+
5554
5834
  debug@4.4.3:
5555
5835
  resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
5556
5836
  engines: {node: '>=6.0'}
@@ -5612,6 +5892,9 @@ packages:
5612
5892
  babel-plugin-macros:
5613
5893
  optional: true
5614
5894
 
5895
+ deep-clone@3.0.3:
5896
+ resolution: {integrity: sha512-6jtXIlCBAwr3GP/7Il52clbIFIKAxg/pnNkL4/sE6+Oqb10MXMtm9LDZV2IAuwdaKV9VBm8hlxAFk9r6pF8XRw==}
5897
+
5615
5898
  deep-extend@0.6.0:
5616
5899
  resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
5617
5900
  engines: {node: '>=4.0.0'}
@@ -5849,12 +6132,18 @@ packages:
5849
6132
  duplexer2@0.0.2:
5850
6133
  resolution: {integrity: sha512-+AWBwjGadtksxjOQSFDhPNQbed7icNXApT4+2BNpsXzcCBiInq2H9XW0O8sfHFaPmnQRs7cg/P0fAr2IWQSW0g==}
5851
6134
 
6135
+ duplexer2@0.1.4:
6136
+ resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==}
6137
+
5852
6138
  duplexer3@0.1.5:
5853
6139
  resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
5854
6140
 
5855
6141
  eastasianwidth@0.2.0:
5856
6142
  resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
5857
6143
 
6144
+ easy-table@1.2.0:
6145
+ resolution: {integrity: sha512-OFzVOv03YpvtcWGe5AayU5G2hgybsg3iqA6drU8UaoZyB9jLGMTrz9+asnLp/E+6qPh88yEI1gvyZFZ41dmgww==}
6146
+
5858
6147
  ecc-jsbn@0.1.2:
5859
6148
  resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
5860
6149
 
@@ -5892,6 +6181,10 @@ packages:
5892
6181
  resolution: {integrity: sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==}
5893
6182
  engines: {node: '>=10.13.0'}
5894
6183
 
6184
+ enhanced-resolve@5.20.0:
6185
+ resolution: {integrity: sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==}
6186
+ engines: {node: '>=10.13.0'}
6187
+
5895
6188
  entities@2.2.0:
5896
6189
  resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
5897
6190
 
@@ -5899,12 +6192,8 @@ packages:
5899
6192
  resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
5900
6193
  engines: {node: '>=0.12'}
5901
6194
 
5902
- entities@6.0.1:
5903
- resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
5904
- engines: {node: '>=0.12'}
5905
-
5906
- entities@7.0.0:
5907
- resolution: {integrity: sha512-FDWG5cmEYf2Z00IkYRhbFrwIwvdFKH07uV8dvNy0omp/Qb1xcyCWp2UDtcwJF4QZZvk0sLudP6/hAu42TaqVhQ==}
6195
+ entities@7.0.1:
6196
+ resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
5908
6197
  engines: {node: '>=0.12'}
5909
6198
 
5910
6199
  env-paths@2.2.1:
@@ -5931,6 +6220,9 @@ packages:
5931
6220
  resolution: {integrity: sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==}
5932
6221
  engines: {node: '>= 0.4'}
5933
6222
 
6223
+ es-array-method-boxes-properly@1.0.0:
6224
+ resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
6225
+
5934
6226
  es-define-property@1.0.1:
5935
6227
  resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
5936
6228
  engines: {node: '>= 0.4'}
@@ -6059,6 +6351,12 @@ packages:
6059
6351
  peerDependencies:
6060
6352
  eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
6061
6353
 
6354
+ eslint-plugin-tailwindcss@3.18.2:
6355
+ resolution: {integrity: sha512-QbkMLDC/OkkjFQ1iz/5jkMdHfiMu/uwujUHLAJK5iwNHD8RTxVTlsUezE0toTZ6VhybNBsk+gYGPDq2agfeRNA==}
6356
+ engines: {node: '>=18.12.0'}
6357
+ peerDependencies:
6358
+ tailwindcss: ^3.4.0
6359
+
6062
6360
  eslint-scope@5.1.1:
6063
6361
  resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
6064
6362
  engines: {node: '>=8.0.0'}
@@ -6145,6 +6443,10 @@ packages:
6145
6443
  resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
6146
6444
  engines: {node: '>=0.8.x'}
6147
6445
 
6446
+ execa@1.0.0:
6447
+ resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
6448
+ engines: {node: '>=6'}
6449
+
6148
6450
  execa@5.1.1:
6149
6451
  resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
6150
6452
  engines: {node: '>=10'}
@@ -6193,6 +6495,10 @@ packages:
6193
6495
  fast-deep-equal@3.1.3:
6194
6496
  resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
6195
6497
 
6498
+ fast-glob@3.3.2:
6499
+ resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
6500
+ engines: {node: '>=8.6.0'}
6501
+
6196
6502
  fast-glob@3.3.3:
6197
6503
  resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
6198
6504
  engines: {node: '>=8.6.0'}
@@ -6337,6 +6643,11 @@ packages:
6337
6643
  flatted@3.3.3:
6338
6644
  resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
6339
6645
 
6646
+ folder-hash@4.1.1:
6647
+ resolution: {integrity: sha512-1ZSlKJSbET3XpglnEXC9g+QF4QRZhqHIjpFfa4pAMfO4tu/XYPafpeHEX6zOFS2EolOIXr0lPh1eSjmdWItX2w==}
6648
+ engines: {node: '>=10.10.0'}
6649
+ hasBin: true
6650
+
6340
6651
  follow-redirects@1.15.11:
6341
6652
  resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
6342
6653
  engines: {node: '>=4.0'}
@@ -6397,6 +6708,10 @@ packages:
6397
6708
  resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
6398
6709
  engines: {node: '>=12'}
6399
6710
 
6711
+ fs-extra@11.2.0:
6712
+ resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
6713
+ engines: {node: '>=14.14'}
6714
+
6400
6715
  fs-extra@11.3.3:
6401
6716
  resolution: {integrity: sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==}
6402
6717
  engines: {node: '>=14.14'}
@@ -6416,6 +6731,11 @@ packages:
6416
6731
  engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
6417
6732
  os: [darwin]
6418
6733
 
6734
+ fstream@1.0.12:
6735
+ resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==}
6736
+ engines: {node: '>=0.6'}
6737
+ deprecated: This package is no longer supported.
6738
+
6419
6739
  function-bind@1.1.2:
6420
6740
  resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
6421
6741
 
@@ -6426,6 +6746,10 @@ packages:
6426
6746
  functions-have-names@1.2.3:
6427
6747
  resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
6428
6748
 
6749
+ fuse.js@7.1.0:
6750
+ resolution: {integrity: sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==}
6751
+ engines: {node: '>=10'}
6752
+
6429
6753
  generator-function@2.0.1:
6430
6754
  resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
6431
6755
  engines: {node: '>= 0.4'}
@@ -6720,8 +7044,8 @@ packages:
6720
7044
  resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
6721
7045
  engines: {node: '>=8'}
6722
7046
 
6723
- htmlparser2@10.0.0:
6724
- resolution: {integrity: sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==}
7047
+ htmlparser2@10.1.0:
7048
+ resolution: {integrity: sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==}
6725
7049
 
6726
7050
  http-cache-semantics@3.8.1:
6727
7051
  resolution: {integrity: sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==}
@@ -6745,6 +7069,10 @@ packages:
6745
7069
  resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
6746
7070
  engines: {node: '>=10.17.0'}
6747
7071
 
7072
+ iceberg-js@0.8.1:
7073
+ resolution: {integrity: sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==}
7074
+ engines: {node: '>=20.0.0'}
7075
+
6748
7076
  iconv-lite@0.4.24:
6749
7077
  resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
6750
7078
  engines: {node: '>=0.10.0'}
@@ -6859,6 +7187,9 @@ packages:
6859
7187
  is-arrayish@0.2.1:
6860
7188
  resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
6861
7189
 
7190
+ is-arrayish@0.3.4:
7191
+ resolution: {integrity: sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==}
7192
+
6862
7193
  is-async-function@2.1.1:
6863
7194
  resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
6864
7195
  engines: {node: '>= 0.4'}
@@ -6897,6 +7228,11 @@ packages:
6897
7228
  resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
6898
7229
  engines: {node: '>= 0.4'}
6899
7230
 
7231
+ is-docker@2.2.1:
7232
+ resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
7233
+ engines: {node: '>=8'}
7234
+ hasBin: true
7235
+
6900
7236
  is-extglob@2.1.1:
6901
7237
  resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
6902
7238
  engines: {node: '>=0.10.0'}
@@ -7035,10 +7371,6 @@ packages:
7035
7371
  resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
7036
7372
  engines: {node: '>=12'}
7037
7373
 
7038
- is-unicode-supported@2.1.0:
7039
- resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
7040
- engines: {node: '>=18'}
7041
-
7042
7374
  is-weakmap@2.0.2:
7043
7375
  resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
7044
7376
  engines: {node: '>= 0.4'}
@@ -7054,6 +7386,10 @@ packages:
7054
7386
  is-what@3.14.1:
7055
7387
  resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
7056
7388
 
7389
+ is-wsl@2.2.0:
7390
+ resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
7391
+ engines: {node: '>=8'}
7392
+
7057
7393
  isarray@0.0.1:
7058
7394
  resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
7059
7395
 
@@ -7293,30 +7629,60 @@ packages:
7293
7629
  cpu: [arm64]
7294
7630
  os: [android]
7295
7631
 
7632
+ lightningcss-android-arm64@1.31.1:
7633
+ resolution: {integrity: sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==}
7634
+ engines: {node: '>= 12.0.0'}
7635
+ cpu: [arm64]
7636
+ os: [android]
7637
+
7296
7638
  lightningcss-darwin-arm64@1.30.2:
7297
7639
  resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
7298
7640
  engines: {node: '>= 12.0.0'}
7299
7641
  cpu: [arm64]
7300
7642
  os: [darwin]
7301
7643
 
7644
+ lightningcss-darwin-arm64@1.31.1:
7645
+ resolution: {integrity: sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==}
7646
+ engines: {node: '>= 12.0.0'}
7647
+ cpu: [arm64]
7648
+ os: [darwin]
7649
+
7302
7650
  lightningcss-darwin-x64@1.30.2:
7303
7651
  resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
7304
7652
  engines: {node: '>= 12.0.0'}
7305
7653
  cpu: [x64]
7306
7654
  os: [darwin]
7307
7655
 
7656
+ lightningcss-darwin-x64@1.31.1:
7657
+ resolution: {integrity: sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==}
7658
+ engines: {node: '>= 12.0.0'}
7659
+ cpu: [x64]
7660
+ os: [darwin]
7661
+
7308
7662
  lightningcss-freebsd-x64@1.30.2:
7309
7663
  resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
7310
7664
  engines: {node: '>= 12.0.0'}
7311
7665
  cpu: [x64]
7312
7666
  os: [freebsd]
7313
7667
 
7668
+ lightningcss-freebsd-x64@1.31.1:
7669
+ resolution: {integrity: sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==}
7670
+ engines: {node: '>= 12.0.0'}
7671
+ cpu: [x64]
7672
+ os: [freebsd]
7673
+
7314
7674
  lightningcss-linux-arm-gnueabihf@1.30.2:
7315
7675
  resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
7316
7676
  engines: {node: '>= 12.0.0'}
7317
7677
  cpu: [arm]
7318
7678
  os: [linux]
7319
7679
 
7680
+ lightningcss-linux-arm-gnueabihf@1.31.1:
7681
+ resolution: {integrity: sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==}
7682
+ engines: {node: '>= 12.0.0'}
7683
+ cpu: [arm]
7684
+ os: [linux]
7685
+
7320
7686
  lightningcss-linux-arm64-gnu@1.30.2:
7321
7687
  resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
7322
7688
  engines: {node: '>= 12.0.0'}
@@ -7324,6 +7690,13 @@ packages:
7324
7690
  os: [linux]
7325
7691
  libc: [glibc]
7326
7692
 
7693
+ lightningcss-linux-arm64-gnu@1.31.1:
7694
+ resolution: {integrity: sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==}
7695
+ engines: {node: '>= 12.0.0'}
7696
+ cpu: [arm64]
7697
+ os: [linux]
7698
+ libc: [glibc]
7699
+
7327
7700
  lightningcss-linux-arm64-musl@1.30.2:
7328
7701
  resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
7329
7702
  engines: {node: '>= 12.0.0'}
@@ -7331,6 +7704,13 @@ packages:
7331
7704
  os: [linux]
7332
7705
  libc: [musl]
7333
7706
 
7707
+ lightningcss-linux-arm64-musl@1.31.1:
7708
+ resolution: {integrity: sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==}
7709
+ engines: {node: '>= 12.0.0'}
7710
+ cpu: [arm64]
7711
+ os: [linux]
7712
+ libc: [musl]
7713
+
7334
7714
  lightningcss-linux-x64-gnu@1.30.2:
7335
7715
  resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
7336
7716
  engines: {node: '>= 12.0.0'}
@@ -7338,6 +7718,13 @@ packages:
7338
7718
  os: [linux]
7339
7719
  libc: [glibc]
7340
7720
 
7721
+ lightningcss-linux-x64-gnu@1.31.1:
7722
+ resolution: {integrity: sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==}
7723
+ engines: {node: '>= 12.0.0'}
7724
+ cpu: [x64]
7725
+ os: [linux]
7726
+ libc: [glibc]
7727
+
7341
7728
  lightningcss-linux-x64-musl@1.30.2:
7342
7729
  resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
7343
7730
  engines: {node: '>= 12.0.0'}
@@ -7345,22 +7732,45 @@ packages:
7345
7732
  os: [linux]
7346
7733
  libc: [musl]
7347
7734
 
7735
+ lightningcss-linux-x64-musl@1.31.1:
7736
+ resolution: {integrity: sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==}
7737
+ engines: {node: '>= 12.0.0'}
7738
+ cpu: [x64]
7739
+ os: [linux]
7740
+ libc: [musl]
7741
+
7348
7742
  lightningcss-win32-arm64-msvc@1.30.2:
7349
7743
  resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
7350
7744
  engines: {node: '>= 12.0.0'}
7351
7745
  cpu: [arm64]
7352
7746
  os: [win32]
7353
7747
 
7748
+ lightningcss-win32-arm64-msvc@1.31.1:
7749
+ resolution: {integrity: sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==}
7750
+ engines: {node: '>= 12.0.0'}
7751
+ cpu: [arm64]
7752
+ os: [win32]
7753
+
7354
7754
  lightningcss-win32-x64-msvc@1.30.2:
7355
7755
  resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
7356
7756
  engines: {node: '>= 12.0.0'}
7357
7757
  cpu: [x64]
7358
7758
  os: [win32]
7359
7759
 
7760
+ lightningcss-win32-x64-msvc@1.31.1:
7761
+ resolution: {integrity: sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==}
7762
+ engines: {node: '>= 12.0.0'}
7763
+ cpu: [x64]
7764
+ os: [win32]
7765
+
7360
7766
  lightningcss@1.30.2:
7361
7767
  resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
7362
7768
  engines: {node: '>= 12.0.0'}
7363
7769
 
7770
+ lightningcss@1.31.1:
7771
+ resolution: {integrity: sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==}
7772
+ engines: {node: '>= 12.0.0'}
7773
+
7364
7774
  lilconfig@2.1.0:
7365
7775
  resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
7366
7776
  engines: {node: '>=10'}
@@ -7377,6 +7787,9 @@ packages:
7377
7787
  engines: {node: '>=20.17'}
7378
7788
  hasBin: true
7379
7789
 
7790
+ listenercount@1.0.1:
7791
+ resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==}
7792
+
7380
7793
  listr2@9.0.5:
7381
7794
  resolution: {integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==}
7382
7795
  engines: {node: '>=20.0.0'}
@@ -7511,10 +7924,6 @@ packages:
7511
7924
  resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==}
7512
7925
  engines: {node: '>=12'}
7513
7926
 
7514
- log-symbols@7.0.1:
7515
- resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
7516
- engines: {node: '>=18'}
7517
-
7518
7927
  log-update@6.1.0:
7519
7928
  resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==}
7520
7929
  engines: {node: '>=18'}
@@ -7557,10 +7966,12 @@ packages:
7557
7966
  lru-cache@5.1.1:
7558
7967
  resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
7559
7968
 
7560
- lucide-react@0.511.0:
7561
- resolution: {integrity: sha512-VK5a2ydJ7xm8GvBeKLS9mu1pVK6ucef9780JVUjw6bAjJL/QXnd4Y0p7SPeOUMC27YhzNCZvm5d/QX0Tp3rc0w==}
7969
+ lucide-react-taro@1.3.0:
7970
+ resolution: {integrity: sha512-fx3u8ivLkwpdiv6WEARDcd9lK+CAzsyfY0kSwXqi0IxTWbWWChQoJymAMxSI9KtEpBf1LixiLnxmdrtKDoCf5Q==}
7971
+ hasBin: true
7562
7972
  peerDependencies:
7563
- react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
7973
+ '@tarojs/components': '>=3.0.0'
7974
+ react: '>=16.8.0'
7564
7975
 
7565
7976
  magic-string@0.30.21:
7566
7977
  resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
@@ -7694,6 +8105,10 @@ packages:
7694
8105
  resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
7695
8106
  engines: {node: '>=10'}
7696
8107
 
8108
+ minimatch@7.4.6:
8109
+ resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==}
8110
+ engines: {node: '>=10'}
8111
+
7697
8112
  minimatch@9.0.3:
7698
8113
  resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
7699
8114
  engines: {node: '>=16 || 14 >=14.17'}
@@ -7812,6 +8227,9 @@ packages:
7812
8227
  resolution: {integrity: sha512-P6qw6kenNXP+J9XlKJNi/MNHUQ+Lx5K8FEcSfX7/w8KJdZan5+BB5MKzuNgL2RTjHG1Svg8SehfseVEp8zAqwA==}
7813
8228
  engines: {node: '>=6.0.0'}
7814
8229
 
8230
+ nice-try@1.0.5:
8231
+ resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
8232
+
7815
8233
  no-case@2.3.2:
7816
8234
  resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==}
7817
8235
 
@@ -7847,6 +8265,9 @@ packages:
7847
8265
  encoding:
7848
8266
  optional: true
7849
8267
 
8268
+ node-machine-id@1.1.12:
8269
+ resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==}
8270
+
7850
8271
  node-releases@2.0.27:
7851
8272
  resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
7852
8273
 
@@ -7876,6 +8297,10 @@ packages:
7876
8297
  npm-normalize-package-bin@1.0.1:
7877
8298
  resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==}
7878
8299
 
8300
+ npm-run-path@2.0.2:
8301
+ resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
8302
+ engines: {node: '>=4'}
8303
+
7879
8304
  npm-run-path@4.0.1:
7880
8305
  resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
7881
8306
  engines: {node: '>=8'}
@@ -7919,6 +8344,10 @@ packages:
7919
8344
  resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
7920
8345
  engines: {node: '>= 0.4'}
7921
8346
 
8347
+ object.getownpropertydescriptors@2.1.9:
8348
+ resolution: {integrity: sha512-mt8YM6XwsTTovI+kdZdHSxoyF2DI59up034orlC9NfweclcWOt7CVascNNLp6U+bjFVCVCIh9PwS76tDM/rH8g==}
8349
+ engines: {node: '>= 0.4'}
8350
+
7922
8351
  object.groupby@1.0.3:
7923
8352
  resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
7924
8353
  engines: {node: '>= 0.4'}
@@ -7976,10 +8405,6 @@ packages:
7976
8405
  resolution: {integrity: sha512-ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ==}
7977
8406
  engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
7978
8407
 
7979
- ora@9.1.0:
7980
- resolution: {integrity: sha512-53uuLsXHOAJl5zLrUrzY9/kE+uIFEx7iaH4g2BIJQK4LZjY4LpCCYZVKDWIkL+F01wAaCg93duQ1whnK/AmY1A==}
7981
- engines: {node: '>=20'}
7982
-
7983
8408
  os-homedir@1.0.2:
7984
8409
  resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==}
7985
8410
  engines: {node: '>=0.10.0'}
@@ -8122,6 +8547,10 @@ packages:
8122
8547
  resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
8123
8548
  engines: {node: '>=0.10.0'}
8124
8549
 
8550
+ path-key@2.0.1:
8551
+ resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
8552
+ engines: {node: '>=4'}
8553
+
8125
8554
  path-key@3.1.1:
8126
8555
  resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
8127
8556
  engines: {node: '>=8'}
@@ -8627,8 +9056,8 @@ packages:
8627
9056
  peerDependencies:
8628
9057
  postcss: ^8
8629
9058
 
8630
- postcss-plugin-shared@1.0.0:
8631
- resolution: {integrity: sha512-3x83BXvFXlbtIaD/GC4C2uZQ+UmGwh1uYCm4DjQTEjDv8HrrBmZWZH968W+Shq/vxP+amsH08OafVt8aVzqL2w==}
9059
+ postcss-plugin-shared@1.1.1:
9060
+ resolution: {integrity: sha512-ucByjwfw3SJXo3NFDy6aF264cnSxOL5gFYMfDz9U/CD97+pT2KSryZ8DmVviWnI1ofJL71y2DhParq1zoS4hcw==}
8632
9061
  peerDependencies:
8633
9062
  postcss: ^8
8634
9063
 
@@ -8644,8 +9073,8 @@ packages:
8644
9073
  peerDependencies:
8645
9074
  postcss: ^8.4
8646
9075
 
8647
- postcss-pxtrans@1.0.0:
8648
- resolution: {integrity: sha512-1AKXs+w/hor0EAmxCAa2ATfYKgzqey/rHTgJ6LvvpNsRyeV9hyVNczF3N1hSXcB5ruM4E3ezg8cf3W+W/GY4GA==}
9076
+ postcss-pxtrans@1.0.1:
9077
+ resolution: {integrity: sha512-oNxhcSbbhkfhgJP/E0JJHIuQs8asqAuD1FqFT4VFF7xhkBmKKTIM08T7WIRHo9rjod8E4PR/CuOxtcWjftufcg==}
8649
9078
  peerDependencies:
8650
9079
  postcss: ^8
8651
9080
 
@@ -8667,8 +9096,8 @@ packages:
8667
9096
  peerDependencies:
8668
9097
  postcss: ^8.2.15
8669
9098
 
8670
- postcss-rem-to-responsive-pixel@7.0.0:
8671
- resolution: {integrity: sha512-m22VCg246RpyFDTByp0cR0KwK4MhnRgrX5yHTTkFeQddFqhCviE13P5c8Dwi2ISBB4DVeJnEYBxEKjUNyrigdQ==}
9099
+ postcss-rem-to-responsive-pixel@7.0.1:
9100
+ resolution: {integrity: sha512-enzOmpYK8RHTOL7Y9o3AsSRnYqigGu4OZbDmpP7dUsRRIpyqS1h3hKZHHH5B+WJRyw58DRSAFuicM0uc/2GRJQ==}
8672
9101
  engines: {node: '>=16.6.0'}
8673
9102
  peerDependencies:
8674
9103
  postcss: ^8
@@ -8713,6 +9142,11 @@ packages:
8713
9142
  peerDependencies:
8714
9143
  postcss: ^8.2.15
8715
9144
 
9145
+ postcss-units-to-px@0.2.0:
9146
+ resolution: {integrity: sha512-IN0zGe3JnOJvbFQRlUeSr1icsjQbFwHuso3IfhzCuILb+z9aj+0Nlzka5Q/A5Ulnh9Cd8mEs1Rfl7NxQdw+6iA==}
9147
+ peerDependencies:
9148
+ postcss: ^8
9149
+
8716
9150
  postcss-value-parser@4.2.0:
8717
9151
  resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
8718
9152
 
@@ -8720,6 +9154,10 @@ packages:
8720
9154
  resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
8721
9155
  engines: {node: ^10 || ^12 || >=14}
8722
9156
 
9157
+ postcss@8.5.8:
9158
+ resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
9159
+ engines: {node: ^10 || ^12 || >=14}
9160
+
8723
9161
  postgres-array@2.0.0:
8724
9162
  resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
8725
9163
  engines: {node: '>=4'}
@@ -8909,6 +9347,10 @@ packages:
8909
9347
  resolution: {integrity: sha512-2CNoRoh95LxY47LvqrehIAfUVda2JbuFE/HaGYs42bNrGG+ojbw1h3zOcPcQ+1GQ3+rkzNndZn85u1XyZ3UsIA==}
8910
9348
  deprecated: The functionality that this package provided is now in @npmcli/arborist
8911
9349
 
9350
+ read-package-tree@5.3.1:
9351
+ resolution: {integrity: sha512-mLUDsD5JVtlZxjSlPPx1RETkNjjvQYuweKwNVt1Sn8kP5Jh44pvYuUHCp6xSVDZWbNxVxG5lyZJ921aJH61sTw==}
9352
+ deprecated: The functionality that this package provided is now in @npmcli/arborist
9353
+
8912
9354
  readable-stream@1.1.14:
8913
9355
  resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==}
8914
9356
 
@@ -9094,6 +9536,11 @@ packages:
9094
9536
  rfdc@1.4.1:
9095
9537
  resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
9096
9538
 
9539
+ rimraf@2.7.1:
9540
+ resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
9541
+ deprecated: Rimraf versions prior to v4 are no longer supported
9542
+ hasBin: true
9543
+
9097
9544
  rimraf@3.0.2:
9098
9545
  resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
9099
9546
  deprecated: Rimraf versions prior to v4 are no longer supported
@@ -9179,6 +9626,9 @@ packages:
9179
9626
  resolution: {integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==}
9180
9627
  hasBin: true
9181
9628
 
9629
+ semver-compare@1.0.0:
9630
+ resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==}
9631
+
9182
9632
  semver@5.7.2:
9183
9633
  resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
9184
9634
  hasBin: true
@@ -9192,6 +9642,11 @@ packages:
9192
9642
  engines: {node: '>=10'}
9193
9643
  hasBin: true
9194
9644
 
9645
+ semver@7.7.4:
9646
+ resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
9647
+ engines: {node: '>=10'}
9648
+ hasBin: true
9649
+
9195
9650
  send@0.19.0:
9196
9651
  resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
9197
9652
  engines: {node: '>= 0.8.0'}
@@ -9253,10 +9708,22 @@ packages:
9253
9708
  resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
9254
9709
  engines: {node: '>=8'}
9255
9710
 
9711
+ sharp@0.33.5:
9712
+ resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
9713
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
9714
+
9715
+ shebang-command@1.2.0:
9716
+ resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
9717
+ engines: {node: '>=0.10.0'}
9718
+
9256
9719
  shebang-command@2.0.0:
9257
9720
  resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
9258
9721
  engines: {node: '>=8'}
9259
9722
 
9723
+ shebang-regex@1.0.0:
9724
+ resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
9725
+ engines: {node: '>=0.10.0'}
9726
+
9260
9727
  shebang-regex@3.0.0:
9261
9728
  resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
9262
9729
  engines: {node: '>=8'}
@@ -9302,6 +9769,9 @@ packages:
9302
9769
  simple-plist@1.3.1:
9303
9770
  resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==}
9304
9771
 
9772
+ simple-swizzle@0.2.4:
9773
+ resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==}
9774
+
9305
9775
  simple-wcswidth@1.1.2:
9306
9776
  resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
9307
9777
 
@@ -9409,10 +9879,6 @@ packages:
9409
9879
  resolution: {integrity: sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==}
9410
9880
  engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
9411
9881
 
9412
- stdin-discarder@0.2.2:
9413
- resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
9414
- engines: {node: '>=18'}
9415
-
9416
9882
  stop-iteration-iterator@1.1.0:
9417
9883
  resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
9418
9884
  engines: {node: '>= 0.4'}
@@ -9509,6 +9975,10 @@ packages:
9509
9975
  strip-dirs@2.1.0:
9510
9976
  resolution: {integrity: sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==}
9511
9977
 
9978
+ strip-eof@1.0.0:
9979
+ resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
9980
+ engines: {node: '>=0.10.0'}
9981
+
9512
9982
  strip-final-newline@2.0.0:
9513
9983
  resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
9514
9984
  engines: {node: '>=6'}
@@ -9612,11 +10082,20 @@ packages:
9612
10082
  resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==}
9613
10083
  engines: {node: '>=10.0.0'}
9614
10084
 
9615
- tailwindcss-config@1.1.3:
9616
- resolution: {integrity: sha512-7AN01Cwz2vd/vl6nKwoR0y/KlgpbKBREp1Q+MHJw8QF53AueVRFgU2Cqq0yhIQ4nC2wGvEJtlBCTeKYPX3TCXQ==}
10085
+ tailwind-merge@3.5.0:
10086
+ resolution: {integrity: sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==}
10087
+
10088
+ tailwindcss-animate@1.0.7:
10089
+ resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
10090
+ peerDependencies:
10091
+ tailwindcss: '>=3.0.0 || insiders'
9617
10092
 
9618
- tailwindcss-patch@8.6.1:
9619
- resolution: {integrity: sha512-DMK8j1ZAl1p1KdX5G4kT2atTbkrf3Su7BVIPsow6FXJV6mias0dm4+lg/pykA05EUzEHpKPrRfw3A6ScPWV2qQ==}
10093
+ tailwindcss-config@1.1.4:
10094
+ resolution: {integrity: sha512-p3PWbAJAkbO9Jabvr4C5l9X+Am1JmDoPHP9S2rbUNe/gT/I9BDTg4dJjd1Tg1RQ2AyZrslncYCQW9uqvb48irw==}
10095
+ engines: {node: ^20.19.0 || >=22.12.0}
10096
+
10097
+ tailwindcss-patch@8.7.3:
10098
+ resolution: {integrity: sha512-PvQu+wr/JS0y2mx0RzTKbMv+oGhmC/CowR8gN3/4tATK1Wo9MHm6ZMwlNDjbh1ltT7SCwjAEynqoSNYapnLIig==}
9620
10099
  hasBin: true
9621
10100
  peerDependencies:
9622
10101
  tailwindcss: '>=2.0.0'
@@ -9627,6 +10106,9 @@ packages:
9627
10106
  tailwindcss@4.1.18:
9628
10107
  resolution: {integrity: sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==}
9629
10108
 
10109
+ tailwindcss@4.2.1:
10110
+ resolution: {integrity: sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==}
10111
+
9630
10112
  tapable@2.3.0:
9631
10113
  resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
9632
10114
  engines: {node: '>=6'}
@@ -9667,6 +10149,11 @@ packages:
9667
10149
  engines: {node: '>=6.0.0'}
9668
10150
  hasBin: true
9669
10151
 
10152
+ terser@5.26.0:
10153
+ resolution: {integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==}
10154
+ engines: {node: '>=10'}
10155
+ hasBin: true
10156
+
9670
10157
  terser@5.44.1:
9671
10158
  resolution: {integrity: sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw==}
9672
10159
  engines: {node: '>=10'}
@@ -9762,10 +10249,8 @@ packages:
9762
10249
  tr46@0.0.3:
9763
10250
  resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
9764
10251
 
9765
- transliteration@2.6.1:
9766
- resolution: {integrity: sha512-hJ9BhrQAOnNTbpOr1MxsNjZISkn7ppvF5TKUeFmTE1mG4ZPD/XVxF0L0LUoIUCWmQyxH0gJpVtfYLAWf298U9w==}
9767
- engines: {node: '>=20.0.0'}
9768
- hasBin: true
10252
+ traverse@0.3.9:
10253
+ resolution: {integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==}
9769
10254
 
9770
10255
  tree-kill@1.2.2:
9771
10256
  resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
@@ -9808,6 +10293,10 @@ packages:
9808
10293
  tslib@2.8.1:
9809
10294
  resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
9810
10295
 
10296
+ tt-ide-cli@0.1.31:
10297
+ resolution: {integrity: sha512-1MTL9cG2EYwPWzv6JY+quNHhcjbtV/gfp760zsKWsZZ/19qGGu0eJI6jBrO/rlzr8BWf3QPzGjLsH3oA2WJrdQ==}
10298
+ hasBin: true
10299
+
9811
10300
  tunnel-agent@0.6.0:
9812
10301
  resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
9813
10302
 
@@ -9932,6 +10421,9 @@ packages:
9932
10421
  resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
9933
10422
  engines: {node: '>= 0.8'}
9934
10423
 
10424
+ unzipper@0.10.14:
10425
+ resolution: {integrity: sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==}
10426
+
9935
10427
  update-browserslist-db@1.2.3:
9936
10428
  resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
9937
10429
  hasBin: true
@@ -9967,6 +10459,9 @@ packages:
9967
10459
  util-deprecate@1.0.2:
9968
10460
  resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
9969
10461
 
10462
+ util-promisify@2.1.0:
10463
+ resolution: {integrity: sha512-K+5eQPYs14b3+E+hmE2J6gCZ4JmMl9DbYS6BeP2CHq6WMuNxErxf5B/n0fz85L8zUuoO6rIzNNmIQDu/j+1OcA==}
10464
+
9970
10465
  utils-merge@1.0.1:
9971
10466
  resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
9972
10467
  engines: {node: '>= 0.4.0'}
@@ -10043,9 +10538,9 @@ packages:
10043
10538
  wcwidth@1.0.1:
10044
10539
  resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
10045
10540
 
10046
- weapp-tailwindcss@4.9.2:
10047
- resolution: {integrity: sha512-2DnADF3pp9HSjrhhHXY8UH6InJn/J1HXPhh0xA8u/isL9c0wa/TL8shLGpf1l3Kj6dCcey8LDT33sumwFF139g==}
10048
- engines: {node: ^18.17.0 || >=20.5.0}
10541
+ weapp-tailwindcss@4.10.3:
10542
+ resolution: {integrity: sha512-G8Em6CGt/9P7r8rV2mIqnC0OCl6UStzR0XV+55y4Z45x7W1Xxy2dj8PICJ8OJaVoJ8VNR8jXYrlNWQxqLRWQKg==}
10543
+ engines: {node: ^20.19.0 || >=22.12.0}
10049
10544
  hasBin: true
10050
10545
 
10051
10546
  webidl-conversions@3.0.1:
@@ -10063,6 +10558,10 @@ packages:
10063
10558
  resolution: {integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==}
10064
10559
  engines: {node: '>=10.13.0'}
10065
10560
 
10561
+ webpack-sources@3.3.4:
10562
+ resolution: {integrity: sha512-7tP1PdV4vF+lYPnkMR0jMY5/la2ub5Fc/8VQrrU+lXkiM6C4TjVfGw7iKfyhnTQOsD+6Q/iKw0eFciziRgD58Q==}
10563
+ engines: {node: '>=10.13.0'}
10564
+
10066
10565
  webpack@5.97.1:
10067
10566
  resolution: {integrity: sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==}
10068
10567
  engines: {node: '>=10.13.0'}
@@ -10141,6 +10640,18 @@ packages:
10141
10640
  resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
10142
10641
  engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
10143
10642
 
10643
+ ws@8.19.0:
10644
+ resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
10645
+ engines: {node: '>=10.0.0'}
10646
+ peerDependencies:
10647
+ bufferutil: ^4.0.1
10648
+ utf-8-validate: '>=5.0.2'
10649
+ peerDependenciesMeta:
10650
+ bufferutil:
10651
+ optional: true
10652
+ utf-8-validate:
10653
+ optional: true
10654
+
10144
10655
  wxml-minifier@0.0.1:
10145
10656
  resolution: {integrity: sha512-g8ZS4fyLdyRIcExnevKTnAFxbtYlAPKBGFO1DXOcsJfmppQWjH2xe2Ff6rRQ2ubYAWalaNjMYpkAl6hurhqkHg==}
10146
10657
 
@@ -10216,10 +10727,6 @@ packages:
10216
10727
  resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
10217
10728
  engines: {node: '>=10'}
10218
10729
 
10219
- yoctocolors@2.1.2:
10220
- resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
10221
- engines: {node: '>=18'}
10222
-
10223
10730
  yup@1.7.1:
10224
10731
  resolution: {integrity: sha512-GKHFX2nXul2/4Dtfxhozv701jLQHdf6J34YDh2cEkpqoo8le5Mg6/LrdseVLrFarmFygZTlfIhHx/QKfb/QWXw==}
10225
10732
 
@@ -10798,6 +11305,12 @@ snapshots:
10798
11305
  js-tokens: 4.0.0
10799
11306
  picocolors: 1.1.1
10800
11307
 
11308
+ '@babel/code-frame@7.29.0':
11309
+ dependencies:
11310
+ '@babel/helper-validator-identifier': 7.28.5
11311
+ js-tokens: 4.0.0
11312
+ picocolors: 1.1.1
11313
+
10801
11314
  '@babel/compat-data@7.22.9': {}
10802
11315
 
10803
11316
  '@babel/compat-data@7.28.5': {}
@@ -10805,15 +11318,15 @@ snapshots:
10805
11318
  '@babel/core@7.21.4':
10806
11319
  dependencies:
10807
11320
  '@ampproject/remapping': 2.3.0
10808
- '@babel/code-frame': 7.22.10
10809
- '@babel/generator': 7.21.4
11321
+ '@babel/code-frame': 7.27.1
11322
+ '@babel/generator': 7.28.5
10810
11323
  '@babel/helper-compilation-targets': 7.22.10
10811
11324
  '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.4)
10812
11325
  '@babel/helpers': 7.21.0
10813
- '@babel/parser': 7.21.4
10814
- '@babel/template': 7.20.7
10815
- '@babel/traverse': 7.21.4
10816
- '@babel/types': 7.24.6
11326
+ '@babel/parser': 7.28.5
11327
+ '@babel/template': 7.27.2
11328
+ '@babel/traverse': 7.28.5
11329
+ '@babel/types': 7.28.6
10817
11330
  convert-source-map: 1.9.0
10818
11331
  debug: 4.4.3
10819
11332
  gensync: 1.0.0-beta.2
@@ -10860,7 +11373,7 @@ snapshots:
10860
11373
 
10861
11374
  '@babel/generator@7.21.4':
10862
11375
  dependencies:
10863
- '@babel/types': 7.24.6
11376
+ '@babel/types': 7.28.6
10864
11377
  '@jridgewell/gen-mapping': 0.3.13
10865
11378
  '@jridgewell/trace-mapping': 0.3.31
10866
11379
  jsesc: 2.5.2
@@ -10880,9 +11393,17 @@ snapshots:
10880
11393
  '@jridgewell/trace-mapping': 0.3.31
10881
11394
  jsesc: 3.1.0
10882
11395
 
11396
+ '@babel/generator@7.29.1':
11397
+ dependencies:
11398
+ '@babel/parser': 7.29.0
11399
+ '@babel/types': 7.29.0
11400
+ '@jridgewell/gen-mapping': 0.3.13
11401
+ '@jridgewell/trace-mapping': 0.3.31
11402
+ jsesc: 3.1.0
11403
+
10883
11404
  '@babel/helper-annotate-as-pure@7.22.5':
10884
11405
  dependencies:
10885
- '@babel/types': 7.24.6
11406
+ '@babel/types': 7.28.6
10886
11407
 
10887
11408
  '@babel/helper-annotate-as-pure@7.27.3':
10888
11409
  dependencies:
@@ -10890,7 +11411,7 @@ snapshots:
10890
11411
 
10891
11412
  '@babel/helper-builder-binary-assignment-operator-visitor@7.22.10':
10892
11413
  dependencies:
10893
- '@babel/types': 7.24.6
11414
+ '@babel/types': 7.28.6
10894
11415
 
10895
11416
  '@babel/helper-compilation-targets@7.22.10':
10896
11417
  dependencies:
@@ -10980,7 +11501,7 @@ snapshots:
10980
11501
  '@babel/helper-function-name@7.22.5':
10981
11502
  dependencies:
10982
11503
  '@babel/template': 7.27.2
10983
- '@babel/types': 7.24.6
11504
+ '@babel/types': 7.28.6
10984
11505
 
10985
11506
  '@babel/helper-function-name@7.24.7':
10986
11507
  dependencies:
@@ -10991,7 +11512,7 @@ snapshots:
10991
11512
 
10992
11513
  '@babel/helper-hoist-variables@7.22.5':
10993
11514
  dependencies:
10994
- '@babel/types': 7.24.6
11515
+ '@babel/types': 7.28.6
10995
11516
 
10996
11517
  '@babel/helper-hoist-variables@7.24.7':
10997
11518
  dependencies:
@@ -10999,7 +11520,7 @@ snapshots:
10999
11520
 
11000
11521
  '@babel/helper-member-expression-to-functions@7.22.5':
11001
11522
  dependencies:
11002
- '@babel/types': 7.24.6
11523
+ '@babel/types': 7.28.6
11003
11524
 
11004
11525
  '@babel/helper-member-expression-to-functions@7.28.5':
11005
11526
  dependencies:
@@ -11014,7 +11535,7 @@ snapshots:
11014
11535
 
11015
11536
  '@babel/helper-module-imports@7.21.4':
11016
11537
  dependencies:
11017
- '@babel/types': 7.24.6
11538
+ '@babel/types': 7.28.6
11018
11539
 
11019
11540
  '@babel/helper-module-imports@7.27.1':
11020
11541
  dependencies:
@@ -11030,7 +11551,7 @@ snapshots:
11030
11551
  '@babel/helper-module-imports': 7.27.1
11031
11552
  '@babel/helper-simple-access': 7.22.5
11032
11553
  '@babel/helper-split-export-declaration': 7.22.6
11033
- '@babel/helper-validator-identifier': 7.24.6
11554
+ '@babel/helper-validator-identifier': 7.28.5
11034
11555
  transitivePeerDependencies:
11035
11556
  - supports-color
11036
11557
 
@@ -11045,7 +11566,7 @@ snapshots:
11045
11566
 
11046
11567
  '@babel/helper-optimise-call-expression@7.22.5':
11047
11568
  dependencies:
11048
- '@babel/types': 7.24.6
11569
+ '@babel/types': 7.28.6
11049
11570
 
11050
11571
  '@babel/helper-optimise-call-expression@7.27.1':
11051
11572
  dependencies:
@@ -11089,11 +11610,11 @@ snapshots:
11089
11610
 
11090
11611
  '@babel/helper-simple-access@7.22.5':
11091
11612
  dependencies:
11092
- '@babel/types': 7.24.6
11613
+ '@babel/types': 7.28.6
11093
11614
 
11094
11615
  '@babel/helper-skip-transparent-expression-wrappers@7.24.6':
11095
11616
  dependencies:
11096
- '@babel/types': 7.24.6
11617
+ '@babel/types': 7.28.6
11097
11618
 
11098
11619
  '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
11099
11620
  dependencies:
@@ -11104,7 +11625,7 @@ snapshots:
11104
11625
 
11105
11626
  '@babel/helper-split-export-declaration@7.22.6':
11106
11627
  dependencies:
11107
- '@babel/types': 7.24.6
11628
+ '@babel/types': 7.28.6
11108
11629
 
11109
11630
  '@babel/helper-split-export-declaration@7.24.7':
11110
11631
  dependencies:
@@ -11126,7 +11647,7 @@ snapshots:
11126
11647
  dependencies:
11127
11648
  '@babel/helper-function-name': 7.22.5
11128
11649
  '@babel/template': 7.27.2
11129
- '@babel/types': 7.24.6
11650
+ '@babel/types': 7.28.6
11130
11651
 
11131
11652
  '@babel/helper-wrap-function@7.28.3':
11132
11653
  dependencies:
@@ -11138,9 +11659,9 @@ snapshots:
11138
11659
 
11139
11660
  '@babel/helpers@7.21.0':
11140
11661
  dependencies:
11141
- '@babel/template': 7.20.7
11142
- '@babel/traverse': 7.21.4
11143
- '@babel/types': 7.24.6
11662
+ '@babel/template': 7.27.2
11663
+ '@babel/traverse': 7.28.5
11664
+ '@babel/types': 7.28.6
11144
11665
  transitivePeerDependencies:
11145
11666
  - supports-color
11146
11667
 
@@ -11151,13 +11672,13 @@ snapshots:
11151
11672
 
11152
11673
  '@babel/highlight@7.22.10':
11153
11674
  dependencies:
11154
- '@babel/helper-validator-identifier': 7.24.6
11675
+ '@babel/helper-validator-identifier': 7.28.5
11155
11676
  chalk: 2.4.2
11156
11677
  js-tokens: 4.0.0
11157
11678
 
11158
11679
  '@babel/parser@7.21.4':
11159
11680
  dependencies:
11160
- '@babel/types': 7.24.6
11681
+ '@babel/types': 7.28.6
11161
11682
 
11162
11683
  '@babel/parser@7.24.4':
11163
11684
  dependencies:
@@ -11167,6 +11688,10 @@ snapshots:
11167
11688
  dependencies:
11168
11689
  '@babel/types': 7.28.6
11169
11690
 
11691
+ '@babel/parser@7.29.0':
11692
+ dependencies:
11693
+ '@babel/types': 7.29.0
11694
+
11170
11695
  '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.28.5)':
11171
11696
  dependencies:
11172
11697
  '@babel/core': 7.28.5
@@ -11814,7 +12339,7 @@ snapshots:
11814
12339
  '@babel/helper-hoist-variables': 7.22.5
11815
12340
  '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.4)
11816
12341
  '@babel/helper-plugin-utils': 7.24.6
11817
- '@babel/helper-validator-identifier': 7.24.6
12342
+ '@babel/helper-validator-identifier': 7.28.5
11818
12343
  transitivePeerDependencies:
11819
12344
  - supports-color
11820
12345
 
@@ -12227,7 +12752,7 @@ snapshots:
12227
12752
  '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.21.4)
12228
12753
  '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.21.4)
12229
12754
  '@babel/preset-modules': 0.1.6(@babel/core@7.21.4)
12230
- '@babel/types': 7.24.6
12755
+ '@babel/types': 7.28.6
12231
12756
  babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.4)
12232
12757
  babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.4)
12233
12758
  babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.4)
@@ -12318,7 +12843,7 @@ snapshots:
12318
12843
  '@babel/helper-plugin-utils': 7.24.6
12319
12844
  '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.4)
12320
12845
  '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.21.4)
12321
- '@babel/types': 7.24.6
12846
+ '@babel/types': 7.28.6
12322
12847
  esutils: 2.0.3
12323
12848
 
12324
12849
  '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.5)':
@@ -12365,9 +12890,9 @@ snapshots:
12365
12890
 
12366
12891
  '@babel/template@7.20.7':
12367
12892
  dependencies:
12368
- '@babel/code-frame': 7.22.10
12369
- '@babel/parser': 7.21.4
12370
- '@babel/types': 7.24.6
12893
+ '@babel/code-frame': 7.27.1
12894
+ '@babel/parser': 7.28.5
12895
+ '@babel/types': 7.28.6
12371
12896
 
12372
12897
  '@babel/template@7.27.2':
12373
12898
  dependencies:
@@ -12375,16 +12900,22 @@ snapshots:
12375
12900
  '@babel/parser': 7.28.5
12376
12901
  '@babel/types': 7.28.6
12377
12902
 
12903
+ '@babel/template@7.28.6':
12904
+ dependencies:
12905
+ '@babel/code-frame': 7.29.0
12906
+ '@babel/parser': 7.29.0
12907
+ '@babel/types': 7.29.0
12908
+
12378
12909
  '@babel/traverse@7.21.4':
12379
12910
  dependencies:
12380
- '@babel/code-frame': 7.22.10
12381
- '@babel/generator': 7.21.4
12911
+ '@babel/code-frame': 7.27.1
12912
+ '@babel/generator': 7.28.5
12382
12913
  '@babel/helper-environment-visitor': 7.22.5
12383
12914
  '@babel/helper-function-name': 7.22.5
12384
12915
  '@babel/helper-hoist-variables': 7.22.5
12385
12916
  '@babel/helper-split-export-declaration': 7.22.6
12386
- '@babel/parser': 7.21.4
12387
- '@babel/types': 7.24.6
12917
+ '@babel/parser': 7.28.5
12918
+ '@babel/types': 7.28.6
12388
12919
  debug: 4.4.3
12389
12920
  globals: 11.12.0
12390
12921
  transitivePeerDependencies:
@@ -12417,6 +12948,18 @@ snapshots:
12417
12948
  transitivePeerDependencies:
12418
12949
  - supports-color
12419
12950
 
12951
+ '@babel/traverse@7.29.0':
12952
+ dependencies:
12953
+ '@babel/code-frame': 7.29.0
12954
+ '@babel/generator': 7.29.1
12955
+ '@babel/helper-globals': 7.28.0
12956
+ '@babel/parser': 7.29.0
12957
+ '@babel/template': 7.28.6
12958
+ '@babel/types': 7.29.0
12959
+ debug: 4.4.3
12960
+ transitivePeerDependencies:
12961
+ - supports-color
12962
+
12420
12963
  '@babel/types@7.24.0':
12421
12964
  dependencies:
12422
12965
  '@babel/helper-string-parser': 7.27.1
@@ -12425,8 +12968,8 @@ snapshots:
12425
12968
 
12426
12969
  '@babel/types@7.24.6':
12427
12970
  dependencies:
12428
- '@babel/helper-string-parser': 7.24.6
12429
- '@babel/helper-validator-identifier': 7.24.6
12971
+ '@babel/helper-string-parser': 7.27.1
12972
+ '@babel/helper-validator-identifier': 7.28.5
12430
12973
  to-fast-properties: 2.0.0
12431
12974
 
12432
12975
  '@babel/types@7.28.6':
@@ -12434,6 +12977,11 @@ snapshots:
12434
12977
  '@babel/helper-string-parser': 7.27.1
12435
12978
  '@babel/helper-validator-identifier': 7.28.5
12436
12979
 
12980
+ '@babel/types@7.29.0':
12981
+ dependencies:
12982
+ '@babel/helper-string-parser': 7.27.1
12983
+ '@babel/helper-validator-identifier': 7.28.5
12984
+
12437
12985
  '@borewit/text-codec@0.2.1': {}
12438
12986
 
12439
12987
  '@cacheable/memory@2.0.7':
@@ -12777,6 +13325,11 @@ snapshots:
12777
13325
 
12778
13326
  '@dual-bundle/import-meta-resolve@4.2.1': {}
12779
13327
 
13328
+ '@emnapi/runtime@1.8.1':
13329
+ dependencies:
13330
+ tslib: 2.8.1
13331
+ optional: true
13332
+
12780
13333
  '@esbuild-kit/core-utils@3.3.2':
12781
13334
  dependencies:
12782
13335
  esbuild: 0.18.20
@@ -13070,6 +13623,81 @@ snapshots:
13070
13623
 
13071
13624
  '@humanwhocodes/object-schema@2.0.3': {}
13072
13625
 
13626
+ '@img/sharp-darwin-arm64@0.33.5':
13627
+ optionalDependencies:
13628
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
13629
+ optional: true
13630
+
13631
+ '@img/sharp-darwin-x64@0.33.5':
13632
+ optionalDependencies:
13633
+ '@img/sharp-libvips-darwin-x64': 1.0.4
13634
+ optional: true
13635
+
13636
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
13637
+ optional: true
13638
+
13639
+ '@img/sharp-libvips-darwin-x64@1.0.4':
13640
+ optional: true
13641
+
13642
+ '@img/sharp-libvips-linux-arm64@1.0.4':
13643
+ optional: true
13644
+
13645
+ '@img/sharp-libvips-linux-arm@1.0.5':
13646
+ optional: true
13647
+
13648
+ '@img/sharp-libvips-linux-s390x@1.0.4':
13649
+ optional: true
13650
+
13651
+ '@img/sharp-libvips-linux-x64@1.0.4':
13652
+ optional: true
13653
+
13654
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
13655
+ optional: true
13656
+
13657
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
13658
+ optional: true
13659
+
13660
+ '@img/sharp-linux-arm64@0.33.5':
13661
+ optionalDependencies:
13662
+ '@img/sharp-libvips-linux-arm64': 1.0.4
13663
+ optional: true
13664
+
13665
+ '@img/sharp-linux-arm@0.33.5':
13666
+ optionalDependencies:
13667
+ '@img/sharp-libvips-linux-arm': 1.0.5
13668
+ optional: true
13669
+
13670
+ '@img/sharp-linux-s390x@0.33.5':
13671
+ optionalDependencies:
13672
+ '@img/sharp-libvips-linux-s390x': 1.0.4
13673
+ optional: true
13674
+
13675
+ '@img/sharp-linux-x64@0.33.5':
13676
+ optionalDependencies:
13677
+ '@img/sharp-libvips-linux-x64': 1.0.4
13678
+ optional: true
13679
+
13680
+ '@img/sharp-linuxmusl-arm64@0.33.5':
13681
+ optionalDependencies:
13682
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
13683
+ optional: true
13684
+
13685
+ '@img/sharp-linuxmusl-x64@0.33.5':
13686
+ optionalDependencies:
13687
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
13688
+ optional: true
13689
+
13690
+ '@img/sharp-wasm32@0.33.5':
13691
+ dependencies:
13692
+ '@emnapi/runtime': 1.8.1
13693
+ optional: true
13694
+
13695
+ '@img/sharp-win32-ia32@0.33.5':
13696
+ optional: true
13697
+
13698
+ '@img/sharp-win32-x64@0.33.5':
13699
+ optional: true
13700
+
13073
13701
  '@inquirer/external-editor@1.0.3(@types/node@22.19.6)':
13074
13702
  dependencies:
13075
13703
  chardet: 2.1.1
@@ -13589,14 +14217,14 @@ snapshots:
13589
14217
 
13590
14218
  '@keyv/serialize@1.1.1': {}
13591
14219
 
13592
- '@langchain/core@1.1.16(openai@6.16.0(zod@4.3.5))':
14220
+ '@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))':
13593
14221
  dependencies:
13594
14222
  '@cfworker/json-schema': 4.1.1
13595
14223
  ansi-styles: 5.2.0
13596
14224
  camelcase: 6.3.0
13597
14225
  decamelize: 1.2.0
13598
14226
  js-tiktoken: 1.0.21
13599
- langsmith: 0.4.7(openai@6.16.0(zod@4.3.5))
14227
+ langsmith: 0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
13600
14228
  mustache: 4.2.0
13601
14229
  p-queue: 6.6.2
13602
14230
  uuid: 10.0.0
@@ -13607,11 +14235,11 @@ snapshots:
13607
14235
  - '@opentelemetry/sdk-trace-base'
13608
14236
  - openai
13609
14237
 
13610
- '@langchain/openai@1.2.3(@langchain/core@1.1.16(openai@6.16.0(zod@4.3.5)))':
14238
+ '@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)':
13611
14239
  dependencies:
13612
- '@langchain/core': 1.1.16(openai@6.16.0(zod@4.3.5))
14240
+ '@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
13613
14241
  js-tiktoken: 1.0.21
13614
- openai: 6.16.0(zod@4.3.5)
14242
+ openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
13615
14243
  zod: 4.3.5
13616
14244
  transitivePeerDependencies:
13617
14245
  - ws
@@ -14230,6 +14858,44 @@ snapshots:
14230
14858
 
14231
14859
  '@stencil/core@2.22.3': {}
14232
14860
 
14861
+ '@supabase/auth-js@2.95.3':
14862
+ dependencies:
14863
+ tslib: 2.8.1
14864
+
14865
+ '@supabase/functions-js@2.95.3':
14866
+ dependencies:
14867
+ tslib: 2.8.1
14868
+
14869
+ '@supabase/postgrest-js@2.95.3':
14870
+ dependencies:
14871
+ tslib: 2.8.1
14872
+
14873
+ '@supabase/realtime-js@2.95.3':
14874
+ dependencies:
14875
+ '@types/phoenix': 1.6.7
14876
+ '@types/ws': 8.18.1
14877
+ tslib: 2.8.1
14878
+ ws: 8.19.0
14879
+ transitivePeerDependencies:
14880
+ - bufferutil
14881
+ - utf-8-validate
14882
+
14883
+ '@supabase/storage-js@2.95.3':
14884
+ dependencies:
14885
+ iceberg-js: 0.8.1
14886
+ tslib: 2.8.1
14887
+
14888
+ '@supabase/supabase-js@2.95.3':
14889
+ dependencies:
14890
+ '@supabase/auth-js': 2.95.3
14891
+ '@supabase/functions-js': 2.95.3
14892
+ '@supabase/postgrest-js': 2.95.3
14893
+ '@supabase/realtime-js': 2.95.3
14894
+ '@supabase/storage-js': 2.95.3
14895
+ transitivePeerDependencies:
14896
+ - bufferutil
14897
+ - utf-8-validate
14898
+
14233
14899
  '@swc/core-darwin-arm64@1.3.96':
14234
14900
  optional: true
14235
14901
 
@@ -14339,9 +15005,9 @@ snapshots:
14339
15005
  dependencies:
14340
15006
  defer-to-connect: 1.1.3
14341
15007
 
14342
- '@tailwindcss-mangle/config@6.1.0':
15008
+ '@tailwindcss-mangle/config@6.1.3':
14343
15009
  dependencies:
14344
- '@tailwindcss-mangle/shared': 4.1.1
15010
+ '@tailwindcss-mangle/shared': 4.1.3
14345
15011
  c12: 3.3.3
14346
15012
  fs-extra: 11.3.3
14347
15013
  is-css-request: 1.0.1
@@ -14349,7 +15015,7 @@ snapshots:
14349
15015
  transitivePeerDependencies:
14350
15016
  - magicast
14351
15017
 
14352
- '@tailwindcss-mangle/shared@4.1.1': {}
15018
+ '@tailwindcss-mangle/shared@4.1.3': {}
14353
15019
 
14354
15020
  '@tailwindcss/node@4.1.18':
14355
15021
  dependencies:
@@ -14361,6 +15027,16 @@ snapshots:
14361
15027
  source-map-js: 1.2.1
14362
15028
  tailwindcss: 4.1.18
14363
15029
 
15030
+ '@tailwindcss/node@4.2.1':
15031
+ dependencies:
15032
+ '@jridgewell/remapping': 2.3.5
15033
+ enhanced-resolve: 5.20.0
15034
+ jiti: 2.6.1
15035
+ lightningcss: 1.31.1
15036
+ magic-string: 0.30.21
15037
+ source-map-js: 1.2.1
15038
+ tailwindcss: 4.2.1
15039
+
14364
15040
  '@tailwindcss/oxide-android-arm64@4.1.18':
14365
15041
  optional: true
14366
15042
 
@@ -14470,12 +15146,12 @@ snapshots:
14470
15146
  - debug
14471
15147
  - supports-color
14472
15148
 
14473
- '@tarojs/components-react@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))':
15149
+ '@tarojs/components-react@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96))':
14474
15150
  dependencies:
14475
15151
  '@babel/runtime': 7.28.4
14476
- '@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
15152
+ '@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
14477
15153
  '@tarojs/shared': 4.1.9
14478
- '@tarojs/taro': 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
15154
+ '@tarojs/taro': 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
14479
15155
  classnames: 2.5.1
14480
15156
  identity-obj-proxy: 3.0.0
14481
15157
  react: 18.3.1
@@ -14493,12 +15169,12 @@ snapshots:
14493
15169
  - webpack-chain
14494
15170
  - webpack-dev-server
14495
15171
 
14496
- '@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))':
15172
+ '@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))':
14497
15173
  dependencies:
14498
15174
  '@stencil/core': 2.22.3
14499
15175
  '@tarojs/runtime': 4.1.9
14500
15176
  '@tarojs/shared': 4.1.9
14501
- '@tarojs/taro': 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
15177
+ '@tarojs/taro': 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
14502
15178
  classnames: 2.5.1
14503
15179
  hammerjs: 2.0.8
14504
15180
  hls.js: 1.6.15
@@ -14638,7 +15314,7 @@ snapshots:
14638
15314
  transitivePeerDependencies:
14639
15315
  - supports-color
14640
15316
 
14641
- '@tarojs/plugin-framework-react@4.1.9(@tarojs/helper@4.1.9)(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@vitejs/plugin-react@4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1)))(react@18.3.1)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1))(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))':
15317
+ '@tarojs/plugin-framework-react@4.1.9(@tarojs/helper@4.1.9)(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@vitejs/plugin-react@4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)))(react@18.3.1)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))(webpack@5.97.1(@swc/core@1.3.96))':
14642
15318
  dependencies:
14643
15319
  '@tarojs/helper': 4.1.9
14644
15320
  '@tarojs/runtime': 4.1.9
@@ -14648,10 +15324,10 @@ snapshots:
14648
15324
  lodash: 4.17.21
14649
15325
  tslib: 2.8.1
14650
15326
  optionalDependencies:
14651
- '@vitejs/plugin-react': 4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1))
15327
+ '@vitejs/plugin-react': 4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))
14652
15328
  react: 18.3.1
14653
- vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1)
14654
- webpack: 5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)
15329
+ vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)
15330
+ webpack: 5.97.1(@swc/core@1.3.96)
14655
15331
 
14656
15332
  '@tarojs/plugin-generator@4.1.9(@types/node@22.19.6)':
14657
15333
  dependencies:
@@ -14670,7 +15346,7 @@ snapshots:
14670
15346
  - babel-plugin-macros
14671
15347
  - supports-color
14672
15348
 
14673
- '@tarojs/plugin-mini-ci@4.1.9(miniprogram-ci@2.1.26(eslint@8.57.1))':
15349
+ '@tarojs/plugin-mini-ci@4.1.9(patch_hash=j6dgmq33tuqqgowk7tjyyinctm)(miniprogram-ci@2.1.26(eslint@8.57.1))(tt-ide-cli@0.1.31(@types/node@22.19.6))':
14674
15350
  dependencies:
14675
15351
  axios: 1.13.2
14676
15352
  jimp: 0.22.12
@@ -14680,20 +15356,22 @@ snapshots:
14680
15356
  qrcode: 1.5.4
14681
15357
  resolve: 1.22.11
14682
15358
  shelljs: 0.8.5
15359
+ optionalDependencies:
15360
+ tt-ide-cli: 0.1.31(@types/node@22.19.6)
14683
15361
  transitivePeerDependencies:
14684
15362
  - debug
14685
15363
  - encoding
14686
15364
 
14687
- '@tarojs/plugin-platform-h5@4.1.9(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@types/react@18.3.27)(postcss@8.5.6)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))':
15365
+ '@tarojs/plugin-platform-h5@4.1.9(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@types/react@18.3.27)(postcss@8.5.6)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96))':
14688
15366
  dependencies:
14689
15367
  '@babel/core': 7.28.5
14690
- '@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
14691
- '@tarojs/components-react': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
15368
+ '@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
15369
+ '@tarojs/components-react': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96))
14692
15370
  '@tarojs/helper': 4.1.9
14693
15371
  '@tarojs/runtime': 4.1.9
14694
15372
  '@tarojs/service': 4.1.9
14695
15373
  '@tarojs/shared': 4.1.9
14696
- '@tarojs/taro-h5': 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))
15374
+ '@tarojs/taro-h5': 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))
14697
15375
  babel-plugin-transform-taroapi: 4.1.9(@babel/core@7.28.5)
14698
15376
  change-case: 4.1.2
14699
15377
  lodash-es: 4.17.21
@@ -14713,6 +15391,12 @@ snapshots:
14713
15391
  - webpack-chain
14714
15392
  - webpack-dev-server
14715
15393
 
15394
+ '@tarojs/plugin-platform-tt@4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)':
15395
+ dependencies:
15396
+ '@tarojs/service': 4.1.9
15397
+ '@tarojs/shared': 4.1.9
15398
+ webpack-sources: 3.3.3
15399
+
14716
15400
  '@tarojs/plugin-platform-weapp@4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)':
14717
15401
  dependencies:
14718
15402
  '@tarojs/service': 4.1.9
@@ -14725,11 +15409,11 @@ snapshots:
14725
15409
  react: 18.3.1
14726
15410
  react-reconciler: 0.29.0(react@18.3.1)
14727
15411
 
14728
- '@tarojs/router@4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))':
15412
+ '@tarojs/router@4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))':
14729
15413
  dependencies:
14730
15414
  '@tarojs/runtime': 4.1.9
14731
15415
  '@tarojs/shared': 4.1.9
14732
- '@tarojs/taro': 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
15416
+ '@tarojs/taro': 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
14733
15417
  dingtalk-jsapi: 2.15.6
14734
15418
  history: 5.3.0
14735
15419
  mobile-detect: 1.4.5
@@ -14768,11 +15452,11 @@ snapshots:
14768
15452
 
14769
15453
  '@tarojs/shared@4.1.9': {}
14770
15454
 
14771
- '@tarojs/taro-h5@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))':
15455
+ '@tarojs/taro-h5@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))':
14772
15456
  dependencies:
14773
15457
  '@tarojs/api': 4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)
14774
- '@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
14775
- '@tarojs/router': 4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))
15458
+ '@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
15459
+ '@tarojs/router': 4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))
14776
15460
  '@tarojs/runtime': 4.1.9
14777
15461
  '@tarojs/shared': 4.1.9
14778
15462
  abortcontroller-polyfill: 1.7.8
@@ -14788,10 +15472,10 @@ snapshots:
14788
15472
  transitivePeerDependencies:
14789
15473
  - '@tarojs/taro'
14790
15474
 
14791
- '@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))':
15475
+ '@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))':
14792
15476
  dependencies:
14793
15477
  '@tarojs/api': 4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)
14794
- '@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
15478
+ '@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
14795
15479
  '@tarojs/helper': 4.1.9
14796
15480
  '@tarojs/runtime': 4.1.9
14797
15481
  '@tarojs/shared': 4.1.9
@@ -14800,9 +15484,9 @@ snapshots:
14800
15484
  optionalDependencies:
14801
15485
  '@types/react': 18.3.27
14802
15486
  rollup: 3.29.5
14803
- webpack: 5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)
15487
+ webpack: 5.97.1(@swc/core@1.3.96)
14804
15488
 
14805
- '@tarojs/vite-runner@4.1.9(@tarojs/runtime@4.1.9)(@types/babel__core@7.20.5)(jiti@2.6.1)(postcss@8.5.6)(rollup@3.29.5)(terser@5.44.1)(typescript@5.9.3)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1))':
15489
+ '@tarojs/vite-runner@4.1.9(@tarojs/runtime@4.1.9)(@types/babel__core@7.20.5)(jiti@2.6.1)(postcss@8.5.6)(rollup@3.29.5)(terser@5.44.1)(typescript@5.9.3)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))':
14806
15490
  dependencies:
14807
15491
  '@ampproject/remapping': 2.3.0
14808
15492
  '@babel/core': 7.28.5
@@ -14815,7 +15499,7 @@ snapshots:
14815
15499
  '@tarojs/runner-utils': 4.1.9
14816
15500
  '@tarojs/runtime': 4.1.9
14817
15501
  '@tarojs/shared': 4.1.9
14818
- '@vitejs/plugin-legacy': 4.1.1(terser@5.44.1)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1))
15502
+ '@vitejs/plugin-legacy': 4.1.1(terser@5.44.1)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))
14819
15503
  acorn-walk: 8.3.4
14820
15504
  autoprefixer: 10.4.23(postcss@8.5.6)
14821
15505
  babel-plugin-transform-taroapi: 4.1.9(@babel/core@7.28.5)
@@ -14838,8 +15522,8 @@ snapshots:
14838
15522
  regenerator-runtime: 0.11.1
14839
15523
  sax: 1.2.4
14840
15524
  stylelint: 16.26.1(typescript@5.9.3)
14841
- vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1)
14842
- vite-plugin-static-copy: 0.17.1(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1))
15525
+ vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)
15526
+ vite-plugin-static-copy: 0.17.1(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))
14843
15527
  transitivePeerDependencies:
14844
15528
  - '@swc/helpers'
14845
15529
  - '@types/babel__core'
@@ -14868,6 +15552,14 @@ snapshots:
14868
15552
  minimatch: 10.1.1
14869
15553
  path-browserify: 1.0.1
14870
15554
 
15555
+ '@tt-miniprogram/ext-pack@1.2.4':
15556
+ dependencies:
15557
+ convert-source-map: 2.0.0
15558
+ fast-glob: 3.3.2
15559
+ fs-extra: 11.2.0
15560
+ read-package-tree: 5.3.1
15561
+ terser: 5.26.0
15562
+
14871
15563
  '@types/archy@0.0.31': {}
14872
15564
 
14873
15565
  '@types/babel__core@7.20.5':
@@ -14970,6 +15662,8 @@ snapshots:
14970
15662
  dependencies:
14971
15663
  undici-types: 6.21.0
14972
15664
 
15665
+ '@types/phoenix@1.6.7': {}
15666
+
14973
15667
  '@types/postcss-url@10.0.4':
14974
15668
  dependencies:
14975
15669
  '@types/node': 22.19.6
@@ -15007,6 +15701,10 @@ snapshots:
15007
15701
 
15008
15702
  '@types/uuid@10.0.0': {}
15009
15703
 
15704
+ '@types/ws@8.18.1':
15705
+ dependencies:
15706
+ '@types/node': 22.19.6
15707
+
15010
15708
  '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)':
15011
15709
  dependencies:
15012
15710
  '@eslint-community/regexpp': 4.12.2
@@ -15020,7 +15718,7 @@ snapshots:
15020
15718
  graphemer: 1.4.0
15021
15719
  ignore: 5.3.2
15022
15720
  natural-compare: 1.4.0
15023
- semver: 7.7.3
15721
+ semver: 7.7.4
15024
15722
  ts-api-utils: 1.4.3(typescript@5.9.3)
15025
15723
  optionalDependencies:
15026
15724
  typescript: 5.9.3
@@ -15067,7 +15765,7 @@ snapshots:
15067
15765
  globby: 11.1.0
15068
15766
  is-glob: 4.0.3
15069
15767
  minimatch: 9.0.3
15070
- semver: 7.7.3
15768
+ semver: 7.7.4
15071
15769
  ts-api-utils: 1.4.3(typescript@5.9.3)
15072
15770
  optionalDependencies:
15073
15771
  typescript: 5.9.3
@@ -15083,7 +15781,7 @@ snapshots:
15083
15781
  '@typescript-eslint/types': 6.21.0
15084
15782
  '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.3)
15085
15783
  eslint: 8.57.1
15086
- semver: 7.7.3
15784
+ semver: 7.7.4
15087
15785
  transitivePeerDependencies:
15088
15786
  - supports-color
15089
15787
  - typescript
@@ -15095,7 +15793,7 @@ snapshots:
15095
15793
 
15096
15794
  '@ungap/structured-clone@1.3.0': {}
15097
15795
 
15098
- '@vitejs/plugin-legacy@4.1.1(terser@5.44.1)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1))':
15796
+ '@vitejs/plugin-legacy@4.1.1(terser@5.44.1)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))':
15099
15797
  dependencies:
15100
15798
  '@babel/core': 7.28.5
15101
15799
  '@babel/preset-env': 7.28.5(@babel/core@7.28.5)
@@ -15105,11 +15803,11 @@ snapshots:
15105
15803
  regenerator-runtime: 0.13.11
15106
15804
  systemjs: 6.15.1
15107
15805
  terser: 5.44.1
15108
- vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1)
15806
+ vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)
15109
15807
  transitivePeerDependencies:
15110
15808
  - supports-color
15111
15809
 
15112
- '@vitejs/plugin-react@4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1))':
15810
+ '@vitejs/plugin-react@4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))':
15113
15811
  dependencies:
15114
15812
  '@babel/core': 7.28.5
15115
15813
  '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5)
@@ -15117,39 +15815,39 @@ snapshots:
15117
15815
  '@rolldown/pluginutils': 1.0.0-beta.27
15118
15816
  '@types/babel__core': 7.20.5
15119
15817
  react-refresh: 0.17.0
15120
- vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1)
15818
+ vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)
15121
15819
  transitivePeerDependencies:
15122
15820
  - supports-color
15123
15821
 
15124
- '@vue/compiler-core@3.5.26':
15822
+ '@vue/compiler-core@3.5.30':
15125
15823
  dependencies:
15126
- '@babel/parser': 7.28.5
15127
- '@vue/shared': 3.5.26
15128
- entities: 7.0.0
15824
+ '@babel/parser': 7.29.0
15825
+ '@vue/shared': 3.5.30
15826
+ entities: 7.0.1
15129
15827
  estree-walker: 2.0.2
15130
15828
  source-map-js: 1.2.1
15131
15829
 
15132
- '@vue/compiler-dom@3.5.26':
15830
+ '@vue/compiler-dom@3.5.30':
15133
15831
  dependencies:
15134
- '@vue/compiler-core': 3.5.26
15135
- '@vue/shared': 3.5.26
15832
+ '@vue/compiler-core': 3.5.30
15833
+ '@vue/shared': 3.5.30
15136
15834
 
15137
- '@vue/compiler-sfc@3.5.26':
15835
+ '@vue/compiler-sfc@3.5.30':
15138
15836
  dependencies:
15139
- '@babel/parser': 7.28.5
15140
- '@vue/compiler-core': 3.5.26
15141
- '@vue/compiler-dom': 3.5.26
15142
- '@vue/compiler-ssr': 3.5.26
15143
- '@vue/shared': 3.5.26
15837
+ '@babel/parser': 7.29.0
15838
+ '@vue/compiler-core': 3.5.30
15839
+ '@vue/compiler-dom': 3.5.30
15840
+ '@vue/compiler-ssr': 3.5.30
15841
+ '@vue/shared': 3.5.30
15144
15842
  estree-walker: 2.0.2
15145
15843
  magic-string: 0.30.21
15146
- postcss: 8.5.6
15844
+ postcss: 8.5.8
15147
15845
  source-map-js: 1.2.1
15148
15846
 
15149
- '@vue/compiler-ssr@3.5.26':
15847
+ '@vue/compiler-ssr@3.5.30':
15150
15848
  dependencies:
15151
- '@vue/compiler-dom': 3.5.26
15152
- '@vue/shared': 3.5.26
15849
+ '@vue/compiler-dom': 3.5.30
15850
+ '@vue/shared': 3.5.30
15153
15851
 
15154
15852
  '@vue/reactivity@3.0.5':
15155
15853
  dependencies:
@@ -15157,9 +15855,9 @@ snapshots:
15157
15855
 
15158
15856
  '@vue/shared@3.0.5': {}
15159
15857
 
15160
- '@vue/shared@3.5.26': {}
15858
+ '@vue/shared@3.5.30': {}
15161
15859
 
15162
- '@weapp-core/escape@6.0.1': {}
15860
+ '@weapp-core/escape@7.0.0': {}
15163
15861
 
15164
15862
  '@weapp-core/regex@1.0.1': {}
15165
15863
 
@@ -15174,19 +15872,20 @@ snapshots:
15174
15872
  postcss-selector-parser: 7.1.1
15175
15873
  postcss-value-parser: 4.2.0
15176
15874
 
15177
- '@weapp-tailwindcss/postcss@2.1.0':
15875
+ '@weapp-tailwindcss/postcss@2.1.5':
15178
15876
  dependencies:
15179
- '@weapp-core/escape': 6.0.1
15877
+ '@weapp-core/escape': 7.0.0
15180
15878
  '@weapp-tailwindcss/postcss-calc': 1.0.0(postcss@8.5.6)
15181
- '@weapp-tailwindcss/shared': 1.1.1
15879
+ '@weapp-tailwindcss/shared': 1.1.2
15182
15880
  postcss: 8.5.6
15183
15881
  postcss-preset-env: 10.6.1(postcss@8.5.6)
15184
- postcss-pxtrans: 1.0.0(postcss@8.5.6)
15185
- postcss-rem-to-responsive-pixel: 7.0.0(postcss@8.5.6)
15882
+ postcss-pxtrans: 1.0.1(postcss@8.5.6)
15883
+ postcss-rem-to-responsive-pixel: 7.0.1(postcss@8.5.6)
15186
15884
  postcss-selector-parser: 7.1.1
15885
+ postcss-units-to-px: 0.2.0(postcss@8.5.6)
15187
15886
  postcss-value-parser: 4.2.0
15188
15887
 
15189
- '@weapp-tailwindcss/shared@1.1.1':
15888
+ '@weapp-tailwindcss/shared@1.1.2':
15190
15889
  dependencies:
15191
15890
  pathe: 2.0.3
15192
15891
 
@@ -15400,6 +16099,8 @@ snapshots:
15400
16099
 
15401
16100
  append-field@1.0.0: {}
15402
16101
 
16102
+ arch@2.2.0: {}
16103
+
15403
16104
  archive-type@4.0.0:
15404
16105
  dependencies:
15405
16106
  file-type: 4.4.0
@@ -15503,6 +16204,17 @@ snapshots:
15503
16204
  es-abstract: 1.24.1
15504
16205
  es-shim-unscopables: 1.1.0
15505
16206
 
16207
+ array.prototype.reduce@1.0.8:
16208
+ dependencies:
16209
+ call-bind: 1.0.8
16210
+ call-bound: 1.0.4
16211
+ define-properties: 1.2.1
16212
+ es-abstract: 1.24.1
16213
+ es-array-method-boxes-properly: 1.0.0
16214
+ es-errors: 1.3.0
16215
+ es-object-atoms: 1.1.1
16216
+ is-string: 1.1.1
16217
+
15506
16218
  array.prototype.tosorted@1.1.4:
15507
16219
  dependencies:
15508
16220
  call-bind: 1.0.8
@@ -16216,6 +16928,11 @@ snapshots:
16216
16928
 
16217
16929
  binary-extensions@2.3.0: {}
16218
16930
 
16931
+ binary@0.3.0:
16932
+ dependencies:
16933
+ buffers: 0.1.1
16934
+ chainsaw: 0.1.0
16935
+
16219
16936
  bindings@1.5.0:
16220
16937
  dependencies:
16221
16938
  file-uri-to-path: 1.0.0
@@ -16237,6 +16954,8 @@ snapshots:
16237
16954
  inherits: 2.0.4
16238
16955
  readable-stream: 3.6.2
16239
16956
 
16957
+ bluebird@3.4.7: {}
16958
+
16240
16959
  bmp-js@0.1.0: {}
16241
16960
 
16242
16961
  body-parser@1.20.3:
@@ -16318,6 +17037,8 @@ snapshots:
16318
17037
 
16319
17038
  buffer-from@1.1.2: {}
16320
17039
 
17040
+ buffer-indexof-polyfill@1.0.2: {}
17041
+
16321
17042
  buffer@5.6.0:
16322
17043
  dependencies:
16323
17044
  base64-js: 1.5.1
@@ -16333,6 +17054,8 @@ snapshots:
16333
17054
  base64-js: 1.5.1
16334
17055
  ieee754: 1.2.1
16335
17056
 
17057
+ buffers@0.1.1: {}
17058
+
16336
17059
  busboy@1.6.0:
16337
17060
  dependencies:
16338
17061
  streamsearch: 1.1.0
@@ -16447,6 +17170,10 @@ snapshots:
16447
17170
  transitivePeerDependencies:
16448
17171
  - debug
16449
17172
 
17173
+ chainsaw@0.1.0:
17174
+ dependencies:
17175
+ traverse: 0.3.9
17176
+
16450
17177
  chalk@1.1.3:
16451
17178
  dependencies:
16452
17179
  ansi-styles: 2.2.1
@@ -16522,6 +17249,10 @@ snapshots:
16522
17249
  dependencies:
16523
17250
  consola: 3.4.2
16524
17251
 
17252
+ class-variance-authority@0.7.1:
17253
+ dependencies:
17254
+ clsx: 2.1.1
17255
+
16525
17256
  classnames@2.5.1: {}
16526
17257
 
16527
17258
  clean-css@4.2.4:
@@ -16551,8 +17282,6 @@ snapshots:
16551
17282
 
16552
17283
  cli-spinners@2.9.2: {}
16553
17284
 
16554
- cli-spinners@3.4.0: {}
16555
-
16556
17285
  cli-table3@0.6.5:
16557
17286
  dependencies:
16558
17287
  string-width: 4.2.3
@@ -16568,6 +17297,12 @@ snapshots:
16568
17297
 
16569
17298
  cli-width@4.1.0: {}
16570
17299
 
17300
+ clipboardy@2.3.0:
17301
+ dependencies:
17302
+ arch: 2.2.0
17303
+ execa: 1.0.0
17304
+ is-wsl: 2.2.0
17305
+
16571
17306
  cliui@6.0.0:
16572
17307
  dependencies:
16573
17308
  string-width: 4.2.3
@@ -16604,6 +17339,8 @@ snapshots:
16604
17339
 
16605
17340
  clone@1.0.4: {}
16606
17341
 
17342
+ clsx@2.1.1: {}
17343
+
16607
17344
  code-block-writer@13.0.3: {}
16608
17345
 
16609
17346
  color-convert@1.9.3:
@@ -16618,8 +17355,18 @@ snapshots:
16618
17355
 
16619
17356
  color-name@1.1.4: {}
16620
17357
 
17358
+ color-string@1.9.1:
17359
+ dependencies:
17360
+ color-name: 1.1.4
17361
+ simple-swizzle: 0.2.4
17362
+
16621
17363
  color-support@1.1.3: {}
16622
17364
 
17365
+ color@4.2.3:
17366
+ dependencies:
17367
+ color-convert: 2.0.1
17368
+ color-string: 1.9.1
17369
+
16623
17370
  colord@2.9.3: {}
16624
17371
 
16625
17372
  colorette@2.0.20: {}
@@ -16636,6 +17383,8 @@ snapshots:
16636
17383
 
16637
17384
  commander@4.1.1: {}
16638
17385
 
17386
+ commander@5.1.0: {}
17387
+
16639
17388
  commander@7.2.0: {}
16640
17389
 
16641
17390
  commander@9.5.0: {}
@@ -16685,7 +17434,7 @@ snapshots:
16685
17434
  make-dir: 3.1.0
16686
17435
  onetime: 5.1.2
16687
17436
  pkg-up: 3.1.0
16688
- semver: 7.7.3
17437
+ semver: 7.7.4
16689
17438
 
16690
17439
  confbox@0.1.8: {}
16691
17440
 
@@ -16786,56 +17535,22 @@ snapshots:
16786
17535
  optionalDependencies:
16787
17536
  typescript: 5.9.3
16788
17537
 
16789
- coze-coding-dev-sdk@0.7.3(@types/better-sqlite3@7.6.13)(better-sqlite3@11.10.0)(openai@6.16.0(zod@4.3.5)):
17538
+ coze-coding-dev-sdk@0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0):
16790
17539
  dependencies:
16791
- '@aws-sdk/client-s3': 3.972.0
16792
- '@aws-sdk/lib-storage': 3.972.0(@aws-sdk/client-s3@3.972.0)
16793
- '@langchain/core': 1.1.16(openai@6.16.0(zod@4.3.5))
16794
- '@langchain/openai': 1.2.3(@langchain/core@1.1.16(openai@6.16.0(zod@4.3.5)))
17540
+ '@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
17541
+ '@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)
17542
+ '@supabase/supabase-js': 2.95.3
16795
17543
  axios: 1.13.2
16796
- chalk: 5.6.2
16797
- commander: 14.0.2
16798
- drizzle-kit: 0.31.8
16799
- drizzle-orm: 0.45.1(@types/better-sqlite3@7.6.13)(better-sqlite3@11.10.0)(pg@8.17.2)
16800
- ora: 9.1.0
16801
17544
  pg: 8.17.2
16802
- transliteration: 2.6.1
16803
17545
  transitivePeerDependencies:
16804
- - '@aws-sdk/client-rds-data'
16805
- - '@cloudflare/workers-types'
16806
- - '@electric-sql/pglite'
16807
- - '@libsql/client'
16808
- - '@libsql/client-wasm'
16809
- - '@neondatabase/serverless'
16810
- - '@op-engineering/op-sqlite'
16811
17546
  - '@opentelemetry/api'
16812
17547
  - '@opentelemetry/exporter-trace-otlp-proto'
16813
17548
  - '@opentelemetry/sdk-trace-base'
16814
- - '@planetscale/database'
16815
- - '@prisma/client'
16816
- - '@tidbcloud/serverless'
16817
- - '@types/better-sqlite3'
16818
- - '@types/pg'
16819
- - '@types/sql.js'
16820
- - '@upstash/redis'
16821
- - '@vercel/postgres'
16822
- - '@xata.io/client'
16823
- - aws-crt
16824
- - better-sqlite3
16825
- - bun-types
17549
+ - bufferutil
16826
17550
  - debug
16827
- - expo-sqlite
16828
- - gel
16829
- - knex
16830
- - kysely
16831
- - mysql2
16832
17551
  - openai
16833
17552
  - pg-native
16834
- - postgres
16835
- - prisma
16836
- - sql.js
16837
- - sqlite3
16838
- - supports-color
17553
+ - utf-8-validate
16839
17554
  - ws
16840
17555
 
16841
17556
  crc-32@1.2.2: {}
@@ -16845,6 +17560,14 @@ snapshots:
16845
17560
  crc-32: 1.2.2
16846
17561
  readable-stream: 3.6.2
16847
17562
 
17563
+ cross-spawn@6.0.6:
17564
+ dependencies:
17565
+ nice-try: 1.0.5
17566
+ path-key: 2.0.1
17567
+ semver: 5.7.2
17568
+ shebang-command: 1.2.0
17569
+ which: 1.3.1
17570
+
16848
17571
  cross-spawn@7.0.6:
16849
17572
  dependencies:
16850
17573
  path-key: 3.1.1
@@ -16973,6 +17696,8 @@ snapshots:
16973
17696
  es-errors: 1.3.0
16974
17697
  is-data-view: 1.0.2
16975
17698
 
17699
+ date-fns@4.1.0: {}
17700
+
16976
17701
  dateformat@2.2.0: {}
16977
17702
 
16978
17703
  debounce-fn@4.0.0:
@@ -16987,6 +17712,10 @@ snapshots:
16987
17712
  dependencies:
16988
17713
  ms: 2.1.3
16989
17714
 
17715
+ debug@4.4.0:
17716
+ dependencies:
17717
+ ms: 2.1.3
17718
+
16990
17719
  debug@4.4.3:
16991
17720
  dependencies:
16992
17721
  ms: 2.1.3
@@ -17047,6 +17776,8 @@ snapshots:
17047
17776
 
17048
17777
  dedent@1.7.1: {}
17049
17778
 
17779
+ deep-clone@3.0.3: {}
17780
+
17050
17781
  deep-extend@0.6.0: {}
17051
17782
 
17052
17783
  deep-is@0.1.4: {}
@@ -17228,10 +17959,20 @@ snapshots:
17228
17959
  dependencies:
17229
17960
  readable-stream: 1.1.14
17230
17961
 
17962
+ duplexer2@0.1.4:
17963
+ dependencies:
17964
+ readable-stream: 2.3.8
17965
+
17231
17966
  duplexer3@0.1.5: {}
17232
17967
 
17233
17968
  eastasianwidth@0.2.0: {}
17234
17969
 
17970
+ easy-table@1.2.0:
17971
+ dependencies:
17972
+ ansi-regex: 5.0.1
17973
+ optionalDependencies:
17974
+ wcwidth: 1.0.1
17975
+
17235
17976
  ecc-jsbn@0.1.2:
17236
17977
  dependencies:
17237
17978
  jsbn: 0.1.1
@@ -17262,13 +18003,16 @@ snapshots:
17262
18003
  graceful-fs: 4.2.11
17263
18004
  tapable: 2.3.0
17264
18005
 
18006
+ enhanced-resolve@5.20.0:
18007
+ dependencies:
18008
+ graceful-fs: 4.2.11
18009
+ tapable: 2.3.0
18010
+
17265
18011
  entities@2.2.0: {}
17266
18012
 
17267
18013
  entities@4.5.0: {}
17268
18014
 
17269
- entities@6.0.1: {}
17270
-
17271
- entities@7.0.0: {}
18015
+ entities@7.0.1: {}
17272
18016
 
17273
18017
  env-paths@2.2.1: {}
17274
18018
 
@@ -17341,6 +18085,8 @@ snapshots:
17341
18085
  unbox-primitive: 1.1.0
17342
18086
  which-typed-array: 1.1.19
17343
18087
 
18088
+ es-array-method-boxes-properly@1.0.0: {}
18089
+
17344
18090
  es-define-property@1.0.1: {}
17345
18091
 
17346
18092
  es-errors@1.3.0: {}
@@ -17572,6 +18318,12 @@ snapshots:
17572
18318
  string.prototype.matchall: 4.0.12
17573
18319
  string.prototype.repeat: 1.0.0
17574
18320
 
18321
+ eslint-plugin-tailwindcss@3.18.2(tailwindcss@4.1.18):
18322
+ dependencies:
18323
+ fast-glob: 3.3.3
18324
+ postcss: 8.5.6
18325
+ tailwindcss: 4.1.18
18326
+
17575
18327
  eslint-scope@5.1.1:
17576
18328
  dependencies:
17577
18329
  esrecurse: 4.3.0
@@ -17715,6 +18467,16 @@ snapshots:
17715
18467
 
17716
18468
  events@3.3.0: {}
17717
18469
 
18470
+ execa@1.0.0:
18471
+ dependencies:
18472
+ cross-spawn: 6.0.6
18473
+ get-stream: 4.1.0
18474
+ is-stream: 1.1.0
18475
+ npm-run-path: 2.0.2
18476
+ p-finally: 1.0.0
18477
+ signal-exit: 3.0.7
18478
+ strip-eof: 1.0.0
18479
+
17718
18480
  execa@5.1.1:
17719
18481
  dependencies:
17720
18482
  cross-spawn: 7.0.6
@@ -17830,6 +18592,14 @@ snapshots:
17830
18592
 
17831
18593
  fast-deep-equal@3.1.3: {}
17832
18594
 
18595
+ fast-glob@3.3.2:
18596
+ dependencies:
18597
+ '@nodelib/fs.stat': 2.0.5
18598
+ '@nodelib/fs.walk': 1.2.8
18599
+ glob-parent: 5.1.2
18600
+ merge2: 1.4.1
18601
+ micromatch: 4.0.8
18602
+
17833
18603
  fast-glob@3.3.3:
17834
18604
  dependencies:
17835
18605
  '@nodelib/fs.stat': 2.0.5
@@ -17988,6 +18758,13 @@ snapshots:
17988
18758
 
17989
18759
  flatted@3.3.3: {}
17990
18760
 
18761
+ folder-hash@4.1.1:
18762
+ dependencies:
18763
+ debug: 4.4.0
18764
+ minimatch: 7.4.6
18765
+ transitivePeerDependencies:
18766
+ - supports-color
18767
+
17991
18768
  follow-redirects@1.15.11: {}
17992
18769
 
17993
18770
  for-each@0.3.5:
@@ -18053,6 +18830,12 @@ snapshots:
18053
18830
  jsonfile: 6.2.0
18054
18831
  universalify: 2.0.1
18055
18832
 
18833
+ fs-extra@11.2.0:
18834
+ dependencies:
18835
+ graceful-fs: 4.2.11
18836
+ jsonfile: 6.2.0
18837
+ universalify: 2.0.1
18838
+
18056
18839
  fs-extra@11.3.3:
18057
18840
  dependencies:
18058
18841
  graceful-fs: 4.2.11
@@ -18072,6 +18855,13 @@ snapshots:
18072
18855
  fsevents@2.3.3:
18073
18856
  optional: true
18074
18857
 
18858
+ fstream@1.0.12:
18859
+ dependencies:
18860
+ graceful-fs: 4.2.11
18861
+ inherits: 2.0.4
18862
+ mkdirp: 0.5.6
18863
+ rimraf: 2.7.1
18864
+
18075
18865
  function-bind@1.1.2: {}
18076
18866
 
18077
18867
  function.prototype.name@1.1.8:
@@ -18085,6 +18875,8 @@ snapshots:
18085
18875
 
18086
18876
  functions-have-names@1.2.3: {}
18087
18877
 
18878
+ fuse.js@7.1.0: {}
18879
+
18088
18880
  generator-function@2.0.1: {}
18089
18881
 
18090
18882
  generic-names@4.0.0:
@@ -18443,12 +19235,12 @@ snapshots:
18443
19235
 
18444
19236
  html-tags@3.3.1: {}
18445
19237
 
18446
- htmlparser2@10.0.0:
19238
+ htmlparser2@10.1.0:
18447
19239
  dependencies:
18448
19240
  domelementtype: 2.3.0
18449
19241
  domhandler: 5.0.3
18450
19242
  domutils: 3.2.2
18451
- entities: 6.0.1
19243
+ entities: 7.0.1
18452
19244
 
18453
19245
  http-cache-semantics@3.8.1: {}
18454
19246
 
@@ -18478,6 +19270,8 @@ snapshots:
18478
19270
 
18479
19271
  human-signals@2.1.0: {}
18480
19272
 
19273
+ iceberg-js@0.8.1: {}
19274
+
18481
19275
  iconv-lite@0.4.24:
18482
19276
  dependencies:
18483
19277
  safer-buffer: 2.1.2
@@ -18627,6 +19421,8 @@ snapshots:
18627
19421
 
18628
19422
  is-arrayish@0.2.1: {}
18629
19423
 
19424
+ is-arrayish@0.3.4: {}
19425
+
18630
19426
  is-async-function@2.1.1:
18631
19427
  dependencies:
18632
19428
  async-function: 1.0.0
@@ -18669,6 +19465,8 @@ snapshots:
18669
19465
  call-bound: 1.0.4
18670
19466
  has-tostringtag: 1.0.2
18671
19467
 
19468
+ is-docker@2.2.1: {}
19469
+
18672
19470
  is-extglob@2.1.1: {}
18673
19471
 
18674
19472
  is-finalizationregistry@1.1.1:
@@ -18774,8 +19572,6 @@ snapshots:
18774
19572
 
18775
19573
  is-unicode-supported@1.3.0: {}
18776
19574
 
18777
- is-unicode-supported@2.1.0: {}
18778
-
18779
19575
  is-weakmap@2.0.2: {}
18780
19576
 
18781
19577
  is-weakref@1.1.1:
@@ -18789,6 +19585,10 @@ snapshots:
18789
19585
 
18790
19586
  is-what@3.14.1: {}
18791
19587
 
19588
+ is-wsl@2.2.0:
19589
+ dependencies:
19590
+ is-docker: 2.2.1
19591
+
18792
19592
  isarray@0.0.1: {}
18793
19593
 
18794
19594
  isarray@1.0.0: {}
@@ -18987,16 +19787,16 @@ snapshots:
18987
19787
 
18988
19788
  known-css-properties@0.37.0: {}
18989
19789
 
18990
- langsmith@0.4.7(openai@6.16.0(zod@4.3.5)):
19790
+ langsmith@0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5)):
18991
19791
  dependencies:
18992
19792
  '@types/uuid': 10.0.0
18993
19793
  chalk: 4.1.2
18994
19794
  console-table-printer: 2.15.0
18995
19795
  p-queue: 6.6.2
18996
- semver: 7.7.3
19796
+ semver: 7.7.4
18997
19797
  uuid: 10.0.0
18998
19798
  optionalDependencies:
18999
- openai: 6.16.0(zod@4.3.5)
19799
+ openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
19000
19800
 
19001
19801
  latest-version@5.1.0:
19002
19802
  dependencies:
@@ -19036,36 +19836,69 @@ snapshots:
19036
19836
  lightningcss-android-arm64@1.30.2:
19037
19837
  optional: true
19038
19838
 
19839
+ lightningcss-android-arm64@1.31.1:
19840
+ optional: true
19841
+
19039
19842
  lightningcss-darwin-arm64@1.30.2:
19040
19843
  optional: true
19041
19844
 
19845
+ lightningcss-darwin-arm64@1.31.1:
19846
+ optional: true
19847
+
19042
19848
  lightningcss-darwin-x64@1.30.2:
19043
19849
  optional: true
19044
19850
 
19851
+ lightningcss-darwin-x64@1.31.1:
19852
+ optional: true
19853
+
19045
19854
  lightningcss-freebsd-x64@1.30.2:
19046
19855
  optional: true
19047
19856
 
19857
+ lightningcss-freebsd-x64@1.31.1:
19858
+ optional: true
19859
+
19048
19860
  lightningcss-linux-arm-gnueabihf@1.30.2:
19049
19861
  optional: true
19050
19862
 
19863
+ lightningcss-linux-arm-gnueabihf@1.31.1:
19864
+ optional: true
19865
+
19051
19866
  lightningcss-linux-arm64-gnu@1.30.2:
19052
19867
  optional: true
19053
19868
 
19869
+ lightningcss-linux-arm64-gnu@1.31.1:
19870
+ optional: true
19871
+
19054
19872
  lightningcss-linux-arm64-musl@1.30.2:
19055
19873
  optional: true
19056
19874
 
19875
+ lightningcss-linux-arm64-musl@1.31.1:
19876
+ optional: true
19877
+
19057
19878
  lightningcss-linux-x64-gnu@1.30.2:
19058
19879
  optional: true
19059
19880
 
19881
+ lightningcss-linux-x64-gnu@1.31.1:
19882
+ optional: true
19883
+
19060
19884
  lightningcss-linux-x64-musl@1.30.2:
19061
19885
  optional: true
19062
19886
 
19887
+ lightningcss-linux-x64-musl@1.31.1:
19888
+ optional: true
19889
+
19063
19890
  lightningcss-win32-arm64-msvc@1.30.2:
19064
19891
  optional: true
19065
19892
 
19893
+ lightningcss-win32-arm64-msvc@1.31.1:
19894
+ optional: true
19895
+
19066
19896
  lightningcss-win32-x64-msvc@1.30.2:
19067
19897
  optional: true
19068
19898
 
19899
+ lightningcss-win32-x64-msvc@1.31.1:
19900
+ optional: true
19901
+
19069
19902
  lightningcss@1.30.2:
19070
19903
  dependencies:
19071
19904
  detect-libc: 2.1.2
@@ -19082,6 +19915,22 @@ snapshots:
19082
19915
  lightningcss-win32-arm64-msvc: 1.30.2
19083
19916
  lightningcss-win32-x64-msvc: 1.30.2
19084
19917
 
19918
+ lightningcss@1.31.1:
19919
+ dependencies:
19920
+ detect-libc: 2.1.2
19921
+ optionalDependencies:
19922
+ lightningcss-android-arm64: 1.31.1
19923
+ lightningcss-darwin-arm64: 1.31.1
19924
+ lightningcss-darwin-x64: 1.31.1
19925
+ lightningcss-freebsd-x64: 1.31.1
19926
+ lightningcss-linux-arm-gnueabihf: 1.31.1
19927
+ lightningcss-linux-arm64-gnu: 1.31.1
19928
+ lightningcss-linux-arm64-musl: 1.31.1
19929
+ lightningcss-linux-x64-gnu: 1.31.1
19930
+ lightningcss-linux-x64-musl: 1.31.1
19931
+ lightningcss-win32-arm64-msvc: 1.31.1
19932
+ lightningcss-win32-x64-msvc: 1.31.1
19933
+
19085
19934
  lilconfig@2.1.0: {}
19086
19935
 
19087
19936
  lilconfig@3.1.3: {}
@@ -19098,6 +19947,8 @@ snapshots:
19098
19947
  string-argv: 0.3.2
19099
19948
  yaml: 2.8.2
19100
19949
 
19950
+ listenercount@1.0.1: {}
19951
+
19101
19952
  listr2@9.0.5:
19102
19953
  dependencies:
19103
19954
  cli-truncate: 5.1.1
@@ -19238,11 +20089,6 @@ snapshots:
19238
20089
  chalk: 5.6.2
19239
20090
  is-unicode-supported: 1.3.0
19240
20091
 
19241
- log-symbols@7.0.1:
19242
- dependencies:
19243
- is-unicode-supported: 2.1.0
19244
- yoctocolors: 2.1.2
19245
-
19246
20092
  log-update@6.1.0:
19247
20093
  dependencies:
19248
20094
  ansi-escapes: 7.2.0
@@ -19279,9 +20125,13 @@ snapshots:
19279
20125
  dependencies:
19280
20126
  yallist: 3.1.1
19281
20127
 
19282
- lucide-react@0.511.0(react@18.3.1):
20128
+ lucide-react-taro@1.3.0(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(react@18.3.1):
19283
20129
  dependencies:
20130
+ '@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
20131
+ commander: 14.0.2
20132
+ fuse.js: 7.1.0
19284
20133
  react: 18.3.1
20134
+ sharp: 0.33.5
19285
20135
 
19286
20136
  magic-string@0.30.21:
19287
20137
  dependencies:
@@ -19386,6 +20236,10 @@ snapshots:
19386
20236
  dependencies:
19387
20237
  brace-expansion: 2.0.2
19388
20238
 
20239
+ minimatch@7.4.6:
20240
+ dependencies:
20241
+ brace-expansion: 2.0.2
20242
+
19389
20243
  minimatch@9.0.3:
19390
20244
  dependencies:
19391
20245
  brace-expansion: 2.0.2
@@ -19677,6 +20531,8 @@ snapshots:
19677
20531
 
19678
20532
  nextgen-events@1.5.3: {}
19679
20533
 
20534
+ nice-try@1.0.5: {}
20535
+
19680
20536
  no-case@2.3.2:
19681
20537
  dependencies:
19682
20538
  lower-case: 1.1.4
@@ -19688,7 +20544,7 @@ snapshots:
19688
20544
 
19689
20545
  node-abi@3.87.0:
19690
20546
  dependencies:
19691
- semver: 7.7.3
20547
+ semver: 7.7.4
19692
20548
 
19693
20549
  node-abort-controller@3.1.1: {}
19694
20550
 
@@ -19707,6 +20563,8 @@ snapshots:
19707
20563
  dependencies:
19708
20564
  whatwg-url: 5.0.0
19709
20565
 
20566
+ node-machine-id@1.1.12: {}
20567
+
19710
20568
  node-releases@2.0.27: {}
19711
20569
 
19712
20570
  normalize-package-data@2.5.0:
@@ -19735,6 +20593,10 @@ snapshots:
19735
20593
 
19736
20594
  npm-normalize-package-bin@1.0.1: {}
19737
20595
 
20596
+ npm-run-path@2.0.2:
20597
+ dependencies:
20598
+ path-key: 2.0.1
20599
+
19738
20600
  npm-run-path@4.0.1:
19739
20601
  dependencies:
19740
20602
  path-key: 3.1.1
@@ -19784,6 +20646,16 @@ snapshots:
19784
20646
  es-abstract: 1.24.1
19785
20647
  es-object-atoms: 1.1.1
19786
20648
 
20649
+ object.getownpropertydescriptors@2.1.9:
20650
+ dependencies:
20651
+ array.prototype.reduce: 1.0.8
20652
+ call-bind: 1.0.8
20653
+ define-properties: 1.2.1
20654
+ es-abstract: 1.24.1
20655
+ es-object-atoms: 1.1.1
20656
+ gopd: 1.2.0
20657
+ safe-array-concat: 1.1.3
20658
+
19787
20659
  object.groupby@1.0.3:
19788
20660
  dependencies:
19789
20661
  call-bind: 1.0.8
@@ -19821,8 +20693,9 @@ snapshots:
19821
20693
  dependencies:
19822
20694
  which-pm-runs: 1.1.0
19823
20695
 
19824
- openai@6.16.0(zod@4.3.5):
20696
+ openai@6.16.0(ws@8.19.0)(zod@4.3.5):
19825
20697
  optionalDependencies:
20698
+ ws: 8.19.0
19826
20699
  zod: 4.3.5
19827
20700
 
19828
20701
  optionator@0.9.4:
@@ -19858,17 +20731,6 @@ snapshots:
19858
20731
  strip-ansi: 7.1.2
19859
20732
  wcwidth: 1.0.1
19860
20733
 
19861
- ora@9.1.0:
19862
- dependencies:
19863
- chalk: 5.6.2
19864
- cli-cursor: 5.0.0
19865
- cli-spinners: 3.4.0
19866
- is-interactive: 2.0.0
19867
- is-unicode-supported: 2.1.0
19868
- log-symbols: 7.0.1
19869
- stdin-discarder: 0.2.2
19870
- string-width: 8.1.0
19871
-
19872
20734
  os-homedir@1.0.2: {}
19873
20735
 
19874
20736
  os-tmpdir@1.0.2: {}
@@ -19998,6 +20860,8 @@ snapshots:
19998
20860
 
19999
20861
  path-is-absolute@1.0.1: {}
20000
20862
 
20863
+ path-key@2.0.1: {}
20864
+
20001
20865
  path-key@3.1.1: {}
20002
20866
 
20003
20867
  path-parse@1.0.7: {}
@@ -20452,7 +21316,7 @@ snapshots:
20452
21316
  dependencies:
20453
21317
  postcss: 8.5.6
20454
21318
 
20455
- postcss-plugin-shared@1.0.0(postcss@8.5.6):
21319
+ postcss-plugin-shared@1.1.1(postcss@8.5.6):
20456
21320
  dependencies:
20457
21321
  defu: 6.1.4
20458
21322
  postcss: 8.5.6
@@ -20537,10 +21401,10 @@ snapshots:
20537
21401
  postcss: 8.5.6
20538
21402
  postcss-selector-parser: 7.1.1
20539
21403
 
20540
- postcss-pxtrans@1.0.0(postcss@8.5.6):
21404
+ postcss-pxtrans@1.0.1(postcss@8.5.6):
20541
21405
  dependencies:
20542
21406
  postcss: 8.5.6
20543
- postcss-plugin-shared: 1.0.0(postcss@8.5.6)
21407
+ postcss-plugin-shared: 1.1.1(postcss@8.5.6)
20544
21408
 
20545
21409
  postcss-pxtransform@4.1.9(postcss@8.5.6):
20546
21410
  dependencies:
@@ -20557,10 +21421,10 @@ snapshots:
20557
21421
  postcss: 8.5.6
20558
21422
  postcss-value-parser: 4.2.0
20559
21423
 
20560
- postcss-rem-to-responsive-pixel@7.0.0(postcss@8.5.6):
21424
+ postcss-rem-to-responsive-pixel@7.0.1(postcss@8.5.6):
20561
21425
  dependencies:
20562
21426
  postcss: 8.5.6
20563
- postcss-plugin-shared: 1.0.0(postcss@8.5.6)
21427
+ postcss-plugin-shared: 1.1.1(postcss@8.5.6)
20564
21428
 
20565
21429
  postcss-replace-overflow-wrap@4.0.0(postcss@8.5.6):
20566
21430
  dependencies:
@@ -20598,6 +21462,11 @@ snapshots:
20598
21462
  postcss: 8.5.6
20599
21463
  postcss-selector-parser: 6.1.2
20600
21464
 
21465
+ postcss-units-to-px@0.2.0(postcss@8.5.6):
21466
+ dependencies:
21467
+ postcss: 8.5.6
21468
+ postcss-plugin-shared: 1.1.1(postcss@8.5.6)
21469
+
20601
21470
  postcss-value-parser@4.2.0: {}
20602
21471
 
20603
21472
  postcss@8.5.6:
@@ -20606,6 +21475,12 @@ snapshots:
20606
21475
  picocolors: 1.1.1
20607
21476
  source-map-js: 1.2.1
20608
21477
 
21478
+ postcss@8.5.8:
21479
+ dependencies:
21480
+ nanoid: 3.3.11
21481
+ picocolors: 1.1.1
21482
+ source-map-js: 1.2.1
21483
+
20609
21484
  postgres-array@2.0.0: {}
20610
21485
 
20611
21486
  postgres-bytea@1.0.1: {}
@@ -20797,7 +21672,7 @@ snapshots:
20797
21672
 
20798
21673
  read-package-json@2.1.2:
20799
21674
  dependencies:
20800
- glob: 7.1.2
21675
+ glob: 7.2.3
20801
21676
  json-parse-even-better-errors: 2.3.1
20802
21677
  normalize-package-data: 2.5.0
20803
21678
  npm-normalize-package-bin: 1.0.1
@@ -20810,6 +21685,12 @@ snapshots:
20810
21685
  read-package-json: 2.1.2
20811
21686
  readdir-scoped-modules: 1.1.0
20812
21687
 
21688
+ read-package-tree@5.3.1:
21689
+ dependencies:
21690
+ read-package-json: 2.1.2
21691
+ readdir-scoped-modules: 1.1.0
21692
+ util-promisify: 2.1.0
21693
+
20813
21694
  readable-stream@1.1.14:
20814
21695
  dependencies:
20815
21696
  core-util-is: 1.0.3
@@ -21040,6 +21921,10 @@ snapshots:
21040
21921
 
21041
21922
  rfdc@1.4.1: {}
21042
21923
 
21924
+ rimraf@2.7.1:
21925
+ dependencies:
21926
+ glob: 7.2.3
21927
+
21043
21928
  rimraf@3.0.2:
21044
21929
  dependencies:
21045
21930
  glob: 7.2.3
@@ -21155,12 +22040,16 @@ snapshots:
21155
22040
  dependencies:
21156
22041
  commander: 2.20.3
21157
22042
 
22043
+ semver-compare@1.0.0: {}
22044
+
21158
22045
  semver@5.7.2: {}
21159
22046
 
21160
22047
  semver@6.3.1: {}
21161
22048
 
21162
22049
  semver@7.7.3: {}
21163
22050
 
22051
+ semver@7.7.4: {}
22052
+
21164
22053
  send@0.19.0:
21165
22054
  dependencies:
21166
22055
  debug: 2.6.9
@@ -21265,10 +22154,42 @@ snapshots:
21265
22154
  dependencies:
21266
22155
  kind-of: 6.0.3
21267
22156
 
22157
+ sharp@0.33.5:
22158
+ dependencies:
22159
+ color: 4.2.3
22160
+ detect-libc: 2.1.2
22161
+ semver: 7.7.4
22162
+ optionalDependencies:
22163
+ '@img/sharp-darwin-arm64': 0.33.5
22164
+ '@img/sharp-darwin-x64': 0.33.5
22165
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
22166
+ '@img/sharp-libvips-darwin-x64': 1.0.4
22167
+ '@img/sharp-libvips-linux-arm': 1.0.5
22168
+ '@img/sharp-libvips-linux-arm64': 1.0.4
22169
+ '@img/sharp-libvips-linux-s390x': 1.0.4
22170
+ '@img/sharp-libvips-linux-x64': 1.0.4
22171
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
22172
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
22173
+ '@img/sharp-linux-arm': 0.33.5
22174
+ '@img/sharp-linux-arm64': 0.33.5
22175
+ '@img/sharp-linux-s390x': 0.33.5
22176
+ '@img/sharp-linux-x64': 0.33.5
22177
+ '@img/sharp-linuxmusl-arm64': 0.33.5
22178
+ '@img/sharp-linuxmusl-x64': 0.33.5
22179
+ '@img/sharp-wasm32': 0.33.5
22180
+ '@img/sharp-win32-ia32': 0.33.5
22181
+ '@img/sharp-win32-x64': 0.33.5
22182
+
22183
+ shebang-command@1.2.0:
22184
+ dependencies:
22185
+ shebang-regex: 1.0.0
22186
+
21268
22187
  shebang-command@2.0.0:
21269
22188
  dependencies:
21270
22189
  shebang-regex: 3.0.0
21271
22190
 
22191
+ shebang-regex@1.0.0: {}
22192
+
21272
22193
  shebang-regex@3.0.0: {}
21273
22194
 
21274
22195
  shell-quote@1.8.3: {}
@@ -21325,6 +22246,10 @@ snapshots:
21325
22246
  bplist-parser: 0.3.1
21326
22247
  plist: 3.1.0
21327
22248
 
22249
+ simple-swizzle@0.2.4:
22250
+ dependencies:
22251
+ is-arrayish: 0.3.4
22252
+
21328
22253
  simple-wcswidth@1.1.2: {}
21329
22254
 
21330
22255
  slash@1.0.0: {}
@@ -21426,8 +22351,6 @@ snapshots:
21426
22351
  dependencies:
21427
22352
  bl: 5.1.0
21428
22353
 
21429
- stdin-discarder@0.2.2: {}
21430
-
21431
22354
  stop-iteration-iterator@1.1.0:
21432
22355
  dependencies:
21433
22356
  es-errors: 1.3.0
@@ -21547,6 +22470,8 @@ snapshots:
21547
22470
  dependencies:
21548
22471
  is-natural-number: 4.0.1
21549
22472
 
22473
+ strip-eof@1.0.0: {}
22474
+
21550
22475
  strip-final-newline@2.0.0: {}
21551
22476
 
21552
22477
  strip-json-comments@2.0.1: {}
@@ -21679,28 +22604,34 @@ snapshots:
21679
22604
  string-width: 4.2.3
21680
22605
  strip-ansi: 6.0.1
21681
22606
 
21682
- tailwindcss-config@1.1.3:
22607
+ tailwind-merge@3.5.0: {}
22608
+
22609
+ tailwindcss-animate@1.0.7(tailwindcss@4.1.18):
21683
22610
  dependencies:
21684
- '@weapp-tailwindcss/shared': 1.1.1
22611
+ tailwindcss: 4.1.18
22612
+
22613
+ tailwindcss-config@1.1.4:
22614
+ dependencies:
22615
+ '@weapp-tailwindcss/shared': 1.1.2
21685
22616
  jiti: 2.6.1
21686
22617
  lilconfig: 3.1.3
21687
22618
 
21688
- tailwindcss-patch@8.6.1(tailwindcss@4.1.18):
22619
+ tailwindcss-patch@8.7.3(tailwindcss@4.1.18):
21689
22620
  dependencies:
21690
- '@babel/generator': 7.28.5
21691
- '@babel/parser': 7.28.5
21692
- '@babel/traverse': 7.28.5
21693
- '@babel/types': 7.28.6
21694
- '@tailwindcss-mangle/config': 6.1.0
21695
- '@tailwindcss/node': 4.1.18
22621
+ '@babel/generator': 7.29.1
22622
+ '@babel/parser': 7.29.0
22623
+ '@babel/traverse': 7.29.0
22624
+ '@babel/types': 7.29.0
22625
+ '@tailwindcss-mangle/config': 6.1.3
22626
+ '@tailwindcss/node': 4.2.1
21696
22627
  cac: 6.7.14
21697
22628
  consola: 3.4.2
21698
22629
  fs-extra: 11.3.3
21699
22630
  local-pkg: 1.1.2
21700
22631
  pathe: 2.0.3
21701
22632
  postcss: 8.5.6
21702
- semver: 7.7.3
21703
- tailwindcss-config: 1.1.3
22633
+ semver: 7.7.4
22634
+ tailwindcss-config: 1.1.4
21704
22635
  optionalDependencies:
21705
22636
  tailwindcss: 4.1.18
21706
22637
  transitivePeerDependencies:
@@ -21709,6 +22640,8 @@ snapshots:
21709
22640
 
21710
22641
  tailwindcss@4.1.18: {}
21711
22642
 
22643
+ tailwindcss@4.2.1: {}
22644
+
21712
22645
  tapable@2.3.0: {}
21713
22646
 
21714
22647
  tar-fs@2.1.4:
@@ -21747,17 +22680,16 @@ snapshots:
21747
22680
  string-kit: 0.17.10
21748
22681
  tree-kit: 0.7.5
21749
22682
 
21750
- terser-webpack-plugin@5.3.16(@swc/core@1.3.96)(esbuild@0.25.12)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)):
22683
+ terser-webpack-plugin@5.3.16(@swc/core@1.3.96)(webpack@5.97.1(@swc/core@1.3.96)):
21751
22684
  dependencies:
21752
22685
  '@jridgewell/trace-mapping': 0.3.31
21753
22686
  jest-worker: 27.5.1
21754
22687
  schema-utils: 4.3.3
21755
22688
  serialize-javascript: 6.0.2
21756
22689
  terser: 5.44.1
21757
- webpack: 5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)
22690
+ webpack: 5.97.1(@swc/core@1.3.96)
21758
22691
  optionalDependencies:
21759
22692
  '@swc/core': 1.3.96
21760
- esbuild: 0.25.12
21761
22693
  optional: true
21762
22694
 
21763
22695
  terser-webpack-plugin@5.3.16(@swc/core@1.4.14)(esbuild@0.25.12)(webpack@5.97.1(@swc/core@1.4.14)(esbuild@0.25.12)):
@@ -21779,6 +22711,13 @@ snapshots:
21779
22711
  source-map: 0.6.1
21780
22712
  source-map-support: 0.5.21
21781
22713
 
22714
+ terser@5.26.0:
22715
+ dependencies:
22716
+ '@jridgewell/source-map': 0.3.11
22717
+ acorn: 8.15.0
22718
+ commander: 2.20.3
22719
+ source-map-support: 0.5.21
22720
+
21782
22721
  terser@5.44.1:
21783
22722
  dependencies:
21784
22723
  '@jridgewell/source-map': 0.3.11
@@ -21866,7 +22805,7 @@ snapshots:
21866
22805
 
21867
22806
  tr46@0.0.3: {}
21868
22807
 
21869
- transliteration@2.6.1: {}
22808
+ traverse@0.3.9: {}
21870
22809
 
21871
22810
  tree-kill@1.2.2: {}
21872
22811
 
@@ -21911,6 +22850,30 @@ snapshots:
21911
22850
 
21912
22851
  tslib@2.8.1: {}
21913
22852
 
22853
+ tt-ide-cli@0.1.31(@types/node@22.19.6):
22854
+ dependencies:
22855
+ '@tt-miniprogram/ext-pack': 1.2.4
22856
+ archiver: 5.3.2
22857
+ chalk: 4.1.2
22858
+ clipboardy: 2.3.0
22859
+ commander: 5.1.0
22860
+ deep-clone: 3.0.3
22861
+ easy-table: 1.2.0
22862
+ fast-glob: 3.3.2
22863
+ folder-hash: 4.1.1
22864
+ form-data: 4.0.5
22865
+ fs-extra: 10.1.0
22866
+ inquirer: 8.2.7(@types/node@22.19.6)
22867
+ node-machine-id: 1.1.12
22868
+ ora: 5.4.1
22869
+ qrcode: 1.5.4
22870
+ qrcode-terminal: 0.12.0
22871
+ semver-compare: 1.0.0
22872
+ unzipper: 0.10.14
22873
+ transitivePeerDependencies:
22874
+ - '@types/node'
22875
+ - supports-color
22876
+
21914
22877
  tunnel-agent@0.6.0:
21915
22878
  dependencies:
21916
22879
  safe-buffer: 5.2.1
@@ -22029,6 +22992,19 @@ snapshots:
22029
22992
 
22030
22993
  unpipe@1.0.0: {}
22031
22994
 
22995
+ unzipper@0.10.14:
22996
+ dependencies:
22997
+ big-integer: 1.6.52
22998
+ binary: 0.3.0
22999
+ bluebird: 3.4.7
23000
+ buffer-indexof-polyfill: 1.0.2
23001
+ duplexer2: 0.1.4
23002
+ fstream: 1.0.12
23003
+ graceful-fs: 4.2.11
23004
+ listenercount: 1.0.1
23005
+ readable-stream: 2.3.8
23006
+ setimmediate: 1.0.5
23007
+
22032
23008
  update-browserslist-db@1.2.3(browserslist@4.28.1):
22033
23009
  dependencies:
22034
23010
  browserslist: 4.28.1
@@ -22065,6 +23041,10 @@ snapshots:
22065
23041
 
22066
23042
  util-deprecate@1.0.2: {}
22067
23043
 
23044
+ util-promisify@2.1.0:
23045
+ dependencies:
23046
+ object.getownpropertydescriptors: 2.1.9
23047
+
22068
23048
  utils-merge@1.0.1: {}
22069
23049
 
22070
23050
  uuid@10.0.0: {}
@@ -22094,15 +23074,15 @@ snapshots:
22094
23074
  clone-stats: 0.0.1
22095
23075
  replace-ext: 0.0.1
22096
23076
 
22097
- vite-plugin-static-copy@0.17.1(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1)):
23077
+ vite-plugin-static-copy@0.17.1(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)):
22098
23078
  dependencies:
22099
23079
  chokidar: 3.6.0
22100
23080
  fast-glob: 3.3.3
22101
23081
  fs-extra: 11.3.3
22102
23082
  picocolors: 1.1.1
22103
- vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1)
23083
+ vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)
22104
23084
 
22105
- vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1):
23085
+ vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1):
22106
23086
  dependencies:
22107
23087
  esbuild: 0.18.20
22108
23088
  postcss: 8.5.6
@@ -22111,7 +23091,7 @@ snapshots:
22111
23091
  '@types/node': 22.19.6
22112
23092
  fsevents: 2.3.3
22113
23093
  less: 4.5.1
22114
- lightningcss: 1.30.2
23094
+ lightningcss: 1.31.1
22115
23095
  sass: 1.97.2
22116
23096
  terser: 5.44.1
22117
23097
 
@@ -22124,31 +23104,31 @@ snapshots:
22124
23104
  dependencies:
22125
23105
  defaults: 1.0.4
22126
23106
 
22127
- weapp-tailwindcss@4.9.2(tailwindcss@4.1.18):
23107
+ weapp-tailwindcss@4.10.3(tailwindcss@4.1.18):
22128
23108
  dependencies:
22129
23109
  '@ast-core/escape': 1.0.1
22130
- '@babel/parser': 7.28.5
22131
- '@babel/traverse': 7.28.5
22132
- '@babel/types': 7.28.6
22133
- '@tailwindcss-mangle/config': 6.1.0
22134
- '@vue/compiler-dom': 3.5.26
22135
- '@vue/compiler-sfc': 3.5.26
22136
- '@weapp-core/escape': 6.0.1
23110
+ '@babel/parser': 7.29.0
23111
+ '@babel/traverse': 7.29.0
23112
+ '@babel/types': 7.29.0
23113
+ '@tailwindcss-mangle/config': 6.1.3
23114
+ '@vue/compiler-dom': 3.5.30
23115
+ '@vue/compiler-sfc': 3.5.30
23116
+ '@weapp-core/escape': 7.0.0
22137
23117
  '@weapp-core/regex': 1.0.1
22138
23118
  '@weapp-tailwindcss/logger': 1.1.0
22139
- '@weapp-tailwindcss/postcss': 2.1.0
22140
- '@weapp-tailwindcss/shared': 1.1.1
23119
+ '@weapp-tailwindcss/postcss': 2.1.5
23120
+ '@weapp-tailwindcss/shared': 1.1.2
22141
23121
  cac: 6.7.14
22142
23122
  debug: 4.4.3
22143
23123
  fast-glob: 3.3.3
22144
- htmlparser2: 10.0.0
23124
+ htmlparser2: 10.1.0
22145
23125
  loader-utils: 2.0.4
22146
23126
  local-pkg: 1.1.2
22147
23127
  lru-cache: 10.4.3
22148
23128
  magic-string: 0.30.21
22149
- semver: 7.7.3
22150
- tailwindcss-patch: 8.6.1(tailwindcss@4.1.18)
22151
- webpack-sources: 3.3.3
23129
+ semver: 7.7.4
23130
+ tailwindcss-patch: 8.7.3(tailwindcss@4.1.18)
23131
+ webpack-sources: 3.3.4
22152
23132
  yaml: 2.8.2
22153
23133
  transitivePeerDependencies:
22154
23134
  - magicast
@@ -22167,7 +23147,9 @@ snapshots:
22167
23147
 
22168
23148
  webpack-sources@3.3.3: {}
22169
23149
 
22170
- webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12):
23150
+ webpack-sources@3.3.4: {}
23151
+
23152
+ webpack@5.97.1(@swc/core@1.3.96):
22171
23153
  dependencies:
22172
23154
  '@types/eslint-scope': 3.7.7
22173
23155
  '@types/estree': 1.0.8
@@ -22189,7 +23171,7 @@ snapshots:
22189
23171
  neo-async: 2.6.2
22190
23172
  schema-utils: 3.3.0
22191
23173
  tapable: 2.3.0
22192
- terser-webpack-plugin: 5.3.16(@swc/core@1.3.96)(esbuild@0.25.12)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
23174
+ terser-webpack-plugin: 5.3.16(@swc/core@1.3.96)(webpack@5.97.1(@swc/core@1.3.96))
22193
23175
  watchpack: 2.5.0
22194
23176
  webpack-sources: 3.3.3
22195
23177
  transitivePeerDependencies:
@@ -22323,6 +23305,8 @@ snapshots:
22323
23305
  imurmurhash: 0.1.4
22324
23306
  signal-exit: 4.1.0
22325
23307
 
23308
+ ws@8.19.0: {}
23309
+
22326
23310
  wxml-minifier@0.0.1:
22327
23311
  dependencies:
22328
23312
  '@leejim/wxml-parser': 0.1.6
@@ -22407,8 +23391,6 @@ snapshots:
22407
23391
 
22408
23392
  yocto-queue@0.1.0: {}
22409
23393
 
22410
- yoctocolors@2.1.2: {}
22411
-
22412
23394
  yup@1.7.1:
22413
23395
  dependencies:
22414
23396
  property-expr: 2.0.6