@coze-arch/cli 0.0.1-alpha.b0f2c2 → 0.0.1-alpha.b41a94

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 (158) hide show
  1. package/README.md +1 -0
  2. package/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +13 -12
  3. package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +9 -8
  4. package/lib/__templates__/expo/client/components/Screen.tsx +2 -2
  5. package/lib/__templates__/expo/client/eslint.config.mjs +7 -0
  6. package/lib/__templates__/expo/client/metro.config.js +3 -0
  7. package/lib/__templates__/expo/client/package.json +35 -35
  8. package/lib/__templates__/expo/client/screens/demo/index.tsx +3 -3
  9. package/lib/__templates__/expo/client/scripts/install-missing-deps.js +10 -10
  10. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
  11. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
  12. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
  13. package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/index.js +9 -0
  14. package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/rule.js +120 -0
  15. package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/tech.md +58 -0
  16. package/lib/__templates__/expo/package.json +1 -1
  17. package/lib/__templates__/expo/patches/{expo@54.0.32.patch → expo@54.0.33.patch} +3 -2
  18. package/lib/__templates__/expo/pnpm-lock.yaml +340 -1736
  19. package/lib/__templates__/expo/server/package.json +9 -7
  20. package/lib/__templates__/expo/server/src/index.ts +1 -0
  21. package/lib/__templates__/expo/template.config.js +56 -0
  22. package/lib/__templates__/native-static/.coze +11 -0
  23. package/lib/__templates__/native-static/index.html +33 -0
  24. package/lib/__templates__/native-static/styles/main.css +136 -0
  25. package/lib/__templates__/native-static/template.config.js +22 -0
  26. package/lib/__templates__/nextjs/README.md +5 -0
  27. package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
  28. package/lib/__templates__/nextjs/next.config.ts +1 -2
  29. package/lib/__templates__/nextjs/package.json +5 -6
  30. package/lib/__templates__/nextjs/pnpm-lock.yaml +1145 -109
  31. package/lib/__templates__/nextjs/scripts/build.sh +4 -1
  32. package/lib/__templates__/nextjs/scripts/dev.sh +8 -2
  33. package/lib/__templates__/nextjs/scripts/start.sh +7 -1
  34. package/lib/__templates__/nextjs/src/app/layout.tsx +1 -1
  35. package/lib/__templates__/nextjs/src/app/page.tsx +17 -60
  36. package/lib/__templates__/nextjs/src/server.ts +35 -0
  37. package/lib/__templates__/nextjs/template.config.js +49 -14
  38. package/lib/__templates__/nextjs/tsconfig.json +1 -1
  39. package/lib/__templates__/nuxt-vue/.coze +12 -0
  40. package/lib/__templates__/nuxt-vue/README.md +73 -0
  41. package/lib/__templates__/nuxt-vue/_gitignore +24 -0
  42. package/lib/__templates__/nuxt-vue/_npmrc +23 -0
  43. package/lib/__templates__/nuxt-vue/app/app.vue +6 -0
  44. package/lib/__templates__/nuxt-vue/app/pages/index.vue +23 -0
  45. package/lib/__templates__/nuxt-vue/assets/css/main.css +24 -0
  46. package/lib/__templates__/nuxt-vue/nuxt.config.ts +116 -0
  47. package/lib/__templates__/nuxt-vue/package.json +35 -0
  48. package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +8759 -0
  49. package/lib/__templates__/nuxt-vue/postcss.config.mjs +8 -0
  50. package/lib/__templates__/nuxt-vue/public/favicon.ico +0 -0
  51. package/lib/__templates__/nuxt-vue/public/robots.txt +2 -0
  52. package/lib/__templates__/nuxt-vue/scripts/build.sh +14 -0
  53. package/lib/__templates__/nuxt-vue/scripts/dev.sh +39 -0
  54. package/lib/__templates__/nuxt-vue/scripts/prepare.sh +14 -0
  55. package/lib/__templates__/nuxt-vue/scripts/start.sh +21 -0
  56. package/lib/__templates__/nuxt-vue/server/api/hello.ts +10 -0
  57. package/lib/__templates__/nuxt-vue/server/middleware/logger.ts +10 -0
  58. package/lib/__templates__/nuxt-vue/server/routes/health.ts +10 -0
  59. package/lib/__templates__/nuxt-vue/tailwind.config.js +13 -0
  60. package/lib/__templates__/nuxt-vue/template.config.js +87 -0
  61. package/lib/__templates__/nuxt-vue/tsconfig.json +18 -0
  62. package/lib/__templates__/taro/.coze +1 -1
  63. package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.sh +2 -2
  64. package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.sh +4 -3
  65. package/lib/__templates__/taro/.cozeproj/scripts/dev_build.sh +0 -15
  66. package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +117 -24
  67. package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +24 -1
  68. package/lib/__templates__/taro/README.md +138 -62
  69. package/lib/__templates__/taro/config/index.ts +105 -41
  70. package/lib/__templates__/taro/config/prod.ts +4 -5
  71. package/lib/__templates__/taro/eslint.config.mjs +82 -4
  72. package/lib/__templates__/taro/package.json +22 -13
  73. package/lib/__templates__/taro/patches/@tarojs__plugin-mini-ci@4.1.9.patch +30 -0
  74. package/lib/__templates__/taro/pnpm-lock.yaml +1307 -423
  75. package/lib/__templates__/taro/server/package.json +3 -1
  76. package/lib/__templates__/taro/server/src/main.ts +14 -2
  77. package/lib/__templates__/taro/src/app.css +141 -37
  78. package/lib/__templates__/taro/src/app.tsx +9 -0
  79. package/lib/__templates__/taro/src/components/ui/accordion.tsx +159 -0
  80. package/lib/__templates__/taro/src/components/ui/alert-dialog.tsx +260 -0
  81. package/lib/__templates__/taro/src/components/ui/alert.tsx +60 -0
  82. package/lib/__templates__/taro/src/components/ui/aspect-ratio.tsx +36 -0
  83. package/lib/__templates__/taro/src/components/ui/avatar.tsx +84 -0
  84. package/lib/__templates__/taro/src/components/ui/badge.tsx +37 -0
  85. package/lib/__templates__/taro/src/components/ui/breadcrumb.tsx +117 -0
  86. package/lib/__templates__/taro/src/components/ui/button-group.tsx +83 -0
  87. package/lib/__templates__/taro/src/components/ui/button.tsx +67 -0
  88. package/lib/__templates__/taro/src/components/ui/calendar.tsx +394 -0
  89. package/lib/__templates__/taro/src/components/ui/card.tsx +108 -0
  90. package/lib/__templates__/taro/src/components/ui/carousel.tsx +228 -0
  91. package/lib/__templates__/taro/src/components/ui/checkbox.tsx +58 -0
  92. package/lib/__templates__/taro/src/components/ui/code-block.tsx +169 -0
  93. package/lib/__templates__/taro/src/components/ui/collapsible.tsx +71 -0
  94. package/lib/__templates__/taro/src/components/ui/command.tsx +385 -0
  95. package/lib/__templates__/taro/src/components/ui/context-menu.tsx +614 -0
  96. package/lib/__templates__/taro/src/components/ui/dialog.tsx +256 -0
  97. package/lib/__templates__/taro/src/components/ui/drawer.tsx +192 -0
  98. package/lib/__templates__/taro/src/components/ui/dropdown-menu.tsx +561 -0
  99. package/lib/__templates__/taro/src/components/ui/field.tsx +228 -0
  100. package/lib/__templates__/taro/src/components/ui/hover-card.tsx +282 -0
  101. package/lib/__templates__/taro/src/components/ui/input-group.tsx +197 -0
  102. package/lib/__templates__/taro/src/components/ui/input-otp.tsx +136 -0
  103. package/lib/__templates__/taro/src/components/ui/input.tsx +56 -0
  104. package/lib/__templates__/taro/src/components/ui/label.tsx +24 -0
  105. package/lib/__templates__/taro/src/components/ui/menubar.tsx +595 -0
  106. package/lib/__templates__/taro/src/components/ui/navigation-menu.tsx +264 -0
  107. package/lib/__templates__/taro/src/components/ui/pagination.tsx +118 -0
  108. package/lib/__templates__/taro/src/components/ui/popover.tsx +291 -0
  109. package/lib/__templates__/taro/src/components/ui/portal.tsx +19 -0
  110. package/lib/__templates__/taro/src/components/ui/progress.tsx +28 -0
  111. package/lib/__templates__/taro/src/components/ui/radio-group.tsx +64 -0
  112. package/lib/__templates__/taro/src/components/ui/resizable.tsx +346 -0
  113. package/lib/__templates__/taro/src/components/ui/scroll-area.tsx +34 -0
  114. package/lib/__templates__/taro/src/components/ui/select.tsx +438 -0
  115. package/lib/__templates__/taro/src/components/ui/separator.tsx +30 -0
  116. package/lib/__templates__/taro/src/components/ui/sheet.tsx +262 -0
  117. package/lib/__templates__/taro/src/components/ui/skeleton.tsx +17 -0
  118. package/lib/__templates__/taro/src/components/ui/slider.tsx +203 -0
  119. package/lib/__templates__/taro/src/components/ui/sonner.tsx +1 -0
  120. package/lib/__templates__/taro/src/components/ui/switch.tsx +55 -0
  121. package/lib/__templates__/taro/src/components/ui/table.tsx +142 -0
  122. package/lib/__templates__/taro/src/components/ui/tabs.tsx +114 -0
  123. package/lib/__templates__/taro/src/components/ui/textarea.tsx +54 -0
  124. package/lib/__templates__/taro/src/components/ui/toast.tsx +517 -0
  125. package/lib/__templates__/taro/src/components/ui/toggle-group.tsx +120 -0
  126. package/lib/__templates__/taro/src/components/ui/toggle.tsx +77 -0
  127. package/lib/__templates__/taro/src/components/ui/tooltip.tsx +455 -0
  128. package/lib/__templates__/taro/src/index.html +20 -1
  129. package/lib/__templates__/taro/src/lib/hooks/use-keyboard-offset.ts +37 -0
  130. package/lib/__templates__/taro/src/lib/measure.ts +115 -0
  131. package/lib/__templates__/taro/src/lib/platform.ts +12 -0
  132. package/lib/__templates__/taro/src/lib/utils.ts +6 -0
  133. package/lib/__templates__/taro/src/presets/dev-debug.ts +23 -0
  134. package/lib/__templates__/taro/src/presets/h5-container.tsx +15 -0
  135. package/lib/__templates__/taro/src/presets/h5-navbar.tsx +238 -0
  136. package/lib/__templates__/taro/src/presets/h5-styles.ts +220 -0
  137. package/lib/__templates__/taro/src/presets/index.tsx +18 -0
  138. package/lib/__templates__/templates.json +28 -22
  139. package/lib/__templates__/vite/README.md +190 -11
  140. package/lib/__templates__/vite/_gitignore +1 -0
  141. package/lib/__templates__/vite/eslint.config.mjs +6 -1
  142. package/lib/__templates__/vite/package.json +14 -3
  143. package/lib/__templates__/vite/pnpm-lock.yaml +820 -1593
  144. package/lib/__templates__/vite/scripts/build.sh +4 -1
  145. package/lib/__templates__/vite/scripts/dev.sh +9 -2
  146. package/lib/__templates__/vite/scripts/start.sh +9 -3
  147. package/lib/__templates__/vite/server/routes/index.ts +31 -0
  148. package/lib/__templates__/vite/server/server.ts +65 -0
  149. package/lib/__templates__/vite/server/vite.ts +67 -0
  150. package/lib/__templates__/vite/src/main.ts +17 -47
  151. package/lib/__templates__/vite/template.config.js +49 -14
  152. package/lib/__templates__/vite/tsconfig.json +4 -3
  153. package/lib/__templates__/vite/vite.config.ts +5 -0
  154. package/lib/cli.js +160 -159
  155. package/package.json +7 -3
  156. package/lib/__templates__/taro/src/app.ts +0 -14
  157. package/lib/__templates__/taro/src/utils/h5-styles.ts +0 -22
  158. package/lib/__templates__/taro/src/utils/wx-debug.ts +0 -23
@@ -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,31 +18,16 @@ 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))
23
- '@tarojs/plugin-platform-alipay':
24
- specifier: 4.1.9
25
- version: 4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)
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))
26
28
  '@tarojs/plugin-platform-h5':
27
29
  specifier: 4.1.9
28
- 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))
29
- '@tarojs/plugin-platform-harmony-hybrid':
30
- specifier: 4.1.9
31
- version: 4.1.9(@babel/core@7.28.5)(@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)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
32
- '@tarojs/plugin-platform-jd':
33
- specifier: 4.1.9
34
- version: 4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)
35
- '@tarojs/plugin-platform-qq':
36
- specifier: 4.1.9
37
- version: 4.1.9(@tarojs/plugin-platform-weapp@4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9))(@tarojs/shared@4.1.9)
38
- '@tarojs/plugin-platform-swan':
39
- specifier: 4.1.9
40
- version: 4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)
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))
41
31
  '@tarojs/plugin-platform-tt':
42
32
  specifier: 4.1.9
43
33
  version: 4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)
@@ -55,19 +45,31 @@ importers:
55
45
  version: 4.1.9
56
46
  '@tarojs/taro':
57
47
  specifier: 4.1.9
58
- 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))
59
- drizzle-kit:
60
- specifier: ^0.31.8
61
- version: 0.31.8
62
- lucide-react:
63
- specifier: ^0.511.0
64
- 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)
65
61
  react:
66
62
  specifier: ^18.0.0
67
63
  version: 18.3.1
68
64
  react-dom:
69
65
  specifier: ^18.0.0
70
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)
71
73
  zustand:
72
74
  specifier: ^5.0.9
73
75
  version: 5.0.9(@types/react@18.3.27)(react@18.3.1)
@@ -95,10 +97,10 @@ importers:
95
97
  version: 4.1.9(@types/node@22.19.6)
96
98
  '@tarojs/plugin-mini-ci':
97
99
  specifier: ^4.1.9
98
- 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))
99
101
  '@tarojs/vite-runner':
100
102
  specifier: 4.1.9
101
- 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))
102
104
  '@types/minimatch':
103
105
  specifier: ^5
104
106
  version: 5.1.2
@@ -107,7 +109,7 @@ importers:
107
109
  version: 18.3.27
108
110
  '@vitejs/plugin-react':
109
111
  specifier: ^4.3.0
110
- 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))
111
113
  babel-preset-taro:
112
114
  specifier: 4.1.9
113
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)
@@ -129,9 +131,9 @@ importers:
129
131
  eslint-plugin-react-hooks:
130
132
  specifier: ^4.4.0
131
133
  version: 4.6.2(eslint@8.57.1)
132
- husky:
133
- specifier: ^9.1.7
134
- version: 9.1.7
134
+ eslint-plugin-tailwindcss:
135
+ specifier: ^3.18.2
136
+ version: 3.18.2(tailwindcss@4.1.18)
135
137
  less:
136
138
  specifier: ^4.2.0
137
139
  version: 4.5.1
@@ -162,15 +164,18 @@ importers:
162
164
  terser:
163
165
  specifier: ^5.30.4
164
166
  version: 5.44.1
167
+ tt-ide-cli:
168
+ specifier: ^0.1.31
169
+ version: 0.1.31(@types/node@22.19.6)
165
170
  typescript:
166
171
  specifier: ^5.4.5
167
172
  version: 5.9.3
168
173
  vite:
169
174
  specifier: ^4.2.0
170
- 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)
171
176
  weapp-tailwindcss:
172
- specifier: ^4.9.2
173
- version: 4.9.2(tailwindcss@4.1.18)
177
+ specifier: ^4.10.3
178
+ version: 4.10.3(tailwindcss@4.1.18)
174
179
 
175
180
  server:
176
181
  dependencies:
@@ -189,12 +194,18 @@ importers:
189
194
  '@nestjs/platform-express':
190
195
  specifier: ^10.4.15
191
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
192
200
  better-sqlite3:
193
201
  specifier: ^11.9.1
194
202
  version: 11.10.0
195
203
  coze-coding-dev-sdk:
196
- specifier: ^0.7.3
197
- 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
198
209
  drizzle-kit:
199
210
  specifier: ^0.31.8
200
211
  version: 0.31.8
@@ -444,6 +455,10 @@ packages:
444
455
  resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
445
456
  engines: {node: '>=6.9.0'}
446
457
 
458
+ '@babel/code-frame@7.29.0':
459
+ resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
460
+ engines: {node: '>=6.9.0'}
461
+
447
462
  '@babel/compat-data@7.22.9':
448
463
  resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
449
464
  engines: {node: '>=6.9.0'}
@@ -486,6 +501,10 @@ packages:
486
501
  resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
487
502
  engines: {node: '>=6.9.0'}
488
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
+
489
508
  '@babel/helper-annotate-as-pure@7.22.5':
490
509
  resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
491
510
  engines: {node: '>=6.9.0'}
@@ -719,6 +738,11 @@ packages:
719
738
  engines: {node: '>=6.0.0'}
720
739
  hasBin: true
721
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
+
722
746
  '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5':
723
747
  resolution: {integrity: sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==}
724
748
  engines: {node: '>=6.9.0'}
@@ -1720,6 +1744,10 @@ packages:
1720
1744
  resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
1721
1745
  engines: {node: '>=6.9.0'}
1722
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
+
1723
1751
  '@babel/traverse@7.21.4':
1724
1752
  resolution: {integrity: sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==}
1725
1753
  engines: {node: '>=6.9.0'}
@@ -1732,6 +1760,10 @@ packages:
1732
1760
  resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
1733
1761
  engines: {node: '>=6.9.0'}
1734
1762
 
1763
+ '@babel/traverse@7.29.0':
1764
+ resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
1765
+ engines: {node: '>=6.9.0'}
1766
+
1735
1767
  '@babel/types@7.24.0':
1736
1768
  resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
1737
1769
  engines: {node: '>=6.9.0'}
@@ -1744,6 +1776,10 @@ packages:
1744
1776
  resolution: {integrity: sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==}
1745
1777
  engines: {node: '>=6.9.0'}
1746
1778
 
1779
+ '@babel/types@7.29.0':
1780
+ resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
1781
+ engines: {node: '>=6.9.0'}
1782
+
1747
1783
  '@borewit/text-codec@0.2.1':
1748
1784
  resolution: {integrity: sha512-k7vvKPbf7J2fZ5klGRD9AeKfUvojuZIQ3BT5u7Jfv+puwXkUBUT5PVyMDfJZpy30CBDXGMgw7fguK/lpOMBvgw==}
1749
1785
 
@@ -2073,6 +2109,9 @@ packages:
2073
2109
  '@dual-bundle/import-meta-resolve@4.2.1':
2074
2110
  resolution: {integrity: sha512-id+7YRUgoUX6CgV0DtuhirQWodeeA7Lf4i2x71JS/vtA5pRb/hIGWlw+G6MeXvsM+MXrz0VAydTGElX1rAfgPg==}
2075
2111
 
