@coze-arch/cli 0.0.1-alpha.bd5b49 → 0.0.1-alpha.c199b3

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 (155) hide show
  1. package/README.md +1 -0
  2. package/lib/__templates__/expo/README.md +16 -13
  3. package/lib/__templates__/expo/_npmrc +1 -0
  4. package/lib/__templates__/expo/client/app/+not-found.tsx +19 -4
  5. package/lib/__templates__/expo/client/app/_layout.tsx +17 -16
  6. package/lib/__templates__/expo/client/components/Screen.tsx +2 -2
  7. package/lib/__templates__/expo/client/constants/theme.ts +177 -0
  8. package/lib/__templates__/expo/client/eslint.config.mjs +7 -0
  9. package/lib/__templates__/expo/client/hooks/useColorScheme.tsx +48 -0
  10. package/lib/__templates__/expo/client/hooks/useTheme.ts +33 -0
  11. package/lib/__templates__/expo/client/metro.config.js +4 -8
  12. package/lib/__templates__/expo/client/package.json +1 -3
  13. package/lib/__templates__/expo/client/screens/demo/index.tsx +13 -7
  14. package/lib/__templates__/expo/client/screens/demo/styles.ts +28 -0
  15. package/lib/__templates__/expo/client/scripts/install-missing-deps.js +10 -10
  16. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
  17. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
  18. package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
  19. package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/index.js +9 -0
  20. package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/rule.js +120 -0
  21. package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/tech.md +58 -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/AGENTS.md +54 -0
  27. package/lib/__templates__/nextjs/README.md +5 -0
  28. package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
  29. package/lib/__templates__/nextjs/next.config.ts +1 -2
  30. package/lib/__templates__/nextjs/package.json +2 -5
  31. package/lib/__templates__/nextjs/pnpm-lock.yaml +1028 -5
  32. package/lib/__templates__/nextjs/scripts/build.sh +4 -1
  33. package/lib/__templates__/nextjs/scripts/dev.sh +8 -2
  34. package/lib/__templates__/nextjs/scripts/start.sh +7 -1
  35. package/lib/__templates__/nextjs/src/app/layout.tsx +1 -1
  36. package/lib/__templates__/nextjs/src/app/page.tsx +1 -2
  37. package/lib/__templates__/nextjs/src/server.ts +35 -0
  38. package/lib/__templates__/nextjs/tsconfig.json +1 -1
  39. package/lib/__templates__/nuxt-vue/.coze +12 -0
  40. package/lib/__templates__/nuxt-vue/AGENTS.md +42 -0
  41. package/lib/__templates__/nuxt-vue/README.md +73 -0
  42. package/lib/__templates__/nuxt-vue/_gitignore +24 -0
  43. package/lib/__templates__/nuxt-vue/_npmrc +23 -0
  44. package/lib/__templates__/nuxt-vue/app/app.vue +6 -0
  45. package/lib/__templates__/nuxt-vue/app/pages/index.vue +23 -0
  46. package/lib/__templates__/nuxt-vue/assets/css/main.css +24 -0
  47. package/lib/__templates__/nuxt-vue/nuxt.config.ts +116 -0
  48. package/lib/__templates__/nuxt-vue/package.json +35 -0
  49. package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +8759 -0
  50. package/lib/__templates__/nuxt-vue/postcss.config.mjs +8 -0
  51. package/lib/__templates__/nuxt-vue/public/favicon.ico +0 -0
  52. package/lib/__templates__/nuxt-vue/public/robots.txt +2 -0
  53. package/lib/__templates__/nuxt-vue/scripts/build.sh +14 -0
  54. package/lib/__templates__/nuxt-vue/scripts/dev.sh +39 -0
  55. package/lib/__templates__/nuxt-vue/scripts/prepare.sh +14 -0
  56. package/lib/__templates__/nuxt-vue/scripts/start.sh +21 -0
  57. package/lib/__templates__/nuxt-vue/server/api/hello.ts +10 -0
  58. package/lib/__templates__/nuxt-vue/server/middleware/logger.ts +10 -0
  59. package/lib/__templates__/nuxt-vue/server/routes/health.ts +10 -0
  60. package/lib/__templates__/nuxt-vue/tailwind.config.js +13 -0
  61. package/lib/__templates__/nuxt-vue/template.config.js +87 -0
  62. package/lib/__templates__/nuxt-vue/tsconfig.json +18 -0
  63. package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +107 -36
  64. package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +24 -1
  65. package/lib/__templates__/taro/README.md +61 -45
  66. package/lib/__templates__/taro/config/index.ts +106 -41
  67. package/lib/__templates__/taro/config/prod.ts +4 -5
  68. package/lib/__templates__/taro/eslint.config.mjs +82 -4
  69. package/lib/__templates__/taro/package.json +22 -7
  70. package/lib/__templates__/taro/patches/@tarojs__plugin-mini-ci@4.1.9.patch +30 -0
  71. package/lib/__templates__/taro/pnpm-lock.yaml +924 -220
  72. package/lib/__templates__/taro/server/package.json +0 -1
  73. package/lib/__templates__/taro/src/app.css +140 -36
  74. package/lib/__templates__/taro/src/app.tsx +9 -0
  75. package/lib/__templates__/taro/src/components/ui/accordion.tsx +159 -0
  76. package/lib/__templates__/taro/src/components/ui/alert-dialog.tsx +260 -0
  77. package/lib/__templates__/taro/src/components/ui/alert.tsx +60 -0
  78. package/lib/__templates__/taro/src/components/ui/aspect-ratio.tsx +36 -0
  79. package/lib/__templates__/taro/src/components/ui/avatar.tsx +84 -0
  80. package/lib/__templates__/taro/src/components/ui/badge.tsx +37 -0
  81. package/lib/__templates__/taro/src/components/ui/breadcrumb.tsx +117 -0
  82. package/lib/__templates__/taro/src/components/ui/button-group.tsx +83 -0
  83. package/lib/__templates__/taro/src/components/ui/button.tsx +67 -0
  84. package/lib/__templates__/taro/src/components/ui/calendar.tsx +394 -0
  85. package/lib/__templates__/taro/src/components/ui/card.tsx +108 -0
  86. package/lib/__templates__/taro/src/components/ui/carousel.tsx +228 -0
  87. package/lib/__templates__/taro/src/components/ui/checkbox.tsx +58 -0
  88. package/lib/__templates__/taro/src/components/ui/code-block.tsx +169 -0
  89. package/lib/__templates__/taro/src/components/ui/collapsible.tsx +71 -0
  90. package/lib/__templates__/taro/src/components/ui/command.tsx +385 -0
  91. package/lib/__templates__/taro/src/components/ui/context-menu.tsx +614 -0
  92. package/lib/__templates__/taro/src/components/ui/dialog.tsx +256 -0
  93. package/lib/__templates__/taro/src/components/ui/drawer.tsx +192 -0
  94. package/lib/__templates__/taro/src/components/ui/dropdown-menu.tsx +561 -0
  95. package/lib/__templates__/taro/src/components/ui/field.tsx +228 -0
  96. package/lib/__templates__/taro/src/components/ui/hover-card.tsx +282 -0
  97. package/lib/__templates__/taro/src/components/ui/input-group.tsx +197 -0
  98. package/lib/__templates__/taro/src/components/ui/input-otp.tsx +136 -0
  99. package/lib/__templates__/taro/src/components/ui/input.tsx +56 -0
  100. package/lib/__templates__/taro/src/components/ui/label.tsx +24 -0
  101. package/lib/__templates__/taro/src/components/ui/menubar.tsx +595 -0
  102. package/lib/__templates__/taro/src/components/ui/navigation-menu.tsx +264 -0
  103. package/lib/__templates__/taro/src/components/ui/pagination.tsx +118 -0
  104. package/lib/__templates__/taro/src/components/ui/popover.tsx +291 -0
  105. package/lib/__templates__/taro/src/components/ui/portal.tsx +19 -0
  106. package/lib/__templates__/taro/src/components/ui/progress.tsx +28 -0
  107. package/lib/__templates__/taro/src/components/ui/radio-group.tsx +64 -0
  108. package/lib/__templates__/taro/src/components/ui/resizable.tsx +346 -0
  109. package/lib/__templates__/taro/src/components/ui/scroll-area.tsx +34 -0
  110. package/lib/__templates__/taro/src/components/ui/select.tsx +438 -0
  111. package/lib/__templates__/taro/src/components/ui/separator.tsx +30 -0
  112. package/lib/__templates__/taro/src/components/ui/sheet.tsx +262 -0
  113. package/lib/__templates__/taro/src/components/ui/skeleton.tsx +17 -0
  114. package/lib/__templates__/taro/src/components/ui/slider.tsx +203 -0
  115. package/lib/__templates__/taro/src/components/ui/sonner.tsx +1 -0
  116. package/lib/__templates__/taro/src/components/ui/switch.tsx +55 -0
  117. package/lib/__templates__/taro/src/components/ui/table.tsx +142 -0
  118. package/lib/__templates__/taro/src/components/ui/tabs.tsx +114 -0
  119. package/lib/__templates__/taro/src/components/ui/textarea.tsx +54 -0
  120. package/lib/__templates__/taro/src/components/ui/toast.tsx +517 -0
  121. package/lib/__templates__/taro/src/components/ui/toggle-group.tsx +120 -0
  122. package/lib/__templates__/taro/src/components/ui/toggle.tsx +77 -0
  123. package/lib/__templates__/taro/src/components/ui/tooltip.tsx +455 -0
  124. package/lib/__templates__/taro/src/lib/hooks/use-keyboard-offset.ts +37 -0
  125. package/lib/__templates__/taro/src/lib/measure.ts +115 -0
  126. package/lib/__templates__/taro/src/lib/platform.ts +12 -0
  127. package/lib/__templates__/taro/src/lib/utils.ts +6 -0
  128. package/lib/__templates__/taro/src/presets/dev-debug.ts +23 -0
  129. package/lib/__templates__/taro/src/presets/h5-container.tsx +15 -0
  130. package/lib/__templates__/taro/src/presets/h5-navbar.tsx +238 -0
  131. package/lib/__templates__/taro/src/presets/h5-styles.ts +220 -0
  132. package/lib/__templates__/taro/src/presets/index.tsx +18 -0
  133. package/lib/__templates__/templates.json +43 -0
  134. package/lib/__templates__/vite/AGENTS.md +41 -0
  135. package/lib/__templates__/vite/README.md +190 -11
  136. package/lib/__templates__/vite/_gitignore +1 -0
  137. package/lib/__templates__/vite/eslint.config.mjs +6 -1
  138. package/lib/__templates__/vite/package.json +10 -3
  139. package/lib/__templates__/vite/pnpm-lock.yaml +755 -15
  140. package/lib/__templates__/vite/scripts/build.sh +4 -1
  141. package/lib/__templates__/vite/scripts/dev.sh +9 -2
  142. package/lib/__templates__/vite/scripts/start.sh +9 -3
  143. package/lib/__templates__/vite/server/routes/index.ts +31 -0
  144. package/lib/__templates__/vite/server/server.ts +65 -0
  145. package/lib/__templates__/vite/server/vite.ts +67 -0
  146. package/lib/__templates__/vite/tsconfig.json +4 -3
  147. package/lib/__templates__/vite/vite.config.ts +5 -0
  148. package/lib/cli.js +3037 -535
  149. package/package.json +10 -3
  150. package/lib/__templates__/expo/client/global.css +0 -78
  151. package/lib/__templates__/expo/client/styles.css +0 -263
  152. package/lib/__templates__/expo/client/uniwind-types.d.ts +0 -10
  153. package/lib/__templates__/taro/src/app.ts +0 -14
  154. package/lib/__templates__/taro/src/utils/h5-styles.ts +0 -33
  155. 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,16 +18,19 @@ importers:
13
18
  version: 7.28.4
14
19
  '@tarojs/components':
15
20
  specifier: 4.1.9
16
- version: 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
21
+ version: 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
17
22
  '@tarojs/helper':
18
23
  specifier: 4.1.9
19
24
  version: 4.1.9
20
25
  '@tarojs/plugin-framework-react':
21
26
  specifier: 4.1.9
22
- version: 4.1.9(@tarojs/helper@4.1.9)(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@vitejs/plugin-react@4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1)))(react@18.3.1)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1))(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
27
+ version: 4.1.9(@tarojs/helper@4.1.9)(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@vitejs/plugin-react@4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)))(react@18.3.1)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))(webpack@5.97.1(@swc/core@1.3.96))
23
28
  '@tarojs/plugin-platform-h5':
24
29
  specifier: 4.1.9
25
- version: 4.1.9(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@types/react@18.3.27)(postcss@8.5.6)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
30
+ version: 4.1.9(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@types/react@18.3.27)(postcss@8.5.6)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96))
31
+ '@tarojs/plugin-platform-tt':
32
+ specifier: 4.1.9
33
+ version: 4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)
26
34
  '@tarojs/plugin-platform-weapp':
27
35
  specifier: 4.1.9
28
36
  version: 4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)
@@ -37,19 +45,31 @@ importers:
37
45
  version: 4.1.9
38
46
  '@tarojs/taro':
39
47
  specifier: 4.1.9
40
- version: 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))
41
- drizzle-kit:
42
- specifier: ^0.31.8
43
- version: 0.31.8
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
44
58
  lucide-react-taro:
45
- specifier: ^1.1.1
46
- version: 1.1.1(@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)))(react@18.3.1)
59
+ specifier: ^1.3.0
60
+ version: 1.3.0(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(react@18.3.1)
47
61
  react:
48
62
  specifier: ^18.0.0
49
63
  version: 18.3.1
50
64
  react-dom:
51
65
  specifier: ^18.0.0
52
66
  version: 18.3.1(react@18.3.1)
67
+ tailwind-merge:
68
+ specifier: ^3.5.0
69
+ version: 3.5.0
70
+ tailwindcss-animate:
71
+ specifier: ^1.0.7
72
+ version: 1.0.7(tailwindcss@4.1.18)
53
73
  zustand:
54
74
  specifier: ^5.0.9
55
75
  version: 5.0.9(@types/react@18.3.27)(react@18.3.1)
@@ -77,13 +97,10 @@ importers:
77
97
  version: 4.1.9(@types/node@22.19.6)
78
98
  '@tarojs/plugin-mini-ci':
79
99
  specifier: ^4.1.9
80
- version: 4.1.9(miniprogram-ci@2.1.26(eslint@8.57.1))
100
+ version: 4.1.9(patch_hash=j6dgmq33tuqqgowk7tjyyinctm)(miniprogram-ci@2.1.26(eslint@8.57.1))(tt-ide-cli@0.1.31(@types/node@22.19.6))
81
101
  '@tarojs/vite-runner':
82
102
  specifier: 4.1.9
83
- version: 4.1.9(@tarojs/runtime@4.1.9)(@types/babel__core@7.20.5)(jiti@2.6.1)(postcss@8.5.6)(rollup@3.29.5)(terser@5.44.1)(typescript@5.9.3)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.30.2)(sass@1.97.2)(terser@5.44.1))
84
- '@types/dotenv':
85
- specifier: ^8.2.3
86
- version: 8.2.3
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))
87
104
  '@types/minimatch':
88
105
  specifier: ^5
89
106
  version: 5.1.2
@@ -92,7 +109,7 @@ importers:
92
109
  version: 18.3.27
93
110
  '@vitejs/plugin-react':
