cloudflare-email 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +73 -1
  3. data/README.md +265 -388
  4. data/SECURITY.md +51 -0
  5. data/app/controllers/cloudflare/email/ingress_controller.rb +62 -6
  6. data/docs/activerecord-tenanted.md +135 -0
  7. data/docs/architecture.md +95 -0
  8. data/docs/delivery-events.md +177 -0
  9. data/docs/features.md +107 -0
  10. data/docs/getting-started.md +298 -0
  11. data/docs/mailboxes.md +299 -0
  12. data/docs/outbox.md +175 -0
  13. data/docs/tenant-mailboxes-plan.md +149 -0
  14. data/docs/thread-correlation.md +27 -0
  15. data/docs/troubleshooting.md +103 -0
  16. data/docs/upgrading-0.2.md +96 -0
  17. data/docs/verification/2026-09-10-followup.md +49 -0
  18. data/docs/verification/2026-09-10-install-upgrade.md +86 -0
  19. data/docs/verification/2026-09-10-live.md +102 -0
  20. data/docs/verification/2026-09-10.md +175 -0
  21. data/docs/verification/2026-09-11-extraction.md +32 -0
  22. data/docs/verification/2026-09-11-outbound-ledger.md +60 -0
  23. data/docs/verification/2026-09-11-security.md +76 -0
  24. data/docs/verification/2026-09-11-tenant-mailboxes.md +75 -0
  25. data/examples/plain_ruby.rb +24 -0
  26. data/lib/cloudflare/email/active_record/base.rb +48 -0
  27. data/lib/cloudflare/email/active_record/delivery_events.rb +72 -0
  28. data/lib/cloudflare/email/active_record/event_inbox.rb +77 -0
  29. data/lib/cloudflare/email/active_record/event_receipt.rb +17 -0
  30. data/lib/cloudflare/email/active_record/mail_snapshot.rb +24 -0
  31. data/lib/cloudflare/email/active_record/outbound_delivery.rb +22 -0
  32. data/lib/cloudflare/email/active_record/outbound_recipient.rb +13 -0
  33. data/lib/cloudflare/email/active_record/outbound_reconciliation.rb +15 -0
  34. data/lib/cloudflare/email/active_record/outbox.rb +219 -0
  35. data/lib/cloudflare/email/active_record/outbox_notifications.rb +34 -0
  36. data/lib/cloudflare/email/active_record.rb +5 -0
  37. data/lib/cloudflare/email/client.rb +51 -11
  38. data/lib/cloudflare/email/consume_events_task.rb +22 -0
  39. data/lib/cloudflare/email/delivery_event.rb +70 -0
  40. data/lib/cloudflare/email/delivery_method.rb +3 -0
  41. data/lib/cloudflare/email/deploy_worker_task.rb +3 -0
  42. data/lib/cloudflare/email/dev_ingress_guard.rb +27 -0
  43. data/lib/cloudflare/email/dev_tunnel.rb +31 -5
  44. data/lib/cloudflare/email/doctor.rb +16 -38
  45. data/lib/cloudflare/email/endpoint.rb +24 -0
  46. data/lib/cloudflare/email/engine.rb +28 -0
  47. data/lib/cloudflare/email/envelope.rb +58 -0
  48. data/lib/cloudflare/email/event_consumer.rb +86 -0
  49. data/lib/cloudflare/email/mailboxes/configuration.rb +58 -0
  50. data/lib/cloudflare/email/mailboxes/events.rb +112 -0
  51. data/lib/cloudflare/email/mailboxes/inbound_retention.rb +14 -0
  52. data/lib/cloudflare/email/mailboxes/jobs.rb +34 -0
  53. data/lib/cloudflare/email/mailboxes/models.rb +148 -0
  54. data/lib/cloudflare/email/mailboxes/provider_correlation.rb +11 -0
  55. data/lib/cloudflare/email/mailboxes/service.rb +288 -0
  56. data/lib/cloudflare/email/mailboxes/shared_event_receipt.rb +14 -0
  57. data/lib/cloudflare/email/mailboxes.rb +11 -0
  58. data/lib/cloudflare/email/message_id.rb +12 -0
  59. data/lib/cloudflare/email/provision_catchall_task.rb +4 -4
  60. data/lib/cloudflare/email/provision_route_task.rb +2 -1
  61. data/lib/cloudflare/email/replay_events_job.rb +18 -0
  62. data/lib/cloudflare/email/response.rb +21 -3
  63. data/lib/cloudflare/email/routing_provisioner.rb +71 -45
  64. data/lib/cloudflare/email/send_job.rb +41 -0
  65. data/lib/cloudflare/email/send_test.rb +5 -29
  66. data/lib/cloudflare/email/signing.rb +2 -2
  67. data/lib/cloudflare/email/tenancy.rb +78 -0
  68. data/lib/cloudflare/email/tenant_job_context.rb +90 -0
  69. data/lib/cloudflare/email/verification.rb +30 -8
  70. data/lib/cloudflare/email/version.rb +1 -1
  71. data/lib/cloudflare/email/worker_deployer.rb +5 -3
  72. data/lib/cloudflare-email.rb +4 -1
  73. data/lib/generators/cloudflare/email/install_generator.rb +48 -33
  74. data/lib/generators/cloudflare/email/mailboxes/mailboxes_generator.rb +55 -0
  75. data/lib/generators/cloudflare/email/mailboxes/templates/create_cloudflare_email_mailboxes.rb +54 -0
  76. data/lib/generators/cloudflare/email/mailboxes/templates/create_cloudflare_email_receiving_domains.rb +16 -0
  77. data/lib/generators/cloudflare/email/mailboxes/templates/create_cloudflare_email_shared_events.rb +35 -0
  78. data/lib/generators/cloudflare/email/outbox/outbox_generator.rb +28 -0
  79. data/lib/generators/cloudflare/email/outbox/templates/create_cloudflare_email_outbox.rb +48 -0
  80. data/lib/generators/cloudflare/email/templates/initializer.rb +3 -3
  81. data/lib/generators/cloudflare/email/templates/main_mailbox.rb +2 -7
  82. data/lib/generators/cloudflare/email/tracking/templates/create_cloudflare_email_event_receipts.rb +22 -0
  83. data/lib/generators/cloudflare/email/tracking/tracking_generator.rb +26 -0
  84. data/lib/tasks/cloudflare_email.rake +41 -4
  85. data/templates/worker/README.md +61 -11
  86. data/templates/worker/package-lock.json +2627 -0
  87. data/templates/worker/package.json +8 -5
  88. data/templates/worker/scripts/wrangler.mjs +16 -0
  89. data/templates/worker/src/index.js +83 -4
  90. data/templates/worker/test/index.test.ts +117 -5
  91. data/templates/worker/wrangler.toml +13 -4
  92. metadata +107 -6
  93. data/lib/cloudflare/email/secure_message_id.rb +0 -89