2112
+ '@emnapi/runtime@1.8.1':
2113
+ resolution: {integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==}
2114
+
2076
2115
  '@esbuild-kit/core-utils@3.3.2':
2077
2116
  resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==}
2078
2117
  deprecated: 'Merged into tsx: https://tsx.is'
@@ -2557,6 +2596,123 @@ packages:
2557
2596
  resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
2558
2597
  deprecated: Use @eslint/object-schema instead
2559
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
+
2560
2716
  '@inquirer/external-editor@1.0.3':
2561
2717
  resolution: {integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==}
2562
2718
  engines: {node: '>=18'}
@@ -3063,36 +3219,42 @@ packages:
3063
3219
  engines: {node: '>= 10.0.0'}
3064
3220
  cpu: [arm]
3065
3221
  os: [linux]
3222
+ libc: [glibc]
3066
3223
 
3067
3224
  '@parcel/watcher-linux-arm-musl@2.5.4':
3068
3225
  resolution: {integrity: sha512-kGO8RPvVrcAotV4QcWh8kZuHr9bXi9a3bSZw7kFarYR0+fGliU7hd/zevhjw8fnvIKG3J9EO5G6sXNGCSNMYPQ==}
3069
3226
  engines: {node: '>= 10.0.0'}
3070
3227
  cpu: [arm]
3071
3228
  os: [linux]
3229
+ libc: [musl]
3072
3230
 
3073
3231
  '@parcel/watcher-linux-arm64-glibc@2.5.4':
3074
3232
  resolution: {integrity: sha512-KU75aooXhqGFY2W5/p8DYYHt4hrjHZod8AhcGAmhzPn/etTa+lYCDB2b1sJy3sWJ8ahFVTdy+EbqSBvMx3iFlw==}
3075
3233
  engines: {node: '>= 10.0.0'}
3076
3234
  cpu: [arm64]
3077
3235
  os: [linux]
3236
+ libc: [glibc]
3078
3237
 
3079
3238
  '@parcel/watcher-linux-arm64-musl@2.5.4':
3080
3239
  resolution: {integrity: sha512-Qx8uNiIekVutnzbVdrgSanM+cbpDD3boB1f8vMtnuG5Zau4/bdDbXyKwIn0ToqFhIuob73bcxV9NwRm04/hzHQ==}
3081
3240
  engines: {node: '>= 10.0.0'}
3082
3241
  cpu: [arm64]
3083
3242
  os: [linux]
3243
+ libc: [musl]
3084
3244
 
3085
3245
  '@parcel/watcher-linux-x64-glibc@2.5.4':
3086
3246
  resolution: {integrity: sha512-UYBQvhYmgAv61LNUn24qGQdjtycFBKSK3EXr72DbJqX9aaLbtCOO8+1SkKhD/GNiJ97ExgcHBrukcYhVjrnogA==}
3087
3247
  engines: {node: '>= 10.0.0'}
3088
3248
  cpu: [x64]
3089
3249
  os: [linux]
3250
+ libc: [glibc]
3090
3251
 
3091
3252
  '@parcel/watcher-linux-x64-musl@2.5.4':
3092
3253
  resolution: {integrity: sha512-YoRWCVgxv8akZrMhdyVi6/TyoeeMkQ0PGGOf2E4omODrvd1wxniXP+DBynKoHryStks7l+fDAMUBRzqNHrVOpg==}
3093
3254
  engines: {node: '>= 10.0.0'}
3094
3255
  cpu: [x64]
3095
3256
  os: [linux]
3257
+ libc: [musl]
3096
3258
 
3097
3259
  '@parcel/watcher-win32-arm64@2.5.4':
3098
3260
  resolution: {integrity: sha512-iby+D/YNXWkiQNYcIhg8P5hSjzXEHaQrk2SLrWOUD7VeC4Ohu0WQvmV+HDJokZVJ2UjJ4AGXW3bx7Lls9Ln4TQ==}
@@ -3453,6 +3615,30 @@ packages:
3453
3615
  engines: {node: '>=12.10.0', npm: '>=6.0.0'}
3454
3616
  hasBin: true
3455
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
+
3456
3642
  '@swc/core-darwin-arm64@1.3.96':
3457
3643
  resolution: {integrity: sha512-8hzgXYVd85hfPh6mJ9yrG26rhgzCmcLO0h1TIl8U31hwmTbfZLzRitFQ/kqMJNbIBCwmNH1RU2QcJnL3d7f69A==}
3458
3644
  engines: {node: '>=10'}
@@ -3494,48 +3680,56 @@ packages:
3494
3680
  engines: {node: '>=10'}
3495
3681
  cpu: [arm64]
3496
3682
  os: [linux]
3683
+ libc: [glibc]
3497
3684
 
3498
3685
  '@swc/core-linux-arm64-gnu@1.4.14':
3499
3686
  resolution: {integrity: sha512-3Lqlhlmy8MVRS9xTShMaPAp0oyUt0KFhDs4ixJsjdxKecE0NJSV/MInuDmrkij1C8/RQ2wySRlV9np5jK86oWw==}
3500
3687
  engines: {node: '>=10'}
3501
3688
  cpu: [arm64]
3502
3689
  os: [linux]
3690
+ libc: [glibc]
3503
3691
 
3504
3692
  '@swc/core-linux-arm64-musl@1.3.96':
3505
3693
  resolution: {integrity: sha512-i5/UTUwmJLri7zhtF6SAo/4QDQJDH2fhYJaBIUhrICmIkRO/ltURmpejqxsM/ye9Jqv5zG7VszMC0v/GYn/7BQ==}
3506
3694
  engines: {node: '>=10'}
3507
3695
  cpu: [arm64]
3508
3696
  os: [linux]
3697
+ libc: [musl]
3509
3698
 
3510
3699
  '@swc/core-linux-arm64-musl@1.4.14':
3511
3700
  resolution: {integrity: sha512-n0YoCa64TUcJrbcXIHIHDWQjdUPdaXeMHNEu7yyBtOpm01oMGTKP3frsUXIABLBmAVWtKvqit4/W1KVKn5gJzg==}
3512
3701
  engines: {node: '>=10'}
3513
3702
  cpu: [arm64]
3514
3703
  os: [linux]
3704
+ libc: [musl]
3515
3705
 
3516
3706
  '@swc/core-linux-x64-gnu@1.3.96':
3517
3707
  resolution: {integrity: sha512-USdaZu8lTIkm4Yf9cogct/j5eqtdZqTgcTib4I+NloUW0E/hySou3eSyp3V2UAA1qyuC72ld1otXuyKBna0YKQ==}
3518
3708
  engines: {node: '>=10'}
3519
3709
  cpu: [x64]
3520
3710
  os: [linux]
3711
+ libc: [glibc]
3521
3712
 
3522
3713
  '@swc/core-linux-x64-gnu@1.4.14':
3523
3714
  resolution: {integrity: sha512-CGmlwLWbfG1dB4jZBJnp2IWlK5xBMNLjN7AR5kKA3sEpionoccEnChOEvfux1UdVJQjLRKuHNV9yGyqGBTpxfQ==}
3524
3715
  engines: {node: '>=10'}
3525
3716
  cpu: [x64]
3526
3717
  os: [linux]
3718
+ libc: [glibc]
3527
3719
 
3528
3720
  '@swc/core-linux-x64-musl@1.3.96':
3529
3721
  resolution: {integrity: sha512-QYErutd+G2SNaCinUVobfL7jWWjGTI0QEoQ6hqTp7PxCJS/dmKmj3C5ZkvxRYcq7XcZt7ovrYCTwPTHzt6lZBg==}
3530
3722
  engines: {node: '>=10'}
3531
3723
  cpu: [x64]
3532
3724
  os: [linux]
3725
+ libc: [musl]
3533
3726
 
3534
3727
  '@swc/core-linux-x64-musl@1.4.14':
3535
3728
  resolution: {integrity: sha512-xq4npk8YKYmNwmr8fbvF2KP3kUVdZYfXZMQnW425gP3/sn+yFQO8Nd0bGH40vOVQn41kEesSe0Z5O/JDor2TgQ==}
3536
3729
  engines: {node: '>=10'}
3537
3730
  cpu: [x64]
3538
3731
  os: [linux]
3732
+ libc: [musl]
3539
3733
 
3540
3734
  '@swc/core-win32-arm64-msvc@1.3.96':
3541
3735
  resolution: {integrity: sha512-hjGvvAduA3Un2cZ9iNP4xvTXOO4jL3G9iakhFsgVhpkU73SGmK7+LN8ZVBEu4oq2SUcHO6caWvnZ881cxGuSpg==}
@@ -3608,15 +3802,18 @@ packages:
3608
3802
  resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==}
3609
3803
  engines: {node: '>=6'}
3610
3804
 
3611
- '@tailwindcss-mangle/config@6.1.0':
3612
- resolution: {integrity: sha512-74Ga5Z1ccg5trRbzD01cZcB3aaKv0bHKkxG9u6k880obwaH3XQuQOLDZu8UpYoMwt5J2eHqiD4urqpsmGb7irA==}
3805
+ '@tailwindcss-mangle/config@6.1.3':
3806
+ resolution: {integrity: sha512-e0wj/R582uyrqMLYDDyfl0BfysybOA1PiP0ChxQVch1JWxkLxM0SB7Nb6Cq0jiSYugX5hGfSV1UEqLhM0Q9PTQ==}
3613
3807
 
3614
- '@tailwindcss-mangle/shared@4.1.1':
3615
- resolution: {integrity: sha512-bVRIDBJlo+ysYySVgP1GWC+uHQzlZi6w9Gsvm/UOUA9SXwzwUBlR+25YLJJ9MIT4oaHTK4a/w1kWKHRZnQDbhQ==}
3808
+ '@tailwindcss-mangle/shared@4.1.3':
3809
+ resolution: {integrity: sha512-u7TSrR0PwEHUwP/gEE+yIy8QrkCnyVkN245uyn74aYWK73ksJAY2bb27OStzlMdfQADGf7xpBLshISM9UpDJEQ==}
3616
3810
 
3617
3811
  '@tailwindcss/node@4.1.18':
3618
3812
  resolution: {integrity: sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==}
3619
3813
 
3814
+ '@tailwindcss/node@4.2.1':
3815
+ resolution: {integrity: sha512-jlx6sLk4EOwO6hHe1oCGm1Q4AN/s0rSrTTPBGPM0/RQ6Uylwq17FuU8IeJJKEjtc6K6O07zsvP+gDO6MMWo7pg==}
3816
+
3620
3817
  '@tailwindcss/oxide-android-arm64@4.1.18':
3621
3818
  resolution: {integrity: sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==}
3622
3819
  engines: {node: '>= 10'}
@@ -3652,24 +3849,28 @@ packages:
3652
3849
  engines: {node: '>= 10'}
3653
3850
  cpu: [arm64]
3654
3851
  os: [linux]
3852
+ libc: [glibc]
3655
3853
 
3656
3854
  '@tailwindcss/oxide-linux-arm64-musl@4.1.18':
3657
3855
  resolution: {integrity: sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==}
3658
3856
  engines: {node: '>= 10'}
3659
3857
  cpu: [arm64]
3660
3858
  os: [linux]
3859
+ libc: [musl]
3661
3860
 
3662
3861
  '@tailwindcss/oxide-linux-x64-gnu@4.1.18':
3663
3862
  resolution: {integrity: sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==}
3664
3863
  engines: {node: '>= 10'}
3665
3864
  cpu: [x64]
3666
3865
  os: [linux]
3866
+ libc: [glibc]
3667
3867
 
3668
3868
  '@tailwindcss/oxide-linux-x64-musl@4.1.18':
3669
3869
  resolution: {integrity: sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==}
3670
3870
  engines: {node: '>= 10'}
3671
3871
  cpu: [x64]
3672
3872
  os: [linux]
3873
+ libc: [musl]
3673
3874
 
3674
3875
  '@tailwindcss/oxide-wasm32-wasi@4.1.18':
3675
3876
  resolution: {integrity: sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==}
@@ -3726,6 +3927,7 @@ packages:
3726
3927
  engines: {node: '>= 18'}
3727
3928
  cpu: [x64]
3728
3929
  os: [linux]
3930
+ libc: [glibc]
3729
3931
 
3730
3932
  '@tarojs/binding-win32-x64-msvc@4.1.9':
3731
3933
  resolution: {integrity: sha512-QHvWPJNZwbggonVxxj/ejVvujE251VNZVqCy/B60AUgubYDe4K7kh5xRCV24J5jmpX09K3l+NgfqU9/I827Pzw==}
@@ -3803,24 +4005,28 @@ packages:
3803
4005
  engines: {node: '>= 10'}
3804
4006
  cpu: [arm64]
3805
4007
  os: [linux]
4008
+ libc: [glibc]
3806
4009
 
3807
4010
  '@tarojs/parse-css-to-stylesheet-linux-arm64-musl@0.0.69':
3808
4011
  resolution: {integrity: sha512-bYODGCEx1Ni4EMNuZU95IUPqVZAXsY9gIc5CPSfKQ2j167Vbeo/gskQk/uNVjmnYJ69PplgJ9npylINgLIPIrA==}
3809
4012
  engines: {node: '>= 10'}
3810
4013
  cpu: [arm64]
3811
4014
  os: [linux]
4015
+ libc: [musl]
3812
4016
 
3813
4017
  '@tarojs/parse-css-to-stylesheet-linux-x64-gnu@0.0.69':
3814
4018
  resolution: {integrity: sha512-89f03s+txGJ1c8Zc6Ib4qTAP4YhfFbVFq29XExqbC7eGvpQl5DeOtwonO5DBwMc7lA+LG4b1Q4CMXE3qodn2eA==}
3815
4019
  engines: {node: '>= 10'}
3816
4020
  cpu: [x64]
3817
4021
  os: [linux]
4022
+ libc: [glibc]
3818
4023
 
3819
4024
  '@tarojs/parse-css-to-stylesheet-linux-x64-musl@0.0.69':
3820
4025
  resolution: {integrity: sha512-vyewIf1KysXYNIJdkzc9JSPguTG9zD65Belk3H186mLR18KtsvrqNqlWnP8kKfduF4ixh6qt0F2PkKbeI9PZvg==}
3821
4026
  engines: {node: '>= 10'}
3822
4027
  cpu: [x64]
3823
4028
  os: [linux]
4029
+ libc: [musl]
3824
4030
 
3825
4031
  '@tarojs/parse-css-to-stylesheet-win32-x64-msvc@0.0.69':
3826
4032
  resolution: {integrity: sha512-CHKlVjAiSAZTFNV8GkfXV88Jy9yyFSvKBAO3++l2KSQUBUWmPX775FbH+god2BOLf5SfAXRPd0HVAEK9qNeHXQ==}
@@ -3860,24 +4066,28 @@ packages:
3860
4066
  engines: {node: '>= 10'}
3861
4067
  cpu: [arm64]
3862
4068
  os: [linux]
4069
+ libc: [glibc]
3863
4070
 
3864
4071
  '@tarojs/plugin-doctor-linux-arm64-musl@0.0.13':
3865
4072
  resolution: {integrity: sha512-V1HnFITOLgHVyQ+OCa1oPFKOtGFRtP91vlbUGfOwMA4GeOVw9g28W/hfTyucTCkfZWlrssLehgW6L2AGAMXh2w==}
3866
4073
  engines: {node: '>= 10'}
3867
4074
  cpu: [arm64]
3868
4075
  os: [linux]
4076
+ libc: [musl]
3869
4077
 
3870
4078
  '@tarojs/plugin-doctor-linux-x64-gnu@0.0.13':
3871
4079
  resolution: {integrity: sha512-oetfzBW60uenPBBF4/NE6Mf0Iwkw1YGqIIBiN++aVQynbWrmMzWBsW8kleZ5vN1npxI9aud9EfRU1uM37DrG2A==}
3872
4080
  engines: {node: '>= 10'}
3873
4081
  cpu: [x64]
3874
4082
  os: [linux]
4083
+ libc: [glibc]
3875
4084
 
3876
4085
  '@tarojs/plugin-doctor-linux-x64-musl@0.0.13':
3877
4086
  resolution: {integrity: sha512-OdIF/kFwwM0kQPDnpkanhvfWRaAI6EtDmpM9rQA/Lu2QcJq86w5d7X/WSN0U2xF1nialAUrfl79NyIaEzp4Fcw==}
3878
4087
  engines: {node: '>= 10'}
3879
4088
  cpu: [x64]
3880
4089
  os: [linux]
4090
+ libc: [musl]
3881
4091
 
3882
4092
  '@tarojs/plugin-doctor-win32-ia32-msvc@0.0.13':
3883
4093
  resolution: {integrity: sha512-nIbG2SliRhRwACLa1kNMskcfjsihp+3tZQMAxl+LoYUq6JRaWgP3vH2nHkDyZHTCheBTDtAaupqXWrYF3w+U6g==}
@@ -3950,40 +4160,9 @@ packages:
3950
4160
  tt-ide-cli:
3951
4161
  optional: true
3952
4162
 
3953
- '@tarojs/plugin-platform-alipay@4.1.9':
3954
- resolution: {integrity: sha512-nPLkBIB+9q5a2Drgu9bpCn8frGRKpY08GoqinQ/KxhrXRgs8Nq4gyUUiLvyWshIrthI5GrRRH0hBidreX6Nk6Q==}
3955
- engines: {node: '>= 18'}
3956
- peerDependencies:
3957
- '@tarojs/service': 4.1.9
3958
- '@tarojs/shared': 4.1.9
3959
-
3960
4163
  '@tarojs/plugin-platform-h5@4.1.9':
3961
4164
  resolution: {integrity: sha512-qrxJY7fiknzcBWI/bEQxAksi8fB5/ciYIbrF/hFbsH7Zc0VzQGA0IpdeOl8gya/mzmF9ieyr28/hObNjNnMyUw==}
3962
4165
 
