cptr 0.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. cptr/__init__.py +1 -0
  2. cptr/app.py +42 -0
  3. cptr/cli.py +30 -0
  4. cptr/frontend/.gitignore +23 -0
  5. cptr/frontend/.npmrc +1 -0
  6. cptr/frontend/README.md +42 -0
  7. cptr/frontend/package-lock.json +2106 -0
  8. cptr/frontend/package.json +44 -0
  9. cptr/frontend/src/app.css +114 -0
  10. cptr/frontend/src/app.d.ts +13 -0
  11. cptr/frontend/src/app.html +12 -0
  12. cptr/frontend/src/lib/assets/favicon.svg +1 -0
  13. cptr/frontend/src/lib/components/DirectoryPicker.svelte +276 -0
  14. cptr/frontend/src/lib/components/FileBrowser.svelte +142 -0
  15. cptr/frontend/src/lib/components/FileEditor.svelte +275 -0
  16. cptr/frontend/src/lib/components/PathBar.svelte +152 -0
  17. cptr/frontend/src/lib/components/Sidebar.svelte +216 -0
  18. cptr/frontend/src/lib/components/Terminal.svelte +147 -0
  19. cptr/frontend/src/lib/components/TerminalDrawer.svelte +175 -0
  20. cptr/frontend/src/lib/components/TopBar.svelte +42 -0
  21. cptr/frontend/src/lib/index.ts +1 -0
  22. cptr/frontend/src/lib/stores.ts +141 -0
  23. cptr/frontend/src/routes/+layout.svelte +31 -0
  24. cptr/frontend/src/routes/+layout.ts +3 -0
  25. cptr/frontend/src/routes/+page.svelte +13 -0
  26. cptr/frontend/static/robots.txt +3 -0
  27. cptr/frontend/svelte.config.js +19 -0
  28. cptr/frontend/tsconfig.json +20 -0
  29. cptr/frontend/vite.config.ts +16 -0
  30. cptr/routers/__init__.py +6 -0
  31. cptr/routers/files.py +206 -0
  32. cptr/routers/terminal.py +98 -0
  33. cptr/utils/__init__.py +1 -0
  34. cptr/utils/terminal.py +149 -0
  35. cptr-0.0.1.dist-info/METADATA +27 -0
  36. cptr-0.0.1.dist-info/RECORD +39 -0
  37. cptr-0.0.1.dist-info/WHEEL +4 -0
  38. cptr-0.0.1.dist-info/entry_points.txt +2 -0
  39. cptr-0.0.1.dist-info/licenses/LICENSE +19 -0
@@ -0,0 +1,2106 @@
1
+ {
2
+ "name": "frontend",
3
+ "version": "0.0.1",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "frontend",
9
+ "version": "0.0.1",
10
+ "dependencies": {
11
+ "@codemirror/lang-cpp": "^6.0.3",
12
+ "@codemirror/lang-css": "^6.3.1",
13
+ "@codemirror/lang-html": "^6.4.11",
14
+ "@codemirror/lang-java": "^6.0.2",
15
+ "@codemirror/lang-javascript": "^6.2.5",
16
+ "@codemirror/lang-json": "^6.0.2",
17
+ "@codemirror/lang-markdown": "^6.5.0",
18
+ "@codemirror/lang-python": "^6.2.1",
19
+ "@codemirror/lang-rust": "^6.0.2",
20
+ "@codemirror/lang-sql": "^6.10.0",
21
+ "@codemirror/lang-xml": "^6.1.0",
22
+ "@codemirror/lang-yaml": "^6.1.3",
23
+ "@codemirror/theme-one-dark": "^6.1.3",
24
+ "@tailwindcss/vite": "^4.2.2",
25
+ "@xterm/addon-fit": "^0.11.0",
26
+ "@xterm/xterm": "^6.0.0",
27
+ "codemirror": "^6.0.2",
28
+ "tailwindcss": "^4.2.2"
29
+ },
30
+ "devDependencies": {
31
+ "@sveltejs/adapter-auto": "^7.0.1",
32
+ "@sveltejs/adapter-static": "^3.0.10",
33
+ "@sveltejs/kit": "^2.57.0",
34
+ "@sveltejs/vite-plugin-svelte": "^7.0.0",
35
+ "svelte": "^5.55.2",
36
+ "svelte-check": "^4.4.6",
37
+ "typescript": "^6.0.2",
38
+ "vite": "^8.0.7"
39
+ }
40
+ },
41
+ "node_modules/@codemirror/autocomplete": {
42
+ "version": "6.20.1",
43
+ "resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.20.1.tgz",
44
+ "integrity": "sha512-1cvg3Vz1dSSToCNlJfRA2WSI4ht3K+WplO0UMOgmUYPivCyy2oueZY6Lx7M9wThm7SDUBViRmuT+OG/i8+ON9A==",
45
+ "license": "MIT",
46
+ "dependencies": {
47
+ "@codemirror/language": "^6.0.0",
48
+ "@codemirror/state": "^6.0.0",
49
+ "@codemirror/view": "^6.17.0",
50
+ "@lezer/common": "^1.0.0"
51
+ }
52
+ },
53
+ "node_modules/@codemirror/commands": {
54
+ "version": "6.10.3",
55
+ "resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.10.3.tgz",
56
+ "integrity": "sha512-JFRiqhKu+bvSkDLI+rUhJwSxQxYb759W5GBezE8Uc8mHLqC9aV/9aTC7yJSqCtB3F00pylrLCwnyS91Ap5ej4Q==",
57
+ "license": "MIT",
58
+ "dependencies": {
59
+ "@codemirror/language": "^6.0.0",
60
+ "@codemirror/state": "^6.6.0",
61
+ "@codemirror/view": "^6.27.0",
62
+ "@lezer/common": "^1.1.0"
63
+ }
64
+ },
65
+ "node_modules/@codemirror/lang-cpp": {
66
+ "version": "6.0.3",
67
+ "resolved": "https://registry.npmjs.org/@codemirror/lang-cpp/-/lang-cpp-6.0.3.tgz",
68
+ "integrity": "sha512-URM26M3vunFFn9/sm6rzqrBzDgfWuDixp85uTY49wKudToc2jTHUrKIGGKs+QWND+YLofNNZpxcNGRynFJfvgA==",
69
+ "license": "MIT",
70
+ "dependencies": {
71
+ "@codemirror/language": "^6.0.0",
72
+ "@lezer/cpp": "^1.0.0"
73
+ }
74
+ },
75
+ "node_modules/@codemirror/lang-css": {
76
+ "version": "6.3.1",
77
+ "resolved": "https://registry.npmjs.org/@codemirror/lang-css/-/lang-css-6.3.1.tgz",
78
+ "integrity": "sha512-kr5fwBGiGtmz6l0LSJIbno9QrifNMUusivHbnA1H6Dmqy4HZFte3UAICix1VuKo0lMPKQr2rqB+0BkKi/S3Ejg==",
79
+ "license": "MIT",
80
+ "dependencies": {
81
+ "@codemirror/autocomplete": "^6.0.0",
82
+ "@codemirror/language": "^6.0.0",
83
+ "@codemirror/state": "^6.0.0",
84
+ "@lezer/common": "^1.0.2",
85
+ "@lezer/css": "^1.1.7"
86
+ }
87
+ },
88
+ "node_modules/@codemirror/lang-html": {
89
+ "version": "6.4.11",
90
+ "resolved": "https://registry.npmjs.org/@codemirror/lang-html/-/lang-html-6.4.11.tgz",
91
+ "integrity": "sha512-9NsXp7Nwp891pQchI7gPdTwBuSuT3K65NGTHWHNJ55HjYcHLllr0rbIZNdOzas9ztc1EUVBlHou85FFZS4BNnw==",
92
+ "license": "MIT",
93
+ "dependencies": {
94
+ "@codemirror/autocomplete": "^6.0.0",
95
+ "@codemirror/lang-css": "^6.0.0",
96
+ "@codemirror/lang-javascript": "^6.0.0",
97
+ "@codemirror/language": "^6.4.0",
98
+ "@codemirror/state": "^6.0.0",
99
+ "@codemirror/view": "^6.17.0",
100
+ "@lezer/common": "^1.0.0",
101
+ "@lezer/css": "^1.1.0",
102
+ "@lezer/html": "^1.3.12"
103
+ }
104
+ },
105
+ "node_modules/@codemirror/lang-java": {
106
+ "version": "6.0.2",
107
+ "resolved": "https://registry.npmjs.org/@codemirror/lang-java/-/lang-java-6.0.2.tgz",
108
+ "integrity": "sha512-m5Nt1mQ/cznJY7tMfQTJchmrjdjQ71IDs+55d1GAa8DGaB8JXWsVCkVT284C3RTASaY43YknrK2X3hPO/J3MOQ==",
109
+ "license": "MIT",
110
+ "dependencies": {
111
+ "@codemirror/language": "^6.0.0",
112
+ "@lezer/java": "^1.0.0"
113
+ }
114
+ },
115
+ "node_modules/@codemirror/lang-javascript": {
116
+ "version": "6.2.5",
117
+ "resolved": "https://registry.npmjs.org/@codemirror/lang-javascript/-/lang-javascript-6.2.5.tgz",
118
+ "integrity": "sha512-zD4e5mS+50htS7F+TYjBPsiIFGanfVqg4HyUz6WNFikgOPf2BgKlx+TQedI1w6n/IqRBVBbBWmGFdLB/7uxO4A==",
119
+ "license": "MIT",
120
+ "dependencies": {
121
+ "@codemirror/autocomplete": "^6.0.0",
122
+ "@codemirror/language": "^6.6.0",
123
+ "@codemirror/lint": "^6.0.0",
124
+ "@codemirror/state": "^6.0.0",
125
+ "@codemirror/view": "^6.17.0",
126
+ "@lezer/common": "^1.0.0",
127
+ "@lezer/javascript": "^1.0.0"
128
+ }
129
+ },
130
+ "node_modules/@codemirror/lang-json": {
131
+ "version": "6.0.2",
132
+ "resolved": "https://registry.npmjs.org/@codemirror/lang-json/-/lang-json-6.0.2.tgz",
133
+ "integrity": "sha512-x2OtO+AvwEHrEwR0FyyPtfDUiloG3rnVTSZV1W8UteaLL8/MajQd8DpvUb2YVzC+/T18aSDv0H9mu+xw0EStoQ==",
134
+ "license": "MIT",
135
+ "dependencies": {
136
+ "@codemirror/language": "^6.0.0",
137
+ "@lezer/json": "^1.0.0"
138
+ }
139
+ },
140
+ "node_modules/@codemirror/lang-markdown": {
141
+ "version": "6.5.0",
142
+ "resolved": "https://registry.npmjs.org/@codemirror/lang-markdown/-/lang-markdown-6.5.0.tgz",
143
+ "integrity": "sha512-0K40bZ35jpHya6FriukbgaleaqzBLZfOh7HuzqbMxBXkbYMJDxfF39c23xOgxFezR+3G+tR2/Mup+Xk865OMvw==",
144
+ "license": "MIT",
145
+ "dependencies": {
146
+ "@codemirror/autocomplete": "^6.7.1",
147
+ "@codemirror/lang-html": "^6.0.0",
148
+ "@codemirror/language": "^6.3.0",
149
+ "@codemirror/state": "^6.0.0",
150
+ "@codemirror/view": "^6.0.0",
151
+ "@lezer/common": "^1.2.1",
152
+ "@lezer/markdown": "^1.0.0"
153
+ }
154
+ },
155
+ "node_modules/@codemirror/lang-python": {
156
+ "version": "6.2.1",
157
+ "resolved": "https://registry.npmjs.org/@codemirror/lang-python/-/lang-python-6.2.1.tgz",
158
+ "integrity": "sha512-IRjC8RUBhn9mGR9ywecNhB51yePWCGgvHfY1lWN/Mrp3cKuHr0isDKia+9HnvhiWNnMpbGhWrkhuWOc09exRyw==",
159
+ "license": "MIT",
160
+ "dependencies": {
161
+ "@codemirror/autocomplete": "^6.3.2",
162
+ "@codemirror/language": "^6.8.0",
163
+ "@codemirror/state": "^6.0.0",
164
+ "@lezer/common": "^1.2.1",
165
+ "@lezer/python": "^1.1.4"
166
+ }
167
+ },
168
+ "node_modules/@codemirror/lang-rust": {
169
+ "version": "6.0.2",
170
+ "resolved": "https://registry.npmjs.org/@codemirror/lang-rust/-/lang-rust-6.0.2.tgz",
171
+ "integrity": "sha512-EZaGjCUegtiU7kSMvOfEZpaCReowEf3yNidYu7+vfuGTm9ow4mthAparY5hisJqOHmJowVH3Upu+eJlUji6qqA==",
172
+ "license": "MIT",
173
+ "dependencies": {
174
+ "@codemirror/language": "^6.0.0",
175
+ "@lezer/rust": "^1.0.0"
176
+ }
177
+ },
178
+ "node_modules/@codemirror/lang-sql": {
179
+ "version": "6.10.0",
180
+ "resolved": "https://registry.npmjs.org/@codemirror/lang-sql/-/lang-sql-6.10.0.tgz",
181
+ "integrity": "sha512-6ayPkEd/yRw0XKBx5uAiToSgGECo/GY2NoJIHXIIQh1EVwLuKoU8BP/qK0qH5NLXAbtJRLuT73hx7P9X34iO4w==",
182
+ "license": "MIT",
183
+ "dependencies": {
184
+ "@codemirror/autocomplete": "^6.0.0",
185
+ "@codemirror/language": "^6.0.0",
186
+ "@codemirror/state": "^6.0.0",
187
+ "@lezer/common": "^1.2.0",
188
+ "@lezer/highlight": "^1.0.0",
189
+ "@lezer/lr": "^1.0.0"
190
+ }
191
+ },
192
+ "node_modules/@codemirror/lang-xml": {
193
+ "version": "6.1.0",
194
+ "resolved": "https://registry.npmjs.org/@codemirror/lang-xml/-/lang-xml-6.1.0.tgz",
195
+ "integrity": "sha512-3z0blhicHLfwi2UgkZYRPioSgVTo9PV5GP5ducFH6FaHy0IAJRg+ixj5gTR1gnT/glAIC8xv4w2VL1LoZfs+Jg==",
196
+ "license": "MIT",
197
+ "dependencies": {
198
+ "@codemirror/autocomplete": "^6.0.0",
199
+ "@codemirror/language": "^6.4.0",
200
+ "@codemirror/state": "^6.0.0",
201
+ "@codemirror/view": "^6.0.0",
202
+ "@lezer/common": "^1.0.0",
203
+ "@lezer/xml": "^1.0.0"
204
+ }
205
+ },
206
+ "node_modules/@codemirror/lang-yaml": {
207
+ "version": "6.1.3",
208
+ "resolved": "https://registry.npmjs.org/@codemirror/lang-yaml/-/lang-yaml-6.1.3.tgz",
209
+ "integrity": "sha512-AZ8DJBuXGVHybpBQhmZtgew5//4hv3tdkXnr3vDmOUMJRuB6vn/uuwtmTOTlqEaQFg3hQSVeA90NmvIQyUV6FQ==",
210
+ "license": "MIT",
211
+ "dependencies": {
212
+ "@codemirror/autocomplete": "^6.0.0",
213
+ "@codemirror/language": "^6.0.0",
214
+ "@codemirror/state": "^6.0.0",
215
+ "@lezer/common": "^1.2.0",
216
+ "@lezer/highlight": "^1.2.0",
217
+ "@lezer/lr": "^1.0.0",
218
+ "@lezer/yaml": "^1.0.0"
219
+ }
220
+ },
221
+ "node_modules/@codemirror/language": {
222
+ "version": "6.12.3",
223
+ "resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.12.3.tgz",
224
+ "integrity": "sha512-QwCZW6Tt1siP37Jet9Tb02Zs81TQt6qQrZR2H+eGMcFsL1zMrk2/b9CLC7/9ieP1fjIUMgviLWMmgiHoJrj+ZA==",
225
+ "license": "MIT",
226
+ "dependencies": {
227
+ "@codemirror/state": "^6.0.0",
228
+ "@codemirror/view": "^6.23.0",
229
+ "@lezer/common": "^1.5.0",
230
+ "@lezer/highlight": "^1.0.0",
231
+ "@lezer/lr": "^1.0.0",
232
+ "style-mod": "^4.0.0"
233
+ }
234
+ },
235
+ "node_modules/@codemirror/lint": {
236
+ "version": "6.9.5",
237
+ "resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.9.5.tgz",
238
+ "integrity": "sha512-GElsbU9G7QT9xXhpUg1zWGmftA/7jamh+7+ydKRuT0ORpWS3wOSP0yT1FOlIZa7mIJjpVPipErsyvVqB9cfTFA==",
239
+ "license": "MIT",
240
+ "dependencies": {
241
+ "@codemirror/state": "^6.0.0",
242
+ "@codemirror/view": "^6.35.0",
243
+ "crelt": "^1.0.5"
244
+ }
245
+ },
246
+ "node_modules/@codemirror/search": {
247
+ "version": "6.6.0",
248
+ "resolved": "https://registry.npmjs.org/@codemirror/search/-/search-6.6.0.tgz",
249
+ "integrity": "sha512-koFuNXcDvyyotWcgOnZGmY7LZqEOXZaaxD/j6n18TCLx2/9HieZJ5H6hs1g8FiRxBD0DNfs0nXn17g872RmYdw==",
250
+ "license": "MIT",
251
+ "dependencies": {
252
+ "@codemirror/state": "^6.0.0",
253
+ "@codemirror/view": "^6.37.0",
254
+ "crelt": "^1.0.5"
255
+ }
256
+ },
257
+ "node_modules/@codemirror/state": {
258
+ "version": "6.6.0",
259
+ "resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.6.0.tgz",
260
+ "integrity": "sha512-4nbvra5R5EtiCzr9BTHiTLc+MLXK2QGiAVYMyi8PkQd3SR+6ixar/Q/01Fa21TBIDOZXgeWV4WppsQolSreAPQ==",
261
+ "license": "MIT",
262
+ "dependencies": {
263
+ "@marijn/find-cluster-break": "^1.0.0"
264
+ }
265
+ },
266
+ "node_modules/@codemirror/theme-one-dark": {
267
+ "version": "6.1.3",
268
+ "resolved": "https://registry.npmjs.org/@codemirror/theme-one-dark/-/theme-one-dark-6.1.3.tgz",
269
+ "integrity": "sha512-NzBdIvEJmx6fjeremiGp3t/okrLPYT0d9orIc7AFun8oZcRk58aejkqhv6spnz4MLAevrKNPMQYXEWMg4s+sKA==",
270
+ "license": "MIT",
271
+ "dependencies": {
272
+ "@codemirror/language": "^6.0.0",
273
+ "@codemirror/state": "^6.0.0",
274
+ "@codemirror/view": "^6.0.0",
275
+ "@lezer/highlight": "^1.0.0"
276
+ }
277
+ },
278
+ "node_modules/@codemirror/view": {
279
+ "version": "6.41.0",
280
+ "resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.41.0.tgz",
281
+ "integrity": "sha512-6H/qadXsVuDY219Yljhohglve8xf4B8xJkVOEWfA5uiYKiTFppjqsvsfR5iPA0RbvRBoOyTZpbLIxe9+0UR8xA==",
282
+ "license": "MIT",
283
+ "dependencies": {
284
+ "@codemirror/state": "^6.6.0",
285
+ "crelt": "^1.0.6",
286
+ "style-mod": "^4.1.0",
287
+ "w3c-keyname": "^2.2.4"
288
+ }
289
+ },
290
+ "node_modules/@emnapi/core": {
291
+ "version": "1.9.2",
292
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.9.2.tgz",
293
+ "integrity": "sha512-UC+ZhH3XtczQYfOlu3lNEkdW/p4dsJ1r/bP7H8+rhao3TTTMO1ATq/4DdIi23XuGoFY+Cz0JmCbdVl0hz9jZcA==",
294
+ "license": "MIT",
295
+ "optional": true,
296
+ "dependencies": {
297
+ "@emnapi/wasi-threads": "1.2.1",
298
+ "tslib": "^2.4.0"
299
+ }
300
+ },
301
+ "node_modules/@emnapi/runtime": {
302
+ "version": "1.9.2",
303
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.2.tgz",
304
+ "integrity": "sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==",
305
+ "license": "MIT",
306
+ "optional": true,
307
+ "dependencies": {
308
+ "tslib": "^2.4.0"
309
+ }
310
+ },
311
+ "node_modules/@emnapi/wasi-threads": {
312
+ "version": "1.2.1",
313
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
314
+ "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
315
+ "license": "MIT",
316
+ "optional": true,
317
+ "dependencies": {
318
+ "tslib": "^2.4.0"
319
+ }
320
+ },
321
+ "node_modules/@jridgewell/gen-mapping": {
322
+ "version": "0.3.13",
323
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
324
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
325
+ "license": "MIT",
326
+ "dependencies": {
327
+ "@jridgewell/sourcemap-codec": "^1.5.0",
328
+ "@jridgewell/trace-mapping": "^0.3.24"
329
+ }
330
+ },
331
+ "node_modules/@jridgewell/remapping": {
332
+ "version": "2.3.5",
333
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
334
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
335
+ "license": "MIT",
336
+ "dependencies": {
337
+ "@jridgewell/gen-mapping": "^0.3.5",
338
+ "@jridgewell/trace-mapping": "^0.3.24"
339
+ }
340
+ },
341
+ "node_modules/@jridgewell/resolve-uri": {
342
+ "version": "3.1.2",
343
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
344
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
345
+ "license": "MIT",
346
+ "engines": {
347
+ "node": ">=6.0.0"
348
+ }
349
+ },
350
+ "node_modules/@jridgewell/sourcemap-codec": {
351
+ "version": "1.5.5",
352
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
353
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
354
+ "license": "MIT"
355
+ },
356
+ "node_modules/@jridgewell/trace-mapping": {
357
+ "version": "0.3.31",
358
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
359
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
360
+ "license": "MIT",
361
+ "dependencies": {
362
+ "@jridgewell/resolve-uri": "^3.1.0",
363
+ "@jridgewell/sourcemap-codec": "^1.4.14"
364
+ }
365
+ },
366
+ "node_modules/@lezer/common": {
367
+ "version": "1.5.2",
368
+ "resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.5.2.tgz",
369
+ "integrity": "sha512-sxQE460fPZyU3sdc8lafxiPwJHBzZRy/udNFynGQky1SePYBdhkBl1kOagA9uT3pxR8K09bOrmTUqA9wb/PjSQ==",
370
+ "license": "MIT"
371
+ },
372
+ "node_modules/@lezer/cpp": {
373
+ "version": "1.1.5",
374
+ "resolved": "https://registry.npmjs.org/@lezer/cpp/-/cpp-1.1.5.tgz",
375
+ "integrity": "sha512-DIhSXmYtJKLehrjzDFN+2cPt547ySQ41nA8yqcDf/GxMc+YM736xqltFkvADL2M0VebU5I+3+4ks2Vv+Kyq3Aw==",
376
+ "license": "MIT",
377
+ "dependencies": {
378
+ "@lezer/common": "^1.2.0",
379
+ "@lezer/highlight": "^1.0.0",
380
+ "@lezer/lr": "^1.0.0"
381
+ }
382
+ },
383
+ "node_modules/@lezer/css": {
384
+ "version": "1.3.3",
385
+ "resolved": "https://registry.npmjs.org/@lezer/css/-/css-1.3.3.tgz",
386
+ "integrity": "sha512-RzBo8r+/6QJeow7aPHIpGVIH59xTcJXp399820gZoMo9noQDRVpJLheIBUicYwKcsbOYoBRoLZlf2720dG/4Tg==",
387
+ "license": "MIT",
388
+ "dependencies": {
389
+ "@lezer/common": "^1.2.0",
390
+ "@lezer/highlight": "^1.0.0",
391
+ "@lezer/lr": "^1.3.0"
392
+ }
393
+ },
394
+ "node_modules/@lezer/highlight": {
395
+ "version": "1.2.3",
396
+ "resolved": "https://registry.npmjs.org/@lezer/highlight/-/highlight-1.2.3.tgz",
397
+ "integrity": "sha512-qXdH7UqTvGfdVBINrgKhDsVTJTxactNNxLk7+UMwZhU13lMHaOBlJe9Vqp907ya56Y3+ed2tlqzys7jDkTmW0g==",
398
+ "license": "MIT",
399
+ "dependencies": {
400
+ "@lezer/common": "^1.3.0"
401
+ }
402
+ },
403
+ "node_modules/@lezer/html": {
404
+ "version": "1.3.13",
405
+ "resolved": "https://registry.npmjs.org/@lezer/html/-/html-1.3.13.tgz",
406
+ "integrity": "sha512-oI7n6NJml729m7pjm9lvLvmXbdoMoi2f+1pwSDJkl9d68zGr7a9Btz8NdHTGQZtW2DA25ybeuv/SyDb9D5tseg==",
407
+ "license": "MIT",
408
+ "dependencies": {
409
+ "@lezer/common": "^1.2.0",
410
+ "@lezer/highlight": "^1.0.0",
411
+ "@lezer/lr": "^1.0.0"
412
+ }
413
+ },
414
+ "node_modules/@lezer/java": {
415
+ "version": "1.1.3",
416
+ "resolved": "https://registry.npmjs.org/@lezer/java/-/java-1.1.3.tgz",
417
+ "integrity": "sha512-yHquUfujwg6Yu4Fd1GNHCvidIvJwi/1Xu2DaKl/pfWIA2c1oXkVvawH3NyXhCaFx4OdlYBVX5wvz2f7Aoa/4Xw==",
418
+ "license": "MIT",
419
+ "dependencies": {
420
+ "@lezer/common": "^1.2.0",
421
+ "@lezer/highlight": "^1.0.0",
422
+ "@lezer/lr": "^1.0.0"
423
+ }
424
+ },
425
+ "node_modules/@lezer/javascript": {
426
+ "version": "1.5.4",
427
+ "resolved": "https://registry.npmjs.org/@lezer/javascript/-/javascript-1.5.4.tgz",
428
+ "integrity": "sha512-vvYx3MhWqeZtGPwDStM2dwgljd5smolYD2lR2UyFcHfxbBQebqx8yjmFmxtJ/E6nN6u1D9srOiVWm3Rb4tmcUA==",
429
+ "license": "MIT",
430
+ "dependencies": {
431
+ "@lezer/common": "^1.2.0",
432
+ "@lezer/highlight": "^1.1.3",
433
+ "@lezer/lr": "^1.3.0"
434
+ }
435
+ },
436
+ "node_modules/@lezer/json": {
437
+ "version": "1.0.3",
438
+ "resolved": "https://registry.npmjs.org/@lezer/json/-/json-1.0.3.tgz",
439
+ "integrity": "sha512-BP9KzdF9Y35PDpv04r0VeSTKDeox5vVr3efE7eBbx3r4s3oNLfunchejZhjArmeieBH+nVOpgIiBJpEAv8ilqQ==",
440
+ "license": "MIT",
441
+ "dependencies": {
442
+ "@lezer/common": "^1.2.0",
443
+ "@lezer/highlight": "^1.0.0",
444
+ "@lezer/lr": "^1.0.0"
445
+ }
446
+ },
447
+ "node_modules/@lezer/lr": {
448
+ "version": "1.4.8",
449
+ "resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.4.8.tgz",
450
+ "integrity": "sha512-bPWa0Pgx69ylNlMlPvBPryqeLYQjyJjqPx+Aupm5zydLIF3NE+6MMLT8Yi23Bd9cif9VS00aUebn+6fDIGBcDA==",
451
+ "license": "MIT",
452
+ "dependencies": {
453
+ "@lezer/common": "^1.0.0"
454
+ }
455
+ },
456
+ "node_modules/@lezer/markdown": {
457
+ "version": "1.6.3",
458
+ "resolved": "https://registry.npmjs.org/@lezer/markdown/-/markdown-1.6.3.tgz",
459
+ "integrity": "sha512-jpGm5Ps+XErS+xA4urw7ogEGkeZOahVQF21Z6oECF0sj+2liwZopd2+I8uH5I/vZsRuuze3OxBREIANLf6KKUw==",
460
+ "license": "MIT",
461
+ "dependencies": {
462
+ "@lezer/common": "^1.5.0",
463
+ "@lezer/highlight": "^1.0.0"
464
+ }
465
+ },
466
+ "node_modules/@lezer/python": {
467
+ "version": "1.1.18",
468
+ "resolved": "https://registry.npmjs.org/@lezer/python/-/python-1.1.18.tgz",
469
+ "integrity": "sha512-31FiUrU7z9+d/ElGQLJFXl+dKOdx0jALlP3KEOsGTex8mvj+SoE1FgItcHWK/axkxCHGUSpqIHt6JAWfWu9Rhg==",
470
+ "license": "MIT",
471
+ "dependencies": {
472
+ "@lezer/common": "^1.2.0",
473
+ "@lezer/highlight": "^1.0.0",
474
+ "@lezer/lr": "^1.0.0"
475
+ }
476
+ },
477
+ "node_modules/@lezer/rust": {
478
+ "version": "1.0.2",
479
+ "resolved": "https://registry.npmjs.org/@lezer/rust/-/rust-1.0.2.tgz",
480
+ "integrity": "sha512-Lz5sIPBdF2FUXcWeCu1//ojFAZqzTQNRga0aYv6dYXqJqPfMdCAI0NzajWUd4Xijj1IKJLtjoXRPMvTKWBcqKg==",
481
+ "license": "MIT",
482
+ "dependencies": {
483
+ "@lezer/common": "^1.2.0",
484
+ "@lezer/highlight": "^1.0.0",
485
+ "@lezer/lr": "^1.0.0"
486
+ }
487
+ },
488
+ "node_modules/@lezer/xml": {
489
+ "version": "1.0.6",
490
+ "resolved": "https://registry.npmjs.org/@lezer/xml/-/xml-1.0.6.tgz",
491
+ "integrity": "sha512-CdDwirL0OEaStFue/66ZmFSeppuL6Dwjlk8qk153mSQwiSH/Dlri4GNymrNWnUmPl2Um7QfV1FO9KFUyX3Twww==",
492
+ "license": "MIT",
493
+ "dependencies": {
494
+ "@lezer/common": "^1.2.0",
495
+ "@lezer/highlight": "^1.0.0",
496
+ "@lezer/lr": "^1.0.0"
497
+ }
498
+ },
499
+ "node_modules/@lezer/yaml": {
500
+ "version": "1.0.4",
501
+ "resolved": "https://registry.npmjs.org/@lezer/yaml/-/yaml-1.0.4.tgz",
502
+ "integrity": "sha512-2lrrHqxalACEbxIbsjhqGpSW8kWpUKuY6RHgnSAFZa6qK62wvnPxA8hGOwOoDbwHcOFs5M4o27mjGu+P7TvBmw==",
503
+ "license": "MIT",
504
+ "dependencies": {
505
+ "@lezer/common": "^1.2.0",
506
+ "@lezer/highlight": "^1.0.0",
507
+ "@lezer/lr": "^1.4.0"
508
+ }
509
+ },
510
+ "node_modules/@marijn/find-cluster-break": {
511
+ "version": "1.0.2",
512
+ "resolved": "https://registry.npmjs.org/@marijn/find-cluster-break/-/find-cluster-break-1.0.2.tgz",
513
+ "integrity": "sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==",
514
+ "license": "MIT"
515
+ },
516
+ "node_modules/@napi-rs/wasm-runtime": {
517
+ "version": "1.1.3",
518
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.3.tgz",
519
+ "integrity": "sha512-xK9sGVbJWYb08+mTJt3/YV24WxvxpXcXtP6B172paPZ+Ts69Re9dAr7lKwJoeIx8OoeuimEiRZ7umkiUVClmmQ==",
520
+ "license": "MIT",
521
+ "optional": true,
522
+ "dependencies": {
523
+ "@tybys/wasm-util": "^0.10.1"
524
+ },
525
+ "funding": {
526
+ "type": "github",
527
+ "url": "https://github.com/sponsors/Brooooooklyn"
528
+ },
529
+ "peerDependencies": {
530
+ "@emnapi/core": "^1.7.1",
531
+ "@emnapi/runtime": "^1.7.1"
532
+ }
533
+ },
534
+ "node_modules/@oxc-project/types": {
535
+ "version": "0.124.0",
536
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.124.0.tgz",
537
+ "integrity": "sha512-VBFWMTBvHxS11Z5Lvlr3IWgrwhMTXV+Md+EQF0Xf60+wAdsGFTBx7X7K/hP4pi8N7dcm1RvcHwDxZ16Qx8keUg==",
538
+ "license": "MIT",
539
+ "funding": {
540
+ "url": "https://github.com/sponsors/Boshen"
541
+ }
542
+ },
543
+ "node_modules/@polka/url": {
544
+ "version": "1.0.0-next.29",
545
+ "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz",
546
+ "integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==",
547
+ "dev": true,
548
+ "license": "MIT"
549
+ },
550
+ "node_modules/@rolldown/binding-android-arm64": {
551
+ "version": "1.0.0-rc.15",
552
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.15.tgz",
553
+ "integrity": "sha512-YYe6aWruPZDtHNpwu7+qAHEMbQ/yRl6atqb/AhznLTnD3UY99Q1jE7ihLSahNWkF4EqRPVC4SiR4O0UkLK02tA==",
554
+ "cpu": [
555
+ "arm64"
556
+ ],
557
+ "license": "MIT",
558
+ "optional": true,
559
+ "os": [
560
+ "android"
561
+ ],
562
+ "engines": {
563
+ "node": "^20.19.0 || >=22.12.0"
564
+ }
565
+ },
566
+ "node_modules/@rolldown/binding-darwin-arm64": {
567
+ "version": "1.0.0-rc.15",
568
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.15.tgz",
569
+ "integrity": "sha512-oArR/ig8wNTPYsXL+Mzhs0oxhxfuHRfG7Ikw7jXsw8mYOtk71W0OkF2VEVh699pdmzjPQsTjlD1JIOoHkLP1Fg==",
570
+ "cpu": [
571
+ "arm64"
572
+ ],
573
+ "license": "MIT",
574
+ "optional": true,
575
+ "os": [
576
+ "darwin"
577
+ ],
578
+ "engines": {
579
+ "node": "^20.19.0 || >=22.12.0"
580
+ }
581
+ },
582
+ "node_modules/@rolldown/binding-darwin-x64": {
583
+ "version": "1.0.0-rc.15",
584
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.15.tgz",
585
+ "integrity": "sha512-YzeVqOqjPYvUbJSWJ4EDL8ahbmsIXQpgL3JVipmN+MX0XnXMeWomLN3Fb+nwCmP/jfyqte5I3XRSm7OfQrbyxw==",
586
+ "cpu": [
587
+ "x64"
588
+ ],
589
+ "license": "MIT",
590
+ "optional": true,
591
+ "os": [
592
+ "darwin"
593
+ ],
594
+ "engines": {
595
+ "node": "^20.19.0 || >=22.12.0"
596
+ }
597
+ },
598
+ "node_modules/@rolldown/binding-freebsd-x64": {
599
+ "version": "1.0.0-rc.15",
600
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.15.tgz",
601
+ "integrity": "sha512-9Erhx956jeQ0nNTyif1+QWAXDRD38ZNjr//bSHrt6wDwB+QkAfl2q6Mn1k6OBPerznjRmbM10lgRb1Pli4xZPw==",
602
+ "cpu": [
603
+ "x64"
604
+ ],
605
+ "license": "MIT",
606
+ "optional": true,
607
+ "os": [
608
+ "freebsd"
609
+ ],
610
+ "engines": {
611
+ "node": "^20.19.0 || >=22.12.0"
612
+ }
613
+ },
614
+ "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
615
+ "version": "1.0.0-rc.15",
616
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.15.tgz",
617
+ "integrity": "sha512-cVwk0w8QbZJGTnP/AHQBs5yNwmpgGYStL88t4UIaqcvYJWBfS0s3oqVLZPwsPU6M0zlW4GqjP0Zq5MnAGwFeGA==",
618
+ "cpu": [
619
+ "arm"
620
+ ],
621
+ "license": "MIT",
622
+ "optional": true,
623
+ "os": [
624
+ "linux"
625
+ ],
626
+ "engines": {
627
+ "node": "^20.19.0 || >=22.12.0"
628
+ }
629
+ },
630
+ "node_modules/@rolldown/binding-linux-arm64-gnu": {
631
+ "version": "1.0.0-rc.15",
632
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.15.tgz",
633
+ "integrity": "sha512-eBZ/u8iAK9SoHGanqe/jrPnY0JvBN6iXbVOsbO38mbz+ZJsaobExAm1Iu+rxa4S1l2FjG0qEZn4Rc6X8n+9M+w==",
634
+ "cpu": [
635
+ "arm64"
636
+ ],
637
+ "license": "MIT",
638
+ "optional": true,
639
+ "os": [
640
+ "linux"
641
+ ],
642
+ "engines": {
643
+ "node": "^20.19.0 || >=22.12.0"
644
+ }
645
+ },
646
+ "node_modules/@rolldown/binding-linux-arm64-musl": {
647
+ "version": "1.0.0-rc.15",
648
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.15.tgz",
649
+ "integrity": "sha512-ZvRYMGrAklV9PEkgt4LQM6MjQX2P58HPAuecwYObY2DhS2t35R0I810bKi0wmaYORt6m/2Sm+Z+nFgb0WhXNcQ==",
650
+ "cpu": [
651
+ "arm64"
652
+ ],
653
+ "license": "MIT",
654
+ "optional": true,
655
+ "os": [
656
+ "linux"
657
+ ],
658
+ "engines": {
659
+ "node": "^20.19.0 || >=22.12.0"
660
+ }
661
+ },
662
+ "node_modules/@rolldown/binding-linux-ppc64-gnu": {
663
+ "version": "1.0.0-rc.15",
664
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.15.tgz",
665
+ "integrity": "sha512-VDpgGBzgfg5hLg+uBpCLoFG5kVvEyafmfxGUV0UHLcL5irxAK7PKNeC2MwClgk6ZAiNhmo9FLhRYgvMmedLtnQ==",
666
+ "cpu": [
667
+ "ppc64"
668
+ ],
669
+ "license": "MIT",
670
+ "optional": true,
671
+ "os": [
672
+ "linux"
673
+ ],
674
+ "engines": {
675
+ "node": "^20.19.0 || >=22.12.0"
676
+ }
677
+ },
678
+ "node_modules/@rolldown/binding-linux-s390x-gnu": {
679
+ "version": "1.0.0-rc.15",
680
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.15.tgz",
681
+ "integrity": "sha512-y1uXY3qQWCzcPgRJATPSOUP4tCemh4uBdY7e3EZbVwCJTY3gLJWnQABgeUetvED+bt1FQ01OeZwvhLS2bpNrAQ==",
682
+ "cpu": [
683
+ "s390x"
684
+ ],
685
+ "license": "MIT",
686
+ "optional": true,
687
+ "os": [
688
+ "linux"
689
+ ],
690
+ "engines": {
691
+ "node": "^20.19.0 || >=22.12.0"
692
+ }
693
+ },
694
+ "node_modules/@rolldown/binding-linux-x64-gnu": {
695
+ "version": "1.0.0-rc.15",
696
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.15.tgz",
697
+ "integrity": "sha512-023bTPBod7J3Y/4fzAN6QtpkSABR0rigtrwaP+qSEabUh5zf6ELr9Nc7GujaROuPY3uwdSIXWrvhn1KxOvurWA==",
698
+ "cpu": [
699
+ "x64"
700
+ ],
701
+ "license": "MIT",
702
+ "optional": true,
703
+ "os": [
704
+ "linux"
705
+ ],
706
+ "engines": {
707
+ "node": "^20.19.0 || >=22.12.0"
708
+ }
709
+ },
710
+ "node_modules/@rolldown/binding-linux-x64-musl": {
711
+ "version": "1.0.0-rc.15",
712
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.15.tgz",
713
+ "integrity": "sha512-witB2O0/hU4CgfOOKUoeFgQ4GktPi1eEbAhaLAIpgD6+ZnhcPkUtPsoKKHRzmOoWPZue46IThdSgdo4XneOLYw==",
714
+ "cpu": [
715
+ "x64"
716
+ ],
717
+ "license": "MIT",
718
+ "optional": true,
719
+ "os": [
720
+ "linux"
721
+ ],
722
+ "engines": {
723
+ "node": "^20.19.0 || >=22.12.0"
724
+ }
725
+ },
726
+ "node_modules/@rolldown/binding-openharmony-arm64": {
727
+ "version": "1.0.0-rc.15",
728
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.15.tgz",
729
+ "integrity": "sha512-UCL68NJ0Ud5zRipXZE9dF5PmirzJE4E4BCIOOssEnM7wLDsxjc6Qb0sGDxTNRTP53I6MZpygyCpY8Aa8sPfKPg==",
730
+ "cpu": [
731
+ "arm64"
732
+ ],
733
+ "license": "MIT",
734
+ "optional": true,
735
+ "os": [
736
+ "openharmony"
737
+ ],
738
+ "engines": {
739
+ "node": "^20.19.0 || >=22.12.0"
740
+ }
741
+ },
742
+ "node_modules/@rolldown/binding-wasm32-wasi": {
743
+ "version": "1.0.0-rc.15",
744
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.15.tgz",
745
+ "integrity": "sha512-ApLruZq/ig+nhaE7OJm4lDjayUnOHVUa77zGeqnqZ9pn0ovdVbbNPerVibLXDmWeUZXjIYIT8V3xkT58Rm9u5Q==",
746
+ "cpu": [
747
+ "wasm32"
748
+ ],
749
+ "license": "MIT",
750
+ "optional": true,
751
+ "dependencies": {
752
+ "@emnapi/core": "1.9.2",
753
+ "@emnapi/runtime": "1.9.2",
754
+ "@napi-rs/wasm-runtime": "^1.1.3"
755
+ },
756
+ "engines": {
757
+ "node": ">=14.0.0"
758
+ }
759
+ },
760
+ "node_modules/@rolldown/binding-win32-arm64-msvc": {
761
+ "version": "1.0.0-rc.15",
762
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.15.tgz",
763
+ "integrity": "sha512-KmoUoU7HnN+Si5YWJigfTws1jz1bKBYDQKdbLspz0UaqjjFkddHsqorgiW1mxcAj88lYUE6NC/zJNwT+SloqtA==",
764
+ "cpu": [
765
+ "arm64"
766
+ ],
767
+ "license": "MIT",
768
+ "optional": true,
769
+ "os": [
770
+ "win32"
771
+ ],
772
+ "engines": {
773
+ "node": "^20.19.0 || >=22.12.0"
774
+ }
775
+ },
776
+ "node_modules/@rolldown/binding-win32-x64-msvc": {
777
+ "version": "1.0.0-rc.15",
778
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.15.tgz",
779
+ "integrity": "sha512-3P2A8L+x75qavWLe/Dll3EYBJLQmtkJN8rfh+U/eR3MqMgL/h98PhYI+JFfXuDPgPeCB7iZAKiqii5vqOvnA0g==",
780
+ "cpu": [
781
+ "x64"
782
+ ],
783
+ "license": "MIT",
784
+ "optional": true,
785
+ "os": [
786
+ "win32"
787
+ ],
788
+ "engines": {
789
+ "node": "^20.19.0 || >=22.12.0"
790
+ }
791
+ },
792
+ "node_modules/@rolldown/pluginutils": {
793
+ "version": "1.0.0-rc.15",
794
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.15.tgz",
795
+ "integrity": "sha512-UromN0peaE53IaBRe9W7CjrZgXl90fqGpK+mIZbA3qSTeYqg3pqpROBdIPvOG3F5ereDHNwoHBI2e50n1BDr1g==",
796
+ "license": "MIT"
797
+ },
798
+ "node_modules/@standard-schema/spec": {
799
+ "version": "1.1.0",
800
+ "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
801
+ "integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
802
+ "dev": true,
803
+ "license": "MIT"
804
+ },
805
+ "node_modules/@sveltejs/acorn-typescript": {
806
+ "version": "1.0.9",
807
+ "resolved": "https://registry.npmjs.org/@sveltejs/acorn-typescript/-/acorn-typescript-1.0.9.tgz",
808
+ "integrity": "sha512-lVJX6qEgs/4DOcRTpo56tmKzVPtoWAaVbL4hfO7t7NVwl9AAXzQR6cihesW1BmNMPl+bK6dreu2sOKBP2Q9CIA==",
809
+ "dev": true,
810
+ "license": "MIT",
811
+ "peerDependencies": {
812
+ "acorn": "^8.9.0"
813
+ }
814
+ },
815
+ "node_modules/@sveltejs/adapter-auto": {
816
+ "version": "7.0.1",
817
+ "resolved": "https://registry.npmjs.org/@sveltejs/adapter-auto/-/adapter-auto-7.0.1.tgz",
818
+ "integrity": "sha512-dvuPm1E7M9NI/+canIQ6KKQDU2AkEefEZ2Dp7cY6uKoPq9Z/PhOXABe526UdW2mN986gjVkuSLkOYIBnS/M2LQ==",
819
+ "dev": true,
820
+ "license": "MIT",
821
+ "peerDependencies": {
822
+ "@sveltejs/kit": "^2.0.0"
823
+ }
824
+ },
825
+ "node_modules/@sveltejs/adapter-static": {
826
+ "version": "3.0.10",
827
+ "resolved": "https://registry.npmjs.org/@sveltejs/adapter-static/-/adapter-static-3.0.10.tgz",
828
+ "integrity": "sha512-7D9lYFWJmB7zxZyTE/qxjksvMqzMuYrrsyh1f4AlZqeZeACPRySjbC3aFiY55wb1tWUaKOQG9PVbm74JcN2Iew==",
829
+ "dev": true,
830
+ "license": "MIT",
831
+ "peerDependencies": {
832
+ "@sveltejs/kit": "^2.0.0"
833
+ }
834
+ },
835
+ "node_modules/@sveltejs/kit": {
836
+ "version": "2.57.1",
837
+ "resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.57.1.tgz",
838
+ "integrity": "sha512-VRdSbB96cI1EnRh09CqmnQqP/YJvET5buj8S6k7CxaJqBJD4bw4fRKDjcarAj/eX9k2eHifQfDH8NtOh+ZxxPw==",
839
+ "dev": true,
840
+ "license": "MIT",
841
+ "dependencies": {
842
+ "@standard-schema/spec": "^1.0.0",
843
+ "@sveltejs/acorn-typescript": "^1.0.5",
844
+ "@types/cookie": "^0.6.0",
845
+ "acorn": "^8.14.1",
846
+ "cookie": "^0.6.0",
847
+ "devalue": "^5.6.4",
848
+ "esm-env": "^1.2.2",
849
+ "kleur": "^4.1.5",
850
+ "magic-string": "^0.30.5",
851
+ "mrmime": "^2.0.0",
852
+ "set-cookie-parser": "^3.0.0",
853
+ "sirv": "^3.0.0"
854
+ },
855
+ "bin": {
856
+ "svelte-kit": "svelte-kit.js"
857
+ },
858
+ "engines": {
859
+ "node": ">=18.13"
860
+ },
861
+ "peerDependencies": {
862
+ "@opentelemetry/api": "^1.0.0",
863
+ "@sveltejs/vite-plugin-svelte": "^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0 || ^7.0.0",
864
+ "svelte": "^4.0.0 || ^5.0.0-next.0",
865
+ "typescript": "^5.3.3 || ^6.0.0",
866
+ "vite": "^5.0.3 || ^6.0.0 || ^7.0.0-beta.0 || ^8.0.0"
867
+ },
868
+ "peerDependenciesMeta": {
869
+ "@opentelemetry/api": {
870
+ "optional": true
871
+ },
872
+ "typescript": {
873
+ "optional": true
874
+ }
875
+ }
876
+ },
877
+ "node_modules/@sveltejs/vite-plugin-svelte": {
878
+ "version": "7.0.0",
879
+ "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-7.0.0.tgz",
880
+ "integrity": "sha512-ILXmxC7HAsnkK2eslgPetrqqW1BKSL7LktsFgqzNj83MaivMGZzluWq32m25j2mDOjmSKX7GGWahePhuEs7P/g==",
881
+ "dev": true,
882
+ "license": "MIT",
883
+ "dependencies": {
884
+ "deepmerge": "^4.3.1",
885
+ "magic-string": "^0.30.21",
886
+ "obug": "^2.1.0",
887
+ "vitefu": "^1.1.2"
888
+ },
889
+ "engines": {
890
+ "node": "^20.19 || ^22.12 || >=24"
891
+ },
892
+ "peerDependencies": {
893
+ "svelte": "^5.46.4",
894
+ "vite": "^8.0.0-beta.7 || ^8.0.0"
895
+ }
896
+ },
897
+ "node_modules/@tailwindcss/node": {
898
+ "version": "4.2.2",
899
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.2.tgz",
900
+ "integrity": "sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==",
901
+ "license": "MIT",
902
+ "dependencies": {
903
+ "@jridgewell/remapping": "^2.3.5",
904
+ "enhanced-resolve": "^5.19.0",
905
+ "jiti": "^2.6.1",
906
+ "lightningcss": "1.32.0",
907
+ "magic-string": "^0.30.21",
908
+ "source-map-js": "^1.2.1",
909
+ "tailwindcss": "4.2.2"
910
+ }
911
+ },
912
+ "node_modules/@tailwindcss/oxide": {
913
+ "version": "4.2.2",
914
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.2.tgz",
915
+ "integrity": "sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==",
916
+ "license": "MIT",
917
+ "engines": {
918
+ "node": ">= 20"
919
+ },
920
+ "optionalDependencies": {
921
+ "@tailwindcss/oxide-android-arm64": "4.2.2",
922
+ "@tailwindcss/oxide-darwin-arm64": "4.2.2",
923
+ "@tailwindcss/oxide-darwin-x64": "4.2.2",
924
+ "@tailwindcss/oxide-freebsd-x64": "4.2.2",
925
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.2",
926
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.2.2",
927
+ "@tailwindcss/oxide-linux-arm64-musl": "4.2.2",
928
+ "@tailwindcss/oxide-linux-x64-gnu": "4.2.2",
929
+ "@tailwindcss/oxide-linux-x64-musl": "4.2.2",
930
+ "@tailwindcss/oxide-wasm32-wasi": "4.2.2",
931
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.2.2",
932
+ "@tailwindcss/oxide-win32-x64-msvc": "4.2.2"
933
+ }
934
+ },
935
+ "node_modules/@tailwindcss/oxide-android-arm64": {
936
+ "version": "4.2.2",
937
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.2.tgz",
938
+ "integrity": "sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==",
939
+ "cpu": [
940
+ "arm64"
941
+ ],
942
+ "license": "MIT",
943
+ "optional": true,
944
+ "os": [
945
+ "android"
946
+ ],
947
+ "engines": {
948
+ "node": ">= 20"
949
+ }
950
+ },
951
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
952
+ "version": "4.2.2",
953
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.2.tgz",
954
+ "integrity": "sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==",
955
+ "cpu": [
956
+ "arm64"
957
+ ],
958
+ "license": "MIT",
959
+ "optional": true,
960
+ "os": [
961
+ "darwin"
962
+ ],
963
+ "engines": {
964
+ "node": ">= 20"
965
+ }
966
+ },
967
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
968
+ "version": "4.2.2",
969
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.2.tgz",
970
+ "integrity": "sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==",
971
+ "cpu": [
972
+ "x64"
973
+ ],
974
+ "license": "MIT",
975
+ "optional": true,
976
+ "os": [
977
+ "darwin"
978
+ ],
979
+ "engines": {
980
+ "node": ">= 20"
981
+ }
982
+ },
983
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
984
+ "version": "4.2.2",
985
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.2.tgz",
986
+ "integrity": "sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==",
987
+ "cpu": [
988
+ "x64"
989
+ ],
990
+ "license": "MIT",
991
+ "optional": true,
992
+ "os": [
993
+ "freebsd"
994
+ ],
995
+ "engines": {
996
+ "node": ">= 20"
997
+ }
998
+ },
999
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
1000
+ "version": "4.2.2",
1001
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.2.tgz",
1002
+ "integrity": "sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==",
1003
+ "cpu": [
1004
+ "arm"
1005
+ ],
1006
+ "license": "MIT",
1007
+ "optional": true,
1008
+ "os": [
1009
+ "linux"
1010
+ ],
1011
+ "engines": {
1012
+ "node": ">= 20"
1013
+ }
1014
+ },
1015
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
1016
+ "version": "4.2.2",
1017
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.2.tgz",
1018
+ "integrity": "sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==",
1019
+ "cpu": [
1020
+ "arm64"
1021
+ ],
1022
+ "license": "MIT",
1023
+ "optional": true,
1024
+ "os": [
1025
+ "linux"
1026
+ ],
1027
+ "engines": {
1028
+ "node": ">= 20"
1029
+ }
1030
+ },
1031
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
1032
+ "version": "4.2.2",
1033
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.2.tgz",
1034
+ "integrity": "sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==",
1035
+ "cpu": [
1036
+ "arm64"
1037
+ ],
1038
+ "license": "MIT",
1039
+ "optional": true,
1040
+ "os": [
1041
+ "linux"
1042
+ ],
1043
+ "engines": {
1044
+ "node": ">= 20"
1045
+ }
1046
+ },
1047
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
1048
+ "version": "4.2.2",
1049
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.2.tgz",
1050
+ "integrity": "sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==",
1051
+ "cpu": [
1052
+ "x64"
1053
+ ],
1054
+ "license": "MIT",
1055
+ "optional": true,
1056
+ "os": [
1057
+ "linux"
1058
+ ],
1059
+ "engines": {
1060
+ "node": ">= 20"
1061
+ }
1062
+ },
1063
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
1064
+ "version": "4.2.2",
1065
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.2.tgz",
1066
+ "integrity": "sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==",
1067
+ "cpu": [
1068
+ "x64"
1069
+ ],
1070
+ "license": "MIT",
1071
+ "optional": true,
1072
+ "os": [
1073
+ "linux"
1074
+ ],
1075
+ "engines": {
1076
+ "node": ">= 20"
1077
+ }
1078
+ },
1079
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
1080
+ "version": "4.2.2",
1081
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.2.tgz",
1082
+ "integrity": "sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==",
1083
+ "bundleDependencies": [
1084
+ "@napi-rs/wasm-runtime",
1085
+ "@emnapi/core",
1086
+ "@emnapi/runtime",
1087
+ "@tybys/wasm-util",
1088
+ "@emnapi/wasi-threads",
1089
+ "tslib"
1090
+ ],
1091
+ "cpu": [
1092
+ "wasm32"
1093
+ ],
1094
+ "license": "MIT",
1095
+ "optional": true,
1096
+ "dependencies": {
1097
+ "@emnapi/core": "^1.8.1",
1098
+ "@emnapi/runtime": "^1.8.1",
1099
+ "@emnapi/wasi-threads": "^1.1.0",
1100
+ "@napi-rs/wasm-runtime": "^1.1.1",
1101
+ "@tybys/wasm-util": "^0.10.1",
1102
+ "tslib": "^2.8.1"
1103
+ },
1104
+ "engines": {
1105
+ "node": ">=14.0.0"
1106
+ }
1107
+ },
1108
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
1109
+ "version": "4.2.2",
1110
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.2.tgz",
1111
+ "integrity": "sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==",
1112
+ "cpu": [
1113
+ "arm64"
1114
+ ],
1115
+ "license": "MIT",
1116
+ "optional": true,
1117
+ "os": [
1118
+ "win32"
1119
+ ],
1120
+ "engines": {
1121
+ "node": ">= 20"
1122
+ }
1123
+ },
1124
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
1125
+ "version": "4.2.2",
1126
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.2.tgz",
1127
+ "integrity": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==",
1128
+ "cpu": [
1129
+ "x64"
1130
+ ],
1131
+ "license": "MIT",
1132
+ "optional": true,
1133
+ "os": [
1134
+ "win32"
1135
+ ],
1136
+ "engines": {
1137
+ "node": ">= 20"
1138
+ }
1139
+ },
1140
+ "node_modules/@tailwindcss/vite": {
1141
+ "version": "4.2.2",
1142
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.2.2.tgz",
1143
+ "integrity": "sha512-mEiF5HO1QqCLXoNEfXVA1Tzo+cYsrqV7w9Juj2wdUFyW07JRenqMG225MvPwr3ZD9N1bFQj46X7r33iHxLUW0w==",
1144
+ "license": "MIT",
1145
+ "dependencies": {
1146
+ "@tailwindcss/node": "4.2.2",
1147
+ "@tailwindcss/oxide": "4.2.2",
1148
+ "tailwindcss": "4.2.2"
1149
+ },
1150
+ "peerDependencies": {
1151
+ "vite": "^5.2.0 || ^6 || ^7 || ^8"
1152
+ }
1153
+ },
1154
+ "node_modules/@tybys/wasm-util": {
1155
+ "version": "0.10.1",
1156
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz",
1157
+ "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==",
1158
+ "license": "MIT",
1159
+ "optional": true,
1160
+ "dependencies": {
1161
+ "tslib": "^2.4.0"
1162
+ }
1163
+ },
1164
+ "node_modules/@types/cookie": {
1165
+ "version": "0.6.0",
1166
+ "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz",
1167
+ "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==",
1168
+ "dev": true,
1169
+ "license": "MIT"
1170
+ },
1171
+ "node_modules/@types/estree": {
1172
+ "version": "1.0.8",
1173
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
1174
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
1175
+ "dev": true,
1176
+ "license": "MIT"
1177
+ },
1178
+ "node_modules/@types/trusted-types": {
1179
+ "version": "2.0.7",
1180
+ "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
1181
+ "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==",
1182
+ "dev": true,
1183
+ "license": "MIT"
1184
+ },
1185
+ "node_modules/@xterm/addon-fit": {
1186
+ "version": "0.11.0",
1187
+ "resolved": "https://registry.npmjs.org/@xterm/addon-fit/-/addon-fit-0.11.0.tgz",
1188
+ "integrity": "sha512-jYcgT6xtVYhnhgxh3QgYDnnNMYTcf8ElbxxFzX0IZo+vabQqSPAjC3c1wJrKB5E19VwQei89QCiZZP86DCPF7g==",
1189
+ "license": "MIT"
1190
+ },
1191
+ "node_modules/@xterm/xterm": {
1192
+ "version": "6.0.0",
1193
+ "resolved": "https://registry.npmjs.org/@xterm/xterm/-/xterm-6.0.0.tgz",
1194
+ "integrity": "sha512-TQwDdQGtwwDt+2cgKDLn0IRaSxYu1tSUjgKarSDkUM0ZNiSRXFpjxEsvc/Zgc5kq5omJ+V0a8/kIM2WD3sMOYg==",
1195
+ "license": "MIT",
1196
+ "workspaces": [
1197
+ "addons/*"
1198
+ ]
1199
+ },
1200
+ "node_modules/acorn": {
1201
+ "version": "8.16.0",
1202
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz",
1203
+ "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
1204
+ "dev": true,
1205
+ "license": "MIT",
1206
+ "bin": {
1207
+ "acorn": "bin/acorn"
1208
+ },
1209
+ "engines": {
1210
+ "node": ">=0.4.0"
1211
+ }
1212
+ },
1213
+ "node_modules/aria-query": {
1214
+ "version": "5.3.1",
1215
+ "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.1.tgz",
1216
+ "integrity": "sha512-Z/ZeOgVl7bcSYZ/u/rh0fOpvEpq//LZmdbkXyc7syVzjPAhfOa9ebsdTSjEBDU4vs5nC98Kfduj1uFo0qyET3g==",
1217
+ "dev": true,
1218
+ "license": "Apache-2.0",
1219
+ "engines": {
1220
+ "node": ">= 0.4"
1221
+ }
1222
+ },
1223
+ "node_modules/axobject-query": {
1224
+ "version": "4.1.0",
1225
+ "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz",
1226
+ "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==",
1227
+ "dev": true,
1228
+ "license": "Apache-2.0",
1229
+ "engines": {
1230
+ "node": ">= 0.4"
1231
+ }
1232
+ },
1233
+ "node_modules/chokidar": {
1234
+ "version": "4.0.3",
1235
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
1236
+ "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
1237
+ "dev": true,
1238
+ "license": "MIT",
1239
+ "dependencies": {
1240
+ "readdirp": "^4.0.1"
1241
+ },
1242
+ "engines": {
1243
+ "node": ">= 14.16.0"
1244
+ },
1245
+ "funding": {
1246
+ "url": "https://paulmillr.com/funding/"
1247
+ }
1248
+ },
1249
+ "node_modules/clsx": {
1250
+ "version": "2.1.1",
1251
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
1252
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
1253
+ "dev": true,
1254
+ "license": "MIT",
1255
+ "engines": {
1256
+ "node": ">=6"
1257
+ }
1258
+ },
1259
+ "node_modules/codemirror": {
1260
+ "version": "6.0.2",
1261
+ "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-6.0.2.tgz",
1262
+ "integrity": "sha512-VhydHotNW5w1UGK0Qj96BwSk/Zqbp9WbnyK2W/eVMv4QyF41INRGpjUhFJY7/uDNuudSc33a/PKr4iDqRduvHw==",
1263
+ "license": "MIT",
1264
+ "dependencies": {
1265
+ "@codemirror/autocomplete": "^6.0.0",
1266
+ "@codemirror/commands": "^6.0.0",
1267
+ "@codemirror/language": "^6.0.0",
1268
+ "@codemirror/lint": "^6.0.0",
1269
+ "@codemirror/search": "^6.0.0",
1270
+ "@codemirror/state": "^6.0.0",
1271
+ "@codemirror/view": "^6.0.0"
1272
+ }
1273
+ },
1274
+ "node_modules/cookie": {
1275
+ "version": "0.6.0",
1276
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz",
1277
+ "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==",
1278
+ "dev": true,
1279
+ "license": "MIT",
1280
+ "engines": {
1281
+ "node": ">= 0.6"
1282
+ }
1283
+ },
1284
+ "node_modules/crelt": {
1285
+ "version": "1.0.6",
1286
+ "resolved": "https://registry.npmjs.org/crelt/-/crelt-1.0.6.tgz",
1287
+ "integrity": "sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==",
1288
+ "license": "MIT"
1289
+ },
1290
+ "node_modules/deepmerge": {
1291
+ "version": "4.3.1",
1292
+ "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
1293
+ "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
1294
+ "dev": true,
1295
+ "license": "MIT",
1296
+ "engines": {
1297
+ "node": ">=0.10.0"
1298
+ }
1299
+ },
1300
+ "node_modules/detect-libc": {
1301
+ "version": "2.1.2",
1302
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1303
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1304
+ "license": "Apache-2.0",
1305
+ "engines": {
1306
+ "node": ">=8"
1307
+ }
1308
+ },
1309
+ "node_modules/devalue": {
1310
+ "version": "5.7.1",
1311
+ "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.7.1.tgz",
1312
+ "integrity": "sha512-MUbZ586EgQqdRnC4yDrlod3BEdyvE4TapGYHMW2CiaW+KkkFmWEFqBUaLltEZCGi0iFXCEjRF0OjF0DV2QHjOA==",
1313
+ "dev": true,
1314
+ "license": "MIT"
1315
+ },
1316
+ "node_modules/enhanced-resolve": {
1317
+ "version": "5.20.1",
1318
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.1.tgz",
1319
+ "integrity": "sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==",
1320
+ "license": "MIT",
1321
+ "dependencies": {
1322
+ "graceful-fs": "^4.2.4",
1323
+ "tapable": "^2.3.0"
1324
+ },
1325
+ "engines": {
1326
+ "node": ">=10.13.0"
1327
+ }
1328
+ },
1329
+ "node_modules/esm-env": {
1330
+ "version": "1.2.2",
1331
+ "resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.2.2.tgz",
1332
+ "integrity": "sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==",
1333
+ "dev": true,
1334
+ "license": "MIT"
1335
+ },
1336
+ "node_modules/esrap": {
1337
+ "version": "2.2.5",
1338
+ "resolved": "https://registry.npmjs.org/esrap/-/esrap-2.2.5.tgz",
1339
+ "integrity": "sha512-/yLB1538mag+dn0wsePTe8C0rDIjUOaJpMs2McodSzmM2msWcZsBSdRtg6HOBt0A/r82BN+Md3pgwSc/uWt2Ig==",
1340
+ "dev": true,
1341
+ "license": "MIT",
1342
+ "dependencies": {
1343
+ "@jridgewell/sourcemap-codec": "^1.4.15"
1344
+ },
1345
+ "peerDependencies": {
1346
+ "@typescript-eslint/types": "^8.2.0"
1347
+ },
1348
+ "peerDependenciesMeta": {
1349
+ "@typescript-eslint/types": {
1350
+ "optional": true
1351
+ }
1352
+ }
1353
+ },
1354
+ "node_modules/fdir": {
1355
+ "version": "6.5.0",
1356
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
1357
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
1358
+ "license": "MIT",
1359
+ "engines": {
1360
+ "node": ">=12.0.0"
1361
+ },
1362
+ "peerDependencies": {
1363
+ "picomatch": "^3 || ^4"
1364
+ },
1365
+ "peerDependenciesMeta": {
1366
+ "picomatch": {
1367
+ "optional": true
1368
+ }
1369
+ }
1370
+ },
1371
+ "node_modules/fsevents": {
1372
+ "version": "2.3.3",
1373
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1374
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1375
+ "hasInstallScript": true,
1376
+ "license": "MIT",
1377
+ "optional": true,
1378
+ "os": [
1379
+ "darwin"
1380
+ ],
1381
+ "engines": {
1382
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1383
+ }
1384
+ },
1385
+ "node_modules/graceful-fs": {
1386
+ "version": "4.2.11",
1387
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
1388
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
1389
+ "license": "ISC"
1390
+ },
1391
+ "node_modules/is-reference": {
1392
+ "version": "3.0.3",
1393
+ "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.3.tgz",
1394
+ "integrity": "sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==",
1395
+ "dev": true,
1396
+ "license": "MIT",
1397
+ "dependencies": {
1398
+ "@types/estree": "^1.0.6"
1399
+ }
1400
+ },
1401
+ "node_modules/jiti": {
1402
+ "version": "2.6.1",
1403
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
1404
+ "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
1405
+ "license": "MIT",
1406
+ "bin": {
1407
+ "jiti": "lib/jiti-cli.mjs"
1408
+ }
1409
+ },
1410
+ "node_modules/kleur": {
1411
+ "version": "4.1.5",
1412
+ "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
1413
+ "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
1414
+ "dev": true,
1415
+ "license": "MIT",
1416
+ "engines": {
1417
+ "node": ">=6"
1418
+ }
1419
+ },
1420
+ "node_modules/lightningcss": {
1421
+ "version": "1.32.0",
1422
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
1423
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
1424
+ "license": "MPL-2.0",
1425
+ "dependencies": {
1426
+ "detect-libc": "^2.0.3"
1427
+ },
1428
+ "engines": {
1429
+ "node": ">= 12.0.0"
1430
+ },
1431
+ "funding": {
1432
+ "type": "opencollective",
1433
+ "url": "https://opencollective.com/parcel"
1434
+ },
1435
+ "optionalDependencies": {
1436
+ "lightningcss-android-arm64": "1.32.0",
1437
+ "lightningcss-darwin-arm64": "1.32.0",
1438
+ "lightningcss-darwin-x64": "1.32.0",
1439
+ "lightningcss-freebsd-x64": "1.32.0",
1440
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
1441
+ "lightningcss-linux-arm64-gnu": "1.32.0",
1442
+ "lightningcss-linux-arm64-musl": "1.32.0",
1443
+ "lightningcss-linux-x64-gnu": "1.32.0",
1444
+ "lightningcss-linux-x64-musl": "1.32.0",
1445
+ "lightningcss-win32-arm64-msvc": "1.32.0",
1446
+ "lightningcss-win32-x64-msvc": "1.32.0"
1447
+ }
1448
+ },
1449
+ "node_modules/lightningcss-android-arm64": {
1450
+ "version": "1.32.0",
1451
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
1452
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
1453
+ "cpu": [
1454
+ "arm64"
1455
+ ],
1456
+ "license": "MPL-2.0",
1457
+ "optional": true,
1458
+ "os": [
1459
+ "android"
1460
+ ],
1461
+ "engines": {
1462
+ "node": ">= 12.0.0"
1463
+ },
1464
+ "funding": {
1465
+ "type": "opencollective",
1466
+ "url": "https://opencollective.com/parcel"
1467
+ }
1468
+ },
1469
+ "node_modules/lightningcss-darwin-arm64": {
1470
+ "version": "1.32.0",
1471
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
1472
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
1473
+ "cpu": [
1474
+ "arm64"
1475
+ ],
1476
+ "license": "MPL-2.0",
1477
+ "optional": true,
1478
+ "os": [
1479
+ "darwin"
1480
+ ],
1481
+ "engines": {
1482
+ "node": ">= 12.0.0"
1483
+ },
1484
+ "funding": {
1485
+ "type": "opencollective",
1486
+ "url": "https://opencollective.com/parcel"
1487
+ }
1488
+ },
1489
+ "node_modules/lightningcss-darwin-x64": {
1490
+ "version": "1.32.0",
1491
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
1492
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
1493
+ "cpu": [
1494
+ "x64"
1495
+ ],
1496
+ "license": "MPL-2.0",
1497
+ "optional": true,
1498
+ "os": [
1499
+ "darwin"
1500
+ ],
1501
+ "engines": {
1502
+ "node": ">= 12.0.0"
1503
+ },
1504
+ "funding": {
1505
+ "type": "opencollective",
1506
+ "url": "https://opencollective.com/parcel"
1507
+ }
1508
+ },
1509
+ "node_modules/lightningcss-freebsd-x64": {
1510
+ "version": "1.32.0",
1511
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
1512
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
1513
+ "cpu": [
1514
+ "x64"
1515
+ ],
1516
+ "license": "MPL-2.0",
1517
+ "optional": true,
1518
+ "os": [
1519
+ "freebsd"
1520
+ ],
1521
+ "engines": {
1522
+ "node": ">= 12.0.0"
1523
+ },
1524
+ "funding": {
1525
+ "type": "opencollective",
1526
+ "url": "https://opencollective.com/parcel"
1527
+ }
1528
+ },
1529
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
1530
+ "version": "1.32.0",
1531
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
1532
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
1533
+ "cpu": [
1534
+ "arm"
1535
+ ],
1536
+ "license": "MPL-2.0",
1537
+ "optional": true,
1538
+ "os": [
1539
+ "linux"
1540
+ ],
1541
+ "engines": {
1542
+ "node": ">= 12.0.0"
1543
+ },
1544
+ "funding": {
1545
+ "type": "opencollective",
1546
+ "url": "https://opencollective.com/parcel"
1547
+ }
1548
+ },
1549
+ "node_modules/lightningcss-linux-arm64-gnu": {
1550
+ "version": "1.32.0",
1551
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
1552
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
1553
+ "cpu": [
1554
+ "arm64"
1555
+ ],
1556
+ "license": "MPL-2.0",
1557
+ "optional": true,
1558
+ "os": [
1559
+ "linux"
1560
+ ],
1561
+ "engines": {
1562
+ "node": ">= 12.0.0"
1563
+ },
1564
+ "funding": {
1565
+ "type": "opencollective",
1566
+ "url": "https://opencollective.com/parcel"
1567
+ }
1568
+ },
1569
+ "node_modules/lightningcss-linux-arm64-musl": {
1570
+ "version": "1.32.0",
1571
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
1572
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
1573
+ "cpu": [
1574
+ "arm64"
1575
+ ],
1576
+ "license": "MPL-2.0",
1577
+ "optional": true,
1578
+ "os": [
1579
+ "linux"
1580
+ ],
1581
+ "engines": {
1582
+ "node": ">= 12.0.0"
1583
+ },
1584
+ "funding": {
1585
+ "type": "opencollective",
1586
+ "url": "https://opencollective.com/parcel"
1587
+ }
1588
+ },
1589
+ "node_modules/lightningcss-linux-x64-gnu": {
1590
+ "version": "1.32.0",
1591
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
1592
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
1593
+ "cpu": [
1594
+ "x64"
1595
+ ],
1596
+ "license": "MPL-2.0",
1597
+ "optional": true,
1598
+ "os": [
1599
+ "linux"
1600
+ ],
1601
+ "engines": {
1602
+ "node": ">= 12.0.0"
1603
+ },
1604
+ "funding": {
1605
+ "type": "opencollective",
1606
+ "url": "https://opencollective.com/parcel"
1607
+ }
1608
+ },
1609
+ "node_modules/lightningcss-linux-x64-musl": {
1610
+ "version": "1.32.0",
1611
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
1612
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
1613
+ "cpu": [
1614
+ "x64"
1615
+ ],
1616
+ "license": "MPL-2.0",
1617
+ "optional": true,
1618
+ "os": [
1619
+ "linux"
1620
+ ],
1621
+ "engines": {
1622
+ "node": ">= 12.0.0"
1623
+ },
1624
+ "funding": {
1625
+ "type": "opencollective",
1626
+ "url": "https://opencollective.com/parcel"
1627
+ }
1628
+ },
1629
+ "node_modules/lightningcss-win32-arm64-msvc": {
1630
+ "version": "1.32.0",
1631
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
1632
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
1633
+ "cpu": [
1634
+ "arm64"
1635
+ ],
1636
+ "license": "MPL-2.0",
1637
+ "optional": true,
1638
+ "os": [
1639
+ "win32"
1640
+ ],
1641
+ "engines": {
1642
+ "node": ">= 12.0.0"
1643
+ },
1644
+ "funding": {
1645
+ "type": "opencollective",
1646
+ "url": "https://opencollective.com/parcel"
1647
+ }
1648
+ },
1649
+ "node_modules/lightningcss-win32-x64-msvc": {
1650
+ "version": "1.32.0",
1651
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
1652
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
1653
+ "cpu": [
1654
+ "x64"
1655
+ ],
1656
+ "license": "MPL-2.0",
1657
+ "optional": true,
1658
+ "os": [
1659
+ "win32"
1660
+ ],
1661
+ "engines": {
1662
+ "node": ">= 12.0.0"
1663
+ },
1664
+ "funding": {
1665
+ "type": "opencollective",
1666
+ "url": "https://opencollective.com/parcel"
1667
+ }
1668
+ },
1669
+ "node_modules/locate-character": {
1670
+ "version": "3.0.0",
1671
+ "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz",
1672
+ "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==",
1673
+ "dev": true,
1674
+ "license": "MIT"
1675
+ },
1676
+ "node_modules/magic-string": {
1677
+ "version": "0.30.21",
1678
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
1679
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
1680
+ "license": "MIT",
1681
+ "dependencies": {
1682
+ "@jridgewell/sourcemap-codec": "^1.5.5"
1683
+ }
1684
+ },
1685
+ "node_modules/mri": {
1686
+ "version": "1.2.0",
1687
+ "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
1688
+ "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
1689
+ "dev": true,
1690
+ "license": "MIT",
1691
+ "engines": {
1692
+ "node": ">=4"
1693
+ }
1694
+ },
1695
+ "node_modules/mrmime": {
1696
+ "version": "2.0.1",
1697
+ "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz",
1698
+ "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==",
1699
+ "dev": true,
1700
+ "license": "MIT",
1701
+ "engines": {
1702
+ "node": ">=10"
1703
+ }
1704
+ },
1705
+ "node_modules/nanoid": {
1706
+ "version": "3.3.11",
1707
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
1708
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
1709
+ "funding": [
1710
+ {
1711
+ "type": "github",
1712
+ "url": "https://github.com/sponsors/ai"
1713
+ }
1714
+ ],
1715
+ "license": "MIT",
1716
+ "bin": {
1717
+ "nanoid": "bin/nanoid.cjs"
1718
+ },
1719
+ "engines": {
1720
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
1721
+ }
1722
+ },
1723
+ "node_modules/obug": {
1724
+ "version": "2.1.1",
1725
+ "resolved": "https://registry.npmjs.org/obug/-/obug-2.1.1.tgz",
1726
+ "integrity": "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==",
1727
+ "dev": true,
1728
+ "funding": [
1729
+ "https://github.com/sponsors/sxzz",
1730
+ "https://opencollective.com/debug"
1731
+ ],
1732
+ "license": "MIT"
1733
+ },
1734
+ "node_modules/picocolors": {
1735
+ "version": "1.1.1",
1736
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
1737
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
1738
+ "license": "ISC"
1739
+ },
1740
+ "node_modules/picomatch": {
1741
+ "version": "4.0.4",
1742
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
1743
+ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
1744
+ "license": "MIT",
1745
+ "engines": {
1746
+ "node": ">=12"
1747
+ },
1748
+ "funding": {
1749
+ "url": "https://github.com/sponsors/jonschlinkert"
1750
+ }
1751
+ },
1752
+ "node_modules/postcss": {
1753
+ "version": "8.5.9",
1754
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.9.tgz",
1755
+ "integrity": "sha512-7a70Nsot+EMX9fFU3064K/kdHWZqGVY+BADLyXc8Dfv+mTLLVl6JzJpPaCZ2kQL9gIJvKXSLMHhqdRRjwQeFtw==",
1756
+ "funding": [
1757
+ {
1758
+ "type": "opencollective",
1759
+ "url": "https://opencollective.com/postcss/"
1760
+ },
1761
+ {
1762
+ "type": "tidelift",
1763
+ "url": "https://tidelift.com/funding/github/npm/postcss"
1764
+ },
1765
+ {
1766
+ "type": "github",
1767
+ "url": "https://github.com/sponsors/ai"
1768
+ }
1769
+ ],
1770
+ "license": "MIT",
1771
+ "dependencies": {
1772
+ "nanoid": "^3.3.11",
1773
+ "picocolors": "^1.1.1",
1774
+ "source-map-js": "^1.2.1"
1775
+ },
1776
+ "engines": {
1777
+ "node": "^10 || ^12 || >=14"
1778
+ }
1779
+ },
1780
+ "node_modules/readdirp": {
1781
+ "version": "4.1.2",
1782
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
1783
+ "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
1784
+ "dev": true,
1785
+ "license": "MIT",
1786
+ "engines": {
1787
+ "node": ">= 14.18.0"
1788
+ },
1789
+ "funding": {
1790
+ "type": "individual",
1791
+ "url": "https://paulmillr.com/funding/"
1792
+ }
1793
+ },
1794
+ "node_modules/rolldown": {
1795
+ "version": "1.0.0-rc.15",
1796
+ "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.15.tgz",
1797
+ "integrity": "sha512-Ff31guA5zT6WjnGp0SXw76X6hzGRk/OQq2hE+1lcDe+lJdHSgnSX6nK3erbONHyCbpSj9a9E+uX/OvytZoWp2g==",
1798
+ "license": "MIT",
1799
+ "dependencies": {
1800
+ "@oxc-project/types": "=0.124.0",
1801
+ "@rolldown/pluginutils": "1.0.0-rc.15"
1802
+ },
1803
+ "bin": {
1804
+ "rolldown": "bin/cli.mjs"
1805
+ },
1806
+ "engines": {
1807
+ "node": "^20.19.0 || >=22.12.0"
1808
+ },
1809
+ "optionalDependencies": {
1810
+ "@rolldown/binding-android-arm64": "1.0.0-rc.15",
1811
+ "@rolldown/binding-darwin-arm64": "1.0.0-rc.15",
1812
+ "@rolldown/binding-darwin-x64": "1.0.0-rc.15",
1813
+ "@rolldown/binding-freebsd-x64": "1.0.0-rc.15",
1814
+ "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.15",
1815
+ "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.15",
1816
+ "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.15",
1817
+ "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.15",
1818
+ "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.15",
1819
+ "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.15",
1820
+ "@rolldown/binding-linux-x64-musl": "1.0.0-rc.15",
1821
+ "@rolldown/binding-openharmony-arm64": "1.0.0-rc.15",
1822
+ "@rolldown/binding-wasm32-wasi": "1.0.0-rc.15",
1823
+ "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.15",
1824
+ "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.15"
1825
+ }
1826
+ },
1827
+ "node_modules/sade": {
1828
+ "version": "1.8.1",
1829
+ "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz",
1830
+ "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==",
1831
+ "dev": true,
1832
+ "license": "MIT",
1833
+ "dependencies": {
1834
+ "mri": "^1.1.0"
1835
+ },
1836
+ "engines": {
1837
+ "node": ">=6"
1838
+ }
1839
+ },
1840
+ "node_modules/set-cookie-parser": {
1841
+ "version": "3.1.0",
1842
+ "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-3.1.0.tgz",
1843
+ "integrity": "sha512-kjnC1DXBHcxaOaOXBHBeRtltsDG2nUiUni+jP92M9gYdW12rsmx92UsfpH7o5tDRs7I1ZZPSQJQGv3UaRfCiuw==",
1844
+ "dev": true,
1845
+ "license": "MIT"
1846
+ },
1847
+ "node_modules/sirv": {
1848
+ "version": "3.0.2",
1849
+ "resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.2.tgz",
1850
+ "integrity": "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==",
1851
+ "dev": true,
1852
+ "license": "MIT",
1853
+ "dependencies": {
1854
+ "@polka/url": "^1.0.0-next.24",
1855
+ "mrmime": "^2.0.0",
1856
+ "totalist": "^3.0.0"
1857
+ },
1858
+ "engines": {
1859
+ "node": ">=18"
1860
+ }
1861
+ },
1862
+ "node_modules/source-map-js": {
1863
+ "version": "1.2.1",
1864
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
1865
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
1866
+ "license": "BSD-3-Clause",
1867
+ "engines": {
1868
+ "node": ">=0.10.0"
1869
+ }
1870
+ },
1871
+ "node_modules/style-mod": {
1872
+ "version": "4.1.3",
1873
+ "resolved": "https://registry.npmjs.org/style-mod/-/style-mod-4.1.3.tgz",
1874
+ "integrity": "sha512-i/n8VsZydrugj3Iuzll8+x/00GH2vnYsk1eomD8QiRrSAeW6ItbCQDtfXCeJHd0iwiNagqjQkvpvREEPtW3IoQ==",
1875
+ "license": "MIT"
1876
+ },
1877
+ "node_modules/svelte": {
1878
+ "version": "5.55.3",
1879
+ "resolved": "https://registry.npmjs.org/svelte/-/svelte-5.55.3.tgz",
1880
+ "integrity": "sha512-dS1N+i3bA1v+c4UDb750MlN5vCO82G6vxh8HeTsPsTdJ1BLsN1zxSyDlIdBBqUjqZ/BxEwM8UrFf98aaoVnZFQ==",
1881
+ "dev": true,
1882
+ "license": "MIT",
1883
+ "dependencies": {
1884
+ "@jridgewell/remapping": "^2.3.4",
1885
+ "@jridgewell/sourcemap-codec": "^1.5.0",
1886
+ "@sveltejs/acorn-typescript": "^1.0.5",
1887
+ "@types/estree": "^1.0.5",
1888
+ "@types/trusted-types": "^2.0.7",
1889
+ "acorn": "^8.12.1",
1890
+ "aria-query": "5.3.1",
1891
+ "axobject-query": "^4.1.0",
1892
+ "clsx": "^2.1.1",
1893
+ "devalue": "^5.6.4",
1894
+ "esm-env": "^1.2.1",
1895
+ "esrap": "^2.2.4",
1896
+ "is-reference": "^3.0.3",
1897
+ "locate-character": "^3.0.0",
1898
+ "magic-string": "^0.30.11",
1899
+ "zimmerframe": "^1.1.2"
1900
+ },
1901
+ "engines": {
1902
+ "node": ">=18"
1903
+ }
1904
+ },
1905
+ "node_modules/svelte-check": {
1906
+ "version": "4.4.6",
1907
+ "resolved": "https://registry.npmjs.org/svelte-check/-/svelte-check-4.4.6.tgz",
1908
+ "integrity": "sha512-kP1zG81EWaFe9ZyTv4ZXv44Csi6Pkdpb7S3oj6m+K2ec/IcDg/a8LsFsnVLqm2nxtkSwsd5xPj/qFkTBgXHXjg==",
1909
+ "dev": true,
1910
+ "license": "MIT",
1911
+ "dependencies": {
1912
+ "@jridgewell/trace-mapping": "^0.3.25",
1913
+ "chokidar": "^4.0.1",
1914
+ "fdir": "^6.2.0",
1915
+ "picocolors": "^1.0.0",
1916
+ "sade": "^1.7.4"
1917
+ },
1918
+ "bin": {
1919
+ "svelte-check": "bin/svelte-check"
1920
+ },
1921
+ "engines": {
1922
+ "node": ">= 18.0.0"
1923
+ },
1924
+ "peerDependencies": {
1925
+ "svelte": "^4.0.0 || ^5.0.0-next.0",
1926
+ "typescript": ">=5.0.0"
1927
+ }
1928
+ },
1929
+ "node_modules/tailwindcss": {
1930
+ "version": "4.2.2",
1931
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.2.tgz",
1932
+ "integrity": "sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==",
1933
+ "license": "MIT"
1934
+ },
1935
+ "node_modules/tapable": {
1936
+ "version": "2.3.2",
1937
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.2.tgz",
1938
+ "integrity": "sha512-1MOpMXuhGzGL5TTCZFItxCc0AARf1EZFQkGqMm7ERKj8+Hgr5oLvJOVFcC+lRmR8hCe2S3jC4T5D7Vg/d7/fhA==",
1939
+ "license": "MIT",
1940
+ "engines": {
1941
+ "node": ">=6"
1942
+ },
1943
+ "funding": {
1944
+ "type": "opencollective",
1945
+ "url": "https://opencollective.com/webpack"
1946
+ }
1947
+ },
1948
+ "node_modules/tinyglobby": {
1949
+ "version": "0.2.16",
1950
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
1951
+ "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
1952
+ "license": "MIT",
1953
+ "dependencies": {
1954
+ "fdir": "^6.5.0",
1955
+ "picomatch": "^4.0.4"
1956
+ },
1957
+ "engines": {
1958
+ "node": ">=12.0.0"
1959
+ },
1960
+ "funding": {
1961
+ "url": "https://github.com/sponsors/SuperchupuDev"
1962
+ }
1963
+ },
1964
+ "node_modules/totalist": {
1965
+ "version": "3.0.1",
1966
+ "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz",
1967
+ "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==",
1968
+ "dev": true,
1969
+ "license": "MIT",
1970
+ "engines": {
1971
+ "node": ">=6"
1972
+ }
1973
+ },
1974
+ "node_modules/tslib": {
1975
+ "version": "2.8.1",
1976
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
1977
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
1978
+ "license": "0BSD",
1979
+ "optional": true
1980
+ },
1981
+ "node_modules/typescript": {
1982
+ "version": "6.0.2",
1983
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.2.tgz",
1984
+ "integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==",
1985
+ "dev": true,
1986
+ "license": "Apache-2.0",
1987
+ "bin": {
1988
+ "tsc": "bin/tsc",
1989
+ "tsserver": "bin/tsserver"
1990
+ },
1991
+ "engines": {
1992
+ "node": ">=14.17"
1993
+ }
1994
+ },
1995
+ "node_modules/vite": {
1996
+ "version": "8.0.8",
1997
+ "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.8.tgz",
1998
+ "integrity": "sha512-dbU7/iLVa8KZALJyLOBOQ88nOXtNG8vxKuOT4I2mD+Ya70KPceF4IAmDsmU0h1Qsn5bPrvsY9HJstCRh3hG6Uw==",
1999
+ "license": "MIT",
2000
+ "dependencies": {
2001
+ "lightningcss": "^1.32.0",
2002
+ "picomatch": "^4.0.4",
2003
+ "postcss": "^8.5.8",
2004
+ "rolldown": "1.0.0-rc.15",
2005
+ "tinyglobby": "^0.2.15"
2006
+ },
2007
+ "bin": {
2008
+ "vite": "bin/vite.js"
2009
+ },
2010
+ "engines": {
2011
+ "node": "^20.19.0 || >=22.12.0"
2012
+ },
2013
+ "funding": {
2014
+ "url": "https://github.com/vitejs/vite?sponsor=1"
2015
+ },
2016
+ "optionalDependencies": {
2017
+ "fsevents": "~2.3.3"
2018
+ },
2019
+ "peerDependencies": {
2020
+ "@types/node": "^20.19.0 || >=22.12.0",
2021
+ "@vitejs/devtools": "^0.1.0",
2022
+ "esbuild": "^0.27.0 || ^0.28.0",
2023
+ "jiti": ">=1.21.0",
2024
+ "less": "^4.0.0",
2025
+ "sass": "^1.70.0",
2026
+ "sass-embedded": "^1.70.0",
2027
+ "stylus": ">=0.54.8",
2028
+ "sugarss": "^5.0.0",
2029
+ "terser": "^5.16.0",
2030
+ "tsx": "^4.8.1",
2031
+ "yaml": "^2.4.2"
2032
+ },
2033
+ "peerDependenciesMeta": {
2034
+ "@types/node": {
2035
+ "optional": true
2036
+ },
2037
+ "@vitejs/devtools": {
2038
+ "optional": true
2039
+ },
2040
+ "esbuild": {
2041
+ "optional": true
2042
+ },
2043
+ "jiti": {
2044
+ "optional": true
2045
+ },
2046
+ "less": {
2047
+ "optional": true
2048
+ },
2049
+ "sass": {
2050
+ "optional": true
2051
+ },
2052
+ "sass-embedded": {
2053
+ "optional": true
2054
+ },
2055
+ "stylus": {
2056
+ "optional": true
2057
+ },
2058
+ "sugarss": {
2059
+ "optional": true
2060
+ },
2061
+ "terser": {
2062
+ "optional": true
2063
+ },
2064
+ "tsx": {
2065
+ "optional": true
2066
+ },
2067
+ "yaml": {
2068
+ "optional": true
2069
+ }
2070
+ }
2071
+ },
2072
+ "node_modules/vitefu": {
2073
+ "version": "1.1.3",
2074
+ "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.1.3.tgz",
2075
+ "integrity": "sha512-ub4okH7Z5KLjb6hDyjqrGXqWtWvoYdU3IGm/NorpgHncKoLTCfRIbvlhBm7r0YstIaQRYlp4yEbFqDcKSzXSSg==",
2076
+ "dev": true,
2077
+ "license": "MIT",
2078
+ "workspaces": [
2079
+ "tests/deps/*",
2080
+ "tests/projects/*",
2081
+ "tests/projects/workspace/packages/*"
2082
+ ],
2083
+ "peerDependencies": {
2084
+ "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
2085
+ },
2086
+ "peerDependenciesMeta": {
2087
+ "vite": {
2088
+ "optional": true
2089
+ }
2090
+ }
2091
+ },
2092
+ "node_modules/w3c-keyname": {
2093
+ "version": "2.2.8",
2094
+ "resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz",
2095
+ "integrity": "sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==",
2096
+ "license": "MIT"
2097
+ },
2098
+ "node_modules/zimmerframe": {
2099
+ "version": "1.1.4",
2100
+ "resolved": "https://registry.npmjs.org/zimmerframe/-/zimmerframe-1.1.4.tgz",
2101
+ "integrity": "sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==",
2102
+ "dev": true,
2103
+ "license": "MIT"
2104
+ }
2105
+ }
2106
+ }