adminforth 2.25.0 → 2.26.0-next.2

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 (53) hide show
  1. package/commands/bundle.js +2 -1
  2. package/commands/createApp/templates/Dockerfile.hbs +12 -0
  3. package/commands/createApp/templates/package.json.hbs +18 -6
  4. package/commands/createApp/templates/pnpm_templates/pnpm-lock.yaml.hbs +8 -0
  5. package/commands/createApp/templates/pnpm_templates/pnpm-workspace.yaml.hbs +2 -0
  6. package/commands/createApp/templates/readme.md.hbs +23 -4
  7. package/commands/createApp/utils.js +107 -26
  8. package/commands/createPlugin/utils.js +5 -6
  9. package/commands/postinstall.js +1 -1
  10. package/dist/auth.d.ts.map +1 -1
  11. package/dist/auth.js.map +1 -1
  12. package/dist/index.d.ts +1 -0
  13. package/dist/index.d.ts.map +1 -1
  14. package/dist/index.js +3 -0
  15. package/dist/index.js.map +1 -1
  16. package/dist/modules/codeInjector.d.ts +11 -2
  17. package/dist/modules/codeInjector.d.ts.map +1 -1
  18. package/dist/modules/codeInjector.js +197 -49
  19. package/dist/modules/codeInjector.js.map +1 -1
  20. package/dist/modules/styles.d.ts +4 -0
  21. package/dist/modules/styles.d.ts.map +1 -1
  22. package/dist/modules/styles.js +4 -0
  23. package/dist/modules/styles.js.map +1 -1
  24. package/dist/modules/utils.d.ts.map +1 -1
  25. package/dist/servers/express.d.ts +0 -1
  26. package/dist/servers/express.d.ts.map +1 -1
  27. package/dist/spa/README.md +4 -4
  28. package/dist/spa/package-lock.json +1889 -1427
  29. package/dist/spa/package.json +3 -3
  30. package/dist/spa/pnpm-lock.yaml +3546 -0
  31. package/dist/spa/src/afcl/Button.vue +12 -5
  32. package/dist/spa/src/afcl/Dialog.vue +155 -126
  33. package/dist/spa/src/afcl/Modal.vue +25 -6
  34. package/dist/spa/src/afcl/Select.vue +6 -2
  35. package/dist/spa/src/components/MenuLink.vue +18 -4
  36. package/dist/spa/src/components/Sidebar.vue +1 -1
  37. package/dist/spa/src/components/ThreeDotsMenu.vue +1 -1
  38. package/dist/spa/src/components/ValueRenderer.vue +1 -1
  39. package/dist/spa/src/stores/core.ts +1 -2
  40. package/dist/spa/src/types/Back.ts +2 -2
  41. package/dist/spa/src/types/Common.ts +8 -0
  42. package/dist/spa/src/types/FrontendAPI.ts +0 -3
  43. package/dist/spa/src/utils/utils.ts +57 -2
  44. package/dist/spa/src/views/CreateView.vue +12 -11
  45. package/dist/spa/src/views/EditView.vue +9 -13
  46. package/dist/spa/vite.config.ts +29 -40
  47. package/dist/types/Back.d.ts +2 -3
  48. package/dist/types/Back.d.ts.map +1 -1
  49. package/dist/types/Common.d.ts +6 -0
  50. package/dist/types/Common.d.ts.map +1 -1
  51. package/dist/types/Common.js.map +1 -1
  52. package/package.json +15 -7
  53. package/scripts/postinstall.js +25 -0