94
111
  specifier: ^4.3.0
95
- 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))
96
113
  babel-preset-taro:
97
114
  specifier: 4.1.9
98
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)
@@ -114,6 +131,9 @@ importers:
114
131
  eslint-plugin-react-hooks:
115
132
  specifier: ^4.4.0
116
133
  version: 4.6.2(eslint@8.57.1)
134
+ eslint-plugin-tailwindcss:
135
+ specifier: ^3.18.2
136
+ version: 3.18.2(tailwindcss@4.1.18)
117
137
  less:
118
138
  specifier: ^4.2.0
119
139
  version: 4.5.1
@@ -144,15 +164,18 @@ importers:
144
164
  terser:
145
165
  specifier: ^5.30.4
146
166
  version: 5.44.1
167
+ tt-ide-cli:
168
+ specifier: ^0.1.31
169
+ version: 0.1.31(@types/node@22.19.6)
147
170
  typescript:
148
171
  specifier: ^5.4.5
149
172
  version: 5.9.3
150
173
  vite:
151
174
  specifier: ^4.2.0
152
- 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)
153
176
  weapp-tailwindcss:
154
- specifier: ^4.9.2
155
- version: 4.9.2(tailwindcss@4.1.18)
177
+ specifier: ^4.10.3
178
+ version: 4.10.3(tailwindcss@4.1.18)
156
179
 
157
180
  server:
158
181
  dependencies:
@@ -214,9 +237,6 @@ importers:
214
237
  '@types/better-sqlite3':
215
238
  specifier: ^7.6.13
216
239
  version: 7.6.13
217
- '@types/dotenv':
218
- specifier: ^8.2.3
219
- version: 8.2.3
220
240
  '@types/express':
221
241
  specifier: 5.0.6
222
242
  version: 5.0.6
@@ -435,6 +455,10 @@ packages:
435
455
  resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
436
456
  engines: {node: '>=6.9.0'}
437
457
 
458
+ '@babel/code-frame@7.29.0':
459
+ resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
460
+ engines: {node: '>=6.9.0'}
461
+
438
462
  '@babel/compat-data@7.22.9':
439
463
  resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
440
464
  engines: {node: '>=6.9.0'}
@@ -477,6 +501,10 @@ packages:
477
501
  resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
478
502
  engines: {node: '>=6.9.0'}
479
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
+
480
508
  '@babel/helper-annotate-as-pure@7.22.5':
481
509
  resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
482
510
  engines: {node: '>=6.9.0'}
@@ -710,6 +738,11 @@ packages:
710
738
  engines: {node: '>=6.0.0'}
711
739
  hasBin: true
712
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
+
713
746
  '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5':
714
747
  resolution: {integrity: sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==}
715
748
  engines: {node: '>=6.9.0'}
@@ -1711,6 +1744,10 @@ packages:
1711
1744
  resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
1712
1745
  engines: {node: '>=6.9.0'}
1713
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
+
1714
1751
  '@babel/traverse@7.21.4':
1715
1752
  resolution: {integrity: sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==}
1716
1753
  engines: {node: '>=6.9.0'}
@@ -1723,6 +1760,10 @@ packages:
1723
1760
  resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
1724
1761
  engines: {node: '>=6.9.0'}
1725
1762
 
1763
+ '@babel/traverse@7.29.0':
1764
+ resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
1765
+ engines: {node: '>=6.9.0'}
1766
+
1726
1767
  '@babel/types@7.24.0':
1727
1768
  resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
1728
1769
  engines: {node: '>=6.9.0'}
@@ -1735,6 +1776,10 @@ packages:
1735
1776
  resolution: {integrity: sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==}
1736
1777
  engines: {node: '>=6.9.0'}
1737
1778
 
1779
+ '@babel/types@7.29.0':
1780
+ resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
1781
+ engines: {node: '>=6.9.0'}
1782
+
1738
1783
  '@borewit/text-codec@0.2.1':
1739
1784
  resolution: {integrity: sha512-k7vvKPbf7J2fZ5klGRD9AeKfUvojuZIQ3BT5u7Jfv+puwXkUBUT5PVyMDfJZpy30CBDXGMgw7fguK/lpOMBvgw==}
1740
1785
 
@@ -2577,67 +2622,79 @@ packages:
2577
2622
  resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
2578
2623
  cpu: [arm64]
2579
2624
  os: [linux]
2625
+ libc: [glibc]
2580
2626
 
2581
2627
  '@img/sharp-libvips-linux-arm@1.0.5':
2582
2628
  resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
2583
2629
  cpu: [arm]
2584
2630
  os: [linux]
2631
+ libc: [glibc]
2585
2632
 
2586
2633
  '@img/sharp-libvips-linux-s390x@1.0.4':
2587
2634
  resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
2588
2635
  cpu: [s390x]
2589
2636
  os: [linux]
2637
+ libc: [glibc]
2590
2638
 
2591
2639
  '@img/sharp-libvips-linux-x64@1.0.4':
2592
2640
  resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
2593
2641
  cpu: [x64]
2594
2642
  os: [linux]
2643
+ libc: [glibc]
2595
2644
 
2596
2645
  '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
2597
2646
  resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
2598
2647
  cpu: [arm64]
2599
2648
  os: [linux]
2649
+ libc: [musl]
2600
2650
 
2601
2651
  '@img/sharp-libvips-linuxmusl-x64@1.0.4':
2602
2652
  resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
2603
2653
  cpu: [x64]
2604
2654
  os: [linux]
2655
+ libc: [musl]
2605
2656
 
2606
2657
  '@img/sharp-linux-arm64@0.33.5':
2607
2658
  resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
2608
2659
  engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2609
2660
  cpu: [arm64]
2610
2661
  os: [linux]
2662
+ libc: [glibc]
2611
2663
 
2612
2664
  '@img/sharp-linux-arm@0.33.5':
2613
2665
  resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
2614
2666
  engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2615
2667
  cpu: [arm]
2616
2668
  os: [linux]
2669
+ libc: [glibc]
2617
2670
 
2618
2671
  '@img/sharp-linux-s390x@0.33.5':
2619
2672
  resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
2620
2673
  engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2621
2674
  cpu: [s390x]
2622
2675
  os: [linux]
2676
+ libc: [glibc]
2623
2677
 
2624
2678
  '@img/sharp-linux-x64@0.33.5':
2625
2679
  resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
2626
2680
  engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2627
2681
  cpu: [x64]
2628
2682
  os: [linux]
2683
+ libc: [glibc]
2629
2684
 
2630
2685
  '@img/sharp-linuxmusl-arm64@0.33.5':
2631
2686
  resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
2632
2687
  engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2633
2688
  cpu: [arm64]
2634
2689
  os: [linux]
2690
+ libc: [musl]
2635
2691
 
2636
2692
  '@img/sharp-linuxmusl-x64@0.33.5':
2637
2693
  resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
2638
2694
  engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
2639
2695
  cpu: [x64]
2640
2696
  os: [linux]
2697
+ libc: [musl]
2641
2698
 
2642
2699
  '@img/sharp-wasm32@0.33.5':
2643
2700
  resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
@@ -3745,15 +3802,18 @@ packages:
3745
3802
  resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==}
3746
3803
  engines: {node: '>=6'}
3747
3804
 
3748
- '@tailwindcss-mangle/config@6.1.0':
3749
- resolution: {integrity: sha512-74Ga5Z1ccg5trRbzD01cZcB3aaKv0bHKkxG9u6k880obwaH3XQuQOLDZu8UpYoMwt5J2eHqiD4urqpsmGb7irA==}
3805
+ '@tailwindcss-mangle/config@6.1.3':
3806
+ resolution: {integrity: sha512-e0wj/R582uyrqMLYDDyfl0BfysybOA1PiP0ChxQVch1JWxkLxM0SB7Nb6Cq0jiSYugX5hGfSV1UEqLhM0Q9PTQ==}
3750
3807
 
3751
- '@tailwindcss-mangle/shared@4.1.1':
3752
- resolution: {integrity: sha512-bVRIDBJlo+ysYySVgP1GWC+uHQzlZi6w9Gsvm/UOUA9SXwzwUBlR+25YLJJ9MIT4oaHTK4a/w1kWKHRZnQDbhQ==}
3808
+ '@tailwindcss-mangle/shared@4.1.3':
3809
+ resolution: {integrity: sha512-u7TSrR0PwEHUwP/gEE+yIy8QrkCnyVkN245uyn74aYWK73ksJAY2bb27OStzlMdfQADGf7xpBLshISM9UpDJEQ==}
3753
3810
 
3754
3811
  '@tailwindcss/node@4.1.18':
3755
3812
  resolution: {integrity: sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==}
3756
3813
 
3814
+ '@tailwindcss/node@4.2.1':
3815
+ resolution: {integrity: sha512-jlx6sLk4EOwO6hHe1oCGm1Q4AN/s0rSrTTPBGPM0/RQ6Uylwq17FuU8IeJJKEjtc6K6O07zsvP+gDO6MMWo7pg==}
3816
+
3757
3817
  '@tailwindcss/oxide-android-arm64@4.1.18':
3758
3818
  resolution: {integrity: sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==}
3759
3819
  engines: {node: '>= 10'}
@@ -4103,6 +4163,13 @@ packages:
4103
4163
  '@tarojs/plugin-platform-h5@4.1.9':
4104
4164
  resolution: {integrity: sha512-qrxJY7fiknzcBWI/bEQxAksi8fB5/ciYIbrF/hFbsH7Zc0VzQGA0IpdeOl8gya/mzmF9ieyr28/hObNjNnMyUw==}
4105
4165
 
4166
+ '@tarojs/plugin-platform-tt@4.1.9':
4167
+ resolution: {integrity: sha512-qkz0VKx7tflj6MHJgR7wrEXxn0oS+ph0S+HdqulJpev7k2bWWSMUcVHiDHL1ZI01PSMVavX/+WCgYcX8CPEcGQ==}
4168
+ engines: {node: '>= 18'}
4169
+ peerDependencies:
4170
+ '@tarojs/service': 4.1.9
4171
+ '@tarojs/shared': 4.1.9
4172
+
4106
4173
  '@tarojs/plugin-platform-weapp@4.1.9':
4107
4174
  resolution: {integrity: sha512-a3pHm2j4dksvuium6rMZwDmLazA/COAnwYNcbU3/vFkMA6MwTbra5JDL8Ari4op7HqeP72RZlEoYB5hp56jsXQ==}
4108
4175
  engines: {node: '>= 18'}
@@ -4197,6 +4264,9 @@ packages:
4197
4264
  '@ts-morph/common@0.27.0':
4198
4265
  resolution: {integrity: sha512-Wf29UqxWDpc+i61k3oIOzcUfQt79PIT9y/MWfAGlrkjg6lBC1hwDECLXPVJAhWjiGbfBCxZd65F/LIZF3+jeJQ==}
4199
4266
 
4267
+ '@tt-miniprogram/ext-pack@1.2.4':
4268
+ resolution: {integrity: sha512-pIXzF6YcCtJdlIGNByUIZr8OArdhi15ybS+N5Rr8x2YNQqFg/asacWqOSTnlOAOk2d5K6HA79sjdKodkrql7yQ==}
4269
+
4200
4270
  '@types/archy@0.0.31':
4201
4271
  resolution: {integrity: sha512-v+dxizsFVyXgD3EpFuqT9YjdEjbJmPxNf1QIX9ohZOhxh1ZF2yhqv3vYaeum9lg3VghhxS5S0a6yldN9J9lPEQ==}
4202
4272
 
@@ -4224,10 +4294,6 @@ packages:
4224
4294
  '@types/debug@4.1.12':
4225
4295
  resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
4226
4296
 
4227
- '@types/dotenv@8.2.3':
4228
- resolution: {integrity: sha512-g2FXjlDX/cYuc5CiQvyU/6kkbP1JtmGzh0obW50zD7OKeILVL0NSpPWLXVfqoAGQjom2/SLLx9zHq0KXvD6mbw==}
4229
- deprecated: This is a stub types definition. dotenv provides its own type definitions, so you do not need this installed.
4230
-
4231
4297
  '@types/eslint-scope@3.7.7':
4232
4298
  resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
4233
4299
 
@@ -4396,17 +4462,17 @@ packages:
4396
4462
  peerDependencies:
4397
4463
  vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
4398
4464
 
4399
- '@vue/compiler-core@3.5.26':
4400
- resolution: {integrity: sha512-vXyI5GMfuoBCnv5ucIT7jhHKl55Y477yxP6fc4eUswjP8FG3FFVFd41eNDArR+Uk3QKn2Z85NavjaxLxOC19/w==}
4465
+ '@vue/compiler-core@3.5.30':
4466
+ resolution: {integrity: sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==}
4401
4467
 
4402
- '@vue/compiler-dom@3.5.26':
4403
- 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==}
4404
4470
 
4405
- '@vue/compiler-sfc@3.5.26':
4406
- resolution: {integrity: sha512-egp69qDTSEZcf4bGOSsprUr4xI73wfrY5oRs6GSgXFTiHrWj4Y3X5Ydtip9QMqiCMCPVwLglB9GBxXtTadJ3mA==}
4471
+ '@vue/compiler-sfc@3.5.30':
4472
+ resolution: {integrity: sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==}
4407
4473
 
4408
- '@vue/compiler-ssr@3.5.26':
4409
- resolution: {integrity: sha512-lZT9/Y0nSIRUPVvapFJEVDbEXruZh2IYHMk2zTtEgJSlP5gVOqeWXH54xDKAaFS4rTnDeDBQUYDtxKyoW9FwDw==}
4474
+ '@vue/compiler-ssr@3.5.30':
4475
+ resolution: {integrity: sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==}
4410
4476
 
4411
4477
  '@vue/reactivity@3.0.5':
4412
4478
  resolution: {integrity: sha512-3xodUE3sEIJgS7ntwUbopIpzzvi7vDAOjVamfb2l+v1FUg0jpd3gf62N2wggJw3fxBMr+QvyxpD+dBoxLsmAjw==}
@@ -4414,11 +4480,11 @@ packages:
4414
4480
  '@vue/shared@3.0.5':
4415
4481
  resolution: {integrity: sha512-gYsNoGkWejBxNO6SNRjOh/xKeZ0H0V+TFzaPzODfBjkAIb0aQgBuixC1brandC/CDJy1wYPwSoYrXpvul7m6yw==}
4416
4482
 
4417
- '@vue/shared@3.5.26':
4418
- resolution: {integrity: sha512-7Z6/y3uFI5PRoKeorTOSXKcDj0MSasfNNltcslbFrPpcw6aXRUALq4IfJlaTRspiWIUOEZbrpM+iQGmCOiWe4A==}
4483
+ '@vue/shared@3.5.30':
4484
+ resolution: {integrity: sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==}
4419
4485
 
4420
- '@weapp-core/escape@6.0.1':
4421
- resolution: {integrity: sha512-p9vzvAAOejWDAhNGrmlNBO8MpOJQTUj9SOwKx/pCjvCnR/N8CF8yUFBaPH9WOGHCFxGPWxPEhViQSeDF+3vfFA==}
4486
+ '@weapp-core/escape@7.0.0':
4487
+ resolution: {integrity: sha512-xMiRT/54YCuyXGXC6ozxmoF+wmnnPJNbouRaAhGLl1jBKsLqtkeILYU5/tGDtfJPxwKcQEFeDuaSmnMHaU3myg==}
4422
4488
 