@@ -0,0 +1,2627 @@
1
+ {
2
+ "name": "cloudflare-email-ingress",
3
+ "version": "0.2.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "cloudflare-email-ingress",
9
+ "version": "0.2.0",
10
+ "devDependencies": {
11
+ "vitest": "^5.0.0",
12
+ "wrangler": "^4.131.0"
13
+ },
14
+ "engines": {
15
+ "node": "^22.12.0 || ^24.0.0 || >=26.0.0"
16
+ }
17
+ },
18
+ "node_modules/@cloudflare/kv-asset-handler": {
19
+ "version": "0.5.0",
20
+ "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.5.0.tgz",
21
+ "integrity": "sha512-jxQYkj8dSIzc0cD6cMMNdOc1UVjqSqu8BZdor5s8cGjW2I8BjODt/kWPVdY+u9zj3ms75Q5qaZgnxUad83+eAg==",
22
+ "dev": true,
23
+ "license": "MIT OR Apache-2.0",
24
+ "engines": {
25
+ "node": ">=22.0.0"
26
+ }
27
+ },
28
+ "node_modules/@cloudflare/unenv-preset": {
29
+ "version": "2.16.1",
30
+ "resolved": "https://registry.npmjs.org/@cloudflare/unenv-preset/-/unenv-preset-2.16.1.tgz",
31
+ "integrity": "sha512-ECxObrMfyTl5bhQf/lZCXwo5G6xX9IAUo+nDMKK4SZ8m4Jvvxp52vilxyySSWh2YTZz8+HQ07qGH/2rEom1vDw==",
32
+ "dev": true,
33
+ "license": "MIT OR Apache-2.0",
34
+ "peerDependencies": {
35
+ "unenv": "2.0.0-rc.24",
36
+ "workerd": ">1.20260305.0 <2.0.0-0"
37
+ },
38
+ "peerDependenciesMeta": {
39
+ "workerd": {
40
+ "optional": true
41
+ }
42
+ }
43
+ },
44
+ "node_modules/@cloudflare/workerd-darwin-64": {
45
+ "version": "1.20260910.1",
46
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20260910.1.tgz",
47
+ "integrity": "sha512-9K72iwX+RdKZLgvEqCgOI0tBgo10lN2lWjrtM8SRFjl7LOzk7NmrepBvAFiUz8H5PhxafQ17Dku2RLmzA/Hnew==",
48
+ "cpu": [
49
+ "x64"
50
+ ],
51
+ "dev": true,
52
+ "license": "Apache-2.0",
53
+ "optional": true,
54
+ "os": [
55
+ "darwin"
56
+ ],
57
+ "engines": {
58
+ "node": ">=16"
59
+ }
60
+ },
61
+ "node_modules/@cloudflare/workerd-darwin-arm64": {
62
+ "version": "1.20260910.1",
63
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20260910.1.tgz",
64
+ "integrity": "sha512-OYjzHbTXXxzRDtjnlcy4o6unJ3WiKM9FTtndvy4sitP9ZN+JC2/EDT/lyyJaFw4yZ9uSF9pdeMDp3Kgxixc2NA==",
65
+ "cpu": [
66
+ "arm64"
67
+ ],
68
+ "dev": true,
69
+ "license": "Apache-2.0",
70
+ "optional": true,
71
+ "os": [
72
+ "darwin"
73
+ ],
74
+ "engines": {
75
+ "node": ">=16"
76
+ }
77
+ },
78
+ "node_modules/@cloudflare/workerd-linux-64": {
79
+ "version": "1.20260910.1",
80
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20260910.1.tgz",
81
+ "integrity": "sha512-tNlHMrvoAyggdukuPSpN3huxOAwI9xzg2SOHC8sI785/HaAQbA220Ua9MOHWuc6MXj6QNSc3B0YA3DWtFtw37Q==",
82
+ "cpu": [
83
+ "x64"
84
+ ],
85
+ "dev": true,
86
+ "license": "Apache-2.0",
87
+ "optional": true,
88
+ "os": [
89
+ "linux"
90
+ ],
91
+ "engines": {
92
+ "node": ">=16"
93
+ }
94
+ },
95
+ "node_modules/@cloudflare/workerd-linux-arm64": {
96
+ "version": "1.20260910.1",
97
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20260910.1.tgz",
98
+ "integrity": "sha512-ScBo7DydT1o/sowCj2HBbN2TU3rQ11H2YEuFG3SC7M5b97PMmakhcIBzFpbKeHbyVf+aEsTlLCJsZtWDuyWAyQ==",
99
+ "cpu": [
100
+ "arm64"
101
+ ],
102
+ "dev": true,
103
+ "license": "Apache-2.0",
104
+ "optional": true,
105
+ "os": [
106
+ "linux"
107
+ ],
108
+ "engines": {
109
+ "node": ">=16"
110
+ }
111
+ },
112
+ "node_modules/@cloudflare/workerd-windows-64": {
113
+ "version": "1.20260910.1",
114
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20260910.1.tgz",
115
+ "integrity": "sha512-+iiMuoE9+rbs3NL21gIQYmhMDXs/kfhoiSsehqZparbvZo0MVUZDzm7cSaUgCKM3YCtXNWPnoV6VlfkgBbotvw==",
116
+ "cpu": [
117
+ "x64"
118
+ ],
119
+ "dev": true,
120
+ "license": "Apache-2.0",
121
+ "optional": true,
122
+ "os": [
123
+ "win32"
124
+ ],
125
+ "engines": {
126
+ "node": ">=16"
127
+ }
128
+ },
129
+ "node_modules/@cspotcode/source-map-support": {
130
+ "version": "0.8.1",
131
+ "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
132
+ "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
133
+ "dev": true,
134
+ "license": "MIT",
135
+ "dependencies": {
136
+ "@jridgewell/trace-mapping": "0.3.9"
137
+ },
138
+ "engines": {
139
+ "node": ">=12"
140
+ }
141
+ },
142
+ "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": {
143
+ "version": "0.3.9",
144
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
145
+ "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
146
+ "dev": true,
147
+ "license": "MIT",
148
+ "dependencies": {
149
+ "@jridgewell/resolve-uri": "^3.0.3",
150
+ "@jridgewell/sourcemap-codec": "^1.4.10"
151
+ }
152
+ },
153
+ "node_modules/@emnapi/runtime": {
154
+ "version": "1.11.3",
155
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.3.tgz",
156
+ "integrity": "sha512-Xz4Tpyki7XyrpbUK1jR1AhdAdaXyhhY4lZ3neLodmhpuWfy2PAQN5B46sAiU4liOXGLkHypn/qU+jvfWSCYYLA==",
157
+ "dev": true,
158
+ "license": "MIT",
159
+ "optional": true,
160
+ "dependencies": {
161
+ "tslib": "^2.4.0"
162
+ }
163
+ },
164
+ "node_modules/@esbuild/aix-ppc64": {
165
+ "version": "0.28.1",
166
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.1.tgz",
167
+ "integrity": "sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==",
168
+ "cpu": [
169
+ "ppc64"
170
+ ],
171
+ "dev": true,
172
+ "license": "MIT",
173
+ "optional": true,
174
+ "os": [
175
+ "aix"
176
+ ],
177
+ "engines": {
178
+ "node": ">=18"
179
+ }
180
+ },
181
+ "node_modules/@esbuild/android-arm": {
182
+ "version": "0.28.1",
183
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.1.tgz",
184
+ "integrity": "sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==",
185
+ "cpu": [
186
+ "arm"
187
+ ],
188
+ "dev": true,
189
+ "license": "MIT",
190
+ "optional": true,
191
+ "os": [
192
+ "android"
193
+ ],
194
+ "engines": {
195
+ "node": ">=18"
196
+ }
197
+ },
198
+ "node_modules/@esbuild/android-arm64": {
199
+ "version": "0.28.1",
200
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.1.tgz",
201
+ "integrity": "sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==",
202
+ "cpu": [
203
+ "arm64"
204
+ ],
205
+ "dev": true,
206
+ "license": "MIT",
207
+ "optional": true,
208
+ "os": [
209
+ "android"
210
+ ],
211
+ "engines": {
212
+ "node": ">=18"
213
+ }
214
+ },
215
+ "node_modules/@esbuild/android-x64": {
216
+ "version": "0.28.1",
217
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.1.tgz",
218
+ "integrity": "sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==",
219
+ "cpu": [
220
+ "x64"
221
+ ],
222
+ "dev": true,
223
+ "license": "MIT",
224
+ "optional": true,
225
+ "os": [
226
+ "android"
227
+ ],
228
+ "engines": {
229
+ "node": ">=18"
230
+ }
231
+ },
232
+ "node_modules/@esbuild/darwin-arm64": {
233
+ "version": "0.28.1",
234
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.1.tgz",
235
+ "integrity": "sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==",
236
+ "cpu": [
237
+ "arm64"
238
+ ],
239
+ "dev": true,
240
+ "license": "MIT",
241
+ "optional": true,
242
+ "os": [
243
+ "darwin"
244
+ ],
245
+ "engines": {
246
+ "node": ">=18"
247
+ }
248
+ },
249
+ "node_modules/@esbuild/darwin-x64": {
250
+ "version": "0.28.1",
251
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.1.tgz",
252
+ "integrity": "sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==",
253
+ "cpu": [
254
+ "x64"
255
+ ],
256
+ "dev": true,
257
+ "license": "MIT",
258
+ "optional": true,
259
+ "os": [
260
+ "darwin"
261
+ ],
262
+ "engines": {
263
+ "node": ">=18"
264
+ }
265
+ },
266
+ "node_modules/@esbuild/freebsd-arm64": {
267
+ "version": "0.28.1",
268
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.1.tgz",
269
+ "integrity": "sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==",
270
+ "cpu": [
271
+ "arm64"
272
+ ],
273
+ "dev": true,
274
+ "license": "MIT",
275
+ "optional": true,
276
+ "os": [
277
+ "freebsd"
278
+ ],
279
+ "engines": {
280
+ "node": ">=18"
281
+ }
282
+ },
283
+ "node_modules/@esbuild/freebsd-x64": {
284
+ "version": "0.28.1",
285
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.1.tgz",
286
+ "integrity": "sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==",
287
+ "cpu": [
288
+ "x64"
289
+ ],
290
+ "dev": true,
291
+ "license": "MIT",
292
+ "optional": true,
293
+ "os": [
294
+ "freebsd"
295
+ ],
296
+ "engines": {
297
+ "node": ">=18"
298
+ }
299
+ },
300
+ "node_modules/@esbuild/linux-arm": {
301
+ "version": "0.28.1",
302
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.1.tgz",
303
+ "integrity": "sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==",
304
+ "cpu": [
305
+ "arm"
306
+ ],
307
+ "dev": true,
308
+ "license": "MIT",
309
+ "optional": true,
310
+ "os": [
311
+ "linux"
312
+ ],
313
+ "engines": {
314
+ "node": ">=18"
315
+ }
316
+ },
317
+ "node_modules/@esbuild/linux-arm64": {
318
+ "version": "0.28.1",
319
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.1.tgz",
320
+ "integrity": "sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==",
321
+ "cpu": [
322
+ "arm64"
323
+ ],
324
+ "dev": true,
325
+ "license": "MIT",
326
+ "optional": true,
327
+ "os": [
328
+ "linux"
329
+ ],
330
+ "engines": {
331
+ "node": ">=18"
332
+ }
333
+ },
334
+ "node_modules/@esbuild/linux-ia32": {
335
+ "version": "0.28.1",
336
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.1.tgz",
337
+ "integrity": "sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==",
338
+ "cpu": [
339
+ "ia32"
340
+ ],
341
+ "dev": true,
342
+ "license": "MIT",
343
+ "optional": true,
344
+ "os": [
345
+ "linux"
346
+ ],
347
+ "engines": {
348
+ "node": ">=18"
349
+ }
350
+ },
351
+ "node_modules/@esbuild/linux-loong64": {
352
+ "version": "0.28.1",
353
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.1.tgz",
354
+ "integrity": "sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==",
355
+ "cpu": [
356
+ "loong64"
357
+ ],
358
+ "dev": true,
359
+ "license": "MIT",
360
+ "optional": true,
361
+ "os": [
362
+ "linux"
363
+ ],
364
+ "engines": {
365
+ "node": ">=18"
366
+ }
367
+ },
368
+ "node_modules/@esbuild/linux-mips64el": {
369
+ "version": "0.28.1",
370
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.1.tgz",
371
+ "integrity": "sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==",
372
+ "cpu": [
373
+ "mips64el"
374
+ ],
375
+ "dev": true,
376
+ "license": "MIT",
377
+ "optional": true,
378
+ "os": [
379
+ "linux"
380
+ ],
381
+ "engines": {
382
+ "node": ">=18"
383
+ }
384
+ },
385
+ "node_modules/@esbuild/linux-ppc64": {
386
+ "version": "0.28.1",
387
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.1.tgz",
388
+ "integrity": "sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==",
389
+ "cpu": [
390
+ "ppc64"
391
+ ],
392
+ "dev": true,
393
+ "license": "MIT",
394
+ "optional": true,
395
+ "os": [
396
+ "linux"
397
+ ],
398
+ "engines": {
399
+ "node": ">=18"
400
+ }
401
+ },
402
+ "node_modules/@esbuild/linux-riscv64": {
403
+ "version": "0.28.1",
404
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.1.tgz",
405
+ "integrity": "sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==",
406
+ "cpu": [
407
+ "riscv64"
408
+ ],
409
+ "dev": true,
410
+ "license": "MIT",
411
+ "optional": true,
412
+ "os": [
413
+ "linux"
414
+ ],
415
+ "engines": {
416
+ "node": ">=18"
417
+ }
418
+ },
419
+ "node_modules/@esbuild/linux-s390x": {
420
+ "version": "0.28.1",
421
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.1.tgz",
422
+ "integrity": "sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==",
423
+ "cpu": [
424
+ "s390x"
425
+ ],
426
+ "dev": true,
427
+ "license": "MIT",
428
+ "optional": true,
429
+ "os": [
430
+ "linux"
431
+ ],
432
+ "engines": {
433
+ "node": ">=18"
434
+ }
435
+ },
436
+ "node_modules/@esbuild/linux-x64": {
437
+ "version": "0.28.1",
438
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.1.tgz",
439
+ "integrity": "sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==",
440
+ "cpu": [
441
+ "x64"
442
+ ],
443
+ "dev": true,
444
+ "license": "MIT",
445
+ "optional": true,
446
+ "os": [
447
+ "linux"
448
+ ],
449
+ "engines": {
450
+ "node": ">=18"
451
+ }
452
+ },
453
+ "node_modules/@esbuild/netbsd-arm64": {
454
+ "version": "0.28.1",
455
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.1.tgz",
456
+ "integrity": "sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==",
457
+ "cpu": [
458
+ "arm64"
459
+ ],
460
+ "dev": true,
461
+ "license": "MIT",
462
+ "optional": true,
463
+ "os": [
464
+ "netbsd"
465
+ ],
466
+ "engines": {
467
+ "node": ">=18"
468
+ }
469
+ },
470
+ "node_modules/@esbuild/netbsd-x64": {
471
+ "version": "0.28.1",
472
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.1.tgz",
473
+ "integrity": "sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==",
474
+ "cpu": [
475
+ "x64"
476
+ ],
477
+ "dev": true,
478
+ "license": "MIT",
479
+ "optional": true,
480
+ "os": [
481
+ "netbsd"
482
+ ],
483
+ "engines": {
484
+ "node": ">=18"
485
+ }
486
+ },
487
+ "node_modules/@esbuild/openbsd-arm64": {
488
+ "version": "0.28.1",
489
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.1.tgz",
490
+ "integrity": "sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==",
491
+ "cpu": [
492
+ "arm64"
493
+ ],
494
+ "dev": true,
495
+ "license": "MIT",
496
+ "optional": true,
497
+ "os": [
498
+ "openbsd"
499
+ ],
500
+ "engines": {
501
+ "node": ">=18"
502
+ }
503
+ },
504
+ "node_modules/@esbuild/openbsd-x64": {
505
+ "version": "0.28.1",
506
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.1.tgz",
507
+ "integrity": "sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==",
508
+ "cpu": [
509
+ "x64"
510
+ ],
511
+ "dev": true,
512
+ "license": "MIT",
513
+ "optional": true,
514
+ "os": [
515
+ "openbsd"
516
+ ],
517
+ "engines": {
518
+ "node": ">=18"
519
+ }
520
+ },
521
+ "node_modules/@esbuild/openharmony-arm64": {
522
+ "version": "0.28.1",
523
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.1.tgz",
524
+ "integrity": "sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==",
525
+ "cpu": [
526
+ "arm64"
527
+ ],
528
+ "dev": true,
529
+ "license": "MIT",
530
+ "optional": true,
531
+ "os": [
532
+ "openharmony"
533
+ ],
534
+ "engines": {
535
+ "node": ">=18"
536
+ }
537
+ },
538
+ "node_modules/@esbuild/sunos-x64": {
539
+ "version": "0.28.1",
540
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.1.tgz",
541
+ "integrity": "sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==",
542
+ "cpu": [
543
+ "x64"
544
+ ],
545
+ "dev": true,
546
+ "license": "MIT",
547
+ "optional": true,
548
+ "os": [
549
+ "sunos"
550
+ ],
551
+ "engines": {
552
+ "node": ">=18"
553
+ }
554
+ },
555
+ "node_modules/@esbuild/win32-arm64": {
556
+ "version": "0.28.1",
557
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.1.tgz",
558
+ "integrity": "sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==",
559
+ "cpu": [
560
+ "arm64"
561
+ ],
562
+ "dev": true,
563
+ "license": "MIT",
564
+ "optional": true,
565
+ "os": [
566
+ "win32"
567
+ ],
568
+ "engines": {
569
+ "node": ">=18"
570
+ }
571
+ },
572
+ "node_modules/@esbuild/win32-ia32": {
573
+ "version": "0.28.1",
574
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.1.tgz",
575
+ "integrity": "sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==",
576
+ "cpu": [
577
+ "ia32"
578
+ ],
579
+ "dev": true,
580
+ "license": "MIT",
581
+ "optional": true,
582
+ "os": [
583
+ "win32"
584
+ ],
585
+ "engines": {
586
+ "node": ">=18"
587
+ }
588
+ },
589
+ "node_modules/@esbuild/win32-x64": {
590
+ "version": "0.28.1",
591
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.1.tgz",
592
+ "integrity": "sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==",
593
+ "cpu": [
594
+ "x64"
595
+ ],
596
+ "dev": true,
597
+ "license": "MIT",
598
+ "optional": true,
599
+ "os": [
600
+ "win32"
601
+ ],
602
+ "engines": {
603
+ "node": ">=18"
604
+ }
605
+ },
606
+ "node_modules/@img/colour": {
607
+ "version": "1.1.0",
608
+ "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz",
609
+ "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==",
610
+ "dev": true,
611
+ "license": "MIT",
612
+ "engines": {
613
+ "node": ">=18"
614
+ }
615
+ },
616
+ "node_modules/@img/sharp-darwin-arm64": {
617
+ "version": "0.35.4",
618
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.35.4.tgz",
619
+ "integrity": "sha512-Uhfl4V4lhP2nbUVF9+hyH1+luj86f1gUFeo8ALYxFoULoU+G87D43BfeMP8XHsk9boxAnCY/bf2EHwhA7MuGsA==",
620
+ "cpu": [
621
+ "arm64"
622
+ ],
623
+ "dev": true,
624
+ "license": "Apache-2.0",
625
+ "optional": true,
626
+ "os": [
627
+ "darwin"
628
+ ],
629
+ "engines": {
630
+ "node": ">=20.9.0"
631
+ },
632
+ "funding": {
633
+ "url": "https://opencollective.com/libvips"
634
+ },
635
+ "optionalDependencies": {
636
+ "@img/sharp-libvips-darwin-arm64": "1.3.3"
637
+ }
638
+ },
639
+ "node_modules/@img/sharp-darwin-x64": {
640
+ "version": "0.35.4",
641
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.35.4.tgz",
642
+ "integrity": "sha512-hWniXY3bG5qKpkKrAwPe4y+VTPmf086YQAnkxWh7uA1YrlRouWGa0M0Mxj3ZjnXFkv7/TD1bTy9lGUK26vRvWw==",
643
+ "cpu": [
644
+ "x64"
645
+ ],
646
+ "dev": true,
647
+ "license": "Apache-2.0",
648
+ "optional": true,
649
+ "os": [
650
+ "darwin"
651
+ ],
652
+ "engines": {
653
+ "node": ">=20.9.0"
654
+ },
655
+ "funding": {
656
+ "url": "https://opencollective.com/libvips"
657
+ },
658
+ "optionalDependencies": {
659
+ "@img/sharp-libvips-darwin-x64": "1.3.3"
660
+ }
661
+ },
662
+ "node_modules/@img/sharp-freebsd-wasm32": {
663
+ "version": "0.35.4",
664
+ "resolved": "https://registry.npmjs.org/@img/sharp-freebsd-wasm32/-/sharp-freebsd-wasm32-0.35.4.tgz",
665
+ "integrity": "sha512-lIsKw/BU+kjB4eZjxrYrZmwOJYi3Ajrv66iAlBmUPyKc3HpnloevB1g3wxGD9P/5BbQ1brBGl65VRRrCvQDEqA==",
666
+ "dev": true,
667
+ "license": "Apache-2.0",
668
+ "optional": true,
669
+ "os": [
670
+ "freebsd"
671
+ ],
672
+ "dependencies": {
673
+ "@img/sharp-wasm32": "0.35.4"
674
+ },
675
+ "engines": {
676
+ "node": ">=20.9.0"
677
+ },
678
+ "funding": {
679
+ "url": "https://opencollective.com/libvips"
680
+ }
681
+ },
682
+ "node_modules/@img/sharp-libvips-darwin-arm64": {
683
+ "version": "1.3.3",
684
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.3.3.tgz",
685
+ "integrity": "sha512-suTBPTDGrI9WodccaDdwZItTSaBYASlBk1NSfElSHrUfzu3szG6lvIF58+WiFvnfzuK8ZBFS5zE00PxqxnRiPg==",
686
+ "cpu": [
687
+ "arm64"
688
+ ],
689
+ "dev": true,
690
+ "license": "LGPL-3.0-or-later",
691
+ "optional": true,
692
+ "os": [
693
+ "darwin"
694
+ ],
695
+ "funding": {
696
+ "url": "https://opencollective.com/libvips"
697
+ }
698
+ },
699
+ "node_modules/@img/sharp-libvips-darwin-x64": {
700
+ "version": "1.3.3",
701
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.3.3.tgz",
702
+ "integrity": "sha512-FVJZ5mITMobmXIz/hPDTw0EintTW5H3WfrxwLqEqjiIihlu+hVRyGrFQ60xl0Lxn7Bt3zdpevPaQi0HEzqz9fw==",
703
+ "cpu": [
704
+ "x64"
705
+ ],
706
+ "dev": true,
707
+ "license": "LGPL-3.0-or-later",
708
+ "optional": true,
709
+ "os": [
710
+ "darwin"
711
+ ],
712
+ "funding": {
713
+ "url": "https://opencollective.com/libvips"
714
+ }
715
+ },
716
+ "node_modules/@img/sharp-libvips-linux-arm": {
717
+ "version": "1.3.3",
718
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.3.3.tgz",
719
+ "integrity": "sha512-3rbU4vqXXc3hY/OiXdl52xZvT0F1yEngWfvqudtPJg/KkyiaQw2DRsFrNzpmLvfavbwOq3qXn36GP8obHRULQA==",
720
+ "cpu": [
721
+ "arm"
722
+ ],
723
+ "dev": true,
724
+ "license": "LGPL-3.0-or-later",
725
+ "optional": true,
726
+ "os": [
727
+ "linux"
728
+ ],
729
+ "funding": {
730
+ "url": "https://opencollective.com/libvips"
731
+ }
732
+ },
733
+ "node_modules/@img/sharp-libvips-linux-arm64": {
734
+ "version": "1.3.3",
735
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.3.3.tgz",
736
+ "integrity": "sha512-0DaL0A6Xu6sQSQFwe4iVCrKWU2cCTItnRsYsCdxAMm9NF6twAA9BKnoqy4hqz4+azQ0JHuA26qiUKsf1XJ/v5A==",
737
+ "cpu": [
738
+ "arm64"
739
+ ],
740
+ "dev": true,
741
+ "license": "LGPL-3.0-or-later",
742
+ "optional": true,
743
+ "os": [
744
+ "linux"
745
+ ],
746
+ "funding": {
747
+ "url": "https://opencollective.com/libvips"
748
+ }
749
+ },
750
+ "node_modules/@img/sharp-libvips-linux-ppc64": {
751
+ "version": "1.3.3",
752
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.3.3.tgz",
753
+ "integrity": "sha512-cdn1OvUBwsXhbC0zSzJnNzf5MZ/mTrobawDvNXBTxe8VtqKAm0sRuEY2Evzovb/w9JMk4TvRxqt1mekSuJz64w==",
754
+ "cpu": [
755
+ "ppc64"
756
+ ],
757
+ "dev": true,
758
+ "license": "LGPL-3.0-or-later",
759
+ "optional": true,
760
+ "os": [
761
+ "linux"
762
+ ],
763
+ "funding": {
764
+ "url": "https://opencollective.com/libvips"
765
+ }
766
+ },
767
+ "node_modules/@img/sharp-libvips-linux-riscv64": {
768
+ "version": "1.3.3",
769
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.3.3.tgz",
770
+ "integrity": "sha512-HjPVx7yKz+0lqdhDlTw1tt90wamBoxhiXpvl1XZpJLiHH4RCJ5yDTqH+VlYPv2fwFs89JFw4c1IexYOcQUi4IQ==",
771
+ "cpu": [
772
+ "riscv64"
773
+ ],
774
+ "dev": true,
775
+ "license": "LGPL-3.0-or-later",
776
+ "optional": true,
777
+ "os": [
778
+ "linux"
779
+ ],
780
+ "funding": {
781
+ "url": "https://opencollective.com/libvips"
782
+ }
783
+ },
784
+ "node_modules/@img/sharp-libvips-linux-s390x": {
785
+ "version": "1.3.3",
786
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.3.3.tgz",
787
+ "integrity": "sha512-neWLh+3yCNThxnfy3c4BbVBeGgt9aftno+XbT56iK28RgeDs3UOFWviLWlUu0bArYVYJaFDK+RRohbicUNCm8Q==",
788
+ "cpu": [
789
+ "s390x"
790
+ ],
791
+ "dev": true,
792
+ "license": "LGPL-3.0-or-later",
793
+ "optional": true,
794
+ "os": [
795
+ "linux"
796
+ ],
797
+ "funding": {
798
+ "url": "https://opencollective.com/libvips"
799
+ }
800
+ },
801
+ "node_modules/@img/sharp-libvips-linux-x64": {
802
+ "version": "1.3.3",
803
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.3.3.tgz",
804
+ "integrity": "sha512-4vKmvAst9nrowcqquKFAyZJUDolUaIp8uRiN0mWFguJ1IplC9/pitXtlnnlU4aa/eJw3J7i67V+pwUL+wZGdsA==",
805
+ "cpu": [
806
+ "x64"
807
+ ],
808
+ "dev": true,
809
+ "license": "LGPL-3.0-or-later",
810
+ "optional": true,
811
+ "os": [
812
+ "linux"
813
+ ],
814
+ "funding": {
815
+ "url": "https://opencollective.com/libvips"
816
+ }
817
+ },
818
+ "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
819
+ "version": "1.3.3",
820
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.3.3.tgz",
821
+ "integrity": "sha512-Y9kQaLMuNoB0bPYOOdcZMaseNrFpPodIWWMrx+CZyydf2xn68j9WYc6sWWRrDwNkzCQjKYfc68L7jKjGlHMibw==",
822
+ "cpu": [
823
+ "arm64"
824
+ ],
825
+ "dev": true,
826
+ "license": "LGPL-3.0-or-later",
827
+ "optional": true,
828
+ "os": [
829
+ "linux"
830
+ ],
831
+ "funding": {
832
+ "url": "https://opencollective.com/libvips"
833
+ }
834
+ },
835
+ "node_modules/@img/sharp-libvips-linuxmusl-x64": {
836
+ "version": "1.3.3",
837
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.3.3.tgz",
838
+ "integrity": "sha512-fj8Mv0HHfD1Rr+4I68+3agJynxDWtBFgicTbSOb9Bke6pIwzGcJ+RX/yHjmiEGFMCavY/dxvem7MyNaJF+wDiw==",
839
+ "cpu": [
840
+ "x64"
841
+ ],
842
+ "dev": true,
843
+ "license": "LGPL-3.0-or-later",
844
+ "optional": true,
845
+ "os": [
846
+ "linux"
847
+ ],
848
+ "funding": {
849
+ "url": "https://opencollective.com/libvips"
850
+ }
851
+ },
852
+ "node_modules/@img/sharp-linux-arm": {
853
+ "version": "0.35.4",
854
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.35.4.tgz",
855
+ "integrity": "sha512-7OAS8gI0EReKGVN2HssHlM6umJgxF5VI3xN0p9FA91p/YO+ou5hiNghLdZ5BEHztwaaK5+bLKRf8x/o2L2nk9A==",
856
+ "cpu": [
857
+ "arm"
858
+ ],
859
+ "dev": true,
860
+ "license": "Apache-2.0",
861
+ "optional": true,
862
+ "os": [
863
+ "linux"
864
+ ],
865
+ "engines": {
866
+ "node": ">=20.9.0"
867
+ },
868
+ "funding": {
869
+ "url": "https://opencollective.com/libvips"
870
+ },
871
+ "optionalDependencies": {
872
+ "@img/sharp-libvips-linux-arm": "1.3.3"
873
+ }
874
+ },
875
+ "node_modules/@img/sharp-linux-arm64": {
876
+ "version": "0.35.4",
877
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.35.4.tgz",
878
+ "integrity": "sha512-De4jpEnAU8Hd5oT0j1G3uL4ZvTuipVMn7YC6vPaJhy6/7EwEae0SVAoBrUMYQbkLGDm85taVWwuPc1a44LTzCQ==",
879
+ "cpu": [
880
+ "arm64"
881
+ ],
882
+ "dev": true,
883
+ "license": "Apache-2.0",
884
+ "optional": true,
885
+ "os": [
886
+ "linux"
887
+ ],
888
+ "engines": {
889
+ "node": ">=20.9.0"
890
+ },
891
+ "funding": {
892
+ "url": "https://opencollective.com/libvips"
893
+ },
894
+ "optionalDependencies": {
895
+ "@img/sharp-libvips-linux-arm64": "1.3.3"
896
+ }
897
+ },
898
+ "node_modules/@img/sharp-linux-ppc64": {
899
+ "version": "0.35.4",
900
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.35.4.tgz",
901
+ "integrity": "sha512-2oYZJeIl4kCcMGk4ouZVjnkCtFrpQFlNEtJ6GbxzhHQchwH0NH/qEb9ykmOl29dqwMq+JhFdZn+1ak2FKhI9fQ==",
902
+ "cpu": [
903
+ "ppc64"
904
+ ],
905
+ "dev": true,
906
+ "license": "Apache-2.0",
907
+ "optional": true,
908
+ "os": [
909
+ "linux"
910
+ ],
911
+ "engines": {
912
+ "node": ">=20.9.0"
913
+ },
914
+ "funding": {
915
+ "url": "https://opencollective.com/libvips"
916
+ },
917
+ "optionalDependencies": {
918
+ "@img/sharp-libvips-linux-ppc64": "1.3.3"
919
+ }
920
+ },
921
+ "node_modules/@img/sharp-linux-riscv64": {
922
+ "version": "0.35.4",
923
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.35.4.tgz",
924
+ "integrity": "sha512-cPbNChoRURAWdebDIHSenxRpgEdy7JkPydSnUxRm9VvKD7m0/xVaR/8Fzlu81pk5nHEvHH87UZUA7cTtwnbJSA==",
925
+ "cpu": [
926
+ "riscv64"
927
+ ],
928
+ "dev": true,
929
+ "license": "Apache-2.0",
930
+ "optional": true,
931
+ "os": [
932
+ "linux"
933
+ ],
934
+ "engines": {
935
+ "node": ">=20.9.0"
936
+ },
937
+ "funding": {
938
+ "url": "https://opencollective.com/libvips"
939
+ },
940
+ "optionalDependencies": {
941
+ "@img/sharp-libvips-linux-riscv64": "1.3.3"
942
+ }
943
+ },
944
+ "node_modules/@img/sharp-linux-s390x": {
945
+ "version": "0.35.4",
946
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.35.4.tgz",
947
+ "integrity": "sha512-RY0JFY8Fd6RonCBtHz+DvadaPkXDSI1AUn6yWL9TipqkZ1vY8w8evqdgyDFnkm4/K1ve1TvZiaePP5oSd4+WVQ==",
948
+ "cpu": [
949
+ "s390x"
950
+ ],
951
+ "dev": true,
952
+ "license": "Apache-2.0",
953
+ "optional": true,
954
+ "os": [
955
+ "linux"
956
+ ],
957
+ "engines": {
958
+ "node": ">=20.9.0"
959
+ },
960
+ "funding": {
961
+ "url": "https://opencollective.com/libvips"
962
+ },
963
+ "optionalDependencies": {
964
+ "@img/sharp-libvips-linux-s390x": "1.3.3"
965
+ }
966
+ },
967
+ "node_modules/@img/sharp-linux-x64": {
968
+ "version": "0.35.4",
969
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.35.4.tgz",
970
+ "integrity": "sha512-9qvvEAuk8k89TfWUoX2htWjbAMX8p+NxCppjpcg5k6xMsjhBQPTsoIh36h9Qde4WRuGpJeYnOjdosDn/cnv+OA==",
971
+ "cpu": [
972
+ "x64"
973
+ ],
974
+ "dev": true,
975
+ "license": "Apache-2.0",
976
+ "optional": true,
977
+ "os": [
978
+ "linux"
979
+ ],
980
+ "engines": {
981
+ "node": ">=20.9.0"
982
+ },
983
+ "funding": {
984
+ "url": "https://opencollective.com/libvips"
985
+ },
986
+ "optionalDependencies": {
987
+ "@img/sharp-libvips-linux-x64": "1.3.3"
988
+ }
989
+ },
990
+ "node_modules/@img/sharp-linuxmusl-arm64": {
991
+ "version": "0.35.4",
992
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.35.4.tgz",
993
+ "integrity": "sha512-KB5jxpfWQTr0nc3xdHtWChdbifHrBGsd2SM62Eyxrl8afikm+f5qGBU75SJIZBT/S1MC8XyacdlXBMSWq6OURA==",
994
+ "cpu": [
995
+ "arm64"
996
+ ],
997
+ "dev": true,
998
+ "license": "Apache-2.0",
999
+ "optional": true,
1000
+ "os": [
1001
+ "linux"
1002
+ ],
1003
+ "engines": {
1004
+ "node": ">=20.9.0"
1005
+ },
1006
+ "funding": {
1007
+ "url": "https://opencollective.com/libvips"
1008
+ },
1009
+ "optionalDependencies": {
1010
+ "@img/sharp-libvips-linuxmusl-arm64": "1.3.3"
1011
+ }
1012
+ },
1013
+ "node_modules/@img/sharp-linuxmusl-x64": {
1014
+ "version": "0.35.4",
1015
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.35.4.tgz",
1016
+ "integrity": "sha512-f+eZJZIQNEEd26RPSW+76chwOf1XtA2Y/O+5ocVyLliHkeih3e+jhLVBdNTd2rS3IbNXK8+ug93Vf5ZXtF5Lxg==",
1017
+ "cpu": [
1018
+ "x64"
1019
+ ],
1020
+ "dev": true,
1021
+ "license": "Apache-2.0",
1022
+ "optional": true,
1023
+ "os": [
1024
+ "linux"
1025
+ ],
1026
+ "engines": {
1027
+ "node": ">=20.9.0"
1028
+ },
1029
+ "funding": {
1030
+ "url": "https://opencollective.com/libvips"
1031
+ },
1032
+ "optionalDependencies": {
1033
+ "@img/sharp-libvips-linuxmusl-x64": "1.3.3"
1034
+ }
1035
+ },
1036
+ "node_modules/@img/sharp-wasm32": {
1037
+ "version": "0.35.4",
1038
+ "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.35.4.tgz",
1039
+ "integrity": "sha512-zQnl4Kwp7Q6NHsENtU2T/00Zi+w3AQNwz3+UaTyVBy2FpXrzXzGjndpK61onhZjRtRpQXxCTeqw19bVyXOh7jA==",
1040
+ "dev": true,
1041
+ "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
1042
+ "optional": true,
1043
+ "dependencies": {
1044
+ "@emnapi/runtime": "^1.11.3"
1045
+ },
1046
+ "engines": {
1047
+ "node": ">=20.9.0"
1048
+ },
1049
+ "funding": {
1050
+ "url": "https://opencollective.com/libvips"
1051
+ }
1052
+ },
1053
+ "node_modules/@img/sharp-webcontainers-wasm32": {
1054
+ "version": "0.35.4",
1055
+ "resolved": "https://registry.npmjs.org/@img/sharp-webcontainers-wasm32/-/sharp-webcontainers-wasm32-0.35.4.tgz",
1056
+ "integrity": "sha512-ESfNkywmCfPNyaZjxooddJQiQ+l/nTpGEOGthxiLnIHXC/CmcBixnfwUleX9mCz9ovrUUvKMap/pm8RYbzfwaA==",
1057
+ "cpu": [
1058
+ "wasm32"
1059
+ ],
1060
+ "dev": true,
1061
+ "license": "Apache-2.0",
1062
+ "optional": true,
1063
+ "dependencies": {
1064
+ "@img/sharp-wasm32": "0.35.4"
1065
+ },
1066
+ "engines": {
1067
+ "node": ">=20.9.0"
1068
+ },
1069
+ "funding": {
1070
+ "url": "https://opencollective.com/libvips"
1071
+ }
1072
+ },
1073
+ "node_modules/@img/sharp-win32-arm64": {
1074
+ "version": "0.35.4",
1075
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.35.4.tgz",
1076
+ "integrity": "sha512-iNdlBX9gLVvqe2I3uIJSIKTq6wckP/DYxZtcqxm09x5Gi24DnFBmPAWZmr60ZyYMG0xlzo6goG3670ar+RXvRw==",
1077
+ "cpu": [
1078
+ "arm64"
1079
+ ],
1080
+ "dev": true,
1081
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
1082
+ "optional": true,
1083
+ "os": [
1084
+ "win32"
1085
+ ],
1086
+ "engines": {
1087
+ "node": ">=20.9.0"
1088
+ },
1089
+ "funding": {
1090
+ "url": "https://opencollective.com/libvips"
1091
+ }
1092
+ },
1093
+ "node_modules/@img/sharp-win32-ia32": {
1094
+ "version": "0.35.4",
1095
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.35.4.tgz",
1096
+ "integrity": "sha512-kqRsbaa5CS6KHlpxnN7WhE6vAAugXyZButpRdvDWetlv6Qv4N9WTcrWzF7tXfB9T7MsoadqdI8hmwLq6UlLvtw==",
1097
+ "cpu": [
1098
+ "ia32"
1099
+ ],
1100
+ "dev": true,
1101
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
1102
+ "optional": true,
1103
+ "os": [
1104
+ "win32"
1105
+ ],
1106
+ "engines": {
1107
+ "node": "^20.9.0"
1108
+ },
1109
+ "funding": {
1110
+ "url": "https://opencollective.com/libvips"
1111
+ }
1112
+ },
1113
+ "node_modules/@img/sharp-win32-x64": {
1114
+ "version": "0.35.4",
1115
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.35.4.tgz",
1116
+ "integrity": "sha512-XtmnYhBcrORsJ4XJngyzr/EWP0hRZLAZRFaApdKuviyqF78+ylxh2y06ZmtULAMOnObJ3ucpN0AcwSWnMowTRg==",
1117
+ "cpu": [
1118
+ "x64"
1119
+ ],
1120
+ "dev": true,
1121
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
1122
+ "optional": true,
1123
+ "os": [
1124
+ "win32"
1125
+ ],
1126
+ "engines": {
1127
+ "node": ">=20.9.0"
1128
+ },
1129
+ "funding": {
1130
+ "url": "https://opencollective.com/libvips"
1131
+ }
1132
+ },
1133
+ "node_modules/@jridgewell/resolve-uri": {
1134
+ "version": "3.1.2",
1135
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
1136
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
1137
+ "dev": true,
1138
+ "license": "MIT",
1139
+ "engines": {
1140
+ "node": ">=6.0.0"
1141
+ }
1142
+ },
1143
+ "node_modules/@jridgewell/sourcemap-codec": {
1144
+ "version": "1.6.0",
1145
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.6.0.tgz",
1146
+ "integrity": "sha512-T7jf+5zgsZHwNJ4lvQ7/aezbyk0nNX+zJVWpmHA7VYsEx7a7qr5Rg5IbtJFqkgze5Y2sruq1RUY8Q837Od7iFw==",
1147
+ "dev": true,
1148
+ "license": "MIT"
1149
+ },
1150
+ "node_modules/@jridgewell/trace-mapping": {
1151
+ "version": "0.3.31",
1152
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
1153
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
1154
+ "dev": true,
1155
+ "license": "MIT",
1156
+ "dependencies": {
1157
+ "@jridgewell/resolve-uri": "^3.1.0",
1158
+ "@jridgewell/sourcemap-codec": "^1.4.14"
1159
+ }
1160
+ },
1161
+ "node_modules/@oxc-project/types": {
1162
+ "version": "0.149.0",
1163
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.149.0.tgz",
1164
+ "integrity": "sha512-Efcc+iF0j3Bf67YjEqIqWXbX5XddXoK/Mw4K1/JuXwRCZ8N16VR7iT23nlCc9XrveFVh/E5Rqs2StT0V8v9LdA==",
1165
+ "dev": true,
1166
+ "license": "MIT",
1167
+ "peer": true,
1168
+ "funding": {
1169
+ "url": "https://github.com/sponsors/oxc-project"
1170
+ }
1171
+ },
1172
+ "node_modules/@poppinss/colors": {
1173
+ "version": "4.1.6",
1174
+ "resolved": "https://registry.npmjs.org/@poppinss/colors/-/colors-4.1.6.tgz",
1175
+ "integrity": "sha512-H9xkIdFswbS8n1d6vmRd8+c10t2Qe+rZITbbDHHkQixH5+2x1FDGmi/0K+WgWiqQFKPSlIYB7jlH6Kpfn6Fleg==",
1176
+ "dev": true,
1177
+ "license": "MIT",
1178
+ "dependencies": {
1179
+ "kleur": "^4.1.5"
1180
+ }
1181
+ },
1182
+ "node_modules/@poppinss/dumper": {
1183
+ "version": "0.6.5",
1184
+ "resolved": "https://registry.npmjs.org/@poppinss/dumper/-/dumper-0.6.5.tgz",
1185
+ "integrity": "sha512-NBdYIb90J7LfOI32dOewKI1r7wnkiH6m920puQ3qHUeZkxNkQiFnXVWoE6YtFSv6QOiPPf7ys6i+HWWecDz7sw==",
1186
+ "dev": true,
1187
+ "license": "MIT",
1188
+ "dependencies": {
1189
+ "@poppinss/colors": "^4.1.5",
1190
+ "@sindresorhus/is": "^7.0.2",
1191
+ "supports-color": "^10.0.0"
1192
+ }
1193
+ },
1194
+ "node_modules/@poppinss/exception": {
1195
+ "version": "1.2.3",
1196
+ "resolved": "https://registry.npmjs.org/@poppinss/exception/-/exception-1.2.3.tgz",
1197
+ "integrity": "sha512-dCED+QRChTVatE9ibtoaxc+WkdzOSjYTKi/+uacHWIsfodVfpsueo3+DKpgU5Px8qXjgmXkSvhXvSCz3fnP9lw==",
1198
+ "dev": true,
1199
+ "license": "MIT"
1200
+ },
1201
+ "node_modules/@rolldown/binding-android-arm-eabi": {
1202
+ "version": "1.2.8",
1203
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm-eabi/-/binding-android-arm-eabi-1.2.8.tgz",
1204
+ "integrity": "sha512-tN5aztYkKCte4i5SIrrz5yK/HMjEuCqCSCJa418jOV8tZ1cBY3YF2otxB1ktPxzsLA1BeTqwapK0bfjxNvHJVw==",
1205
+ "cpu": [
1206
+ "arm"
1207
+ ],
1208
+ "dev": true,
1209
+ "license": "MIT",
1210
+ "optional": true,
1211
+ "os": [
1212
+ "android"
1213
+ ],
1214
+ "peer": true,
1215
+ "engines": {
1216
+ "node": "^20.19.0 || >=22.12.0"
1217
+ }
1218
+ },
1219
+ "node_modules/@rolldown/binding-android-arm64": {
1220
+ "version": "1.2.8",
1221
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.2.8.tgz",
1222
+ "integrity": "sha512-dIYTWl9XprMUiQFoc55KUyk/oS8SKYH3zFl0LTR7RT0Xj4hgSVyuJcroH8JUu8RcpF8fTB6E0aOwCkZoYPcDSQ==",
1223
+ "cpu": [
1224
+ "arm64"
1225
+ ],
1226
+ "dev": true,
1227
+ "license": "MIT",
1228
+ "optional": true,
1229
+ "os": [
1230
+ "android"
1231
+ ],
1232
+ "peer": true,
1233
+ "engines": {
1234
+ "node": "^20.19.0 || >=22.12.0"
1235
+ }
1236
+ },
1237
+ "node_modules/@rolldown/binding-darwin-arm64": {
1238
+ "version": "1.2.8",
1239
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.2.8.tgz",
1240
+ "integrity": "sha512-PCSDQGXD2IyTEFrcgPyBM8jJuGmrbCMuoIOXdbEGVemruKACXoLQJrb+A45Z0L5t1RQkdfJprAYPkikbh7dzdA==",
1241
+ "cpu": [
1242
+ "arm64"
1243
+ ],
1244
+ "dev": true,
1245
+ "license": "MIT",
1246
+ "optional": true,
1247
+ "os": [
1248
+ "darwin"
1249
+ ],
1250
+ "peer": true,
1251
+ "engines": {
1252
+ "node": "^20.19.0 || >=22.12.0"
1253
+ }
1254
+ },
1255
+ "node_modules/@rolldown/binding-darwin-x64": {
1256
+ "version": "1.2.8",
1257
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.2.8.tgz",
1258
+ "integrity": "sha512-Uk7lRsGhPFHVX/sAUC6D5H9Ol30dFHd6iquokll2th3LpdJ3F5CzQB+7DHn0Ri2mG+U7k2zXiPHDrwZenXhwSA==",
1259
+ "cpu": [
1260
+ "x64"
1261
+ ],
1262
+ "dev": true,
1263
+ "license": "MIT",
1264
+ "optional": true,
1265
+ "os": [
1266
+ "darwin"
1267
+ ],
1268
+ "peer": true,
1269
+ "engines": {
1270
+ "node": "^20.19.0 || >=22.12.0"
1271
+ }
1272
+ },
1273
+ "node_modules/@rolldown/binding-freebsd-x64": {
1274
+ "version": "1.2.8",
1275
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.2.8.tgz",
1276
+ "integrity": "sha512-DjszaTEVogPqA5bYzsEeqDCQxbcp2fexQwKcRspYji2yzR68fCf+e4fx6kBSRDwX5/brZaHw/hWS9+A/+/w9sQ==",
1277
+ "cpu": [
1278
+ "x64"
1279
+ ],
1280
+ "dev": true,
1281
+ "license": "MIT",
1282
+ "optional": true,
1283
+ "os": [
1284
+ "freebsd"
1285
+ ],
1286
+ "peer": true,
1287
+ "engines": {
1288
+ "node": "^20.19.0 || >=22.12.0"
1289
+ }
1290
+ },
1291
+ "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
1292
+ "version": "1.2.8",
1293
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.2.8.tgz",
1294
+ "integrity": "sha512-zmwa7FTmdzB6aaEEuuls18H6Ap5JmJPSoPTuXixeJZV6tG40SyLkApQtz1g8ptZtiEKqj9OM0oNLPh1AgvE31Q==",
1295
+ "cpu": [
1296
+ "arm"
1297
+ ],
1298
+ "dev": true,
1299
+ "license": "MIT",
1300
+ "optional": true,
1301
+ "os": [
1302
+ "linux"
1303
+ ],
1304
+ "peer": true,
1305
+ "engines": {
1306
+ "node": "^20.19.0 || >=22.12.0"
1307
+ }
1308
+ },
1309
+ "node_modules/@rolldown/binding-linux-arm64-gnu": {
1310
+ "version": "1.2.8",
1311
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.2.8.tgz",
1312
+ "integrity": "sha512-KdYQDPHwJVnbFwdTGMgxsI9SqblBlz6STGM+w1We/d5B8OWWidYH0MwkU/uA1wM5fIpO2MkOVxXrNzzuZhw9ew==",
1313
+ "cpu": [
1314
+ "arm64"
1315
+ ],
1316
+ "dev": true,
1317
+ "license": "MIT",
1318
+ "optional": true,
1319
+ "os": [
1320
+ "linux"
1321
+ ],
1322
+ "peer": true,
1323
+ "engines": {
1324
+ "node": "^20.19.0 || >=22.12.0"
1325
+ }
1326
+ },
1327
+ "node_modules/@rolldown/binding-linux-arm64-musl": {
1328
+ "version": "1.2.8",
1329
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.2.8.tgz",
1330
+ "integrity": "sha512-jFJTifHnNPY+yzOoNZQfSIysrVyXzEQPhPnOUjmD1bcQGHH6s7c8cViKWar8YplQImE5N9JRqMCLrM2CdxOrZA==",
1331
+ "cpu": [
1332
+ "arm64"
1333
+ ],
1334
+ "dev": true,
1335
+ "license": "MIT",
1336
+ "optional": true,
1337
+ "os": [
1338
+ "linux"
1339
+ ],
1340
+ "peer": true,
1341
+ "engines": {
1342
+ "node": "^20.19.0 || >=22.12.0"
1343
+ }
1344
+ },
1345
+ "node_modules/@rolldown/binding-linux-ppc64-gnu": {
1346
+ "version": "1.2.8",
1347
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.2.8.tgz",
1348
+ "integrity": "sha512-FhiOziBDWPBjbcmRzfLyIJnaP7AVMFXT7YCXPjXxj7wKU3vx24RjrCNN/zjvVa+N2vVoHJwCoUBvsrN/DG3zIA==",
1349
+ "cpu": [
1350
+ "ppc64"
1351
+ ],
1352
+ "dev": true,
1353
+ "license": "MIT",
1354
+ "optional": true,
1355
+ "os": [
1356
+ "linux"
1357
+ ],
1358
+ "peer": true,
1359
+ "engines": {
1360
+ "node": "^20.19.0 || >=22.12.0"
1361
+ }
1362
+ },
1363
+ "node_modules/@rolldown/binding-linux-s390x-gnu": {
1364
+ "version": "1.2.8",
1365
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.2.8.tgz",
1366
+ "integrity": "sha512-WnHfADMzOV2Y55wlx1hzzQnar/wDt/VdvWSD99r18Mz9ylNieIGOkRx3UV21h7m/eJvjySYJkO26VvGNFkwsIQ==",
1367
+ "cpu": [
1368
+ "s390x"
1369
+ ],
1370
+ "dev": true,
1371
+ "license": "MIT",
1372
+ "optional": true,
1373
+ "os": [
1374
+ "linux"
1375
+ ],
1376
+ "peer": true,
1377
+ "engines": {
1378
+ "node": "^20.19.0 || >=22.12.0"
1379
+ }
1380
+ },
1381
+ "node_modules/@rolldown/binding-linux-x64-gnu": {
1382
+ "version": "1.2.8",
1383
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.2.8.tgz",
1384
+ "integrity": "sha512-H9tRr5ibfXFVLxbPOseVewewFpl28zcEdjRDt2FTUZU7odxP0gEv1ki4/kGmcGOh78oRwZuuQllGLZ9zTJp84g==",
1385
+ "cpu": [
1386
+ "x64"
1387
+ ],
1388
+ "dev": true,
1389
+ "license": "MIT",
1390
+ "optional": true,
1391
+ "os": [
1392
+ "linux"
1393
+ ],
1394
+ "peer": true,
1395
+ "engines": {
1396
+ "node": "^20.19.0 || >=22.12.0"
1397
+ }
1398
+ },
1399
+ "node_modules/@rolldown/binding-linux-x64-musl": {
1400
+ "version": "1.2.8",
1401
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.2.8.tgz",
1402
+ "integrity": "sha512-UefiqfM3D6IVNlZ8tSGs9+Ejjud2T+oxO0IHADU45Y+lyEjD2dVFyZHbkfX0LUb5Zugo/oIv1eCO/KVYhgYJYA==",
1403
+ "cpu": [
1404
+ "x64"
1405
+ ],
1406
+ "dev": true,
1407
+ "license": "MIT",
1408
+ "optional": true,
1409
+ "os": [
1410
+ "linux"
1411
+ ],
1412
+ "peer": true,
1413
+ "engines": {
1414
+ "node": "^20.19.0 || >=22.12.0"
1415
+ }
1416
+ },
1417
+ "node_modules/@rolldown/binding-openharmony-arm64": {
1418
+ "version": "1.2.8",
1419
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.2.8.tgz",
1420
+ "integrity": "sha512-637Ke4kWSy6rp9cxQ9gMOXlxPgIw/c1beASV4M//3+9I4uwBVOOl74G+e3zyU3u19U7RkRl/HuewixZ/Z6+Rjg==",
1421
+ "cpu": [
1422
+ "arm64"
1423
+ ],
1424
+ "dev": true,
1425
+ "license": "MIT",
1426
+ "optional": true,
1427
+ "os": [
1428
+ "openharmony"
1429
+ ],
1430
+ "peer": true,
1431
+ "engines": {
1432
+ "node": "^20.19.0 || >=22.12.0"
1433
+ }
1434
+ },
1435
+ "node_modules/@rolldown/binding-win32-arm64-msvc": {
1436
+ "version": "1.2.8",
1437
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.2.8.tgz",
1438
+ "integrity": "sha512-xWBkPOF1Q9k/Gv1nQXnVdLxKu74jXppuOM4Z3mnypVUJJJwLsMl7hNJGRAUJoG8A5MgOI1ACKM+wBFxSJzKy4A==",
1439
+ "cpu": [
1440
+ "arm64"
1441
+ ],
1442
+ "dev": true,
1443
+ "license": "MIT",
1444
+ "optional": true,
1445
+ "os": [
1446
+ "win32"
1447
+ ],
1448
+ "peer": true,
1449
+ "engines": {
1450
+ "node": "^20.19.0 || >=22.12.0"
1451
+ }
1452
+ },
1453
+ "node_modules/@rolldown/binding-win32-x64-msvc": {
1454
+ "version": "1.2.8",
1455
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.2.8.tgz",
1456
+ "integrity": "sha512-uz2ZvfgXbxqNwijjjbxrnvALwpyODDcgc1T1N8N3rf/DXKQmaFwmB4LX4yyjggpwN2obdQLb2rgirX5ffCWYng==",
1457
+ "cpu": [
1458
+ "x64"
1459
+ ],
1460
+ "dev": true,
1461
+ "license": "MIT",
1462
+ "optional": true,
1463
+ "os": [
1464
+ "win32"
1465
+ ],
1466
+ "peer": true,
1467
+ "engines": {
1468
+ "node": "^20.19.0 || >=22.12.0"
1469
+ }
1470
+ },
1471
+ "node_modules/@rolldown/pluginutils": {
1472
+ "version": "1.0.1",
1473
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
1474
+ "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
1475
+ "dev": true,
1476
+ "license": "MIT",
1477
+ "peer": true
1478
+ },
1479
+ "node_modules/@sindresorhus/is": {
1480
+ "version": "7.2.0",
1481
+ "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-7.2.0.tgz",
1482
+ "integrity": "sha512-P1Cz1dWaFfR4IR+U13mqqiGsLFf1KbayybWwdd2vfctdV6hDpUkgCY0nKOLLTMSoRd/jJNjtbqzf13K8DCCXQw==",
1483
+ "dev": true,
1484
+ "license": "MIT",
1485
+ "engines": {
1486
+ "node": ">=18"
1487
+ },
1488
+ "funding": {
1489
+ "url": "https://github.com/sindresorhus/is?sponsor=1"
1490
+ }
1491
+ },
1492
+ "node_modules/@speed-highlight/core": {
1493
+ "version": "1.2.24",
1494
+ "resolved": "https://registry.npmjs.org/@speed-highlight/core/-/core-1.2.24.tgz",
1495
+ "integrity": "sha512-qeW2e1l78afw8VhRPfPQ1Gjj+KU5XFQ/OFV5ti6eTa9bruO7mJyZtA4vw0ofqmA3tKCkROE9xLk3VZoeRc98nw==",
1496
+ "dev": true,
1497
+ "license": "CC0-1.0"
1498
+ },
1499
+ "node_modules/@types/chai": {
1500
+ "version": "5.2.3",
1501
+ "resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz",
1502
+ "integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==",
1503
+ "dev": true,
1504
+ "license": "MIT",
1505
+ "dependencies": {
1506
+ "@types/deep-eql": "*",
1507
+ "assertion-error": "^2.0.1"
1508
+ }
1509
+ },
1510
+ "node_modules/@types/deep-eql": {
1511
+ "version": "4.0.2",
1512
+ "resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz",
1513
+ "integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==",
1514
+ "dev": true,
1515
+ "license": "MIT"
1516
+ },
1517
+ "node_modules/@types/estree": {
1518
+ "version": "1.0.9",
1519
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
1520
+ "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
1521
+ "dev": true,
1522
+ "license": "MIT"
1523
+ },
1524
+ "node_modules/@vitest/mocker": {
1525
+ "version": "5.0.0",
1526
+ "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-5.0.0.tgz",
1527
+ "integrity": "sha512-66PGTMIiVJP3t4a5yxU9qPtf7MdTBs8jmToMvy+HVflB3Yy13WJZTtPePdvU+wjRV02SKK5doLbSA6o9pwOmiA==",
1528
+ "dev": true,
1529
+ "license": "MIT",
1530
+ "dependencies": {
1531
+ "@jridgewell/trace-mapping": "0.3.31",
1532
+ "@vitest/spy": "5.0.0",
1533
+ "estree-walker": "^3.0.3",
1534
+ "magic-string": "^1.2.3"
1535
+ },
1536
+ "funding": {
1537
+ "url": "https://opencollective.com/vitest"
1538
+ },
1539
+ "peerDependencies": {
1540
+ "msw": "^2.4.9",
1541
+ "vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
1542
+ },
1543
+ "peerDependenciesMeta": {
1544
+ "msw": {
1545
+ "optional": true
1546
+ },
1547
+ "vite": {
1548
+ "optional": true
1549
+ }
1550
+ }
1551
+ },
1552
+ "node_modules/@vitest/spy": {
1553
+ "version": "5.0.0",
1554
+ "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-5.0.0.tgz",
1555
+ "integrity": "sha512-uy+luWBAPw9XfthoHi5AkfHUnuPYEESjl0p/r+meoBnU8bxg5GDQ3Ey8MjcJ6sqahkL4PFyrvfMJJBw7LbU06g==",
1556
+ "dev": true,
1557
+ "license": "MIT",
1558
+ "funding": {
1559
+ "url": "https://opencollective.com/vitest"
1560
+ }
1561
+ },
1562
+ "node_modules/assertion-error": {
1563
+ "version": "2.0.1",
1564
+ "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz",
1565
+ "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==",
1566
+ "dev": true,
1567
+ "license": "MIT",
1568
+ "engines": {
1569
+ "node": ">=12"
1570
+ }
1571
+ },
1572
+ "node_modules/blake3-wasm": {
1573
+ "version": "2.1.5",
1574
+ "resolved": "https://registry.npmjs.org/blake3-wasm/-/blake3-wasm-2.1.5.tgz",
1575
+ "integrity": "sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==",
1576
+ "dev": true,
1577
+ "license": "MIT"
1578
+ },
1579
+ "node_modules/chai": {
1580
+ "version": "6.2.2",
1581
+ "resolved": "https://registry.npmjs.org/chai/-/chai-6.2.2.tgz",
1582
+ "integrity": "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==",
1583
+ "dev": true,
1584
+ "license": "MIT",
1585
+ "engines": {
1586
+ "node": ">=18"
1587
+ }
1588
+ },
1589
+ "node_modules/cookie": {
1590
+ "version": "1.1.1",
1591
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
1592
+ "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
1593
+ "dev": true,
1594
+ "license": "MIT",
1595
+ "engines": {
1596
+ "node": ">=18"
1597
+ },
1598
+ "funding": {
1599
+ "type": "opencollective",
1600
+ "url": "https://opencollective.com/express"
1601
+ }
1602
+ },
1603
+ "node_modules/detect-libc": {
1604
+ "version": "2.1.2",
1605
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1606
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1607
+ "dev": true,
1608
+ "license": "Apache-2.0",
1609
+ "engines": {
1610
+ "node": ">=8"
1611
+ }
1612
+ },
1613
+ "node_modules/error-stack-parser-es": {
1614
+ "version": "1.0.5",
1615
+ "resolved": "https://registry.npmjs.org/error-stack-parser-es/-/error-stack-parser-es-1.0.5.tgz",
1616
+ "integrity": "sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==",
1617
+ "dev": true,
1618
+ "license": "MIT",
1619
+ "funding": {
1620
+ "url": "https://github.com/sponsors/antfu"
1621
+ }
1622
+ },
1623
+ "node_modules/es-module-lexer": {
1624
+ "version": "2.3.2",
1625
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.3.2.tgz",
1626
+ "integrity": "sha512-poHGpORABojJJucnV9KbOavETW8lBVnphkW77ER5/BQ5Fz7oXSoCNek7IH3vR5nRjdsEz926ibFYX8KtLQmdyw==",
1627
+ "dev": true,
1628
+ "license": "MIT"
1629
+ },
1630
+ "node_modules/esbuild": {
1631
+ "version": "0.28.1",
1632
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.1.tgz",
1633
+ "integrity": "sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==",
1634
+ "dev": true,
1635
+ "hasInstallScript": true,
1636
+ "license": "MIT",
1637
+ "bin": {
1638
+ "esbuild": "bin/esbuild"
1639
+ },
1640
+ "engines": {
1641
+ "node": ">=18"
1642
+ },
1643
+ "optionalDependencies": {
1644
+ "@esbuild/aix-ppc64": "0.28.1",
1645
+ "@esbuild/android-arm": "0.28.1",
1646
+ "@esbuild/android-arm64": "0.28.1",
1647
+ "@esbuild/android-x64": "0.28.1",
1648
+ "@esbuild/darwin-arm64": "0.28.1",
1649
+ "@esbuild/darwin-x64": "0.28.1",
1650
+ "@esbuild/freebsd-arm64": "0.28.1",
1651
+ "@esbuild/freebsd-x64": "0.28.1",
1652
+ "@esbuild/linux-arm": "0.28.1",
1653
+ "@esbuild/linux-arm64": "0.28.1",
1654
+ "@esbuild/linux-ia32": "0.28.1",
1655
+ "@esbuild/linux-loong64": "0.28.1",
1656
+ "@esbuild/linux-mips64el": "0.28.1",
1657
+ "@esbuild/linux-ppc64": "0.28.1",
1658
+ "@esbuild/linux-riscv64": "0.28.1",
1659
+ "@esbuild/linux-s390x": "0.28.1",
1660
+ "@esbuild/linux-x64": "0.28.1",
1661
+ "@esbuild/netbsd-arm64": "0.28.1",
1662
+ "@esbuild/netbsd-x64": "0.28.1",
1663
+ "@esbuild/openbsd-arm64": "0.28.1",
1664
+ "@esbuild/openbsd-x64": "0.28.1",
1665
+ "@esbuild/openharmony-arm64": "0.28.1",
1666
+ "@esbuild/sunos-x64": "0.28.1",
1667
+ "@esbuild/win32-arm64": "0.28.1",
1668
+ "@esbuild/win32-ia32": "0.28.1",
1669
+ "@esbuild/win32-x64": "0.28.1"
1670
+ }
1671
+ },
1672
+ "node_modules/estree-walker": {
1673
+ "version": "3.0.3",
1674
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
1675
+ "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
1676
+ "dev": true,
1677
+ "license": "MIT",
1678
+ "dependencies": {
1679
+ "@types/estree": "^1.0.0"
1680
+ }
1681
+ },
1682
+ "node_modules/expect-type": {
1683
+ "version": "1.4.0",
1684
+ "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.4.0.tgz",
1685
+ "integrity": "sha512-KfYbmpRm0VbLjEvVa9yGwCi9GI34xvi7A/HXYWQO65CSD2u3MczUJSuwXKFIxlGsgBQizV9q5J9NHj4VG0n+pA==",
1686
+ "dev": true,
1687
+ "license": "Apache-2.0",
1688
+ "engines": {
1689
+ "node": ">=12.0.0"
1690
+ }
1691
+ },
1692
+ "node_modules/fdir": {
1693
+ "version": "6.5.0",
1694
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
1695
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
1696
+ "dev": true,
1697
+ "license": "MIT",
1698
+ "engines": {
1699
+ "node": ">=12.0.0"
1700
+ },
1701
+ "peerDependencies": {
1702
+ "picomatch": "^3 || ^4"
1703
+ },
1704
+ "peerDependenciesMeta": {
1705
+ "picomatch": {
1706
+ "optional": true
1707
+ }
1708
+ }
1709
+ },
1710
+ "node_modules/fsevents": {
1711
+ "version": "2.3.3",
1712
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1713
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1714
+ "dev": true,
1715
+ "hasInstallScript": true,
1716
+ "license": "MIT",
1717
+ "optional": true,
1718
+ "os": [
1719
+ "darwin"
1720
+ ],
1721
+ "engines": {
1722
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1723
+ }
1724
+ },
1725
+ "node_modules/kleur": {
1726
+ "version": "4.1.5",
1727
+ "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
1728
+ "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
1729
+ "dev": true,
1730
+ "license": "MIT",
1731
+ "engines": {
1732
+ "node": ">=6"
1733
+ }
1734
+ },
1735
+ "node_modules/lightningcss": {
1736
+ "version": "1.33.0",
1737
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.33.0.tgz",
1738
+ "integrity": "sha512-WkUDrojuJs0xkgGf2udWxa3yGBRxPtxUkB79i6aCZLRgc7PM8fZe9TosfPDcvEpQZbuFASnHYmRLBLUbmLOIIA==",
1739
+ "dev": true,
1740
+ "license": "MPL-2.0",
1741
+ "peer": true,
1742
+ "dependencies": {
1743
+ "detect-libc": "^2.0.3"
1744
+ },
1745
+ "engines": {
1746
+ "node": ">= 12.0.0"
1747
+ },
1748
+ "funding": {
1749
+ "type": "opencollective",
1750
+ "url": "https://opencollective.com/parcel"
1751
+ },
1752
+ "optionalDependencies": {
1753
+ "lightningcss-android-arm64": "1.33.0",
1754
+ "lightningcss-darwin-arm64": "1.33.0",
1755
+ "lightningcss-darwin-x64": "1.33.0",
1756
+ "lightningcss-freebsd-x64": "1.33.0",
1757
+ "lightningcss-linux-arm-gnueabihf": "1.33.0",
1758
+ "lightningcss-linux-arm64-gnu": "1.33.0",
1759
+ "lightningcss-linux-arm64-musl": "1.33.0",
1760
+ "lightningcss-linux-x64-gnu": "1.33.0",
1761
+ "lightningcss-linux-x64-musl": "1.33.0",
1762
+ "lightningcss-win32-arm64-msvc": "1.33.0",
1763
+ "lightningcss-win32-x64-msvc": "1.33.0"
1764
+ }
1765
+ },
1766
+ "node_modules/lightningcss-android-arm64": {
1767
+ "version": "1.33.0",
1768
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.33.0.tgz",
1769
+ "integrity": "sha512-gEpRTalKdosp4Bb8qWtc2iOgE5SeIHlpS1up9bFq2wAyYhl1UdTObYiHe98zEM9SQvSoqQZ1IQD0JNpg3Ml5pg==",
1770
+ "cpu": [
1771
+ "arm64"
1772
+ ],
1773
+ "dev": true,
1774
+ "license": "MPL-2.0",
1775
+ "optional": true,
1776
+ "os": [
1777
+ "android"
1778
+ ],
1779
+ "peer": true,
1780
+ "engines": {
1781
+ "node": ">= 12.0.0"
1782
+ },
1783
+ "funding": {
1784
+ "type": "opencollective",
1785
+ "url": "https://opencollective.com/parcel"
1786
+ }
1787
+ },
1788
+ "node_modules/lightningcss-darwin-arm64": {
1789
+ "version": "1.33.0",
1790
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.33.0.tgz",
1791
+ "integrity": "sha512-Sciaz8eenNTKn9b3t7+xr0ipTp9YxKQY4npwQ3mrRuL0BAVHBLyZxofhaKBAVtzmtRZ/zTyo0/to4B1uWG/Djg==",
1792
+ "cpu": [
1793
+ "arm64"
1794
+ ],
1795
+ "dev": true,
1796
+ "license": "MPL-2.0",
1797
+ "optional": true,
1798
+ "os": [
1799
+ "darwin"
1800
+ ],
1801
+ "peer": true,
1802
+ "engines": {
1803
+ "node": ">= 12.0.0"
1804
+ },
1805
+ "funding": {
1806
+ "type": "opencollective",
1807
+ "url": "https://opencollective.com/parcel"
1808
+ }
1809
+ },
1810
+ "node_modules/lightningcss-darwin-x64": {
1811
+ "version": "1.33.0",
1812
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.33.0.tgz",
1813
+ "integrity": "sha512-Z5UPAxzrjlWNNyGy6i65cJzzvgJ5D3T6wMvs+gWpY9d7qRhANrxqAp6LhxIgZhWEw18RfJTGcRxjuLIBr+m8XQ==",
1814
+ "cpu": [
1815
+ "x64"
1816
+ ],
1817
+ "dev": true,
1818
+ "license": "MPL-2.0",
1819
+ "optional": true,
1820
+ "os": [
1821
+ "darwin"
1822
+ ],
1823
+ "peer": true,
1824
+ "engines": {
1825
+ "node": ">= 12.0.0"
1826
+ },
1827
+ "funding": {
1828
+ "type": "opencollective",
1829
+ "url": "https://opencollective.com/parcel"
1830
+ }
1831
+ },
1832
+ "node_modules/lightningcss-freebsd-x64": {
1833
+ "version": "1.33.0",
1834
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.33.0.tgz",
1835
+ "integrity": "sha512-QQM/Ti/hQajJwCY+RiWuCZ9sdtI/XQk7nDK5vC8kkdwixezOlDgvDx7+RT+QjK6FcFT4MpsuoBnHIo/O3StRRg==",
1836
+ "cpu": [
1837
+ "x64"
1838
+ ],
1839
+ "dev": true,
1840
+ "license": "MPL-2.0",
1841
+ "optional": true,
1842
+ "os": [
1843
+ "freebsd"
1844
+ ],
1845
+ "peer": true,
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-linux-arm-gnueabihf": {
1855
+ "version": "1.33.0",
1856
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.33.0.tgz",
1857
+ "integrity": "sha512-N7FVBe6iS24MlM6R/4RBTxGhQheZGs7tiQ9U32UtF75NzP5Q7xWPRqLBCKxlRQRk3rY1jCIPLzx7WzOhuUIRLQ==",
1858
+ "cpu": [
1859
+ "arm"
1860
+ ],
1861
+ "dev": true,
1862
+ "license": "MPL-2.0",
1863
+ "optional": true,
1864
+ "os": [
1865
+ "linux"
1866
+ ],
1867
+ "peer": true,
1868
+ "engines": {
1869
+ "node": ">= 12.0.0"
1870
+ },
1871
+ "funding": {
1872
+ "type": "opencollective",
1873
+ "url": "https://opencollective.com/parcel"
1874
+ }
1875
+ },
1876
+ "node_modules/lightningcss-linux-arm64-gnu": {
1877
+ "version": "1.33.0",
1878
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.33.0.tgz",
1879
+ "integrity": "sha512-j2v/itmy4HlNxlc6voKXYgBqNi0Ng2LShg4z7GufpEgs05P+2suBVyi9I6YHq5uoVFx9ETin3eCEhLVyXGQnKg==",
1880
+ "cpu": [
1881
+ "arm64"
1882
+ ],
1883
+ "dev": true,
1884
+ "license": "MPL-2.0",
1885
+ "optional": true,
1886
+ "os": [
1887
+ "linux"
1888
+ ],
1889
+ "peer": true,
1890
+ "engines": {
1891
+ "node": ">= 12.0.0"
1892
+ },
1893
+ "funding": {
1894
+ "type": "opencollective",
1895
+ "url": "https://opencollective.com/parcel"
1896
+ }
1897
+ },
1898
+ "node_modules/lightningcss-linux-arm64-musl": {
1899
+ "version": "1.33.0",
1900
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.33.0.tgz",
1901
+ "integrity": "sha512-yiO5ROMuYQgXbC60yjZU5CYSFZGKXL0HFATXt9mHJn1+zW55oCtMI9NfcVhYLMFDL7gV7oBPon/EmMMGg2OvtQ==",
1902
+ "cpu": [
1903
+ "arm64"
1904
+ ],
1905
+ "dev": true,
1906
+ "license": "MPL-2.0",
1907
+ "optional": true,
1908
+ "os": [
1909
+ "linux"
1910
+ ],
1911
+ "peer": true,
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-x64-gnu": {
1921
+ "version": "1.33.0",
1922
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.33.0.tgz",
1923
+ "integrity": "sha512-ar+Ju7LmcN0Jo4FpL4hpFybwNG9/3A/Br5KW2n2jyODg3MEZXaDYADdemoNS+BDNfMgKvylJLj4S5tyRActuAg==",
1924
+ "cpu": [
1925
+ "x64"
1926
+ ],
1927
+ "dev": true,
1928
+ "license": "MPL-2.0",
1929
+ "optional": true,
1930
+ "os": [
1931
+ "linux"
1932
+ ],
1933
+ "peer": true,
1934
+ "engines": {
1935
+ "node": ">= 12.0.0"
1936
+ },
1937
+ "funding": {
1938
+ "type": "opencollective",
1939
+ "url": "https://opencollective.com/parcel"
1940
+ }
1941
+ },
1942
+ "node_modules/lightningcss-linux-x64-musl": {
1943
+ "version": "1.33.0",
1944
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.33.0.tgz",
1945
+ "integrity": "sha512-RYiYbkokw0trfKqqzfF55lginwEPrD3OJDfTuJzFs1MK6iFnDenaz1fqLLtX4ITG3OktJQXOeTaw1awrBAlZPw==",
1946
+ "cpu": [
1947
+ "x64"
1948
+ ],
1949
+ "dev": true,
1950
+ "license": "MPL-2.0",
1951
+ "optional": true,
1952
+ "os": [
1953
+ "linux"
1954
+ ],
1955
+ "peer": true,
1956
+ "engines": {
1957
+ "node": ">= 12.0.0"
1958
+ },
1959
+ "funding": {
1960
+ "type": "opencollective",
1961
+ "url": "https://opencollective.com/parcel"
1962
+ }
1963
+ },
1964
+ "node_modules/lightningcss-win32-arm64-msvc": {
1965
+ "version": "1.33.0",
1966
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.33.0.tgz",
1967
+ "integrity": "sha512-1K+MPfLSFVpphzpdbfkhlWk6wBrTObBzS2T6db10PNOZgR9GoVsAWzwNyuhUYYbTp23j+4RrncfujZ4uAzXvwA==",
1968
+ "cpu": [
1969
+ "arm64"
1970
+ ],
1971
+ "dev": true,
1972
+ "license": "MPL-2.0",
1973
+ "optional": true,
1974
+ "os": [
1975
+ "win32"
1976
+ ],
1977
+ "peer": true,
1978
+ "engines": {
1979
+ "node": ">= 12.0.0"
1980
+ },
1981
+ "funding": {
1982
+ "type": "opencollective",
1983
+ "url": "https://opencollective.com/parcel"
1984
+ }
1985
+ },
1986
+ "node_modules/lightningcss-win32-x64-msvc": {
1987
+ "version": "1.33.0",
1988
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.33.0.tgz",
1989
+ "integrity": "sha512-OlEICDx/Xl0FqSp4bry8zFnCvGpig3Gl4gCquvYwHuqJKEC1+n9NgDniFvqHGmMv1ZkqDJrDqKKSykTDX+ehuA==",
1990
+ "cpu": [
1991
+ "x64"
1992
+ ],
1993
+ "dev": true,
1994
+ "license": "MPL-2.0",
1995
+ "optional": true,
1996
+ "os": [
1997
+ "win32"
1998
+ ],
1999
+ "peer": true,
2000
+ "engines": {
2001
+ "node": ">= 12.0.0"
2002
+ },
2003
+ "funding": {
2004
+ "type": "opencollective",
2005
+ "url": "https://opencollective.com/parcel"
2006
+ }
2007
+ },
2008
+ "node_modules/magic-string": {
2009
+ "version": "1.3.1",
2010
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-1.3.1.tgz",
2011
+ "integrity": "sha512-rm91zr2Ou+XueDTohjQQjdQEcYM6zVi8KVUCG8Ec3vHwUEKrhSdCNyfuIywkA6hcCAteIn0ZOtAHA6eGpiX+Pg==",
2012
+ "dev": true,
2013
+ "license": "MIT",
2014
+ "dependencies": {
2015
+ "@jridgewell/sourcemap-codec": "^1.6.0"
2016
+ }
2017
+ },
2018
+ "node_modules/miniflare": {
2019
+ "version": "5.20260910.0-alpha",
2020
+ "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-5.20260910.0-alpha.tgz",
2021
+ "integrity": "sha512-V41TxLjX1Dq4pys8X5GAl/CrUY0//QcXCIdYwy01Cev+JdsWOWzzN0IP45lojgw+fEVY9QdepzVIziT2IxhbUQ==",
2022
+ "dev": true,
2023
+ "license": "MIT",
2024
+ "dependencies": {
2025
+ "@cspotcode/source-map-support": "0.8.1",
2026
+ "sharp": "0.35.4",
2027
+ "undici": "7.29.0",
2028
+ "workerd": "1.20260910.1",
2029
+ "ws": "8.21.0",
2030
+ "youch": "4.1.0-beta.10"
2031
+ },
2032
+ "engines": {
2033
+ "node": ">=22.0.0"
2034
+ }
2035
+ },
2036
+ "node_modules/nanoid": {
2037
+ "version": "3.3.18",
2038
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.18.tgz",
2039
+ "integrity": "sha512-DTg4MJbGMWkfi6VZFdNt2/caMbQy4Ou+Op/hJQvGEWcnVfoA1QA+xzRKAzw9jD6+GVOOeYr/mIcuDSdug6F6+w==",
2040
+ "dev": true,
2041
+ "funding": [
2042
+ {
2043
+ "type": "github",
2044
+ "url": "https://github.com/sponsors/ai"
2045
+ }
2046
+ ],
2047
+ "license": "MIT",
2048
+ "peer": true,
2049
+ "bin": {
2050
+ "nanoid": "bin/nanoid.cjs"
2051
+ },
2052
+ "engines": {
2053
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2054
+ }
2055
+ },
2056
+ "node_modules/obug": {
2057
+ "version": "2.2.1",
2058
+ "resolved": "https://registry.npmjs.org/obug/-/obug-2.2.1.tgz",
2059
+ "integrity": "sha512-XrsrhT5sybtKI6wakr2SPOlGZWWYbUXZ7a0jT8/QOeAPau+1X/bSegNe5YR75oJmEZQbKningirmGOEJCIk61Q==",
2060
+ "dev": true,
2061
+ "funding": [
2062
+ "https://github.com/sponsors/sxzz",
2063
+ "https://opencollective.com/debug"
2064
+ ],
2065
+ "license": "MIT",
2066
+ "engines": {
2067
+ "node": ">=12.20.0"
2068
+ }
2069
+ },
2070
+ "node_modules/path-to-regexp": {
2071
+ "version": "6.3.0",
2072
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz",
2073
+ "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==",
2074
+ "dev": true,
2075
+ "license": "MIT"
2076
+ },
2077
+ "node_modules/pathe": {
2078
+ "version": "2.0.3",
2079
+ "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
2080
+ "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
2081
+ "dev": true,
2082
+ "license": "MIT"
2083
+ },
2084
+ "node_modules/picocolors": {
2085
+ "version": "1.1.1",
2086
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2087
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2088
+ "dev": true,
2089
+ "license": "ISC",
2090
+ "peer": true
2091
+ },
2092
+ "node_modules/picomatch": {
2093
+ "version": "4.0.7",
2094
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.7.tgz",
2095
+ "integrity": "sha512-qcJu88Q2IWqJsDD529JKMdwGm/dvInW4HvQnRwiH9JtihJvzGOscDtHE3x1pBKeUOTysQ8kVmLnJ2kJu7yhcGA==",
2096
+ "dev": true,
2097
+ "license": "MIT",
2098
+ "engines": {
2099
+ "node": ">=12"
2100
+ },
2101
+ "funding": {
2102
+ "url": "https://github.com/sponsors/jonschlinkert"
2103
+ }
2104
+ },
2105
+ "node_modules/postcss": {
2106
+ "version": "8.5.28",
2107
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.28.tgz",
2108
+ "integrity": "sha512-RRuzqDtt5Y9h3quz5hWhK+TPnsmVs6WwSU6LkJMeY4HstUEDuYTG8UJSdawMRzmzAtV+KEoG8N3Qg2qLy5vM/A==",
2109
+ "dev": true,
2110
+ "funding": [
2111
+ {
2112
+ "type": "opencollective",
2113
+ "url": "https://opencollective.com/postcss/"
2114
+ },
2115
+ {
2116
+ "type": "tidelift",
2117
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2118
+ },
2119
+ {
2120
+ "type": "github",
2121
+ "url": "https://github.com/sponsors/ai"
2122
+ }
2123
+ ],
2124
+ "license": "MIT",
2125
+ "peer": true,
2126
+ "dependencies": {
2127
+ "nanoid": "^3.3.18",
2128
+ "picocolors": "^1.1.1",
2129
+ "source-map-js": "^1.2.1"
2130
+ },
2131
+ "engines": {
2132
+ "node": "^10 || ^12 || >=14"
2133
+ }
2134
+ },
2135
+ "node_modules/rolldown": {
2136
+ "version": "1.2.8",
2137
+ "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.2.8.tgz",
2138
+ "integrity": "sha512-Z67nTmhZe7anqnM/EjI392w5i/ANUinjip7QYsOyN37oayduxt3ksdX0hf5OOamkAd53BiIHfbfSzfUmzKFQqQ==",
2139
+ "dev": true,
2140
+ "license": "MIT",
2141
+ "peer": true,
2142
+ "dependencies": {
2143
+ "@oxc-project/types": "=0.149.0",
2144
+ "@rolldown/pluginutils": "^1.0.0"
2145
+ },
2146
+ "bin": {
2147
+ "rolldown": "bin/cli.mjs"
2148
+ },
2149
+ "engines": {
2150
+ "node": "^20.19.0 || >=22.12.0"
2151
+ },
2152
+ "optionalDependencies": {
2153
+ "@rolldown/binding-android-arm-eabi": "1.2.8",
2154
+ "@rolldown/binding-android-arm64": "1.2.8",
2155
+ "@rolldown/binding-darwin-arm64": "1.2.8",
2156
+ "@rolldown/binding-darwin-x64": "1.2.8",
2157
+ "@rolldown/binding-freebsd-x64": "1.2.8",
2158
+ "@rolldown/binding-linux-arm-gnueabihf": "1.2.8",
2159
+ "@rolldown/binding-linux-arm64-gnu": "1.2.8",
2160
+ "@rolldown/binding-linux-arm64-musl": "1.2.8",
2161
+ "@rolldown/binding-linux-ppc64-gnu": "1.2.8",
2162
+ "@rolldown/binding-linux-s390x-gnu": "1.2.8",
2163
+ "@rolldown/binding-linux-x64-gnu": "1.2.8",
2164
+ "@rolldown/binding-linux-x64-musl": "1.2.8",
2165
+ "@rolldown/binding-openharmony-arm64": "1.2.8",
2166
+ "@rolldown/binding-win32-arm64-msvc": "1.2.8",
2167
+ "@rolldown/binding-win32-x64-msvc": "1.2.8"
2168
+ }
2169
+ },
2170
+ "node_modules/semver": {
2171
+ "version": "7.8.5",
2172
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz",
2173
+ "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
2174
+ "dev": true,
2175
+ "license": "ISC",
2176
+ "bin": {
2177
+ "semver": "bin/semver.js"
2178
+ },
2179
+ "engines": {
2180
+ "node": ">=10"
2181
+ }
2182
+ },
2183
+ "node_modules/sharp": {
2184
+ "version": "0.35.4",
2185
+ "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.35.4.tgz",
2186
+ "integrity": "sha512-n++8XWcj+jCOr2IOl7h8LbKnGBDY4aPbmprMONBNFdn0ImXqpGVv5zliDs0V9HbmbCQLpbuo2ej9rAoOQTvMDA==",
2187
+ "dev": true,
2188
+ "license": "Apache-2.0",
2189
+ "dependencies": {
2190
+ "@img/colour": "^1.1.0",
2191
+ "detect-libc": "^2.1.2",
2192
+ "semver": "^7.8.5"
2193
+ },
2194
+ "engines": {
2195
+ "node": ">=20.9.0"
2196
+ },
2197
+ "funding": {
2198
+ "url": "https://opencollective.com/libvips"
2199
+ },
2200
+ "optionalDependencies": {
2201
+ "@img/sharp-darwin-arm64": "0.35.4",
2202
+ "@img/sharp-darwin-x64": "0.35.4",
2203
+ "@img/sharp-freebsd-wasm32": "0.35.4",
2204
+ "@img/sharp-libvips-darwin-arm64": "1.3.3",
2205
+ "@img/sharp-libvips-darwin-x64": "1.3.3",
2206
+ "@img/sharp-libvips-linux-arm": "1.3.3",
2207
+ "@img/sharp-libvips-linux-arm64": "1.3.3",
2208
+ "@img/sharp-libvips-linux-ppc64": "1.3.3",
2209
+ "@img/sharp-libvips-linux-riscv64": "1.3.3",
2210
+ "@img/sharp-libvips-linux-s390x": "1.3.3",
2211
+ "@img/sharp-libvips-linux-x64": "1.3.3",
2212
+ "@img/sharp-libvips-linuxmusl-arm64": "1.3.3",
2213
+ "@img/sharp-libvips-linuxmusl-x64": "1.3.3",
2214
+ "@img/sharp-linux-arm": "0.35.4",
2215
+ "@img/sharp-linux-arm64": "0.35.4",
2216
+ "@img/sharp-linux-ppc64": "0.35.4",
2217
+ "@img/sharp-linux-riscv64": "0.35.4",
2218
+ "@img/sharp-linux-s390x": "0.35.4",
2219
+ "@img/sharp-linux-x64": "0.35.4",
2220
+ "@img/sharp-linuxmusl-arm64": "0.35.4",
2221
+ "@img/sharp-linuxmusl-x64": "0.35.4",
2222
+ "@img/sharp-webcontainers-wasm32": "0.35.4",
2223
+ "@img/sharp-win32-arm64": "0.35.4",
2224
+ "@img/sharp-win32-ia32": "0.35.4",
2225
+ "@img/sharp-win32-x64": "0.35.4"
2226
+ },
2227
+ "peerDependenciesMeta": {
2228
+ "@types/node": {
2229
+ "optional": true
2230
+ }
2231
+ }
2232
+ },
2233
+ "node_modules/siginfo": {
2234
+ "version": "2.0.0",
2235
+ "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz",
2236
+ "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==",
2237
+ "dev": true,
2238
+ "license": "ISC"
2239
+ },
2240
+ "node_modules/source-map-js": {
2241
+ "version": "1.2.1",
2242
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
2243
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
2244
+ "dev": true,
2245
+ "license": "BSD-3-Clause",
2246
+ "peer": true,
2247
+ "engines": {
2248
+ "node": ">=0.10.0"
2249
+ }
2250
+ },
2251
+ "node_modules/stackback": {
2252
+ "version": "0.0.2",
2253
+ "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz",
2254
+ "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==",
2255
+ "dev": true,
2256
+ "license": "MIT"
2257
+ },
2258
+ "node_modules/std-env": {
2259
+ "version": "4.2.0",
2260
+ "resolved": "https://registry.npmjs.org/std-env/-/std-env-4.2.0.tgz",
2261
+ "integrity": "sha512-oCUKSupKTHX53EyjDtuZQ64pjLJ6yYCtpmEw0goYxtjG9KpbRe8KAsl2tBUGU9DyMcJ0RwJ8GqJAFzMXcXW1Rw==",
2262
+ "dev": true,
2263
+ "license": "MIT"
2264
+ },
2265
+ "node_modules/supports-color": {
2266
+ "version": "10.2.2",
2267
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-10.2.2.tgz",
2268
+ "integrity": "sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==",
2269
+ "dev": true,
2270
+ "license": "MIT",
2271
+ "engines": {
2272
+ "node": ">=18"
2273
+ },
2274
+ "funding": {
2275
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
2276
+ }
2277
+ },
2278
+ "node_modules/tinybench": {
2279
+ "version": "6.1.4",
2280
+ "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-6.1.4.tgz",
2281
+ "integrity": "sha512-9APumHG7r4yOk4X4WlkmE71aZcv1gvin1czO3OQ1U9iJcFA5Ja/ygyb0vPOVHTthFozUYs8CLoLUlM8grb2lTQ==",
2282
+ "dev": true,
2283
+ "license": "MIT",
2284
+ "engines": {
2285
+ "node": ">=20.0.0"
2286
+ }
2287
+ },
2288
+ "node_modules/tinyexec": {
2289
+ "version": "1.3.0",
2290
+ "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.3.0.tgz",
2291
+ "integrity": "sha512-QKAl9m8gWWGHV8jZcPeym6j+XULi6tOf1mT83WYJ4Lk2ytW/uwAWkrP0uFsdoYMdueVJ0qs26wZ+23xeB4ibNQ==",
2292
+ "dev": true,
2293
+ "license": "MIT",
2294
+ "engines": {
2295
+ "node": ">=18"
2296
+ }
2297
+ },
2298
+ "node_modules/tinyglobby": {
2299
+ "version": "0.2.17",
2300
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
2301
+ "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
2302
+ "dev": true,
2303
+ "license": "MIT",
2304
+ "dependencies": {
2305
+ "fdir": "^6.5.0",
2306
+ "picomatch": "^4.0.4"
2307
+ },
2308
+ "engines": {
2309
+ "node": ">=12.0.0"
2310
+ },
2311
+ "funding": {
2312
+ "url": "https://github.com/sponsors/SuperchupuDev"
2313
+ }
2314
+ },
2315
+ "node_modules/tslib": {
2316
+ "version": "2.8.1",
2317
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
2318
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
2319
+ "dev": true,
2320
+ "license": "0BSD",
2321
+ "optional": true
2322
+ },
2323
+ "node_modules/undici": {
2324
+ "version": "7.29.0",
2325
+ "resolved": "https://registry.npmjs.org/undici/-/undici-7.29.0.tgz",
2326
+ "integrity": "sha512-IDxfleLmmbSskfWSUATiN1nfn2rDuvnMOqb5CWR92iIfojA0Ud+ulOAAEQ57LPr9rWmsreUyf5lwyao+7GNNVw==",
2327
+ "dev": true,
2328
+ "license": "MIT",
2329
+ "engines": {
2330
+ "node": ">=20.18.1"
2331
+ }
2332
+ },
2333
+ "node_modules/unenv": {
2334
+ "version": "2.0.0-rc.24",
2335
+ "resolved": "https://registry.npmjs.org/unenv/-/unenv-2.0.0-rc.24.tgz",
2336
+ "integrity": "sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==",
2337
+ "dev": true,
2338
+ "license": "MIT",
2339
+ "dependencies": {
2340
+ "pathe": "^2.0.3"
2341
+ }
2342
+ },
2343
+ "node_modules/vite": {
2344
+ "version": "8.3.0",
2345
+ "resolved": "https://registry.npmjs.org/vite/-/vite-8.3.0.tgz",
2346
+ "integrity": "sha512-lhZBVvEHefgE+HQZC9O7EBJgCU/nVzFNl7vkS4RE0APtWLP02/8QVIkQtzBxPquh7lq5/78NHipTj7ODQ6XuyQ==",
2347
+ "dev": true,
2348
+ "license": "MIT",
2349
+ "peer": true,
2350
+ "dependencies": {
2351
+ "lightningcss": "^1.33.0",
2352
+ "picomatch": "^4.0.7",
2353
+ "postcss": "^8.5.28",
2354
+ "rolldown": "~1.2.6",
2355
+ "tinyglobby": "^0.2.17"
2356
+ },
2357
+ "bin": {
2358
+ "vite": "bin/vite.js"
2359
+ },
2360
+ "engines": {
2361
+ "node": "^20.19.0 || >=22.12.0"
2362
+ },
2363
+ "funding": {
2364
+ "url": "https://github.com/vitejs/vite?sponsor=1"
2365
+ },
2366
+ "optionalDependencies": {
2367
+ "fsevents": "~2.3.3"
2368
+ },
2369
+ "peerDependencies": {
2370
+ "@types/node": "^20.19.0 || >=22.12.0",
2371
+ "@vitejs/devtools": "^0.7.1",
2372
+ "esbuild": "^0.27.0 || ^0.28.0",
2373
+ "jiti": ">=1.21.0",
2374
+ "less": "^4.0.0",
2375
+ "sass": "^1.70.0",
2376
+ "sass-embedded": "^1.70.0",
2377
+ "stylus": ">=0.54.8",
2378
+ "sugarss": "^5.0.0",
2379
+ "terser": "^5.16.0",
2380
+ "tsx": "^4.8.1",
2381
+ "yaml": "^2.4.2"
2382
+ },
2383
+ "peerDependenciesMeta": {
2384
+ "@types/node": {
2385
+ "optional": true
2386
+ },
2387
+ "@vitejs/devtools": {
2388
+ "optional": true
2389
+ },
2390
+ "esbuild": {
2391
+ "optional": true
2392
+ },
2393
+ "jiti": {
2394
+ "optional": true
2395
+ },
2396
+ "less": {
2397
+ "optional": true
2398
+ },
2399
+ "sass": {
2400
+ "optional": true
2401
+ },
2402
+ "sass-embedded": {
2403
+ "optional": true
2404
+ },
2405
+ "stylus": {
2406
+ "optional": true
2407
+ },
2408
+ "sugarss": {
2409
+ "optional": true
2410
+ },
2411
+ "terser": {
2412
+ "optional": true
2413
+ },
2414
+ "tsx": {
2415
+ "optional": true
2416
+ },
2417
+ "yaml": {
2418
+ "optional": true
2419
+ }
2420
+ }
2421
+ },
2422
+ "node_modules/vitest": {
2423
+ "version": "5.0.0",
2424
+ "resolved": "https://registry.npmjs.org/vitest/-/vitest-5.0.0.tgz",
2425
+ "integrity": "sha512-gpsMNoRhMjMktVxPtstOH4/PJuPyovVaMDr4oDilXaGH1EcqM2OE96SoHT2VIQ6fTGtTjqmHDrEu2X9RQiXf8Q==",
2426
+ "dev": true,
2427
+ "license": "MIT",
2428
+ "dependencies": {
2429
+ "@types/chai": "^5.2.2",
2430
+ "@vitest/mocker": "5.0.0",
2431
+ "chai": "^6.2.2",
2432
+ "es-module-lexer": "^2.3.2",
2433
+ "expect-type": "^1.4.0",
2434
+ "magic-string": "^1.2.3",
2435
+ "obug": "^2.1.4",
2436
+ "picomatch": "^4.0.7",
2437
+ "std-env": "^4.2.0",
2438
+ "tinybench": "6.1.4",
2439
+ "tinyexec": "1.3.0",
2440
+ "tinyglobby": "^0.2.17",
2441
+ "why-is-node-running": "^2.3.0"
2442
+ },
2443
+ "bin": {
2444
+ "vitest": "vitest.mjs"
2445
+ },
2446
+ "engines": {
2447
+ "node": "^22.12.0 || ^24.0.0 || >=26.0.0"
2448
+ },
2449
+ "funding": {
2450
+ "url": "https://opencollective.com/vitest"
2451
+ },
2452
+ "peerDependencies": {
2453
+ "@edge-runtime/vm": "*",
2454
+ "@opentelemetry/api": "^1.9.0",
2455
+ "@types/node": "^22.0.0 || >=24.0.0",
2456
+ "@vitest/browser-playwright": "5.0.0",
2457
+ "@vitest/browser-preview": "5.0.0",
2458
+ "@vitest/browser-webdriverio": "^5.0.0-beta.5 || >=5.0.0",
2459
+ "@vitest/coverage-istanbul": "5.0.0",
2460
+ "@vitest/coverage-v8": "5.0.0",
2461
+ "@vitest/ui": "5.0.0",
2462
+ "happy-dom": "*",
2463
+ "jsdom": "*",
2464
+ "vite": "^6.4.0 || ^7.0.0 || ^8.0.0"
2465
+ },
2466
+ "peerDependenciesMeta": {
2467
+ "@edge-runtime/vm": {
2468
+ "optional": true
2469
+ },
2470
+ "@opentelemetry/api": {
2471
+ "optional": true
2472
+ },
2473
+ "@types/node": {
2474
+ "optional": true
2475
+ },
2476
+ "@vitest/browser-playwright": {
2477
+ "optional": true
2478
+ },
2479
+ "@vitest/browser-preview": {
2480
+ "optional": true
2481
+ },
2482
+ "@vitest/browser-webdriverio": {
2483
+ "optional": true
2484
+ },
2485
+ "@vitest/coverage-istanbul": {
2486
+ "optional": true
2487
+ },
2488
+ "@vitest/coverage-v8": {
2489
+ "optional": true
2490
+ },
2491
+ "@vitest/ui": {
2492
+ "optional": true
2493
+ },
2494
+ "happy-dom": {
2495
+ "optional": true
2496
+ },
2497
+ "jsdom": {
2498
+ "optional": true
2499
+ },
2500
+ "vite": {
2501
+ "optional": false
2502
+ }
2503
+ }
2504
+ },
2505
+ "node_modules/why-is-node-running": {
2506
+ "version": "2.3.0",
2507
+ "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz",
2508
+ "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==",
2509
+ "dev": true,
2510
+ "license": "MIT",
2511
+ "dependencies": {
2512
+ "siginfo": "^2.0.0",
2513
+ "stackback": "0.0.2"
2514
+ },
2515
+ "bin": {
2516
+ "why-is-node-running": "cli.js"
2517
+ },
2518
+ "engines": {
2519
+ "node": ">=8"
2520
+ }
2521
+ },
2522
+ "node_modules/workerd": {
2523
+ "version": "1.20260910.1",
2524
+ "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20260910.1.tgz",
2525
+ "integrity": "sha512-/HF0f8LmgT60Uk+ZPDbMnlUHjecfV8w4VMo61iFxW7ky7EexTdwbzUCANWZQiG0w1cBihjJTkhzmReeZLGarXw==",
2526
+ "dev": true,
2527
+ "hasInstallScript": true,
2528
+ "license": "Apache-2.0",
2529
+ "bin": {
2530
+ "workerd": "bin/workerd"
2531
+ },
2532
+ "engines": {
2533
+ "node": ">=16"
2534
+ },
2535
+ "optionalDependencies": {
2536
+ "@cloudflare/workerd-darwin-64": "1.20260910.1",
2537
+ "@cloudflare/workerd-darwin-arm64": "1.20260910.1",
2538
+ "@cloudflare/workerd-linux-64": "1.20260910.1",
2539
+ "@cloudflare/workerd-linux-arm64": "1.20260910.1",
2540
+ "@cloudflare/workerd-windows-64": "1.20260910.1"
2541
+ }
2542
+ },
2543
+ "node_modules/wrangler": {
2544
+ "version": "4.131.0",
2545
+ "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-4.131.0.tgz",
2546
+ "integrity": "sha512-ElsBshkzBhpIeaqc7sP5lsAEXYTrHPxWGKExK+HwIRYFleiKkW4ozvQidW36OXcsIUbZ0pPJJUP5RDodKbN0cA==",
2547
+ "dev": true,
2548
+ "license": "MIT OR Apache-2.0",
2549
+ "dependencies": {
2550
+ "@cloudflare/kv-asset-handler": "0.5.0",
2551
+ "@cloudflare/unenv-preset": "2.16.1",
2552
+ "blake3-wasm": "2.1.5",
2553
+ "esbuild": "0.28.1",
2554
+ "miniflare": "5.20260910.0-alpha",
2555
+ "path-to-regexp": "6.3.0",
2556
+ "unenv": "2.0.0-rc.24",
2557
+ "workerd": "1.20260910.1"
2558
+ },
2559
+ "bin": {
2560
+ "cf-wrangler": "bin/cf-wrangler.js",
2561
+ "wrangler": "bin/wrangler.js",
2562
+ "wrangler2": "bin/wrangler.js"
2563
+ },
2564
+ "engines": {
2565
+ "node": ">=22.0.0"
2566
+ },
2567
+ "optionalDependencies": {
2568
+ "fsevents": "2.3.3"
2569
+ },
2570
+ "peerDependencies": {
2571
+ "@cloudflare/workers-types": "^5.20260910.1"
2572
+ },
2573
+ "peerDependenciesMeta": {
2574
+ "@cloudflare/workers-types": {
2575
+ "optional": true
2576
+ }
2577
+ }
2578
+ },
2579
+ "node_modules/ws": {
2580
+ "version": "8.21.0",
2581
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz",
2582
+ "integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==",
2583
+ "dev": true,
2584
+ "license": "MIT",
2585
+ "engines": {
2586
+ "node": ">=10.0.0"
2587
+ },
2588
+ "peerDependencies": {
2589
+ "bufferutil": "^4.0.1",
2590
+ "utf-8-validate": ">=5.0.2"
2591
+ },
2592
+ "peerDependenciesMeta": {
2593
+ "bufferutil": {
2594
+ "optional": true
2595
+ },
2596
+ "utf-8-validate": {
2597
+ "optional": true
2598
+ }
2599
+ }
2600
+ },
2601
+ "node_modules/youch": {
2602
+ "version": "4.1.0-beta.10",
2603
+ "resolved": "https://registry.npmjs.org/youch/-/youch-4.1.0-beta.10.tgz",
2604
+ "integrity": "sha512-rLfVLB4FgQneDr0dv1oddCVZmKjcJ6yX6mS4pU82Mq/Dt9a3cLZQ62pDBL4AUO+uVrCvtWz3ZFUL2HFAFJ/BXQ==",
2605
+ "dev": true,
2606
+ "license": "MIT",
2607
+ "dependencies": {
2608
+ "@poppinss/colors": "^4.1.5",
2609
+ "@poppinss/dumper": "^0.6.4",
2610
+ "@speed-highlight/core": "^1.2.7",
2611
+ "cookie": "^1.0.2",
2612
+ "youch-core": "^0.3.3"
2613
+ }
2614
+ },
2615
+ "node_modules/youch-core": {
2616
+ "version": "0.3.3",
2617
+ "resolved": "https://registry.npmjs.org/youch-core/-/youch-core-0.3.3.tgz",
2618
+ "integrity": "sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==",
2619
+ "dev": true,
2620
+ "license": "MIT",
2621
+ "dependencies": {
2622
+ "@poppinss/exception": "^1.2.2",
2623
+ "error-stack-parser-es": "^1.0.5"
2624
+ }
2625
+ }
2626
+ }
2627
+ }