3963
- '@tarojs/plugin-platform-harmony-hybrid@4.1.9':
3964
- resolution: {integrity: sha512-AJWwPYvs89ERUiH+zKlFueSEo8+erPS8lhmHnaHCwLei7kBmnp61rriTrrtePm/zaRtEqadQERePQ6815AofiA==}
3965
-
3966
- '@tarojs/plugin-platform-jd@4.1.9':
3967
- resolution: {integrity: sha512-Z+omwU2K+LdNOfQKW8ntBVx8qq3C8oESohgzVYLJdw6Xp2Fjd7NVcDeQa5YKa3AdbO6bGAmNevvLvUdfTAsaWw==}
3968
- engines: {node: '>= 18'}
3969
- peerDependencies:
3970
- '@tarojs/service': 4.1.9
3971
- '@tarojs/shared': 4.1.9
3972
-
3973
- '@tarojs/plugin-platform-qq@4.1.9':
3974
- resolution: {integrity: sha512-YuIfm0cFULCZduyeiu7V8OB9E5lOa1y2voSFo3D6pz8j5tXAtPuHlUm0nnIV2bSJ6iqfxr0cQ4MLbkPCU3LPiw==}
3975
- engines: {node: '>= 18'}
3976
- peerDependencies:
3977
- '@tarojs/plugin-platform-weapp': 4.1.9
3978
- '@tarojs/shared': 4.1.9
3979
-
3980
- '@tarojs/plugin-platform-swan@4.1.9':
3981
- resolution: {integrity: sha512-2jueywyY2oRs5eJPoXL00qont0AdBw4vLNBs6AEbVl+8LsTpqqC///QKPouXH+Sllg4BxU/4vhT+eZpIPC1V/w==}
3982
- engines: {node: '>= 18'}
3983
- peerDependencies:
3984
- '@tarojs/service': 4.1.9
3985
- '@tarojs/shared': 4.1.9
3986
-
3987
4166
  '@tarojs/plugin-platform-tt@4.1.9':
3988
4167
  resolution: {integrity: sha512-qkz0VKx7tflj6MHJgR7wrEXxn0oS+ph0S+HdqulJpev7k2bWWSMUcVHiDHL1ZI01PSMVavX/+WCgYcX8CPEcGQ==}
3989
4168
  engines: {node: '>= 18'}
@@ -4085,6 +4264,9 @@ packages:
4085
4264
  '@ts-morph/common@0.27.0':
4086
4265
  resolution: {integrity: sha512-Wf29UqxWDpc+i61k3oIOzcUfQt79PIT9y/MWfAGlrkjg6lBC1hwDECLXPVJAhWjiGbfBCxZd65F/LIZF3+jeJQ==}
4087
4266
 
4267
+ '@tt-miniprogram/ext-pack@1.2.4':
4268
+ resolution: {integrity: sha512-pIXzF6YcCtJdlIGNByUIZr8OArdhi15ybS+N5Rr8x2YNQqFg/asacWqOSTnlOAOk2d5K6HA79sjdKodkrql7yQ==}
4269
+
4088
4270
  '@types/archy@0.0.31':
4089
4271
  resolution: {integrity: sha512-v+dxizsFVyXgD3EpFuqT9YjdEjbJmPxNf1QIX9ohZOhxh1ZF2yhqv3vYaeum9lg3VghhxS5S0a6yldN9J9lPEQ==}
4090
4272
 
@@ -4166,6 +4348,9 @@ packages:
4166
4348
  '@types/node@22.19.6':
4167
4349
  resolution: {integrity: sha512-qm+G8HuG6hOHQigsi7VGuLjUVu6TtBo/F05zvX04Mw2uCg9Dv0Qxy3Qw7j41SidlTcl5D/5yg0SEZqOB+EqZnQ==}
4168
4350
 
4351
+ '@types/phoenix@1.6.7':
4352
+ resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
4353
+
4169
4354
  '@types/postcss-url@10.0.4':
4170
4355
  resolution: {integrity: sha512-5QIO9NgbWmAkle65haRqkdgYPCOXheNsaFdbTJJQjT302yK3H49ql4t9a4y0NfpuPtU/UBo15VcV64WCSIMJKg==}
4171
4356
 
@@ -4200,6 +4385,9 @@ packages:
4200
4385
  '@types/uuid@10.0.0':
4201
4386
  resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
4202
4387
 
4388
+ '@types/ws@8.18.1':
4389
+ resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
4390
+
4203
4391
  '@typescript-eslint/eslint-plugin@6.21.0':
4204
4392
  resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==}
4205
4393
  engines: {node: ^16.0.0 || >=18.0.0}
@@ -4274,17 +4462,17 @@ packages:
4274
4462
  peerDependencies:
4275
4463
  vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
4276
4464
 
4277
- '@vue/compiler-core@3.5.26':
4278
- resolution: {integrity: sha512-vXyI5GMfuoBCnv5ucIT7jhHKl55Y477yxP6fc4eUswjP8FG3FFVFd41eNDArR+Uk3QKn2Z85NavjaxLxOC19/w==}
4465
+ '@vue/compiler-core@3.5.30':
4466
+ resolution: {integrity: sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==}
4279
4467
 
4280
- '@vue/compiler-dom@3.5.26':
4281
- 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==}
4282
4470
 
4283
- '@vue/compiler-sfc@3.5.26':
4284
- resolution: {integrity: sha512-egp69qDTSEZcf4bGOSsprUr4xI73wfrY5oRs6GSgXFTiHrWj4Y3X5Ydtip9QMqiCMCPVwLglB9GBxXtTadJ3mA==}
4471
+ '@vue/compiler-sfc@3.5.30':
4472
+ resolution: {integrity: sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==}
4285
4473
 
4286
- '@vue/compiler-ssr@3.5.26':
4287
- resolution: {integrity: sha512-lZT9/Y0nSIRUPVvapFJEVDbEXruZh2IYHMk2zTtEgJSlP5gVOqeWXH54xDKAaFS4rTnDeDBQUYDtxKyoW9FwDw==}
4474
+ '@vue/compiler-ssr@3.5.30':
4475
+ resolution: {integrity: sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==}
4288
4476
 
4289
4477
  '@vue/reactivity@3.0.5':
4290
4478
  resolution: {integrity: sha512-3xodUE3sEIJgS7ntwUbopIpzzvi7vDAOjVamfb2l+v1FUg0jpd3gf62N2wggJw3fxBMr+QvyxpD+dBoxLsmAjw==}
@@ -4292,11 +4480,11 @@ packages:
4292
4480
  '@vue/shared@3.0.5':
4293
4481
  resolution: {integrity: sha512-gYsNoGkWejBxNO6SNRjOh/xKeZ0H0V+TFzaPzODfBjkAIb0aQgBuixC1brandC/CDJy1wYPwSoYrXpvul7m6yw==}
4294
4482
 
4295
- '@vue/shared@3.5.26':
4296
- resolution: {integrity: sha512-7Z6/y3uFI5PRoKeorTOSXKcDj0MSasfNNltcslbFrPpcw6aXRUALq4IfJlaTRspiWIUOEZbrpM+iQGmCOiWe4A==}
4483
+ '@vue/shared@3.5.30':
4484
+ resolution: {integrity: sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==}
4297
4485
 
4298
- '@weapp-core/escape@6.0.1':
4299
- resolution: {integrity: sha512-p9vzvAAOejWDAhNGrmlNBO8MpOJQTUj9SOwKx/pCjvCnR/N8CF8yUFBaPH9WOGHCFxGPWxPEhViQSeDF+3vfFA==}
4486
+ '@weapp-core/escape@7.0.0':
4487
+ resolution: {integrity: sha512-xMiRT/54YCuyXGXC6ozxmoF+wmnnPJNbouRaAhGLl1jBKsLqtkeILYU5/tGDtfJPxwKcQEFeDuaSmnMHaU3myg==}
4300
4488
 
4301
4489
  '@weapp-core/regex@1.0.1':
4302
4490
  resolution: {integrity: sha512-gRIHHAb1MoTmM1lzfaKldwNXgsScaVu9/bnZDKT0A1CgUkaHAouxvZta3yQgev91V3ZAHQ+tdwA8WGhpkstzUw==}
@@ -4310,11 +4498,13 @@ packages:
4310
4498
  peerDependencies:
4311
4499
  postcss: ^8.4.38
4312
4500
 
4313
- '@weapp-tailwindcss/postcss@2.1.0':
4314
- 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}
4315
4504
 
4316
- '@weapp-tailwindcss/shared@1.1.1':
4317
- 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}
4318
4508
 
4319
4509
  '@webassemblyjs/ast@1.14.1':
4320
4510
  resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
@@ -4516,6 +4706,9 @@ packages:
4516
4706
  append-field@1.0.0:
4517
4707
  resolution: {integrity: sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==}
4518
4708
 
4709
+ arch@2.2.0:
4710
+ resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
4711
+
4519
4712
  archive-type@4.0.0:
4520
4713
  resolution: {integrity: sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==}
4521
4714
  engines: {node: '>=4'}
@@ -4580,6 +4773,10 @@ packages:
4580
4773
  resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
4581
4774
  engines: {node: '>= 0.4'}
4582
4775
 
4776
+ array.prototype.reduce@1.0.8:
4777
+ resolution: {integrity: sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw==}
4778
+ engines: {node: '>= 0.4'}
4779
+
4583
4780
  array.prototype.tosorted@1.1.4:
4584
4781
  resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
4585
4782
  engines: {node: '>= 0.4'}
@@ -4975,6 +5172,9 @@ packages:
4975
5172
  resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
4976
5173
  engines: {node: '>=8'}
4977
5174
 
5175
+ binary@0.3.0:
5176
+ resolution: {integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==}
5177
+
4978
5178
  bindings@1.5.0:
4979
5179
  resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
4980
5180
 
@@ -4987,6 +5187,9 @@ packages:
4987
5187
  bl@5.1.0:
4988
5188
  resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==}
4989
5189
 
5190
+ bluebird@3.4.7:
5191
+ resolution: {integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==}
5192
+
4990
5193
  bmp-js@0.1.0:
4991
5194
  resolution: {integrity: sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==}
4992
5195
 
@@ -5045,6 +5248,10 @@ packages:
5045
5248
  buffer-from@1.1.2:
5046
5249
  resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
5047
5250
 
5251
+ buffer-indexof-polyfill@1.0.2:
5252
+ resolution: {integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==}
5253
+ engines: {node: '>=0.10'}
5254
+
5048
5255
  buffer@5.6.0:
5049
5256
  resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==}
5050
5257
 
@@ -5054,6 +5261,10 @@ packages:
5054
5261
  buffer@6.0.3:
5055
5262
  resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
5056
5263
 
5264
+ buffers@0.1.1:
5265
+ resolution: {integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==}
5266
+ engines: {node: '>=0.2.0'}
5267
+
5057
5268
  busboy@1.6.0:
5058
5269
  resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
5059
5270
  engines: {node: '>=10.16.0'}
@@ -5133,6 +5344,9 @@ packages:
5133
5344
  centra@2.7.0:
5134
5345
  resolution: {integrity: sha512-PbFMgMSrmgx6uxCdm57RUos9Tc3fclMvhLSATYN39XsDV29B89zZ3KA89jmY0vwSGazyU+uerqwa6t+KaodPcg==}
5135
5346
 
5347
+ chainsaw@0.1.0:
5348
+ resolution: {integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==}
5349
+
5136
5350
  chalk@1.1.3:
5137
5351
  resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
5138
5352
  engines: {node: '>=0.10.0'}
@@ -5187,6 +5401,9 @@ packages:
5187
5401
  citty@0.1.6:
5188
5402
  resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
5189
5403
 
5404
+ class-variance-authority@0.7.1:
5405
+ resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
5406
+
5190
5407
  classnames@2.5.1:
5191
5408
  resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
5192
5409
 
@@ -5215,10 +5432,6 @@ packages:
5215
5432
  resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
5216
5433
  engines: {node: '>=6'}
5217
5434
 
5218
- cli-spinners@3.4.0:
5219
- resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==}
5220
- engines: {node: '>=18.20'}
5221
-
5222
5435
  cli-table3@0.6.5:
5223
5436
  resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==}
5224
5437
  engines: {node: 10.* || >= 12.*}
@@ -5235,6 +5448,10 @@ packages:
5235
5448
  resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
5236
5449
  engines: {node: '>= 12'}
5237
5450
 
5451
+ clipboardy@2.3.0:
5452
+ resolution: {integrity: sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==}
5453
+ engines: {node: '>=8'}
5454
+
5238
5455
  cliui@6.0.0:
5239
5456
  resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
5240
5457
 
@@ -5262,6 +5479,10 @@ packages:
5262
5479
  resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
5263
5480
  engines: {node: '>=0.8'}
5264
5481
 
5482
+ clsx@2.1.1:
5483
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
5484
+ engines: {node: '>=6'}
5485
+
5265
5486
  code-block-writer@13.0.3:
5266
5487
  resolution: {integrity: sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==}
5267
5488
 
@@ -5278,10 +5499,17 @@ packages:
5278
5499
  color-name@1.1.4:
5279
5500
  resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
5280
5501
 
5502
+ color-string@1.9.1:
5503
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
5504
+
5281
5505
  color-support@1.1.3:
5282
5506
  resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
5283
5507
  hasBin: true
5284
5508
 
5509
+ color@4.2.3:
5510
+ resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
5511
+ engines: {node: '>=12.5.0'}
5512
+
5285
5513
  colord@2.9.3:
5286
5514
  resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
5287
5515
 
@@ -5306,6 +5534,10 @@ packages:
5306
5534
  resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
5307
5535
  engines: {node: '>= 6'}
5308
5536
 
5537
+ commander@5.1.0:
5538
+ resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==}
5539
+ engines: {node: '>= 6'}
5540
+
5309
5541
  commander@7.2.0:
5310
5542
  resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
5311
5543
  engines: {node: '>= 10'}
@@ -5447,8 +5679,8 @@ packages:
5447
5679
  typescript:
5448
5680
  optional: true
5449
5681
 
5450
- coze-coding-dev-sdk@0.7.3:
5451
- 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==}
5452
5684
  engines: {node: '>=18.0.0'}
5453
5685
  hasBin: true
5454
5686
 
@@ -5461,6 +5693,10 @@ packages:
5461
5693
  resolution: {integrity: sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==}
5462
5694
  engines: {node: '>= 10'}
5463
5695
 
5696
+ cross-spawn@6.0.6:
5697
+ resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==}
5698
+ engines: {node: '>=4.8'}
5699
+
5464
5700
  cross-spawn@7.0.6:
5465
5701
  resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
5466
5702
  engines: {node: '>= 8'}
@@ -5560,6 +5796,9 @@ packages:
5560
5796
  resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
5561
5797
  engines: {node: '>= 0.4'}
5562
5798
 
5799
+ date-fns@4.1.0:
5800
+ resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
5801
+
5563
5802
  dateformat@2.2.0:
5564
5803
  resolution: {integrity: sha512-GODcnWq3YGoTnygPfi02ygEiRxqUxpJwuRHjdhJYuxpcZmDq4rjBiXYmbCCzStxo176ixfLT6i4NPwQooRySnw==}
5565
5804
 
@@ -5583,6 +5822,15 @@ packages:
5583
5822
  supports-color:
5584
5823
  optional: true
5585
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
+
5586
5834
  debug@4.4.3:
5587
5835
  resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
5588
5836
  engines: {node: '>=6.0'}
@@ -5644,6 +5892,9 @@ packages:
5644
5892
  babel-plugin-macros:
5645
5893
  optional: true
5646
5894
 
5895
+ deep-clone@3.0.3:
5896
+ resolution: {integrity: sha512-6jtXIlCBAwr3GP/7Il52clbIFIKAxg/pnNkL4/sE6+Oqb10MXMtm9LDZV2IAuwdaKV9VBm8hlxAFk9r6pF8XRw==}
5897
+
5647
5898
  deep-extend@0.6.0:
5648
5899
  resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
5649
5900
  engines: {node: '>=4.0.0'}
@@ -5881,12 +6132,18 @@ packages:
5881
6132
  duplexer2@0.0.2:
5882
6133
  resolution: {integrity: sha512-+AWBwjGadtksxjOQSFDhPNQbed7icNXApT4+2BNpsXzcCBiInq2H9XW0O8sfHFaPmnQRs7cg/P0fAr2IWQSW0g==}
5883
6134
 
6135
+ duplexer2@0.1.4:
6136
+ resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==}
6137
+
5884
6138
  duplexer3@0.1.5:
5885
6139
  resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
5886
6140
 
5887
6141
  eastasianwidth@0.2.0:
5888
6142
  resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
5889
6143
 
6144
+ easy-table@1.2.0:
6145
+ resolution: {integrity: sha512-OFzVOv03YpvtcWGe5AayU5G2hgybsg3iqA6drU8UaoZyB9jLGMTrz9+asnLp/E+6qPh88yEI1gvyZFZ41dmgww==}
6146
+
5890
6147
  ecc-jsbn@0.1.2:
5891
6148
  resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
5892
6149
 
@@ -5924,6 +6181,10 @@ packages:
5924
6181
  resolution: {integrity: sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==}
5925
6182
  engines: {node: '>=10.13.0'}
5926
6183
 
6184
+ enhanced-resolve@5.20.0:
6185
+ resolution: {integrity: sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==}
6186
+ engines: {node: '>=10.13.0'}
6187
+
5927
6188
  entities@2.2.0:
5928
6189
  resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
5929
6190
 
@@ -5931,12 +6192,8 @@ packages:
5931
6192
  resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
5932
6193
  engines: {node: '>=0.12'}
5933
6194
 
5934
- entities@6.0.1:
5935
- resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
5936
- engines: {node: '>=0.12'}
5937
-
5938
- entities@7.0.0:
5939
- resolution: {integrity: sha512-FDWG5cmEYf2Z00IkYRhbFrwIwvdFKH07uV8dvNy0omp/Qb1xcyCWp2UDtcwJF4QZZvk0sLudP6/hAu42TaqVhQ==}
6195
+ entities@7.0.1:
6196
+ resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
5940
6197
  engines: {node: '>=0.12'}
5941
6198
 
5942
6199
  env-paths@2.2.1:
@@ -5963,6 +6220,9 @@ packages:
5963
6220
  resolution: {integrity: sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==}
5964
6221
  engines: {node: '>= 0.4'}
5965
6222
 
6223
+ es-array-method-boxes-properly@1.0.0:
6224
+ resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
6225
+
5966
6226
  es-define-property@1.0.1:
5967
6227
  resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
5968
6228
  engines: {node: '>= 0.4'}
@@ -6091,6 +6351,12 @@ packages:
6091
6351
  peerDependencies:
6092
6352
  eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
6093
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
+
6094
6360
  eslint-scope@5.1.1:
6095
6361
  resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
6096
6362
  engines: {node: '>=8.0.0'}
@@ -6177,6 +6443,10 @@ packages:
6177
6443
  resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
6178
6444
  engines: {node: '>=0.8.x'}
6179
6445
 
6446
+ execa@1.0.0:
6447
+ resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
6448
+ engines: {node: '>=6'}
6449
+
6180
6450
  execa@5.1.1:
6181
6451
  resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
6182
6452
  engines: {node: '>=10'}
@@ -6225,6 +6495,10 @@ packages:
6225
6495
  fast-deep-equal@3.1.3:
6226
6496
  resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
6227
6497
 
6498
+ fast-glob@3.3.2:
6499
+ resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
6500
+ engines: {node: '>=8.6.0'}
6501
+
6228
6502
  fast-glob@3.3.3:
6229
6503
  resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
6230
6504
  engines: {node: '>=8.6.0'}
@@ -6369,6 +6643,11 @@ packages:
6369
6643
  flatted@3.3.3:
6370
6644
  resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
6371
6645
 
6646
+ folder-hash@4.1.1:
6647
+ resolution: {integrity: sha512-1ZSlKJSbET3XpglnEXC9g+QF4QRZhqHIjpFfa4pAMfO4tu/XYPafpeHEX6zOFS2EolOIXr0lPh1eSjmdWItX2w==}
6648
+ engines: {node: '>=10.10.0'}
6649
+ hasBin: true
6650
+
6372
6651
  follow-redirects@1.15.11:
6373
6652
  resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
6374
6653
  engines: {node: '>=4.0'}