4423
4489
  '@weapp-core/regex@1.0.1':
4424
4490
  resolution: {integrity: sha512-gRIHHAb1MoTmM1lzfaKldwNXgsScaVu9/bnZDKT0A1CgUkaHAouxvZta3yQgev91V3ZAHQ+tdwA8WGhpkstzUw==}
@@ -4432,11 +4498,13 @@ packages:
4432
4498
  peerDependencies:
4433
4499
  postcss: ^8.4.38
4434
4500
 
4435
- '@weapp-tailwindcss/postcss@2.1.0':
4436
- 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}
4437
4504
 
4438
- '@weapp-tailwindcss/shared@1.1.1':
4439
- 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}
4440
4508
 
4441
4509
  '@webassemblyjs/ast@1.14.1':
4442
4510
  resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
@@ -4638,6 +4706,9 @@ packages:
4638
4706
  append-field@1.0.0:
4639
4707
  resolution: {integrity: sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==}
4640
4708
 
4709
+ arch@2.2.0:
4710
+ resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
4711
+
4641
4712
  archive-type@4.0.0:
4642
4713
  resolution: {integrity: sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==}
4643
4714
  engines: {node: '>=4'}
@@ -4702,6 +4773,10 @@ packages:
4702
4773
  resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
4703
4774
  engines: {node: '>= 0.4'}
4704
4775
 
4776
+ array.prototype.reduce@1.0.8:
4777
+ resolution: {integrity: sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw==}
4778
+ engines: {node: '>= 0.4'}
4779
+
4705
4780
  array.prototype.tosorted@1.1.4:
4706
4781
  resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
4707
4782
  engines: {node: '>= 0.4'}
@@ -5097,6 +5172,9 @@ packages:
5097
5172
  resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
5098
5173
  engines: {node: '>=8'}
5099
5174
 
5175
+ binary@0.3.0:
5176
+ resolution: {integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==}
5177
+
5100
5178
  bindings@1.5.0:
5101
5179
  resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
5102
5180
 
@@ -5109,6 +5187,9 @@ packages:
5109
5187
  bl@5.1.0:
5110
5188
  resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==}
5111
5189
 
5190
+ bluebird@3.4.7:
5191
+ resolution: {integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==}
5192
+
5112
5193
  bmp-js@0.1.0:
5113
5194
  resolution: {integrity: sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==}
5114
5195
 
@@ -5167,6 +5248,10 @@ packages:
5167
5248
  buffer-from@1.1.2:
5168
5249
  resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
5169
5250
 
5251
+ buffer-indexof-polyfill@1.0.2:
5252
+ resolution: {integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==}
5253
+ engines: {node: '>=0.10'}
5254
+
5170
5255
  buffer@5.6.0:
5171
5256
  resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==}
5172
5257
 
@@ -5176,6 +5261,10 @@ packages:
5176
5261
  buffer@6.0.3:
5177
5262
  resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
5178
5263
 
5264
+ buffers@0.1.1:
5265
+ resolution: {integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==}
5266
+ engines: {node: '>=0.2.0'}
5267
+
5179
5268
  busboy@1.6.0:
5180
5269
  resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
5181
5270
  engines: {node: '>=10.16.0'}
@@ -5255,6 +5344,9 @@ packages:
5255
5344
  centra@2.7.0:
5256
5345
  resolution: {integrity: sha512-PbFMgMSrmgx6uxCdm57RUos9Tc3fclMvhLSATYN39XsDV29B89zZ3KA89jmY0vwSGazyU+uerqwa6t+KaodPcg==}
5257
5346
 
5347
+ chainsaw@0.1.0:
5348
+ resolution: {integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==}
5349
+
5258
5350
  chalk@1.1.3:
5259
5351
  resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
5260
5352
  engines: {node: '>=0.10.0'}
@@ -5309,6 +5401,9 @@ packages:
5309
5401
  citty@0.1.6:
5310
5402
  resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
5311
5403
 
5404
+ class-variance-authority@0.7.1:
5405
+ resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
5406
+
5312
5407
  classnames@2.5.1:
5313
5408
  resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
5314
5409
 
@@ -5353,6 +5448,10 @@ packages:
5353
5448
  resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
5354
5449
  engines: {node: '>= 12'}
5355
5450
 
5451
+ clipboardy@2.3.0:
5452
+ resolution: {integrity: sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==}
5453
+ engines: {node: '>=8'}
5454
+
5356
5455
  cliui@6.0.0:
5357
5456
  resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
5358
5457
 
@@ -5380,6 +5479,10 @@ packages:
5380
5479
  resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
5381
5480
  engines: {node: '>=0.8'}
5382
5481
 
5482
+ clsx@2.1.1:
5483
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
5484
+ engines: {node: '>=6'}
5485
+
5383
5486
  code-block-writer@13.0.3:
5384
5487
  resolution: {integrity: sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==}
5385
5488
 
@@ -5431,6 +5534,10 @@ packages:
5431
5534
  resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
5432
5535
  engines: {node: '>= 6'}
5433
5536
 
5537
+ commander@5.1.0:
5538
+ resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==}
5539
+ engines: {node: '>= 6'}
5540
+
5434
5541
  commander@7.2.0:
5435
5542
  resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
5436
5543
  engines: {node: '>= 10'}
@@ -5586,6 +5693,10 @@ packages:
5586
5693
  resolution: {integrity: sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==}
5587
5694
  engines: {node: '>= 10'}
5588
5695
 
5696
+ cross-spawn@6.0.6:
5697
+ resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==}
5698
+ engines: {node: '>=4.8'}
5699
+
5589
5700
  cross-spawn@7.0.6:
5590
5701
  resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
5591
5702
  engines: {node: '>= 8'}
@@ -5685,6 +5796,9 @@ packages:
5685
5796
  resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
5686
5797
  engines: {node: '>= 0.4'}
5687
5798
 
5799
+ date-fns@4.1.0:
5800
+ resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
5801
+
5688
5802
  dateformat@2.2.0:
5689
5803
  resolution: {integrity: sha512-GODcnWq3YGoTnygPfi02ygEiRxqUxpJwuRHjdhJYuxpcZmDq4rjBiXYmbCCzStxo176ixfLT6i4NPwQooRySnw==}
5690
5804
 
@@ -5708,6 +5822,15 @@ packages:
5708
5822
  supports-color:
5709
5823
  optional: true
5710
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
+
5711
5834
  debug@4.4.3:
5712
5835
  resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
5713
5836
  engines: {node: '>=6.0'}
@@ -5769,6 +5892,9 @@ packages:
5769
5892
  babel-plugin-macros:
5770
5893
  optional: true
5771
5894
 
5895
+ deep-clone@3.0.3:
5896
+ resolution: {integrity: sha512-6jtXIlCBAwr3GP/7Il52clbIFIKAxg/pnNkL4/sE6+Oqb10MXMtm9LDZV2IAuwdaKV9VBm8hlxAFk9r6pF8XRw==}
5897
+
5772
5898
  deep-extend@0.6.0:
5773
5899
  resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
5774
5900
  engines: {node: '>=4.0.0'}
@@ -6006,12 +6132,18 @@ packages:
6006
6132
  duplexer2@0.0.2:
6007
6133
  resolution: {integrity: sha512-+AWBwjGadtksxjOQSFDhPNQbed7icNXApT4+2BNpsXzcCBiInq2H9XW0O8sfHFaPmnQRs7cg/P0fAr2IWQSW0g==}
6008
6134
 
6135
+ duplexer2@0.1.4:
6136
+ resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==}
6137
+
6009
6138
  duplexer3@0.1.5:
6010
6139
  resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
6011
6140
 
6012
6141
  eastasianwidth@0.2.0:
6013
6142
  resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
6014
6143
 
6144
+ easy-table@1.2.0:
6145
+ resolution: {integrity: sha512-OFzVOv03YpvtcWGe5AayU5G2hgybsg3iqA6drU8UaoZyB9jLGMTrz9+asnLp/E+6qPh88yEI1gvyZFZ41dmgww==}
6146
+
6015
6147
  ecc-jsbn@0.1.2:
6016
6148
  resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
6017
6149
 
@@ -6049,6 +6181,10 @@ packages:
6049
6181
  resolution: {integrity: sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==}
6050
6182
  engines: {node: '>=10.13.0'}
6051
6183
 
6184
+ enhanced-resolve@5.20.0:
6185
+ resolution: {integrity: sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==}
6186
+ engines: {node: '>=10.13.0'}
6187
+
6052
6188
  entities@2.2.0:
6053
6189
  resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
6054
6190
 
@@ -6056,12 +6192,8 @@ packages:
6056
6192
  resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
6057
6193
  engines: {node: '>=0.12'}
6058
6194
 
6059
- entities@6.0.1:
6060
- resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
6061
- engines: {node: '>=0.12'}
6062
-
6063
- entities@7.0.0:
6064
- resolution: {integrity: sha512-FDWG5cmEYf2Z00IkYRhbFrwIwvdFKH07uV8dvNy0omp/Qb1xcyCWp2UDtcwJF4QZZvk0sLudP6/hAu42TaqVhQ==}
6195
+ entities@7.0.1:
6196
+ resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
6065
6197
  engines: {node: '>=0.12'}
6066
6198
 
6067
6199
  env-paths@2.2.1:
@@ -6088,6 +6220,9 @@ packages:
6088
6220
  resolution: {integrity: sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==}
6089
6221
  engines: {node: '>= 0.4'}
6090
6222
 
6223
+ es-array-method-boxes-properly@1.0.0:
6224
+ resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
6225
+
6091
6226
  es-define-property@1.0.1:
6092
6227
  resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
6093
6228
  engines: {node: '>= 0.4'}
@@ -6216,6 +6351,12 @@ packages:
6216
6351
  peerDependencies:
6217
6352
  eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
6218
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
+
6219
6360
  eslint-scope@5.1.1:
6220
6361
  resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
6221
6362
  engines: {node: '>=8.0.0'}
@@ -6302,6 +6443,10 @@ packages:
6302
6443
  resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
6303
6444
  engines: {node: '>=0.8.x'}
6304
6445
 
6446
+ execa@1.0.0:
6447
+ resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
6448
+ engines: {node: '>=6'}
6449
+
6305
6450
  execa@5.1.1:
6306
6451
  resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
6307
6452
  engines: {node: '>=10'}
@@ -6350,6 +6495,10 @@ packages:
6350
6495
  fast-deep-equal@3.1.3:
6351
6496
  resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
6352
6497
 
6498
+ fast-glob@3.3.2:
6499
+ resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
6500
+ engines: {node: '>=8.6.0'}
6501
+
6353
6502
  fast-glob@3.3.3:
6354
6503
  resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
6355
6504
  engines: {node: '>=8.6.0'}
@@ -6494,6 +6643,11 @@ packages:
6494
6643
  flatted@3.3.3:
6495
6644
  resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
6496
6645
 
6646
+ folder-hash@4.1.1:
6647
+ resolution: {integrity: sha512-1ZSlKJSbET3XpglnEXC9g+QF4QRZhqHIjpFfa4pAMfO4tu/XYPafpeHEX6zOFS2EolOIXr0lPh1eSjmdWItX2w==}
6648
+ engines: {node: '>=10.10.0'}
6649
+ hasBin: true
6650
+
6497
6651
  follow-redirects@1.15.11:
6498
6652
  resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
6499
6653
  engines: {node: '>=4.0'}
@@ -6554,6 +6708,10 @@ packages:
6554
6708
  resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
6555
6709
  engines: {node: '>=12'}
6556
6710
 
6711
+ fs-extra@11.2.0:
6712
+ resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
6713
+ engines: {node: '>=14.14'}
6714
+
6557
6715
  fs-extra@11.3.3:
6558
6716
  resolution: {integrity: sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==}
6559
6717
  engines: {node: '>=14.14'}
@@ -6573,6 +6731,11 @@ packages:
6573
6731
  engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
6574
6732
  os: [darwin]
6575
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
+
6576
6739
  function-bind@1.1.2:
6577
6740
  resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
6578
6741
 
@@ -6583,6 +6746,10 @@ packages:
6583
6746
  functions-have-names@1.2.3:
6584
6747
  resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
6585
6748
 
6749
+ fuse.js@7.1.0:
6750
+ resolution: {integrity: sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==}
6751
+ engines: {node: '>=10'}
6752
+
6586
6753
  generator-function@2.0.1:
6587
6754
  resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
6588
6755
  engines: {node: '>= 0.4'}
@@ -6877,8 +7044,8 @@ packages:
6877
7044
  resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
6878
7045
  engines: {node: '>=8'}
6879
7046
 
6880
- htmlparser2@10.0.0:
6881
- resolution: {integrity: sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==}
7047
+ htmlparser2@10.1.0:
7048
+ resolution: {integrity: sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==}
6882
7049
 
6883
7050
  http-cache-semantics@3.8.1:
6884
7051
  resolution: {integrity: sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==}
@@ -7061,6 +7228,11 @@ packages:
7061
7228
  resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
7062
7229
  engines: {node: '>= 0.4'}
7063
7230
 
7231
+ is-docker@2.2.1:
7232
+ resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
7233
+ engines: {node: '>=8'}
7234
+ hasBin: true
7235
+
7064
7236
  is-extglob@2.1.1:
7065
7237
  resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
7066
7238
  engines: {node: '>=0.10.0'}
@@ -7214,6 +7386,10 @@ packages:
7214
7386
  is-what@3.14.1:
7215
7387
  resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
7216
7388
 
7389
+ is-wsl@2.2.0:
7390
+ resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
7391
+ engines: {node: '>=8'}
7392
+
7217
7393
  isarray@0.0.1:
7218
7394
  resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
7219
7395
 
@@ -7453,30 +7629,60 @@ packages:
7453
7629
  cpu: [arm64]
7454
7630
  os: [android]
7455
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
+
7456
7638
  lightningcss-darwin-arm64@1.30.2:
7457
7639
  resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
7458
7640
  engines: {node: '>= 12.0.0'}
7459
7641
  cpu: [arm64]
7460
7642
  os: [darwin]
7461
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
+
7462
7650
  lightningcss-darwin-x64@1.30.2:
7463
7651
  resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
7464
7652
  engines: {node: '>= 12.0.0'}
7465
7653
  cpu: [x64]
7466
7654
  os: [darwin]
7467
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
+
7468
7662
  lightningcss-freebsd-x64@1.30.2:
7469
7663
  resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
7470
7664
  engines: {node: '>= 12.0.0'}
7471
7665
  cpu: [x64]
7472
7666
  os: [freebsd]
7473
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
+
7474
7674
  lightningcss-linux-arm-gnueabihf@1.30.2:
7475
7675
  resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
7476
7676
  engines: {node: '>= 12.0.0'}
7477
7677
  cpu: [arm]
7478
7678
  os: [linux]
7479
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
+
7480
7686
  lightningcss-linux-arm64-gnu@1.30.2:
7481
7687
  resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
7482
7688
  engines: {node: '>= 12.0.0'}
@@ -7484,6 +7690,13 @@ packages:
7484
7690
  os: [linux]
7485
7691
  libc: [glibc]
7486
7692
 
7693
+ lightningcss-linux-arm64-gnu@1.31.1:
7694
+ resolution: {integrity: sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==}
7695
+ engines: {node: '>= 12.0.0'}
7696
+ cpu: [arm64]
7697
+ os: [linux]
7698
+ libc: [glibc]
7699
+
7487
7700
  lightningcss-linux-arm64-musl@1.30.2:
7488
7701
  resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
7489
7702
  engines: {node: '>= 12.0.0'}
@@ -7491,6 +7704,13 @@ packages:
7491
7704
  os: [linux]
7492
7705
  libc: [musl]
7493
7706
 
7707
+ lightningcss-linux-arm64-musl@1.31.1:
7708
+ resolution: {integrity: sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==}
7709
+ engines: {node: '>= 12.0.0'}
7710
+ cpu: [arm64]
7711
+ os: [linux]
7712
+ libc: [musl]
7713
+
7494
7714
  lightningcss-linux-x64-gnu@1.30.2:
7495
7715
  resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
7496
7716
  engines: {node: '>= 12.0.0'}
@@ -7498,6 +7718,13 @@ packages:
7498
7718
  os: [linux]
7499
7719
  libc: [glibc]
7500
7720
 
7721
+ lightningcss-linux-x64-gnu@1.31.1:
7722
+ resolution: {integrity: sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==}
7723
+ engines: {node: '>= 12.0.0'}
7724
+ cpu: [x64]
7725
+ os: [linux]
7726
+ libc: [glibc]
7727
+
7501
7728
  lightningcss-linux-x64-musl@1.30.2:
7502
7729
  resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
7503
7730
  engines: {node: '>= 12.0.0'}
@@ -7505,22 +7732,45 @@ packages:
7505
7732
  os: [linux]
7506
7733
  libc: [musl]
7507
7734
 
7735
+ lightningcss-linux-x64-musl@1.31.1:
7736
+ resolution: {integrity: sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==}
7737
+ engines: {node: '>= 12.0.0'}
7738
+ cpu: [x64]
7739
+ os: [linux]
7740
+ libc: [musl]
7741
+
7508
7742
  lightningcss-win32-arm64-msvc@1.30.2:
7509
7743
  resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
7510
7744
  engines: {node: '>= 12.0.0'}
7511
7745
  cpu: [arm64]
7512
7746
  os: [win32]
7513
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
+
7514
7754
  lightningcss-win32-x64-msvc@1.30.2:
7515
7755
  resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
7516
7756
  engines: {node: '>= 12.0.0'}
7517
7757
  cpu: [x64]
7518
7758
  os: [win32]
7519
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
+
7520
7766
  lightningcss@1.30.2:
7521
7767
  resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
7522
7768
  engines: {node: '>= 12.0.0'}
7523
7769
 
7770
+ lightningcss@1.31.1:
7771
+ resolution: {integrity: sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==}
7772
+ engines: {node: '>= 12.0.0'}
7773
+
7524
7774
  lilconfig@2.1.0:
7525
7775
  resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
7526
7776
  engines: {node: '>=10'}
@@ -7537,6 +7787,9 @@ packages:
7537
7787
  engines: {node: '>=20.17'}
7538
7788
  hasBin: true
7539
7789
 
7790
+ listenercount@1.0.1:
7791
+ resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==}
7792
+
7540
7793
  listr2@9.0.5:
7541
7794
  resolution: {integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==}
7542
7795
  engines: {node: '>=20.0.0'}
@@ -7713,8 +7966,8 @@ packages:
7713
7966
  lru-cache@5.1.1:
7714
7967
  resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
7715
7968
 
7716
- lucide-react-taro@1.1.1:
7717
- resolution: {integrity: sha512-pR3PDj50MfQVFdgGzGtHRbtmZF1bkejGeYEPUGgTNVFLwxYYYElPOeRSJ0eZcohqgpZFKTlX6ohRe/iktLAumw==}
7969
+ lucide-react-taro@1.3.0:
7970
+ resolution: {integrity: sha512-fx3u8ivLkwpdiv6WEARDcd9lK+CAzsyfY0kSwXqi0IxTWbWWChQoJymAMxSI9KtEpBf1LixiLnxmdrtKDoCf5Q==}
7718
7971
  hasBin: true
7719
7972
  peerDependencies:
7720
7973
  '@tarojs/components': '>=3.0.0'
@@ -7852,6 +8105,10 @@ packages:
7852
8105
  resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
7853
8106
  engines: {node: '>=10'}
7854
8107
 
8108
+ minimatch@7.4.6:
8109
+ resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==}
8110
+ engines: {node: '>=10'}
8111
+
7855
8112
  minimatch@9.0.3:
7856
8113
  resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
7857
8114
  engines: {node: '>=16 || 14 >=14.17'}
@@ -7970,6 +8227,9 @@ packages:
7970
8227
  resolution: {integrity: sha512-P6qw6kenNXP+J9XlKJNi/MNHUQ+Lx5K8FEcSfX7/w8KJdZan5+BB5MKzuNgL2RTjHG1Svg8SehfseVEp8zAqwA==}
7971
8228
  engines: {node: '>=6.0.0'}
7972
8229
 
8230
+ nice-try@1.0.5:
8231
+ resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
8232
+
7973
8233
  no-case@2.3.2:
7974
8234
  resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==}
7975
8235
 
@@ -8005,6 +8265,9 @@ packages:
8005
8265
  encoding:
8006
8266
  optional: true
8007
8267
 
8268
+ node-machine-id@1.1.12:
8269
+ resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==}
8270
+
8008
8271
  node-releases@2.0.27:
8009
8272
  resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
8010
8273
 
@@ -8034,6 +8297,10 @@ packages:
8034
8297
  npm-normalize-package-bin@1.0.1:
8035
8298
  resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==}
8036
8299
 
8300
+ npm-run-path@2.0.2:
8301
+ resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
8302
+ engines: {node: '>=4'}
8303
+
8037
8304
  npm-run-path@4.0.1:
8038
8305
  resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
8039
8306
  engines: {node: '>=8'}
@@ -8077,6 +8344,10 @@ packages:
8077
8344
  resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
8078
8345
  engines: {node: '>= 0.4'}
8079
8346
 
8347
+ object.getownpropertydescriptors@2.1.9:
8348
+ resolution: {integrity: sha512-mt8YM6XwsTTovI+kdZdHSxoyF2DI59up034orlC9NfweclcWOt7CVascNNLp6U+bjFVCVCIh9PwS76tDM/rH8g==}
8349
+ engines: {node: '>= 0.4'}
8350
+
8080
8351
  object.groupby@1.0.3:
8081
8352
  resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
8082
8353
  engines: {node: '>= 0.4'}
@@ -8276,6 +8547,10 @@ packages:
8276
8547
  resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
8277
8548
  engines: {node: '>=0.10.0'}
8278
8549
 
8550
+ path-key@2.0.1:
8551
+ resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
8552
+ engines: {node: '>=4'}
8553
+
8279
8554
  path-key@3.1.1:
8280
8555
  resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
8281
8556
  engines: {node: '>=8'}
@@ -8781,8 +9056,8 @@ packages:
8781
9056
  peerDependencies:
8782
9057
  postcss: ^8
8783
9058
 
8784
- postcss-plugin-shared@1.0.0:
8785
- resolution: {integrity: sha512-3x83BXvFXlbtIaD/GC4C2uZQ+UmGwh1uYCm4DjQTEjDv8HrrBmZWZH968W+Shq/vxP+amsH08OafVt8aVzqL2w==}
9059
+ postcss-plugin-shared@1.1.1:
9060
+ resolution: {integrity: sha512-ucByjwfw3SJXo3NFDy6aF264cnSxOL5gFYMfDz9U/CD97+pT2KSryZ8DmVviWnI1ofJL71y2DhParq1zoS4hcw==}
8786
9061
  peerDependencies:
8787
9062
  postcss: ^8
8788
9063
 
@@ -8798,8 +9073,8 @@ packages:
8798
9073
  peerDependencies:
8799
9074
  postcss: ^8.4
8800
9075
 
8801
- postcss-pxtrans@1.0.0:
8802
- resolution: {integrity: sha512-1AKXs+w/hor0EAmxCAa2ATfYKgzqey/rHTgJ6LvvpNsRyeV9hyVNczF3N1hSXcB5ruM4E3ezg8cf3W+W/GY4GA==}
9076
+ postcss-pxtrans@1.0.1:
9077
+ resolution: {integrity: sha512-oNxhcSbbhkfhgJP/E0JJHIuQs8asqAuD1FqFT4VFF7xhkBmKKTIM08T7WIRHo9rjod8E4PR/CuOxtcWjftufcg==}
8803
9078
  peerDependencies:
8804
9079
  postcss: ^8
8805
9080
 
@@ -8821,8 +9096,8 @@ packages:
8821
9096
  peerDependencies:
8822
9097
  postcss: ^8.2.15
8823
9098
 
8824
- postcss-rem-to-responsive-pixel@7.0.0:
8825
- resolution: {integrity: sha512-m22VCg246RpyFDTByp0cR0KwK4MhnRgrX5yHTTkFeQddFqhCviE13P5c8Dwi2ISBB4DVeJnEYBxEKjUNyrigdQ==}
9099
+ postcss-rem-to-responsive-pixel@7.0.1:
9100
+ resolution: {integrity: sha512-enzOmpYK8RHTOL7Y9o3AsSRnYqigGu4OZbDmpP7dUsRRIpyqS1h3hKZHHH5B+WJRyw58DRSAFuicM0uc/2GRJQ==}
8826
9101
  engines: {node: '>=16.6.0'}
8827
9102
  peerDependencies:
8828
9103
  postcss: ^8
@@ -8867,6 +9142,11 @@ packages:
8867
9142
  peerDependencies:
8868
9143
  postcss: ^8.2.15
8869
9144
 
9145
+ postcss-units-to-px@0.2.0:
9146
+ resolution: {integrity: sha512-IN0zGe3JnOJvbFQRlUeSr1icsjQbFwHuso3IfhzCuILb+z9aj+0Nlzka5Q/A5Ulnh9Cd8mEs1Rfl7NxQdw+6iA==}
9147
+ peerDependencies:
9148
+ postcss: ^8
9149
+
8870
9150
  postcss-value-parser@4.2.0:
8871
9151
  resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
8872
9152
 
@@ -8874,6 +9154,10 @@ packages:
8874
9154
  resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
8875
9155
  engines: {node: ^10 || ^12 || >=14}
8876
9156
 
9157
+ postcss@8.5.8:
9158
+ resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
9159
+ engines: {node: ^10 || ^12 || >=14}
9160
+
8877
9161
  postgres-array@2.0.0:
8878
9162
  resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
8879
9163
  engines: {node: '>=4'}
@@ -9063,6 +9347,10 @@ packages:
9063
9347
  resolution: {integrity: sha512-2CNoRoh95LxY47LvqrehIAfUVda2JbuFE/HaGYs42bNrGG+ojbw1h3zOcPcQ+1GQ3+rkzNndZn85u1XyZ3UsIA==}
9064
9348
  deprecated: The functionality that this package provided is now in @npmcli/arborist
9065
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
+
9066
9354
  readable-stream@1.1.14:
9067
9355
  resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==}
9068
9356
 
@@ -9248,6 +9536,11 @@ packages:
9248
9536
  rfdc@1.4.1:
9249
9537
  resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
9250
9538
 
9539
+ rimraf@2.7.1:
9540
+ resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
9541
+ deprecated: Rimraf versions prior to v4 are no longer supported
9542
+ hasBin: true
9543
+
9251
9544
  rimraf@3.0.2:
9252
9545
  resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
9253
9546
  deprecated: Rimraf versions prior to v4 are no longer supported
@@ -9333,6 +9626,9 @@ packages:
9333
9626
  resolution: {integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==}
9334
9627
  hasBin: true
9335
9628
 
9629
+ semver-compare@1.0.0:
9630
+ resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==}
9631
+
9336
9632
  semver@5.7.2:
9337
9633
  resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
9338
9634
  hasBin: true
@@ -9346,6 +9642,11 @@ packages:
9346
9642
  engines: {node: '>=10'}
9347
9643
  hasBin: true
9348
9644
 
9645
+ semver@7.7.4:
9646
+ resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
9647
+ engines: {node: '>=10'}
9648
+ hasBin: true
9649
+
9349
9650
  send@0.19.0:
9350
9651
  resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
9351
9652
  engines: {node: '>= 0.8.0'}
@@ -9411,10 +9712,18 @@ packages:
9411
9712
  resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
9412
9713
  engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
9413
9714
 
9715
+ shebang-command@1.2.0:
9716
+ resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
9717
+ engines: {node: '>=0.10.0'}
9718
+
9414
9719
  shebang-command@2.0.0:
9415
9720
  resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
9416
9721
  engines: {node: '>=8'}
9417
9722
 
9723
+ shebang-regex@1.0.0:
9724
+ resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
9725
+ engines: {node: '>=0.10.0'}
9726
+
9418
9727
  shebang-regex@3.0.0:
9419
9728
  resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
9420
9729
  engines: {node: '>=8'}
@@ -9666,6 +9975,10 @@ packages:
9666
9975
  strip-dirs@2.1.0:
9667
9976
  resolution: {integrity: sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==}
9668
9977
 
9978
+ strip-eof@1.0.0:
9979
+ resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
9980
+ engines: {node: '>=0.10.0'}
9981
+
9669
9982
  strip-final-newline@2.0.0:
9670
9983
  resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
9671
9984
  engines: {node: '>=6'}
@@ -9769,11 +10082,20 @@ packages:
9769
10082
  resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==}
9770
10083
  engines: {node: '>=10.0.0'}
9771
10084
 
9772
- tailwindcss-config@1.1.3:
9773
- resolution: {integrity: sha512-7AN01Cwz2vd/vl6nKwoR0y/KlgpbKBREp1Q+MHJw8QF53AueVRFgU2Cqq0yhIQ4nC2wGvEJtlBCTeKYPX3TCXQ==}
10085
+ tailwind-merge@3.5.0:
10086
+ resolution: {integrity: sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==}
9774
10087
 
9775
- tailwindcss-patch@8.6.1:
9776
- resolution: {integrity: sha512-DMK8j1ZAl1p1KdX5G4kT2atTbkrf3Su7BVIPsow6FXJV6mias0dm4+lg/pykA05EUzEHpKPrRfw3A6ScPWV2qQ==}
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}
10096
+
10097
+ tailwindcss-patch@8.7.3:
10098
+ resolution: {integrity: sha512-PvQu+wr/JS0y2mx0RzTKbMv+oGhmC/CowR8gN3/4tATK1Wo9MHm6ZMwlNDjbh1ltT7SCwjAEynqoSNYapnLIig==}
9777
10099
  hasBin: true
9778
10100
  peerDependencies:
9779
10101
  tailwindcss: '>=2.0.0'
@@ -9784,6 +10106,9 @@ packages:
9784
10106
  tailwindcss@4.1.18:
9785
10107
  resolution: {integrity: sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==}
9786
10108
 
10109
+ tailwindcss@4.2.1:
10110
+ resolution: {integrity: sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==}
10111
+
9787
10112
  tapable@2.3.0:
9788
10113
  resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
9789
10114
  engines: {node: '>=6'}
@@ -9824,6 +10149,11 @@ packages:
9824
10149
  engines: {node: '>=6.0.0'}
9825
10150
  hasBin: true
9826
10151
 
10152
+ terser@5.26.0:
10153
+ resolution: {integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==}
10154
+ engines: {node: '>=10'}
10155
+ hasBin: true
10156
+
9827
10157
  terser@5.44.1:
9828
10158
  resolution: {integrity: sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw==}
9829
10159
  engines: {node: '>=10'}
@@ -9919,6 +10249,9 @@ packages:
9919
10249
  tr46@0.0.3:
9920
10250
  resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
9921
10251
 
10252
+ traverse@0.3.9:
10253
+ resolution: {integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==}
10254
+
9922
10255
  tree-kill@1.2.2:
9923
10256
  resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
9924
10257
  hasBin: true
@@ -9960,6 +10293,10 @@ packages:
9960
10293
  tslib@2.8.1:
9961
10294
  resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
9962
10295
 
10296
+ tt-ide-cli@0.1.31:
10297
+ resolution: {integrity: sha512-1MTL9cG2EYwPWzv6JY+quNHhcjbtV/gfp760zsKWsZZ/19qGGu0eJI6jBrO/rlzr8BWf3QPzGjLsH3oA2WJrdQ==}
10298
+ hasBin: true
10299
+
9963
10300
  tunnel-agent@0.6.0:
9964
10301
  resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
9965
10302
 
@@ -10084,6 +10421,9 @@ packages:
10084
10421
  resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
10085
10422
  engines: {node: '>= 0.8'}
10086
10423
 
10424
+ unzipper@0.10.14:
10425
+ resolution: {integrity: sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==}
10426
+
10087
10427
  update-browserslist-db@1.2.3:
10088
10428
  resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
10089
10429
  hasBin: true
@@ -10119,6 +10459,9 @@ packages:
10119
10459
  util-deprecate@1.0.2:
10120
10460
  resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
10121
10461
 
10462
+ util-promisify@2.1.0:
10463
+ resolution: {integrity: sha512-K+5eQPYs14b3+E+hmE2J6gCZ4JmMl9DbYS6BeP2CHq6WMuNxErxf5B/n0fz85L8zUuoO6rIzNNmIQDu/j+1OcA==}
10464
+
10122
10465
  utils-merge@1.0.1:
10123
10466
  resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
10124
10467
  engines: {node: '>= 0.4.0'}
@@ -10195,9 +10538,9 @@ packages:
10195
10538
  wcwidth@1.0.1:
10196
10539
  resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
10197
10540
 
10198
- weapp-tailwindcss@4.9.2:
10199
- resolution: {integrity: sha512-2DnADF3pp9HSjrhhHXY8UH6InJn/J1HXPhh0xA8u/isL9c0wa/TL8shLGpf1l3Kj6dCcey8LDT33sumwFF139g==}
10200
- 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}
10201
10544
  hasBin: true
10202
10545
 
10203
10546
  webidl-conversions@3.0.1:
@@ -10215,6 +10558,10 @@ packages:
10215
10558
  resolution: {integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==}
10216
10559
  engines: {node: '>=10.13.0'}
10217
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
+
10218
10565
  webpack@5.97.1:
10219
10566
  resolution: {integrity: sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==}
10220
10567
  engines: {node: '>=10.13.0'}
@@ -10958,6 +11305,12 @@ snapshots:
10958
11305
  js-tokens: 4.0.0
10959
11306
  picocolors: 1.1.1
10960
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
+
10961
11314
  '@babel/compat-data@7.22.9': {}
10962
11315
 
10963
11316
  '@babel/compat-data@7.28.5': {}
@@ -10965,15 +11318,15 @@ snapshots:
10965
11318
  '@babel/core@7.21.4':
10966
11319
  dependencies:
10967
11320
  '@ampproject/remapping': 2.3.0
10968
- '@babel/code-frame': 7.22.10
10969
- '@babel/generator': 7.21.4
11321
+ '@babel/code-frame': 7.27.1
11322
+ '@babel/generator': 7.28.5
10970
11323
  '@babel/helper-compilation-targets': 7.22.10
10971
11324
  '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.4)
10972
11325
  '@babel/helpers': 7.21.0
10973
- '@babel/parser': 7.21.4
10974
- '@babel/template': 7.20.7
10975
- '@babel/traverse': 7.21.4
10976
- '@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
10977
11330
  convert-source-map: 1.9.0
10978
11331
  debug: 4.4.3
10979
11332
  gensync: 1.0.0-beta.2
@@ -11020,7 +11373,7 @@ snapshots:
11020
11373
 
11021
11374
  '@babel/generator@7.21.4':
11022
11375
  dependencies:
11023
- '@babel/types': 7.24.6
11376
+ '@babel/types': 7.28.6
11024
11377
  '@jridgewell/gen-mapping': 0.3.13
11025
11378
  '@jridgewell/trace-mapping': 0.3.31
11026
11379
  jsesc: 2.5.2
@@ -11040,9 +11393,17 @@ snapshots:
11040
11393
  '@jridgewell/trace-mapping': 0.3.31
11041
11394
  jsesc: 3.1.0
11042
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
+
11043
11404
  '@babel/helper-annotate-as-pure@7.22.5':
11044
11405
  dependencies:
11045
- '@babel/types': 7.24.6
11406
+ '@babel/types': 7.28.6
11046
11407
 
11047
11408
  '@babel/helper-annotate-as-pure@7.27.3':
11048
11409
  dependencies:
@@ -11050,7 +11411,7 @@ snapshots:
11050
11411
 
11051
11412
  '@babel/helper-builder-binary-assignment-operator-visitor@7.22.10':
11052
11413
  dependencies:
11053
- '@babel/types': 7.24.6
11414
+ '@babel/types': 7.28.6
11054
11415
 
11055
11416
  '@babel/helper-compilation-targets@7.22.10':
11056
11417
  dependencies:
@@ -11140,7 +11501,7 @@ snapshots:
11140
11501
  '@babel/helper-function-name@7.22.5':
11141
11502
  dependencies:
11142
11503
  '@babel/template': 7.27.2
11143
- '@babel/types': 7.24.6
11504
+ '@babel/types': 7.28.6
11144
11505
 
11145
11506
  '@babel/helper-function-name@7.24.7':
11146
11507
  dependencies:
@@ -11151,7 +11512,7 @@ snapshots:
11151
11512
 
11152
11513
  '@babel/helper-hoist-variables@7.22.5':
11153
11514
  dependencies:
11154
- '@babel/types': 7.24.6
11515
+ '@babel/types': 7.28.6
11155
11516
 
11156
11517
  '@babel/helper-hoist-variables@7.24.7':
11157
11518
  dependencies:
@@ -11159,7 +11520,7 @@ snapshots:
11159
11520
 
11160
11521
  '@babel/helper-member-expression-to-functions@7.22.5':
11161
11522
  dependencies:
11162
- '@babel/types': 7.24.6
11523
+ '@babel/types': 7.28.6
11163
11524
 
11164
11525
  '@babel/helper-member-expression-to-functions@7.28.5':
11165
11526
  dependencies:
@@ -11174,7 +11535,7 @@ snapshots:
11174
11535
 
11175
11536
  '@babel/helper-module-imports@7.21.4':
11176
11537
  dependencies:
11177
- '@babel/types': 7.24.6
11538
+ '@babel/types': 7.28.6
11178
11539
 
11179
11540
  '@babel/helper-module-imports@7.27.1':
11180
11541
  dependencies:
@@ -11190,7 +11551,7 @@ snapshots:
11190
11551
  '@babel/helper-module-imports': 7.27.1
11191
11552
  '@babel/helper-simple-access': 7.22.5
11192
11553
  '@babel/helper-split-export-declaration': 7.22.6
11193
- '@babel/helper-validator-identifier': 7.24.6
11554
+ '@babel/helper-validator-identifier': 7.28.5
11194
11555
  transitivePeerDependencies:
11195
11556
  - supports-color
11196
11557
 
@@ -11205,7 +11566,7 @@ snapshots:
11205
11566
 
11206
11567
  '@babel/helper-optimise-call-expression@7.22.5':
11207
11568
  dependencies:
11208
- '@babel/types': 7.24.6
11569
+ '@babel/types': 7.28.6
11209
11570
 
11210
11571
  '@babel/helper-optimise-call-expression@7.27.1':
11211
11572
  dependencies:
@@ -11249,11 +11610,11 @@ snapshots:
11249
11610
 
11250
11611
  '@babel/helper-simple-access@7.22.5':
11251
11612
  dependencies:
11252
- '@babel/types': 7.24.6
11613
+ '@babel/types': 7.28.6
11253
11614
 
11254
11615
  '@babel/helper-skip-transparent-expression-wrappers@7.24.6':
11255
11616
  dependencies:
11256
- '@babel/types': 7.24.6
11617
+ '@babel/types': 7.28.6
11257
11618
 
11258
11619
  '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
11259
11620
  dependencies:
@@ -11264,7 +11625,7 @@ snapshots:
11264
11625
 
11265
11626
  '@babel/helper-split-export-declaration@7.22.6':
11266
11627
  dependencies:
11267
- '@babel/types': 7.24.6
11628
+ '@babel/types': 7.28.6
11268
11629
 
11269
11630
  '@babel/helper-split-export-declaration@7.24.7':
11270
11631
  dependencies:
@@ -11286,7 +11647,7 @@ snapshots:
11286
11647
  dependencies:
11287
11648
  '@babel/helper-function-name': 7.22.5
11288
11649
  '@babel/template': 7.27.2
11289
- '@babel/types': 7.24.6
11650
+ '@babel/types': 7.28.6
11290
11651
 
11291
11652
  '@babel/helper-wrap-function@7.28.3':
11292
11653
  dependencies:
@@ -11298,9 +11659,9 @@ snapshots:
11298
11659
 
11299
11660
  '@babel/helpers@7.21.0':
11300
11661
  dependencies:
11301
- '@babel/template': 7.20.7
11302
- '@babel/traverse': 7.21.4
11303
- '@babel/types': 7.24.6
11662
+ '@babel/template': 7.27.2
11663
+ '@babel/traverse': 7.28.5
11664
+ '@babel/types': 7.28.6
11304
11665
  transitivePeerDependencies:
11305
11666
  - supports-color
11306
11667
 
@@ -11311,13 +11672,13 @@ snapshots:
11311
11672
 
11312
11673
  '@babel/highlight@7.22.10':
11313
11674
  dependencies:
11314
- '@babel/helper-validator-identifier': 7.24.6
11675
+ '@babel/helper-validator-identifier': 7.28.5
11315
11676
  chalk: 2.4.2
11316
11677
  js-tokens: 4.0.0
11317
11678
 
11318
11679
  '@babel/parser@7.21.4':
11319
11680
  dependencies:
11320
- '@babel/types': 7.24.6
11681
+ '@babel/types': 7.28.6
11321
11682
 
11322
11683
  '@babel/parser@7.24.4':
11323
11684
  dependencies:
@@ -11327,6 +11688,10 @@ snapshots:
11327
11688
  dependencies:
11328
11689
  '@babel/types': 7.28.6
11329
11690
 
11691
+ '@babel/parser@7.29.0':
11692
+ dependencies:
11693
+ '@babel/types': 7.29.0
11694
+
11330
11695
  '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.28.5)':
11331
11696
  dependencies:
11332
11697
  '@babel/core': 7.28.5
@@ -11974,7 +12339,7 @@ snapshots:
11974
12339
  '@babel/helper-hoist-variables': 7.22.5
11975
12340
  '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.4)
11976
12341
  '@babel/helper-plugin-utils': 7.24.6
11977
- '@babel/helper-validator-identifier': 7.24.6
12342
+ '@babel/helper-validator-identifier': 7.28.5
11978
12343
  transitivePeerDependencies:
11979
12344
  - supports-color
11980
12345
 
@@ -12387,7 +12752,7 @@ snapshots:
12387
12752
  '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.21.4)
12388
12753
  '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.21.4)
12389
12754
  '@babel/preset-modules': 0.1.6(@babel/core@7.21.4)
12390
- '@babel/types': 7.24.6
12755
+ '@babel/types': 7.28.6
12391
12756
  babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.4)
12392
12757
  babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.4)
12393
12758
  babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.4)
@@ -12478,7 +12843,7 @@ snapshots:
12478
12843
  '@babel/helper-plugin-utils': 7.24.6
12479
12844
  '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.4)
12480
12845
  '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.21.4)
12481
- '@babel/types': 7.24.6
12846
+ '@babel/types': 7.28.6
12482
12847
  esutils: 2.0.3
12483
12848
 
12484
12849
  '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.5)':
@@ -12525,9 +12890,9 @@ snapshots:
12525
12890
 
12526
12891
  '@babel/template@7.20.7':
12527
12892
  dependencies:
12528
- '@babel/code-frame': 7.22.10
12529
- '@babel/parser': 7.21.4
12530
- '@babel/types': 7.24.6
12893
+ '@babel/code-frame': 7.27.1
12894
+ '@babel/parser': 7.28.5
12895
+ '@babel/types': 7.28.6
12531
12896
 
12532
12897
  '@babel/template@7.27.2':
12533
12898
  dependencies:
@@ -12535,16 +12900,22 @@ snapshots:
12535
12900
  '@babel/parser': 7.28.5
12536
12901
  '@babel/types': 7.28.6
12537
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
+
12538
12909
  '@babel/traverse@7.21.4':
12539
12910
  dependencies:
12540
- '@babel/code-frame': 7.22.10
12541
- '@babel/generator': 7.21.4
12911
+ '@babel/code-frame': 7.27.1
12912
+ '@babel/generator': 7.28.5
12542
12913
  '@babel/helper-environment-visitor': 7.22.5
12543
12914
  '@babel/helper-function-name': 7.22.5
12544
12915
  '@babel/helper-hoist-variables': 7.22.5
12545
12916
  '@babel/helper-split-export-declaration': 7.22.6
12546
- '@babel/parser': 7.21.4
12547
- '@babel/types': 7.24.6
12917
+ '@babel/parser': 7.28.5
12918
+ '@babel/types': 7.28.6
12548
12919
  debug: 4.4.3
12549
12920
  globals: 11.12.0
12550
12921
  transitivePeerDependencies:
@@ -12577,6 +12948,18 @@ snapshots:
12577
12948
  transitivePeerDependencies:
12578
12949
  - supports-color
12579
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
+
12580
12963
  '@babel/types@7.24.0':
12581
12964
  dependencies:
12582
12965
  '@babel/helper-string-parser': 7.27.1
@@ -12585,8 +12968,8 @@ snapshots:
12585
12968
 
12586
12969
  '@babel/types@7.24.6':
12587
12970
  dependencies:
12588
- '@babel/helper-string-parser': 7.24.6
12589
- '@babel/helper-validator-identifier': 7.24.6
12971
+ '@babel/helper-string-parser': 7.27.1
12972
+ '@babel/helper-validator-identifier': 7.28.5
12590
12973
  to-fast-properties: 2.0.0
12591
12974
 
12592
12975
  '@babel/types@7.28.6':
@@ -12594,6 +12977,11 @@ snapshots:
12594
12977
  '@babel/helper-string-parser': 7.27.1
12595
12978
  '@babel/helper-validator-identifier': 7.28.5
12596
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
+
12597
12985
  '@borewit/text-codec@0.2.1': {}
12598
12986
 
12599
12987
  '@cacheable/memory@2.0.7':
@@ -14617,9 +15005,9 @@ snapshots:
14617
15005
  dependencies:
14618
15006
  defer-to-connect: 1.1.3
14619
15007
 
