@astrale-os/adapter-cloudflare 0.1.9 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/package.json +1 -1
  2. package/template/.agents/skills/astrale-cli/SKILL.md +1 -1
  3. package/template/.agents/skills/astrale-domain/SKILL.md +5 -5
  4. package/template/.env.example +5 -7
  5. package/template/README.md +2 -2
  6. package/template/client/README.md +81 -62
  7. package/template/client/__tests__/app.test.tsx +143 -98
  8. package/template/client/__tests__/harness.ts +62 -12
  9. package/template/client/__tests__/kernel.test.ts +40 -51
  10. package/template/client/__tests__/seam.test.tsx +115 -0
  11. package/template/client/index.html +1 -1
  12. package/template/client/package.json +1 -0
  13. package/template/client/src/app.tsx +34 -83
  14. package/template/client/src/main.tsx +2 -2
  15. package/template/client/src/shell/client.ts +67 -0
  16. package/template/client/src/shell/index.ts +20 -0
  17. package/template/client/src/shell/invoke.ts +35 -0
  18. package/template/client/src/shell/transformers.ts +72 -0
  19. package/template/client/src/shell/use-async.ts +56 -0
  20. package/template/client/src/shell/use-capability.ts +59 -0
  21. package/template/client/src/shell/use-node.ts +61 -0
  22. package/template/client/src/shell/use-shell.ts +91 -0
  23. package/template/client/src/shell/view-router.tsx +97 -0
  24. package/template/client/src/status/components/StatusCard.tsx +50 -0
  25. package/template/client/src/status/components/index.ts +1 -0
  26. package/template/client/src/status/hooks/index.ts +3 -0
  27. package/template/client/src/status/hooks/useCheck.mutation.ts +16 -0
  28. package/template/client/src/status/hooks/useCheckable.query.ts +64 -0
  29. package/template/client/src/status/index.ts +7 -0
  30. package/template/client/src/status/status.api.ts +12 -0
  31. package/template/client/src/status/status.mappers.ts +19 -0
  32. package/template/client/src/status/status.types.ts +11 -0
  33. package/template/client/src/styles.css +182 -4
  34. package/template/client/src/ui/StatusBadge.tsx +31 -0
  35. package/template/client/src/ui/format.ts +24 -0
  36. package/template/client/src/ui/index.ts +13 -0
  37. package/template/client/src/ui/surface.tsx +56 -0
  38. package/template/client/src/ui/value.tsx +32 -0
  39. package/template/client/src/views/status.tsx +28 -0
  40. package/template/client/tsconfig.json +2 -1
  41. package/template/client/vite.config.ts +11 -13
  42. package/template/client/vitest.config.ts +11 -5
  43. package/template/core/monitor/health.ts +34 -0
  44. package/template/core/monitor/index.ts +9 -0
  45. package/template/core/monitor/keys.ts +41 -0
  46. package/template/core/monitor/node.ts +57 -0
  47. package/template/deps.ts +10 -9
  48. package/template/domain.ts +1 -1
  49. package/template/env.ts +2 -9
  50. package/template/integrations/prober/http.ts +32 -0
  51. package/template/integrations/prober/mock.ts +18 -0
  52. package/template/integrations/prober/port.ts +26 -0
  53. package/template/integrations/prober/registry.ts +65 -0
  54. package/template/package.json +1 -1
  55. package/template/pnpm-lock.yaml +2766 -0
  56. package/template/runtime/index.ts +63 -34
  57. package/template/runtime/monitor/check.ts +29 -0
  58. package/template/runtime/monitor/index.ts +9 -0
  59. package/template/runtime/monitor/seed.ts +95 -0
  60. package/template/runtime/monitor/watch.ts +31 -0
  61. package/template/runtime/shared.ts +21 -0
  62. package/template/runtime/status-page/add.ts +21 -0
  63. package/template/runtime/status-page/check.ts +50 -0
  64. package/template/runtime/status-page/create.ts +24 -0
  65. package/template/runtime/status-page/index.ts +8 -0
  66. package/template/schema/index.ts +11 -4
  67. package/template/schema/monitor.ts +94 -0
  68. package/template/views/index.ts +8 -2
  69. package/template/views/status-page.ts +16 -0
  70. package/template/client/src/lib/kernel.ts +0 -135
  71. package/template/client/src/lib/shell.ts +0 -197
  72. package/template/client/src/lib/use-node.ts +0 -66
  73. package/template/client/src/lib/use-shell.ts +0 -85
  74. package/template/core/keys.ts +0 -28
  75. package/template/core/note.ts +0 -148
  76. package/template/integrations/summary/heuristic.ts +0 -25
  77. package/template/integrations/summary/http.ts +0 -69
  78. package/template/integrations/summary/port.ts +0 -21
  79. package/template/integrations/summary/registry.ts +0 -52
  80. package/template/schema/note.ts +0 -67
  81. package/template/views/note.ts +0 -21
@@ -0,0 +1,2766 @@
1
+ lockfileVersion: '9.0'
2
+
3
+ settings:
4
+ autoInstallPeers: true
5
+ excludeLinksFromLockfile: false
6
+
7
+ importers:
8
+
9
+ .:
10
+ dependencies:
11
+ '@astrale-os/adapter-cloudflare':
12
+ specifier: '>=0.1.9 <1.0.0'
13
+ version: 0.1.9(@hono/node-server@1.19.14(hono@4.12.25))(typescript@6.0.3)
14
+ '@astrale-os/kernel-core':
15
+ specifier: '>=0.4.3 <1.0.0'
16
+ version: 0.4.4(typescript@6.0.3)
17
+ '@astrale-os/kernel-dsl':
18
+ specifier: '>=0.1.2 <1.0.0'
19
+ version: 0.1.2(typescript@6.0.3)
20
+ '@astrale-os/sdk':
21
+ specifier: '>=0.1.7 <1.0.0'
22
+ version: 0.1.7(@hono/node-server@1.19.14(hono@4.12.25))(typescript@6.0.3)
23
+ '@hono/node-server':
24
+ specifier: ^1.19.0
25
+ version: 1.19.14(hono@4.12.25)
26
+ zod:
27
+ specifier: ^4.3.6
28
+ version: 4.4.3
29
+ devDependencies:
30
+ '@types/node':
31
+ specifier: ^22.0.0
32
+ version: 22.19.21
33
+ '@typescript/native-preview':
34
+ specifier: latest
35
+ version: 7.0.0-dev.20260612.1
36
+ typescript:
37
+ specifier: ~6.0.1-rc
38
+ version: 6.0.3
39
+ wrangler:
40
+ specifier: ^4.0.0
41
+ version: 4.100.0
42
+
43
+ client:
44
+ dependencies:
45
+ react:
46
+ specifier: ^19.2.0
47
+ version: 19.2.7
48
+ react-dom:
49
+ specifier: ^19.2.0
50
+ version: 19.2.7(react@19.2.7)
51
+ devDependencies:
52
+ '@testing-library/react':
53
+ specifier: ^16.3.0
54
+ version: 16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
55
+ '@types/react':
56
+ specifier: ^19.2.0
57
+ version: 19.2.17
58
+ '@types/react-dom':
59
+ specifier: ^19.2.0
60
+ version: 19.2.3(@types/react@19.2.17)
61
+ '@vitejs/plugin-react':
62
+ specifier: ^5.0.4
63
+ version: 5.2.0(vite@7.3.5(@types/node@22.19.21))
64
+ happy-dom:
65
+ specifier: ^20.0.0
66
+ version: 20.10.3
67
+ vite:
68
+ specifier: ^7.1.7
69
+ version: 7.3.5(@types/node@22.19.21)
70
+ vitest:
71
+ specifier: ^3.2.4
72
+ version: 3.2.6(@types/node@22.19.21)(happy-dom@20.10.3)
73
+
74
+ packages:
75
+
76
+ '@astrale-os/adapter-cloudflare@0.1.9':
77
+ resolution: {integrity: sha512-3kQDiqrbwiQ/t33p5giBL/J6pPZacbzsyHek0y79gfKJRY9XTeSYg5uNvPjRWAm69SEO63VTAg/OqxkdsLnxbA==}
78
+ engines: {node: '>=22'}
79
+
80
+ '@astrale-os/kernel-api@0.4.4':
81
+ resolution: {integrity: sha512-/S37hOK5+J7xIQAiv8kfB+Pdv7Gcsd1fEpHiqHXaMj9C5Qu+lJSTa4MqVr8EeD2nbxzQUz5REiTVqCkWYm8koQ==}
82
+ peerDependencies:
83
+ msgpackr: ^1.11.0
84
+ peerDependenciesMeta:
85
+ msgpackr:
86
+ optional: true
87
+
88
+ '@astrale-os/kernel-api@0.4.5':
89
+ resolution: {integrity: sha512-Yxh0R1WCPjHenHM1n3OwyZT+qL7vhySJB/gUaW0A2WoTfqTG2P0XA3A10YXrinDdR4wVxH+N++MJgYB/XzUlkw==}
90
+ peerDependencies:
91
+ msgpackr: ^1.11.0
92
+ peerDependenciesMeta:
93
+ msgpackr:
94
+ optional: true
95
+
96
+ '@astrale-os/kernel-client@0.2.2':
97
+ resolution: {integrity: sha512-adnbDgCOHf851EG/CBzm5gln3V1Ylj2dSA3SDJaHOeIJcnJrS9KkzH5A+l4sEFntHxLdN9bLeX7mwQT4gU/BtQ==}
98
+
99
+ '@astrale-os/kernel-core@0.4.3':
100
+ resolution: {integrity: sha512-bffg20pjvZbnRb5FmgW2lFSP3Xaq2xVvj8ZT6MJQJWPJlFWihdmrRgu3KkQ/zLQPCVTlzXu0gcR2QwrtwHhGqg==}
101
+
102
+ '@astrale-os/kernel-core@0.4.4':
103
+ resolution: {integrity: sha512-RAh/XPpnLBghQzB6Ork7S5PNIKaabN2VfSkxwzjnhPaDsfL4koRoUQrDaoBPlFHLVJagRqjGc0usUpnCPKQTWg==}
104
+
105
+ '@astrale-os/kernel-dsl@0.1.2':
106
+ resolution: {integrity: sha512-WIWZlvrlI/xYZctCoM7CeB0QeUgxd9eTT5N7WPMi0pINuNmG861tCFmb/aP2fQP2y5180wTDESD7Xm432bhHHQ==}
107
+ peerDependencies:
108
+ typescript: ~6.0.1-rc
109
+
110
+ '@astrale-os/kernel-server@0.4.4':
111
+ resolution: {integrity: sha512-P9jPryh/Qhk+njfGGAAR9PWzWtg0LO6yPBqwG97V9USzcUFq7Rjx58dRBVMu3TN4wdVZAuWiEJrubjLraAJpcw==}
112
+
113
+ '@astrale-os/sdk@0.1.7':
114
+ resolution: {integrity: sha512-9zCXkWJtWjdQFc/PSsYFJg2TLzWurE5vcQTtGOC/rSvyjqUG+1iVr2EfdO9dEU6fKyacC2x8ecBCMF8fdTqHyQ==}
115
+ engines: {node: '>=22'}
116
+ hasBin: true
117
+ peerDependencies:
118
+ '@hono/node-server': ^1.19.0
119
+ peerDependenciesMeta:
120
+ '@hono/node-server':
121
+ optional: true
122
+
123
+ '@babel/code-frame@7.29.7':
124
+ resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==}
125
+ engines: {node: '>=6.9.0'}
126
+
127
+ '@babel/compat-data@7.29.7':
128
+ resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==}
129
+ engines: {node: '>=6.9.0'}
130
+
131
+ '@babel/core@7.29.7':
132
+ resolution: {integrity: sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==}
133
+ engines: {node: '>=6.9.0'}
134
+
135
+ '@babel/generator@7.29.7':
136
+ resolution: {integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==}
137
+ engines: {node: '>=6.9.0'}
138
+
139
+ '@babel/helper-compilation-targets@7.29.7':
140
+ resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==}
141
+ engines: {node: '>=6.9.0'}
142
+
143
+ '@babel/helper-globals@7.29.7':
144
+ resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==}
145
+ engines: {node: '>=6.9.0'}
146
+
147
+ '@babel/helper-module-imports@7.29.7':
148
+ resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==}
149
+ engines: {node: '>=6.9.0'}
150
+
151
+ '@babel/helper-module-transforms@7.29.7':
152
+ resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==}
153
+ engines: {node: '>=6.9.0'}
154
+ peerDependencies:
155
+ '@babel/core': ^7.0.0
156
+
157
+ '@babel/helper-plugin-utils@7.29.7':
158
+ resolution: {integrity: sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==}
159
+ engines: {node: '>=6.9.0'}
160
+
161
+ '@babel/helper-string-parser@7.29.7':
162
+ resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
163
+ engines: {node: '>=6.9.0'}
164
+
165
+ '@babel/helper-validator-identifier@7.29.7':
166
+ resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==}
167
+ engines: {node: '>=6.9.0'}
168
+
169
+ '@babel/helper-validator-option@7.29.7':
170
+ resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==}
171
+ engines: {node: '>=6.9.0'}
172
+
173
+ '@babel/helpers@7.29.7':
174
+ resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==}
175
+ engines: {node: '>=6.9.0'}
176
+
177
+ '@babel/parser@7.29.7':
178
+ resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==}
179
+ engines: {node: '>=6.0.0'}
180
+ hasBin: true
181
+
182
+ '@babel/plugin-transform-react-jsx-self@7.29.7':
183
+ resolution: {integrity: sha512-TL0hMc9xzy86VD31nUiwzd5otRAcyEPcsegCxolO0PvcXuH1v0kECe/UIznYFihpkvU5wg/jk4v0TTEFfm53fw==}
184
+ engines: {node: '>=6.9.0'}
185
+ peerDependencies:
186
+ '@babel/core': ^7.0.0-0
187
+
188
+ '@babel/plugin-transform-react-jsx-source@7.29.7':
189
+ resolution: {integrity: sha512-06IyK09H3wi4cGbhDBwp5gUGo0IKtnYa8tyTiephirPCK6fbobVGiXMMI5zLQ4aKEYP3wZ3ArU44o+8KMrSG/Q==}
190
+ engines: {node: '>=6.9.0'}
191
+ peerDependencies:
192
+ '@babel/core': ^7.0.0-0
193
+
194
+ '@babel/runtime@7.29.7':
195
+ resolution: {integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==}
196
+ engines: {node: '>=6.9.0'}
197
+
198
+ '@babel/template@7.29.7':
199
+ resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==}
200
+ engines: {node: '>=6.9.0'}
201
+
202
+ '@babel/traverse@7.29.7':
203
+ resolution: {integrity: sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==}
204
+ engines: {node: '>=6.9.0'}
205
+
206
+ '@babel/types@7.29.7':
207
+ resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==}
208
+ engines: {node: '>=6.9.0'}
209
+
210
+ '@cloudflare/kv-asset-handler@0.5.0':
211
+ resolution: {integrity: sha512-jxQYkj8dSIzc0cD6cMMNdOc1UVjqSqu8BZdor5s8cGjW2I8BjODt/kWPVdY+u9zj3ms75Q5qaZgnxUad83+eAg==}
212
+ engines: {node: '>=22.0.0'}
213
+
214
+ '@cloudflare/unenv-preset@2.16.1':
215
+ resolution: {integrity: sha512-ECxObrMfyTl5bhQf/lZCXwo5G6xX9IAUo+nDMKK4SZ8m4Jvvxp52vilxyySSWh2YTZz8+HQ07qGH/2rEom1vDw==}
216
+ peerDependencies:
217
+ unenv: 2.0.0-rc.24
218
+ workerd: '>1.20260305.0 <2.0.0-0'
219
+ peerDependenciesMeta:
220
+ workerd:
221
+ optional: true
222
+
223
+ '@cloudflare/workerd-darwin-64@1.20260611.1':
224
+ resolution: {integrity: sha512-iJICldmi4sBGgi7IrQles8cStOGXM/Tmv95C4OODVs6VIbMsJPqThUM5h3uYVQNULuJ8I/aVvnJ3Eh/wZCKwuA==}
225
+ engines: {node: '>=16'}
226
+ cpu: [x64]
227
+ os: [darwin]
228
+
229
+ '@cloudflare/workerd-darwin-arm64@1.20260611.1':
230
+ resolution: {integrity: sha512-yBbVXvbZyltR3I7NJdC4C4ItkItjZSiabcA/3HzEWOUQjLVKFqRh4so6ToHr70VCYh8VGeR8EDZL23igLhXqFQ==}
231
+ engines: {node: '>=16'}
232
+ cpu: [arm64]
233
+ os: [darwin]
234
+
235
+ '@cloudflare/workerd-linux-64@1.20260611.1':
236
+ resolution: {integrity: sha512-PfNjpxOlaIgZFYuhD7+neEEewCN2Ud993wEEN0fmbtSOax1AK53LGqmXUDvFhnbkHxJLFAxYCSNISW8QbzaAIg==}
237
+ engines: {node: '>=16'}
238
+ cpu: [x64]
239
+ os: [linux]
240
+
241
+ '@cloudflare/workerd-linux-arm64@1.20260611.1':
242
+ resolution: {integrity: sha512-GEp4XbuIKjlF8pakqXcUDJfKiJosD/Q7S83J0d+r+z9XIlYGfF3ntm08e2aiF5TFTwp3fnG4yMoPUAKNhNJpvQ==}
243
+ engines: {node: '>=16'}
244
+ cpu: [arm64]
245
+ os: [linux]
246
+
247
+ '@cloudflare/workerd-windows-64@1.20260611.1':
248
+ resolution: {integrity: sha512-S6JkS0kEbcCKs19RGqEPhjCRbP8GBkQwqYLp2fhBJtD/KTlwqLzOJ9E6PQ7gQKgWHtxy1NBG3oXarlNFRNU/dw==}
249
+ engines: {node: '>=16'}
250
+ cpu: [x64]
251
+ os: [win32]
252
+
253
+ '@cspotcode/source-map-support@0.8.1':
254
+ resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
255
+ engines: {node: '>=12'}
256
+
257
+ '@emnapi/runtime@1.11.1':
258
+ resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==}
259
+
260
+ '@esbuild/aix-ppc64@0.27.3':
261
+ resolution: {integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==}
262
+ engines: {node: '>=18'}
263
+ cpu: [ppc64]
264
+ os: [aix]
265
+
266
+ '@esbuild/aix-ppc64@0.27.7':
267
+ resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==}
268
+ engines: {node: '>=18'}
269
+ cpu: [ppc64]
270
+ os: [aix]
271
+
272
+ '@esbuild/android-arm64@0.27.3':
273
+ resolution: {integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==}
274
+ engines: {node: '>=18'}
275
+ cpu: [arm64]
276
+ os: [android]
277
+
278
+ '@esbuild/android-arm64@0.27.7':
279
+ resolution: {integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==}
280
+ engines: {node: '>=18'}
281
+ cpu: [arm64]
282
+ os: [android]
283
+
284
+ '@esbuild/android-arm@0.27.3':
285
+ resolution: {integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==}
286
+ engines: {node: '>=18'}
287
+ cpu: [arm]
288
+ os: [android]
289
+
290
+ '@esbuild/android-arm@0.27.7':
291
+ resolution: {integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==}
292
+ engines: {node: '>=18'}
293
+ cpu: [arm]
294
+ os: [android]
295
+
296
+ '@esbuild/android-x64@0.27.3':
297
+ resolution: {integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==}
298
+ engines: {node: '>=18'}
299
+ cpu: [x64]
300
+ os: [android]
301
+
302
+ '@esbuild/android-x64@0.27.7':
303
+ resolution: {integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==}
304
+ engines: {node: '>=18'}
305
+ cpu: [x64]
306
+ os: [android]
307
+
308
+ '@esbuild/darwin-arm64@0.27.3':
309
+ resolution: {integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==}
310
+ engines: {node: '>=18'}
311
+ cpu: [arm64]
312
+ os: [darwin]
313
+
314
+ '@esbuild/darwin-arm64@0.27.7':
315
+ resolution: {integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==}
316
+ engines: {node: '>=18'}
317
+ cpu: [arm64]
318
+ os: [darwin]
319
+
320
+ '@esbuild/darwin-x64@0.27.3':
321
+ resolution: {integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==}
322
+ engines: {node: '>=18'}
323
+ cpu: [x64]
324
+ os: [darwin]
325
+
326
+ '@esbuild/darwin-x64@0.27.7':
327
+ resolution: {integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==}
328
+ engines: {node: '>=18'}
329
+ cpu: [x64]
330
+ os: [darwin]
331
+
332
+ '@esbuild/freebsd-arm64@0.27.3':
333
+ resolution: {integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==}
334
+ engines: {node: '>=18'}
335
+ cpu: [arm64]
336
+ os: [freebsd]
337
+
338
+ '@esbuild/freebsd-arm64@0.27.7':
339
+ resolution: {integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==}
340
+ engines: {node: '>=18'}
341
+ cpu: [arm64]
342
+ os: [freebsd]
343
+
344
+ '@esbuild/freebsd-x64@0.27.3':
345
+ resolution: {integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==}
346
+ engines: {node: '>=18'}
347
+ cpu: [x64]
348
+ os: [freebsd]
349
+
350
+ '@esbuild/freebsd-x64@0.27.7':
351
+ resolution: {integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==}
352
+ engines: {node: '>=18'}
353
+ cpu: [x64]
354
+ os: [freebsd]
355
+
356
+ '@esbuild/linux-arm64@0.27.3':
357
+ resolution: {integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==}
358
+ engines: {node: '>=18'}
359
+ cpu: [arm64]
360
+ os: [linux]
361
+
362
+ '@esbuild/linux-arm64@0.27.7':
363
+ resolution: {integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==}
364
+ engines: {node: '>=18'}
365
+ cpu: [arm64]
366
+ os: [linux]
367
+
368
+ '@esbuild/linux-arm@0.27.3':
369
+ resolution: {integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==}
370
+ engines: {node: '>=18'}
371
+ cpu: [arm]
372
+ os: [linux]
373
+
374
+ '@esbuild/linux-arm@0.27.7':
375
+ resolution: {integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==}
376
+ engines: {node: '>=18'}
377
+ cpu: [arm]
378
+ os: [linux]
379
+
380
+ '@esbuild/linux-ia32@0.27.3':
381
+ resolution: {integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==}
382
+ engines: {node: '>=18'}
383
+ cpu: [ia32]
384
+ os: [linux]
385
+
386
+ '@esbuild/linux-ia32@0.27.7':
387
+ resolution: {integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==}
388
+ engines: {node: '>=18'}
389
+ cpu: [ia32]
390
+ os: [linux]
391
+
392
+ '@esbuild/linux-loong64@0.27.3':
393
+ resolution: {integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==}
394
+ engines: {node: '>=18'}
395
+ cpu: [loong64]
396
+ os: [linux]
397
+
398
+ '@esbuild/linux-loong64@0.27.7':
399
+ resolution: {integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==}
400
+ engines: {node: '>=18'}
401
+ cpu: [loong64]
402
+ os: [linux]
403
+
404
+ '@esbuild/linux-mips64el@0.27.3':
405
+ resolution: {integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==}
406
+ engines: {node: '>=18'}
407
+ cpu: [mips64el]
408
+ os: [linux]
409
+
410
+ '@esbuild/linux-mips64el@0.27.7':
411
+ resolution: {integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==}
412
+ engines: {node: '>=18'}
413
+ cpu: [mips64el]
414
+ os: [linux]
415
+
416
+ '@esbuild/linux-ppc64@0.27.3':
417
+ resolution: {integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==}
418
+ engines: {node: '>=18'}
419
+ cpu: [ppc64]
420
+ os: [linux]
421
+
422
+ '@esbuild/linux-ppc64@0.27.7':
423
+ resolution: {integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==}
424
+ engines: {node: '>=18'}
425
+ cpu: [ppc64]
426
+ os: [linux]
427
+
428
+ '@esbuild/linux-riscv64@0.27.3':
429
+ resolution: {integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==}
430
+ engines: {node: '>=18'}
431
+ cpu: [riscv64]
432
+ os: [linux]
433
+
434
+ '@esbuild/linux-riscv64@0.27.7':
435
+ resolution: {integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==}
436
+ engines: {node: '>=18'}
437
+ cpu: [riscv64]
438
+ os: [linux]
439
+
440
+ '@esbuild/linux-s390x@0.27.3':
441
+ resolution: {integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==}
442
+ engines: {node: '>=18'}
443
+ cpu: [s390x]
444
+ os: [linux]
445
+
446
+ '@esbuild/linux-s390x@0.27.7':
447
+ resolution: {integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==}
448
+ engines: {node: '>=18'}
449
+ cpu: [s390x]
450
+ os: [linux]
451
+
452
+ '@esbuild/linux-x64@0.27.3':
453
+ resolution: {integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==}
454
+ engines: {node: '>=18'}
455
+ cpu: [x64]
456
+ os: [linux]
457
+
458
+ '@esbuild/linux-x64@0.27.7':
459
+ resolution: {integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==}
460
+ engines: {node: '>=18'}
461
+ cpu: [x64]
462
+ os: [linux]
463
+
464
+ '@esbuild/netbsd-arm64@0.27.3':
465
+ resolution: {integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==}
466
+ engines: {node: '>=18'}
467
+ cpu: [arm64]
468
+ os: [netbsd]
469
+
470
+ '@esbuild/netbsd-arm64@0.27.7':
471
+ resolution: {integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==}
472
+ engines: {node: '>=18'}
473
+ cpu: [arm64]
474
+ os: [netbsd]
475
+
476
+ '@esbuild/netbsd-x64@0.27.3':
477
+ resolution: {integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==}
478
+ engines: {node: '>=18'}
479
+ cpu: [x64]
480
+ os: [netbsd]
481
+
482
+ '@esbuild/netbsd-x64@0.27.7':
483
+ resolution: {integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==}
484
+ engines: {node: '>=18'}
485
+ cpu: [x64]
486
+ os: [netbsd]
487
+
488
+ '@esbuild/openbsd-arm64@0.27.3':
489
+ resolution: {integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==}
490
+ engines: {node: '>=18'}
491
+ cpu: [arm64]
492
+ os: [openbsd]
493
+
494
+ '@esbuild/openbsd-arm64@0.27.7':
495
+ resolution: {integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==}
496
+ engines: {node: '>=18'}
497
+ cpu: [arm64]
498
+ os: [openbsd]
499
+
500
+ '@esbuild/openbsd-x64@0.27.3':
501
+ resolution: {integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==}
502
+ engines: {node: '>=18'}
503
+ cpu: [x64]
504
+ os: [openbsd]
505
+
506
+ '@esbuild/openbsd-x64@0.27.7':
507
+ resolution: {integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==}
508
+ engines: {node: '>=18'}
509
+ cpu: [x64]
510
+ os: [openbsd]
511
+
512
+ '@esbuild/openharmony-arm64@0.27.3':
513
+ resolution: {integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==}
514
+ engines: {node: '>=18'}
515
+ cpu: [arm64]
516
+ os: [openharmony]
517
+
518
+ '@esbuild/openharmony-arm64@0.27.7':
519
+ resolution: {integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==}
520
+ engines: {node: '>=18'}
521
+ cpu: [arm64]
522
+ os: [openharmony]
523
+
524
+ '@esbuild/sunos-x64@0.27.3':
525
+ resolution: {integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==}
526
+ engines: {node: '>=18'}
527
+ cpu: [x64]
528
+ os: [sunos]
529
+
530
+ '@esbuild/sunos-x64@0.27.7':
531
+ resolution: {integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==}
532
+ engines: {node: '>=18'}
533
+ cpu: [x64]
534
+ os: [sunos]
535
+
536
+ '@esbuild/win32-arm64@0.27.3':
537
+ resolution: {integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==}
538
+ engines: {node: '>=18'}
539
+ cpu: [arm64]
540
+ os: [win32]
541
+
542
+ '@esbuild/win32-arm64@0.27.7':
543
+ resolution: {integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==}
544
+ engines: {node: '>=18'}
545
+ cpu: [arm64]
546
+ os: [win32]
547
+
548
+ '@esbuild/win32-ia32@0.27.3':
549
+ resolution: {integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==}
550
+ engines: {node: '>=18'}
551
+ cpu: [ia32]
552
+ os: [win32]
553
+
554
+ '@esbuild/win32-ia32@0.27.7':
555
+ resolution: {integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==}
556
+ engines: {node: '>=18'}
557
+ cpu: [ia32]
558
+ os: [win32]
559
+
560
+ '@esbuild/win32-x64@0.27.3':
561
+ resolution: {integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==}
562
+ engines: {node: '>=18'}
563
+ cpu: [x64]
564
+ os: [win32]
565
+
566
+ '@esbuild/win32-x64@0.27.7':
567
+ resolution: {integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==}
568
+ engines: {node: '>=18'}
569
+ cpu: [x64]
570
+ os: [win32]
571
+
572
+ '@hono/node-server@1.19.14':
573
+ resolution: {integrity: sha512-GwtvgtXxnWsucXvbQXkRgqksiH2Qed37H9xHZocE5sA3N8O8O8/8FA3uclQXxXVzc9XBZuEOMK7+r02FmSpHtw==}
574
+ engines: {node: '>=18.14.1'}
575
+ peerDependencies:
576
+ hono: ^4
577
+
578
+ '@img/colour@1.1.0':
579
+ resolution: {integrity: sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==}
580
+ engines: {node: '>=18'}
581
+
582
+ '@img/sharp-darwin-arm64@0.34.5':
583
+ resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==}
584
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
585
+ cpu: [arm64]
586
+ os: [darwin]
587
+
588
+ '@img/sharp-darwin-x64@0.34.5':
589
+ resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==}
590
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
591
+ cpu: [x64]
592
+ os: [darwin]
593
+
594
+ '@img/sharp-libvips-darwin-arm64@1.2.4':
595
+ resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==}
596
+ cpu: [arm64]
597
+ os: [darwin]
598
+
599
+ '@img/sharp-libvips-darwin-x64@1.2.4':
600
+ resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==}
601
+ cpu: [x64]
602
+ os: [darwin]
603
+
604
+ '@img/sharp-libvips-linux-arm64@1.2.4':
605
+ resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
606
+ cpu: [arm64]
607
+ os: [linux]
608
+ libc: [glibc]
609
+
610
+ '@img/sharp-libvips-linux-arm@1.2.4':
611
+ resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
612
+ cpu: [arm]
613
+ os: [linux]
614
+ libc: [glibc]
615
+
616
+ '@img/sharp-libvips-linux-ppc64@1.2.4':
617
+ resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==}
618
+ cpu: [ppc64]
619
+ os: [linux]
620
+ libc: [glibc]
621
+
622
+ '@img/sharp-libvips-linux-riscv64@1.2.4':
623
+ resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==}
624
+ cpu: [riscv64]
625
+ os: [linux]
626
+ libc: [glibc]
627
+
628
+ '@img/sharp-libvips-linux-s390x@1.2.4':
629
+ resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==}
630
+ cpu: [s390x]
631
+ os: [linux]
632
+ libc: [glibc]
633
+
634
+ '@img/sharp-libvips-linux-x64@1.2.4':
635
+ resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
636
+ cpu: [x64]
637
+ os: [linux]
638
+ libc: [glibc]
639
+
640
+ '@img/sharp-libvips-linuxmusl-arm64@1.2.4':
641
+ resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
642
+ cpu: [arm64]
643
+ os: [linux]
644
+ libc: [musl]
645
+
646
+ '@img/sharp-libvips-linuxmusl-x64@1.2.4':
647
+ resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
648
+ cpu: [x64]
649
+ os: [linux]
650
+ libc: [musl]
651
+
652
+ '@img/sharp-linux-arm64@0.34.5':
653
+ resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==}
654
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
655
+ cpu: [arm64]
656
+ os: [linux]
657
+ libc: [glibc]
658
+
659
+ '@img/sharp-linux-arm@0.34.5':
660
+ resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==}
661
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
662
+ cpu: [arm]
663
+ os: [linux]
664
+ libc: [glibc]
665
+
666
+ '@img/sharp-linux-ppc64@0.34.5':
667
+ resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==}
668
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
669
+ cpu: [ppc64]
670
+ os: [linux]
671
+ libc: [glibc]
672
+
673
+ '@img/sharp-linux-riscv64@0.34.5':
674
+ resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==}
675
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
676
+ cpu: [riscv64]
677
+ os: [linux]
678
+ libc: [glibc]
679
+
680
+ '@img/sharp-linux-s390x@0.34.5':
681
+ resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==}
682
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
683
+ cpu: [s390x]
684
+ os: [linux]
685
+ libc: [glibc]
686
+
687
+ '@img/sharp-linux-x64@0.34.5':
688
+ resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==}
689
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
690
+ cpu: [x64]
691
+ os: [linux]
692
+ libc: [glibc]
693
+
694
+ '@img/sharp-linuxmusl-arm64@0.34.5':
695
+ resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==}
696
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
697
+ cpu: [arm64]
698
+ os: [linux]
699
+ libc: [musl]
700
+
701
+ '@img/sharp-linuxmusl-x64@0.34.5':
702
+ resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==}
703
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
704
+ cpu: [x64]
705
+ os: [linux]
706
+ libc: [musl]
707
+
708
+ '@img/sharp-wasm32@0.34.5':
709
+ resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==}
710
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
711
+ cpu: [wasm32]
712
+
713
+ '@img/sharp-win32-arm64@0.34.5':
714
+ resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==}
715
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
716
+ cpu: [arm64]
717
+ os: [win32]
718
+
719
+ '@img/sharp-win32-ia32@0.34.5':
720
+ resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==}
721
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
722
+ cpu: [ia32]
723
+ os: [win32]
724
+
725
+ '@img/sharp-win32-x64@0.34.5':
726
+ resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==}
727
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
728
+ cpu: [x64]
729
+ os: [win32]
730
+
731
+ '@jridgewell/gen-mapping@0.3.13':
732
+ resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
733
+
734
+ '@jridgewell/remapping@2.3.5':
735
+ resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
736
+
737
+ '@jridgewell/resolve-uri@3.1.2':
738
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
739
+ engines: {node: '>=6.0.0'}
740
+
741
+ '@jridgewell/sourcemap-codec@1.5.5':
742
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
743
+
744
+ '@jridgewell/trace-mapping@0.3.31':
745
+ resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
746
+
747
+ '@jridgewell/trace-mapping@0.3.9':
748
+ resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
749
+
750
+ '@poppinss/colors@4.1.6':
751
+ resolution: {integrity: sha512-H9xkIdFswbS8n1d6vmRd8+c10t2Qe+rZITbbDHHkQixH5+2x1FDGmi/0K+WgWiqQFKPSlIYB7jlH6Kpfn6Fleg==}
752
+
753
+ '@poppinss/dumper@0.6.5':
754
+ resolution: {integrity: sha512-NBdYIb90J7LfOI32dOewKI1r7wnkiH6m920puQ3qHUeZkxNkQiFnXVWoE6YtFSv6QOiPPf7ys6i+HWWecDz7sw==}
755
+
756
+ '@poppinss/exception@1.2.3':
757
+ resolution: {integrity: sha512-dCED+QRChTVatE9ibtoaxc+WkdzOSjYTKi/+uacHWIsfodVfpsueo3+DKpgU5Px8qXjgmXkSvhXvSCz3fnP9lw==}
758
+
759
+ '@rolldown/pluginutils@1.0.0-rc.3':
760
+ resolution: {integrity: sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==}
761
+
762
+ '@rollup/rollup-android-arm-eabi@4.62.0':
763
+ resolution: {integrity: sha512-IPIQ55ythEHkfEd9jMEi32OQ7SxURsGA43JI22lj01OLZNt2NUbJX8YUHxkVWyQ6daHPNn0truF5nSj3DQp6YQ==}
764
+ cpu: [arm]
765
+ os: [android]
766
+
767
+ '@rollup/rollup-android-arm64@4.62.0':
768
+ resolution: {integrity: sha512-M6s9cr10MibETyo8JsOkq+Lo1+lU6hcvb1MApnUql5qte/5hMEgzlN8/ReIKNfRV8rrqX50W1BX9zoUhC192RA==}
769
+ cpu: [arm64]
770
+ os: [android]
771
+
772
+ '@rollup/rollup-darwin-arm64@4.62.0':
773
+ resolution: {integrity: sha512-BqCoMoIbn0keKys+dEAdBa70EtOwV1bEsQCUgU9FdiZmmMge/Zk7LlkYGqbrdHR+Frnt0E1FOanly+rlwvvQzw==}
774
+ cpu: [arm64]
775
+ os: [darwin]
776
+
777
+ '@rollup/rollup-darwin-x64@4.62.0':
778
+ resolution: {integrity: sha512-SIMzST3VFNXDAbeIWDWiFCNM5qncUBDWaEV7NfE7oZbDt2mgfW4MvbKdbYiGOLoM32gbTv608UMd0XktEYSD7w==}
779
+ cpu: [x64]
780
+ os: [darwin]
781
+
782
+ '@rollup/rollup-freebsd-arm64@4.62.0':
783
+ resolution: {integrity: sha512-ezjfSQMP7ArdUsbBwbQIfwAlhE84I2iVnzQNCFSveqV42q+BmKlzVpf7mxv5EchLcoWU4y6/heFzVg1F+hodUQ==}
784
+ cpu: [arm64]
785
+ os: [freebsd]
786
+
787
+ '@rollup/rollup-freebsd-x64@4.62.0':
788
+ resolution: {integrity: sha512-9+qTWGW9AZRhnUgwtTwzNwcPlL87ngkeN0LA+q1bADvmY9aNvWaF2TFW8BZgnQPYxpDI7+rMVLivcd4V737TAQ==}
789
+ cpu: [x64]
790
+ os: [freebsd]
791
+
792
+ '@rollup/rollup-linux-arm-gnueabihf@4.62.0':
793
+ resolution: {integrity: sha512-T1dMEQhXA/jkJ/jyMIw9IovK8bSUq7A8kLIlvZTb/6YIVsp2zLavr4F3oyllHWo7eIVJRyE5n3tUjQJEbE1IuQ==}
794
+ cpu: [arm]
795
+ os: [linux]
796
+ libc: [glibc]
797
+
798
+ '@rollup/rollup-linux-arm-musleabihf@4.62.0':
799
+ resolution: {integrity: sha512-2as0LgT7qQpyceQq6VUJYnumUMUrgGQCWIiDIN9DE0/tglsk6o66uCB4f3djRawAltvfCNLyZZrsqbPA6inCsA==}
800
+ cpu: [arm]
801
+ os: [linux]
802
+ libc: [musl]
803
+
804
+ '@rollup/rollup-linux-arm64-gnu@4.62.0':
805
+ resolution: {integrity: sha512-bVURMg+6eNN9C/yc0aVjooZcwTTtYF4YW3xta5pP0//r3o1V8gXEHXWCndj47w/HhwsFroZrFhR+6uQP5T0n0g==}
806
+ cpu: [arm64]
807
+ os: [linux]
808
+ libc: [glibc]
809
+
810
+ '@rollup/rollup-linux-arm64-musl@4.62.0':
811
+ resolution: {integrity: sha512-Ful8pM/2yYI83PViWdFdpZhdI8HJ5qsXANe5atypbHDf+KIBBDsZsbyy8hbXnULVvW9NsTh5DHwbcBftyLTfiw==}
812
+ cpu: [arm64]
813
+ os: [linux]
814
+ libc: [musl]
815
+
816
+ '@rollup/rollup-linux-loong64-gnu@4.62.0':
817
+ resolution: {integrity: sha512-9Gp/DgrkzfUBmNPVTyPTvay+4xEP7M/clXpj3efXBcm6uTIVIgDg4rqUpqKXvLEuFRVuEpSAOkhgNeecvaZ4Cg==}
818
+ cpu: [loong64]
819
+ os: [linux]
820
+ libc: [glibc]
821
+
822
+ '@rollup/rollup-linux-loong64-musl@4.62.0':
823
+ resolution: {integrity: sha512-m9tsJz54LUXkSYM8+8PG81B9IKK5r+2T0clMq4QrS16xFosufU7firBDAZEsDheDs7wTlP7h3++S7lMsU955HA==}
824
+ cpu: [loong64]
825
+ os: [linux]
826
+ libc: [musl]
827
+
828
+ '@rollup/rollup-linux-ppc64-gnu@4.62.0':
829
+ resolution: {integrity: sha512-3UvJ5PNVU16aJf6M3tFI24pWzAl2/ynfbyRN3ICyQajK1lSkrnVYNnLz3v04J32qKa0FczJc22zeToc0lr2A3w==}
830
+ cpu: [ppc64]
831
+ os: [linux]
832
+ libc: [glibc]
833
+
834
+ '@rollup/rollup-linux-ppc64-musl@4.62.0':
835
+ resolution: {integrity: sha512-vRWUAbYLGHBZS6Q8Msb2sfnf1fvJf+47t8l/TwOerM2qArzy+IeNMTHrYLHXh95h8MoatPHI5hhSZNs+mGXKPg==}
836
+ cpu: [ppc64]
837
+ os: [linux]
838
+ libc: [musl]
839
+
840
+ '@rollup/rollup-linux-riscv64-gnu@4.62.0':
841
+ resolution: {integrity: sha512-c00T5SYENHAt86cfW47URaP3Us5vLC/4QO7GYud1G5VNRffCwwCuBspwqYrriuJB+5m0WFzClCn9wed0FBjKvg==}
842
+ cpu: [riscv64]
843
+ os: [linux]
844
+ libc: [glibc]
845
+
846
+ '@rollup/rollup-linux-riscv64-musl@4.62.0':
847
+ resolution: {integrity: sha512-krrCDilhXOwFkSkO3Wm9I/f9H0L92XHHwy2fwxjukxIbh0dem8gZqOW5Y8BsHrpJv5qwlRBV+Wl4ZFyRWhUpwg==}
848
+ cpu: [riscv64]
849
+ os: [linux]
850
+ libc: [musl]
851
+
852
+ '@rollup/rollup-linux-s390x-gnu@4.62.0':
853
+ resolution: {integrity: sha512-7pfYFSTc4/rUC/FtAI0Qp6QthDBCIi6/AuP1xYqFk5vanI6KnL5dWKP60OM/05LOsbwTmIcvr6eXC4CJuJ75IA==}
854
+ cpu: [s390x]
855
+ os: [linux]
856
+ libc: [glibc]
857
+
858
+ '@rollup/rollup-linux-x64-gnu@4.62.0':
859
+ resolution: {integrity: sha512-7SDIalKeIpG0Ifogbbdn58HmSotYMlf23K3dCJEmiVd9Fg36Vmni82iPQec27N3wY4Bvbxftkxz6vSx9OcouTg==}
860
+ cpu: [x64]
861
+ os: [linux]
862
+ libc: [glibc]
863
+
864
+ '@rollup/rollup-linux-x64-musl@4.62.0':
865
+ resolution: {integrity: sha512-eRZevouTH2i1HeAVLqJuLnt256krQkGY0TN6WsTmsIhuzbh457HuWDMakKwmi0Cjadux983CoSr8Lim2QhUIFw==}
866
+ cpu: [x64]
867
+ os: [linux]
868
+ libc: [musl]
869
+
870
+ '@rollup/rollup-openbsd-x64@4.62.0':
871
+ resolution: {integrity: sha512-3oVS7FLGa4U1qcvao9ylGxrjXZyUQqR8UwxEcnUEyPX53O/C/mKDZegNXTdHCP+h3e6ta/f1EN38Yif1mmZHYg==}
872
+ cpu: [x64]
873
+ os: [openbsd]
874
+
875
+ '@rollup/rollup-openharmony-arm64@4.62.0':
876
+ resolution: {integrity: sha512-yTB9TgfWj5wHe5QgktAgXTLLot1gvEjl1NiPPAUiCs4oPrIWFl5V4nC3GrkNdj9LaAU4s94nVrGbGOCqUpyWsg==}
877
+ cpu: [arm64]
878
+ os: [openharmony]
879
+
880
+ '@rollup/rollup-win32-arm64-msvc@4.62.0':
881
+ resolution: {integrity: sha512-5LOhoaesY3doG1c+ac/2JtgREpKoJr5bUHH8tKY0V8di7+uSV6BwLs2PlR0/yzefGOkR+wE7ZolZphHCsyG5Rw==}
882
+ cpu: [arm64]
883
+ os: [win32]
884
+
885
+ '@rollup/rollup-win32-ia32-msvc@4.62.0':
886
+ resolution: {integrity: sha512-yYkWHhmbhRTWTnWos5HC4GcPQfjlzzCNbM9e/+GXrLuaBXYA3qSDR9f0Vgufd5S8yX81U8jPKp7ZnAjZFMtRnw==}
887
+ cpu: [ia32]
888
+ os: [win32]
889
+
890
+ '@rollup/rollup-win32-x64-gnu@4.62.0':
891
+ resolution: {integrity: sha512-SoTb6lPg25xZlA2ibwQ++ahCCnH+FP0qmEuafMJ4gznZKOlXioKEAeJLgCrqjM98ACziXM9V1amFjICVL4IFoA==}
892
+ cpu: [x64]
893
+ os: [win32]
894
+
895
+ '@rollup/rollup-win32-x64-msvc@4.62.0':
896
+ resolution: {integrity: sha512-5L+T1fMX4RIEBoZzT0+sQ0PhTS36NULFmMXtl1TZo44TMAROIMHbZufSOjVWt/Y622BtxgxtaNOokbTDvfsrZA==}
897
+ cpu: [x64]
898
+ os: [win32]
899
+
900
+ '@sindresorhus/is@7.2.0':
901
+ resolution: {integrity: sha512-P1Cz1dWaFfR4IR+U13mqqiGsLFf1KbayybWwdd2vfctdV6hDpUkgCY0nKOLLTMSoRd/jJNjtbqzf13K8DCCXQw==}
902
+ engines: {node: '>=18'}
903
+
904
+ '@speed-highlight/core@1.2.17':
905
+ resolution: {integrity: sha512-Z92FwKpCtfaW1V0jTU/fh3QzYEZN8wDwrzRIBoADCJfn4mJCNcJN/XegifX7BDrQ8/h9Xh/JnbyMchL0FqXrkg==}
906
+
907
+ '@tanstack/devtools-event-client@0.4.3':
908
+ resolution: {integrity: sha512-OZI6QyULw0FI0wjgmeYzCIfbgPsOEzwJtCpa69XrfLMtNXLGnz3d/dIabk7frg0TmHo+Ah49w5I4KC7Tufwsvw==}
909
+ engines: {node: '>=18'}
910
+ hasBin: true
911
+
912
+ '@tanstack/pacer@0.20.1':
913
+ resolution: {integrity: sha512-ZNQ1bIL6eUXVKdic0tiImvBVkWrg/IoSK6VIacTrO3d3HAGnd70qFJNJagR/YOJIOw4EKGWnodwpYZkN1pWuVQ==}
914
+ engines: {node: '>=18'}
915
+
916
+ '@tanstack/store@0.9.3':
917
+ resolution: {integrity: sha512-8reSzl/qGWGGVKhBoxXPMWzATSbZLZFWhwBAFO9NAyp0TxzfBP0mIrGb8CP8KrQTmvzXlR/vFPPUrHTLBGyFyw==}
918
+
919
+ '@testing-library/dom@10.4.1':
920
+ resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==}
921
+ engines: {node: '>=18'}
922
+
923
+ '@testing-library/react@16.3.2':
924
+ resolution: {integrity: sha512-XU5/SytQM+ykqMnAnvB2umaJNIOsLF3PVv//1Ew4CTcpz0/BRyy/af40qqrt7SjKpDdT1saBMc42CUok5gaw+g==}
925
+ engines: {node: '>=18'}
926
+ peerDependencies:
927
+ '@testing-library/dom': ^10.0.0
928
+ '@types/react': ^18.0.0 || ^19.0.0
929
+ '@types/react-dom': ^18.0.0 || ^19.0.0
930
+ react: ^18.0.0 || ^19.0.0
931
+ react-dom: ^18.0.0 || ^19.0.0
932
+ peerDependenciesMeta:
933
+ '@types/react':
934
+ optional: true
935
+ '@types/react-dom':
936
+ optional: true
937
+
938
+ '@types/aria-query@5.0.4':
939
+ resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==}
940
+
941
+ '@types/babel__core@7.20.5':
942
+ resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
943
+
944
+ '@types/babel__generator@7.27.0':
945
+ resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
946
+
947
+ '@types/babel__template@7.4.4':
948
+ resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
949
+
950
+ '@types/babel__traverse@7.28.0':
951
+ resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
952
+
953
+ '@types/chai@5.2.3':
954
+ resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==}
955
+
956
+ '@types/deep-eql@4.0.2':
957
+ resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
958
+
959
+ '@types/estree@1.0.9':
960
+ resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
961
+
962
+ '@types/json-schema@7.0.15':
963
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
964
+
965
+ '@types/node@22.19.21':
966
+ resolution: {integrity: sha512-VMeFBSCKQKmm2swI2kW51SFusDqekC6q9trBCvJ/JliDchFSuoYYKN7yVNjPthP1HKZcx3U1gI/wTcEBjEFKTA==}
967
+
968
+ '@types/react-dom@19.2.3':
969
+ resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
970
+ peerDependencies:
971
+ '@types/react': ^19.2.0
972
+
973
+ '@types/react@19.2.17':
974
+ resolution: {integrity: sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==}
975
+
976
+ '@types/whatwg-mimetype@3.0.2':
977
+ resolution: {integrity: sha512-c2AKvDT8ToxLIOUlN51gTiHXflsfIFisS4pO7pDPoKouJCESkhZnEy623gwP9laCy5lnLDAw1vAzu2vM2YLOrA==}
978
+
979
+ '@types/ws@8.18.1':
980
+ resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
981
+
982
+ '@typescript/native-preview-darwin-arm64@7.0.0-dev.20260612.1':
983
+ resolution: {integrity: sha512-4GXIs4Z/4E0E1fRXmt1XE7mKRiwghkoNHstbqSHFl6Z7PeWBdTiSFR5j4JGo3Zp8RzZ+N6zZoVZOfG3HNqjWtQ==}
984
+ engines: {node: '>=16.20.0'}
985
+ cpu: [arm64]
986
+ os: [darwin]
987
+
988
+ '@typescript/native-preview-darwin-x64@7.0.0-dev.20260612.1':
989
+ resolution: {integrity: sha512-YCXzMiUYnkOpg1Hh+TgYL5MZ190eia4LE8qpEti+j4QnZyARhQEbPWSUzXfQjinAy3Qcx7njamydSHpuBnODLQ==}
990
+ engines: {node: '>=16.20.0'}
991
+ cpu: [x64]
992
+ os: [darwin]
993
+
994
+ '@typescript/native-preview-linux-arm64@7.0.0-dev.20260612.1':
995
+ resolution: {integrity: sha512-F4dPFLmRRPc2XeqQy45bDKQqbg4M4HoF7ybXae+D1LV8F44KR4ktUlXhp5pQBhwoQxZaLhA2D+NKwV/2UpILcA==}
996
+ engines: {node: '>=16.20.0'}
997
+ cpu: [arm64]
998
+ os: [linux]
999
+
1000
+ '@typescript/native-preview-linux-arm@7.0.0-dev.20260612.1':
1001
+ resolution: {integrity: sha512-ylu0HtI0NS90souTPje6j1iTqhIPIYaZ12yLO1n8lxHkDXKjggm6w9l4BL/uRWqWc4iVHWt8JUAC/my7X1/EDQ==}
1002
+ engines: {node: '>=16.20.0'}
1003
+ cpu: [arm]
1004
+ os: [linux]
1005
+
1006
+ '@typescript/native-preview-linux-x64@7.0.0-dev.20260612.1':
1007
+ resolution: {integrity: sha512-F/k8oic3wyq0WD5v7PQFPBlXaajbgzMnG9fkCWMwLYh2BUtD1VUjQ78dwDEz06AmOY+hsFrDuCtIZUyauBBU7w==}
1008
+ engines: {node: '>=16.20.0'}
1009
+ cpu: [x64]
1010
+ os: [linux]
1011
+
1012
+ '@typescript/native-preview-win32-arm64@7.0.0-dev.20260612.1':
1013
+ resolution: {integrity: sha512-6/F10rOev8Wb2LM2F8C2ymuwcu+jrr06pcLR4AD8gy0YmTBjPvEZpKyBjCfdaJtIFH8S20dAVAK9HhYlw0JwnA==}
1014
+ engines: {node: '>=16.20.0'}
1015
+ cpu: [arm64]
1016
+ os: [win32]
1017
+
1018
+ '@typescript/native-preview-win32-x64@7.0.0-dev.20260612.1':
1019
+ resolution: {integrity: sha512-8eRyhATm1dqo0PhAuyC908xlDUS9Onvm0BLvm81rAHRO6n3JhnzrwXL8s4jdvyDBiGK40R4d6JvY55edthg/rA==}
1020
+ engines: {node: '>=16.20.0'}
1021
+ cpu: [x64]
1022
+ os: [win32]
1023
+
1024
+ '@typescript/native-preview@7.0.0-dev.20260612.1':
1025
+ resolution: {integrity: sha512-+rghVK/GENODCBed03PMAbHAo885P6Hw6HeW5daICel80OmAM49QeTmdcI7oii/9WMqX2UhM0sfNMH0Y5LeO+w==}
1026
+ engines: {node: '>=16.20.0'}
1027
+ hasBin: true
1028
+
1029
+ '@vitejs/plugin-react@5.2.0':
1030
+ resolution: {integrity: sha512-YmKkfhOAi3wsB1PhJq5Scj3GXMn3WvtQ/JC0xoopuHoXSdmtdStOpFrYaT1kie2YgFBcIe64ROzMYRjCrYOdYw==}
1031
+ engines: {node: ^20.19.0 || >=22.12.0}
1032
+ peerDependencies:
1033
+ vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
1034
+
1035
+ '@vitest/expect@3.2.6':
1036
+ resolution: {integrity: sha512-1+7q9BtaKzEmO+fmNT3kYvoNn5Y71XWAx2Q5HRim4tTVRQVRv4uJFAQ5FbK0OPUeNP/WmVCpxYxoJdvuHVjzBQ==}
1037
+
1038
+ '@vitest/mocker@3.2.6':
1039
+ resolution: {integrity: sha512-EZOrpDbkKotFAP7wPAQV1UIyoGOk4oX7ynWhBhLB7v+meMHbQhU16oPpIYGTTe4oFlhpryGpgpcZP/sin3hYuw==}
1040
+ peerDependencies:
1041
+ msw: ^2.4.9
1042
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0
1043
+ peerDependenciesMeta:
1044
+ msw:
1045
+ optional: true
1046
+ vite:
1047
+ optional: true
1048
+
1049
+ '@vitest/pretty-format@3.2.6':
1050
+ resolution: {integrity: sha512-lb7XXXzmm2h2ASzFnRvQpDo6onT1NmMJA3tkGTWiBFtRJ9lxGY3d3mm/Apt36gej2bkkOVLL/yTOtufDaFa/jA==}
1051
+
1052
+ '@vitest/runner@3.2.6':
1053
+ resolution: {integrity: sha512-HYcoSj1w5tcgUnzoF0HcyaAQjpA1gj9ftUJ7iSJSuipc02jW9gKkigwZbjFldAfYHA1fa8UZVRftdMY5msWM9Q==}
1054
+
1055
+ '@vitest/snapshot@3.2.6':
1056
+ resolution: {integrity: sha512-H+ZjNTWGpObenh0YnlBctAPnJSI20P81PL8BPzWpx54YXLLTm8hEsWawtcYLMrwvpK48hGxLLbCS+1KRXhsKhw==}
1057
+
1058
+ '@vitest/spy@3.2.6':
1059
+ resolution: {integrity: sha512-oq6BbH68WzcWmwtBrU9nqLeaXTR4XwJF7FSLkKEZo4i6eoXcrxjcwSuTvWBIRUTC6VC72nXYunzqgZA+IKdtxg==}
1060
+
1061
+ '@vitest/utils@3.2.6':
1062
+ resolution: {integrity: sha512-lI23nIs4bnT3T8NIoh+vFaz5s2/DdP0Jgt2jxwgWljvwn82cLJtyi/If+fjFyoLMGIOz0U/fKvWE0d4jsNQEfg==}
1063
+
1064
+ ansi-regex@5.0.1:
1065
+ resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
1066
+ engines: {node: '>=8'}
1067
+
1068
+ ansi-styles@5.2.0:
1069
+ resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
1070
+ engines: {node: '>=10'}
1071
+
1072
+ aria-query@5.3.0:
1073
+ resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
1074
+
1075
+ assertion-error@2.0.1:
1076
+ resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
1077
+ engines: {node: '>=12'}
1078
+
1079
+ baseline-browser-mapping@2.10.37:
1080
+ resolution: {integrity: sha512-girxaJ7WZssDOFhzCGZTDKoTa1gk6A1TbflaYTpykLJ4UU9Fz9kx1aREM8JCuoVHbL8X8T/mJg7w2oYSq72Oig==}
1081
+ engines: {node: '>=6.0.0'}
1082
+ hasBin: true
1083
+
1084
+ blake3-wasm@2.1.5:
1085
+ resolution: {integrity: sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==}
1086
+
1087
+ browserslist@4.28.2:
1088
+ resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==}
1089
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
1090
+ hasBin: true
1091
+
1092
+ buffer-image-size@0.6.4:
1093
+ resolution: {integrity: sha512-nEh+kZOPY1w+gcCMobZ6ETUp9WfibndnosbpwB1iJk/8Gt5ZF2bhS6+B6bPYz424KtwsR6Rflc3tCz1/ghX2dQ==}
1094
+ engines: {node: '>=4.0'}
1095
+
1096
+ cac@6.7.14:
1097
+ resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
1098
+ engines: {node: '>=8'}
1099
+
1100
+ caniuse-lite@1.0.30001799:
1101
+ resolution: {integrity: sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==}
1102
+
1103
+ chai@5.3.3:
1104
+ resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==}
1105
+ engines: {node: '>=18'}
1106
+
1107
+ check-error@2.1.3:
1108
+ resolution: {integrity: sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==}
1109
+ engines: {node: '>= 16'}
1110
+
1111
+ convert-source-map@2.0.0:
1112
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
1113
+
1114
+ cookie@1.1.1:
1115
+ resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==}
1116
+ engines: {node: '>=18'}
1117
+
1118
+ csstype@3.2.3:
1119
+ resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
1120
+
1121
+ debug@4.4.3:
1122
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
1123
+ engines: {node: '>=6.0'}
1124
+ peerDependencies:
1125
+ supports-color: '*'
1126
+ peerDependenciesMeta:
1127
+ supports-color:
1128
+ optional: true
1129
+
1130
+ deep-eql@5.0.2:
1131
+ resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
1132
+ engines: {node: '>=6'}
1133
+
1134
+ dequal@2.0.3:
1135
+ resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
1136
+ engines: {node: '>=6'}
1137
+
1138
+ detect-libc@2.1.2:
1139
+ resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
1140
+ engines: {node: '>=8'}
1141
+
1142
+ dom-accessibility-api@0.5.16:
1143
+ resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==}
1144
+
1145
+ electron-to-chromium@1.5.372:
1146
+ resolution: {integrity: sha512-M3yhbAlilnwqC8D21t28UCDGHyitShTmmLRU/H+b74P6Ski16Nb9HONYEaVpMj/pwC7BEo5B95FpjODLCWbtfA==}
1147
+
1148
+ entities@7.0.1:
1149
+ resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
1150
+ engines: {node: '>=0.12'}
1151
+
1152
+ error-stack-parser-es@1.0.5:
1153
+ resolution: {integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==}
1154
+
1155
+ es-module-lexer@1.7.0:
1156
+ resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==}
1157
+
1158
+ esbuild@0.27.3:
1159
+ resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==}
1160
+ engines: {node: '>=18'}
1161
+ hasBin: true
1162
+
1163
+ esbuild@0.27.7:
1164
+ resolution: {integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==}
1165
+ engines: {node: '>=18'}
1166
+ hasBin: true
1167
+
1168
+ escalade@3.2.0:
1169
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
1170
+ engines: {node: '>=6'}
1171
+
1172
+ estree-walker@3.0.3:
1173
+ resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
1174
+
1175
+ expect-type@1.3.0:
1176
+ resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==}
1177
+ engines: {node: '>=12.0.0'}
1178
+
1179
+ fdir@6.5.0:
1180
+ resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
1181
+ engines: {node: '>=12.0.0'}
1182
+ peerDependencies:
1183
+ picomatch: ^3 || ^4
1184
+ peerDependenciesMeta:
1185
+ picomatch:
1186
+ optional: true
1187
+
1188
+ fsevents@2.3.3:
1189
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
1190
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1191
+ os: [darwin]
1192
+
1193
+ gensync@1.0.0-beta.2:
1194
+ resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
1195
+ engines: {node: '>=6.9.0'}
1196
+
1197
+ happy-dom@20.10.3:
1198
+ resolution: {integrity: sha512-Hjdiy8RziuCcn5z04QI/rlsNuQoG8P0xxjgvsSMpi89cvIXIOcucQtiHS1yHSShxoBcSCeYqAskINmTiy/mlfw==}
1199
+ engines: {node: '>=20.0.0'}
1200
+
1201
+ hono@4.12.25:
1202
+ resolution: {integrity: sha512-2NFaIyNVgJmBs/ecmtGzlmluTFs5cHEWGTdu0t1HBwYzoGXOL5nUQBRMXsXWla5i4KkG//QMzVP88m1+I3fdAQ==}
1203
+ engines: {node: '>=16.9.0'}
1204
+
1205
+ jose@6.2.3:
1206
+ resolution: {integrity: sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw==}
1207
+
1208
+ js-tokens@4.0.0:
1209
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1210
+
1211
+ js-tokens@9.0.1:
1212
+ resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
1213
+
1214
+ jsesc@3.1.0:
1215
+ resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
1216
+ engines: {node: '>=6'}
1217
+ hasBin: true
1218
+
1219
+ json5@2.2.3:
1220
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
1221
+ engines: {node: '>=6'}
1222
+ hasBin: true
1223
+
1224
+ kleur@4.1.5:
1225
+ resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
1226
+ engines: {node: '>=6'}
1227
+
1228
+ loupe@3.2.1:
1229
+ resolution: {integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==}
1230
+
1231
+ lru-cache@5.1.1:
1232
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
1233
+
1234
+ lz-string@1.5.0:
1235
+ resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
1236
+ hasBin: true
1237
+
1238
+ magic-string@0.30.21:
1239
+ resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
1240
+
1241
+ miniflare@4.20260611.0:
1242
+ resolution: {integrity: sha512-i+JwEo8vN96naz1WL3ntFgFyRluBDYL408zwhHKvR2jefJ464KsZ/gCmJAQ5k+oaWeb5Ug+s7yne5AyiAEswjg==}
1243
+ engines: {node: '>=22.0.0'}
1244
+ hasBin: true
1245
+
1246
+ ms@2.1.3:
1247
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1248
+
1249
+ nanoid@3.3.12:
1250
+ resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==}
1251
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1252
+ hasBin: true
1253
+
1254
+ node-releases@2.0.47:
1255
+ resolution: {integrity: sha512-Uzmd6LXpouKo8EUK68IjH4+E01w/hXyV3R3g/geCJo+rXLNfh1xucB+LOzYEOQPSiUK3h/xZf0cQGcSsmyL2Og==}
1256
+ engines: {node: '>=18'}
1257
+
1258
+ path-to-regexp@6.3.0:
1259
+ resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==}
1260
+
1261
+ pathe@2.0.3:
1262
+ resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
1263
+
1264
+ pathval@2.0.1:
1265
+ resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==}
1266
+ engines: {node: '>= 14.16'}
1267
+
1268
+ picocolors@1.1.1:
1269
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
1270
+
1271
+ picomatch@4.0.4:
1272
+ resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
1273
+ engines: {node: '>=12'}
1274
+
1275
+ postcss@8.5.15:
1276
+ resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==}
1277
+ engines: {node: ^10 || ^12 || >=14}
1278
+
1279
+ pretty-format@27.5.1:
1280
+ resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
1281
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
1282
+
1283
+ react-dom@19.2.7:
1284
+ resolution: {integrity: sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==}
1285
+ peerDependencies:
1286
+ react: ^19.2.7
1287
+
1288
+ react-is@17.0.2:
1289
+ resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
1290
+
1291
+ react-refresh@0.18.0:
1292
+ resolution: {integrity: sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==}
1293
+ engines: {node: '>=0.10.0'}
1294
+
1295
+ react@19.2.7:
1296
+ resolution: {integrity: sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==}
1297
+ engines: {node: '>=0.10.0'}
1298
+
1299
+ rollup@4.62.0:
1300
+ resolution: {integrity: sha512-nc72Wgq62I7rtDV4izT5/aaS0zxy3kttkinf9586ApknY3jZO9NYsmtc24fUckA0X7Q2v+ML4a15pdUlV5V/jA==}
1301
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
1302
+ hasBin: true
1303
+
1304
+ scheduler@0.27.0:
1305
+ resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
1306
+
1307
+ semver@6.3.1:
1308
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
1309
+ hasBin: true
1310
+
1311
+ semver@7.8.4:
1312
+ resolution: {integrity: sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==}
1313
+ engines: {node: '>=10'}
1314
+ hasBin: true
1315
+
1316
+ sharp@0.34.5:
1317
+ resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==}
1318
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
1319
+
1320
+ siginfo@2.0.0:
1321
+ resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
1322
+
1323
+ source-map-js@1.2.1:
1324
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
1325
+ engines: {node: '>=0.10.0'}
1326
+
1327
+ stackback@0.0.2:
1328
+ resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
1329
+
1330
+ std-env@3.10.0:
1331
+ resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==}
1332
+
1333
+ strip-literal@3.1.0:
1334
+ resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==}
1335
+
1336
+ supports-color@10.2.2:
1337
+ resolution: {integrity: sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==}
1338
+ engines: {node: '>=18'}
1339
+
1340
+ tinybench@2.9.0:
1341
+ resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
1342
+
1343
+ tinyexec@0.3.2:
1344
+ resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
1345
+
1346
+ tinyglobby@0.2.17:
1347
+ resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==}
1348
+ engines: {node: '>=12.0.0'}
1349
+
1350
+ tinypool@1.1.1:
1351
+ resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==}
1352
+ engines: {node: ^18.0.0 || >=20.0.0}
1353
+
1354
+ tinyrainbow@2.0.0:
1355
+ resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==}
1356
+ engines: {node: '>=14.0.0'}
1357
+
1358
+ tinyspy@4.0.4:
1359
+ resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==}
1360
+ engines: {node: '>=14.0.0'}
1361
+
1362
+ tslib@2.8.1:
1363
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
1364
+
1365
+ typescript@6.0.3:
1366
+ resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==}
1367
+ engines: {node: '>=14.17'}
1368
+ hasBin: true
1369
+
1370
+ undici-types@6.21.0:
1371
+ resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
1372
+
1373
+ undici@7.24.8:
1374
+ resolution: {integrity: sha512-6KQ/+QxK49Z/p3HO6E5ZCZWNnCasyZLa5ExaVYyvPxUwKtbCPMKELJOqh7EqOle0t9cH/7d2TaaTRRa6Nhs4YQ==}
1375
+ engines: {node: '>=20.18.1'}
1376
+
1377
+ unenv@2.0.0-rc.24:
1378
+ resolution: {integrity: sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==}
1379
+
1380
+ update-browserslist-db@1.2.3:
1381
+ resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
1382
+ hasBin: true
1383
+ peerDependencies:
1384
+ browserslist: '>= 4.21.0'
1385
+
1386
+ vite-node@3.2.4:
1387
+ resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==}
1388
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
1389
+ hasBin: true
1390
+
1391
+ vite@7.3.5:
1392
+ resolution: {integrity: sha512-KuOaNhcnGFN2zIPGA7wRmzF+lJA1sea7rHq17aiJ++9lzY1WWG6Jpwqwe1KNbRVPIqHmr8GLYx7jbrQcN/7/ww==}
1393
+ engines: {node: ^20.19.0 || >=22.12.0}
1394
+ hasBin: true
1395
+ peerDependencies:
1396
+ '@types/node': ^20.19.0 || >=22.12.0
1397
+ jiti: '>=1.21.0'
1398
+ less: ^4.0.0
1399
+ lightningcss: ^1.21.0
1400
+ sass: ^1.70.0
1401
+ sass-embedded: ^1.70.0
1402
+ stylus: '>=0.54.8'
1403
+ sugarss: ^5.0.0
1404
+ terser: ^5.16.0
1405
+ tsx: ^4.8.1
1406
+ yaml: ^2.4.2
1407
+ peerDependenciesMeta:
1408
+ '@types/node':
1409
+ optional: true
1410
+ jiti:
1411
+ optional: true
1412
+ less:
1413
+ optional: true
1414
+ lightningcss:
1415
+ optional: true
1416
+ sass:
1417
+ optional: true
1418
+ sass-embedded:
1419
+ optional: true
1420
+ stylus:
1421
+ optional: true
1422
+ sugarss:
1423
+ optional: true
1424
+ terser:
1425
+ optional: true
1426
+ tsx:
1427
+ optional: true
1428
+ yaml:
1429
+ optional: true
1430
+
1431
+ vitest@3.2.6:
1432
+ resolution: {integrity: sha512-xejya+bT/j/+R/AGa1XOfRxLmNUlLtlwjRsFUILF+xHfzElmGcmFydy2gqqIrd62ptIEfwVMofd19uNWD9L7Nw==}
1433
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
1434
+ hasBin: true
1435
+ peerDependencies:
1436
+ '@edge-runtime/vm': '*'
1437
+ '@types/debug': ^4.1.12
1438
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
1439
+ '@vitest/browser': 3.2.6
1440
+ '@vitest/ui': 3.2.6
1441
+ happy-dom: '*'
1442
+ jsdom: '*'
1443
+ peerDependenciesMeta:
1444
+ '@edge-runtime/vm':
1445
+ optional: true
1446
+ '@types/debug':
1447
+ optional: true
1448
+ '@types/node':
1449
+ optional: true
1450
+ '@vitest/browser':
1451
+ optional: true
1452
+ '@vitest/ui':
1453
+ optional: true
1454
+ happy-dom:
1455
+ optional: true
1456
+ jsdom:
1457
+ optional: true
1458
+
1459
+ whatwg-mimetype@3.0.0:
1460
+ resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==}
1461
+ engines: {node: '>=12'}
1462
+
1463
+ why-is-node-running@2.3.0:
1464
+ resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
1465
+ engines: {node: '>=8'}
1466
+ hasBin: true
1467
+
1468
+ workerd@1.20260611.1:
1469
+ resolution: {integrity: sha512-CS/640T7pIJ2HYX6x2DwKFGbcSckAWN3tgcdq+ptB6SaqjWUhlzIgA/YhPuwIU+/NnMnGpqOFX/hC18Oyge63w==}
1470
+ engines: {node: '>=16'}
1471
+ hasBin: true
1472
+
1473
+ wrangler@4.100.0:
1474
+ resolution: {integrity: sha512-dSQO7DO+mD6XDzkVWIWBoGLO3yw+lacWSc/KhFvd7pgfpth+kX98qb5SGRHZN8ACCDhhfwzDLXwB6qHsIHhfBg==}
1475
+ engines: {node: '>=22.0.0'}
1476
+ hasBin: true
1477
+ peerDependencies:
1478
+ '@cloudflare/workers-types': ^4.20260611.1
1479
+ peerDependenciesMeta:
1480
+ '@cloudflare/workers-types':
1481
+ optional: true
1482
+
1483
+ ws@8.20.1:
1484
+ resolution: {integrity: sha512-It4dO0K5v//JtTXuPkfEOaI3uUN87iYPnqo/ZzqCoG3g8uhA66QUMs/SrM0YK7/NAu+r4LMh/9dq2A7k+rHs+w==}
1485
+ engines: {node: '>=10.0.0'}
1486
+ peerDependencies:
1487
+ bufferutil: ^4.0.1
1488
+ utf-8-validate: '>=5.0.2'
1489
+ peerDependenciesMeta:
1490
+ bufferutil:
1491
+ optional: true
1492
+ utf-8-validate:
1493
+ optional: true
1494
+
1495
+ ws@8.21.0:
1496
+ resolution: {integrity: sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==}
1497
+ engines: {node: '>=10.0.0'}
1498
+ peerDependencies:
1499
+ bufferutil: ^4.0.1
1500
+ utf-8-validate: '>=5.0.2'
1501
+ peerDependenciesMeta:
1502
+ bufferutil:
1503
+ optional: true
1504
+ utf-8-validate:
1505
+ optional: true
1506
+
1507
+ yallist@3.1.1:
1508
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
1509
+
1510
+ youch-core@0.3.3:
1511
+ resolution: {integrity: sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==}
1512
+
1513
+ youch@4.1.0-beta.10:
1514
+ resolution: {integrity: sha512-rLfVLB4FgQneDr0dv1oddCVZmKjcJ6yX6mS4pU82Mq/Dt9a3cLZQ62pDBL4AUO+uVrCvtWz3ZFUL2HFAFJ/BXQ==}
1515
+
1516
+ zod@4.4.3:
1517
+ resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==}
1518
+
1519
+ snapshots:
1520
+
1521
+ '@astrale-os/adapter-cloudflare@0.1.9(@hono/node-server@1.19.14(hono@4.12.25))(typescript@6.0.3)':
1522
+ dependencies:
1523
+ '@astrale-os/sdk': 0.1.7(@hono/node-server@1.19.14(hono@4.12.25))(typescript@6.0.3)
1524
+ jose: 6.2.3
1525
+ transitivePeerDependencies:
1526
+ - '@hono/node-server'
1527
+ - msgpackr
1528
+ - typescript
1529
+
1530
+ '@astrale-os/kernel-api@0.4.4(typescript@6.0.3)':
1531
+ dependencies:
1532
+ '@astrale-os/kernel-core': 0.4.3(typescript@6.0.3)
1533
+ jose: 6.2.3
1534
+ zod: 4.4.3
1535
+ transitivePeerDependencies:
1536
+ - typescript
1537
+
1538
+ '@astrale-os/kernel-api@0.4.5(typescript@6.0.3)':
1539
+ dependencies:
1540
+ '@astrale-os/kernel-core': 0.4.3(typescript@6.0.3)
1541
+ jose: 6.2.3
1542
+ zod: 4.4.3
1543
+ transitivePeerDependencies:
1544
+ - typescript
1545
+
1546
+ '@astrale-os/kernel-client@0.2.2(typescript@6.0.3)':
1547
+ dependencies:
1548
+ '@astrale-os/kernel-api': 0.4.4(typescript@6.0.3)
1549
+ '@astrale-os/kernel-core': 0.4.3(typescript@6.0.3)
1550
+ '@astrale-os/kernel-dsl': 0.1.2(typescript@6.0.3)
1551
+ '@tanstack/pacer': 0.20.1
1552
+ dequal: 2.0.3
1553
+ transitivePeerDependencies:
1554
+ - msgpackr
1555
+ - typescript
1556
+
1557
+ '@astrale-os/kernel-core@0.4.3(typescript@6.0.3)':
1558
+ dependencies:
1559
+ '@astrale-os/kernel-dsl': 0.1.2(typescript@6.0.3)
1560
+ '@types/json-schema': 7.0.15
1561
+ dequal: 2.0.3
1562
+ jose: 6.2.3
1563
+ zod: 4.4.3
1564
+ transitivePeerDependencies:
1565
+ - typescript
1566
+
1567
+ '@astrale-os/kernel-core@0.4.4(typescript@6.0.3)':
1568
+ dependencies:
1569
+ '@astrale-os/kernel-dsl': 0.1.2(typescript@6.0.3)
1570
+ '@types/json-schema': 7.0.15
1571
+ dequal: 2.0.3
1572
+ jose: 6.2.3
1573
+ zod: 4.4.3
1574
+ transitivePeerDependencies:
1575
+ - typescript
1576
+
1577
+ '@astrale-os/kernel-dsl@0.1.2(typescript@6.0.3)':
1578
+ dependencies:
1579
+ typescript: 6.0.3
1580
+ zod: 4.4.3
1581
+
1582
+ '@astrale-os/kernel-server@0.4.4(typescript@6.0.3)':
1583
+ dependencies:
1584
+ '@astrale-os/kernel-api': 0.4.5(typescript@6.0.3)
1585
+ '@astrale-os/kernel-core': 0.4.3(typescript@6.0.3)
1586
+ hono: 4.12.25
1587
+ zod: 4.4.3
1588
+ transitivePeerDependencies:
1589
+ - msgpackr
1590
+ - typescript
1591
+
1592
+ '@astrale-os/sdk@0.1.7(@hono/node-server@1.19.14(hono@4.12.25))(typescript@6.0.3)':
1593
+ dependencies:
1594
+ '@astrale-os/kernel-api': 0.4.5(typescript@6.0.3)
1595
+ '@astrale-os/kernel-client': 0.2.2(typescript@6.0.3)
1596
+ '@astrale-os/kernel-core': 0.4.4(typescript@6.0.3)
1597
+ '@astrale-os/kernel-dsl': 0.1.2(typescript@6.0.3)
1598
+ '@astrale-os/kernel-server': 0.4.4(typescript@6.0.3)
1599
+ hono: 4.12.25
1600
+ jose: 6.2.3
1601
+ zod: 4.4.3
1602
+ optionalDependencies:
1603
+ '@hono/node-server': 1.19.14(hono@4.12.25)
1604
+ transitivePeerDependencies:
1605
+ - msgpackr
1606
+ - typescript
1607
+
1608
+ '@babel/code-frame@7.29.7':
1609
+ dependencies:
1610
+ '@babel/helper-validator-identifier': 7.29.7
1611
+ js-tokens: 4.0.0
1612
+ picocolors: 1.1.1
1613
+
1614
+ '@babel/compat-data@7.29.7': {}
1615
+
1616
+ '@babel/core@7.29.7':
1617
+ dependencies:
1618
+ '@babel/code-frame': 7.29.7
1619
+ '@babel/generator': 7.29.7
1620
+ '@babel/helper-compilation-targets': 7.29.7
1621
+ '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7)
1622
+ '@babel/helpers': 7.29.7
1623
+ '@babel/parser': 7.29.7
1624
+ '@babel/template': 7.29.7
1625
+ '@babel/traverse': 7.29.7
1626
+ '@babel/types': 7.29.7
1627
+ '@jridgewell/remapping': 2.3.5
1628
+ convert-source-map: 2.0.0
1629
+ debug: 4.4.3
1630
+ gensync: 1.0.0-beta.2
1631
+ json5: 2.2.3
1632
+ semver: 6.3.1
1633
+ transitivePeerDependencies:
1634
+ - supports-color
1635
+
1636
+ '@babel/generator@7.29.7':
1637
+ dependencies:
1638
+ '@babel/parser': 7.29.7
1639
+ '@babel/types': 7.29.7
1640
+ '@jridgewell/gen-mapping': 0.3.13
1641
+ '@jridgewell/trace-mapping': 0.3.31
1642
+ jsesc: 3.1.0
1643
+
1644
+ '@babel/helper-compilation-targets@7.29.7':
1645
+ dependencies:
1646
+ '@babel/compat-data': 7.29.7
1647
+ '@babel/helper-validator-option': 7.29.7
1648
+ browserslist: 4.28.2
1649
+ lru-cache: 5.1.1
1650
+ semver: 6.3.1
1651
+
1652
+ '@babel/helper-globals@7.29.7': {}
1653
+
1654
+ '@babel/helper-module-imports@7.29.7':
1655
+ dependencies:
1656
+ '@babel/traverse': 7.29.7
1657
+ '@babel/types': 7.29.7
1658
+ transitivePeerDependencies:
1659
+ - supports-color
1660
+
1661
+ '@babel/helper-module-transforms@7.29.7(@babel/core@7.29.7)':
1662
+ dependencies:
1663
+ '@babel/core': 7.29.7
1664
+ '@babel/helper-module-imports': 7.29.7
1665
+ '@babel/helper-validator-identifier': 7.29.7
1666
+ '@babel/traverse': 7.29.7
1667
+ transitivePeerDependencies:
1668
+ - supports-color
1669
+
1670
+ '@babel/helper-plugin-utils@7.29.7': {}
1671
+
1672
+ '@babel/helper-string-parser@7.29.7': {}
1673
+
1674
+ '@babel/helper-validator-identifier@7.29.7': {}
1675
+
1676
+ '@babel/helper-validator-option@7.29.7': {}
1677
+
1678
+ '@babel/helpers@7.29.7':
1679
+ dependencies:
1680
+ '@babel/template': 7.29.7
1681
+ '@babel/types': 7.29.7
1682
+
1683
+ '@babel/parser@7.29.7':
1684
+ dependencies:
1685
+ '@babel/types': 7.29.7
1686
+
1687
+ '@babel/plugin-transform-react-jsx-self@7.29.7(@babel/core@7.29.7)':
1688
+ dependencies:
1689
+ '@babel/core': 7.29.7
1690
+ '@babel/helper-plugin-utils': 7.29.7
1691
+
1692
+ '@babel/plugin-transform-react-jsx-source@7.29.7(@babel/core@7.29.7)':
1693
+ dependencies:
1694
+ '@babel/core': 7.29.7
1695
+ '@babel/helper-plugin-utils': 7.29.7
1696
+
1697
+ '@babel/runtime@7.29.7': {}
1698
+
1699
+ '@babel/template@7.29.7':
1700
+ dependencies:
1701
+ '@babel/code-frame': 7.29.7
1702
+ '@babel/parser': 7.29.7
1703
+ '@babel/types': 7.29.7
1704
+
1705
+ '@babel/traverse@7.29.7':
1706
+ dependencies:
1707
+ '@babel/code-frame': 7.29.7
1708
+ '@babel/generator': 7.29.7
1709
+ '@babel/helper-globals': 7.29.7
1710
+ '@babel/parser': 7.29.7
1711
+ '@babel/template': 7.29.7
1712
+ '@babel/types': 7.29.7
1713
+ debug: 4.4.3
1714
+ transitivePeerDependencies:
1715
+ - supports-color
1716
+
1717
+ '@babel/types@7.29.7':
1718
+ dependencies:
1719
+ '@babel/helper-string-parser': 7.29.7
1720
+ '@babel/helper-validator-identifier': 7.29.7
1721
+
1722
+ '@cloudflare/kv-asset-handler@0.5.0': {}
1723
+
1724
+ '@cloudflare/unenv-preset@2.16.1(unenv@2.0.0-rc.24)(workerd@1.20260611.1)':
1725
+ dependencies:
1726
+ unenv: 2.0.0-rc.24
1727
+ optionalDependencies:
1728
+ workerd: 1.20260611.1
1729
+
1730
+ '@cloudflare/workerd-darwin-64@1.20260611.1':
1731
+ optional: true
1732
+
1733
+ '@cloudflare/workerd-darwin-arm64@1.20260611.1':
1734
+ optional: true
1735
+
1736
+ '@cloudflare/workerd-linux-64@1.20260611.1':
1737
+ optional: true
1738
+
1739
+ '@cloudflare/workerd-linux-arm64@1.20260611.1':
1740
+ optional: true
1741
+
1742
+ '@cloudflare/workerd-windows-64@1.20260611.1':
1743
+ optional: true
1744
+
1745
+ '@cspotcode/source-map-support@0.8.1':
1746
+ dependencies:
1747
+ '@jridgewell/trace-mapping': 0.3.9
1748
+
1749
+ '@emnapi/runtime@1.11.1':
1750
+ dependencies:
1751
+ tslib: 2.8.1
1752
+ optional: true
1753
+
1754
+ '@esbuild/aix-ppc64@0.27.3':
1755
+ optional: true
1756
+
1757
+ '@esbuild/aix-ppc64@0.27.7':
1758
+ optional: true
1759
+
1760
+ '@esbuild/android-arm64@0.27.3':
1761
+ optional: true
1762
+
1763
+ '@esbuild/android-arm64@0.27.7':
1764
+ optional: true
1765
+
1766
+ '@esbuild/android-arm@0.27.3':
1767
+ optional: true
1768
+
1769
+ '@esbuild/android-arm@0.27.7':
1770
+ optional: true
1771
+
1772
+ '@esbuild/android-x64@0.27.3':
1773
+ optional: true
1774
+
1775
+ '@esbuild/android-x64@0.27.7':
1776
+ optional: true
1777
+
1778
+ '@esbuild/darwin-arm64@0.27.3':
1779
+ optional: true
1780
+
1781
+ '@esbuild/darwin-arm64@0.27.7':
1782
+ optional: true
1783
+
1784
+ '@esbuild/darwin-x64@0.27.3':
1785
+ optional: true
1786
+
1787
+ '@esbuild/darwin-x64@0.27.7':
1788
+ optional: true
1789
+
1790
+ '@esbuild/freebsd-arm64@0.27.3':
1791
+ optional: true
1792
+
1793
+ '@esbuild/freebsd-arm64@0.27.7':
1794
+ optional: true
1795
+
1796
+ '@esbuild/freebsd-x64@0.27.3':
1797
+ optional: true
1798
+
1799
+ '@esbuild/freebsd-x64@0.27.7':
1800
+ optional: true
1801
+
1802
+ '@esbuild/linux-arm64@0.27.3':
1803
+ optional: true
1804
+
1805
+ '@esbuild/linux-arm64@0.27.7':
1806
+ optional: true
1807
+
1808
+ '@esbuild/linux-arm@0.27.3':
1809
+ optional: true
1810
+
1811
+ '@esbuild/linux-arm@0.27.7':
1812
+ optional: true
1813
+
1814
+ '@esbuild/linux-ia32@0.27.3':
1815
+ optional: true
1816
+
1817
+ '@esbuild/linux-ia32@0.27.7':
1818
+ optional: true
1819
+
1820
+ '@esbuild/linux-loong64@0.27.3':
1821
+ optional: true
1822
+
1823
+ '@esbuild/linux-loong64@0.27.7':
1824
+ optional: true
1825
+
1826
+ '@esbuild/linux-mips64el@0.27.3':
1827
+ optional: true
1828
+
1829
+ '@esbuild/linux-mips64el@0.27.7':
1830
+ optional: true
1831
+
1832
+ '@esbuild/linux-ppc64@0.27.3':
1833
+ optional: true
1834
+
1835
+ '@esbuild/linux-ppc64@0.27.7':
1836
+ optional: true
1837
+
1838
+ '@esbuild/linux-riscv64@0.27.3':
1839
+ optional: true
1840
+
1841
+ '@esbuild/linux-riscv64@0.27.7':
1842
+ optional: true
1843
+
1844
+ '@esbuild/linux-s390x@0.27.3':
1845
+ optional: true
1846
+
1847
+ '@esbuild/linux-s390x@0.27.7':
1848
+ optional: true
1849
+
1850
+ '@esbuild/linux-x64@0.27.3':
1851
+ optional: true
1852
+
1853
+ '@esbuild/linux-x64@0.27.7':
1854
+ optional: true
1855
+
1856
+ '@esbuild/netbsd-arm64@0.27.3':
1857
+ optional: true
1858
+
1859
+ '@esbuild/netbsd-arm64@0.27.7':
1860
+ optional: true
1861
+
1862
+ '@esbuild/netbsd-x64@0.27.3':
1863
+ optional: true
1864
+
1865
+ '@esbuild/netbsd-x64@0.27.7':
1866
+ optional: true
1867
+
1868
+ '@esbuild/openbsd-arm64@0.27.3':
1869
+ optional: true
1870
+
1871
+ '@esbuild/openbsd-arm64@0.27.7':
1872
+ optional: true
1873
+
1874
+ '@esbuild/openbsd-x64@0.27.3':
1875
+ optional: true
1876
+
1877
+ '@esbuild/openbsd-x64@0.27.7':
1878
+ optional: true
1879
+
1880
+ '@esbuild/openharmony-arm64@0.27.3':
1881
+ optional: true
1882
+
1883
+ '@esbuild/openharmony-arm64@0.27.7':
1884
+ optional: true
1885
+
1886
+ '@esbuild/sunos-x64@0.27.3':
1887
+ optional: true
1888
+
1889
+ '@esbuild/sunos-x64@0.27.7':
1890
+ optional: true
1891
+
1892
+ '@esbuild/win32-arm64@0.27.3':
1893
+ optional: true
1894
+
1895
+ '@esbuild/win32-arm64@0.27.7':
1896
+ optional: true
1897
+
1898
+ '@esbuild/win32-ia32@0.27.3':
1899
+ optional: true
1900
+
1901
+ '@esbuild/win32-ia32@0.27.7':
1902
+ optional: true
1903
+
1904
+ '@esbuild/win32-x64@0.27.3':
1905
+ optional: true
1906
+
1907
+ '@esbuild/win32-x64@0.27.7':
1908
+ optional: true
1909
+
1910
+ '@hono/node-server@1.19.14(hono@4.12.25)':
1911
+ dependencies:
1912
+ hono: 4.12.25
1913
+
1914
+ '@img/colour@1.1.0': {}
1915
+
1916
+ '@img/sharp-darwin-arm64@0.34.5':
1917
+ optionalDependencies:
1918
+ '@img/sharp-libvips-darwin-arm64': 1.2.4
1919
+ optional: true
1920
+
1921
+ '@img/sharp-darwin-x64@0.34.5':
1922
+ optionalDependencies:
1923
+ '@img/sharp-libvips-darwin-x64': 1.2.4
1924
+ optional: true
1925
+
1926
+ '@img/sharp-libvips-darwin-arm64@1.2.4':
1927
+ optional: true
1928
+
1929
+ '@img/sharp-libvips-darwin-x64@1.2.4':
1930
+ optional: true
1931
+
1932
+ '@img/sharp-libvips-linux-arm64@1.2.4':
1933
+ optional: true
1934
+
1935
+ '@img/sharp-libvips-linux-arm@1.2.4':
1936
+ optional: true
1937
+
1938
+ '@img/sharp-libvips-linux-ppc64@1.2.4':
1939
+ optional: true
1940
+
1941
+ '@img/sharp-libvips-linux-riscv64@1.2.4':
1942
+ optional: true
1943
+
1944
+ '@img/sharp-libvips-linux-s390x@1.2.4':
1945
+ optional: true
1946
+
1947
+ '@img/sharp-libvips-linux-x64@1.2.4':
1948
+ optional: true
1949
+
1950
+ '@img/sharp-libvips-linuxmusl-arm64@1.2.4':
1951
+ optional: true
1952
+
1953
+ '@img/sharp-libvips-linuxmusl-x64@1.2.4':
1954
+ optional: true
1955
+
1956
+ '@img/sharp-linux-arm64@0.34.5':
1957
+ optionalDependencies:
1958
+ '@img/sharp-libvips-linux-arm64': 1.2.4
1959
+ optional: true
1960
+
1961
+ '@img/sharp-linux-arm@0.34.5':
1962
+ optionalDependencies:
1963
+ '@img/sharp-libvips-linux-arm': 1.2.4
1964
+ optional: true
1965
+
1966
+ '@img/sharp-linux-ppc64@0.34.5':
1967
+ optionalDependencies:
1968
+ '@img/sharp-libvips-linux-ppc64': 1.2.4
1969
+ optional: true
1970
+
1971
+ '@img/sharp-linux-riscv64@0.34.5':
1972
+ optionalDependencies:
1973
+ '@img/sharp-libvips-linux-riscv64': 1.2.4
1974
+ optional: true
1975
+
1976
+ '@img/sharp-linux-s390x@0.34.5':
1977
+ optionalDependencies:
1978
+ '@img/sharp-libvips-linux-s390x': 1.2.4
1979
+ optional: true
1980
+
1981
+ '@img/sharp-linux-x64@0.34.5':
1982
+ optionalDependencies:
1983
+ '@img/sharp-libvips-linux-x64': 1.2.4
1984
+ optional: true
1985
+
1986
+ '@img/sharp-linuxmusl-arm64@0.34.5':
1987
+ optionalDependencies:
1988
+ '@img/sharp-libvips-linuxmusl-arm64': 1.2.4
1989
+ optional: true
1990
+
1991
+ '@img/sharp-linuxmusl-x64@0.34.5':
1992
+ optionalDependencies:
1993
+ '@img/sharp-libvips-linuxmusl-x64': 1.2.4
1994
+ optional: true
1995
+
1996
+ '@img/sharp-wasm32@0.34.5':
1997
+ dependencies:
1998
+ '@emnapi/runtime': 1.11.1
1999
+ optional: true
2000
+
2001
+ '@img/sharp-win32-arm64@0.34.5':
2002
+ optional: true
2003
+
2004
+ '@img/sharp-win32-ia32@0.34.5':
2005
+ optional: true
2006
+
2007
+ '@img/sharp-win32-x64@0.34.5':
2008
+ optional: true
2009
+
2010
+ '@jridgewell/gen-mapping@0.3.13':
2011
+ dependencies:
2012
+ '@jridgewell/sourcemap-codec': 1.5.5
2013
+ '@jridgewell/trace-mapping': 0.3.31
2014
+
2015
+ '@jridgewell/remapping@2.3.5':
2016
+ dependencies:
2017
+ '@jridgewell/gen-mapping': 0.3.13
2018
+ '@jridgewell/trace-mapping': 0.3.31
2019
+
2020
+ '@jridgewell/resolve-uri@3.1.2': {}
2021
+
2022
+ '@jridgewell/sourcemap-codec@1.5.5': {}
2023
+
2024
+ '@jridgewell/trace-mapping@0.3.31':
2025
+ dependencies:
2026
+ '@jridgewell/resolve-uri': 3.1.2
2027
+ '@jridgewell/sourcemap-codec': 1.5.5
2028
+
2029
+ '@jridgewell/trace-mapping@0.3.9':
2030
+ dependencies:
2031
+ '@jridgewell/resolve-uri': 3.1.2
2032
+ '@jridgewell/sourcemap-codec': 1.5.5
2033
+
2034
+ '@poppinss/colors@4.1.6':
2035
+ dependencies:
2036
+ kleur: 4.1.5
2037
+
2038
+ '@poppinss/dumper@0.6.5':
2039
+ dependencies:
2040
+ '@poppinss/colors': 4.1.6
2041
+ '@sindresorhus/is': 7.2.0
2042
+ supports-color: 10.2.2
2043
+
2044
+ '@poppinss/exception@1.2.3': {}
2045
+
2046
+ '@rolldown/pluginutils@1.0.0-rc.3': {}
2047
+
2048
+ '@rollup/rollup-android-arm-eabi@4.62.0':
2049
+ optional: true
2050
+
2051
+ '@rollup/rollup-android-arm64@4.62.0':
2052
+ optional: true
2053
+
2054
+ '@rollup/rollup-darwin-arm64@4.62.0':
2055
+ optional: true
2056
+
2057
+ '@rollup/rollup-darwin-x64@4.62.0':
2058
+ optional: true
2059
+
2060
+ '@rollup/rollup-freebsd-arm64@4.62.0':
2061
+ optional: true
2062
+
2063
+ '@rollup/rollup-freebsd-x64@4.62.0':
2064
+ optional: true
2065
+
2066
+ '@rollup/rollup-linux-arm-gnueabihf@4.62.0':
2067
+ optional: true
2068
+
2069
+ '@rollup/rollup-linux-arm-musleabihf@4.62.0':
2070
+ optional: true
2071
+
2072
+ '@rollup/rollup-linux-arm64-gnu@4.62.0':
2073
+ optional: true
2074
+
2075
+ '@rollup/rollup-linux-arm64-musl@4.62.0':
2076
+ optional: true
2077
+
2078
+ '@rollup/rollup-linux-loong64-gnu@4.62.0':
2079
+ optional: true
2080
+
2081
+ '@rollup/rollup-linux-loong64-musl@4.62.0':
2082
+ optional: true
2083
+
2084
+ '@rollup/rollup-linux-ppc64-gnu@4.62.0':
2085
+ optional: true
2086
+
2087
+ '@rollup/rollup-linux-ppc64-musl@4.62.0':
2088
+ optional: true
2089
+
2090
+ '@rollup/rollup-linux-riscv64-gnu@4.62.0':
2091
+ optional: true
2092
+
2093
+ '@rollup/rollup-linux-riscv64-musl@4.62.0':
2094
+ optional: true
2095
+
2096
+ '@rollup/rollup-linux-s390x-gnu@4.62.0':
2097
+ optional: true
2098
+
2099
+ '@rollup/rollup-linux-x64-gnu@4.62.0':
2100
+ optional: true
2101
+
2102
+ '@rollup/rollup-linux-x64-musl@4.62.0':
2103
+ optional: true
2104
+
2105
+ '@rollup/rollup-openbsd-x64@4.62.0':
2106
+ optional: true
2107
+
2108
+ '@rollup/rollup-openharmony-arm64@4.62.0':
2109
+ optional: true
2110
+
2111
+ '@rollup/rollup-win32-arm64-msvc@4.62.0':
2112
+ optional: true
2113
+
2114
+ '@rollup/rollup-win32-ia32-msvc@4.62.0':
2115
+ optional: true
2116
+
2117
+ '@rollup/rollup-win32-x64-gnu@4.62.0':
2118
+ optional: true
2119
+
2120
+ '@rollup/rollup-win32-x64-msvc@4.62.0':
2121
+ optional: true
2122
+
2123
+ '@sindresorhus/is@7.2.0': {}
2124
+
2125
+ '@speed-highlight/core@1.2.17': {}
2126
+
2127
+ '@tanstack/devtools-event-client@0.4.3': {}
2128
+
2129
+ '@tanstack/pacer@0.20.1':
2130
+ dependencies:
2131
+ '@tanstack/devtools-event-client': 0.4.3
2132
+ '@tanstack/store': 0.9.3
2133
+
2134
+ '@tanstack/store@0.9.3': {}
2135
+
2136
+ '@testing-library/dom@10.4.1':
2137
+ dependencies:
2138
+ '@babel/code-frame': 7.29.7
2139
+ '@babel/runtime': 7.29.7
2140
+ '@types/aria-query': 5.0.4
2141
+ aria-query: 5.3.0
2142
+ dom-accessibility-api: 0.5.16
2143
+ lz-string: 1.5.0
2144
+ picocolors: 1.1.1
2145
+ pretty-format: 27.5.1
2146
+
2147
+ '@testing-library/react@16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
2148
+ dependencies:
2149
+ '@babel/runtime': 7.29.7
2150
+ '@testing-library/dom': 10.4.1
2151
+ react: 19.2.7
2152
+ react-dom: 19.2.7(react@19.2.7)
2153
+ optionalDependencies:
2154
+ '@types/react': 19.2.17
2155
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
2156
+
2157
+ '@types/aria-query@5.0.4': {}
2158
+
2159
+ '@types/babel__core@7.20.5':
2160
+ dependencies:
2161
+ '@babel/parser': 7.29.7
2162
+ '@babel/types': 7.29.7
2163
+ '@types/babel__generator': 7.27.0
2164
+ '@types/babel__template': 7.4.4
2165
+ '@types/babel__traverse': 7.28.0
2166
+
2167
+ '@types/babel__generator@7.27.0':
2168
+ dependencies:
2169
+ '@babel/types': 7.29.7
2170
+
2171
+ '@types/babel__template@7.4.4':
2172
+ dependencies:
2173
+ '@babel/parser': 7.29.7
2174
+ '@babel/types': 7.29.7
2175
+
2176
+ '@types/babel__traverse@7.28.0':
2177
+ dependencies:
2178
+ '@babel/types': 7.29.7
2179
+
2180
+ '@types/chai@5.2.3':
2181
+ dependencies:
2182
+ '@types/deep-eql': 4.0.2
2183
+ assertion-error: 2.0.1
2184
+
2185
+ '@types/deep-eql@4.0.2': {}
2186
+
2187
+ '@types/estree@1.0.9': {}
2188
+
2189
+ '@types/json-schema@7.0.15': {}
2190
+
2191
+ '@types/node@22.19.21':
2192
+ dependencies:
2193
+ undici-types: 6.21.0
2194
+
2195
+ '@types/react-dom@19.2.3(@types/react@19.2.17)':
2196
+ dependencies:
2197
+ '@types/react': 19.2.17
2198
+
2199
+ '@types/react@19.2.17':
2200
+ dependencies:
2201
+ csstype: 3.2.3
2202
+
2203
+ '@types/whatwg-mimetype@3.0.2': {}
2204
+
2205
+ '@types/ws@8.18.1':
2206
+ dependencies:
2207
+ '@types/node': 22.19.21
2208
+
2209
+ '@typescript/native-preview-darwin-arm64@7.0.0-dev.20260612.1':
2210
+ optional: true
2211
+
2212
+ '@typescript/native-preview-darwin-x64@7.0.0-dev.20260612.1':
2213
+ optional: true
2214
+
2215
+ '@typescript/native-preview-linux-arm64@7.0.0-dev.20260612.1':
2216
+ optional: true
2217
+
2218
+ '@typescript/native-preview-linux-arm@7.0.0-dev.20260612.1':
2219
+ optional: true
2220
+
2221
+ '@typescript/native-preview-linux-x64@7.0.0-dev.20260612.1':
2222
+ optional: true
2223
+
2224
+ '@typescript/native-preview-win32-arm64@7.0.0-dev.20260612.1':
2225
+ optional: true
2226
+
2227
+ '@typescript/native-preview-win32-x64@7.0.0-dev.20260612.1':
2228
+ optional: true
2229
+
2230
+ '@typescript/native-preview@7.0.0-dev.20260612.1':
2231
+ optionalDependencies:
2232
+ '@typescript/native-preview-darwin-arm64': 7.0.0-dev.20260612.1
2233
+ '@typescript/native-preview-darwin-x64': 7.0.0-dev.20260612.1
2234
+ '@typescript/native-preview-linux-arm': 7.0.0-dev.20260612.1
2235
+ '@typescript/native-preview-linux-arm64': 7.0.0-dev.20260612.1
2236
+ '@typescript/native-preview-linux-x64': 7.0.0-dev.20260612.1
2237
+ '@typescript/native-preview-win32-arm64': 7.0.0-dev.20260612.1
2238
+ '@typescript/native-preview-win32-x64': 7.0.0-dev.20260612.1
2239
+
2240
+ '@vitejs/plugin-react@5.2.0(vite@7.3.5(@types/node@22.19.21))':
2241
+ dependencies:
2242
+ '@babel/core': 7.29.7
2243
+ '@babel/plugin-transform-react-jsx-self': 7.29.7(@babel/core@7.29.7)
2244
+ '@babel/plugin-transform-react-jsx-source': 7.29.7(@babel/core@7.29.7)
2245
+ '@rolldown/pluginutils': 1.0.0-rc.3
2246
+ '@types/babel__core': 7.20.5
2247
+ react-refresh: 0.18.0
2248
+ vite: 7.3.5(@types/node@22.19.21)
2249
+ transitivePeerDependencies:
2250
+ - supports-color
2251
+
2252
+ '@vitest/expect@3.2.6':
2253
+ dependencies:
2254
+ '@types/chai': 5.2.3
2255
+ '@vitest/spy': 3.2.6
2256
+ '@vitest/utils': 3.2.6
2257
+ chai: 5.3.3
2258
+ tinyrainbow: 2.0.0
2259
+
2260
+ '@vitest/mocker@3.2.6(vite@7.3.5(@types/node@22.19.21))':
2261
+ dependencies:
2262
+ '@vitest/spy': 3.2.6
2263
+ estree-walker: 3.0.3
2264
+ magic-string: 0.30.21
2265
+ optionalDependencies:
2266
+ vite: 7.3.5(@types/node@22.19.21)
2267
+
2268
+ '@vitest/pretty-format@3.2.6':
2269
+ dependencies:
2270
+ tinyrainbow: 2.0.0
2271
+
2272
+ '@vitest/runner@3.2.6':
2273
+ dependencies:
2274
+ '@vitest/utils': 3.2.6
2275
+ pathe: 2.0.3
2276
+ strip-literal: 3.1.0
2277
+
2278
+ '@vitest/snapshot@3.2.6':
2279
+ dependencies:
2280
+ '@vitest/pretty-format': 3.2.6
2281
+ magic-string: 0.30.21
2282
+ pathe: 2.0.3
2283
+
2284
+ '@vitest/spy@3.2.6':
2285
+ dependencies:
2286
+ tinyspy: 4.0.4
2287
+
2288
+ '@vitest/utils@3.2.6':
2289
+ dependencies:
2290
+ '@vitest/pretty-format': 3.2.6
2291
+ loupe: 3.2.1
2292
+ tinyrainbow: 2.0.0
2293
+
2294
+ ansi-regex@5.0.1: {}
2295
+
2296
+ ansi-styles@5.2.0: {}
2297
+
2298
+ aria-query@5.3.0:
2299
+ dependencies:
2300
+ dequal: 2.0.3
2301
+
2302
+ assertion-error@2.0.1: {}
2303
+
2304
+ baseline-browser-mapping@2.10.37: {}
2305
+
2306
+ blake3-wasm@2.1.5: {}
2307
+
2308
+ browserslist@4.28.2:
2309
+ dependencies:
2310
+ baseline-browser-mapping: 2.10.37
2311
+ caniuse-lite: 1.0.30001799
2312
+ electron-to-chromium: 1.5.372
2313
+ node-releases: 2.0.47
2314
+ update-browserslist-db: 1.2.3(browserslist@4.28.2)
2315
+
2316
+ buffer-image-size@0.6.4:
2317
+ dependencies:
2318
+ '@types/node': 22.19.21
2319
+
2320
+ cac@6.7.14: {}
2321
+
2322
+ caniuse-lite@1.0.30001799: {}
2323
+
2324
+ chai@5.3.3:
2325
+ dependencies:
2326
+ assertion-error: 2.0.1
2327
+ check-error: 2.1.3
2328
+ deep-eql: 5.0.2
2329
+ loupe: 3.2.1
2330
+ pathval: 2.0.1
2331
+
2332
+ check-error@2.1.3: {}
2333
+
2334
+ convert-source-map@2.0.0: {}
2335
+
2336
+ cookie@1.1.1: {}
2337
+
2338
+ csstype@3.2.3: {}
2339
+
2340
+ debug@4.4.3:
2341
+ dependencies:
2342
+ ms: 2.1.3
2343
+
2344
+ deep-eql@5.0.2: {}
2345
+
2346
+ dequal@2.0.3: {}
2347
+
2348
+ detect-libc@2.1.2: {}
2349
+
2350
+ dom-accessibility-api@0.5.16: {}
2351
+
2352
+ electron-to-chromium@1.5.372: {}
2353
+
2354
+ entities@7.0.1: {}
2355
+
2356
+ error-stack-parser-es@1.0.5: {}
2357
+
2358
+ es-module-lexer@1.7.0: {}
2359
+
2360
+ esbuild@0.27.3:
2361
+ optionalDependencies:
2362
+ '@esbuild/aix-ppc64': 0.27.3
2363
+ '@esbuild/android-arm': 0.27.3
2364
+ '@esbuild/android-arm64': 0.27.3
2365
+ '@esbuild/android-x64': 0.27.3
2366
+ '@esbuild/darwin-arm64': 0.27.3
2367
+ '@esbuild/darwin-x64': 0.27.3
2368
+ '@esbuild/freebsd-arm64': 0.27.3
2369
+ '@esbuild/freebsd-x64': 0.27.3
2370
+ '@esbuild/linux-arm': 0.27.3
2371
+ '@esbuild/linux-arm64': 0.27.3
2372
+ '@esbuild/linux-ia32': 0.27.3
2373
+ '@esbuild/linux-loong64': 0.27.3
2374
+ '@esbuild/linux-mips64el': 0.27.3
2375
+ '@esbuild/linux-ppc64': 0.27.3
2376
+ '@esbuild/linux-riscv64': 0.27.3
2377
+ '@esbuild/linux-s390x': 0.27.3
2378
+ '@esbuild/linux-x64': 0.27.3
2379
+ '@esbuild/netbsd-arm64': 0.27.3
2380
+ '@esbuild/netbsd-x64': 0.27.3
2381
+ '@esbuild/openbsd-arm64': 0.27.3
2382
+ '@esbuild/openbsd-x64': 0.27.3
2383
+ '@esbuild/openharmony-arm64': 0.27.3
2384
+ '@esbuild/sunos-x64': 0.27.3
2385
+ '@esbuild/win32-arm64': 0.27.3
2386
+ '@esbuild/win32-ia32': 0.27.3
2387
+ '@esbuild/win32-x64': 0.27.3
2388
+
2389
+ esbuild@0.27.7:
2390
+ optionalDependencies:
2391
+ '@esbuild/aix-ppc64': 0.27.7
2392
+ '@esbuild/android-arm': 0.27.7
2393
+ '@esbuild/android-arm64': 0.27.7
2394
+ '@esbuild/android-x64': 0.27.7
2395
+ '@esbuild/darwin-arm64': 0.27.7
2396
+ '@esbuild/darwin-x64': 0.27.7
2397
+ '@esbuild/freebsd-arm64': 0.27.7
2398
+ '@esbuild/freebsd-x64': 0.27.7
2399
+ '@esbuild/linux-arm': 0.27.7
2400
+ '@esbuild/linux-arm64': 0.27.7
2401
+ '@esbuild/linux-ia32': 0.27.7
2402
+ '@esbuild/linux-loong64': 0.27.7
2403
+ '@esbuild/linux-mips64el': 0.27.7
2404
+ '@esbuild/linux-ppc64': 0.27.7
2405
+ '@esbuild/linux-riscv64': 0.27.7
2406
+ '@esbuild/linux-s390x': 0.27.7
2407
+ '@esbuild/linux-x64': 0.27.7
2408
+ '@esbuild/netbsd-arm64': 0.27.7
2409
+ '@esbuild/netbsd-x64': 0.27.7
2410
+ '@esbuild/openbsd-arm64': 0.27.7
2411
+ '@esbuild/openbsd-x64': 0.27.7
2412
+ '@esbuild/openharmony-arm64': 0.27.7
2413
+ '@esbuild/sunos-x64': 0.27.7
2414
+ '@esbuild/win32-arm64': 0.27.7
2415
+ '@esbuild/win32-ia32': 0.27.7
2416
+ '@esbuild/win32-x64': 0.27.7
2417
+
2418
+ escalade@3.2.0: {}
2419
+
2420
+ estree-walker@3.0.3:
2421
+ dependencies:
2422
+ '@types/estree': 1.0.9
2423
+
2424
+ expect-type@1.3.0: {}
2425
+
2426
+ fdir@6.5.0(picomatch@4.0.4):
2427
+ optionalDependencies:
2428
+ picomatch: 4.0.4
2429
+
2430
+ fsevents@2.3.3:
2431
+ optional: true
2432
+
2433
+ gensync@1.0.0-beta.2: {}
2434
+
2435
+ happy-dom@20.10.3:
2436
+ dependencies:
2437
+ '@types/node': 22.19.21
2438
+ '@types/whatwg-mimetype': 3.0.2
2439
+ '@types/ws': 8.18.1
2440
+ buffer-image-size: 0.6.4
2441
+ entities: 7.0.1
2442
+ whatwg-mimetype: 3.0.0
2443
+ ws: 8.21.0
2444
+ transitivePeerDependencies:
2445
+ - bufferutil
2446
+ - utf-8-validate
2447
+
2448
+ hono@4.12.25: {}
2449
+
2450
+ jose@6.2.3: {}
2451
+
2452
+ js-tokens@4.0.0: {}
2453
+
2454
+ js-tokens@9.0.1: {}
2455
+
2456
+ jsesc@3.1.0: {}
2457
+
2458
+ json5@2.2.3: {}
2459
+
2460
+ kleur@4.1.5: {}
2461
+
2462
+ loupe@3.2.1: {}
2463
+
2464
+ lru-cache@5.1.1:
2465
+ dependencies:
2466
+ yallist: 3.1.1
2467
+
2468
+ lz-string@1.5.0: {}
2469
+
2470
+ magic-string@0.30.21:
2471
+ dependencies:
2472
+ '@jridgewell/sourcemap-codec': 1.5.5
2473
+
2474
+ miniflare@4.20260611.0:
2475
+ dependencies:
2476
+ '@cspotcode/source-map-support': 0.8.1
2477
+ sharp: 0.34.5
2478
+ undici: 7.24.8
2479
+ workerd: 1.20260611.1
2480
+ ws: 8.20.1
2481
+ youch: 4.1.0-beta.10
2482
+ transitivePeerDependencies:
2483
+ - bufferutil
2484
+ - utf-8-validate
2485
+
2486
+ ms@2.1.3: {}
2487
+
2488
+ nanoid@3.3.12: {}
2489
+
2490
+ node-releases@2.0.47: {}
2491
+
2492
+ path-to-regexp@6.3.0: {}
2493
+
2494
+ pathe@2.0.3: {}
2495
+
2496
+ pathval@2.0.1: {}
2497
+
2498
+ picocolors@1.1.1: {}
2499
+
2500
+ picomatch@4.0.4: {}
2501
+
2502
+ postcss@8.5.15:
2503
+ dependencies:
2504
+ nanoid: 3.3.12
2505
+ picocolors: 1.1.1
2506
+ source-map-js: 1.2.1
2507
+
2508
+ pretty-format@27.5.1:
2509
+ dependencies:
2510
+ ansi-regex: 5.0.1
2511
+ ansi-styles: 5.2.0
2512
+ react-is: 17.0.2
2513
+
2514
+ react-dom@19.2.7(react@19.2.7):
2515
+ dependencies:
2516
+ react: 19.2.7
2517
+ scheduler: 0.27.0
2518
+
2519
+ react-is@17.0.2: {}
2520
+
2521
+ react-refresh@0.18.0: {}
2522
+
2523
+ react@19.2.7: {}
2524
+
2525
+ rollup@4.62.0:
2526
+ dependencies:
2527
+ '@types/estree': 1.0.9
2528
+ optionalDependencies:
2529
+ '@rollup/rollup-android-arm-eabi': 4.62.0
2530
+ '@rollup/rollup-android-arm64': 4.62.0
2531
+ '@rollup/rollup-darwin-arm64': 4.62.0
2532
+ '@rollup/rollup-darwin-x64': 4.62.0
2533
+ '@rollup/rollup-freebsd-arm64': 4.62.0
2534
+ '@rollup/rollup-freebsd-x64': 4.62.0
2535
+ '@rollup/rollup-linux-arm-gnueabihf': 4.62.0
2536
+ '@rollup/rollup-linux-arm-musleabihf': 4.62.0
2537
+ '@rollup/rollup-linux-arm64-gnu': 4.62.0
2538
+ '@rollup/rollup-linux-arm64-musl': 4.62.0
2539
+ '@rollup/rollup-linux-loong64-gnu': 4.62.0
2540
+ '@rollup/rollup-linux-loong64-musl': 4.62.0
2541
+ '@rollup/rollup-linux-ppc64-gnu': 4.62.0
2542
+ '@rollup/rollup-linux-ppc64-musl': 4.62.0
2543
+ '@rollup/rollup-linux-riscv64-gnu': 4.62.0
2544
+ '@rollup/rollup-linux-riscv64-musl': 4.62.0
2545
+ '@rollup/rollup-linux-s390x-gnu': 4.62.0
2546
+ '@rollup/rollup-linux-x64-gnu': 4.62.0
2547
+ '@rollup/rollup-linux-x64-musl': 4.62.0
2548
+ '@rollup/rollup-openbsd-x64': 4.62.0
2549
+ '@rollup/rollup-openharmony-arm64': 4.62.0
2550
+ '@rollup/rollup-win32-arm64-msvc': 4.62.0
2551
+ '@rollup/rollup-win32-ia32-msvc': 4.62.0
2552
+ '@rollup/rollup-win32-x64-gnu': 4.62.0
2553
+ '@rollup/rollup-win32-x64-msvc': 4.62.0
2554
+ fsevents: 2.3.3
2555
+
2556
+ scheduler@0.27.0: {}
2557
+
2558
+ semver@6.3.1: {}
2559
+
2560
+ semver@7.8.4: {}
2561
+
2562
+ sharp@0.34.5:
2563
+ dependencies:
2564
+ '@img/colour': 1.1.0
2565
+ detect-libc: 2.1.2
2566
+ semver: 7.8.4
2567
+ optionalDependencies:
2568
+ '@img/sharp-darwin-arm64': 0.34.5
2569
+ '@img/sharp-darwin-x64': 0.34.5
2570
+ '@img/sharp-libvips-darwin-arm64': 1.2.4
2571
+ '@img/sharp-libvips-darwin-x64': 1.2.4
2572
+ '@img/sharp-libvips-linux-arm': 1.2.4
2573
+ '@img/sharp-libvips-linux-arm64': 1.2.4
2574
+ '@img/sharp-libvips-linux-ppc64': 1.2.4
2575
+ '@img/sharp-libvips-linux-riscv64': 1.2.4
2576
+ '@img/sharp-libvips-linux-s390x': 1.2.4
2577
+ '@img/sharp-libvips-linux-x64': 1.2.4
2578
+ '@img/sharp-libvips-linuxmusl-arm64': 1.2.4
2579
+ '@img/sharp-libvips-linuxmusl-x64': 1.2.4
2580
+ '@img/sharp-linux-arm': 0.34.5
2581
+ '@img/sharp-linux-arm64': 0.34.5
2582
+ '@img/sharp-linux-ppc64': 0.34.5
2583
+ '@img/sharp-linux-riscv64': 0.34.5
2584
+ '@img/sharp-linux-s390x': 0.34.5
2585
+ '@img/sharp-linux-x64': 0.34.5
2586
+ '@img/sharp-linuxmusl-arm64': 0.34.5
2587
+ '@img/sharp-linuxmusl-x64': 0.34.5
2588
+ '@img/sharp-wasm32': 0.34.5
2589
+ '@img/sharp-win32-arm64': 0.34.5
2590
+ '@img/sharp-win32-ia32': 0.34.5
2591
+ '@img/sharp-win32-x64': 0.34.5
2592
+
2593
+ siginfo@2.0.0: {}
2594
+
2595
+ source-map-js@1.2.1: {}
2596
+
2597
+ stackback@0.0.2: {}
2598
+
2599
+ std-env@3.10.0: {}
2600
+
2601
+ strip-literal@3.1.0:
2602
+ dependencies:
2603
+ js-tokens: 9.0.1
2604
+
2605
+ supports-color@10.2.2: {}
2606
+
2607
+ tinybench@2.9.0: {}
2608
+
2609
+ tinyexec@0.3.2: {}
2610
+
2611
+ tinyglobby@0.2.17:
2612
+ dependencies:
2613
+ fdir: 6.5.0(picomatch@4.0.4)
2614
+ picomatch: 4.0.4
2615
+
2616
+ tinypool@1.1.1: {}
2617
+
2618
+ tinyrainbow@2.0.0: {}
2619
+
2620
+ tinyspy@4.0.4: {}
2621
+
2622
+ tslib@2.8.1:
2623
+ optional: true
2624
+
2625
+ typescript@6.0.3: {}
2626
+
2627
+ undici-types@6.21.0: {}
2628
+
2629
+ undici@7.24.8: {}
2630
+
2631
+ unenv@2.0.0-rc.24:
2632
+ dependencies:
2633
+ pathe: 2.0.3
2634
+
2635
+ update-browserslist-db@1.2.3(browserslist@4.28.2):
2636
+ dependencies:
2637
+ browserslist: 4.28.2
2638
+ escalade: 3.2.0
2639
+ picocolors: 1.1.1
2640
+
2641
+ vite-node@3.2.4(@types/node@22.19.21):
2642
+ dependencies:
2643
+ cac: 6.7.14
2644
+ debug: 4.4.3
2645
+ es-module-lexer: 1.7.0
2646
+ pathe: 2.0.3
2647
+ vite: 7.3.5(@types/node@22.19.21)
2648
+ transitivePeerDependencies:
2649
+ - '@types/node'
2650
+ - jiti
2651
+ - less
2652
+ - lightningcss
2653
+ - sass
2654
+ - sass-embedded
2655
+ - stylus
2656
+ - sugarss
2657
+ - supports-color
2658
+ - terser
2659
+ - tsx
2660
+ - yaml
2661
+
2662
+ vite@7.3.5(@types/node@22.19.21):
2663
+ dependencies:
2664
+ esbuild: 0.27.7
2665
+ fdir: 6.5.0(picomatch@4.0.4)
2666
+ picomatch: 4.0.4
2667
+ postcss: 8.5.15
2668
+ rollup: 4.62.0
2669
+ tinyglobby: 0.2.17
2670
+ optionalDependencies:
2671
+ '@types/node': 22.19.21
2672
+ fsevents: 2.3.3
2673
+
2674
+ vitest@3.2.6(@types/node@22.19.21)(happy-dom@20.10.3):
2675
+ dependencies:
2676
+ '@types/chai': 5.2.3
2677
+ '@vitest/expect': 3.2.6
2678
+ '@vitest/mocker': 3.2.6(vite@7.3.5(@types/node@22.19.21))
2679
+ '@vitest/pretty-format': 3.2.6
2680
+ '@vitest/runner': 3.2.6
2681
+ '@vitest/snapshot': 3.2.6
2682
+ '@vitest/spy': 3.2.6
2683
+ '@vitest/utils': 3.2.6
2684
+ chai: 5.3.3
2685
+ debug: 4.4.3
2686
+ expect-type: 1.3.0
2687
+ magic-string: 0.30.21
2688
+ pathe: 2.0.3
2689
+ picomatch: 4.0.4
2690
+ std-env: 3.10.0
2691
+ tinybench: 2.9.0
2692
+ tinyexec: 0.3.2
2693
+ tinyglobby: 0.2.17
2694
+ tinypool: 1.1.1
2695
+ tinyrainbow: 2.0.0
2696
+ vite: 7.3.5(@types/node@22.19.21)
2697
+ vite-node: 3.2.4(@types/node@22.19.21)
2698
+ why-is-node-running: 2.3.0
2699
+ optionalDependencies:
2700
+ '@types/node': 22.19.21
2701
+ happy-dom: 20.10.3
2702
+ transitivePeerDependencies:
2703
+ - jiti
2704
+ - less
2705
+ - lightningcss
2706
+ - msw
2707
+ - sass
2708
+ - sass-embedded
2709
+ - stylus
2710
+ - sugarss
2711
+ - supports-color
2712
+ - terser
2713
+ - tsx
2714
+ - yaml
2715
+
2716
+ whatwg-mimetype@3.0.0: {}
2717
+
2718
+ why-is-node-running@2.3.0:
2719
+ dependencies:
2720
+ siginfo: 2.0.0
2721
+ stackback: 0.0.2
2722
+
2723
+ workerd@1.20260611.1:
2724
+ optionalDependencies:
2725
+ '@cloudflare/workerd-darwin-64': 1.20260611.1
2726
+ '@cloudflare/workerd-darwin-arm64': 1.20260611.1
2727
+ '@cloudflare/workerd-linux-64': 1.20260611.1
2728
+ '@cloudflare/workerd-linux-arm64': 1.20260611.1
2729
+ '@cloudflare/workerd-windows-64': 1.20260611.1
2730
+
2731
+ wrangler@4.100.0:
2732
+ dependencies:
2733
+ '@cloudflare/kv-asset-handler': 0.5.0
2734
+ '@cloudflare/unenv-preset': 2.16.1(unenv@2.0.0-rc.24)(workerd@1.20260611.1)
2735
+ blake3-wasm: 2.1.5
2736
+ esbuild: 0.27.3
2737
+ miniflare: 4.20260611.0
2738
+ path-to-regexp: 6.3.0
2739
+ unenv: 2.0.0-rc.24
2740
+ workerd: 1.20260611.1
2741
+ optionalDependencies:
2742
+ fsevents: 2.3.3
2743
+ transitivePeerDependencies:
2744
+ - bufferutil
2745
+ - utf-8-validate
2746
+
2747
+ ws@8.20.1: {}
2748
+
2749
+ ws@8.21.0: {}
2750
+
2751
+ yallist@3.1.1: {}
2752
+
2753
+ youch-core@0.3.3:
2754
+ dependencies:
2755
+ '@poppinss/exception': 1.2.3
2756
+ error-stack-parser-es: 1.0.5
2757
+
2758
+ youch@4.1.0-beta.10:
2759
+ dependencies:
2760
+ '@poppinss/colors': 4.1.6
2761
+ '@poppinss/dumper': 0.6.5
2762
+ '@speed-highlight/core': 1.2.17
2763
+ cookie: 1.1.1
2764
+ youch-core: 0.3.3
2765
+
2766
+ zod@4.4.3: {}