@animalabs/connectome-host 0.3.1 → 0.3.7

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 (41) hide show
  1. package/.env.example +6 -0
  2. package/.github/workflows/publish.yml +9 -4
  3. package/README.md +5 -0
  4. package/bun.lock +8 -4
  5. package/docs/AGENT-ONBOARDING.md +6 -1
  6. package/package.json +5 -5
  7. package/scripts/import-codex-rollout.ts +288 -0
  8. package/src/call-ledger.ts +371 -0
  9. package/src/call-pricing.ts +119 -0
  10. package/src/commands.ts +57 -3
  11. package/src/index.ts +87 -27
  12. package/src/logging-adapter.ts +72 -9
  13. package/src/modules/fleet-module.ts +21 -9
  14. package/src/modules/mcpl-admin-module.ts +6 -0
  15. package/src/modules/observers-module.ts +180 -0
  16. package/src/modules/time-module.ts +15 -9
  17. package/src/modules/web-ui-module.ts +415 -16
  18. package/src/modules/web-ui-observers.ts +322 -0
  19. package/src/recipe.ts +48 -3
  20. package/src/strategies/frontdesk-strategy.ts +10 -4
  21. package/src/web/protocol.ts +141 -0
  22. package/test/call-ledger.test.ts +91 -0
  23. package/test/call-pricing.test.ts +69 -0
  24. package/test/fleet-subscribe-union-e2e.test.ts +5 -0
  25. package/test/fleet-tree-aggregator-e2e.test.ts +2 -0
  26. package/test/frontdesk-strategy.test.ts +10 -0
  27. package/test/import-codex-rollout.test.ts +36 -0
  28. package/test/logging-adapter.test.ts +58 -1
  29. package/test/recipe-cache-ttl.test.ts +7 -3
  30. package/test/recipe-provider.test.ts +36 -0
  31. package/test/recipe-timezone.test.ts +20 -0
  32. package/test/time-module.test.ts +13 -0
  33. package/test/web-ui-context-coverage.test.ts +61 -0
  34. package/test/web-ui-observers.test.ts +344 -0
  35. package/web/package-lock.json +2446 -0
  36. package/web/src/App.tsx +24 -0
  37. package/web/src/Context.tsx +207 -7
  38. package/web/src/ObserverGate.tsx +78 -0
  39. package/web/src/Usage.tsx +116 -2
  40. package/web/src/observer-identity.ts +110 -0
  41. package/web/src/wire.ts +60 -1