14620
- '@tailwindcss-mangle/config@6.1.0':
15008
+ '@tailwindcss-mangle/config@6.1.3':
14621
15009
  dependencies:
14622
- '@tailwindcss-mangle/shared': 4.1.1
15010
+ '@tailwindcss-mangle/shared': 4.1.3
14623
15011
  c12: 3.3.3
14624
15012
  fs-extra: 11.3.3
14625
15013
  is-css-request: 1.0.1
@@ -14627,7 +15015,7 @@ snapshots:
14627
15015
  transitivePeerDependencies:
14628
15016
  - magicast
14629
15017
 
14630
- '@tailwindcss-mangle/shared@4.1.1': {}
15018
+ '@tailwindcss-mangle/shared@4.1.3': {}
14631
15019
 
14632
15020
  '@tailwindcss/node@4.1.18':
14633
15021
  dependencies:
@@ -14639,6 +15027,16 @@ snapshots:
14639
15027
  source-map-js: 1.2.1
14640
15028
  tailwindcss: 4.1.18
14641
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
+
14642
15040
  '@tailwindcss/oxide-android-arm64@4.1.18':
14643
15041
  optional: true
14644
15042
 
@@ -14748,12 +15146,12 @@ snapshots:
14748
15146
  - debug
14749
15147
  - supports-color
14750
15148
 
14751
- '@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))':
14752
15150
  dependencies:
14753
15151
  '@babel/runtime': 7.28.4
14754
- '@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))
14755
15153
  '@tarojs/shared': 4.1.9
14756
- '@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))
14757
15155
  classnames: 2.5.1
14758
15156
  identity-obj-proxy: 3.0.0
14759
15157
  react: 18.3.1
@@ -14771,12 +15169,12 @@ snapshots:
14771
15169
  - webpack-chain
14772
15170
  - webpack-dev-server
14773
15171
 
14774
- '@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)(esbuild@0.25.12))':
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))':
14775
15173
  dependencies:
14776
15174
  '@stencil/core': 2.22.3
14777
15175
  '@tarojs/runtime': 4.1.9
14778
15176
  '@tarojs/shared': 4.1.9
14779
- '@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))
14780
15178
  classnames: 2.5.1
14781
15179
  hammerjs: 2.0.8
14782
15180
  hls.js: 1.6.15
@@ -14916,7 +15314,7 @@ snapshots:
14916
15314
  transitivePeerDependencies:
14917
15315
  - supports-color
14918
15316
 
14919
- '@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))':
14920
15318
  dependencies:
14921
15319
  '@tarojs/helper': 4.1.9
14922
15320
  '@tarojs/runtime': 4.1.9
@@ -14926,10 +15324,10 @@ snapshots:
14926
15324
  lodash: 4.17.21
14927
15325
  tslib: 2.8.1
14928
15326
  optionalDependencies:
14929
- '@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))
14930
15328
  react: 18.3.1
14931
- 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)
14932
- 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)
14933
15331
 
14934
15332
  '@tarojs/plugin-generator@4.1.9(@types/node@22.19.6)':
14935
15333
  dependencies:
@@ -14948,7 +15346,7 @@ snapshots:
14948
15346
  - babel-plugin-macros
14949
15347
  - supports-color
14950
15348
 
14951
- '@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))':
14952
15350
  dependencies:
14953
15351
  axios: 1.13.2
14954
15352
  jimp: 0.22.12
@@ -14958,20 +15356,22 @@ snapshots:
14958
15356
  qrcode: 1.5.4
14959
15357
  resolve: 1.22.11
14960
15358
  shelljs: 0.8.5
15359
+ optionalDependencies:
15360
+ tt-ide-cli: 0.1.31(@types/node@22.19.6)
14961
15361
  transitivePeerDependencies:
14962
15362
  - debug
14963
15363
  - encoding
14964
15364
 
14965
- '@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))':
14966
15366
  dependencies:
14967
15367
  '@babel/core': 7.28.5
14968
- '@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))
14969
- '@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))
14970
15370
  '@tarojs/helper': 4.1.9
14971
15371
  '@tarojs/runtime': 4.1.9
14972
15372
  '@tarojs/service': 4.1.9
14973
15373
  '@tarojs/shared': 4.1.9
14974
- '@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)))
14975
15375
  babel-plugin-transform-taroapi: 4.1.9(@babel/core@7.28.5)
14976
15376
  change-case: 4.1.2
14977
15377
  lodash-es: 4.17.21
@@ -14991,6 +15391,12 @@ snapshots:
14991
15391
  - webpack-chain
14992
15392
  - webpack-dev-server
14993
15393
 
15394
+ '@tarojs/plugin-platform-tt@4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)':
15395
+ dependencies:
15396
+ '@tarojs/service': 4.1.9
15397
+ '@tarojs/shared': 4.1.9
15398
+ webpack-sources: 3.3.3
15399
+
14994
15400
  '@tarojs/plugin-platform-weapp@4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)':
14995
15401
  dependencies:
14996
15402
  '@tarojs/service': 4.1.9
@@ -15003,11 +15409,11 @@ snapshots:
15003
15409
  react: 18.3.1
15004
15410
  react-reconciler: 0.29.0(react@18.3.1)
15005
15411
 
15006
- '@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)))':
15007
15413
  dependencies:
15008
15414
  '@tarojs/runtime': 4.1.9
15009
15415
  '@tarojs/shared': 4.1.9
15010
- '@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))
15011
15417
  dingtalk-jsapi: 2.15.6
15012
15418
  history: 5.3.0
15013
15419
  mobile-detect: 1.4.5
@@ -15046,11 +15452,11 @@ snapshots:
15046
15452
 
15047
15453
  '@tarojs/shared@4.1.9': {}
15048
15454
 
15049
- '@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)))':
15050
15456
  dependencies:
15051
15457
  '@tarojs/api': 4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)
15052
- '@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))
15053
- '@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)))
15054
15460
  '@tarojs/runtime': 4.1.9
15055
15461
  '@tarojs/shared': 4.1.9
15056
15462
  abortcontroller-polyfill: 1.7.8
@@ -15066,10 +15472,10 @@ snapshots:
15066
15472
  transitivePeerDependencies:
15067
15473
  - '@tarojs/taro'
15068
15474
 
15069
- '@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))':
15070
15476
  dependencies:
15071
15477
  '@tarojs/api': 4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)
15072
- '@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))
15073
15479
  '@tarojs/helper': 4.1.9
15074
15480
  '@tarojs/runtime': 4.1.9
15075
15481
  '@tarojs/shared': 4.1.9
@@ -15078,9 +15484,9 @@ snapshots:
15078
15484
  optionalDependencies:
15079
15485
  '@types/react': 18.3.27
15080
15486
  rollup: 3.29.5
15081
- webpack: 5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)
15487
+ webpack: 5.97.1(@swc/core@1.3.96)
15082
15488
 
15083
- '@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))':
15084
15490
  dependencies:
15085
15491
  '@ampproject/remapping': 2.3.0
15086
15492
  '@babel/core': 7.28.5
@@ -15093,7 +15499,7 @@ snapshots:
15093
15499
  '@tarojs/runner-utils': 4.1.9
15094
15500
  '@tarojs/runtime': 4.1.9
15095
15501
  '@tarojs/shared': 4.1.9
15096
- '@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))
15097
15503
  acorn-walk: 8.3.4
15098
15504
  autoprefixer: 10.4.23(postcss@8.5.6)
15099
15505
  babel-plugin-transform-taroapi: 4.1.9(@babel/core@7.28.5)
@@ -15116,8 +15522,8 @@ snapshots:
15116
15522
  regenerator-runtime: 0.11.1
15117
15523
  sax: 1.2.4
15118
15524
  stylelint: 16.26.1(typescript@5.9.3)
15119
- 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)
15120
- 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))
15121
15527
  transitivePeerDependencies:
15122
15528
  - '@swc/helpers'
15123
15529
  - '@types/babel__core'
@@ -15146,6 +15552,14 @@ snapshots:
15146
15552
  minimatch: 10.1.1
15147
15553
  path-browserify: 1.0.1
15148
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
+
15149
15563
  '@types/archy@0.0.31': {}
15150
15564
 
15151
15565
  '@types/babel__core@7.20.5':
@@ -15186,10 +15600,6 @@ snapshots:
15186
15600
  dependencies:
15187
15601
  '@types/ms': 2.1.0
15188
15602
 
15189
- '@types/dotenv@8.2.3':
15190
- dependencies:
15191
- dotenv: 17.2.3
15192
-
15193
15603
  '@types/eslint-scope@3.7.7':
15194
15604
  dependencies:
15195
15605
  '@types/eslint': 9.6.1
@@ -15308,7 +15718,7 @@ snapshots:
15308
15718
  graphemer: 1.4.0
15309
15719
  ignore: 5.3.2
15310
15720
  natural-compare: 1.4.0
15311
- semver: 7.7.3
15721
+ semver: 7.7.4
15312
15722
  ts-api-utils: 1.4.3(typescript@5.9.3)
15313
15723
  optionalDependencies:
15314
15724
  typescript: 5.9.3
@@ -15355,7 +15765,7 @@ snapshots:
15355
15765
  globby: 11.1.0
15356
15766
  is-glob: 4.0.3
15357
15767
  minimatch: 9.0.3
15358
- semver: 7.7.3
15768
+ semver: 7.7.4
15359
15769
  ts-api-utils: 1.4.3(typescript@5.9.3)
15360
15770
  optionalDependencies:
15361
15771
  typescript: 5.9.3
@@ -15371,7 +15781,7 @@ snapshots:
15371
15781
  '@typescript-eslint/types': 6.21.0
15372
15782
  '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.3)
15373
15783
  eslint: 8.57.1
15374
- semver: 7.7.3
15784
+ semver: 7.7.4
15375
15785
  transitivePeerDependencies:
15376
15786
  - supports-color
15377
15787
  - typescript
@@ -15383,7 +15793,7 @@ snapshots:
15383
15793
 
15384
15794
  '@ungap/structured-clone@1.3.0': {}
15385
15795
 
15386
- '@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))':
15387
15797
  dependencies:
15388
15798
  '@babel/core': 7.28.5
15389
15799
  '@babel/preset-env': 7.28.5(@babel/core@7.28.5)
@@ -15393,11 +15803,11 @@ snapshots:
15393
15803
  regenerator-runtime: 0.13.11
15394
15804
  systemjs: 6.15.1
15395
15805
  terser: 5.44.1
15396
- 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)
15397
15807
  transitivePeerDependencies:
15398
15808
  - supports-color
15399
15809
 
15400
- '@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))':
15401
15811
  dependencies:
15402
15812
  '@babel/core': 7.28.5
15403
15813
  '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5)
@@ -15405,39 +15815,39 @@ snapshots:
15405
15815
  '@rolldown/pluginutils': 1.0.0-beta.27
15406
15816
  '@types/babel__core': 7.20.5
15407
15817
  react-refresh: 0.17.0
15408
- 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)
15409
15819
  transitivePeerDependencies:
15410
15820
  - supports-color
15411
15821
 
15412
- '@vue/compiler-core@3.5.26':
15822
+ '@vue/compiler-core@3.5.30':
15413
15823
  dependencies:
15414
- '@babel/parser': 7.28.5
15415
- '@vue/shared': 3.5.26
15416
- entities: 7.0.0
15824
+ '@babel/parser': 7.29.0
15825
+ '@vue/shared': 3.5.30
15826
+ entities: 7.0.1
15417
15827
  estree-walker: 2.0.2
15418
15828
  source-map-js: 1.2.1
15419
15829
 
15420
- '@vue/compiler-dom@3.5.26':
15830
+ '@vue/compiler-dom@3.5.30':
15421
15831
  dependencies:
15422
- '@vue/compiler-core': 3.5.26
15423
- '@vue/shared': 3.5.26
15832
+ '@vue/compiler-core': 3.5.30
15833
+ '@vue/shared': 3.5.30
15424
15834
 
15425
- '@vue/compiler-sfc@3.5.26':
15835
+ '@vue/compiler-sfc@3.5.30':
15426
15836
  dependencies:
15427
- '@babel/parser': 7.28.5
15428
- '@vue/compiler-core': 3.5.26
15429
- '@vue/compiler-dom': 3.5.26
15430
- '@vue/compiler-ssr': 3.5.26
15431
- '@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
15432
15842
  estree-walker: 2.0.2
15433
15843
  magic-string: 0.30.21
15434
- postcss: 8.5.6
15844
+ postcss: 8.5.8
15435
15845
  source-map-js: 1.2.1
15436
15846
 
15437
- '@vue/compiler-ssr@3.5.26':
15847
+ '@vue/compiler-ssr@3.5.30':
15438
15848
  dependencies:
15439
- '@vue/compiler-dom': 3.5.26
15440
- '@vue/shared': 3.5.26
15849
+ '@vue/compiler-dom': 3.5.30
15850
+ '@vue/shared': 3.5.30
15441
15851
 
15442
15852
  '@vue/reactivity@3.0.5':
15443
15853
  dependencies:
@@ -15445,9 +15855,9 @@ snapshots:
15445
15855
 
15446
15856
  '@vue/shared@3.0.5': {}
15447
15857
 
15448
- '@vue/shared@3.5.26': {}
15858
+ '@vue/shared@3.5.30': {}
15449
15859
 
15450
- '@weapp-core/escape@6.0.1': {}
15860
+ '@weapp-core/escape@7.0.0': {}
15451
15861
 
15452
15862
  '@weapp-core/regex@1.0.1': {}
15453
15863
 
@@ -15462,19 +15872,20 @@ snapshots:
15462
15872
  postcss-selector-parser: 7.1.1
15463
15873
  postcss-value-parser: 4.2.0
15464
15874
 
15465
- '@weapp-tailwindcss/postcss@2.1.0':
15875
+ '@weapp-tailwindcss/postcss@2.1.5':
15466
15876
  dependencies:
15467
- '@weapp-core/escape': 6.0.1
15877
+ '@weapp-core/escape': 7.0.0
15468
15878
  '@weapp-tailwindcss/postcss-calc': 1.0.0(postcss@8.5.6)
15469
- '@weapp-tailwindcss/shared': 1.1.1
15879
+ '@weapp-tailwindcss/shared': 1.1.2
15470
15880
  postcss: 8.5.6
15471
15881
  postcss-preset-env: 10.6.1(postcss@8.5.6)
15472
- postcss-pxtrans: 1.0.0(postcss@8.5.6)
15473
- 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)
15474
15884
  postcss-selector-parser: 7.1.1
15885
+ postcss-units-to-px: 0.2.0(postcss@8.5.6)
15475
15886
  postcss-value-parser: 4.2.0
15476
15887
 
15477
- '@weapp-tailwindcss/shared@1.1.1':
15888
+ '@weapp-tailwindcss/shared@1.1.2':
15478
15889
  dependencies:
15479
15890
  pathe: 2.0.3
15480
15891
 
@@ -15688,6 +16099,8 @@ snapshots:
15688
16099
 
15689
16100
  append-field@1.0.0: {}
15690
16101
 
16102
+ arch@2.2.0: {}
16103
+
15691
16104
  archive-type@4.0.0:
15692
16105
  dependencies:
15693
16106
  file-type: 4.4.0
@@ -15791,6 +16204,17 @@ snapshots:
15791
16204
  es-abstract: 1.24.1
15792
16205
  es-shim-unscopables: 1.1.0
15793
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
+
15794
16218
  array.prototype.tosorted@1.1.4:
15795
16219
  dependencies:
15796
16220
  call-bind: 1.0.8
@@ -16504,6 +16928,11 @@ snapshots:
16504
16928
 
16505
16929
  binary-extensions@2.3.0: {}
16506
16930
 
16931
+ binary@0.3.0:
16932
+ dependencies:
16933
+ buffers: 0.1.1
16934
+ chainsaw: 0.1.0
16935
+
16507
16936
  bindings@1.5.0:
16508
16937
  dependencies:
16509
16938
  file-uri-to-path: 1.0.0
@@ -16525,6 +16954,8 @@ snapshots:
16525
16954
  inherits: 2.0.4
16526
16955
  readable-stream: 3.6.2
16527
16956
 
16957
+ bluebird@3.4.7: {}
16958
+
16528
16959
  bmp-js@0.1.0: {}
16529
16960
 
16530
16961
  body-parser@1.20.3:
@@ -16606,6 +17037,8 @@ snapshots:
16606
17037
 
16607
17038
  buffer-from@1.1.2: {}
16608
17039
 
17040
+ buffer-indexof-polyfill@1.0.2: {}
17041
+
16609
17042
  buffer@5.6.0:
16610
17043
  dependencies:
16611
17044
  base64-js: 1.5.1
@@ -16621,6 +17054,8 @@ snapshots:
16621
17054
  base64-js: 1.5.1
16622
17055
  ieee754: 1.2.1
16623
17056
 
17057
+ buffers@0.1.1: {}
17058
+
16624
17059
  busboy@1.6.0:
16625
17060
  dependencies:
16626
17061
  streamsearch: 1.1.0
@@ -16735,6 +17170,10 @@ snapshots:
16735
17170
  transitivePeerDependencies:
16736
17171
  - debug
16737
17172
 
17173
+ chainsaw@0.1.0:
17174
+ dependencies:
17175
+ traverse: 0.3.9
17176
+
16738
17177
  chalk@1.1.3:
16739
17178
  dependencies:
16740
17179
  ansi-styles: 2.2.1
@@ -16810,6 +17249,10 @@ snapshots:
16810
17249
  dependencies:
16811
17250
  consola: 3.4.2
16812
17251
 
17252
+ class-variance-authority@0.7.1:
17253
+ dependencies:
17254
+ clsx: 2.1.1
17255
+
16813
17256
  classnames@2.5.1: {}
16814
17257
 
16815
17258
  clean-css@4.2.4:
@@ -16854,6 +17297,12 @@ snapshots:
16854
17297
 
16855
17298
  cli-width@4.1.0: {}
16856
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
+
16857
17306
  cliui@6.0.0:
16858
17307
  dependencies:
16859
17308
  string-width: 4.2.3
@@ -16890,6 +17339,8 @@ snapshots:
16890
17339
 
16891
17340
  clone@1.0.4: {}
16892
17341
 
17342
+ clsx@2.1.1: {}
17343
+
16893
17344
  code-block-writer@13.0.3: {}
16894
17345
 
16895
17346
  color-convert@1.9.3:
@@ -16932,6 +17383,8 @@ snapshots:
16932
17383
 
16933
17384
  commander@4.1.1: {}
16934
17385
 
17386
+ commander@5.1.0: {}
17387
+
16935
17388
  commander@7.2.0: {}
16936
17389
 
16937
17390
  commander@9.5.0: {}
@@ -16981,7 +17434,7 @@ snapshots:
16981
17434
  make-dir: 3.1.0
16982
17435
  onetime: 5.1.2
16983
17436
  pkg-up: 3.1.0
16984
- semver: 7.7.3
17437
+ semver: 7.7.4
16985
17438
 
16986
17439
  confbox@0.1.8: {}
16987
17440
 
@@ -17107,6 +17560,14 @@ snapshots:
17107
17560
  crc-32: 1.2.2
17108
17561
  readable-stream: 3.6.2
17109
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
+
17110
17571
  cross-spawn@7.0.6:
17111
17572
  dependencies:
17112
17573
  path-key: 3.1.1
@@ -17235,6 +17696,8 @@ snapshots:
17235
17696
  es-errors: 1.3.0
17236
17697
  is-data-view: 1.0.2
17237
17698
 
17699
+ date-fns@4.1.0: {}
17700
+
17238
17701
  dateformat@2.2.0: {}
17239
17702
 
17240
17703
  debounce-fn@4.0.0:
@@ -17249,6 +17712,10 @@ snapshots:
17249
17712
  dependencies:
17250
17713
  ms: 2.1.3
17251
17714
 
17715
+ debug@4.4.0:
17716
+ dependencies:
17717
+ ms: 2.1.3
17718
+
17252
17719
  debug@4.4.3:
17253
17720
  dependencies:
17254
17721
  ms: 2.1.3
@@ -17309,6 +17776,8 @@ snapshots:
17309
17776
 
17310
17777
  dedent@1.7.1: {}
17311
17778
 
17779
+ deep-clone@3.0.3: {}
17780
+
17312
17781
  deep-extend@0.6.0: {}
17313
17782
 
17314
17783
  deep-is@0.1.4: {}
@@ -17490,10 +17959,20 @@ snapshots:
17490
17959
  dependencies:
17491
17960
  readable-stream: 1.1.14
17492
17961
 
17962
+ duplexer2@0.1.4:
17963
+ dependencies:
17964
+ readable-stream: 2.3.8
17965
+
17493
17966
  duplexer3@0.1.5: {}
17494
17967
 
17495
17968
  eastasianwidth@0.2.0: {}
17496
17969
 
17970
+ easy-table@1.2.0:
17971
+ dependencies:
17972
+ ansi-regex: 5.0.1
17973
+ optionalDependencies:
17974
+ wcwidth: 1.0.1
17975
+
17497
17976
  ecc-jsbn@0.1.2:
17498
17977
  dependencies:
17499
17978
  jsbn: 0.1.1
@@ -17524,13 +18003,16 @@ snapshots:
17524
18003
  graceful-fs: 4.2.11
17525
18004
  tapable: 2.3.0
17526
18005
 
18006
+ enhanced-resolve@5.20.0:
18007
+ dependencies:
18008
+ graceful-fs: 4.2.11
18009
+ tapable: 2.3.0
18010
+
17527
18011
  entities@2.2.0: {}
17528
18012
 
17529
18013
  entities@4.5.0: {}
17530
18014
 
17531
- entities@6.0.1: {}
17532
-
17533
- entities@7.0.0: {}
18015
+ entities@7.0.1: {}
17534
18016
 
17535
18017
  env-paths@2.2.1: {}
17536
18018
 
@@ -17603,6 +18085,8 @@ snapshots:
17603
18085
  unbox-primitive: 1.1.0
17604
18086
  which-typed-array: 1.1.19
17605
18087
 
18088
+ es-array-method-boxes-properly@1.0.0: {}
18089
+
17606
18090
  es-define-property@1.0.1: {}
17607
18091
 
17608
18092
  es-errors@1.3.0: {}
@@ -17834,6 +18318,12 @@ snapshots:
17834
18318
  string.prototype.matchall: 4.0.12
17835
18319
  string.prototype.repeat: 1.0.0
17836
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
+
17837
18327
  eslint-scope@5.1.1:
17838
18328
  dependencies:
17839
18329
  esrecurse: 4.3.0
@@ -17977,6 +18467,16 @@ snapshots:
17977
18467
 
17978
18468
  events@3.3.0: {}
17979
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
+
17980
18480
  execa@5.1.1:
17981
18481
  dependencies:
17982
18482
  cross-spawn: 7.0.6
@@ -18092,6 +18592,14 @@ snapshots:
18092
18592
 
18093
18593
  fast-deep-equal@3.1.3: {}
18094
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
+
18095
18603
  fast-glob@3.3.3:
18096
18604
  dependencies:
18097
18605
  '@nodelib/fs.stat': 2.0.5
@@ -18250,6 +18758,13 @@ snapshots:
18250
18758
 
18251
18759
  flatted@3.3.3: {}
18252
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
+
18253
18768
  follow-redirects@1.15.11: {}
18254
18769
 
18255
18770
  for-each@0.3.5:
@@ -18315,6 +18830,12 @@ snapshots:
18315
18830
  jsonfile: 6.2.0
18316
18831
  universalify: 2.0.1
18317
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
+
18318
18839
  fs-extra@11.3.3:
18319
18840
  dependencies:
18320
18841
  graceful-fs: 4.2.11
@@ -18334,6 +18855,13 @@ snapshots:
18334
18855
  fsevents@2.3.3:
18335
18856
  optional: true
18336
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
+
18337
18865
  function-bind@1.1.2: {}
18338
18866
 
18339
18867
  function.prototype.name@1.1.8:
@@ -18347,6 +18875,8 @@ snapshots:
18347
18875
 
18348
18876
  functions-have-names@1.2.3: {}
18349
18877
 
18878
+ fuse.js@7.1.0: {}
18879
+
18350
18880
  generator-function@2.0.1: {}
18351
18881
 
18352
18882
  generic-names@4.0.0:
@@ -18705,12 +19235,12 @@ snapshots:
18705
19235
 
18706
19236
  html-tags@3.3.1: {}
18707
19237
 
18708
- htmlparser2@10.0.0:
19238
+ htmlparser2@10.1.0:
18709
19239
  dependencies:
18710
19240
  domelementtype: 2.3.0
18711
19241
  domhandler: 5.0.3
18712
19242
  domutils: 3.2.2
18713
- entities: 6.0.1
19243
+ entities: 7.0.1
18714
19244
 
18715
19245
  http-cache-semantics@3.8.1: {}
18716
19246
 
@@ -18935,6 +19465,8 @@ snapshots:
18935
19465
  call-bound: 1.0.4
18936
19466
  has-tostringtag: 1.0.2
18937
19467
 
19468
+ is-docker@2.2.1: {}
19469
+
18938
19470
  is-extglob@2.1.1: {}
18939
19471
 
18940
19472
  is-finalizationregistry@1.1.1:
@@ -19053,6 +19585,10 @@ snapshots:
19053
19585
 
19054
19586
  is-what@3.14.1: {}
19055
19587
 
19588
+ is-wsl@2.2.0:
19589
+ dependencies:
19590
+ is-docker: 2.2.1
19591
+
19056
19592
  isarray@0.0.1: {}
19057
19593
 
19058
19594
  isarray@1.0.0: {}
@@ -19257,7 +19793,7 @@ snapshots:
19257
19793
  chalk: 4.1.2
19258
19794
  console-table-printer: 2.15.0
19259
19795
  p-queue: 6.6.2
19260
- semver: 7.7.3
19796
+ semver: 7.7.4
19261
19797
  uuid: 10.0.0
19262
19798
  optionalDependencies:
19263
19799
  openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
@@ -19300,36 +19836,69 @@ snapshots:
19300
19836
  lightningcss-android-arm64@1.30.2:
19301
19837
  optional: true
19302
19838
 
19839
+ lightningcss-android-arm64@1.31.1:
19840
+ optional: true
19841
+
19303
19842
  lightningcss-darwin-arm64@1.30.2:
19304
19843
  optional: true
19305
19844
 
19845
+ lightningcss-darwin-arm64@1.31.1:
19846
+ optional: true
19847
+
19306
19848
  lightningcss-darwin-x64@1.30.2:
19307
19849
  optional: true
19308
19850
 
19851
+ lightningcss-darwin-x64@1.31.1:
19852
+ optional: true
19853
+
19309
19854
  lightningcss-freebsd-x64@1.30.2:
19310
19855
  optional: true
19311
19856
 
19857
+ lightningcss-freebsd-x64@1.31.1:
19858
+ optional: true
19859
+
19312
19860
  lightningcss-linux-arm-gnueabihf@1.30.2:
19313
19861
  optional: true
19314
19862
 
19863
+ lightningcss-linux-arm-gnueabihf@1.31.1:
19864
+ optional: true
19865
+
19315
19866
  lightningcss-linux-arm64-gnu@1.30.2:
19316
19867
  optional: true
19317
19868
 
19869
+ lightningcss-linux-arm64-gnu@1.31.1:
19870
+ optional: true
19871
+
19318
19872
  lightningcss-linux-arm64-musl@1.30.2:
19319
19873
  optional: true
19320
19874
 
19875
+ lightningcss-linux-arm64-musl@1.31.1:
19876
+ optional: true
19877
+
19321
19878
  lightningcss-linux-x64-gnu@1.30.2:
19322
19879
  optional: true
19323
19880
 
19881
+ lightningcss-linux-x64-gnu@1.31.1:
19882
+ optional: true
19883
+
19324
19884
  lightningcss-linux-x64-musl@1.30.2:
19325
19885
  optional: true
19326
19886
 
19887
+ lightningcss-linux-x64-musl@1.31.1:
19888
+ optional: true
19889
+
19327
19890
  lightningcss-win32-arm64-msvc@1.30.2:
19328
19891
  optional: true
19329
19892
 
19893
+ lightningcss-win32-arm64-msvc@1.31.1:
19894
+ optional: true
19895
+
19330
19896
  lightningcss-win32-x64-msvc@1.30.2:
19331
19897
  optional: true
19332
19898
 
19899
+ lightningcss-win32-x64-msvc@1.31.1:
19900
+ optional: true
19901
+
19333
19902
  lightningcss@1.30.2:
19334
19903
  dependencies:
19335
19904
  detect-libc: 2.1.2
@@ -19346,6 +19915,22 @@ snapshots:
19346
19915
  lightningcss-win32-arm64-msvc: 1.30.2
19347
19916
  lightningcss-win32-x64-msvc: 1.30.2
19348
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
+
19349
19934
  lilconfig@2.1.0: {}
19350
19935
 
19351
19936
  lilconfig@3.1.3: {}
@@ -19362,6 +19947,8 @@ snapshots:
19362
19947
  string-argv: 0.3.2
19363
19948
  yaml: 2.8.2
19364
19949
 
19950
+ listenercount@1.0.1: {}
19951
+
19365
19952
  listr2@9.0.5:
19366
19953
  dependencies:
19367
19954
  cli-truncate: 5.1.1
@@ -19538,10 +20125,11 @@ snapshots:
19538
20125
  dependencies:
19539
20126
  yallist: 3.1.1
19540
20127
 
19541
- lucide-react-taro@1.1.1(@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)))(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):
19542
20129
  dependencies:
19543
- '@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))
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))
19544
20131
  commander: 14.0.2
20132
+ fuse.js: 7.1.0
19545
20133
  react: 18.3.1
19546
20134
  sharp: 0.33.5
19547
20135
 
@@ -19648,6 +20236,10 @@ snapshots:
19648
20236
  dependencies:
19649
20237
  brace-expansion: 2.0.2
19650
20238
 
20239
+ minimatch@7.4.6:
20240
+ dependencies:
20241
+ brace-expansion: 2.0.2
20242
+
19651
20243
  minimatch@9.0.3:
19652
20244
  dependencies:
19653
20245
  brace-expansion: 2.0.2
@@ -19939,6 +20531,8 @@ snapshots:
19939
20531
 
19940
20532
  nextgen-events@1.5.3: {}
19941
20533
 
20534
+ nice-try@1.0.5: {}
20535
+
19942
20536
  no-case@2.3.2:
19943
20537
  dependencies:
19944
20538
  lower-case: 1.1.4
@@ -19950,7 +20544,7 @@ snapshots:
19950
20544
 