@@ -6429,6 +6708,10 @@ packages:
6429
6708
  resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
6430
6709
  engines: {node: '>=12'}
6431
6710
 
6711
+ fs-extra@11.2.0:
6712
+ resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
6713
+ engines: {node: '>=14.14'}
6714
+
6432
6715
  fs-extra@11.3.3:
6433
6716
  resolution: {integrity: sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==}
6434
6717
  engines: {node: '>=14.14'}
@@ -6448,6 +6731,11 @@ packages:
6448
6731
  engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
6449
6732
  os: [darwin]
6450
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
+
6451
6739
  function-bind@1.1.2:
6452
6740
  resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
6453
6741
 
@@ -6458,6 +6746,10 @@ packages:
6458
6746
  functions-have-names@1.2.3:
6459
6747
  resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
6460
6748
 
6749
+ fuse.js@7.1.0:
6750
+ resolution: {integrity: sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==}
6751
+ engines: {node: '>=10'}
6752
+
6461
6753
  generator-function@2.0.1:
6462
6754
  resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
6463
6755
  engines: {node: '>= 0.4'}
@@ -6752,8 +7044,8 @@ packages:
6752
7044
  resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
6753
7045
  engines: {node: '>=8'}
6754
7046
 
6755
- htmlparser2@10.0.0:
6756
- resolution: {integrity: sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==}
7047
+ htmlparser2@10.1.0:
7048
+ resolution: {integrity: sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==}
6757
7049
 
6758
7050
  http-cache-semantics@3.8.1:
6759
7051
  resolution: {integrity: sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==}
@@ -6777,10 +7069,9 @@ packages:
6777
7069
  resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
6778
7070
  engines: {node: '>=10.17.0'}
6779
7071
 
6780
- husky@9.1.7:
6781
- resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==}
6782
- engines: {node: '>=18'}
6783
- hasBin: true
7072
+ iceberg-js@0.8.1:
7073
+ resolution: {integrity: sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==}
7074
+ engines: {node: '>=20.0.0'}
6784
7075
 
6785
7076
  iconv-lite@0.4.24:
6786
7077
  resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
@@ -6896,6 +7187,9 @@ packages:
6896
7187
  is-arrayish@0.2.1:
6897
7188
  resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
6898
7189
 
7190
+ is-arrayish@0.3.4:
7191
+ resolution: {integrity: sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==}
7192
+
6899
7193
  is-async-function@2.1.1:
6900
7194
  resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
6901
7195
  engines: {node: '>= 0.4'}
@@ -6934,6 +7228,11 @@ packages:
6934
7228
  resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
6935
7229
  engines: {node: '>= 0.4'}
6936
7230
 
7231
+ is-docker@2.2.1:
7232
+ resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
7233
+ engines: {node: '>=8'}
7234
+ hasBin: true
7235
+
6937
7236
  is-extglob@2.1.1:
6938
7237
  resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
6939
7238
  engines: {node: '>=0.10.0'}
@@ -7072,10 +7371,6 @@ packages:
7072
7371
  resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
7073
7372
  engines: {node: '>=12'}
7074
7373
 
7075
- is-unicode-supported@2.1.0:
7076
- resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
7077
- engines: {node: '>=18'}
7078
-
7079
7374
  is-weakmap@2.0.2:
7080
7375
  resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
7081
7376
  engines: {node: '>= 0.4'}
@@ -7091,6 +7386,10 @@ packages:
7091
7386
  is-what@3.14.1:
7092
7387
  resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
7093
7388
 
7389
+ is-wsl@2.2.0:
7390
+ resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
7391
+ engines: {node: '>=8'}
7392
+
7094
7393
  isarray@0.0.1:
7095
7394
  resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
7096
7395
 
@@ -7330,53 +7629,115 @@ packages:
7330
7629
  cpu: [arm64]
7331
7630
  os: [android]
7332
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
+
7333
7638
  lightningcss-darwin-arm64@1.30.2:
7334
7639
  resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
7335
7640
  engines: {node: '>= 12.0.0'}
7336
7641
  cpu: [arm64]
7337
7642
  os: [darwin]
7338
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
+
7339
7650
  lightningcss-darwin-x64@1.30.2:
7340
7651
  resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
7341
7652
  engines: {node: '>= 12.0.0'}
7342
7653
  cpu: [x64]
7343
7654
  os: [darwin]
7344
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
+
7345
7662
  lightningcss-freebsd-x64@1.30.2:
7346
7663
  resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
7347
7664
  engines: {node: '>= 12.0.0'}
7348
7665
  cpu: [x64]
7349
7666
  os: [freebsd]
7350
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
+
7351
7674
  lightningcss-linux-arm-gnueabihf@1.30.2:
7352
7675
  resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
7353
7676
  engines: {node: '>= 12.0.0'}
7354
7677
  cpu: [arm]
7355
7678
  os: [linux]
7356
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
+
7357
7686
  lightningcss-linux-arm64-gnu@1.30.2:
7358
7687
  resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
7359
7688
  engines: {node: '>= 12.0.0'}
7360
7689
  cpu: [arm64]
7361
7690
  os: [linux]
7691
+ libc: [glibc]
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]
7362
7699
 
7363
7700
  lightningcss-linux-arm64-musl@1.30.2:
7364
7701
  resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
7365
7702
  engines: {node: '>= 12.0.0'}
7366
7703
  cpu: [arm64]
7367
7704
  os: [linux]
7705
+ libc: [musl]
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]
7368
7713
 
7369
7714
  lightningcss-linux-x64-gnu@1.30.2:
7370
7715
  resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
7371
7716
  engines: {node: '>= 12.0.0'}
7372
7717
  cpu: [x64]
7373
7718
  os: [linux]
7719
+ libc: [glibc]
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]
7374
7727
 
7375
7728
  lightningcss-linux-x64-musl@1.30.2:
7376
7729
  resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
7377
7730
  engines: {node: '>= 12.0.0'}
7378
7731
  cpu: [x64]
7379
7732
  os: [linux]
7733
+ libc: [musl]
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]
7380
7741
 
7381
7742
  lightningcss-win32-arm64-msvc@1.30.2:
7382
7743
  resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
@@ -7384,16 +7745,32 @@ packages:
7384
7745
  cpu: [arm64]
7385
7746
  os: [win32]
7386
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
+
7387
7754
  lightningcss-win32-x64-msvc@1.30.2:
7388
7755
  resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
7389
7756
  engines: {node: '>= 12.0.0'}
7390
7757
  cpu: [x64]
7391
7758
  os: [win32]
7392
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
+
7393
7766
  lightningcss@1.30.2:
7394
7767
  resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
7395
7768
  engines: {node: '>= 12.0.0'}
7396
7769
 
7770
+ lightningcss@1.31.1:
7771
+ resolution: {integrity: sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==}
7772
+ engines: {node: '>= 12.0.0'}
7773
+
7397
7774
  lilconfig@2.1.0:
7398
7775
  resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
7399
7776
  engines: {node: '>=10'}
@@ -7410,6 +7787,9 @@ packages:
7410
7787
  engines: {node: '>=20.17'}
7411
7788
  hasBin: true
7412
7789
 
7790
+ listenercount@1.0.1:
7791
+ resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==}
7792
+
7413
7793
  listr2@9.0.5:
7414
7794
  resolution: {integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==}
7415
7795
  engines: {node: '>=20.0.0'}
@@ -7544,10 +7924,6 @@ packages:
7544
7924
  resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==}
7545
7925
  engines: {node: '>=12'}
7546
7926
 
7547
- log-symbols@7.0.1:
7548
- resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
7549
- engines: {node: '>=18'}
7550
-
7551
7927
  log-update@6.1.0:
7552
7928
  resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==}
7553
7929
  engines: {node: '>=18'}
@@ -7590,10 +7966,12 @@ packages:
7590
7966
  lru-cache@5.1.1:
7591
7967
  resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
7592
7968
 
7593
- lucide-react@0.511.0:
7594
- resolution: {integrity: sha512-VK5a2ydJ7xm8GvBeKLS9mu1pVK6ucef9780JVUjw6bAjJL/QXnd4Y0p7SPeOUMC27YhzNCZvm5d/QX0Tp3rc0w==}
7969
+ lucide-react-taro@1.3.0:
7970
+ resolution: {integrity: sha512-fx3u8ivLkwpdiv6WEARDcd9lK+CAzsyfY0kSwXqi0IxTWbWWChQoJymAMxSI9KtEpBf1LixiLnxmdrtKDoCf5Q==}
7971
+ hasBin: true
7595
7972
  peerDependencies:
7596
- react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
7973
+ '@tarojs/components': '>=3.0.0'
7974
+ react: '>=16.8.0'
7597
7975
 
7598
7976
  magic-string@0.30.21:
7599
7977
  resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
@@ -7727,6 +8105,10 @@ packages:
7727
8105
  resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
7728
8106
  engines: {node: '>=10'}
7729
8107
 
8108
+ minimatch@7.4.6:
8109
+ resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==}
8110
+ engines: {node: '>=10'}
8111
+
7730
8112
  minimatch@9.0.3:
7731
8113
  resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
7732
8114
  engines: {node: '>=16 || 14 >=14.17'}
@@ -7845,6 +8227,9 @@ packages:
7845
8227
  resolution: {integrity: sha512-P6qw6kenNXP+J9XlKJNi/MNHUQ+Lx5K8FEcSfX7/w8KJdZan5+BB5MKzuNgL2RTjHG1Svg8SehfseVEp8zAqwA==}
7846
8228
  engines: {node: '>=6.0.0'}
7847
8229
 
8230
+ nice-try@1.0.5:
8231
+ resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
8232
+
7848
8233
  no-case@2.3.2:
7849
8234
  resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==}
7850
8235
 
@@ -7880,6 +8265,9 @@ packages:
7880
8265
  encoding:
7881
8266
  optional: true
7882
8267
 
8268
+ node-machine-id@1.1.12:
8269
+ resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==}
8270
+
7883
8271
  node-releases@2.0.27:
7884
8272
  resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
7885
8273
 
@@ -7909,6 +8297,10 @@ packages:
7909
8297
  npm-normalize-package-bin@1.0.1:
7910
8298
  resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==}
7911
8299
 
8300
+ npm-run-path@2.0.2:
8301
+ resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
8302
+ engines: {node: '>=4'}
8303
+
7912
8304
  npm-run-path@4.0.1:
7913
8305
  resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
7914
8306
  engines: {node: '>=8'}
@@ -7952,6 +8344,10 @@ packages:
7952
8344
  resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
7953
8345
  engines: {node: '>= 0.4'}
7954
8346
 
8347
+ object.getownpropertydescriptors@2.1.9:
8348
+ resolution: {integrity: sha512-mt8YM6XwsTTovI+kdZdHSxoyF2DI59up034orlC9NfweclcWOt7CVascNNLp6U+bjFVCVCIh9PwS76tDM/rH8g==}
8349
+ engines: {node: '>= 0.4'}
8350
+
7955
8351
  object.groupby@1.0.3:
7956
8352
  resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
7957
8353
  engines: {node: '>= 0.4'}
@@ -8009,10 +8405,6 @@ packages:
8009
8405
  resolution: {integrity: sha512-ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ==}
8010
8406
  engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
8011
8407
 
8012
- ora@9.1.0:
8013
- resolution: {integrity: sha512-53uuLsXHOAJl5zLrUrzY9/kE+uIFEx7iaH4g2BIJQK4LZjY4LpCCYZVKDWIkL+F01wAaCg93duQ1whnK/AmY1A==}
8014
- engines: {node: '>=20'}
8015
-
8016
8408
  os-homedir@1.0.2:
8017
8409
  resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==}
8018
8410
  engines: {node: '>=0.10.0'}
@@ -8155,6 +8547,10 @@ packages:
8155
8547
  resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
8156
8548
  engines: {node: '>=0.10.0'}
8157
8549
 
8550
+ path-key@2.0.1:
8551
+ resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
8552
+ engines: {node: '>=4'}
8553
+
8158
8554
  path-key@3.1.1:
8159
8555
  resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
8160
8556
  engines: {node: '>=8'}
@@ -8660,8 +9056,8 @@ packages:
8660
9056
  peerDependencies:
8661
9057
  postcss: ^8
8662
9058
 
8663
- postcss-plugin-shared@1.0.0:
8664
- resolution: {integrity: sha512-3x83BXvFXlbtIaD/GC4C2uZQ+UmGwh1uYCm4DjQTEjDv8HrrBmZWZH968W+Shq/vxP+amsH08OafVt8aVzqL2w==}
9059
+ postcss-plugin-shared@1.1.1:
9060
+ resolution: {integrity: sha512-ucByjwfw3SJXo3NFDy6aF264cnSxOL5gFYMfDz9U/CD97+pT2KSryZ8DmVviWnI1ofJL71y2DhParq1zoS4hcw==}
8665
9061
  peerDependencies:
8666
9062
  postcss: ^8
8667
9063
 
@@ -8677,8 +9073,8 @@ packages:
8677
9073
  peerDependencies:
8678
9074
  postcss: ^8.4
8679
9075
 
8680
- postcss-pxtrans@1.0.0:
8681
- resolution: {integrity: sha512-1AKXs+w/hor0EAmxCAa2ATfYKgzqey/rHTgJ6LvvpNsRyeV9hyVNczF3N1hSXcB5ruM4E3ezg8cf3W+W/GY4GA==}
9076
+ postcss-pxtrans@1.0.1:
9077
+ resolution: {integrity: sha512-oNxhcSbbhkfhgJP/E0JJHIuQs8asqAuD1FqFT4VFF7xhkBmKKTIM08T7WIRHo9rjod8E4PR/CuOxtcWjftufcg==}
8682
9078
  peerDependencies:
8683
9079
  postcss: ^8
8684
9080
 
@@ -8700,8 +9096,8 @@ packages:
8700
9096
  peerDependencies:
8701
9097
  postcss: ^8.2.15
8702
9098
 
8703
- postcss-rem-to-responsive-pixel@7.0.0:
8704
- resolution: {integrity: sha512-m22VCg246RpyFDTByp0cR0KwK4MhnRgrX5yHTTkFeQddFqhCviE13P5c8Dwi2ISBB4DVeJnEYBxEKjUNyrigdQ==}
9099
+ postcss-rem-to-responsive-pixel@7.0.1:
9100
+ resolution: {integrity: sha512-enzOmpYK8RHTOL7Y9o3AsSRnYqigGu4OZbDmpP7dUsRRIpyqS1h3hKZHHH5B+WJRyw58DRSAFuicM0uc/2GRJQ==}
8705
9101
  engines: {node: '>=16.6.0'}
8706
9102
  peerDependencies:
8707
9103
  postcss: ^8
@@ -8746,6 +9142,11 @@ packages:
8746
9142
  peerDependencies:
8747
9143
  postcss: ^8.2.15
8748
9144
 
9145
+ postcss-units-to-px@0.2.0:
9146
+ resolution: {integrity: sha512-IN0zGe3JnOJvbFQRlUeSr1icsjQbFwHuso3IfhzCuILb+z9aj+0Nlzka5Q/A5Ulnh9Cd8mEs1Rfl7NxQdw+6iA==}
9147
+ peerDependencies:
9148
+ postcss: ^8
9149
+
8749
9150
  postcss-value-parser@4.2.0:
8750
9151
  resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
8751
9152
 
@@ -8753,6 +9154,10 @@ packages:
8753
9154
  resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
8754
9155
  engines: {node: ^10 || ^12 || >=14}
8755
9156
 
9157
+ postcss@8.5.8:
9158
+ resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
9159
+ engines: {node: ^10 || ^12 || >=14}
9160
+
8756
9161
  postgres-array@2.0.0:
8757
9162
  resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
8758
9163
  engines: {node: '>=4'}
@@ -8942,6 +9347,10 @@ packages:
8942
9347
  resolution: {integrity: sha512-2CNoRoh95LxY47LvqrehIAfUVda2JbuFE/HaGYs42bNrGG+ojbw1h3zOcPcQ+1GQ3+rkzNndZn85u1XyZ3UsIA==}
8943
9348
  deprecated: The functionality that this package provided is now in @npmcli/arborist
8944
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
+
8945
9354
  readable-stream@1.1.14:
8946
9355
  resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==}
8947
9356
 
@@ -9127,7 +9536,12 @@ packages:
9127
9536
  rfdc@1.4.1:
9128
9537
  resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
9129
9538
 
9130
- rimraf@3.0.2:
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
+
9544
+ rimraf@3.0.2:
9131
9545
  resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
9132
9546
  deprecated: Rimraf versions prior to v4 are no longer supported
9133
9547
  hasBin: true
@@ -9212,6 +9626,9 @@ packages:
9212
9626
  resolution: {integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==}
9213
9627
  hasBin: true
9214
9628
 
9629
+ semver-compare@1.0.0:
9630
+ resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==}
9631
+
9215
9632
  semver@5.7.2:
9216
9633
  resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
9217
9634
  hasBin: true
@@ -9225,6 +9642,11 @@ packages:
9225
9642
  engines: {node: '>=10'}
9226
9643
  hasBin: true
9227
9644
 
9645
+ semver@7.7.4:
9646
+ resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
9647
+ engines: {node: '>=10'}
9648
+ hasBin: true
9649
+
9228
9650
  send@0.19.0:
9229
9651
  resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
9230
9652
  engines: {node: '>= 0.8.0'}
@@ -9286,10 +9708,22 @@ packages:
9286
9708
  resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
9287
9709
  engines: {node: '>=8'}
9288
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
+
9289
9719
  shebang-command@2.0.0:
9290
9720
  resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
9291
9721
  engines: {node: '>=8'}
9292
9722
 
9723
+ shebang-regex@1.0.0:
9724
+ resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
9725
+ engines: {node: '>=0.10.0'}
9726
+
9293
9727
  shebang-regex@3.0.0:
9294
9728
  resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
9295
9729
  engines: {node: '>=8'}
@@ -9335,6 +9769,9 @@ packages:
9335
9769
  simple-plist@1.3.1:
9336
9770
  resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==}
9337
9771
 
9772
+ simple-swizzle@0.2.4:
9773
+ resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==}
9774
+
9338
9775
  simple-wcswidth@1.1.2:
9339
9776
  resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
9340
9777
 
@@ -9442,10 +9879,6 @@ packages:
9442
9879
  resolution: {integrity: sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==}
9443
9880
  engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
9444
9881
 
9445
- stdin-discarder@0.2.2:
9446
- resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
9447
- engines: {node: '>=18'}
9448
-
9449
9882
  stop-iteration-iterator@1.1.0:
9450
9883
  resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
9451
9884
  engines: {node: '>= 0.4'}
@@ -9542,6 +9975,10 @@ packages:
9542
9975
  strip-dirs@2.1.0:
9543
9976
  resolution: {integrity: sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==}
9544
9977
 
9978
+ strip-eof@1.0.0:
9979
+ resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
9980
+ engines: {node: '>=0.10.0'}
9981
+
9545
9982
  strip-final-newline@2.0.0:
9546
9983
  resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
9547
9984
  engines: {node: '>=6'}
