@yyp92-cli/template-vue-mobile 1.1.0

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 (51) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +15 -0
  3. package/template/.env.development +5 -0
  4. package/template/.env.production +5 -0
  5. package/template/.env.test +5 -0
  6. package/template/README.md +5 -0
  7. package/template/auto-imports.d.ts +10 -0
  8. package/template/components.d.ts +28 -0
  9. package/template/index.html +16 -0
  10. package/template/package.json +35 -0
  11. package/template/pnpm-lock.yaml +2007 -0
  12. package/template/public/vite.svg +1 -0
  13. package/template/src/App.vue +24 -0
  14. package/template/src/assets/vue.svg +1 -0
  15. package/template/src/components/layout/index.vue +68 -0
  16. package/template/src/components/layout/navBar/index.vue +35 -0
  17. package/template/src/components/layout/tabBar/index.vue +47 -0
  18. package/template/src/global/constants.ts +4 -0
  19. package/template/src/main.ts +12 -0
  20. package/template/src/router/index.ts +38 -0
  21. package/template/src/router/routes.tsx +83 -0
  22. package/template/src/service/api.ts +7 -0
  23. package/template/src/service/config.ts +9 -0
  24. package/template/src/service/index.ts +1 -0
  25. package/template/src/service/request/index.ts +270 -0
  26. package/template/src/service/request/type.ts +5 -0
  27. package/template/src/service/service.ts +27 -0
  28. package/template/src/store/index.ts +14 -0
  29. package/template/src/store/login/index.ts +67 -0
  30. package/template/src/styles/global.scss +32 -0
  31. package/template/src/styles/index.scss +4 -0
  32. package/template/src/styles/reset.scss +17 -0
  33. package/template/src/theme/darkTheme.scss +51 -0
  34. package/template/src/theme/lightTheme.scss +53 -0
  35. package/template/src/utils/cache.ts +44 -0
  36. package/template/src/utils/download.ts +27 -0
  37. package/template/src/utils/format.ts +10 -0
  38. package/template/src/utils/index.ts +22 -0
  39. package/template/src/views/403/index.vue +23 -0
  40. package/template/src/views/404/index.vue +34 -0
  41. package/template/src/views/detail/index.vue +19 -0
  42. package/template/src/views/home/index.vue +19 -0
  43. package/template/src/views/login/index.vue +81 -0
  44. package/template/src/views/message/index.vue +19 -0
  45. package/template/src/views/mine/index.vue +19 -0
  46. package/template/src/views/todo/index.vue +19 -0
  47. package/template/src/vite-env.d.ts +4 -0
  48. package/template/tsconfig.app.json +24 -0
  49. package/template/tsconfig.json +7 -0
  50. package/template/tsconfig.node.json +25 -0
  51. package/template/vite.config.ts +59 -0