19951
20545
  node-abi@3.87.0:
19952
20546
  dependencies:
19953
- semver: 7.7.3
20547
+ semver: 7.7.4
19954
20548
 
19955
20549
  node-abort-controller@3.1.1: {}
19956
20550
 
@@ -19969,6 +20563,8 @@ snapshots:
19969
20563
  dependencies:
19970
20564
  whatwg-url: 5.0.0
19971
20565
 
20566
+ node-machine-id@1.1.12: {}
20567
+
19972
20568
  node-releases@2.0.27: {}
19973
20569
 
19974
20570
  normalize-package-data@2.5.0:
@@ -19997,6 +20593,10 @@ snapshots:
19997
20593
 
19998
20594
  npm-normalize-package-bin@1.0.1: {}
19999
20595
 
20596
+ npm-run-path@2.0.2:
20597
+ dependencies:
20598
+ path-key: 2.0.1
20599
+
20000
20600
  npm-run-path@4.0.1:
20001
20601
  dependencies:
20002
20602
  path-key: 3.1.1
@@ -20046,6 +20646,16 @@ snapshots:
20046
20646
  es-abstract: 1.24.1
20047
20647
  es-object-atoms: 1.1.1
20048
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
+
20049
20659
  object.groupby@1.0.3:
20050
20660
  dependencies:
20051
20661
  call-bind: 1.0.8
@@ -20250,6 +20860,8 @@ snapshots:
20250
20860
 
20251
20861
  path-is-absolute@1.0.1: {}
20252
20862
 
20863
+ path-key@2.0.1: {}
20864
+
20253
20865
  path-key@3.1.1: {}
20254
20866
 
20255
20867
  path-parse@1.0.7: {}
@@ -20704,7 +21316,7 @@ snapshots:
20704
21316
  dependencies:
20705
21317
  postcss: 8.5.6
20706
21318
 
20707
- postcss-plugin-shared@1.0.0(postcss@8.5.6):
21319
+ postcss-plugin-shared@1.1.1(postcss@8.5.6):
20708
21320
  dependencies:
20709
21321
  defu: 6.1.4
20710
21322
  postcss: 8.5.6
@@ -20789,10 +21401,10 @@ snapshots:
20789
21401
  postcss: 8.5.6
20790
21402
  postcss-selector-parser: 7.1.1
20791
21403
 
20792
- postcss-pxtrans@1.0.0(postcss@8.5.6):
21404
+ postcss-pxtrans@1.0.1(postcss@8.5.6):
20793
21405
  dependencies:
20794
21406
  postcss: 8.5.6
20795
- postcss-plugin-shared: 1.0.0(postcss@8.5.6)
21407
+ postcss-plugin-shared: 1.1.1(postcss@8.5.6)
20796
21408
 
20797
21409
  postcss-pxtransform@4.1.9(postcss@8.5.6):
20798
21410
  dependencies:
@@ -20809,10 +21421,10 @@ snapshots:
20809
21421
  postcss: 8.5.6
20810
21422
  postcss-value-parser: 4.2.0
20811
21423
 
20812
- 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):
20813
21425
  dependencies:
20814
21426
  postcss: 8.5.6
20815
- postcss-plugin-shared: 1.0.0(postcss@8.5.6)
21427
+ postcss-plugin-shared: 1.1.1(postcss@8.5.6)
20816
21428
 
20817
21429
  postcss-replace-overflow-wrap@4.0.0(postcss@8.5.6):
20818
21430
  dependencies:
@@ -20850,6 +21462,11 @@ snapshots:
20850
21462
  postcss: 8.5.6
20851
21463
  postcss-selector-parser: 6.1.2
20852
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
+
20853
21470
  postcss-value-parser@4.2.0: {}
20854
21471
 
20855
21472
  postcss@8.5.6:
@@ -20858,6 +21475,12 @@ snapshots:
20858
21475
  picocolors: 1.1.1
20859
21476
  source-map-js: 1.2.1
20860
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
+
20861
21484
  postgres-array@2.0.0: {}
20862
21485
 
20863
21486
  postgres-bytea@1.0.1: {}
@@ -21049,7 +21672,7 @@ snapshots:
21049
21672
 
21050
21673
  read-package-json@2.1.2:
21051
21674
  dependencies:
21052
- glob: 7.1.2
21675
+ glob: 7.2.3
21053
21676
  json-parse-even-better-errors: 2.3.1
21054
21677
  normalize-package-data: 2.5.0
21055
21678
  npm-normalize-package-bin: 1.0.1
@@ -21062,6 +21685,12 @@ snapshots:
21062
21685
  read-package-json: 2.1.2
21063
21686
  readdir-scoped-modules: 1.1.0
21064
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
+
21065
21694
  readable-stream@1.1.14:
21066
21695
  dependencies:
21067
21696
  core-util-is: 1.0.3
@@ -21292,6 +21921,10 @@ snapshots:
21292
21921
 
21293
21922
  rfdc@1.4.1: {}
21294
21923
 
21924
+ rimraf@2.7.1:
21925
+ dependencies:
21926
+ glob: 7.2.3
21927
+
21295
21928
  rimraf@3.0.2:
21296
21929
  dependencies:
21297
21930
  glob: 7.2.3
@@ -21407,12 +22040,16 @@ snapshots:
21407
22040
  dependencies:
21408
22041
  commander: 2.20.3
21409
22042
 
22043
+ semver-compare@1.0.0: {}
22044
+
21410
22045
  semver@5.7.2: {}
21411
22046
 
21412
22047
  semver@6.3.1: {}
21413
22048
 
21414
22049
  semver@7.7.3: {}
21415
22050
 
22051
+ semver@7.7.4: {}
22052
+
21416
22053
  send@0.19.0:
21417
22054
  dependencies:
21418
22055
  debug: 2.6.9
@@ -21521,7 +22158,7 @@ snapshots:
21521
22158
  dependencies:
21522
22159
  color: 4.2.3
21523
22160
  detect-libc: 2.1.2
21524
- semver: 7.7.3
22161
+ semver: 7.7.4
21525
22162
  optionalDependencies:
21526
22163
  '@img/sharp-darwin-arm64': 0.33.5
21527
22164
  '@img/sharp-darwin-x64': 0.33.5
@@ -21543,10 +22180,16 @@ snapshots:
21543
22180
  '@img/sharp-win32-ia32': 0.33.5
21544
22181
  '@img/sharp-win32-x64': 0.33.5
21545
22182
 
22183
+ shebang-command@1.2.0:
22184
+ dependencies:
22185
+ shebang-regex: 1.0.0
22186
+
21546
22187
  shebang-command@2.0.0:
21547
22188
  dependencies:
21548
22189
  shebang-regex: 3.0.0
21549
22190
 
22191
+ shebang-regex@1.0.0: {}
22192
+
21550
22193
  shebang-regex@3.0.0: {}
21551
22194
 
21552
22195
  shell-quote@1.8.3: {}
@@ -21827,6 +22470,8 @@ snapshots:
21827
22470
  dependencies:
21828
22471
  is-natural-number: 4.0.1
21829
22472
 
22473
+ strip-eof@1.0.0: {}
22474
+
21830
22475
  strip-final-newline@2.0.0: {}
21831
22476
 
21832
22477
  strip-json-comments@2.0.1: {}
@@ -21959,28 +22604,34 @@ snapshots:
21959
22604
  string-width: 4.2.3
21960
22605
  strip-ansi: 6.0.1
21961
22606
 
21962
- tailwindcss-config@1.1.3:
22607
+ tailwind-merge@3.5.0: {}
22608
+
22609
+ tailwindcss-animate@1.0.7(tailwindcss@4.1.18):
22610
+ dependencies:
22611
+ tailwindcss: 4.1.18
22612
+
22613
+ tailwindcss-config@1.1.4:
21963
22614
  dependencies:
21964
- '@weapp-tailwindcss/shared': 1.1.1
22615
+ '@weapp-tailwindcss/shared': 1.1.2
21965
22616
  jiti: 2.6.1
21966
22617
  lilconfig: 3.1.3
21967
22618
 
21968
- tailwindcss-patch@8.6.1(tailwindcss@4.1.18):
22619
+ tailwindcss-patch@8.7.3(tailwindcss@4.1.18):
21969
22620
  dependencies:
21970
- '@babel/generator': 7.28.5
21971
- '@babel/parser': 7.28.5
21972
- '@babel/traverse': 7.28.5
21973
- '@babel/types': 7.28.6
21974
- '@tailwindcss-mangle/config': 6.1.0
21975
- '@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
21976
22627
  cac: 6.7.14
21977
22628
  consola: 3.4.2
21978
22629
  fs-extra: 11.3.3
21979
22630
  local-pkg: 1.1.2
21980
22631
  pathe: 2.0.3
21981
22632
  postcss: 8.5.6
21982
- semver: 7.7.3
21983
- tailwindcss-config: 1.1.3
22633
+ semver: 7.7.4
22634
+ tailwindcss-config: 1.1.4
21984
22635
  optionalDependencies:
21985
22636
  tailwindcss: 4.1.18
21986
22637
  transitivePeerDependencies:
@@ -21989,6 +22640,8 @@ snapshots:
21989
22640
 
21990
22641
  tailwindcss@4.1.18: {}
21991
22642
 
22643
+ tailwindcss@4.2.1: {}
22644
+
21992
22645
  tapable@2.3.0: {}
21993
22646
 
21994
22647
  tar-fs@2.1.4:
@@ -22027,17 +22680,16 @@ snapshots:
22027
22680
  string-kit: 0.17.10
22028
22681
  tree-kit: 0.7.5
22029
22682
 
22030
- 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)):
22031
22684
  dependencies:
22032
22685
  '@jridgewell/trace-mapping': 0.3.31
22033
22686
  jest-worker: 27.5.1
22034
22687
  schema-utils: 4.3.3
22035
22688
  serialize-javascript: 6.0.2
22036
22689
  terser: 5.44.1
22037
- webpack: 5.97.1(@swc/core@1.3.96)(esbuild@0.25.12)
22690
+ webpack: 5.97.1(@swc/core@1.3.96)
22038
22691
  optionalDependencies:
22039
22692
  '@swc/core': 1.3.96
22040
- esbuild: 0.25.12
22041
22693
  optional: true
22042
22694
 
22043
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)):
@@ -22059,6 +22711,13 @@ snapshots:
22059
22711
  source-map: 0.6.1
22060
22712
  source-map-support: 0.5.21
22061
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
+
22062
22721
  terser@5.44.1:
22063
22722
  dependencies:
22064
22723
  '@jridgewell/source-map': 0.3.11
@@ -22146,6 +22805,8 @@ snapshots:
22146
22805
 
22147
22806
  tr46@0.0.3: {}
22148
22807
 
22808
+ traverse@0.3.9: {}
22809
+
22149
22810
  tree-kill@1.2.2: {}
22150
22811
 
22151
22812
  tree-kit@0.7.5: {}
@@ -22189,6 +22850,30 @@ snapshots:
22189
22850
 
22190
22851
  tslib@2.8.1: {}
22191
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
+
22192
22877
  tunnel-agent@0.6.0:
22193
22878
  dependencies:
22194
22879
  safe-buffer: 5.2.1
@@ -22307,6 +22992,19 @@ snapshots:
22307
22992
 
22308
22993
  unpipe@1.0.0: {}
22309
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
+
22310
23008
  update-browserslist-db@1.2.3(browserslist@4.28.1):
22311
23009
  dependencies:
22312
23010
  browserslist: 4.28.1
@@ -22343,6 +23041,10 @@ snapshots:
22343
23041
 
22344
23042
  util-deprecate@1.0.2: {}
22345
23043
 
23044
+ util-promisify@2.1.0:
23045
+ dependencies:
23046
+ object.getownpropertydescriptors: 2.1.9
23047
+
22346
23048
  utils-merge@1.0.1: {}
22347
23049
 
22348
23050
  uuid@10.0.0: {}
@@ -22372,15 +23074,15 @@ snapshots:
22372
23074
  clone-stats: 0.0.1
22373
23075
  replace-ext: 0.0.1
22374
23076
 
22375
- 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)):
22376
23078
  dependencies:
22377
23079
  chokidar: 3.6.0
22378
23080
  fast-glob: 3.3.3
22379
23081
  fs-extra: 11.3.3
22380
23082
  picocolors: 1.1.1
22381
- 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)
22382
23084
 
22383
- 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):
22384
23086
  dependencies:
22385
23087
  esbuild: 0.18.20
22386
23088
  postcss: 8.5.6
@@ -22389,7 +23091,7 @@ snapshots:
22389
23091
  '@types/node': 22.19.6
22390
23092
  fsevents: 2.3.3
22391
23093
  less: 4.5.1
22392
- lightningcss: 1.30.2
23094
+ lightningcss: 1.31.1
22393
23095
  sass: 1.97.2
22394
23096
  terser: 5.44.1
22395
23097
 
@@ -22402,31 +23104,31 @@ snapshots:
22402
23104
  dependencies:
22403
23105
  defaults: 1.0.4
22404
23106
 
22405
- weapp-tailwindcss@4.9.2(tailwindcss@4.1.18):
23107
+ weapp-tailwindcss@4.10.3(tailwindcss@4.1.18):
22406
23108
  dependencies:
22407
23109
  '@ast-core/escape': 1.0.1
22408
- '@babel/parser': 7.28.5
22409
- '@babel/traverse': 7.28.5
22410
- '@babel/types': 7.28.6
22411
- '@tailwindcss-mangle/config': 6.1.0
22412
- '@vue/compiler-dom': 3.5.26
22413
- '@vue/compiler-sfc': 3.5.26
22414
- '@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
22415
23117
  '@weapp-core/regex': 1.0.1
22416
23118
  '@weapp-tailwindcss/logger': 1.1.0
22417
- '@weapp-tailwindcss/postcss': 2.1.0
22418
- '@weapp-tailwindcss/shared': 1.1.1
23119
+ '@weapp-tailwindcss/postcss': 2.1.5
23120
+ '@weapp-tailwindcss/shared': 1.1.2
22419
23121
  cac: 6.7.14
22420
23122
  debug: 4.4.3
22421
23123
  fast-glob: 3.3.3
22422
- htmlparser2: 10.0.0
23124
+ htmlparser2: 10.1.0
22423
23125
  loader-utils: 2.0.4
22424
23126
  local-pkg: 1.1.2
22425
23127
  lru-cache: 10.4.3
22426
23128
  magic-string: 0.30.21
22427
- semver: 7.7.3
22428
- tailwindcss-patch: 8.6.1(tailwindcss@4.1.18)
22429
- 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
22430
23132
  yaml: 2.8.2
22431
23133
  transitivePeerDependencies:
22432
23134
  - magicast
@@ -22445,7 +23147,9 @@ snapshots:
22445
23147
 
22446
23148
  webpack-sources@3.3.3: {}
22447
23149
 
22448
- 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):
22449
23153
  dependencies:
22450
23154
  '@types/eslint-scope': 3.7.7
22451
23155
  '@types/estree': 1.0.8
@@ -22467,7 +23171,7 @@ snapshots:
22467
23171
  neo-async: 2.6.2
22468
23172
  schema-utils: 3.3.0
22469
23173
  tapable: 2.3.0
22470
- 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))
22471
23175
  watchpack: 2.5.0
22472
23176
  webpack-sources: 3.3.3
22473
23177
  transitivePeerDependencies: