loopwind 0.25.5 → 0.25.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 (92) hide show
  1. package/app/.astro/types.d.ts +1 -0
  2. package/app/dist/_astro/callback.Ci5gaEfJ.css +1 -0
  3. package/app/dist/auth/callback/index.html +81 -0
  4. package/app/dist/device/index.html +70 -0
  5. package/app/dist/index.html +327 -0
  6. package/app/package-lock.json +9239 -0
  7. package/app/package.json +23 -0
  8. package/app/wrangler.toml +8 -0
  9. package/dist/cli.js +54 -0
  10. package/dist/cli.js.map +1 -1
  11. package/dist/commands/login.d.ts +5 -0
  12. package/dist/commands/login.d.ts.map +1 -0
  13. package/dist/commands/login.js +60 -0
  14. package/dist/commands/login.js.map +1 -0
  15. package/dist/commands/logout.d.ts +5 -0
  16. package/dist/commands/logout.d.ts.map +1 -0
  17. package/dist/commands/logout.js +15 -0
  18. package/dist/commands/logout.js.map +1 -0
  19. package/dist/commands/publish.d.ts +10 -0
  20. package/dist/commands/publish.d.ts.map +1 -0
  21. package/dist/commands/publish.js +155 -0
  22. package/dist/commands/publish.js.map +1 -0
  23. package/dist/commands/templates.d.ts +5 -0
  24. package/dist/commands/templates.d.ts.map +1 -0
  25. package/dist/commands/templates.js +60 -0
  26. package/dist/commands/templates.js.map +1 -0
  27. package/dist/commands/unpublish.d.ts +5 -0
  28. package/dist/commands/unpublish.d.ts.map +1 -0
  29. package/dist/commands/unpublish.js +54 -0
  30. package/dist/commands/unpublish.js.map +1 -0
  31. package/dist/commands/whoami.d.ts +5 -0
  32. package/dist/commands/whoami.d.ts.map +1 -0
  33. package/dist/commands/whoami.js +30 -0
  34. package/dist/commands/whoami.js.map +1 -0
  35. package/dist/lib/api.d.ts +92 -0
  36. package/dist/lib/api.d.ts.map +1 -0
  37. package/dist/lib/api.js +149 -0
  38. package/dist/lib/api.js.map +1 -0
  39. package/dist/lib/auth.d.ts +41 -0
  40. package/dist/lib/auth.d.ts.map +1 -0
  41. package/dist/lib/auth.js +89 -0
  42. package/dist/lib/auth.js.map +1 -0
  43. package/dist/lib/bundler.d.ts +18 -0
  44. package/dist/lib/bundler.d.ts.map +1 -0
  45. package/dist/lib/bundler.js +105 -0
  46. package/dist/lib/bundler.js.map +1 -0
  47. package/dist/lib/helpers.d.ts +35 -2
  48. package/dist/lib/helpers.d.ts.map +1 -1
  49. package/dist/lib/helpers.js +91 -13
  50. package/dist/lib/helpers.js.map +1 -1
  51. package/dist/lib/renderer.js +2 -2
  52. package/dist/lib/renderer.js.map +1 -1
  53. package/dist/lib/utils.d.ts.map +1 -1
  54. package/dist/lib/utils.js +9 -0
  55. package/dist/lib/utils.js.map +1 -1
  56. package/dist/sdk/edge.d.ts +65 -0
  57. package/dist/sdk/edge.d.ts.map +1 -0
  58. package/dist/sdk/edge.js +329 -0
  59. package/dist/sdk/edge.js.map +1 -0
  60. package/dist/sdk/errors.d.ts +64 -0
  61. package/dist/sdk/errors.d.ts.map +1 -0
  62. package/dist/sdk/errors.js +94 -0
  63. package/dist/sdk/errors.js.map +1 -0
  64. package/dist/sdk/index.d.ts +29 -0
  65. package/dist/sdk/index.d.ts.map +1 -0
  66. package/dist/sdk/index.js +30 -0
  67. package/dist/sdk/index.js.map +1 -0
  68. package/dist/sdk/render.d.ts +52 -0
  69. package/dist/sdk/render.d.ts.map +1 -0
  70. package/dist/sdk/render.js +432 -0
  71. package/dist/sdk/render.js.map +1 -0
  72. package/dist/sdk/types.d.ts +185 -0
  73. package/dist/sdk/types.d.ts.map +1 -0
  74. package/dist/sdk/types.js +5 -0
  75. package/dist/sdk/types.js.map +1 -0
  76. package/dist/types/template.d.ts +18 -0
  77. package/dist/types/template.d.ts.map +1 -1
  78. package/package.json +26 -4
  79. package/plans/PLATFORM.md +1637 -237
  80. package/plans/PLATFORM_IMPLEMENTATION.md +1347 -530
  81. package/plans/SDK.md +797 -0
  82. package/platform/.wrangler/state/v3/d1/miniflare-D1DatabaseObject/ebad93a0a7be9c5768c512f3e30740b64d2b6e575277a40d77044af5ae8fd3f2.sqlite +0 -0
  83. package/platform/.wrangler/state/v3/d1/miniflare-D1DatabaseObject/ebad93a0a7be9c5768c512f3e30740b64d2b6e575277a40d77044af5ae8fd3f2.sqlite-shm +0 -0
  84. package/platform/.wrangler/state/v3/d1/miniflare-D1DatabaseObject/ebad93a0a7be9c5768c512f3e30740b64d2b6e575277a40d77044af5ae8fd3f2.sqlite-wal +0 -0
  85. package/platform/migrations/0001_initial.sql +90 -0
  86. package/platform/package-lock.json +3104 -0
  87. package/platform/package.json +30 -0
  88. package/platform/wrangler.toml +43 -0
  89. package/tests-sdk/createRenderer.test.ts +251 -0
  90. package/tests-sdk/errors.test.ts +230 -0
  91. package/tests-sdk/render.test.ts +241 -0
  92. package/tests-sdk/tw.test.ts +277 -0