@@ -0,0 +1,2446 @@
1
+ {
2
+ "name": "connectome-host-web",
3
+ "version": "0.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "connectome-host-web",
9
+ "version": "0.0.0",
10
+ "dependencies": {
11
+ "@types/dompurify": "^3.2.0",
12
+ "dompurify": "^3.4.2",
13
+ "marked": "^14.1.3",
14
+ "solid-js": "^1.9.3"
15
+ },
16
+ "devDependencies": {
17
+ "@tailwindcss/vite": "^4.0.0",
18
+ "tailwindcss": "^4.0.0",
19
+ "typescript": "^5.7.0",
20
+ "vite": "^6.0.0",
21
+ "vite-plugin-solid": "^2.11.0"
22
+ }
23
+ },
24
+ "node_modules/@babel/code-frame": {
25
+ "version": "7.29.0",
26
+ "dev": true,
27
+ "license": "MIT",
28
+ "dependencies": {
29
+ "@babel/helper-validator-identifier": "^7.28.5",
30
+ "js-tokens": "^4.0.0",
31
+ "picocolors": "^1.1.1"
32
+ },
33
+ "engines": {
34
+ "node": ">=6.9.0"
35
+ }
36
+ },
37
+ "node_modules/@babel/compat-data": {
38
+ "version": "7.29.3",
39
+ "dev": true,
40
+ "license": "MIT",
41
+ "engines": {
42
+ "node": ">=6.9.0"
43
+ }
44
+ },
45
+ "node_modules/@babel/core": {
46
+ "version": "7.29.0",
47
+ "dev": true,
48
+ "license": "MIT",
49
+ "dependencies": {
50
+ "@babel/code-frame": "^7.29.0",
51
+ "@babel/generator": "^7.29.0",
52
+ "@babel/helper-compilation-targets": "^7.28.6",
53
+ "@babel/helper-module-transforms": "^7.28.6",
54
+ "@babel/helpers": "^7.28.6",
55
+ "@babel/parser": "^7.29.0",
56
+ "@babel/template": "^7.28.6",
57
+ "@babel/traverse": "^7.29.0",
58
+ "@babel/types": "^7.29.0",
59
+ "@jridgewell/remapping": "^2.3.5",
60
+ "convert-source-map": "^2.0.0",
61
+ "debug": "^4.1.0",
62
+ "gensync": "^1.0.0-beta.2",
63
+ "json5": "^2.2.3",
64
+ "semver": "^6.3.1"
65
+ },
66
+ "engines": {
67
+ "node": ">=6.9.0"
68
+ },
69
+ "funding": {
70
+ "type": "opencollective",
71
+ "url": "https://opencollective.com/babel"
72
+ }
73
+ },
74
+ "node_modules/@babel/generator": {
75
+ "version": "7.29.1",
76
+ "dev": true,
77
+ "license": "MIT",
78
+ "dependencies": {
79
+ "@babel/parser": "^7.29.0",
80
+ "@babel/types": "^7.29.0",
81
+ "@jridgewell/gen-mapping": "^0.3.12",
82
+ "@jridgewell/trace-mapping": "^0.3.28",
83
+ "jsesc": "^3.0.2"
84
+ },
85
+ "engines": {
86
+ "node": ">=6.9.0"
87
+ }
88
+ },
89
+ "node_modules/@babel/helper-compilation-targets": {
90
+ "version": "7.28.6",
91
+ "dev": true,
92
+ "license": "MIT",
93
+ "dependencies": {
94
+ "@babel/compat-data": "^7.28.6",
95
+ "@babel/helper-validator-option": "^7.27.1",
96
+ "browserslist": "^4.24.0",
97
+ "lru-cache": "^5.1.1",
98
+ "semver": "^6.3.1"
99
+ },
100
+ "engines": {
101
+ "node": ">=6.9.0"
102
+ }
103
+ },
104
+ "node_modules/@babel/helper-globals": {
105
+ "version": "7.28.0",
106
+ "dev": true,
107
+ "license": "MIT",
108
+ "engines": {
109
+ "node": ">=6.9.0"
110
+ }
111
+ },
112
+ "node_modules/@babel/helper-module-imports": {
113
+ "version": "7.28.6",
114
+ "dev": true,
115
+ "license": "MIT",
116
+ "dependencies": {
117
+ "@babel/traverse": "^7.28.6",
118
+ "@babel/types": "^7.28.6"
119
+ },
120
+ "engines": {
121
+ "node": ">=6.9.0"
122
+ }
123
+ },
124
+ "node_modules/@babel/helper-module-transforms": {
125
+ "version": "7.28.6",
126
+ "dev": true,
127
+ "license": "MIT",
128
+ "dependencies": {
129
+ "@babel/helper-module-imports": "^7.28.6",
130
+ "@babel/helper-validator-identifier": "^7.28.5",
131
+ "@babel/traverse": "^7.28.6"
132
+ },
133
+ "engines": {
134
+ "node": ">=6.9.0"
135
+ },
136
+ "peerDependencies": {
137
+ "@babel/core": "^7.0.0"
138
+ }
139
+ },
140
+ "node_modules/@babel/helper-plugin-utils": {
141
+ "version": "7.28.6",
142
+ "dev": true,
143
+ "license": "MIT",
144
+ "engines": {
145
+ "node": ">=6.9.0"
146
+ }
147
+ },
148
+ "node_modules/@babel/helper-string-parser": {
149
+ "version": "7.27.1",
150
+ "dev": true,
151
+ "license": "MIT",
152
+ "engines": {
153
+ "node": ">=6.9.0"
154
+ }
155
+ },
156
+ "node_modules/@babel/helper-validator-identifier": {
157
+ "version": "7.28.5",
158
+ "dev": true,
159
+ "license": "MIT",
160
+ "engines": {
161
+ "node": ">=6.9.0"
162
+ }
163
+ },
164
+ "node_modules/@babel/helper-validator-option": {
165
+ "version": "7.27.1",
166
+ "dev": true,
167
+ "license": "MIT",
168
+ "engines": {
169
+ "node": ">=6.9.0"
170
+ }
171
+ },
172
+ "node_modules/@babel/helpers": {
173
+ "version": "7.29.2",
174
+ "dev": true,
175
+ "license": "MIT",
176
+ "dependencies": {
177
+ "@babel/template": "^7.28.6",
178
+ "@babel/types": "^7.29.0"
179
+ },
180
+ "engines": {
181
+ "node": ">=6.9.0"
182
+ }
183
+ },
184
+ "node_modules/@babel/parser": {
185
+ "version": "7.29.3",
186
+ "dev": true,
187
+ "license": "MIT",
188
+ "dependencies": {
189
+ "@babel/types": "^7.29.0"
190
+ },
191
+ "bin": {
192
+ "parser": "bin/babel-parser.js"
193
+ },
194
+ "engines": {
195
+ "node": ">=6.0.0"
196
+ }
197
+ },
198
+ "node_modules/@babel/plugin-syntax-jsx": {
199
+ "version": "7.28.6",
200
+ "dev": true,
201
+ "license": "MIT",
202
+ "dependencies": {
203
+ "@babel/helper-plugin-utils": "^7.28.6"
204
+ },
205
+ "engines": {
206
+ "node": ">=6.9.0"
207
+ },
208
+ "peerDependencies": {
209
+ "@babel/core": "^7.0.0-0"
210
+ }
211
+ },
212
+ "node_modules/@babel/template": {
213
+ "version": "7.28.6",
214
+ "dev": true,
215
+ "license": "MIT",
216
+ "dependencies": {
217
+ "@babel/code-frame": "^7.28.6",
218
+ "@babel/parser": "^7.28.6",
219
+ "@babel/types": "^7.28.6"
220
+ },
221
+ "engines": {
222
+ "node": ">=6.9.0"
223
+ }
224
+ },
225
+ "node_modules/@babel/traverse": {
226
+ "version": "7.29.0",
227
+ "dev": true,
228
+ "license": "MIT",
229
+ "dependencies": {
230
+ "@babel/code-frame": "^7.29.0",
231
+ "@babel/generator": "^7.29.0",
232
+ "@babel/helper-globals": "^7.28.0",
233
+ "@babel/parser": "^7.29.0",
234
+ "@babel/template": "^7.28.6",
235
+ "@babel/types": "^7.29.0",
236
+ "debug": "^4.3.1"
237
+ },
238
+ "engines": {
239
+ "node": ">=6.9.0"
240
+ }
241
+ },
242
+ "node_modules/@babel/types": {
243
+ "version": "7.29.0",
244
+ "dev": true,
245
+ "license": "MIT",
246
+ "dependencies": {
247
+ "@babel/helper-string-parser": "^7.27.1",
248
+ "@babel/helper-validator-identifier": "^7.28.5"
249
+ },
250
+ "engines": {
251
+ "node": ">=6.9.0"
252
+ }
253
+ },
254
+ "node_modules/@esbuild/aix-ppc64": {
255
+ "version": "0.25.12",
256
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
257
+ "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==",
258
+ "cpu": [
259
+ "ppc64"
260
+ ],
261
+ "dev": true,
262
+ "license": "MIT",
263
+ "optional": true,
264
+ "os": [
265
+ "aix"
266
+ ],
267
+ "engines": {
268
+ "node": ">=18"
269
+ }
270
+ },
271
+ "node_modules/@esbuild/android-arm": {
272
+ "version": "0.25.12",
273
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz",
274
+ "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==",
275
+ "cpu": [
276
+ "arm"
277
+ ],
278
+ "dev": true,
279
+ "license": "MIT",
280
+ "optional": true,
281
+ "os": [
282
+ "android"
283
+ ],
284
+ "engines": {
285
+ "node": ">=18"
286
+ }
287
+ },
288
+ "node_modules/@esbuild/android-arm64": {
289
+ "version": "0.25.12",
290
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz",
291
+ "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==",
292
+ "cpu": [
293
+ "arm64"
294
+ ],
295
+ "dev": true,
296
+ "license": "MIT",
297
+ "optional": true,
298
+ "os": [
299
+ "android"
300
+ ],
301
+ "engines": {
302
+ "node": ">=18"
303
+ }
304
+ },
305
+ "node_modules/@esbuild/android-x64": {
306
+ "version": "0.25.12",
307
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz",
308
+ "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==",
309
+ "cpu": [
310
+ "x64"
311
+ ],
312
+ "dev": true,
313
+ "license": "MIT",
314
+ "optional": true,
315
+ "os": [
316
+ "android"
317
+ ],
318
+ "engines": {
319
+ "node": ">=18"
320
+ }
321
+ },
322
+ "node_modules/@esbuild/darwin-arm64": {
323
+ "version": "0.25.12",
324
+ "cpu": [
325
+ "arm64"
326
+ ],
327
+ "dev": true,
328
+ "license": "MIT",
329
+ "optional": true,
330
+ "os": [
331
+ "darwin"
332
+ ],
333
+ "engines": {
334
+ "node": ">=18"
335
+ }
336
+ },
337
+ "node_modules/@esbuild/darwin-x64": {
338
+ "version": "0.25.12",
339
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz",
340
+ "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==",
341
+ "cpu": [
342
+ "x64"
343
+ ],
344
+ "dev": true,
345
+ "license": "MIT",
346
+ "optional": true,
347
+ "os": [
348
+ "darwin"
349
+ ],
350
+ "engines": {
351
+ "node": ">=18"
352
+ }
353
+ },
354
+ "node_modules/@esbuild/freebsd-arm64": {
355
+ "version": "0.25.12",
356
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz",
357
+ "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==",
358
+ "cpu": [
359
+ "arm64"
360
+ ],
361
+ "dev": true,
362
+ "license": "MIT",
363
+ "optional": true,
364
+ "os": [
365
+ "freebsd"
366
+ ],
367
+ "engines": {
368
+ "node": ">=18"
369
+ }
370
+ },
371
+ "node_modules/@esbuild/freebsd-x64": {
372
+ "version": "0.25.12",
373
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz",
374
+ "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==",
375
+ "cpu": [
376
+ "x64"
377
+ ],
378
+ "dev": true,
379
+ "license": "MIT",
380
+ "optional": true,
381
+ "os": [
382
+ "freebsd"
383
+ ],
384
+ "engines": {
385
+ "node": ">=18"
386
+ }
387
+ },
388
+ "node_modules/@esbuild/linux-arm": {
389
+ "version": "0.25.12",
390
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz",
391
+ "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==",
392
+ "cpu": [
393
+ "arm"
394
+ ],
395
+ "dev": true,
396
+ "license": "MIT",
397
+ "optional": true,
398
+ "os": [
399
+ "linux"
400
+ ],
401
+ "engines": {
402
+ "node": ">=18"
403
+ }
404
+ },
405
+ "node_modules/@esbuild/linux-arm64": {
406
+ "version": "0.25.12",
407
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz",
408
+ "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==",
409
+ "cpu": [
410
+ "arm64"
411
+ ],
412
+ "dev": true,
413
+ "license": "MIT",
414
+ "optional": true,
415
+ "os": [
416
+ "linux"
417
+ ],
418
+ "engines": {
419
+ "node": ">=18"
420
+ }
421
+ },
422
+ "node_modules/@esbuild/linux-ia32": {
423
+ "version": "0.25.12",
424
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz",
425
+ "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==",
426
+ "cpu": [
427
+ "ia32"
428
+ ],
429
+ "dev": true,
430
+ "license": "MIT",
431
+ "optional": true,
432
+ "os": [
433
+ "linux"
434
+ ],
435
+ "engines": {
436
+ "node": ">=18"
437
+ }
438
+ },
439
+ "node_modules/@esbuild/linux-loong64": {
440
+ "version": "0.25.12",
441
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz",
442
+ "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==",
443
+ "cpu": [
444
+ "loong64"
445
+ ],
446
+ "dev": true,
447
+ "license": "MIT",
448
+ "optional": true,
449
+ "os": [
450
+ "linux"
451
+ ],
452
+ "engines": {
453
+ "node": ">=18"
454
+ }
455
+ },
456
+ "node_modules/@esbuild/linux-mips64el": {
457
+ "version": "0.25.12",
458
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz",
459
+ "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==",
460
+ "cpu": [
461
+ "mips64el"
462
+ ],
463
+ "dev": true,
464
+ "license": "MIT",
465
+ "optional": true,
466
+ "os": [
467
+ "linux"
468
+ ],
469
+ "engines": {
470
+ "node": ">=18"
471
+ }
472
+ },
473
+ "node_modules/@esbuild/linux-ppc64": {
474
+ "version": "0.25.12",
475
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz",
476
+ "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==",
477
+ "cpu": [
478
+ "ppc64"
479
+ ],
480
+ "dev": true,
481
+ "license": "MIT",
482
+ "optional": true,
483
+ "os": [
484
+ "linux"
485
+ ],
486
+ "engines": {
487
+ "node": ">=18"
488
+ }
489
+ },
490
+ "node_modules/@esbuild/linux-riscv64": {
491
+ "version": "0.25.12",
492
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz",
493
+ "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==",
494
+ "cpu": [
495
+ "riscv64"
496
+ ],
497
+ "dev": true,
498
+ "license": "MIT",
499
+ "optional": true,
500
+ "os": [
501
+ "linux"
502
+ ],
503
+ "engines": {
504
+ "node": ">=18"
505
+ }
506
+ },
507
+ "node_modules/@esbuild/linux-s390x": {
508
+ "version": "0.25.12",
509
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz",
510
+ "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==",
511
+ "cpu": [
512
+ "s390x"
513
+ ],
514
+ "dev": true,
515
+ "license": "MIT",
516
+ "optional": true,
517
+ "os": [
518
+ "linux"
519
+ ],
520
+ "engines": {
521
+ "node": ">=18"
522
+ }
523
+ },
524
+ "node_modules/@esbuild/linux-x64": {
525
+ "version": "0.25.12",
526
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz",
527
+ "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==",
528
+ "cpu": [
529
+ "x64"
530
+ ],
531
+ "dev": true,
532
+ "license": "MIT",
533
+ "optional": true,
534
+ "os": [
535
+ "linux"
536
+ ],
537
+ "engines": {
538
+ "node": ">=18"
539
+ }
540
+ },
541
+ "node_modules/@esbuild/netbsd-arm64": {
542
+ "version": "0.25.12",
543
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz",
544
+ "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==",
545
+ "cpu": [
546
+ "arm64"
547
+ ],
548
+ "dev": true,
549
+ "license": "MIT",
550
+ "optional": true,
551
+ "os": [
552
+ "netbsd"
553
+ ],
554
+ "engines": {
555
+ "node": ">=18"
556
+ }
557
+ },
558
+ "node_modules/@esbuild/netbsd-x64": {
559
+ "version": "0.25.12",
560
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz",
561
+ "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==",
562
+ "cpu": [
563
+ "x64"
564
+ ],
565
+ "dev": true,
566
+ "license": "MIT",
567
+ "optional": true,
568
+ "os": [
569
+ "netbsd"
570
+ ],
571
+ "engines": {
572
+ "node": ">=18"
573
+ }
574
+ },
575
+ "node_modules/@esbuild/openbsd-arm64": {
576
+ "version": "0.25.12",
577
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz",
578
+ "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==",
579
+ "cpu": [
580
+ "arm64"
581
+ ],
582
+ "dev": true,
583
+ "license": "MIT",
584
+ "optional": true,
585
+ "os": [
586
+ "openbsd"
587
+ ],
588
+ "engines": {
589
+ "node": ">=18"
590
+ }
591
+ },
592
+ "node_modules/@esbuild/openbsd-x64": {
593
+ "version": "0.25.12",
594
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz",
595
+ "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==",
596
+ "cpu": [
597
+ "x64"
598
+ ],
599
+ "dev": true,
600
+ "license": "MIT",
601
+ "optional": true,
602
+ "os": [
603
+ "openbsd"
604
+ ],
605
+ "engines": {
606
+ "node": ">=18"
607
+ }
608
+ },
609
+ "node_modules/@esbuild/openharmony-arm64": {
610
+ "version": "0.25.12",
611
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz",
612
+ "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==",
613
+ "cpu": [
614
+ "arm64"
615
+ ],
616
+ "dev": true,
617
+ "license": "MIT",
618
+ "optional": true,
619
+ "os": [
620
+ "openharmony"
621
+ ],
622
+ "engines": {
623
+ "node": ">=18"
624
+ }
625
+ },
626
+ "node_modules/@esbuild/sunos-x64": {
627
+ "version": "0.25.12",
628
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz",
629
+ "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==",
630
+ "cpu": [
631
+ "x64"
632
+ ],
633
+ "dev": true,
634
+ "license": "MIT",
635
+ "optional": true,
636
+ "os": [
637
+ "sunos"
638
+ ],
639
+ "engines": {
640
+ "node": ">=18"
641
+ }
642
+ },
643
+ "node_modules/@esbuild/win32-arm64": {
644
+ "version": "0.25.12",
645
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz",
646
+ "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==",
647
+ "cpu": [
648
+ "arm64"
649
+ ],
650
+ "dev": true,
651
+ "license": "MIT",
652
+ "optional": true,
653
+ "os": [
654
+ "win32"
655
+ ],
656
+ "engines": {
657
+ "node": ">=18"
658
+ }
659
+ },
660
+ "node_modules/@esbuild/win32-ia32": {
661
+ "version": "0.25.12",
662
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz",
663
+ "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==",
664
+ "cpu": [
665
+ "ia32"
666
+ ],
667
+ "dev": true,
668
+ "license": "MIT",
669
+ "optional": true,
670
+ "os": [
671
+ "win32"
672
+ ],
673
+ "engines": {
674
+ "node": ">=18"
675
+ }
676
+ },
677
+ "node_modules/@esbuild/win32-x64": {
678
+ "version": "0.25.12",
679
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz",
680
+ "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==",
681
+ "cpu": [
682
+ "x64"
683
+ ],
684
+ "dev": true,
685
+ "license": "MIT",
686
+ "optional": true,
687
+ "os": [
688
+ "win32"
689
+ ],
690
+ "engines": {
691
+ "node": ">=18"
692
+ }
693
+ },
694
+ "node_modules/@jridgewell/gen-mapping": {
695
+ "version": "0.3.13",
696
+ "dev": true,
697
+ "license": "MIT",
698
+ "dependencies": {
699
+ "@jridgewell/sourcemap-codec": "^1.5.0",
700
+ "@jridgewell/trace-mapping": "^0.3.24"
701
+ }
702
+ },
703
+ "node_modules/@jridgewell/remapping": {
704
+ "version": "2.3.5",
705
+ "dev": true,
706
+ "license": "MIT",
707
+ "dependencies": {
708
+ "@jridgewell/gen-mapping": "^0.3.5",
709
+ "@jridgewell/trace-mapping": "^0.3.24"
710
+ }
711
+ },
712
+ "node_modules/@jridgewell/resolve-uri": {
713
+ "version": "3.1.2",
714
+ "dev": true,
715
+ "license": "MIT",
716
+ "engines": {
717
+ "node": ">=6.0.0"
718
+ }
719
+ },
720
+ "node_modules/@jridgewell/sourcemap-codec": {
721
+ "version": "1.5.5",
722
+ "dev": true,
723
+ "license": "MIT"
724
+ },
725
+ "node_modules/@jridgewell/trace-mapping": {
726
+ "version": "0.3.31",
727
+ "dev": true,
728
+ "license": "MIT",
729
+ "dependencies": {
730
+ "@jridgewell/resolve-uri": "^3.1.0",
731
+ "@jridgewell/sourcemap-codec": "^1.4.14"
732
+ }
733
+ },
734
+ "node_modules/@rollup/rollup-android-arm-eabi": {
735
+ "version": "4.60.3",
736
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.3.tgz",
737
+ "integrity": "sha512-x35CNW/ANXG3hE/EZpRU8MXX1JDN86hBb2wMGAtltkz7pc6cxgjpy1OMMfDosOQ+2hWqIkag/fGok1Yady9nGw==",
738
+ "cpu": [
739
+ "arm"
740
+ ],
741
+ "dev": true,
742
+ "license": "MIT",
743
+ "optional": true,
744
+ "os": [
745
+ "android"
746
+ ]
747
+ },
748
+ "node_modules/@rollup/rollup-android-arm64": {
749
+ "version": "4.60.3",
750
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.3.tgz",
751
+ "integrity": "sha512-xw3xtkDApIOGayehp2+Rz4zimfkaX65r4t47iy+ymQB2G4iJCBBfj0ogVg5jpvjpn8UWn/+q9tprxleYeNp3Hw==",
752
+ "cpu": [
753
+ "arm64"
754
+ ],
755
+ "dev": true,
756
+ "license": "MIT",
757
+ "optional": true,
758
+ "os": [
759
+ "android"
760
+ ]
761
+ },
762
+ "node_modules/@rollup/rollup-darwin-arm64": {
763
+ "version": "4.60.3",
764
+ "cpu": [
765
+ "arm64"
766
+ ],
767
+ "dev": true,
768
+ "license": "MIT",
769
+ "optional": true,
770
+ "os": [
771
+ "darwin"
772
+ ]
773
+ },
774
+ "node_modules/@rollup/rollup-darwin-x64": {
775
+ "version": "4.60.3",
776
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.3.tgz",
777
+ "integrity": "sha512-D+0QGcZhBzTN82weOnsSlY7V7+RMmPuF1CkbxyMAGE8+ZHeUjyb76ZiWmBlCu//AQQONvxcqRbwZTajZKqjuOw==",
778
+ "cpu": [
779
+ "x64"
780
+ ],
781
+ "dev": true,
782
+ "license": "MIT",
783
+ "optional": true,
784
+ "os": [
785
+ "darwin"
786
+ ]
787
+ },
788
+ "node_modules/@rollup/rollup-freebsd-arm64": {
789
+ "version": "4.60.3",
790
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.3.tgz",
791
+ "integrity": "sha512-6HnvHCT7fDyj6R0Ph7A6x8dQS/S38MClRWeDLqc0MdfWkxjiu1HSDYrdPhqSILzjTIC/pnXbbJbo+ft+gy/9hQ==",
792
+ "cpu": [
793
+ "arm64"
794
+ ],
795
+ "dev": true,
796
+ "license": "MIT",
797
+ "optional": true,
798
+ "os": [
799
+ "freebsd"
800
+ ]
801
+ },
802
+ "node_modules/@rollup/rollup-freebsd-x64": {
803
+ "version": "4.60.3",
804
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.3.tgz",
805
+ "integrity": "sha512-KHLgC3WKlUYW3ShFKnnosZDOJ0xjg9zp7au3sIm2bs/tGBeC2ipmvRh/N7JKi0t9Ue20C0dpEshi8WUubg+cnA==",
806
+ "cpu": [
807
+ "x64"
808
+ ],
809
+ "dev": true,
810
+ "license": "MIT",
811
+ "optional": true,
812
+ "os": [
813
+ "freebsd"
814
+ ]
815
+ },
816
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
817
+ "version": "4.60.3",
818
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.3.tgz",
819
+ "integrity": "sha512-DV6fJoxEYWJOvaZIsok7KrYl0tPvga5OZ2yvKHNNYyk/2roMLqQAbGhr78EQ5YhHpnhLKJD3S1WFusAkmUuV5g==",
820
+ "cpu": [
821
+ "arm"
822
+ ],
823
+ "dev": true,
824
+ "libc": [
825
+ "glibc"
826
+ ],
827
+ "license": "MIT",
828
+ "optional": true,
829
+ "os": [
830
+ "linux"
831
+ ]
832
+ },
833
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
834
+ "version": "4.60.3",
835
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.3.tgz",
836
+ "integrity": "sha512-mQKoJAzvuOs6F+TZybQO4GOTSMUu7v0WdxEk24krQ/uUxXoPTtHjuaUuPmFhtBcM4K0ons8nrE3JyhTuCFtT/w==",
837
+ "cpu": [
838
+ "arm"
839
+ ],
840
+ "dev": true,
841
+ "libc": [
842
+ "musl"
843
+ ],
844
+ "license": "MIT",
845
+ "optional": true,
846
+ "os": [
847
+ "linux"
848
+ ]
849
+ },
850
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
851
+ "version": "4.60.3",
852
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.3.tgz",
853
+ "integrity": "sha512-Whjj2qoiJ6+OOJMGptTYazaJvjOJm+iKHpXQM1P3LzGjt7Ff++Tp7nH4N8J/BUA7R9IHfDyx4DJIflifwnbmIA==",
854
+ "cpu": [
855
+ "arm64"
856
+ ],
857
+ "dev": true,
858
+ "libc": [
859
+ "glibc"
860
+ ],
861
+ "license": "MIT",
862
+ "optional": true,
863
+ "os": [
864
+ "linux"
865
+ ]
866
+ },
867
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
868
+ "version": "4.60.3",
869
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.3.tgz",
870
+ "integrity": "sha512-4YTNHKqGng5+yiZt3mg77nmyuCfmNfX4fPmyUapBcIk+BdwSwmCWGXOUxhXbBEkFHtoN5boLj/5NON+u5QC9tg==",
871
+ "cpu": [
872
+ "arm64"
873
+ ],
874
+ "dev": true,
875
+ "libc": [
876
+ "musl"
877
+ ],
878
+ "license": "MIT",
879
+ "optional": true,
880
+ "os": [
881
+ "linux"
882
+ ]
883
+ },
884
+ "node_modules/@rollup/rollup-linux-loong64-gnu": {
885
+ "version": "4.60.3",
886
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.3.tgz",
887
+ "integrity": "sha512-SU3kNlhkpI4UqlUc2VXPGK9o886ZsSeGfMAX2ba2b8DKmMXq4AL7KUrkSWVbb7koVqx41Yczx6dx5PNargIrEA==",
888
+ "cpu": [
889
+ "loong64"
890
+ ],
891
+ "dev": true,
892
+ "libc": [
893
+ "glibc"
894
+ ],
895
+ "license": "MIT",
896
+ "optional": true,
897
+ "os": [
898
+ "linux"
899
+ ]
900
+ },
901
+ "node_modules/@rollup/rollup-linux-loong64-musl": {
902
+ "version": "4.60.3",
903
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.3.tgz",
904
+ "integrity": "sha512-6lDLl5h4TXpB1mTf2rQWnAk/LcXrx9vBfu/DT5TIPhvMhRWaZ5MxkIc8u4lJAmBo6klTe1ywXIUHFjylW505sg==",
905
+ "cpu": [
906
+ "loong64"
907
+ ],
908
+ "dev": true,
909
+ "libc": [
910
+ "musl"
911
+ ],
912
+ "license": "MIT",
913
+ "optional": true,
914
+ "os": [
915
+ "linux"
916
+ ]
917
+ },
918
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
919
+ "version": "4.60.3",
920
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.3.tgz",
921
+ "integrity": "sha512-BMo8bOw8evlup/8G+cj5xWtPyp93xPdyoSN16Zy90Q2QZ0ZYRhCt6ZJSwbrRzG9HApFabjwj2p25TUPDWrhzqQ==",
922
+ "cpu": [
923
+ "ppc64"
924
+ ],
925
+ "dev": true,
926
+ "libc": [
927
+ "glibc"
928
+ ],
929
+ "license": "MIT",
930
+ "optional": true,
931
+ "os": [
932
+ "linux"
933
+ ]
934
+ },
935
+ "node_modules/@rollup/rollup-linux-ppc64-musl": {
936
+ "version": "4.60.3",
937
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.3.tgz",
938
+ "integrity": "sha512-E0L8X1dZN1/Rph+5VPF6Xj2G7JJvMACVXtamTJIDrVI44Y3K+G8gQaMEAavbqCGTa16InptiVrX6eM6pmJ+7qA==",
939
+ "cpu": [
940
+ "ppc64"
941
+ ],
942
+ "dev": true,
943
+ "libc": [
944
+ "musl"
945
+ ],
946
+ "license": "MIT",
947
+ "optional": true,
948
+ "os": [
949
+ "linux"
950
+ ]
951
+ },
952
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
953
+ "version": "4.60.3",
954
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.3.tgz",
955
+ "integrity": "sha512-oZJ/WHaVfHUiRAtmTAeo3DcevNsVvH8mbvodjZy7D5QKvCefO371SiKRpxoDcCxB3PTRTLayWBkvmDQKTcX/sw==",
956
+ "cpu": [
957
+ "riscv64"
958
+ ],
959
+ "dev": true,
960
+ "libc": [
961
+ "glibc"
962
+ ],
963
+ "license": "MIT",
964
+ "optional": true,
965
+ "os": [
966
+ "linux"
967
+ ]
968
+ },
969
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
970
+ "version": "4.60.3",
971
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.3.tgz",
972
+ "integrity": "sha512-Dhbyh7j9FybM3YaTgaHmVALwA8AkUwTPccyCQ79TG9AJUsMQqgN1DDEZNr4+QUfwiWvLDumW5vdwzoeUF+TNxQ==",
973
+ "cpu": [
974
+ "riscv64"
975
+ ],
976
+ "dev": true,
977
+ "libc": [
978
+ "musl"
979
+ ],
980
+ "license": "MIT",
981
+ "optional": true,
982
+ "os": [
983
+ "linux"
984
+ ]
985
+ },
986
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
987
+ "version": "4.60.3",
988
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.3.tgz",
989
+ "integrity": "sha512-cJd1X5XhHHlltkaypz1UcWLA8AcoIi1aWhsvaWDskD1oz2eKCypnqvTQ8ykMNI0RSmm7NkTdSqSSD7zM0xa6Ig==",
990
+ "cpu": [
991
+ "s390x"
992
+ ],
993
+ "dev": true,
994
+ "libc": [
995
+ "glibc"
996
+ ],
997
+ "license": "MIT",
998
+ "optional": true,
999
+ "os": [
1000
+ "linux"
1001
+ ]
1002
+ },
1003
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
1004
+ "version": "4.60.3",
1005
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.3.tgz",
1006
+ "integrity": "sha512-DAZDBHQfG2oQuhY7mc6I3/qB4LU2fQCjRvxbDwd/Jdvb9fypP4IJ4qmtu6lNjes6B531AI8cg1aKC2di97bUxA==",
1007
+ "cpu": [
1008
+ "x64"
1009
+ ],
1010
+ "dev": true,
1011
+ "libc": [
1012
+ "glibc"
1013
+ ],
1014
+ "license": "MIT",
1015
+ "optional": true,
1016
+ "os": [
1017
+ "linux"
1018
+ ]
1019
+ },
1020
+ "node_modules/@rollup/rollup-linux-x64-musl": {
1021
+ "version": "4.60.3",
1022
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.3.tgz",
1023
+ "integrity": "sha512-cRxsE8c13mZOh3vP+wLDxpQBRrOHDIGOWyDL93Sy0Ga8y515fBcC2pjUfFwUe5T7tqvTvWbCpg1URM/AXdWIXA==",
1024
+ "cpu": [
1025
+ "x64"
1026
+ ],
1027
+ "dev": true,
1028
+ "libc": [
1029
+ "musl"
1030
+ ],
1031
+ "license": "MIT",
1032
+ "optional": true,
1033
+ "os": [
1034
+ "linux"
1035
+ ]
1036
+ },
1037
+ "node_modules/@rollup/rollup-openbsd-x64": {
1038
+ "version": "4.60.3",
1039
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.3.tgz",
1040
+ "integrity": "sha512-QaWcIgRxqEdQdhJqW4DJctsH6HCmo5vHxY0krHSX4jMtOqfzC+dqDGuHM87bu4H8JBeibWx7jFz+h6/4C8wA5Q==",
1041
+ "cpu": [
1042
+ "x64"
1043
+ ],
1044
+ "dev": true,
1045
+ "license": "MIT",
1046
+ "optional": true,
1047
+ "os": [
1048
+ "openbsd"
1049
+ ]
1050
+ },
1051
+ "node_modules/@rollup/rollup-openharmony-arm64": {
1052
+ "version": "4.60.3",
1053
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.3.tgz",
1054
+ "integrity": "sha512-AaXwSvUi3QIPtroAUw1t5yHGIyqKEXwH54WUocFolZhpGDruJcs8c+xPNDRn4XiQsS7MEwnYsHW2l0MBLDMkWg==",
1055
+ "cpu": [
1056
+ "arm64"
1057
+ ],
1058
+ "dev": true,
1059
+ "license": "MIT",
1060
+ "optional": true,
1061
+ "os": [
1062
+ "openharmony"
1063
+ ]
1064
+ },
1065
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
1066
+ "version": "4.60.3",
1067
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.3.tgz",
1068
+ "integrity": "sha512-65LAKM/bAWDqKNEelHlcHvm2V+Vfb8C6INFxQXRHCvaVN1rJfwr4NvdP4FyzUaLqWfaCGaadf6UbTm8xJeYfEg==",
1069
+ "cpu": [
1070
+ "arm64"
1071
+ ],
1072
+ "dev": true,
1073
+ "license": "MIT",
1074
+ "optional": true,
1075
+ "os": [
1076
+ "win32"
1077
+ ]
1078
+ },
1079
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
1080
+ "version": "4.60.3",
1081
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.3.tgz",
1082
+ "integrity": "sha512-EEM2gyhBF5MFnI6vMKdX1LAosE627RGBzIoGMdLloPZkXrUN0Ckqgr2Qi8+J3zip/8NVVro3/FjB+tjhZUgUHA==",
1083
+ "cpu": [
1084
+ "ia32"
1085
+ ],
1086
+ "dev": true,
1087
+ "license": "MIT",
1088
+ "optional": true,
1089
+ "os": [
1090
+ "win32"
1091
+ ]
1092
+ },
1093
+ "node_modules/@rollup/rollup-win32-x64-gnu": {
1094
+ "version": "4.60.3",
1095
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.3.tgz",
1096
+ "integrity": "sha512-E5Eb5H/DpxaoXH++Qkv28RcUJboMopmdDUALBczvHMf7hNIxaDZqwY5lK12UK1BHacSmvupoEWGu+n993Z0y1A==",
1097
+ "cpu": [
1098
+ "x64"
1099
+ ],
1100
+ "dev": true,
1101
+ "license": "MIT",
1102
+ "optional": true,
1103
+ "os": [
1104
+ "win32"
1105
+ ]
1106
+ },
1107
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
1108
+ "version": "4.60.3",
1109
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.3.tgz",
1110
+ "integrity": "sha512-hPt/bgL5cE+Qp+/TPHBqptcAgPzgj46mPcg/16zNUmbQk0j+mOEQV/+Lqu8QRtDV3Ek95Q6FeFITpuhl6OTsAA==",
1111
+ "cpu": [
1112
+ "x64"
1113
+ ],
1114
+ "dev": true,
1115
+ "license": "MIT",
1116
+ "optional": true,
1117
+ "os": [
1118
+ "win32"
1119
+ ]
1120
+ },
1121
+ "node_modules/@tailwindcss/node": {
1122
+ "version": "4.2.4",
1123
+ "dev": true,
1124
+ "license": "MIT",
1125
+ "dependencies": {
1126
+ "@jridgewell/remapping": "^2.3.5",
1127
+ "enhanced-resolve": "^5.19.0",
1128
+ "jiti": "^2.6.1",
1129
+ "lightningcss": "1.32.0",
1130
+ "magic-string": "^0.30.21",
1131
+ "source-map-js": "^1.2.1",
1132
+ "tailwindcss": "4.2.4"
1133
+ }
1134
+ },
1135
+ "node_modules/@tailwindcss/oxide": {
1136
+ "version": "4.2.4",
1137
+ "dev": true,
1138
+ "license": "MIT",
1139
+ "engines": {
1140
+ "node": ">= 20"
1141
+ },
1142
+ "optionalDependencies": {
1143
+ "@tailwindcss/oxide-android-arm64": "4.2.4",
1144
+ "@tailwindcss/oxide-darwin-arm64": "4.2.4",
1145
+ "@tailwindcss/oxide-darwin-x64": "4.2.4",
1146
+ "@tailwindcss/oxide-freebsd-x64": "4.2.4",
1147
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.4",
1148
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.2.4",
1149
+ "@tailwindcss/oxide-linux-arm64-musl": "4.2.4",
1150
+ "@tailwindcss/oxide-linux-x64-gnu": "4.2.4",
1151
+ "@tailwindcss/oxide-linux-x64-musl": "4.2.4",
1152
+ "@tailwindcss/oxide-wasm32-wasi": "4.2.4",
1153
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.2.4",
1154
+ "@tailwindcss/oxide-win32-x64-msvc": "4.2.4"
1155
+ }
1156
+ },
1157
+ "node_modules/@tailwindcss/oxide-android-arm64": {
1158
+ "version": "4.2.4",
1159
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.4.tgz",
1160
+ "integrity": "sha512-e7MOr1SAn9U8KlZzPi1ZXGZHeC5anY36qjNwmZv9pOJ8E4Q6jmD1vyEHkQFmNOIN7twGPEMXRHmitN4zCMN03g==",
1161
+ "cpu": [
1162
+ "arm64"
1163
+ ],
1164
+ "dev": true,
1165
+ "license": "MIT",
1166
+ "optional": true,
1167
+ "os": [
1168
+ "android"
1169
+ ],
1170
+ "engines": {
1171
+ "node": ">= 20"
1172
+ }
1173
+ },
1174
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
1175
+ "version": "4.2.4",
1176
+ "cpu": [
1177
+ "arm64"
1178
+ ],
1179
+ "dev": true,
1180
+ "license": "MIT",
1181
+ "optional": true,
1182
+ "os": [
1183
+ "darwin"
1184
+ ],
1185
+ "engines": {
1186
+ "node": ">= 20"
1187
+ }
1188
+ },
1189
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
1190
+ "version": "4.2.4",
1191
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.4.tgz",
1192
+ "integrity": "sha512-yPyUXn3yO/ufR6+Kzv0t4fCg2qNr90jxXc5QqBpjlPNd0NqyDXcmQb/6weunH/MEDXW5dhyEi+agTDiqa3WsGg==",
1193
+ "cpu": [
1194
+ "x64"
1195
+ ],
1196
+ "dev": true,
1197
+ "license": "MIT",
1198
+ "optional": true,
1199
+ "os": [
1200
+ "darwin"
1201
+ ],
1202
+ "engines": {
1203
+ "node": ">= 20"
1204
+ }
1205
+ },
1206
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
1207
+ "version": "4.2.4",
1208
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.4.tgz",
1209
+ "integrity": "sha512-BoMIB4vMQtZsXdGLVc2z+P9DbETkiopogfWZKbWwM8b/1Vinbs4YcUwo+kM/KeLkX3Ygrf4/PsRndKaYhS8Eiw==",
1210
+ "cpu": [
1211
+ "x64"
1212
+ ],
1213
+ "dev": true,
1214
+ "license": "MIT",
1215
+ "optional": true,
1216
+ "os": [
1217
+ "freebsd"
1218
+ ],
1219
+ "engines": {
1220
+ "node": ">= 20"
1221
+ }
1222
+ },
1223
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
1224
+ "version": "4.2.4",
1225
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.4.tgz",
1226
+ "integrity": "sha512-7pIHBLTHYRAlS7V22JNuTh33yLH4VElwKtB3bwchK/UaKUPpQ0lPQiOWcbm4V3WP2I6fNIJ23vABIvoy2izdwA==",
1227
+ "cpu": [
1228
+ "arm"
1229
+ ],
1230
+ "dev": true,
1231
+ "license": "MIT",
1232
+ "optional": true,
1233
+ "os": [
1234
+ "linux"
1235
+ ],
1236
+ "engines": {
1237
+ "node": ">= 20"
1238
+ }
1239
+ },
1240
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
1241
+ "version": "4.2.4",
1242
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.4.tgz",
1243
+ "integrity": "sha512-+E4wxJ0ZGOzSH325reXTWB48l42i93kQqMvDyz5gqfRzRZ7faNhnmvlV4EPGJU3QJM/3Ab5jhJ5pCRUsKn6OQw==",
1244
+ "cpu": [
1245
+ "arm64"
1246
+ ],
1247
+ "dev": true,
1248
+ "libc": [
1249
+ "glibc"
1250
+ ],
1251
+ "license": "MIT",
1252
+ "optional": true,
1253
+ "os": [
1254
+ "linux"
1255
+ ],
1256
+ "engines": {
1257
+ "node": ">= 20"
1258
+ }
1259
+ },
1260
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
1261
+ "version": "4.2.4",
1262
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.4.tgz",
1263
+ "integrity": "sha512-bBADEGAbo4ASnppIziaQJelekCxdMaxisrk+fB7Thit72IBnALp9K6ffA2G4ruj90G9XRS2VQ6q2bCKbfFV82g==",
1264
+ "cpu": [
1265
+ "arm64"
1266
+ ],
1267
+ "dev": true,
1268
+ "libc": [
1269
+ "musl"
1270
+ ],
1271
+ "license": "MIT",
1272
+ "optional": true,
1273
+ "os": [
1274
+ "linux"
1275
+ ],
1276
+ "engines": {
1277
+ "node": ">= 20"
1278
+ }
1279
+ },
1280
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
1281
+ "version": "4.2.4",
1282
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.4.tgz",
1283
+ "integrity": "sha512-7Mx25E4WTfnht0TVRTyC00j3i0M+EeFe7wguMDTlX4mRxafznw0CA8WJkFjWYH5BlgELd1kSjuU2JiPnNZbJDA==",
1284
+ "cpu": [
1285
+ "x64"
1286
+ ],
1287
+ "dev": true,
1288
+ "libc": [
1289
+ "glibc"
1290
+ ],
1291
+ "license": "MIT",
1292
+ "optional": true,
1293
+ "os": [
1294
+ "linux"
1295
+ ],
1296
+ "engines": {
1297
+ "node": ">= 20"
1298
+ }
1299
+ },
1300
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
1301
+ "version": "4.2.4",
1302
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.4.tgz",
1303
+ "integrity": "sha512-2wwJRF7nyhOR0hhHoChc04xngV3iS+akccHTGtz965FwF0up4b2lOdo6kI1EbDaEXKgvcrFBYcYQQ/rrnWFVfA==",
1304
+ "cpu": [
1305
+ "x64"
1306
+ ],
1307
+ "dev": true,
1308
+ "libc": [
1309
+ "musl"
1310
+ ],
1311
+ "license": "MIT",
1312
+ "optional": true,
1313
+ "os": [
1314
+ "linux"
1315
+ ],
1316
+ "engines": {
1317
+ "node": ">= 20"
1318
+ }
1319
+ },
1320
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
1321
+ "version": "4.2.4",
1322
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.4.tgz",
1323
+ "integrity": "sha512-FQsqApeor8Fo6gUEklzmaa9994orJZZDBAlQpK2Mq+DslRKFJeD6AjHpBQ0kZFQohVr8o85PPh8eOy86VlSCmw==",
1324
+ "bundleDependencies": [
1325
+ "@napi-rs/wasm-runtime",
1326
+ "@emnapi/core",
1327
+ "@emnapi/runtime",
1328
+ "@tybys/wasm-util",
1329
+ "@emnapi/wasi-threads",
1330
+ "tslib"
1331
+ ],
1332
+ "cpu": [
1333
+ "wasm32"
1334
+ ],
1335
+ "dev": true,
1336
+ "license": "MIT",
1337
+ "optional": true,
1338
+ "dependencies": {
1339
+ "@emnapi/core": "^1.8.1",
1340
+ "@emnapi/runtime": "^1.8.1",
1341
+ "@emnapi/wasi-threads": "^1.1.0",
1342
+ "@napi-rs/wasm-runtime": "^1.1.1",
1343
+ "@tybys/wasm-util": "^0.10.1",
1344
+ "tslib": "^2.8.1"
1345
+ },
1346
+ "engines": {
1347
+ "node": ">=14.0.0"
1348
+ }
1349
+ },
1350
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
1351
+ "version": "4.2.4",
1352
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.4.tgz",
1353
+ "integrity": "sha512-L9BXqxC4ToVgwMFqj3pmZRqyHEztulpUJzCxUtLjobMCzTPsGt1Fa9enKbOpY2iIyVtaHNeNvAK8ERP/64sqGQ==",
1354
+ "cpu": [
1355
+ "arm64"
1356
+ ],
1357
+ "dev": true,
1358
+ "license": "MIT",
1359
+ "optional": true,
1360
+ "os": [
1361
+ "win32"
1362
+ ],
1363
+ "engines": {
1364
+ "node": ">= 20"
1365
+ }
1366
+ },
1367
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
1368
+ "version": "4.2.4",
1369
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.4.tgz",
1370
+ "integrity": "sha512-ESlKG0EpVJQwRjXDDa9rLvhEAh0mhP1sF7sap9dNZT0yyl9SAG6T7gdP09EH0vIv0UNTlo6jPWyujD6559fZvw==",
1371
+ "cpu": [
1372
+ "x64"
1373
+ ],
1374
+ "dev": true,
1375
+ "license": "MIT",
1376
+ "optional": true,
1377
+ "os": [
1378
+ "win32"
1379
+ ],
1380
+ "engines": {
1381
+ "node": ">= 20"
1382
+ }
1383
+ },
1384
+ "node_modules/@tailwindcss/vite": {
1385
+ "version": "4.2.4",
1386
+ "dev": true,
1387
+ "license": "MIT",
1388
+ "dependencies": {
1389
+ "@tailwindcss/node": "4.2.4",
1390
+ "@tailwindcss/oxide": "4.2.4",
1391
+ "tailwindcss": "4.2.4"
1392
+ },
1393
+ "peerDependencies": {
1394
+ "vite": "^5.2.0 || ^6 || ^7 || ^8"
1395
+ }
1396
+ },
1397
+ "node_modules/@types/babel__core": {
1398
+ "version": "7.20.5",
1399
+ "dev": true,
1400
+ "license": "MIT",
1401
+ "dependencies": {
1402
+ "@babel/parser": "^7.20.7",
1403
+ "@babel/types": "^7.20.7",
1404
+ "@types/babel__generator": "*",
1405
+ "@types/babel__template": "*",
1406
+ "@types/babel__traverse": "*"
1407
+ }
1408
+ },
1409
+ "node_modules/@types/babel__generator": {
1410
+ "version": "7.27.0",
1411
+ "dev": true,
1412
+ "license": "MIT",
1413
+ "dependencies": {
1414
+ "@babel/types": "^7.0.0"
1415
+ }
1416
+ },
1417
+ "node_modules/@types/babel__template": {
1418
+ "version": "7.4.4",
1419
+ "dev": true,
1420
+ "license": "MIT",
1421
+ "dependencies": {
1422
+ "@babel/parser": "^7.1.0",
1423
+ "@babel/types": "^7.0.0"
1424
+ }
1425
+ },
1426
+ "node_modules/@types/babel__traverse": {
1427
+ "version": "7.28.0",
1428
+ "dev": true,
1429
+ "license": "MIT",
1430
+ "dependencies": {
1431
+ "@babel/types": "^7.28.2"
1432
+ }
1433
+ },
1434
+ "node_modules/@types/dompurify": {
1435
+ "version": "3.2.0",
1436
+ "deprecated": "This is a stub types definition. dompurify provides its own type definitions, so you do not need this installed.",
1437
+ "license": "MIT",
1438
+ "dependencies": {
1439
+ "dompurify": "*"
1440
+ }
1441
+ },
1442
+ "node_modules/@types/estree": {
1443
+ "version": "1.0.8",
1444
+ "dev": true,
1445
+ "license": "MIT"
1446
+ },
1447
+ "node_modules/@types/trusted-types": {
1448
+ "version": "2.0.7",
1449
+ "license": "MIT",
1450
+ "optional": true
1451
+ },
1452
+ "node_modules/babel-plugin-jsx-dom-expressions": {
1453
+ "version": "0.40.6",
1454
+ "dev": true,
1455
+ "license": "MIT",
1456
+ "dependencies": {
1457
+ "@babel/helper-module-imports": "7.18.6",
1458
+ "@babel/plugin-syntax-jsx": "^7.18.6",
1459
+ "@babel/types": "^7.20.7",
1460
+ "html-entities": "2.3.3",
1461
+ "parse5": "^7.1.2"
1462
+ },
1463
+ "peerDependencies": {
1464
+ "@babel/core": "^7.20.12"
1465
+ }
1466
+ },
1467
+ "node_modules/babel-plugin-jsx-dom-expressions/node_modules/@babel/helper-module-imports": {
1468
+ "version": "7.18.6",
1469
+ "dev": true,
1470
+ "license": "MIT",
1471
+ "dependencies": {
1472
+ "@babel/types": "^7.18.6"
1473
+ },
1474
+ "engines": {
1475
+ "node": ">=6.9.0"
1476
+ }
1477
+ },
1478
+ "node_modules/babel-preset-solid": {
1479
+ "version": "1.9.12",
1480
+ "dev": true,
1481
+ "license": "MIT",
1482
+ "dependencies": {
1483
+ "babel-plugin-jsx-dom-expressions": "^0.40.6"
1484
+ },
1485
+ "peerDependencies": {
1486
+ "@babel/core": "^7.0.0",
1487
+ "solid-js": "^1.9.12"
1488
+ },
1489
+ "peerDependenciesMeta": {
1490
+ "solid-js": {
1491
+ "optional": true
1492
+ }
1493
+ }
1494
+ },
1495
+ "node_modules/baseline-browser-mapping": {
1496
+ "version": "2.10.27",
1497
+ "dev": true,
1498
+ "license": "Apache-2.0",
1499
+ "bin": {
1500
+ "baseline-browser-mapping": "dist/cli.cjs"
1501
+ },
1502
+ "engines": {
1503
+ "node": ">=6.0.0"
1504
+ }
1505
+ },
1506
+ "node_modules/browserslist": {
1507
+ "version": "4.28.2",
1508
+ "dev": true,
1509
+ "funding": [
1510
+ {
1511
+ "type": "opencollective",
1512
+ "url": "https://opencollective.com/browserslist"
1513
+ },
1514
+ {
1515
+ "type": "tidelift",
1516
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
1517
+ },
1518
+ {
1519
+ "type": "github",
1520
+ "url": "https://github.com/sponsors/ai"
1521
+ }
1522
+ ],
1523
+ "license": "MIT",
1524
+ "dependencies": {
1525
+ "baseline-browser-mapping": "^2.10.12",
1526
+ "caniuse-lite": "^1.0.30001782",
1527
+ "electron-to-chromium": "^1.5.328",
1528
+ "node-releases": "^2.0.36",
1529
+ "update-browserslist-db": "^1.2.3"
1530
+ },
1531
+ "bin": {
1532
+ "browserslist": "cli.js"
1533
+ },
1534
+ "engines": {
1535
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1536
+ }
1537
+ },
1538
+ "node_modules/caniuse-lite": {
1539
+ "version": "1.0.30001791",
1540
+ "dev": true,
1541
+ "funding": [
1542
+ {
1543
+ "type": "opencollective",
1544
+ "url": "https://opencollective.com/browserslist"
1545
+ },
1546
+ {
1547
+ "type": "tidelift",
1548
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1549
+ },
1550
+ {
1551
+ "type": "github",
1552
+ "url": "https://github.com/sponsors/ai"
1553
+ }
1554
+ ],
1555
+ "license": "CC-BY-4.0"
1556
+ },
1557
+ "node_modules/convert-source-map": {
1558
+ "version": "2.0.0",
1559
+ "dev": true,
1560
+ "license": "MIT"
1561
+ },
1562
+ "node_modules/csstype": {
1563
+ "version": "3.2.3",
1564
+ "license": "MIT"
1565
+ },
1566
+ "node_modules/debug": {
1567
+ "version": "4.4.3",
1568
+ "dev": true,
1569
+ "license": "MIT",
1570
+ "dependencies": {
1571
+ "ms": "^2.1.3"
1572
+ },
1573
+ "engines": {
1574
+ "node": ">=6.0"
1575
+ },
1576
+ "peerDependenciesMeta": {
1577
+ "supports-color": {
1578
+ "optional": true
1579
+ }
1580
+ }
1581
+ },
1582
+ "node_modules/detect-libc": {
1583
+ "version": "2.1.2",
1584
+ "dev": true,
1585
+ "license": "Apache-2.0",
1586
+ "engines": {
1587
+ "node": ">=8"
1588
+ }
1589
+ },
1590
+ "node_modules/dompurify": {
1591
+ "version": "3.4.2",
1592
+ "license": "(MPL-2.0 OR Apache-2.0)",
1593
+ "optionalDependencies": {
1594
+ "@types/trusted-types": "^2.0.7"
1595
+ }
1596
+ },
1597
+ "node_modules/electron-to-chromium": {
1598
+ "version": "1.5.349",
1599
+ "dev": true,
1600
+ "license": "ISC"
1601
+ },
1602
+ "node_modules/enhanced-resolve": {
1603
+ "version": "5.21.0",
1604
+ "dev": true,
1605
+ "license": "MIT",
1606
+ "dependencies": {
1607
+ "graceful-fs": "^4.2.4",
1608
+ "tapable": "^2.3.3"
1609
+ },
1610
+ "engines": {
1611
+ "node": ">=10.13.0"
1612
+ }
1613
+ },
1614
+ "node_modules/entities": {
1615
+ "version": "6.0.1",
1616
+ "dev": true,
1617
+ "license": "BSD-2-Clause",
1618
+ "engines": {
1619
+ "node": ">=0.12"
1620
+ },
1621
+ "funding": {
1622
+ "url": "https://github.com/fb55/entities?sponsor=1"
1623
+ }
1624
+ },
1625
+ "node_modules/esbuild": {
1626
+ "version": "0.25.12",
1627
+ "dev": true,
1628
+ "hasInstallScript": true,
1629
+ "license": "MIT",
1630
+ "bin": {
1631
+ "esbuild": "bin/esbuild"
1632
+ },
1633
+ "engines": {
1634
+ "node": ">=18"
1635
+ },
1636
+ "optionalDependencies": {
1637
+ "@esbuild/aix-ppc64": "0.25.12",
1638
+ "@esbuild/android-arm": "0.25.12",
1639
+ "@esbuild/android-arm64": "0.25.12",
1640
+ "@esbuild/android-x64": "0.25.12",
1641
+ "@esbuild/darwin-arm64": "0.25.12",
1642
+ "@esbuild/darwin-x64": "0.25.12",
1643
+ "@esbuild/freebsd-arm64": "0.25.12",
1644
+ "@esbuild/freebsd-x64": "0.25.12",
1645
+ "@esbuild/linux-arm": "0.25.12",
1646
+ "@esbuild/linux-arm64": "0.25.12",
1647
+ "@esbuild/linux-ia32": "0.25.12",
1648
+ "@esbuild/linux-loong64": "0.25.12",
1649
+ "@esbuild/linux-mips64el": "0.25.12",
1650
+ "@esbuild/linux-ppc64": "0.25.12",
1651
+ "@esbuild/linux-riscv64": "0.25.12",
1652
+ "@esbuild/linux-s390x": "0.25.12",
1653
+ "@esbuild/linux-x64": "0.25.12",
1654
+ "@esbuild/netbsd-arm64": "0.25.12",
1655
+ "@esbuild/netbsd-x64": "0.25.12",
1656
+ "@esbuild/openbsd-arm64": "0.25.12",
1657
+ "@esbuild/openbsd-x64": "0.25.12",
1658
+ "@esbuild/openharmony-arm64": "0.25.12",
1659
+ "@esbuild/sunos-x64": "0.25.12",
1660
+ "@esbuild/win32-arm64": "0.25.12",
1661
+ "@esbuild/win32-ia32": "0.25.12",
1662
+ "@esbuild/win32-x64": "0.25.12"
1663
+ }
1664
+ },
1665
+ "node_modules/escalade": {
1666
+ "version": "3.2.0",
1667
+ "dev": true,
1668
+ "license": "MIT",
1669
+ "engines": {
1670
+ "node": ">=6"
1671
+ }
1672
+ },
1673
+ "node_modules/fdir": {
1674
+ "version": "6.5.0",
1675
+ "dev": true,
1676
+ "license": "MIT",
1677
+ "engines": {
1678
+ "node": ">=12.0.0"
1679
+ },
1680
+ "peerDependencies": {
1681
+ "picomatch": "^3 || ^4"
1682
+ },
1683
+ "peerDependenciesMeta": {
1684
+ "picomatch": {
1685
+ "optional": true
1686
+ }
1687
+ }
1688
+ },
1689
+ "node_modules/fsevents": {
1690
+ "version": "2.3.3",
1691
+ "dev": true,
1692
+ "license": "MIT",
1693
+ "optional": true,
1694
+ "os": [
1695
+ "darwin"
1696
+ ],
1697
+ "engines": {
1698
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1699
+ }
1700
+ },
1701
+ "node_modules/gensync": {
1702
+ "version": "1.0.0-beta.2",
1703
+ "dev": true,
1704
+ "license": "MIT",
1705
+ "engines": {
1706
+ "node": ">=6.9.0"
1707
+ }
1708
+ },
1709
+ "node_modules/graceful-fs": {
1710
+ "version": "4.2.11",
1711
+ "dev": true,
1712
+ "license": "ISC"
1713
+ },
1714
+ "node_modules/html-entities": {
1715
+ "version": "2.3.3",
1716
+ "dev": true,
1717
+ "license": "MIT"
1718
+ },
1719
+ "node_modules/is-what": {
1720
+ "version": "4.1.16",
1721
+ "dev": true,
1722
+ "license": "MIT",
1723
+ "engines": {
1724
+ "node": ">=12.13"
1725
+ },
1726
+ "funding": {
1727
+ "url": "https://github.com/sponsors/mesqueeb"
1728
+ }
1729
+ },
1730
+ "node_modules/jiti": {
1731
+ "version": "2.6.1",
1732
+ "dev": true,
1733
+ "license": "MIT",
1734
+ "bin": {
1735
+ "jiti": "lib/jiti-cli.mjs"
1736
+ }
1737
+ },
1738
+ "node_modules/js-tokens": {
1739
+ "version": "4.0.0",
1740
+ "dev": true,
1741
+ "license": "MIT"
1742
+ },
1743
+ "node_modules/jsesc": {
1744
+ "version": "3.1.0",
1745
+ "dev": true,
1746
+ "license": "MIT",
1747
+ "bin": {
1748
+ "jsesc": "bin/jsesc"
1749
+ },
1750
+ "engines": {
1751
+ "node": ">=6"
1752
+ }
1753
+ },
1754
+ "node_modules/json5": {
1755
+ "version": "2.2.3",
1756
+ "dev": true,
1757
+ "license": "MIT",
1758
+ "bin": {
1759
+ "json5": "lib/cli.js"
1760
+ },
1761
+ "engines": {
1762
+ "node": ">=6"
1763
+ }
1764
+ },
1765
+ "node_modules/lightningcss": {
1766
+ "version": "1.32.0",
1767
+ "dev": true,
1768
+ "license": "MPL-2.0",
1769
+ "dependencies": {
1770
+ "detect-libc": "^2.0.3"
1771
+ },
1772
+ "engines": {
1773
+ "node": ">= 12.0.0"
1774
+ },
1775
+ "funding": {
1776
+ "type": "opencollective",
1777
+ "url": "https://opencollective.com/parcel"
1778
+ },
1779
+ "optionalDependencies": {
1780
+ "lightningcss-android-arm64": "1.32.0",
1781
+ "lightningcss-darwin-arm64": "1.32.0",
1782
+ "lightningcss-darwin-x64": "1.32.0",
1783
+ "lightningcss-freebsd-x64": "1.32.0",
1784
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
1785
+ "lightningcss-linux-arm64-gnu": "1.32.0",
1786
+ "lightningcss-linux-arm64-musl": "1.32.0",
1787
+ "lightningcss-linux-x64-gnu": "1.32.0",
1788
+ "lightningcss-linux-x64-musl": "1.32.0",
1789
+ "lightningcss-win32-arm64-msvc": "1.32.0",
1790
+ "lightningcss-win32-x64-msvc": "1.32.0"
1791
+ }
1792
+ },
1793
+ "node_modules/lightningcss-android-arm64": {
1794
+ "version": "1.32.0",
1795
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
1796
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
1797
+ "cpu": [
1798
+ "arm64"
1799
+ ],
1800
+ "dev": true,
1801
+ "license": "MPL-2.0",
1802
+ "optional": true,
1803
+ "os": [
1804
+ "android"
1805
+ ],
1806
+ "engines": {
1807
+ "node": ">= 12.0.0"
1808
+ },
1809
+ "funding": {
1810
+ "type": "opencollective",
1811
+ "url": "https://opencollective.com/parcel"
1812
+ }
1813
+ },
1814
+ "node_modules/lightningcss-darwin-arm64": {
1815
+ "version": "1.32.0",
1816
+ "cpu": [
1817
+ "arm64"
1818
+ ],
1819
+ "dev": true,
1820
+ "license": "MPL-2.0",
1821
+ "optional": true,
1822
+ "os": [
1823
+ "darwin"
1824
+ ],
1825
+ "engines": {
1826
+ "node": ">= 12.0.0"
1827
+ },
1828
+ "funding": {
1829
+ "type": "opencollective",
1830
+ "url": "https://opencollective.com/parcel"
1831
+ }
1832
+ },
1833
+ "node_modules/lightningcss-darwin-x64": {
1834
+ "version": "1.32.0",
1835
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
1836
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
1837
+ "cpu": [
1838
+ "x64"
1839
+ ],
1840
+ "dev": true,
1841
+ "license": "MPL-2.0",
1842
+ "optional": true,
1843
+ "os": [
1844
+ "darwin"
1845
+ ],
1846
+ "engines": {
1847
+ "node": ">= 12.0.0"
1848
+ },
1849
+ "funding": {
1850
+ "type": "opencollective",
1851
+ "url": "https://opencollective.com/parcel"
1852
+ }
1853
+ },
1854
+ "node_modules/lightningcss-freebsd-x64": {
1855
+ "version": "1.32.0",
1856
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
1857
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
1858
+ "cpu": [
1859
+ "x64"
1860
+ ],
1861
+ "dev": true,
1862
+ "license": "MPL-2.0",
1863
+ "optional": true,
1864
+ "os": [
1865
+ "freebsd"
1866
+ ],
1867
+ "engines": {
1868
+ "node": ">= 12.0.0"
1869
+ },
1870
+ "funding": {
1871
+ "type": "opencollective",
1872
+ "url": "https://opencollective.com/parcel"
1873
+ }
1874
+ },
1875
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
1876
+ "version": "1.32.0",
1877
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
1878
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
1879
+ "cpu": [
1880
+ "arm"
1881
+ ],
1882
+ "dev": true,
1883
+ "license": "MPL-2.0",
1884
+ "optional": true,
1885
+ "os": [
1886
+ "linux"
1887
+ ],
1888
+ "engines": {
1889
+ "node": ">= 12.0.0"
1890
+ },
1891
+ "funding": {
1892
+ "type": "opencollective",
1893
+ "url": "https://opencollective.com/parcel"
1894
+ }
1895
+ },
1896
+ "node_modules/lightningcss-linux-arm64-gnu": {
1897
+ "version": "1.32.0",
1898
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
1899
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
1900
+ "cpu": [
1901
+ "arm64"
1902
+ ],
1903
+ "dev": true,
1904
+ "libc": [
1905
+ "glibc"
1906
+ ],
1907
+ "license": "MPL-2.0",
1908
+ "optional": true,
1909
+ "os": [
1910
+ "linux"
1911
+ ],
1912
+ "engines": {
1913
+ "node": ">= 12.0.0"
1914
+ },
1915
+ "funding": {
1916
+ "type": "opencollective",
1917
+ "url": "https://opencollective.com/parcel"
1918
+ }
1919
+ },
1920
+ "node_modules/lightningcss-linux-arm64-musl": {
1921
+ "version": "1.32.0",
1922
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
1923
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
1924
+ "cpu": [
1925
+ "arm64"
1926
+ ],
1927
+ "dev": true,
1928
+ "libc": [
1929
+ "musl"
1930
+ ],
1931
+ "license": "MPL-2.0",
1932
+ "optional": true,
1933
+ "os": [
1934
+ "linux"
1935
+ ],
1936
+ "engines": {
1937
+ "node": ">= 12.0.0"
1938
+ },
1939
+ "funding": {
1940
+ "type": "opencollective",
1941
+ "url": "https://opencollective.com/parcel"
1942
+ }
1943
+ },
1944
+ "node_modules/lightningcss-linux-x64-gnu": {
1945
+ "version": "1.32.0",
1946
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
1947
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
1948
+ "cpu": [
1949
+ "x64"
1950
+ ],
1951
+ "dev": true,
1952
+ "libc": [
1953
+ "glibc"
1954
+ ],
1955
+ "license": "MPL-2.0",
1956
+ "optional": true,
1957
+ "os": [
1958
+ "linux"
1959
+ ],
1960
+ "engines": {
1961
+ "node": ">= 12.0.0"
1962
+ },
1963
+ "funding": {
1964
+ "type": "opencollective",
1965
+ "url": "https://opencollective.com/parcel"
1966
+ }
1967
+ },
1968
+ "node_modules/lightningcss-linux-x64-musl": {
1969
+ "version": "1.32.0",
1970
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
1971
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
1972
+ "cpu": [
1973
+ "x64"
1974
+ ],
1975
+ "dev": true,
1976
+ "libc": [
1977
+ "musl"
1978
+ ],
1979
+ "license": "MPL-2.0",
1980
+ "optional": true,
1981
+ "os": [
1982
+ "linux"
1983
+ ],
1984
+ "engines": {
1985
+ "node": ">= 12.0.0"
1986
+ },
1987
+ "funding": {
1988
+ "type": "opencollective",
1989
+ "url": "https://opencollective.com/parcel"
1990
+ }
1991
+ },
1992
+ "node_modules/lightningcss-win32-arm64-msvc": {
1993
+ "version": "1.32.0",
1994
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
1995
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
1996
+ "cpu": [
1997
+ "arm64"
1998
+ ],
1999
+ "dev": true,
2000
+ "license": "MPL-2.0",
2001
+ "optional": true,
2002
+ "os": [
2003
+ "win32"
2004
+ ],
2005
+ "engines": {
2006
+ "node": ">= 12.0.0"
2007
+ },
2008
+ "funding": {
2009
+ "type": "opencollective",
2010
+ "url": "https://opencollective.com/parcel"
2011
+ }
2012
+ },
2013
+ "node_modules/lightningcss-win32-x64-msvc": {
2014
+ "version": "1.32.0",
2015
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
2016
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
2017
+ "cpu": [
2018
+ "x64"
2019
+ ],
2020
+ "dev": true,
2021
+ "license": "MPL-2.0",
2022
+ "optional": true,
2023
+ "os": [
2024
+ "win32"
2025
+ ],
2026
+ "engines": {
2027
+ "node": ">= 12.0.0"
2028
+ },
2029
+ "funding": {
2030
+ "type": "opencollective",
2031
+ "url": "https://opencollective.com/parcel"
2032
+ }
2033
+ },
2034
+ "node_modules/lru-cache": {
2035
+ "version": "5.1.1",
2036
+ "dev": true,
2037
+ "license": "ISC",
2038
+ "dependencies": {
2039
+ "yallist": "^3.0.2"
2040
+ }
2041
+ },
2042
+ "node_modules/magic-string": {
2043
+ "version": "0.30.21",
2044
+ "dev": true,
2045
+ "license": "MIT",
2046
+ "dependencies": {
2047
+ "@jridgewell/sourcemap-codec": "^1.5.5"
2048
+ }
2049
+ },
2050
+ "node_modules/marked": {
2051
+ "version": "14.1.4",
2052
+ "license": "MIT",
2053
+ "bin": {
2054
+ "marked": "bin/marked.js"
2055
+ },
2056
+ "engines": {
2057
+ "node": ">= 18"
2058
+ }
2059
+ },
2060
+ "node_modules/merge-anything": {
2061
+ "version": "5.1.7",
2062
+ "dev": true,
2063
+ "license": "MIT",
2064
+ "dependencies": {
2065
+ "is-what": "^4.1.8"
2066
+ },
2067
+ "engines": {
2068
+ "node": ">=12.13"
2069
+ },
2070
+ "funding": {
2071
+ "url": "https://github.com/sponsors/mesqueeb"
2072
+ }
2073
+ },
2074
+ "node_modules/ms": {
2075
+ "version": "2.1.3",
2076
+ "dev": true,
2077
+ "license": "MIT"
2078
+ },
2079
+ "node_modules/nanoid": {
2080
+ "version": "3.3.12",
2081
+ "dev": true,
2082
+ "funding": [
2083
+ {
2084
+ "type": "github",
2085
+ "url": "https://github.com/sponsors/ai"
2086
+ }
2087
+ ],
2088
+ "license": "MIT",
2089
+ "bin": {
2090
+ "nanoid": "bin/nanoid.cjs"
2091
+ },
2092
+ "engines": {
2093
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2094
+ }
2095
+ },
2096
+ "node_modules/node-releases": {
2097
+ "version": "2.0.38",
2098
+ "dev": true,
2099
+ "license": "MIT"
2100
+ },
2101
+ "node_modules/parse5": {
2102
+ "version": "7.3.0",
2103
+ "dev": true,
2104
+ "license": "MIT",
2105
+ "dependencies": {
2106
+ "entities": "^6.0.0"
2107
+ },
2108
+ "funding": {
2109
+ "url": "https://github.com/inikulin/parse5?sponsor=1"
2110
+ }
2111
+ },
2112
+ "node_modules/picocolors": {
2113
+ "version": "1.1.1",
2114
+ "dev": true,
2115
+ "license": "ISC"
2116
+ },
2117
+ "node_modules/picomatch": {
2118
+ "version": "4.0.4",
2119
+ "dev": true,
2120
+ "license": "MIT",
2121
+ "engines": {
2122
+ "node": ">=12"
2123
+ },
2124
+ "funding": {
2125
+ "url": "https://github.com/sponsors/jonschlinkert"
2126
+ }
2127
+ },
2128
+ "node_modules/postcss": {
2129
+ "version": "8.5.14",
2130
+ "dev": true,
2131
+ "funding": [
2132
+ {
2133
+ "type": "opencollective",
2134
+ "url": "https://opencollective.com/postcss/"
2135
+ },
2136
+ {
2137
+ "type": "tidelift",
2138
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2139
+ },
2140
+ {
2141
+ "type": "github",
2142
+ "url": "https://github.com/sponsors/ai"
2143
+ }
2144
+ ],
2145
+ "license": "MIT",
2146
+ "dependencies": {
2147
+ "nanoid": "^3.3.11",
2148
+ "picocolors": "^1.1.1",
2149
+ "source-map-js": "^1.2.1"
2150
+ },
2151
+ "engines": {
2152
+ "node": "^10 || ^12 || >=14"
2153
+ }
2154
+ },
2155
+ "node_modules/rollup": {
2156
+ "version": "4.60.3",
2157
+ "dev": true,
2158
+ "license": "MIT",
2159
+ "dependencies": {
2160
+ "@types/estree": "1.0.8"
2161
+ },
2162
+ "bin": {
2163
+ "rollup": "dist/bin/rollup"
2164
+ },
2165
+ "engines": {
2166
+ "node": ">=18.0.0",
2167
+ "npm": ">=8.0.0"
2168
+ },
2169
+ "optionalDependencies": {
2170
+ "@rollup/rollup-android-arm-eabi": "4.60.3",
2171
+ "@rollup/rollup-android-arm64": "4.60.3",
2172
+ "@rollup/rollup-darwin-arm64": "4.60.3",
2173
+ "@rollup/rollup-darwin-x64": "4.60.3",
2174
+ "@rollup/rollup-freebsd-arm64": "4.60.3",
2175
+ "@rollup/rollup-freebsd-x64": "4.60.3",
2176
+ "@rollup/rollup-linux-arm-gnueabihf": "4.60.3",
2177
+ "@rollup/rollup-linux-arm-musleabihf": "4.60.3",
2178
+ "@rollup/rollup-linux-arm64-gnu": "4.60.3",
2179
+ "@rollup/rollup-linux-arm64-musl": "4.60.3",
2180
+ "@rollup/rollup-linux-loong64-gnu": "4.60.3",
2181
+ "@rollup/rollup-linux-loong64-musl": "4.60.3",
2182
+ "@rollup/rollup-linux-ppc64-gnu": "4.60.3",
2183
+ "@rollup/rollup-linux-ppc64-musl": "4.60.3",
2184
+ "@rollup/rollup-linux-riscv64-gnu": "4.60.3",
2185
+ "@rollup/rollup-linux-riscv64-musl": "4.60.3",
2186
+ "@rollup/rollup-linux-s390x-gnu": "4.60.3",
2187
+ "@rollup/rollup-linux-x64-gnu": "4.60.3",
2188
+ "@rollup/rollup-linux-x64-musl": "4.60.3",
2189
+ "@rollup/rollup-openbsd-x64": "4.60.3",
2190
+ "@rollup/rollup-openharmony-arm64": "4.60.3",
2191
+ "@rollup/rollup-win32-arm64-msvc": "4.60.3",
2192
+ "@rollup/rollup-win32-ia32-msvc": "4.60.3",
2193
+ "@rollup/rollup-win32-x64-gnu": "4.60.3",
2194
+ "@rollup/rollup-win32-x64-msvc": "4.60.3",
2195
+ "fsevents": "~2.3.2"
2196
+ }
2197
+ },
2198
+ "node_modules/semver": {
2199
+ "version": "6.3.1",
2200
+ "dev": true,
2201
+ "license": "ISC",
2202
+ "bin": {
2203
+ "semver": "bin/semver.js"
2204
+ }
2205
+ },
2206
+ "node_modules/seroval": {
2207
+ "version": "1.5.3",
2208
+ "license": "MIT",
2209
+ "engines": {
2210
+ "node": ">=10"
2211
+ }
2212
+ },
2213
+ "node_modules/seroval-plugins": {
2214
+ "version": "1.5.3",
2215
+ "license": "MIT",
2216
+ "engines": {
2217
+ "node": ">=10"
2218
+ },
2219
+ "peerDependencies": {
2220
+ "seroval": "^1.0"
2221
+ }
2222
+ },
2223
+ "node_modules/solid-js": {
2224
+ "version": "1.9.12",
2225
+ "license": "MIT",
2226
+ "dependencies": {
2227
+ "csstype": "^3.1.0",
2228
+ "seroval": "~1.5.0",
2229
+ "seroval-plugins": "~1.5.0"
2230
+ }
2231
+ },
2232
+ "node_modules/solid-refresh": {
2233
+ "version": "0.6.3",
2234
+ "dev": true,
2235
+ "license": "MIT",
2236
+ "dependencies": {
2237
+ "@babel/generator": "^7.23.6",
2238
+ "@babel/helper-module-imports": "^7.22.15",
2239
+ "@babel/types": "^7.23.6"
2240
+ },
2241
+ "peerDependencies": {
2242
+ "solid-js": "^1.3"
2243
+ }
2244
+ },
2245
+ "node_modules/source-map-js": {
2246
+ "version": "1.2.1",
2247
+ "dev": true,
2248
+ "license": "BSD-3-Clause",
2249
+ "engines": {
2250
+ "node": ">=0.10.0"
2251
+ }
2252
+ },
2253
+ "node_modules/tailwindcss": {
2254
+ "version": "4.2.4",
2255
+ "dev": true,
2256
+ "license": "MIT"
2257
+ },
2258
+ "node_modules/tapable": {
2259
+ "version": "2.3.3",
2260
+ "dev": true,
2261
+ "license": "MIT",
2262
+ "engines": {
2263
+ "node": ">=6"
2264
+ },
2265
+ "funding": {
2266
+ "type": "opencollective",
2267
+ "url": "https://opencollective.com/webpack"
2268
+ }
2269
+ },
2270
+ "node_modules/tinyglobby": {
2271
+ "version": "0.2.16",
2272
+ "dev": true,
2273
+ "license": "MIT",
2274
+ "dependencies": {
2275
+ "fdir": "^6.5.0",
2276
+ "picomatch": "^4.0.4"
2277
+ },
2278
+ "engines": {
2279
+ "node": ">=12.0.0"
2280
+ },
2281
+ "funding": {
2282
+ "url": "https://github.com/sponsors/SuperchupuDev"
2283
+ }
2284
+ },
2285
+ "node_modules/typescript": {
2286
+ "version": "5.9.3",
2287
+ "dev": true,
2288
+ "license": "Apache-2.0",
2289
+ "bin": {
2290
+ "tsc": "bin/tsc",
2291
+ "tsserver": "bin/tsserver"
2292
+ },
2293
+ "engines": {
2294
+ "node": ">=14.17"
2295
+ }
2296
+ },
2297
+ "node_modules/update-browserslist-db": {
2298
+ "version": "1.2.3",
2299
+ "dev": true,
2300
+ "funding": [
2301
+ {
2302
+ "type": "opencollective",
2303
+ "url": "https://opencollective.com/browserslist"
2304
+ },
2305
+ {
2306
+ "type": "tidelift",
2307
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
2308
+ },
2309
+ {
2310
+ "type": "github",
2311
+ "url": "https://github.com/sponsors/ai"
2312
+ }
2313
+ ],
2314
+ "license": "MIT",
2315
+ "dependencies": {
2316
+ "escalade": "^3.2.0",
2317
+ "picocolors": "^1.1.1"
2318
+ },
2319
+ "bin": {
2320
+ "update-browserslist-db": "cli.js"
2321
+ },
2322
+ "peerDependencies": {
2323
+ "browserslist": ">= 4.21.0"
2324
+ }
2325
+ },
2326
+ "node_modules/vite": {
2327
+ "version": "6.4.2",
2328
+ "dev": true,
2329
+ "license": "MIT",
2330
+ "dependencies": {
2331
+ "esbuild": "^0.25.0",
2332
+ "fdir": "^6.4.4",
2333
+ "picomatch": "^4.0.2",
2334
+ "postcss": "^8.5.3",
2335
+ "rollup": "^4.34.9",
2336
+ "tinyglobby": "^0.2.13"
2337
+ },
2338
+ "bin": {
2339
+ "vite": "bin/vite.js"
2340
+ },
2341
+ "engines": {
2342
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
2343
+ },
2344
+ "funding": {
2345
+ "url": "https://github.com/vitejs/vite?sponsor=1"
2346
+ },
2347
+ "optionalDependencies": {
2348
+ "fsevents": "~2.3.3"
2349
+ },
2350
+ "peerDependencies": {
2351
+ "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
2352
+ "jiti": ">=1.21.0",
2353
+ "less": "*",
2354
+ "lightningcss": "^1.21.0",
2355
+ "sass": "*",
2356
+ "sass-embedded": "*",
2357
+ "stylus": "*",
2358
+ "sugarss": "*",
2359
+ "terser": "^5.16.0",
2360
+ "tsx": "^4.8.1",
2361
+ "yaml": "^2.4.2"
2362
+ },
2363
+ "peerDependenciesMeta": {
2364
+ "@types/node": {
2365
+ "optional": true
2366
+ },
2367
+ "jiti": {
2368
+ "optional": true
2369
+ },
2370
+ "less": {
2371
+ "optional": true
2372
+ },
2373
+ "lightningcss": {
2374
+ "optional": true
2375
+ },
2376
+ "sass": {
2377
+ "optional": true
2378
+ },
2379
+ "sass-embedded": {
2380
+ "optional": true
2381
+ },
2382
+ "stylus": {
2383
+ "optional": true
2384
+ },
2385
+ "sugarss": {
2386
+ "optional": true
2387
+ },
2388
+ "terser": {
2389
+ "optional": true
2390
+ },
2391
+ "tsx": {
2392
+ "optional": true
2393
+ },
2394
+ "yaml": {
2395
+ "optional": true
2396
+ }
2397
+ }
2398
+ },
2399
+ "node_modules/vite-plugin-solid": {
2400
+ "version": "2.11.12",
2401
+ "dev": true,
2402
+ "license": "MIT",
2403
+ "dependencies": {
2404
+ "@babel/core": "^7.23.3",
2405
+ "@types/babel__core": "^7.20.4",
2406
+ "babel-preset-solid": "^1.8.4",
2407
+ "merge-anything": "^5.1.7",
2408
+ "solid-refresh": "^0.6.3",
2409
+ "vitefu": "^1.0.4"
2410
+ },
2411
+ "peerDependencies": {
2412
+ "@testing-library/jest-dom": "^5.16.6 || ^5.17.0 || ^6.*",
2413
+ "solid-js": "^1.7.2",
2414
+ "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
2415
+ },
2416
+ "peerDependenciesMeta": {
2417
+ "@testing-library/jest-dom": {
2418
+ "optional": true
2419
+ }
2420
+ }
2421
+ },
2422
+ "node_modules/vitefu": {
2423
+ "version": "1.1.3",
2424
+ "dev": true,
2425
+ "license": "MIT",
2426
+ "workspaces": [
2427
+ "tests/deps/*",
2428
+ "tests/projects/*",
2429
+ "tests/projects/workspace/packages/*"
2430
+ ],
2431
+ "peerDependencies": {
2432
+ "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
2433
+ },
2434
+ "peerDependenciesMeta": {
2435
+ "vite": {
2436
+ "optional": true
2437
+ }
2438
+ }
2439
+ },
2440
+ "node_modules/yallist": {
2441
+ "version": "3.1.1",
2442
+ "dev": true,
2443
+ "license": "ISC"
2444
+ }
2445
+ }
2446
+ }