@@ -0,0 +1,2007 @@
1
+ lockfileVersion: '9.0'
2
+
3
+ settings:
4
+ autoInstallPeers: true
5
+ excludeLinksFromLockfile: false
6
+
7
+ importers:
8
+
9
+ .:
10
+ dependencies:
11
+ axios:
12
+ specifier: ^1.11.0
13
+ version: 1.11.0
14
+ dayjs:
15
+ specifier: ^1.11.18
16
+ version: 1.11.18
17
+ lodash-es:
18
+ specifier: ^4.17.21
19
+ version: 4.17.21
20
+ pinia:
21
+ specifier: ^3.0.3
22
+ version: 3.0.3(typescript@5.8.3)(vue@3.5.21(typescript@5.8.3))
23
+ vant:
24
+ specifier: ^4.9.21
25
+ version: 4.9.21(vue@3.5.21(typescript@5.8.3))
26
+ vue:
27
+ specifier: ^3.5.18
28
+ version: 3.5.21(typescript@5.8.3)
29
+ vue-hooks-plus:
30
+ specifier: ^2.4.1
31
+ version: 2.4.1(vue@3.5.21(typescript@5.8.3))
32
+ vue-router:
33
+ specifier: ^4.5.1
34
+ version: 4.5.1(vue@3.5.21(typescript@5.8.3))
35
+ devDependencies:
36
+ '@types/node':
37
+ specifier: ^24.3.1
38
+ version: 24.3.1
39
+ '@vant/auto-import-resolver':
40
+ specifier: ^1.3.0
41
+ version: 1.3.0
42
+ '@vitejs/plugin-vue':
43
+ specifier: ^6.0.1
44
+ version: 6.0.1(vite@7.1.5(@types/node@24.3.1)(sass@1.92.1))(vue@3.5.21(typescript@5.8.3))
45
+ '@vue/tsconfig':
46
+ specifier: ^0.7.0
47
+ version: 0.7.0(typescript@5.8.3)(vue@3.5.21(typescript@5.8.3))
48
+ autoprefixer:
49
+ specifier: ^10.4.21
50
+ version: 10.4.21(postcss@8.5.6)
51
+ postcss-px-to-viewport:
52
+ specifier: ^1.1.1
53
+ version: 1.1.1
54
+ sass:
55
+ specifier: ^1.92.1
56
+ version: 1.92.1
57
+ typescript:
58
+ specifier: ~5.8.3
59
+ version: 5.8.3
60
+ unplugin-auto-import:
61
+ specifier: ^20.1.0
62
+ version: 20.1.0
63
+ unplugin-vue-components:
64
+ specifier: ^29.0.0
65
+ version: 29.0.0(@babel/parser@7.28.4)(vue@3.5.21(typescript@5.8.3))
66
+ vite:
67
+ specifier: ^7.1.2
68
+ version: 7.1.5(@types/node@24.3.1)(sass@1.92.1)
69
+ vue-tsc:
70
+ specifier: ^3.0.5
71
+ version: 3.0.6(typescript@5.8.3)
72
+
73
+ packages:
74
+
75
+ '@babel/helper-string-parser@7.27.1':
76
+ resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
77
+ engines: {node: '>=6.9.0'}
78
+
79
+ '@babel/helper-validator-identifier@7.27.1':
80
+ resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
81
+ engines: {node: '>=6.9.0'}
82
+
83
+ '@babel/parser@7.28.4':
84
+ resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==}
85
+ engines: {node: '>=6.0.0'}
86
+ hasBin: true
87
+
88
+ '@babel/types@7.28.4':
89
+ resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==}
90
+ engines: {node: '>=6.9.0'}
91
+
92
+ '@esbuild/aix-ppc64@0.25.9':
93
+ resolution: {integrity: sha512-OaGtL73Jck6pBKjNIe24BnFE6agGl+6KxDtTfHhy1HmhthfKouEcOhqpSL64K4/0WCtbKFLOdzD/44cJ4k9opA==}
94
+ engines: {node: '>=18'}
95
+ cpu: [ppc64]
96
+ os: [aix]
97
+
98
+ '@esbuild/android-arm64@0.25.9':
99
+ resolution: {integrity: sha512-IDrddSmpSv51ftWslJMvl3Q2ZT98fUSL2/rlUXuVqRXHCs5EUF1/f+jbjF5+NG9UffUDMCiTyh8iec7u8RlTLg==}
100
+ engines: {node: '>=18'}
101
+ cpu: [arm64]
102
+ os: [android]
103
+
104
+ '@esbuild/android-arm@0.25.9':
105
+ resolution: {integrity: sha512-5WNI1DaMtxQ7t7B6xa572XMXpHAaI/9Hnhk8lcxF4zVN4xstUgTlvuGDorBguKEnZO70qwEcLpfifMLoxiPqHQ==}
106
+ engines: {node: '>=18'}
107
+ cpu: [arm]
108
+ os: [android]
109
+
110
+ '@esbuild/android-x64@0.25.9':
111
+ resolution: {integrity: sha512-I853iMZ1hWZdNllhVZKm34f4wErd4lMyeV7BLzEExGEIZYsOzqDWDf+y082izYUE8gtJnYHdeDpN/6tUdwvfiw==}
112
+ engines: {node: '>=18'}
113
+ cpu: [x64]
114
+ os: [android]
115
+
116
+ '@esbuild/darwin-arm64@0.25.9':
117
+ resolution: {integrity: sha512-XIpIDMAjOELi/9PB30vEbVMs3GV1v2zkkPnuyRRURbhqjyzIINwj+nbQATh4H9GxUgH1kFsEyQMxwiLFKUS6Rg==}
118
+ engines: {node: '>=18'}
119
+ cpu: [arm64]
120
+ os: [darwin]
121
+
122
+ '@esbuild/darwin-x64@0.25.9':
123
+ resolution: {integrity: sha512-jhHfBzjYTA1IQu8VyrjCX4ApJDnH+ez+IYVEoJHeqJm9VhG9Dh2BYaJritkYK3vMaXrf7Ogr/0MQ8/MeIefsPQ==}
124
+ engines: {node: '>=18'}
125
+ cpu: [x64]
126
+ os: [darwin]
127
+
128
+ '@esbuild/freebsd-arm64@0.25.9':
129
+ resolution: {integrity: sha512-z93DmbnY6fX9+KdD4Ue/H6sYs+bhFQJNCPZsi4XWJoYblUqT06MQUdBCpcSfuiN72AbqeBFu5LVQTjfXDE2A6Q==}
130
+ engines: {node: '>=18'}
131
+ cpu: [arm64]
132
+ os: [freebsd]
133
+
134
+ '@esbuild/freebsd-x64@0.25.9':
135
+ resolution: {integrity: sha512-mrKX6H/vOyo5v71YfXWJxLVxgy1kyt1MQaD8wZJgJfG4gq4DpQGpgTB74e5yBeQdyMTbgxp0YtNj7NuHN0PoZg==}
136
+ engines: {node: '>=18'}
137
+ cpu: [x64]
138
+ os: [freebsd]
139
+
140
+ '@esbuild/linux-arm64@0.25.9':
141
+ resolution: {integrity: sha512-BlB7bIcLT3G26urh5Dmse7fiLmLXnRlopw4s8DalgZ8ef79Jj4aUcYbk90g8iCa2467HX8SAIidbL7gsqXHdRw==}
142
+ engines: {node: '>=18'}
143
+ cpu: [arm64]
144
+ os: [linux]
145
+
146
+ '@esbuild/linux-arm@0.25.9':
147
+ resolution: {integrity: sha512-HBU2Xv78SMgaydBmdor38lg8YDnFKSARg1Q6AT0/y2ezUAKiZvc211RDFHlEZRFNRVhcMamiToo7bDx3VEOYQw==}
148
+ engines: {node: '>=18'}
149
+ cpu: [arm]
150
+ os: [linux]
151
+
152
+ '@esbuild/linux-ia32@0.25.9':
153
+ resolution: {integrity: sha512-e7S3MOJPZGp2QW6AK6+Ly81rC7oOSerQ+P8L0ta4FhVi+/j/v2yZzx5CqqDaWjtPFfYz21Vi1S0auHrap3Ma3A==}
154
+ engines: {node: '>=18'}
155
+ cpu: [ia32]
156
+ os: [linux]
157
+
158
+ '@esbuild/linux-loong64@0.25.9':
159
+ resolution: {integrity: sha512-Sbe10Bnn0oUAB2AalYztvGcK+o6YFFA/9829PhOCUS9vkJElXGdphz0A3DbMdP8gmKkqPmPcMJmJOrI3VYB1JQ==}
160
+ engines: {node: '>=18'}
161
+ cpu: [loong64]
162
+ os: [linux]
163
+
164
+ '@esbuild/linux-mips64el@0.25.9':
165
+ resolution: {integrity: sha512-YcM5br0mVyZw2jcQeLIkhWtKPeVfAerES5PvOzaDxVtIyZ2NUBZKNLjC5z3/fUlDgT6w89VsxP2qzNipOaaDyA==}
166
+ engines: {node: '>=18'}
167
+ cpu: [mips64el]
168
+ os: [linux]
169
+
170
+ '@esbuild/linux-ppc64@0.25.9':
171
+ resolution: {integrity: sha512-++0HQvasdo20JytyDpFvQtNrEsAgNG2CY1CLMwGXfFTKGBGQT3bOeLSYE2l1fYdvML5KUuwn9Z8L1EWe2tzs1w==}
172
+ engines: {node: '>=18'}
173
+ cpu: [ppc64]
174
+ os: [linux]
175
+
176
+ '@esbuild/linux-riscv64@0.25.9':
177
+ resolution: {integrity: sha512-uNIBa279Y3fkjV+2cUjx36xkx7eSjb8IvnL01eXUKXez/CBHNRw5ekCGMPM0BcmqBxBcdgUWuUXmVWwm4CH9kg==}
178
+ engines: {node: '>=18'}
179
+ cpu: [riscv64]
180
+ os: [linux]
181
+
182
+ '@esbuild/linux-s390x@0.25.9':
183
+ resolution: {integrity: sha512-Mfiphvp3MjC/lctb+7D287Xw1DGzqJPb/J2aHHcHxflUo+8tmN/6d4k6I2yFR7BVo5/g7x2Monq4+Yew0EHRIA==}
184
+ engines: {node: '>=18'}
185
+ cpu: [s390x]
186
+ os: [linux]
187
+
188
+ '@esbuild/linux-x64@0.25.9':
189
+ resolution: {integrity: sha512-iSwByxzRe48YVkmpbgoxVzn76BXjlYFXC7NvLYq+b+kDjyyk30J0JY47DIn8z1MO3K0oSl9fZoRmZPQI4Hklzg==}
190
+ engines: {node: '>=18'}
191
+ cpu: [x64]
192
+ os: [linux]
193
+
194
+ '@esbuild/netbsd-arm64@0.25.9':
195
+ resolution: {integrity: sha512-9jNJl6FqaUG+COdQMjSCGW4QiMHH88xWbvZ+kRVblZsWrkXlABuGdFJ1E9L7HK+T0Yqd4akKNa/lO0+jDxQD4Q==}
196
+ engines: {node: '>=18'}
197
+ cpu: [arm64]
198
+ os: [netbsd]
199
+
200
+ '@esbuild/netbsd-x64@0.25.9':
201
+ resolution: {integrity: sha512-RLLdkflmqRG8KanPGOU7Rpg829ZHu8nFy5Pqdi9U01VYtG9Y0zOG6Vr2z4/S+/3zIyOxiK6cCeYNWOFR9QP87g==}
202
+ engines: {node: '>=18'}
203
+ cpu: [x64]
204
+ os: [netbsd]
205
+
206
+ '@esbuild/openbsd-arm64@0.25.9':
207
+ resolution: {integrity: sha512-YaFBlPGeDasft5IIM+CQAhJAqS3St3nJzDEgsgFixcfZeyGPCd6eJBWzke5piZuZ7CtL656eOSYKk4Ls2C0FRQ==}
208
+ engines: {node: '>=18'}
209
+ cpu: [arm64]
210
+ os: [openbsd]
211
+
212
+ '@esbuild/openbsd-x64@0.25.9':
213
+ resolution: {integrity: sha512-1MkgTCuvMGWuqVtAvkpkXFmtL8XhWy+j4jaSO2wxfJtilVCi0ZE37b8uOdMItIHz4I6z1bWWtEX4CJwcKYLcuA==}
214
+ engines: {node: '>=18'}
215
+ cpu: [x64]
216
+ os: [openbsd]
217
+
218
+ '@esbuild/openharmony-arm64@0.25.9':
219
+ resolution: {integrity: sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==}
220
+ engines: {node: '>=18'}
221
+ cpu: [arm64]
222
+ os: [openharmony]
223
+
224
+ '@esbuild/sunos-x64@0.25.9':
225
+ resolution: {integrity: sha512-WjH4s6hzo00nNezhp3wFIAfmGZ8U7KtrJNlFMRKxiI9mxEK1scOMAaa9i4crUtu+tBr+0IN6JCuAcSBJZfnphw==}
226
+ engines: {node: '>=18'}
227
+ cpu: [x64]
228
+ os: [sunos]
229
+
230
+ '@esbuild/win32-arm64@0.25.9':
231
+ resolution: {integrity: sha512-mGFrVJHmZiRqmP8xFOc6b84/7xa5y5YvR1x8djzXpJBSv/UsNK6aqec+6JDjConTgvvQefdGhFDAs2DLAds6gQ==}
232
+ engines: {node: '>=18'}
233
+ cpu: [arm64]
234
+ os: [win32]
235
+
236
+ '@esbuild/win32-ia32@0.25.9':
237
+ resolution: {integrity: sha512-b33gLVU2k11nVx1OhX3C8QQP6UHQK4ZtN56oFWvVXvz2VkDoe6fbG8TOgHFxEvqeqohmRnIHe5A1+HADk4OQww==}
238
+ engines: {node: '>=18'}
239
+ cpu: [ia32]
240
+ os: [win32]
241
+
242
+ '@esbuild/win32-x64@0.25.9':
243
+ resolution: {integrity: sha512-PPOl1mi6lpLNQxnGoyAfschAodRFYXJ+9fs6WHXz7CSWKbOqiMZsubC+BQsVKuul+3vKLuwTHsS2c2y9EoKwxQ==}
244
+ engines: {node: '>=18'}
245
+ cpu: [x64]
246
+ os: [win32]
247
+
248
+ '@jridgewell/gen-mapping@0.3.13':
249
+ resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
250
+
251
+ '@jridgewell/remapping@2.3.5':
252
+ resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
253
+
254
+ '@jridgewell/resolve-uri@3.1.2':
255
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
256
+ engines: {node: '>=6.0.0'}
257
+
258
+ '@jridgewell/sourcemap-codec@1.5.5':
259
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
260
+
261
+ '@jridgewell/trace-mapping@0.3.30':
262
+ resolution: {integrity: sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==}
263
+
264
+ '@parcel/watcher-android-arm64@2.5.1':
265
+ resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
266
+ engines: {node: '>= 10.0.0'}
267
+ cpu: [arm64]
268
+ os: [android]
269
+
270
+ '@parcel/watcher-darwin-arm64@2.5.1':
271
+ resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
272
+ engines: {node: '>= 10.0.0'}
273
+ cpu: [arm64]
274
+ os: [darwin]
275
+
276
+ '@parcel/watcher-darwin-x64@2.5.1':
277
+ resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
278
+ engines: {node: '>= 10.0.0'}
279
+ cpu: [x64]
280
+ os: [darwin]
281
+
282
+ '@parcel/watcher-freebsd-x64@2.5.1':
283
+ resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
284
+ engines: {node: '>= 10.0.0'}
285
+ cpu: [x64]
286
+ os: [freebsd]
287
+
288
+ '@parcel/watcher-linux-arm-glibc@2.5.1':
289
+ resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
290
+ engines: {node: '>= 10.0.0'}
291
+ cpu: [arm]
292
+ os: [linux]
293
+
294
+ '@parcel/watcher-linux-arm-musl@2.5.1':
295
+ resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
296
+ engines: {node: '>= 10.0.0'}
297
+ cpu: [arm]
298
+ os: [linux]
299
+
300
+ '@parcel/watcher-linux-arm64-glibc@2.5.1':
301
+ resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
302
+ engines: {node: '>= 10.0.0'}
303
+ cpu: [arm64]
304
+ os: [linux]
305
+
306
+ '@parcel/watcher-linux-arm64-musl@2.5.1':
307
+ resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
308
+ engines: {node: '>= 10.0.0'}
309
+ cpu: [arm64]
310
+ os: [linux]
311
+
312
+ '@parcel/watcher-linux-x64-glibc@2.5.1':
313
+ resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
314
+ engines: {node: '>= 10.0.0'}
315
+ cpu: [x64]
316
+ os: [linux]
317
+
318
+ '@parcel/watcher-linux-x64-musl@2.5.1':
319
+ resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
320
+ engines: {node: '>= 10.0.0'}
321
+ cpu: [x64]
322
+ os: [linux]
323
+
324
+ '@parcel/watcher-win32-arm64@2.5.1':
325
+ resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
326
+ engines: {node: '>= 10.0.0'}
327
+ cpu: [arm64]
328
+ os: [win32]
329
+
330
+ '@parcel/watcher-win32-ia32@2.5.1':
331
+ resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
332
+ engines: {node: '>= 10.0.0'}
333
+ cpu: [ia32]
334
+ os: [win32]
335
+
336
+ '@parcel/watcher-win32-x64@2.5.1':
337
+ resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==}
338
+ engines: {node: '>= 10.0.0'}
339
+ cpu: [x64]
340
+ os: [win32]
341
+
342
+ '@parcel/watcher@2.5.1':
343
+ resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
344
+ engines: {node: '>= 10.0.0'}
345
+
346
+ '@rolldown/pluginutils@1.0.0-beta.29':
347
+ resolution: {integrity: sha512-NIJgOsMjbxAXvoGq/X0gD7VPMQ8j9g0BiDaNjVNVjvl+iKXxL3Jre0v31RmBYeLEmkbj2s02v8vFTbUXi5XS2Q==}
348
+
349
+ '@rollup/rollup-android-arm-eabi@4.50.1':
350
+ resolution: {integrity: sha512-HJXwzoZN4eYTdD8bVV22DN8gsPCAj3V20NHKOs8ezfXanGpmVPR7kalUHd+Y31IJp9stdB87VKPFbsGY3H/2ag==}
351
+ cpu: [arm]
352
+ os: [android]
353
+
354
+ '@rollup/rollup-android-arm64@4.50.1':
355
+ resolution: {integrity: sha512-PZlsJVcjHfcH53mOImyt3bc97Ep3FJDXRpk9sMdGX0qgLmY0EIWxCag6EigerGhLVuL8lDVYNnSo8qnTElO4xw==}
356
+ cpu: [arm64]
357
+ os: [android]
358
+
359
+ '@rollup/rollup-darwin-arm64@4.50.1':
360
+ resolution: {integrity: sha512-xc6i2AuWh++oGi4ylOFPmzJOEeAa2lJeGUGb4MudOtgfyyjr4UPNK+eEWTPLvmPJIY/pgw6ssFIox23SyrkkJw==}
361
+ cpu: [arm64]
362
+ os: [darwin]
363
+
364
+ '@rollup/rollup-darwin-x64@4.50.1':
365
+ resolution: {integrity: sha512-2ofU89lEpDYhdLAbRdeyz/kX3Y2lpYc6ShRnDjY35bZhd2ipuDMDi6ZTQ9NIag94K28nFMofdnKeHR7BT0CATw==}
366
+ cpu: [x64]
367
+ os: [darwin]
368
+
369
+ '@rollup/rollup-freebsd-arm64@4.50.1':
370
+ resolution: {integrity: sha512-wOsE6H2u6PxsHY/BeFHA4VGQN3KUJFZp7QJBmDYI983fgxq5Th8FDkVuERb2l9vDMs1D5XhOrhBrnqcEY6l8ZA==}
371
+ cpu: [arm64]
372
+ os: [freebsd]
373
+
374
+ '@rollup/rollup-freebsd-x64@4.50.1':
375
+ resolution: {integrity: sha512-A/xeqaHTlKbQggxCqispFAcNjycpUEHP52mwMQZUNqDUJFFYtPHCXS1VAG29uMlDzIVr+i00tSFWFLivMcoIBQ==}
376
+ cpu: [x64]
377
+ os: [freebsd]
378
+
379
+ '@rollup/rollup-linux-arm-gnueabihf@4.50.1':
380
+ resolution: {integrity: sha512-54v4okehwl5TaSIkpp97rAHGp7t3ghinRd/vyC1iXqXMfjYUTm7TfYmCzXDoHUPTTf36L8pr0E7YsD3CfB3ZDg==}
381
+ cpu: [arm]
382
+ os: [linux]
383
+
384
+ '@rollup/rollup-linux-arm-musleabihf@4.50.1':
385
+ resolution: {integrity: sha512-p/LaFyajPN/0PUHjv8TNyxLiA7RwmDoVY3flXHPSzqrGcIp/c2FjwPPP5++u87DGHtw+5kSH5bCJz0mvXngYxw==}
386
+ cpu: [arm]
387
+ os: [linux]
388
+
389
+ '@rollup/rollup-linux-arm64-gnu@4.50.1':
390
+ resolution: {integrity: sha512-2AbMhFFkTo6Ptna1zO7kAXXDLi7H9fGTbVaIq2AAYO7yzcAsuTNWPHhb2aTA6GPiP+JXh85Y8CiS54iZoj4opw==}
391
+ cpu: [arm64]
392
+ os: [linux]
393
+
394
+ '@rollup/rollup-linux-arm64-musl@4.50.1':
395
+ resolution: {integrity: sha512-Cgef+5aZwuvesQNw9eX7g19FfKX5/pQRIyhoXLCiBOrWopjo7ycfB292TX9MDcDijiuIJlx1IzJz3IoCPfqs9w==}
396
+ cpu: [arm64]
397
+ os: [linux]
398
+
399
+ '@rollup/rollup-linux-loongarch64-gnu@4.50.1':
400
+ resolution: {integrity: sha512-RPhTwWMzpYYrHrJAS7CmpdtHNKtt2Ueo+BlLBjfZEhYBhK00OsEqM08/7f+eohiF6poe0YRDDd8nAvwtE/Y62Q==}
401
+ cpu: [loong64]
402
+ os: [linux]
403
+
404
+ '@rollup/rollup-linux-ppc64-gnu@4.50.1':
405
+ resolution: {integrity: sha512-eSGMVQw9iekut62O7eBdbiccRguuDgiPMsw++BVUg+1K7WjZXHOg/YOT9SWMzPZA+w98G+Fa1VqJgHZOHHnY0Q==}
406
+ cpu: [ppc64]
407
+ os: [linux]
408
+
409
+ '@rollup/rollup-linux-riscv64-gnu@4.50.1':
410
+ resolution: {integrity: sha512-S208ojx8a4ciIPrLgazF6AgdcNJzQE4+S9rsmOmDJkusvctii+ZvEuIC4v/xFqzbuP8yDjn73oBlNDgF6YGSXQ==}
411
+ cpu: [riscv64]
412
+ os: [linux]
413
+
414
+ '@rollup/rollup-linux-riscv64-musl@4.50.1':
415
+ resolution: {integrity: sha512-3Ag8Ls1ggqkGUvSZWYcdgFwriy2lWo+0QlYgEFra/5JGtAd6C5Hw59oojx1DeqcA2Wds2ayRgvJ4qxVTzCHgzg==}
416
+ cpu: [riscv64]
417
+ os: [linux]
418
+
419
+ '@rollup/rollup-linux-s390x-gnu@4.50.1':
420
+ resolution: {integrity: sha512-t9YrKfaxCYe7l7ldFERE1BRg/4TATxIg+YieHQ966jwvo7ddHJxPj9cNFWLAzhkVsbBvNA4qTbPVNsZKBO4NSg==}
421
+ cpu: [s390x]
422
+ os: [linux]
423
+
424
+ '@rollup/rollup-linux-x64-gnu@4.50.1':
425
+ resolution: {integrity: sha512-MCgtFB2+SVNuQmmjHf+wfI4CMxy3Tk8XjA5Z//A0AKD7QXUYFMQcns91K6dEHBvZPCnhJSyDWLApk40Iq/H3tA==}
426
+ cpu: [x64]
427
+ os: [linux]
428
+
429
+ '@rollup/rollup-linux-x64-musl@4.50.1':
430
+ resolution: {integrity: sha512-nEvqG+0jeRmqaUMuwzlfMKwcIVffy/9KGbAGyoa26iu6eSngAYQ512bMXuqqPrlTyfqdlB9FVINs93j534UJrg==}
431
+ cpu: [x64]
432
+ os: [linux]
433
+
434
+ '@rollup/rollup-openharmony-arm64@4.50.1':
435
+ resolution: {integrity: sha512-RDsLm+phmT3MJd9SNxA9MNuEAO/J2fhW8GXk62G/B4G7sLVumNFbRwDL6v5NrESb48k+QMqdGbHgEtfU0LCpbA==}
436
+ cpu: [arm64]
437
+ os: [openharmony]
438
+
439
+ '@rollup/rollup-win32-arm64-msvc@4.50.1':
440
+ resolution: {integrity: sha512-hpZB/TImk2FlAFAIsoElM3tLzq57uxnGYwplg6WDyAxbYczSi8O2eQ+H2Lx74504rwKtZ3N2g4bCUkiamzS6TQ==}
441
+ cpu: [arm64]
442
+ os: [win32]
443
+
444
+ '@rollup/rollup-win32-ia32-msvc@4.50.1':
445
+ resolution: {integrity: sha512-SXjv8JlbzKM0fTJidX4eVsH+Wmnp0/WcD8gJxIZyR6Gay5Qcsmdbi9zVtnbkGPG8v2vMR1AD06lGWy5FLMcG7A==}
446
+ cpu: [ia32]
447
+ os: [win32]
448
+
449
+ '@rollup/rollup-win32-x64-msvc@4.50.1':
450
+ resolution: {integrity: sha512-StxAO/8ts62KZVRAm4JZYq9+NqNsV7RvimNK+YM7ry//zebEH6meuugqW/P5OFUCjyQgui+9fUxT6d5NShvMvA==}
451
+ cpu: [x64]
452
+ os: [win32]
453
+
454
+ '@types/estree@1.0.8':
455
+ resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
456
+
457
+ '@types/js-cookie@3.0.6':
458
+ resolution: {integrity: sha512-wkw9yd1kEXOPnvEeEV1Go1MmxtBJL0RR79aOTAApecWFVu7w0NNXNqhcWgvw2YgZDYadliXkl14pa3WXw5jlCQ==}
459
+
460
+ '@types/node@24.3.1':
461
+ resolution: {integrity: sha512-3vXmQDXy+woz+gnrTvuvNrPzekOi+Ds0ReMxw0LzBiK3a+1k0kQn9f2NWk+lgD4rJehFUmYy2gMhJ2ZI+7YP9g==}
462
+
463
+ '@vant/auto-import-resolver@1.3.0':
464
+ resolution: {integrity: sha512-lJyWtCyFizR4bHZvMiNMF3w+WTFTUWAvka1eqTnPK9ticUcKTCOx6qEmHcm8JPb3g1t3GaD2W3MnHkBp/nHamw==}
465
+
466
+ '@vant/popperjs@1.3.0':
467
+ resolution: {integrity: sha512-hB+czUG+aHtjhaEmCJDuXOep0YTZjdlRR+4MSmIFnkCQIxJaXLQdSsR90XWvAI2yvKUI7TCGqR8pQg2RtvkMHw==}
468
+
469
+ '@vant/use@1.6.0':
470
+ resolution: {integrity: sha512-PHHxeAASgiOpSmMjceweIrv2AxDZIkWXyaczksMoWvKV2YAYEhoizRuk/xFnKF+emUIi46TsQ+rvlm/t2BBCfA==}
471
+ peerDependencies:
472
+ vue: ^3.0.0
473
+
474
+ '@vitejs/plugin-vue@6.0.1':
475
+ resolution: {integrity: sha512-+MaE752hU0wfPFJEUAIxqw18+20euHHdxVtMvbFcOEpjEyfqXH/5DCoTHiVJ0J29EhTJdoTkjEv5YBKU9dnoTw==}
476
+ engines: {node: ^20.19.0 || >=22.12.0}
477
+ peerDependencies:
478
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0
479
+ vue: ^3.2.25
480
+
481
+ '@volar/language-core@2.4.23':
482
+ resolution: {integrity: sha512-hEEd5ET/oSmBC6pi1j6NaNYRWoAiDhINbT8rmwtINugR39loROSlufGdYMF9TaKGfz+ViGs1Idi3mAhnuPcoGQ==}
483
+
484
+ '@volar/source-map@2.4.23':
485
+ resolution: {integrity: sha512-Z1Uc8IB57Lm6k7q6KIDu/p+JWtf3xsXJqAX/5r18hYOTpJyBn0KXUR8oTJ4WFYOcDzWC9n3IflGgHowx6U6z9Q==}
486
+
487
+ '@volar/typescript@2.4.23':
488
+ resolution: {integrity: sha512-lAB5zJghWxVPqfcStmAP1ZqQacMpe90UrP5RJ3arDyrhy4aCUQqmxPPLB2PWDKugvylmO41ljK7vZ+t6INMTag==}
489
+
490
+ '@vue/compiler-core@3.5.21':
491
+ resolution: {integrity: sha512-8i+LZ0vf6ZgII5Z9XmUvrCyEzocvWT+TeR2VBUVlzIH6Tyv57E20mPZ1bCS+tbejgUgmjrEh7q/0F0bibskAmw==}
492
+
493
+ '@vue/compiler-dom@3.5.21':
494
+ resolution: {integrity: sha512-jNtbu/u97wiyEBJlJ9kmdw7tAr5Vy0Aj5CgQmo+6pxWNQhXZDPsRr1UWPN4v3Zf82s2H3kF51IbzZ4jMWAgPlQ==}
495
+
496
+ '@vue/compiler-sfc@3.5.21':
497
+ resolution: {integrity: sha512-SXlyk6I5eUGBd2v8Ie7tF6ADHE9kCR6mBEuPyH1nUZ0h6Xx6nZI29i12sJKQmzbDyr2tUHMhhTt51Z6blbkTTQ==}
498
+
499
+ '@vue/compiler-ssr@3.5.21':
500
+ resolution: {integrity: sha512-vKQ5olH5edFZdf5ZrlEgSO1j1DMA4u23TVK5XR1uMhvwnYvVdDF0nHXJUblL/GvzlShQbjhZZ2uvYmDlAbgo9w==}
501
+
502
+ '@vue/compiler-vue2@2.7.16':
503
+ resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
504
+
505
+ '@vue/devtools-api@6.6.4':
506
+ resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
507
+
508
+ '@vue/devtools-api@7.7.2':
509
+ resolution: {integrity: sha512-1syn558KhyN+chO5SjlZIwJ8bV/bQ1nOVTG66t2RbG66ZGekyiYNmRO7X9BJCXQqPsFHlnksqvPhce2qpzxFnA==}
510
+
511
+ '@vue/devtools-api@7.7.7':
512
+ resolution: {integrity: sha512-lwOnNBH2e7x1fIIbVT7yF5D+YWhqELm55/4ZKf45R9T8r9dE2AIOy8HKjfqzGsoTHFbWbr337O4E0A0QADnjBg==}
513
+
514
+ '@vue/devtools-kit@7.7.7':
515
+ resolution: {integrity: sha512-wgoZtxcTta65cnZ1Q6MbAfePVFxfM+gq0saaeytoph7nEa7yMXoi6sCPy4ufO111B9msnw0VOWjPEFCXuAKRHA==}
516
+
517
+ '@vue/devtools-shared@7.7.7':
518
+ resolution: {integrity: sha512-+udSj47aRl5aKb0memBvcUG9koarqnxNM5yjuREvqwK6T3ap4mn3Zqqc17QrBFTqSMjr3HK1cvStEZpMDpfdyw==}
519
+
520
+ '@vue/language-core@3.0.6':
521
+ resolution: {integrity: sha512-e2RRzYWm+qGm8apUHW1wA5RQxzNhkqbbKdbKhiDUcmMrNAZGyM8aTiL3UrTqkaFI5s7wJRGGrp4u3jgusuBp2A==}
522
+ peerDependencies:
523
+ typescript: '*'
524
+ peerDependenciesMeta:
525
+ typescript:
526
+ optional: true
527
+
528
+ '@vue/reactivity@3.5.21':
529
+ resolution: {integrity: sha512-3ah7sa+Cwr9iiYEERt9JfZKPw4A2UlbY8RbbnH2mGCE8NwHkhmlZt2VsH0oDA3P08X3jJd29ohBDtX+TbD9AsA==}
530
+
531
+ '@vue/runtime-core@3.5.21':
532
+ resolution: {integrity: sha512-+DplQlRS4MXfIf9gfD1BOJpk5RSyGgGXD/R+cumhe8jdjUcq/qlxDawQlSI8hCKupBlvM+3eS1se5xW+SuNAwA==}
533
+
534
+ '@vue/runtime-dom@3.5.21':
535
+ resolution: {integrity: sha512-3M2DZsOFwM5qI15wrMmNF5RJe1+ARijt2HM3TbzBbPSuBHOQpoidE+Pa+XEaVN+czbHf81ETRoG1ltztP2em8w==}
536
+
537
+ '@vue/server-renderer@3.5.21':
538
+ resolution: {integrity: sha512-qr8AqgD3DJPJcGvLcJKQo2tAc8OnXRcfxhOJCPF+fcfn5bBGz7VCcO7t+qETOPxpWK1mgysXvVT/j+xWaHeMWA==}
539
+ peerDependencies:
540
+ vue: 3.5.21
541
+
542
+ '@vue/shared@3.5.21':
543
+ resolution: {integrity: sha512-+2k1EQpnYuVuu3N7atWyG3/xoFWIVJZq4Mz8XNOdScFI0etES75fbny/oU4lKWk/577P1zmg0ioYvpGEDZ3DLw==}
544
+
545
+ '@vue/tsconfig@0.7.0':
546
+ resolution: {integrity: sha512-ku2uNz5MaZ9IerPPUyOHzyjhXoX2kVJaVf7hL315DC17vS6IiZRmmCPfggNbU16QTvM80+uYYy3eYJB59WCtvg==}
547
+ peerDependencies:
548
+ typescript: 5.x
549
+ vue: ^3.4.0
550
+ peerDependenciesMeta:
551
+ typescript:
552
+ optional: true
553
+ vue:
554
+ optional: true
555
+
556
+ acorn@8.15.0:
557
+ resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
558
+ engines: {node: '>=0.4.0'}
559
+ hasBin: true
560
+
561
+ alien-signals@2.0.7:
562
+ resolution: {integrity: sha512-wE7y3jmYeb0+h6mr5BOovuqhFv22O/MV9j5p0ndJsa7z1zJNPGQ4ph5pQk/kTTCWRC3xsA4SmtwmkzQO+7NCNg==}
563
+
564
+ anymatch@3.1.3:
565
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
566
+ engines: {node: '>= 8'}
567
+
568
+ asynckit@0.4.0:
569
+ resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
570
+
571
+ autoprefixer@10.4.21:
572
+ resolution: {integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==}
573
+ engines: {node: ^10 || ^12 || >=14}
574
+ hasBin: true
575
+ peerDependencies:
576
+ postcss: ^8.1.0
577
+
578
+ axios@1.11.0:
579
+ resolution: {integrity: sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==}
580
+
581
+ binary-extensions@2.3.0:
582
+ resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
583
+ engines: {node: '>=8'}
584
+
585
+ birpc@2.5.0:
586
+ resolution: {integrity: sha512-VSWO/W6nNQdyP520F1mhf+Lc2f8pjGQOtoHHm7Ze8Go1kX7akpVIrtTa0fn+HB0QJEDVacl6aO08YE0PgXfdnQ==}
587
+
588
+ braces@3.0.3:
589
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
590
+ engines: {node: '>=8'}
591
+
592
+ browserslist@4.25.4:
593
+ resolution: {integrity: sha512-4jYpcjabC606xJ3kw2QwGEZKX0Aw7sgQdZCvIK9dhVSPh76BKo+C+btT1RRofH7B+8iNpEbgGNVWiLki5q93yg==}
594
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
595
+ hasBin: true
596
+
597
+ call-bind-apply-helpers@1.0.2:
598
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
599
+ engines: {node: '>= 0.4'}
600
+
601
+ caniuse-lite@1.0.30001741:
602
+ resolution: {integrity: sha512-QGUGitqsc8ARjLdgAfxETDhRbJ0REsP6O3I96TAth/mVjh2cYzN2u+3AzPP3aVSm2FehEItaJw1xd+IGBXWeSw==}
603
+
604
+ chokidar@3.6.0:
605
+ resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
606
+ engines: {node: '>= 8.10.0'}
607
+
608
+ chokidar@4.0.3:
609
+ resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
610
+ engines: {node: '>= 14.16.0'}
611
+
612
+ combined-stream@1.0.8:
613
+ resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
614
+ engines: {node: '>= 0.8'}
615
+
616
+ confbox@0.1.8:
617
+ resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
618
+
619
+ confbox@0.2.2:
620
+ resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==}
621
+
622
+ copy-anything@3.0.5:
623
+ resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
624
+ engines: {node: '>=12.13'}
625
+
626
+ csstype@3.1.3:
627
+ resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
628
+
629
+ dayjs@1.11.18:
630
+ resolution: {integrity: sha512-zFBQ7WFRvVRhKcWoUh+ZA1g2HVgUbsZm9sbddh8EC5iv93sui8DVVz1Npvz+r6meo9VKfa8NyLWBsQK1VvIKPA==}
631
+
632
+ de-indent@1.0.2:
633
+ resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
634
+
635
+ debug@4.4.1:
636
+ resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
637
+ engines: {node: '>=6.0'}
638
+ peerDependencies:
639
+ supports-color: '*'
640
+ peerDependenciesMeta:
641
+ supports-color:
642
+ optional: true
643
+
644
+ delayed-stream@1.0.0:
645
+ resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
646
+ engines: {node: '>=0.4.0'}
647
+
648
+ detect-libc@1.0.3:
649
+ resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
650
+ engines: {node: '>=0.10'}
651
+ hasBin: true
652
+
653
+ dunder-proto@1.0.1:
654
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
655
+ engines: {node: '>= 0.4'}
656
+
657
+ electron-to-chromium@1.5.214:
658
+ resolution: {integrity: sha512-TpvUNdha+X3ybfU78NoQatKvQEm1oq3lf2QbnmCEdw+Bd9RuIAY+hJTvq1avzHM0f7EJfnH3vbCnbzKzisc/9Q==}
659
+
660
+ entities@4.5.0:
661
+ resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
662
+ engines: {node: '>=0.12'}
663
+
664
+ es-define-property@1.0.1:
665
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
666
+ engines: {node: '>= 0.4'}
667
+
668
+ es-errors@1.3.0:
669
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
670
+ engines: {node: '>= 0.4'}
671
+
672
+ es-object-atoms@1.1.1:
673
+ resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
674
+ engines: {node: '>= 0.4'}
675
+
676
+ es-set-tostringtag@2.1.0:
677
+ resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
678
+ engines: {node: '>= 0.4'}
679
+
680
+ esbuild@0.25.9:
681
+ resolution: {integrity: sha512-CRbODhYyQx3qp7ZEwzxOk4JBqmD/seJrzPa/cGjY1VtIn5E09Oi9/dB4JwctnfZ8Q8iT7rioVv5k/FNT/uf54g==}
682
+ engines: {node: '>=18'}
683
+ hasBin: true
684
+
685
+ escalade@3.2.0:
686
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
687
+ engines: {node: '>=6'}
688
+
689
+ escape-string-regexp@5.0.0:
690
+ resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
691
+ engines: {node: '>=12'}
692
+
693
+ estree-walker@2.0.2:
694
+ resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
695
+
696
+ estree-walker@3.0.3:
697
+ resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
698
+
699
+ exsolve@1.0.7:
700
+ resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==}
701
+
702
+ fdir@6.5.0:
703
+ resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
704
+ engines: {node: '>=12.0.0'}
705
+ peerDependencies:
706
+ picomatch: ^3 || ^4
707
+ peerDependenciesMeta:
708
+ picomatch:
709
+ optional: true
710
+
711
+ fill-range@7.1.1:
712
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
713
+ engines: {node: '>=8'}
714
+
715
+ follow-redirects@1.15.11:
716
+ resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
717
+ engines: {node: '>=4.0'}
718
+ peerDependencies:
719
+ debug: '*'
720
+ peerDependenciesMeta:
721
+ debug:
722
+ optional: true
723
+
724
+ form-data@4.0.4:
725
+ resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
726
+ engines: {node: '>= 6'}
727
+
728
+ fraction.js@4.3.7:
729
+ resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
730
+
731
+ fsevents@2.3.3:
732
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
733
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
734
+ os: [darwin]
735
+
736
+ function-bind@1.1.2:
737
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
738
+
739
+ get-intrinsic@1.3.0:
740
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
741
+ engines: {node: '>= 0.4'}
742
+
743
+ get-proto@1.0.1:
744
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
745
+ engines: {node: '>= 0.4'}
746
+
747
+ glob-parent@5.1.2:
748
+ resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
749
+ engines: {node: '>= 6'}
750
+
751
+ gopd@1.2.0:
752
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
753
+ engines: {node: '>= 0.4'}
754
+
755
+ has-symbols@1.1.0:
756
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
757
+ engines: {node: '>= 0.4'}
758
+
759
+ has-tostringtag@1.0.2:
760
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
761
+ engines: {node: '>= 0.4'}
762
+
763
+ hasown@2.0.2:
764
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
765
+ engines: {node: '>= 0.4'}
766
+
767
+ he@1.2.0:
768
+ resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
769
+ hasBin: true
770
+
771
+ hookable@5.5.3:
772
+ resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
773
+
774
+ immutable@5.1.3:
775
+ resolution: {integrity: sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg==}
776
+
777
+ is-binary-path@2.1.0:
778
+ resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
779
+ engines: {node: '>=8'}
780
+
781
+ is-extglob@2.1.1:
782
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
783
+ engines: {node: '>=0.10.0'}
784
+
785
+ is-glob@4.0.3:
786
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
787
+ engines: {node: '>=0.10.0'}
788
+
789
+ is-number@7.0.0:
790
+ resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
791
+ engines: {node: '>=0.12.0'}
792
+
793
+ is-what@4.1.16:
794
+ resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==}
795
+ engines: {node: '>=12.13'}
796
+
797
+ js-cookie@3.0.5:
798
+ resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
799
+ engines: {node: '>=14'}
800
+
801
+ js-tokens@9.0.1:
802
+ resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
803
+
804
+ local-pkg@1.1.2:
805
+ resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==}
806
+ engines: {node: '>=14'}
807
+
808
+ lodash-es@4.17.21:
809
+ resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
810
+
811
+ magic-string@0.30.18:
812
+ resolution: {integrity: sha512-yi8swmWbO17qHhwIBNeeZxTceJMeBvWJaId6dyvTSOwTipqeHhMhOrz6513r1sOKnpvQ7zkhlG8tPrpilwTxHQ==}
813
+
814
+ math-intrinsics@1.1.0:
815
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
816
+ engines: {node: '>= 0.4'}
817
+
818
+ micromatch@4.0.8:
819
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
820
+ engines: {node: '>=8.6'}
821
+
822
+ mime-db@1.52.0:
823
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
824
+ engines: {node: '>= 0.6'}
825
+
826
+ mime-types@2.1.35:
827
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
828
+ engines: {node: '>= 0.6'}
829
+
830
+ mitt@3.0.1:
831
+ resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
832
+
833
+ mlly@1.8.0:
834
+ resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==}
835
+
836
+ ms@2.1.3:
837
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
838
+
839
+ muggle-string@0.4.1:
840
+ resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
841
+
842
+ nanoid@3.3.11:
843
+ resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
844
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
845
+ hasBin: true
846
+
847
+ node-addon-api@7.1.1:
848
+ resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
849
+
850
+ node-releases@2.0.20:
851
+ resolution: {integrity: sha512-7gK6zSXEH6neM212JgfYFXe+GmZQM+fia5SsusuBIUgnPheLFBmIPhtFoAQRj8/7wASYQnbDlHPVwY0BefoFgA==}
852
+
853
+ normalize-path@3.0.0:
854
+ resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
855
+ engines: {node: '>=0.10.0'}
856
+
857
+ normalize-range@0.1.2:
858
+ resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
859
+ engines: {node: '>=0.10.0'}
860
+
861
+ object-assign@4.1.1:
862
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
863
+ engines: {node: '>=0.10.0'}
864
+
865
+ path-browserify@1.0.1:
866
+ resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
867
+
868
+ pathe@2.0.3:
869
+ resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
870
+
871
+ perfect-debounce@1.0.0:
872
+ resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
873
+
874
+ picocolors@1.1.1:
875
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
876
+
877
+ picomatch@2.3.1:
878
+ resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
879
+ engines: {node: '>=8.6'}
880
+
881
+ picomatch@4.0.3:
882
+ resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
883
+ engines: {node: '>=12'}
884
+
885
+ pinia@3.0.3:
886
+ resolution: {integrity: sha512-ttXO/InUULUXkMHpTdp9Fj4hLpD/2AoJdmAbAeW2yu1iy1k+pkFekQXw5VpC0/5p51IOR/jDaDRfRWRnMMsGOA==}
887
+ peerDependencies:
888
+ typescript: '>=4.4.4'
889
+ vue: ^2.7.0 || ^3.5.11
890
+ peerDependenciesMeta:
891
+ typescript:
892
+ optional: true
893
+
894
+ pkg-types@1.3.1:
895
+ resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
896
+
897
+ pkg-types@2.3.0:
898
+ resolution: {integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==}
899
+
900
+ postcss-px-to-viewport@1.1.1:
901
+ resolution: {integrity: sha512-2x9oGnBms+e0cYtBJOZdlwrFg/mLR4P1g2IFu7jYKvnqnH/HLhoKyareW2Q/x4sg0BgklHlP1qeWo2oCyPm8FQ==}
902
+
903
+ postcss-value-parser@4.2.0:
904
+ resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
905
+
906
+ postcss@8.5.6:
907
+ resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
908
+ engines: {node: ^10 || ^12 || >=14}
909
+
910
+ proxy-from-env@1.1.0:
911
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
912
+
913
+ quansync@0.2.11:
914
+ resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==}
915
+
916
+ readdirp@3.6.0:
917
+ resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
918
+ engines: {node: '>=8.10.0'}
919
+
920
+ readdirp@4.1.2:
921
+ resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
922
+ engines: {node: '>= 14.18.0'}
923
+
924
+ rfdc@1.4.1:
925
+ resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
926
+
927
+ rollup@4.50.1:
928
+ resolution: {integrity: sha512-78E9voJHwnXQMiQdiqswVLZwJIzdBKJ1GdI5Zx6XwoFKUIk09/sSrr+05QFzvYb8q6Y9pPV45zzDuYa3907TZA==}
929
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
930
+ hasBin: true
931
+
932
+ sass@1.92.1:
933
+ resolution: {integrity: sha512-ffmsdbwqb3XeyR8jJR6KelIXARM9bFQe8A6Q3W4Klmwy5Ckd5gz7jgUNHo4UOqutU5Sk1DtKLbpDP0nLCg1xqQ==}
934
+ engines: {node: '>=14.0.0'}
935
+ hasBin: true
936
+
937
+ screenfull@5.2.0:
938
+ resolution: {integrity: sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==}
939
+ engines: {node: '>=0.10.0'}
940
+
941
+ scule@1.3.0:
942
+ resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
943
+
944
+ source-map-js@1.2.1:
945
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
946
+ engines: {node: '>=0.10.0'}
947
+
948
+ speakingurl@14.0.1:
949
+ resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
950
+ engines: {node: '>=0.10.0'}
951
+
952
+ strip-literal@3.0.0:
953
+ resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==}
954
+
955
+ superjson@2.2.2:
956
+ resolution: {integrity: sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==}
957
+ engines: {node: '>=16'}
958
+
959
+ tinyglobby@0.2.15:
960
+ resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
961
+ engines: {node: '>=12.0.0'}
962
+
963
+ to-regex-range@5.0.1:
964
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
965
+ engines: {node: '>=8.0'}
966
+
967
+ typescript@5.8.3:
968
+ resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
969
+ engines: {node: '>=14.17'}
970
+ hasBin: true
971
+
972
+ ufo@1.6.1:
973
+ resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==}
974
+
975
+ undici-types@7.10.0:
976
+ resolution: {integrity: sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==}
977
+
978
+ unimport@5.2.0:
979
+ resolution: {integrity: sha512-bTuAMMOOqIAyjV4i4UH7P07pO+EsVxmhOzQ2YJ290J6mkLUdozNhb5I/YoOEheeNADC03ent3Qj07X0fWfUpmw==}
980
+ engines: {node: '>=18.12.0'}
981
+
982
+ unplugin-auto-import@20.1.0:
983
+ resolution: {integrity: sha512-Wa7/y3DwpbxhjyXCbuliuATCPa0/e47tstWkytJGAr55ooSNwIvbkrq0rlduqYGiCNMsZcD+C6vsN+W3AX96eA==}
984
+ engines: {node: '>=14'}
985
+ peerDependencies:
986
+ '@nuxt/kit': ^4.0.0
987
+ '@vueuse/core': '*'
988
+ peerDependenciesMeta:
989
+ '@nuxt/kit':
990
+ optional: true
991
+ '@vueuse/core':
992
+ optional: true
993
+
994
+ unplugin-utils@0.2.5:
995
+ resolution: {integrity: sha512-gwXJnPRewT4rT7sBi/IvxKTjsms7jX7QIDLOClApuZwR49SXbrB1z2NLUZ+vDHyqCj/n58OzRRqaW+B8OZi8vg==}
996
+ engines: {node: '>=18.12.0'}
997
+
998
+ unplugin-utils@0.3.0:
999
+ resolution: {integrity: sha512-JLoggz+PvLVMJo+jZt97hdIIIZ2yTzGgft9e9q8iMrC4ewufl62ekeW7mixBghonn2gVb/ICjyvlmOCUBnJLQg==}
1000
+ engines: {node: '>=20.19.0'}
1001
+
1002
+ unplugin-vue-components@29.0.0:
1003
+ resolution: {integrity: sha512-M2DX44g4/jvBkB0V6uwqTbkTd5DMRHpeGoi/cIKwGG4HPuNxLbe8zoTStB2n12hoDiWc9I1PIRQruRWExNXHlQ==}
1004
+ engines: {node: '>=14'}
1005
+ peerDependencies:
1006
+ '@babel/parser': ^7.15.8
1007
+ '@nuxt/kit': ^3.2.2 || ^4.0.0
1008
+ vue: 2 || 3
1009
+ peerDependenciesMeta:
1010
+ '@babel/parser':
1011
+ optional: true
1012
+ '@nuxt/kit':
1013
+ optional: true
1014
+
1015
+ unplugin@2.3.10:
1016
+ resolution: {integrity: sha512-6NCPkv1ClwH+/BGE9QeoTIl09nuiAt0gS28nn1PvYXsGKRwM2TCbFA2QiilmehPDTXIe684k4rZI1yl3A1PCUw==}
1017
+ engines: {node: '>=18.12.0'}
1018
+
1019
+ update-browserslist-db@1.1.3:
1020
+ resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
1021
+ hasBin: true
1022
+ peerDependencies:
1023
+ browserslist: '>= 4.21.0'
1024
+
1025
+ vant@4.9.21:
1026
+ resolution: {integrity: sha512-hXUoZMrLLjykimFRLDlGNd+K2iYSRh9YwLMKnsVdVZ+9inUKxpqnjhOqlZwocbnYkvJlS+febf9u9aJpDol4Pw==}
1027
+ peerDependencies:
1028
+ vue: ^3.0.0
1029
+
1030
+ vite@7.1.5:
1031
+ resolution: {integrity: sha512-4cKBO9wR75r0BeIWWWId9XK9Lj6La5X846Zw9dFfzMRw38IlTk2iCcUt6hsyiDRcPidc55ZParFYDXi0nXOeLQ==}
1032
+ engines: {node: ^20.19.0 || >=22.12.0}
1033
+ hasBin: true
1034
+ peerDependencies:
1035
+ '@types/node': ^20.19.0 || >=22.12.0
1036
+ jiti: '>=1.21.0'
1037
+ less: ^4.0.0
1038
+ lightningcss: ^1.21.0
1039
+ sass: ^1.70.0
1040
+ sass-embedded: ^1.70.0
1041
+ stylus: '>=0.54.8'
1042
+ sugarss: ^5.0.0
1043
+ terser: ^5.16.0
1044
+ tsx: ^4.8.1
1045
+ yaml: ^2.4.2
1046
+ peerDependenciesMeta:
1047
+ '@types/node':
1048
+ optional: true
1049
+ jiti:
1050
+ optional: true
1051
+ less:
1052
+ optional: true
1053
+ lightningcss:
1054
+ optional: true
1055
+ sass:
1056
+ optional: true
1057
+ sass-embedded:
1058
+ optional: true
1059
+ stylus:
1060
+ optional: true
1061
+ sugarss:
1062
+ optional: true
1063
+ terser:
1064
+ optional: true
1065
+ tsx:
1066
+ optional: true
1067
+ yaml:
1068
+ optional: true
1069
+
1070
+ vscode-uri@3.1.0:
1071
+ resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
1072
+
1073
+ vue-hooks-plus@2.4.1:
1074
+ resolution: {integrity: sha512-DY9CW6U1ISeu10K3Hf7cKAvfG/S316rXt0Bt66BuTt9oplP+NuJYHtUuT/Ve5kWgNNEfyhrvguCY0JL0fBCzaw==}
1075
+ peerDependencies:
1076
+ vue: ^3.2.25
1077
+
1078
+ vue-router@4.5.1:
1079
+ resolution: {integrity: sha512-ogAF3P97NPm8fJsE4by9dwSYtDwXIY1nFY9T6DyQnGHd1E2Da94w9JIolpe42LJGIl0DwOHBi8TcRPlPGwbTtw==}
1080
+ peerDependencies:
1081
+ vue: ^3.2.0
1082
+
1083
+ vue-tsc@3.0.6:
1084
+ resolution: {integrity: sha512-Tbs8Whd43R2e2nxez4WXPvvdjGbW24rOSgRhLOHXzWiT4pcP4G7KeWh0YCn18rF4bVwv7tggLLZ6MJnO6jXPBg==}
1085
+ hasBin: true
1086
+ peerDependencies:
1087
+ typescript: '>=5.0.0'
1088
+
1089
+ vue@3.5.21:
1090
+ resolution: {integrity: sha512-xxf9rum9KtOdwdRkiApWL+9hZEMWE90FHh8yS1+KJAiWYh+iGWV1FquPjoO9VUHQ+VIhsCXNNyZ5Sf4++RVZBA==}
1091
+ peerDependencies:
1092
+ typescript: '*'
1093
+ peerDependenciesMeta:
1094
+ typescript:
1095
+ optional: true
1096
+
1097
+ webpack-virtual-modules@0.6.2:
1098
+ resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
1099
+
1100
+ snapshots:
1101
+
1102
+ '@babel/helper-string-parser@7.27.1': {}
1103
+
1104
+ '@babel/helper-validator-identifier@7.27.1': {}
1105
+
1106
+ '@babel/parser@7.28.4':
1107
+ dependencies:
1108
+ '@babel/types': 7.28.4
1109
+
1110
+ '@babel/types@7.28.4':
1111
+ dependencies:
1112
+ '@babel/helper-string-parser': 7.27.1
1113
+ '@babel/helper-validator-identifier': 7.27.1
1114
+
1115
+ '@esbuild/aix-ppc64@0.25.9':
1116
+ optional: true
1117
+
1118
+ '@esbuild/android-arm64@0.25.9':
1119
+ optional: true
1120
+
1121
+ '@esbuild/android-arm@0.25.9':
1122
+ optional: true
1123
+
1124
+ '@esbuild/android-x64@0.25.9':
1125
+ optional: true
1126
+
1127
+ '@esbuild/darwin-arm64@0.25.9':
1128
+ optional: true
1129
+
1130
+ '@esbuild/darwin-x64@0.25.9':
1131
+ optional: true
1132
+
1133
+ '@esbuild/freebsd-arm64@0.25.9':
1134
+ optional: true
1135
+
1136
+ '@esbuild/freebsd-x64@0.25.9':
1137
+ optional: true
1138
+
1139
+ '@esbuild/linux-arm64@0.25.9':
1140
+ optional: true
1141
+
1142
+ '@esbuild/linux-arm@0.25.9':
1143
+ optional: true
1144
+
1145
+ '@esbuild/linux-ia32@0.25.9':
1146
+ optional: true
1147
+
1148
+ '@esbuild/linux-loong64@0.25.9':
1149
+ optional: true
1150
+
1151
+ '@esbuild/linux-mips64el@0.25.9':
1152
+ optional: true
1153
+
1154
+ '@esbuild/linux-ppc64@0.25.9':
1155
+ optional: true
1156
+
1157
+ '@esbuild/linux-riscv64@0.25.9':
1158
+ optional: true
1159
+
1160
+ '@esbuild/linux-s390x@0.25.9':
1161
+ optional: true
1162
+
1163
+ '@esbuild/linux-x64@0.25.9':
1164
+ optional: true
1165
+
1166
+ '@esbuild/netbsd-arm64@0.25.9':
1167
+ optional: true
1168
+
1169
+ '@esbuild/netbsd-x64@0.25.9':
1170
+ optional: true
1171
+
1172
+ '@esbuild/openbsd-arm64@0.25.9':
1173
+ optional: true
1174
+
1175
+ '@esbuild/openbsd-x64@0.25.9':
1176
+ optional: true
1177
+
1178
+ '@esbuild/openharmony-arm64@0.25.9':
1179
+ optional: true
1180
+
1181
+ '@esbuild/sunos-x64@0.25.9':
1182
+ optional: true
1183
+
1184
+ '@esbuild/win32-arm64@0.25.9':
1185
+ optional: true
1186
+
1187
+ '@esbuild/win32-ia32@0.25.9':
1188
+ optional: true
1189
+
1190
+ '@esbuild/win32-x64@0.25.9':
1191
+ optional: true
1192
+
1193
+ '@jridgewell/gen-mapping@0.3.13':
1194
+ dependencies:
1195
+ '@jridgewell/sourcemap-codec': 1.5.5
1196
+ '@jridgewell/trace-mapping': 0.3.30
1197
+
1198
+ '@jridgewell/remapping@2.3.5':
1199
+ dependencies:
1200
+ '@jridgewell/gen-mapping': 0.3.13
1201
+ '@jridgewell/trace-mapping': 0.3.30
1202
+
1203
+ '@jridgewell/resolve-uri@3.1.2': {}
1204
+
1205
+ '@jridgewell/sourcemap-codec@1.5.5': {}
1206
+
1207
+ '@jridgewell/trace-mapping@0.3.30':
1208
+ dependencies:
1209
+ '@jridgewell/resolve-uri': 3.1.2
1210
+ '@jridgewell/sourcemap-codec': 1.5.5
1211
+
1212
+ '@parcel/watcher-android-arm64@2.5.1':
1213
+ optional: true
1214
+
1215
+ '@parcel/watcher-darwin-arm64@2.5.1':
1216
+ optional: true
1217
+
1218
+ '@parcel/watcher-darwin-x64@2.5.1':
1219
+ optional: true
1220
+
1221
+ '@parcel/watcher-freebsd-x64@2.5.1':
1222
+ optional: true
1223
+
1224
+ '@parcel/watcher-linux-arm-glibc@2.5.1':
1225
+ optional: true
1226
+
1227
+ '@parcel/watcher-linux-arm-musl@2.5.1':
1228
+ optional: true
1229
+
1230
+ '@parcel/watcher-linux-arm64-glibc@2.5.1':
1231
+ optional: true
1232
+
1233
+ '@parcel/watcher-linux-arm64-musl@2.5.1':
1234
+ optional: true
1235
+
1236
+ '@parcel/watcher-linux-x64-glibc@2.5.1':
1237
+ optional: true
1238
+
1239
+ '@parcel/watcher-linux-x64-musl@2.5.1':
1240
+ optional: true
1241
+
1242
+ '@parcel/watcher-win32-arm64@2.5.1':
1243
+ optional: true
1244
+
1245
+ '@parcel/watcher-win32-ia32@2.5.1':
1246
+ optional: true
1247
+
1248
+ '@parcel/watcher-win32-x64@2.5.1':
1249
+ optional: true
1250
+
1251
+ '@parcel/watcher@2.5.1':
1252
+ dependencies:
1253
+ detect-libc: 1.0.3
1254
+ is-glob: 4.0.3
1255
+ micromatch: 4.0.8
1256
+ node-addon-api: 7.1.1
1257
+ optionalDependencies:
1258
+ '@parcel/watcher-android-arm64': 2.5.1
1259
+ '@parcel/watcher-darwin-arm64': 2.5.1
1260
+ '@parcel/watcher-darwin-x64': 2.5.1
1261
+ '@parcel/watcher-freebsd-x64': 2.5.1
1262
+ '@parcel/watcher-linux-arm-glibc': 2.5.1
1263
+ '@parcel/watcher-linux-arm-musl': 2.5.1
1264
+ '@parcel/watcher-linux-arm64-glibc': 2.5.1
1265
+ '@parcel/watcher-linux-arm64-musl': 2.5.1
1266
+ '@parcel/watcher-linux-x64-glibc': 2.5.1
1267
+ '@parcel/watcher-linux-x64-musl': 2.5.1
1268
+ '@parcel/watcher-win32-arm64': 2.5.1
1269
+ '@parcel/watcher-win32-ia32': 2.5.1
1270
+ '@parcel/watcher-win32-x64': 2.5.1
1271
+ optional: true
1272
+
1273
+ '@rolldown/pluginutils@1.0.0-beta.29': {}
1274
+
1275
+ '@rollup/rollup-android-arm-eabi@4.50.1':
1276
+ optional: true
1277
+
1278
+ '@rollup/rollup-android-arm64@4.50.1':
1279
+ optional: true
1280
+
1281
+ '@rollup/rollup-darwin-arm64@4.50.1':
1282
+ optional: true
1283
+
1284
+ '@rollup/rollup-darwin-x64@4.50.1':
1285
+ optional: true
1286
+
1287
+ '@rollup/rollup-freebsd-arm64@4.50.1':
1288
+ optional: true
1289
+
1290
+ '@rollup/rollup-freebsd-x64@4.50.1':
1291
+ optional: true
1292
+
1293
+ '@rollup/rollup-linux-arm-gnueabihf@4.50.1':
1294
+ optional: true
1295
+
1296
+ '@rollup/rollup-linux-arm-musleabihf@4.50.1':
1297
+ optional: true
1298
+
1299
+ '@rollup/rollup-linux-arm64-gnu@4.50.1':
1300
+ optional: true
1301
+
1302
+ '@rollup/rollup-linux-arm64-musl@4.50.1':
1303
+ optional: true
1304
+
1305
+ '@rollup/rollup-linux-loongarch64-gnu@4.50.1':
1306
+ optional: true
1307
+
1308
+ '@rollup/rollup-linux-ppc64-gnu@4.50.1':
1309
+ optional: true
1310
+
1311
+ '@rollup/rollup-linux-riscv64-gnu@4.50.1':
1312
+ optional: true
1313
+
1314
+ '@rollup/rollup-linux-riscv64-musl@4.50.1':
1315
+ optional: true
1316
+
1317
+ '@rollup/rollup-linux-s390x-gnu@4.50.1':
1318
+ optional: true
1319
+
1320
+ '@rollup/rollup-linux-x64-gnu@4.50.1':
1321
+ optional: true
1322
+
1323
+ '@rollup/rollup-linux-x64-musl@4.50.1':
1324
+ optional: true
1325
+
1326
+ '@rollup/rollup-openharmony-arm64@4.50.1':
1327
+ optional: true
1328
+
1329
+ '@rollup/rollup-win32-arm64-msvc@4.50.1':
1330
+ optional: true
1331
+
1332
+ '@rollup/rollup-win32-ia32-msvc@4.50.1':
1333
+ optional: true
1334
+
1335
+ '@rollup/rollup-win32-x64-msvc@4.50.1':
1336
+ optional: true
1337
+
1338
+ '@types/estree@1.0.8': {}
1339
+
1340
+ '@types/js-cookie@3.0.6': {}
1341
+
1342
+ '@types/node@24.3.1':
1343
+ dependencies:
1344
+ undici-types: 7.10.0
1345
+
1346
+ '@vant/auto-import-resolver@1.3.0': {}
1347
+
1348
+ '@vant/popperjs@1.3.0': {}
1349
+
1350
+ '@vant/use@1.6.0(vue@3.5.21(typescript@5.8.3))':
1351
+ dependencies:
1352
+ vue: 3.5.21(typescript@5.8.3)
1353
+
1354
+ '@vitejs/plugin-vue@6.0.1(vite@7.1.5(@types/node@24.3.1)(sass@1.92.1))(vue@3.5.21(typescript@5.8.3))':
1355
+ dependencies:
1356
+ '@rolldown/pluginutils': 1.0.0-beta.29
1357
+ vite: 7.1.5(@types/node@24.3.1)(sass@1.92.1)
1358
+ vue: 3.5.21(typescript@5.8.3)
1359
+
1360
+ '@volar/language-core@2.4.23':
1361
+ dependencies:
1362
+ '@volar/source-map': 2.4.23
1363
+
1364
+ '@volar/source-map@2.4.23': {}
1365
+
1366
+ '@volar/typescript@2.4.23':
1367
+ dependencies:
1368
+ '@volar/language-core': 2.4.23
1369
+ path-browserify: 1.0.1
1370
+ vscode-uri: 3.1.0
1371
+
1372
+ '@vue/compiler-core@3.5.21':
1373
+ dependencies:
1374
+ '@babel/parser': 7.28.4
1375
+ '@vue/shared': 3.5.21
1376
+ entities: 4.5.0
1377
+ estree-walker: 2.0.2
1378
+ source-map-js: 1.2.1
1379
+
1380
+ '@vue/compiler-dom@3.5.21':
1381
+ dependencies:
1382
+ '@vue/compiler-core': 3.5.21
1383
+ '@vue/shared': 3.5.21
1384
+
1385
+ '@vue/compiler-sfc@3.5.21':
1386
+ dependencies:
1387
+ '@babel/parser': 7.28.4
1388
+ '@vue/compiler-core': 3.5.21
1389
+ '@vue/compiler-dom': 3.5.21
1390
+ '@vue/compiler-ssr': 3.5.21
1391
+ '@vue/shared': 3.5.21
1392
+ estree-walker: 2.0.2
1393
+ magic-string: 0.30.18
1394
+ postcss: 8.5.6
1395
+ source-map-js: 1.2.1
1396
+
1397
+ '@vue/compiler-ssr@3.5.21':
1398
+ dependencies:
1399
+ '@vue/compiler-dom': 3.5.21
1400
+ '@vue/shared': 3.5.21
1401
+
1402
+ '@vue/compiler-vue2@2.7.16':
1403
+ dependencies:
1404
+ de-indent: 1.0.2
1405
+ he: 1.2.0
1406
+
1407
+ '@vue/devtools-api@6.6.4': {}
1408
+
1409
+ '@vue/devtools-api@7.7.2':
1410
+ dependencies:
1411
+ '@vue/devtools-kit': 7.7.7
1412
+
1413
+ '@vue/devtools-api@7.7.7':
1414
+ dependencies:
1415
+ '@vue/devtools-kit': 7.7.7
1416
+
1417
+ '@vue/devtools-kit@7.7.7':
1418
+ dependencies:
1419
+ '@vue/devtools-shared': 7.7.7
1420
+ birpc: 2.5.0
1421
+ hookable: 5.5.3
1422
+ mitt: 3.0.1
1423
+ perfect-debounce: 1.0.0
1424
+ speakingurl: 14.0.1
1425
+ superjson: 2.2.2
1426
+
1427
+ '@vue/devtools-shared@7.7.7':
1428
+ dependencies:
1429
+ rfdc: 1.4.1
1430
+
1431
+ '@vue/language-core@3.0.6(typescript@5.8.3)':
1432
+ dependencies:
1433
+ '@volar/language-core': 2.4.23
1434
+ '@vue/compiler-dom': 3.5.21
1435
+ '@vue/compiler-vue2': 2.7.16
1436
+ '@vue/shared': 3.5.21
1437
+ alien-signals: 2.0.7
1438
+ muggle-string: 0.4.1
1439
+ path-browserify: 1.0.1
1440
+ picomatch: 4.0.3
1441
+ optionalDependencies:
1442
+ typescript: 5.8.3
1443
+
1444
+ '@vue/reactivity@3.5.21':
1445
+ dependencies:
1446
+ '@vue/shared': 3.5.21
1447
+
1448
+ '@vue/runtime-core@3.5.21':
1449
+ dependencies:
1450
+ '@vue/reactivity': 3.5.21
1451
+ '@vue/shared': 3.5.21
1452
+
1453
+ '@vue/runtime-dom@3.5.21':
1454
+ dependencies:
1455
+ '@vue/reactivity': 3.5.21
1456
+ '@vue/runtime-core': 3.5.21
1457
+ '@vue/shared': 3.5.21
1458
+ csstype: 3.1.3
1459
+
1460
+ '@vue/server-renderer@3.5.21(vue@3.5.21(typescript@5.8.3))':
1461
+ dependencies:
1462
+ '@vue/compiler-ssr': 3.5.21
1463
+ '@vue/shared': 3.5.21
1464
+ vue: 3.5.21(typescript@5.8.3)
1465
+
1466
+ '@vue/shared@3.5.21': {}
1467
+
1468
+ '@vue/tsconfig@0.7.0(typescript@5.8.3)(vue@3.5.21(typescript@5.8.3))':
1469
+ optionalDependencies:
1470
+ typescript: 5.8.3
1471
+ vue: 3.5.21(typescript@5.8.3)
1472
+
1473
+ acorn@8.15.0: {}
1474
+
1475
+ alien-signals@2.0.7: {}
1476
+
1477
+ anymatch@3.1.3:
1478
+ dependencies:
1479
+ normalize-path: 3.0.0
1480
+ picomatch: 2.3.1
1481
+
1482
+ asynckit@0.4.0: {}
1483
+
1484
+ autoprefixer@10.4.21(postcss@8.5.6):
1485
+ dependencies:
1486
+ browserslist: 4.25.4
1487
+ caniuse-lite: 1.0.30001741
1488
+ fraction.js: 4.3.7
1489
+ normalize-range: 0.1.2
1490
+ picocolors: 1.1.1
1491
+ postcss: 8.5.6
1492
+ postcss-value-parser: 4.2.0
1493
+
1494
+ axios@1.11.0:
1495
+ dependencies:
1496
+ follow-redirects: 1.15.11
1497
+ form-data: 4.0.4
1498
+ proxy-from-env: 1.1.0
1499
+ transitivePeerDependencies:
1500
+ - debug
1501
+
1502
+ binary-extensions@2.3.0: {}
1503
+
1504
+ birpc@2.5.0: {}
1505
+
1506
+ braces@3.0.3:
1507
+ dependencies:
1508
+ fill-range: 7.1.1
1509
+
1510
+ browserslist@4.25.4:
1511
+ dependencies:
1512
+ caniuse-lite: 1.0.30001741
1513
+ electron-to-chromium: 1.5.214
1514
+ node-releases: 2.0.20
1515
+ update-browserslist-db: 1.1.3(browserslist@4.25.4)
1516
+
1517
+ call-bind-apply-helpers@1.0.2:
1518
+ dependencies:
1519
+ es-errors: 1.3.0
1520
+ function-bind: 1.1.2
1521
+
1522
+ caniuse-lite@1.0.30001741: {}
1523
+
1524
+ chokidar@3.6.0:
1525
+ dependencies:
1526
+ anymatch: 3.1.3
1527
+ braces: 3.0.3
1528
+ glob-parent: 5.1.2
1529
+ is-binary-path: 2.1.0
1530
+ is-glob: 4.0.3
1531
+ normalize-path: 3.0.0
1532
+ readdirp: 3.6.0
1533
+ optionalDependencies:
1534
+ fsevents: 2.3.3
1535
+
1536
+ chokidar@4.0.3:
1537
+ dependencies:
1538
+ readdirp: 4.1.2
1539
+
1540
+ combined-stream@1.0.8:
1541
+ dependencies:
1542
+ delayed-stream: 1.0.0
1543
+
1544
+ confbox@0.1.8: {}
1545
+
1546
+ confbox@0.2.2: {}
1547
+
1548
+ copy-anything@3.0.5:
1549
+ dependencies:
1550
+ is-what: 4.1.16
1551
+
1552
+ csstype@3.1.3: {}
1553
+
1554
+ dayjs@1.11.18: {}
1555
+
1556
+ de-indent@1.0.2: {}
1557
+
1558
+ debug@4.4.1:
1559
+ dependencies:
1560
+ ms: 2.1.3
1561
+
1562
+ delayed-stream@1.0.0: {}
1563
+
1564
+ detect-libc@1.0.3:
1565
+ optional: true
1566
+
1567
+ dunder-proto@1.0.1:
1568
+ dependencies:
1569
+ call-bind-apply-helpers: 1.0.2
1570
+ es-errors: 1.3.0
1571
+ gopd: 1.2.0
1572
+
1573
+ electron-to-chromium@1.5.214: {}
1574
+
1575
+ entities@4.5.0: {}
1576
+
1577
+ es-define-property@1.0.1: {}
1578
+
1579
+ es-errors@1.3.0: {}
1580
+
1581
+ es-object-atoms@1.1.1:
1582
+ dependencies:
1583
+ es-errors: 1.3.0
1584
+
1585
+ es-set-tostringtag@2.1.0:
1586
+ dependencies:
1587
+ es-errors: 1.3.0
1588
+ get-intrinsic: 1.3.0
1589
+ has-tostringtag: 1.0.2
1590
+ hasown: 2.0.2
1591
+
1592
+ esbuild@0.25.9:
1593
+ optionalDependencies:
1594
+ '@esbuild/aix-ppc64': 0.25.9
1595
+ '@esbuild/android-arm': 0.25.9
1596
+ '@esbuild/android-arm64': 0.25.9
1597
+ '@esbuild/android-x64': 0.25.9
1598
+ '@esbuild/darwin-arm64': 0.25.9
1599
+ '@esbuild/darwin-x64': 0.25.9
1600
+ '@esbuild/freebsd-arm64': 0.25.9
1601
+ '@esbuild/freebsd-x64': 0.25.9
1602
+ '@esbuild/linux-arm': 0.25.9
1603
+ '@esbuild/linux-arm64': 0.25.9
1604
+ '@esbuild/linux-ia32': 0.25.9
1605
+ '@esbuild/linux-loong64': 0.25.9
1606
+ '@esbuild/linux-mips64el': 0.25.9
1607
+ '@esbuild/linux-ppc64': 0.25.9
1608
+ '@esbuild/linux-riscv64': 0.25.9
1609
+ '@esbuild/linux-s390x': 0.25.9
1610
+ '@esbuild/linux-x64': 0.25.9
1611
+ '@esbuild/netbsd-arm64': 0.25.9
1612
+ '@esbuild/netbsd-x64': 0.25.9
1613
+ '@esbuild/openbsd-arm64': 0.25.9
1614
+ '@esbuild/openbsd-x64': 0.25.9
1615
+ '@esbuild/openharmony-arm64': 0.25.9
1616
+ '@esbuild/sunos-x64': 0.25.9
1617
+ '@esbuild/win32-arm64': 0.25.9
1618
+ '@esbuild/win32-ia32': 0.25.9
1619
+ '@esbuild/win32-x64': 0.25.9
1620
+
1621
+ escalade@3.2.0: {}
1622
+
1623
+ escape-string-regexp@5.0.0: {}
1624
+
1625
+ estree-walker@2.0.2: {}
1626
+
1627
+ estree-walker@3.0.3:
1628
+ dependencies:
1629
+ '@types/estree': 1.0.8
1630
+
1631
+ exsolve@1.0.7: {}
1632
+
1633
+ fdir@6.5.0(picomatch@4.0.3):
1634
+ optionalDependencies:
1635
+ picomatch: 4.0.3
1636
+
1637
+ fill-range@7.1.1:
1638
+ dependencies:
1639
+ to-regex-range: 5.0.1
1640
+
1641
+ follow-redirects@1.15.11: {}
1642
+
1643
+ form-data@4.0.4:
1644
+ dependencies:
1645
+ asynckit: 0.4.0
1646
+ combined-stream: 1.0.8
1647
+ es-set-tostringtag: 2.1.0
1648
+ hasown: 2.0.2
1649
+ mime-types: 2.1.35
1650
+
1651
+ fraction.js@4.3.7: {}
1652
+
1653
+ fsevents@2.3.3:
1654
+ optional: true
1655
+
1656
+ function-bind@1.1.2: {}
1657
+
1658
+ get-intrinsic@1.3.0:
1659
+ dependencies:
1660
+ call-bind-apply-helpers: 1.0.2
1661
+ es-define-property: 1.0.1
1662
+ es-errors: 1.3.0
1663
+ es-object-atoms: 1.1.1
1664
+ function-bind: 1.1.2
1665
+ get-proto: 1.0.1
1666
+ gopd: 1.2.0
1667
+ has-symbols: 1.1.0
1668
+ hasown: 2.0.2
1669
+ math-intrinsics: 1.1.0
1670
+
1671
+ get-proto@1.0.1:
1672
+ dependencies:
1673
+ dunder-proto: 1.0.1
1674
+ es-object-atoms: 1.1.1
1675
+
1676
+ glob-parent@5.1.2:
1677
+ dependencies:
1678
+ is-glob: 4.0.3
1679
+
1680
+ gopd@1.2.0: {}
1681
+
1682
+ has-symbols@1.1.0: {}
1683
+
1684
+ has-tostringtag@1.0.2:
1685
+ dependencies:
1686
+ has-symbols: 1.1.0
1687
+
1688
+ hasown@2.0.2:
1689
+ dependencies:
1690
+ function-bind: 1.1.2
1691
+
1692
+ he@1.2.0: {}
1693
+
1694
+ hookable@5.5.3: {}
1695
+
1696
+ immutable@5.1.3: {}
1697
+
1698
+ is-binary-path@2.1.0:
1699
+ dependencies:
1700
+ binary-extensions: 2.3.0
1701
+
1702
+ is-extglob@2.1.1: {}
1703
+
1704
+ is-glob@4.0.3:
1705
+ dependencies:
1706
+ is-extglob: 2.1.1
1707
+
1708
+ is-number@7.0.0: {}
1709
+
1710
+ is-what@4.1.16: {}
1711
+
1712
+ js-cookie@3.0.5: {}
1713
+
1714
+ js-tokens@9.0.1: {}
1715
+
1716
+ local-pkg@1.1.2:
1717
+ dependencies:
1718
+ mlly: 1.8.0
1719
+ pkg-types: 2.3.0
1720
+ quansync: 0.2.11
1721
+
1722
+ lodash-es@4.17.21: {}
1723
+
1724
+ magic-string@0.30.18:
1725
+ dependencies:
1726
+ '@jridgewell/sourcemap-codec': 1.5.5
1727
+
1728
+ math-intrinsics@1.1.0: {}
1729
+
1730
+ micromatch@4.0.8:
1731
+ dependencies:
1732
+ braces: 3.0.3
1733
+ picomatch: 2.3.1
1734
+ optional: true
1735
+
1736
+ mime-db@1.52.0: {}
1737
+
1738
+ mime-types@2.1.35:
1739
+ dependencies:
1740
+ mime-db: 1.52.0
1741
+
1742
+ mitt@3.0.1: {}
1743
+
1744
+ mlly@1.8.0:
1745
+ dependencies:
1746
+ acorn: 8.15.0
1747
+ pathe: 2.0.3
1748
+ pkg-types: 1.3.1
1749
+ ufo: 1.6.1
1750
+
1751
+ ms@2.1.3: {}
1752
+
1753
+ muggle-string@0.4.1: {}
1754
+
1755
+ nanoid@3.3.11: {}
1756
+
1757
+ node-addon-api@7.1.1:
1758
+ optional: true
1759
+
1760
+ node-releases@2.0.20: {}
1761
+
1762
+ normalize-path@3.0.0: {}
1763
+
1764
+ normalize-range@0.1.2: {}
1765
+
1766
+ object-assign@4.1.1: {}
1767
+
1768
+ path-browserify@1.0.1: {}
1769
+
1770
+ pathe@2.0.3: {}
1771
+
1772
+ perfect-debounce@1.0.0: {}
1773
+
1774
+ picocolors@1.1.1: {}
1775
+
1776
+ picomatch@2.3.1: {}
1777
+
1778
+ picomatch@4.0.3: {}
1779
+
1780
+ pinia@3.0.3(typescript@5.8.3)(vue@3.5.21(typescript@5.8.3)):
1781
+ dependencies:
1782
+ '@vue/devtools-api': 7.7.7
1783
+ vue: 3.5.21(typescript@5.8.3)
1784
+ optionalDependencies:
1785
+ typescript: 5.8.3
1786
+
1787
+ pkg-types@1.3.1:
1788
+ dependencies:
1789
+ confbox: 0.1.8
1790
+ mlly: 1.8.0
1791
+ pathe: 2.0.3
1792
+
1793
+ pkg-types@2.3.0:
1794
+ dependencies:
1795
+ confbox: 0.2.2
1796
+ exsolve: 1.0.7
1797
+ pathe: 2.0.3
1798
+
1799
+ postcss-px-to-viewport@1.1.1:
1800
+ dependencies:
1801
+ object-assign: 4.1.1
1802
+ postcss: 8.5.6
1803
+
1804
+ postcss-value-parser@4.2.0: {}
1805
+
1806
+ postcss@8.5.6:
1807
+ dependencies:
1808
+ nanoid: 3.3.11
1809
+ picocolors: 1.1.1
1810
+ source-map-js: 1.2.1
1811
+
1812
+ proxy-from-env@1.1.0: {}
1813
+
1814
+ quansync@0.2.11: {}
1815
+
1816
+ readdirp@3.6.0:
1817
+ dependencies:
1818
+ picomatch: 2.3.1
1819
+
1820
+ readdirp@4.1.2: {}
1821
+
1822
+ rfdc@1.4.1: {}
1823
+
1824
+ rollup@4.50.1:
1825
+ dependencies:
1826
+ '@types/estree': 1.0.8
1827
+ optionalDependencies:
1828
+ '@rollup/rollup-android-arm-eabi': 4.50.1
1829
+ '@rollup/rollup-android-arm64': 4.50.1
1830
+ '@rollup/rollup-darwin-arm64': 4.50.1
1831
+ '@rollup/rollup-darwin-x64': 4.50.1
1832
+ '@rollup/rollup-freebsd-arm64': 4.50.1
1833
+ '@rollup/rollup-freebsd-x64': 4.50.1
1834
+ '@rollup/rollup-linux-arm-gnueabihf': 4.50.1
1835
+ '@rollup/rollup-linux-arm-musleabihf': 4.50.1
1836
+ '@rollup/rollup-linux-arm64-gnu': 4.50.1
1837
+ '@rollup/rollup-linux-arm64-musl': 4.50.1
1838
+ '@rollup/rollup-linux-loongarch64-gnu': 4.50.1
1839
+ '@rollup/rollup-linux-ppc64-gnu': 4.50.1
1840
+ '@rollup/rollup-linux-riscv64-gnu': 4.50.1
1841
+ '@rollup/rollup-linux-riscv64-musl': 4.50.1
1842
+ '@rollup/rollup-linux-s390x-gnu': 4.50.1
1843
+ '@rollup/rollup-linux-x64-gnu': 4.50.1
1844
+ '@rollup/rollup-linux-x64-musl': 4.50.1
1845
+ '@rollup/rollup-openharmony-arm64': 4.50.1
1846
+ '@rollup/rollup-win32-arm64-msvc': 4.50.1
1847
+ '@rollup/rollup-win32-ia32-msvc': 4.50.1
1848
+ '@rollup/rollup-win32-x64-msvc': 4.50.1
1849
+ fsevents: 2.3.3
1850
+
1851
+ sass@1.92.1:
1852
+ dependencies:
1853
+ chokidar: 4.0.3
1854
+ immutable: 5.1.3
1855
+ source-map-js: 1.2.1
1856
+ optionalDependencies:
1857
+ '@parcel/watcher': 2.5.1
1858
+
1859
+ screenfull@5.2.0: {}
1860
+
1861
+ scule@1.3.0: {}
1862
+
1863
+ source-map-js@1.2.1: {}
1864
+
1865
+ speakingurl@14.0.1: {}
1866
+
1867
+ strip-literal@3.0.0:
1868
+ dependencies:
1869
+ js-tokens: 9.0.1
1870
+
1871
+ superjson@2.2.2:
1872
+ dependencies:
1873
+ copy-anything: 3.0.5
1874
+
1875
+ tinyglobby@0.2.15:
1876
+ dependencies:
1877
+ fdir: 6.5.0(picomatch@4.0.3)
1878
+ picomatch: 4.0.3
1879
+
1880
+ to-regex-range@5.0.1:
1881
+ dependencies:
1882
+ is-number: 7.0.0
1883
+
1884
+ typescript@5.8.3: {}
1885
+
1886
+ ufo@1.6.1: {}
1887
+
1888
+ undici-types@7.10.0: {}
1889
+
1890
+ unimport@5.2.0:
1891
+ dependencies:
1892
+ acorn: 8.15.0
1893
+ escape-string-regexp: 5.0.0
1894
+ estree-walker: 3.0.3
1895
+ local-pkg: 1.1.2
1896
+ magic-string: 0.30.18
1897
+ mlly: 1.8.0
1898
+ pathe: 2.0.3
1899
+ picomatch: 4.0.3
1900
+ pkg-types: 2.3.0
1901
+ scule: 1.3.0
1902
+ strip-literal: 3.0.0
1903
+ tinyglobby: 0.2.15
1904
+ unplugin: 2.3.10
1905
+ unplugin-utils: 0.2.5
1906
+
1907
+ unplugin-auto-import@20.1.0:
1908
+ dependencies:
1909
+ local-pkg: 1.1.2
1910
+ magic-string: 0.30.18
1911
+ picomatch: 4.0.3
1912
+ unimport: 5.2.0
1913
+ unplugin: 2.3.10
1914
+ unplugin-utils: 0.3.0
1915
+
1916
+ unplugin-utils@0.2.5:
1917
+ dependencies:
1918
+ pathe: 2.0.3
1919
+ picomatch: 4.0.3
1920
+
1921
+ unplugin-utils@0.3.0:
1922
+ dependencies:
1923
+ pathe: 2.0.3
1924
+ picomatch: 4.0.3
1925
+
1926
+ unplugin-vue-components@29.0.0(@babel/parser@7.28.4)(vue@3.5.21(typescript@5.8.3)):
1927
+ dependencies:
1928
+ chokidar: 3.6.0
1929
+ debug: 4.4.1
1930
+ local-pkg: 1.1.2
1931
+ magic-string: 0.30.18
1932
+ mlly: 1.8.0
1933
+ tinyglobby: 0.2.15
1934
+ unplugin: 2.3.10
1935
+ unplugin-utils: 0.2.5
1936
+ vue: 3.5.21(typescript@5.8.3)
1937
+ optionalDependencies:
1938
+ '@babel/parser': 7.28.4
1939
+ transitivePeerDependencies:
1940
+ - supports-color
1941
+
1942
+ unplugin@2.3.10:
1943
+ dependencies:
1944
+ '@jridgewell/remapping': 2.3.5
1945
+ acorn: 8.15.0
1946
+ picomatch: 4.0.3
1947
+ webpack-virtual-modules: 0.6.2
1948
+
1949
+ update-browserslist-db@1.1.3(browserslist@4.25.4):
1950
+ dependencies:
1951
+ browserslist: 4.25.4
1952
+ escalade: 3.2.0
1953
+ picocolors: 1.1.1
1954
+
1955
+ vant@4.9.21(vue@3.5.21(typescript@5.8.3)):
1956
+ dependencies:
1957
+ '@vant/popperjs': 1.3.0
1958
+ '@vant/use': 1.6.0(vue@3.5.21(typescript@5.8.3))
1959
+ '@vue/shared': 3.5.21
1960
+ vue: 3.5.21(typescript@5.8.3)
1961
+
1962
+ vite@7.1.5(@types/node@24.3.1)(sass@1.92.1):
1963
+ dependencies:
1964
+ esbuild: 0.25.9
1965
+ fdir: 6.5.0(picomatch@4.0.3)
1966
+ picomatch: 4.0.3
1967
+ postcss: 8.5.6
1968
+ rollup: 4.50.1
1969
+ tinyglobby: 0.2.15
1970
+ optionalDependencies:
1971
+ '@types/node': 24.3.1
1972
+ fsevents: 2.3.3
1973
+ sass: 1.92.1
1974
+
1975
+ vscode-uri@3.1.0: {}
1976
+
1977
+ vue-hooks-plus@2.4.1(vue@3.5.21(typescript@5.8.3)):
1978
+ dependencies:
1979
+ '@types/js-cookie': 3.0.6
1980
+ '@vue/devtools-api': 7.7.2
1981
+ js-cookie: 3.0.5
1982
+ lodash-es: 4.17.21
1983
+ screenfull: 5.2.0
1984
+ vue: 3.5.21(typescript@5.8.3)
1985
+
1986
+ vue-router@4.5.1(vue@3.5.21(typescript@5.8.3)):
1987
+ dependencies:
1988
+ '@vue/devtools-api': 6.6.4
1989
+ vue: 3.5.21(typescript@5.8.3)
1990
+
1991
+ vue-tsc@3.0.6(typescript@5.8.3):
1992
+ dependencies:
1993
+ '@volar/typescript': 2.4.23
1994
+ '@vue/language-core': 3.0.6(typescript@5.8.3)
1995
+ typescript: 5.8.3
1996
+
1997
+ vue@3.5.21(typescript@5.8.3):
1998
+ dependencies:
1999
+ '@vue/compiler-dom': 3.5.21
2000
+ '@vue/compiler-sfc': 3.5.21
2001
+ '@vue/runtime-dom': 3.5.21
2002
+ '@vue/server-renderer': 3.5.21(vue@3.5.21(typescript@5.8.3))
2003
+ '@vue/shared': 3.5.21
2004
+ optionalDependencies:
2005
+ typescript: 5.8.3
2006
+
2007
+ webpack-virtual-modules@0.6.2: {}