@@ -0,0 +1,3104 @@
1
+ {
2
+ "name": "loopwind-platform",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "loopwind-platform",
9
+ "version": "0.1.0",
10
+ "dependencies": {
11
+ "@types/react": "^19.2.7",
12
+ "gifenc": "^1.0.3",
13
+ "h264-mp4-encoder": "^1.0.12",
14
+ "hono": "^4.6.0",
15
+ "jose": "^5.9.0",
16
+ "loopwind": "^0.25.6",
17
+ "nanoid": "^5.0.0",
18
+ "react": "^19.2.3",
19
+ "workers-og": "^0.0.27",
20
+ "zod": "^3.23.0"
21
+ },
22
+ "devDependencies": {
23
+ "@cloudflare/workers-types": "^4.20241230.0",
24
+ "typescript": "^5.3.3",
25
+ "wrangler": "^4.0.0"
26
+ }
27
+ },
28
+ "node_modules/@cloudflare/kv-asset-handler": {
29
+ "version": "0.4.1",
30
+ "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.4.1.tgz",
31
+ "integrity": "sha512-Nu8ahitGFFJztxUml9oD/DLb7Z28C8cd8F46IVQ7y5Btz575pvMY8AqZsXkX7Gds29eCKdMgIHjIvzskHgPSFg==",
32
+ "dev": true,
33
+ "license": "MIT OR Apache-2.0",
34
+ "dependencies": {
35
+ "mime": "^3.0.0"
36
+ },
37
+ "engines": {
38
+ "node": ">=18.0.0"
39
+ }
40
+ },
41
+ "node_modules/@cloudflare/unenv-preset": {
42
+ "version": "2.7.13",
43
+ "resolved": "https://registry.npmjs.org/@cloudflare/unenv-preset/-/unenv-preset-2.7.13.tgz",
44
+ "integrity": "sha512-NulO1H8R/DzsJguLC0ndMuk4Ufv0KSlN+E54ay9rn9ZCQo0kpAPwwh3LhgpZ96a3Dr6L9LqW57M4CqC34iLOvw==",
45
+ "dev": true,
46
+ "license": "MIT OR Apache-2.0",
47
+ "peerDependencies": {
48
+ "unenv": "2.0.0-rc.24",
49
+ "workerd": "^1.20251202.0"
50
+ },
51
+ "peerDependenciesMeta": {
52
+ "workerd": {
53
+ "optional": true
54
+ }
55
+ }
56
+ },
57
+ "node_modules/@cloudflare/workerd-darwin-64": {
58
+ "version": "1.20251210.0",
59
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20251210.0.tgz",
60
+ "integrity": "sha512-Nn9X1moUDERA9xtFdCQ2XpQXgAS9pOjiCxvOT8sVx9UJLAiBLkfSCGbpsYdarODGybXCpjRlc77Yppuolvt7oQ==",
61
+ "cpu": [
62
+ "x64"
63
+ ],
64
+ "dev": true,
65
+ "license": "Apache-2.0",
66
+ "optional": true,
67
+ "os": [
68
+ "darwin"
69
+ ],
70
+ "engines": {
71
+ "node": ">=16"
72
+ }
73
+ },
74
+ "node_modules/@cloudflare/workerd-darwin-arm64": {
75
+ "version": "1.20251210.0",
76
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20251210.0.tgz",
77
+ "integrity": "sha512-Mg8iYIZQFnbevq/ls9eW/eneWTk/EE13Pej1MwfkY5et0jVpdHnvOLywy/o+QtMJFef1AjsqXGULwAneYyBfHw==",
78
+ "cpu": [
79
+ "arm64"
80
+ ],
81
+ "dev": true,
82
+ "license": "Apache-2.0",
83
+ "optional": true,
84
+ "os": [
85
+ "darwin"
86
+ ],
87
+ "engines": {
88
+ "node": ">=16"
89
+ }
90
+ },
91
+ "node_modules/@cloudflare/workerd-linux-64": {
92
+ "version": "1.20251210.0",
93
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20251210.0.tgz",
94
+ "integrity": "sha512-kjC2fCZhZ2Gkm1biwk2qByAYpGguK5Gf5ic8owzSCUw0FOUfQxTZUT9Lp3gApxsfTLbbnLBrX/xzWjywH9QR4g==",
95
+ "cpu": [
96
+ "x64"
97
+ ],
98
+ "dev": true,
99
+ "license": "Apache-2.0",
100
+ "optional": true,
101
+ "os": [
102
+ "linux"
103
+ ],
104
+ "engines": {
105
+ "node": ">=16"
106
+ }
107
+ },
108
+ "node_modules/@cloudflare/workerd-linux-arm64": {
109
+ "version": "1.20251210.0",
110
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20251210.0.tgz",
111
+ "integrity": "sha512-2IB37nXi7PZVQLa1OCuO7/6pNxqisRSO8DmCQ5x/3sezI5op1vwOxAcb1osAnuVsVN9bbvpw70HJvhKruFJTuA==",
112
+ "cpu": [
113
+ "arm64"
114
+ ],
115
+ "dev": true,
116
+ "license": "Apache-2.0",
117
+ "optional": true,
118
+ "os": [
119
+ "linux"
120
+ ],
121
+ "engines": {
122
+ "node": ">=16"
123
+ }
124
+ },
125
+ "node_modules/@cloudflare/workerd-windows-64": {
126
+ "version": "1.20251210.0",
127
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20251210.0.tgz",
128
+ "integrity": "sha512-Uaz6/9XE+D6E7pCY4OvkCuJHu7HcSDzeGcCGY1HLhojXhHd7yL52c3yfiyJdS8hPatiAa0nn5qSI/42+aTdDSw==",
129
+ "cpu": [
130
+ "x64"
131
+ ],
132
+ "dev": true,
133
+ "license": "Apache-2.0",
134
+ "optional": true,
135
+ "os": [
136
+ "win32"
137
+ ],
138
+ "engines": {
139
+ "node": ">=16"
140
+ }
141
+ },
142
+ "node_modules/@cloudflare/workers-types": {
143
+ "version": "4.20260103.0",
144
+ "resolved": "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-4.20260103.0.tgz",
145
+ "integrity": "sha512-jANmoGpJcXARnwlkvrQOeWyjYD1quTfHcs+++Z544XRHOSfLc4XSlts7snIhbiIGgA5bo66zDhraF+9lKUr2hw==",
146
+ "dev": true,
147
+ "license": "MIT OR Apache-2.0"
148
+ },
149
+ "node_modules/@cspotcode/source-map-support": {
150
+ "version": "0.8.1",
151
+ "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
152
+ "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
153
+ "dev": true,
154
+ "license": "MIT",
155
+ "dependencies": {
156
+ "@jridgewell/trace-mapping": "0.3.9"
157
+ },
158
+ "engines": {
159
+ "node": ">=12"
160
+ }
161
+ },
162
+ "node_modules/@emnapi/runtime": {
163
+ "version": "1.8.1",
164
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.8.1.tgz",
165
+ "integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==",
166
+ "license": "MIT",
167
+ "optional": true,
168
+ "dependencies": {
169
+ "tslib": "^2.4.0"
170
+ }
171
+ },
172
+ "node_modules/@esbuild/aix-ppc64": {
173
+ "version": "0.27.0",
174
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.0.tgz",
175
+ "integrity": "sha512-KuZrd2hRjz01y5JK9mEBSD3Vj3mbCvemhT466rSuJYeE/hjuBrHfjjcjMdTm/sz7au+++sdbJZJmuBwQLuw68A==",
176
+ "cpu": [
177
+ "ppc64"
178
+ ],
179
+ "license": "MIT",
180
+ "optional": true,
181
+ "os": [
182
+ "aix"
183
+ ],
184
+ "engines": {
185
+ "node": ">=18"
186
+ }
187
+ },
188
+ "node_modules/@esbuild/android-arm": {
189
+ "version": "0.27.0",
190
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.0.tgz",
191
+ "integrity": "sha512-j67aezrPNYWJEOHUNLPj9maeJte7uSMM6gMoxfPC9hOg8N02JuQi/T7ewumf4tNvJadFkvLZMlAq73b9uwdMyQ==",
192
+ "cpu": [
193
+ "arm"
194
+ ],
195
+ "license": "MIT",
196
+ "optional": true,
197
+ "os": [
198
+ "android"
199
+ ],
200
+ "engines": {
201
+ "node": ">=18"
202
+ }
203
+ },
204
+ "node_modules/@esbuild/android-arm64": {
205
+ "version": "0.27.0",
206
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.0.tgz",
207
+ "integrity": "sha512-CC3vt4+1xZrs97/PKDkl0yN7w8edvU2vZvAFGD16n9F0Cvniy5qvzRXjfO1l94efczkkQE6g1x0i73Qf5uthOQ==",
208
+ "cpu": [
209
+ "arm64"
210
+ ],
211
+ "license": "MIT",
212
+ "optional": true,
213
+ "os": [
214
+ "android"
215
+ ],
216
+ "engines": {
217
+ "node": ">=18"
218
+ }
219
+ },
220
+ "node_modules/@esbuild/android-x64": {
221
+ "version": "0.27.0",
222
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.0.tgz",
223
+ "integrity": "sha512-wurMkF1nmQajBO1+0CJmcN17U4BP6GqNSROP8t0X/Jiw2ltYGLHpEksp9MpoBqkrFR3kv2/te6Sha26k3+yZ9Q==",
224
+ "cpu": [
225
+ "x64"
226
+ ],
227
+ "license": "MIT",
228
+ "optional": true,
229
+ "os": [
230
+ "android"
231
+ ],
232
+ "engines": {
233
+ "node": ">=18"
234
+ }
235
+ },
236
+ "node_modules/@esbuild/darwin-arm64": {
237
+ "version": "0.27.0",
238
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.0.tgz",
239
+ "integrity": "sha512-uJOQKYCcHhg07DL7i8MzjvS2LaP7W7Pn/7uA0B5S1EnqAirJtbyw4yC5jQ5qcFjHK9l6o/MX9QisBg12kNkdHg==",
240
+ "cpu": [
241
+ "arm64"
242
+ ],
243
+ "license": "MIT",
244
+ "optional": true,
245
+ "os": [
246
+ "darwin"
247
+ ],
248
+ "engines": {
249
+ "node": ">=18"
250
+ }
251
+ },
252
+ "node_modules/@esbuild/darwin-x64": {
253
+ "version": "0.27.0",
254
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.0.tgz",
255
+ "integrity": "sha512-8mG6arH3yB/4ZXiEnXof5MK72dE6zM9cDvUcPtxhUZsDjESl9JipZYW60C3JGreKCEP+p8P/72r69m4AZGJd5g==",
256
+ "cpu": [
257
+ "x64"
258
+ ],
259
+ "license": "MIT",
260
+ "optional": true,
261
+ "os": [
262
+ "darwin"
263
+ ],
264
+ "engines": {
265
+ "node": ">=18"
266
+ }
267
+ },
268
+ "node_modules/@esbuild/freebsd-arm64": {
269
+ "version": "0.27.0",
270
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.0.tgz",
271
+ "integrity": "sha512-9FHtyO988CwNMMOE3YIeci+UV+x5Zy8fI2qHNpsEtSF83YPBmE8UWmfYAQg6Ux7Gsmd4FejZqnEUZCMGaNQHQw==",
272
+ "cpu": [
273
+ "arm64"
274
+ ],
275
+ "license": "MIT",
276
+ "optional": true,
277
+ "os": [
278
+ "freebsd"
279
+ ],
280
+ "engines": {
281
+ "node": ">=18"
282
+ }
283
+ },
284
+ "node_modules/@esbuild/freebsd-x64": {
285
+ "version": "0.27.0",
286
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.0.tgz",
287
+ "integrity": "sha512-zCMeMXI4HS/tXvJz8vWGexpZj2YVtRAihHLk1imZj4efx1BQzN76YFeKqlDr3bUWI26wHwLWPd3rwh6pe4EV7g==",
288
+ "cpu": [
289
+ "x64"
290
+ ],
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.27.0",
302
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.0.tgz",
303
+ "integrity": "sha512-t76XLQDpxgmq2cNXKTVEB7O7YMb42atj2Re2Haf45HkaUpjM2J0UuJZDuaGbPbamzZ7bawyGFUkodL+zcE+jvQ==",
304
+ "cpu": [
305
+ "arm"
306
+ ],
307
+ "license": "MIT",
308
+ "optional": true,
309
+ "os": [
310
+ "linux"
311
+ ],
312
+ "engines": {
313
+ "node": ">=18"
314
+ }
315
+ },
316
+ "node_modules/@esbuild/linux-arm64": {
317
+ "version": "0.27.0",
318
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.0.tgz",
319
+ "integrity": "sha512-AS18v0V+vZiLJyi/4LphvBE+OIX682Pu7ZYNsdUHyUKSoRwdnOsMf6FDekwoAFKej14WAkOef3zAORJgAtXnlQ==",
320
+ "cpu": [
321
+ "arm64"
322
+ ],
323
+ "license": "MIT",
324
+ "optional": true,
325
+ "os": [
326
+ "linux"
327
+ ],
328
+ "engines": {
329
+ "node": ">=18"
330
+ }
331
+ },
332
+ "node_modules/@esbuild/linux-ia32": {
333
+ "version": "0.27.0",
334
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.0.tgz",
335
+ "integrity": "sha512-Mz1jxqm/kfgKkc/KLHC5qIujMvnnarD9ra1cEcrs7qshTUSksPihGrWHVG5+osAIQ68577Zpww7SGapmzSt4Nw==",
336
+ "cpu": [
337
+ "ia32"
338
+ ],
339
+ "license": "MIT",
340
+ "optional": true,
341
+ "os": [
342
+ "linux"
343
+ ],
344
+ "engines": {
345
+ "node": ">=18"
346
+ }
347
+ },
348
+ "node_modules/@esbuild/linux-loong64": {
349
+ "version": "0.27.0",
350
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.0.tgz",
351
+ "integrity": "sha512-QbEREjdJeIreIAbdG2hLU1yXm1uu+LTdzoq1KCo4G4pFOLlvIspBm36QrQOar9LFduavoWX2msNFAAAY9j4BDg==",
352
+ "cpu": [
353
+ "loong64"
354
+ ],
355
+ "license": "MIT",
356
+ "optional": true,
357
+ "os": [
358
+ "linux"
359
+ ],
360
+ "engines": {
361
+ "node": ">=18"
362
+ }
363
+ },
364
+ "node_modules/@esbuild/linux-mips64el": {
365
+ "version": "0.27.0",
366
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.0.tgz",
367
+ "integrity": "sha512-sJz3zRNe4tO2wxvDpH/HYJilb6+2YJxo/ZNbVdtFiKDufzWq4JmKAiHy9iGoLjAV7r/W32VgaHGkk35cUXlNOg==",
368
+ "cpu": [
369
+ "mips64el"
370
+ ],
371
+ "license": "MIT",
372
+ "optional": true,
373
+ "os": [
374
+ "linux"
375
+ ],
376
+ "engines": {
377
+ "node": ">=18"
378
+ }
379
+ },
380
+ "node_modules/@esbuild/linux-ppc64": {
381
+ "version": "0.27.0",
382
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.0.tgz",
383
+ "integrity": "sha512-z9N10FBD0DCS2dmSABDBb5TLAyF1/ydVb+N4pi88T45efQ/w4ohr/F/QYCkxDPnkhkp6AIpIcQKQ8F0ANoA2JA==",
384
+ "cpu": [
385
+ "ppc64"
386
+ ],
387
+ "license": "MIT",
388
+ "optional": true,
389
+ "os": [
390
+ "linux"
391
+ ],
392
+ "engines": {
393
+ "node": ">=18"
394
+ }
395
+ },
396
+ "node_modules/@esbuild/linux-riscv64": {
397
+ "version": "0.27.0",
398
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.0.tgz",
399
+ "integrity": "sha512-pQdyAIZ0BWIC5GyvVFn5awDiO14TkT/19FTmFcPdDec94KJ1uZcmFs21Fo8auMXzD4Tt+diXu1LW1gHus9fhFQ==",
400
+ "cpu": [
401
+ "riscv64"
402
+ ],
403
+ "license": "MIT",
404
+ "optional": true,
405
+ "os": [
406
+ "linux"
407
+ ],
408
+ "engines": {
409
+ "node": ">=18"
410
+ }
411
+ },
412
+ "node_modules/@esbuild/linux-s390x": {
413
+ "version": "0.27.0",
414
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.0.tgz",
415
+ "integrity": "sha512-hPlRWR4eIDDEci953RI1BLZitgi5uqcsjKMxwYfmi4LcwyWo2IcRP+lThVnKjNtk90pLS8nKdroXYOqW+QQH+w==",
416
+ "cpu": [
417
+ "s390x"
418
+ ],
419
+ "license": "MIT",
420
+ "optional": true,
421
+ "os": [
422
+ "linux"
423
+ ],
424
+ "engines": {
425
+ "node": ">=18"
426
+ }
427
+ },
428
+ "node_modules/@esbuild/linux-x64": {
429
+ "version": "0.27.0",
430
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.0.tgz",
431
+ "integrity": "sha512-1hBWx4OUJE2cab++aVZ7pObD6s+DK4mPGpemtnAORBvb5l/g5xFGk0vc0PjSkrDs0XaXj9yyob3d14XqvnQ4gw==",
432
+ "cpu": [
433
+ "x64"
434
+ ],
435
+ "license": "MIT",
436
+ "optional": true,
437
+ "os": [
438
+ "linux"
439
+ ],
440
+ "engines": {
441
+ "node": ">=18"
442
+ }
443
+ },
444
+ "node_modules/@esbuild/netbsd-arm64": {
445
+ "version": "0.27.0",
446
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.0.tgz",
447
+ "integrity": "sha512-6m0sfQfxfQfy1qRuecMkJlf1cIzTOgyaeXaiVaaki8/v+WB+U4hc6ik15ZW6TAllRlg/WuQXxWj1jx6C+dfy3w==",
448
+ "cpu": [
449
+ "arm64"
450
+ ],
451
+ "license": "MIT",
452
+ "optional": true,
453
+ "os": [
454
+ "netbsd"
455
+ ],
456
+ "engines": {
457
+ "node": ">=18"
458
+ }
459
+ },
460
+ "node_modules/@esbuild/netbsd-x64": {
461
+ "version": "0.27.0",
462
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.0.tgz",
463
+ "integrity": "sha512-xbbOdfn06FtcJ9d0ShxxvSn2iUsGd/lgPIO2V3VZIPDbEaIj1/3nBBe1AwuEZKXVXkMmpr6LUAgMkLD/4D2PPA==",
464
+ "cpu": [
465
+ "x64"
466
+ ],
467
+ "license": "MIT",
468
+ "optional": true,
469
+ "os": [
470
+ "netbsd"
471
+ ],
472
+ "engines": {
473
+ "node": ">=18"
474
+ }
475
+ },
476
+ "node_modules/@esbuild/openbsd-arm64": {
477
+ "version": "0.27.0",
478
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.0.tgz",
479
+ "integrity": "sha512-fWgqR8uNbCQ/GGv0yhzttj6sU/9Z5/Sv/VGU3F5OuXK6J6SlriONKrQ7tNlwBrJZXRYk5jUhuWvF7GYzGguBZQ==",
480
+ "cpu": [
481
+ "arm64"
482
+ ],
483
+ "license": "MIT",
484
+ "optional": true,
485
+ "os": [
486
+ "openbsd"
487
+ ],
488
+ "engines": {
489
+ "node": ">=18"
490
+ }
491
+ },
492
+ "node_modules/@esbuild/openbsd-x64": {
493
+ "version": "0.27.0",
494
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.0.tgz",
495
+ "integrity": "sha512-aCwlRdSNMNxkGGqQajMUza6uXzR/U0dIl1QmLjPtRbLOx3Gy3otfFu/VjATy4yQzo9yFDGTxYDo1FfAD9oRD2A==",
496
+ "cpu": [
497
+ "x64"
498
+ ],
499
+ "license": "MIT",
500
+ "optional": true,
501
+ "os": [
502
+ "openbsd"
503
+ ],
504
+ "engines": {
505
+ "node": ">=18"
506
+ }
507
+ },
508
+ "node_modules/@esbuild/openharmony-arm64": {
509
+ "version": "0.27.0",
510
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.0.tgz",
511
+ "integrity": "sha512-nyvsBccxNAsNYz2jVFYwEGuRRomqZ149A39SHWk4hV0jWxKM0hjBPm3AmdxcbHiFLbBSwG6SbpIcUbXjgyECfA==",
512
+ "cpu": [
513
+ "arm64"
514
+ ],
515
+ "license": "MIT",
516
+ "optional": true,
517
+ "os": [
518
+ "openharmony"
519
+ ],
520
+ "engines": {
521
+ "node": ">=18"
522
+ }
523
+ },
524
+ "node_modules/@esbuild/sunos-x64": {
525
+ "version": "0.27.0",
526
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.0.tgz",
527
+ "integrity": "sha512-Q1KY1iJafM+UX6CFEL+F4HRTgygmEW568YMqDA5UV97AuZSm21b7SXIrRJDwXWPzr8MGr75fUZPV67FdtMHlHA==",
528
+ "cpu": [
529
+ "x64"
530
+ ],
531
+ "license": "MIT",
532
+ "optional": true,
533
+ "os": [
534
+ "sunos"
535
+ ],
536
+ "engines": {
537
+ "node": ">=18"
538
+ }
539
+ },
540
+ "node_modules/@esbuild/win32-arm64": {
541
+ "version": "0.27.0",
542
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.0.tgz",
543
+ "integrity": "sha512-W1eyGNi6d+8kOmZIwi/EDjrL9nxQIQ0MiGqe/AWc6+IaHloxHSGoeRgDRKHFISThLmsewZ5nHFvGFWdBYlgKPg==",
544
+ "cpu": [
545
+ "arm64"
546
+ ],
547
+ "license": "MIT",
548
+ "optional": true,
549
+ "os": [
550
+ "win32"
551
+ ],
552
+ "engines": {
553
+ "node": ">=18"
554
+ }
555
+ },
556
+ "node_modules/@esbuild/win32-ia32": {
557
+ "version": "0.27.0",
558
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.0.tgz",
559
+ "integrity": "sha512-30z1aKL9h22kQhilnYkORFYt+3wp7yZsHWus+wSKAJR8JtdfI76LJ4SBdMsCopTR3z/ORqVu5L1vtnHZWVj4cQ==",
560
+ "cpu": [
561
+ "ia32"
562
+ ],
563
+ "license": "MIT",
564
+ "optional": true,
565
+ "os": [
566
+ "win32"
567
+ ],
568
+ "engines": {
569
+ "node": ">=18"
570
+ }
571
+ },
572
+ "node_modules/@esbuild/win32-x64": {
573
+ "version": "0.27.0",
574
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.0.tgz",
575
+ "integrity": "sha512-aIitBcjQeyOhMTImhLZmtxfdOcuNRpwlPNmlFKPcHQYPhEssw75Cl1TSXJXpMkzaua9FUetx/4OQKq7eJul5Cg==",
576
+ "cpu": [
577
+ "x64"
578
+ ],
579
+ "license": "MIT",
580
+ "optional": true,
581
+ "os": [
582
+ "win32"
583
+ ],
584
+ "engines": {
585
+ "node": ">=18"
586
+ }
587
+ },
588
+ "node_modules/@img/colour": {
589
+ "version": "1.0.0",
590
+ "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz",
591
+ "integrity": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==",
592
+ "license": "MIT",
593
+ "engines": {
594
+ "node": ">=18"
595
+ }
596
+ },
597
+ "node_modules/@img/sharp-darwin-arm64": {
598
+ "version": "0.33.5",
599
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz",
600
+ "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==",
601
+ "cpu": [
602
+ "arm64"
603
+ ],
604
+ "dev": true,
605
+ "license": "Apache-2.0",
606
+ "optional": true,
607
+ "os": [
608
+ "darwin"
609
+ ],
610
+ "engines": {
611
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
612
+ },
613
+ "funding": {
614
+ "url": "https://opencollective.com/libvips"
615
+ },
616
+ "optionalDependencies": {
617
+ "@img/sharp-libvips-darwin-arm64": "1.0.4"
618
+ }
619
+ },
620
+ "node_modules/@img/sharp-darwin-x64": {
621
+ "version": "0.33.5",
622
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz",
623
+ "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==",
624
+ "cpu": [
625
+ "x64"
626
+ ],
627
+ "dev": true,
628
+ "license": "Apache-2.0",
629
+ "optional": true,
630
+ "os": [
631
+ "darwin"
632
+ ],
633
+ "engines": {
634
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
635
+ },
636
+ "funding": {
637
+ "url": "https://opencollective.com/libvips"
638
+ },
639
+ "optionalDependencies": {
640
+ "@img/sharp-libvips-darwin-x64": "1.0.4"
641
+ }
642
+ },
643
+ "node_modules/@img/sharp-libvips-darwin-arm64": {
644
+ "version": "1.0.4",
645
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz",
646
+ "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==",
647
+ "cpu": [
648
+ "arm64"
649
+ ],
650
+ "dev": true,
651
+ "license": "LGPL-3.0-or-later",
652
+ "optional": true,
653
+ "os": [
654
+ "darwin"
655
+ ],
656
+ "funding": {
657
+ "url": "https://opencollective.com/libvips"
658
+ }
659
+ },
660
+ "node_modules/@img/sharp-libvips-darwin-x64": {
661
+ "version": "1.0.4",
662
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz",
663
+ "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==",
664
+ "cpu": [
665
+ "x64"
666
+ ],
667
+ "dev": true,
668
+ "license": "LGPL-3.0-or-later",
669
+ "optional": true,
670
+ "os": [
671
+ "darwin"
672
+ ],
673
+ "funding": {
674
+ "url": "https://opencollective.com/libvips"
675
+ }
676
+ },
677
+ "node_modules/@img/sharp-libvips-linux-arm": {
678
+ "version": "1.0.5",
679
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz",
680
+ "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==",
681
+ "cpu": [
682
+ "arm"
683
+ ],
684
+ "dev": true,
685
+ "license": "LGPL-3.0-or-later",
686
+ "optional": true,
687
+ "os": [
688
+ "linux"
689
+ ],
690
+ "funding": {
691
+ "url": "https://opencollective.com/libvips"
692
+ }
693
+ },
694
+ "node_modules/@img/sharp-libvips-linux-arm64": {
695
+ "version": "1.0.4",
696
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz",
697
+ "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==",
698
+ "cpu": [
699
+ "arm64"
700
+ ],
701
+ "dev": true,
702
+ "license": "LGPL-3.0-or-later",
703
+ "optional": true,
704
+ "os": [
705
+ "linux"
706
+ ],
707
+ "funding": {
708
+ "url": "https://opencollective.com/libvips"
709
+ }
710
+ },
711
+ "node_modules/@img/sharp-libvips-linux-ppc64": {
712
+ "version": "1.2.4",
713
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz",
714
+ "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==",
715
+ "cpu": [
716
+ "ppc64"
717
+ ],
718
+ "license": "LGPL-3.0-or-later",
719
+ "optional": true,
720
+ "os": [
721
+ "linux"
722
+ ],
723
+ "funding": {
724
+ "url": "https://opencollective.com/libvips"
725
+ }
726
+ },
727
+ "node_modules/@img/sharp-libvips-linux-riscv64": {
728
+ "version": "1.2.4",
729
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz",
730
+ "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==",
731
+ "cpu": [
732
+ "riscv64"
733
+ ],
734
+ "license": "LGPL-3.0-or-later",
735
+ "optional": true,
736
+ "os": [
737
+ "linux"
738
+ ],
739
+ "funding": {
740
+ "url": "https://opencollective.com/libvips"
741
+ }
742
+ },
743
+ "node_modules/@img/sharp-libvips-linux-s390x": {
744
+ "version": "1.0.4",
745
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz",
746
+ "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==",
747
+ "cpu": [
748
+ "s390x"
749
+ ],
750
+ "dev": true,
751
+ "license": "LGPL-3.0-or-later",
752
+ "optional": true,
753
+ "os": [
754
+ "linux"
755
+ ],
756
+ "funding": {
757
+ "url": "https://opencollective.com/libvips"
758
+ }
759
+ },
760
+ "node_modules/@img/sharp-libvips-linux-x64": {
761
+ "version": "1.0.4",
762
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz",
763
+ "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==",
764
+ "cpu": [
765
+ "x64"
766
+ ],
767
+ "dev": true,
768
+ "license": "LGPL-3.0-or-later",
769
+ "optional": true,
770
+ "os": [
771
+ "linux"
772
+ ],
773
+ "funding": {
774
+ "url": "https://opencollective.com/libvips"
775
+ }
776
+ },
777
+ "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
778
+ "version": "1.0.4",
779
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz",
780
+ "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==",
781
+ "cpu": [
782
+ "arm64"
783
+ ],
784
+ "dev": true,
785
+ "license": "LGPL-3.0-or-later",
786
+ "optional": true,
787
+ "os": [
788
+ "linux"
789
+ ],
790
+ "funding": {
791
+ "url": "https://opencollective.com/libvips"
792
+ }
793
+ },
794
+ "node_modules/@img/sharp-libvips-linuxmusl-x64": {
795
+ "version": "1.0.4",
796
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz",
797
+ "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==",
798
+ "cpu": [
799
+ "x64"
800
+ ],
801
+ "dev": true,
802
+ "license": "LGPL-3.0-or-later",
803
+ "optional": true,
804
+ "os": [
805
+ "linux"
806
+ ],
807
+ "funding": {
808
+ "url": "https://opencollective.com/libvips"
809
+ }
810
+ },
811
+ "node_modules/@img/sharp-linux-arm": {
812
+ "version": "0.33.5",
813
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz",
814
+ "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==",
815
+ "cpu": [
816
+ "arm"
817
+ ],
818
+ "dev": true,
819
+ "license": "Apache-2.0",
820
+ "optional": true,
821
+ "os": [
822
+ "linux"
823
+ ],
824
+ "engines": {
825
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
826
+ },
827
+ "funding": {
828
+ "url": "https://opencollective.com/libvips"
829
+ },
830
+ "optionalDependencies": {
831
+ "@img/sharp-libvips-linux-arm": "1.0.5"
832
+ }
833
+ },
834
+ "node_modules/@img/sharp-linux-arm64": {
835
+ "version": "0.33.5",
836
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz",
837
+ "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==",
838
+ "cpu": [
839
+ "arm64"
840
+ ],
841
+ "dev": true,
842
+ "license": "Apache-2.0",
843
+ "optional": true,
844
+ "os": [
845
+ "linux"
846
+ ],
847
+ "engines": {
848
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
849
+ },
850
+ "funding": {
851
+ "url": "https://opencollective.com/libvips"
852
+ },
853
+ "optionalDependencies": {
854
+ "@img/sharp-libvips-linux-arm64": "1.0.4"
855
+ }
856
+ },
857
+ "node_modules/@img/sharp-linux-ppc64": {
858
+ "version": "0.34.5",
859
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz",
860
+ "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==",
861
+ "cpu": [
862
+ "ppc64"
863
+ ],
864
+ "license": "Apache-2.0",
865
+ "optional": true,
866
+ "os": [
867
+ "linux"
868
+ ],
869
+ "engines": {
870
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
871
+ },
872
+ "funding": {
873
+ "url": "https://opencollective.com/libvips"
874
+ },
875
+ "optionalDependencies": {
876
+ "@img/sharp-libvips-linux-ppc64": "1.2.4"
877
+ }
878
+ },
879
+ "node_modules/@img/sharp-linux-riscv64": {
880
+ "version": "0.34.5",
881
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz",
882
+ "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==",
883
+ "cpu": [
884
+ "riscv64"
885
+ ],
886
+ "license": "Apache-2.0",
887
+ "optional": true,
888
+ "os": [
889
+ "linux"
890
+ ],
891
+ "engines": {
892
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
893
+ },
894
+ "funding": {
895
+ "url": "https://opencollective.com/libvips"
896
+ },
897
+ "optionalDependencies": {
898
+ "@img/sharp-libvips-linux-riscv64": "1.2.4"
899
+ }
900
+ },
901
+ "node_modules/@img/sharp-linux-s390x": {
902
+ "version": "0.33.5",
903
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz",
904
+ "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==",
905
+ "cpu": [
906
+ "s390x"
907
+ ],
908
+ "dev": true,
909
+ "license": "Apache-2.0",
910
+ "optional": true,
911
+ "os": [
912
+ "linux"
913
+ ],
914
+ "engines": {
915
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
916
+ },
917
+ "funding": {
918
+ "url": "https://opencollective.com/libvips"
919
+ },
920
+ "optionalDependencies": {
921
+ "@img/sharp-libvips-linux-s390x": "1.0.4"
922
+ }
923
+ },
924
+ "node_modules/@img/sharp-linux-x64": {
925
+ "version": "0.33.5",
926
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz",
927
+ "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==",
928
+ "cpu": [
929
+ "x64"
930
+ ],
931
+ "dev": true,
932
+ "license": "Apache-2.0",
933
+ "optional": true,
934
+ "os": [
935
+ "linux"
936
+ ],
937
+ "engines": {
938
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
939
+ },
940
+ "funding": {
941
+ "url": "https://opencollective.com/libvips"
942
+ },
943
+ "optionalDependencies": {
944
+ "@img/sharp-libvips-linux-x64": "1.0.4"
945
+ }
946
+ },
947
+ "node_modules/@img/sharp-linuxmusl-arm64": {
948
+ "version": "0.33.5",
949
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz",
950
+ "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==",
951
+ "cpu": [
952
+ "arm64"
953
+ ],
954
+ "dev": true,
955
+ "license": "Apache-2.0",
956
+ "optional": true,
957
+ "os": [
958
+ "linux"
959
+ ],
960
+ "engines": {
961
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
962
+ },
963
+ "funding": {
964
+ "url": "https://opencollective.com/libvips"
965
+ },
966
+ "optionalDependencies": {
967
+ "@img/sharp-libvips-linuxmusl-arm64": "1.0.4"
968
+ }
969
+ },
970
+ "node_modules/@img/sharp-linuxmusl-x64": {
971
+ "version": "0.33.5",
972
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz",
973
+ "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==",
974
+ "cpu": [
975
+ "x64"
976
+ ],
977
+ "dev": true,
978
+ "license": "Apache-2.0",
979
+ "optional": true,
980
+ "os": [
981
+ "linux"
982
+ ],
983
+ "engines": {
984
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
985
+ },
986
+ "funding": {
987
+ "url": "https://opencollective.com/libvips"
988
+ },
989
+ "optionalDependencies": {
990
+ "@img/sharp-libvips-linuxmusl-x64": "1.0.4"
991
+ }
992
+ },
993
+ "node_modules/@img/sharp-wasm32": {
994
+ "version": "0.33.5",
995
+ "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz",
996
+ "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==",
997
+ "cpu": [
998
+ "wasm32"
999
+ ],
1000
+ "dev": true,
1001
+ "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
1002
+ "optional": true,
1003
+ "dependencies": {
1004
+ "@emnapi/runtime": "^1.2.0"
1005
+ },
1006
+ "engines": {
1007
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
1008
+ },
1009
+ "funding": {
1010
+ "url": "https://opencollective.com/libvips"
1011
+ }
1012
+ },
1013
+ "node_modules/@img/sharp-win32-arm64": {
1014
+ "version": "0.34.5",
1015
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz",
1016
+ "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==",
1017
+ "cpu": [
1018
+ "arm64"
1019
+ ],
1020
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
1021
+ "optional": true,
1022
+ "os": [
1023
+ "win32"
1024
+ ],
1025
+ "engines": {
1026
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
1027
+ },
1028
+ "funding": {
1029
+ "url": "https://opencollective.com/libvips"
1030
+ }
1031
+ },
1032
+ "node_modules/@img/sharp-win32-ia32": {
1033
+ "version": "0.33.5",
1034
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz",
1035
+ "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==",
1036
+ "cpu": [
1037
+ "ia32"
1038
+ ],
1039
+ "dev": true,
1040
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
1041
+ "optional": true,
1042
+ "os": [
1043
+ "win32"
1044
+ ],
1045
+ "engines": {
1046
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
1047
+ },
1048
+ "funding": {
1049
+ "url": "https://opencollective.com/libvips"
1050
+ }
1051
+ },
1052
+ "node_modules/@img/sharp-win32-x64": {
1053
+ "version": "0.33.5",
1054
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz",
1055
+ "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==",
1056
+ "cpu": [
1057
+ "x64"
1058
+ ],
1059
+ "dev": true,
1060
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
1061
+ "optional": true,
1062
+ "os": [
1063
+ "win32"
1064
+ ],
1065
+ "engines": {
1066
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
1067
+ },
1068
+ "funding": {
1069
+ "url": "https://opencollective.com/libvips"
1070
+ }
1071
+ },
1072
+ "node_modules/@jridgewell/resolve-uri": {
1073
+ "version": "3.1.2",
1074
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
1075
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
1076
+ "dev": true,
1077
+ "license": "MIT",
1078
+ "engines": {
1079
+ "node": ">=6.0.0"
1080
+ }
1081
+ },
1082
+ "node_modules/@jridgewell/sourcemap-codec": {
1083
+ "version": "1.5.5",
1084
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
1085
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
1086
+ "dev": true,
1087
+ "license": "MIT"
1088
+ },
1089
+ "node_modules/@jridgewell/trace-mapping": {
1090
+ "version": "0.3.9",
1091
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
1092
+ "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
1093
+ "dev": true,
1094
+ "license": "MIT",
1095
+ "dependencies": {
1096
+ "@jridgewell/resolve-uri": "^3.0.3",
1097
+ "@jridgewell/sourcemap-codec": "^1.4.10"
1098
+ }
1099
+ },
1100
+ "node_modules/@poppinss/colors": {
1101
+ "version": "4.1.6",
1102
+ "resolved": "https://registry.npmjs.org/@poppinss/colors/-/colors-4.1.6.tgz",
1103
+ "integrity": "sha512-H9xkIdFswbS8n1d6vmRd8+c10t2Qe+rZITbbDHHkQixH5+2x1FDGmi/0K+WgWiqQFKPSlIYB7jlH6Kpfn6Fleg==",
1104
+ "dev": true,
1105
+ "license": "MIT",
1106
+ "dependencies": {
1107
+ "kleur": "^4.1.5"
1108
+ }
1109
+ },
1110
+ "node_modules/@poppinss/dumper": {
1111
+ "version": "0.6.5",
1112
+ "resolved": "https://registry.npmjs.org/@poppinss/dumper/-/dumper-0.6.5.tgz",
1113
+ "integrity": "sha512-NBdYIb90J7LfOI32dOewKI1r7wnkiH6m920puQ3qHUeZkxNkQiFnXVWoE6YtFSv6QOiPPf7ys6i+HWWecDz7sw==",
1114
+ "dev": true,
1115
+ "license": "MIT",
1116
+ "dependencies": {
1117
+ "@poppinss/colors": "^4.1.5",
1118
+ "@sindresorhus/is": "^7.0.2",
1119
+ "supports-color": "^10.0.0"
1120
+ }
1121
+ },
1122
+ "node_modules/@poppinss/exception": {
1123
+ "version": "1.2.3",
1124
+ "resolved": "https://registry.npmjs.org/@poppinss/exception/-/exception-1.2.3.tgz",
1125
+ "integrity": "sha512-dCED+QRChTVatE9ibtoaxc+WkdzOSjYTKi/+uacHWIsfodVfpsueo3+DKpgU5Px8qXjgmXkSvhXvSCz3fnP9lw==",
1126
+ "dev": true,
1127
+ "license": "MIT"
1128
+ },
1129
+ "node_modules/@resvg/resvg-wasm": {
1130
+ "version": "2.6.2",
1131
+ "resolved": "https://registry.npmjs.org/@resvg/resvg-wasm/-/resvg-wasm-2.6.2.tgz",
1132
+ "integrity": "sha512-FqALmHI8D4o6lk/LRWDnhw95z5eO+eAa6ORjVg09YRR7BkcM6oPHU9uyC0gtQG5vpFLvgpeU4+zEAz2H8APHNw==",
1133
+ "license": "MPL-2.0",
1134
+ "engines": {
1135
+ "node": ">= 10"
1136
+ }
1137
+ },
1138
+ "node_modules/@shuding/opentype.js": {
1139
+ "version": "1.4.0-beta.0",
1140
+ "resolved": "https://registry.npmjs.org/@shuding/opentype.js/-/opentype.js-1.4.0-beta.0.tgz",
1141
+ "integrity": "sha512-3NgmNyH3l/Hv6EvsWJbsvpcpUba6R8IREQ83nH83cyakCw7uM1arZKNfHwv1Wz6jgqrF/j4x5ELvR6PnK9nTcA==",
1142
+ "license": "MIT",
1143
+ "dependencies": {
1144
+ "fflate": "^0.7.3",
1145
+ "string.prototype.codepointat": "^0.2.1"
1146
+ },
1147
+ "bin": {
1148
+ "ot": "bin/ot"
1149
+ },
1150
+ "engines": {
1151
+ "node": ">= 8.0.0"
1152
+ }
1153
+ },
1154
+ "node_modules/@sindresorhus/is": {
1155
+ "version": "7.2.0",
1156
+ "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-7.2.0.tgz",
1157
+ "integrity": "sha512-P1Cz1dWaFfR4IR+U13mqqiGsLFf1KbayybWwdd2vfctdV6hDpUkgCY0nKOLLTMSoRd/jJNjtbqzf13K8DCCXQw==",
1158
+ "dev": true,
1159
+ "license": "MIT",
1160
+ "engines": {
1161
+ "node": ">=18"
1162
+ },
1163
+ "funding": {
1164
+ "url": "https://github.com/sindresorhus/is?sponsor=1"
1165
+ }
1166
+ },
1167
+ "node_modules/@speed-highlight/core": {
1168
+ "version": "1.2.14",
1169
+ "resolved": "https://registry.npmjs.org/@speed-highlight/core/-/core-1.2.14.tgz",
1170
+ "integrity": "sha512-G4ewlBNhUtlLvrJTb88d2mdy2KRijzs4UhnlrOSRT4bmjh/IqNElZa3zkrZ+TC47TwtlDWzVLFADljF1Ijp5hA==",
1171
+ "dev": true,
1172
+ "license": "CC0-1.0"
1173
+ },
1174
+ "node_modules/@types/react": {
1175
+ "version": "19.2.7",
1176
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.7.tgz",
1177
+ "integrity": "sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==",
1178
+ "license": "MIT",
1179
+ "dependencies": {
1180
+ "csstype": "^3.2.2"
1181
+ }
1182
+ },
1183
+ "node_modules/@types/tinycolor2": {
1184
+ "version": "1.4.6",
1185
+ "resolved": "https://registry.npmjs.org/@types/tinycolor2/-/tinycolor2-1.4.6.tgz",
1186
+ "integrity": "sha512-iEN8J0BoMnsWBqjVbWH/c0G0Hh7O21lpR2/+PrvAVgWdzL7eexIFm4JN/Wn10PTcmNdtS6U67r499mlWMXOxNw==",
1187
+ "license": "MIT"
1188
+ },
1189
+ "node_modules/acorn": {
1190
+ "version": "8.14.0",
1191
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz",
1192
+ "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==",
1193
+ "dev": true,
1194
+ "license": "MIT",
1195
+ "bin": {
1196
+ "acorn": "bin/acorn"
1197
+ },
1198
+ "engines": {
1199
+ "node": ">=0.4.0"
1200
+ }
1201
+ },
1202
+ "node_modules/acorn-walk": {
1203
+ "version": "8.3.2",
1204
+ "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz",
1205
+ "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==",
1206
+ "dev": true,
1207
+ "license": "MIT",
1208
+ "engines": {
1209
+ "node": ">=0.4.0"
1210
+ }
1211
+ },
1212
+ "node_modules/ansi-regex": {
1213
+ "version": "6.2.2",
1214
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz",
1215
+ "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
1216
+ "license": "MIT",
1217
+ "engines": {
1218
+ "node": ">=12"
1219
+ },
1220
+ "funding": {
1221
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
1222
+ }
1223
+ },
1224
+ "node_modules/ansi-styles": {
1225
+ "version": "4.3.0",
1226
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
1227
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
1228
+ "license": "MIT",
1229
+ "dependencies": {
1230
+ "color-convert": "^2.0.1"
1231
+ },
1232
+ "engines": {
1233
+ "node": ">=8"
1234
+ },
1235
+ "funding": {
1236
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1237
+ }
1238
+ },
1239
+ "node_modules/base64-js": {
1240
+ "version": "0.0.8",
1241
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz",
1242
+ "integrity": "sha512-3XSA2cR/h/73EzlXXdU6YNycmYI7+kicTxks4eJg2g39biHR84slg2+des+p7iHYhbRg/udIS4TD53WabcOUkw==",
1243
+ "license": "MIT",
1244
+ "engines": {
1245
+ "node": ">= 0.4"
1246
+ }
1247
+ },
1248
+ "node_modules/blake3-wasm": {
1249
+ "version": "2.1.5",
1250
+ "resolved": "https://registry.npmjs.org/blake3-wasm/-/blake3-wasm-2.1.5.tgz",
1251
+ "integrity": "sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==",
1252
+ "dev": true,
1253
+ "license": "MIT"
1254
+ },
1255
+ "node_modules/camelcase": {
1256
+ "version": "5.3.1",
1257
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
1258
+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
1259
+ "license": "MIT",
1260
+ "engines": {
1261
+ "node": ">=6"
1262
+ }
1263
+ },
1264
+ "node_modules/camelize": {
1265
+ "version": "1.0.1",
1266
+ "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz",
1267
+ "integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==",
1268
+ "license": "MIT",
1269
+ "funding": {
1270
+ "url": "https://github.com/sponsors/ljharb"
1271
+ }
1272
+ },
1273
+ "node_modules/chalk": {
1274
+ "version": "5.6.2",
1275
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz",
1276
+ "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==",
1277
+ "license": "MIT",
1278
+ "engines": {
1279
+ "node": "^12.17.0 || ^14.13 || >=16.0.0"
1280
+ },
1281
+ "funding": {
1282
+ "url": "https://github.com/chalk/chalk?sponsor=1"
1283
+ }
1284
+ },
1285
+ "node_modules/cli-cursor": {
1286
+ "version": "5.0.0",
1287
+ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz",
1288
+ "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==",
1289
+ "license": "MIT",
1290
+ "dependencies": {
1291
+ "restore-cursor": "^5.0.0"
1292
+ },
1293
+ "engines": {
1294
+ "node": ">=18"
1295
+ },
1296
+ "funding": {
1297
+ "url": "https://github.com/sponsors/sindresorhus"
1298
+ }
1299
+ },
1300
+ "node_modules/cli-spinners": {
1301
+ "version": "2.9.2",
1302
+ "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz",
1303
+ "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==",
1304
+ "license": "MIT",
1305
+ "engines": {
1306
+ "node": ">=6"
1307
+ },
1308
+ "funding": {
1309
+ "url": "https://github.com/sponsors/sindresorhus"
1310
+ }
1311
+ },
1312
+ "node_modules/cliui": {
1313
+ "version": "6.0.0",
1314
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
1315
+ "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
1316
+ "license": "ISC",
1317
+ "dependencies": {
1318
+ "string-width": "^4.2.0",
1319
+ "strip-ansi": "^6.0.0",
1320
+ "wrap-ansi": "^6.2.0"
1321
+ }
1322
+ },
1323
+ "node_modules/cliui/node_modules/ansi-regex": {
1324
+ "version": "5.0.1",
1325
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
1326
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
1327
+ "license": "MIT",
1328
+ "engines": {
1329
+ "node": ">=8"
1330
+ }
1331
+ },
1332
+ "node_modules/cliui/node_modules/emoji-regex": {
1333
+ "version": "8.0.0",
1334
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
1335
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
1336
+ "license": "MIT"
1337
+ },
1338
+ "node_modules/cliui/node_modules/string-width": {
1339
+ "version": "4.2.3",
1340
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
1341
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
1342
+ "license": "MIT",
1343
+ "dependencies": {
1344
+ "emoji-regex": "^8.0.0",
1345
+ "is-fullwidth-code-point": "^3.0.0",
1346
+ "strip-ansi": "^6.0.1"
1347
+ },
1348
+ "engines": {
1349
+ "node": ">=8"
1350
+ }
1351
+ },
1352
+ "node_modules/cliui/node_modules/strip-ansi": {
1353
+ "version": "6.0.1",
1354
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
1355
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
1356
+ "license": "MIT",
1357
+ "dependencies": {
1358
+ "ansi-regex": "^5.0.1"
1359
+ },
1360
+ "engines": {
1361
+ "node": ">=8"
1362
+ }
1363
+ },
1364
+ "node_modules/color": {
1365
+ "version": "4.2.3",
1366
+ "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz",
1367
+ "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
1368
+ "dev": true,
1369
+ "license": "MIT",
1370
+ "dependencies": {
1371
+ "color-convert": "^2.0.1",
1372
+ "color-string": "^1.9.0"
1373
+ },
1374
+ "engines": {
1375
+ "node": ">=12.5.0"
1376
+ }
1377
+ },
1378
+ "node_modules/color-convert": {
1379
+ "version": "2.0.1",
1380
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1381
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1382
+ "license": "MIT",
1383
+ "dependencies": {
1384
+ "color-name": "~1.1.4"
1385
+ },
1386
+ "engines": {
1387
+ "node": ">=7.0.0"
1388
+ }
1389
+ },
1390
+ "node_modules/color-name": {
1391
+ "version": "1.1.4",
1392
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1393
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
1394
+ "license": "MIT"
1395
+ },
1396
+ "node_modules/color-string": {
1397
+ "version": "1.9.1",
1398
+ "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
1399
+ "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
1400
+ "dev": true,
1401
+ "license": "MIT",
1402
+ "dependencies": {
1403
+ "color-name": "^1.0.0",
1404
+ "simple-swizzle": "^0.2.2"
1405
+ }
1406
+ },
1407
+ "node_modules/commander": {
1408
+ "version": "12.1.0",
1409
+ "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz",
1410
+ "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==",
1411
+ "license": "MIT",
1412
+ "engines": {
1413
+ "node": ">=18"
1414
+ }
1415
+ },
1416
+ "node_modules/cookie": {
1417
+ "version": "1.1.1",
1418
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
1419
+ "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
1420
+ "dev": true,
1421
+ "license": "MIT",
1422
+ "engines": {
1423
+ "node": ">=18"
1424
+ },
1425
+ "funding": {
1426
+ "type": "opencollective",
1427
+ "url": "https://opencollective.com/express"
1428
+ }
1429
+ },
1430
+ "node_modules/css-background-parser": {
1431
+ "version": "0.1.0",
1432
+ "resolved": "https://registry.npmjs.org/css-background-parser/-/css-background-parser-0.1.0.tgz",
1433
+ "integrity": "sha512-2EZLisiZQ+7m4wwur/qiYJRniHX4K5Tc9w93MT3AS0WS1u5kaZ4FKXlOTBhOjc+CgEgPiGY+fX1yWD8UwpEqUA==",
1434
+ "license": "MIT"
1435
+ },
1436
+ "node_modules/css-box-shadow": {
1437
+ "version": "1.0.0-3",
1438
+ "resolved": "https://registry.npmjs.org/css-box-shadow/-/css-box-shadow-1.0.0-3.tgz",
1439
+ "integrity": "sha512-9jaqR6e7Ohds+aWwmhe6wILJ99xYQbfmK9QQB9CcMjDbTxPZjwEmUQpU91OG05Xgm8BahT5fW+svbsQGjS/zPg==",
1440
+ "license": "MIT"
1441
+ },
1442
+ "node_modules/css-color-keywords": {
1443
+ "version": "1.0.0",
1444
+ "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz",
1445
+ "integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==",
1446
+ "license": "ISC",
1447
+ "engines": {
1448
+ "node": ">=4"
1449
+ }
1450
+ },
1451
+ "node_modules/css-gradient-parser": {
1452
+ "version": "0.0.17",
1453
+ "resolved": "https://registry.npmjs.org/css-gradient-parser/-/css-gradient-parser-0.0.17.tgz",
1454
+ "integrity": "sha512-w2Xy9UMMwlKtou0vlRnXvWglPAceXCTtcmVSo8ZBUvqCV5aXEFP/PC6d+I464810I9FT++UACwTD5511bmGPUg==",
1455
+ "license": "MIT",
1456
+ "engines": {
1457
+ "node": ">=16"
1458
+ }
1459
+ },
1460
+ "node_modules/css-to-react-native": {
1461
+ "version": "3.2.0",
1462
+ "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz",
1463
+ "integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==",
1464
+ "license": "MIT",
1465
+ "dependencies": {
1466
+ "camelize": "^1.0.0",
1467
+ "css-color-keywords": "^1.0.0",
1468
+ "postcss-value-parser": "^4.0.2"
1469
+ }
1470
+ },
1471
+ "node_modules/csstype": {
1472
+ "version": "3.2.3",
1473
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
1474
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
1475
+ "license": "MIT"
1476
+ },
1477
+ "node_modules/decamelize": {
1478
+ "version": "1.2.0",
1479
+ "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
1480
+ "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==",
1481
+ "license": "MIT",
1482
+ "engines": {
1483
+ "node": ">=0.10.0"
1484
+ }
1485
+ },
1486
+ "node_modules/detect-libc": {
1487
+ "version": "2.1.2",
1488
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1489
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1490
+ "license": "Apache-2.0",
1491
+ "engines": {
1492
+ "node": ">=8"
1493
+ }
1494
+ },
1495
+ "node_modules/dijkstrajs": {
1496
+ "version": "1.0.3",
1497
+ "resolved": "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.3.tgz",
1498
+ "integrity": "sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==",
1499
+ "license": "MIT"
1500
+ },
1501
+ "node_modules/emoji-regex": {
1502
+ "version": "10.6.0",
1503
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz",
1504
+ "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==",
1505
+ "license": "MIT"
1506
+ },
1507
+ "node_modules/emoji-regex-xs": {
1508
+ "version": "2.0.1",
1509
+ "resolved": "https://registry.npmjs.org/emoji-regex-xs/-/emoji-regex-xs-2.0.1.tgz",
1510
+ "integrity": "sha512-1QFuh8l7LqUcKe24LsPUNzjrzJQ7pgRwp1QMcZ5MX6mFplk2zQ08NVCM84++1cveaUUYtcCYHmeFEuNg16sU4g==",
1511
+ "license": "MIT",
1512
+ "engines": {
1513
+ "node": ">=10.0.0"
1514
+ }
1515
+ },
1516
+ "node_modules/error-stack-parser-es": {
1517
+ "version": "1.0.5",
1518
+ "resolved": "https://registry.npmjs.org/error-stack-parser-es/-/error-stack-parser-es-1.0.5.tgz",
1519
+ "integrity": "sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==",
1520
+ "dev": true,
1521
+ "license": "MIT",
1522
+ "funding": {
1523
+ "url": "https://github.com/sponsors/antfu"
1524
+ }
1525
+ },
1526
+ "node_modules/esbuild": {
1527
+ "version": "0.27.0",
1528
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.0.tgz",
1529
+ "integrity": "sha512-jd0f4NHbD6cALCyGElNpGAOtWxSq46l9X/sWB0Nzd5er4Kz2YTm+Vl0qKFT9KUJvD8+fiO8AvoHhFvEatfVixA==",
1530
+ "hasInstallScript": true,
1531
+ "license": "MIT",
1532
+ "bin": {
1533
+ "esbuild": "bin/esbuild"
1534
+ },
1535
+ "engines": {
1536
+ "node": ">=18"
1537
+ },
1538
+ "optionalDependencies": {
1539
+ "@esbuild/aix-ppc64": "0.27.0",
1540
+ "@esbuild/android-arm": "0.27.0",
1541
+ "@esbuild/android-arm64": "0.27.0",
1542
+ "@esbuild/android-x64": "0.27.0",
1543
+ "@esbuild/darwin-arm64": "0.27.0",
1544
+ "@esbuild/darwin-x64": "0.27.0",
1545
+ "@esbuild/freebsd-arm64": "0.27.0",
1546
+ "@esbuild/freebsd-x64": "0.27.0",
1547
+ "@esbuild/linux-arm": "0.27.0",
1548
+ "@esbuild/linux-arm64": "0.27.0",
1549
+ "@esbuild/linux-ia32": "0.27.0",
1550
+ "@esbuild/linux-loong64": "0.27.0",
1551
+ "@esbuild/linux-mips64el": "0.27.0",
1552
+ "@esbuild/linux-ppc64": "0.27.0",
1553
+ "@esbuild/linux-riscv64": "0.27.0",
1554
+ "@esbuild/linux-s390x": "0.27.0",
1555
+ "@esbuild/linux-x64": "0.27.0",
1556
+ "@esbuild/netbsd-arm64": "0.27.0",
1557
+ "@esbuild/netbsd-x64": "0.27.0",
1558
+ "@esbuild/openbsd-arm64": "0.27.0",
1559
+ "@esbuild/openbsd-x64": "0.27.0",
1560
+ "@esbuild/openharmony-arm64": "0.27.0",
1561
+ "@esbuild/sunos-x64": "0.27.0",
1562
+ "@esbuild/win32-arm64": "0.27.0",
1563
+ "@esbuild/win32-ia32": "0.27.0",
1564
+ "@esbuild/win32-x64": "0.27.0"
1565
+ }
1566
+ },
1567
+ "node_modules/escape-html": {
1568
+ "version": "1.0.3",
1569
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
1570
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
1571
+ "license": "MIT"
1572
+ },
1573
+ "node_modules/exit-hook": {
1574
+ "version": "2.2.1",
1575
+ "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-2.2.1.tgz",
1576
+ "integrity": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==",
1577
+ "dev": true,
1578
+ "license": "MIT",
1579
+ "engines": {
1580
+ "node": ">=6"
1581
+ },
1582
+ "funding": {
1583
+ "url": "https://github.com/sponsors/sindresorhus"
1584
+ }
1585
+ },
1586
+ "node_modules/fflate": {
1587
+ "version": "0.7.4",
1588
+ "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.7.4.tgz",
1589
+ "integrity": "sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==",
1590
+ "license": "MIT"
1591
+ },
1592
+ "node_modules/find-up": {
1593
+ "version": "4.1.0",
1594
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
1595
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
1596
+ "license": "MIT",
1597
+ "dependencies": {
1598
+ "locate-path": "^5.0.0",
1599
+ "path-exists": "^4.0.0"
1600
+ },
1601
+ "engines": {
1602
+ "node": ">=8"
1603
+ }
1604
+ },
1605
+ "node_modules/fsevents": {
1606
+ "version": "2.3.3",
1607
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1608
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1609
+ "dev": true,
1610
+ "hasInstallScript": true,
1611
+ "license": "MIT",
1612
+ "optional": true,
1613
+ "os": [
1614
+ "darwin"
1615
+ ],
1616
+ "engines": {
1617
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1618
+ }
1619
+ },
1620
+ "node_modules/get-caller-file": {
1621
+ "version": "2.0.5",
1622
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
1623
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
1624
+ "license": "ISC",
1625
+ "engines": {
1626
+ "node": "6.* || 8.* || >= 10.*"
1627
+ }
1628
+ },
1629
+ "node_modules/get-east-asian-width": {
1630
+ "version": "1.4.0",
1631
+ "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz",
1632
+ "integrity": "sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==",
1633
+ "license": "MIT",
1634
+ "engines": {
1635
+ "node": ">=18"
1636
+ },
1637
+ "funding": {
1638
+ "url": "https://github.com/sponsors/sindresorhus"
1639
+ }
1640
+ },
1641
+ "node_modules/gifenc": {
1642
+ "version": "1.0.3",
1643
+ "resolved": "https://registry.npmjs.org/gifenc/-/gifenc-1.0.3.tgz",
1644
+ "integrity": "sha512-xdr6AdrfGBcfzncONUOlXMBuc5wJDtOueE3c5rdG0oNgtINLD+f2iFZltrBRZYzACRbKr+mSVU/x98zv2u3jmw==",
1645
+ "license": "MIT"
1646
+ },
1647
+ "node_modules/glob-to-regexp": {
1648
+ "version": "0.4.1",
1649
+ "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
1650
+ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
1651
+ "dev": true,
1652
+ "license": "BSD-2-Clause"
1653
+ },
1654
+ "node_modules/gradient-string": {
1655
+ "version": "3.0.0",
1656
+ "resolved": "https://registry.npmjs.org/gradient-string/-/gradient-string-3.0.0.tgz",
1657
+ "integrity": "sha512-frdKI4Qi8Ihp4C6wZNB565de/THpIaw3DjP5ku87M+N9rNSGmPTjfkq61SdRXB7eCaL8O1hkKDvf6CDMtOzIAg==",
1658
+ "license": "MIT",
1659
+ "dependencies": {
1660
+ "chalk": "^5.3.0",
1661
+ "tinygradient": "^1.1.5"
1662
+ },
1663
+ "engines": {
1664
+ "node": ">=14"
1665
+ }
1666
+ },
1667
+ "node_modules/h264-mp4-encoder": {
1668
+ "version": "1.0.12",
1669
+ "resolved": "https://registry.npmjs.org/h264-mp4-encoder/-/h264-mp4-encoder-1.0.12.tgz",
1670
+ "integrity": "sha512-xih3J+Go0o1RqGjhOt6TwXLWWGqLONRPyS8yoMu/RoS/S8WyEv4HuHp1KBsDDl8srZQ3gw9f95JYkCSjCuZbHQ==",
1671
+ "license": "MIT"
1672
+ },
1673
+ "node_modules/hex-rgb": {
1674
+ "version": "4.3.0",
1675
+ "resolved": "https://registry.npmjs.org/hex-rgb/-/hex-rgb-4.3.0.tgz",
1676
+ "integrity": "sha512-Ox1pJVrDCyGHMG9CFg1tmrRUMRPRsAWYc/PinY0XzJU4K7y7vjNoLKIQ7BR5UJMCxNN8EM1MNDmHWA/B3aZUuw==",
1677
+ "license": "MIT",
1678
+ "engines": {
1679
+ "node": ">=6"
1680
+ },
1681
+ "funding": {
1682
+ "url": "https://github.com/sponsors/sindresorhus"
1683
+ }
1684
+ },
1685
+ "node_modules/hono": {
1686
+ "version": "4.11.3",
1687
+ "resolved": "https://registry.npmjs.org/hono/-/hono-4.11.3.tgz",
1688
+ "integrity": "sha512-PmQi306+M/ct/m5s66Hrg+adPnkD5jiO6IjA7WhWw0gSBSo1EcRegwuI1deZ+wd5pzCGynCcn2DprnE4/yEV4w==",
1689
+ "license": "MIT",
1690
+ "engines": {
1691
+ "node": ">=16.9.0"
1692
+ }
1693
+ },
1694
+ "node_modules/is-arrayish": {
1695
+ "version": "0.3.4",
1696
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.4.tgz",
1697
+ "integrity": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==",
1698
+ "dev": true,
1699
+ "license": "MIT"
1700
+ },
1701
+ "node_modules/is-fullwidth-code-point": {
1702
+ "version": "3.0.0",
1703
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
1704
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
1705
+ "license": "MIT",
1706
+ "engines": {
1707
+ "node": ">=8"
1708
+ }
1709
+ },
1710
+ "node_modules/is-interactive": {
1711
+ "version": "2.0.0",
1712
+ "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz",
1713
+ "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==",
1714
+ "license": "MIT",
1715
+ "engines": {
1716
+ "node": ">=12"
1717
+ },
1718
+ "funding": {
1719
+ "url": "https://github.com/sponsors/sindresorhus"
1720
+ }
1721
+ },
1722
+ "node_modules/is-unicode-supported": {
1723
+ "version": "2.1.0",
1724
+ "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz",
1725
+ "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==",
1726
+ "license": "MIT",
1727
+ "engines": {
1728
+ "node": ">=18"
1729
+ },
1730
+ "funding": {
1731
+ "url": "https://github.com/sponsors/sindresorhus"
1732
+ }
1733
+ },
1734
+ "node_modules/jose": {
1735
+ "version": "5.10.0",
1736
+ "resolved": "https://registry.npmjs.org/jose/-/jose-5.10.0.tgz",
1737
+ "integrity": "sha512-s+3Al/p9g32Iq+oqXxkW//7jk2Vig6FF1CFqzVXoTUXt2qz89YWbL+OwS17NFYEvxC35n0FKeGO2LGYSxeM2Gg==",
1738
+ "license": "MIT",
1739
+ "funding": {
1740
+ "url": "https://github.com/sponsors/panva"
1741
+ }
1742
+ },
1743
+ "node_modules/js-tokens": {
1744
+ "version": "4.0.0",
1745
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
1746
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
1747
+ "license": "MIT"
1748
+ },
1749
+ "node_modules/just-camel-case": {
1750
+ "version": "6.2.0",
1751
+ "resolved": "https://registry.npmjs.org/just-camel-case/-/just-camel-case-6.2.0.tgz",
1752
+ "integrity": "sha512-ICenRLXwkQYLk3UyvLQZ+uKuwFVJ3JHFYFn7F2782G2Mv2hW8WPePqgdhpnjGaqkYtSVWnyCESZhGXUmY3/bEg==",
1753
+ "license": "MIT"
1754
+ },
1755
+ "node_modules/kleur": {
1756
+ "version": "4.1.5",
1757
+ "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
1758
+ "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
1759
+ "dev": true,
1760
+ "license": "MIT",
1761
+ "engines": {
1762
+ "node": ">=6"
1763
+ }
1764
+ },
1765
+ "node_modules/linebreak": {
1766
+ "version": "1.1.0",
1767
+ "resolved": "https://registry.npmjs.org/linebreak/-/linebreak-1.1.0.tgz",
1768
+ "integrity": "sha512-MHp03UImeVhB7XZtjd0E4n6+3xr5Dq/9xI/5FptGk5FrbDR3zagPa2DS6U8ks/3HjbKWG9Q1M2ufOzxV2qLYSQ==",
1769
+ "license": "MIT",
1770
+ "dependencies": {
1771
+ "base64-js": "0.0.8",
1772
+ "unicode-trie": "^2.0.0"
1773
+ }
1774
+ },
1775
+ "node_modules/locate-path": {
1776
+ "version": "5.0.0",
1777
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
1778
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
1779
+ "license": "MIT",
1780
+ "dependencies": {
1781
+ "p-locate": "^4.1.0"
1782
+ },
1783
+ "engines": {
1784
+ "node": ">=8"
1785
+ }
1786
+ },
1787
+ "node_modules/log-symbols": {
1788
+ "version": "6.0.0",
1789
+ "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-6.0.0.tgz",
1790
+ "integrity": "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==",
1791
+ "license": "MIT",
1792
+ "dependencies": {
1793
+ "chalk": "^5.3.0",
1794
+ "is-unicode-supported": "^1.3.0"
1795
+ },
1796
+ "engines": {
1797
+ "node": ">=18"
1798
+ },
1799
+ "funding": {
1800
+ "url": "https://github.com/sponsors/sindresorhus"
1801
+ }
1802
+ },
1803
+ "node_modules/log-symbols/node_modules/is-unicode-supported": {
1804
+ "version": "1.3.0",
1805
+ "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz",
1806
+ "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==",
1807
+ "license": "MIT",
1808
+ "engines": {
1809
+ "node": ">=12"
1810
+ },
1811
+ "funding": {
1812
+ "url": "https://github.com/sponsors/sindresorhus"
1813
+ }
1814
+ },
1815
+ "node_modules/loopwind": {
1816
+ "version": "0.25.6",
1817
+ "resolved": "https://registry.npmjs.org/loopwind/-/loopwind-0.25.6.tgz",
1818
+ "integrity": "sha512-tE1RHYempyT1lUs8PU/G2yLlFsKwV1RBN/sXlHEqLu0Pfmk8/TBZ6N5+pfZV9DK7NsDKsPVr32gkMJeZuhOt5A==",
1819
+ "license": "MIT",
1820
+ "dependencies": {
1821
+ "@resvg/resvg-wasm": "^2.6.2",
1822
+ "chalk": "^5.3.0",
1823
+ "commander": "^12.0.0",
1824
+ "esbuild": "^0.27.0",
1825
+ "gifenc": "^1.0.3",
1826
+ "gradient-string": "^3.0.0",
1827
+ "h264-mp4-encoder": "^1.0.12",
1828
+ "ora": "^8.0.1",
1829
+ "qrcode": "^1.5.4",
1830
+ "react": "^18.2.0",
1831
+ "satori": "^0.18.3",
1832
+ "sharp": "^0.34.5"
1833
+ },
1834
+ "bin": {
1835
+ "loopwind": "dist/cli.js",
1836
+ "lw": "dist/cli.js"
1837
+ },
1838
+ "engines": {
1839
+ "node": ">=18.0.0"
1840
+ }
1841
+ },
1842
+ "node_modules/loopwind/node_modules/@img/sharp-darwin-arm64": {
1843
+ "version": "0.34.5",
1844
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz",
1845
+ "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==",
1846
+ "cpu": [
1847
+ "arm64"
1848
+ ],
1849
+ "license": "Apache-2.0",
1850
+ "optional": true,
1851
+ "os": [
1852
+ "darwin"
1853
+ ],
1854
+ "engines": {
1855
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
1856
+ },
1857
+ "funding": {
1858
+ "url": "https://opencollective.com/libvips"
1859
+ },
1860
+ "optionalDependencies": {
1861
+ "@img/sharp-libvips-darwin-arm64": "1.2.4"
1862
+ }
1863
+ },
1864
+ "node_modules/loopwind/node_modules/@img/sharp-darwin-x64": {
1865
+ "version": "0.34.5",
1866
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz",
1867
+ "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==",
1868
+ "cpu": [
1869
+ "x64"
1870
+ ],
1871
+ "license": "Apache-2.0",
1872
+ "optional": true,
1873
+ "os": [
1874
+ "darwin"
1875
+ ],
1876
+ "engines": {
1877
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
1878
+ },
1879
+ "funding": {
1880
+ "url": "https://opencollective.com/libvips"
1881
+ },
1882
+ "optionalDependencies": {
1883
+ "@img/sharp-libvips-darwin-x64": "1.2.4"
1884
+ }
1885
+ },
1886
+ "node_modules/loopwind/node_modules/@img/sharp-libvips-darwin-arm64": {
1887
+ "version": "1.2.4",
1888
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz",
1889
+ "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==",
1890
+ "cpu": [
1891
+ "arm64"
1892
+ ],
1893
+ "license": "LGPL-3.0-or-later",
1894
+ "optional": true,
1895
+ "os": [
1896
+ "darwin"
1897
+ ],
1898
+ "funding": {
1899
+ "url": "https://opencollective.com/libvips"
1900
+ }
1901
+ },
1902
+ "node_modules/loopwind/node_modules/@img/sharp-libvips-darwin-x64": {
1903
+ "version": "1.2.4",
1904
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz",
1905
+ "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==",
1906
+ "cpu": [
1907
+ "x64"
1908
+ ],
1909
+ "license": "LGPL-3.0-or-later",
1910
+ "optional": true,
1911
+ "os": [
1912
+ "darwin"
1913
+ ],
1914
+ "funding": {
1915
+ "url": "https://opencollective.com/libvips"
1916
+ }
1917
+ },
1918
+ "node_modules/loopwind/node_modules/@img/sharp-libvips-linux-arm": {
1919
+ "version": "1.2.4",
1920
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz",
1921
+ "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==",
1922
+ "cpu": [
1923
+ "arm"
1924
+ ],
1925
+ "license": "LGPL-3.0-or-later",
1926
+ "optional": true,
1927
+ "os": [
1928
+ "linux"
1929
+ ],
1930
+ "funding": {
1931
+ "url": "https://opencollective.com/libvips"
1932
+ }
1933
+ },
1934
+ "node_modules/loopwind/node_modules/@img/sharp-libvips-linux-arm64": {
1935
+ "version": "1.2.4",
1936
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz",
1937
+ "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==",
1938
+ "cpu": [
1939
+ "arm64"
1940
+ ],
1941
+ "license": "LGPL-3.0-or-later",
1942
+ "optional": true,
1943
+ "os": [
1944
+ "linux"
1945
+ ],
1946
+ "funding": {
1947
+ "url": "https://opencollective.com/libvips"
1948
+ }
1949
+ },
1950
+ "node_modules/loopwind/node_modules/@img/sharp-libvips-linux-s390x": {
1951
+ "version": "1.2.4",
1952
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz",
1953
+ "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==",
1954
+ "cpu": [
1955
+ "s390x"
1956
+ ],
1957
+ "license": "LGPL-3.0-or-later",
1958
+ "optional": true,
1959
+ "os": [
1960
+ "linux"
1961
+ ],
1962
+ "funding": {
1963
+ "url": "https://opencollective.com/libvips"
1964
+ }
1965
+ },
1966
+ "node_modules/loopwind/node_modules/@img/sharp-libvips-linux-x64": {
1967
+ "version": "1.2.4",
1968
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz",
1969
+ "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==",
1970
+ "cpu": [
1971
+ "x64"
1972
+ ],
1973
+ "license": "LGPL-3.0-or-later",
1974
+ "optional": true,
1975
+ "os": [
1976
+ "linux"
1977
+ ],
1978
+ "funding": {
1979
+ "url": "https://opencollective.com/libvips"
1980
+ }
1981
+ },
1982
+ "node_modules/loopwind/node_modules/@img/sharp-libvips-linuxmusl-arm64": {
1983
+ "version": "1.2.4",
1984
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz",
1985
+ "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==",
1986
+ "cpu": [
1987
+ "arm64"
1988
+ ],
1989
+ "license": "LGPL-3.0-or-later",
1990
+ "optional": true,
1991
+ "os": [
1992
+ "linux"
1993
+ ],
1994
+ "funding": {
1995
+ "url": "https://opencollective.com/libvips"
1996
+ }
1997
+ },
1998
+ "node_modules/loopwind/node_modules/@img/sharp-libvips-linuxmusl-x64": {
1999
+ "version": "1.2.4",
2000
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz",
2001
+ "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==",
2002
+ "cpu": [
2003
+ "x64"
2004
+ ],
2005
+ "license": "LGPL-3.0-or-later",
2006
+ "optional": true,
2007
+ "os": [
2008
+ "linux"
2009
+ ],
2010
+ "funding": {
2011
+ "url": "https://opencollective.com/libvips"
2012
+ }
2013
+ },
2014
+ "node_modules/loopwind/node_modules/@img/sharp-linux-arm": {
2015
+ "version": "0.34.5",
2016
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz",
2017
+ "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==",
2018
+ "cpu": [
2019
+ "arm"
2020
+ ],
2021
+ "license": "Apache-2.0",
2022
+ "optional": true,
2023
+ "os": [
2024
+ "linux"
2025
+ ],
2026
+ "engines": {
2027
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
2028
+ },
2029
+ "funding": {
2030
+ "url": "https://opencollective.com/libvips"
2031
+ },
2032
+ "optionalDependencies": {
2033
+ "@img/sharp-libvips-linux-arm": "1.2.4"
2034
+ }
2035
+ },
2036
+ "node_modules/loopwind/node_modules/@img/sharp-linux-arm64": {
2037
+ "version": "0.34.5",
2038
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz",
2039
+ "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==",
2040
+ "cpu": [
2041
+ "arm64"
2042
+ ],
2043
+ "license": "Apache-2.0",
2044
+ "optional": true,
2045
+ "os": [
2046
+ "linux"
2047
+ ],
2048
+ "engines": {
2049
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
2050
+ },
2051
+ "funding": {
2052
+ "url": "https://opencollective.com/libvips"
2053
+ },
2054
+ "optionalDependencies": {
2055
+ "@img/sharp-libvips-linux-arm64": "1.2.4"
2056
+ }
2057
+ },
2058
+ "node_modules/loopwind/node_modules/@img/sharp-linux-s390x": {
2059
+ "version": "0.34.5",
2060
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz",
2061
+ "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==",
2062
+ "cpu": [
2063
+ "s390x"
2064
+ ],
2065
+ "license": "Apache-2.0",
2066
+ "optional": true,
2067
+ "os": [
2068
+ "linux"
2069
+ ],
2070
+ "engines": {
2071
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
2072
+ },
2073
+ "funding": {
2074
+ "url": "https://opencollective.com/libvips"
2075
+ },
2076
+ "optionalDependencies": {
2077
+ "@img/sharp-libvips-linux-s390x": "1.2.4"
2078
+ }
2079
+ },
2080
+ "node_modules/loopwind/node_modules/@img/sharp-linux-x64": {
2081
+ "version": "0.34.5",
2082
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz",
2083
+ "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==",
2084
+ "cpu": [
2085
+ "x64"
2086
+ ],
2087
+ "license": "Apache-2.0",
2088
+ "optional": true,
2089
+ "os": [
2090
+ "linux"
2091
+ ],
2092
+ "engines": {
2093
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
2094
+ },
2095
+ "funding": {
2096
+ "url": "https://opencollective.com/libvips"
2097
+ },
2098
+ "optionalDependencies": {
2099
+ "@img/sharp-libvips-linux-x64": "1.2.4"
2100
+ }
2101
+ },
2102
+ "node_modules/loopwind/node_modules/@img/sharp-linuxmusl-arm64": {
2103
+ "version": "0.34.5",
2104
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz",
2105
+ "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==",
2106
+ "cpu": [
2107
+ "arm64"
2108
+ ],
2109
+ "license": "Apache-2.0",
2110
+ "optional": true,
2111
+ "os": [
2112
+ "linux"
2113
+ ],
2114
+ "engines": {
2115
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
2116
+ },
2117
+ "funding": {
2118
+ "url": "https://opencollective.com/libvips"
2119
+ },
2120
+ "optionalDependencies": {
2121
+ "@img/sharp-libvips-linuxmusl-arm64": "1.2.4"
2122
+ }
2123
+ },
2124
+ "node_modules/loopwind/node_modules/@img/sharp-linuxmusl-x64": {
2125
+ "version": "0.34.5",
2126
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz",
2127
+ "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==",
2128
+ "cpu": [
2129
+ "x64"
2130
+ ],
2131
+ "license": "Apache-2.0",
2132
+ "optional": true,
2133
+ "os": [
2134
+ "linux"
2135
+ ],
2136
+ "engines": {
2137
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
2138
+ },
2139
+ "funding": {
2140
+ "url": "https://opencollective.com/libvips"
2141
+ },
2142
+ "optionalDependencies": {
2143
+ "@img/sharp-libvips-linuxmusl-x64": "1.2.4"
2144
+ }
2145
+ },
2146
+ "node_modules/loopwind/node_modules/@img/sharp-wasm32": {
2147
+ "version": "0.34.5",
2148
+ "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz",
2149
+ "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==",
2150
+ "cpu": [
2151
+ "wasm32"
2152
+ ],
2153
+ "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
2154
+ "optional": true,
2155
+ "dependencies": {
2156
+ "@emnapi/runtime": "^1.7.0"
2157
+ },
2158
+ "engines": {
2159
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
2160
+ },
2161
+ "funding": {
2162
+ "url": "https://opencollective.com/libvips"
2163
+ }
2164
+ },
2165
+ "node_modules/loopwind/node_modules/@img/sharp-win32-ia32": {
2166
+ "version": "0.34.5",
2167
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz",
2168
+ "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==",
2169
+ "cpu": [
2170
+ "ia32"
2171
+ ],
2172
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
2173
+ "optional": true,
2174
+ "os": [
2175
+ "win32"
2176
+ ],
2177
+ "engines": {
2178
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
2179
+ },
2180
+ "funding": {
2181
+ "url": "https://opencollective.com/libvips"
2182
+ }
2183
+ },
2184
+ "node_modules/loopwind/node_modules/@img/sharp-win32-x64": {
2185
+ "version": "0.34.5",
2186
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz",
2187
+ "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==",
2188
+ "cpu": [
2189
+ "x64"
2190
+ ],
2191
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
2192
+ "optional": true,
2193
+ "os": [
2194
+ "win32"
2195
+ ],
2196
+ "engines": {
2197
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
2198
+ },
2199
+ "funding": {
2200
+ "url": "https://opencollective.com/libvips"
2201
+ }
2202
+ },
2203
+ "node_modules/loopwind/node_modules/react": {
2204
+ "version": "18.3.1",
2205
+ "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
2206
+ "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
2207
+ "license": "MIT",
2208
+ "dependencies": {
2209
+ "loose-envify": "^1.1.0"
2210
+ },
2211
+ "engines": {
2212
+ "node": ">=0.10.0"
2213
+ }
2214
+ },
2215
+ "node_modules/loopwind/node_modules/sharp": {
2216
+ "version": "0.34.5",
2217
+ "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz",
2218
+ "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==",
2219
+ "hasInstallScript": true,
2220
+ "license": "Apache-2.0",
2221
+ "dependencies": {
2222
+ "@img/colour": "^1.0.0",
2223
+ "detect-libc": "^2.1.2",
2224
+ "semver": "^7.7.3"
2225
+ },
2226
+ "engines": {
2227
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
2228
+ },
2229
+ "funding": {
2230
+ "url": "https://opencollective.com/libvips"
2231
+ },
2232
+ "optionalDependencies": {
2233
+ "@img/sharp-darwin-arm64": "0.34.5",
2234
+ "@img/sharp-darwin-x64": "0.34.5",
2235
+ "@img/sharp-libvips-darwin-arm64": "1.2.4",
2236
+ "@img/sharp-libvips-darwin-x64": "1.2.4",
2237
+ "@img/sharp-libvips-linux-arm": "1.2.4",
2238
+ "@img/sharp-libvips-linux-arm64": "1.2.4",
2239
+ "@img/sharp-libvips-linux-ppc64": "1.2.4",
2240
+ "@img/sharp-libvips-linux-riscv64": "1.2.4",
2241
+ "@img/sharp-libvips-linux-s390x": "1.2.4",
2242
+ "@img/sharp-libvips-linux-x64": "1.2.4",
2243
+ "@img/sharp-libvips-linuxmusl-arm64": "1.2.4",
2244
+ "@img/sharp-libvips-linuxmusl-x64": "1.2.4",
2245
+ "@img/sharp-linux-arm": "0.34.5",
2246
+ "@img/sharp-linux-arm64": "0.34.5",
2247
+ "@img/sharp-linux-ppc64": "0.34.5",
2248
+ "@img/sharp-linux-riscv64": "0.34.5",
2249
+ "@img/sharp-linux-s390x": "0.34.5",
2250
+ "@img/sharp-linux-x64": "0.34.5",
2251
+ "@img/sharp-linuxmusl-arm64": "0.34.5",
2252
+ "@img/sharp-linuxmusl-x64": "0.34.5",
2253
+ "@img/sharp-wasm32": "0.34.5",
2254
+ "@img/sharp-win32-arm64": "0.34.5",
2255
+ "@img/sharp-win32-ia32": "0.34.5",
2256
+ "@img/sharp-win32-x64": "0.34.5"
2257
+ }
2258
+ },
2259
+ "node_modules/loose-envify": {
2260
+ "version": "1.4.0",
2261
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
2262
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
2263
+ "license": "MIT",
2264
+ "dependencies": {
2265
+ "js-tokens": "^3.0.0 || ^4.0.0"
2266
+ },
2267
+ "bin": {
2268
+ "loose-envify": "cli.js"
2269
+ }
2270
+ },
2271
+ "node_modules/mime": {
2272
+ "version": "3.0.0",
2273
+ "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz",
2274
+ "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==",
2275
+ "dev": true,
2276
+ "license": "MIT",
2277
+ "bin": {
2278
+ "mime": "cli.js"
2279
+ },
2280
+ "engines": {
2281
+ "node": ">=10.0.0"
2282
+ }
2283
+ },
2284
+ "node_modules/mimic-function": {
2285
+ "version": "5.0.1",
2286
+ "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz",
2287
+ "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==",
2288
+ "license": "MIT",
2289
+ "engines": {
2290
+ "node": ">=18"
2291
+ },
2292
+ "funding": {
2293
+ "url": "https://github.com/sponsors/sindresorhus"
2294
+ }
2295
+ },
2296
+ "node_modules/miniflare": {
2297
+ "version": "4.20251210.0",
2298
+ "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-4.20251210.0.tgz",
2299
+ "integrity": "sha512-k6kIoXwGVqlPZb0hcn+X7BmnK+8BjIIkusQPY22kCo2RaQJ/LzAjtxHQdGXerlHSnJyQivDQsL6BJHMpQfUFyw==",
2300
+ "dev": true,
2301
+ "license": "MIT",
2302
+ "dependencies": {
2303
+ "@cspotcode/source-map-support": "0.8.1",
2304
+ "acorn": "8.14.0",
2305
+ "acorn-walk": "8.3.2",
2306
+ "exit-hook": "2.2.1",
2307
+ "glob-to-regexp": "0.4.1",
2308
+ "sharp": "^0.33.5",
2309
+ "stoppable": "1.1.0",
2310
+ "undici": "7.14.0",
2311
+ "workerd": "1.20251210.0",
2312
+ "ws": "8.18.0",
2313
+ "youch": "4.1.0-beta.10",
2314
+ "zod": "3.22.3"
2315
+ },
2316
+ "bin": {
2317
+ "miniflare": "bootstrap.js"
2318
+ },
2319
+ "engines": {
2320
+ "node": ">=18.0.0"
2321
+ }
2322
+ },
2323
+ "node_modules/miniflare/node_modules/zod": {
2324
+ "version": "3.22.3",
2325
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.22.3.tgz",
2326
+ "integrity": "sha512-EjIevzuJRiRPbVH4mGc8nApb/lVLKVpmUhAaR5R5doKGfAnGJ6Gr3CViAVjP+4FWSxCsybeWQdcgCtbX+7oZug==",
2327
+ "dev": true,
2328
+ "license": "MIT",
2329
+ "funding": {
2330
+ "url": "https://github.com/sponsors/colinhacks"
2331
+ }
2332
+ },
2333
+ "node_modules/nanoid": {
2334
+ "version": "5.1.6",
2335
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.1.6.tgz",
2336
+ "integrity": "sha512-c7+7RQ+dMB5dPwwCp4ee1/iV/q2P6aK1mTZcfr1BTuVlyW9hJYiMPybJCcnBlQtuSmTIWNeazm/zqNoZSSElBg==",
2337
+ "funding": [
2338
+ {
2339
+ "type": "github",
2340
+ "url": "https://github.com/sponsors/ai"
2341
+ }
2342
+ ],
2343
+ "license": "MIT",
2344
+ "bin": {
2345
+ "nanoid": "bin/nanoid.js"
2346
+ },
2347
+ "engines": {
2348
+ "node": "^18 || >=20"
2349
+ }
2350
+ },
2351
+ "node_modules/onetime": {
2352
+ "version": "7.0.0",
2353
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz",
2354
+ "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==",
2355
+ "license": "MIT",
2356
+ "dependencies": {
2357
+ "mimic-function": "^5.0.0"
2358
+ },
2359
+ "engines": {
2360
+ "node": ">=18"
2361
+ },
2362
+ "funding": {
2363
+ "url": "https://github.com/sponsors/sindresorhus"
2364
+ }
2365
+ },
2366
+ "node_modules/ora": {
2367
+ "version": "8.2.0",
2368
+ "resolved": "https://registry.npmjs.org/ora/-/ora-8.2.0.tgz",
2369
+ "integrity": "sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==",
2370
+ "license": "MIT",
2371
+ "dependencies": {
2372
+ "chalk": "^5.3.0",
2373
+ "cli-cursor": "^5.0.0",
2374
+ "cli-spinners": "^2.9.2",
2375
+ "is-interactive": "^2.0.0",
2376
+ "is-unicode-supported": "^2.0.0",
2377
+ "log-symbols": "^6.0.0",
2378
+ "stdin-discarder": "^0.2.2",
2379
+ "string-width": "^7.2.0",
2380
+ "strip-ansi": "^7.1.0"
2381
+ },
2382
+ "engines": {
2383
+ "node": ">=18"
2384
+ },
2385
+ "funding": {
2386
+ "url": "https://github.com/sponsors/sindresorhus"
2387
+ }
2388
+ },
2389
+ "node_modules/p-limit": {
2390
+ "version": "2.3.0",
2391
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
2392
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
2393
+ "license": "MIT",
2394
+ "dependencies": {
2395
+ "p-try": "^2.0.0"
2396
+ },
2397
+ "engines": {
2398
+ "node": ">=6"
2399
+ },
2400
+ "funding": {
2401
+ "url": "https://github.com/sponsors/sindresorhus"
2402
+ }
2403
+ },
2404
+ "node_modules/p-locate": {
2405
+ "version": "4.1.0",
2406
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
2407
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
2408
+ "license": "MIT",
2409
+ "dependencies": {
2410
+ "p-limit": "^2.2.0"
2411
+ },
2412
+ "engines": {
2413
+ "node": ">=8"
2414
+ }
2415
+ },
2416
+ "node_modules/p-try": {
2417
+ "version": "2.2.0",
2418
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
2419
+ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
2420
+ "license": "MIT",
2421
+ "engines": {
2422
+ "node": ">=6"
2423
+ }
2424
+ },
2425
+ "node_modules/pako": {
2426
+ "version": "0.2.9",
2427
+ "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz",
2428
+ "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==",
2429
+ "license": "MIT"
2430
+ },
2431
+ "node_modules/parse-css-color": {
2432
+ "version": "0.2.1",
2433
+ "resolved": "https://registry.npmjs.org/parse-css-color/-/parse-css-color-0.2.1.tgz",
2434
+ "integrity": "sha512-bwS/GGIFV3b6KS4uwpzCFj4w297Yl3uqnSgIPsoQkx7GMLROXfMnWvxfNkL0oh8HVhZA4hvJoEoEIqonfJ3BWg==",
2435
+ "license": "MIT",
2436
+ "dependencies": {
2437
+ "color-name": "^1.1.4",
2438
+ "hex-rgb": "^4.1.0"
2439
+ }
2440
+ },
2441
+ "node_modules/path-exists": {
2442
+ "version": "4.0.0",
2443
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
2444
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
2445
+ "license": "MIT",
2446
+ "engines": {
2447
+ "node": ">=8"
2448
+ }
2449
+ },
2450
+ "node_modules/path-to-regexp": {
2451
+ "version": "6.3.0",
2452
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz",
2453
+ "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==",
2454
+ "dev": true,
2455
+ "license": "MIT"
2456
+ },
2457
+ "node_modules/pathe": {
2458
+ "version": "2.0.3",
2459
+ "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
2460
+ "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
2461
+ "dev": true,
2462
+ "license": "MIT"
2463
+ },
2464
+ "node_modules/pngjs": {
2465
+ "version": "5.0.0",
2466
+ "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz",
2467
+ "integrity": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==",
2468
+ "license": "MIT",
2469
+ "engines": {
2470
+ "node": ">=10.13.0"
2471
+ }
2472
+ },
2473
+ "node_modules/postcss-value-parser": {
2474
+ "version": "4.2.0",
2475
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
2476
+ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
2477
+ "license": "MIT"
2478
+ },
2479
+ "node_modules/qrcode": {
2480
+ "version": "1.5.4",
2481
+ "resolved": "https://registry.npmjs.org/qrcode/-/qrcode-1.5.4.tgz",
2482
+ "integrity": "sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==",
2483
+ "license": "MIT",
2484
+ "dependencies": {
2485
+ "dijkstrajs": "^1.0.1",
2486
+ "pngjs": "^5.0.0",
2487
+ "yargs": "^15.3.1"
2488
+ },
2489
+ "bin": {
2490
+ "qrcode": "bin/qrcode"
2491
+ },
2492
+ "engines": {
2493
+ "node": ">=10.13.0"
2494
+ }
2495
+ },
2496
+ "node_modules/react": {
2497
+ "version": "19.2.3",
2498
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.3.tgz",
2499
+ "integrity": "sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==",
2500
+ "license": "MIT",
2501
+ "engines": {
2502
+ "node": ">=0.10.0"
2503
+ }
2504
+ },
2505
+ "node_modules/require-directory": {
2506
+ "version": "2.1.1",
2507
+ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
2508
+ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
2509
+ "license": "MIT",
2510
+ "engines": {
2511
+ "node": ">=0.10.0"
2512
+ }
2513
+ },
2514
+ "node_modules/require-main-filename": {
2515
+ "version": "2.0.0",
2516
+ "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
2517
+ "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
2518
+ "license": "ISC"
2519
+ },
2520
+ "node_modules/restore-cursor": {
2521
+ "version": "5.1.0",
2522
+ "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz",
2523
+ "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==",
2524
+ "license": "MIT",
2525
+ "dependencies": {
2526
+ "onetime": "^7.0.0",
2527
+ "signal-exit": "^4.1.0"
2528
+ },
2529
+ "engines": {
2530
+ "node": ">=18"
2531
+ },
2532
+ "funding": {
2533
+ "url": "https://github.com/sponsors/sindresorhus"
2534
+ }
2535
+ },
2536
+ "node_modules/satori": {
2537
+ "version": "0.18.3",
2538
+ "resolved": "https://registry.npmjs.org/satori/-/satori-0.18.3.tgz",
2539
+ "integrity": "sha512-T3DzWNmnrfVmk2gCIlAxLRLbGkfp3K7TyRva+Byyojqu83BNvnMeqVeYRdmUw4TKCsyH4RiQ/KuF/I4yEzgR5A==",
2540
+ "license": "MPL-2.0",
2541
+ "dependencies": {
2542
+ "@shuding/opentype.js": "1.4.0-beta.0",
2543
+ "css-background-parser": "^0.1.0",
2544
+ "css-box-shadow": "1.0.0-3",
2545
+ "css-gradient-parser": "^0.0.17",
2546
+ "css-to-react-native": "^3.0.0",
2547
+ "emoji-regex-xs": "^2.0.1",
2548
+ "escape-html": "^1.0.3",
2549
+ "linebreak": "^1.1.0",
2550
+ "parse-css-color": "^0.2.1",
2551
+ "postcss-value-parser": "^4.2.0",
2552
+ "yoga-layout": "^3.2.1"
2553
+ },
2554
+ "engines": {
2555
+ "node": ">=16"
2556
+ }
2557
+ },
2558
+ "node_modules/semver": {
2559
+ "version": "7.7.3",
2560
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
2561
+ "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
2562
+ "license": "ISC",
2563
+ "bin": {
2564
+ "semver": "bin/semver.js"
2565
+ },
2566
+ "engines": {
2567
+ "node": ">=10"
2568
+ }
2569
+ },
2570
+ "node_modules/set-blocking": {
2571
+ "version": "2.0.0",
2572
+ "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
2573
+ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==",
2574
+ "license": "ISC"
2575
+ },
2576
+ "node_modules/sharp": {
2577
+ "version": "0.33.5",
2578
+ "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.5.tgz",
2579
+ "integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==",
2580
+ "dev": true,
2581
+ "hasInstallScript": true,
2582
+ "license": "Apache-2.0",
2583
+ "dependencies": {
2584
+ "color": "^4.2.3",
2585
+ "detect-libc": "^2.0.3",
2586
+ "semver": "^7.6.3"
2587
+ },
2588
+ "engines": {
2589
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
2590
+ },
2591
+ "funding": {
2592
+ "url": "https://opencollective.com/libvips"
2593
+ },
2594
+ "optionalDependencies": {
2595
+ "@img/sharp-darwin-arm64": "0.33.5",
2596
+ "@img/sharp-darwin-x64": "0.33.5",
2597
+ "@img/sharp-libvips-darwin-arm64": "1.0.4",
2598
+ "@img/sharp-libvips-darwin-x64": "1.0.4",
2599
+ "@img/sharp-libvips-linux-arm": "1.0.5",
2600
+ "@img/sharp-libvips-linux-arm64": "1.0.4",
2601
+ "@img/sharp-libvips-linux-s390x": "1.0.4",
2602
+ "@img/sharp-libvips-linux-x64": "1.0.4",
2603
+ "@img/sharp-libvips-linuxmusl-arm64": "1.0.4",
2604
+ "@img/sharp-libvips-linuxmusl-x64": "1.0.4",
2605
+ "@img/sharp-linux-arm": "0.33.5",
2606
+ "@img/sharp-linux-arm64": "0.33.5",
2607
+ "@img/sharp-linux-s390x": "0.33.5",
2608
+ "@img/sharp-linux-x64": "0.33.5",
2609
+ "@img/sharp-linuxmusl-arm64": "0.33.5",
2610
+ "@img/sharp-linuxmusl-x64": "0.33.5",
2611
+ "@img/sharp-wasm32": "0.33.5",
2612
+ "@img/sharp-win32-ia32": "0.33.5",
2613
+ "@img/sharp-win32-x64": "0.33.5"
2614
+ }
2615
+ },
2616
+ "node_modules/signal-exit": {
2617
+ "version": "4.1.0",
2618
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
2619
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
2620
+ "license": "ISC",
2621
+ "engines": {
2622
+ "node": ">=14"
2623
+ },
2624
+ "funding": {
2625
+ "url": "https://github.com/sponsors/isaacs"
2626
+ }
2627
+ },
2628
+ "node_modules/simple-swizzle": {
2629
+ "version": "0.2.4",
2630
+ "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.4.tgz",
2631
+ "integrity": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==",
2632
+ "dev": true,
2633
+ "license": "MIT",
2634
+ "dependencies": {
2635
+ "is-arrayish": "^0.3.1"
2636
+ }
2637
+ },
2638
+ "node_modules/stdin-discarder": {
2639
+ "version": "0.2.2",
2640
+ "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.2.2.tgz",
2641
+ "integrity": "sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==",
2642
+ "license": "MIT",
2643
+ "engines": {
2644
+ "node": ">=18"
2645
+ },
2646
+ "funding": {
2647
+ "url": "https://github.com/sponsors/sindresorhus"
2648
+ }
2649
+ },
2650
+ "node_modules/stoppable": {
2651
+ "version": "1.1.0",
2652
+ "resolved": "https://registry.npmjs.org/stoppable/-/stoppable-1.1.0.tgz",
2653
+ "integrity": "sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==",
2654
+ "dev": true,
2655
+ "license": "MIT",
2656
+ "engines": {
2657
+ "node": ">=4",
2658
+ "npm": ">=6"
2659
+ }
2660
+ },
2661
+ "node_modules/string-width": {
2662
+ "version": "7.2.0",
2663
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
2664
+ "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
2665
+ "license": "MIT",
2666
+ "dependencies": {
2667
+ "emoji-regex": "^10.3.0",
2668
+ "get-east-asian-width": "^1.0.0",
2669
+ "strip-ansi": "^7.1.0"
2670
+ },
2671
+ "engines": {
2672
+ "node": ">=18"
2673
+ },
2674
+ "funding": {
2675
+ "url": "https://github.com/sponsors/sindresorhus"
2676
+ }
2677
+ },
2678
+ "node_modules/string.prototype.codepointat": {
2679
+ "version": "0.2.1",
2680
+ "resolved": "https://registry.npmjs.org/string.prototype.codepointat/-/string.prototype.codepointat-0.2.1.tgz",
2681
+ "integrity": "sha512-2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg==",
2682
+ "license": "MIT"
2683
+ },
2684
+ "node_modules/strip-ansi": {
2685
+ "version": "7.1.2",
2686
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz",
2687
+ "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
2688
+ "license": "MIT",
2689
+ "dependencies": {
2690
+ "ansi-regex": "^6.0.1"
2691
+ },
2692
+ "engines": {
2693
+ "node": ">=12"
2694
+ },
2695
+ "funding": {
2696
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
2697
+ }
2698
+ },
2699
+ "node_modules/supports-color": {
2700
+ "version": "10.2.2",
2701
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-10.2.2.tgz",
2702
+ "integrity": "sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==",
2703
+ "dev": true,
2704
+ "license": "MIT",
2705
+ "engines": {
2706
+ "node": ">=18"
2707
+ },
2708
+ "funding": {
2709
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
2710
+ }
2711
+ },
2712
+ "node_modules/tiny-inflate": {
2713
+ "version": "1.0.3",
2714
+ "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz",
2715
+ "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==",
2716
+ "license": "MIT"
2717
+ },
2718
+ "node_modules/tinycolor2": {
2719
+ "version": "1.6.0",
2720
+ "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz",
2721
+ "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==",
2722
+ "license": "MIT"
2723
+ },
2724
+ "node_modules/tinygradient": {
2725
+ "version": "1.1.5",
2726
+ "resolved": "https://registry.npmjs.org/tinygradient/-/tinygradient-1.1.5.tgz",
2727
+ "integrity": "sha512-8nIfc2vgQ4TeLnk2lFj4tRLvvJwEfQuabdsmvDdQPT0xlk9TaNtpGd6nNRxXoK6vQhN6RSzj+Cnp5tTQmpxmbw==",
2728
+ "license": "MIT",
2729
+ "dependencies": {
2730
+ "@types/tinycolor2": "^1.4.0",
2731
+ "tinycolor2": "^1.0.0"
2732
+ }
2733
+ },
2734
+ "node_modules/tslib": {
2735
+ "version": "2.8.1",
2736
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
2737
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
2738
+ "license": "0BSD",
2739
+ "optional": true
2740
+ },
2741
+ "node_modules/typescript": {
2742
+ "version": "5.9.3",
2743
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
2744
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
2745
+ "dev": true,
2746
+ "license": "Apache-2.0",
2747
+ "bin": {
2748
+ "tsc": "bin/tsc",
2749
+ "tsserver": "bin/tsserver"
2750
+ },
2751
+ "engines": {
2752
+ "node": ">=14.17"
2753
+ }
2754
+ },
2755
+ "node_modules/undici": {
2756
+ "version": "7.14.0",
2757
+ "resolved": "https://registry.npmjs.org/undici/-/undici-7.14.0.tgz",
2758
+ "integrity": "sha512-Vqs8HTzjpQXZeXdpsfChQTlafcMQaaIwnGwLam1wudSSjlJeQ3bw1j+TLPePgrCnCpUXx7Ba5Pdpf5OBih62NQ==",
2759
+ "dev": true,
2760
+ "license": "MIT",
2761
+ "engines": {
2762
+ "node": ">=20.18.1"
2763
+ }
2764
+ },
2765
+ "node_modules/unenv": {
2766
+ "version": "2.0.0-rc.24",
2767
+ "resolved": "https://registry.npmjs.org/unenv/-/unenv-2.0.0-rc.24.tgz",
2768
+ "integrity": "sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==",
2769
+ "dev": true,
2770
+ "license": "MIT",
2771
+ "dependencies": {
2772
+ "pathe": "^2.0.3"
2773
+ }
2774
+ },
2775
+ "node_modules/unicode-trie": {
2776
+ "version": "2.0.0",
2777
+ "resolved": "https://registry.npmjs.org/unicode-trie/-/unicode-trie-2.0.0.tgz",
2778
+ "integrity": "sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==",
2779
+ "license": "MIT",
2780
+ "dependencies": {
2781
+ "pako": "^0.2.5",
2782
+ "tiny-inflate": "^1.0.0"
2783
+ }
2784
+ },
2785
+ "node_modules/which-module": {
2786
+ "version": "2.0.1",
2787
+ "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz",
2788
+ "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==",
2789
+ "license": "ISC"
2790
+ },
2791
+ "node_modules/workerd": {
2792
+ "version": "1.20251210.0",
2793
+ "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20251210.0.tgz",
2794
+ "integrity": "sha512-9MUUneP1BnRE9XAYi94FXxHmiLGbO75EHQZsgWqSiOXjoXSqJCw8aQbIEPxCy19TclEl/kHUFYce8ST2W+Qpjw==",
2795
+ "dev": true,
2796
+ "hasInstallScript": true,
2797
+ "license": "Apache-2.0",
2798
+ "bin": {
2799
+ "workerd": "bin/workerd"
2800
+ },
2801
+ "engines": {
2802
+ "node": ">=16"
2803
+ },
2804
+ "optionalDependencies": {
2805
+ "@cloudflare/workerd-darwin-64": "1.20251210.0",
2806
+ "@cloudflare/workerd-darwin-arm64": "1.20251210.0",
2807
+ "@cloudflare/workerd-linux-64": "1.20251210.0",
2808
+ "@cloudflare/workerd-linux-arm64": "1.20251210.0",
2809
+ "@cloudflare/workerd-windows-64": "1.20251210.0"
2810
+ }
2811
+ },
2812
+ "node_modules/workers-og": {
2813
+ "version": "0.0.27",
2814
+ "resolved": "https://registry.npmjs.org/workers-og/-/workers-og-0.0.27.tgz",
2815
+ "integrity": "sha512-QvwptQ0twmouQHiITUi3kYxEPCLdueC/U4msQ2xMz2iktd+iseSs7zlREw3T1dAsPxPw73FQlw8cXFsfANZPlw==",
2816
+ "dependencies": {
2817
+ "@resvg/resvg-wasm": "2.4.0",
2818
+ "just-camel-case": "^6.2.0",
2819
+ "satori": "^0.15.2",
2820
+ "yoga-wasm-web": "0.3.3"
2821
+ }
2822
+ },
2823
+ "node_modules/workers-og/node_modules/@resvg/resvg-wasm": {
2824
+ "version": "2.4.0",
2825
+ "resolved": "https://registry.npmjs.org/@resvg/resvg-wasm/-/resvg-wasm-2.4.0.tgz",
2826
+ "integrity": "sha512-C7c51Nn4yTxXFKvgh2txJFNweaVcfUPQxwEUFw4aWsCmfiBDJsTSwviIF8EcwjQ6k8bPyMWCl1vw4BdxE569Cg==",
2827
+ "license": "MPL-2.0",
2828
+ "engines": {
2829
+ "node": ">= 10"
2830
+ }
2831
+ },
2832
+ "node_modules/workers-og/node_modules/css-gradient-parser": {
2833
+ "version": "0.0.16",
2834
+ "resolved": "https://registry.npmjs.org/css-gradient-parser/-/css-gradient-parser-0.0.16.tgz",
2835
+ "integrity": "sha512-3O5QdqgFRUbXvK1x5INf1YkBz1UKSWqrd63vWsum8MNHDBYD5urm3QtxZbKU259OrEXNM26lP/MPY3d1IGkBgA==",
2836
+ "license": "MIT",
2837
+ "engines": {
2838
+ "node": ">=16"
2839
+ }
2840
+ },
2841
+ "node_modules/workers-og/node_modules/satori": {
2842
+ "version": "0.15.2",
2843
+ "resolved": "https://registry.npmjs.org/satori/-/satori-0.15.2.tgz",
2844
+ "integrity": "sha512-vu/49vdc8MzV5jUchs3TIRDCOkOvMc1iJ11MrZvhg9tE4ziKIEIBjBZvies6a9sfM2vQ2gc3dXeu6rCK7AztHA==",
2845
+ "license": "MPL-2.0",
2846
+ "dependencies": {
2847
+ "@shuding/opentype.js": "1.4.0-beta.0",
2848
+ "css-background-parser": "^0.1.0",
2849
+ "css-box-shadow": "1.0.0-3",
2850
+ "css-gradient-parser": "^0.0.16",
2851
+ "css-to-react-native": "^3.0.0",
2852
+ "emoji-regex-xs": "^2.0.1",
2853
+ "escape-html": "^1.0.3",
2854
+ "linebreak": "^1.1.0",
2855
+ "parse-css-color": "^0.2.1",
2856
+ "postcss-value-parser": "^4.2.0",
2857
+ "yoga-wasm-web": "^0.3.3"
2858
+ },
2859
+ "engines": {
2860
+ "node": ">=16"
2861
+ }
2862
+ },
2863
+ "node_modules/wrangler": {
2864
+ "version": "4.54.0",
2865
+ "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-4.54.0.tgz",
2866
+ "integrity": "sha512-bANFsjDwJLbprYoBK+hUDZsVbUv2SqJd8QvArLIcZk+fPq4h/Ohtj5vkKXD3k0s2bD1DXLk08D+hYmeNH+xC6A==",
2867
+ "dev": true,
2868
+ "license": "MIT OR Apache-2.0",
2869
+ "dependencies": {
2870
+ "@cloudflare/kv-asset-handler": "0.4.1",
2871
+ "@cloudflare/unenv-preset": "2.7.13",
2872
+ "blake3-wasm": "2.1.5",
2873
+ "esbuild": "0.27.0",
2874
+ "miniflare": "4.20251210.0",
2875
+ "path-to-regexp": "6.3.0",
2876
+ "unenv": "2.0.0-rc.24",
2877
+ "workerd": "1.20251210.0"
2878
+ },
2879
+ "bin": {
2880
+ "wrangler": "bin/wrangler.js",
2881
+ "wrangler2": "bin/wrangler.js"
2882
+ },
2883
+ "engines": {
2884
+ "node": ">=20.0.0"
2885
+ },
2886
+ "optionalDependencies": {
2887
+ "fsevents": "~2.3.2"
2888
+ },
2889
+ "peerDependencies": {
2890
+ "@cloudflare/workers-types": "^4.20251210.0"
2891
+ },
2892
+ "peerDependenciesMeta": {
2893
+ "@cloudflare/workers-types": {
2894
+ "optional": true
2895
+ }
2896
+ }
2897
+ },
2898
+ "node_modules/wrap-ansi": {
2899
+ "version": "6.2.0",
2900
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
2901
+ "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
2902
+ "license": "MIT",
2903
+ "dependencies": {
2904
+ "ansi-styles": "^4.0.0",
2905
+ "string-width": "^4.1.0",
2906
+ "strip-ansi": "^6.0.0"
2907
+ },
2908
+ "engines": {
2909
+ "node": ">=8"
2910
+ }
2911
+ },
2912
+ "node_modules/wrap-ansi/node_modules/ansi-regex": {
2913
+ "version": "5.0.1",
2914
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
2915
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
2916
+ "license": "MIT",
2917
+ "engines": {
2918
+ "node": ">=8"
2919
+ }
2920
+ },
2921
+ "node_modules/wrap-ansi/node_modules/emoji-regex": {
2922
+ "version": "8.0.0",
2923
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
2924
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
2925
+ "license": "MIT"
2926
+ },
2927
+ "node_modules/wrap-ansi/node_modules/string-width": {
2928
+ "version": "4.2.3",
2929
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
2930
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
2931
+ "license": "MIT",
2932
+ "dependencies": {
2933
+ "emoji-regex": "^8.0.0",
2934
+ "is-fullwidth-code-point": "^3.0.0",
2935
+ "strip-ansi": "^6.0.1"
2936
+ },
2937
+ "engines": {
2938
+ "node": ">=8"
2939
+ }
2940
+ },
2941
+ "node_modules/wrap-ansi/node_modules/strip-ansi": {
2942
+ "version": "6.0.1",
2943
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
2944
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
2945
+ "license": "MIT",
2946
+ "dependencies": {
2947
+ "ansi-regex": "^5.0.1"
2948
+ },
2949
+ "engines": {
2950
+ "node": ">=8"
2951
+ }
2952
+ },
2953
+ "node_modules/ws": {
2954
+ "version": "8.18.0",
2955
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz",
2956
+ "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==",
2957
+ "dev": true,
2958
+ "license": "MIT",
2959
+ "engines": {
2960
+ "node": ">=10.0.0"
2961
+ },
2962
+ "peerDependencies": {
2963
+ "bufferutil": "^4.0.1",
2964
+ "utf-8-validate": ">=5.0.2"
2965
+ },
2966
+ "peerDependenciesMeta": {
2967
+ "bufferutil": {
2968
+ "optional": true
2969
+ },
2970
+ "utf-8-validate": {
2971
+ "optional": true
2972
+ }
2973
+ }
2974
+ },
2975
+ "node_modules/y18n": {
2976
+ "version": "4.0.3",
2977
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
2978
+ "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
2979
+ "license": "ISC"
2980
+ },
2981
+ "node_modules/yargs": {
2982
+ "version": "15.4.1",
2983
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
2984
+ "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
2985
+ "license": "MIT",
2986
+ "dependencies": {
2987
+ "cliui": "^6.0.0",
2988
+ "decamelize": "^1.2.0",
2989
+ "find-up": "^4.1.0",
2990
+ "get-caller-file": "^2.0.1",
2991
+ "require-directory": "^2.1.1",
2992
+ "require-main-filename": "^2.0.0",
2993
+ "set-blocking": "^2.0.0",
2994
+ "string-width": "^4.2.0",
2995
+ "which-module": "^2.0.0",
2996
+ "y18n": "^4.0.0",
2997
+ "yargs-parser": "^18.1.2"
2998
+ },
2999
+ "engines": {
3000
+ "node": ">=8"
3001
+ }
3002
+ },
3003
+ "node_modules/yargs-parser": {
3004
+ "version": "18.1.3",
3005
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
3006
+ "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
3007
+ "license": "ISC",
3008
+ "dependencies": {
3009
+ "camelcase": "^5.0.0",
3010
+ "decamelize": "^1.2.0"
3011
+ },
3012
+ "engines": {
3013
+ "node": ">=6"
3014
+ }
3015
+ },
3016
+ "node_modules/yargs/node_modules/ansi-regex": {
3017
+ "version": "5.0.1",
3018
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
3019
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
3020
+ "license": "MIT",
3021
+ "engines": {
3022
+ "node": ">=8"
3023
+ }
3024
+ },
3025
+ "node_modules/yargs/node_modules/emoji-regex": {
3026
+ "version": "8.0.0",
3027
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
3028
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
3029
+ "license": "MIT"
3030
+ },
3031
+ "node_modules/yargs/node_modules/string-width": {
3032
+ "version": "4.2.3",
3033
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
3034
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
3035
+ "license": "MIT",
3036
+ "dependencies": {
3037
+ "emoji-regex": "^8.0.0",
3038
+ "is-fullwidth-code-point": "^3.0.0",
3039
+ "strip-ansi": "^6.0.1"
3040
+ },
3041
+ "engines": {
3042
+ "node": ">=8"
3043
+ }
3044
+ },
3045
+ "node_modules/yargs/node_modules/strip-ansi": {
3046
+ "version": "6.0.1",
3047
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
3048
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
3049
+ "license": "MIT",
3050
+ "dependencies": {
3051
+ "ansi-regex": "^5.0.1"
3052
+ },
3053
+ "engines": {
3054
+ "node": ">=8"
3055
+ }
3056
+ },
3057
+ "node_modules/yoga-layout": {
3058
+ "version": "3.2.1",
3059
+ "resolved": "https://registry.npmjs.org/yoga-layout/-/yoga-layout-3.2.1.tgz",
3060
+ "integrity": "sha512-0LPOt3AxKqMdFBZA3HBAt/t/8vIKq7VaQYbuA8WxCgung+p9TVyKRYdpvCb80HcdTN2NkbIKbhNwKUfm3tQywQ==",
3061
+ "license": "MIT"
3062
+ },
3063
+ "node_modules/yoga-wasm-web": {
3064
+ "version": "0.3.3",
3065
+ "resolved": "https://registry.npmjs.org/yoga-wasm-web/-/yoga-wasm-web-0.3.3.tgz",
3066
+ "integrity": "sha512-N+d4UJSJbt/R3wqY7Coqs5pcV0aUj2j9IaQ3rNj9bVCLld8tTGKRa2USARjnvZJWVx1NDmQev8EknoczaOQDOA==",
3067
+ "license": "MIT"
3068
+ },
3069
+ "node_modules/youch": {
3070
+ "version": "4.1.0-beta.10",
3071
+ "resolved": "https://registry.npmjs.org/youch/-/youch-4.1.0-beta.10.tgz",
3072
+ "integrity": "sha512-rLfVLB4FgQneDr0dv1oddCVZmKjcJ6yX6mS4pU82Mq/Dt9a3cLZQ62pDBL4AUO+uVrCvtWz3ZFUL2HFAFJ/BXQ==",
3073
+ "dev": true,
3074
+ "license": "MIT",
3075
+ "dependencies": {
3076
+ "@poppinss/colors": "^4.1.5",
3077
+ "@poppinss/dumper": "^0.6.4",
3078
+ "@speed-highlight/core": "^1.2.7",
3079
+ "cookie": "^1.0.2",
3080
+ "youch-core": "^0.3.3"
3081
+ }
3082
+ },
3083
+ "node_modules/youch-core": {
3084
+ "version": "0.3.3",
3085
+ "resolved": "https://registry.npmjs.org/youch-core/-/youch-core-0.3.3.tgz",
3086
+ "integrity": "sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==",
3087
+ "dev": true,
3088
+ "license": "MIT",
3089
+ "dependencies": {
3090
+ "@poppinss/exception": "^1.2.2",
3091
+ "error-stack-parser-es": "^1.0.5"
3092
+ }
3093
+ },
3094
+ "node_modules/zod": {
3095
+ "version": "3.25.76",
3096
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
3097
+ "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
3098
+ "license": "MIT",
3099
+ "funding": {
3100
+ "url": "https://github.com/sponsors/colinhacks"
3101
+ }
3102
+ }
3103
+ }
3104
+ }