@@ -0,0 +1,3546 @@
1
+ lockfileVersion: '9.0'
2
+
3
+ settings:
4
+ autoInstallPeers: true
5
+ excludeLinksFromLockfile: false
6
+
7
+ importers:
8
+
9
+ .:
10
+ dependencies:
11
+ '@iconify-prerendered/vue-flag':
12
+ specifier: ^0.28.1748584105
13
+ version: 0.28.1754899047(vue@3.5.29(typescript@5.4.5))
14
+ '@iconify-prerendered/vue-flowbite':
15
+ specifier: ^0.28.1754899090
16
+ version: 0.28.1754899090(vue@3.5.29(typescript@5.4.5))
17
+ '@iconify-prerendered/vue-humbleicons':
18
+ specifier: ^0.28.1754108846
19
+ version: 0.28.1754108846(vue@3.5.29(typescript@5.4.5))
20
+ '@unhead/vue':
21
+ specifier: ^1.9.12
22
+ version: 1.11.20(vue@3.5.29(typescript@5.4.5))
23
+ '@vueuse/core':
24
+ specifier: ^10.10.0
25
+ version: 10.11.1(vue@3.5.29(typescript@5.4.5))
26
+ apexcharts:
27
+ specifier: ^4.7.0
28
+ version: 4.7.0
29
+ dayjs:
30
+ specifier: ^1.11.11
31
+ version: 1.11.19
32
+ debounce:
33
+ specifier: ^2.1.0
34
+ version: 2.2.0
35
+ flowbite-datepicker:
36
+ specifier: ^1.2.6
37
+ version: 1.3.2(rollup@4.59.0)
38
+ javascript-time-ago:
39
+ specifier: ^2.5.11
40
+ version: 2.6.4
41
+ pinia:
42
+ specifier: ^2.1.7
43
+ version: 2.3.1(typescript@5.4.5)(vue@3.5.29(typescript@5.4.5))
44
+ sanitize-html:
45
+ specifier: ^2.13.0
46
+ version: 2.17.1
47
+ unhead:
48
+ specifier: ^1.9.12
49
+ version: 1.11.20
50
+ vue:
51
+ specifier: ^3.5.12
52
+ version: 3.5.29(typescript@5.4.5)
53
+ vue-diff:
54
+ specifier: ^1.2.4
55
+ version: 1.2.4(vue@3.5.29(typescript@5.4.5))
56
+ vue-i18n:
57
+ specifier: ^10.0.5
58
+ version: 10.0.8(vue@3.5.29(typescript@5.4.5))
59
+ vue-router:
60
+ specifier: ^4.3.0
61
+ version: 4.6.4(vue@3.5.29(typescript@5.4.5))
62
+ vue-slider-component:
63
+ specifier: ^4.1.0-beta.7
64
+ version: 4.1.0-beta.7
65
+ vue3-json-viewer:
66
+ specifier: ^2.2.2
67
+ version: 2.4.1(vue@3.5.29(typescript@5.4.5))
68
+ devDependencies:
69
+ '@rushstack/eslint-patch':
70
+ specifier: ^1.8.0
71
+ version: 1.16.1
72
+ '@tailwindcss/typography':
73
+ specifier: ^0.5.19
74
+ version: 0.5.19(tailwindcss@3.4.19)
75
+ '@tsconfig/node20':
76
+ specifier: ^20.1.4
77
+ version: 20.1.9
78
+ '@types/node':
79
+ specifier: ^20.12.5
80
+ version: 20.19.37
81
+ '@vitejs/plugin-vue':
82
+ specifier: ^5.0.4
83
+ version: 5.2.4(vite@5.4.21(@types/node@20.19.37)(sass@1.97.3))(vue@3.5.29(typescript@5.4.5))
84
+ '@vue/eslint-config-typescript':
85
+ specifier: ^13.0.0
86
+ version: 13.0.0(eslint-plugin-vue@9.33.0(eslint@8.57.1))(eslint@8.57.1)(typescript@5.4.5)
87
+ '@vue/tsconfig':
88
+ specifier: ^0.5.1
89
+ version: 0.5.1
90
+ autoprefixer:
91
+ specifier: ^10.4.19
92
+ version: 10.4.27(postcss@8.5.8)
93
+ eslint:
94
+ specifier: ^8.57.0
95
+ version: 8.57.1
96
+ eslint-plugin-vue:
97
+ specifier: ^9.23.0
98
+ version: 9.33.0(eslint@8.57.1)
99
+ flag-icons:
100
+ specifier: ^7.2.3
101
+ version: 7.5.0
102
+ flowbite:
103
+ specifier: ^3.1.2
104
+ version: 3.1.2(rollup@4.59.0)
105
+ i18n-iso-countries:
106
+ specifier: ^7.12.0
107
+ version: 7.14.0
108
+ npm-run-all2:
109
+ specifier: ^6.1.2
110
+ version: 6.2.6
111
+ portfinder:
112
+ specifier: ^1.0.32
113
+ version: 1.0.38
114
+ postcss:
115
+ specifier: ^8.4.38
116
+ version: 8.5.8
117
+ sass:
118
+ specifier: ^1.77.2
119
+ version: 1.97.3
120
+ tailwindcss:
121
+ specifier: ^3.4.17
122
+ version: 3.4.19
123
+ typescript:
124
+ specifier: ~5.4.0
125
+ version: 5.4.5
126
+ vite:
127
+ specifier: ^5.2.13
128
+ version: 5.4.21(@types/node@20.19.37)(sass@1.97.3)
129
+ vue-i18n-extract:
130
+ specifier: ^2.0.7
131
+ version: 2.0.7
132
+ vue-tsc:
133
+ specifier: ^2.0.11
134
+ version: 2.2.12(typescript@5.4.5)
135
+
136
+ packages:
137
+
138
+ '@alloc/quick-lru@5.2.0':
139
+ resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
140
+ engines: {node: '>=10'}
141
+
142
+ '@babel/helper-string-parser@7.27.1':
143
+ resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
144
+ engines: {node: '>=6.9.0'}
145
+
146
+ '@babel/helper-validator-identifier@7.28.5':
147
+ resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
148
+ engines: {node: '>=6.9.0'}
149
+
150
+ '@babel/parser@7.29.0':
151
+ resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
152
+ engines: {node: '>=6.0.0'}
153
+ hasBin: true
154
+
155
+ '@babel/types@7.29.0':
156
+ resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
157
+ engines: {node: '>=6.9.0'}
158
+
159
+ '@esbuild/aix-ppc64@0.21.5':
160
+ resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
161
+ engines: {node: '>=12'}
162
+ cpu: [ppc64]
163
+ os: [aix]
164
+
165
+ '@esbuild/android-arm64@0.21.5':
166
+ resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
167
+ engines: {node: '>=12'}
168
+ cpu: [arm64]
169
+ os: [android]
170
+
171
+ '@esbuild/android-arm@0.21.5':
172
+ resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
173
+ engines: {node: '>=12'}
174
+ cpu: [arm]
175
+ os: [android]
176
+
177
+ '@esbuild/android-x64@0.21.5':
178
+ resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
179
+ engines: {node: '>=12'}
180
+ cpu: [x64]
181
+ os: [android]
182
+
183
+ '@esbuild/darwin-arm64@0.21.5':
184
+ resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
185
+ engines: {node: '>=12'}
186
+ cpu: [arm64]
187
+ os: [darwin]
188
+
189
+ '@esbuild/darwin-x64@0.21.5':
190
+ resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
191
+ engines: {node: '>=12'}
192
+ cpu: [x64]
193
+ os: [darwin]
194
+
195
+ '@esbuild/freebsd-arm64@0.21.5':
196
+ resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
197
+ engines: {node: '>=12'}
198
+ cpu: [arm64]
199
+ os: [freebsd]
200
+
201
+ '@esbuild/freebsd-x64@0.21.5':
202
+ resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
203
+ engines: {node: '>=12'}
204
+ cpu: [x64]
205
+ os: [freebsd]
206
+
207
+ '@esbuild/linux-arm64@0.21.5':
208
+ resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
209
+ engines: {node: '>=12'}
210
+ cpu: [arm64]
211
+ os: [linux]
212
+
213
+ '@esbuild/linux-arm@0.21.5':
214
+ resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
215
+ engines: {node: '>=12'}
216
+ cpu: [arm]
217
+ os: [linux]
218
+
219
+ '@esbuild/linux-ia32@0.21.5':
220
+ resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
221
+ engines: {node: '>=12'}
222
+ cpu: [ia32]
223
+ os: [linux]
224
+
225
+ '@esbuild/linux-loong64@0.21.5':
226
+ resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
227
+ engines: {node: '>=12'}
228
+ cpu: [loong64]
229
+ os: [linux]
230
+
231
+ '@esbuild/linux-mips64el@0.21.5':
232
+ resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
233
+ engines: {node: '>=12'}
234
+ cpu: [mips64el]
235
+ os: [linux]
236
+
237
+ '@esbuild/linux-ppc64@0.21.5':
238
+ resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
239
+ engines: {node: '>=12'}
240
+ cpu: [ppc64]
241
+ os: [linux]
242
+
243
+ '@esbuild/linux-riscv64@0.21.5':
244
+ resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
245
+ engines: {node: '>=12'}
246
+ cpu: [riscv64]
247
+ os: [linux]
248
+
249
+ '@esbuild/linux-s390x@0.21.5':
250
+ resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
251
+ engines: {node: '>=12'}
252
+ cpu: [s390x]
253
+ os: [linux]
254
+
255
+ '@esbuild/linux-x64@0.21.5':
256
+ resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
257
+ engines: {node: '>=12'}
258
+ cpu: [x64]
259
+ os: [linux]
260
+
261
+ '@esbuild/netbsd-x64@0.21.5':
262
+ resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
263
+ engines: {node: '>=12'}
264
+ cpu: [x64]
265
+ os: [netbsd]
266
+
267
+ '@esbuild/openbsd-x64@0.21.5':
268
+ resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
269
+ engines: {node: '>=12'}
270
+ cpu: [x64]
271
+ os: [openbsd]
272
+
273
+ '@esbuild/sunos-x64@0.21.5':
274
+ resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
275
+ engines: {node: '>=12'}
276
+ cpu: [x64]
277
+ os: [sunos]
278
+
279
+ '@esbuild/win32-arm64@0.21.5':
280
+ resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
281
+ engines: {node: '>=12'}
282
+ cpu: [arm64]
283
+ os: [win32]
284
+
285
+ '@esbuild/win32-ia32@0.21.5':
286
+ resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
287
+ engines: {node: '>=12'}
288
+ cpu: [ia32]
289
+ os: [win32]
290
+
291
+ '@esbuild/win32-x64@0.21.5':
292
+ resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
293
+ engines: {node: '>=12'}
294
+ cpu: [x64]
295
+ os: [win32]
296
+
297
+ '@eslint-community/eslint-utils@4.9.1':
298
+ resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
299
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
300
+ peerDependencies:
301
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
302
+
303
+ '@eslint-community/regexpp@4.12.2':
304
+ resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
305
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
306
+
307
+ '@eslint/eslintrc@2.1.4':
308
+ resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
309
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
310
+
311
+ '@eslint/js@8.57.1':
312
+ resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
313
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
314
+
315
+ '@humanwhocodes/config-array@0.13.0':
316
+ resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
317
+ engines: {node: '>=10.10.0'}
318
+ deprecated: Use @eslint/config-array instead
319
+
320
+ '@humanwhocodes/module-importer@1.0.1':
321
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
322
+ engines: {node: '>=12.22'}
323
+
324
+ '@humanwhocodes/object-schema@2.0.3':
325
+ resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
326
+ deprecated: Use @eslint/object-schema instead
327
+
328
+ '@iconify-prerendered/vue-flag@0.28.1754899047':
329
+ resolution: {integrity: sha512-pJ98pR7laS3UxJ+BZt4FhpkxYGkeFAT8B5ERC1bkiI1Jr0ws2DwjMx7dAnae7h9lRKdyNcKfhATZwQuNBheryQ==}
330
+ peerDependencies:
331
+ vue: ^3.0.0
332
+
333
+ '@iconify-prerendered/vue-flowbite@0.28.1754899090':
334
+ resolution: {integrity: sha512-WPXCiCRFLR0QC0kW0RbL8Gf2Fj1sjzXgFKD8blU3YaranXgfSe47AMuIFT/nFxxiVWhEDwtn/luOjyj+wuR31A==}
335
+ peerDependencies:
336
+ vue: ^3.0.0
337
+
338
+ '@iconify-prerendered/vue-humbleicons@0.28.1754108846':
339
+ resolution: {integrity: sha512-O7X7bHh4QhR9ui098FK8Sh/fPA7JRg2rVrLxUpv8Xh0LpahI9u01YKy5flhkzcwwQ+A6zN2uuKI16rytrVVcaA==}
340
+ peerDependencies:
341
+ vue: ^3.0.0
342
+
343
+ '@intlify/core-base@10.0.8':
344
+ resolution: {integrity: sha512-FoHslNWSoHjdUBLy35bpm9PV/0LVI/DSv9L6Km6J2ad8r/mm0VaGg06C40FqlE8u2ADcGUM60lyoU7Myo4WNZQ==}
345
+ engines: {node: '>= 16'}
346
+
347
+ '@intlify/message-compiler@10.0.8':
348
+ resolution: {integrity: sha512-DV+sYXIkHVd5yVb2mL7br/NEUwzUoLBsMkV3H0InefWgmYa34NLZUvMCGi5oWX+Hqr2Y2qUxnVrnOWF4aBlgWg==}
349
+ engines: {node: '>= 16'}
350
+
351
+ '@intlify/shared@10.0.8':
352
+ resolution: {integrity: sha512-BcmHpb5bQyeVNrptC3UhzpBZB/YHHDoEREOUERrmF2BRxsyOEuRrq+Z96C/D4+2KJb8kuHiouzAei7BXlG0YYw==}
353
+ engines: {node: '>= 16'}
354
+
355
+ '@jridgewell/gen-mapping@0.3.13':
356
+ resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
357
+
358
+ '@jridgewell/resolve-uri@3.1.2':
359
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
360
+ engines: {node: '>=6.0.0'}
361
+
362
+ '@jridgewell/sourcemap-codec@1.5.5':
363
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
364
+
365
+ '@jridgewell/trace-mapping@0.3.31':
366
+ resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
367
+
368
+ '@nodelib/fs.scandir@2.1.5':
369
+ resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
370
+ engines: {node: '>= 8'}
371
+
372
+ '@nodelib/fs.stat@2.0.5':
373
+ resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
374
+ engines: {node: '>= 8'}
375
+
376
+ '@nodelib/fs.walk@1.2.8':
377
+ resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
378
+ engines: {node: '>= 8'}
379
+
380
+ '@parcel/watcher-android-arm64@2.5.6':
381
+ resolution: {integrity: sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==}
382
+ engines: {node: '>= 10.0.0'}
383
+ cpu: [arm64]
384
+ os: [android]
385
+
386
+ '@parcel/watcher-darwin-arm64@2.5.6':
387
+ resolution: {integrity: sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==}
388
+ engines: {node: '>= 10.0.0'}
389
+ cpu: [arm64]
390
+ os: [darwin]
391
+
392
+ '@parcel/watcher-darwin-x64@2.5.6':
393
+ resolution: {integrity: sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==}
394
+ engines: {node: '>= 10.0.0'}
395
+ cpu: [x64]
396
+ os: [darwin]
397
+
398
+ '@parcel/watcher-freebsd-x64@2.5.6':
399
+ resolution: {integrity: sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==}
400
+ engines: {node: '>= 10.0.0'}
401
+ cpu: [x64]
402
+ os: [freebsd]
403
+
404
+ '@parcel/watcher-linux-arm-glibc@2.5.6':
405
+ resolution: {integrity: sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==}
406
+ engines: {node: '>= 10.0.0'}
407
+ cpu: [arm]
408
+ os: [linux]
409
+ libc: [glibc]
410
+
411
+ '@parcel/watcher-linux-arm-musl@2.5.6':
412
+ resolution: {integrity: sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==}
413
+ engines: {node: '>= 10.0.0'}
414
+ cpu: [arm]
415
+ os: [linux]
416
+ libc: [musl]
417
+
418
+ '@parcel/watcher-linux-arm64-glibc@2.5.6':
419
+ resolution: {integrity: sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==}
420
+ engines: {node: '>= 10.0.0'}
421
+ cpu: [arm64]
422
+ os: [linux]
423
+ libc: [glibc]
424
+
425
+ '@parcel/watcher-linux-arm64-musl@2.5.6':
426
+ resolution: {integrity: sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==}
427
+ engines: {node: '>= 10.0.0'}
428
+ cpu: [arm64]
429
+ os: [linux]
430
+ libc: [musl]
431
+
432
+ '@parcel/watcher-linux-x64-glibc@2.5.6':
433
+ resolution: {integrity: sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==}
434
+ engines: {node: '>= 10.0.0'}
435
+ cpu: [x64]
436
+ os: [linux]
437
+ libc: [glibc]
438
+
439
+ '@parcel/watcher-linux-x64-musl@2.5.6':
440
+ resolution: {integrity: sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==}
441
+ engines: {node: '>= 10.0.0'}
442
+ cpu: [x64]
443
+ os: [linux]
444
+ libc: [musl]
445
+
446
+ '@parcel/watcher-win32-arm64@2.5.6':
447
+ resolution: {integrity: sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==}
448
+ engines: {node: '>= 10.0.0'}
449
+ cpu: [arm64]
450
+ os: [win32]
451
+
452
+ '@parcel/watcher-win32-ia32@2.5.6':
453
+ resolution: {integrity: sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==}
454
+ engines: {node: '>= 10.0.0'}
455
+ cpu: [ia32]
456
+ os: [win32]
457
+
458
+ '@parcel/watcher-win32-x64@2.5.6':
459
+ resolution: {integrity: sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==}
460
+ engines: {node: '>= 10.0.0'}
461
+ cpu: [x64]
462
+ os: [win32]
463
+
464
+ '@parcel/watcher@2.5.6':
465
+ resolution: {integrity: sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==}
466
+ engines: {node: '>= 10.0.0'}
467
+
468
+ '@popperjs/core@2.11.8':
469
+ resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
470
+
471
+ '@rollup/plugin-node-resolve@15.3.1':
472
+ resolution: {integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==}
473
+ engines: {node: '>=14.0.0'}
474
+ peerDependencies:
475
+ rollup: ^2.78.0||^3.0.0||^4.0.0
476
+ peerDependenciesMeta:
477
+ rollup:
478
+ optional: true
479
+
480
+ '@rollup/pluginutils@5.3.0':
481
+ resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==}
482
+ engines: {node: '>=14.0.0'}
483
+ peerDependencies:
484
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
485
+ peerDependenciesMeta:
486
+ rollup:
487
+ optional: true
488
+
489
+ '@rollup/rollup-android-arm-eabi@4.59.0':
490
+ resolution: {integrity: sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==}
491
+ cpu: [arm]
492
+ os: [android]
493
+
494
+ '@rollup/rollup-android-arm64@4.59.0':
495
+ resolution: {integrity: sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==}
496
+ cpu: [arm64]
497
+ os: [android]
498
+
499
+ '@rollup/rollup-darwin-arm64@4.59.0':
500
+ resolution: {integrity: sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==}
501
+ cpu: [arm64]
502
+ os: [darwin]
503
+
504
+ '@rollup/rollup-darwin-x64@4.59.0':
505
+ resolution: {integrity: sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==}
506
+ cpu: [x64]
507
+ os: [darwin]
508
+
509
+ '@rollup/rollup-freebsd-arm64@4.59.0':
510
+ resolution: {integrity: sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==}
511
+ cpu: [arm64]
512
+ os: [freebsd]
513
+
514
+ '@rollup/rollup-freebsd-x64@4.59.0':
515
+ resolution: {integrity: sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==}
516
+ cpu: [x64]
517
+ os: [freebsd]
518
+
519
+ '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
520
+ resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==}
521
+ cpu: [arm]
522
+ os: [linux]
523
+ libc: [glibc]
524
+
525
+ '@rollup/rollup-linux-arm-musleabihf@4.59.0':
526
+ resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==}
527
+ cpu: [arm]
528
+ os: [linux]
529
+ libc: [musl]
530
+
531
+ '@rollup/rollup-linux-arm64-gnu@4.59.0':
532
+ resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==}
533
+ cpu: [arm64]
534
+ os: [linux]
535
+ libc: [glibc]
536
+
537
+ '@rollup/rollup-linux-arm64-musl@4.59.0':
538
+ resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==}
539
+ cpu: [arm64]
540
+ os: [linux]
541
+ libc: [musl]
542
+
543
+ '@rollup/rollup-linux-loong64-gnu@4.59.0':
544
+ resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==}
545
+ cpu: [loong64]
546
+ os: [linux]
547
+ libc: [glibc]
548
+
549
+ '@rollup/rollup-linux-loong64-musl@4.59.0':
550
+ resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==}
551
+ cpu: [loong64]
552
+ os: [linux]
553
+ libc: [musl]
554
+
555
+ '@rollup/rollup-linux-ppc64-gnu@4.59.0':
556
+ resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==}
557
+ cpu: [ppc64]
558
+ os: [linux]
559
+ libc: [glibc]
560
+
561
+ '@rollup/rollup-linux-ppc64-musl@4.59.0':
562
+ resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==}
563
+ cpu: [ppc64]
564
+ os: [linux]
565
+ libc: [musl]
566
+
567
+ '@rollup/rollup-linux-riscv64-gnu@4.59.0':
568
+ resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==}
569
+ cpu: [riscv64]
570
+ os: [linux]
571
+ libc: [glibc]
572
+
573
+ '@rollup/rollup-linux-riscv64-musl@4.59.0':
574
+ resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==}
575
+ cpu: [riscv64]
576
+ os: [linux]
577
+ libc: [musl]
578
+
579
+ '@rollup/rollup-linux-s390x-gnu@4.59.0':
580
+ resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==}
581
+ cpu: [s390x]
582
+ os: [linux]
583
+ libc: [glibc]
584
+
585
+ '@rollup/rollup-linux-x64-gnu@4.59.0':
586
+ resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==}
587
+ cpu: [x64]
588
+ os: [linux]
589
+ libc: [glibc]
590
+
591
+ '@rollup/rollup-linux-x64-musl@4.59.0':
592
+ resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==}
593
+ cpu: [x64]
594
+ os: [linux]
595
+ libc: [musl]
596
+
597
+ '@rollup/rollup-openbsd-x64@4.59.0':
598
+ resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==}
599
+ cpu: [x64]
600
+ os: [openbsd]
601
+
602
+ '@rollup/rollup-openharmony-arm64@4.59.0':
603
+ resolution: {integrity: sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==}
604
+ cpu: [arm64]
605
+ os: [openharmony]
606
+
607
+ '@rollup/rollup-win32-arm64-msvc@4.59.0':
608
+ resolution: {integrity: sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==}
609
+ cpu: [arm64]
610
+ os: [win32]
611
+
612
+ '@rollup/rollup-win32-ia32-msvc@4.59.0':
613
+ resolution: {integrity: sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==}
614
+ cpu: [ia32]
615
+ os: [win32]
616
+
617
+ '@rollup/rollup-win32-x64-gnu@4.59.0':
618
+ resolution: {integrity: sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==}
619
+ cpu: [x64]
620
+ os: [win32]
621
+
622
+ '@rollup/rollup-win32-x64-msvc@4.59.0':
623
+ resolution: {integrity: sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==}
624
+ cpu: [x64]
625
+ os: [win32]
626
+
627
+ '@rushstack/eslint-patch@1.16.1':
628
+ resolution: {integrity: sha512-TvZbIpeKqGQQ7X0zSCvPH9riMSFQFSggnfBjFZ1mEoILW+UuXCKwOoPcgjMwiUtRqFZ8jWhPJc4um14vC6I4ag==}
629
+
630
+ '@svgdotjs/svg.draggable.js@3.0.6':
631
+ resolution: {integrity: sha512-7iJFm9lL3C40HQcqzEfezK2l+dW2CpoVY3b77KQGqc8GXWa6LhhmX5Ckv7alQfUXBuZbjpICZ+Dvq1czlGx7gA==}
632
+ peerDependencies:
633
+ '@svgdotjs/svg.js': ^3.2.4
634
+
635
+ '@svgdotjs/svg.filter.js@3.0.9':
636
+ resolution: {integrity: sha512-/69XMRCDoam2HgC4ldHIaDgeQf1ViHIsa0Ld4uWgiXtZ+E24DWHe/9Ib6kbNiZ7WRIdlVokUDR1Fg0kjIpkfbw==}
637
+ engines: {node: '>= 0.8.0'}
638
+
639
+ '@svgdotjs/svg.js@3.2.5':
640
+ resolution: {integrity: sha512-/VNHWYhNu+BS7ktbYoVGrCmsXDh+chFMaONMwGNdIBcFHrWqk2jY8fNyr3DLdtQUIalvkPfM554ZSFa3dm3nxQ==}
641
+
642
+ '@svgdotjs/svg.resize.js@2.0.5':
643
+ resolution: {integrity: sha512-4heRW4B1QrJeENfi7326lUPYBCevj78FJs8kfeDxn5st0IYPIRXoTtOSYvTzFWgaWWXd3YCDE6ao4fmv91RthA==}
644
+ engines: {node: '>= 14.18'}
645
+ peerDependencies:
646
+ '@svgdotjs/svg.js': ^3.2.4
647
+ '@svgdotjs/svg.select.js': ^4.0.1
648
+
649
+ '@svgdotjs/svg.select.js@4.0.3':
650
+ resolution: {integrity: sha512-qkMgso1sd2hXKd1FZ1weO7ANq12sNmQJeGDjs46QwDVsxSRcHmvWKL2NDF7Yimpwf3sl5esOLkPqtV2bQ3v/Jg==}
651
+ engines: {node: '>= 14.18'}
652
+ peerDependencies:
653
+ '@svgdotjs/svg.js': ^3.2.4
654
+
655
+ '@tailwindcss/typography@0.5.19':
656
+ resolution: {integrity: sha512-w31dd8HOx3k9vPtcQh5QHP9GwKcgbMp87j58qi6xgiBnFFtKEAgCWnDw4qUT8aHwkCp8bKvb/KGKWWHedP0AAg==}
657
+ peerDependencies:
658
+ tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1'
659
+
660
+ '@tsconfig/node20@20.1.9':
661
+ resolution: {integrity: sha512-IjlTv1RsvnPtUcjTqtVsZExKVq+KQx4g5pCP5tI7rAs6Xesl2qFwSz/tPDBC4JajkL/MlezBu3gPUwqRHl+RIg==}
662
+
663
+ '@types/estree@1.0.8':
664
+ resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
665
+
666
+ '@types/node@20.19.37':
667
+ resolution: {integrity: sha512-8kzdPJ3FsNsVIurqBs7oodNnCEVbni9yUEkaHbgptDACOPW04jimGagZ51E6+lXUwJjgnBw+hyko/lkFWCldqw==}
668
+
669
+ '@types/resolve@1.20.2':
670
+ resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
671
+
672
+ '@types/web-bluetooth@0.0.14':
673
+ resolution: {integrity: sha512-5d2RhCard1nQUC3aHcq/gHzWYO6K0WJmAbjO7mQJgCQKtZpgXxv1rOM6O/dBDhDYYVutk1sciOgNSe+5YyfM8A==}
674
+
675
+ '@types/web-bluetooth@0.0.20':
676
+ resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
677
+
678
+ '@typescript-eslint/eslint-plugin@7.18.0':
679
+ resolution: {integrity: sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==}
680
+ engines: {node: ^18.18.0 || >=20.0.0}
681
+ peerDependencies:
682
+ '@typescript-eslint/parser': ^7.0.0
683
+ eslint: ^8.56.0
684
+ typescript: '*'
685
+ peerDependenciesMeta:
686
+ typescript:
687
+ optional: true
688
+
689
+ '@typescript-eslint/parser@7.18.0':
690
+ resolution: {integrity: sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==}
691
+ engines: {node: ^18.18.0 || >=20.0.0}
692
+ peerDependencies:
693
+ eslint: ^8.56.0
694
+ typescript: '*'
695
+ peerDependenciesMeta:
696
+ typescript:
697
+ optional: true
698
+
699
+ '@typescript-eslint/scope-manager@7.18.0':
700
+ resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==}
701
+ engines: {node: ^18.18.0 || >=20.0.0}
702
+
703
+ '@typescript-eslint/type-utils@7.18.0':
704
+ resolution: {integrity: sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==}
705
+ engines: {node: ^18.18.0 || >=20.0.0}
706
+ peerDependencies:
707
+ eslint: ^8.56.0
708
+ typescript: '*'
709
+ peerDependenciesMeta:
710
+ typescript:
711
+ optional: true
712
+
713
+ '@typescript-eslint/types@7.18.0':
714
+ resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==}
715
+ engines: {node: ^18.18.0 || >=20.0.0}
716
+
717
+ '@typescript-eslint/typescript-estree@7.18.0':
718
+ resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==}
719
+ engines: {node: ^18.18.0 || >=20.0.0}
720
+ peerDependencies:
721
+ typescript: '*'
722
+ peerDependenciesMeta:
723
+ typescript:
724
+ optional: true
725
+
726
+ '@typescript-eslint/utils@7.18.0':
727
+ resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==}
728
+ engines: {node: ^18.18.0 || >=20.0.0}
729
+ peerDependencies:
730
+ eslint: ^8.56.0
731
+
732
+ '@typescript-eslint/visitor-keys@7.18.0':
733
+ resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==}
734
+ engines: {node: ^18.18.0 || >=20.0.0}
735
+
736
+ '@ungap/structured-clone@1.3.0':
737
+ resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
738
+
739
+ '@unhead/dom@1.11.20':
740
+ resolution: {integrity: sha512-jgfGYdOH+xHJF/j8gudjsYu3oIjFyXhCWcgKaw3vQnT616gSqyqnGQGOItL+BQtQZACKNISwIfx5PuOtztMKLA==}
741
+
742
+ '@unhead/schema@1.11.20':
743
+ resolution: {integrity: sha512-0zWykKAaJdm+/Y7yi/Yds20PrUK7XabLe9c3IRcjnwYmSWY6z0Cr19VIs3ozCj8P+GhR+/TI2mwtGlueCEYouA==}
744
+
745
+ '@unhead/shared@1.11.20':
746
+ resolution: {integrity: sha512-1MOrBkGgkUXS+sOKz/DBh4U20DNoITlJwpmvSInxEUNhghSNb56S0RnaHRq0iHkhrO/cDgz2zvfdlRpoPLGI3w==}
747
+
748
+ '@unhead/vue@1.11.20':
749
+ resolution: {integrity: sha512-sqQaLbwqY9TvLEGeq8Fd7+F2TIuV3nZ5ihVISHjWpAM3y7DwNWRU7NmT9+yYT+2/jw1Vjwdkv5/HvDnvCLrgmg==}
750
+ peerDependencies:
751
+ vue: '>=2.7 || >=3'
752
+
753
+ '@vitejs/plugin-vue@5.2.4':
754
+ resolution: {integrity: sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==}
755
+ engines: {node: ^18.0.0 || >=20.0.0}
756
+ peerDependencies:
757
+ vite: ^5.0.0 || ^6.0.0
758
+ vue: ^3.2.25
759
+
760
+ '@volar/language-core@2.4.15':
761
+ resolution: {integrity: sha512-3VHw+QZU0ZG9IuQmzT68IyN4hZNd9GchGPhbD9+pa8CVv7rnoOZwo7T8weIbrRmihqy3ATpdfXFnqRrfPVK6CA==}
762
+
763
+ '@volar/source-map@2.4.15':
764
+ resolution: {integrity: sha512-CPbMWlUN6hVZJYGcU/GSoHu4EnCHiLaXI9n8c9la6RaI9W5JHX+NqG+GSQcB0JdC2FIBLdZJwGsfKyBB71VlTg==}
765
+
766
+ '@volar/typescript@2.4.15':
767
+ resolution: {integrity: sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==}
768
+
769
+ '@vue/compiler-core@3.5.29':
770
+ resolution: {integrity: sha512-cuzPhD8fwRHk8IGfmYaR4eEe4cAyJEL66Ove/WZL7yWNL134nqLddSLwNRIsFlnnW1kK+p8Ck3viFnC0chXCXw==}
771
+
772
+ '@vue/compiler-dom@3.5.29':
773
+ resolution: {integrity: sha512-n0G5o7R3uBVmVxjTIYcz7ovr8sy7QObFG8OQJ3xGCDNhbG60biP/P5KnyY8NLd81OuT1WJflG7N4KWYHaeeaIg==}
774
+
775
+ '@vue/compiler-sfc@3.5.29':
776
+ resolution: {integrity: sha512-oJZhN5XJs35Gzr50E82jg2cYdZQ78wEwvRO6Y63TvLVTc+6xICzJHP1UIecdSPPYIbkautNBanDiWYa64QSFIA==}
777
+
778
+ '@vue/compiler-ssr@3.5.29':
779
+ resolution: {integrity: sha512-Y/ARJZE6fpjzL5GH/phJmsFwx3g6t2KmHKHx5q+MLl2kencADKIrhH5MLF6HHpRMmlRAYBRSvv347Mepf1zVNw==}
780
+
781
+ '@vue/compiler-vue2@2.7.16':
782
+ resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
783
+
784
+ '@vue/devtools-api@6.6.4':
785
+ resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
786
+
787
+ '@vue/eslint-config-typescript@13.0.0':
788
+ resolution: {integrity: sha512-MHh9SncG/sfqjVqjcuFLOLD6Ed4dRAis4HNt0dXASeAuLqIAx4YMB1/m2o4pUKK1vCt8fUvYG8KKX2Ot3BVZTg==}
789
+ engines: {node: ^18.18.0 || >=20.0.0}
790
+ peerDependencies:
791
+ eslint: ^8.56.0
792
+ eslint-plugin-vue: ^9.0.0
793
+ typescript: '>=4.7.4'
794
+ peerDependenciesMeta:
795
+ typescript:
796
+ optional: true
797
+
798
+ '@vue/language-core@2.2.12':
799
+ resolution: {integrity: sha512-IsGljWbKGU1MZpBPN+BvPAdr55YPkj2nB/TBNGNC32Vy2qLG25DYu/NBN2vNtZqdRbTRjaoYrahLrToim2NanA==}
800
+ peerDependencies:
801
+ typescript: '*'
802
+ peerDependenciesMeta:
803
+ typescript:
804
+ optional: true
805
+
806
+ '@vue/reactivity@3.5.29':
807
+ resolution: {integrity: sha512-zcrANcrRdcLtmGZETBxWqIkoQei8HaFpZWx/GHKxx79JZsiZ8j1du0VUJtu4eJjgFvU/iKL5lRXFXksVmI+5DA==}
808
+
809
+ '@vue/runtime-core@3.5.29':
810
+ resolution: {integrity: sha512-8DpW2QfdwIWOLqtsNcds4s+QgwSaHSJY/SUe04LptianUQ/0xi6KVsu/pYVh+HO3NTVvVJjIPL2t6GdeKbS4Lg==}
811
+
812
+ '@vue/runtime-dom@3.5.29':
813
+ resolution: {integrity: sha512-AHvvJEtcY9tw/uk+s/YRLSlxxQnqnAkjqvK25ZiM4CllCZWzElRAoQnCM42m9AHRLNJ6oe2kC5DCgD4AUdlvXg==}
814
+
815
+ '@vue/server-renderer@3.5.29':
816
+ resolution: {integrity: sha512-G/1k6WK5MusLlbxSE2YTcqAAezS+VuwHhOvLx2KnQU7G2zCH6KIb+5Wyt6UjMq7a3qPzNEjJXs1hvAxDclQH+g==}
817
+ peerDependencies:
818
+ vue: 3.5.29
819
+
820
+ '@vue/shared@3.5.29':
821
+ resolution: {integrity: sha512-w7SR0A5zyRByL9XUkCfdLs7t9XOHUyJ67qPGQjOou3p6GvBeBW+AVjUUmlxtZ4PIYaRvE+1LmK44O4uajlZwcg==}
822
+
823
+ '@vue/tsconfig@0.5.1':
824
+ resolution: {integrity: sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==}
825
+
826
+ '@vueuse/core@10.11.1':
827
+ resolution: {integrity: sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==}
828
+
829
+ '@vueuse/core@8.9.4':
830
+ resolution: {integrity: sha512-B/Mdj9TK1peFyWaPof+Zf/mP9XuGAngaJZBwPaXBvU3aCTZlx3ltlrFFFyMV4iGBwsjSCeUCgZrtkEj9dS2Y3Q==}
831
+ peerDependencies:
832
+ '@vue/composition-api': ^1.1.0
833
+ vue: ^2.6.0 || ^3.2.0
834
+ peerDependenciesMeta:
835
+ '@vue/composition-api':
836
+ optional: true
837
+ vue:
838
+ optional: true
839
+
840
+ '@vueuse/metadata@10.11.1':
841
+ resolution: {integrity: sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==}
842
+
843
+ '@vueuse/metadata@8.9.4':
844
+ resolution: {integrity: sha512-IwSfzH80bnJMzqhaapqJl9JRIiyQU0zsRGEgnxN6jhq7992cPUJIRfV+JHRIZXjYqbwt07E1gTEp0R0zPJ1aqw==}
845
+
846
+ '@vueuse/shared@10.11.1':
847
+ resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==}
848
+
849
+ '@vueuse/shared@8.9.4':
850
+ resolution: {integrity: sha512-wt+T30c4K6dGRMVqPddexEVLa28YwxW5OFIPmzUHICjphfAuBFTTdDoyqREZNDOFJZ44ARH1WWQNCUK8koJ+Ag==}
851
+ peerDependencies:
852
+ '@vue/composition-api': ^1.1.0
853
+ vue: ^2.6.0 || ^3.2.0
854
+ peerDependenciesMeta:
855
+ '@vue/composition-api':
856
+ optional: true
857
+ vue:
858
+ optional: true
859
+
860
+ '@yr/monotone-cubic-spline@1.0.3':
861
+ resolution: {integrity: sha512-FQXkOta0XBSUPHndIKON2Y9JeQz5ZeMqLYZVVK93FliNBFm7LNMIZmY6FrMEB9XPcDbE2bekMbZD6kzDkxwYjA==}
862
+
863
+ acorn-jsx@5.3.2:
864
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
865
+ peerDependencies:
866
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
867
+
868
+ acorn@8.16.0:
869
+ resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
870
+ engines: {node: '>=0.4.0'}
871
+ hasBin: true
872
+
873
+ ajv@6.14.0:
874
+ resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==}
875
+
876
+ alien-signals@1.0.13:
877
+ resolution: {integrity: sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==}
878
+
879
+ ansi-regex@5.0.1:
880
+ resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
881
+ engines: {node: '>=8'}
882
+
883
+ ansi-styles@4.3.0:
884
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
885
+ engines: {node: '>=8'}
886
+
887
+ ansi-styles@6.2.3:
888
+ resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
889
+ engines: {node: '>=12'}
890
+
891
+ any-promise@1.3.0:
892
+ resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
893
+
894
+ anymatch@3.1.3:
895
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
896
+ engines: {node: '>= 8'}
897
+
898
+ apexcharts@4.7.0:
899
+ resolution: {integrity: sha512-iZSrrBGvVlL+nt2B1NpqfDuBZ9jX61X9I2+XV0hlYXHtTwhwLTHDKGXjNXAgFBDLuvSYCB/rq2nPWVPRv2DrGA==}
900
+
901
+ arg@5.0.2:
902
+ resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
903
+
904
+ argparse@2.0.1:
905
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
906
+
907
+ array-union@2.1.0:
908
+ resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
909
+ engines: {node: '>=8'}
910
+
911
+ async@3.2.6:
912
+ resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
913
+
914
+ autoprefixer@10.4.27:
915
+ resolution: {integrity: sha512-NP9APE+tO+LuJGn7/9+cohklunJsXWiaWEfV3si4Gi/XHDwVNgkwr1J3RQYFIvPy76GmJ9/bW8vyoU1LcxwKHA==}
916
+ engines: {node: ^10 || ^12 || >=14}
917
+ hasBin: true
918
+ peerDependencies:
919
+ postcss: ^8.1.0
920
+
921
+ balanced-match@1.0.2:
922
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
923
+
924
+ baseline-browser-mapping@2.10.0:
925
+ resolution: {integrity: sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==}
926
+ engines: {node: '>=6.0.0'}
927
+ hasBin: true
928
+
929
+ binary-extensions@2.3.0:
930
+ resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
931
+ engines: {node: '>=8'}
932
+
933
+ boolbase@1.0.0:
934
+ resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
935
+
936
+ brace-expansion@1.1.12:
937
+ resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
938
+
939
+ brace-expansion@2.0.2:
940
+ resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
941
+
942
+ braces@3.0.3:
943
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
944
+ engines: {node: '>=8'}
945
+
946
+ browserslist@4.28.1:
947
+ resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
948
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
949
+ hasBin: true
950
+
951
+ cac@6.7.14:
952
+ resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
953
+ engines: {node: '>=8'}
954
+
955
+ callsites@3.1.0:
956
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
957
+ engines: {node: '>=6'}
958
+
959
+ camelcase-css@2.0.1:
960
+ resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
961
+ engines: {node: '>= 6'}
962
+
963
+ caniuse-lite@1.0.30001777:
964
+ resolution: {integrity: sha512-tmN+fJxroPndC74efCdp12j+0rk0RHwV5Jwa1zWaFVyw2ZxAuPeG8ZgWC3Wz7uSjT3qMRQ5XHZ4COgQmsCMJAQ==}
965
+
966
+ chalk@4.1.2:
967
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
968
+ engines: {node: '>=10'}
969
+
970
+ chokidar@3.6.0:
971
+ resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
972
+ engines: {node: '>= 8.10.0'}
973
+
974
+ chokidar@4.0.3:
975
+ resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
976
+ engines: {node: '>= 14.16.0'}
977
+
978
+ clipboard@2.0.11:
979
+ resolution: {integrity: sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==}
980
+
981
+ color-convert@2.0.1:
982
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
983
+ engines: {node: '>=7.0.0'}
984
+
985
+ color-name@1.1.4:
986
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
987
+
988
+ commander@4.1.1:
989
+ resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
990
+ engines: {node: '>= 6'}
991
+
992
+ commander@6.2.1:
993
+ resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==}
994
+ engines: {node: '>= 6'}
995
+
996
+ concat-map@0.0.1:
997
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
998
+
999
+ cross-spawn@7.0.6:
1000
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
1001
+ engines: {node: '>= 8'}
1002
+
1003
+ cssesc@3.0.0:
1004
+ resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
1005
+ engines: {node: '>=4'}
1006
+ hasBin: true
1007
+
1008
+ csstype@3.2.3:
1009
+ resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
1010
+
1011
+ dayjs@1.11.19:
1012
+ resolution: {integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==}
1013
+
1014
+ de-indent@1.0.2:
1015
+ resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
1016
+
1017
+ debounce@2.2.0:
1018
+ resolution: {integrity: sha512-Xks6RUDLZFdz8LIdR6q0MTH44k7FikOmnh5xkSjMig6ch45afc8sjTjRQf3P6ax8dMgcQrYO/AR2RGWURrruqw==}
1019
+ engines: {node: '>=18'}
1020
+
1021
+ debug@4.4.3:
1022
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
1023
+ engines: {node: '>=6.0'}
1024
+ peerDependencies:
1025
+ supports-color: '*'
1026
+ peerDependenciesMeta:
1027
+ supports-color:
1028
+ optional: true
1029
+
1030
+ deep-is@0.1.4:
1031
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
1032
+
1033
+ deepmerge@4.3.1:
1034
+ resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
1035
+ engines: {node: '>=0.10.0'}
1036
+
1037
+ delegate@3.2.0:
1038
+ resolution: {integrity: sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==}
1039
+
1040
+ detect-libc@2.1.2:
1041
+ resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
1042
+ engines: {node: '>=8'}
1043
+
1044
+ diacritics@1.3.0:
1045
+ resolution: {integrity: sha512-wlwEkqcsaxvPJML+rDh/2iS824jbREk6DUMUKkEaSlxdYHeS43cClJtsWglvw2RfeXGm6ohKDqsXteJ5sP5enA==}
1046
+
1047
+ didyoumean@1.2.2:
1048
+ resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
1049
+
1050
+ diff-match-patch@1.0.5:
1051
+ resolution: {integrity: sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==}
1052
+
1053
+ dir-glob@3.0.1:
1054
+ resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
1055
+ engines: {node: '>=8'}
1056
+
1057
+ dlv@1.1.3:
1058
+ resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
1059
+
1060
+ doctrine@3.0.0:
1061
+ resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
1062
+ engines: {node: '>=6.0.0'}
1063
+
1064
+ dom-serializer@2.0.0:
1065
+ resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
1066
+
1067
+ domelementtype@2.3.0:
1068
+ resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
1069
+
1070
+ domhandler@5.0.3:
1071
+ resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
1072
+ engines: {node: '>= 4'}
1073
+
1074
+ domutils@3.2.2:
1075
+ resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
1076
+
1077
+ dot-object@2.1.5:
1078
+ resolution: {integrity: sha512-xHF8EP4XH/Ba9fvAF2LDd5O3IITVolerVV6xvkxoM8zlGEiCUrggpAnHyOoKJKCrhvPcGATFAUwIujj7bRG5UA==}
1079
+ hasBin: true
1080
+
1081
+ electron-to-chromium@1.5.307:
1082
+ resolution: {integrity: sha512-5z3uFKBWjiNR44nFcYdkcXjKMbg5KXNdciu7mhTPo9tB7NbqSNP2sSnGR+fqknZSCwKkBN+oxiiajWs4dT6ORg==}
1083
+
1084
+ entities@4.5.0:
1085
+ resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
1086
+ engines: {node: '>=0.12'}
1087
+
1088
+ entities@7.0.1:
1089
+ resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
1090
+ engines: {node: '>=0.12'}
1091
+
1092
+ esbuild@0.21.5:
1093
+ resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
1094
+ engines: {node: '>=12'}
1095
+ hasBin: true
1096
+
1097
+ escalade@3.2.0:
1098
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
1099
+ engines: {node: '>=6'}
1100
+
1101
+ escape-string-regexp@4.0.0:
1102
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
1103
+ engines: {node: '>=10'}
1104
+
1105
+ eslint-plugin-vue@9.33.0:
1106
+ resolution: {integrity: sha512-174lJKuNsuDIlLpjeXc5E2Tss8P44uIimAfGD0b90k0NoirJqpG7stLuU9Vp/9ioTOrQdWVREc4mRd1BD+CvGw==}
1107
+ engines: {node: ^14.17.0 || >=16.0.0}
1108
+ peerDependencies:
1109
+ eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
1110
+
1111
+ eslint-scope@7.2.2:
1112
+ resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
1113
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1114
+
1115
+ eslint-visitor-keys@3.4.3:
1116
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
1117
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1118
+
1119
+ eslint@8.57.1:
1120
+ resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==}
1121
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1122
+ deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
1123
+ hasBin: true
1124
+
1125
+ espree@9.6.1:
1126
+ resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
1127
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1128
+
1129
+ esquery@1.7.0:
1130
+ resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
1131
+ engines: {node: '>=0.10'}
1132
+
1133
+ esrecurse@4.3.0:
1134
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1135
+ engines: {node: '>=4.0'}
1136
+
1137
+ estraverse@5.3.0:
1138
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1139
+ engines: {node: '>=4.0'}
1140
+
1141
+ estree-walker@2.0.2:
1142
+ resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
1143
+
1144
+ esutils@2.0.3:
1145
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1146
+ engines: {node: '>=0.10.0'}
1147
+
1148
+ fast-deep-equal@3.1.3:
1149
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1150
+
1151
+ fast-glob@3.3.3:
1152
+ resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
1153
+ engines: {node: '>=8.6.0'}
1154
+
1155
+ fast-json-stable-stringify@2.1.0:
1156
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
1157
+
1158
+ fast-levenshtein@2.0.6:
1159
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
1160
+
1161
+ fastq@1.20.1:
1162
+ resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
1163
+
1164
+ fdir@6.5.0:
1165
+ resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
1166
+ engines: {node: '>=12.0.0'}
1167
+ peerDependencies:
1168
+ picomatch: ^3 || ^4
1169
+ peerDependenciesMeta:
1170
+ picomatch:
1171
+ optional: true
1172
+
1173
+ file-entry-cache@6.0.1:
1174
+ resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
1175
+ engines: {node: ^10.12.0 || >=12.0.0}
1176
+
1177
+ fill-range@7.1.1:
1178
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
1179
+ engines: {node: '>=8'}
1180
+
1181
+ find-up@5.0.0:
1182
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
1183
+ engines: {node: '>=10'}
1184
+
1185
+ flag-icons@7.5.0:
1186
+ resolution: {integrity: sha512-kd+MNXviFIg5hijH766tt+3x76ele1AXlo4zDdCxIvqWZhKt4T83bOtxUOOMlTx/EcFdUMH5yvQgYlFh1EqqFg==}
1187
+
1188
+ flat-cache@3.2.0:
1189
+ resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
1190
+ engines: {node: ^10.12.0 || >=12.0.0}
1191
+
1192
+ flatted@3.3.4:
1193
+ resolution: {integrity: sha512-3+mMldrTAPdta5kjX2G2J7iX4zxtnwpdA8Tr2ZSjkyPSanvbZAcy6flmtnXbEybHrDcU9641lxrMfFuUxVz9vA==}
1194
+
1195
+ flowbite-datepicker@1.3.2:
1196
+ resolution: {integrity: sha512-6Nfm0MCVX3mpaR7YSCjmEO2GO8CDt6CX8ZpQnGdeu03WUCWtEPQ/uy0PUiNtIJjJZWnX0Cm3H55MOhbD1g+E/g==}
1197
+
1198
+ flowbite@2.5.2:
1199
+ resolution: {integrity: sha512-kwFD3n8/YW4EG8GlY3Od9IoKND97kitO+/ejISHSqpn3vw2i5K/+ZI8Jm2V+KC4fGdnfi0XZ+TzYqQb4Q1LshA==}
1200
+
1201
+ flowbite@3.1.2:
1202
+ resolution: {integrity: sha512-MkwSgbbybCYgMC+go6Da5idEKUFfMqc/AmSjm/2ZbdmvoKf5frLPq/eIhXc9P+rC8t9boZtUXzHDgt5whZ6A/Q==}
1203
+
1204
+ fraction.js@5.3.4:
1205
+ resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
1206
+
1207
+ fs.realpath@1.0.0:
1208
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
1209
+
1210
+ fsevents@2.3.3:
1211
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
1212
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1213
+ os: [darwin]
1214
+
1215
+ function-bind@1.1.2:
1216
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
1217
+
1218
+ glob-parent@5.1.2:
1219
+ resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
1220
+ engines: {node: '>= 6'}
1221
+
1222
+ glob-parent@6.0.2:
1223
+ resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
1224
+ engines: {node: '>=10.13.0'}
1225
+
1226
+ glob@7.2.3:
1227
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
1228
+ deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
1229
+
1230
+ glob@8.1.0:
1231
+ resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
1232
+ engines: {node: '>=12'}
1233
+ deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
1234
+
1235
+ globals@13.24.0:
1236
+ resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
1237
+ engines: {node: '>=8'}
1238
+
1239
+ globby@11.1.0:
1240
+ resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
1241
+ engines: {node: '>=10'}
1242
+
1243
+ good-listener@1.2.2:
1244
+ resolution: {integrity: sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw==}
1245
+
1246
+ graphemer@1.4.0:
1247
+ resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
1248
+
1249
+ has-flag@4.0.0:
1250
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
1251
+ engines: {node: '>=8'}
1252
+
1253
+ hasown@2.0.2:
1254
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
1255
+ engines: {node: '>= 0.4'}
1256
+
1257
+ he@1.2.0:
1258
+ resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
1259
+ hasBin: true
1260
+
1261
+ highlight.js@11.11.1:
1262
+ resolution: {integrity: sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==}
1263
+ engines: {node: '>=12.0.0'}
1264
+
1265
+ hookable@5.5.3:
1266
+ resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
1267
+
1268
+ htmlparser2@8.0.2:
1269
+ resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
1270
+
1271
+ i18n-iso-countries@7.14.0:
1272
+ resolution: {integrity: sha512-nXHJZYtNrfsi1UQbyRqm3Gou431elgLjKl//CYlnBGt5aTWdRPH1PiS2T/p/n8Q8LnqYqzQJik3Q7mkwvLokeg==}
1273
+ engines: {node: '>= 12'}
1274
+
1275
+ ignore@5.3.2:
1276
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
1277
+ engines: {node: '>= 4'}
1278
+
1279
+ immutable@5.1.5:
1280
+ resolution: {integrity: sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==}
1281
+
1282
+ import-fresh@3.3.1:
1283
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
1284
+ engines: {node: '>=6'}
1285
+
1286
+ imurmurhash@0.1.4:
1287
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
1288
+ engines: {node: '>=0.8.19'}
1289
+
1290
+ inflight@1.0.6:
1291
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
1292
+ deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
1293
+
1294
+ inherits@2.0.4:
1295
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
1296
+
1297
+ is-binary-path@2.1.0:
1298
+ resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
1299
+ engines: {node: '>=8'}
1300
+
1301
+ is-core-module@2.16.1:
1302
+ resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
1303
+ engines: {node: '>= 0.4'}
1304
+
1305
+ is-extglob@2.1.1:
1306
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
1307
+ engines: {node: '>=0.10.0'}
1308
+
1309
+ is-glob@4.0.3:
1310
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1311
+ engines: {node: '>=0.10.0'}
1312
+
1313
+ is-module@1.0.0:
1314
+ resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
1315
+
1316
+ is-number@7.0.0:
1317
+ resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
1318
+ engines: {node: '>=0.12.0'}
1319
+
1320
+ is-path-inside@3.0.3:
1321
+ resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
1322
+ engines: {node: '>=8'}
1323
+
1324
+ is-plain-object@5.0.0:
1325
+ resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
1326
+ engines: {node: '>=0.10.0'}
1327
+
1328
+ is-valid-glob@1.0.0:
1329
+ resolution: {integrity: sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==}
1330
+ engines: {node: '>=0.10.0'}
1331
+
1332
+ isexe@2.0.0:
1333
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1334
+
1335
+ javascript-time-ago@2.6.4:
1336
+ resolution: {integrity: sha512-7K/Z37LuwVaxxjutUDd1pXpznufPcox0b1UYu00ksAMMlV6IsxIvduwL3kgfPxuBVF8jVj7nhrKMPDslMq94aQ==}
1337
+
1338
+ jiti@1.21.7:
1339
+ resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
1340
+ hasBin: true
1341
+
1342
+ js-yaml@4.1.1:
1343
+ resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
1344
+ hasBin: true
1345
+
1346
+ json-buffer@3.0.1:
1347
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
1348
+
1349
+ json-parse-even-better-errors@3.0.2:
1350
+ resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==}
1351
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
1352
+
1353
+ json-schema-traverse@0.4.1:
1354
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1355
+
1356
+ json-stable-stringify-without-jsonify@1.0.1:
1357
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1358
+
1359
+ keyv@4.5.4:
1360
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
1361
+
1362
+ levn@0.4.1:
1363
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1364
+ engines: {node: '>= 0.8.0'}
1365
+
1366
+ lilconfig@3.1.3:
1367
+ resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
1368
+ engines: {node: '>=14'}
1369
+
1370
+ lines-and-columns@1.2.4:
1371
+ resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
1372
+
1373
+ locate-path@6.0.0:
1374
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1375
+ engines: {node: '>=10'}
1376
+
1377
+ lodash.merge@4.6.2:
1378
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1379
+
1380
+ lodash@4.17.23:
1381
+ resolution: {integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==}
1382
+
1383
+ magic-string@0.30.21:
1384
+ resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
1385
+
1386
+ memorystream@0.3.1:
1387
+ resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
1388
+ engines: {node: '>= 0.10.0'}
1389
+
1390
+ merge2@1.4.1:
1391
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1392
+ engines: {node: '>= 8'}
1393
+
1394
+ micromatch@4.0.8:
1395
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
1396
+ engines: {node: '>=8.6'}
1397
+
1398
+ mini-svg-data-uri@1.4.4:
1399
+ resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==}
1400
+ hasBin: true
1401
+
1402
+ minimatch@3.1.5:
1403
+ resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==}
1404
+
1405
+ minimatch@5.1.9:
1406
+ resolution: {integrity: sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==}
1407
+ engines: {node: '>=10'}
1408
+
1409
+ minimatch@9.0.9:
1410
+ resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==}
1411
+ engines: {node: '>=16 || 14 >=14.17'}
1412
+
1413
+ ms@2.1.3:
1414
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1415
+
1416
+ muggle-string@0.4.1:
1417
+ resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
1418
+
1419
+ mz@2.7.0:
1420
+ resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
1421
+
1422
+ nanoid@3.3.11:
1423
+ resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
1424
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1425
+ hasBin: true
1426
+
1427
+ natural-compare@1.4.0:
1428
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1429
+
1430
+ node-addon-api@7.1.1:
1431
+ resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
1432
+
1433
+ node-releases@2.0.36:
1434
+ resolution: {integrity: sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==}
1435
+
1436
+ normalize-path@3.0.0:
1437
+ resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
1438
+ engines: {node: '>=0.10.0'}
1439
+
1440
+ npm-normalize-package-bin@3.0.1:
1441
+ resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==}
1442
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
1443
+
1444
+ npm-run-all2@6.2.6:
1445
+ resolution: {integrity: sha512-tkyb4pc0Zb0oOswCb5tORPk9MvVL6gcDq1cMItQHmsbVk1skk7YF6cH+UU2GxeNLHMuk6wFEOSmEmJ2cnAK1jg==}
1446
+ engines: {node: ^14.18.0 || ^16.13.0 || >=18.0.0, npm: '>= 8'}
1447
+ hasBin: true
1448
+
1449
+ nth-check@2.1.1:
1450
+ resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
1451
+
1452
+ object-assign@4.1.1:
1453
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
1454
+ engines: {node: '>=0.10.0'}
1455
+
1456
+ object-hash@3.0.0:
1457
+ resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
1458
+ engines: {node: '>= 6'}
1459
+
1460
+ once@1.4.0:
1461
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
1462
+
1463
+ optionator@0.9.4:
1464
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
1465
+ engines: {node: '>= 0.8.0'}
1466
+
1467
+ p-limit@3.1.0:
1468
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1469
+ engines: {node: '>=10'}
1470
+
1471
+ p-locate@5.0.0:
1472
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1473
+ engines: {node: '>=10'}
1474
+
1475
+ packrup@0.1.2:
1476
+ resolution: {integrity: sha512-ZcKU7zrr5GlonoS9cxxrb5HVswGnyj6jQvwFBa6p5VFw7G71VAHcUKL5wyZSU/ECtPM/9gacWxy2KFQKt1gMNA==}
1477
+
1478
+ parent-module@1.0.1:
1479
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1480
+ engines: {node: '>=6'}
1481
+
1482
+ parse-srcset@1.0.2:
1483
+ resolution: {integrity: sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==}
1484
+
1485
+ path-browserify@1.0.1:
1486
+ resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
1487
+
1488
+ path-exists@4.0.0:
1489
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1490
+ engines: {node: '>=8'}
1491
+
1492
+ path-is-absolute@1.0.1:
1493
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
1494
+ engines: {node: '>=0.10.0'}
1495
+
1496
+ path-key@3.1.1:
1497
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1498
+ engines: {node: '>=8'}
1499
+
1500
+ path-parse@1.0.7:
1501
+ resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
1502
+
1503
+ path-type@4.0.0:
1504
+ resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
1505
+ engines: {node: '>=8'}
1506
+
1507
+ picocolors@1.1.1:
1508
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
1509
+
1510
+ picomatch@2.3.1:
1511
+ resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
1512
+ engines: {node: '>=8.6'}
1513
+
1514
+ picomatch@4.0.3:
1515
+ resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
1516
+ engines: {node: '>=12'}
1517
+
1518
+ pidtree@0.6.0:
1519
+ resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
1520
+ engines: {node: '>=0.10'}
1521
+ hasBin: true
1522
+
1523
+ pify@2.3.0:
1524
+ resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
1525
+ engines: {node: '>=0.10.0'}
1526
+
1527
+ pinia@2.3.1:
1528
+ resolution: {integrity: sha512-khUlZSwt9xXCaTbbxFYBKDc/bWAGWJjOgvxETwkTN7KRm66EeT1ZdZj6i2ceh9sP2Pzqsbc704r2yngBrxBVug==}
1529
+ peerDependencies:
1530
+ typescript: '>=4.4.4'
1531
+ vue: ^2.7.0 || ^3.5.11
1532
+ peerDependenciesMeta:
1533
+ typescript:
1534
+ optional: true
1535
+
1536
+ pirates@4.0.7:
1537
+ resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
1538
+ engines: {node: '>= 6'}
1539
+
1540
+ portfinder@1.0.38:
1541
+ resolution: {integrity: sha512-rEwq/ZHlJIKw++XtLAO8PPuOQA/zaPJOZJ37BVuN97nLpMJeuDVLVGRwbFoBgLudgdTMP2hdRJP++H+8QOA3vg==}
1542
+ engines: {node: '>= 10.12'}
1543
+
1544
+ postcss-import@15.1.0:
1545
+ resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
1546
+ engines: {node: '>=14.0.0'}
1547
+ peerDependencies:
1548
+ postcss: ^8.0.0
1549
+
1550
+ postcss-js@4.1.0:
1551
+ resolution: {integrity: sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==}
1552
+ engines: {node: ^12 || ^14 || >= 16}
1553
+ peerDependencies:
1554
+ postcss: ^8.4.21
1555
+
1556
+ postcss-load-config@6.0.1:
1557
+ resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
1558
+ engines: {node: '>= 18'}
1559
+ peerDependencies:
1560
+ jiti: '>=1.21.0'
1561
+ postcss: '>=8.0.9'
1562
+ tsx: ^4.8.1
1563
+ yaml: ^2.4.2
1564
+ peerDependenciesMeta:
1565
+ jiti:
1566
+ optional: true
1567
+ postcss:
1568
+ optional: true
1569
+ tsx:
1570
+ optional: true
1571
+ yaml:
1572
+ optional: true
1573
+
1574
+ postcss-nested@6.2.0:
1575
+ resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
1576
+ engines: {node: '>=12.0'}
1577
+ peerDependencies:
1578
+ postcss: ^8.2.14
1579
+
1580
+ postcss-selector-parser@6.0.10:
1581
+ resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
1582
+ engines: {node: '>=4'}
1583
+
1584
+ postcss-selector-parser@6.1.2:
1585
+ resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
1586
+ engines: {node: '>=4'}
1587
+
1588
+ postcss-value-parser@4.2.0:
1589
+ resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
1590
+
1591
+ postcss@8.5.8:
1592
+ resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
1593
+ engines: {node: ^10 || ^12 || >=14}
1594
+
1595
+ prelude-ls@1.2.1:
1596
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
1597
+ engines: {node: '>= 0.8.0'}
1598
+
1599
+ punycode@2.3.1:
1600
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
1601
+ engines: {node: '>=6'}
1602
+
1603
+ queue-microtask@1.2.3:
1604
+ resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
1605
+
1606
+ read-cache@1.0.0:
1607
+ resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
1608
+
1609
+ read-package-json-fast@3.0.2:
1610
+ resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==}
1611
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
1612
+
1613
+ readdirp@3.6.0:
1614
+ resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
1615
+ engines: {node: '>=8.10.0'}
1616
+
1617
+ readdirp@4.1.2:
1618
+ resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
1619
+ engines: {node: '>= 14.18.0'}
1620
+
1621
+ relative-time-format@1.1.12:
1622
+ resolution: {integrity: sha512-qaZBjmRIuXLfuLnzgqpFdBPa5W0euSX1tMnoMUHGPphLwJmrt8xbNiOIHrlvYOD6oNJ0M5owPCZyPibI8de5pQ==}
1623
+
1624
+ resolve-from@4.0.0:
1625
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
1626
+ engines: {node: '>=4'}
1627
+
1628
+ resolve@1.22.11:
1629
+ resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
1630
+ engines: {node: '>= 0.4'}
1631
+ hasBin: true
1632
+
1633
+ reusify@1.1.0:
1634
+ resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
1635
+ engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
1636
+
1637
+ rimraf@3.0.2:
1638
+ resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
1639
+ deprecated: Rimraf versions prior to v4 are no longer supported
1640
+ hasBin: true
1641
+
1642
+ rollup@4.59.0:
1643
+ resolution: {integrity: sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==}
1644
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
1645
+ hasBin: true
1646
+
1647
+ run-parallel@1.2.0:
1648
+ resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
1649
+
1650
+ sanitize-html@2.17.1:
1651
+ resolution: {integrity: sha512-ehFCW+q1a4CSOWRAdX97BX/6/PDEkCqw7/0JXZAGQV57FQB3YOkTa/rrzHPeJ+Aghy4vZAFfWMYyfxIiB7F/gw==}
1652
+
1653
+ sass@1.97.3:
1654
+ resolution: {integrity: sha512-fDz1zJpd5GycprAbu4Q2PV/RprsRtKC/0z82z0JLgdytmcq0+ujJbJ/09bPGDxCLkKY3Np5cRAOcWiVkLXJURg==}
1655
+ engines: {node: '>=14.0.0'}
1656
+ hasBin: true
1657
+
1658
+ select@1.1.2:
1659
+ resolution: {integrity: sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==}
1660
+
1661
+ semver@7.7.4:
1662
+ resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
1663
+ engines: {node: '>=10'}
1664
+ hasBin: true
1665
+
1666
+ shebang-command@2.0.0:
1667
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
1668
+ engines: {node: '>=8'}
1669
+
1670
+ shebang-regex@3.0.0:
1671
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1672
+ engines: {node: '>=8'}
1673
+
1674
+ shell-quote@1.8.3:
1675
+ resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==}
1676
+ engines: {node: '>= 0.4'}
1677
+
1678
+ slash@3.0.0:
1679
+ resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
1680
+ engines: {node: '>=8'}
1681
+
1682
+ source-map-js@1.2.1:
1683
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
1684
+ engines: {node: '>=0.10.0'}
1685
+
1686
+ strip-ansi@6.0.1:
1687
+ resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
1688
+ engines: {node: '>=8'}
1689
+
1690
+ strip-json-comments@3.1.1:
1691
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
1692
+ engines: {node: '>=8'}
1693
+
1694
+ sucrase@3.35.1:
1695
+ resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
1696
+ engines: {node: '>=16 || 14 >=14.17'}
1697
+ hasBin: true
1698
+
1699
+ supports-color@7.2.0:
1700
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
1701
+ engines: {node: '>=8'}
1702
+
1703
+ supports-preserve-symlinks-flag@1.0.0:
1704
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
1705
+ engines: {node: '>= 0.4'}
1706
+
1707
+ tailwindcss@3.4.19:
1708
+ resolution: {integrity: sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ==}
1709
+ engines: {node: '>=14.0.0'}
1710
+ hasBin: true
1711
+
1712
+ text-table@0.2.0:
1713
+ resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
1714
+
1715
+ thenify-all@1.6.0:
1716
+ resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
1717
+ engines: {node: '>=0.8'}
1718
+
1719
+ thenify@3.3.1:
1720
+ resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
1721
+
1722
+ tiny-emitter@2.1.0:
1723
+ resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==}
1724
+
1725
+ tinyglobby@0.2.15:
1726
+ resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
1727
+ engines: {node: '>=12.0.0'}
1728
+
1729
+ to-regex-range@5.0.1:
1730
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
1731
+ engines: {node: '>=8.0'}
1732
+
1733
+ ts-api-utils@1.4.3:
1734
+ resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==}
1735
+ engines: {node: '>=16'}
1736
+ peerDependencies:
1737
+ typescript: '>=4.2.0'
1738
+
1739
+ ts-interface-checker@0.1.13:
1740
+ resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
1741
+
1742
+ type-check@0.4.0:
1743
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
1744
+ engines: {node: '>= 0.8.0'}
1745
+
1746
+ type-fest@0.20.2:
1747
+ resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
1748
+ engines: {node: '>=10'}
1749
+
1750
+ typescript@5.4.5:
1751
+ resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==}
1752
+ engines: {node: '>=14.17'}
1753
+ hasBin: true
1754
+
1755
+ undici-types@6.21.0:
1756
+ resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
1757
+
1758
+ unhead@1.11.20:
1759
+ resolution: {integrity: sha512-3AsNQC0pjwlLqEYHLjtichGWankK8yqmocReITecmpB1H0aOabeESueyy+8X1gyJx4ftZVwo9hqQ4O3fPWffCA==}
1760
+
1761
+ update-browserslist-db@1.2.3:
1762
+ resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
1763
+ hasBin: true
1764
+ peerDependencies:
1765
+ browserslist: '>= 4.21.0'
1766
+
1767
+ uri-js@4.4.1:
1768
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
1769
+
1770
+ util-deprecate@1.0.2:
1771
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
1772
+
1773
+ vite@5.4.21:
1774
+ resolution: {integrity: sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==}
1775
+ engines: {node: ^18.0.0 || >=20.0.0}
1776
+ hasBin: true
1777
+ peerDependencies:
1778
+ '@types/node': ^18.0.0 || >=20.0.0
1779
+ less: '*'
1780
+ lightningcss: ^1.21.0
1781
+ sass: '*'
1782
+ sass-embedded: '*'
1783
+ stylus: '*'
1784
+ sugarss: '*'
1785
+ terser: ^5.4.0
1786
+ peerDependenciesMeta:
1787
+ '@types/node':
1788
+ optional: true
1789
+ less:
1790
+ optional: true
1791
+ lightningcss:
1792
+ optional: true
1793
+ sass:
1794
+ optional: true
1795
+ sass-embedded:
1796
+ optional: true
1797
+ stylus:
1798
+ optional: true
1799
+ sugarss:
1800
+ optional: true
1801
+ terser:
1802
+ optional: true
1803
+
1804
+ vscode-uri@3.1.0:
1805
+ resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
1806
+
1807
+ vue-demi@0.14.10:
1808
+ resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
1809
+ engines: {node: '>=12'}
1810
+ hasBin: true
1811
+ peerDependencies:
1812
+ '@vue/composition-api': ^1.0.0-rc.1
1813
+ vue: ^3.0.0-0 || ^2.6.0
1814
+ peerDependenciesMeta:
1815
+ '@vue/composition-api':
1816
+ optional: true
1817
+
1818
+ vue-diff@1.2.4:
1819
+ resolution: {integrity: sha512-9z+0uPHigi/DdE3Zhdg1zR3VkiBaDN4czjWa/Zznvizn4znckVqz20p1KytaWq5NJtJ7UnkqRbuWsaCuC1ZHaA==}
1820
+
1821
+ vue-eslint-parser@9.4.3:
1822
+ resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==}
1823
+ engines: {node: ^14.17.0 || >=16.0.0}
1824
+ peerDependencies:
1825
+ eslint: '>=6.0.0'
1826
+
1827
+ vue-i18n-extract@2.0.7:
1828
+ resolution: {integrity: sha512-i1NW5R58S720iQ1BEk+6ILo3hT6UA8mtYNNolSH4rt9345qvXdvA6GHy2+jHozdDAKHwlu9VvS/+vIMKs1UYQw==}
1829
+ hasBin: true
1830
+
1831
+ vue-i18n@10.0.8:
1832
+ resolution: {integrity: sha512-mIjy4utxMz9lMMo6G9vYePv7gUFt4ztOMhY9/4czDJxZ26xPeJ49MAGa9wBAE3XuXbYCrtVPmPxNjej7JJJkZQ==}
1833
+ engines: {node: '>= 16'}
1834
+ deprecated: v9 and v10 no longer supported. please migrate to v11. about maintenance status, see https://vue-i18n.intlify.dev/guide/maintenance.html
1835
+ peerDependencies:
1836
+ vue: ^3.0.0
1837
+
1838
+ vue-router@4.6.4:
1839
+ resolution: {integrity: sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg==}
1840
+ peerDependencies:
1841
+ vue: ^3.5.0
1842
+
1843
+ vue-slider-component@4.1.0-beta.7:
1844
+ resolution: {integrity: sha512-Qb7K920ZG7PoQswoF6Ias+i3W2rd3k4fpk04JUl82kEUcN86Yg6et7bVSKWt/7VpQe8a5IT3BqCKSCOZ7AJgCA==}
1845
+
1846
+ vue-tsc@2.2.12:
1847
+ resolution: {integrity: sha512-P7OP77b2h/Pmk+lZdJ0YWs+5tJ6J2+uOQPo7tlBnY44QqQSPYvS0qVT4wqDJgwrZaLe47etJLLQRFia71GYITw==}
1848
+ hasBin: true
1849
+ peerDependencies:
1850
+ typescript: '>=5.0.0'
1851
+
1852
+ vue3-json-viewer@2.4.1:
1853
+ resolution: {integrity: sha512-Z1sunvS58lJ3ZcpNhl3jYQapBVw2wjnXbemigfMWm3QnjCeg3CPMq8R6pxHUYahxMfPKLvrbGve6mUXqhWyLaQ==}
1854
+ peerDependencies:
1855
+ vue: ^3.5.16
1856
+
1857
+ vue@3.5.29:
1858
+ resolution: {integrity: sha512-BZqN4Ze6mDQVNAni0IHeMJ5mwr8VAJ3MQC9FmprRhcBYENw+wOAAjRj8jfmN6FLl0j96OXbR+CjWhmAmM+QGnA==}
1859
+ peerDependencies:
1860
+ typescript: '*'
1861
+ peerDependenciesMeta:
1862
+ typescript:
1863
+ optional: true
1864
+
1865
+ which@2.0.2:
1866
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
1867
+ engines: {node: '>= 8'}
1868
+ hasBin: true
1869
+
1870
+ which@3.0.1:
1871
+ resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==}
1872
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
1873
+ hasBin: true
1874
+
1875
+ word-wrap@1.2.5:
1876
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
1877
+ engines: {node: '>=0.10.0'}
1878
+
1879
+ wrappy@1.0.2:
1880
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
1881
+
1882
+ xml-name-validator@4.0.0:
1883
+ resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
1884
+ engines: {node: '>=12'}
1885
+
1886
+ yocto-queue@0.1.0:
1887
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
1888
+ engines: {node: '>=10'}
1889
+
1890
+ zhead@2.2.4:
1891
+ resolution: {integrity: sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==}
1892
+
1893
+ snapshots:
1894
+
1895
+ '@alloc/quick-lru@5.2.0': {}
1896
+
1897
+ '@babel/helper-string-parser@7.27.1': {}
1898
+
1899
+ '@babel/helper-validator-identifier@7.28.5': {}
1900
+
1901
+ '@babel/parser@7.29.0':
1902
+ dependencies:
1903
+ '@babel/types': 7.29.0
1904
+
1905
+ '@babel/types@7.29.0':
1906
+ dependencies:
1907
+ '@babel/helper-string-parser': 7.27.1
1908
+ '@babel/helper-validator-identifier': 7.28.5
1909
+
1910
+ '@esbuild/aix-ppc64@0.21.5':
1911
+ optional: true
1912
+
1913
+ '@esbuild/android-arm64@0.21.5':
1914
+ optional: true
1915
+
1916
+ '@esbuild/android-arm@0.21.5':
1917
+ optional: true
1918
+
1919
+ '@esbuild/android-x64@0.21.5':
1920
+ optional: true
1921
+
1922
+ '@esbuild/darwin-arm64@0.21.5':
1923
+ optional: true
1924
+
1925
+ '@esbuild/darwin-x64@0.21.5':
1926
+ optional: true
1927
+
1928
+ '@esbuild/freebsd-arm64@0.21.5':
1929
+ optional: true
1930
+
1931
+ '@esbuild/freebsd-x64@0.21.5':
1932
+ optional: true
1933
+
1934
+ '@esbuild/linux-arm64@0.21.5':
1935
+ optional: true
1936
+
1937
+ '@esbuild/linux-arm@0.21.5':
1938
+ optional: true
1939
+
1940
+ '@esbuild/linux-ia32@0.21.5':
1941
+ optional: true
1942
+
1943
+ '@esbuild/linux-loong64@0.21.5':
1944
+ optional: true
1945
+
1946
+ '@esbuild/linux-mips64el@0.21.5':
1947
+ optional: true
1948
+
1949
+ '@esbuild/linux-ppc64@0.21.5':
1950
+ optional: true
1951
+
1952
+ '@esbuild/linux-riscv64@0.21.5':
1953
+ optional: true
1954
+
1955
+ '@esbuild/linux-s390x@0.21.5':
1956
+ optional: true
1957
+
1958
+ '@esbuild/linux-x64@0.21.5':
1959
+ optional: true
1960
+
1961
+ '@esbuild/netbsd-x64@0.21.5':
1962
+ optional: true
1963
+
1964
+ '@esbuild/openbsd-x64@0.21.5':
1965
+ optional: true
1966
+
1967
+ '@esbuild/sunos-x64@0.21.5':
1968
+ optional: true
1969
+
1970
+ '@esbuild/win32-arm64@0.21.5':
1971
+ optional: true
1972
+
1973
+ '@esbuild/win32-ia32@0.21.5':
1974
+ optional: true
1975
+
1976
+ '@esbuild/win32-x64@0.21.5':
1977
+ optional: true
1978
+
1979
+ '@eslint-community/eslint-utils@4.9.1(eslint@8.57.1)':
1980
+ dependencies:
1981
+ eslint: 8.57.1
1982
+ eslint-visitor-keys: 3.4.3
1983
+
1984
+ '@eslint-community/regexpp@4.12.2': {}
1985
+
1986
+ '@eslint/eslintrc@2.1.4':
1987
+ dependencies:
1988
+ ajv: 6.14.0
1989
+ debug: 4.4.3
1990
+ espree: 9.6.1
1991
+ globals: 13.24.0
1992
+ ignore: 5.3.2
1993
+ import-fresh: 3.3.1
1994
+ js-yaml: 4.1.1
1995
+ minimatch: 3.1.5
1996
+ strip-json-comments: 3.1.1
1997
+ transitivePeerDependencies:
1998
+ - supports-color
1999
+
2000
+ '@eslint/js@8.57.1': {}
2001
+
2002
+ '@humanwhocodes/config-array@0.13.0':
2003
+ dependencies:
2004
+ '@humanwhocodes/object-schema': 2.0.3
2005
+ debug: 4.4.3
2006
+ minimatch: 3.1.5
2007
+ transitivePeerDependencies:
2008
+ - supports-color
2009
+
2010
+ '@humanwhocodes/module-importer@1.0.1': {}
2011
+
2012
+ '@humanwhocodes/object-schema@2.0.3': {}
2013
+
2014
+ '@iconify-prerendered/vue-flag@0.28.1754899047(vue@3.5.29(typescript@5.4.5))':
2015
+ dependencies:
2016
+ vue: 3.5.29(typescript@5.4.5)
2017
+
2018
+ '@iconify-prerendered/vue-flowbite@0.28.1754899090(vue@3.5.29(typescript@5.4.5))':
2019
+ dependencies:
2020
+ vue: 3.5.29(typescript@5.4.5)
2021
+
2022
+ '@iconify-prerendered/vue-humbleicons@0.28.1754108846(vue@3.5.29(typescript@5.4.5))':
2023
+ dependencies:
2024
+ vue: 3.5.29(typescript@5.4.5)
2025
+
2026
+ '@intlify/core-base@10.0.8':
2027
+ dependencies:
2028
+ '@intlify/message-compiler': 10.0.8
2029
+ '@intlify/shared': 10.0.8
2030
+
2031
+ '@intlify/message-compiler@10.0.8':
2032
+ dependencies:
2033
+ '@intlify/shared': 10.0.8
2034
+ source-map-js: 1.2.1
2035
+
2036
+ '@intlify/shared@10.0.8': {}
2037
+
2038
+ '@jridgewell/gen-mapping@0.3.13':
2039
+ dependencies:
2040
+ '@jridgewell/sourcemap-codec': 1.5.5
2041
+ '@jridgewell/trace-mapping': 0.3.31
2042
+
2043
+ '@jridgewell/resolve-uri@3.1.2': {}
2044
+
2045
+ '@jridgewell/sourcemap-codec@1.5.5': {}
2046
+
2047
+ '@jridgewell/trace-mapping@0.3.31':
2048
+ dependencies:
2049
+ '@jridgewell/resolve-uri': 3.1.2
2050
+ '@jridgewell/sourcemap-codec': 1.5.5
2051
+
2052
+ '@nodelib/fs.scandir@2.1.5':
2053
+ dependencies:
2054
+ '@nodelib/fs.stat': 2.0.5
2055
+ run-parallel: 1.2.0
2056
+
2057
+ '@nodelib/fs.stat@2.0.5': {}
2058
+
2059
+ '@nodelib/fs.walk@1.2.8':
2060
+ dependencies:
2061
+ '@nodelib/fs.scandir': 2.1.5
2062
+ fastq: 1.20.1
2063
+
2064
+ '@parcel/watcher-android-arm64@2.5.6':
2065
+ optional: true
2066
+
2067
+ '@parcel/watcher-darwin-arm64@2.5.6':
2068
+ optional: true
2069
+
2070
+ '@parcel/watcher-darwin-x64@2.5.6':
2071
+ optional: true
2072
+
2073
+ '@parcel/watcher-freebsd-x64@2.5.6':
2074
+ optional: true
2075
+
2076
+ '@parcel/watcher-linux-arm-glibc@2.5.6':
2077
+ optional: true
2078
+
2079
+ '@parcel/watcher-linux-arm-musl@2.5.6':
2080
+ optional: true
2081
+
2082
+ '@parcel/watcher-linux-arm64-glibc@2.5.6':
2083
+ optional: true
2084
+
2085
+ '@parcel/watcher-linux-arm64-musl@2.5.6':
2086
+ optional: true
2087
+
2088
+ '@parcel/watcher-linux-x64-glibc@2.5.6':
2089
+ optional: true
2090
+
2091
+ '@parcel/watcher-linux-x64-musl@2.5.6':
2092
+ optional: true
2093
+
2094
+ '@parcel/watcher-win32-arm64@2.5.6':
2095
+ optional: true
2096
+
2097
+ '@parcel/watcher-win32-ia32@2.5.6':
2098
+ optional: true
2099
+
2100
+ '@parcel/watcher-win32-x64@2.5.6':
2101
+ optional: true
2102
+
2103
+ '@parcel/watcher@2.5.6':
2104
+ dependencies:
2105
+ detect-libc: 2.1.2
2106
+ is-glob: 4.0.3
2107
+ node-addon-api: 7.1.1
2108
+ picomatch: 4.0.3
2109
+ optionalDependencies:
2110
+ '@parcel/watcher-android-arm64': 2.5.6
2111
+ '@parcel/watcher-darwin-arm64': 2.5.6
2112
+ '@parcel/watcher-darwin-x64': 2.5.6
2113
+ '@parcel/watcher-freebsd-x64': 2.5.6
2114
+ '@parcel/watcher-linux-arm-glibc': 2.5.6
2115
+ '@parcel/watcher-linux-arm-musl': 2.5.6
2116
+ '@parcel/watcher-linux-arm64-glibc': 2.5.6
2117
+ '@parcel/watcher-linux-arm64-musl': 2.5.6
2118
+ '@parcel/watcher-linux-x64-glibc': 2.5.6
2119
+ '@parcel/watcher-linux-x64-musl': 2.5.6
2120
+ '@parcel/watcher-win32-arm64': 2.5.6
2121
+ '@parcel/watcher-win32-ia32': 2.5.6
2122
+ '@parcel/watcher-win32-x64': 2.5.6
2123
+ optional: true
2124
+
2125
+ '@popperjs/core@2.11.8': {}
2126
+
2127
+ '@rollup/plugin-node-resolve@15.3.1(rollup@4.59.0)':
2128
+ dependencies:
2129
+ '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
2130
+ '@types/resolve': 1.20.2
2131
+ deepmerge: 4.3.1
2132
+ is-module: 1.0.0
2133
+ resolve: 1.22.11
2134
+ optionalDependencies:
2135
+ rollup: 4.59.0
2136
+
2137
+ '@rollup/pluginutils@5.3.0(rollup@4.59.0)':
2138
+ dependencies:
2139
+ '@types/estree': 1.0.8
2140
+ estree-walker: 2.0.2
2141
+ picomatch: 4.0.3
2142
+ optionalDependencies:
2143
+ rollup: 4.59.0
2144
+
2145
+ '@rollup/rollup-android-arm-eabi@4.59.0':
2146
+ optional: true
2147
+
2148
+ '@rollup/rollup-android-arm64@4.59.0':
2149
+ optional: true
2150
+
2151
+ '@rollup/rollup-darwin-arm64@4.59.0':
2152
+ optional: true
2153
+
2154
+ '@rollup/rollup-darwin-x64@4.59.0':
2155
+ optional: true
2156
+
2157
+ '@rollup/rollup-freebsd-arm64@4.59.0':
2158
+ optional: true
2159
+
2160
+ '@rollup/rollup-freebsd-x64@4.59.0':
2161
+ optional: true
2162
+
2163
+ '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
2164
+ optional: true
2165
+
2166
+ '@rollup/rollup-linux-arm-musleabihf@4.59.0':
2167
+ optional: true
2168
+
2169
+ '@rollup/rollup-linux-arm64-gnu@4.59.0':
2170
+ optional: true
2171
+
2172
+ '@rollup/rollup-linux-arm64-musl@4.59.0':
2173
+ optional: true
2174
+
2175
+ '@rollup/rollup-linux-loong64-gnu@4.59.0':
2176
+ optional: true
2177
+
2178
+ '@rollup/rollup-linux-loong64-musl@4.59.0':
2179
+ optional: true
2180
+
2181
+ '@rollup/rollup-linux-ppc64-gnu@4.59.0':
2182
+ optional: true
2183
+
2184
+ '@rollup/rollup-linux-ppc64-musl@4.59.0':
2185
+ optional: true
2186
+
2187
+ '@rollup/rollup-linux-riscv64-gnu@4.59.0':
2188
+ optional: true
2189
+
2190
+ '@rollup/rollup-linux-riscv64-musl@4.59.0':
2191
+ optional: true
2192
+
2193
+ '@rollup/rollup-linux-s390x-gnu@4.59.0':
2194
+ optional: true
2195
+
2196
+ '@rollup/rollup-linux-x64-gnu@4.59.0':
2197
+ optional: true
2198
+
2199
+ '@rollup/rollup-linux-x64-musl@4.59.0':
2200
+ optional: true
2201
+
2202
+ '@rollup/rollup-openbsd-x64@4.59.0':
2203
+ optional: true
2204
+
2205
+ '@rollup/rollup-openharmony-arm64@4.59.0':
2206
+ optional: true
2207
+
2208
+ '@rollup/rollup-win32-arm64-msvc@4.59.0':
2209
+ optional: true
2210
+
2211
+ '@rollup/rollup-win32-ia32-msvc@4.59.0':
2212
+ optional: true
2213
+
2214
+ '@rollup/rollup-win32-x64-gnu@4.59.0':
2215
+ optional: true
2216
+
2217
+ '@rollup/rollup-win32-x64-msvc@4.59.0':
2218
+ optional: true
2219
+
2220
+ '@rushstack/eslint-patch@1.16.1': {}
2221
+
2222
+ '@svgdotjs/svg.draggable.js@3.0.6(@svgdotjs/svg.js@3.2.5)':
2223
+ dependencies:
2224
+ '@svgdotjs/svg.js': 3.2.5
2225
+
2226
+ '@svgdotjs/svg.filter.js@3.0.9':
2227
+ dependencies:
2228
+ '@svgdotjs/svg.js': 3.2.5
2229
+
2230
+ '@svgdotjs/svg.js@3.2.5': {}
2231
+
2232
+ '@svgdotjs/svg.resize.js@2.0.5(@svgdotjs/svg.js@3.2.5)(@svgdotjs/svg.select.js@4.0.3(@svgdotjs/svg.js@3.2.5))':
2233
+ dependencies:
2234
+ '@svgdotjs/svg.js': 3.2.5
2235
+ '@svgdotjs/svg.select.js': 4.0.3(@svgdotjs/svg.js@3.2.5)
2236
+
2237
+ '@svgdotjs/svg.select.js@4.0.3(@svgdotjs/svg.js@3.2.5)':
2238
+ dependencies:
2239
+ '@svgdotjs/svg.js': 3.2.5
2240
+
2241
+ '@tailwindcss/typography@0.5.19(tailwindcss@3.4.19)':
2242
+ dependencies:
2243
+ postcss-selector-parser: 6.0.10
2244
+ tailwindcss: 3.4.19
2245
+
2246
+ '@tsconfig/node20@20.1.9': {}
2247
+
2248
+ '@types/estree@1.0.8': {}
2249
+
2250
+ '@types/node@20.19.37':
2251
+ dependencies:
2252
+ undici-types: 6.21.0
2253
+
2254
+ '@types/resolve@1.20.2': {}
2255
+
2256
+ '@types/web-bluetooth@0.0.14': {}
2257
+
2258
+ '@types/web-bluetooth@0.0.20': {}
2259
+
2260
+ '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.4.5))(eslint@8.57.1)(typescript@5.4.5)':
2261
+ dependencies:
2262
+ '@eslint-community/regexpp': 4.12.2
2263
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.4.5)
2264
+ '@typescript-eslint/scope-manager': 7.18.0
2265
+ '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.1)(typescript@5.4.5)
2266
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.4.5)
2267
+ '@typescript-eslint/visitor-keys': 7.18.0
2268
+ eslint: 8.57.1
2269
+ graphemer: 1.4.0
2270
+ ignore: 5.3.2
2271
+ natural-compare: 1.4.0
2272
+ ts-api-utils: 1.4.3(typescript@5.4.5)
2273
+ optionalDependencies:
2274
+ typescript: 5.4.5
2275
+ transitivePeerDependencies:
2276
+ - supports-color
2277
+
2278
+ '@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.4.5)':
2279
+ dependencies:
2280
+ '@typescript-eslint/scope-manager': 7.18.0
2281
+ '@typescript-eslint/types': 7.18.0
2282
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.4.5)
2283
+ '@typescript-eslint/visitor-keys': 7.18.0
2284
+ debug: 4.4.3
2285
+ eslint: 8.57.1
2286
+ optionalDependencies:
2287
+ typescript: 5.4.5
2288
+ transitivePeerDependencies:
2289
+ - supports-color
2290
+
2291
+ '@typescript-eslint/scope-manager@7.18.0':
2292
+ dependencies:
2293
+ '@typescript-eslint/types': 7.18.0
2294
+ '@typescript-eslint/visitor-keys': 7.18.0
2295
+
2296
+ '@typescript-eslint/type-utils@7.18.0(eslint@8.57.1)(typescript@5.4.5)':
2297
+ dependencies:
2298
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.4.5)
2299
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.4.5)
2300
+ debug: 4.4.3
2301
+ eslint: 8.57.1
2302
+ ts-api-utils: 1.4.3(typescript@5.4.5)
2303
+ optionalDependencies:
2304
+ typescript: 5.4.5
2305
+ transitivePeerDependencies:
2306
+ - supports-color
2307
+
2308
+ '@typescript-eslint/types@7.18.0': {}
2309
+
2310
+ '@typescript-eslint/typescript-estree@7.18.0(typescript@5.4.5)':
2311
+ dependencies:
2312
+ '@typescript-eslint/types': 7.18.0
2313
+ '@typescript-eslint/visitor-keys': 7.18.0
2314
+ debug: 4.4.3
2315
+ globby: 11.1.0
2316
+ is-glob: 4.0.3
2317
+ minimatch: 9.0.9
2318
+ semver: 7.7.4
2319
+ ts-api-utils: 1.4.3(typescript@5.4.5)
2320
+ optionalDependencies:
2321
+ typescript: 5.4.5
2322
+ transitivePeerDependencies:
2323
+ - supports-color
2324
+
2325
+ '@typescript-eslint/utils@7.18.0(eslint@8.57.1)(typescript@5.4.5)':
2326
+ dependencies:
2327
+ '@eslint-community/eslint-utils': 4.9.1(eslint@8.57.1)
2328
+ '@typescript-eslint/scope-manager': 7.18.0
2329
+ '@typescript-eslint/types': 7.18.0
2330
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.4.5)
2331
+ eslint: 8.57.1
2332
+ transitivePeerDependencies:
2333
+ - supports-color
2334
+ - typescript
2335
+
2336
+ '@typescript-eslint/visitor-keys@7.18.0':
2337
+ dependencies:
2338
+ '@typescript-eslint/types': 7.18.0
2339
+ eslint-visitor-keys: 3.4.3
2340
+
2341
+ '@ungap/structured-clone@1.3.0': {}
2342
+
2343
+ '@unhead/dom@1.11.20':
2344
+ dependencies:
2345
+ '@unhead/schema': 1.11.20
2346
+ '@unhead/shared': 1.11.20
2347
+
2348
+ '@unhead/schema@1.11.20':
2349
+ dependencies:
2350
+ hookable: 5.5.3
2351
+ zhead: 2.2.4
2352
+
2353
+ '@unhead/shared@1.11.20':
2354
+ dependencies:
2355
+ '@unhead/schema': 1.11.20
2356
+ packrup: 0.1.2
2357
+
2358
+ '@unhead/vue@1.11.20(vue@3.5.29(typescript@5.4.5))':
2359
+ dependencies:
2360
+ '@unhead/schema': 1.11.20
2361
+ '@unhead/shared': 1.11.20
2362
+ hookable: 5.5.3
2363
+ unhead: 1.11.20
2364
+ vue: 3.5.29(typescript@5.4.5)
2365
+
2366
+ '@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@20.19.37)(sass@1.97.3))(vue@3.5.29(typescript@5.4.5))':
2367
+ dependencies:
2368
+ vite: 5.4.21(@types/node@20.19.37)(sass@1.97.3)
2369
+ vue: 3.5.29(typescript@5.4.5)
2370
+
2371
+ '@volar/language-core@2.4.15':
2372
+ dependencies:
2373
+ '@volar/source-map': 2.4.15
2374
+
2375
+ '@volar/source-map@2.4.15': {}
2376
+
2377
+ '@volar/typescript@2.4.15':
2378
+ dependencies:
2379
+ '@volar/language-core': 2.4.15
2380
+ path-browserify: 1.0.1
2381
+ vscode-uri: 3.1.0
2382
+
2383
+ '@vue/compiler-core@3.5.29':
2384
+ dependencies:
2385
+ '@babel/parser': 7.29.0
2386
+ '@vue/shared': 3.5.29
2387
+ entities: 7.0.1
2388
+ estree-walker: 2.0.2
2389
+ source-map-js: 1.2.1
2390
+
2391
+ '@vue/compiler-dom@3.5.29':
2392
+ dependencies:
2393
+ '@vue/compiler-core': 3.5.29
2394
+ '@vue/shared': 3.5.29
2395
+
2396
+ '@vue/compiler-sfc@3.5.29':
2397
+ dependencies:
2398
+ '@babel/parser': 7.29.0
2399
+ '@vue/compiler-core': 3.5.29
2400
+ '@vue/compiler-dom': 3.5.29
2401
+ '@vue/compiler-ssr': 3.5.29
2402
+ '@vue/shared': 3.5.29
2403
+ estree-walker: 2.0.2
2404
+ magic-string: 0.30.21
2405
+ postcss: 8.5.8
2406
+ source-map-js: 1.2.1
2407
+
2408
+ '@vue/compiler-ssr@3.5.29':
2409
+ dependencies:
2410
+ '@vue/compiler-dom': 3.5.29
2411
+ '@vue/shared': 3.5.29
2412
+
2413
+ '@vue/compiler-vue2@2.7.16':
2414
+ dependencies:
2415
+ de-indent: 1.0.2
2416
+ he: 1.2.0
2417
+
2418
+ '@vue/devtools-api@6.6.4': {}
2419
+
2420
+ '@vue/eslint-config-typescript@13.0.0(eslint-plugin-vue@9.33.0(eslint@8.57.1))(eslint@8.57.1)(typescript@5.4.5)':
2421
+ dependencies:
2422
+ '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.4.5))(eslint@8.57.1)(typescript@5.4.5)
2423
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.4.5)
2424
+ eslint: 8.57.1
2425
+ eslint-plugin-vue: 9.33.0(eslint@8.57.1)
2426
+ vue-eslint-parser: 9.4.3(eslint@8.57.1)
2427
+ optionalDependencies:
2428
+ typescript: 5.4.5
2429
+ transitivePeerDependencies:
2430
+ - supports-color
2431
+
2432
+ '@vue/language-core@2.2.12(typescript@5.4.5)':
2433
+ dependencies:
2434
+ '@volar/language-core': 2.4.15
2435
+ '@vue/compiler-dom': 3.5.29
2436
+ '@vue/compiler-vue2': 2.7.16
2437
+ '@vue/shared': 3.5.29
2438
+ alien-signals: 1.0.13
2439
+ minimatch: 9.0.9
2440
+ muggle-string: 0.4.1
2441
+ path-browserify: 1.0.1
2442
+ optionalDependencies:
2443
+ typescript: 5.4.5
2444
+
2445
+ '@vue/reactivity@3.5.29':
2446
+ dependencies:
2447
+ '@vue/shared': 3.5.29
2448
+
2449
+ '@vue/runtime-core@3.5.29':
2450
+ dependencies:
2451
+ '@vue/reactivity': 3.5.29
2452
+ '@vue/shared': 3.5.29
2453
+
2454
+ '@vue/runtime-dom@3.5.29':
2455
+ dependencies:
2456
+ '@vue/reactivity': 3.5.29
2457
+ '@vue/runtime-core': 3.5.29
2458
+ '@vue/shared': 3.5.29
2459
+ csstype: 3.2.3
2460
+
2461
+ '@vue/server-renderer@3.5.29(vue@3.5.29(typescript@5.4.5))':
2462
+ dependencies:
2463
+ '@vue/compiler-ssr': 3.5.29
2464
+ '@vue/shared': 3.5.29
2465
+ vue: 3.5.29(typescript@5.4.5)
2466
+
2467
+ '@vue/shared@3.5.29': {}
2468
+
2469
+ '@vue/tsconfig@0.5.1': {}
2470
+
2471
+ '@vueuse/core@10.11.1(vue@3.5.29(typescript@5.4.5))':
2472
+ dependencies:
2473
+ '@types/web-bluetooth': 0.0.20
2474
+ '@vueuse/metadata': 10.11.1
2475
+ '@vueuse/shared': 10.11.1(vue@3.5.29(typescript@5.4.5))
2476
+ vue-demi: 0.14.10(vue@3.5.29(typescript@5.4.5))
2477
+ transitivePeerDependencies:
2478
+ - '@vue/composition-api'
2479
+ - vue
2480
+
2481
+ '@vueuse/core@8.9.4(vue@3.5.29(typescript@5.4.5))':
2482
+ dependencies:
2483
+ '@types/web-bluetooth': 0.0.14
2484
+ '@vueuse/metadata': 8.9.4
2485
+ '@vueuse/shared': 8.9.4(vue@3.5.29(typescript@5.4.5))
2486
+ vue-demi: 0.14.10(vue@3.5.29(typescript@5.4.5))
2487
+ optionalDependencies:
2488
+ vue: 3.5.29(typescript@5.4.5)
2489
+
2490
+ '@vueuse/metadata@10.11.1': {}
2491
+
2492
+ '@vueuse/metadata@8.9.4': {}
2493
+
2494
+ '@vueuse/shared@10.11.1(vue@3.5.29(typescript@5.4.5))':
2495
+ dependencies:
2496
+ vue-demi: 0.14.10(vue@3.5.29(typescript@5.4.5))
2497
+ transitivePeerDependencies:
2498
+ - '@vue/composition-api'
2499
+ - vue
2500
+
2501
+ '@vueuse/shared@8.9.4(vue@3.5.29(typescript@5.4.5))':
2502
+ dependencies:
2503
+ vue-demi: 0.14.10(vue@3.5.29(typescript@5.4.5))
2504
+ optionalDependencies:
2505
+ vue: 3.5.29(typescript@5.4.5)
2506
+
2507
+ '@yr/monotone-cubic-spline@1.0.3': {}
2508
+
2509
+ acorn-jsx@5.3.2(acorn@8.16.0):
2510
+ dependencies:
2511
+ acorn: 8.16.0
2512
+
2513
+ acorn@8.16.0: {}
2514
+
2515
+ ajv@6.14.0:
2516
+ dependencies:
2517
+ fast-deep-equal: 3.1.3
2518
+ fast-json-stable-stringify: 2.1.0
2519
+ json-schema-traverse: 0.4.1
2520
+ uri-js: 4.4.1
2521
+
2522
+ alien-signals@1.0.13: {}
2523
+
2524
+ ansi-regex@5.0.1: {}
2525
+
2526
+ ansi-styles@4.3.0:
2527
+ dependencies:
2528
+ color-convert: 2.0.1
2529
+
2530
+ ansi-styles@6.2.3: {}
2531
+
2532
+ any-promise@1.3.0: {}
2533
+
2534
+ anymatch@3.1.3:
2535
+ dependencies:
2536
+ normalize-path: 3.0.0
2537
+ picomatch: 2.3.1
2538
+
2539
+ apexcharts@4.7.0:
2540
+ dependencies:
2541
+ '@svgdotjs/svg.draggable.js': 3.0.6(@svgdotjs/svg.js@3.2.5)
2542
+ '@svgdotjs/svg.filter.js': 3.0.9
2543
+ '@svgdotjs/svg.js': 3.2.5
2544
+ '@svgdotjs/svg.resize.js': 2.0.5(@svgdotjs/svg.js@3.2.5)(@svgdotjs/svg.select.js@4.0.3(@svgdotjs/svg.js@3.2.5))
2545
+ '@svgdotjs/svg.select.js': 4.0.3(@svgdotjs/svg.js@3.2.5)
2546
+ '@yr/monotone-cubic-spline': 1.0.3
2547
+
2548
+ arg@5.0.2: {}
2549
+
2550
+ argparse@2.0.1: {}
2551
+
2552
+ array-union@2.1.0: {}
2553
+
2554
+ async@3.2.6: {}
2555
+
2556
+ autoprefixer@10.4.27(postcss@8.5.8):
2557
+ dependencies:
2558
+ browserslist: 4.28.1
2559
+ caniuse-lite: 1.0.30001777
2560
+ fraction.js: 5.3.4
2561
+ picocolors: 1.1.1
2562
+ postcss: 8.5.8
2563
+ postcss-value-parser: 4.2.0
2564
+
2565
+ balanced-match@1.0.2: {}
2566
+
2567
+ baseline-browser-mapping@2.10.0: {}
2568
+
2569
+ binary-extensions@2.3.0: {}
2570
+
2571
+ boolbase@1.0.0: {}
2572
+
2573
+ brace-expansion@1.1.12:
2574
+ dependencies:
2575
+ balanced-match: 1.0.2
2576
+ concat-map: 0.0.1
2577
+
2578
+ brace-expansion@2.0.2:
2579
+ dependencies:
2580
+ balanced-match: 1.0.2
2581
+
2582
+ braces@3.0.3:
2583
+ dependencies:
2584
+ fill-range: 7.1.1
2585
+
2586
+ browserslist@4.28.1:
2587
+ dependencies:
2588
+ baseline-browser-mapping: 2.10.0
2589
+ caniuse-lite: 1.0.30001777
2590
+ electron-to-chromium: 1.5.307
2591
+ node-releases: 2.0.36
2592
+ update-browserslist-db: 1.2.3(browserslist@4.28.1)
2593
+
2594
+ cac@6.7.14: {}
2595
+
2596
+ callsites@3.1.0: {}
2597
+
2598
+ camelcase-css@2.0.1: {}
2599
+
2600
+ caniuse-lite@1.0.30001777: {}
2601
+
2602
+ chalk@4.1.2:
2603
+ dependencies:
2604
+ ansi-styles: 4.3.0
2605
+ supports-color: 7.2.0
2606
+
2607
+ chokidar@3.6.0:
2608
+ dependencies:
2609
+ anymatch: 3.1.3
2610
+ braces: 3.0.3
2611
+ glob-parent: 5.1.2
2612
+ is-binary-path: 2.1.0
2613
+ is-glob: 4.0.3
2614
+ normalize-path: 3.0.0
2615
+ readdirp: 3.6.0
2616
+ optionalDependencies:
2617
+ fsevents: 2.3.3
2618
+
2619
+ chokidar@4.0.3:
2620
+ dependencies:
2621
+ readdirp: 4.1.2
2622
+
2623
+ clipboard@2.0.11:
2624
+ dependencies:
2625
+ good-listener: 1.2.2
2626
+ select: 1.1.2
2627
+ tiny-emitter: 2.1.0
2628
+
2629
+ color-convert@2.0.1:
2630
+ dependencies:
2631
+ color-name: 1.1.4
2632
+
2633
+ color-name@1.1.4: {}
2634
+
2635
+ commander@4.1.1: {}
2636
+
2637
+ commander@6.2.1: {}
2638
+
2639
+ concat-map@0.0.1: {}
2640
+
2641
+ cross-spawn@7.0.6:
2642
+ dependencies:
2643
+ path-key: 3.1.1
2644
+ shebang-command: 2.0.0
2645
+ which: 2.0.2
2646
+
2647
+ cssesc@3.0.0: {}
2648
+
2649
+ csstype@3.2.3: {}
2650
+
2651
+ dayjs@1.11.19: {}
2652
+
2653
+ de-indent@1.0.2: {}
2654
+
2655
+ debounce@2.2.0: {}
2656
+
2657
+ debug@4.4.3:
2658
+ dependencies:
2659
+ ms: 2.1.3
2660
+
2661
+ deep-is@0.1.4: {}
2662
+
2663
+ deepmerge@4.3.1: {}
2664
+
2665
+ delegate@3.2.0: {}
2666
+
2667
+ detect-libc@2.1.2:
2668
+ optional: true
2669
+
2670
+ diacritics@1.3.0: {}
2671
+
2672
+ didyoumean@1.2.2: {}
2673
+
2674
+ diff-match-patch@1.0.5: {}
2675
+
2676
+ dir-glob@3.0.1:
2677
+ dependencies:
2678
+ path-type: 4.0.0
2679
+
2680
+ dlv@1.1.3: {}
2681
+
2682
+ doctrine@3.0.0:
2683
+ dependencies:
2684
+ esutils: 2.0.3
2685
+
2686
+ dom-serializer@2.0.0:
2687
+ dependencies:
2688
+ domelementtype: 2.3.0
2689
+ domhandler: 5.0.3
2690
+ entities: 4.5.0
2691
+
2692
+ domelementtype@2.3.0: {}
2693
+
2694
+ domhandler@5.0.3:
2695
+ dependencies:
2696
+ domelementtype: 2.3.0
2697
+
2698
+ domutils@3.2.2:
2699
+ dependencies:
2700
+ dom-serializer: 2.0.0
2701
+ domelementtype: 2.3.0
2702
+ domhandler: 5.0.3
2703
+
2704
+ dot-object@2.1.5:
2705
+ dependencies:
2706
+ commander: 6.2.1
2707
+ glob: 7.2.3
2708
+
2709
+ electron-to-chromium@1.5.307: {}
2710
+
2711
+ entities@4.5.0: {}
2712
+
2713
+ entities@7.0.1: {}
2714
+
2715
+ esbuild@0.21.5:
2716
+ optionalDependencies:
2717
+ '@esbuild/aix-ppc64': 0.21.5
2718
+ '@esbuild/android-arm': 0.21.5
2719
+ '@esbuild/android-arm64': 0.21.5
2720
+ '@esbuild/android-x64': 0.21.5
2721
+ '@esbuild/darwin-arm64': 0.21.5
2722
+ '@esbuild/darwin-x64': 0.21.5
2723
+ '@esbuild/freebsd-arm64': 0.21.5
2724
+ '@esbuild/freebsd-x64': 0.21.5
2725
+ '@esbuild/linux-arm': 0.21.5
2726
+ '@esbuild/linux-arm64': 0.21.5
2727
+ '@esbuild/linux-ia32': 0.21.5
2728
+ '@esbuild/linux-loong64': 0.21.5
2729
+ '@esbuild/linux-mips64el': 0.21.5
2730
+ '@esbuild/linux-ppc64': 0.21.5
2731
+ '@esbuild/linux-riscv64': 0.21.5
2732
+ '@esbuild/linux-s390x': 0.21.5
2733
+ '@esbuild/linux-x64': 0.21.5
2734
+ '@esbuild/netbsd-x64': 0.21.5
2735
+ '@esbuild/openbsd-x64': 0.21.5
2736
+ '@esbuild/sunos-x64': 0.21.5
2737
+ '@esbuild/win32-arm64': 0.21.5
2738
+ '@esbuild/win32-ia32': 0.21.5
2739
+ '@esbuild/win32-x64': 0.21.5
2740
+
2741
+ escalade@3.2.0: {}
2742
+
2743
+ escape-string-regexp@4.0.0: {}
2744
+
2745
+ eslint-plugin-vue@9.33.0(eslint@8.57.1):
2746
+ dependencies:
2747
+ '@eslint-community/eslint-utils': 4.9.1(eslint@8.57.1)
2748
+ eslint: 8.57.1
2749
+ globals: 13.24.0
2750
+ natural-compare: 1.4.0
2751
+ nth-check: 2.1.1
2752
+ postcss-selector-parser: 6.1.2
2753
+ semver: 7.7.4
2754
+ vue-eslint-parser: 9.4.3(eslint@8.57.1)
2755
+ xml-name-validator: 4.0.0
2756
+ transitivePeerDependencies:
2757
+ - supports-color
2758
+
2759
+ eslint-scope@7.2.2:
2760
+ dependencies:
2761
+ esrecurse: 4.3.0
2762
+ estraverse: 5.3.0
2763
+
2764
+ eslint-visitor-keys@3.4.3: {}
2765
+
2766
+ eslint@8.57.1:
2767
+ dependencies:
2768
+ '@eslint-community/eslint-utils': 4.9.1(eslint@8.57.1)
2769
+ '@eslint-community/regexpp': 4.12.2
2770
+ '@eslint/eslintrc': 2.1.4
2771
+ '@eslint/js': 8.57.1
2772
+ '@humanwhocodes/config-array': 0.13.0
2773
+ '@humanwhocodes/module-importer': 1.0.1
2774
+ '@nodelib/fs.walk': 1.2.8
2775
+ '@ungap/structured-clone': 1.3.0
2776
+ ajv: 6.14.0
2777
+ chalk: 4.1.2
2778
+ cross-spawn: 7.0.6
2779
+ debug: 4.4.3
2780
+ doctrine: 3.0.0
2781
+ escape-string-regexp: 4.0.0
2782
+ eslint-scope: 7.2.2
2783
+ eslint-visitor-keys: 3.4.3
2784
+ espree: 9.6.1
2785
+ esquery: 1.7.0
2786
+ esutils: 2.0.3
2787
+ fast-deep-equal: 3.1.3
2788
+ file-entry-cache: 6.0.1
2789
+ find-up: 5.0.0
2790
+ glob-parent: 6.0.2
2791
+ globals: 13.24.0
2792
+ graphemer: 1.4.0
2793
+ ignore: 5.3.2
2794
+ imurmurhash: 0.1.4
2795
+ is-glob: 4.0.3
2796
+ is-path-inside: 3.0.3
2797
+ js-yaml: 4.1.1
2798
+ json-stable-stringify-without-jsonify: 1.0.1
2799
+ levn: 0.4.1
2800
+ lodash.merge: 4.6.2
2801
+ minimatch: 3.1.5
2802
+ natural-compare: 1.4.0
2803
+ optionator: 0.9.4
2804
+ strip-ansi: 6.0.1
2805
+ text-table: 0.2.0
2806
+ transitivePeerDependencies:
2807
+ - supports-color
2808
+
2809
+ espree@9.6.1:
2810
+ dependencies:
2811
+ acorn: 8.16.0
2812
+ acorn-jsx: 5.3.2(acorn@8.16.0)
2813
+ eslint-visitor-keys: 3.4.3
2814
+
2815
+ esquery@1.7.0:
2816
+ dependencies:
2817
+ estraverse: 5.3.0
2818
+
2819
+ esrecurse@4.3.0:
2820
+ dependencies:
2821
+ estraverse: 5.3.0
2822
+
2823
+ estraverse@5.3.0: {}
2824
+
2825
+ estree-walker@2.0.2: {}
2826
+
2827
+ esutils@2.0.3: {}
2828
+
2829
+ fast-deep-equal@3.1.3: {}
2830
+
2831
+ fast-glob@3.3.3:
2832
+ dependencies:
2833
+ '@nodelib/fs.stat': 2.0.5
2834
+ '@nodelib/fs.walk': 1.2.8
2835
+ glob-parent: 5.1.2
2836
+ merge2: 1.4.1
2837
+ micromatch: 4.0.8
2838
+
2839
+ fast-json-stable-stringify@2.1.0: {}
2840
+
2841
+ fast-levenshtein@2.0.6: {}
2842
+
2843
+ fastq@1.20.1:
2844
+ dependencies:
2845
+ reusify: 1.1.0
2846
+
2847
+ fdir@6.5.0(picomatch@4.0.3):
2848
+ optionalDependencies:
2849
+ picomatch: 4.0.3
2850
+
2851
+ file-entry-cache@6.0.1:
2852
+ dependencies:
2853
+ flat-cache: 3.2.0
2854
+
2855
+ fill-range@7.1.1:
2856
+ dependencies:
2857
+ to-regex-range: 5.0.1
2858
+
2859
+ find-up@5.0.0:
2860
+ dependencies:
2861
+ locate-path: 6.0.0
2862
+ path-exists: 4.0.0
2863
+
2864
+ flag-icons@7.5.0: {}
2865
+
2866
+ flat-cache@3.2.0:
2867
+ dependencies:
2868
+ flatted: 3.3.4
2869
+ keyv: 4.5.4
2870
+ rimraf: 3.0.2
2871
+
2872
+ flatted@3.3.4: {}
2873
+
2874
+ flowbite-datepicker@1.3.2(rollup@4.59.0):
2875
+ dependencies:
2876
+ '@rollup/plugin-node-resolve': 15.3.1(rollup@4.59.0)
2877
+ flowbite: 2.5.2(rollup@4.59.0)
2878
+ transitivePeerDependencies:
2879
+ - rollup
2880
+
2881
+ flowbite@2.5.2(rollup@4.59.0):
2882
+ dependencies:
2883
+ '@popperjs/core': 2.11.8
2884
+ flowbite-datepicker: 1.3.2(rollup@4.59.0)
2885
+ mini-svg-data-uri: 1.4.4
2886
+ transitivePeerDependencies:
2887
+ - rollup
2888
+
2889
+ flowbite@3.1.2(rollup@4.59.0):
2890
+ dependencies:
2891
+ '@popperjs/core': 2.11.8
2892
+ flowbite-datepicker: 1.3.2(rollup@4.59.0)
2893
+ mini-svg-data-uri: 1.4.4
2894
+ postcss: 8.5.8
2895
+ transitivePeerDependencies:
2896
+ - rollup
2897
+
2898
+ fraction.js@5.3.4: {}
2899
+
2900
+ fs.realpath@1.0.0: {}
2901
+
2902
+ fsevents@2.3.3:
2903
+ optional: true
2904
+
2905
+ function-bind@1.1.2: {}
2906
+
2907
+ glob-parent@5.1.2:
2908
+ dependencies:
2909
+ is-glob: 4.0.3
2910
+
2911
+ glob-parent@6.0.2:
2912
+ dependencies:
2913
+ is-glob: 4.0.3
2914
+
2915
+ glob@7.2.3:
2916
+ dependencies:
2917
+ fs.realpath: 1.0.0
2918
+ inflight: 1.0.6
2919
+ inherits: 2.0.4
2920
+ minimatch: 3.1.5
2921
+ once: 1.4.0
2922
+ path-is-absolute: 1.0.1
2923
+
2924
+ glob@8.1.0:
2925
+ dependencies:
2926
+ fs.realpath: 1.0.0
2927
+ inflight: 1.0.6
2928
+ inherits: 2.0.4
2929
+ minimatch: 5.1.9
2930
+ once: 1.4.0
2931
+
2932
+ globals@13.24.0:
2933
+ dependencies:
2934
+ type-fest: 0.20.2
2935
+
2936
+ globby@11.1.0:
2937
+ dependencies:
2938
+ array-union: 2.1.0
2939
+ dir-glob: 3.0.1
2940
+ fast-glob: 3.3.3
2941
+ ignore: 5.3.2
2942
+ merge2: 1.4.1
2943
+ slash: 3.0.0
2944
+
2945
+ good-listener@1.2.2:
2946
+ dependencies:
2947
+ delegate: 3.2.0
2948
+
2949
+ graphemer@1.4.0: {}
2950
+
2951
+ has-flag@4.0.0: {}
2952
+
2953
+ hasown@2.0.2:
2954
+ dependencies:
2955
+ function-bind: 1.1.2
2956
+
2957
+ he@1.2.0: {}
2958
+
2959
+ highlight.js@11.11.1: {}
2960
+
2961
+ hookable@5.5.3: {}
2962
+
2963
+ htmlparser2@8.0.2:
2964
+ dependencies:
2965
+ domelementtype: 2.3.0
2966
+ domhandler: 5.0.3
2967
+ domutils: 3.2.2
2968
+ entities: 4.5.0
2969
+
2970
+ i18n-iso-countries@7.14.0:
2971
+ dependencies:
2972
+ diacritics: 1.3.0
2973
+
2974
+ ignore@5.3.2: {}
2975
+
2976
+ immutable@5.1.5: {}
2977
+
2978
+ import-fresh@3.3.1:
2979
+ dependencies:
2980
+ parent-module: 1.0.1
2981
+ resolve-from: 4.0.0
2982
+
2983
+ imurmurhash@0.1.4: {}
2984
+
2985
+ inflight@1.0.6:
2986
+ dependencies:
2987
+ once: 1.4.0
2988
+ wrappy: 1.0.2
2989
+
2990
+ inherits@2.0.4: {}
2991
+
2992
+ is-binary-path@2.1.0:
2993
+ dependencies:
2994
+ binary-extensions: 2.3.0
2995
+
2996
+ is-core-module@2.16.1:
2997
+ dependencies:
2998
+ hasown: 2.0.2
2999
+
3000
+ is-extglob@2.1.1: {}
3001
+
3002
+ is-glob@4.0.3:
3003
+ dependencies:
3004
+ is-extglob: 2.1.1
3005
+
3006
+ is-module@1.0.0: {}
3007
+
3008
+ is-number@7.0.0: {}
3009
+
3010
+ is-path-inside@3.0.3: {}
3011
+
3012
+ is-plain-object@5.0.0: {}
3013
+
3014
+ is-valid-glob@1.0.0: {}
3015
+
3016
+ isexe@2.0.0: {}
3017
+
3018
+ javascript-time-ago@2.6.4:
3019
+ dependencies:
3020
+ relative-time-format: 1.1.12
3021
+
3022
+ jiti@1.21.7: {}
3023
+
3024
+ js-yaml@4.1.1:
3025
+ dependencies:
3026
+ argparse: 2.0.1
3027
+
3028
+ json-buffer@3.0.1: {}
3029
+
3030
+ json-parse-even-better-errors@3.0.2: {}
3031
+
3032
+ json-schema-traverse@0.4.1: {}
3033
+
3034
+ json-stable-stringify-without-jsonify@1.0.1: {}
3035
+
3036
+ keyv@4.5.4:
3037
+ dependencies:
3038
+ json-buffer: 3.0.1
3039
+
3040
+ levn@0.4.1:
3041
+ dependencies:
3042
+ prelude-ls: 1.2.1
3043
+ type-check: 0.4.0
3044
+
3045
+ lilconfig@3.1.3: {}
3046
+
3047
+ lines-and-columns@1.2.4: {}
3048
+
3049
+ locate-path@6.0.0:
3050
+ dependencies:
3051
+ p-locate: 5.0.0
3052
+
3053
+ lodash.merge@4.6.2: {}
3054
+
3055
+ lodash@4.17.23: {}
3056
+
3057
+ magic-string@0.30.21:
3058
+ dependencies:
3059
+ '@jridgewell/sourcemap-codec': 1.5.5
3060
+
3061
+ memorystream@0.3.1: {}
3062
+
3063
+ merge2@1.4.1: {}
3064
+
3065
+ micromatch@4.0.8:
3066
+ dependencies:
3067
+ braces: 3.0.3
3068
+ picomatch: 2.3.1
3069
+
3070
+ mini-svg-data-uri@1.4.4: {}
3071
+
3072
+ minimatch@3.1.5:
3073
+ dependencies:
3074
+ brace-expansion: 1.1.12
3075
+
3076
+ minimatch@5.1.9:
3077
+ dependencies:
3078
+ brace-expansion: 2.0.2
3079
+
3080
+ minimatch@9.0.9:
3081
+ dependencies:
3082
+ brace-expansion: 2.0.2
3083
+
3084
+ ms@2.1.3: {}
3085
+
3086
+ muggle-string@0.4.1: {}
3087
+
3088
+ mz@2.7.0:
3089
+ dependencies:
3090
+ any-promise: 1.3.0
3091
+ object-assign: 4.1.1
3092
+ thenify-all: 1.6.0
3093
+
3094
+ nanoid@3.3.11: {}
3095
+
3096
+ natural-compare@1.4.0: {}
3097
+
3098
+ node-addon-api@7.1.1:
3099
+ optional: true
3100
+
3101
+ node-releases@2.0.36: {}
3102
+
3103
+ normalize-path@3.0.0: {}
3104
+
3105
+ npm-normalize-package-bin@3.0.1: {}
3106
+
3107
+ npm-run-all2@6.2.6:
3108
+ dependencies:
3109
+ ansi-styles: 6.2.3
3110
+ cross-spawn: 7.0.6
3111
+ memorystream: 0.3.1
3112
+ minimatch: 9.0.9
3113
+ pidtree: 0.6.0
3114
+ read-package-json-fast: 3.0.2
3115
+ shell-quote: 1.8.3
3116
+ which: 3.0.1
3117
+
3118
+ nth-check@2.1.1:
3119
+ dependencies:
3120
+ boolbase: 1.0.0
3121
+
3122
+ object-assign@4.1.1: {}
3123
+
3124
+ object-hash@3.0.0: {}
3125
+
3126
+ once@1.4.0:
3127
+ dependencies:
3128
+ wrappy: 1.0.2
3129
+
3130
+ optionator@0.9.4:
3131
+ dependencies:
3132
+ deep-is: 0.1.4
3133
+ fast-levenshtein: 2.0.6
3134
+ levn: 0.4.1
3135
+ prelude-ls: 1.2.1
3136
+ type-check: 0.4.0
3137
+ word-wrap: 1.2.5
3138
+
3139
+ p-limit@3.1.0:
3140
+ dependencies:
3141
+ yocto-queue: 0.1.0
3142
+
3143
+ p-locate@5.0.0:
3144
+ dependencies:
3145
+ p-limit: 3.1.0
3146
+
3147
+ packrup@0.1.2: {}
3148
+
3149
+ parent-module@1.0.1:
3150
+ dependencies:
3151
+ callsites: 3.1.0
3152
+
3153
+ parse-srcset@1.0.2: {}
3154
+
3155
+ path-browserify@1.0.1: {}
3156
+
3157
+ path-exists@4.0.0: {}
3158
+
3159
+ path-is-absolute@1.0.1: {}
3160
+
3161
+ path-key@3.1.1: {}
3162
+
3163
+ path-parse@1.0.7: {}
3164
+
3165
+ path-type@4.0.0: {}
3166
+
3167
+ picocolors@1.1.1: {}
3168
+
3169
+ picomatch@2.3.1: {}
3170
+
3171
+ picomatch@4.0.3: {}
3172
+
3173
+ pidtree@0.6.0: {}
3174
+
3175
+ pify@2.3.0: {}
3176
+
3177
+ pinia@2.3.1(typescript@5.4.5)(vue@3.5.29(typescript@5.4.5)):
3178
+ dependencies:
3179
+ '@vue/devtools-api': 6.6.4
3180
+ vue: 3.5.29(typescript@5.4.5)
3181
+ vue-demi: 0.14.10(vue@3.5.29(typescript@5.4.5))
3182
+ optionalDependencies:
3183
+ typescript: 5.4.5
3184
+ transitivePeerDependencies:
3185
+ - '@vue/composition-api'
3186
+
3187
+ pirates@4.0.7: {}
3188
+
3189
+ portfinder@1.0.38:
3190
+ dependencies:
3191
+ async: 3.2.6
3192
+ debug: 4.4.3
3193
+ transitivePeerDependencies:
3194
+ - supports-color
3195
+
3196
+ postcss-import@15.1.0(postcss@8.5.8):
3197
+ dependencies:
3198
+ postcss: 8.5.8
3199
+ postcss-value-parser: 4.2.0
3200
+ read-cache: 1.0.0
3201
+ resolve: 1.22.11
3202
+
3203
+ postcss-js@4.1.0(postcss@8.5.8):
3204
+ dependencies:
3205
+ camelcase-css: 2.0.1
3206
+ postcss: 8.5.8
3207
+
3208
+ postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.8):
3209
+ dependencies:
3210
+ lilconfig: 3.1.3
3211
+ optionalDependencies:
3212
+ jiti: 1.21.7
3213
+ postcss: 8.5.8
3214
+
3215
+ postcss-nested@6.2.0(postcss@8.5.8):
3216
+ dependencies:
3217
+ postcss: 8.5.8
3218
+ postcss-selector-parser: 6.1.2
3219
+
3220
+ postcss-selector-parser@6.0.10:
3221
+ dependencies:
3222
+ cssesc: 3.0.0
3223
+ util-deprecate: 1.0.2
3224
+
3225
+ postcss-selector-parser@6.1.2:
3226
+ dependencies:
3227
+ cssesc: 3.0.0
3228
+ util-deprecate: 1.0.2
3229
+
3230
+ postcss-value-parser@4.2.0: {}
3231
+
3232
+ postcss@8.5.8:
3233
+ dependencies:
3234
+ nanoid: 3.3.11
3235
+ picocolors: 1.1.1
3236
+ source-map-js: 1.2.1
3237
+
3238
+ prelude-ls@1.2.1: {}
3239
+
3240
+ punycode@2.3.1: {}
3241
+
3242
+ queue-microtask@1.2.3: {}
3243
+
3244
+ read-cache@1.0.0:
3245
+ dependencies:
3246
+ pify: 2.3.0
3247
+
3248
+ read-package-json-fast@3.0.2:
3249
+ dependencies:
3250
+ json-parse-even-better-errors: 3.0.2
3251
+ npm-normalize-package-bin: 3.0.1
3252
+
3253
+ readdirp@3.6.0:
3254
+ dependencies:
3255
+ picomatch: 2.3.1
3256
+
3257
+ readdirp@4.1.2: {}
3258
+
3259
+ relative-time-format@1.1.12: {}
3260
+
3261
+ resolve-from@4.0.0: {}
3262
+
3263
+ resolve@1.22.11:
3264
+ dependencies:
3265
+ is-core-module: 2.16.1
3266
+ path-parse: 1.0.7
3267
+ supports-preserve-symlinks-flag: 1.0.0
3268
+
3269
+ reusify@1.1.0: {}
3270
+
3271
+ rimraf@3.0.2:
3272
+ dependencies:
3273
+ glob: 7.2.3
3274
+
3275
+ rollup@4.59.0:
3276
+ dependencies:
3277
+ '@types/estree': 1.0.8
3278
+ optionalDependencies:
3279
+ '@rollup/rollup-android-arm-eabi': 4.59.0
3280
+ '@rollup/rollup-android-arm64': 4.59.0
3281
+ '@rollup/rollup-darwin-arm64': 4.59.0
3282
+ '@rollup/rollup-darwin-x64': 4.59.0
3283
+ '@rollup/rollup-freebsd-arm64': 4.59.0
3284
+ '@rollup/rollup-freebsd-x64': 4.59.0
3285
+ '@rollup/rollup-linux-arm-gnueabihf': 4.59.0
3286
+ '@rollup/rollup-linux-arm-musleabihf': 4.59.0
3287
+ '@rollup/rollup-linux-arm64-gnu': 4.59.0
3288
+ '@rollup/rollup-linux-arm64-musl': 4.59.0
3289
+ '@rollup/rollup-linux-loong64-gnu': 4.59.0
3290
+ '@rollup/rollup-linux-loong64-musl': 4.59.0
3291
+ '@rollup/rollup-linux-ppc64-gnu': 4.59.0
3292
+ '@rollup/rollup-linux-ppc64-musl': 4.59.0
3293
+ '@rollup/rollup-linux-riscv64-gnu': 4.59.0
3294
+ '@rollup/rollup-linux-riscv64-musl': 4.59.0
3295
+ '@rollup/rollup-linux-s390x-gnu': 4.59.0
3296
+ '@rollup/rollup-linux-x64-gnu': 4.59.0
3297
+ '@rollup/rollup-linux-x64-musl': 4.59.0
3298
+ '@rollup/rollup-openbsd-x64': 4.59.0
3299
+ '@rollup/rollup-openharmony-arm64': 4.59.0
3300
+ '@rollup/rollup-win32-arm64-msvc': 4.59.0
3301
+ '@rollup/rollup-win32-ia32-msvc': 4.59.0
3302
+ '@rollup/rollup-win32-x64-gnu': 4.59.0
3303
+ '@rollup/rollup-win32-x64-msvc': 4.59.0
3304
+ fsevents: 2.3.3
3305
+
3306
+ run-parallel@1.2.0:
3307
+ dependencies:
3308
+ queue-microtask: 1.2.3
3309
+
3310
+ sanitize-html@2.17.1:
3311
+ dependencies:
3312
+ deepmerge: 4.3.1
3313
+ escape-string-regexp: 4.0.0
3314
+ htmlparser2: 8.0.2
3315
+ is-plain-object: 5.0.0
3316
+ parse-srcset: 1.0.2
3317
+ postcss: 8.5.8
3318
+
3319
+ sass@1.97.3:
3320
+ dependencies:
3321
+ chokidar: 4.0.3
3322
+ immutable: 5.1.5
3323
+ source-map-js: 1.2.1
3324
+ optionalDependencies:
3325
+ '@parcel/watcher': 2.5.6
3326
+
3327
+ select@1.1.2: {}
3328
+
3329
+ semver@7.7.4: {}
3330
+
3331
+ shebang-command@2.0.0:
3332
+ dependencies:
3333
+ shebang-regex: 3.0.0
3334
+
3335
+ shebang-regex@3.0.0: {}
3336
+
3337
+ shell-quote@1.8.3: {}
3338
+
3339
+ slash@3.0.0: {}
3340
+
3341
+ source-map-js@1.2.1: {}
3342
+
3343
+ strip-ansi@6.0.1:
3344
+ dependencies:
3345
+ ansi-regex: 5.0.1
3346
+
3347
+ strip-json-comments@3.1.1: {}
3348
+
3349
+ sucrase@3.35.1:
3350
+ dependencies:
3351
+ '@jridgewell/gen-mapping': 0.3.13
3352
+ commander: 4.1.1
3353
+ lines-and-columns: 1.2.4
3354
+ mz: 2.7.0
3355
+ pirates: 4.0.7
3356
+ tinyglobby: 0.2.15
3357
+ ts-interface-checker: 0.1.13
3358
+
3359
+ supports-color@7.2.0:
3360
+ dependencies:
3361
+ has-flag: 4.0.0
3362
+
3363
+ supports-preserve-symlinks-flag@1.0.0: {}
3364
+
3365
+ tailwindcss@3.4.19:
3366
+ dependencies:
3367
+ '@alloc/quick-lru': 5.2.0
3368
+ arg: 5.0.2
3369
+ chokidar: 3.6.0
3370
+ didyoumean: 1.2.2
3371
+ dlv: 1.1.3
3372
+ fast-glob: 3.3.3
3373
+ glob-parent: 6.0.2
3374
+ is-glob: 4.0.3
3375
+ jiti: 1.21.7
3376
+ lilconfig: 3.1.3
3377
+ micromatch: 4.0.8
3378
+ normalize-path: 3.0.0
3379
+ object-hash: 3.0.0
3380
+ picocolors: 1.1.1
3381
+ postcss: 8.5.8
3382
+ postcss-import: 15.1.0(postcss@8.5.8)
3383
+ postcss-js: 4.1.0(postcss@8.5.8)
3384
+ postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.8)
3385
+ postcss-nested: 6.2.0(postcss@8.5.8)
3386
+ postcss-selector-parser: 6.1.2
3387
+ resolve: 1.22.11
3388
+ sucrase: 3.35.1
3389
+ transitivePeerDependencies:
3390
+ - tsx
3391
+ - yaml
3392
+
3393
+ text-table@0.2.0: {}
3394
+
3395
+ thenify-all@1.6.0:
3396
+ dependencies:
3397
+ thenify: 3.3.1
3398
+
3399
+ thenify@3.3.1:
3400
+ dependencies:
3401
+ any-promise: 1.3.0
3402
+
3403
+ tiny-emitter@2.1.0: {}
3404
+
3405
+ tinyglobby@0.2.15:
3406
+ dependencies:
3407
+ fdir: 6.5.0(picomatch@4.0.3)
3408
+ picomatch: 4.0.3
3409
+
3410
+ to-regex-range@5.0.1:
3411
+ dependencies:
3412
+ is-number: 7.0.0
3413
+
3414
+ ts-api-utils@1.4.3(typescript@5.4.5):
3415
+ dependencies:
3416
+ typescript: 5.4.5
3417
+
3418
+ ts-interface-checker@0.1.13: {}
3419
+
3420
+ type-check@0.4.0:
3421
+ dependencies:
3422
+ prelude-ls: 1.2.1
3423
+
3424
+ type-fest@0.20.2: {}
3425
+
3426
+ typescript@5.4.5: {}
3427
+
3428
+ undici-types@6.21.0: {}
3429
+
3430
+ unhead@1.11.20:
3431
+ dependencies:
3432
+ '@unhead/dom': 1.11.20
3433
+ '@unhead/schema': 1.11.20
3434
+ '@unhead/shared': 1.11.20
3435
+ hookable: 5.5.3
3436
+
3437
+ update-browserslist-db@1.2.3(browserslist@4.28.1):
3438
+ dependencies:
3439
+ browserslist: 4.28.1
3440
+ escalade: 3.2.0
3441
+ picocolors: 1.1.1
3442
+
3443
+ uri-js@4.4.1:
3444
+ dependencies:
3445
+ punycode: 2.3.1
3446
+
3447
+ util-deprecate@1.0.2: {}
3448
+
3449
+ vite@5.4.21(@types/node@20.19.37)(sass@1.97.3):
3450
+ dependencies:
3451
+ esbuild: 0.21.5
3452
+ postcss: 8.5.8
3453
+ rollup: 4.59.0
3454
+ optionalDependencies:
3455
+ '@types/node': 20.19.37
3456
+ fsevents: 2.3.3
3457
+ sass: 1.97.3
3458
+
3459
+ vscode-uri@3.1.0: {}
3460
+
3461
+ vue-demi@0.14.10(vue@3.5.29(typescript@5.4.5)):
3462
+ dependencies:
3463
+ vue: 3.5.29(typescript@5.4.5)
3464
+
3465
+ vue-diff@1.2.4(vue@3.5.29(typescript@5.4.5)):
3466
+ dependencies:
3467
+ '@vueuse/core': 8.9.4(vue@3.5.29(typescript@5.4.5))
3468
+ diff-match-patch: 1.0.5
3469
+ highlight.js: 11.11.1
3470
+ transitivePeerDependencies:
3471
+ - '@vue/composition-api'
3472
+ - vue
3473
+
3474
+ vue-eslint-parser@9.4.3(eslint@8.57.1):
3475
+ dependencies:
3476
+ debug: 4.4.3
3477
+ eslint: 8.57.1
3478
+ eslint-scope: 7.2.2
3479
+ eslint-visitor-keys: 3.4.3
3480
+ espree: 9.6.1
3481
+ esquery: 1.7.0
3482
+ lodash: 4.17.23
3483
+ semver: 7.7.4
3484
+ transitivePeerDependencies:
3485
+ - supports-color
3486
+
3487
+ vue-i18n-extract@2.0.7:
3488
+ dependencies:
3489
+ cac: 6.7.14
3490
+ dot-object: 2.1.5
3491
+ glob: 8.1.0
3492
+ is-valid-glob: 1.0.0
3493
+ js-yaml: 4.1.1
3494
+
3495
+ vue-i18n@10.0.8(vue@3.5.29(typescript@5.4.5)):
3496
+ dependencies:
3497
+ '@intlify/core-base': 10.0.8
3498
+ '@intlify/shared': 10.0.8
3499
+ '@vue/devtools-api': 6.6.4
3500
+ vue: 3.5.29(typescript@5.4.5)
3501
+
3502
+ vue-router@4.6.4(vue@3.5.29(typescript@5.4.5)):
3503
+ dependencies:
3504
+ '@vue/devtools-api': 6.6.4
3505
+ vue: 3.5.29(typescript@5.4.5)
3506
+
3507
+ vue-slider-component@4.1.0-beta.7: {}
3508
+
3509
+ vue-tsc@2.2.12(typescript@5.4.5):
3510
+ dependencies:
3511
+ '@volar/typescript': 2.4.15
3512
+ '@vue/language-core': 2.2.12(typescript@5.4.5)
3513
+ typescript: 5.4.5
3514
+
3515
+ vue3-json-viewer@2.4.1(vue@3.5.29(typescript@5.4.5)):
3516
+ dependencies:
3517
+ clipboard: 2.0.11
3518
+ vue: 3.5.29(typescript@5.4.5)
3519
+
3520
+ vue@3.5.29(typescript@5.4.5):
3521
+ dependencies:
3522
+ '@vue/compiler-dom': 3.5.29
3523
+ '@vue/compiler-sfc': 3.5.29
3524
+ '@vue/runtime-dom': 3.5.29
3525
+ '@vue/server-renderer': 3.5.29(vue@3.5.29(typescript@5.4.5))
3526
+ '@vue/shared': 3.5.29
3527
+ optionalDependencies:
3528
+ typescript: 5.4.5
3529
+
3530
+ which@2.0.2:
3531
+ dependencies:
3532
+ isexe: 2.0.0
3533
+
3534
+ which@3.0.1:
3535
+ dependencies:
3536
+ isexe: 2.0.0
3537
+
3538
+ word-wrap@1.2.5: {}
3539
+
3540
+ wrappy@1.0.2: {}
3541
+
3542
+ xml-name-validator@4.0.0: {}
3543
+
3544
+ yocto-queue@0.1.0: {}
3545
+
3546
+ zhead@2.2.4: {}