@coze-arch/cli 0.0.1-alpha.db1c06 → 0.0.1-alpha.dcc485

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