@@ -9645,11 +10082,20 @@ packages:
9645
10082
  resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==}
9646
10083
  engines: {node: '>=10.0.0'}
9647
10084
 
9648
- tailwindcss-config@1.1.3:
9649
- 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'
10092
+
10093
+ tailwindcss-config@1.1.4:
10094
+ resolution: {integrity: sha512-p3PWbAJAkbO9Jabvr4C5l9X+Am1JmDoPHP9S2rbUNe/gT/I9BDTg4dJjd1Tg1RQ2AyZrslncYCQW9uqvb48irw==}
10095
+ engines: {node: ^20.19.0 || >=22.12.0}
9650
10096
 
9651
- tailwindcss-patch@8.6.1:
9652
- resolution: {integrity: sha512-DMK8j1ZAl1p1KdX5G4kT2atTbkrf3Su7BVIPsow6FXJV6mias0dm4+lg/pykA05EUzEHpKPrRfw3A6ScPWV2qQ==}
10097
+ tailwindcss-patch@8.7.3:
10098
+ resolution: {integrity: sha512-PvQu+wr/JS0y2mx0RzTKbMv+oGhmC/CowR8gN3/4tATK1Wo9MHm6ZMwlNDjbh1ltT7SCwjAEynqoSNYapnLIig==}
9653
10099
  hasBin: true
9654
10100
  peerDependencies:
9655
10101
  tailwindcss: '>=2.0.0'
@@ -9660,6 +10106,9 @@ packages:
9660
10106
  tailwindcss@4.1.18:
9661
10107
  resolution: {integrity: sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==}
9662
10108
 
10109
+ tailwindcss@4.2.1:
10110
+ resolution: {integrity: sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==}
10111
+
9663
10112
  tapable@2.3.0:
9664
10113
  resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
9665
10114
  engines: {node: '>=6'}
@@ -9700,6 +10149,11 @@ packages:
9700
10149
  engines: {node: '>=6.0.0'}
9701
10150
  hasBin: true
9702
10151
 
10152
+ terser@5.26.0:
10153
+ resolution: {integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==}
10154
+ engines: {node: '>=10'}
10155
+ hasBin: true
10156
+
9703
10157
  terser@5.44.1:
9704
10158
  resolution: {integrity: sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw==}
9705
10159
  engines: {node: '>=10'}
@@ -9795,10 +10249,8 @@ packages:
9795
10249
  tr46@0.0.3:
9796
10250
  resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
9797
10251
 
9798
- transliteration@2.6.1:
9799
- resolution: {integrity: sha512-hJ9BhrQAOnNTbpOr1MxsNjZISkn7ppvF5TKUeFmTE1mG4ZPD/XVxF0L0LUoIUCWmQyxH0gJpVtfYLAWf298U9w==}
9800
- engines: {node: '>=20.0.0'}
9801
- hasBin: true
10252
+ traverse@0.3.9:
10253
+ resolution: {integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==}
9802
10254
 
9803
10255
  tree-kill@1.2.2:
9804
10256
  resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
@@ -9841,6 +10293,10 @@ packages:
9841
10293
  tslib@2.8.1:
9842
10294
  resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
9843
10295
 
10296
+ tt-ide-cli@0.1.31:
10297
+ resolution: {integrity: sha512-1MTL9cG2EYwPWzv6JY+quNHhcjbtV/gfp760zsKWsZZ/19qGGu0eJI6jBrO/rlzr8BWf3QPzGjLsH3oA2WJrdQ==}
10298
+ hasBin: true
10299
+
9844
10300
  tunnel-agent@0.6.0:
9845
10301
  resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
9846
10302
 
@@ -9965,6 +10421,9 @@ packages:
9965
10421
  resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
9966
10422
  engines: {node: '>= 0.8'}
9967
10423
 
10424
+ unzipper@0.10.14:
10425
+ resolution: {integrity: sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==}
10426
+
9968
10427
  update-browserslist-db@1.2.3:
9969
10428
  resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
9970
10429
  hasBin: true
@@ -10000,6 +10459,9 @@ packages:
10000
10459
  util-deprecate@1.0.2:
10001
10460
  resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
10002
10461
 
10462
+ util-promisify@2.1.0:
10463
+ resolution: {integrity: sha512-K+5eQPYs14b3+E+hmE2J6gCZ4JmMl9DbYS6BeP2CHq6WMuNxErxf5B/n0fz85L8zUuoO6rIzNNmIQDu/j+1OcA==}
10464
+
10003
10465
  utils-merge@1.0.1:
10004
10466
  resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
10005
10467
  engines: {node: '>= 0.4.0'}
@@ -10076,9 +10538,9 @@ packages:
10076
10538
  wcwidth@1.0.1:
10077
10539
  resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
10078
10540
 
10079
- weapp-tailwindcss@4.9.2:
10080
- resolution: {integrity: sha512-2DnADF3pp9HSjrhhHXY8UH6InJn/J1HXPhh0xA8u/isL9c0wa/TL8shLGpf1l3Kj6dCcey8LDT33sumwFF139g==}
10081
- 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}
10082
10544
  hasBin: true
10083
10545
 
10084
10546
  webidl-conversions@3.0.1:
@@ -10096,6 +10558,10 @@ packages:
10096
10558
  resolution: {integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==}
10097
10559
  engines: {node: '>=10.13.0'}
10098
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
+
10099
10565
  webpack@5.97.1:
10100
10566
  resolution: {integrity: sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==}
10101
10567
  engines: {node: '>=10.13.0'}
@@ -10174,6 +10640,18 @@ packages:
10174
10640
  resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
10175
10641
  engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
10176
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
+
10177
10655
  wxml-minifier@0.0.1:
10178
10656
  resolution: {integrity: sha512-g8ZS4fyLdyRIcExnevKTnAFxbtYlAPKBGFO1DXOcsJfmppQWjH2xe2Ff6rRQ2ubYAWalaNjMYpkAl6hurhqkHg==}
10179
10657
 
@@ -10249,10 +10727,6 @@ packages:
10249
10727
  resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
10250
10728
  engines: {node: '>=10'}
10251
10729
 
10252
- yoctocolors@2.1.2:
10253
- resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
10254
- engines: {node: '>=18'}
10255
-
10256
10730
  yup@1.7.1:
10257
10731
  resolution: {integrity: sha512-GKHFX2nXul2/4Dtfxhozv701jLQHdf6J34YDh2cEkpqoo8le5Mg6/LrdseVLrFarmFygZTlfIhHx/QKfb/QWXw==}
10258
10732
 
@@ -10831,6 +11305,12 @@ snapshots:
10831
11305
  js-tokens: 4.0.0
10832
11306
  picocolors: 1.1.1
10833
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
+
10834
11314
  '@babel/compat-data@7.22.9': {}
10835
11315
 
10836
11316
  '@babel/compat-data@7.28.5': {}
@@ -10838,15 +11318,15 @@ snapshots:
10838
11318
  '@babel/core@7.21.4':
10839
11319
  dependencies:
10840
11320
  '@ampproject/remapping': 2.3.0
10841
- '@babel/code-frame': 7.22.10
10842
- '@babel/generator': 7.21.4
11321
+ '@babel/code-frame': 7.27.1
11322
+ '@babel/generator': 7.28.5
10843
11323
  '@babel/helper-compilation-targets': 7.22.10
10844
11324
  '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.4)
10845
11325
  '@babel/helpers': 7.21.0
10846
- '@babel/parser': 7.21.4
10847
- '@babel/template': 7.20.7
10848
- '@babel/traverse': 7.21.4
10849
- '@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
10850
11330
  convert-source-map: 1.9.0
10851
11331
  debug: 4.4.3
10852
11332
  gensync: 1.0.0-beta.2
@@ -10893,7 +11373,7 @@ snapshots:
10893
11373
 
10894
11374
  '@babel/generator@7.21.4':
10895
11375
  dependencies:
10896
- '@babel/types': 7.24.6
11376
+ '@babel/types': 7.28.6
10897
11377
  '@jridgewell/gen-mapping': 0.3.13
10898
11378
  '@jridgewell/trace-mapping': 0.3.31
10899
11379
  jsesc: 2.5.2
@@ -10913,9 +11393,17 @@ snapshots:
10913
11393
  '@jridgewell/trace-mapping': 0.3.31
10914
11394
  jsesc: 3.1.0
10915
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
+
10916
11404
  '@babel/helper-annotate-as-pure@7.22.5':
10917
11405
  dependencies:
10918
- '@babel/types': 7.24.6
11406
+ '@babel/types': 7.28.6
10919
11407
 
10920
11408
  '@babel/helper-annotate-as-pure@7.27.3':
10921
11409
  dependencies:
@@ -10923,7 +11411,7 @@ snapshots:
10923
11411
 
10924
11412
  '@babel/helper-builder-binary-assignment-operator-visitor@7.22.10':
10925
11413
  dependencies:
10926
- '@babel/types': 7.24.6
11414
+ '@babel/types': 7.28.6
10927
11415
 
10928
11416
  '@babel/helper-compilation-targets@7.22.10':
10929
11417
  dependencies:
@@ -11013,7 +11501,7 @@ snapshots:
11013
11501
  '@babel/helper-function-name@7.22.5':
11014
11502
  dependencies:
11015
11503
  '@babel/template': 7.27.2
11016
- '@babel/types': 7.24.6
11504
+ '@babel/types': 7.28.6
11017
11505
 
11018
11506
  '@babel/helper-function-name@7.24.7':
11019
11507
  dependencies:
@@ -11024,7 +11512,7 @@ snapshots:
11024
11512
 
11025
11513
  '@babel/helper-hoist-variables@7.22.5':
11026
11514
  dependencies:
11027
- '@babel/types': 7.24.6
11515
+ '@babel/types': 7.28.6
11028
11516
 
11029
11517
  '@babel/helper-hoist-variables@7.24.7':
11030
11518
  dependencies:
@@ -11032,7 +11520,7 @@ snapshots:
11032
11520
 
11033
11521
  '@babel/helper-member-expression-to-functions@7.22.5':
11034
11522
  dependencies:
11035
- '@babel/types': 7.24.6
11523
+ '@babel/types': 7.28.6
11036
11524
 
11037
11525
  '@babel/helper-member-expression-to-functions@7.28.5':
11038
11526
  dependencies:
@@ -11047,7 +11535,7 @@ snapshots:
11047
11535
 
11048
11536
  '@babel/helper-module-imports@7.21.4':
11049
11537
  dependencies:
11050
- '@babel/types': 7.24.6
11538
+ '@babel/types': 7.28.6
11051
11539
 
11052
11540
  '@babel/helper-module-imports@7.27.1':
11053
11541
  dependencies:
@@ -11063,7 +11551,7 @@ snapshots:
11063
11551
  '@babel/helper-module-imports': 7.27.1
11064
11552
  '@babel/helper-simple-access': 7.22.5
11065
11553
  '@babel/helper-split-export-declaration': 7.22.6
11066
- '@babel/helper-validator-identifier': 7.24.6
11554
+ '@babel/helper-validator-identifier': 7.28.5
11067
11555
  transitivePeerDependencies:
11068
11556
  - supports-color
11069
11557
 
@@ -11078,7 +11566,7 @@ snapshots:
11078
11566
 
11079
11567
  '@babel/helper-optimise-call-expression@7.22.5':
11080
11568
  dependencies:
11081
- '@babel/types': 7.24.6
11569
+ '@babel/types': 7.28.6
11082
11570
 
11083
11571
  '@babel/helper-optimise-call-expression@7.27.1':
11084
11572
  dependencies:
@@ -11122,11 +11610,11 @@ snapshots:
11122
11610
 
11123
11611
  '@babel/helper-simple-access@7.22.5':
11124
11612
  dependencies:
11125
- '@babel/types': 7.24.6
11613
+ '@babel/types': 7.28.6
11126
11614
 
11127
11615
  '@babel/helper-skip-transparent-expression-wrappers@7.24.6':
11128
11616
  dependencies:
11129
- '@babel/types': 7.24.6
11617
+ '@babel/types': 7.28.6
11130
11618
 
11131
11619
  '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
11132
11620
  dependencies:
@@ -11137,7 +11625,7 @@ snapshots:
11137
11625
 
11138
11626
  '@babel/helper-split-export-declaration@7.22.6':
11139
11627
  dependencies:
11140
- '@babel/types': 7.24.6
11628
+ '@babel/types': 7.28.6
11141
11629
 
11142
11630
  '@babel/helper-split-export-declaration@7.24.7':
11143
11631
  dependencies:
@@ -11159,7 +11647,7 @@ snapshots:
11159
11647
  dependencies:
11160
11648
  '@babel/helper-function-name': 7.22.5
11161
11649
  '@babel/template': 7.27.2
11162
- '@babel/types': 7.24.6
11650
+ '@babel/types': 7.28.6
11163
11651
 
11164
11652
  '@babel/helper-wrap-function@7.28.3':
11165
11653
  dependencies:
@@ -11171,9 +11659,9 @@ snapshots:
11171
11659
 
11172
11660
  '@babel/helpers@7.21.0':
11173
11661
  dependencies:
11174
- '@babel/template': 7.20.7
11175
- '@babel/traverse': 7.21.4
11176
- '@babel/types': 7.24.6
11662
+ '@babel/template': 7.27.2
11663
+ '@babel/traverse': 7.28.5
11664
+ '@babel/types': 7.28.6
11177
11665
  transitivePeerDependencies:
11178
11666
  - supports-color
11179
11667
 
@@ -11184,13 +11672,13 @@ snapshots:
11184
11672
 
11185
11673
  '@babel/highlight@7.22.10':
11186
11674
  dependencies:
11187
- '@babel/helper-validator-identifier': 7.24.6
11675
+ '@babel/helper-validator-identifier': 7.28.5
11188
11676
  chalk: 2.4.2
11189
11677
  js-tokens: 4.0.0
11190
11678
 
11191
11679
  '@babel/parser@7.21.4':
11192
11680
  dependencies:
11193
- '@babel/types': 7.24.6
11681
+ '@babel/types': 7.28.6
11194
11682
 
11195
11683
  '@babel/parser@7.24.4':
11196
11684
  dependencies:
@@ -11200,6 +11688,10 @@ snapshots:
11200
11688
  dependencies:
11201
11689
  '@babel/types': 7.28.6
11202
11690
 
11691
+ '@babel/parser@7.29.0':
11692
+ dependencies:
11693
+ '@babel/types': 7.29.0
11694
+
11203
11695
  '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.28.5)':
11204
11696
  dependencies:
11205
11697
  '@babel/core': 7.28.5
@@ -11847,7 +12339,7 @@ snapshots:
11847
12339
  '@babel/helper-hoist-variables': 7.22.5
11848
12340
  '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.4)
11849
12341
  '@babel/helper-plugin-utils': 7.24.6
11850
- '@babel/helper-validator-identifier': 7.24.6
12342
+ '@babel/helper-validator-identifier': 7.28.5
11851
12343
  transitivePeerDependencies:
11852
12344
  - supports-color
11853
12345
 
@@ -12260,7 +12752,7 @@ snapshots:
12260
12752
  '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.21.4)
12261
12753
  '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.21.4)
12262
12754
  '@babel/preset-modules': 0.1.6(@babel/core@7.21.4)
12263
- '@babel/types': 7.24.6
12755
+ '@babel/types': 7.28.6
12264
12756
  babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.4)
12265
12757
  babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.4)
12266
12758
  babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.4)
@@ -12351,7 +12843,7 @@ snapshots:
12351
12843
  '@babel/helper-plugin-utils': 7.24.6
12352
12844
  '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.4)
12353
12845
  '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.21.4)
12354
- '@babel/types': 7.24.6
12846
+ '@babel/types': 7.28.6
12355
12847
  esutils: 2.0.3
12356
12848
 
12357
12849
  '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.5)':
@@ -12398,9 +12890,9 @@ snapshots:
12398
12890
 
12399
12891
  '@babel/template@7.20.7':
12400
12892
  dependencies:
12401
- '@babel/code-frame': 7.22.10
12402
- '@babel/parser': 7.21.4
12403
- '@babel/types': 7.24.6
12893
+ '@babel/code-frame': 7.27.1
12894
+ '@babel/parser': 7.28.5
12895
+ '@babel/types': 7.28.6
12404
12896
 
12405
12897
  '@babel/template@7.27.2':
12406
12898
  dependencies:
@@ -12408,16 +12900,22 @@ snapshots:
12408
12900
  '@babel/parser': 7.28.5
12409
12901
  '@babel/types': 7.28.6
12410
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
+
12411
12909
  '@babel/traverse@7.21.4':
12412
12910
  dependencies:
12413
- '@babel/code-frame': 7.22.10
12414
- '@babel/generator': 7.21.4
12911
+ '@babel/code-frame': 7.27.1
12912
+ '@babel/generator': 7.28.5
12415
12913
  '@babel/helper-environment-visitor': 7.22.5
12416
12914
  '@babel/helper-function-name': 7.22.5
12417
12915
  '@babel/helper-hoist-variables': 7.22.5
12418
12916
  '@babel/helper-split-export-declaration': 7.22.6
12419
- '@babel/parser': 7.21.4
12420
- '@babel/types': 7.24.6
12917
+ '@babel/parser': 7.28.5
12918
+ '@babel/types': 7.28.6
12421
12919
  debug: 4.4.3
12422
12920
  globals: 11.12.0
12423
12921
  transitivePeerDependencies:
@@ -12450,6 +12948,18 @@ snapshots:
12450
12948
  transitivePeerDependencies:
12451
12949
  - supports-color
12452
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
+
12453
12963
  '@babel/types@7.24.0':
12454
12964
  dependencies:
12455
12965
  '@babel/helper-string-parser': 7.27.1
@@ -12458,8 +12968,8 @@ snapshots:
12458
12968
 
12459
12969
  '@babel/types@7.24.6':
12460
12970
  dependencies:
12461
- '@babel/helper-string-parser': 7.24.6
12462
- '@babel/helper-validator-identifier': 7.24.6
12971
+ '@babel/helper-string-parser': 7.27.1
12972
+ '@babel/helper-validator-identifier': 7.28.5
12463
12973
  to-fast-properties: 2.0.0
12464
12974
 
12465
12975
  '@babel/types@7.28.6':
@@ -12467,6 +12977,11 @@ snapshots:
12467
12977
  '@babel/helper-string-parser': 7.27.1
12468
12978
  '@babel/helper-validator-identifier': 7.28.5
12469
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
+
12470
12985
  '@borewit/text-codec@0.2.1': {}
12471
12986
 
12472
12987
  '@cacheable/memory@2.0.7':
@@ -12810,6 +13325,11 @@ snapshots:
12810
13325
 
12811
13326
  '@dual-bundle/import-meta-resolve@4.2.1': {}
12812
13327
 
13328
+ '@emnapi/runtime@1.8.1':
13329
+ dependencies:
13330
+ tslib: 2.8.1
13331
+ optional: true
13332
+
12813
13333
  '@esbuild-kit/core-utils@3.3.2':
12814
13334
  dependencies:
12815
13335
  esbuild: 0.18.20
@@ -13103,6 +13623,81 @@ snapshots:
13103
13623
 
13104
13624
  '@humanwhocodes/object-schema@2.0.3': {}
13105
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
+
13106
13701
  '@inquirer/external-editor@1.0.3(@types/node@22.19.6)':
13107
13702
  dependencies:
13108
13703
  chardet: 2.1.1
@@ -13622,14 +14217,14 @@ snapshots:
13622
14217
 
13623
14218
  '@keyv/serialize@1.1.1': {}
13624
14219
 
13625
- '@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))':
13626
14221
  dependencies:
13627
14222
  '@cfworker/json-schema': 4.1.1
13628
14223
  ansi-styles: 5.2.0
13629
14224
  camelcase: 6.3.0
13630
14225
  decamelize: 1.2.0
13631
14226
  js-tiktoken: 1.0.21
13632
- 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))
13633
14228
  mustache: 4.2.0
13634
14229
  p-queue: 6.6.2
13635
14230
  uuid: 10.0.0
@@ -13640,11 +14235,11 @@ snapshots:
13640
14235
  - '@opentelemetry/sdk-trace-base'
13641
14236
  - openai
13642
14237
 
13643
- '@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)':
13644
14239
  dependencies:
13645
- '@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))
13646
14241
  js-tiktoken: 1.0.21
13647
- openai: 6.16.0(zod@4.3.5)
14242
+ openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
13648
14243
  zod: 4.3.5
13649
14244
  transitivePeerDependencies:
13650
14245
  - ws
@@ -14263,6 +14858,44 @@ snapshots:
14263
14858
 
14264
14859
  '@stencil/core@2.22.3': {}
14265
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
+
14266
14899
  '@swc/core-darwin-arm64@1.3.96':
14267
14900
  optional: true
14268
14901
 
@@ -14372,9 +15005,9 @@ snapshots:
14372
15005
  dependencies:
14373
15006
  defer-to-connect: 1.1.3
14374
15007
 
14375
- '@tailwindcss-mangle/config@6.1.0':
15008
+ '@tailwindcss-mangle/config@6.1.3':
14376
15009
  dependencies:
14377
- '@tailwindcss-mangle/shared': 4.1.1
15010
+ '@tailwindcss-mangle/shared': 4.1.3
14378
15011
  c12: 3.3.3
14379
15012
  fs-extra: 11.3.3
14380
15013
  is-css-request: 1.0.1
@@ -14382,7 +15015,7 @@ snapshots:
14382
15015
  transitivePeerDependencies:
14383
15016
  - magicast
14384
15017
 
14385
- '@tailwindcss-mangle/shared@4.1.1': {}
15018
+ '@tailwindcss-mangle/shared@4.1.3': {}
14386
15019
 
14387
15020
  '@tailwindcss/node@4.1.18':
14388
15021
  dependencies:
@@ -14394,6 +15027,16 @@ snapshots:
14394
15027
  source-map-js: 1.2.1
14395
15028
  tailwindcss: 4.1.18
14396
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
+
14397
15040
  '@tailwindcss/oxide-android-arm64@4.1.18':
14398
15041
  optional: true
14399
15042
 
@@ -14503,12 +15146,12 @@ snapshots:
14503
15146
  - debug
14504
15147
  - supports-color
14505
15148
 
14506
- '@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))':
14507
15150
  dependencies:
14508
15151
  '@babel/runtime': 7.28.4
14509
- '@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))
14510
15153
  '@tarojs/shared': 4.1.9
14511
- '@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))
14512
15155
  classnames: 2.5.1
14513
15156
  identity-obj-proxy: 3.0.0
14514
15157
  react: 18.3.1
@@ -14526,12 +15169,12 @@ snapshots:
14526
15169
  - webpack-chain
14527
15170
  - webpack-dev-server
14528
15171
 
14529
- '@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))':
14530
15173
  dependencies:
14531
15174
  '@stencil/core': 2.22.3
14532
15175
  '@tarojs/runtime': 4.1.9
14533
15176
  '@tarojs/shared': 4.1.9
14534
- '@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))
14535
15178
  classnames: 2.5.1
14536
15179
  hammerjs: 2.0.8
14537
15180
  hls.js: 1.6.15
@@ -14671,7 +15314,7 @@ snapshots:
14671
15314
  transitivePeerDependencies:
14672
15315
  - supports-color
14673
15316
 
14674
- '@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))':
14675
15318
  dependencies:
14676
15319
  '@tarojs/helper': 4.1.9
14677
15320
  '@tarojs/runtime': 4.1.9
@@ -14681,10 +15324,10 @@ snapshots:
14681
15324
  lodash: 4.17.21
14682
15325
  tslib: 2.8.1
14683
15326
  optionalDependencies:
14684
- '@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))
14685
15328
  react: 18.3.1
14686
- 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)
14687
- 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)
14688
15331
 
14689
15332
  '@tarojs/plugin-generator@4.1.9(@types/node@22.19.6)':
14690
15333
  dependencies:
@@ -14703,7 +15346,7 @@ snapshots:
14703
15346
  - babel-plugin-macros
14704
15347
  - supports-color
14705
15348
 
14706
- '@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))':
14707
15350
  dependencies:
14708
15351
  axios: 1.13.2
14709
15352
  jimp: 0.22.12
@@ -14713,25 +15356,22 @@ snapshots:
14713
15356
  qrcode: 1.5.4
14714
15357
  resolve: 1.22.11
14715
15358
  shelljs: 0.8.5
15359
+ optionalDependencies:
15360
+ tt-ide-cli: 0.1.31(@types/node@22.19.6)
14716
15361
  transitivePeerDependencies:
14717
15362
  - debug
14718
15363
  - encoding
14719
15364
 
14720
- '@tarojs/plugin-platform-alipay@4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)':
14721
- dependencies:
14722
- '@tarojs/service': 4.1.9
14723
- '@tarojs/shared': 4.1.9
14724
-
14725
- '@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))':
14726
15366
  dependencies:
14727
15367
  '@babel/core': 7.28.5
14728
- '@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))
14729
- '@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))
14730
15370
  '@tarojs/helper': 4.1.9
14731
15371
  '@tarojs/runtime': 4.1.9
14732
15372
  '@tarojs/service': 4.1.9
14733
15373
  '@tarojs/shared': 4.1.9
14734
- '@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)))
14735
15375
  babel-plugin-transform-taroapi: 4.1.9(@babel/core@7.28.5)
14736
15376
  change-case: 4.1.2
14737
15377
  lodash-es: 4.17.21
@@ -14751,58 +15391,6 @@ snapshots:
14751
15391
  - webpack-chain
14752
15392
  - webpack-dev-server
14753
15393
 
14754
- '@tarojs/plugin-platform-harmony-hybrid@4.1.9(@babel/core@7.28.5)(@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)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))':
14755
- dependencies:
14756
- '@tarojs/api': 4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)
14757
- '@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))
14758
- '@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))
14759
- '@tarojs/helper': 4.1.9
14760
- '@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))
14761
- '@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)))
14762
- '@tarojs/runtime': 4.1.9
14763
- '@tarojs/service': 4.1.9
14764
- '@tarojs/shared': 4.1.9
14765
- '@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)))
14766
- axios: 1.13.2
14767
- babel-plugin-transform-taroapi: 4.1.9(@babel/core@7.28.5)
14768
- base64-js: 1.5.1
14769
- change-case: 4.1.2
14770
- jsonp-retry: 1.0.3
14771
- lodash-es: 4.17.21
14772
- query-string: 9.3.1
14773
- react: 18.3.1
14774
- whatwg-fetch: 3.6.20
14775
- transitivePeerDependencies:
14776
- - '@babel/core'
14777
- - '@swc/helpers'
14778
- - '@tarojs/taro'
14779
- - '@types/react'
14780
- - debug
14781
- - html-webpack-plugin
14782
- - postcss
14783
- - rollup
14784
- - solid-js
14785
- - supports-color
14786
- - vue
14787
- - webpack
14788
- - webpack-chain
14789
- - webpack-dev-server
14790
-
14791
- '@tarojs/plugin-platform-jd@4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)':
14792
- dependencies:
14793
- '@tarojs/service': 4.1.9
14794
- '@tarojs/shared': 4.1.9
14795
-
14796
- '@tarojs/plugin-platform-qq@4.1.9(@tarojs/plugin-platform-weapp@4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9))(@tarojs/shared@4.1.9)':
14797
- dependencies:
14798
- '@tarojs/plugin-platform-weapp': 4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)
14799
- '@tarojs/shared': 4.1.9
14800
-
14801
- '@tarojs/plugin-platform-swan@4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)':
14802
- dependencies:
14803
- '@tarojs/service': 4.1.9
14804
- '@tarojs/shared': 4.1.9
14805
-
14806
15394
  '@tarojs/plugin-platform-tt@4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)':
14807
15395
  dependencies:
14808
15396
  '@tarojs/service': 4.1.9
@@ -14821,11 +15409,11 @@ snapshots:
14821
15409
  react: 18.3.1
14822
15410
  react-reconciler: 0.29.0(react@18.3.1)
14823
15411
 
14824
- '@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)))':
14825
15413
  dependencies:
14826
15414
  '@tarojs/runtime': 4.1.9
14827
15415
  '@tarojs/shared': 4.1.9
14828
- '@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))
14829
15417
  dingtalk-jsapi: 2.15.6
14830
15418
  history: 5.3.0
14831
15419
  mobile-detect: 1.4.5
@@ -14864,11 +15452,11 @@ snapshots:
14864
15452
 
14865
15453
  '@tarojs/shared@4.1.9': {}
14866
15454
 
14867
- '@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)))':
14868
15456
  dependencies:
14869
15457
  '@tarojs/api': 4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)
14870
- '@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))
14871
- '@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)))
14872
15460
  '@tarojs/runtime': 4.1.9
14873
15461
  '@tarojs/shared': 4.1.9
14874
15462
  abortcontroller-polyfill: 1.7.8
@@ -14884,10 +15472,10 @@ snapshots:
14884
15472
  transitivePeerDependencies:
14885
15473
  - '@tarojs/taro'
14886
15474
 
14887
- '@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))':
14888
15476
  dependencies:
14889
15477
  '@tarojs/api': 4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)
14890
- '@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))
14891
15479
  '@tarojs/helper': 4.1.9
14892
15480
  '@tarojs/runtime': 4.1.9
14893
15481
  '@tarojs/shared': 4.1.9
@@ -14896,9 +15484,9 @@ snapshots:
14896
15484
  optionalDependencies:
14897
15485
  '@types/react': 18.3.27
14898
15486
  rollup: 3.29.5
14899
- webpack: 5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)
15487
+ webpack: 5.97.1(@swc/core@1.3.96)
14900
15488
 
14901
- '@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))':
14902
15490
  dependencies:
14903
15491
  '@ampproject/remapping': 2.3.0
14904
15492
  '@babel/core': 7.28.5
@@ -14911,7 +15499,7 @@ snapshots:
14911
15499
  '@tarojs/runner-utils': 4.1.9
14912
15500
  '@tarojs/runtime': 4.1.9
14913
15501
  '@tarojs/shared': 4.1.9
14914
- '@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))
14915
15503
  acorn-walk: 8.3.4
14916
15504
  autoprefixer: 10.4.23(postcss@8.5.6)
14917
15505
  babel-plugin-transform-taroapi: 4.1.9(@babel/core@7.28.5)
@@ -14934,8 +15522,8 @@ snapshots:
14934
15522
  regenerator-runtime: 0.11.1
14935
15523
  sax: 1.2.4
14936
15524
  stylelint: 16.26.1(typescript@5.9.3)
14937
- 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)
14938
- 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))
14939
15527
  transitivePeerDependencies:
14940
15528
  - '@swc/helpers'
14941
15529
  - '@types/babel__core'
@@ -14964,6 +15552,14 @@ snapshots:
14964
15552
  minimatch: 10.1.1
14965
15553
  path-browserify: 1.0.1
14966
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
+
14967
15563
  '@types/archy@0.0.31': {}
14968
15564
 
14969
15565
  '@types/babel__core@7.20.5':
@@ -15066,6 +15662,8 @@ snapshots:
15066
15662
  dependencies:
15067
15663
  undici-types: 6.21.0
15068
15664
 
15665
+ '@types/phoenix@1.6.7': {}
15666
+
15069
15667
  '@types/postcss-url@10.0.4':
15070
15668
  dependencies:
15071
15669
  '@types/node': 22.19.6
@@ -15103,6 +15701,10 @@ snapshots:
15103
15701
 
15104
15702
  '@types/uuid@10.0.0': {}
15105
15703
 
15704
+ '@types/ws@8.18.1':
15705
+ dependencies:
15706
+ '@types/node': 22.19.6
15707
+
15106
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)':
15107
15709
  dependencies:
15108
15710
  '@eslint-community/regexpp': 4.12.2
@@ -15116,7 +15718,7 @@ snapshots:
15116
15718
  graphemer: 1.4.0
15117
15719
  ignore: 5.3.2
15118
15720
  natural-compare: 1.4.0
15119
- semver: 7.7.3
15721
+ semver: 7.7.4
15120
15722
  ts-api-utils: 1.4.3(typescript@5.9.3)
15121
15723
  optionalDependencies:
15122
15724
  typescript: 5.9.3
@@ -15163,7 +15765,7 @@ snapshots:
15163
15765
  globby: 11.1.0
15164
15766
  is-glob: 4.0.3
15165
15767
  minimatch: 9.0.3
15166
- semver: 7.7.3
15768
+ semver: 7.7.4
15167
15769
  ts-api-utils: 1.4.3(typescript@5.9.3)
15168
15770
  optionalDependencies:
15169
15771
  typescript: 5.9.3
@@ -15179,7 +15781,7 @@ snapshots:
15179
15781
  '@typescript-eslint/types': 6.21.0
15180
15782
  '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.3)
15181
15783
  eslint: 8.57.1
15182
- semver: 7.7.3
15784
+ semver: 7.7.4
15183
15785
  transitivePeerDependencies:
15184
15786
  - supports-color
15185
15787
  - typescript
@@ -15191,7 +15793,7 @@ snapshots:
15191
15793
 
15192
15794
  '@ungap/structured-clone@1.3.0': {}
15193
15795
 
15194
- '@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))':
15195
15797
  dependencies:
15196
15798
  '@babel/core': 7.28.5
15197
15799
  '@babel/preset-env': 7.28.5(@babel/core@7.28.5)
@@ -15201,11 +15803,11 @@ snapshots:
15201
15803
  regenerator-runtime: 0.13.11
15202
15804
  systemjs: 6.15.1
15203
15805
  terser: 5.44.1
15204
- 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)
15205
15807
  transitivePeerDependencies:
15206
15808
  - supports-color
15207
15809
 
15208
- '@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))':
15209
15811
  dependencies:
15210
15812
  '@babel/core': 7.28.5
15211
15813
  '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5)
@@ -15213,39 +15815,39 @@ snapshots:
15213
15815
  '@rolldown/pluginutils': 1.0.0-beta.27
15214
15816
  '@types/babel__core': 7.20.5
15215
15817
  react-refresh: 0.17.0
15216
- 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)
15217
15819
  transitivePeerDependencies:
15218
15820
  - supports-color
15219
15821
 
15220
- '@vue/compiler-core@3.5.26':
15822
+ '@vue/compiler-core@3.5.30':
15221
15823
  dependencies:
15222
- '@babel/parser': 7.28.5
15223
- '@vue/shared': 3.5.26
15224
- entities: 7.0.0
15824
+ '@babel/parser': 7.29.0
15825
+ '@vue/shared': 3.5.30
15826
+ entities: 7.0.1
15225
15827
  estree-walker: 2.0.2
15226
15828
  source-map-js: 1.2.1
15227
15829
 
15228
- '@vue/compiler-dom@3.5.26':
15830
+ '@vue/compiler-dom@3.5.30':
15229
15831
  dependencies:
15230
- '@vue/compiler-core': 3.5.26
15231
- '@vue/shared': 3.5.26
15832
+ '@vue/compiler-core': 3.5.30
15833
+ '@vue/shared': 3.5.30
15232
15834
 
15233
- '@vue/compiler-sfc@3.5.26':
15835
+ '@vue/compiler-sfc@3.5.30':
15234
15836
  dependencies:
15235
- '@babel/parser': 7.28.5
15236
- '@vue/compiler-core': 3.5.26
15237
- '@vue/compiler-dom': 3.5.26
15238
- '@vue/compiler-ssr': 3.5.26
15239
- '@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
15240
15842
  estree-walker: 2.0.2
15241
15843
  magic-string: 0.30.21
15242
- postcss: 8.5.6
15844
+ postcss: 8.5.8
15243
15845
  source-map-js: 1.2.1
15244
15846
 
15245
- '@vue/compiler-ssr@3.5.26':
15847
+ '@vue/compiler-ssr@3.5.30':
15246
15848
  dependencies:
15247
- '@vue/compiler-dom': 3.5.26
15248
- '@vue/shared': 3.5.26
15849
+ '@vue/compiler-dom': 3.5.30
15850
+ '@vue/shared': 3.5.30
15249
15851
 
15250
15852
  '@vue/reactivity@3.0.5':
15251
15853
  dependencies:
@@ -15253,9 +15855,9 @@ snapshots:
15253
15855
 
15254
15856
  '@vue/shared@3.0.5': {}
15255
15857
 
15256
- '@vue/shared@3.5.26': {}
15858
+ '@vue/shared@3.5.30': {}
15257
15859
 
15258
- '@weapp-core/escape@6.0.1': {}
15860
+ '@weapp-core/escape@7.0.0': {}
15259
15861
 
15260
15862
  '@weapp-core/regex@1.0.1': {}
15261
15863
 
@@ -15270,19 +15872,20 @@ snapshots:
15270
15872
  postcss-selector-parser: 7.1.1
15271
15873
  postcss-value-parser: 4.2.0
15272
15874
 
15273
- '@weapp-tailwindcss/postcss@2.1.0':
15875
+ '@weapp-tailwindcss/postcss@2.1.5':
15274
15876
  dependencies:
15275
- '@weapp-core/escape': 6.0.1
15877
+ '@weapp-core/escape': 7.0.0
15276
15878
  '@weapp-tailwindcss/postcss-calc': 1.0.0(postcss@8.5.6)
15277
- '@weapp-tailwindcss/shared': 1.1.1
15879
+ '@weapp-tailwindcss/shared': 1.1.2
15278
15880
  postcss: 8.5.6
15279
15881
  postcss-preset-env: 10.6.1(postcss@8.5.6)
15280
- postcss-pxtrans: 1.0.0(postcss@8.5.6)
15281
- 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)
15282
15884
  postcss-selector-parser: 7.1.1
15885
+ postcss-units-to-px: 0.2.0(postcss@8.5.6)
15283
15886
  postcss-value-parser: 4.2.0
15284
15887
 
15285
- '@weapp-tailwindcss/shared@1.1.1':
15888
+ '@weapp-tailwindcss/shared@1.1.2':
15286
15889
  dependencies:
15287
15890
  pathe: 2.0.3
15288
15891
 
@@ -15496,6 +16099,8 @@ snapshots:
15496
16099
 
15497
16100
  append-field@1.0.0: {}
15498
16101
 
16102
+ arch@2.2.0: {}
16103
+
15499
16104
  archive-type@4.0.0:
15500
16105
  dependencies:
15501
16106
  file-type: 4.4.0
@@ -15599,6 +16204,17 @@ snapshots:
15599
16204
  es-abstract: 1.24.1
15600
16205
  es-shim-unscopables: 1.1.0
15601
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
+
15602
16218
  array.prototype.tosorted@1.1.4:
15603
16219
  dependencies:
15604
16220
  call-bind: 1.0.8
@@ -16312,6 +16928,11 @@ snapshots:
16312
16928
 
16313
16929
  binary-extensions@2.3.0: {}
16314
16930
 
16931
+ binary@0.3.0:
16932
+ dependencies:
16933
+ buffers: 0.1.1
16934
+ chainsaw: 0.1.0
16935
+
16315
16936
  bindings@1.5.0:
16316
16937
  dependencies:
16317
16938
  file-uri-to-path: 1.0.0
@@ -16333,6 +16954,8 @@ snapshots:
16333
16954
  inherits: 2.0.4
16334
16955
  readable-stream: 3.6.2
16335
16956
 
16957
+ bluebird@3.4.7: {}
16958
+
16336
16959
  bmp-js@0.1.0: {}
16337
16960
 
16338
16961
  body-parser@1.20.3:
@@ -16414,6 +17037,8 @@ snapshots:
16414
17037
 
16415
17038
  buffer-from@1.1.2: {}
16416
17039
 
17040
+ buffer-indexof-polyfill@1.0.2: {}
17041
+
16417
17042
  buffer@5.6.0:
16418
17043
  dependencies:
16419
17044
  base64-js: 1.5.1
@@ -16429,6 +17054,8 @@ snapshots:
16429
17054
  base64-js: 1.5.1
16430
17055
  ieee754: 1.2.1
16431
17056
 
17057
+ buffers@0.1.1: {}
17058
+
16432
17059
  busboy@1.6.0:
16433
17060
  dependencies:
16434
17061
  streamsearch: 1.1.0
@@ -16543,6 +17170,10 @@ snapshots:
16543
17170
  transitivePeerDependencies:
16544
17171
  - debug
16545
17172
 
17173
+ chainsaw@0.1.0:
17174
+ dependencies:
17175
+ traverse: 0.3.9
17176
+
16546
17177
  chalk@1.1.3:
16547
17178
  dependencies:
16548
17179
  ansi-styles: 2.2.1
@@ -16618,6 +17249,10 @@ snapshots:
16618
17249
  dependencies:
16619
17250
  consola: 3.4.2
16620
17251
 
17252
+ class-variance-authority@0.7.1:
17253
+ dependencies:
17254
+ clsx: 2.1.1
17255
+
16621
17256
  classnames@2.5.1: {}
16622
17257
 
16623
17258
  clean-css@4.2.4:
@@ -16647,8 +17282,6 @@ snapshots:
16647
17282
 
16648
17283
  cli-spinners@2.9.2: {}
16649
17284
 
16650
- cli-spinners@3.4.0: {}
16651
-
16652
17285
  cli-table3@0.6.5:
16653
17286
  dependencies:
16654
17287
  string-width: 4.2.3
@@ -16664,6 +17297,12 @@ snapshots:
16664
17297
 
16665
17298
  cli-width@4.1.0: {}
16666
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
+
16667
17306
  cliui@6.0.0:
16668
17307
  dependencies:
16669
17308
  string-width: 4.2.3
@@ -16700,6 +17339,8 @@ snapshots:
16700
17339
 
16701
17340
  clone@1.0.4: {}
16702
17341
 
17342
+ clsx@2.1.1: {}
17343
+
16703
17344
  code-block-writer@13.0.3: {}
16704
17345
 
16705
17346
  color-convert@1.9.3:
@@ -16714,8 +17355,18 @@ snapshots:
16714
17355
 
16715
17356
  color-name@1.1.4: {}
16716
17357
 
17358
+ color-string@1.9.1:
17359
+ dependencies:
17360
+ color-name: 1.1.4
17361
+ simple-swizzle: 0.2.4
17362
+
16717
17363
  color-support@1.1.3: {}
16718
17364
 
17365
+ color@4.2.3:
17366
+ dependencies:
17367
+ color-convert: 2.0.1
17368
+ color-string: 1.9.1
17369
+
16719
17370
  colord@2.9.3: {}
16720
17371
 
16721
17372
  colorette@2.0.20: {}
@@ -16732,6 +17383,8 @@ snapshots:
16732
17383
 
16733
17384
  commander@4.1.1: {}
16734
17385
 
17386
+ commander@5.1.0: {}
17387
+
16735
17388
  commander@7.2.0: {}
16736
17389
 
16737
17390
  commander@9.5.0: {}
@@ -16781,7 +17434,7 @@ snapshots:
16781
17434
  make-dir: 3.1.0
16782
17435
  onetime: 5.1.2
16783
17436
  pkg-up: 3.1.0
16784
- semver: 7.7.3
17437
+ semver: 7.7.4
16785
17438
 
16786
17439
  confbox@0.1.8: {}
16787
17440
 
@@ -16882,56 +17535,22 @@ snapshots:
16882
17535
  optionalDependencies:
16883
17536
  typescript: 5.9.3
16884
17537
 
16885
- 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):
16886
17539
  dependencies:
16887
- '@aws-sdk/client-s3': 3.972.0
16888
- '@aws-sdk/lib-storage': 3.972.0(@aws-sdk/client-s3@3.972.0)
16889
- '@langchain/core': 1.1.16(openai@6.16.0(zod@4.3.5))
16890
- '@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
16891
17543
  axios: 1.13.2
16892
- chalk: 5.6.2
16893
- commander: 14.0.2
16894
- drizzle-kit: 0.31.8
16895
- drizzle-orm: 0.45.1(@types/better-sqlite3@7.6.13)(better-sqlite3@11.10.0)(pg@8.17.2)
16896
- ora: 9.1.0
16897
17544
  pg: 8.17.2
16898
- transliteration: 2.6.1
16899
17545
  transitivePeerDependencies:
16900
- - '@aws-sdk/client-rds-data'
16901
- - '@cloudflare/workers-types'
16902
- - '@electric-sql/pglite'
16903
- - '@libsql/client'
16904
- - '@libsql/client-wasm'
16905
- - '@neondatabase/serverless'
16906
- - '@op-engineering/op-sqlite'
16907
17546
  - '@opentelemetry/api'
16908
17547
  - '@opentelemetry/exporter-trace-otlp-proto'
16909
17548
  - '@opentelemetry/sdk-trace-base'
16910
- - '@planetscale/database'
16911
- - '@prisma/client'
16912
- - '@tidbcloud/serverless'
16913
- - '@types/better-sqlite3'
16914
- - '@types/pg'
16915
- - '@types/sql.js'
16916
- - '@upstash/redis'
16917
- - '@vercel/postgres'
16918
- - '@xata.io/client'
16919
- - aws-crt
16920
- - better-sqlite3
16921
- - bun-types
17549
+ - bufferutil
16922
17550
  - debug
16923
- - expo-sqlite
16924
- - gel
16925
- - knex
16926
- - kysely
16927
- - mysql2
16928
17551
  - openai
16929
17552
  - pg-native
16930
- - postgres
16931
- - prisma
16932
- - sql.js
16933
- - sqlite3
16934
- - supports-color
17553
+ - utf-8-validate
16935
17554
  - ws
16936
17555
 
16937
17556
  crc-32@1.2.2: {}
@@ -16941,6 +17560,14 @@ snapshots:
16941
17560
  crc-32: 1.2.2
16942
17561
  readable-stream: 3.6.2
16943
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
+
16944
17571
  cross-spawn@7.0.6:
16945
17572
  dependencies:
16946
17573
  path-key: 3.1.1
@@ -17069,6 +17696,8 @@ snapshots:
17069
17696
  es-errors: 1.3.0
17070
17697
  is-data-view: 1.0.2
17071
17698
 
17699
+ date-fns@4.1.0: {}
17700
+
17072
17701
  dateformat@2.2.0: {}
17073
17702
 
17074
17703
  debounce-fn@4.0.0:
@@ -17083,6 +17712,10 @@ snapshots:
17083
17712
  dependencies:
17084
17713
  ms: 2.1.3
17085
17714
 
17715
+ debug@4.4.0:
17716
+ dependencies:
17717
+ ms: 2.1.3
17718
+
17086
17719
  debug@4.4.3:
17087
17720
  dependencies:
17088
17721
  ms: 2.1.3
@@ -17143,6 +17776,8 @@ snapshots:
17143
17776
 
17144
17777
  dedent@1.7.1: {}
17145
17778
 
17779
+ deep-clone@3.0.3: {}
17780
+
17146
17781
  deep-extend@0.6.0: {}
17147
17782
 
17148
17783
  deep-is@0.1.4: {}
@@ -17324,10 +17959,20 @@ snapshots:
17324
17959
  dependencies:
17325
17960
  readable-stream: 1.1.14
17326
17961
 
17962
+ duplexer2@0.1.4:
17963
+ dependencies:
17964
+ readable-stream: 2.3.8
17965
+
17327
17966
  duplexer3@0.1.5: {}
17328
17967
 
17329
17968
  eastasianwidth@0.2.0: {}
17330
17969
 
17970
+ easy-table@1.2.0:
17971
+ dependencies:
17972
+ ansi-regex: 5.0.1
17973
+ optionalDependencies:
17974
+ wcwidth: 1.0.1
17975
+
17331
17976
  ecc-jsbn@0.1.2:
17332
17977
  dependencies:
17333
17978
  jsbn: 0.1.1
@@ -17358,13 +18003,16 @@ snapshots:
17358
18003
  graceful-fs: 4.2.11
17359
18004
  tapable: 2.3.0
17360
18005
 
18006
+ enhanced-resolve@5.20.0:
18007
+ dependencies:
18008
+ graceful-fs: 4.2.11
18009
+ tapable: 2.3.0
18010
+
17361
18011
  entities@2.2.0: {}
17362
18012
 
17363
18013
  entities@4.5.0: {}
17364
18014
 
17365
- entities@6.0.1: {}
17366
-
17367
- entities@7.0.0: {}
18015
+ entities@7.0.1: {}
17368
18016
 
17369
18017
  env-paths@2.2.1: {}
17370
18018
 
@@ -17437,6 +18085,8 @@ snapshots:
17437
18085
  unbox-primitive: 1.1.0
17438
18086
  which-typed-array: 1.1.19
17439
18087
 
18088
+ es-array-method-boxes-properly@1.0.0: {}
18089
+
17440
18090
  es-define-property@1.0.1: {}
17441
18091
 
17442
18092
  es-errors@1.3.0: {}
@@ -17668,6 +18318,12 @@ snapshots:
17668
18318
  string.prototype.matchall: 4.0.12
17669
18319
  string.prototype.repeat: 1.0.0
17670
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
+
17671
18327
  eslint-scope@5.1.1:
17672
18328
  dependencies:
17673
18329
  esrecurse: 4.3.0
@@ -17811,6 +18467,16 @@ snapshots:
17811
18467
 
17812
18468
  events@3.3.0: {}
17813
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
+
17814
18480
  execa@5.1.1:
17815
18481
  dependencies:
17816
18482
  cross-spawn: 7.0.6
@@ -17926,6 +18592,14 @@ snapshots:
17926
18592
 
17927
18593
  fast-deep-equal@3.1.3: {}
17928
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
+
17929
18603
  fast-glob@3.3.3:
17930
18604
  dependencies:
17931
18605
  '@nodelib/fs.stat': 2.0.5
@@ -18084,6 +18758,13 @@ snapshots:
18084
18758
 
18085
18759
  flatted@3.3.3: {}
18086
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
+
18087
18768
  follow-redirects@1.15.11: {}
18088
18769
 
18089
18770
  for-each@0.3.5:
@@ -18149,6 +18830,12 @@ snapshots:
18149
18830
  jsonfile: 6.2.0
18150
18831
  universalify: 2.0.1
18151
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
+
18152
18839
  fs-extra@11.3.3:
18153
18840
  dependencies:
18154
18841
  graceful-fs: 4.2.11
@@ -18168,6 +18855,13 @@ snapshots:
18168
18855
  fsevents@2.3.3:
18169
18856
  optional: true
18170
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
+
18171
18865
  function-bind@1.1.2: {}
18172
18866
 
18173
18867
  function.prototype.name@1.1.8:
@@ -18181,6 +18875,8 @@ snapshots:
18181
18875
 
18182
18876
  functions-have-names@1.2.3: {}
18183
18877
 
18878
+ fuse.js@7.1.0: {}
18879
+
18184
18880
  generator-function@2.0.1: {}
18185
18881
 
18186
18882
  generic-names@4.0.0:
@@ -18539,12 +19235,12 @@ snapshots:
18539
19235
 
18540
19236
  html-tags@3.3.1: {}
18541
19237
 
18542
- htmlparser2@10.0.0:
19238
+ htmlparser2@10.1.0:
18543
19239
  dependencies:
18544
19240
  domelementtype: 2.3.0
18545
19241
  domhandler: 5.0.3
18546
19242
  domutils: 3.2.2
18547
- entities: 6.0.1
19243
+ entities: 7.0.1
18548
19244
 
18549
19245
  http-cache-semantics@3.8.1: {}
18550
19246
 
@@ -18574,7 +19270,7 @@ snapshots:
18574
19270
 
18575
19271
  human-signals@2.1.0: {}
18576
19272
 
18577
- husky@9.1.7: {}
19273
+ iceberg-js@0.8.1: {}
18578
19274
 
18579
19275
  iconv-lite@0.4.24:
18580
19276
  dependencies:
@@ -18725,6 +19421,8 @@ snapshots:
18725
19421
 
18726
19422
  is-arrayish@0.2.1: {}
18727
19423
 
19424
+ is-arrayish@0.3.4: {}
19425
+
18728
19426
  is-async-function@2.1.1:
18729
19427
  dependencies:
18730
19428
  async-function: 1.0.0
@@ -18767,6 +19465,8 @@ snapshots:
18767
19465
  call-bound: 1.0.4
18768
19466
  has-tostringtag: 1.0.2
18769
19467
 
19468
+ is-docker@2.2.1: {}
19469
+
18770
19470
  is-extglob@2.1.1: {}
18771
19471
 
18772
19472
  is-finalizationregistry@1.1.1:
@@ -18872,8 +19572,6 @@ snapshots:
18872
19572
 
18873
19573
  is-unicode-supported@1.3.0: {}
18874
19574
 
18875
- is-unicode-supported@2.1.0: {}
18876
-
18877
19575
  is-weakmap@2.0.2: {}
18878
19576
 
18879
19577
  is-weakref@1.1.1:
@@ -18887,6 +19585,10 @@ snapshots:
18887
19585
 
18888
19586
  is-what@3.14.1: {}
18889
19587
 
19588
+ is-wsl@2.2.0:
19589
+ dependencies:
19590
+ is-docker: 2.2.1
19591
+
18890
19592
  isarray@0.0.1: {}
18891
19593
 
18892
19594
  isarray@1.0.0: {}
@@ -19085,16 +19787,16 @@ snapshots:
19085
19787
 
19086
19788
  known-css-properties@0.37.0: {}
19087
19789
 
19088
- 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)):
19089
19791
  dependencies:
19090
19792
  '@types/uuid': 10.0.0
19091
19793
  chalk: 4.1.2
19092
19794
  console-table-printer: 2.15.0
19093
19795
  p-queue: 6.6.2
19094
- semver: 7.7.3
19796
+ semver: 7.7.4
19095
19797
  uuid: 10.0.0
19096
19798
  optionalDependencies:
19097
- openai: 6.16.0(zod@4.3.5)
19799
+ openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
19098
19800
 
19099
19801
  latest-version@5.1.0:
19100
19802
  dependencies:
@@ -19134,36 +19836,69 @@ snapshots:
19134
19836
  lightningcss-android-arm64@1.30.2:
19135
19837
  optional: true
19136
19838
 
19839
+ lightningcss-android-arm64@1.31.1:
19840
+ optional: true
19841
+
19137
19842
  lightningcss-darwin-arm64@1.30.2:
19138
19843
  optional: true
19139
19844
 
19845
+ lightningcss-darwin-arm64@1.31.1:
19846
+ optional: true
19847
+
19140
19848
  lightningcss-darwin-x64@1.30.2:
19141
19849
  optional: true
19142
19850
 
19851
+ lightningcss-darwin-x64@1.31.1:
19852
+ optional: true
19853
+
19143
19854
  lightningcss-freebsd-x64@1.30.2:
19144
19855
  optional: true
19145
19856
 
19857
+ lightningcss-freebsd-x64@1.31.1:
19858
+ optional: true
19859
+
19146
19860
  lightningcss-linux-arm-gnueabihf@1.30.2:
19147
19861
  optional: true
19148
19862
 
19863
+ lightningcss-linux-arm-gnueabihf@1.31.1:
19864
+ optional: true
19865
+
19149
19866
  lightningcss-linux-arm64-gnu@1.30.2:
19150
19867
  optional: true
19151
19868
 
19869
+ lightningcss-linux-arm64-gnu@1.31.1:
19870
+ optional: true
19871
+
19152
19872
  lightningcss-linux-arm64-musl@1.30.2:
19153
19873
  optional: true
19154
19874
 
19875
+ lightningcss-linux-arm64-musl@1.31.1:
19876
+ optional: true
19877
+
19155
19878
  lightningcss-linux-x64-gnu@1.30.2:
19156
19879
  optional: true
19157
19880
 
19881
+ lightningcss-linux-x64-gnu@1.31.1:
19882
+ optional: true
19883
+
19158
19884
  lightningcss-linux-x64-musl@1.30.2:
19159
19885
  optional: true
19160
19886
 
19887
+ lightningcss-linux-x64-musl@1.31.1:
19888
+ optional: true
19889
+
19161
19890
  lightningcss-win32-arm64-msvc@1.30.2:
19162
19891
  optional: true
19163
19892
 
19893
+ lightningcss-win32-arm64-msvc@1.31.1:
19894
+ optional: true
19895
+
19164
19896
  lightningcss-win32-x64-msvc@1.30.2:
19165
19897
  optional: true
19166
19898
 
19899
+ lightningcss-win32-x64-msvc@1.31.1:
19900
+ optional: true
19901
+
19167
19902
  lightningcss@1.30.2:
19168
19903
  dependencies:
19169
19904
  detect-libc: 2.1.2
@@ -19180,6 +19915,22 @@ snapshots:
19180
19915
  lightningcss-win32-arm64-msvc: 1.30.2
19181
19916
  lightningcss-win32-x64-msvc: 1.30.2
19182
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
+
19183
19934
  lilconfig@2.1.0: {}
19184
19935
 
19185
19936
  lilconfig@3.1.3: {}
@@ -19196,6 +19947,8 @@ snapshots:
19196
19947
  string-argv: 0.3.2
19197
19948
  yaml: 2.8.2
19198
19949
 
19950
+ listenercount@1.0.1: {}
19951
+
19199
19952
  listr2@9.0.5:
19200
19953
  dependencies:
19201
19954
  cli-truncate: 5.1.1
@@ -19336,11 +20089,6 @@ snapshots:
19336
20089
  chalk: 5.6.2
19337
20090
  is-unicode-supported: 1.3.0
19338
20091
 
19339
- log-symbols@7.0.1:
19340
- dependencies:
19341
- is-unicode-supported: 2.1.0
19342
- yoctocolors: 2.1.2
19343
-
19344
20092
  log-update@6.1.0:
19345
20093
  dependencies:
19346
20094
  ansi-escapes: 7.2.0
@@ -19377,9 +20125,13 @@ snapshots:
19377
20125
  dependencies:
19378
20126
  yallist: 3.1.1
19379
20127
 
19380
- 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):
19381
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
19382
20133
  react: 18.3.1
20134
+ sharp: 0.33.5
19383
20135
 
19384
20136
  magic-string@0.30.21:
19385
20137
  dependencies:
@@ -19484,6 +20236,10 @@ snapshots:
19484
20236
  dependencies:
19485
20237
  brace-expansion: 2.0.2
19486
20238
 
20239
+ minimatch@7.4.6:
20240
+ dependencies:
20241
+ brace-expansion: 2.0.2
20242
+
19487
20243
  minimatch@9.0.3:
19488
20244
  dependencies:
19489
20245
  brace-expansion: 2.0.2
@@ -19775,6 +20531,8 @@ snapshots:
19775
20531
 
19776
20532
  nextgen-events@1.5.3: {}
19777
20533
 
20534
+ nice-try@1.0.5: {}
20535
+
19778
20536
  no-case@2.3.2:
19779
20537
  dependencies:
19780
20538
  lower-case: 1.1.4
@@ -19786,7 +20544,7 @@ snapshots:
19786
20544
 
19787
20545
  node-abi@3.87.0:
19788
20546
  dependencies:
19789
- semver: 7.7.3
20547
+ semver: 7.7.4
19790
20548
 
19791
20549
  node-abort-controller@3.1.1: {}
19792
20550
 
@@ -19805,6 +20563,8 @@ snapshots:
19805
20563
  dependencies:
19806
20564
  whatwg-url: 5.0.0
19807
20565
 
20566
+ node-machine-id@1.1.12: {}
20567
+
19808
20568
  node-releases@2.0.27: {}
19809
20569
 
19810
20570
  normalize-package-data@2.5.0:
@@ -19833,6 +20593,10 @@ snapshots:
19833
20593
 
19834
20594
  npm-normalize-package-bin@1.0.1: {}
19835
20595
 
20596
+ npm-run-path@2.0.2:
20597
+ dependencies:
20598
+ path-key: 2.0.1
20599
+
19836
20600
  npm-run-path@4.0.1:
19837
20601
  dependencies:
19838
20602
  path-key: 3.1.1
@@ -19882,6 +20646,16 @@ snapshots:
19882
20646
  es-abstract: 1.24.1
19883
20647
  es-object-atoms: 1.1.1
19884
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
+
19885
20659
  object.groupby@1.0.3:
19886
20660
  dependencies:
19887
20661
  call-bind: 1.0.8
@@ -19919,8 +20693,9 @@ snapshots:
19919
20693
  dependencies:
19920
20694
  which-pm-runs: 1.1.0
19921
20695
 
19922
- openai@6.16.0(zod@4.3.5):
20696
+ openai@6.16.0(ws@8.19.0)(zod@4.3.5):
19923
20697
  optionalDependencies:
20698
+ ws: 8.19.0
19924
20699
  zod: 4.3.5
19925
20700
 
19926
20701
  optionator@0.9.4:
@@ -19956,17 +20731,6 @@ snapshots:
19956
20731
  strip-ansi: 7.1.2
19957
20732
  wcwidth: 1.0.1
19958
20733
 
19959
- ora@9.1.0:
19960
- dependencies:
19961
- chalk: 5.6.2
19962
- cli-cursor: 5.0.0
19963
- cli-spinners: 3.4.0
19964
- is-interactive: 2.0.0
19965
- is-unicode-supported: 2.1.0
19966
- log-symbols: 7.0.1
19967
- stdin-discarder: 0.2.2
19968
- string-width: 8.1.0
19969
-
19970
20734
  os-homedir@1.0.2: {}
19971
20735
 
19972
20736
  os-tmpdir@1.0.2: {}
@@ -20096,6 +20860,8 @@ snapshots:
20096
20860
 
20097
20861
  path-is-absolute@1.0.1: {}
20098
20862
 
20863
+ path-key@2.0.1: {}
20864
+
20099
20865
  path-key@3.1.1: {}
20100
20866
 
20101
20867
  path-parse@1.0.7: {}
@@ -20550,7 +21316,7 @@ snapshots:
20550
21316
  dependencies:
20551
21317
  postcss: 8.5.6
20552
21318
 
20553
- postcss-plugin-shared@1.0.0(postcss@8.5.6):
21319
+ postcss-plugin-shared@1.1.1(postcss@8.5.6):
20554
21320
  dependencies:
20555
21321
  defu: 6.1.4
20556
21322
  postcss: 8.5.6
@@ -20635,10 +21401,10 @@ snapshots:
20635
21401
  postcss: 8.5.6
20636
21402
  postcss-selector-parser: 7.1.1
20637
21403
 
20638
- postcss-pxtrans@1.0.0(postcss@8.5.6):
21404
+ postcss-pxtrans@1.0.1(postcss@8.5.6):
20639
21405
  dependencies:
20640
21406
  postcss: 8.5.6
20641
- postcss-plugin-shared: 1.0.0(postcss@8.5.6)
21407
+ postcss-plugin-shared: 1.1.1(postcss@8.5.6)
20642
21408
 
20643
21409
  postcss-pxtransform@4.1.9(postcss@8.5.6):
20644
21410
  dependencies:
@@ -20655,10 +21421,10 @@ snapshots:
20655
21421
  postcss: 8.5.6
20656
21422
  postcss-value-parser: 4.2.0
20657
21423
 
20658
- 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):
20659
21425
  dependencies:
20660
21426
  postcss: 8.5.6
20661
- postcss-plugin-shared: 1.0.0(postcss@8.5.6)
21427
+ postcss-plugin-shared: 1.1.1(postcss@8.5.6)
20662
21428
 
20663
21429
  postcss-replace-overflow-wrap@4.0.0(postcss@8.5.6):
20664
21430
  dependencies:
@@ -20696,6 +21462,11 @@ snapshots:
20696
21462
  postcss: 8.5.6
20697
21463
  postcss-selector-parser: 6.1.2
20698
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
+
20699
21470
  postcss-value-parser@4.2.0: {}
20700
21471
 
20701
21472
  postcss@8.5.6:
@@ -20704,6 +21475,12 @@ snapshots:
20704
21475
  picocolors: 1.1.1
20705
21476
  source-map-js: 1.2.1
20706
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
+
20707
21484
  postgres-array@2.0.0: {}
20708
21485
 
20709
21486
  postgres-bytea@1.0.1: {}
@@ -20895,7 +21672,7 @@ snapshots:
20895
21672
 
20896
21673
  read-package-json@2.1.2:
20897
21674
  dependencies:
20898
- glob: 7.1.2
21675
+ glob: 7.2.3
20899
21676
  json-parse-even-better-errors: 2.3.1
20900
21677
  normalize-package-data: 2.5.0
20901
21678
  npm-normalize-package-bin: 1.0.1
@@ -20908,6 +21685,12 @@ snapshots:
20908
21685
  read-package-json: 2.1.2
20909
21686
  readdir-scoped-modules: 1.1.0
20910
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
+
20911
21694
  readable-stream@1.1.14:
20912
21695
  dependencies:
20913
21696
  core-util-is: 1.0.3
@@ -21138,6 +21921,10 @@ snapshots:
21138
21921
 
21139
21922
  rfdc@1.4.1: {}
21140
21923
 
21924
+ rimraf@2.7.1:
21925
+ dependencies:
21926
+ glob: 7.2.3
21927
+
21141
21928
  rimraf@3.0.2:
21142
21929
  dependencies:
21143
21930
  glob: 7.2.3
@@ -21253,12 +22040,16 @@ snapshots:
21253
22040
  dependencies:
21254
22041
  commander: 2.20.3
21255
22042
 
22043
+ semver-compare@1.0.0: {}
22044
+
21256
22045
  semver@5.7.2: {}
21257
22046
 
21258
22047
  semver@6.3.1: {}
21259
22048
 
21260
22049
  semver@7.7.3: {}
21261
22050
 
22051
+ semver@7.7.4: {}
22052
+
21262
22053
  send@0.19.0:
21263
22054
  dependencies:
21264
22055
  debug: 2.6.9
@@ -21363,10 +22154,42 @@ snapshots:
21363
22154
  dependencies:
21364
22155
  kind-of: 6.0.3
21365
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
+
21366
22187
  shebang-command@2.0.0:
21367
22188
  dependencies:
21368
22189
  shebang-regex: 3.0.0
21369
22190
 
22191
+ shebang-regex@1.0.0: {}
22192
+
21370
22193
  shebang-regex@3.0.0: {}
21371
22194
 
21372
22195
  shell-quote@1.8.3: {}
@@ -21423,6 +22246,10 @@ snapshots:
21423
22246
  bplist-parser: 0.3.1
21424
22247
  plist: 3.1.0
21425
22248
 
22249
+ simple-swizzle@0.2.4:
22250
+ dependencies:
22251
+ is-arrayish: 0.3.4
22252
+
21426
22253
  simple-wcswidth@1.1.2: {}
21427
22254
 
21428
22255
  slash@1.0.0: {}
@@ -21524,8 +22351,6 @@ snapshots:
21524
22351
  dependencies:
21525
22352
  bl: 5.1.0
21526
22353
 
21527
- stdin-discarder@0.2.2: {}
21528
-
21529
22354
  stop-iteration-iterator@1.1.0:
21530
22355
  dependencies:
21531
22356
  es-errors: 1.3.0
@@ -21645,6 +22470,8 @@ snapshots:
21645
22470
  dependencies:
21646
22471
  is-natural-number: 4.0.1
21647
22472
 
22473
+ strip-eof@1.0.0: {}
22474
+
21648
22475
  strip-final-newline@2.0.0: {}
21649
22476
 
21650
22477
  strip-json-comments@2.0.1: {}
@@ -21777,28 +22604,34 @@ snapshots:
21777
22604
  string-width: 4.2.3
21778
22605
  strip-ansi: 6.0.1
21779
22606
 
21780
- tailwindcss-config@1.1.3:
22607
+ tailwind-merge@3.5.0: {}
22608
+
22609
+ tailwindcss-animate@1.0.7(tailwindcss@4.1.18):
21781
22610
  dependencies:
21782
- '@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
21783
22616
  jiti: 2.6.1
21784
22617
  lilconfig: 3.1.3
21785
22618
 
21786
- tailwindcss-patch@8.6.1(tailwindcss@4.1.18):
22619
+ tailwindcss-patch@8.7.3(tailwindcss@4.1.18):
21787
22620
  dependencies:
21788
- '@babel/generator': 7.28.5
21789
- '@babel/parser': 7.28.5
21790
- '@babel/traverse': 7.28.5
21791
- '@babel/types': 7.28.6
21792
- '@tailwindcss-mangle/config': 6.1.0
21793
- '@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
21794
22627
  cac: 6.7.14
21795
22628
  consola: 3.4.2
21796
22629
  fs-extra: 11.3.3
21797
22630
  local-pkg: 1.1.2
21798
22631
  pathe: 2.0.3
21799
22632
  postcss: 8.5.6
21800
- semver: 7.7.3
21801
- tailwindcss-config: 1.1.3
22633
+ semver: 7.7.4
22634
+ tailwindcss-config: 1.1.4
21802
22635
  optionalDependencies:
21803
22636
  tailwindcss: 4.1.18
21804
22637
  transitivePeerDependencies:
@@ -21807,6 +22640,8 @@ snapshots:
21807
22640
 
21808
22641
  tailwindcss@4.1.18: {}
21809
22642
 
22643
+ tailwindcss@4.2.1: {}
22644
+
21810
22645
  tapable@2.3.0: {}
21811
22646
 
21812
22647
  tar-fs@2.1.4:
@@ -21845,17 +22680,16 @@ snapshots:
21845
22680
  string-kit: 0.17.10
21846
22681
  tree-kit: 0.7.5
21847
22682
 
21848
- 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)):
21849
22684
  dependencies:
21850
22685
  '@jridgewell/trace-mapping': 0.3.31
21851
22686
  jest-worker: 27.5.1
21852
22687
  schema-utils: 4.3.3
21853
22688
  serialize-javascript: 6.0.2
21854
22689
  terser: 5.44.1
21855
- webpack: 5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)
22690
+ webpack: 5.97.1(@swc/core@1.3.96)
21856
22691
  optionalDependencies:
21857
22692
  '@swc/core': 1.3.96
21858
- esbuild: 0.25.12
21859
22693
  optional: true
21860
22694
 
21861
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)):
@@ -21877,6 +22711,13 @@ snapshots:
21877
22711
  source-map: 0.6.1
21878
22712
  source-map-support: 0.5.21
21879
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
+
21880
22721
  terser@5.44.1:
21881
22722
  dependencies:
21882
22723
  '@jridgewell/source-map': 0.3.11
@@ -21964,7 +22805,7 @@ snapshots:
21964
22805
 
21965
22806
  tr46@0.0.3: {}
21966
22807
 
21967
- transliteration@2.6.1: {}
22808
+ traverse@0.3.9: {}
21968
22809
 
21969
22810
  tree-kill@1.2.2: {}
21970
22811
 
@@ -22009,6 +22850,30 @@ snapshots:
22009
22850
 
22010
22851
  tslib@2.8.1: {}
22011
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
+
22012
22877
  tunnel-agent@0.6.0:
22013
22878
  dependencies:
22014
22879
  safe-buffer: 5.2.1
@@ -22127,6 +22992,19 @@ snapshots:
22127
22992
 
22128
22993
  unpipe@1.0.0: {}
22129
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
+
22130
23008
  update-browserslist-db@1.2.3(browserslist@4.28.1):
22131
23009
  dependencies:
22132
23010
  browserslist: 4.28.1
@@ -22163,6 +23041,10 @@ snapshots:
22163
23041
 
22164
23042
  util-deprecate@1.0.2: {}
22165
23043
 
23044
+ util-promisify@2.1.0:
23045
+ dependencies:
23046
+ object.getownpropertydescriptors: 2.1.9
23047
+
22166
23048
  utils-merge@1.0.1: {}
22167
23049
 
22168
23050
  uuid@10.0.0: {}
@@ -22192,15 +23074,15 @@ snapshots:
22192
23074
  clone-stats: 0.0.1
22193
23075
  replace-ext: 0.0.1
22194
23076
 
22195
- 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)):
22196
23078
  dependencies:
22197
23079
  chokidar: 3.6.0
22198
23080
  fast-glob: 3.3.3
22199
23081
  fs-extra: 11.3.3
22200
23082
  picocolors: 1.1.1
22201
- 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)
22202
23084
 
22203
- 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):
22204
23086
  dependencies:
22205
23087
  esbuild: 0.18.20
22206
23088
  postcss: 8.5.6
@@ -22209,7 +23091,7 @@ snapshots:
22209
23091
  '@types/node': 22.19.6
22210
23092
  fsevents: 2.3.3
22211
23093
  less: 4.5.1
22212
- lightningcss: 1.30.2
23094
+ lightningcss: 1.31.1
22213
23095
  sass: 1.97.2
22214
23096
  terser: 5.44.1
22215
23097
 
@@ -22222,31 +23104,31 @@ snapshots:
22222
23104
  dependencies:
22223
23105
  defaults: 1.0.4
22224
23106
 
22225
- weapp-tailwindcss@4.9.2(tailwindcss@4.1.18):
23107
+ weapp-tailwindcss@4.10.3(tailwindcss@4.1.18):
22226
23108
  dependencies:
22227
23109
  '@ast-core/escape': 1.0.1
22228
- '@babel/parser': 7.28.5
22229
- '@babel/traverse': 7.28.5
22230
- '@babel/types': 7.28.6
22231
- '@tailwindcss-mangle/config': 6.1.0
22232
- '@vue/compiler-dom': 3.5.26
22233
- '@vue/compiler-sfc': 3.5.26
22234
- '@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
22235
23117
  '@weapp-core/regex': 1.0.1
22236
23118
  '@weapp-tailwindcss/logger': 1.1.0
22237
- '@weapp-tailwindcss/postcss': 2.1.0
22238
- '@weapp-tailwindcss/shared': 1.1.1
23119
+ '@weapp-tailwindcss/postcss': 2.1.5
23120
+ '@weapp-tailwindcss/shared': 1.1.2
22239
23121
  cac: 6.7.14
22240
23122
  debug: 4.4.3
22241
23123
  fast-glob: 3.3.3
22242
- htmlparser2: 10.0.0
23124
+ htmlparser2: 10.1.0
22243
23125
  loader-utils: 2.0.4
22244
23126
  local-pkg: 1.1.2
22245
23127
  lru-cache: 10.4.3
22246
23128
  magic-string: 0.30.21
22247
- semver: 7.7.3
22248
- tailwindcss-patch: 8.6.1(tailwindcss@4.1.18)
22249
- 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
22250
23132
  yaml: 2.8.2
22251
23133
  transitivePeerDependencies:
22252
23134
  - magicast
@@ -22265,7 +23147,9 @@ snapshots:
22265
23147
 
22266
23148
  webpack-sources@3.3.3: {}
22267
23149
 
22268
- 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):
22269
23153
  dependencies:
22270
23154
  '@types/eslint-scope': 3.7.7
22271
23155
  '@types/estree': 1.0.8
@@ -22287,7 +23171,7 @@ snapshots:
22287
23171
  neo-async: 2.6.2
22288
23172
  schema-utils: 3.3.0
22289
23173
  tapable: 2.3.0
22290
- 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))
22291
23175
  watchpack: 2.5.0
22292
23176
  webpack-sources: 3.3.3
22293
23177
  transitivePeerDependencies:
@@ -22421,6 +23305,8 @@ snapshots:
22421
23305
  imurmurhash: 0.1.4
22422
23306
  signal-exit: 4.1.0
22423
23307
 
23308
+ ws@8.19.0: {}
23309
+
22424
23310
  wxml-minifier@0.0.1:
22425
23311
  dependencies:
22426
23312
  '@leejim/wxml-parser': 0.1.6
@@ -22505,8 +23391,6 @@ snapshots:
22505
23391
 
22506
23392
  yocto-queue@0.1.0: {}
22507
23393
 
22508
- yoctocolors@2.1.2: {}
22509
-
22510
23394
  yup@1.7.1:
22511
23395
  dependencies:
22512
23396
  property-expr: 2.0.6