pywire 0.1.1__py3-none-any.whl → 0.1.3__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.
Files changed (103) hide show
  1. pywire/__init__.py +2 -0
  2. pywire/cli/__init__.py +1 -0
  3. pywire/cli/generators.py +48 -0
  4. pywire/cli/main.py +309 -0
  5. pywire/cli/tui.py +563 -0
  6. pywire/cli/validate.py +26 -0
  7. pywire/client/.prettierignore +8 -0
  8. pywire/client/.prettierrc +7 -0
  9. pywire/client/build.mjs +73 -0
  10. pywire/client/eslint.config.js +46 -0
  11. pywire/client/package.json +39 -0
  12. pywire/client/pnpm-lock.yaml +2971 -0
  13. pywire/client/src/core/app.ts +263 -0
  14. pywire/client/src/core/dom-updater.test.ts +78 -0
  15. pywire/client/src/core/dom-updater.ts +321 -0
  16. pywire/client/src/core/index.ts +5 -0
  17. pywire/client/src/core/transport-manager.test.ts +179 -0
  18. pywire/client/src/core/transport-manager.ts +159 -0
  19. pywire/client/src/core/transports/base.ts +122 -0
  20. pywire/client/src/core/transports/http.ts +142 -0
  21. pywire/client/src/core/transports/index.ts +13 -0
  22. pywire/client/src/core/transports/websocket.ts +97 -0
  23. pywire/client/src/core/transports/webtransport.ts +149 -0
  24. pywire/client/src/dev/dev-app.ts +93 -0
  25. pywire/client/src/dev/error-trace.test.ts +97 -0
  26. pywire/client/src/dev/error-trace.ts +76 -0
  27. pywire/client/src/dev/index.ts +4 -0
  28. pywire/client/src/dev/status-overlay.ts +63 -0
  29. pywire/client/src/events/handler.test.ts +318 -0
  30. pywire/client/src/events/handler.ts +454 -0
  31. pywire/client/src/pywire.core.ts +22 -0
  32. pywire/client/src/pywire.dev.ts +27 -0
  33. pywire/client/tsconfig.json +17 -0
  34. pywire/client/vitest.config.ts +15 -0
  35. pywire/compiler/__init__.py +6 -0
  36. pywire/compiler/ast_nodes.py +304 -0
  37. pywire/compiler/attributes/__init__.py +6 -0
  38. pywire/compiler/attributes/base.py +24 -0
  39. pywire/compiler/attributes/conditional.py +37 -0
  40. pywire/compiler/attributes/events.py +55 -0
  41. pywire/compiler/attributes/form.py +37 -0
  42. pywire/compiler/attributes/loop.py +75 -0
  43. pywire/compiler/attributes/reactive.py +34 -0
  44. pywire/compiler/build.py +28 -0
  45. pywire/compiler/build_artifacts.py +342 -0
  46. pywire/compiler/codegen/__init__.py +5 -0
  47. pywire/compiler/codegen/attributes/__init__.py +6 -0
  48. pywire/compiler/codegen/attributes/base.py +19 -0
  49. pywire/compiler/codegen/attributes/events.py +35 -0
  50. pywire/compiler/codegen/directives/__init__.py +6 -0
  51. pywire/compiler/codegen/directives/base.py +16 -0
  52. pywire/compiler/codegen/directives/path.py +53 -0
  53. pywire/compiler/codegen/generator.py +2341 -0
  54. pywire/compiler/codegen/template.py +2178 -0
  55. pywire/compiler/directives/__init__.py +7 -0
  56. pywire/compiler/directives/base.py +20 -0
  57. pywire/compiler/directives/component.py +33 -0
  58. pywire/compiler/directives/context.py +93 -0
  59. pywire/compiler/directives/layout.py +49 -0
  60. pywire/compiler/directives/no_spa.py +24 -0
  61. pywire/compiler/directives/path.py +71 -0
  62. pywire/compiler/directives/props.py +88 -0
  63. pywire/compiler/exceptions.py +19 -0
  64. pywire/compiler/interpolation/__init__.py +6 -0
  65. pywire/compiler/interpolation/base.py +28 -0
  66. pywire/compiler/interpolation/jinja.py +272 -0
  67. pywire/compiler/parser.py +750 -0
  68. pywire/compiler/paths.py +29 -0
  69. pywire/compiler/preprocessor.py +43 -0
  70. pywire/core/wire.py +119 -0
  71. pywire/py.typed +0 -0
  72. pywire/runtime/__init__.py +7 -0
  73. pywire/runtime/aioquic_server.py +194 -0
  74. pywire/runtime/app.py +901 -0
  75. pywire/runtime/compile_error_page.py +195 -0
  76. pywire/runtime/debug.py +203 -0
  77. pywire/runtime/dev_server.py +433 -0
  78. pywire/runtime/dev_server.py.broken +268 -0
  79. pywire/runtime/error_page.py +64 -0
  80. pywire/runtime/error_renderer.py +23 -0
  81. pywire/runtime/escape.py +23 -0
  82. pywire/runtime/files.py +40 -0
  83. pywire/runtime/helpers.py +97 -0
  84. pywire/runtime/http_transport.py +253 -0
  85. pywire/runtime/loader.py +272 -0
  86. pywire/runtime/logging.py +72 -0
  87. pywire/runtime/page.py +384 -0
  88. pywire/runtime/pydantic_integration.py +52 -0
  89. pywire/runtime/router.py +229 -0
  90. pywire/runtime/server.py +25 -0
  91. pywire/runtime/style_collector.py +31 -0
  92. pywire/runtime/upload_manager.py +76 -0
  93. pywire/runtime/validation.py +449 -0
  94. pywire/runtime/websocket.py +665 -0
  95. pywire/runtime/webtransport_handler.py +195 -0
  96. pywire/static/pywire.core.min.js +3 -0
  97. pywire/static/pywire.dev.min.js +20 -0
  98. {pywire-0.1.1.dist-info → pywire-0.1.3.dist-info}/METADATA +1 -1
  99. pywire-0.1.3.dist-info/RECORD +106 -0
  100. pywire-0.1.1.dist-info/RECORD +0 -9
  101. {pywire-0.1.1.dist-info → pywire-0.1.3.dist-info}/WHEEL +0 -0
  102. {pywire-0.1.1.dist-info → pywire-0.1.3.dist-info}/entry_points.txt +0 -0
  103. {pywire-0.1.1.dist-info → pywire-0.1.3.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,2971 @@
1
+ lockfileVersion: '9.0'
2
+
3
+ settings:
4
+ autoInstallPeers: true
5
+ excludeLinksFromLockfile: false
6
+
7
+ importers:
8
+ .:
9
+ dependencies:
10
+ '@msgpack/msgpack':
11
+ specifier: ^3.1.3
12
+ version: 3.1.3
13
+ morphdom:
14
+ specifier: ^2.7.7
15
+ version: 2.7.7
16
+ devDependencies:
17
+ '@eslint/js':
18
+ specifier: ^9.35.0
19
+ version: 9.39.2
20
+ '@types/morphdom':
21
+ specifier: ^2.3.0
22
+ version: 2.3.0
23
+ '@typescript-eslint/eslint-plugin':
24
+ specifier: ^8.43.0
25
+ version: 8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3)
26
+ '@typescript-eslint/parser':
27
+ specifier: ^8.43.0
28
+ version: 8.54.0(eslint@9.39.2)(typescript@5.9.3)
29
+ '@vitest/coverage-v8':
30
+ specifier: ^4.0.17
31
+ version: 4.0.17(vitest@4.0.17(@types/node@25.0.9)(happy-dom@20.3.6))
32
+ esbuild:
33
+ specifier: ^0.20.0
34
+ version: 0.20.2
35
+ eslint:
36
+ specifier: ^9.35.0
37
+ version: 9.39.2
38
+ globals:
39
+ specifier: ^16.4.0
40
+ version: 16.5.0
41
+ happy-dom:
42
+ specifier: ^20.3.6
43
+ version: 20.3.6
44
+ prettier:
45
+ specifier: ^3.6.2
46
+ version: 3.8.1
47
+ typescript:
48
+ specifier: ^5.3.0
49
+ version: 5.9.3
50
+ vitest:
51
+ specifier: ^4.0.17
52
+ version: 4.0.17(@types/node@25.0.9)(happy-dom@20.3.6)
53
+
54
+ packages:
55
+ '@babel/helper-string-parser@7.27.1':
56
+ resolution:
57
+ {
58
+ integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==,
59
+ }
60
+ engines: { node: '>=6.9.0' }
61
+
62
+ '@babel/helper-validator-identifier@7.28.5':
63
+ resolution:
64
+ {
65
+ integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==,
66
+ }
67
+ engines: { node: '>=6.9.0' }
68
+
69
+ '@babel/parser@7.28.6':
70
+ resolution:
71
+ {
72
+ integrity: sha512-TeR9zWR18BvbfPmGbLampPMW+uW1NZnJlRuuHso8i87QZNq2JRF9i6RgxRqtEq+wQGsS19NNTWr2duhnE49mfQ==,
73
+ }
74
+ engines: { node: '>=6.0.0' }
75
+ hasBin: true
76
+
77
+ '@babel/types@7.28.6':
78
+ resolution:
79
+ {
80
+ integrity: sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==,
81
+ }
82
+ engines: { node: '>=6.9.0' }
83
+
84
+ '@bcoe/v8-coverage@1.0.2':
85
+ resolution:
86
+ {
87
+ integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==,
88
+ }
89
+ engines: { node: '>=18' }
90
+
91
+ '@esbuild/aix-ppc64@0.20.2':
92
+ resolution:
93
+ {
94
+ integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==,
95
+ }
96
+ engines: { node: '>=12' }
97
+ cpu: [ppc64]
98
+ os: [aix]
99
+
100
+ '@esbuild/aix-ppc64@0.27.2':
101
+ resolution:
102
+ {
103
+ integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==,
104
+ }
105
+ engines: { node: '>=18' }
106
+ cpu: [ppc64]
107
+ os: [aix]
108
+
109
+ '@esbuild/android-arm64@0.20.2':
110
+ resolution:
111
+ {
112
+ integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==,
113
+ }
114
+ engines: { node: '>=12' }
115
+ cpu: [arm64]
116
+ os: [android]
117
+
118
+ '@esbuild/android-arm64@0.27.2':
119
+ resolution:
120
+ {
121
+ integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==,
122
+ }
123
+ engines: { node: '>=18' }
124
+ cpu: [arm64]
125
+ os: [android]
126
+
127
+ '@esbuild/android-arm@0.20.2':
128
+ resolution:
129
+ {
130
+ integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==,
131
+ }
132
+ engines: { node: '>=12' }
133
+ cpu: [arm]
134
+ os: [android]
135
+
136
+ '@esbuild/android-arm@0.27.2':
137
+ resolution:
138
+ {
139
+ integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==,
140
+ }
141
+ engines: { node: '>=18' }
142
+ cpu: [arm]
143
+ os: [android]
144
+
145
+ '@esbuild/android-x64@0.20.2':
146
+ resolution:
147
+ {
148
+ integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==,
149
+ }
150
+ engines: { node: '>=12' }
151
+ cpu: [x64]
152
+ os: [android]
153
+
154
+ '@esbuild/android-x64@0.27.2':
155
+ resolution:
156
+ {
157
+ integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==,
158
+ }
159
+ engines: { node: '>=18' }
160
+ cpu: [x64]
161
+ os: [android]
162
+
163
+ '@esbuild/darwin-arm64@0.20.2':
164
+ resolution:
165
+ {
166
+ integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==,
167
+ }
168
+ engines: { node: '>=12' }
169
+ cpu: [arm64]
170
+ os: [darwin]
171
+
172
+ '@esbuild/darwin-arm64@0.27.2':
173
+ resolution:
174
+ {
175
+ integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==,
176
+ }
177
+ engines: { node: '>=18' }
178
+ cpu: [arm64]
179
+ os: [darwin]
180
+
181
+ '@esbuild/darwin-x64@0.20.2':
182
+ resolution:
183
+ {
184
+ integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==,
185
+ }
186
+ engines: { node: '>=12' }
187
+ cpu: [x64]
188
+ os: [darwin]
189
+
190
+ '@esbuild/darwin-x64@0.27.2':
191
+ resolution:
192
+ {
193
+ integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==,
194
+ }
195
+ engines: { node: '>=18' }
196
+ cpu: [x64]
197
+ os: [darwin]
198
+
199
+ '@esbuild/freebsd-arm64@0.20.2':
200
+ resolution:
201
+ {
202
+ integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==,
203
+ }
204
+ engines: { node: '>=12' }
205
+ cpu: [arm64]
206
+ os: [freebsd]
207
+
208
+ '@esbuild/freebsd-arm64@0.27.2':
209
+ resolution:
210
+ {
211
+ integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==,
212
+ }
213
+ engines: { node: '>=18' }
214
+ cpu: [arm64]
215
+ os: [freebsd]
216
+
217
+ '@esbuild/freebsd-x64@0.20.2':
218
+ resolution:
219
+ {
220
+ integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==,
221
+ }
222
+ engines: { node: '>=12' }
223
+ cpu: [x64]
224
+ os: [freebsd]
225
+
226
+ '@esbuild/freebsd-x64@0.27.2':
227
+ resolution:
228
+ {
229
+ integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==,
230
+ }
231
+ engines: { node: '>=18' }
232
+ cpu: [x64]
233
+ os: [freebsd]
234
+
235
+ '@esbuild/linux-arm64@0.20.2':
236
+ resolution:
237
+ {
238
+ integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==,
239
+ }
240
+ engines: { node: '>=12' }
241
+ cpu: [arm64]
242
+ os: [linux]
243
+
244
+ '@esbuild/linux-arm64@0.27.2':
245
+ resolution:
246
+ {
247
+ integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==,
248
+ }
249
+ engines: { node: '>=18' }
250
+ cpu: [arm64]
251
+ os: [linux]
252
+
253
+ '@esbuild/linux-arm@0.20.2':
254
+ resolution:
255
+ {
256
+ integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==,
257
+ }
258
+ engines: { node: '>=12' }
259
+ cpu: [arm]
260
+ os: [linux]
261
+
262
+ '@esbuild/linux-arm@0.27.2':
263
+ resolution:
264
+ {
265
+ integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==,
266
+ }
267
+ engines: { node: '>=18' }
268
+ cpu: [arm]
269
+ os: [linux]
270
+
271
+ '@esbuild/linux-ia32@0.20.2':
272
+ resolution:
273
+ {
274
+ integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==,
275
+ }
276
+ engines: { node: '>=12' }
277
+ cpu: [ia32]
278
+ os: [linux]
279
+
280
+ '@esbuild/linux-ia32@0.27.2':
281
+ resolution:
282
+ {
283
+ integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==,
284
+ }
285
+ engines: { node: '>=18' }
286
+ cpu: [ia32]
287
+ os: [linux]
288
+
289
+ '@esbuild/linux-loong64@0.20.2':
290
+ resolution:
291
+ {
292
+ integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==,
293
+ }
294
+ engines: { node: '>=12' }
295
+ cpu: [loong64]
296
+ os: [linux]
297
+
298
+ '@esbuild/linux-loong64@0.27.2':
299
+ resolution:
300
+ {
301
+ integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==,
302
+ }
303
+ engines: { node: '>=18' }
304
+ cpu: [loong64]
305
+ os: [linux]
306
+
307
+ '@esbuild/linux-mips64el@0.20.2':
308
+ resolution:
309
+ {
310
+ integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==,
311
+ }
312
+ engines: { node: '>=12' }
313
+ cpu: [mips64el]
314
+ os: [linux]
315
+
316
+ '@esbuild/linux-mips64el@0.27.2':
317
+ resolution:
318
+ {
319
+ integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==,
320
+ }
321
+ engines: { node: '>=18' }
322
+ cpu: [mips64el]
323
+ os: [linux]
324
+
325
+ '@esbuild/linux-ppc64@0.20.2':
326
+ resolution:
327
+ {
328
+ integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==,
329
+ }
330
+ engines: { node: '>=12' }
331
+ cpu: [ppc64]
332
+ os: [linux]
333
+
334
+ '@esbuild/linux-ppc64@0.27.2':
335
+ resolution:
336
+ {
337
+ integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==,
338
+ }
339
+ engines: { node: '>=18' }
340
+ cpu: [ppc64]
341
+ os: [linux]
342
+
343
+ '@esbuild/linux-riscv64@0.20.2':
344
+ resolution:
345
+ {
346
+ integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==,
347
+ }
348
+ engines: { node: '>=12' }
349
+ cpu: [riscv64]
350
+ os: [linux]
351
+
352
+ '@esbuild/linux-riscv64@0.27.2':
353
+ resolution:
354
+ {
355
+ integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==,
356
+ }
357
+ engines: { node: '>=18' }
358
+ cpu: [riscv64]
359
+ os: [linux]
360
+
361
+ '@esbuild/linux-s390x@0.20.2':
362
+ resolution:
363
+ {
364
+ integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==,
365
+ }
366
+ engines: { node: '>=12' }
367
+ cpu: [s390x]
368
+ os: [linux]
369
+
370
+ '@esbuild/linux-s390x@0.27.2':
371
+ resolution:
372
+ {
373
+ integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==,
374
+ }
375
+ engines: { node: '>=18' }
376
+ cpu: [s390x]
377
+ os: [linux]
378
+
379
+ '@esbuild/linux-x64@0.20.2':
380
+ resolution:
381
+ {
382
+ integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==,
383
+ }
384
+ engines: { node: '>=12' }
385
+ cpu: [x64]
386
+ os: [linux]
387
+
388
+ '@esbuild/linux-x64@0.27.2':
389
+ resolution:
390
+ {
391
+ integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==,
392
+ }
393
+ engines: { node: '>=18' }
394
+ cpu: [x64]
395
+ os: [linux]
396
+
397
+ '@esbuild/netbsd-arm64@0.27.2':
398
+ resolution:
399
+ {
400
+ integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==,
401
+ }
402
+ engines: { node: '>=18' }
403
+ cpu: [arm64]
404
+ os: [netbsd]
405
+
406
+ '@esbuild/netbsd-x64@0.20.2':
407
+ resolution:
408
+ {
409
+ integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==,
410
+ }
411
+ engines: { node: '>=12' }
412
+ cpu: [x64]
413
+ os: [netbsd]
414
+
415
+ '@esbuild/netbsd-x64@0.27.2':
416
+ resolution:
417
+ {
418
+ integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==,
419
+ }
420
+ engines: { node: '>=18' }
421
+ cpu: [x64]
422
+ os: [netbsd]
423
+
424
+ '@esbuild/openbsd-arm64@0.27.2':
425
+ resolution:
426
+ {
427
+ integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==,
428
+ }
429
+ engines: { node: '>=18' }
430
+ cpu: [arm64]
431
+ os: [openbsd]
432
+
433
+ '@esbuild/openbsd-x64@0.20.2':
434
+ resolution:
435
+ {
436
+ integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==,
437
+ }
438
+ engines: { node: '>=12' }
439
+ cpu: [x64]
440
+ os: [openbsd]
441
+
442
+ '@esbuild/openbsd-x64@0.27.2':
443
+ resolution:
444
+ {
445
+ integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==,
446
+ }
447
+ engines: { node: '>=18' }
448
+ cpu: [x64]
449
+ os: [openbsd]
450
+
451
+ '@esbuild/openharmony-arm64@0.27.2':
452
+ resolution:
453
+ {
454
+ integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==,
455
+ }
456
+ engines: { node: '>=18' }
457
+ cpu: [arm64]
458
+ os: [openharmony]
459
+
460
+ '@esbuild/sunos-x64@0.20.2':
461
+ resolution:
462
+ {
463
+ integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==,
464
+ }
465
+ engines: { node: '>=12' }
466
+ cpu: [x64]
467
+ os: [sunos]
468
+
469
+ '@esbuild/sunos-x64@0.27.2':
470
+ resolution:
471
+ {
472
+ integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==,
473
+ }
474
+ engines: { node: '>=18' }
475
+ cpu: [x64]
476
+ os: [sunos]
477
+
478
+ '@esbuild/win32-arm64@0.20.2':
479
+ resolution:
480
+ {
481
+ integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==,
482
+ }
483
+ engines: { node: '>=12' }
484
+ cpu: [arm64]
485
+ os: [win32]
486
+
487
+ '@esbuild/win32-arm64@0.27.2':
488
+ resolution:
489
+ {
490
+ integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==,
491
+ }
492
+ engines: { node: '>=18' }
493
+ cpu: [arm64]
494
+ os: [win32]
495
+
496
+ '@esbuild/win32-ia32@0.20.2':
497
+ resolution:
498
+ {
499
+ integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==,
500
+ }
501
+ engines: { node: '>=12' }
502
+ cpu: [ia32]
503
+ os: [win32]
504
+
505
+ '@esbuild/win32-ia32@0.27.2':
506
+ resolution:
507
+ {
508
+ integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==,
509
+ }
510
+ engines: { node: '>=18' }
511
+ cpu: [ia32]
512
+ os: [win32]
513
+
514
+ '@esbuild/win32-x64@0.20.2':
515
+ resolution:
516
+ {
517
+ integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==,
518
+ }
519
+ engines: { node: '>=12' }
520
+ cpu: [x64]
521
+ os: [win32]
522
+
523
+ '@esbuild/win32-x64@0.27.2':
524
+ resolution:
525
+ {
526
+ integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==,
527
+ }
528
+ engines: { node: '>=18' }
529
+ cpu: [x64]
530
+ os: [win32]
531
+
532
+ '@eslint-community/eslint-utils@4.9.1':
533
+ resolution:
534
+ {
535
+ integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==,
536
+ }
537
+ engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
538
+ peerDependencies:
539
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
540
+
541
+ '@eslint-community/regexpp@4.12.2':
542
+ resolution:
543
+ {
544
+ integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==,
545
+ }
546
+ engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 }
547
+
548
+ '@eslint/config-array@0.21.1':
549
+ resolution:
550
+ {
551
+ integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==,
552
+ }
553
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
554
+
555
+ '@eslint/config-helpers@0.4.2':
556
+ resolution:
557
+ {
558
+ integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==,
559
+ }
560
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
561
+
562
+ '@eslint/core@0.17.0':
563
+ resolution:
564
+ {
565
+ integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==,
566
+ }
567
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
568
+
569
+ '@eslint/eslintrc@3.3.3':
570
+ resolution:
571
+ {
572
+ integrity: sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==,
573
+ }
574
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
575
+
576
+ '@eslint/js@9.39.2':
577
+ resolution:
578
+ {
579
+ integrity: sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==,
580
+ }
581
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
582
+
583
+ '@eslint/object-schema@2.1.7':
584
+ resolution:
585
+ {
586
+ integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==,
587
+ }
588
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
589
+
590
+ '@eslint/plugin-kit@0.4.1':
591
+ resolution:
592
+ {
593
+ integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==,
594
+ }
595
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
596
+
597
+ '@humanfs/core@0.19.1':
598
+ resolution:
599
+ {
600
+ integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==,
601
+ }
602
+ engines: { node: '>=18.18.0' }
603
+
604
+ '@humanfs/node@0.16.7':
605
+ resolution:
606
+ {
607
+ integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==,
608
+ }
609
+ engines: { node: '>=18.18.0' }
610
+
611
+ '@humanwhocodes/module-importer@1.0.1':
612
+ resolution:
613
+ {
614
+ integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==,
615
+ }
616
+ engines: { node: '>=12.22' }
617
+
618
+ '@humanwhocodes/retry@0.4.3':
619
+ resolution:
620
+ {
621
+ integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==,
622
+ }
623
+ engines: { node: '>=18.18' }
624
+
625
+ '@jridgewell/resolve-uri@3.1.2':
626
+ resolution:
627
+ {
628
+ integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==,
629
+ }
630
+ engines: { node: '>=6.0.0' }
631
+
632
+ '@jridgewell/sourcemap-codec@1.5.5':
633
+ resolution:
634
+ {
635
+ integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==,
636
+ }
637
+
638
+ '@jridgewell/trace-mapping@0.3.31':
639
+ resolution:
640
+ {
641
+ integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==,
642
+ }
643
+
644
+ '@msgpack/msgpack@3.1.3':
645
+ resolution:
646
+ {
647
+ integrity: sha512-47XIizs9XZXvuJgoaJUIE2lFoID8ugvc0jzSHP+Ptfk8nTbnR8g788wv48N03Kx0UkAv559HWRQ3yzOgzlRNUA==,
648
+ }
649
+ engines: { node: '>= 18' }
650
+
651
+ '@rollup/rollup-android-arm-eabi@4.55.3':
652
+ resolution:
653
+ {
654
+ integrity: sha512-qyX8+93kK/7R5BEXPC2PjUt0+fS/VO2BVHjEHyIEWiYn88rcRBHmdLgoJjktBltgAf+NY7RfCGB1SoyKS/p9kg==,
655
+ }
656
+ cpu: [arm]
657
+ os: [android]
658
+
659
+ '@rollup/rollup-android-arm64@4.55.3':
660
+ resolution:
661
+ {
662
+ integrity: sha512-6sHrL42bjt5dHQzJ12Q4vMKfN+kUnZ0atHHnv4V0Wd9JMTk7FDzSY35+7qbz3ypQYMBPANbpGK7JpnWNnhGt8g==,
663
+ }
664
+ cpu: [arm64]
665
+ os: [android]
666
+
667
+ '@rollup/rollup-darwin-arm64@4.55.3':
668
+ resolution:
669
+ {
670
+ integrity: sha512-1ht2SpGIjEl2igJ9AbNpPIKzb1B5goXOcmtD0RFxnwNuMxqkR6AUaaErZz+4o+FKmzxcSNBOLrzsICZVNYa1Rw==,
671
+ }
672
+ cpu: [arm64]
673
+ os: [darwin]
674
+
675
+ '@rollup/rollup-darwin-x64@4.55.3':
676
+ resolution:
677
+ {
678
+ integrity: sha512-FYZ4iVunXxtT+CZqQoPVwPhH7549e/Gy7PIRRtq4t5f/vt54pX6eG9ebttRH6QSH7r/zxAFA4EZGlQ0h0FvXiA==,
679
+ }
680
+ cpu: [x64]
681
+ os: [darwin]
682
+
683
+ '@rollup/rollup-freebsd-arm64@4.55.3':
684
+ resolution:
685
+ {
686
+ integrity: sha512-M/mwDCJ4wLsIgyxv2Lj7Len+UMHd4zAXu4GQ2UaCdksStglWhP61U3uowkaYBQBhVoNpwx5Hputo8eSqM7K82Q==,
687
+ }
688
+ cpu: [arm64]
689
+ os: [freebsd]
690
+
691
+ '@rollup/rollup-freebsd-x64@4.55.3':
692
+ resolution:
693
+ {
694
+ integrity: sha512-5jZT2c7jBCrMegKYTYTpni8mg8y3uY8gzeq2ndFOANwNuC/xJbVAoGKR9LhMDA0H3nIhvaqUoBEuJoICBudFrA==,
695
+ }
696
+ cpu: [x64]
697
+ os: [freebsd]
698
+
699
+ '@rollup/rollup-linux-arm-gnueabihf@4.55.3':
700
+ resolution:
701
+ {
702
+ integrity: sha512-YeGUhkN1oA+iSPzzhEjVPS29YbViOr8s4lSsFaZKLHswgqP911xx25fPOyE9+khmN6W4VeM0aevbDp4kkEoHiA==,
703
+ }
704
+ cpu: [arm]
705
+ os: [linux]
706
+
707
+ '@rollup/rollup-linux-arm-musleabihf@4.55.3':
708
+ resolution:
709
+ {
710
+ integrity: sha512-eo0iOIOvcAlWB3Z3eh8pVM8hZ0oVkK3AjEM9nSrkSug2l15qHzF3TOwT0747omI6+CJJvl7drwZepT+re6Fy/w==,
711
+ }
712
+ cpu: [arm]
713
+ os: [linux]
714
+
715
+ '@rollup/rollup-linux-arm64-gnu@4.55.3':
716
+ resolution:
717
+ {
718
+ integrity: sha512-DJay3ep76bKUDImmn//W5SvpjRN5LmK/ntWyeJs/dcnwiiHESd3N4uteK9FDLf0S0W8E6Y0sVRXpOCoQclQqNg==,
719
+ }
720
+ cpu: [arm64]
721
+ os: [linux]
722
+
723
+ '@rollup/rollup-linux-arm64-musl@4.55.3':
724
+ resolution:
725
+ {
726
+ integrity: sha512-BKKWQkY2WgJ5MC/ayvIJTHjy0JUGb5efaHCUiG/39sSUvAYRBaO3+/EK0AZT1RF3pSj86O24GLLik9mAYu0IJg==,
727
+ }
728
+ cpu: [arm64]
729
+ os: [linux]
730
+
731
+ '@rollup/rollup-linux-loong64-gnu@4.55.3':
732
+ resolution:
733
+ {
734
+ integrity: sha512-Q9nVlWtKAG7ISW80OiZGxTr6rYtyDSkauHUtvkQI6TNOJjFvpj4gcH+KaJihqYInnAzEEUetPQubRwHef4exVg==,
735
+ }
736
+ cpu: [loong64]
737
+ os: [linux]
738
+
739
+ '@rollup/rollup-linux-loong64-musl@4.55.3':
740
+ resolution:
741
+ {
742
+ integrity: sha512-2H5LmhzrpC4fFRNwknzmmTvvyJPHwESoJgyReXeFoYYuIDfBhP29TEXOkCJE/KxHi27mj7wDUClNq78ue3QEBQ==,
743
+ }
744
+ cpu: [loong64]
745
+ os: [linux]
746
+
747
+ '@rollup/rollup-linux-ppc64-gnu@4.55.3':
748
+ resolution:
749
+ {
750
+ integrity: sha512-9S542V0ie9LCTznPYlvaeySwBeIEa7rDBgLHKZ5S9DBgcqdJYburabm8TqiqG6mrdTzfV5uttQRHcbKff9lWtA==,
751
+ }
752
+ cpu: [ppc64]
753
+ os: [linux]
754
+
755
+ '@rollup/rollup-linux-ppc64-musl@4.55.3':
756
+ resolution:
757
+ {
758
+ integrity: sha512-ukxw+YH3XXpcezLgbJeasgxyTbdpnNAkrIlFGDl7t+pgCxZ89/6n1a+MxlY7CegU+nDgrgdqDelPRNQ/47zs0g==,
759
+ }
760
+ cpu: [ppc64]
761
+ os: [linux]
762
+
763
+ '@rollup/rollup-linux-riscv64-gnu@4.55.3':
764
+ resolution:
765
+ {
766
+ integrity: sha512-Iauw9UsTTvlF++FhghFJjqYxyXdggXsOqGpFBylaRopVpcbfyIIsNvkf9oGwfgIcf57z3m8+/oSYTo6HutBFNw==,
767
+ }
768
+ cpu: [riscv64]
769
+ os: [linux]
770
+
771
+ '@rollup/rollup-linux-riscv64-musl@4.55.3':
772
+ resolution:
773
+ {
774
+ integrity: sha512-3OqKAHSEQXKdq9mQ4eajqUgNIK27VZPW3I26EP8miIzuKzCJ3aW3oEn2pzF+4/Hj/Moc0YDsOtBgT5bZ56/vcA==,
775
+ }
776
+ cpu: [riscv64]
777
+ os: [linux]
778
+
779
+ '@rollup/rollup-linux-s390x-gnu@4.55.3':
780
+ resolution:
781
+ {
782
+ integrity: sha512-0CM8dSVzVIaqMcXIFej8zZrSFLnGrAE8qlNbbHfTw1EEPnFTg1U1ekI0JdzjPyzSfUsHWtodilQQG/RA55berA==,
783
+ }
784
+ cpu: [s390x]
785
+ os: [linux]
786
+
787
+ '@rollup/rollup-linux-x64-gnu@4.55.3':
788
+ resolution:
789
+ {
790
+ integrity: sha512-+fgJE12FZMIgBaKIAGd45rxf+5ftcycANJRWk8Vz0NnMTM5rADPGuRFTYar+Mqs560xuART7XsX2lSACa1iOmQ==,
791
+ }
792
+ cpu: [x64]
793
+ os: [linux]
794
+
795
+ '@rollup/rollup-linux-x64-musl@4.55.3':
796
+ resolution:
797
+ {
798
+ integrity: sha512-tMD7NnbAolWPzQlJQJjVFh/fNH3K/KnA7K8gv2dJWCwwnaK6DFCYST1QXYWfu5V0cDwarWC8Sf/cfMHniNq21A==,
799
+ }
800
+ cpu: [x64]
801
+ os: [linux]
802
+
803
+ '@rollup/rollup-openbsd-x64@4.55.3':
804
+ resolution:
805
+ {
806
+ integrity: sha512-u5KsqxOxjEeIbn7bUK1MPM34jrnPwjeqgyin4/N6e/KzXKfpE9Mi0nCxcQjaM9lLmPcHmn/xx1yOjgTMtu1jWQ==,
807
+ }
808
+ cpu: [x64]
809
+ os: [openbsd]
810
+
811
+ '@rollup/rollup-openharmony-arm64@4.55.3':
812
+ resolution:
813
+ {
814
+ integrity: sha512-vo54aXwjpTtsAnb3ca7Yxs9t2INZg7QdXN/7yaoG7nPGbOBXYXQY41Km+S1Ov26vzOAzLcAjmMdjyEqS1JkVhw==,
815
+ }
816
+ cpu: [arm64]
817
+ os: [openharmony]
818
+
819
+ '@rollup/rollup-win32-arm64-msvc@4.55.3':
820
+ resolution:
821
+ {
822
+ integrity: sha512-HI+PIVZ+m+9AgpnY3pt6rinUdRYrGHvmVdsNQ4odNqQ/eRF78DVpMR7mOq7nW06QxpczibwBmeQzB68wJ+4W4A==,
823
+ }
824
+ cpu: [arm64]
825
+ os: [win32]
826
+
827
+ '@rollup/rollup-win32-ia32-msvc@4.55.3':
828
+ resolution:
829
+ {
830
+ integrity: sha512-vRByotbdMo3Wdi+8oC2nVxtc3RkkFKrGaok+a62AT8lz/YBuQjaVYAS5Zcs3tPzW43Vsf9J0wehJbUY5xRSekA==,
831
+ }
832
+ cpu: [ia32]
833
+ os: [win32]
834
+
835
+ '@rollup/rollup-win32-x64-gnu@4.55.3':
836
+ resolution:
837
+ {
838
+ integrity: sha512-POZHq7UeuzMJljC5NjKi8vKMFN6/5EOqcX1yGntNLp7rUTpBAXQ1hW8kWPFxYLv07QMcNM75xqVLGPWQq6TKFA==,
839
+ }
840
+ cpu: [x64]
841
+ os: [win32]
842
+
843
+ '@rollup/rollup-win32-x64-msvc@4.55.3':
844
+ resolution:
845
+ {
846
+ integrity: sha512-aPFONczE4fUFKNXszdvnd2GqKEYQdV5oEsIbKPujJmWlCI9zEsv1Otig8RKK+X9bed9gFUN6LAeN4ZcNuu4zjg==,
847
+ }
848
+ cpu: [x64]
849
+ os: [win32]
850
+
851
+ '@standard-schema/spec@1.1.0':
852
+ resolution:
853
+ {
854
+ integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==,
855
+ }
856
+
857
+ '@types/chai@5.2.3':
858
+ resolution:
859
+ {
860
+ integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==,
861
+ }
862
+
863
+ '@types/deep-eql@4.0.2':
864
+ resolution:
865
+ {
866
+ integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==,
867
+ }
868
+
869
+ '@types/estree@1.0.8':
870
+ resolution:
871
+ {
872
+ integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==,
873
+ }
874
+
875
+ '@types/json-schema@7.0.15':
876
+ resolution:
877
+ {
878
+ integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==,
879
+ }
880
+
881
+ '@types/morphdom@2.3.0':
882
+ resolution:
883
+ {
884
+ integrity: sha512-xDWhsCHpQLCLKmJYjm2txI9VRU6mWuqOitkj+VNgb4SSu1jrPR/jgwPzKojQInM1AzSDiHwQ3ZenUygr50axsw==,
885
+ }
886
+
887
+ '@types/node@25.0.9':
888
+ resolution:
889
+ {
890
+ integrity: sha512-/rpCXHlCWeqClNBwUhDcusJxXYDjZTyE8v5oTO7WbL8eij2nKhUeU89/6xgjU7N4/Vh3He0BtyhJdQbDyhiXAw==,
891
+ }
892
+
893
+ '@types/whatwg-mimetype@3.0.2':
894
+ resolution:
895
+ {
896
+ integrity: sha512-c2AKvDT8ToxLIOUlN51gTiHXflsfIFisS4pO7pDPoKouJCESkhZnEy623gwP9laCy5lnLDAw1vAzu2vM2YLOrA==,
897
+ }
898
+
899
+ '@types/ws@8.18.1':
900
+ resolution:
901
+ {
902
+ integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==,
903
+ }
904
+
905
+ '@typescript-eslint/eslint-plugin@8.54.0':
906
+ resolution:
907
+ {
908
+ integrity: sha512-hAAP5io/7csFStuOmR782YmTthKBJ9ND3WVL60hcOjvtGFb+HJxH4O5huAcmcZ9v9G8P+JETiZ/G1B8MALnWZQ==,
909
+ }
910
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
911
+ peerDependencies:
912
+ '@typescript-eslint/parser': ^8.54.0
913
+ eslint: ^8.57.0 || ^9.0.0
914
+ typescript: '>=4.8.4 <6.0.0'
915
+
916
+ '@typescript-eslint/parser@8.54.0':
917
+ resolution:
918
+ {
919
+ integrity: sha512-BtE0k6cjwjLZoZixN0t5AKP0kSzlGu7FctRXYuPAm//aaiZhmfq1JwdYpYr1brzEspYyFeF+8XF5j2VK6oalrA==,
920
+ }
921
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
922
+ peerDependencies:
923
+ eslint: ^8.57.0 || ^9.0.0
924
+ typescript: '>=4.8.4 <6.0.0'
925
+
926
+ '@typescript-eslint/project-service@8.54.0':
927
+ resolution:
928
+ {
929
+ integrity: sha512-YPf+rvJ1s7MyiWM4uTRhE4DvBXrEV+d8oC3P9Y2eT7S+HBS0clybdMIPnhiATi9vZOYDc7OQ1L/i6ga6NFYK/g==,
930
+ }
931
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
932
+ peerDependencies:
933
+ typescript: '>=4.8.4 <6.0.0'
934
+
935
+ '@typescript-eslint/scope-manager@8.54.0':
936
+ resolution:
937
+ {
938
+ integrity: sha512-27rYVQku26j/PbHYcVfRPonmOlVI6gihHtXFbTdB5sb6qA0wdAQAbyXFVarQ5t4HRojIz64IV90YtsjQSSGlQg==,
939
+ }
940
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
941
+
942
+ '@typescript-eslint/tsconfig-utils@8.54.0':
943
+ resolution:
944
+ {
945
+ integrity: sha512-dRgOyT2hPk/JwxNMZDsIXDgyl9axdJI3ogZ2XWhBPsnZUv+hPesa5iuhdYt2gzwA9t8RE5ytOJ6xB0moV0Ujvw==,
946
+ }
947
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
948
+ peerDependencies:
949
+ typescript: '>=4.8.4 <6.0.0'
950
+
951
+ '@typescript-eslint/type-utils@8.54.0':
952
+ resolution:
953
+ {
954
+ integrity: sha512-hiLguxJWHjjwL6xMBwD903ciAwd7DmK30Y9Axs/etOkftC3ZNN9K44IuRD/EB08amu+Zw6W37x9RecLkOo3pMA==,
955
+ }
956
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
957
+ peerDependencies:
958
+ eslint: ^8.57.0 || ^9.0.0
959
+ typescript: '>=4.8.4 <6.0.0'
960
+
961
+ '@typescript-eslint/types@8.54.0':
962
+ resolution:
963
+ {
964
+ integrity: sha512-PDUI9R1BVjqu7AUDsRBbKMtwmjWcn4J3le+5LpcFgWULN3LvHC5rkc9gCVxbrsrGmO1jfPybN5s6h4Jy+OnkAA==,
965
+ }
966
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
967
+
968
+ '@typescript-eslint/typescript-estree@8.54.0':
969
+ resolution:
970
+ {
971
+ integrity: sha512-BUwcskRaPvTk6fzVWgDPdUndLjB87KYDrN5EYGetnktoeAvPtO4ONHlAZDnj5VFnUANg0Sjm7j4usBlnoVMHwA==,
972
+ }
973
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
974
+ peerDependencies:
975
+ typescript: '>=4.8.4 <6.0.0'
976
+
977
+ '@typescript-eslint/utils@8.54.0':
978
+ resolution:
979
+ {
980
+ integrity: sha512-9Cnda8GS57AQakvRyG0PTejJNlA2xhvyNtEVIMlDWOOeEyBkYWhGPnfrIAnqxLMTSTo6q8g12XVjjev5l1NvMA==,
981
+ }
982
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
983
+ peerDependencies:
984
+ eslint: ^8.57.0 || ^9.0.0
985
+ typescript: '>=4.8.4 <6.0.0'
986
+
987
+ '@typescript-eslint/visitor-keys@8.54.0':
988
+ resolution:
989
+ {
990
+ integrity: sha512-VFlhGSl4opC0bprJiItPQ1RfUhGDIBokcPwaFH4yiBCaNPeld/9VeXbiPO1cLyorQi1G1vL+ecBk1x8o1axORA==,
991
+ }
992
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
993
+
994
+ '@vitest/coverage-v8@4.0.17':
995
+ resolution:
996
+ {
997
+ integrity: sha512-/6zU2FLGg0jsd+ePZcwHRy3+WpNTBBhDY56P4JTRqUN/Dp6CvOEa9HrikcQ4KfV2b2kAHUFB4dl1SuocWXSFEw==,
998
+ }
999
+ peerDependencies:
1000
+ '@vitest/browser': 4.0.17
1001
+ vitest: 4.0.17
1002
+ peerDependenciesMeta:
1003
+ '@vitest/browser':
1004
+ optional: true
1005
+
1006
+ '@vitest/expect@4.0.17':
1007
+ resolution:
1008
+ {
1009
+ integrity: sha512-mEoqP3RqhKlbmUmntNDDCJeTDavDR+fVYkSOw8qRwJFaW/0/5zA9zFeTrHqNtcmwh6j26yMmwx2PqUDPzt5ZAQ==,
1010
+ }
1011
+
1012
+ '@vitest/mocker@4.0.17':
1013
+ resolution:
1014
+ {
1015
+ integrity: sha512-+ZtQhLA3lDh1tI2wxe3yMsGzbp7uuJSWBM1iTIKCbppWTSBN09PUC+L+fyNlQApQoR+Ps8twt2pbSSXg2fQVEQ==,
1016
+ }
1017
+ peerDependencies:
1018
+ msw: ^2.4.9
1019
+ vite: ^6.0.0 || ^7.0.0-0
1020
+ peerDependenciesMeta:
1021
+ msw:
1022
+ optional: true
1023
+ vite:
1024
+ optional: true
1025
+
1026
+ '@vitest/pretty-format@4.0.17':
1027
+ resolution:
1028
+ {
1029
+ integrity: sha512-Ah3VAYmjcEdHg6+MwFE17qyLqBHZ+ni2ScKCiW2XrlSBV4H3Z7vYfPfz7CWQ33gyu76oc0Ai36+kgLU3rfF4nw==,
1030
+ }
1031
+
1032
+ '@vitest/runner@4.0.17':
1033
+ resolution:
1034
+ {
1035
+ integrity: sha512-JmuQyf8aMWoo/LmNFppdpkfRVHJcsgzkbCA+/Bk7VfNH7RE6Ut2qxegeyx2j3ojtJtKIbIGy3h+KxGfYfk28YQ==,
1036
+ }
1037
+
1038
+ '@vitest/snapshot@4.0.17':
1039
+ resolution:
1040
+ {
1041
+ integrity: sha512-npPelD7oyL+YQM2gbIYvlavlMVWUfNNGZPcu0aEUQXt7FXTuqhmgiYupPnAanhKvyP6Srs2pIbWo30K0RbDtRQ==,
1042
+ }
1043
+
1044
+ '@vitest/spy@4.0.17':
1045
+ resolution:
1046
+ {
1047
+ integrity: sha512-I1bQo8QaP6tZlTomQNWKJE6ym4SHf3oLS7ceNjozxxgzavRAgZDc06T7kD8gb9bXKEgcLNt00Z+kZO6KaJ62Ew==,
1048
+ }
1049
+
1050
+ '@vitest/utils@4.0.17':
1051
+ resolution:
1052
+ {
1053
+ integrity: sha512-RG6iy+IzQpa9SB8HAFHJ9Y+pTzI+h8553MrciN9eC6TFBErqrQaTas4vG+MVj8S4uKk8uTT2p0vgZPnTdxd96w==,
1054
+ }
1055
+
1056
+ acorn-jsx@5.3.2:
1057
+ resolution:
1058
+ {
1059
+ integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==,
1060
+ }
1061
+ peerDependencies:
1062
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
1063
+
1064
+ acorn@8.15.0:
1065
+ resolution:
1066
+ {
1067
+ integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==,
1068
+ }
1069
+ engines: { node: '>=0.4.0' }
1070
+ hasBin: true
1071
+
1072
+ ajv@6.12.6:
1073
+ resolution:
1074
+ {
1075
+ integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==,
1076
+ }
1077
+
1078
+ ansi-styles@4.3.0:
1079
+ resolution:
1080
+ {
1081
+ integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==,
1082
+ }
1083
+ engines: { node: '>=8' }
1084
+
1085
+ argparse@2.0.1:
1086
+ resolution:
1087
+ {
1088
+ integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==,
1089
+ }
1090
+
1091
+ assertion-error@2.0.1:
1092
+ resolution:
1093
+ {
1094
+ integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==,
1095
+ }
1096
+ engines: { node: '>=12' }
1097
+
1098
+ ast-v8-to-istanbul@0.3.10:
1099
+ resolution:
1100
+ {
1101
+ integrity: sha512-p4K7vMz2ZSk3wN8l5o3y2bJAoZXT3VuJI5OLTATY/01CYWumWvwkUw0SqDBnNq6IiTO3qDa1eSQDibAV8g7XOQ==,
1102
+ }
1103
+
1104
+ balanced-match@1.0.2:
1105
+ resolution:
1106
+ {
1107
+ integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==,
1108
+ }
1109
+
1110
+ brace-expansion@1.1.12:
1111
+ resolution:
1112
+ {
1113
+ integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==,
1114
+ }
1115
+
1116
+ brace-expansion@2.0.2:
1117
+ resolution:
1118
+ {
1119
+ integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==,
1120
+ }
1121
+
1122
+ callsites@3.1.0:
1123
+ resolution:
1124
+ {
1125
+ integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==,
1126
+ }
1127
+ engines: { node: '>=6' }
1128
+
1129
+ chai@6.2.2:
1130
+ resolution:
1131
+ {
1132
+ integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==,
1133
+ }
1134
+ engines: { node: '>=18' }
1135
+
1136
+ chalk@4.1.2:
1137
+ resolution:
1138
+ {
1139
+ integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==,
1140
+ }
1141
+ engines: { node: '>=10' }
1142
+
1143
+ color-convert@2.0.1:
1144
+ resolution:
1145
+ {
1146
+ integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==,
1147
+ }
1148
+ engines: { node: '>=7.0.0' }
1149
+
1150
+ color-name@1.1.4:
1151
+ resolution:
1152
+ {
1153
+ integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==,
1154
+ }
1155
+
1156
+ concat-map@0.0.1:
1157
+ resolution:
1158
+ {
1159
+ integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==,
1160
+ }
1161
+
1162
+ cross-spawn@7.0.6:
1163
+ resolution:
1164
+ {
1165
+ integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==,
1166
+ }
1167
+ engines: { node: '>= 8' }
1168
+
1169
+ debug@4.4.3:
1170
+ resolution:
1171
+ {
1172
+ integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==,
1173
+ }
1174
+ engines: { node: '>=6.0' }
1175
+ peerDependencies:
1176
+ supports-color: '*'
1177
+ peerDependenciesMeta:
1178
+ supports-color:
1179
+ optional: true
1180
+
1181
+ deep-is@0.1.4:
1182
+ resolution:
1183
+ {
1184
+ integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==,
1185
+ }
1186
+
1187
+ entities@4.5.0:
1188
+ resolution:
1189
+ {
1190
+ integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==,
1191
+ }
1192
+ engines: { node: '>=0.12' }
1193
+
1194
+ es-module-lexer@1.7.0:
1195
+ resolution:
1196
+ {
1197
+ integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==,
1198
+ }
1199
+
1200
+ esbuild@0.20.2:
1201
+ resolution:
1202
+ {
1203
+ integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==,
1204
+ }
1205
+ engines: { node: '>=12' }
1206
+ hasBin: true
1207
+
1208
+ esbuild@0.27.2:
1209
+ resolution:
1210
+ {
1211
+ integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==,
1212
+ }
1213
+ engines: { node: '>=18' }
1214
+ hasBin: true
1215
+
1216
+ escape-string-regexp@4.0.0:
1217
+ resolution:
1218
+ {
1219
+ integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==,
1220
+ }
1221
+ engines: { node: '>=10' }
1222
+
1223
+ eslint-scope@8.4.0:
1224
+ resolution:
1225
+ {
1226
+ integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==,
1227
+ }
1228
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
1229
+
1230
+ eslint-visitor-keys@3.4.3:
1231
+ resolution:
1232
+ {
1233
+ integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==,
1234
+ }
1235
+ engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
1236
+
1237
+ eslint-visitor-keys@4.2.1:
1238
+ resolution:
1239
+ {
1240
+ integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==,
1241
+ }
1242
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
1243
+
1244
+ eslint@9.39.2:
1245
+ resolution:
1246
+ {
1247
+ integrity: sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==,
1248
+ }
1249
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
1250
+ hasBin: true
1251
+ peerDependencies:
1252
+ jiti: '*'
1253
+ peerDependenciesMeta:
1254
+ jiti:
1255
+ optional: true
1256
+
1257
+ espree@10.4.0:
1258
+ resolution:
1259
+ {
1260
+ integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==,
1261
+ }
1262
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
1263
+
1264
+ esquery@1.7.0:
1265
+ resolution:
1266
+ {
1267
+ integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==,
1268
+ }
1269
+ engines: { node: '>=0.10' }
1270
+
1271
+ esrecurse@4.3.0:
1272
+ resolution:
1273
+ {
1274
+ integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==,
1275
+ }
1276
+ engines: { node: '>=4.0' }
1277
+
1278
+ estraverse@5.3.0:
1279
+ resolution:
1280
+ {
1281
+ integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==,
1282
+ }
1283
+ engines: { node: '>=4.0' }
1284
+
1285
+ estree-walker@3.0.3:
1286
+ resolution:
1287
+ {
1288
+ integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==,
1289
+ }
1290
+
1291
+ esutils@2.0.3:
1292
+ resolution:
1293
+ {
1294
+ integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==,
1295
+ }
1296
+ engines: { node: '>=0.10.0' }
1297
+
1298
+ expect-type@1.3.0:
1299
+ resolution:
1300
+ {
1301
+ integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==,
1302
+ }
1303
+ engines: { node: '>=12.0.0' }
1304
+
1305
+ fast-deep-equal@3.1.3:
1306
+ resolution:
1307
+ {
1308
+ integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==,
1309
+ }
1310
+
1311
+ fast-json-stable-stringify@2.1.0:
1312
+ resolution:
1313
+ {
1314
+ integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==,
1315
+ }
1316
+
1317
+ fast-levenshtein@2.0.6:
1318
+ resolution:
1319
+ {
1320
+ integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==,
1321
+ }
1322
+
1323
+ fdir@6.5.0:
1324
+ resolution:
1325
+ {
1326
+ integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==,
1327
+ }
1328
+ engines: { node: '>=12.0.0' }
1329
+ peerDependencies:
1330
+ picomatch: ^3 || ^4
1331
+ peerDependenciesMeta:
1332
+ picomatch:
1333
+ optional: true
1334
+
1335
+ file-entry-cache@8.0.0:
1336
+ resolution:
1337
+ {
1338
+ integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==,
1339
+ }
1340
+ engines: { node: '>=16.0.0' }
1341
+
1342
+ find-up@5.0.0:
1343
+ resolution:
1344
+ {
1345
+ integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==,
1346
+ }
1347
+ engines: { node: '>=10' }
1348
+
1349
+ flat-cache@4.0.1:
1350
+ resolution:
1351
+ {
1352
+ integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==,
1353
+ }
1354
+ engines: { node: '>=16' }
1355
+
1356
+ flatted@3.3.3:
1357
+ resolution:
1358
+ {
1359
+ integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==,
1360
+ }
1361
+
1362
+ fsevents@2.3.3:
1363
+ resolution:
1364
+ {
1365
+ integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==,
1366
+ }
1367
+ engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 }
1368
+ os: [darwin]
1369
+
1370
+ glob-parent@6.0.2:
1371
+ resolution:
1372
+ {
1373
+ integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==,
1374
+ }
1375
+ engines: { node: '>=10.13.0' }
1376
+
1377
+ globals@14.0.0:
1378
+ resolution:
1379
+ {
1380
+ integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==,
1381
+ }
1382
+ engines: { node: '>=18' }
1383
+
1384
+ globals@16.5.0:
1385
+ resolution:
1386
+ {
1387
+ integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==,
1388
+ }
1389
+ engines: { node: '>=18' }
1390
+
1391
+ happy-dom@20.3.6:
1392
+ resolution:
1393
+ {
1394
+ integrity: sha512-LDnfyfuPuYSt6umKHDi+n6m+Xl2RrBK3QxRmRow5l/4437rs0jaOevRjBTrh3dIzNb/Uez59YNaGOAK+rbAMeg==,
1395
+ }
1396
+ engines: { node: '>=20.0.0' }
1397
+
1398
+ has-flag@4.0.0:
1399
+ resolution:
1400
+ {
1401
+ integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==,
1402
+ }
1403
+ engines: { node: '>=8' }
1404
+
1405
+ html-escaper@2.0.2:
1406
+ resolution:
1407
+ {
1408
+ integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==,
1409
+ }
1410
+
1411
+ ignore@5.3.2:
1412
+ resolution:
1413
+ {
1414
+ integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==,
1415
+ }
1416
+ engines: { node: '>= 4' }
1417
+
1418
+ ignore@7.0.5:
1419
+ resolution:
1420
+ {
1421
+ integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==,
1422
+ }
1423
+ engines: { node: '>= 4' }
1424
+
1425
+ import-fresh@3.3.1:
1426
+ resolution:
1427
+ {
1428
+ integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==,
1429
+ }
1430
+ engines: { node: '>=6' }
1431
+
1432
+ imurmurhash@0.1.4:
1433
+ resolution:
1434
+ {
1435
+ integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==,
1436
+ }
1437
+ engines: { node: '>=0.8.19' }
1438
+
1439
+ is-extglob@2.1.1:
1440
+ resolution:
1441
+ {
1442
+ integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==,
1443
+ }
1444
+ engines: { node: '>=0.10.0' }
1445
+
1446
+ is-glob@4.0.3:
1447
+ resolution:
1448
+ {
1449
+ integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==,
1450
+ }
1451
+ engines: { node: '>=0.10.0' }
1452
+
1453
+ isexe@2.0.0:
1454
+ resolution:
1455
+ {
1456
+ integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==,
1457
+ }
1458
+
1459
+ istanbul-lib-coverage@3.2.2:
1460
+ resolution:
1461
+ {
1462
+ integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==,
1463
+ }
1464
+ engines: { node: '>=8' }
1465
+
1466
+ istanbul-lib-report@3.0.1:
1467
+ resolution:
1468
+ {
1469
+ integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==,
1470
+ }
1471
+ engines: { node: '>=10' }
1472
+
1473
+ istanbul-reports@3.2.0:
1474
+ resolution:
1475
+ {
1476
+ integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==,
1477
+ }
1478
+ engines: { node: '>=8' }
1479
+
1480
+ js-tokens@9.0.1:
1481
+ resolution:
1482
+ {
1483
+ integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==,
1484
+ }
1485
+
1486
+ js-yaml@4.1.1:
1487
+ resolution:
1488
+ {
1489
+ integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==,
1490
+ }
1491
+ hasBin: true
1492
+
1493
+ json-buffer@3.0.1:
1494
+ resolution:
1495
+ {
1496
+ integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==,
1497
+ }
1498
+
1499
+ json-schema-traverse@0.4.1:
1500
+ resolution:
1501
+ {
1502
+ integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==,
1503
+ }
1504
+
1505
+ json-stable-stringify-without-jsonify@1.0.1:
1506
+ resolution:
1507
+ {
1508
+ integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==,
1509
+ }
1510
+
1511
+ keyv@4.5.4:
1512
+ resolution:
1513
+ {
1514
+ integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==,
1515
+ }
1516
+
1517
+ levn@0.4.1:
1518
+ resolution:
1519
+ {
1520
+ integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==,
1521
+ }
1522
+ engines: { node: '>= 0.8.0' }
1523
+
1524
+ locate-path@6.0.0:
1525
+ resolution:
1526
+ {
1527
+ integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==,
1528
+ }
1529
+ engines: { node: '>=10' }
1530
+
1531
+ lodash.merge@4.6.2:
1532
+ resolution:
1533
+ {
1534
+ integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==,
1535
+ }
1536
+
1537
+ magic-string@0.30.21:
1538
+ resolution:
1539
+ {
1540
+ integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==,
1541
+ }
1542
+
1543
+ magicast@0.5.1:
1544
+ resolution:
1545
+ {
1546
+ integrity: sha512-xrHS24IxaLrvuo613F719wvOIv9xPHFWQHuvGUBmPnCA/3MQxKI3b+r7n1jAoDHmsbC5bRhTZYR77invLAxVnw==,
1547
+ }
1548
+
1549
+ make-dir@4.0.0:
1550
+ resolution:
1551
+ {
1552
+ integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==,
1553
+ }
1554
+ engines: { node: '>=10' }
1555
+
1556
+ minimatch@3.1.2:
1557
+ resolution:
1558
+ {
1559
+ integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==,
1560
+ }
1561
+
1562
+ minimatch@9.0.5:
1563
+ resolution:
1564
+ {
1565
+ integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==,
1566
+ }
1567
+ engines: { node: '>=16 || 14 >=14.17' }
1568
+
1569
+ morphdom@2.7.7:
1570
+ resolution:
1571
+ {
1572
+ integrity: sha512-04GmsiBcalrSCNmzfo+UjU8tt3PhZJKzcOy+r1FlGA7/zri8wre3I1WkYN9PT3sIeIKfW9bpyElA+VzOg2E24g==,
1573
+ }
1574
+
1575
+ ms@2.1.3:
1576
+ resolution:
1577
+ {
1578
+ integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==,
1579
+ }
1580
+
1581
+ nanoid@3.3.11:
1582
+ resolution:
1583
+ {
1584
+ integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==,
1585
+ }
1586
+ engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
1587
+ hasBin: true
1588
+
1589
+ natural-compare@1.4.0:
1590
+ resolution:
1591
+ {
1592
+ integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==,
1593
+ }
1594
+
1595
+ obug@2.1.1:
1596
+ resolution:
1597
+ {
1598
+ integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==,
1599
+ }
1600
+
1601
+ optionator@0.9.4:
1602
+ resolution:
1603
+ {
1604
+ integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==,
1605
+ }
1606
+ engines: { node: '>= 0.8.0' }
1607
+
1608
+ p-limit@3.1.0:
1609
+ resolution:
1610
+ {
1611
+ integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==,
1612
+ }
1613
+ engines: { node: '>=10' }
1614
+
1615
+ p-locate@5.0.0:
1616
+ resolution:
1617
+ {
1618
+ integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==,
1619
+ }
1620
+ engines: { node: '>=10' }
1621
+
1622
+ parent-module@1.0.1:
1623
+ resolution:
1624
+ {
1625
+ integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==,
1626
+ }
1627
+ engines: { node: '>=6' }
1628
+
1629
+ path-exists@4.0.0:
1630
+ resolution:
1631
+ {
1632
+ integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==,
1633
+ }
1634
+ engines: { node: '>=8' }
1635
+
1636
+ path-key@3.1.1:
1637
+ resolution:
1638
+ {
1639
+ integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==,
1640
+ }
1641
+ engines: { node: '>=8' }
1642
+
1643
+ pathe@2.0.3:
1644
+ resolution:
1645
+ {
1646
+ integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==,
1647
+ }
1648
+
1649
+ picocolors@1.1.1:
1650
+ resolution:
1651
+ {
1652
+ integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==,
1653
+ }
1654
+
1655
+ picomatch@4.0.3:
1656
+ resolution:
1657
+ {
1658
+ integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==,
1659
+ }
1660
+ engines: { node: '>=12' }
1661
+
1662
+ postcss@8.5.6:
1663
+ resolution:
1664
+ {
1665
+ integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==,
1666
+ }
1667
+ engines: { node: ^10 || ^12 || >=14 }
1668
+
1669
+ prelude-ls@1.2.1:
1670
+ resolution:
1671
+ {
1672
+ integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==,
1673
+ }
1674
+ engines: { node: '>= 0.8.0' }
1675
+
1676
+ prettier@3.8.1:
1677
+ resolution:
1678
+ {
1679
+ integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==,
1680
+ }
1681
+ engines: { node: '>=14' }
1682
+ hasBin: true
1683
+
1684
+ punycode@2.3.1:
1685
+ resolution:
1686
+ {
1687
+ integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==,
1688
+ }
1689
+ engines: { node: '>=6' }
1690
+
1691
+ resolve-from@4.0.0:
1692
+ resolution:
1693
+ {
1694
+ integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==,
1695
+ }
1696
+ engines: { node: '>=4' }
1697
+
1698
+ rollup@4.55.3:
1699
+ resolution:
1700
+ {
1701
+ integrity: sha512-y9yUpfQvetAjiDLtNMf1hL9NXchIJgWt6zIKeoB+tCd3npX08Eqfzg60V9DhIGVMtQ0AlMkFw5xa+AQ37zxnAA==,
1702
+ }
1703
+ engines: { node: '>=18.0.0', npm: '>=8.0.0' }
1704
+ hasBin: true
1705
+
1706
+ semver@7.7.3:
1707
+ resolution:
1708
+ {
1709
+ integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==,
1710
+ }
1711
+ engines: { node: '>=10' }
1712
+ hasBin: true
1713
+
1714
+ shebang-command@2.0.0:
1715
+ resolution:
1716
+ {
1717
+ integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==,
1718
+ }
1719
+ engines: { node: '>=8' }
1720
+
1721
+ shebang-regex@3.0.0:
1722
+ resolution:
1723
+ {
1724
+ integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==,
1725
+ }
1726
+ engines: { node: '>=8' }
1727
+
1728
+ siginfo@2.0.0:
1729
+ resolution:
1730
+ {
1731
+ integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==,
1732
+ }
1733
+
1734
+ source-map-js@1.2.1:
1735
+ resolution:
1736
+ {
1737
+ integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==,
1738
+ }
1739
+ engines: { node: '>=0.10.0' }
1740
+
1741
+ stackback@0.0.2:
1742
+ resolution:
1743
+ {
1744
+ integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==,
1745
+ }
1746
+
1747
+ std-env@3.10.0:
1748
+ resolution:
1749
+ {
1750
+ integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==,
1751
+ }
1752
+
1753
+ strip-json-comments@3.1.1:
1754
+ resolution:
1755
+ {
1756
+ integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==,
1757
+ }
1758
+ engines: { node: '>=8' }
1759
+
1760
+ supports-color@7.2.0:
1761
+ resolution:
1762
+ {
1763
+ integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==,
1764
+ }
1765
+ engines: { node: '>=8' }
1766
+
1767
+ tinybench@2.9.0:
1768
+ resolution:
1769
+ {
1770
+ integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==,
1771
+ }
1772
+
1773
+ tinyexec@1.0.2:
1774
+ resolution:
1775
+ {
1776
+ integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==,
1777
+ }
1778
+ engines: { node: '>=18' }
1779
+
1780
+ tinyglobby@0.2.15:
1781
+ resolution:
1782
+ {
1783
+ integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==,
1784
+ }
1785
+ engines: { node: '>=12.0.0' }
1786
+
1787
+ tinyrainbow@3.0.3:
1788
+ resolution:
1789
+ {
1790
+ integrity: sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==,
1791
+ }
1792
+ engines: { node: '>=14.0.0' }
1793
+
1794
+ ts-api-utils@2.4.0:
1795
+ resolution:
1796
+ {
1797
+ integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==,
1798
+ }
1799
+ engines: { node: '>=18.12' }
1800
+ peerDependencies:
1801
+ typescript: '>=4.8.4'
1802
+
1803
+ type-check@0.4.0:
1804
+ resolution:
1805
+ {
1806
+ integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==,
1807
+ }
1808
+ engines: { node: '>= 0.8.0' }
1809
+
1810
+ typescript@5.9.3:
1811
+ resolution:
1812
+ {
1813
+ integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==,
1814
+ }
1815
+ engines: { node: '>=14.17' }
1816
+ hasBin: true
1817
+
1818
+ undici-types@7.16.0:
1819
+ resolution:
1820
+ {
1821
+ integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==,
1822
+ }
1823
+
1824
+ uri-js@4.4.1:
1825
+ resolution:
1826
+ {
1827
+ integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==,
1828
+ }
1829
+
1830
+ vite@7.3.1:
1831
+ resolution:
1832
+ {
1833
+ integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==,
1834
+ }
1835
+ engines: { node: ^20.19.0 || >=22.12.0 }
1836
+ hasBin: true
1837
+ peerDependencies:
1838
+ '@types/node': ^20.19.0 || >=22.12.0
1839
+ jiti: '>=1.21.0'
1840
+ less: ^4.0.0
1841
+ lightningcss: ^1.21.0
1842
+ sass: ^1.70.0
1843
+ sass-embedded: ^1.70.0
1844
+ stylus: '>=0.54.8'
1845
+ sugarss: ^5.0.0
1846
+ terser: ^5.16.0
1847
+ tsx: ^4.8.1
1848
+ yaml: ^2.4.2
1849
+ peerDependenciesMeta:
1850
+ '@types/node':
1851
+ optional: true
1852
+ jiti:
1853
+ optional: true
1854
+ less:
1855
+ optional: true
1856
+ lightningcss:
1857
+ optional: true
1858
+ sass:
1859
+ optional: true
1860
+ sass-embedded:
1861
+ optional: true
1862
+ stylus:
1863
+ optional: true
1864
+ sugarss:
1865
+ optional: true
1866
+ terser:
1867
+ optional: true
1868
+ tsx:
1869
+ optional: true
1870
+ yaml:
1871
+ optional: true
1872
+
1873
+ vitest@4.0.17:
1874
+ resolution:
1875
+ {
1876
+ integrity: sha512-FQMeF0DJdWY0iOnbv466n/0BudNdKj1l5jYgl5JVTwjSsZSlqyXFt/9+1sEyhR6CLowbZpV7O1sCHrzBhucKKg==,
1877
+ }
1878
+ engines: { node: ^20.0.0 || ^22.0.0 || >=24.0.0 }
1879
+ hasBin: true
1880
+ peerDependencies:
1881
+ '@edge-runtime/vm': '*'
1882
+ '@opentelemetry/api': ^1.9.0
1883
+ '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0
1884
+ '@vitest/browser-playwright': 4.0.17
1885
+ '@vitest/browser-preview': 4.0.17
1886
+ '@vitest/browser-webdriverio': 4.0.17
1887
+ '@vitest/ui': 4.0.17
1888
+ happy-dom: '*'
1889
+ jsdom: '*'
1890
+ peerDependenciesMeta:
1891
+ '@edge-runtime/vm':
1892
+ optional: true
1893
+ '@opentelemetry/api':
1894
+ optional: true
1895
+ '@types/node':
1896
+ optional: true
1897
+ '@vitest/browser-playwright':
1898
+ optional: true
1899
+ '@vitest/browser-preview':
1900
+ optional: true
1901
+ '@vitest/browser-webdriverio':
1902
+ optional: true
1903
+ '@vitest/ui':
1904
+ optional: true
1905
+ happy-dom:
1906
+ optional: true
1907
+ jsdom:
1908
+ optional: true
1909
+
1910
+ whatwg-mimetype@3.0.0:
1911
+ resolution:
1912
+ {
1913
+ integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==,
1914
+ }
1915
+ engines: { node: '>=12' }
1916
+
1917
+ which@2.0.2:
1918
+ resolution:
1919
+ {
1920
+ integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==,
1921
+ }
1922
+ engines: { node: '>= 8' }
1923
+ hasBin: true
1924
+
1925
+ why-is-node-running@2.3.0:
1926
+ resolution:
1927
+ {
1928
+ integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==,
1929
+ }
1930
+ engines: { node: '>=8' }
1931
+ hasBin: true
1932
+
1933
+ word-wrap@1.2.5:
1934
+ resolution:
1935
+ {
1936
+ integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==,
1937
+ }
1938
+ engines: { node: '>=0.10.0' }
1939
+
1940
+ ws@8.19.0:
1941
+ resolution:
1942
+ {
1943
+ integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==,
1944
+ }
1945
+ engines: { node: '>=10.0.0' }
1946
+ peerDependencies:
1947
+ bufferutil: ^4.0.1
1948
+ utf-8-validate: '>=5.0.2'
1949
+ peerDependenciesMeta:
1950
+ bufferutil:
1951
+ optional: true
1952
+ utf-8-validate:
1953
+ optional: true
1954
+
1955
+ yocto-queue@0.1.0:
1956
+ resolution:
1957
+ {
1958
+ integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==,
1959
+ }
1960
+ engines: { node: '>=10' }
1961
+
1962
+ snapshots:
1963
+ '@babel/helper-string-parser@7.27.1': {}
1964
+
1965
+ '@babel/helper-validator-identifier@7.28.5': {}
1966
+
1967
+ '@babel/parser@7.28.6':
1968
+ dependencies:
1969
+ '@babel/types': 7.28.6
1970
+
1971
+ '@babel/types@7.28.6':
1972
+ dependencies:
1973
+ '@babel/helper-string-parser': 7.27.1
1974
+ '@babel/helper-validator-identifier': 7.28.5
1975
+
1976
+ '@bcoe/v8-coverage@1.0.2': {}
1977
+
1978
+ '@esbuild/aix-ppc64@0.20.2':
1979
+ optional: true
1980
+
1981
+ '@esbuild/aix-ppc64@0.27.2':
1982
+ optional: true
1983
+
1984
+ '@esbuild/android-arm64@0.20.2':
1985
+ optional: true
1986
+
1987
+ '@esbuild/android-arm64@0.27.2':
1988
+ optional: true
1989
+
1990
+ '@esbuild/android-arm@0.20.2':
1991
+ optional: true
1992
+
1993
+ '@esbuild/android-arm@0.27.2':
1994
+ optional: true
1995
+
1996
+ '@esbuild/android-x64@0.20.2':
1997
+ optional: true
1998
+
1999
+ '@esbuild/android-x64@0.27.2':
2000
+ optional: true
2001
+
2002
+ '@esbuild/darwin-arm64@0.20.2':
2003
+ optional: true
2004
+
2005
+ '@esbuild/darwin-arm64@0.27.2':
2006
+ optional: true
2007
+
2008
+ '@esbuild/darwin-x64@0.20.2':
2009
+ optional: true
2010
+
2011
+ '@esbuild/darwin-x64@0.27.2':
2012
+ optional: true
2013
+
2014
+ '@esbuild/freebsd-arm64@0.20.2':
2015
+ optional: true
2016
+
2017
+ '@esbuild/freebsd-arm64@0.27.2':
2018
+ optional: true
2019
+
2020
+ '@esbuild/freebsd-x64@0.20.2':
2021
+ optional: true
2022
+
2023
+ '@esbuild/freebsd-x64@0.27.2':
2024
+ optional: true
2025
+
2026
+ '@esbuild/linux-arm64@0.20.2':
2027
+ optional: true
2028
+
2029
+ '@esbuild/linux-arm64@0.27.2':
2030
+ optional: true
2031
+
2032
+ '@esbuild/linux-arm@0.20.2':
2033
+ optional: true
2034
+
2035
+ '@esbuild/linux-arm@0.27.2':
2036
+ optional: true
2037
+
2038
+ '@esbuild/linux-ia32@0.20.2':
2039
+ optional: true
2040
+
2041
+ '@esbuild/linux-ia32@0.27.2':
2042
+ optional: true
2043
+
2044
+ '@esbuild/linux-loong64@0.20.2':
2045
+ optional: true
2046
+
2047
+ '@esbuild/linux-loong64@0.27.2':
2048
+ optional: true
2049
+
2050
+ '@esbuild/linux-mips64el@0.20.2':
2051
+ optional: true
2052
+
2053
+ '@esbuild/linux-mips64el@0.27.2':
2054
+ optional: true
2055
+
2056
+ '@esbuild/linux-ppc64@0.20.2':
2057
+ optional: true
2058
+
2059
+ '@esbuild/linux-ppc64@0.27.2':
2060
+ optional: true
2061
+
2062
+ '@esbuild/linux-riscv64@0.20.2':
2063
+ optional: true
2064
+
2065
+ '@esbuild/linux-riscv64@0.27.2':
2066
+ optional: true
2067
+
2068
+ '@esbuild/linux-s390x@0.20.2':
2069
+ optional: true
2070
+
2071
+ '@esbuild/linux-s390x@0.27.2':
2072
+ optional: true
2073
+
2074
+ '@esbuild/linux-x64@0.20.2':
2075
+ optional: true
2076
+
2077
+ '@esbuild/linux-x64@0.27.2':
2078
+ optional: true
2079
+
2080
+ '@esbuild/netbsd-arm64@0.27.2':
2081
+ optional: true
2082
+
2083
+ '@esbuild/netbsd-x64@0.20.2':
2084
+ optional: true
2085
+
2086
+ '@esbuild/netbsd-x64@0.27.2':
2087
+ optional: true
2088
+
2089
+ '@esbuild/openbsd-arm64@0.27.2':
2090
+ optional: true
2091
+
2092
+ '@esbuild/openbsd-x64@0.20.2':
2093
+ optional: true
2094
+
2095
+ '@esbuild/openbsd-x64@0.27.2':
2096
+ optional: true
2097
+
2098
+ '@esbuild/openharmony-arm64@0.27.2':
2099
+ optional: true
2100
+
2101
+ '@esbuild/sunos-x64@0.20.2':
2102
+ optional: true
2103
+
2104
+ '@esbuild/sunos-x64@0.27.2':
2105
+ optional: true
2106
+
2107
+ '@esbuild/win32-arm64@0.20.2':
2108
+ optional: true
2109
+
2110
+ '@esbuild/win32-arm64@0.27.2':
2111
+ optional: true
2112
+
2113
+ '@esbuild/win32-ia32@0.20.2':
2114
+ optional: true
2115
+
2116
+ '@esbuild/win32-ia32@0.27.2':
2117
+ optional: true
2118
+
2119
+ '@esbuild/win32-x64@0.20.2':
2120
+ optional: true
2121
+
2122
+ '@esbuild/win32-x64@0.27.2':
2123
+ optional: true
2124
+
2125
+ '@eslint-community/eslint-utils@4.9.1(eslint@9.39.2)':
2126
+ dependencies:
2127
+ eslint: 9.39.2
2128
+ eslint-visitor-keys: 3.4.3
2129
+
2130
+ '@eslint-community/regexpp@4.12.2': {}
2131
+
2132
+ '@eslint/config-array@0.21.1':
2133
+ dependencies:
2134
+ '@eslint/object-schema': 2.1.7
2135
+ debug: 4.4.3
2136
+ minimatch: 3.1.2
2137
+ transitivePeerDependencies:
2138
+ - supports-color
2139
+
2140
+ '@eslint/config-helpers@0.4.2':
2141
+ dependencies:
2142
+ '@eslint/core': 0.17.0
2143
+
2144
+ '@eslint/core@0.17.0':
2145
+ dependencies:
2146
+ '@types/json-schema': 7.0.15
2147
+
2148
+ '@eslint/eslintrc@3.3.3':
2149
+ dependencies:
2150
+ ajv: 6.12.6
2151
+ debug: 4.4.3
2152
+ espree: 10.4.0
2153
+ globals: 14.0.0
2154
+ ignore: 5.3.2
2155
+ import-fresh: 3.3.1
2156
+ js-yaml: 4.1.1
2157
+ minimatch: 3.1.2
2158
+ strip-json-comments: 3.1.1
2159
+ transitivePeerDependencies:
2160
+ - supports-color
2161
+
2162
+ '@eslint/js@9.39.2': {}
2163
+
2164
+ '@eslint/object-schema@2.1.7': {}
2165
+
2166
+ '@eslint/plugin-kit@0.4.1':
2167
+ dependencies:
2168
+ '@eslint/core': 0.17.0
2169
+ levn: 0.4.1
2170
+
2171
+ '@humanfs/core@0.19.1': {}
2172
+
2173
+ '@humanfs/node@0.16.7':
2174
+ dependencies:
2175
+ '@humanfs/core': 0.19.1
2176
+ '@humanwhocodes/retry': 0.4.3
2177
+
2178
+ '@humanwhocodes/module-importer@1.0.1': {}
2179
+
2180
+ '@humanwhocodes/retry@0.4.3': {}
2181
+
2182
+ '@jridgewell/resolve-uri@3.1.2': {}
2183
+
2184
+ '@jridgewell/sourcemap-codec@1.5.5': {}
2185
+
2186
+ '@jridgewell/trace-mapping@0.3.31':
2187
+ dependencies:
2188
+ '@jridgewell/resolve-uri': 3.1.2
2189
+ '@jridgewell/sourcemap-codec': 1.5.5
2190
+
2191
+ '@msgpack/msgpack@3.1.3': {}
2192
+
2193
+ '@rollup/rollup-android-arm-eabi@4.55.3':
2194
+ optional: true
2195
+
2196
+ '@rollup/rollup-android-arm64@4.55.3':
2197
+ optional: true
2198
+
2199
+ '@rollup/rollup-darwin-arm64@4.55.3':
2200
+ optional: true
2201
+
2202
+ '@rollup/rollup-darwin-x64@4.55.3':
2203
+ optional: true
2204
+
2205
+ '@rollup/rollup-freebsd-arm64@4.55.3':
2206
+ optional: true
2207
+
2208
+ '@rollup/rollup-freebsd-x64@4.55.3':
2209
+ optional: true
2210
+
2211
+ '@rollup/rollup-linux-arm-gnueabihf@4.55.3':
2212
+ optional: true
2213
+
2214
+ '@rollup/rollup-linux-arm-musleabihf@4.55.3':
2215
+ optional: true
2216
+
2217
+ '@rollup/rollup-linux-arm64-gnu@4.55.3':
2218
+ optional: true
2219
+
2220
+ '@rollup/rollup-linux-arm64-musl@4.55.3':
2221
+ optional: true
2222
+
2223
+ '@rollup/rollup-linux-loong64-gnu@4.55.3':
2224
+ optional: true
2225
+
2226
+ '@rollup/rollup-linux-loong64-musl@4.55.3':
2227
+ optional: true
2228
+
2229
+ '@rollup/rollup-linux-ppc64-gnu@4.55.3':
2230
+ optional: true
2231
+
2232
+ '@rollup/rollup-linux-ppc64-musl@4.55.3':
2233
+ optional: true
2234
+
2235
+ '@rollup/rollup-linux-riscv64-gnu@4.55.3':
2236
+ optional: true
2237
+
2238
+ '@rollup/rollup-linux-riscv64-musl@4.55.3':
2239
+ optional: true
2240
+
2241
+ '@rollup/rollup-linux-s390x-gnu@4.55.3':
2242
+ optional: true
2243
+
2244
+ '@rollup/rollup-linux-x64-gnu@4.55.3':
2245
+ optional: true
2246
+
2247
+ '@rollup/rollup-linux-x64-musl@4.55.3':
2248
+ optional: true
2249
+
2250
+ '@rollup/rollup-openbsd-x64@4.55.3':
2251
+ optional: true
2252
+
2253
+ '@rollup/rollup-openharmony-arm64@4.55.3':
2254
+ optional: true
2255
+
2256
+ '@rollup/rollup-win32-arm64-msvc@4.55.3':
2257
+ optional: true
2258
+
2259
+ '@rollup/rollup-win32-ia32-msvc@4.55.3':
2260
+ optional: true
2261
+
2262
+ '@rollup/rollup-win32-x64-gnu@4.55.3':
2263
+ optional: true
2264
+
2265
+ '@rollup/rollup-win32-x64-msvc@4.55.3':
2266
+ optional: true
2267
+
2268
+ '@standard-schema/spec@1.1.0': {}
2269
+
2270
+ '@types/chai@5.2.3':
2271
+ dependencies:
2272
+ '@types/deep-eql': 4.0.2
2273
+ assertion-error: 2.0.1
2274
+
2275
+ '@types/deep-eql@4.0.2': {}
2276
+
2277
+ '@types/estree@1.0.8': {}
2278
+
2279
+ '@types/json-schema@7.0.15': {}
2280
+
2281
+ '@types/morphdom@2.3.0': {}
2282
+
2283
+ '@types/node@25.0.9':
2284
+ dependencies:
2285
+ undici-types: 7.16.0
2286
+
2287
+ '@types/whatwg-mimetype@3.0.2': {}
2288
+
2289
+ '@types/ws@8.18.1':
2290
+ dependencies:
2291
+ '@types/node': 25.0.9
2292
+
2293
+ '@typescript-eslint/eslint-plugin@8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3)':
2294
+ dependencies:
2295
+ '@eslint-community/regexpp': 4.12.2
2296
+ '@typescript-eslint/parser': 8.54.0(eslint@9.39.2)(typescript@5.9.3)
2297
+ '@typescript-eslint/scope-manager': 8.54.0
2298
+ '@typescript-eslint/type-utils': 8.54.0(eslint@9.39.2)(typescript@5.9.3)
2299
+ '@typescript-eslint/utils': 8.54.0(eslint@9.39.2)(typescript@5.9.3)
2300
+ '@typescript-eslint/visitor-keys': 8.54.0
2301
+ eslint: 9.39.2
2302
+ ignore: 7.0.5
2303
+ natural-compare: 1.4.0
2304
+ ts-api-utils: 2.4.0(typescript@5.9.3)
2305
+ typescript: 5.9.3
2306
+ transitivePeerDependencies:
2307
+ - supports-color
2308
+
2309
+ '@typescript-eslint/parser@8.54.0(eslint@9.39.2)(typescript@5.9.3)':
2310
+ dependencies:
2311
+ '@typescript-eslint/scope-manager': 8.54.0
2312
+ '@typescript-eslint/types': 8.54.0
2313
+ '@typescript-eslint/typescript-estree': 8.54.0(typescript@5.9.3)
2314
+ '@typescript-eslint/visitor-keys': 8.54.0
2315
+ debug: 4.4.3
2316
+ eslint: 9.39.2
2317
+ typescript: 5.9.3
2318
+ transitivePeerDependencies:
2319
+ - supports-color
2320
+
2321
+ '@typescript-eslint/project-service@8.54.0(typescript@5.9.3)':
2322
+ dependencies:
2323
+ '@typescript-eslint/tsconfig-utils': 8.54.0(typescript@5.9.3)
2324
+ '@typescript-eslint/types': 8.54.0
2325
+ debug: 4.4.3
2326
+ typescript: 5.9.3
2327
+ transitivePeerDependencies:
2328
+ - supports-color
2329
+
2330
+ '@typescript-eslint/scope-manager@8.54.0':
2331
+ dependencies:
2332
+ '@typescript-eslint/types': 8.54.0
2333
+ '@typescript-eslint/visitor-keys': 8.54.0
2334
+
2335
+ '@typescript-eslint/tsconfig-utils@8.54.0(typescript@5.9.3)':
2336
+ dependencies:
2337
+ typescript: 5.9.3
2338
+
2339
+ '@typescript-eslint/type-utils@8.54.0(eslint@9.39.2)(typescript@5.9.3)':
2340
+ dependencies:
2341
+ '@typescript-eslint/types': 8.54.0
2342
+ '@typescript-eslint/typescript-estree': 8.54.0(typescript@5.9.3)
2343
+ '@typescript-eslint/utils': 8.54.0(eslint@9.39.2)(typescript@5.9.3)
2344
+ debug: 4.4.3
2345
+ eslint: 9.39.2
2346
+ ts-api-utils: 2.4.0(typescript@5.9.3)
2347
+ typescript: 5.9.3
2348
+ transitivePeerDependencies:
2349
+ - supports-color
2350
+
2351
+ '@typescript-eslint/types@8.54.0': {}
2352
+
2353
+ '@typescript-eslint/typescript-estree@8.54.0(typescript@5.9.3)':
2354
+ dependencies:
2355
+ '@typescript-eslint/project-service': 8.54.0(typescript@5.9.3)
2356
+ '@typescript-eslint/tsconfig-utils': 8.54.0(typescript@5.9.3)
2357
+ '@typescript-eslint/types': 8.54.0
2358
+ '@typescript-eslint/visitor-keys': 8.54.0
2359
+ debug: 4.4.3
2360
+ minimatch: 9.0.5
2361
+ semver: 7.7.3
2362
+ tinyglobby: 0.2.15
2363
+ ts-api-utils: 2.4.0(typescript@5.9.3)
2364
+ typescript: 5.9.3
2365
+ transitivePeerDependencies:
2366
+ - supports-color
2367
+
2368
+ '@typescript-eslint/utils@8.54.0(eslint@9.39.2)(typescript@5.9.3)':
2369
+ dependencies:
2370
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2)
2371
+ '@typescript-eslint/scope-manager': 8.54.0
2372
+ '@typescript-eslint/types': 8.54.0
2373
+ '@typescript-eslint/typescript-estree': 8.54.0(typescript@5.9.3)
2374
+ eslint: 9.39.2
2375
+ typescript: 5.9.3
2376
+ transitivePeerDependencies:
2377
+ - supports-color
2378
+
2379
+ '@typescript-eslint/visitor-keys@8.54.0':
2380
+ dependencies:
2381
+ '@typescript-eslint/types': 8.54.0
2382
+ eslint-visitor-keys: 4.2.1
2383
+
2384
+ '@vitest/coverage-v8@4.0.17(vitest@4.0.17(@types/node@25.0.9)(happy-dom@20.3.6))':
2385
+ dependencies:
2386
+ '@bcoe/v8-coverage': 1.0.2
2387
+ '@vitest/utils': 4.0.17
2388
+ ast-v8-to-istanbul: 0.3.10
2389
+ istanbul-lib-coverage: 3.2.2
2390
+ istanbul-lib-report: 3.0.1
2391
+ istanbul-reports: 3.2.0
2392
+ magicast: 0.5.1
2393
+ obug: 2.1.1
2394
+ std-env: 3.10.0
2395
+ tinyrainbow: 3.0.3
2396
+ vitest: 4.0.17(@types/node@25.0.9)(happy-dom@20.3.6)
2397
+
2398
+ '@vitest/expect@4.0.17':
2399
+ dependencies:
2400
+ '@standard-schema/spec': 1.1.0
2401
+ '@types/chai': 5.2.3
2402
+ '@vitest/spy': 4.0.17
2403
+ '@vitest/utils': 4.0.17
2404
+ chai: 6.2.2
2405
+ tinyrainbow: 3.0.3
2406
+
2407
+ '@vitest/mocker@4.0.17(vite@7.3.1(@types/node@25.0.9))':
2408
+ dependencies:
2409
+ '@vitest/spy': 4.0.17
2410
+ estree-walker: 3.0.3
2411
+ magic-string: 0.30.21
2412
+ optionalDependencies:
2413
+ vite: 7.3.1(@types/node@25.0.9)
2414
+
2415
+ '@vitest/pretty-format@4.0.17':
2416
+ dependencies:
2417
+ tinyrainbow: 3.0.3
2418
+
2419
+ '@vitest/runner@4.0.17':
2420
+ dependencies:
2421
+ '@vitest/utils': 4.0.17
2422
+ pathe: 2.0.3
2423
+
2424
+ '@vitest/snapshot@4.0.17':
2425
+ dependencies:
2426
+ '@vitest/pretty-format': 4.0.17
2427
+ magic-string: 0.30.21
2428
+ pathe: 2.0.3
2429
+
2430
+ '@vitest/spy@4.0.17': {}
2431
+
2432
+ '@vitest/utils@4.0.17':
2433
+ dependencies:
2434
+ '@vitest/pretty-format': 4.0.17
2435
+ tinyrainbow: 3.0.3
2436
+
2437
+ acorn-jsx@5.3.2(acorn@8.15.0):
2438
+ dependencies:
2439
+ acorn: 8.15.0
2440
+
2441
+ acorn@8.15.0: {}
2442
+
2443
+ ajv@6.12.6:
2444
+ dependencies:
2445
+ fast-deep-equal: 3.1.3
2446
+ fast-json-stable-stringify: 2.1.0
2447
+ json-schema-traverse: 0.4.1
2448
+ uri-js: 4.4.1
2449
+
2450
+ ansi-styles@4.3.0:
2451
+ dependencies:
2452
+ color-convert: 2.0.1
2453
+
2454
+ argparse@2.0.1: {}
2455
+
2456
+ assertion-error@2.0.1: {}
2457
+
2458
+ ast-v8-to-istanbul@0.3.10:
2459
+ dependencies:
2460
+ '@jridgewell/trace-mapping': 0.3.31
2461
+ estree-walker: 3.0.3
2462
+ js-tokens: 9.0.1
2463
+
2464
+ balanced-match@1.0.2: {}
2465
+
2466
+ brace-expansion@1.1.12:
2467
+ dependencies:
2468
+ balanced-match: 1.0.2
2469
+ concat-map: 0.0.1
2470
+
2471
+ brace-expansion@2.0.2:
2472
+ dependencies:
2473
+ balanced-match: 1.0.2
2474
+
2475
+ callsites@3.1.0: {}
2476
+
2477
+ chai@6.2.2: {}
2478
+
2479
+ chalk@4.1.2:
2480
+ dependencies:
2481
+ ansi-styles: 4.3.0
2482
+ supports-color: 7.2.0
2483
+
2484
+ color-convert@2.0.1:
2485
+ dependencies:
2486
+ color-name: 1.1.4
2487
+
2488
+ color-name@1.1.4: {}
2489
+
2490
+ concat-map@0.0.1: {}
2491
+
2492
+ cross-spawn@7.0.6:
2493
+ dependencies:
2494
+ path-key: 3.1.1
2495
+ shebang-command: 2.0.0
2496
+ which: 2.0.2
2497
+
2498
+ debug@4.4.3:
2499
+ dependencies:
2500
+ ms: 2.1.3
2501
+
2502
+ deep-is@0.1.4: {}
2503
+
2504
+ entities@4.5.0: {}
2505
+
2506
+ es-module-lexer@1.7.0: {}
2507
+
2508
+ esbuild@0.20.2:
2509
+ optionalDependencies:
2510
+ '@esbuild/aix-ppc64': 0.20.2
2511
+ '@esbuild/android-arm': 0.20.2
2512
+ '@esbuild/android-arm64': 0.20.2
2513
+ '@esbuild/android-x64': 0.20.2
2514
+ '@esbuild/darwin-arm64': 0.20.2
2515
+ '@esbuild/darwin-x64': 0.20.2
2516
+ '@esbuild/freebsd-arm64': 0.20.2
2517
+ '@esbuild/freebsd-x64': 0.20.2
2518
+ '@esbuild/linux-arm': 0.20.2
2519
+ '@esbuild/linux-arm64': 0.20.2
2520
+ '@esbuild/linux-ia32': 0.20.2
2521
+ '@esbuild/linux-loong64': 0.20.2
2522
+ '@esbuild/linux-mips64el': 0.20.2
2523
+ '@esbuild/linux-ppc64': 0.20.2
2524
+ '@esbuild/linux-riscv64': 0.20.2
2525
+ '@esbuild/linux-s390x': 0.20.2
2526
+ '@esbuild/linux-x64': 0.20.2
2527
+ '@esbuild/netbsd-x64': 0.20.2
2528
+ '@esbuild/openbsd-x64': 0.20.2
2529
+ '@esbuild/sunos-x64': 0.20.2
2530
+ '@esbuild/win32-arm64': 0.20.2
2531
+ '@esbuild/win32-ia32': 0.20.2
2532
+ '@esbuild/win32-x64': 0.20.2
2533
+
2534
+ esbuild@0.27.2:
2535
+ optionalDependencies:
2536
+ '@esbuild/aix-ppc64': 0.27.2
2537
+ '@esbuild/android-arm': 0.27.2
2538
+ '@esbuild/android-arm64': 0.27.2
2539
+ '@esbuild/android-x64': 0.27.2
2540
+ '@esbuild/darwin-arm64': 0.27.2
2541
+ '@esbuild/darwin-x64': 0.27.2
2542
+ '@esbuild/freebsd-arm64': 0.27.2
2543
+ '@esbuild/freebsd-x64': 0.27.2
2544
+ '@esbuild/linux-arm': 0.27.2
2545
+ '@esbuild/linux-arm64': 0.27.2
2546
+ '@esbuild/linux-ia32': 0.27.2
2547
+ '@esbuild/linux-loong64': 0.27.2
2548
+ '@esbuild/linux-mips64el': 0.27.2
2549
+ '@esbuild/linux-ppc64': 0.27.2
2550
+ '@esbuild/linux-riscv64': 0.27.2
2551
+ '@esbuild/linux-s390x': 0.27.2
2552
+ '@esbuild/linux-x64': 0.27.2
2553
+ '@esbuild/netbsd-arm64': 0.27.2
2554
+ '@esbuild/netbsd-x64': 0.27.2
2555
+ '@esbuild/openbsd-arm64': 0.27.2
2556
+ '@esbuild/openbsd-x64': 0.27.2
2557
+ '@esbuild/openharmony-arm64': 0.27.2
2558
+ '@esbuild/sunos-x64': 0.27.2
2559
+ '@esbuild/win32-arm64': 0.27.2
2560
+ '@esbuild/win32-ia32': 0.27.2
2561
+ '@esbuild/win32-x64': 0.27.2
2562
+
2563
+ escape-string-regexp@4.0.0: {}
2564
+
2565
+ eslint-scope@8.4.0:
2566
+ dependencies:
2567
+ esrecurse: 4.3.0
2568
+ estraverse: 5.3.0
2569
+
2570
+ eslint-visitor-keys@3.4.3: {}
2571
+
2572
+ eslint-visitor-keys@4.2.1: {}
2573
+
2574
+ eslint@9.39.2:
2575
+ dependencies:
2576
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2)
2577
+ '@eslint-community/regexpp': 4.12.2
2578
+ '@eslint/config-array': 0.21.1
2579
+ '@eslint/config-helpers': 0.4.2
2580
+ '@eslint/core': 0.17.0
2581
+ '@eslint/eslintrc': 3.3.3
2582
+ '@eslint/js': 9.39.2
2583
+ '@eslint/plugin-kit': 0.4.1
2584
+ '@humanfs/node': 0.16.7
2585
+ '@humanwhocodes/module-importer': 1.0.1
2586
+ '@humanwhocodes/retry': 0.4.3
2587
+ '@types/estree': 1.0.8
2588
+ ajv: 6.12.6
2589
+ chalk: 4.1.2
2590
+ cross-spawn: 7.0.6
2591
+ debug: 4.4.3
2592
+ escape-string-regexp: 4.0.0
2593
+ eslint-scope: 8.4.0
2594
+ eslint-visitor-keys: 4.2.1
2595
+ espree: 10.4.0
2596
+ esquery: 1.7.0
2597
+ esutils: 2.0.3
2598
+ fast-deep-equal: 3.1.3
2599
+ file-entry-cache: 8.0.0
2600
+ find-up: 5.0.0
2601
+ glob-parent: 6.0.2
2602
+ ignore: 5.3.2
2603
+ imurmurhash: 0.1.4
2604
+ is-glob: 4.0.3
2605
+ json-stable-stringify-without-jsonify: 1.0.1
2606
+ lodash.merge: 4.6.2
2607
+ minimatch: 3.1.2
2608
+ natural-compare: 1.4.0
2609
+ optionator: 0.9.4
2610
+ transitivePeerDependencies:
2611
+ - supports-color
2612
+
2613
+ espree@10.4.0:
2614
+ dependencies:
2615
+ acorn: 8.15.0
2616
+ acorn-jsx: 5.3.2(acorn@8.15.0)
2617
+ eslint-visitor-keys: 4.2.1
2618
+
2619
+ esquery@1.7.0:
2620
+ dependencies:
2621
+ estraverse: 5.3.0
2622
+
2623
+ esrecurse@4.3.0:
2624
+ dependencies:
2625
+ estraverse: 5.3.0
2626
+
2627
+ estraverse@5.3.0: {}
2628
+
2629
+ estree-walker@3.0.3:
2630
+ dependencies:
2631
+ '@types/estree': 1.0.8
2632
+
2633
+ esutils@2.0.3: {}
2634
+
2635
+ expect-type@1.3.0: {}
2636
+
2637
+ fast-deep-equal@3.1.3: {}
2638
+
2639
+ fast-json-stable-stringify@2.1.0: {}
2640
+
2641
+ fast-levenshtein@2.0.6: {}
2642
+
2643
+ fdir@6.5.0(picomatch@4.0.3):
2644
+ optionalDependencies:
2645
+ picomatch: 4.0.3
2646
+
2647
+ file-entry-cache@8.0.0:
2648
+ dependencies:
2649
+ flat-cache: 4.0.1
2650
+
2651
+ find-up@5.0.0:
2652
+ dependencies:
2653
+ locate-path: 6.0.0
2654
+ path-exists: 4.0.0
2655
+
2656
+ flat-cache@4.0.1:
2657
+ dependencies:
2658
+ flatted: 3.3.3
2659
+ keyv: 4.5.4
2660
+
2661
+ flatted@3.3.3: {}
2662
+
2663
+ fsevents@2.3.3:
2664
+ optional: true
2665
+
2666
+ glob-parent@6.0.2:
2667
+ dependencies:
2668
+ is-glob: 4.0.3
2669
+
2670
+ globals@14.0.0: {}
2671
+
2672
+ globals@16.5.0: {}
2673
+
2674
+ happy-dom@20.3.6:
2675
+ dependencies:
2676
+ '@types/node': 25.0.9
2677
+ '@types/whatwg-mimetype': 3.0.2
2678
+ '@types/ws': 8.18.1
2679
+ entities: 4.5.0
2680
+ whatwg-mimetype: 3.0.0
2681
+ ws: 8.19.0
2682
+ transitivePeerDependencies:
2683
+ - bufferutil
2684
+ - utf-8-validate
2685
+
2686
+ has-flag@4.0.0: {}
2687
+
2688
+ html-escaper@2.0.2: {}
2689
+
2690
+ ignore@5.3.2: {}
2691
+
2692
+ ignore@7.0.5: {}
2693
+
2694
+ import-fresh@3.3.1:
2695
+ dependencies:
2696
+ parent-module: 1.0.1
2697
+ resolve-from: 4.0.0
2698
+
2699
+ imurmurhash@0.1.4: {}
2700
+
2701
+ is-extglob@2.1.1: {}
2702
+
2703
+ is-glob@4.0.3:
2704
+ dependencies:
2705
+ is-extglob: 2.1.1
2706
+
2707
+ isexe@2.0.0: {}
2708
+
2709
+ istanbul-lib-coverage@3.2.2: {}
2710
+
2711
+ istanbul-lib-report@3.0.1:
2712
+ dependencies:
2713
+ istanbul-lib-coverage: 3.2.2
2714
+ make-dir: 4.0.0
2715
+ supports-color: 7.2.0
2716
+
2717
+ istanbul-reports@3.2.0:
2718
+ dependencies:
2719
+ html-escaper: 2.0.2
2720
+ istanbul-lib-report: 3.0.1
2721
+
2722
+ js-tokens@9.0.1: {}
2723
+
2724
+ js-yaml@4.1.1:
2725
+ dependencies:
2726
+ argparse: 2.0.1
2727
+
2728
+ json-buffer@3.0.1: {}
2729
+
2730
+ json-schema-traverse@0.4.1: {}
2731
+
2732
+ json-stable-stringify-without-jsonify@1.0.1: {}
2733
+
2734
+ keyv@4.5.4:
2735
+ dependencies:
2736
+ json-buffer: 3.0.1
2737
+
2738
+ levn@0.4.1:
2739
+ dependencies:
2740
+ prelude-ls: 1.2.1
2741
+ type-check: 0.4.0
2742
+
2743
+ locate-path@6.0.0:
2744
+ dependencies:
2745
+ p-locate: 5.0.0
2746
+
2747
+ lodash.merge@4.6.2: {}
2748
+
2749
+ magic-string@0.30.21:
2750
+ dependencies:
2751
+ '@jridgewell/sourcemap-codec': 1.5.5
2752
+
2753
+ magicast@0.5.1:
2754
+ dependencies:
2755
+ '@babel/parser': 7.28.6
2756
+ '@babel/types': 7.28.6
2757
+ source-map-js: 1.2.1
2758
+
2759
+ make-dir@4.0.0:
2760
+ dependencies:
2761
+ semver: 7.7.3
2762
+
2763
+ minimatch@3.1.2:
2764
+ dependencies:
2765
+ brace-expansion: 1.1.12
2766
+
2767
+ minimatch@9.0.5:
2768
+ dependencies:
2769
+ brace-expansion: 2.0.2
2770
+
2771
+ morphdom@2.7.7: {}
2772
+
2773
+ ms@2.1.3: {}
2774
+
2775
+ nanoid@3.3.11: {}
2776
+
2777
+ natural-compare@1.4.0: {}
2778
+
2779
+ obug@2.1.1: {}
2780
+
2781
+ optionator@0.9.4:
2782
+ dependencies:
2783
+ deep-is: 0.1.4
2784
+ fast-levenshtein: 2.0.6
2785
+ levn: 0.4.1
2786
+ prelude-ls: 1.2.1
2787
+ type-check: 0.4.0
2788
+ word-wrap: 1.2.5
2789
+
2790
+ p-limit@3.1.0:
2791
+ dependencies:
2792
+ yocto-queue: 0.1.0
2793
+
2794
+ p-locate@5.0.0:
2795
+ dependencies:
2796
+ p-limit: 3.1.0
2797
+
2798
+ parent-module@1.0.1:
2799
+ dependencies:
2800
+ callsites: 3.1.0
2801
+
2802
+ path-exists@4.0.0: {}
2803
+
2804
+ path-key@3.1.1: {}
2805
+
2806
+ pathe@2.0.3: {}
2807
+
2808
+ picocolors@1.1.1: {}
2809
+
2810
+ picomatch@4.0.3: {}
2811
+
2812
+ postcss@8.5.6:
2813
+ dependencies:
2814
+ nanoid: 3.3.11
2815
+ picocolors: 1.1.1
2816
+ source-map-js: 1.2.1
2817
+
2818
+ prelude-ls@1.2.1: {}
2819
+
2820
+ prettier@3.8.1: {}
2821
+
2822
+ punycode@2.3.1: {}
2823
+
2824
+ resolve-from@4.0.0: {}
2825
+
2826
+ rollup@4.55.3:
2827
+ dependencies:
2828
+ '@types/estree': 1.0.8
2829
+ optionalDependencies:
2830
+ '@rollup/rollup-android-arm-eabi': 4.55.3
2831
+ '@rollup/rollup-android-arm64': 4.55.3
2832
+ '@rollup/rollup-darwin-arm64': 4.55.3
2833
+ '@rollup/rollup-darwin-x64': 4.55.3
2834
+ '@rollup/rollup-freebsd-arm64': 4.55.3
2835
+ '@rollup/rollup-freebsd-x64': 4.55.3
2836
+ '@rollup/rollup-linux-arm-gnueabihf': 4.55.3
2837
+ '@rollup/rollup-linux-arm-musleabihf': 4.55.3
2838
+ '@rollup/rollup-linux-arm64-gnu': 4.55.3
2839
+ '@rollup/rollup-linux-arm64-musl': 4.55.3
2840
+ '@rollup/rollup-linux-loong64-gnu': 4.55.3
2841
+ '@rollup/rollup-linux-loong64-musl': 4.55.3
2842
+ '@rollup/rollup-linux-ppc64-gnu': 4.55.3
2843
+ '@rollup/rollup-linux-ppc64-musl': 4.55.3
2844
+ '@rollup/rollup-linux-riscv64-gnu': 4.55.3
2845
+ '@rollup/rollup-linux-riscv64-musl': 4.55.3
2846
+ '@rollup/rollup-linux-s390x-gnu': 4.55.3
2847
+ '@rollup/rollup-linux-x64-gnu': 4.55.3
2848
+ '@rollup/rollup-linux-x64-musl': 4.55.3
2849
+ '@rollup/rollup-openbsd-x64': 4.55.3
2850
+ '@rollup/rollup-openharmony-arm64': 4.55.3
2851
+ '@rollup/rollup-win32-arm64-msvc': 4.55.3
2852
+ '@rollup/rollup-win32-ia32-msvc': 4.55.3
2853
+ '@rollup/rollup-win32-x64-gnu': 4.55.3
2854
+ '@rollup/rollup-win32-x64-msvc': 4.55.3
2855
+ fsevents: 2.3.3
2856
+
2857
+ semver@7.7.3: {}
2858
+
2859
+ shebang-command@2.0.0:
2860
+ dependencies:
2861
+ shebang-regex: 3.0.0
2862
+
2863
+ shebang-regex@3.0.0: {}
2864
+
2865
+ siginfo@2.0.0: {}
2866
+
2867
+ source-map-js@1.2.1: {}
2868
+
2869
+ stackback@0.0.2: {}
2870
+
2871
+ std-env@3.10.0: {}
2872
+
2873
+ strip-json-comments@3.1.1: {}
2874
+
2875
+ supports-color@7.2.0:
2876
+ dependencies:
2877
+ has-flag: 4.0.0
2878
+
2879
+ tinybench@2.9.0: {}
2880
+
2881
+ tinyexec@1.0.2: {}
2882
+
2883
+ tinyglobby@0.2.15:
2884
+ dependencies:
2885
+ fdir: 6.5.0(picomatch@4.0.3)
2886
+ picomatch: 4.0.3
2887
+
2888
+ tinyrainbow@3.0.3: {}
2889
+
2890
+ ts-api-utils@2.4.0(typescript@5.9.3):
2891
+ dependencies:
2892
+ typescript: 5.9.3
2893
+
2894
+ type-check@0.4.0:
2895
+ dependencies:
2896
+ prelude-ls: 1.2.1
2897
+
2898
+ typescript@5.9.3: {}
2899
+
2900
+ undici-types@7.16.0: {}
2901
+
2902
+ uri-js@4.4.1:
2903
+ dependencies:
2904
+ punycode: 2.3.1
2905
+
2906
+ vite@7.3.1(@types/node@25.0.9):
2907
+ dependencies:
2908
+ esbuild: 0.27.2
2909
+ fdir: 6.5.0(picomatch@4.0.3)
2910
+ picomatch: 4.0.3
2911
+ postcss: 8.5.6
2912
+ rollup: 4.55.3
2913
+ tinyglobby: 0.2.15
2914
+ optionalDependencies:
2915
+ '@types/node': 25.0.9
2916
+ fsevents: 2.3.3
2917
+
2918
+ vitest@4.0.17(@types/node@25.0.9)(happy-dom@20.3.6):
2919
+ dependencies:
2920
+ '@vitest/expect': 4.0.17
2921
+ '@vitest/mocker': 4.0.17(vite@7.3.1(@types/node@25.0.9))
2922
+ '@vitest/pretty-format': 4.0.17
2923
+ '@vitest/runner': 4.0.17
2924
+ '@vitest/snapshot': 4.0.17
2925
+ '@vitest/spy': 4.0.17
2926
+ '@vitest/utils': 4.0.17
2927
+ es-module-lexer: 1.7.0
2928
+ expect-type: 1.3.0
2929
+ magic-string: 0.30.21
2930
+ obug: 2.1.1
2931
+ pathe: 2.0.3
2932
+ picomatch: 4.0.3
2933
+ std-env: 3.10.0
2934
+ tinybench: 2.9.0
2935
+ tinyexec: 1.0.2
2936
+ tinyglobby: 0.2.15
2937
+ tinyrainbow: 3.0.3
2938
+ vite: 7.3.1(@types/node@25.0.9)
2939
+ why-is-node-running: 2.3.0
2940
+ optionalDependencies:
2941
+ '@types/node': 25.0.9
2942
+ happy-dom: 20.3.6
2943
+ transitivePeerDependencies:
2944
+ - jiti
2945
+ - less
2946
+ - lightningcss
2947
+ - msw
2948
+ - sass
2949
+ - sass-embedded
2950
+ - stylus
2951
+ - sugarss
2952
+ - terser
2953
+ - tsx
2954
+ - yaml
2955
+
2956
+ whatwg-mimetype@3.0.0: {}
2957
+
2958
+ which@2.0.2:
2959
+ dependencies:
2960
+ isexe: 2.0.0
2961
+
2962
+ why-is-node-running@2.3.0:
2963
+ dependencies:
2964
+ siginfo: 2.0.0
2965
+ stackback: 0.0.2
2966
+
2967
+ word-wrap@1.2.5: {}
2968
+
2969
+ ws@8.19.0: {}
2970
+
2971
+ yocto-queue@0.1.0: {}