entari-plugin-hyw 4.0.0rc5__py3-none-any.whl

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.

Potentially problematic release.


This version of entari-plugin-hyw might be problematic. Click here for more details.

Files changed (99) hide show
  1. entari_plugin_hyw/__init__.py +532 -0
  2. entari_plugin_hyw/assets/card-dist/index.html +387 -0
  3. entari_plugin_hyw/assets/card-dist/logos/anthropic.svg +1 -0
  4. entari_plugin_hyw/assets/card-dist/logos/cerebras.svg +9 -0
  5. entari_plugin_hyw/assets/card-dist/logos/deepseek.png +0 -0
  6. entari_plugin_hyw/assets/card-dist/logos/gemini.svg +1 -0
  7. entari_plugin_hyw/assets/card-dist/logos/google.svg +1 -0
  8. entari_plugin_hyw/assets/card-dist/logos/grok.png +0 -0
  9. entari_plugin_hyw/assets/card-dist/logos/huggingface.png +0 -0
  10. entari_plugin_hyw/assets/card-dist/logos/microsoft.svg +15 -0
  11. entari_plugin_hyw/assets/card-dist/logos/minimax.png +0 -0
  12. entari_plugin_hyw/assets/card-dist/logos/mistral.png +0 -0
  13. entari_plugin_hyw/assets/card-dist/logos/nvida.png +0 -0
  14. entari_plugin_hyw/assets/card-dist/logos/openai.svg +1 -0
  15. entari_plugin_hyw/assets/card-dist/logos/openrouter.png +0 -0
  16. entari_plugin_hyw/assets/card-dist/logos/perplexity.svg +24 -0
  17. entari_plugin_hyw/assets/card-dist/logos/qwen.png +0 -0
  18. entari_plugin_hyw/assets/card-dist/logos/xai.png +0 -0
  19. entari_plugin_hyw/assets/card-dist/logos/xiaomi.png +0 -0
  20. entari_plugin_hyw/assets/card-dist/logos/zai.png +0 -0
  21. entari_plugin_hyw/assets/card-dist/vite.svg +1 -0
  22. entari_plugin_hyw/assets/icon/anthropic.svg +1 -0
  23. entari_plugin_hyw/assets/icon/cerebras.svg +9 -0
  24. entari_plugin_hyw/assets/icon/deepseek.png +0 -0
  25. entari_plugin_hyw/assets/icon/gemini.svg +1 -0
  26. entari_plugin_hyw/assets/icon/google.svg +1 -0
  27. entari_plugin_hyw/assets/icon/grok.png +0 -0
  28. entari_plugin_hyw/assets/icon/huggingface.png +0 -0
  29. entari_plugin_hyw/assets/icon/microsoft.svg +15 -0
  30. entari_plugin_hyw/assets/icon/minimax.png +0 -0
  31. entari_plugin_hyw/assets/icon/mistral.png +0 -0
  32. entari_plugin_hyw/assets/icon/nvida.png +0 -0
  33. entari_plugin_hyw/assets/icon/openai.svg +1 -0
  34. entari_plugin_hyw/assets/icon/openrouter.png +0 -0
  35. entari_plugin_hyw/assets/icon/perplexity.svg +24 -0
  36. entari_plugin_hyw/assets/icon/qwen.png +0 -0
  37. entari_plugin_hyw/assets/icon/xai.png +0 -0
  38. entari_plugin_hyw/assets/icon/xiaomi.png +0 -0
  39. entari_plugin_hyw/assets/icon/zai.png +0 -0
  40. entari_plugin_hyw/browser/__init__.py +10 -0
  41. entari_plugin_hyw/browser/engines/base.py +13 -0
  42. entari_plugin_hyw/browser/engines/bing.py +95 -0
  43. entari_plugin_hyw/browser/engines/searxng.py +137 -0
  44. entari_plugin_hyw/browser/landing.html +172 -0
  45. entari_plugin_hyw/browser/manager.py +153 -0
  46. entari_plugin_hyw/browser/service.py +275 -0
  47. entari_plugin_hyw/card-ui/.gitignore +24 -0
  48. entari_plugin_hyw/card-ui/README.md +5 -0
  49. entari_plugin_hyw/card-ui/index.html +16 -0
  50. entari_plugin_hyw/card-ui/package-lock.json +2342 -0
  51. entari_plugin_hyw/card-ui/package.json +31 -0
  52. entari_plugin_hyw/card-ui/public/logos/anthropic.svg +1 -0
  53. entari_plugin_hyw/card-ui/public/logos/cerebras.svg +9 -0
  54. entari_plugin_hyw/card-ui/public/logos/deepseek.png +0 -0
  55. entari_plugin_hyw/card-ui/public/logos/gemini.svg +1 -0
  56. entari_plugin_hyw/card-ui/public/logos/google.svg +1 -0
  57. entari_plugin_hyw/card-ui/public/logos/grok.png +0 -0
  58. entari_plugin_hyw/card-ui/public/logos/huggingface.png +0 -0
  59. entari_plugin_hyw/card-ui/public/logos/microsoft.svg +15 -0
  60. entari_plugin_hyw/card-ui/public/logos/minimax.png +0 -0
  61. entari_plugin_hyw/card-ui/public/logos/mistral.png +0 -0
  62. entari_plugin_hyw/card-ui/public/logos/nvida.png +0 -0
  63. entari_plugin_hyw/card-ui/public/logos/openai.svg +1 -0
  64. entari_plugin_hyw/card-ui/public/logos/openrouter.png +0 -0
  65. entari_plugin_hyw/card-ui/public/logos/perplexity.svg +24 -0
  66. entari_plugin_hyw/card-ui/public/logos/qwen.png +0 -0
  67. entari_plugin_hyw/card-ui/public/logos/xai.png +0 -0
  68. entari_plugin_hyw/card-ui/public/logos/xiaomi.png +0 -0
  69. entari_plugin_hyw/card-ui/public/logos/zai.png +0 -0
  70. entari_plugin_hyw/card-ui/public/vite.svg +1 -0
  71. entari_plugin_hyw/card-ui/src/App.vue +756 -0
  72. entari_plugin_hyw/card-ui/src/assets/vue.svg +1 -0
  73. entari_plugin_hyw/card-ui/src/components/HelloWorld.vue +41 -0
  74. entari_plugin_hyw/card-ui/src/components/MarkdownContent.vue +382 -0
  75. entari_plugin_hyw/card-ui/src/components/SectionCard.vue +41 -0
  76. entari_plugin_hyw/card-ui/src/components/StageCard.vue +240 -0
  77. entari_plugin_hyw/card-ui/src/main.ts +5 -0
  78. entari_plugin_hyw/card-ui/src/style.css +29 -0
  79. entari_plugin_hyw/card-ui/src/test_regex.js +103 -0
  80. entari_plugin_hyw/card-ui/src/types.ts +61 -0
  81. entari_plugin_hyw/card-ui/tsconfig.app.json +16 -0
  82. entari_plugin_hyw/card-ui/tsconfig.json +7 -0
  83. entari_plugin_hyw/card-ui/tsconfig.node.json +26 -0
  84. entari_plugin_hyw/card-ui/vite.config.ts +16 -0
  85. entari_plugin_hyw/definitions.py +130 -0
  86. entari_plugin_hyw/history.py +248 -0
  87. entari_plugin_hyw/image_cache.py +274 -0
  88. entari_plugin_hyw/misc.py +135 -0
  89. entari_plugin_hyw/modular_pipeline.py +351 -0
  90. entari_plugin_hyw/render_vue.py +401 -0
  91. entari_plugin_hyw/search.py +116 -0
  92. entari_plugin_hyw/stage_base.py +88 -0
  93. entari_plugin_hyw/stage_instruct.py +328 -0
  94. entari_plugin_hyw/stage_instruct_review.py +92 -0
  95. entari_plugin_hyw/stage_summary.py +164 -0
  96. entari_plugin_hyw-4.0.0rc5.dist-info/METADATA +116 -0
  97. entari_plugin_hyw-4.0.0rc5.dist-info/RECORD +99 -0
  98. entari_plugin_hyw-4.0.0rc5.dist-info/WHEEL +5 -0
  99. entari_plugin_hyw-4.0.0rc5.dist-info/top_level.txt +1 -0
@@ -0,0 +1,2342 @@
1
+ {
2
+ "name": "card-ui",
3
+ "version": "0.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "card-ui",
9
+ "version": "0.0.0",
10
+ "dependencies": {
11
+ "@iconify/vue": "^5.0.0",
12
+ "highlight.js": "^11.11.1",
13
+ "katex": "^0.16.27",
14
+ "marked": "^17.0.1",
15
+ "vue": "^3.5.24"
16
+ },
17
+ "devDependencies": {
18
+ "@tailwindcss/typography": "^0.5.19",
19
+ "@tailwindcss/vite": "^4.1.18",
20
+ "@types/node": "^24.10.1",
21
+ "@vitejs/plugin-vue": "^6.0.1",
22
+ "@vue/tsconfig": "^0.8.1",
23
+ "daisyui": "^5.5.14",
24
+ "tailwindcss": "^4.1.18",
25
+ "typescript": "~5.9.3",
26
+ "vite": "^7.2.4",
27
+ "vite-plugin-singlefile": "^2.3.0",
28
+ "vue-tsc": "^3.1.4"
29
+ }
30
+ },
31
+ "node_modules/@babel/helper-string-parser": {
32
+ "version": "7.27.1",
33
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
34
+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
35
+ "license": "MIT",
36
+ "engines": {
37
+ "node": ">=6.9.0"
38
+ }
39
+ },
40
+ "node_modules/@babel/helper-validator-identifier": {
41
+ "version": "7.28.5",
42
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
43
+ "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
44
+ "license": "MIT",
45
+ "engines": {
46
+ "node": ">=6.9.0"
47
+ }
48
+ },
49
+ "node_modules/@babel/parser": {
50
+ "version": "7.28.5",
51
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz",
52
+ "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==",
53
+ "license": "MIT",
54
+ "dependencies": {
55
+ "@babel/types": "^7.28.5"
56
+ },
57
+ "bin": {
58
+ "parser": "bin/babel-parser.js"
59
+ },
60
+ "engines": {
61
+ "node": ">=6.0.0"
62
+ }
63
+ },
64
+ "node_modules/@babel/types": {
65
+ "version": "7.28.5",
66
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz",
67
+ "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==",
68
+ "license": "MIT",
69
+ "dependencies": {
70
+ "@babel/helper-string-parser": "^7.27.1",
71
+ "@babel/helper-validator-identifier": "^7.28.5"
72
+ },
73
+ "engines": {
74
+ "node": ">=6.9.0"
75
+ }
76
+ },
77
+ "node_modules/@esbuild/aix-ppc64": {
78
+ "version": "0.27.2",
79
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.2.tgz",
80
+ "integrity": "sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==",
81
+ "cpu": [
82
+ "ppc64"
83
+ ],
84
+ "dev": true,
85
+ "license": "MIT",
86
+ "optional": true,
87
+ "os": [
88
+ "aix"
89
+ ],
90
+ "engines": {
91
+ "node": ">=18"
92
+ }
93
+ },
94
+ "node_modules/@esbuild/android-arm": {
95
+ "version": "0.27.2",
96
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.2.tgz",
97
+ "integrity": "sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==",
98
+ "cpu": [
99
+ "arm"
100
+ ],
101
+ "dev": true,
102
+ "license": "MIT",
103
+ "optional": true,
104
+ "os": [
105
+ "android"
106
+ ],
107
+ "engines": {
108
+ "node": ">=18"
109
+ }
110
+ },
111
+ "node_modules/@esbuild/android-arm64": {
112
+ "version": "0.27.2",
113
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.2.tgz",
114
+ "integrity": "sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==",
115
+ "cpu": [
116
+ "arm64"
117
+ ],
118
+ "dev": true,
119
+ "license": "MIT",
120
+ "optional": true,
121
+ "os": [
122
+ "android"
123
+ ],
124
+ "engines": {
125
+ "node": ">=18"
126
+ }
127
+ },
128
+ "node_modules/@esbuild/android-x64": {
129
+ "version": "0.27.2",
130
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.2.tgz",
131
+ "integrity": "sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==",
132
+ "cpu": [
133
+ "x64"
134
+ ],
135
+ "dev": true,
136
+ "license": "MIT",
137
+ "optional": true,
138
+ "os": [
139
+ "android"
140
+ ],
141
+ "engines": {
142
+ "node": ">=18"
143
+ }
144
+ },
145
+ "node_modules/@esbuild/darwin-arm64": {
146
+ "version": "0.27.2",
147
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.2.tgz",
148
+ "integrity": "sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==",
149
+ "cpu": [
150
+ "arm64"
151
+ ],
152
+ "dev": true,
153
+ "license": "MIT",
154
+ "optional": true,
155
+ "os": [
156
+ "darwin"
157
+ ],
158
+ "engines": {
159
+ "node": ">=18"
160
+ }
161
+ },
162
+ "node_modules/@esbuild/darwin-x64": {
163
+ "version": "0.27.2",
164
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.2.tgz",
165
+ "integrity": "sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==",
166
+ "cpu": [
167
+ "x64"
168
+ ],
169
+ "dev": true,
170
+ "license": "MIT",
171
+ "optional": true,
172
+ "os": [
173
+ "darwin"
174
+ ],
175
+ "engines": {
176
+ "node": ">=18"
177
+ }
178
+ },
179
+ "node_modules/@esbuild/freebsd-arm64": {
180
+ "version": "0.27.2",
181
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.2.tgz",
182
+ "integrity": "sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==",
183
+ "cpu": [
184
+ "arm64"
185
+ ],
186
+ "dev": true,
187
+ "license": "MIT",
188
+ "optional": true,
189
+ "os": [
190
+ "freebsd"
191
+ ],
192
+ "engines": {
193
+ "node": ">=18"
194
+ }
195
+ },
196
+ "node_modules/@esbuild/freebsd-x64": {
197
+ "version": "0.27.2",
198
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.2.tgz",
199
+ "integrity": "sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==",
200
+ "cpu": [
201
+ "x64"
202
+ ],
203
+ "dev": true,
204
+ "license": "MIT",
205
+ "optional": true,
206
+ "os": [
207
+ "freebsd"
208
+ ],
209
+ "engines": {
210
+ "node": ">=18"
211
+ }
212
+ },
213
+ "node_modules/@esbuild/linux-arm": {
214
+ "version": "0.27.2",
215
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.2.tgz",
216
+ "integrity": "sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==",
217
+ "cpu": [
218
+ "arm"
219
+ ],
220
+ "dev": true,
221
+ "license": "MIT",
222
+ "optional": true,
223
+ "os": [
224
+ "linux"
225
+ ],
226
+ "engines": {
227
+ "node": ">=18"
228
+ }
229
+ },
230
+ "node_modules/@esbuild/linux-arm64": {
231
+ "version": "0.27.2",
232
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.2.tgz",
233
+ "integrity": "sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==",
234
+ "cpu": [
235
+ "arm64"
236
+ ],
237
+ "dev": true,
238
+ "license": "MIT",
239
+ "optional": true,
240
+ "os": [
241
+ "linux"
242
+ ],
243
+ "engines": {
244
+ "node": ">=18"
245
+ }
246
+ },
247
+ "node_modules/@esbuild/linux-ia32": {
248
+ "version": "0.27.2",
249
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.2.tgz",
250
+ "integrity": "sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==",
251
+ "cpu": [
252
+ "ia32"
253
+ ],
254
+ "dev": true,
255
+ "license": "MIT",
256
+ "optional": true,
257
+ "os": [
258
+ "linux"
259
+ ],
260
+ "engines": {
261
+ "node": ">=18"
262
+ }
263
+ },
264
+ "node_modules/@esbuild/linux-loong64": {
265
+ "version": "0.27.2",
266
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.2.tgz",
267
+ "integrity": "sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==",
268
+ "cpu": [
269
+ "loong64"
270
+ ],
271
+ "dev": true,
272
+ "license": "MIT",
273
+ "optional": true,
274
+ "os": [
275
+ "linux"
276
+ ],
277
+ "engines": {
278
+ "node": ">=18"
279
+ }
280
+ },
281
+ "node_modules/@esbuild/linux-mips64el": {
282
+ "version": "0.27.2",
283
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.2.tgz",
284
+ "integrity": "sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==",
285
+ "cpu": [
286
+ "mips64el"
287
+ ],
288
+ "dev": true,
289
+ "license": "MIT",
290
+ "optional": true,
291
+ "os": [
292
+ "linux"
293
+ ],
294
+ "engines": {
295
+ "node": ">=18"
296
+ }
297
+ },
298
+ "node_modules/@esbuild/linux-ppc64": {
299
+ "version": "0.27.2",
300
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.2.tgz",
301
+ "integrity": "sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==",
302
+ "cpu": [
303
+ "ppc64"
304
+ ],
305
+ "dev": true,
306
+ "license": "MIT",
307
+ "optional": true,
308
+ "os": [
309
+ "linux"
310
+ ],
311
+ "engines": {
312
+ "node": ">=18"
313
+ }
314
+ },
315
+ "node_modules/@esbuild/linux-riscv64": {
316
+ "version": "0.27.2",
317
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.2.tgz",
318
+ "integrity": "sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==",
319
+ "cpu": [
320
+ "riscv64"
321
+ ],
322
+ "dev": true,
323
+ "license": "MIT",
324
+ "optional": true,
325
+ "os": [
326
+ "linux"
327
+ ],
328
+ "engines": {
329
+ "node": ">=18"
330
+ }
331
+ },
332
+ "node_modules/@esbuild/linux-s390x": {
333
+ "version": "0.27.2",
334
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.2.tgz",
335
+ "integrity": "sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==",
336
+ "cpu": [
337
+ "s390x"
338
+ ],
339
+ "dev": true,
340
+ "license": "MIT",
341
+ "optional": true,
342
+ "os": [
343
+ "linux"
344
+ ],
345
+ "engines": {
346
+ "node": ">=18"
347
+ }
348
+ },
349
+ "node_modules/@esbuild/linux-x64": {
350
+ "version": "0.27.2",
351
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.2.tgz",
352
+ "integrity": "sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==",
353
+ "cpu": [
354
+ "x64"
355
+ ],
356
+ "dev": true,
357
+ "license": "MIT",
358
+ "optional": true,
359
+ "os": [
360
+ "linux"
361
+ ],
362
+ "engines": {
363
+ "node": ">=18"
364
+ }
365
+ },
366
+ "node_modules/@esbuild/netbsd-arm64": {
367
+ "version": "0.27.2",
368
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.2.tgz",
369
+ "integrity": "sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==",
370
+ "cpu": [
371
+ "arm64"
372
+ ],
373
+ "dev": true,
374
+ "license": "MIT",
375
+ "optional": true,
376
+ "os": [
377
+ "netbsd"
378
+ ],
379
+ "engines": {
380
+ "node": ">=18"
381
+ }
382
+ },
383
+ "node_modules/@esbuild/netbsd-x64": {
384
+ "version": "0.27.2",
385
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.2.tgz",
386
+ "integrity": "sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==",
387
+ "cpu": [
388
+ "x64"
389
+ ],
390
+ "dev": true,
391
+ "license": "MIT",
392
+ "optional": true,
393
+ "os": [
394
+ "netbsd"
395
+ ],
396
+ "engines": {
397
+ "node": ">=18"
398
+ }
399
+ },
400
+ "node_modules/@esbuild/openbsd-arm64": {
401
+ "version": "0.27.2",
402
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.2.tgz",
403
+ "integrity": "sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==",
404
+ "cpu": [
405
+ "arm64"
406
+ ],
407
+ "dev": true,
408
+ "license": "MIT",
409
+ "optional": true,
410
+ "os": [
411
+ "openbsd"
412
+ ],
413
+ "engines": {
414
+ "node": ">=18"
415
+ }
416
+ },
417
+ "node_modules/@esbuild/openbsd-x64": {
418
+ "version": "0.27.2",
419
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.2.tgz",
420
+ "integrity": "sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==",
421
+ "cpu": [
422
+ "x64"
423
+ ],
424
+ "dev": true,
425
+ "license": "MIT",
426
+ "optional": true,
427
+ "os": [
428
+ "openbsd"
429
+ ],
430
+ "engines": {
431
+ "node": ">=18"
432
+ }
433
+ },
434
+ "node_modules/@esbuild/openharmony-arm64": {
435
+ "version": "0.27.2",
436
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.2.tgz",
437
+ "integrity": "sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==",
438
+ "cpu": [
439
+ "arm64"
440
+ ],
441
+ "dev": true,
442
+ "license": "MIT",
443
+ "optional": true,
444
+ "os": [
445
+ "openharmony"
446
+ ],
447
+ "engines": {
448
+ "node": ">=18"
449
+ }
450
+ },
451
+ "node_modules/@esbuild/sunos-x64": {
452
+ "version": "0.27.2",
453
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.2.tgz",
454
+ "integrity": "sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==",
455
+ "cpu": [
456
+ "x64"
457
+ ],
458
+ "dev": true,
459
+ "license": "MIT",
460
+ "optional": true,
461
+ "os": [
462
+ "sunos"
463
+ ],
464
+ "engines": {
465
+ "node": ">=18"
466
+ }
467
+ },
468
+ "node_modules/@esbuild/win32-arm64": {
469
+ "version": "0.27.2",
470
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.2.tgz",
471
+ "integrity": "sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==",
472
+ "cpu": [
473
+ "arm64"
474
+ ],
475
+ "dev": true,
476
+ "license": "MIT",
477
+ "optional": true,
478
+ "os": [
479
+ "win32"
480
+ ],
481
+ "engines": {
482
+ "node": ">=18"
483
+ }
484
+ },
485
+ "node_modules/@esbuild/win32-ia32": {
486
+ "version": "0.27.2",
487
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.2.tgz",
488
+ "integrity": "sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==",
489
+ "cpu": [
490
+ "ia32"
491
+ ],
492
+ "dev": true,
493
+ "license": "MIT",
494
+ "optional": true,
495
+ "os": [
496
+ "win32"
497
+ ],
498
+ "engines": {
499
+ "node": ">=18"
500
+ }
501
+ },
502
+ "node_modules/@esbuild/win32-x64": {
503
+ "version": "0.27.2",
504
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.2.tgz",
505
+ "integrity": "sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==",
506
+ "cpu": [
507
+ "x64"
508
+ ],
509
+ "dev": true,
510
+ "license": "MIT",
511
+ "optional": true,
512
+ "os": [
513
+ "win32"
514
+ ],
515
+ "engines": {
516
+ "node": ">=18"
517
+ }
518
+ },
519
+ "node_modules/@iconify/types": {
520
+ "version": "2.0.0",
521
+ "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz",
522
+ "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==",
523
+ "license": "MIT"
524
+ },
525
+ "node_modules/@iconify/vue": {
526
+ "version": "5.0.0",
527
+ "resolved": "https://registry.npmjs.org/@iconify/vue/-/vue-5.0.0.tgz",
528
+ "integrity": "sha512-C+KuEWIF5nSBrobFJhT//JS87OZ++QDORB6f2q2Wm6fl2mueSTpFBeBsveK0KW9hWiZ4mNiPjsh6Zs4jjdROSg==",
529
+ "license": "MIT",
530
+ "dependencies": {
531
+ "@iconify/types": "^2.0.0"
532
+ },
533
+ "funding": {
534
+ "url": "https://github.com/sponsors/cyberalien"
535
+ },
536
+ "peerDependencies": {
537
+ "vue": ">=3"
538
+ }
539
+ },
540
+ "node_modules/@jridgewell/gen-mapping": {
541
+ "version": "0.3.13",
542
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
543
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
544
+ "dev": true,
545
+ "license": "MIT",
546
+ "dependencies": {
547
+ "@jridgewell/sourcemap-codec": "^1.5.0",
548
+ "@jridgewell/trace-mapping": "^0.3.24"
549
+ }
550
+ },
551
+ "node_modules/@jridgewell/remapping": {
552
+ "version": "2.3.5",
553
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
554
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
555
+ "dev": true,
556
+ "license": "MIT",
557
+ "dependencies": {
558
+ "@jridgewell/gen-mapping": "^0.3.5",
559
+ "@jridgewell/trace-mapping": "^0.3.24"
560
+ }
561
+ },
562
+ "node_modules/@jridgewell/resolve-uri": {
563
+ "version": "3.1.2",
564
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
565
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
566
+ "dev": true,
567
+ "license": "MIT",
568
+ "engines": {
569
+ "node": ">=6.0.0"
570
+ }
571
+ },
572
+ "node_modules/@jridgewell/sourcemap-codec": {
573
+ "version": "1.5.5",
574
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
575
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
576
+ "license": "MIT"
577
+ },
578
+ "node_modules/@jridgewell/trace-mapping": {
579
+ "version": "0.3.31",
580
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
581
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
582
+ "dev": true,
583
+ "license": "MIT",
584
+ "dependencies": {
585
+ "@jridgewell/resolve-uri": "^3.1.0",
586
+ "@jridgewell/sourcemap-codec": "^1.4.14"
587
+ }
588
+ },
589
+ "node_modules/@rolldown/pluginutils": {
590
+ "version": "1.0.0-beta.53",
591
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.53.tgz",
592
+ "integrity": "sha512-vENRlFU4YbrwVqNDZ7fLvy+JR1CRkyr01jhSiDpE1u6py3OMzQfztQU2jxykW3ALNxO4kSlqIDeYyD0Y9RcQeQ==",
593
+ "dev": true,
594
+ "license": "MIT"
595
+ },
596
+ "node_modules/@rollup/rollup-android-arm-eabi": {
597
+ "version": "4.55.1",
598
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.55.1.tgz",
599
+ "integrity": "sha512-9R0DM/ykwfGIlNu6+2U09ga0WXeZ9MRC2Ter8jnz8415VbuIykVuc6bhdrbORFZANDmTDvq26mJrEVTl8TdnDg==",
600
+ "cpu": [
601
+ "arm"
602
+ ],
603
+ "dev": true,
604
+ "license": "MIT",
605
+ "optional": true,
606
+ "os": [
607
+ "android"
608
+ ]
609
+ },
610
+ "node_modules/@rollup/rollup-android-arm64": {
611
+ "version": "4.55.1",
612
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.55.1.tgz",
613
+ "integrity": "sha512-eFZCb1YUqhTysgW3sj/55du5cG57S7UTNtdMjCW7LwVcj3dTTcowCsC8p7uBdzKsZYa8J7IDE8lhMI+HX1vQvg==",
614
+ "cpu": [
615
+ "arm64"
616
+ ],
617
+ "dev": true,
618
+ "license": "MIT",
619
+ "optional": true,
620
+ "os": [
621
+ "android"
622
+ ]
623
+ },
624
+ "node_modules/@rollup/rollup-darwin-arm64": {
625
+ "version": "4.55.1",
626
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.55.1.tgz",
627
+ "integrity": "sha512-p3grE2PHcQm2e8PSGZdzIhCKbMCw/xi9XvMPErPhwO17vxtvCN5FEA2mSLgmKlCjHGMQTP6phuQTYWUnKewwGg==",
628
+ "cpu": [
629
+ "arm64"
630
+ ],
631
+ "dev": true,
632
+ "license": "MIT",
633
+ "optional": true,
634
+ "os": [
635
+ "darwin"
636
+ ]
637
+ },
638
+ "node_modules/@rollup/rollup-darwin-x64": {
639
+ "version": "4.55.1",
640
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.55.1.tgz",
641
+ "integrity": "sha512-rDUjG25C9qoTm+e02Esi+aqTKSBYwVTaoS1wxcN47/Luqef57Vgp96xNANwt5npq9GDxsH7kXxNkJVEsWEOEaQ==",
642
+ "cpu": [
643
+ "x64"
644
+ ],
645
+ "dev": true,
646
+ "license": "MIT",
647
+ "optional": true,
648
+ "os": [
649
+ "darwin"
650
+ ]
651
+ },
652
+ "node_modules/@rollup/rollup-freebsd-arm64": {
653
+ "version": "4.55.1",
654
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.55.1.tgz",
655
+ "integrity": "sha512-+JiU7Jbp5cdxekIgdte0jfcu5oqw4GCKr6i3PJTlXTCU5H5Fvtkpbs4XJHRmWNXF+hKmn4v7ogI5OQPaupJgOg==",
656
+ "cpu": [
657
+ "arm64"
658
+ ],
659
+ "dev": true,
660
+ "license": "MIT",
661
+ "optional": true,
662
+ "os": [
663
+ "freebsd"
664
+ ]
665
+ },
666
+ "node_modules/@rollup/rollup-freebsd-x64": {
667
+ "version": "4.55.1",
668
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.55.1.tgz",
669
+ "integrity": "sha512-V5xC1tOVWtLLmr3YUk2f6EJK4qksksOYiz/TCsFHu/R+woubcLWdC9nZQmwjOAbmExBIVKsm1/wKmEy4z4u4Bw==",
670
+ "cpu": [
671
+ "x64"
672
+ ],
673
+ "dev": true,
674
+ "license": "MIT",
675
+ "optional": true,
676
+ "os": [
677
+ "freebsd"
678
+ ]
679
+ },
680
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
681
+ "version": "4.55.1",
682
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.55.1.tgz",
683
+ "integrity": "sha512-Rn3n+FUk2J5VWx+ywrG/HGPTD9jXNbicRtTM11e/uorplArnXZYsVifnPPqNNP5BsO3roI4n8332ukpY/zN7rQ==",
684
+ "cpu": [
685
+ "arm"
686
+ ],
687
+ "dev": true,
688
+ "license": "MIT",
689
+ "optional": true,
690
+ "os": [
691
+ "linux"
692
+ ]
693
+ },
694
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
695
+ "version": "4.55.1",
696
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.55.1.tgz",
697
+ "integrity": "sha512-grPNWydeKtc1aEdrJDWk4opD7nFtQbMmV7769hiAaYyUKCT1faPRm2av8CX1YJsZ4TLAZcg9gTR1KvEzoLjXkg==",
698
+ "cpu": [
699
+ "arm"
700
+ ],
701
+ "dev": true,
702
+ "license": "MIT",
703
+ "optional": true,
704
+ "os": [
705
+ "linux"
706
+ ]
707
+ },
708
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
709
+ "version": "4.55.1",
710
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.55.1.tgz",
711
+ "integrity": "sha512-a59mwd1k6x8tXKcUxSyISiquLwB5pX+fJW9TkWU46lCqD/GRDe9uDN31jrMmVP3feI3mhAdvcCClhV8V5MhJFQ==",
712
+ "cpu": [
713
+ "arm64"
714
+ ],
715
+ "dev": true,
716
+ "license": "MIT",
717
+ "optional": true,
718
+ "os": [
719
+ "linux"
720
+ ]
721
+ },
722
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
723
+ "version": "4.55.1",
724
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.55.1.tgz",
725
+ "integrity": "sha512-puS1MEgWX5GsHSoiAsF0TYrpomdvkaXm0CofIMG5uVkP6IBV+ZO9xhC5YEN49nsgYo1DuuMquF9+7EDBVYu4uA==",
726
+ "cpu": [
727
+ "arm64"
728
+ ],
729
+ "dev": true,
730
+ "license": "MIT",
731
+ "optional": true,
732
+ "os": [
733
+ "linux"
734
+ ]
735
+ },
736
+ "node_modules/@rollup/rollup-linux-loong64-gnu": {
737
+ "version": "4.55.1",
738
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.55.1.tgz",
739
+ "integrity": "sha512-r3Wv40in+lTsULSb6nnoudVbARdOwb2u5fpeoOAZjFLznp6tDU8kd+GTHmJoqZ9lt6/Sys33KdIHUaQihFcu7g==",
740
+ "cpu": [
741
+ "loong64"
742
+ ],
743
+ "dev": true,
744
+ "license": "MIT",
745
+ "optional": true,
746
+ "os": [
747
+ "linux"
748
+ ]
749
+ },
750
+ "node_modules/@rollup/rollup-linux-loong64-musl": {
751
+ "version": "4.55.1",
752
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.55.1.tgz",
753
+ "integrity": "sha512-MR8c0+UxAlB22Fq4R+aQSPBayvYa3+9DrwG/i1TKQXFYEaoW3B5b/rkSRIypcZDdWjWnpcvxbNaAJDcSbJU3Lw==",
754
+ "cpu": [
755
+ "loong64"
756
+ ],
757
+ "dev": true,
758
+ "license": "MIT",
759
+ "optional": true,
760
+ "os": [
761
+ "linux"
762
+ ]
763
+ },
764
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
765
+ "version": "4.55.1",
766
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.55.1.tgz",
767
+ "integrity": "sha512-3KhoECe1BRlSYpMTeVrD4sh2Pw2xgt4jzNSZIIPLFEsnQn9gAnZagW9+VqDqAHgm1Xc77LzJOo2LdigS5qZ+gw==",
768
+ "cpu": [
769
+ "ppc64"
770
+ ],
771
+ "dev": true,
772
+ "license": "MIT",
773
+ "optional": true,
774
+ "os": [
775
+ "linux"
776
+ ]
777
+ },
778
+ "node_modules/@rollup/rollup-linux-ppc64-musl": {
779
+ "version": "4.55.1",
780
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.55.1.tgz",
781
+ "integrity": "sha512-ziR1OuZx0vdYZZ30vueNZTg73alF59DicYrPViG0NEgDVN8/Jl87zkAPu4u6VjZST2llgEUjaiNl9JM6HH1Vdw==",
782
+ "cpu": [
783
+ "ppc64"
784
+ ],
785
+ "dev": true,
786
+ "license": "MIT",
787
+ "optional": true,
788
+ "os": [
789
+ "linux"
790
+ ]
791
+ },
792
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
793
+ "version": "4.55.1",
794
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.55.1.tgz",
795
+ "integrity": "sha512-uW0Y12ih2XJRERZ4jAfKamTyIHVMPQnTZcQjme2HMVDAHY4amf5u414OqNYC+x+LzRdRcnIG1YodLrrtA8xsxw==",
796
+ "cpu": [
797
+ "riscv64"
798
+ ],
799
+ "dev": true,
800
+ "license": "MIT",
801
+ "optional": true,
802
+ "os": [
803
+ "linux"
804
+ ]
805
+ },
806
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
807
+ "version": "4.55.1",
808
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.55.1.tgz",
809
+ "integrity": "sha512-u9yZ0jUkOED1BFrqu3BwMQoixvGHGZ+JhJNkNKY/hyoEgOwlqKb62qu+7UjbPSHYjiVy8kKJHvXKv5coH4wDeg==",
810
+ "cpu": [
811
+ "riscv64"
812
+ ],
813
+ "dev": true,
814
+ "license": "MIT",
815
+ "optional": true,
816
+ "os": [
817
+ "linux"
818
+ ]
819
+ },
820
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
821
+ "version": "4.55.1",
822
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.55.1.tgz",
823
+ "integrity": "sha512-/0PenBCmqM4ZUd0190j7J0UsQ/1nsi735iPRakO8iPciE7BQ495Y6msPzaOmvx0/pn+eJVVlZrNrSh4WSYLxNg==",
824
+ "cpu": [
825
+ "s390x"
826
+ ],
827
+ "dev": true,
828
+ "license": "MIT",
829
+ "optional": true,
830
+ "os": [
831
+ "linux"
832
+ ]
833
+ },
834
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
835
+ "version": "4.55.1",
836
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.55.1.tgz",
837
+ "integrity": "sha512-a8G4wiQxQG2BAvo+gU6XrReRRqj+pLS2NGXKm8io19goR+K8lw269eTrPkSdDTALwMmJp4th2Uh0D8J9bEV1vg==",
838
+ "cpu": [
839
+ "x64"
840
+ ],
841
+ "dev": true,
842
+ "license": "MIT",
843
+ "optional": true,
844
+ "os": [
845
+ "linux"
846
+ ]
847
+ },
848
+ "node_modules/@rollup/rollup-linux-x64-musl": {
849
+ "version": "4.55.1",
850
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.55.1.tgz",
851
+ "integrity": "sha512-bD+zjpFrMpP/hqkfEcnjXWHMw5BIghGisOKPj+2NaNDuVT+8Ds4mPf3XcPHuat1tz89WRL+1wbcxKY3WSbiT7w==",
852
+ "cpu": [
853
+ "x64"
854
+ ],
855
+ "dev": true,
856
+ "license": "MIT",
857
+ "optional": true,
858
+ "os": [
859
+ "linux"
860
+ ]
861
+ },
862
+ "node_modules/@rollup/rollup-openbsd-x64": {
863
+ "version": "4.55.1",
864
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.55.1.tgz",
865
+ "integrity": "sha512-eLXw0dOiqE4QmvikfQ6yjgkg/xDM+MdU9YJuP4ySTibXU0oAvnEWXt7UDJmD4UkYialMfOGFPJnIHSe/kdzPxg==",
866
+ "cpu": [
867
+ "x64"
868
+ ],
869
+ "dev": true,
870
+ "license": "MIT",
871
+ "optional": true,
872
+ "os": [
873
+ "openbsd"
874
+ ]
875
+ },
876
+ "node_modules/@rollup/rollup-openharmony-arm64": {
877
+ "version": "4.55.1",
878
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.55.1.tgz",
879
+ "integrity": "sha512-xzm44KgEP11te3S2HCSyYf5zIzWmx3n8HDCc7EE59+lTcswEWNpvMLfd9uJvVX8LCg9QWG67Xt75AuHn4vgsXw==",
880
+ "cpu": [
881
+ "arm64"
882
+ ],
883
+ "dev": true,
884
+ "license": "MIT",
885
+ "optional": true,
886
+ "os": [
887
+ "openharmony"
888
+ ]
889
+ },
890
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
891
+ "version": "4.55.1",
892
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.55.1.tgz",
893
+ "integrity": "sha512-yR6Bl3tMC/gBok5cz/Qi0xYnVbIxGx5Fcf/ca0eB6/6JwOY+SRUcJfI0OpeTpPls7f194as62thCt/2BjxYN8g==",
894
+ "cpu": [
895
+ "arm64"
896
+ ],
897
+ "dev": true,
898
+ "license": "MIT",
899
+ "optional": true,
900
+ "os": [
901
+ "win32"
902
+ ]
903
+ },
904
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
905
+ "version": "4.55.1",
906
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.55.1.tgz",
907
+ "integrity": "sha512-3fZBidchE0eY0oFZBnekYCfg+5wAB0mbpCBuofh5mZuzIU/4jIVkbESmd2dOsFNS78b53CYv3OAtwqkZZmU5nA==",
908
+ "cpu": [
909
+ "ia32"
910
+ ],
911
+ "dev": true,
912
+ "license": "MIT",
913
+ "optional": true,
914
+ "os": [
915
+ "win32"
916
+ ]
917
+ },
918
+ "node_modules/@rollup/rollup-win32-x64-gnu": {
919
+ "version": "4.55.1",
920
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.55.1.tgz",
921
+ "integrity": "sha512-xGGY5pXj69IxKb4yv/POoocPy/qmEGhimy/FoTpTSVju3FYXUQQMFCaZZXJVidsmGxRioZAwpThl/4zX41gRKg==",
922
+ "cpu": [
923
+ "x64"
924
+ ],
925
+ "dev": true,
926
+ "license": "MIT",
927
+ "optional": true,
928
+ "os": [
929
+ "win32"
930
+ ]
931
+ },
932
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
933
+ "version": "4.55.1",
934
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.55.1.tgz",
935
+ "integrity": "sha512-SPEpaL6DX4rmcXtnhdrQYgzQ5W2uW3SCJch88lB2zImhJRhIIK44fkUrgIV/Q8yUNfw5oyZ5vkeQsZLhCb06lw==",
936
+ "cpu": [
937
+ "x64"
938
+ ],
939
+ "dev": true,
940
+ "license": "MIT",
941
+ "optional": true,
942
+ "os": [
943
+ "win32"
944
+ ]
945
+ },
946
+ "node_modules/@tailwindcss/node": {
947
+ "version": "4.1.18",
948
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.18.tgz",
949
+ "integrity": "sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==",
950
+ "dev": true,
951
+ "license": "MIT",
952
+ "dependencies": {
953
+ "@jridgewell/remapping": "^2.3.4",
954
+ "enhanced-resolve": "^5.18.3",
955
+ "jiti": "^2.6.1",
956
+ "lightningcss": "1.30.2",
957
+ "magic-string": "^0.30.21",
958
+ "source-map-js": "^1.2.1",
959
+ "tailwindcss": "4.1.18"
960
+ }
961
+ },
962
+ "node_modules/@tailwindcss/oxide": {
963
+ "version": "4.1.18",
964
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.18.tgz",
965
+ "integrity": "sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==",
966
+ "dev": true,
967
+ "license": "MIT",
968
+ "engines": {
969
+ "node": ">= 10"
970
+ },
971
+ "optionalDependencies": {
972
+ "@tailwindcss/oxide-android-arm64": "4.1.18",
973
+ "@tailwindcss/oxide-darwin-arm64": "4.1.18",
974
+ "@tailwindcss/oxide-darwin-x64": "4.1.18",
975
+ "@tailwindcss/oxide-freebsd-x64": "4.1.18",
976
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.18",
977
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.1.18",
978
+ "@tailwindcss/oxide-linux-arm64-musl": "4.1.18",
979
+ "@tailwindcss/oxide-linux-x64-gnu": "4.1.18",
980
+ "@tailwindcss/oxide-linux-x64-musl": "4.1.18",
981
+ "@tailwindcss/oxide-wasm32-wasi": "4.1.18",
982
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.1.18",
983
+ "@tailwindcss/oxide-win32-x64-msvc": "4.1.18"
984
+ }
985
+ },
986
+ "node_modules/@tailwindcss/oxide-android-arm64": {
987
+ "version": "4.1.18",
988
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.18.tgz",
989
+ "integrity": "sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==",
990
+ "cpu": [
991
+ "arm64"
992
+ ],
993
+ "dev": true,
994
+ "license": "MIT",
995
+ "optional": true,
996
+ "os": [
997
+ "android"
998
+ ],
999
+ "engines": {
1000
+ "node": ">= 10"
1001
+ }
1002
+ },
1003
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
1004
+ "version": "4.1.18",
1005
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.18.tgz",
1006
+ "integrity": "sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==",
1007
+ "cpu": [
1008
+ "arm64"
1009
+ ],
1010
+ "dev": true,
1011
+ "license": "MIT",
1012
+ "optional": true,
1013
+ "os": [
1014
+ "darwin"
1015
+ ],
1016
+ "engines": {
1017
+ "node": ">= 10"
1018
+ }
1019
+ },
1020
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
1021
+ "version": "4.1.18",
1022
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.18.tgz",
1023
+ "integrity": "sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==",
1024
+ "cpu": [
1025
+ "x64"
1026
+ ],
1027
+ "dev": true,
1028
+ "license": "MIT",
1029
+ "optional": true,
1030
+ "os": [
1031
+ "darwin"
1032
+ ],
1033
+ "engines": {
1034
+ "node": ">= 10"
1035
+ }
1036
+ },
1037
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
1038
+ "version": "4.1.18",
1039
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.18.tgz",
1040
+ "integrity": "sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==",
1041
+ "cpu": [
1042
+ "x64"
1043
+ ],
1044
+ "dev": true,
1045
+ "license": "MIT",
1046
+ "optional": true,
1047
+ "os": [
1048
+ "freebsd"
1049
+ ],
1050
+ "engines": {
1051
+ "node": ">= 10"
1052
+ }
1053
+ },
1054
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
1055
+ "version": "4.1.18",
1056
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.18.tgz",
1057
+ "integrity": "sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==",
1058
+ "cpu": [
1059
+ "arm"
1060
+ ],
1061
+ "dev": true,
1062
+ "license": "MIT",
1063
+ "optional": true,
1064
+ "os": [
1065
+ "linux"
1066
+ ],
1067
+ "engines": {
1068
+ "node": ">= 10"
1069
+ }
1070
+ },
1071
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
1072
+ "version": "4.1.18",
1073
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.18.tgz",
1074
+ "integrity": "sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==",
1075
+ "cpu": [
1076
+ "arm64"
1077
+ ],
1078
+ "dev": true,
1079
+ "license": "MIT",
1080
+ "optional": true,
1081
+ "os": [
1082
+ "linux"
1083
+ ],
1084
+ "engines": {
1085
+ "node": ">= 10"
1086
+ }
1087
+ },
1088
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
1089
+ "version": "4.1.18",
1090
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.18.tgz",
1091
+ "integrity": "sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==",
1092
+ "cpu": [
1093
+ "arm64"
1094
+ ],
1095
+ "dev": true,
1096
+ "license": "MIT",
1097
+ "optional": true,
1098
+ "os": [
1099
+ "linux"
1100
+ ],
1101
+ "engines": {
1102
+ "node": ">= 10"
1103
+ }
1104
+ },
1105
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
1106
+ "version": "4.1.18",
1107
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.18.tgz",
1108
+ "integrity": "sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==",
1109
+ "cpu": [
1110
+ "x64"
1111
+ ],
1112
+ "dev": true,
1113
+ "license": "MIT",
1114
+ "optional": true,
1115
+ "os": [
1116
+ "linux"
1117
+ ],
1118
+ "engines": {
1119
+ "node": ">= 10"
1120
+ }
1121
+ },
1122
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
1123
+ "version": "4.1.18",
1124
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.18.tgz",
1125
+ "integrity": "sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==",
1126
+ "cpu": [
1127
+ "x64"
1128
+ ],
1129
+ "dev": true,
1130
+ "license": "MIT",
1131
+ "optional": true,
1132
+ "os": [
1133
+ "linux"
1134
+ ],
1135
+ "engines": {
1136
+ "node": ">= 10"
1137
+ }
1138
+ },
1139
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
1140
+ "version": "4.1.18",
1141
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.18.tgz",
1142
+ "integrity": "sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==",
1143
+ "bundleDependencies": [
1144
+ "@napi-rs/wasm-runtime",
1145
+ "@emnapi/core",
1146
+ "@emnapi/runtime",
1147
+ "@tybys/wasm-util",
1148
+ "@emnapi/wasi-threads",
1149
+ "tslib"
1150
+ ],
1151
+ "cpu": [
1152
+ "wasm32"
1153
+ ],
1154
+ "dev": true,
1155
+ "license": "MIT",
1156
+ "optional": true,
1157
+ "dependencies": {
1158
+ "@emnapi/core": "^1.7.1",
1159
+ "@emnapi/runtime": "^1.7.1",
1160
+ "@emnapi/wasi-threads": "^1.1.0",
1161
+ "@napi-rs/wasm-runtime": "^1.1.0",
1162
+ "@tybys/wasm-util": "^0.10.1",
1163
+ "tslib": "^2.4.0"
1164
+ },
1165
+ "engines": {
1166
+ "node": ">=14.0.0"
1167
+ }
1168
+ },
1169
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
1170
+ "version": "4.1.18",
1171
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.18.tgz",
1172
+ "integrity": "sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==",
1173
+ "cpu": [
1174
+ "arm64"
1175
+ ],
1176
+ "dev": true,
1177
+ "license": "MIT",
1178
+ "optional": true,
1179
+ "os": [
1180
+ "win32"
1181
+ ],
1182
+ "engines": {
1183
+ "node": ">= 10"
1184
+ }
1185
+ },
1186
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
1187
+ "version": "4.1.18",
1188
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.18.tgz",
1189
+ "integrity": "sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==",
1190
+ "cpu": [
1191
+ "x64"
1192
+ ],
1193
+ "dev": true,
1194
+ "license": "MIT",
1195
+ "optional": true,
1196
+ "os": [
1197
+ "win32"
1198
+ ],
1199
+ "engines": {
1200
+ "node": ">= 10"
1201
+ }
1202
+ },
1203
+ "node_modules/@tailwindcss/typography": {
1204
+ "version": "0.5.19",
1205
+ "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.19.tgz",
1206
+ "integrity": "sha512-w31dd8HOx3k9vPtcQh5QHP9GwKcgbMp87j58qi6xgiBnFFtKEAgCWnDw4qUT8aHwkCp8bKvb/KGKWWHedP0AAg==",
1207
+ "dev": true,
1208
+ "license": "MIT",
1209
+ "dependencies": {
1210
+ "postcss-selector-parser": "6.0.10"
1211
+ },
1212
+ "peerDependencies": {
1213
+ "tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1"
1214
+ }
1215
+ },
1216
+ "node_modules/@tailwindcss/vite": {
1217
+ "version": "4.1.18",
1218
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.1.18.tgz",
1219
+ "integrity": "sha512-jVA+/UpKL1vRLg6Hkao5jldawNmRo7mQYrZtNHMIVpLfLhDml5nMRUo/8MwoX2vNXvnaXNNMedrMfMugAVX1nA==",
1220
+ "dev": true,
1221
+ "license": "MIT",
1222
+ "dependencies": {
1223
+ "@tailwindcss/node": "4.1.18",
1224
+ "@tailwindcss/oxide": "4.1.18",
1225
+ "tailwindcss": "4.1.18"
1226
+ },
1227
+ "peerDependencies": {
1228
+ "vite": "^5.2.0 || ^6 || ^7"
1229
+ }
1230
+ },
1231
+ "node_modules/@types/estree": {
1232
+ "version": "1.0.8",
1233
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
1234
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
1235
+ "dev": true,
1236
+ "license": "MIT"
1237
+ },
1238
+ "node_modules/@types/node": {
1239
+ "version": "24.10.4",
1240
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.4.tgz",
1241
+ "integrity": "sha512-vnDVpYPMzs4wunl27jHrfmwojOGKya0xyM3sH+UE5iv5uPS6vX7UIoh6m+vQc5LGBq52HBKPIn/zcSZVzeDEZg==",
1242
+ "dev": true,
1243
+ "license": "MIT",
1244
+ "dependencies": {
1245
+ "undici-types": "~7.16.0"
1246
+ }
1247
+ },
1248
+ "node_modules/@vitejs/plugin-vue": {
1249
+ "version": "6.0.3",
1250
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-6.0.3.tgz",
1251
+ "integrity": "sha512-TlGPkLFLVOY3T7fZrwdvKpjprR3s4fxRln0ORDo1VQ7HHyxJwTlrjKU3kpVWTlaAjIEuCTokmjkZnr8Tpc925w==",
1252
+ "dev": true,
1253
+ "license": "MIT",
1254
+ "dependencies": {
1255
+ "@rolldown/pluginutils": "1.0.0-beta.53"
1256
+ },
1257
+ "engines": {
1258
+ "node": "^20.19.0 || >=22.12.0"
1259
+ },
1260
+ "peerDependencies": {
1261
+ "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0",
1262
+ "vue": "^3.2.25"
1263
+ }
1264
+ },
1265
+ "node_modules/@volar/language-core": {
1266
+ "version": "2.4.27",
1267
+ "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.27.tgz",
1268
+ "integrity": "sha512-DjmjBWZ4tJKxfNC1F6HyYERNHPYS7L7OPFyCrestykNdUZMFYzI9WTyvwPcaNaHlrEUwESHYsfEw3isInncZxQ==",
1269
+ "dev": true,
1270
+ "license": "MIT",
1271
+ "dependencies": {
1272
+ "@volar/source-map": "2.4.27"
1273
+ }
1274
+ },
1275
+ "node_modules/@volar/source-map": {
1276
+ "version": "2.4.27",
1277
+ "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-2.4.27.tgz",
1278
+ "integrity": "sha512-ynlcBReMgOZj2i6po+qVswtDUeeBRCTgDurjMGShbm8WYZgJ0PA4RmtebBJ0BCYol1qPv3GQF6jK7C9qoVc7lg==",
1279
+ "dev": true,
1280
+ "license": "MIT"
1281
+ },
1282
+ "node_modules/@volar/typescript": {
1283
+ "version": "2.4.27",
1284
+ "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-2.4.27.tgz",
1285
+ "integrity": "sha512-eWaYCcl/uAPInSK2Lze6IqVWaBu/itVqR5InXcHXFyles4zO++Mglt3oxdgj75BDcv1Knr9Y93nowS8U3wqhxg==",
1286
+ "dev": true,
1287
+ "license": "MIT",
1288
+ "dependencies": {
1289
+ "@volar/language-core": "2.4.27",
1290
+ "path-browserify": "^1.0.1",
1291
+ "vscode-uri": "^3.0.8"
1292
+ }
1293
+ },
1294
+ "node_modules/@vue/compiler-core": {
1295
+ "version": "3.5.26",
1296
+ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.26.tgz",
1297
+ "integrity": "sha512-vXyI5GMfuoBCnv5ucIT7jhHKl55Y477yxP6fc4eUswjP8FG3FFVFd41eNDArR+Uk3QKn2Z85NavjaxLxOC19/w==",
1298
+ "license": "MIT",
1299
+ "dependencies": {
1300
+ "@babel/parser": "^7.28.5",
1301
+ "@vue/shared": "3.5.26",
1302
+ "entities": "^7.0.0",
1303
+ "estree-walker": "^2.0.2",
1304
+ "source-map-js": "^1.2.1"
1305
+ }
1306
+ },
1307
+ "node_modules/@vue/compiler-dom": {
1308
+ "version": "3.5.26",
1309
+ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.26.tgz",
1310
+ "integrity": "sha512-y1Tcd3eXs834QjswshSilCBnKGeQjQXB6PqFn/1nxcQw4pmG42G8lwz+FZPAZAby6gZeHSt/8LMPfZ4Rb+Bd/A==",
1311
+ "license": "MIT",
1312
+ "dependencies": {
1313
+ "@vue/compiler-core": "3.5.26",
1314
+ "@vue/shared": "3.5.26"
1315
+ }
1316
+ },
1317
+ "node_modules/@vue/compiler-sfc": {
1318
+ "version": "3.5.26",
1319
+ "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.26.tgz",
1320
+ "integrity": "sha512-egp69qDTSEZcf4bGOSsprUr4xI73wfrY5oRs6GSgXFTiHrWj4Y3X5Ydtip9QMqiCMCPVwLglB9GBxXtTadJ3mA==",
1321
+ "license": "MIT",
1322
+ "dependencies": {
1323
+ "@babel/parser": "^7.28.5",
1324
+ "@vue/compiler-core": "3.5.26",
1325
+ "@vue/compiler-dom": "3.5.26",
1326
+ "@vue/compiler-ssr": "3.5.26",
1327
+ "@vue/shared": "3.5.26",
1328
+ "estree-walker": "^2.0.2",
1329
+ "magic-string": "^0.30.21",
1330
+ "postcss": "^8.5.6",
1331
+ "source-map-js": "^1.2.1"
1332
+ }
1333
+ },
1334
+ "node_modules/@vue/compiler-ssr": {
1335
+ "version": "3.5.26",
1336
+ "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.26.tgz",
1337
+ "integrity": "sha512-lZT9/Y0nSIRUPVvapFJEVDbEXruZh2IYHMk2zTtEgJSlP5gVOqeWXH54xDKAaFS4rTnDeDBQUYDtxKyoW9FwDw==",
1338
+ "license": "MIT",
1339
+ "dependencies": {
1340
+ "@vue/compiler-dom": "3.5.26",
1341
+ "@vue/shared": "3.5.26"
1342
+ }
1343
+ },
1344
+ "node_modules/@vue/language-core": {
1345
+ "version": "3.2.2",
1346
+ "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-3.2.2.tgz",
1347
+ "integrity": "sha512-5DAuhxsxBN9kbriklh3Q5AMaJhyOCNiQJvCskN9/30XOpdLiqZU9Q+WvjArP17ubdGEyZtBzlIeG5nIjEbNOrQ==",
1348
+ "dev": true,
1349
+ "license": "MIT",
1350
+ "dependencies": {
1351
+ "@volar/language-core": "2.4.27",
1352
+ "@vue/compiler-dom": "^3.5.0",
1353
+ "@vue/shared": "^3.5.0",
1354
+ "alien-signals": "^3.0.0",
1355
+ "muggle-string": "^0.4.1",
1356
+ "path-browserify": "^1.0.1",
1357
+ "picomatch": "^4.0.2"
1358
+ }
1359
+ },
1360
+ "node_modules/@vue/reactivity": {
1361
+ "version": "3.5.26",
1362
+ "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.26.tgz",
1363
+ "integrity": "sha512-9EnYB1/DIiUYYnzlnUBgwU32NNvLp/nhxLXeWRhHUEeWNTn1ECxX8aGO7RTXeX6PPcxe3LLuNBFoJbV4QZ+CFQ==",
1364
+ "license": "MIT",
1365
+ "dependencies": {
1366
+ "@vue/shared": "3.5.26"
1367
+ }
1368
+ },
1369
+ "node_modules/@vue/runtime-core": {
1370
+ "version": "3.5.26",
1371
+ "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.26.tgz",
1372
+ "integrity": "sha512-xJWM9KH1kd201w5DvMDOwDHYhrdPTrAatn56oB/LRG4plEQeZRQLw0Bpwih9KYoqmzaxF0OKSn6swzYi84e1/Q==",
1373
+ "license": "MIT",
1374
+ "dependencies": {
1375
+ "@vue/reactivity": "3.5.26",
1376
+ "@vue/shared": "3.5.26"
1377
+ }
1378
+ },
1379
+ "node_modules/@vue/runtime-dom": {
1380
+ "version": "3.5.26",
1381
+ "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.26.tgz",
1382
+ "integrity": "sha512-XLLd/+4sPC2ZkN/6+V4O4gjJu6kSDbHAChvsyWgm1oGbdSO3efvGYnm25yCjtFm/K7rrSDvSfPDgN1pHgS4VNQ==",
1383
+ "license": "MIT",
1384
+ "dependencies": {
1385
+ "@vue/reactivity": "3.5.26",
1386
+ "@vue/runtime-core": "3.5.26",
1387
+ "@vue/shared": "3.5.26",
1388
+ "csstype": "^3.2.3"
1389
+ }
1390
+ },
1391
+ "node_modules/@vue/server-renderer": {
1392
+ "version": "3.5.26",
1393
+ "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.26.tgz",
1394
+ "integrity": "sha512-TYKLXmrwWKSodyVuO1WAubucd+1XlLg4set0YoV+Hu8Lo79mp/YMwWV5mC5FgtsDxX3qo1ONrxFaTP1OQgy1uA==",
1395
+ "license": "MIT",
1396
+ "dependencies": {
1397
+ "@vue/compiler-ssr": "3.5.26",
1398
+ "@vue/shared": "3.5.26"
1399
+ },
1400
+ "peerDependencies": {
1401
+ "vue": "3.5.26"
1402
+ }
1403
+ },
1404
+ "node_modules/@vue/shared": {
1405
+ "version": "3.5.26",
1406
+ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.26.tgz",
1407
+ "integrity": "sha512-7Z6/y3uFI5PRoKeorTOSXKcDj0MSasfNNltcslbFrPpcw6aXRUALq4IfJlaTRspiWIUOEZbrpM+iQGmCOiWe4A==",
1408
+ "license": "MIT"
1409
+ },
1410
+ "node_modules/@vue/tsconfig": {
1411
+ "version": "0.8.1",
1412
+ "resolved": "https://registry.npmjs.org/@vue/tsconfig/-/tsconfig-0.8.1.tgz",
1413
+ "integrity": "sha512-aK7feIWPXFSUhsCP9PFqPyFOcz4ENkb8hZ2pneL6m2UjCkccvaOhC/5KCKluuBufvp2KzkbdA2W2pk20vLzu3g==",
1414
+ "dev": true,
1415
+ "license": "MIT",
1416
+ "peerDependencies": {
1417
+ "typescript": "5.x",
1418
+ "vue": "^3.4.0"
1419
+ },
1420
+ "peerDependenciesMeta": {
1421
+ "typescript": {
1422
+ "optional": true
1423
+ },
1424
+ "vue": {
1425
+ "optional": true
1426
+ }
1427
+ }
1428
+ },
1429
+ "node_modules/alien-signals": {
1430
+ "version": "3.1.2",
1431
+ "resolved": "https://registry.npmjs.org/alien-signals/-/alien-signals-3.1.2.tgz",
1432
+ "integrity": "sha512-d9dYqZTS90WLiU0I5c6DHj/HcKkF8ZyGN3G5x8wSbslulz70KOxaqCT0hQCo9KOyhVqzqGojvNdJXoTumZOtcw==",
1433
+ "dev": true,
1434
+ "license": "MIT"
1435
+ },
1436
+ "node_modules/braces": {
1437
+ "version": "3.0.3",
1438
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
1439
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
1440
+ "dev": true,
1441
+ "license": "MIT",
1442
+ "dependencies": {
1443
+ "fill-range": "^7.1.1"
1444
+ },
1445
+ "engines": {
1446
+ "node": ">=8"
1447
+ }
1448
+ },
1449
+ "node_modules/commander": {
1450
+ "version": "8.3.0",
1451
+ "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
1452
+ "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
1453
+ "license": "MIT",
1454
+ "engines": {
1455
+ "node": ">= 12"
1456
+ }
1457
+ },
1458
+ "node_modules/cssesc": {
1459
+ "version": "3.0.0",
1460
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
1461
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
1462
+ "dev": true,
1463
+ "license": "MIT",
1464
+ "bin": {
1465
+ "cssesc": "bin/cssesc"
1466
+ },
1467
+ "engines": {
1468
+ "node": ">=4"
1469
+ }
1470
+ },
1471
+ "node_modules/csstype": {
1472
+ "version": "3.2.3",
1473
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
1474
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
1475
+ "license": "MIT"
1476
+ },
1477
+ "node_modules/daisyui": {
1478
+ "version": "5.5.14",
1479
+ "resolved": "https://registry.npmjs.org/daisyui/-/daisyui-5.5.14.tgz",
1480
+ "integrity": "sha512-L47rvw7I7hK68TA97VB8Ee0woHew+/ohR6Lx6Ah/krfISOqcG4My7poNpX5Mo5/ytMxiR40fEaz6njzDi7cuSg==",
1481
+ "dev": true,
1482
+ "license": "MIT",
1483
+ "funding": {
1484
+ "url": "https://github.com/saadeghi/daisyui?sponsor=1"
1485
+ }
1486
+ },
1487
+ "node_modules/detect-libc": {
1488
+ "version": "2.1.2",
1489
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1490
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1491
+ "dev": true,
1492
+ "license": "Apache-2.0",
1493
+ "engines": {
1494
+ "node": ">=8"
1495
+ }
1496
+ },
1497
+ "node_modules/enhanced-resolve": {
1498
+ "version": "5.18.4",
1499
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.4.tgz",
1500
+ "integrity": "sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==",
1501
+ "dev": true,
1502
+ "license": "MIT",
1503
+ "dependencies": {
1504
+ "graceful-fs": "^4.2.4",
1505
+ "tapable": "^2.2.0"
1506
+ },
1507
+ "engines": {
1508
+ "node": ">=10.13.0"
1509
+ }
1510
+ },
1511
+ "node_modules/entities": {
1512
+ "version": "7.0.0",
1513
+ "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.0.tgz",
1514
+ "integrity": "sha512-FDWG5cmEYf2Z00IkYRhbFrwIwvdFKH07uV8dvNy0omp/Qb1xcyCWp2UDtcwJF4QZZvk0sLudP6/hAu42TaqVhQ==",
1515
+ "license": "BSD-2-Clause",
1516
+ "engines": {
1517
+ "node": ">=0.12"
1518
+ },
1519
+ "funding": {
1520
+ "url": "https://github.com/fb55/entities?sponsor=1"
1521
+ }
1522
+ },
1523
+ "node_modules/esbuild": {
1524
+ "version": "0.27.2",
1525
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.2.tgz",
1526
+ "integrity": "sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==",
1527
+ "dev": true,
1528
+ "hasInstallScript": true,
1529
+ "license": "MIT",
1530
+ "bin": {
1531
+ "esbuild": "bin/esbuild"
1532
+ },
1533
+ "engines": {
1534
+ "node": ">=18"
1535
+ },
1536
+ "optionalDependencies": {
1537
+ "@esbuild/aix-ppc64": "0.27.2",
1538
+ "@esbuild/android-arm": "0.27.2",
1539
+ "@esbuild/android-arm64": "0.27.2",
1540
+ "@esbuild/android-x64": "0.27.2",
1541
+ "@esbuild/darwin-arm64": "0.27.2",
1542
+ "@esbuild/darwin-x64": "0.27.2",
1543
+ "@esbuild/freebsd-arm64": "0.27.2",
1544
+ "@esbuild/freebsd-x64": "0.27.2",
1545
+ "@esbuild/linux-arm": "0.27.2",
1546
+ "@esbuild/linux-arm64": "0.27.2",
1547
+ "@esbuild/linux-ia32": "0.27.2",
1548
+ "@esbuild/linux-loong64": "0.27.2",
1549
+ "@esbuild/linux-mips64el": "0.27.2",
1550
+ "@esbuild/linux-ppc64": "0.27.2",
1551
+ "@esbuild/linux-riscv64": "0.27.2",
1552
+ "@esbuild/linux-s390x": "0.27.2",
1553
+ "@esbuild/linux-x64": "0.27.2",
1554
+ "@esbuild/netbsd-arm64": "0.27.2",
1555
+ "@esbuild/netbsd-x64": "0.27.2",
1556
+ "@esbuild/openbsd-arm64": "0.27.2",
1557
+ "@esbuild/openbsd-x64": "0.27.2",
1558
+ "@esbuild/openharmony-arm64": "0.27.2",
1559
+ "@esbuild/sunos-x64": "0.27.2",
1560
+ "@esbuild/win32-arm64": "0.27.2",
1561
+ "@esbuild/win32-ia32": "0.27.2",
1562
+ "@esbuild/win32-x64": "0.27.2"
1563
+ }
1564
+ },
1565
+ "node_modules/estree-walker": {
1566
+ "version": "2.0.2",
1567
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
1568
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
1569
+ "license": "MIT"
1570
+ },
1571
+ "node_modules/fdir": {
1572
+ "version": "6.5.0",
1573
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
1574
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
1575
+ "dev": true,
1576
+ "license": "MIT",
1577
+ "engines": {
1578
+ "node": ">=12.0.0"
1579
+ },
1580
+ "peerDependencies": {
1581
+ "picomatch": "^3 || ^4"
1582
+ },
1583
+ "peerDependenciesMeta": {
1584
+ "picomatch": {
1585
+ "optional": true
1586
+ }
1587
+ }
1588
+ },
1589
+ "node_modules/fill-range": {
1590
+ "version": "7.1.1",
1591
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
1592
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
1593
+ "dev": true,
1594
+ "license": "MIT",
1595
+ "dependencies": {
1596
+ "to-regex-range": "^5.0.1"
1597
+ },
1598
+ "engines": {
1599
+ "node": ">=8"
1600
+ }
1601
+ },
1602
+ "node_modules/fsevents": {
1603
+ "version": "2.3.3",
1604
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1605
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1606
+ "dev": true,
1607
+ "hasInstallScript": true,
1608
+ "license": "MIT",
1609
+ "optional": true,
1610
+ "os": [
1611
+ "darwin"
1612
+ ],
1613
+ "engines": {
1614
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1615
+ }
1616
+ },
1617
+ "node_modules/graceful-fs": {
1618
+ "version": "4.2.11",
1619
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
1620
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
1621
+ "dev": true,
1622
+ "license": "ISC"
1623
+ },
1624
+ "node_modules/highlight.js": {
1625
+ "version": "11.11.1",
1626
+ "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.11.1.tgz",
1627
+ "integrity": "sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==",
1628
+ "license": "BSD-3-Clause",
1629
+ "engines": {
1630
+ "node": ">=12.0.0"
1631
+ }
1632
+ },
1633
+ "node_modules/is-number": {
1634
+ "version": "7.0.0",
1635
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
1636
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
1637
+ "dev": true,
1638
+ "license": "MIT",
1639
+ "engines": {
1640
+ "node": ">=0.12.0"
1641
+ }
1642
+ },
1643
+ "node_modules/jiti": {
1644
+ "version": "2.6.1",
1645
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
1646
+ "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
1647
+ "dev": true,
1648
+ "license": "MIT",
1649
+ "bin": {
1650
+ "jiti": "lib/jiti-cli.mjs"
1651
+ }
1652
+ },
1653
+ "node_modules/katex": {
1654
+ "version": "0.16.27",
1655
+ "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.27.tgz",
1656
+ "integrity": "sha512-aeQoDkuRWSqQN6nSvVCEFvfXdqo1OQiCmmW1kc9xSdjutPv7BGO7pqY9sQRJpMOGrEdfDgF2TfRXe5eUAD2Waw==",
1657
+ "funding": [
1658
+ "https://opencollective.com/katex",
1659
+ "https://github.com/sponsors/katex"
1660
+ ],
1661
+ "license": "MIT",
1662
+ "dependencies": {
1663
+ "commander": "^8.3.0"
1664
+ },
1665
+ "bin": {
1666
+ "katex": "cli.js"
1667
+ }
1668
+ },
1669
+ "node_modules/lightningcss": {
1670
+ "version": "1.30.2",
1671
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.2.tgz",
1672
+ "integrity": "sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==",
1673
+ "dev": true,
1674
+ "license": "MPL-2.0",
1675
+ "dependencies": {
1676
+ "detect-libc": "^2.0.3"
1677
+ },
1678
+ "engines": {
1679
+ "node": ">= 12.0.0"
1680
+ },
1681
+ "funding": {
1682
+ "type": "opencollective",
1683
+ "url": "https://opencollective.com/parcel"
1684
+ },
1685
+ "optionalDependencies": {
1686
+ "lightningcss-android-arm64": "1.30.2",
1687
+ "lightningcss-darwin-arm64": "1.30.2",
1688
+ "lightningcss-darwin-x64": "1.30.2",
1689
+ "lightningcss-freebsd-x64": "1.30.2",
1690
+ "lightningcss-linux-arm-gnueabihf": "1.30.2",
1691
+ "lightningcss-linux-arm64-gnu": "1.30.2",
1692
+ "lightningcss-linux-arm64-musl": "1.30.2",
1693
+ "lightningcss-linux-x64-gnu": "1.30.2",
1694
+ "lightningcss-linux-x64-musl": "1.30.2",
1695
+ "lightningcss-win32-arm64-msvc": "1.30.2",
1696
+ "lightningcss-win32-x64-msvc": "1.30.2"
1697
+ }
1698
+ },
1699
+ "node_modules/lightningcss-android-arm64": {
1700
+ "version": "1.30.2",
1701
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz",
1702
+ "integrity": "sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==",
1703
+ "cpu": [
1704
+ "arm64"
1705
+ ],
1706
+ "dev": true,
1707
+ "license": "MPL-2.0",
1708
+ "optional": true,
1709
+ "os": [
1710
+ "android"
1711
+ ],
1712
+ "engines": {
1713
+ "node": ">= 12.0.0"
1714
+ },
1715
+ "funding": {
1716
+ "type": "opencollective",
1717
+ "url": "https://opencollective.com/parcel"
1718
+ }
1719
+ },
1720
+ "node_modules/lightningcss-darwin-arm64": {
1721
+ "version": "1.30.2",
1722
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz",
1723
+ "integrity": "sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==",
1724
+ "cpu": [
1725
+ "arm64"
1726
+ ],
1727
+ "dev": true,
1728
+ "license": "MPL-2.0",
1729
+ "optional": true,
1730
+ "os": [
1731
+ "darwin"
1732
+ ],
1733
+ "engines": {
1734
+ "node": ">= 12.0.0"
1735
+ },
1736
+ "funding": {
1737
+ "type": "opencollective",
1738
+ "url": "https://opencollective.com/parcel"
1739
+ }
1740
+ },
1741
+ "node_modules/lightningcss-darwin-x64": {
1742
+ "version": "1.30.2",
1743
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz",
1744
+ "integrity": "sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==",
1745
+ "cpu": [
1746
+ "x64"
1747
+ ],
1748
+ "dev": true,
1749
+ "license": "MPL-2.0",
1750
+ "optional": true,
1751
+ "os": [
1752
+ "darwin"
1753
+ ],
1754
+ "engines": {
1755
+ "node": ">= 12.0.0"
1756
+ },
1757
+ "funding": {
1758
+ "type": "opencollective",
1759
+ "url": "https://opencollective.com/parcel"
1760
+ }
1761
+ },
1762
+ "node_modules/lightningcss-freebsd-x64": {
1763
+ "version": "1.30.2",
1764
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz",
1765
+ "integrity": "sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==",
1766
+ "cpu": [
1767
+ "x64"
1768
+ ],
1769
+ "dev": true,
1770
+ "license": "MPL-2.0",
1771
+ "optional": true,
1772
+ "os": [
1773
+ "freebsd"
1774
+ ],
1775
+ "engines": {
1776
+ "node": ">= 12.0.0"
1777
+ },
1778
+ "funding": {
1779
+ "type": "opencollective",
1780
+ "url": "https://opencollective.com/parcel"
1781
+ }
1782
+ },
1783
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
1784
+ "version": "1.30.2",
1785
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz",
1786
+ "integrity": "sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==",
1787
+ "cpu": [
1788
+ "arm"
1789
+ ],
1790
+ "dev": true,
1791
+ "license": "MPL-2.0",
1792
+ "optional": true,
1793
+ "os": [
1794
+ "linux"
1795
+ ],
1796
+ "engines": {
1797
+ "node": ">= 12.0.0"
1798
+ },
1799
+ "funding": {
1800
+ "type": "opencollective",
1801
+ "url": "https://opencollective.com/parcel"
1802
+ }
1803
+ },
1804
+ "node_modules/lightningcss-linux-arm64-gnu": {
1805
+ "version": "1.30.2",
1806
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz",
1807
+ "integrity": "sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==",
1808
+ "cpu": [
1809
+ "arm64"
1810
+ ],
1811
+ "dev": true,
1812
+ "license": "MPL-2.0",
1813
+ "optional": true,
1814
+ "os": [
1815
+ "linux"
1816
+ ],
1817
+ "engines": {
1818
+ "node": ">= 12.0.0"
1819
+ },
1820
+ "funding": {
1821
+ "type": "opencollective",
1822
+ "url": "https://opencollective.com/parcel"
1823
+ }
1824
+ },
1825
+ "node_modules/lightningcss-linux-arm64-musl": {
1826
+ "version": "1.30.2",
1827
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz",
1828
+ "integrity": "sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==",
1829
+ "cpu": [
1830
+ "arm64"
1831
+ ],
1832
+ "dev": true,
1833
+ "license": "MPL-2.0",
1834
+ "optional": true,
1835
+ "os": [
1836
+ "linux"
1837
+ ],
1838
+ "engines": {
1839
+ "node": ">= 12.0.0"
1840
+ },
1841
+ "funding": {
1842
+ "type": "opencollective",
1843
+ "url": "https://opencollective.com/parcel"
1844
+ }
1845
+ },
1846
+ "node_modules/lightningcss-linux-x64-gnu": {
1847
+ "version": "1.30.2",
1848
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz",
1849
+ "integrity": "sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==",
1850
+ "cpu": [
1851
+ "x64"
1852
+ ],
1853
+ "dev": true,
1854
+ "license": "MPL-2.0",
1855
+ "optional": true,
1856
+ "os": [
1857
+ "linux"
1858
+ ],
1859
+ "engines": {
1860
+ "node": ">= 12.0.0"
1861
+ },
1862
+ "funding": {
1863
+ "type": "opencollective",
1864
+ "url": "https://opencollective.com/parcel"
1865
+ }
1866
+ },
1867
+ "node_modules/lightningcss-linux-x64-musl": {
1868
+ "version": "1.30.2",
1869
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz",
1870
+ "integrity": "sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==",
1871
+ "cpu": [
1872
+ "x64"
1873
+ ],
1874
+ "dev": true,
1875
+ "license": "MPL-2.0",
1876
+ "optional": true,
1877
+ "os": [
1878
+ "linux"
1879
+ ],
1880
+ "engines": {
1881
+ "node": ">= 12.0.0"
1882
+ },
1883
+ "funding": {
1884
+ "type": "opencollective",
1885
+ "url": "https://opencollective.com/parcel"
1886
+ }
1887
+ },
1888
+ "node_modules/lightningcss-win32-arm64-msvc": {
1889
+ "version": "1.30.2",
1890
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz",
1891
+ "integrity": "sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==",
1892
+ "cpu": [
1893
+ "arm64"
1894
+ ],
1895
+ "dev": true,
1896
+ "license": "MPL-2.0",
1897
+ "optional": true,
1898
+ "os": [
1899
+ "win32"
1900
+ ],
1901
+ "engines": {
1902
+ "node": ">= 12.0.0"
1903
+ },
1904
+ "funding": {
1905
+ "type": "opencollective",
1906
+ "url": "https://opencollective.com/parcel"
1907
+ }
1908
+ },
1909
+ "node_modules/lightningcss-win32-x64-msvc": {
1910
+ "version": "1.30.2",
1911
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz",
1912
+ "integrity": "sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==",
1913
+ "cpu": [
1914
+ "x64"
1915
+ ],
1916
+ "dev": true,
1917
+ "license": "MPL-2.0",
1918
+ "optional": true,
1919
+ "os": [
1920
+ "win32"
1921
+ ],
1922
+ "engines": {
1923
+ "node": ">= 12.0.0"
1924
+ },
1925
+ "funding": {
1926
+ "type": "opencollective",
1927
+ "url": "https://opencollective.com/parcel"
1928
+ }
1929
+ },
1930
+ "node_modules/magic-string": {
1931
+ "version": "0.30.21",
1932
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
1933
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
1934
+ "license": "MIT",
1935
+ "dependencies": {
1936
+ "@jridgewell/sourcemap-codec": "^1.5.5"
1937
+ }
1938
+ },
1939
+ "node_modules/marked": {
1940
+ "version": "17.0.1",
1941
+ "resolved": "https://registry.npmjs.org/marked/-/marked-17.0.1.tgz",
1942
+ "integrity": "sha512-boeBdiS0ghpWcSwoNm/jJBwdpFaMnZWRzjA6SkUMYb40SVaN1x7mmfGKp0jvexGcx+7y2La5zRZsYFZI6Qpypg==",
1943
+ "license": "MIT",
1944
+ "bin": {
1945
+ "marked": "bin/marked.js"
1946
+ },
1947
+ "engines": {
1948
+ "node": ">= 20"
1949
+ }
1950
+ },
1951
+ "node_modules/micromatch": {
1952
+ "version": "4.0.8",
1953
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
1954
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
1955
+ "dev": true,
1956
+ "license": "MIT",
1957
+ "dependencies": {
1958
+ "braces": "^3.0.3",
1959
+ "picomatch": "^2.3.1"
1960
+ },
1961
+ "engines": {
1962
+ "node": ">=8.6"
1963
+ }
1964
+ },
1965
+ "node_modules/micromatch/node_modules/picomatch": {
1966
+ "version": "2.3.1",
1967
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
1968
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
1969
+ "dev": true,
1970
+ "license": "MIT",
1971
+ "engines": {
1972
+ "node": ">=8.6"
1973
+ },
1974
+ "funding": {
1975
+ "url": "https://github.com/sponsors/jonschlinkert"
1976
+ }
1977
+ },
1978
+ "node_modules/muggle-string": {
1979
+ "version": "0.4.1",
1980
+ "resolved": "https://registry.npmjs.org/muggle-string/-/muggle-string-0.4.1.tgz",
1981
+ "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==",
1982
+ "dev": true,
1983
+ "license": "MIT"
1984
+ },
1985
+ "node_modules/nanoid": {
1986
+ "version": "3.3.11",
1987
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
1988
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
1989
+ "funding": [
1990
+ {
1991
+ "type": "github",
1992
+ "url": "https://github.com/sponsors/ai"
1993
+ }
1994
+ ],
1995
+ "license": "MIT",
1996
+ "bin": {
1997
+ "nanoid": "bin/nanoid.cjs"
1998
+ },
1999
+ "engines": {
2000
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2001
+ }
2002
+ },
2003
+ "node_modules/path-browserify": {
2004
+ "version": "1.0.1",
2005
+ "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz",
2006
+ "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==",
2007
+ "dev": true,
2008
+ "license": "MIT"
2009
+ },
2010
+ "node_modules/picocolors": {
2011
+ "version": "1.1.1",
2012
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2013
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2014
+ "license": "ISC"
2015
+ },
2016
+ "node_modules/picomatch": {
2017
+ "version": "4.0.3",
2018
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
2019
+ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
2020
+ "dev": true,
2021
+ "license": "MIT",
2022
+ "engines": {
2023
+ "node": ">=12"
2024
+ },
2025
+ "funding": {
2026
+ "url": "https://github.com/sponsors/jonschlinkert"
2027
+ }
2028
+ },
2029
+ "node_modules/postcss": {
2030
+ "version": "8.5.6",
2031
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
2032
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
2033
+ "funding": [
2034
+ {
2035
+ "type": "opencollective",
2036
+ "url": "https://opencollective.com/postcss/"
2037
+ },
2038
+ {
2039
+ "type": "tidelift",
2040
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2041
+ },
2042
+ {
2043
+ "type": "github",
2044
+ "url": "https://github.com/sponsors/ai"
2045
+ }
2046
+ ],
2047
+ "license": "MIT",
2048
+ "dependencies": {
2049
+ "nanoid": "^3.3.11",
2050
+ "picocolors": "^1.1.1",
2051
+ "source-map-js": "^1.2.1"
2052
+ },
2053
+ "engines": {
2054
+ "node": "^10 || ^12 || >=14"
2055
+ }
2056
+ },
2057
+ "node_modules/postcss-selector-parser": {
2058
+ "version": "6.0.10",
2059
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz",
2060
+ "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==",
2061
+ "dev": true,
2062
+ "license": "MIT",
2063
+ "dependencies": {
2064
+ "cssesc": "^3.0.0",
2065
+ "util-deprecate": "^1.0.2"
2066
+ },
2067
+ "engines": {
2068
+ "node": ">=4"
2069
+ }
2070
+ },
2071
+ "node_modules/rollup": {
2072
+ "version": "4.55.1",
2073
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.55.1.tgz",
2074
+ "integrity": "sha512-wDv/Ht1BNHB4upNbK74s9usvl7hObDnvVzknxqY/E/O3X6rW1U1rV1aENEfJ54eFZDTNo7zv1f5N4edCluH7+A==",
2075
+ "dev": true,
2076
+ "license": "MIT",
2077
+ "dependencies": {
2078
+ "@types/estree": "1.0.8"
2079
+ },
2080
+ "bin": {
2081
+ "rollup": "dist/bin/rollup"
2082
+ },
2083
+ "engines": {
2084
+ "node": ">=18.0.0",
2085
+ "npm": ">=8.0.0"
2086
+ },
2087
+ "optionalDependencies": {
2088
+ "@rollup/rollup-android-arm-eabi": "4.55.1",
2089
+ "@rollup/rollup-android-arm64": "4.55.1",
2090
+ "@rollup/rollup-darwin-arm64": "4.55.1",
2091
+ "@rollup/rollup-darwin-x64": "4.55.1",
2092
+ "@rollup/rollup-freebsd-arm64": "4.55.1",
2093
+ "@rollup/rollup-freebsd-x64": "4.55.1",
2094
+ "@rollup/rollup-linux-arm-gnueabihf": "4.55.1",
2095
+ "@rollup/rollup-linux-arm-musleabihf": "4.55.1",
2096
+ "@rollup/rollup-linux-arm64-gnu": "4.55.1",
2097
+ "@rollup/rollup-linux-arm64-musl": "4.55.1",
2098
+ "@rollup/rollup-linux-loong64-gnu": "4.55.1",
2099
+ "@rollup/rollup-linux-loong64-musl": "4.55.1",
2100
+ "@rollup/rollup-linux-ppc64-gnu": "4.55.1",
2101
+ "@rollup/rollup-linux-ppc64-musl": "4.55.1",
2102
+ "@rollup/rollup-linux-riscv64-gnu": "4.55.1",
2103
+ "@rollup/rollup-linux-riscv64-musl": "4.55.1",
2104
+ "@rollup/rollup-linux-s390x-gnu": "4.55.1",
2105
+ "@rollup/rollup-linux-x64-gnu": "4.55.1",
2106
+ "@rollup/rollup-linux-x64-musl": "4.55.1",
2107
+ "@rollup/rollup-openbsd-x64": "4.55.1",
2108
+ "@rollup/rollup-openharmony-arm64": "4.55.1",
2109
+ "@rollup/rollup-win32-arm64-msvc": "4.55.1",
2110
+ "@rollup/rollup-win32-ia32-msvc": "4.55.1",
2111
+ "@rollup/rollup-win32-x64-gnu": "4.55.1",
2112
+ "@rollup/rollup-win32-x64-msvc": "4.55.1",
2113
+ "fsevents": "~2.3.2"
2114
+ }
2115
+ },
2116
+ "node_modules/source-map-js": {
2117
+ "version": "1.2.1",
2118
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
2119
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
2120
+ "license": "BSD-3-Clause",
2121
+ "engines": {
2122
+ "node": ">=0.10.0"
2123
+ }
2124
+ },
2125
+ "node_modules/tailwindcss": {
2126
+ "version": "4.1.18",
2127
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.18.tgz",
2128
+ "integrity": "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==",
2129
+ "dev": true,
2130
+ "license": "MIT"
2131
+ },
2132
+ "node_modules/tapable": {
2133
+ "version": "2.3.0",
2134
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz",
2135
+ "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==",
2136
+ "dev": true,
2137
+ "license": "MIT",
2138
+ "engines": {
2139
+ "node": ">=6"
2140
+ },
2141
+ "funding": {
2142
+ "type": "opencollective",
2143
+ "url": "https://opencollective.com/webpack"
2144
+ }
2145
+ },
2146
+ "node_modules/tinyglobby": {
2147
+ "version": "0.2.15",
2148
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
2149
+ "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
2150
+ "dev": true,
2151
+ "license": "MIT",
2152
+ "dependencies": {
2153
+ "fdir": "^6.5.0",
2154
+ "picomatch": "^4.0.3"
2155
+ },
2156
+ "engines": {
2157
+ "node": ">=12.0.0"
2158
+ },
2159
+ "funding": {
2160
+ "url": "https://github.com/sponsors/SuperchupuDev"
2161
+ }
2162
+ },
2163
+ "node_modules/to-regex-range": {
2164
+ "version": "5.0.1",
2165
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
2166
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
2167
+ "dev": true,
2168
+ "license": "MIT",
2169
+ "dependencies": {
2170
+ "is-number": "^7.0.0"
2171
+ },
2172
+ "engines": {
2173
+ "node": ">=8.0"
2174
+ }
2175
+ },
2176
+ "node_modules/typescript": {
2177
+ "version": "5.9.3",
2178
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
2179
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
2180
+ "devOptional": true,
2181
+ "license": "Apache-2.0",
2182
+ "bin": {
2183
+ "tsc": "bin/tsc",
2184
+ "tsserver": "bin/tsserver"
2185
+ },
2186
+ "engines": {
2187
+ "node": ">=14.17"
2188
+ }
2189
+ },
2190
+ "node_modules/undici-types": {
2191
+ "version": "7.16.0",
2192
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz",
2193
+ "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==",
2194
+ "dev": true,
2195
+ "license": "MIT"
2196
+ },
2197
+ "node_modules/util-deprecate": {
2198
+ "version": "1.0.2",
2199
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
2200
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
2201
+ "dev": true,
2202
+ "license": "MIT"
2203
+ },
2204
+ "node_modules/vite": {
2205
+ "version": "7.3.1",
2206
+ "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.1.tgz",
2207
+ "integrity": "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==",
2208
+ "dev": true,
2209
+ "license": "MIT",
2210
+ "dependencies": {
2211
+ "esbuild": "^0.27.0",
2212
+ "fdir": "^6.5.0",
2213
+ "picomatch": "^4.0.3",
2214
+ "postcss": "^8.5.6",
2215
+ "rollup": "^4.43.0",
2216
+ "tinyglobby": "^0.2.15"
2217
+ },
2218
+ "bin": {
2219
+ "vite": "bin/vite.js"
2220
+ },
2221
+ "engines": {
2222
+ "node": "^20.19.0 || >=22.12.0"
2223
+ },
2224
+ "funding": {
2225
+ "url": "https://github.com/vitejs/vite?sponsor=1"
2226
+ },
2227
+ "optionalDependencies": {
2228
+ "fsevents": "~2.3.3"
2229
+ },
2230
+ "peerDependencies": {
2231
+ "@types/node": "^20.19.0 || >=22.12.0",
2232
+ "jiti": ">=1.21.0",
2233
+ "less": "^4.0.0",
2234
+ "lightningcss": "^1.21.0",
2235
+ "sass": "^1.70.0",
2236
+ "sass-embedded": "^1.70.0",
2237
+ "stylus": ">=0.54.8",
2238
+ "sugarss": "^5.0.0",
2239
+ "terser": "^5.16.0",
2240
+ "tsx": "^4.8.1",
2241
+ "yaml": "^2.4.2"
2242
+ },
2243
+ "peerDependenciesMeta": {
2244
+ "@types/node": {
2245
+ "optional": true
2246
+ },
2247
+ "jiti": {
2248
+ "optional": true
2249
+ },
2250
+ "less": {
2251
+ "optional": true
2252
+ },
2253
+ "lightningcss": {
2254
+ "optional": true
2255
+ },
2256
+ "sass": {
2257
+ "optional": true
2258
+ },
2259
+ "sass-embedded": {
2260
+ "optional": true
2261
+ },
2262
+ "stylus": {
2263
+ "optional": true
2264
+ },
2265
+ "sugarss": {
2266
+ "optional": true
2267
+ },
2268
+ "terser": {
2269
+ "optional": true
2270
+ },
2271
+ "tsx": {
2272
+ "optional": true
2273
+ },
2274
+ "yaml": {
2275
+ "optional": true
2276
+ }
2277
+ }
2278
+ },
2279
+ "node_modules/vite-plugin-singlefile": {
2280
+ "version": "2.3.0",
2281
+ "resolved": "https://registry.npmjs.org/vite-plugin-singlefile/-/vite-plugin-singlefile-2.3.0.tgz",
2282
+ "integrity": "sha512-DAcHzYypM0CasNLSz/WG0VdKOCxGHErfrjOoyIPiNxTPTGmO6rRD/te93n1YL/s+miXq66ipF1brMBikf99c6A==",
2283
+ "dev": true,
2284
+ "license": "MIT",
2285
+ "dependencies": {
2286
+ "micromatch": "^4.0.8"
2287
+ },
2288
+ "engines": {
2289
+ "node": ">18.0.0"
2290
+ },
2291
+ "peerDependencies": {
2292
+ "rollup": "^4.44.1",
2293
+ "vite": "^5.4.11 || ^6.0.0 || ^7.0.0"
2294
+ }
2295
+ },
2296
+ "node_modules/vscode-uri": {
2297
+ "version": "3.1.0",
2298
+ "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.1.0.tgz",
2299
+ "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==",
2300
+ "dev": true,
2301
+ "license": "MIT"
2302
+ },
2303
+ "node_modules/vue": {
2304
+ "version": "3.5.26",
2305
+ "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.26.tgz",
2306
+ "integrity": "sha512-SJ/NTccVyAoNUJmkM9KUqPcYlY+u8OVL1X5EW9RIs3ch5H2uERxyyIUI4MRxVCSOiEcupX9xNGde1tL9ZKpimA==",
2307
+ "license": "MIT",
2308
+ "dependencies": {
2309
+ "@vue/compiler-dom": "3.5.26",
2310
+ "@vue/compiler-sfc": "3.5.26",
2311
+ "@vue/runtime-dom": "3.5.26",
2312
+ "@vue/server-renderer": "3.5.26",
2313
+ "@vue/shared": "3.5.26"
2314
+ },
2315
+ "peerDependencies": {
2316
+ "typescript": "*"
2317
+ },
2318
+ "peerDependenciesMeta": {
2319
+ "typescript": {
2320
+ "optional": true
2321
+ }
2322
+ }
2323
+ },
2324
+ "node_modules/vue-tsc": {
2325
+ "version": "3.2.2",
2326
+ "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-3.2.2.tgz",
2327
+ "integrity": "sha512-r9YSia/VgGwmbbfC06hDdAatH634XJ9nVl6Zrnz1iK4ucp8Wu78kawplXnIDa3MSu1XdQQePTHLXYwPDWn+nyQ==",
2328
+ "dev": true,
2329
+ "license": "MIT",
2330
+ "dependencies": {
2331
+ "@volar/typescript": "2.4.27",
2332
+ "@vue/language-core": "3.2.2"
2333
+ },
2334
+ "bin": {
2335
+ "vue-tsc": "bin/vue-tsc.js"
2336
+ },
2337
+ "peerDependencies": {
2338
+ "typescript": ">=5.0.0"
2339
+ }
2340
+ }
2341
+ }
2342
+ }