+24
.gitignore
+24
.gitignore
···
1
+
# build output
2
+
dist/
3
+
# generated types
4
+
.astro/
5
+
6
+
# dependencies
7
+
node_modules/
8
+
9
+
# logs
10
+
npm-debug.log*
11
+
yarn-debug.log*
12
+
yarn-error.log*
13
+
pnpm-debug.log*
14
+
15
+
16
+
# environment variables
17
+
.env
18
+
.env.production
19
+
20
+
# macOS-specific files
21
+
.DS_Store
22
+
23
+
# jetbrains setting folder
24
+
.idea/
+4
.vscode/extensions.json
+4
.vscode/extensions.json
+11
.vscode/launch.json
+11
.vscode/launch.json
+43
README.md
+43
README.md
···
1
+
# Astro Starter Kit: Minimal
2
+
3
+
```sh
4
+
npm create astro@latest -- --template minimal
5
+
```
6
+
7
+
> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
8
+
9
+
## 🚀 Project Structure
10
+
11
+
Inside of your Astro project, you'll see the following folders and files:
12
+
13
+
```text
14
+
/
15
+
├── public/
16
+
├── src/
17
+
│ └── pages/
18
+
│ └── index.astro
19
+
└── package.json
20
+
```
21
+
22
+
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
23
+
24
+
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
25
+
26
+
Any static assets, like images, can be placed in the `public/` directory.
27
+
28
+
## 🧞 Commands
29
+
30
+
All commands are run from the root of the project, from a terminal:
31
+
32
+
| Command | Action |
33
+
| :------------------------ | :----------------------------------------------- |
34
+
| `npm install` | Installs dependencies |
35
+
| `npm run dev` | Starts local dev server at `localhost:4321` |
36
+
| `npm run build` | Build your production site to `./dist/` |
37
+
| `npm run preview` | Preview your build locally, before deploying |
38
+
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
39
+
| `npm run astro -- --help` | Get help using the Astro CLI |
40
+
41
+
## 👀 Want to learn more?
42
+
43
+
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
+5
astro.config.mjs
+5
astro.config.mjs
+4876
package-lock.json
+4876
package-lock.json
···
1
+
{
2
+
"name": "attempt2-home",
3
+
"version": "0.0.1",
4
+
"lockfileVersion": 3,
5
+
"requires": true,
6
+
"packages": {
7
+
"": {
8
+
"name": "attempt2-home",
9
+
"version": "0.0.1",
10
+
"dependencies": {
11
+
"astro": "^5.12.8"
12
+
}
13
+
},
14
+
"node_modules/@astrojs/compiler": {
15
+
"version": "2.12.2",
16
+
"resolved": "https://registry.npmjs.org/@astrojs/compiler/-/compiler-2.12.2.tgz",
17
+
"integrity": "sha512-w2zfvhjNCkNMmMMOn5b0J8+OmUaBL1o40ipMvqcG6NRpdC+lKxmTi48DT8Xw0SzJ3AfmeFLB45zXZXtmbsjcgw==",
18
+
"license": "MIT"
19
+
},
20
+
"node_modules/@astrojs/internal-helpers": {
21
+
"version": "0.7.1",
22
+
"resolved": "https://registry.npmjs.org/@astrojs/internal-helpers/-/internal-helpers-0.7.1.tgz",
23
+
"integrity": "sha512-7dwEVigz9vUWDw3nRwLQ/yH/xYovlUA0ZD86xoeKEBmkz9O6iELG1yri67PgAPW6VLL/xInA4t7H0CK6VmtkKQ==",
24
+
"license": "MIT"
25
+
},
26
+
"node_modules/@astrojs/markdown-remark": {
27
+
"version": "6.3.5",
28
+
"resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-6.3.5.tgz",
29
+
"integrity": "sha512-MiR92CkE2BcyWf3b86cBBw/1dKiOH0qhLgXH2OXA6cScrrmmks1Rr4Tl0p/lFpvmgQQrP54Pd1uidJfmxGrpWQ==",
30
+
"license": "MIT",
31
+
"dependencies": {
32
+
"@astrojs/internal-helpers": "0.7.1",
33
+
"@astrojs/prism": "3.3.0",
34
+
"github-slugger": "^2.0.0",
35
+
"hast-util-from-html": "^2.0.3",
36
+
"hast-util-to-text": "^4.0.2",
37
+
"import-meta-resolve": "^4.1.0",
38
+
"js-yaml": "^4.1.0",
39
+
"mdast-util-definitions": "^6.0.0",
40
+
"rehype-raw": "^7.0.0",
41
+
"rehype-stringify": "^10.0.1",
42
+
"remark-gfm": "^4.0.1",
43
+
"remark-parse": "^11.0.0",
44
+
"remark-rehype": "^11.1.2",
45
+
"remark-smartypants": "^3.0.2",
46
+
"shiki": "^3.2.1",
47
+
"smol-toml": "^1.3.4",
48
+
"unified": "^11.0.5",
49
+
"unist-util-remove-position": "^5.0.0",
50
+
"unist-util-visit": "^5.0.0",
51
+
"unist-util-visit-parents": "^6.0.1",
52
+
"vfile": "^6.0.3"
53
+
}
54
+
},
55
+
"node_modules/@astrojs/prism": {
56
+
"version": "3.3.0",
57
+
"resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.3.0.tgz",
58
+
"integrity": "sha512-q8VwfU/fDZNoDOf+r7jUnMC2//H2l0TuQ6FkGJL8vD8nw/q5KiL3DS1KKBI3QhI9UQhpJ5dc7AtqfbXWuOgLCQ==",
59
+
"license": "MIT",
60
+
"dependencies": {
61
+
"prismjs": "^1.30.0"
62
+
},
63
+
"engines": {
64
+
"node": "18.20.8 || ^20.3.0 || >=22.0.0"
65
+
}
66
+
},
67
+
"node_modules/@astrojs/telemetry": {
68
+
"version": "3.3.0",
69
+
"resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.3.0.tgz",
70
+
"integrity": "sha512-UFBgfeldP06qu6khs/yY+q1cDAaArM2/7AEIqQ9Cuvf7B1hNLq0xDrZkct+QoIGyjq56y8IaE2I3CTvG99mlhQ==",
71
+
"license": "MIT",
72
+
"dependencies": {
73
+
"ci-info": "^4.2.0",
74
+
"debug": "^4.4.0",
75
+
"dlv": "^1.1.3",
76
+
"dset": "^3.1.4",
77
+
"is-docker": "^3.0.0",
78
+
"is-wsl": "^3.1.0",
79
+
"which-pm-runs": "^1.1.0"
80
+
},
81
+
"engines": {
82
+
"node": "18.20.8 || ^20.3.0 || >=22.0.0"
83
+
}
84
+
},
85
+
"node_modules/@babel/helper-string-parser": {
86
+
"version": "7.27.1",
87
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
88
+
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
89
+
"license": "MIT",
90
+
"engines": {
91
+
"node": ">=6.9.0"
92
+
}
93
+
},
94
+
"node_modules/@babel/helper-validator-identifier": {
95
+
"version": "7.27.1",
96
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
97
+
"integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
98
+
"license": "MIT",
99
+
"engines": {
100
+
"node": ">=6.9.0"
101
+
}
102
+
},
103
+
"node_modules/@babel/parser": {
104
+
"version": "7.28.0",
105
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.0.tgz",
106
+
"integrity": "sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==",
107
+
"license": "MIT",
108
+
"dependencies": {
109
+
"@babel/types": "^7.28.0"
110
+
},
111
+
"bin": {
112
+
"parser": "bin/babel-parser.js"
113
+
},
114
+
"engines": {
115
+
"node": ">=6.0.0"
116
+
}
117
+
},
118
+
"node_modules/@babel/types": {
119
+
"version": "7.28.2",
120
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.2.tgz",
121
+
"integrity": "sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==",
122
+
"license": "MIT",
123
+
"dependencies": {
124
+
"@babel/helper-string-parser": "^7.27.1",
125
+
"@babel/helper-validator-identifier": "^7.27.1"
126
+
},
127
+
"engines": {
128
+
"node": ">=6.9.0"
129
+
}
130
+
},
131
+
"node_modules/@capsizecss/unpack": {
132
+
"version": "2.4.0",
133
+
"resolved": "https://registry.npmjs.org/@capsizecss/unpack/-/unpack-2.4.0.tgz",
134
+
"integrity": "sha512-GrSU71meACqcmIUxPYOJvGKF0yryjN/L1aCuE9DViCTJI7bfkjgYDPD1zbNDcINJwSSP6UaBZY9GAbYDO7re0Q==",
135
+
"license": "MIT",
136
+
"dependencies": {
137
+
"blob-to-buffer": "^1.2.8",
138
+
"cross-fetch": "^3.0.4",
139
+
"fontkit": "^2.0.2"
140
+
}
141
+
},
142
+
"node_modules/@emnapi/runtime": {
143
+
"version": "1.4.5",
144
+
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.4.5.tgz",
145
+
"integrity": "sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==",
146
+
"license": "MIT",
147
+
"optional": true,
148
+
"dependencies": {
149
+
"tslib": "^2.4.0"
150
+
}
151
+
},
152
+
"node_modules/@esbuild/aix-ppc64": {
153
+
"version": "0.25.8",
154
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.8.tgz",
155
+
"integrity": "sha512-urAvrUedIqEiFR3FYSLTWQgLu5tb+m0qZw0NBEasUeo6wuqatkMDaRT+1uABiGXEu5vqgPd7FGE1BhsAIy9QVA==",
156
+
"cpu": [
157
+
"ppc64"
158
+
],
159
+
"license": "MIT",
160
+
"optional": true,
161
+
"os": [
162
+
"aix"
163
+
],
164
+
"engines": {
165
+
"node": ">=18"
166
+
}
167
+
},
168
+
"node_modules/@esbuild/android-arm": {
169
+
"version": "0.25.8",
170
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.8.tgz",
171
+
"integrity": "sha512-RONsAvGCz5oWyePVnLdZY/HHwA++nxYWIX1atInlaW6SEkwq6XkP3+cb825EUcRs5Vss/lGh/2YxAb5xqc07Uw==",
172
+
"cpu": [
173
+
"arm"
174
+
],
175
+
"license": "MIT",
176
+
"optional": true,
177
+
"os": [
178
+
"android"
179
+
],
180
+
"engines": {
181
+
"node": ">=18"
182
+
}
183
+
},
184
+
"node_modules/@esbuild/android-arm64": {
185
+
"version": "0.25.8",
186
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.8.tgz",
187
+
"integrity": "sha512-OD3p7LYzWpLhZEyATcTSJ67qB5D+20vbtr6vHlHWSQYhKtzUYrETuWThmzFpZtFsBIxRvhO07+UgVA9m0i/O1w==",
188
+
"cpu": [
189
+
"arm64"
190
+
],
191
+
"license": "MIT",
192
+
"optional": true,
193
+
"os": [
194
+
"android"
195
+
],
196
+
"engines": {
197
+
"node": ">=18"
198
+
}
199
+
},
200
+
"node_modules/@esbuild/android-x64": {
201
+
"version": "0.25.8",
202
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.8.tgz",
203
+
"integrity": "sha512-yJAVPklM5+4+9dTeKwHOaA+LQkmrKFX96BM0A/2zQrbS6ENCmxc4OVoBs5dPkCCak2roAD+jKCdnmOqKszPkjA==",
204
+
"cpu": [
205
+
"x64"
206
+
],
207
+
"license": "MIT",
208
+
"optional": true,
209
+
"os": [
210
+
"android"
211
+
],
212
+
"engines": {
213
+
"node": ">=18"
214
+
}
215
+
},
216
+
"node_modules/@esbuild/darwin-arm64": {
217
+
"version": "0.25.8",
218
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.8.tgz",
219
+
"integrity": "sha512-Jw0mxgIaYX6R8ODrdkLLPwBqHTtYHJSmzzd+QeytSugzQ0Vg4c5rDky5VgkoowbZQahCbsv1rT1KW72MPIkevw==",
220
+
"cpu": [
221
+
"arm64"
222
+
],
223
+
"license": "MIT",
224
+
"optional": true,
225
+
"os": [
226
+
"darwin"
227
+
],
228
+
"engines": {
229
+
"node": ">=18"
230
+
}
231
+
},
232
+
"node_modules/@esbuild/darwin-x64": {
233
+
"version": "0.25.8",
234
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.8.tgz",
235
+
"integrity": "sha512-Vh2gLxxHnuoQ+GjPNvDSDRpoBCUzY4Pu0kBqMBDlK4fuWbKgGtmDIeEC081xi26PPjn+1tct+Bh8FjyLlw1Zlg==",
236
+
"cpu": [
237
+
"x64"
238
+
],
239
+
"license": "MIT",
240
+
"optional": true,
241
+
"os": [
242
+
"darwin"
243
+
],
244
+
"engines": {
245
+
"node": ">=18"
246
+
}
247
+
},
248
+
"node_modules/@esbuild/freebsd-arm64": {
249
+
"version": "0.25.8",
250
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.8.tgz",
251
+
"integrity": "sha512-YPJ7hDQ9DnNe5vxOm6jaie9QsTwcKedPvizTVlqWG9GBSq+BuyWEDazlGaDTC5NGU4QJd666V0yqCBL2oWKPfA==",
252
+
"cpu": [
253
+
"arm64"
254
+
],
255
+
"license": "MIT",
256
+
"optional": true,
257
+
"os": [
258
+
"freebsd"
259
+
],
260
+
"engines": {
261
+
"node": ">=18"
262
+
}
263
+
},
264
+
"node_modules/@esbuild/freebsd-x64": {
265
+
"version": "0.25.8",
266
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.8.tgz",
267
+
"integrity": "sha512-MmaEXxQRdXNFsRN/KcIimLnSJrk2r5H8v+WVafRWz5xdSVmWLoITZQXcgehI2ZE6gioE6HirAEToM/RvFBeuhw==",
268
+
"cpu": [
269
+
"x64"
270
+
],
271
+
"license": "MIT",
272
+
"optional": true,
273
+
"os": [
274
+
"freebsd"
275
+
],
276
+
"engines": {
277
+
"node": ">=18"
278
+
}
279
+
},
280
+
"node_modules/@esbuild/linux-arm": {
281
+
"version": "0.25.8",
282
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.8.tgz",
283
+
"integrity": "sha512-FuzEP9BixzZohl1kLf76KEVOsxtIBFwCaLupVuk4eFVnOZfU+Wsn+x5Ryam7nILV2pkq2TqQM9EZPsOBuMC+kg==",
284
+
"cpu": [
285
+
"arm"
286
+
],
287
+
"license": "MIT",
288
+
"optional": true,
289
+
"os": [
290
+
"linux"
291
+
],
292
+
"engines": {
293
+
"node": ">=18"
294
+
}
295
+
},
296
+
"node_modules/@esbuild/linux-arm64": {
297
+
"version": "0.25.8",
298
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.8.tgz",
299
+
"integrity": "sha512-WIgg00ARWv/uYLU7lsuDK00d/hHSfES5BzdWAdAig1ioV5kaFNrtK8EqGcUBJhYqotlUByUKz5Qo6u8tt7iD/w==",
300
+
"cpu": [
301
+
"arm64"
302
+
],
303
+
"license": "MIT",
304
+
"optional": true,
305
+
"os": [
306
+
"linux"
307
+
],
308
+
"engines": {
309
+
"node": ">=18"
310
+
}
311
+
},
312
+
"node_modules/@esbuild/linux-ia32": {
313
+
"version": "0.25.8",
314
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.8.tgz",
315
+
"integrity": "sha512-A1D9YzRX1i+1AJZuFFUMP1E9fMaYY+GnSQil9Tlw05utlE86EKTUA7RjwHDkEitmLYiFsRd9HwKBPEftNdBfjg==",
316
+
"cpu": [
317
+
"ia32"
318
+
],
319
+
"license": "MIT",
320
+
"optional": true,
321
+
"os": [
322
+
"linux"
323
+
],
324
+
"engines": {
325
+
"node": ">=18"
326
+
}
327
+
},
328
+
"node_modules/@esbuild/linux-loong64": {
329
+
"version": "0.25.8",
330
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.8.tgz",
331
+
"integrity": "sha512-O7k1J/dwHkY1RMVvglFHl1HzutGEFFZ3kNiDMSOyUrB7WcoHGf96Sh+64nTRT26l3GMbCW01Ekh/ThKM5iI7hQ==",
332
+
"cpu": [
333
+
"loong64"
334
+
],
335
+
"license": "MIT",
336
+
"optional": true,
337
+
"os": [
338
+
"linux"
339
+
],
340
+
"engines": {
341
+
"node": ">=18"
342
+
}
343
+
},
344
+
"node_modules/@esbuild/linux-mips64el": {
345
+
"version": "0.25.8",
346
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.8.tgz",
347
+
"integrity": "sha512-uv+dqfRazte3BzfMp8PAQXmdGHQt2oC/y2ovwpTteqrMx2lwaksiFZ/bdkXJC19ttTvNXBuWH53zy/aTj1FgGw==",
348
+
"cpu": [
349
+
"mips64el"
350
+
],
351
+
"license": "MIT",
352
+
"optional": true,
353
+
"os": [
354
+
"linux"
355
+
],
356
+
"engines": {
357
+
"node": ">=18"
358
+
}
359
+
},
360
+
"node_modules/@esbuild/linux-ppc64": {
361
+
"version": "0.25.8",
362
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.8.tgz",
363
+
"integrity": "sha512-GyG0KcMi1GBavP5JgAkkstMGyMholMDybAf8wF5A70CALlDM2p/f7YFE7H92eDeH/VBtFJA5MT4nRPDGg4JuzQ==",
364
+
"cpu": [
365
+
"ppc64"
366
+
],
367
+
"license": "MIT",
368
+
"optional": true,
369
+
"os": [
370
+
"linux"
371
+
],
372
+
"engines": {
373
+
"node": ">=18"
374
+
}
375
+
},
376
+
"node_modules/@esbuild/linux-riscv64": {
377
+
"version": "0.25.8",
378
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.8.tgz",
379
+
"integrity": "sha512-rAqDYFv3yzMrq7GIcen3XP7TUEG/4LK86LUPMIz6RT8A6pRIDn0sDcvjudVZBiiTcZCY9y2SgYX2lgK3AF+1eg==",
380
+
"cpu": [
381
+
"riscv64"
382
+
],
383
+
"license": "MIT",
384
+
"optional": true,
385
+
"os": [
386
+
"linux"
387
+
],
388
+
"engines": {
389
+
"node": ">=18"
390
+
}
391
+
},
392
+
"node_modules/@esbuild/linux-s390x": {
393
+
"version": "0.25.8",
394
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.8.tgz",
395
+
"integrity": "sha512-Xutvh6VjlbcHpsIIbwY8GVRbwoviWT19tFhgdA7DlenLGC/mbc3lBoVb7jxj9Z+eyGqvcnSyIltYUrkKzWqSvg==",
396
+
"cpu": [
397
+
"s390x"
398
+
],
399
+
"license": "MIT",
400
+
"optional": true,
401
+
"os": [
402
+
"linux"
403
+
],
404
+
"engines": {
405
+
"node": ">=18"
406
+
}
407
+
},
408
+
"node_modules/@esbuild/linux-x64": {
409
+
"version": "0.25.8",
410
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.8.tgz",
411
+
"integrity": "sha512-ASFQhgY4ElXh3nDcOMTkQero4b1lgubskNlhIfJrsH5OKZXDpUAKBlNS0Kx81jwOBp+HCeZqmoJuihTv57/jvQ==",
412
+
"cpu": [
413
+
"x64"
414
+
],
415
+
"license": "MIT",
416
+
"optional": true,
417
+
"os": [
418
+
"linux"
419
+
],
420
+
"engines": {
421
+
"node": ">=18"
422
+
}
423
+
},
424
+
"node_modules/@esbuild/netbsd-arm64": {
425
+
"version": "0.25.8",
426
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.8.tgz",
427
+
"integrity": "sha512-d1KfruIeohqAi6SA+gENMuObDbEjn22olAR7egqnkCD9DGBG0wsEARotkLgXDu6c4ncgWTZJtN5vcgxzWRMzcw==",
428
+
"cpu": [
429
+
"arm64"
430
+
],
431
+
"license": "MIT",
432
+
"optional": true,
433
+
"os": [
434
+
"netbsd"
435
+
],
436
+
"engines": {
437
+
"node": ">=18"
438
+
}
439
+
},
440
+
"node_modules/@esbuild/netbsd-x64": {
441
+
"version": "0.25.8",
442
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.8.tgz",
443
+
"integrity": "sha512-nVDCkrvx2ua+XQNyfrujIG38+YGyuy2Ru9kKVNyh5jAys6n+l44tTtToqHjino2My8VAY6Lw9H7RI73XFi66Cg==",
444
+
"cpu": [
445
+
"x64"
446
+
],
447
+
"license": "MIT",
448
+
"optional": true,
449
+
"os": [
450
+
"netbsd"
451
+
],
452
+
"engines": {
453
+
"node": ">=18"
454
+
}
455
+
},
456
+
"node_modules/@esbuild/openbsd-arm64": {
457
+
"version": "0.25.8",
458
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.8.tgz",
459
+
"integrity": "sha512-j8HgrDuSJFAujkivSMSfPQSAa5Fxbvk4rgNAS5i3K+r8s1X0p1uOO2Hl2xNsGFppOeHOLAVgYwDVlmxhq5h+SQ==",
460
+
"cpu": [
461
+
"arm64"
462
+
],
463
+
"license": "MIT",
464
+
"optional": true,
465
+
"os": [
466
+
"openbsd"
467
+
],
468
+
"engines": {
469
+
"node": ">=18"
470
+
}
471
+
},
472
+
"node_modules/@esbuild/openbsd-x64": {
473
+
"version": "0.25.8",
474
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.8.tgz",
475
+
"integrity": "sha512-1h8MUAwa0VhNCDp6Af0HToI2TJFAn1uqT9Al6DJVzdIBAd21m/G0Yfc77KDM3uF3T/YaOgQq3qTJHPbTOInaIQ==",
476
+
"cpu": [
477
+
"x64"
478
+
],
479
+
"license": "MIT",
480
+
"optional": true,
481
+
"os": [
482
+
"openbsd"
483
+
],
484
+
"engines": {
485
+
"node": ">=18"
486
+
}
487
+
},
488
+
"node_modules/@esbuild/openharmony-arm64": {
489
+
"version": "0.25.8",
490
+
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.8.tgz",
491
+
"integrity": "sha512-r2nVa5SIK9tSWd0kJd9HCffnDHKchTGikb//9c7HX+r+wHYCpQrSgxhlY6KWV1nFo1l4KFbsMlHk+L6fekLsUg==",
492
+
"cpu": [
493
+
"arm64"
494
+
],
495
+
"license": "MIT",
496
+
"optional": true,
497
+
"os": [
498
+
"openharmony"
499
+
],
500
+
"engines": {
501
+
"node": ">=18"
502
+
}
503
+
},
504
+
"node_modules/@esbuild/sunos-x64": {
505
+
"version": "0.25.8",
506
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.8.tgz",
507
+
"integrity": "sha512-zUlaP2S12YhQ2UzUfcCuMDHQFJyKABkAjvO5YSndMiIkMimPmxA+BYSBikWgsRpvyxuRnow4nS5NPnf9fpv41w==",
508
+
"cpu": [
509
+
"x64"
510
+
],
511
+
"license": "MIT",
512
+
"optional": true,
513
+
"os": [
514
+
"sunos"
515
+
],
516
+
"engines": {
517
+
"node": ">=18"
518
+
}
519
+
},
520
+
"node_modules/@esbuild/win32-arm64": {
521
+
"version": "0.25.8",
522
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.8.tgz",
523
+
"integrity": "sha512-YEGFFWESlPva8hGL+zvj2z/SaK+pH0SwOM0Nc/d+rVnW7GSTFlLBGzZkuSU9kFIGIo8q9X3ucpZhu8PDN5A2sQ==",
524
+
"cpu": [
525
+
"arm64"
526
+
],
527
+
"license": "MIT",
528
+
"optional": true,
529
+
"os": [
530
+
"win32"
531
+
],
532
+
"engines": {
533
+
"node": ">=18"
534
+
}
535
+
},
536
+
"node_modules/@esbuild/win32-ia32": {
537
+
"version": "0.25.8",
538
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.8.tgz",
539
+
"integrity": "sha512-hiGgGC6KZ5LZz58OL/+qVVoZiuZlUYlYHNAmczOm7bs2oE1XriPFi5ZHHrS8ACpV5EjySrnoCKmcbQMN+ojnHg==",
540
+
"cpu": [
541
+
"ia32"
542
+
],
543
+
"license": "MIT",
544
+
"optional": true,
545
+
"os": [
546
+
"win32"
547
+
],
548
+
"engines": {
549
+
"node": ">=18"
550
+
}
551
+
},
552
+
"node_modules/@esbuild/win32-x64": {
553
+
"version": "0.25.8",
554
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.8.tgz",
555
+
"integrity": "sha512-cn3Yr7+OaaZq1c+2pe+8yxC8E144SReCQjN6/2ynubzYjvyqZjTXfQJpAcQpsdJq3My7XADANiYGHoFC69pLQw==",
556
+
"cpu": [
557
+
"x64"
558
+
],
559
+
"license": "MIT",
560
+
"optional": true,
561
+
"os": [
562
+
"win32"
563
+
],
564
+
"engines": {
565
+
"node": ">=18"
566
+
}
567
+
},
568
+
"node_modules/@img/sharp-darwin-arm64": {
569
+
"version": "0.33.5",
570
+
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz",
571
+
"integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==",
572
+
"cpu": [
573
+
"arm64"
574
+
],
575
+
"license": "Apache-2.0",
576
+
"optional": true,
577
+
"os": [
578
+
"darwin"
579
+
],
580
+
"engines": {
581
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
582
+
},
583
+
"funding": {
584
+
"url": "https://opencollective.com/libvips"
585
+
},
586
+
"optionalDependencies": {
587
+
"@img/sharp-libvips-darwin-arm64": "1.0.4"
588
+
}
589
+
},
590
+
"node_modules/@img/sharp-darwin-x64": {
591
+
"version": "0.33.5",
592
+
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz",
593
+
"integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==",
594
+
"cpu": [
595
+
"x64"
596
+
],
597
+
"license": "Apache-2.0",
598
+
"optional": true,
599
+
"os": [
600
+
"darwin"
601
+
],
602
+
"engines": {
603
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
604
+
},
605
+
"funding": {
606
+
"url": "https://opencollective.com/libvips"
607
+
},
608
+
"optionalDependencies": {
609
+
"@img/sharp-libvips-darwin-x64": "1.0.4"
610
+
}
611
+
},
612
+
"node_modules/@img/sharp-libvips-darwin-arm64": {
613
+
"version": "1.0.4",
614
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz",
615
+
"integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==",
616
+
"cpu": [
617
+
"arm64"
618
+
],
619
+
"license": "LGPL-3.0-or-later",
620
+
"optional": true,
621
+
"os": [
622
+
"darwin"
623
+
],
624
+
"funding": {
625
+
"url": "https://opencollective.com/libvips"
626
+
}
627
+
},
628
+
"node_modules/@img/sharp-libvips-darwin-x64": {
629
+
"version": "1.0.4",
630
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz",
631
+
"integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==",
632
+
"cpu": [
633
+
"x64"
634
+
],
635
+
"license": "LGPL-3.0-or-later",
636
+
"optional": true,
637
+
"os": [
638
+
"darwin"
639
+
],
640
+
"funding": {
641
+
"url": "https://opencollective.com/libvips"
642
+
}
643
+
},
644
+
"node_modules/@img/sharp-libvips-linux-arm": {
645
+
"version": "1.0.5",
646
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz",
647
+
"integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==",
648
+
"cpu": [
649
+
"arm"
650
+
],
651
+
"license": "LGPL-3.0-or-later",
652
+
"optional": true,
653
+
"os": [
654
+
"linux"
655
+
],
656
+
"funding": {
657
+
"url": "https://opencollective.com/libvips"
658
+
}
659
+
},
660
+
"node_modules/@img/sharp-libvips-linux-arm64": {
661
+
"version": "1.0.4",
662
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz",
663
+
"integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==",
664
+
"cpu": [
665
+
"arm64"
666
+
],
667
+
"license": "LGPL-3.0-or-later",
668
+
"optional": true,
669
+
"os": [
670
+
"linux"
671
+
],
672
+
"funding": {
673
+
"url": "https://opencollective.com/libvips"
674
+
}
675
+
},
676
+
"node_modules/@img/sharp-libvips-linux-s390x": {
677
+
"version": "1.0.4",
678
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz",
679
+
"integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==",
680
+
"cpu": [
681
+
"s390x"
682
+
],
683
+
"license": "LGPL-3.0-or-later",
684
+
"optional": true,
685
+
"os": [
686
+
"linux"
687
+
],
688
+
"funding": {
689
+
"url": "https://opencollective.com/libvips"
690
+
}
691
+
},
692
+
"node_modules/@img/sharp-libvips-linux-x64": {
693
+
"version": "1.0.4",
694
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz",
695
+
"integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==",
696
+
"cpu": [
697
+
"x64"
698
+
],
699
+
"license": "LGPL-3.0-or-later",
700
+
"optional": true,
701
+
"os": [
702
+
"linux"
703
+
],
704
+
"funding": {
705
+
"url": "https://opencollective.com/libvips"
706
+
}
707
+
},
708
+
"node_modules/@img/sharp-libvips-linuxmusl-arm64": {
709
+
"version": "1.0.4",
710
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz",
711
+
"integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==",
712
+
"cpu": [
713
+
"arm64"
714
+
],
715
+
"license": "LGPL-3.0-or-later",
716
+
"optional": true,
717
+
"os": [
718
+
"linux"
719
+
],
720
+
"funding": {
721
+
"url": "https://opencollective.com/libvips"
722
+
}
723
+
},
724
+
"node_modules/@img/sharp-libvips-linuxmusl-x64": {
725
+
"version": "1.0.4",
726
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz",
727
+
"integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==",
728
+
"cpu": [
729
+
"x64"
730
+
],
731
+
"license": "LGPL-3.0-or-later",
732
+
"optional": true,
733
+
"os": [
734
+
"linux"
735
+
],
736
+
"funding": {
737
+
"url": "https://opencollective.com/libvips"
738
+
}
739
+
},
740
+
"node_modules/@img/sharp-linux-arm": {
741
+
"version": "0.33.5",
742
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz",
743
+
"integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==",
744
+
"cpu": [
745
+
"arm"
746
+
],
747
+
"license": "Apache-2.0",
748
+
"optional": true,
749
+
"os": [
750
+
"linux"
751
+
],
752
+
"engines": {
753
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
754
+
},
755
+
"funding": {
756
+
"url": "https://opencollective.com/libvips"
757
+
},
758
+
"optionalDependencies": {
759
+
"@img/sharp-libvips-linux-arm": "1.0.5"
760
+
}
761
+
},
762
+
"node_modules/@img/sharp-linux-arm64": {
763
+
"version": "0.33.5",
764
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz",
765
+
"integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==",
766
+
"cpu": [
767
+
"arm64"
768
+
],
769
+
"license": "Apache-2.0",
770
+
"optional": true,
771
+
"os": [
772
+
"linux"
773
+
],
774
+
"engines": {
775
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
776
+
},
777
+
"funding": {
778
+
"url": "https://opencollective.com/libvips"
779
+
},
780
+
"optionalDependencies": {
781
+
"@img/sharp-libvips-linux-arm64": "1.0.4"
782
+
}
783
+
},
784
+
"node_modules/@img/sharp-linux-s390x": {
785
+
"version": "0.33.5",
786
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz",
787
+
"integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==",
788
+
"cpu": [
789
+
"s390x"
790
+
],
791
+
"license": "Apache-2.0",
792
+
"optional": true,
793
+
"os": [
794
+
"linux"
795
+
],
796
+
"engines": {
797
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
798
+
},
799
+
"funding": {
800
+
"url": "https://opencollective.com/libvips"
801
+
},
802
+
"optionalDependencies": {
803
+
"@img/sharp-libvips-linux-s390x": "1.0.4"
804
+
}
805
+
},
806
+
"node_modules/@img/sharp-linux-x64": {
807
+
"version": "0.33.5",
808
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz",
809
+
"integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==",
810
+
"cpu": [
811
+
"x64"
812
+
],
813
+
"license": "Apache-2.0",
814
+
"optional": true,
815
+
"os": [
816
+
"linux"
817
+
],
818
+
"engines": {
819
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
820
+
},
821
+
"funding": {
822
+
"url": "https://opencollective.com/libvips"
823
+
},
824
+
"optionalDependencies": {
825
+
"@img/sharp-libvips-linux-x64": "1.0.4"
826
+
}
827
+
},
828
+
"node_modules/@img/sharp-linuxmusl-arm64": {
829
+
"version": "0.33.5",
830
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz",
831
+
"integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==",
832
+
"cpu": [
833
+
"arm64"
834
+
],
835
+
"license": "Apache-2.0",
836
+
"optional": true,
837
+
"os": [
838
+
"linux"
839
+
],
840
+
"engines": {
841
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
842
+
},
843
+
"funding": {
844
+
"url": "https://opencollective.com/libvips"
845
+
},
846
+
"optionalDependencies": {
847
+
"@img/sharp-libvips-linuxmusl-arm64": "1.0.4"
848
+
}
849
+
},
850
+
"node_modules/@img/sharp-linuxmusl-x64": {
851
+
"version": "0.33.5",
852
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz",
853
+
"integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==",
854
+
"cpu": [
855
+
"x64"
856
+
],
857
+
"license": "Apache-2.0",
858
+
"optional": true,
859
+
"os": [
860
+
"linux"
861
+
],
862
+
"engines": {
863
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
864
+
},
865
+
"funding": {
866
+
"url": "https://opencollective.com/libvips"
867
+
},
868
+
"optionalDependencies": {
869
+
"@img/sharp-libvips-linuxmusl-x64": "1.0.4"
870
+
}
871
+
},
872
+
"node_modules/@img/sharp-wasm32": {
873
+
"version": "0.33.5",
874
+
"resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz",
875
+
"integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==",
876
+
"cpu": [
877
+
"wasm32"
878
+
],
879
+
"license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
880
+
"optional": true,
881
+
"dependencies": {
882
+
"@emnapi/runtime": "^1.2.0"
883
+
},
884
+
"engines": {
885
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
886
+
},
887
+
"funding": {
888
+
"url": "https://opencollective.com/libvips"
889
+
}
890
+
},
891
+
"node_modules/@img/sharp-win32-ia32": {
892
+
"version": "0.33.5",
893
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz",
894
+
"integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==",
895
+
"cpu": [
896
+
"ia32"
897
+
],
898
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
899
+
"optional": true,
900
+
"os": [
901
+
"win32"
902
+
],
903
+
"engines": {
904
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
905
+
},
906
+
"funding": {
907
+
"url": "https://opencollective.com/libvips"
908
+
}
909
+
},
910
+
"node_modules/@img/sharp-win32-x64": {
911
+
"version": "0.33.5",
912
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz",
913
+
"integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==",
914
+
"cpu": [
915
+
"x64"
916
+
],
917
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
918
+
"optional": true,
919
+
"os": [
920
+
"win32"
921
+
],
922
+
"engines": {
923
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
924
+
},
925
+
"funding": {
926
+
"url": "https://opencollective.com/libvips"
927
+
}
928
+
},
929
+
"node_modules/@jridgewell/sourcemap-codec": {
930
+
"version": "1.5.4",
931
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz",
932
+
"integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==",
933
+
"license": "MIT"
934
+
},
935
+
"node_modules/@oslojs/encoding": {
936
+
"version": "1.1.0",
937
+
"resolved": "https://registry.npmjs.org/@oslojs/encoding/-/encoding-1.1.0.tgz",
938
+
"integrity": "sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==",
939
+
"license": "MIT"
940
+
},
941
+
"node_modules/@rollup/pluginutils": {
942
+
"version": "5.2.0",
943
+
"resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.2.0.tgz",
944
+
"integrity": "sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw==",
945
+
"license": "MIT",
946
+
"dependencies": {
947
+
"@types/estree": "^1.0.0",
948
+
"estree-walker": "^2.0.2",
949
+
"picomatch": "^4.0.2"
950
+
},
951
+
"engines": {
952
+
"node": ">=14.0.0"
953
+
},
954
+
"peerDependencies": {
955
+
"rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
956
+
},
957
+
"peerDependenciesMeta": {
958
+
"rollup": {
959
+
"optional": true
960
+
}
961
+
}
962
+
},
963
+
"node_modules/@rollup/pluginutils/node_modules/estree-walker": {
964
+
"version": "2.0.2",
965
+
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
966
+
"integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
967
+
"license": "MIT"
968
+
},
969
+
"node_modules/@rollup/rollup-android-arm-eabi": {
970
+
"version": "4.46.2",
971
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.46.2.tgz",
972
+
"integrity": "sha512-Zj3Hl6sN34xJtMv7Anwb5Gu01yujyE/cLBDB2gnHTAHaWS1Z38L7kuSG+oAh0giZMqG060f/YBStXtMH6FvPMA==",
973
+
"cpu": [
974
+
"arm"
975
+
],
976
+
"license": "MIT",
977
+
"optional": true,
978
+
"os": [
979
+
"android"
980
+
]
981
+
},
982
+
"node_modules/@rollup/rollup-android-arm64": {
983
+
"version": "4.46.2",
984
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.46.2.tgz",
985
+
"integrity": "sha512-nTeCWY83kN64oQ5MGz3CgtPx8NSOhC5lWtsjTs+8JAJNLcP3QbLCtDDgUKQc/Ro/frpMq4SHUaHN6AMltcEoLQ==",
986
+
"cpu": [
987
+
"arm64"
988
+
],
989
+
"license": "MIT",
990
+
"optional": true,
991
+
"os": [
992
+
"android"
993
+
]
994
+
},
995
+
"node_modules/@rollup/rollup-darwin-arm64": {
996
+
"version": "4.46.2",
997
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.46.2.tgz",
998
+
"integrity": "sha512-HV7bW2Fb/F5KPdM/9bApunQh68YVDU8sO8BvcW9OngQVN3HHHkw99wFupuUJfGR9pYLLAjcAOA6iO+evsbBaPQ==",
999
+
"cpu": [
1000
+
"arm64"
1001
+
],
1002
+
"license": "MIT",
1003
+
"optional": true,
1004
+
"os": [
1005
+
"darwin"
1006
+
]
1007
+
},
1008
+
"node_modules/@rollup/rollup-darwin-x64": {
1009
+
"version": "4.46.2",
1010
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.46.2.tgz",
1011
+
"integrity": "sha512-SSj8TlYV5nJixSsm/y3QXfhspSiLYP11zpfwp6G/YDXctf3Xkdnk4woJIF5VQe0of2OjzTt8EsxnJDCdHd2xMA==",
1012
+
"cpu": [
1013
+
"x64"
1014
+
],
1015
+
"license": "MIT",
1016
+
"optional": true,
1017
+
"os": [
1018
+
"darwin"
1019
+
]
1020
+
},
1021
+
"node_modules/@rollup/rollup-freebsd-arm64": {
1022
+
"version": "4.46.2",
1023
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.46.2.tgz",
1024
+
"integrity": "sha512-ZyrsG4TIT9xnOlLsSSi9w/X29tCbK1yegE49RYm3tu3wF1L/B6LVMqnEWyDB26d9Ecx9zrmXCiPmIabVuLmNSg==",
1025
+
"cpu": [
1026
+
"arm64"
1027
+
],
1028
+
"license": "MIT",
1029
+
"optional": true,
1030
+
"os": [
1031
+
"freebsd"
1032
+
]
1033
+
},
1034
+
"node_modules/@rollup/rollup-freebsd-x64": {
1035
+
"version": "4.46.2",
1036
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.46.2.tgz",
1037
+
"integrity": "sha512-pCgHFoOECwVCJ5GFq8+gR8SBKnMO+xe5UEqbemxBpCKYQddRQMgomv1104RnLSg7nNvgKy05sLsY51+OVRyiVw==",
1038
+
"cpu": [
1039
+
"x64"
1040
+
],
1041
+
"license": "MIT",
1042
+
"optional": true,
1043
+
"os": [
1044
+
"freebsd"
1045
+
]
1046
+
},
1047
+
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
1048
+
"version": "4.46.2",
1049
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.46.2.tgz",
1050
+
"integrity": "sha512-EtP8aquZ0xQg0ETFcxUbU71MZlHaw9MChwrQzatiE8U/bvi5uv/oChExXC4mWhjiqK7azGJBqU0tt5H123SzVA==",
1051
+
"cpu": [
1052
+
"arm"
1053
+
],
1054
+
"license": "MIT",
1055
+
"optional": true,
1056
+
"os": [
1057
+
"linux"
1058
+
]
1059
+
},
1060
+
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
1061
+
"version": "4.46.2",
1062
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.46.2.tgz",
1063
+
"integrity": "sha512-qO7F7U3u1nfxYRPM8HqFtLd+raev2K137dsV08q/LRKRLEc7RsiDWihUnrINdsWQxPR9jqZ8DIIZ1zJJAm5PjQ==",
1064
+
"cpu": [
1065
+
"arm"
1066
+
],
1067
+
"license": "MIT",
1068
+
"optional": true,
1069
+
"os": [
1070
+
"linux"
1071
+
]
1072
+
},
1073
+
"node_modules/@rollup/rollup-linux-arm64-gnu": {
1074
+
"version": "4.46.2",
1075
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.46.2.tgz",
1076
+
"integrity": "sha512-3dRaqLfcOXYsfvw5xMrxAk9Lb1f395gkoBYzSFcc/scgRFptRXL9DOaDpMiehf9CO8ZDRJW2z45b6fpU5nwjng==",
1077
+
"cpu": [
1078
+
"arm64"
1079
+
],
1080
+
"license": "MIT",
1081
+
"optional": true,
1082
+
"os": [
1083
+
"linux"
1084
+
]
1085
+
},
1086
+
"node_modules/@rollup/rollup-linux-arm64-musl": {
1087
+
"version": "4.46.2",
1088
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.46.2.tgz",
1089
+
"integrity": "sha512-fhHFTutA7SM+IrR6lIfiHskxmpmPTJUXpWIsBXpeEwNgZzZZSg/q4i6FU4J8qOGyJ0TR+wXBwx/L7Ho9z0+uDg==",
1090
+
"cpu": [
1091
+
"arm64"
1092
+
],
1093
+
"license": "MIT",
1094
+
"optional": true,
1095
+
"os": [
1096
+
"linux"
1097
+
]
1098
+
},
1099
+
"node_modules/@rollup/rollup-linux-loongarch64-gnu": {
1100
+
"version": "4.46.2",
1101
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.46.2.tgz",
1102
+
"integrity": "sha512-i7wfGFXu8x4+FRqPymzjD+Hyav8l95UIZ773j7J7zRYc3Xsxy2wIn4x+llpunexXe6laaO72iEjeeGyUFmjKeA==",
1103
+
"cpu": [
1104
+
"loong64"
1105
+
],
1106
+
"license": "MIT",
1107
+
"optional": true,
1108
+
"os": [
1109
+
"linux"
1110
+
]
1111
+
},
1112
+
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
1113
+
"version": "4.46.2",
1114
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.46.2.tgz",
1115
+
"integrity": "sha512-B/l0dFcHVUnqcGZWKcWBSV2PF01YUt0Rvlurci5P+neqY/yMKchGU8ullZvIv5e8Y1C6wOn+U03mrDylP5q9Yw==",
1116
+
"cpu": [
1117
+
"ppc64"
1118
+
],
1119
+
"license": "MIT",
1120
+
"optional": true,
1121
+
"os": [
1122
+
"linux"
1123
+
]
1124
+
},
1125
+
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
1126
+
"version": "4.46.2",
1127
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.46.2.tgz",
1128
+
"integrity": "sha512-32k4ENb5ygtkMwPMucAb8MtV8olkPT03oiTxJbgkJa7lJ7dZMr0GCFJlyvy+K8iq7F/iuOr41ZdUHaOiqyR3iQ==",
1129
+
"cpu": [
1130
+
"riscv64"
1131
+
],
1132
+
"license": "MIT",
1133
+
"optional": true,
1134
+
"os": [
1135
+
"linux"
1136
+
]
1137
+
},
1138
+
"node_modules/@rollup/rollup-linux-riscv64-musl": {
1139
+
"version": "4.46.2",
1140
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.46.2.tgz",
1141
+
"integrity": "sha512-t5B2loThlFEauloaQkZg9gxV05BYeITLvLkWOkRXogP4qHXLkWSbSHKM9S6H1schf/0YGP/qNKtiISlxvfmmZw==",
1142
+
"cpu": [
1143
+
"riscv64"
1144
+
],
1145
+
"license": "MIT",
1146
+
"optional": true,
1147
+
"os": [
1148
+
"linux"
1149
+
]
1150
+
},
1151
+
"node_modules/@rollup/rollup-linux-s390x-gnu": {
1152
+
"version": "4.46.2",
1153
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.46.2.tgz",
1154
+
"integrity": "sha512-YKjekwTEKgbB7n17gmODSmJVUIvj8CX7q5442/CK80L8nqOUbMtf8b01QkG3jOqyr1rotrAnW6B/qiHwfcuWQA==",
1155
+
"cpu": [
1156
+
"s390x"
1157
+
],
1158
+
"license": "MIT",
1159
+
"optional": true,
1160
+
"os": [
1161
+
"linux"
1162
+
]
1163
+
},
1164
+
"node_modules/@rollup/rollup-linux-x64-gnu": {
1165
+
"version": "4.46.2",
1166
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.46.2.tgz",
1167
+
"integrity": "sha512-Jj5a9RUoe5ra+MEyERkDKLwTXVu6s3aACP51nkfnK9wJTraCC8IMe3snOfALkrjTYd2G1ViE1hICj0fZ7ALBPA==",
1168
+
"cpu": [
1169
+
"x64"
1170
+
],
1171
+
"license": "MIT",
1172
+
"optional": true,
1173
+
"os": [
1174
+
"linux"
1175
+
]
1176
+
},
1177
+
"node_modules/@rollup/rollup-linux-x64-musl": {
1178
+
"version": "4.46.2",
1179
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.46.2.tgz",
1180
+
"integrity": "sha512-7kX69DIrBeD7yNp4A5b81izs8BqoZkCIaxQaOpumcJ1S/kmqNFjPhDu1LHeVXv0SexfHQv5cqHsxLOjETuqDuA==",
1181
+
"cpu": [
1182
+
"x64"
1183
+
],
1184
+
"license": "MIT",
1185
+
"optional": true,
1186
+
"os": [
1187
+
"linux"
1188
+
]
1189
+
},
1190
+
"node_modules/@rollup/rollup-win32-arm64-msvc": {
1191
+
"version": "4.46.2",
1192
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.46.2.tgz",
1193
+
"integrity": "sha512-wiJWMIpeaak/jsbaq2HMh/rzZxHVW1rU6coyeNNpMwk5isiPjSTx0a4YLSlYDwBH/WBvLz+EtsNqQScZTLJy3g==",
1194
+
"cpu": [
1195
+
"arm64"
1196
+
],
1197
+
"license": "MIT",
1198
+
"optional": true,
1199
+
"os": [
1200
+
"win32"
1201
+
]
1202
+
},
1203
+
"node_modules/@rollup/rollup-win32-ia32-msvc": {
1204
+
"version": "4.46.2",
1205
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.46.2.tgz",
1206
+
"integrity": "sha512-gBgaUDESVzMgWZhcyjfs9QFK16D8K6QZpwAaVNJxYDLHWayOta4ZMjGm/vsAEy3hvlS2GosVFlBlP9/Wb85DqQ==",
1207
+
"cpu": [
1208
+
"ia32"
1209
+
],
1210
+
"license": "MIT",
1211
+
"optional": true,
1212
+
"os": [
1213
+
"win32"
1214
+
]
1215
+
},
1216
+
"node_modules/@rollup/rollup-win32-x64-msvc": {
1217
+
"version": "4.46.2",
1218
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.46.2.tgz",
1219
+
"integrity": "sha512-CvUo2ixeIQGtF6WvuB87XWqPQkoFAFqW+HUo/WzHwuHDvIwZCtjdWXoYCcr06iKGydiqTclC4jU/TNObC/xKZg==",
1220
+
"cpu": [
1221
+
"x64"
1222
+
],
1223
+
"license": "MIT",
1224
+
"optional": true,
1225
+
"os": [
1226
+
"win32"
1227
+
]
1228
+
},
1229
+
"node_modules/@shikijs/core": {
1230
+
"version": "3.9.2",
1231
+
"resolved": "https://registry.npmjs.org/@shikijs/core/-/core-3.9.2.tgz",
1232
+
"integrity": "sha512-3q/mzmw09B2B6PgFNeiaN8pkNOixWS726IHmJEpjDAcneDPMQmUg2cweT9cWXY4XcyQS3i6mOOUgQz9RRUP6HA==",
1233
+
"license": "MIT",
1234
+
"dependencies": {
1235
+
"@shikijs/types": "3.9.2",
1236
+
"@shikijs/vscode-textmate": "^10.0.2",
1237
+
"@types/hast": "^3.0.4",
1238
+
"hast-util-to-html": "^9.0.5"
1239
+
}
1240
+
},
1241
+
"node_modules/@shikijs/engine-javascript": {
1242
+
"version": "3.9.2",
1243
+
"resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-3.9.2.tgz",
1244
+
"integrity": "sha512-kUTRVKPsB/28H5Ko6qEsyudBiWEDLst+Sfi+hwr59E0GLHV0h8RfgbQU7fdN5Lt9A8R1ulRiZyTvAizkROjwDA==",
1245
+
"license": "MIT",
1246
+
"dependencies": {
1247
+
"@shikijs/types": "3.9.2",
1248
+
"@shikijs/vscode-textmate": "^10.0.2",
1249
+
"oniguruma-to-es": "^4.3.3"
1250
+
}
1251
+
},
1252
+
"node_modules/@shikijs/engine-oniguruma": {
1253
+
"version": "3.9.2",
1254
+
"resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-3.9.2.tgz",
1255
+
"integrity": "sha512-Vn/w5oyQ6TUgTVDIC/BrpXwIlfK6V6kGWDVVz2eRkF2v13YoENUvaNwxMsQU/t6oCuZKzqp9vqtEtEzKl9VegA==",
1256
+
"license": "MIT",
1257
+
"dependencies": {
1258
+
"@shikijs/types": "3.9.2",
1259
+
"@shikijs/vscode-textmate": "^10.0.2"
1260
+
}
1261
+
},
1262
+
"node_modules/@shikijs/langs": {
1263
+
"version": "3.9.2",
1264
+
"resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-3.9.2.tgz",
1265
+
"integrity": "sha512-X1Q6wRRQXY7HqAuX3I8WjMscjeGjqXCg/Sve7J2GWFORXkSrXud23UECqTBIdCSNKJioFtmUGJQNKtlMMZMn0w==",
1266
+
"license": "MIT",
1267
+
"dependencies": {
1268
+
"@shikijs/types": "3.9.2"
1269
+
}
1270
+
},
1271
+
"node_modules/@shikijs/themes": {
1272
+
"version": "3.9.2",
1273
+
"resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-3.9.2.tgz",
1274
+
"integrity": "sha512-6z5lBPBMRfLyyEsgf6uJDHPa6NAGVzFJqH4EAZ+03+7sedYir2yJBRu2uPZOKmj43GyhVHWHvyduLDAwJQfDjA==",
1275
+
"license": "MIT",
1276
+
"dependencies": {
1277
+
"@shikijs/types": "3.9.2"
1278
+
}
1279
+
},
1280
+
"node_modules/@shikijs/types": {
1281
+
"version": "3.9.2",
1282
+
"resolved": "https://registry.npmjs.org/@shikijs/types/-/types-3.9.2.tgz",
1283
+
"integrity": "sha512-/M5L0Uc2ljyn2jKvj4Yiah7ow/W+DJSglVafvWAJ/b8AZDeeRAdMu3c2riDzB7N42VD+jSnWxeP9AKtd4TfYVw==",
1284
+
"license": "MIT",
1285
+
"dependencies": {
1286
+
"@shikijs/vscode-textmate": "^10.0.2",
1287
+
"@types/hast": "^3.0.4"
1288
+
}
1289
+
},
1290
+
"node_modules/@shikijs/vscode-textmate": {
1291
+
"version": "10.0.2",
1292
+
"resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz",
1293
+
"integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==",
1294
+
"license": "MIT"
1295
+
},
1296
+
"node_modules/@swc/helpers": {
1297
+
"version": "0.5.17",
1298
+
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.17.tgz",
1299
+
"integrity": "sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==",
1300
+
"license": "Apache-2.0",
1301
+
"dependencies": {
1302
+
"tslib": "^2.8.0"
1303
+
}
1304
+
},
1305
+
"node_modules/@types/debug": {
1306
+
"version": "4.1.12",
1307
+
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
1308
+
"integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
1309
+
"license": "MIT",
1310
+
"dependencies": {
1311
+
"@types/ms": "*"
1312
+
}
1313
+
},
1314
+
"node_modules/@types/estree": {
1315
+
"version": "1.0.8",
1316
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
1317
+
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
1318
+
"license": "MIT"
1319
+
},
1320
+
"node_modules/@types/fontkit": {
1321
+
"version": "2.0.8",
1322
+
"resolved": "https://registry.npmjs.org/@types/fontkit/-/fontkit-2.0.8.tgz",
1323
+
"integrity": "sha512-wN+8bYxIpJf+5oZdrdtaX04qUuWHcKxcDEgRS9Qm9ZClSHjzEn13SxUC+5eRM+4yXIeTYk8mTzLAWGF64847ew==",
1324
+
"license": "MIT",
1325
+
"dependencies": {
1326
+
"@types/node": "*"
1327
+
}
1328
+
},
1329
+
"node_modules/@types/hast": {
1330
+
"version": "3.0.4",
1331
+
"resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz",
1332
+
"integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==",
1333
+
"license": "MIT",
1334
+
"dependencies": {
1335
+
"@types/unist": "*"
1336
+
}
1337
+
},
1338
+
"node_modules/@types/mdast": {
1339
+
"version": "4.0.4",
1340
+
"resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
1341
+
"integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
1342
+
"license": "MIT",
1343
+
"dependencies": {
1344
+
"@types/unist": "*"
1345
+
}
1346
+
},
1347
+
"node_modules/@types/ms": {
1348
+
"version": "2.1.0",
1349
+
"resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
1350
+
"integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
1351
+
"license": "MIT"
1352
+
},
1353
+
"node_modules/@types/nlcst": {
1354
+
"version": "2.0.3",
1355
+
"resolved": "https://registry.npmjs.org/@types/nlcst/-/nlcst-2.0.3.tgz",
1356
+
"integrity": "sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==",
1357
+
"license": "MIT",
1358
+
"dependencies": {
1359
+
"@types/unist": "*"
1360
+
}
1361
+
},
1362
+
"node_modules/@types/node": {
1363
+
"version": "24.2.0",
1364
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.2.0.tgz",
1365
+
"integrity": "sha512-3xyG3pMCq3oYCNg7/ZP+E1ooTaGB4cG8JWRsqqOYQdbWNY4zbaV0Ennrd7stjiJEFZCaybcIgpTjJWHRfBSIDw==",
1366
+
"license": "MIT",
1367
+
"dependencies": {
1368
+
"undici-types": "~7.10.0"
1369
+
}
1370
+
},
1371
+
"node_modules/@types/unist": {
1372
+
"version": "3.0.3",
1373
+
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
1374
+
"integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
1375
+
"license": "MIT"
1376
+
},
1377
+
"node_modules/@ungap/structured-clone": {
1378
+
"version": "1.3.0",
1379
+
"resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz",
1380
+
"integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==",
1381
+
"license": "ISC"
1382
+
},
1383
+
"node_modules/acorn": {
1384
+
"version": "8.15.0",
1385
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
1386
+
"integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
1387
+
"license": "MIT",
1388
+
"bin": {
1389
+
"acorn": "bin/acorn"
1390
+
},
1391
+
"engines": {
1392
+
"node": ">=0.4.0"
1393
+
}
1394
+
},
1395
+
"node_modules/ansi-align": {
1396
+
"version": "3.0.1",
1397
+
"resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz",
1398
+
"integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==",
1399
+
"license": "ISC",
1400
+
"dependencies": {
1401
+
"string-width": "^4.1.0"
1402
+
}
1403
+
},
1404
+
"node_modules/ansi-align/node_modules/ansi-regex": {
1405
+
"version": "5.0.1",
1406
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
1407
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
1408
+
"license": "MIT",
1409
+
"engines": {
1410
+
"node": ">=8"
1411
+
}
1412
+
},
1413
+
"node_modules/ansi-align/node_modules/emoji-regex": {
1414
+
"version": "8.0.0",
1415
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
1416
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
1417
+
"license": "MIT"
1418
+
},
1419
+
"node_modules/ansi-align/node_modules/string-width": {
1420
+
"version": "4.2.3",
1421
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
1422
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
1423
+
"license": "MIT",
1424
+
"dependencies": {
1425
+
"emoji-regex": "^8.0.0",
1426
+
"is-fullwidth-code-point": "^3.0.0",
1427
+
"strip-ansi": "^6.0.1"
1428
+
},
1429
+
"engines": {
1430
+
"node": ">=8"
1431
+
}
1432
+
},
1433
+
"node_modules/ansi-align/node_modules/strip-ansi": {
1434
+
"version": "6.0.1",
1435
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
1436
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
1437
+
"license": "MIT",
1438
+
"dependencies": {
1439
+
"ansi-regex": "^5.0.1"
1440
+
},
1441
+
"engines": {
1442
+
"node": ">=8"
1443
+
}
1444
+
},
1445
+
"node_modules/ansi-regex": {
1446
+
"version": "6.1.0",
1447
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
1448
+
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
1449
+
"license": "MIT",
1450
+
"engines": {
1451
+
"node": ">=12"
1452
+
},
1453
+
"funding": {
1454
+
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
1455
+
}
1456
+
},
1457
+
"node_modules/ansi-styles": {
1458
+
"version": "6.2.1",
1459
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
1460
+
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
1461
+
"license": "MIT",
1462
+
"engines": {
1463
+
"node": ">=12"
1464
+
},
1465
+
"funding": {
1466
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
1467
+
}
1468
+
},
1469
+
"node_modules/anymatch": {
1470
+
"version": "3.1.3",
1471
+
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
1472
+
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
1473
+
"license": "ISC",
1474
+
"dependencies": {
1475
+
"normalize-path": "^3.0.0",
1476
+
"picomatch": "^2.0.4"
1477
+
},
1478
+
"engines": {
1479
+
"node": ">= 8"
1480
+
}
1481
+
},
1482
+
"node_modules/anymatch/node_modules/picomatch": {
1483
+
"version": "2.3.1",
1484
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
1485
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
1486
+
"license": "MIT",
1487
+
"engines": {
1488
+
"node": ">=8.6"
1489
+
},
1490
+
"funding": {
1491
+
"url": "https://github.com/sponsors/jonschlinkert"
1492
+
}
1493
+
},
1494
+
"node_modules/argparse": {
1495
+
"version": "2.0.1",
1496
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
1497
+
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
1498
+
"license": "Python-2.0"
1499
+
},
1500
+
"node_modules/aria-query": {
1501
+
"version": "5.3.2",
1502
+
"resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz",
1503
+
"integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==",
1504
+
"license": "Apache-2.0",
1505
+
"engines": {
1506
+
"node": ">= 0.4"
1507
+
}
1508
+
},
1509
+
"node_modules/array-iterate": {
1510
+
"version": "2.0.1",
1511
+
"resolved": "https://registry.npmjs.org/array-iterate/-/array-iterate-2.0.1.tgz",
1512
+
"integrity": "sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==",
1513
+
"license": "MIT",
1514
+
"funding": {
1515
+
"type": "github",
1516
+
"url": "https://github.com/sponsors/wooorm"
1517
+
}
1518
+
},
1519
+
"node_modules/astro": {
1520
+
"version": "5.12.8",
1521
+
"resolved": "https://registry.npmjs.org/astro/-/astro-5.12.8.tgz",
1522
+
"integrity": "sha512-KkJ7FR+c2SyZYlpakm48XBiuQcRsrVtdjG5LN5an0givI/tLik+ePJ4/g3qrAVhYMjJOxBA2YgFQxANPiWB+Mw==",
1523
+
"license": "MIT",
1524
+
"dependencies": {
1525
+
"@astrojs/compiler": "^2.12.2",
1526
+
"@astrojs/internal-helpers": "0.7.1",
1527
+
"@astrojs/markdown-remark": "6.3.5",
1528
+
"@astrojs/telemetry": "3.3.0",
1529
+
"@capsizecss/unpack": "^2.4.0",
1530
+
"@oslojs/encoding": "^1.1.0",
1531
+
"@rollup/pluginutils": "^5.1.4",
1532
+
"acorn": "^8.14.1",
1533
+
"aria-query": "^5.3.2",
1534
+
"axobject-query": "^4.1.0",
1535
+
"boxen": "8.0.1",
1536
+
"ci-info": "^4.2.0",
1537
+
"clsx": "^2.1.1",
1538
+
"common-ancestor-path": "^1.0.1",
1539
+
"cookie": "^1.0.2",
1540
+
"cssesc": "^3.0.0",
1541
+
"debug": "^4.4.0",
1542
+
"deterministic-object-hash": "^2.0.2",
1543
+
"devalue": "^5.1.1",
1544
+
"diff": "^5.2.0",
1545
+
"dlv": "^1.1.3",
1546
+
"dset": "^3.1.4",
1547
+
"es-module-lexer": "^1.6.0",
1548
+
"esbuild": "^0.25.0",
1549
+
"estree-walker": "^3.0.3",
1550
+
"flattie": "^1.1.1",
1551
+
"fontace": "~0.3.0",
1552
+
"github-slugger": "^2.0.0",
1553
+
"html-escaper": "3.0.3",
1554
+
"http-cache-semantics": "^4.1.1",
1555
+
"import-meta-resolve": "^4.1.0",
1556
+
"js-yaml": "^4.1.0",
1557
+
"kleur": "^4.1.5",
1558
+
"magic-string": "^0.30.17",
1559
+
"magicast": "^0.3.5",
1560
+
"mrmime": "^2.0.1",
1561
+
"neotraverse": "^0.6.18",
1562
+
"p-limit": "^6.2.0",
1563
+
"p-queue": "^8.1.0",
1564
+
"package-manager-detector": "^1.1.0",
1565
+
"picomatch": "^4.0.2",
1566
+
"prompts": "^2.4.2",
1567
+
"rehype": "^13.0.2",
1568
+
"semver": "^7.7.1",
1569
+
"shiki": "^3.2.1",
1570
+
"smol-toml": "^1.3.4",
1571
+
"tinyexec": "^0.3.2",
1572
+
"tinyglobby": "^0.2.12",
1573
+
"tsconfck": "^3.1.5",
1574
+
"ultrahtml": "^1.6.0",
1575
+
"unifont": "~0.5.0",
1576
+
"unist-util-visit": "^5.0.0",
1577
+
"unstorage": "^1.15.0",
1578
+
"vfile": "^6.0.3",
1579
+
"vite": "^6.3.4",
1580
+
"vitefu": "^1.0.6",
1581
+
"xxhash-wasm": "^1.1.0",
1582
+
"yargs-parser": "^21.1.1",
1583
+
"yocto-spinner": "^0.2.1",
1584
+
"zod": "^3.24.4",
1585
+
"zod-to-json-schema": "^3.24.5",
1586
+
"zod-to-ts": "^1.2.0"
1587
+
},
1588
+
"bin": {
1589
+
"astro": "astro.js"
1590
+
},
1591
+
"engines": {
1592
+
"node": "18.20.8 || ^20.3.0 || >=22.0.0",
1593
+
"npm": ">=9.6.5",
1594
+
"pnpm": ">=7.1.0"
1595
+
},
1596
+
"funding": {
1597
+
"type": "opencollective",
1598
+
"url": "https://opencollective.com/astrodotbuild"
1599
+
},
1600
+
"optionalDependencies": {
1601
+
"sharp": "^0.33.3"
1602
+
}
1603
+
},
1604
+
"node_modules/axobject-query": {
1605
+
"version": "4.1.0",
1606
+
"resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz",
1607
+
"integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==",
1608
+
"license": "Apache-2.0",
1609
+
"engines": {
1610
+
"node": ">= 0.4"
1611
+
}
1612
+
},
1613
+
"node_modules/bail": {
1614
+
"version": "2.0.2",
1615
+
"resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
1616
+
"integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
1617
+
"license": "MIT",
1618
+
"funding": {
1619
+
"type": "github",
1620
+
"url": "https://github.com/sponsors/wooorm"
1621
+
}
1622
+
},
1623
+
"node_modules/base-64": {
1624
+
"version": "1.0.0",
1625
+
"resolved": "https://registry.npmjs.org/base-64/-/base-64-1.0.0.tgz",
1626
+
"integrity": "sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==",
1627
+
"license": "MIT"
1628
+
},
1629
+
"node_modules/base64-js": {
1630
+
"version": "1.5.1",
1631
+
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
1632
+
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
1633
+
"funding": [
1634
+
{
1635
+
"type": "github",
1636
+
"url": "https://github.com/sponsors/feross"
1637
+
},
1638
+
{
1639
+
"type": "patreon",
1640
+
"url": "https://www.patreon.com/feross"
1641
+
},
1642
+
{
1643
+
"type": "consulting",
1644
+
"url": "https://feross.org/support"
1645
+
}
1646
+
],
1647
+
"license": "MIT"
1648
+
},
1649
+
"node_modules/blob-to-buffer": {
1650
+
"version": "1.2.9",
1651
+
"resolved": "https://registry.npmjs.org/blob-to-buffer/-/blob-to-buffer-1.2.9.tgz",
1652
+
"integrity": "sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA==",
1653
+
"funding": [
1654
+
{
1655
+
"type": "github",
1656
+
"url": "https://github.com/sponsors/feross"
1657
+
},
1658
+
{
1659
+
"type": "patreon",
1660
+
"url": "https://www.patreon.com/feross"
1661
+
},
1662
+
{
1663
+
"type": "consulting",
1664
+
"url": "https://feross.org/support"
1665
+
}
1666
+
],
1667
+
"license": "MIT"
1668
+
},
1669
+
"node_modules/boxen": {
1670
+
"version": "8.0.1",
1671
+
"resolved": "https://registry.npmjs.org/boxen/-/boxen-8.0.1.tgz",
1672
+
"integrity": "sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==",
1673
+
"license": "MIT",
1674
+
"dependencies": {
1675
+
"ansi-align": "^3.0.1",
1676
+
"camelcase": "^8.0.0",
1677
+
"chalk": "^5.3.0",
1678
+
"cli-boxes": "^3.0.0",
1679
+
"string-width": "^7.2.0",
1680
+
"type-fest": "^4.21.0",
1681
+
"widest-line": "^5.0.0",
1682
+
"wrap-ansi": "^9.0.0"
1683
+
},
1684
+
"engines": {
1685
+
"node": ">=18"
1686
+
},
1687
+
"funding": {
1688
+
"url": "https://github.com/sponsors/sindresorhus"
1689
+
}
1690
+
},
1691
+
"node_modules/brotli": {
1692
+
"version": "1.3.3",
1693
+
"resolved": "https://registry.npmjs.org/brotli/-/brotli-1.3.3.tgz",
1694
+
"integrity": "sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==",
1695
+
"license": "MIT",
1696
+
"dependencies": {
1697
+
"base64-js": "^1.1.2"
1698
+
}
1699
+
},
1700
+
"node_modules/camelcase": {
1701
+
"version": "8.0.0",
1702
+
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-8.0.0.tgz",
1703
+
"integrity": "sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==",
1704
+
"license": "MIT",
1705
+
"engines": {
1706
+
"node": ">=16"
1707
+
},
1708
+
"funding": {
1709
+
"url": "https://github.com/sponsors/sindresorhus"
1710
+
}
1711
+
},
1712
+
"node_modules/ccount": {
1713
+
"version": "2.0.1",
1714
+
"resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
1715
+
"integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
1716
+
"license": "MIT",
1717
+
"funding": {
1718
+
"type": "github",
1719
+
"url": "https://github.com/sponsors/wooorm"
1720
+
}
1721
+
},
1722
+
"node_modules/chalk": {
1723
+
"version": "5.5.0",
1724
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.5.0.tgz",
1725
+
"integrity": "sha512-1tm8DTaJhPBG3bIkVeZt1iZM9GfSX2lzOeDVZH9R9ffRHpmHvxZ/QhgQH/aDTkswQVt+YHdXAdS/In/30OjCbg==",
1726
+
"license": "MIT",
1727
+
"engines": {
1728
+
"node": "^12.17.0 || ^14.13 || >=16.0.0"
1729
+
},
1730
+
"funding": {
1731
+
"url": "https://github.com/chalk/chalk?sponsor=1"
1732
+
}
1733
+
},
1734
+
"node_modules/character-entities": {
1735
+
"version": "2.0.2",
1736
+
"resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
1737
+
"integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
1738
+
"license": "MIT",
1739
+
"funding": {
1740
+
"type": "github",
1741
+
"url": "https://github.com/sponsors/wooorm"
1742
+
}
1743
+
},
1744
+
"node_modules/character-entities-html4": {
1745
+
"version": "2.1.0",
1746
+
"resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz",
1747
+
"integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==",
1748
+
"license": "MIT",
1749
+
"funding": {
1750
+
"type": "github",
1751
+
"url": "https://github.com/sponsors/wooorm"
1752
+
}
1753
+
},
1754
+
"node_modules/character-entities-legacy": {
1755
+
"version": "3.0.0",
1756
+
"resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
1757
+
"integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
1758
+
"license": "MIT",
1759
+
"funding": {
1760
+
"type": "github",
1761
+
"url": "https://github.com/sponsors/wooorm"
1762
+
}
1763
+
},
1764
+
"node_modules/chokidar": {
1765
+
"version": "4.0.3",
1766
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
1767
+
"integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
1768
+
"license": "MIT",
1769
+
"dependencies": {
1770
+
"readdirp": "^4.0.1"
1771
+
},
1772
+
"engines": {
1773
+
"node": ">= 14.16.0"
1774
+
},
1775
+
"funding": {
1776
+
"url": "https://paulmillr.com/funding/"
1777
+
}
1778
+
},
1779
+
"node_modules/ci-info": {
1780
+
"version": "4.3.0",
1781
+
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.3.0.tgz",
1782
+
"integrity": "sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==",
1783
+
"funding": [
1784
+
{
1785
+
"type": "github",
1786
+
"url": "https://github.com/sponsors/sibiraj-s"
1787
+
}
1788
+
],
1789
+
"license": "MIT",
1790
+
"engines": {
1791
+
"node": ">=8"
1792
+
}
1793
+
},
1794
+
"node_modules/cli-boxes": {
1795
+
"version": "3.0.0",
1796
+
"resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz",
1797
+
"integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==",
1798
+
"license": "MIT",
1799
+
"engines": {
1800
+
"node": ">=10"
1801
+
},
1802
+
"funding": {
1803
+
"url": "https://github.com/sponsors/sindresorhus"
1804
+
}
1805
+
},
1806
+
"node_modules/clone": {
1807
+
"version": "2.1.2",
1808
+
"resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
1809
+
"integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==",
1810
+
"license": "MIT",
1811
+
"engines": {
1812
+
"node": ">=0.8"
1813
+
}
1814
+
},
1815
+
"node_modules/clsx": {
1816
+
"version": "2.1.1",
1817
+
"resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
1818
+
"integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
1819
+
"license": "MIT",
1820
+
"engines": {
1821
+
"node": ">=6"
1822
+
}
1823
+
},
1824
+
"node_modules/color": {
1825
+
"version": "4.2.3",
1826
+
"resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz",
1827
+
"integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
1828
+
"license": "MIT",
1829
+
"optional": true,
1830
+
"dependencies": {
1831
+
"color-convert": "^2.0.1",
1832
+
"color-string": "^1.9.0"
1833
+
},
1834
+
"engines": {
1835
+
"node": ">=12.5.0"
1836
+
}
1837
+
},
1838
+
"node_modules/color-convert": {
1839
+
"version": "2.0.1",
1840
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1841
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1842
+
"license": "MIT",
1843
+
"optional": true,
1844
+
"dependencies": {
1845
+
"color-name": "~1.1.4"
1846
+
},
1847
+
"engines": {
1848
+
"node": ">=7.0.0"
1849
+
}
1850
+
},
1851
+
"node_modules/color-name": {
1852
+
"version": "1.1.4",
1853
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1854
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
1855
+
"license": "MIT",
1856
+
"optional": true
1857
+
},
1858
+
"node_modules/color-string": {
1859
+
"version": "1.9.1",
1860
+
"resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
1861
+
"integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
1862
+
"license": "MIT",
1863
+
"optional": true,
1864
+
"dependencies": {
1865
+
"color-name": "^1.0.0",
1866
+
"simple-swizzle": "^0.2.2"
1867
+
}
1868
+
},
1869
+
"node_modules/comma-separated-tokens": {
1870
+
"version": "2.0.3",
1871
+
"resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
1872
+
"integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==",
1873
+
"license": "MIT",
1874
+
"funding": {
1875
+
"type": "github",
1876
+
"url": "https://github.com/sponsors/wooorm"
1877
+
}
1878
+
},
1879
+
"node_modules/common-ancestor-path": {
1880
+
"version": "1.0.1",
1881
+
"resolved": "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz",
1882
+
"integrity": "sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==",
1883
+
"license": "ISC"
1884
+
},
1885
+
"node_modules/cookie": {
1886
+
"version": "1.0.2",
1887
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-1.0.2.tgz",
1888
+
"integrity": "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==",
1889
+
"license": "MIT",
1890
+
"engines": {
1891
+
"node": ">=18"
1892
+
}
1893
+
},
1894
+
"node_modules/cookie-es": {
1895
+
"version": "1.2.2",
1896
+
"resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.2.2.tgz",
1897
+
"integrity": "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==",
1898
+
"license": "MIT"
1899
+
},
1900
+
"node_modules/cross-fetch": {
1901
+
"version": "3.2.0",
1902
+
"resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.2.0.tgz",
1903
+
"integrity": "sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==",
1904
+
"license": "MIT",
1905
+
"dependencies": {
1906
+
"node-fetch": "^2.7.0"
1907
+
}
1908
+
},
1909
+
"node_modules/crossws": {
1910
+
"version": "0.3.5",
1911
+
"resolved": "https://registry.npmjs.org/crossws/-/crossws-0.3.5.tgz",
1912
+
"integrity": "sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==",
1913
+
"license": "MIT",
1914
+
"dependencies": {
1915
+
"uncrypto": "^0.1.3"
1916
+
}
1917
+
},
1918
+
"node_modules/css-tree": {
1919
+
"version": "3.1.0",
1920
+
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz",
1921
+
"integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==",
1922
+
"license": "MIT",
1923
+
"dependencies": {
1924
+
"mdn-data": "2.12.2",
1925
+
"source-map-js": "^1.0.1"
1926
+
},
1927
+
"engines": {
1928
+
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
1929
+
}
1930
+
},
1931
+
"node_modules/cssesc": {
1932
+
"version": "3.0.0",
1933
+
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
1934
+
"integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
1935
+
"license": "MIT",
1936
+
"bin": {
1937
+
"cssesc": "bin/cssesc"
1938
+
},
1939
+
"engines": {
1940
+
"node": ">=4"
1941
+
}
1942
+
},
1943
+
"node_modules/debug": {
1944
+
"version": "4.4.1",
1945
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz",
1946
+
"integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
1947
+
"license": "MIT",
1948
+
"dependencies": {
1949
+
"ms": "^2.1.3"
1950
+
},
1951
+
"engines": {
1952
+
"node": ">=6.0"
1953
+
},
1954
+
"peerDependenciesMeta": {
1955
+
"supports-color": {
1956
+
"optional": true
1957
+
}
1958
+
}
1959
+
},
1960
+
"node_modules/decode-named-character-reference": {
1961
+
"version": "1.2.0",
1962
+
"resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz",
1963
+
"integrity": "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==",
1964
+
"license": "MIT",
1965
+
"dependencies": {
1966
+
"character-entities": "^2.0.0"
1967
+
},
1968
+
"funding": {
1969
+
"type": "github",
1970
+
"url": "https://github.com/sponsors/wooorm"
1971
+
}
1972
+
},
1973
+
"node_modules/defu": {
1974
+
"version": "6.1.4",
1975
+
"resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz",
1976
+
"integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==",
1977
+
"license": "MIT"
1978
+
},
1979
+
"node_modules/dequal": {
1980
+
"version": "2.0.3",
1981
+
"resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
1982
+
"integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
1983
+
"license": "MIT",
1984
+
"engines": {
1985
+
"node": ">=6"
1986
+
}
1987
+
},
1988
+
"node_modules/destr": {
1989
+
"version": "2.0.5",
1990
+
"resolved": "https://registry.npmjs.org/destr/-/destr-2.0.5.tgz",
1991
+
"integrity": "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==",
1992
+
"license": "MIT"
1993
+
},
1994
+
"node_modules/detect-libc": {
1995
+
"version": "2.0.4",
1996
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz",
1997
+
"integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==",
1998
+
"license": "Apache-2.0",
1999
+
"optional": true,
2000
+
"engines": {
2001
+
"node": ">=8"
2002
+
}
2003
+
},
2004
+
"node_modules/deterministic-object-hash": {
2005
+
"version": "2.0.2",
2006
+
"resolved": "https://registry.npmjs.org/deterministic-object-hash/-/deterministic-object-hash-2.0.2.tgz",
2007
+
"integrity": "sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==",
2008
+
"license": "MIT",
2009
+
"dependencies": {
2010
+
"base-64": "^1.0.0"
2011
+
},
2012
+
"engines": {
2013
+
"node": ">=18"
2014
+
}
2015
+
},
2016
+
"node_modules/devalue": {
2017
+
"version": "5.1.1",
2018
+
"resolved": "https://registry.npmjs.org/devalue/-/devalue-5.1.1.tgz",
2019
+
"integrity": "sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==",
2020
+
"license": "MIT"
2021
+
},
2022
+
"node_modules/devlop": {
2023
+
"version": "1.1.0",
2024
+
"resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
2025
+
"integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
2026
+
"license": "MIT",
2027
+
"dependencies": {
2028
+
"dequal": "^2.0.0"
2029
+
},
2030
+
"funding": {
2031
+
"type": "github",
2032
+
"url": "https://github.com/sponsors/wooorm"
2033
+
}
2034
+
},
2035
+
"node_modules/dfa": {
2036
+
"version": "1.2.0",
2037
+
"resolved": "https://registry.npmjs.org/dfa/-/dfa-1.2.0.tgz",
2038
+
"integrity": "sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==",
2039
+
"license": "MIT"
2040
+
},
2041
+
"node_modules/diff": {
2042
+
"version": "5.2.0",
2043
+
"resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz",
2044
+
"integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==",
2045
+
"license": "BSD-3-Clause",
2046
+
"engines": {
2047
+
"node": ">=0.3.1"
2048
+
}
2049
+
},
2050
+
"node_modules/dlv": {
2051
+
"version": "1.1.3",
2052
+
"resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
2053
+
"integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==",
2054
+
"license": "MIT"
2055
+
},
2056
+
"node_modules/dset": {
2057
+
"version": "3.1.4",
2058
+
"resolved": "https://registry.npmjs.org/dset/-/dset-3.1.4.tgz",
2059
+
"integrity": "sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==",
2060
+
"license": "MIT",
2061
+
"engines": {
2062
+
"node": ">=4"
2063
+
}
2064
+
},
2065
+
"node_modules/emoji-regex": {
2066
+
"version": "10.4.0",
2067
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz",
2068
+
"integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==",
2069
+
"license": "MIT"
2070
+
},
2071
+
"node_modules/entities": {
2072
+
"version": "6.0.1",
2073
+
"resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
2074
+
"integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
2075
+
"license": "BSD-2-Clause",
2076
+
"engines": {
2077
+
"node": ">=0.12"
2078
+
},
2079
+
"funding": {
2080
+
"url": "https://github.com/fb55/entities?sponsor=1"
2081
+
}
2082
+
},
2083
+
"node_modules/es-module-lexer": {
2084
+
"version": "1.7.0",
2085
+
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz",
2086
+
"integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==",
2087
+
"license": "MIT"
2088
+
},
2089
+
"node_modules/esbuild": {
2090
+
"version": "0.25.8",
2091
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.8.tgz",
2092
+
"integrity": "sha512-vVC0USHGtMi8+R4Kz8rt6JhEWLxsv9Rnu/lGYbPR8u47B+DCBksq9JarW0zOO7bs37hyOK1l2/oqtbciutL5+Q==",
2093
+
"hasInstallScript": true,
2094
+
"license": "MIT",
2095
+
"bin": {
2096
+
"esbuild": "bin/esbuild"
2097
+
},
2098
+
"engines": {
2099
+
"node": ">=18"
2100
+
},
2101
+
"optionalDependencies": {
2102
+
"@esbuild/aix-ppc64": "0.25.8",
2103
+
"@esbuild/android-arm": "0.25.8",
2104
+
"@esbuild/android-arm64": "0.25.8",
2105
+
"@esbuild/android-x64": "0.25.8",
2106
+
"@esbuild/darwin-arm64": "0.25.8",
2107
+
"@esbuild/darwin-x64": "0.25.8",
2108
+
"@esbuild/freebsd-arm64": "0.25.8",
2109
+
"@esbuild/freebsd-x64": "0.25.8",
2110
+
"@esbuild/linux-arm": "0.25.8",
2111
+
"@esbuild/linux-arm64": "0.25.8",
2112
+
"@esbuild/linux-ia32": "0.25.8",
2113
+
"@esbuild/linux-loong64": "0.25.8",
2114
+
"@esbuild/linux-mips64el": "0.25.8",
2115
+
"@esbuild/linux-ppc64": "0.25.8",
2116
+
"@esbuild/linux-riscv64": "0.25.8",
2117
+
"@esbuild/linux-s390x": "0.25.8",
2118
+
"@esbuild/linux-x64": "0.25.8",
2119
+
"@esbuild/netbsd-arm64": "0.25.8",
2120
+
"@esbuild/netbsd-x64": "0.25.8",
2121
+
"@esbuild/openbsd-arm64": "0.25.8",
2122
+
"@esbuild/openbsd-x64": "0.25.8",
2123
+
"@esbuild/openharmony-arm64": "0.25.8",
2124
+
"@esbuild/sunos-x64": "0.25.8",
2125
+
"@esbuild/win32-arm64": "0.25.8",
2126
+
"@esbuild/win32-ia32": "0.25.8",
2127
+
"@esbuild/win32-x64": "0.25.8"
2128
+
}
2129
+
},
2130
+
"node_modules/escape-string-regexp": {
2131
+
"version": "5.0.0",
2132
+
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
2133
+
"integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
2134
+
"license": "MIT",
2135
+
"engines": {
2136
+
"node": ">=12"
2137
+
},
2138
+
"funding": {
2139
+
"url": "https://github.com/sponsors/sindresorhus"
2140
+
}
2141
+
},
2142
+
"node_modules/estree-walker": {
2143
+
"version": "3.0.3",
2144
+
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
2145
+
"integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
2146
+
"license": "MIT",
2147
+
"dependencies": {
2148
+
"@types/estree": "^1.0.0"
2149
+
}
2150
+
},
2151
+
"node_modules/eventemitter3": {
2152
+
"version": "5.0.1",
2153
+
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz",
2154
+
"integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==",
2155
+
"license": "MIT"
2156
+
},
2157
+
"node_modules/extend": {
2158
+
"version": "3.0.2",
2159
+
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
2160
+
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
2161
+
"license": "MIT"
2162
+
},
2163
+
"node_modules/fast-deep-equal": {
2164
+
"version": "3.1.3",
2165
+
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
2166
+
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
2167
+
"license": "MIT"
2168
+
},
2169
+
"node_modules/fdir": {
2170
+
"version": "6.4.6",
2171
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz",
2172
+
"integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==",
2173
+
"license": "MIT",
2174
+
"peerDependencies": {
2175
+
"picomatch": "^3 || ^4"
2176
+
},
2177
+
"peerDependenciesMeta": {
2178
+
"picomatch": {
2179
+
"optional": true
2180
+
}
2181
+
}
2182
+
},
2183
+
"node_modules/flattie": {
2184
+
"version": "1.1.1",
2185
+
"resolved": "https://registry.npmjs.org/flattie/-/flattie-1.1.1.tgz",
2186
+
"integrity": "sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==",
2187
+
"license": "MIT",
2188
+
"engines": {
2189
+
"node": ">=8"
2190
+
}
2191
+
},
2192
+
"node_modules/fontace": {
2193
+
"version": "0.3.0",
2194
+
"resolved": "https://registry.npmjs.org/fontace/-/fontace-0.3.0.tgz",
2195
+
"integrity": "sha512-czoqATrcnxgWb/nAkfyIrRp6Q8biYj7nGnL6zfhTcX+JKKpWHFBnb8uNMw/kZr7u++3Y3wYSYoZgHkCcsuBpBg==",
2196
+
"license": "MIT",
2197
+
"dependencies": {
2198
+
"@types/fontkit": "^2.0.8",
2199
+
"fontkit": "^2.0.4"
2200
+
}
2201
+
},
2202
+
"node_modules/fontkit": {
2203
+
"version": "2.0.4",
2204
+
"resolved": "https://registry.npmjs.org/fontkit/-/fontkit-2.0.4.tgz",
2205
+
"integrity": "sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==",
2206
+
"license": "MIT",
2207
+
"dependencies": {
2208
+
"@swc/helpers": "^0.5.12",
2209
+
"brotli": "^1.3.2",
2210
+
"clone": "^2.1.2",
2211
+
"dfa": "^1.2.0",
2212
+
"fast-deep-equal": "^3.1.3",
2213
+
"restructure": "^3.0.0",
2214
+
"tiny-inflate": "^1.0.3",
2215
+
"unicode-properties": "^1.4.0",
2216
+
"unicode-trie": "^2.0.0"
2217
+
}
2218
+
},
2219
+
"node_modules/fsevents": {
2220
+
"version": "2.3.3",
2221
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
2222
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
2223
+
"hasInstallScript": true,
2224
+
"license": "MIT",
2225
+
"optional": true,
2226
+
"os": [
2227
+
"darwin"
2228
+
],
2229
+
"engines": {
2230
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2231
+
}
2232
+
},
2233
+
"node_modules/get-east-asian-width": {
2234
+
"version": "1.3.0",
2235
+
"resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.3.0.tgz",
2236
+
"integrity": "sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==",
2237
+
"license": "MIT",
2238
+
"engines": {
2239
+
"node": ">=18"
2240
+
},
2241
+
"funding": {
2242
+
"url": "https://github.com/sponsors/sindresorhus"
2243
+
}
2244
+
},
2245
+
"node_modules/github-slugger": {
2246
+
"version": "2.0.0",
2247
+
"resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz",
2248
+
"integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==",
2249
+
"license": "ISC"
2250
+
},
2251
+
"node_modules/h3": {
2252
+
"version": "1.15.4",
2253
+
"resolved": "https://registry.npmjs.org/h3/-/h3-1.15.4.tgz",
2254
+
"integrity": "sha512-z5cFQWDffyOe4vQ9xIqNfCZdV4p//vy6fBnr8Q1AWnVZ0teurKMG66rLj++TKwKPUP3u7iMUvrvKaEUiQw2QWQ==",
2255
+
"license": "MIT",
2256
+
"dependencies": {
2257
+
"cookie-es": "^1.2.2",
2258
+
"crossws": "^0.3.5",
2259
+
"defu": "^6.1.4",
2260
+
"destr": "^2.0.5",
2261
+
"iron-webcrypto": "^1.2.1",
2262
+
"node-mock-http": "^1.0.2",
2263
+
"radix3": "^1.1.2",
2264
+
"ufo": "^1.6.1",
2265
+
"uncrypto": "^0.1.3"
2266
+
}
2267
+
},
2268
+
"node_modules/hast-util-from-html": {
2269
+
"version": "2.0.3",
2270
+
"resolved": "https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz",
2271
+
"integrity": "sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==",
2272
+
"license": "MIT",
2273
+
"dependencies": {
2274
+
"@types/hast": "^3.0.0",
2275
+
"devlop": "^1.1.0",
2276
+
"hast-util-from-parse5": "^8.0.0",
2277
+
"parse5": "^7.0.0",
2278
+
"vfile": "^6.0.0",
2279
+
"vfile-message": "^4.0.0"
2280
+
},
2281
+
"funding": {
2282
+
"type": "opencollective",
2283
+
"url": "https://opencollective.com/unified"
2284
+
}
2285
+
},
2286
+
"node_modules/hast-util-from-parse5": {
2287
+
"version": "8.0.3",
2288
+
"resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz",
2289
+
"integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==",
2290
+
"license": "MIT",
2291
+
"dependencies": {
2292
+
"@types/hast": "^3.0.0",
2293
+
"@types/unist": "^3.0.0",
2294
+
"devlop": "^1.0.0",
2295
+
"hastscript": "^9.0.0",
2296
+
"property-information": "^7.0.0",
2297
+
"vfile": "^6.0.0",
2298
+
"vfile-location": "^5.0.0",
2299
+
"web-namespaces": "^2.0.0"
2300
+
},
2301
+
"funding": {
2302
+
"type": "opencollective",
2303
+
"url": "https://opencollective.com/unified"
2304
+
}
2305
+
},
2306
+
"node_modules/hast-util-is-element": {
2307
+
"version": "3.0.0",
2308
+
"resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz",
2309
+
"integrity": "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==",
2310
+
"license": "MIT",
2311
+
"dependencies": {
2312
+
"@types/hast": "^3.0.0"
2313
+
},
2314
+
"funding": {
2315
+
"type": "opencollective",
2316
+
"url": "https://opencollective.com/unified"
2317
+
}
2318
+
},
2319
+
"node_modules/hast-util-parse-selector": {
2320
+
"version": "4.0.0",
2321
+
"resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz",
2322
+
"integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==",
2323
+
"license": "MIT",
2324
+
"dependencies": {
2325
+
"@types/hast": "^3.0.0"
2326
+
},
2327
+
"funding": {
2328
+
"type": "opencollective",
2329
+
"url": "https://opencollective.com/unified"
2330
+
}
2331
+
},
2332
+
"node_modules/hast-util-raw": {
2333
+
"version": "9.1.0",
2334
+
"resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.1.0.tgz",
2335
+
"integrity": "sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==",
2336
+
"license": "MIT",
2337
+
"dependencies": {
2338
+
"@types/hast": "^3.0.0",
2339
+
"@types/unist": "^3.0.0",
2340
+
"@ungap/structured-clone": "^1.0.0",
2341
+
"hast-util-from-parse5": "^8.0.0",
2342
+
"hast-util-to-parse5": "^8.0.0",
2343
+
"html-void-elements": "^3.0.0",
2344
+
"mdast-util-to-hast": "^13.0.0",
2345
+
"parse5": "^7.0.0",
2346
+
"unist-util-position": "^5.0.0",
2347
+
"unist-util-visit": "^5.0.0",
2348
+
"vfile": "^6.0.0",
2349
+
"web-namespaces": "^2.0.0",
2350
+
"zwitch": "^2.0.0"
2351
+
},
2352
+
"funding": {
2353
+
"type": "opencollective",
2354
+
"url": "https://opencollective.com/unified"
2355
+
}
2356
+
},
2357
+
"node_modules/hast-util-to-html": {
2358
+
"version": "9.0.5",
2359
+
"resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz",
2360
+
"integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==",
2361
+
"license": "MIT",
2362
+
"dependencies": {
2363
+
"@types/hast": "^3.0.0",
2364
+
"@types/unist": "^3.0.0",
2365
+
"ccount": "^2.0.0",
2366
+
"comma-separated-tokens": "^2.0.0",
2367
+
"hast-util-whitespace": "^3.0.0",
2368
+
"html-void-elements": "^3.0.0",
2369
+
"mdast-util-to-hast": "^13.0.0",
2370
+
"property-information": "^7.0.0",
2371
+
"space-separated-tokens": "^2.0.0",
2372
+
"stringify-entities": "^4.0.0",
2373
+
"zwitch": "^2.0.4"
2374
+
},
2375
+
"funding": {
2376
+
"type": "opencollective",
2377
+
"url": "https://opencollective.com/unified"
2378
+
}
2379
+
},
2380
+
"node_modules/hast-util-to-parse5": {
2381
+
"version": "8.0.0",
2382
+
"resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz",
2383
+
"integrity": "sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==",
2384
+
"license": "MIT",
2385
+
"dependencies": {
2386
+
"@types/hast": "^3.0.0",
2387
+
"comma-separated-tokens": "^2.0.0",
2388
+
"devlop": "^1.0.0",
2389
+
"property-information": "^6.0.0",
2390
+
"space-separated-tokens": "^2.0.0",
2391
+
"web-namespaces": "^2.0.0",
2392
+
"zwitch": "^2.0.0"
2393
+
},
2394
+
"funding": {
2395
+
"type": "opencollective",
2396
+
"url": "https://opencollective.com/unified"
2397
+
}
2398
+
},
2399
+
"node_modules/hast-util-to-parse5/node_modules/property-information": {
2400
+
"version": "6.5.0",
2401
+
"resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz",
2402
+
"integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==",
2403
+
"license": "MIT",
2404
+
"funding": {
2405
+
"type": "github",
2406
+
"url": "https://github.com/sponsors/wooorm"
2407
+
}
2408
+
},
2409
+
"node_modules/hast-util-to-text": {
2410
+
"version": "4.0.2",
2411
+
"resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz",
2412
+
"integrity": "sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==",
2413
+
"license": "MIT",
2414
+
"dependencies": {
2415
+
"@types/hast": "^3.0.0",
2416
+
"@types/unist": "^3.0.0",
2417
+
"hast-util-is-element": "^3.0.0",
2418
+
"unist-util-find-after": "^5.0.0"
2419
+
},
2420
+
"funding": {
2421
+
"type": "opencollective",
2422
+
"url": "https://opencollective.com/unified"
2423
+
}
2424
+
},
2425
+
"node_modules/hast-util-whitespace": {
2426
+
"version": "3.0.0",
2427
+
"resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz",
2428
+
"integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==",
2429
+
"license": "MIT",
2430
+
"dependencies": {
2431
+
"@types/hast": "^3.0.0"
2432
+
},
2433
+
"funding": {
2434
+
"type": "opencollective",
2435
+
"url": "https://opencollective.com/unified"
2436
+
}
2437
+
},
2438
+
"node_modules/hastscript": {
2439
+
"version": "9.0.1",
2440
+
"resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz",
2441
+
"integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==",
2442
+
"license": "MIT",
2443
+
"dependencies": {
2444
+
"@types/hast": "^3.0.0",
2445
+
"comma-separated-tokens": "^2.0.0",
2446
+
"hast-util-parse-selector": "^4.0.0",
2447
+
"property-information": "^7.0.0",
2448
+
"space-separated-tokens": "^2.0.0"
2449
+
},
2450
+
"funding": {
2451
+
"type": "opencollective",
2452
+
"url": "https://opencollective.com/unified"
2453
+
}
2454
+
},
2455
+
"node_modules/html-escaper": {
2456
+
"version": "3.0.3",
2457
+
"resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-3.0.3.tgz",
2458
+
"integrity": "sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==",
2459
+
"license": "MIT"
2460
+
},
2461
+
"node_modules/html-void-elements": {
2462
+
"version": "3.0.0",
2463
+
"resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz",
2464
+
"integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==",
2465
+
"license": "MIT",
2466
+
"funding": {
2467
+
"type": "github",
2468
+
"url": "https://github.com/sponsors/wooorm"
2469
+
}
2470
+
},
2471
+
"node_modules/http-cache-semantics": {
2472
+
"version": "4.2.0",
2473
+
"resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz",
2474
+
"integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==",
2475
+
"license": "BSD-2-Clause"
2476
+
},
2477
+
"node_modules/import-meta-resolve": {
2478
+
"version": "4.1.0",
2479
+
"resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz",
2480
+
"integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==",
2481
+
"license": "MIT",
2482
+
"funding": {
2483
+
"type": "github",
2484
+
"url": "https://github.com/sponsors/wooorm"
2485
+
}
2486
+
},
2487
+
"node_modules/iron-webcrypto": {
2488
+
"version": "1.2.1",
2489
+
"resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz",
2490
+
"integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==",
2491
+
"license": "MIT",
2492
+
"funding": {
2493
+
"url": "https://github.com/sponsors/brc-dd"
2494
+
}
2495
+
},
2496
+
"node_modules/is-arrayish": {
2497
+
"version": "0.3.2",
2498
+
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
2499
+
"integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==",
2500
+
"license": "MIT",
2501
+
"optional": true
2502
+
},
2503
+
"node_modules/is-docker": {
2504
+
"version": "3.0.0",
2505
+
"resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
2506
+
"integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==",
2507
+
"license": "MIT",
2508
+
"bin": {
2509
+
"is-docker": "cli.js"
2510
+
},
2511
+
"engines": {
2512
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
2513
+
},
2514
+
"funding": {
2515
+
"url": "https://github.com/sponsors/sindresorhus"
2516
+
}
2517
+
},
2518
+
"node_modules/is-fullwidth-code-point": {
2519
+
"version": "3.0.0",
2520
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
2521
+
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
2522
+
"license": "MIT",
2523
+
"engines": {
2524
+
"node": ">=8"
2525
+
}
2526
+
},
2527
+
"node_modules/is-inside-container": {
2528
+
"version": "1.0.0",
2529
+
"resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz",
2530
+
"integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==",
2531
+
"license": "MIT",
2532
+
"dependencies": {
2533
+
"is-docker": "^3.0.0"
2534
+
},
2535
+
"bin": {
2536
+
"is-inside-container": "cli.js"
2537
+
},
2538
+
"engines": {
2539
+
"node": ">=14.16"
2540
+
},
2541
+
"funding": {
2542
+
"url": "https://github.com/sponsors/sindresorhus"
2543
+
}
2544
+
},
2545
+
"node_modules/is-plain-obj": {
2546
+
"version": "4.1.0",
2547
+
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
2548
+
"integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
2549
+
"license": "MIT",
2550
+
"engines": {
2551
+
"node": ">=12"
2552
+
},
2553
+
"funding": {
2554
+
"url": "https://github.com/sponsors/sindresorhus"
2555
+
}
2556
+
},
2557
+
"node_modules/is-wsl": {
2558
+
"version": "3.1.0",
2559
+
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz",
2560
+
"integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==",
2561
+
"license": "MIT",
2562
+
"dependencies": {
2563
+
"is-inside-container": "^1.0.0"
2564
+
},
2565
+
"engines": {
2566
+
"node": ">=16"
2567
+
},
2568
+
"funding": {
2569
+
"url": "https://github.com/sponsors/sindresorhus"
2570
+
}
2571
+
},
2572
+
"node_modules/js-yaml": {
2573
+
"version": "4.1.0",
2574
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
2575
+
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
2576
+
"license": "MIT",
2577
+
"dependencies": {
2578
+
"argparse": "^2.0.1"
2579
+
},
2580
+
"bin": {
2581
+
"js-yaml": "bin/js-yaml.js"
2582
+
}
2583
+
},
2584
+
"node_modules/kleur": {
2585
+
"version": "4.1.5",
2586
+
"resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
2587
+
"integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
2588
+
"license": "MIT",
2589
+
"engines": {
2590
+
"node": ">=6"
2591
+
}
2592
+
},
2593
+
"node_modules/longest-streak": {
2594
+
"version": "3.1.0",
2595
+
"resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
2596
+
"integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
2597
+
"license": "MIT",
2598
+
"funding": {
2599
+
"type": "github",
2600
+
"url": "https://github.com/sponsors/wooorm"
2601
+
}
2602
+
},
2603
+
"node_modules/lru-cache": {
2604
+
"version": "10.4.3",
2605
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
2606
+
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
2607
+
"license": "ISC"
2608
+
},
2609
+
"node_modules/magic-string": {
2610
+
"version": "0.30.17",
2611
+
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz",
2612
+
"integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
2613
+
"license": "MIT",
2614
+
"dependencies": {
2615
+
"@jridgewell/sourcemap-codec": "^1.5.0"
2616
+
}
2617
+
},
2618
+
"node_modules/magicast": {
2619
+
"version": "0.3.5",
2620
+
"resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.5.tgz",
2621
+
"integrity": "sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==",
2622
+
"license": "MIT",
2623
+
"dependencies": {
2624
+
"@babel/parser": "^7.25.4",
2625
+
"@babel/types": "^7.25.4",
2626
+
"source-map-js": "^1.2.0"
2627
+
}
2628
+
},
2629
+
"node_modules/markdown-table": {
2630
+
"version": "3.0.4",
2631
+
"resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz",
2632
+
"integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==",
2633
+
"license": "MIT",
2634
+
"funding": {
2635
+
"type": "github",
2636
+
"url": "https://github.com/sponsors/wooorm"
2637
+
}
2638
+
},
2639
+
"node_modules/mdast-util-definitions": {
2640
+
"version": "6.0.0",
2641
+
"resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-6.0.0.tgz",
2642
+
"integrity": "sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==",
2643
+
"license": "MIT",
2644
+
"dependencies": {
2645
+
"@types/mdast": "^4.0.0",
2646
+
"@types/unist": "^3.0.0",
2647
+
"unist-util-visit": "^5.0.0"
2648
+
},
2649
+
"funding": {
2650
+
"type": "opencollective",
2651
+
"url": "https://opencollective.com/unified"
2652
+
}
2653
+
},
2654
+
"node_modules/mdast-util-find-and-replace": {
2655
+
"version": "3.0.2",
2656
+
"resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz",
2657
+
"integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==",
2658
+
"license": "MIT",
2659
+
"dependencies": {
2660
+
"@types/mdast": "^4.0.0",
2661
+
"escape-string-regexp": "^5.0.0",
2662
+
"unist-util-is": "^6.0.0",
2663
+
"unist-util-visit-parents": "^6.0.0"
2664
+
},
2665
+
"funding": {
2666
+
"type": "opencollective",
2667
+
"url": "https://opencollective.com/unified"
2668
+
}
2669
+
},
2670
+
"node_modules/mdast-util-from-markdown": {
2671
+
"version": "2.0.2",
2672
+
"resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz",
2673
+
"integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==",
2674
+
"license": "MIT",
2675
+
"dependencies": {
2676
+
"@types/mdast": "^4.0.0",
2677
+
"@types/unist": "^3.0.0",
2678
+
"decode-named-character-reference": "^1.0.0",
2679
+
"devlop": "^1.0.0",
2680
+
"mdast-util-to-string": "^4.0.0",
2681
+
"micromark": "^4.0.0",
2682
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
2683
+
"micromark-util-decode-string": "^2.0.0",
2684
+
"micromark-util-normalize-identifier": "^2.0.0",
2685
+
"micromark-util-symbol": "^2.0.0",
2686
+
"micromark-util-types": "^2.0.0",
2687
+
"unist-util-stringify-position": "^4.0.0"
2688
+
},
2689
+
"funding": {
2690
+
"type": "opencollective",
2691
+
"url": "https://opencollective.com/unified"
2692
+
}
2693
+
},
2694
+
"node_modules/mdast-util-gfm": {
2695
+
"version": "3.1.0",
2696
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz",
2697
+
"integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==",
2698
+
"license": "MIT",
2699
+
"dependencies": {
2700
+
"mdast-util-from-markdown": "^2.0.0",
2701
+
"mdast-util-gfm-autolink-literal": "^2.0.0",
2702
+
"mdast-util-gfm-footnote": "^2.0.0",
2703
+
"mdast-util-gfm-strikethrough": "^2.0.0",
2704
+
"mdast-util-gfm-table": "^2.0.0",
2705
+
"mdast-util-gfm-task-list-item": "^2.0.0",
2706
+
"mdast-util-to-markdown": "^2.0.0"
2707
+
},
2708
+
"funding": {
2709
+
"type": "opencollective",
2710
+
"url": "https://opencollective.com/unified"
2711
+
}
2712
+
},
2713
+
"node_modules/mdast-util-gfm-autolink-literal": {
2714
+
"version": "2.0.1",
2715
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz",
2716
+
"integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==",
2717
+
"license": "MIT",
2718
+
"dependencies": {
2719
+
"@types/mdast": "^4.0.0",
2720
+
"ccount": "^2.0.0",
2721
+
"devlop": "^1.0.0",
2722
+
"mdast-util-find-and-replace": "^3.0.0",
2723
+
"micromark-util-character": "^2.0.0"
2724
+
},
2725
+
"funding": {
2726
+
"type": "opencollective",
2727
+
"url": "https://opencollective.com/unified"
2728
+
}
2729
+
},
2730
+
"node_modules/mdast-util-gfm-footnote": {
2731
+
"version": "2.1.0",
2732
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz",
2733
+
"integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==",
2734
+
"license": "MIT",
2735
+
"dependencies": {
2736
+
"@types/mdast": "^4.0.0",
2737
+
"devlop": "^1.1.0",
2738
+
"mdast-util-from-markdown": "^2.0.0",
2739
+
"mdast-util-to-markdown": "^2.0.0",
2740
+
"micromark-util-normalize-identifier": "^2.0.0"
2741
+
},
2742
+
"funding": {
2743
+
"type": "opencollective",
2744
+
"url": "https://opencollective.com/unified"
2745
+
}
2746
+
},
2747
+
"node_modules/mdast-util-gfm-strikethrough": {
2748
+
"version": "2.0.0",
2749
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz",
2750
+
"integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==",
2751
+
"license": "MIT",
2752
+
"dependencies": {
2753
+
"@types/mdast": "^4.0.0",
2754
+
"mdast-util-from-markdown": "^2.0.0",
2755
+
"mdast-util-to-markdown": "^2.0.0"
2756
+
},
2757
+
"funding": {
2758
+
"type": "opencollective",
2759
+
"url": "https://opencollective.com/unified"
2760
+
}
2761
+
},
2762
+
"node_modules/mdast-util-gfm-table": {
2763
+
"version": "2.0.0",
2764
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz",
2765
+
"integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==",
2766
+
"license": "MIT",
2767
+
"dependencies": {
2768
+
"@types/mdast": "^4.0.0",
2769
+
"devlop": "^1.0.0",
2770
+
"markdown-table": "^3.0.0",
2771
+
"mdast-util-from-markdown": "^2.0.0",
2772
+
"mdast-util-to-markdown": "^2.0.0"
2773
+
},
2774
+
"funding": {
2775
+
"type": "opencollective",
2776
+
"url": "https://opencollective.com/unified"
2777
+
}
2778
+
},
2779
+
"node_modules/mdast-util-gfm-task-list-item": {
2780
+
"version": "2.0.0",
2781
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz",
2782
+
"integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==",
2783
+
"license": "MIT",
2784
+
"dependencies": {
2785
+
"@types/mdast": "^4.0.0",
2786
+
"devlop": "^1.0.0",
2787
+
"mdast-util-from-markdown": "^2.0.0",
2788
+
"mdast-util-to-markdown": "^2.0.0"
2789
+
},
2790
+
"funding": {
2791
+
"type": "opencollective",
2792
+
"url": "https://opencollective.com/unified"
2793
+
}
2794
+
},
2795
+
"node_modules/mdast-util-phrasing": {
2796
+
"version": "4.1.0",
2797
+
"resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
2798
+
"integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
2799
+
"license": "MIT",
2800
+
"dependencies": {
2801
+
"@types/mdast": "^4.0.0",
2802
+
"unist-util-is": "^6.0.0"
2803
+
},
2804
+
"funding": {
2805
+
"type": "opencollective",
2806
+
"url": "https://opencollective.com/unified"
2807
+
}
2808
+
},
2809
+
"node_modules/mdast-util-to-hast": {
2810
+
"version": "13.2.0",
2811
+
"resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz",
2812
+
"integrity": "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==",
2813
+
"license": "MIT",
2814
+
"dependencies": {
2815
+
"@types/hast": "^3.0.0",
2816
+
"@types/mdast": "^4.0.0",
2817
+
"@ungap/structured-clone": "^1.0.0",
2818
+
"devlop": "^1.0.0",
2819
+
"micromark-util-sanitize-uri": "^2.0.0",
2820
+
"trim-lines": "^3.0.0",
2821
+
"unist-util-position": "^5.0.0",
2822
+
"unist-util-visit": "^5.0.0",
2823
+
"vfile": "^6.0.0"
2824
+
},
2825
+
"funding": {
2826
+
"type": "opencollective",
2827
+
"url": "https://opencollective.com/unified"
2828
+
}
2829
+
},
2830
+
"node_modules/mdast-util-to-markdown": {
2831
+
"version": "2.1.2",
2832
+
"resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
2833
+
"integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
2834
+
"license": "MIT",
2835
+
"dependencies": {
2836
+
"@types/mdast": "^4.0.0",
2837
+
"@types/unist": "^3.0.0",
2838
+
"longest-streak": "^3.0.0",
2839
+
"mdast-util-phrasing": "^4.0.0",
2840
+
"mdast-util-to-string": "^4.0.0",
2841
+
"micromark-util-classify-character": "^2.0.0",
2842
+
"micromark-util-decode-string": "^2.0.0",
2843
+
"unist-util-visit": "^5.0.0",
2844
+
"zwitch": "^2.0.0"
2845
+
},
2846
+
"funding": {
2847
+
"type": "opencollective",
2848
+
"url": "https://opencollective.com/unified"
2849
+
}
2850
+
},
2851
+
"node_modules/mdast-util-to-string": {
2852
+
"version": "4.0.0",
2853
+
"resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
2854
+
"integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
2855
+
"license": "MIT",
2856
+
"dependencies": {
2857
+
"@types/mdast": "^4.0.0"
2858
+
},
2859
+
"funding": {
2860
+
"type": "opencollective",
2861
+
"url": "https://opencollective.com/unified"
2862
+
}
2863
+
},
2864
+
"node_modules/mdn-data": {
2865
+
"version": "2.12.2",
2866
+
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz",
2867
+
"integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==",
2868
+
"license": "CC0-1.0"
2869
+
},
2870
+
"node_modules/micromark": {
2871
+
"version": "4.0.2",
2872
+
"resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
2873
+
"integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
2874
+
"funding": [
2875
+
{
2876
+
"type": "GitHub Sponsors",
2877
+
"url": "https://github.com/sponsors/unifiedjs"
2878
+
},
2879
+
{
2880
+
"type": "OpenCollective",
2881
+
"url": "https://opencollective.com/unified"
2882
+
}
2883
+
],
2884
+
"license": "MIT",
2885
+
"dependencies": {
2886
+
"@types/debug": "^4.0.0",
2887
+
"debug": "^4.0.0",
2888
+
"decode-named-character-reference": "^1.0.0",
2889
+
"devlop": "^1.0.0",
2890
+
"micromark-core-commonmark": "^2.0.0",
2891
+
"micromark-factory-space": "^2.0.0",
2892
+
"micromark-util-character": "^2.0.0",
2893
+
"micromark-util-chunked": "^2.0.0",
2894
+
"micromark-util-combine-extensions": "^2.0.0",
2895
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
2896
+
"micromark-util-encode": "^2.0.0",
2897
+
"micromark-util-normalize-identifier": "^2.0.0",
2898
+
"micromark-util-resolve-all": "^2.0.0",
2899
+
"micromark-util-sanitize-uri": "^2.0.0",
2900
+
"micromark-util-subtokenize": "^2.0.0",
2901
+
"micromark-util-symbol": "^2.0.0",
2902
+
"micromark-util-types": "^2.0.0"
2903
+
}
2904
+
},
2905
+
"node_modules/micromark-core-commonmark": {
2906
+
"version": "2.0.3",
2907
+
"resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
2908
+
"integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
2909
+
"funding": [
2910
+
{
2911
+
"type": "GitHub Sponsors",
2912
+
"url": "https://github.com/sponsors/unifiedjs"
2913
+
},
2914
+
{
2915
+
"type": "OpenCollective",
2916
+
"url": "https://opencollective.com/unified"
2917
+
}
2918
+
],
2919
+
"license": "MIT",
2920
+
"dependencies": {
2921
+
"decode-named-character-reference": "^1.0.0",
2922
+
"devlop": "^1.0.0",
2923
+
"micromark-factory-destination": "^2.0.0",
2924
+
"micromark-factory-label": "^2.0.0",
2925
+
"micromark-factory-space": "^2.0.0",
2926
+
"micromark-factory-title": "^2.0.0",
2927
+
"micromark-factory-whitespace": "^2.0.0",
2928
+
"micromark-util-character": "^2.0.0",
2929
+
"micromark-util-chunked": "^2.0.0",
2930
+
"micromark-util-classify-character": "^2.0.0",
2931
+
"micromark-util-html-tag-name": "^2.0.0",
2932
+
"micromark-util-normalize-identifier": "^2.0.0",
2933
+
"micromark-util-resolve-all": "^2.0.0",
2934
+
"micromark-util-subtokenize": "^2.0.0",
2935
+
"micromark-util-symbol": "^2.0.0",
2936
+
"micromark-util-types": "^2.0.0"
2937
+
}
2938
+
},
2939
+
"node_modules/micromark-extension-gfm": {
2940
+
"version": "3.0.0",
2941
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz",
2942
+
"integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==",
2943
+
"license": "MIT",
2944
+
"dependencies": {
2945
+
"micromark-extension-gfm-autolink-literal": "^2.0.0",
2946
+
"micromark-extension-gfm-footnote": "^2.0.0",
2947
+
"micromark-extension-gfm-strikethrough": "^2.0.0",
2948
+
"micromark-extension-gfm-table": "^2.0.0",
2949
+
"micromark-extension-gfm-tagfilter": "^2.0.0",
2950
+
"micromark-extension-gfm-task-list-item": "^2.0.0",
2951
+
"micromark-util-combine-extensions": "^2.0.0",
2952
+
"micromark-util-types": "^2.0.0"
2953
+
},
2954
+
"funding": {
2955
+
"type": "opencollective",
2956
+
"url": "https://opencollective.com/unified"
2957
+
}
2958
+
},
2959
+
"node_modules/micromark-extension-gfm-autolink-literal": {
2960
+
"version": "2.1.0",
2961
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz",
2962
+
"integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==",
2963
+
"license": "MIT",
2964
+
"dependencies": {
2965
+
"micromark-util-character": "^2.0.0",
2966
+
"micromark-util-sanitize-uri": "^2.0.0",
2967
+
"micromark-util-symbol": "^2.0.0",
2968
+
"micromark-util-types": "^2.0.0"
2969
+
},
2970
+
"funding": {
2971
+
"type": "opencollective",
2972
+
"url": "https://opencollective.com/unified"
2973
+
}
2974
+
},
2975
+
"node_modules/micromark-extension-gfm-footnote": {
2976
+
"version": "2.1.0",
2977
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz",
2978
+
"integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==",
2979
+
"license": "MIT",
2980
+
"dependencies": {
2981
+
"devlop": "^1.0.0",
2982
+
"micromark-core-commonmark": "^2.0.0",
2983
+
"micromark-factory-space": "^2.0.0",
2984
+
"micromark-util-character": "^2.0.0",
2985
+
"micromark-util-normalize-identifier": "^2.0.0",
2986
+
"micromark-util-sanitize-uri": "^2.0.0",
2987
+
"micromark-util-symbol": "^2.0.0",
2988
+
"micromark-util-types": "^2.0.0"
2989
+
},
2990
+
"funding": {
2991
+
"type": "opencollective",
2992
+
"url": "https://opencollective.com/unified"
2993
+
}
2994
+
},
2995
+
"node_modules/micromark-extension-gfm-strikethrough": {
2996
+
"version": "2.1.0",
2997
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz",
2998
+
"integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==",
2999
+
"license": "MIT",
3000
+
"dependencies": {
3001
+
"devlop": "^1.0.0",
3002
+
"micromark-util-chunked": "^2.0.0",
3003
+
"micromark-util-classify-character": "^2.0.0",
3004
+
"micromark-util-resolve-all": "^2.0.0",
3005
+
"micromark-util-symbol": "^2.0.0",
3006
+
"micromark-util-types": "^2.0.0"
3007
+
},
3008
+
"funding": {
3009
+
"type": "opencollective",
3010
+
"url": "https://opencollective.com/unified"
3011
+
}
3012
+
},
3013
+
"node_modules/micromark-extension-gfm-table": {
3014
+
"version": "2.1.1",
3015
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz",
3016
+
"integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==",
3017
+
"license": "MIT",
3018
+
"dependencies": {
3019
+
"devlop": "^1.0.0",
3020
+
"micromark-factory-space": "^2.0.0",
3021
+
"micromark-util-character": "^2.0.0",
3022
+
"micromark-util-symbol": "^2.0.0",
3023
+
"micromark-util-types": "^2.0.0"
3024
+
},
3025
+
"funding": {
3026
+
"type": "opencollective",
3027
+
"url": "https://opencollective.com/unified"
3028
+
}
3029
+
},
3030
+
"node_modules/micromark-extension-gfm-tagfilter": {
3031
+
"version": "2.0.0",
3032
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz",
3033
+
"integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==",
3034
+
"license": "MIT",
3035
+
"dependencies": {
3036
+
"micromark-util-types": "^2.0.0"
3037
+
},
3038
+
"funding": {
3039
+
"type": "opencollective",
3040
+
"url": "https://opencollective.com/unified"
3041
+
}
3042
+
},
3043
+
"node_modules/micromark-extension-gfm-task-list-item": {
3044
+
"version": "2.1.0",
3045
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz",
3046
+
"integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==",
3047
+
"license": "MIT",
3048
+
"dependencies": {
3049
+
"devlop": "^1.0.0",
3050
+
"micromark-factory-space": "^2.0.0",
3051
+
"micromark-util-character": "^2.0.0",
3052
+
"micromark-util-symbol": "^2.0.0",
3053
+
"micromark-util-types": "^2.0.0"
3054
+
},
3055
+
"funding": {
3056
+
"type": "opencollective",
3057
+
"url": "https://opencollective.com/unified"
3058
+
}
3059
+
},
3060
+
"node_modules/micromark-factory-destination": {
3061
+
"version": "2.0.1",
3062
+
"resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
3063
+
"integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
3064
+
"funding": [
3065
+
{
3066
+
"type": "GitHub Sponsors",
3067
+
"url": "https://github.com/sponsors/unifiedjs"
3068
+
},
3069
+
{
3070
+
"type": "OpenCollective",
3071
+
"url": "https://opencollective.com/unified"
3072
+
}
3073
+
],
3074
+
"license": "MIT",
3075
+
"dependencies": {
3076
+
"micromark-util-character": "^2.0.0",
3077
+
"micromark-util-symbol": "^2.0.0",
3078
+
"micromark-util-types": "^2.0.0"
3079
+
}
3080
+
},
3081
+
"node_modules/micromark-factory-label": {
3082
+
"version": "2.0.1",
3083
+
"resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
3084
+
"integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
3085
+
"funding": [
3086
+
{
3087
+
"type": "GitHub Sponsors",
3088
+
"url": "https://github.com/sponsors/unifiedjs"
3089
+
},
3090
+
{
3091
+
"type": "OpenCollective",
3092
+
"url": "https://opencollective.com/unified"
3093
+
}
3094
+
],
3095
+
"license": "MIT",
3096
+
"dependencies": {
3097
+
"devlop": "^1.0.0",
3098
+
"micromark-util-character": "^2.0.0",
3099
+
"micromark-util-symbol": "^2.0.0",
3100
+
"micromark-util-types": "^2.0.0"
3101
+
}
3102
+
},
3103
+
"node_modules/micromark-factory-space": {
3104
+
"version": "2.0.1",
3105
+
"resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
3106
+
"integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
3107
+
"funding": [
3108
+
{
3109
+
"type": "GitHub Sponsors",
3110
+
"url": "https://github.com/sponsors/unifiedjs"
3111
+
},
3112
+
{
3113
+
"type": "OpenCollective",
3114
+
"url": "https://opencollective.com/unified"
3115
+
}
3116
+
],
3117
+
"license": "MIT",
3118
+
"dependencies": {
3119
+
"micromark-util-character": "^2.0.0",
3120
+
"micromark-util-types": "^2.0.0"
3121
+
}
3122
+
},
3123
+
"node_modules/micromark-factory-title": {
3124
+
"version": "2.0.1",
3125
+
"resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
3126
+
"integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
3127
+
"funding": [
3128
+
{
3129
+
"type": "GitHub Sponsors",
3130
+
"url": "https://github.com/sponsors/unifiedjs"
3131
+
},
3132
+
{
3133
+
"type": "OpenCollective",
3134
+
"url": "https://opencollective.com/unified"
3135
+
}
3136
+
],
3137
+
"license": "MIT",
3138
+
"dependencies": {
3139
+
"micromark-factory-space": "^2.0.0",
3140
+
"micromark-util-character": "^2.0.0",
3141
+
"micromark-util-symbol": "^2.0.0",
3142
+
"micromark-util-types": "^2.0.0"
3143
+
}
3144
+
},
3145
+
"node_modules/micromark-factory-whitespace": {
3146
+
"version": "2.0.1",
3147
+
"resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
3148
+
"integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
3149
+
"funding": [
3150
+
{
3151
+
"type": "GitHub Sponsors",
3152
+
"url": "https://github.com/sponsors/unifiedjs"
3153
+
},
3154
+
{
3155
+
"type": "OpenCollective",
3156
+
"url": "https://opencollective.com/unified"
3157
+
}
3158
+
],
3159
+
"license": "MIT",
3160
+
"dependencies": {
3161
+
"micromark-factory-space": "^2.0.0",
3162
+
"micromark-util-character": "^2.0.0",
3163
+
"micromark-util-symbol": "^2.0.0",
3164
+
"micromark-util-types": "^2.0.0"
3165
+
}
3166
+
},
3167
+
"node_modules/micromark-util-character": {
3168
+
"version": "2.1.1",
3169
+
"resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
3170
+
"integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
3171
+
"funding": [
3172
+
{
3173
+
"type": "GitHub Sponsors",
3174
+
"url": "https://github.com/sponsors/unifiedjs"
3175
+
},
3176
+
{
3177
+
"type": "OpenCollective",
3178
+
"url": "https://opencollective.com/unified"
3179
+
}
3180
+
],
3181
+
"license": "MIT",
3182
+
"dependencies": {
3183
+
"micromark-util-symbol": "^2.0.0",
3184
+
"micromark-util-types": "^2.0.0"
3185
+
}
3186
+
},
3187
+
"node_modules/micromark-util-chunked": {
3188
+
"version": "2.0.1",
3189
+
"resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
3190
+
"integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
3191
+
"funding": [
3192
+
{
3193
+
"type": "GitHub Sponsors",
3194
+
"url": "https://github.com/sponsors/unifiedjs"
3195
+
},
3196
+
{
3197
+
"type": "OpenCollective",
3198
+
"url": "https://opencollective.com/unified"
3199
+
}
3200
+
],
3201
+
"license": "MIT",
3202
+
"dependencies": {
3203
+
"micromark-util-symbol": "^2.0.0"
3204
+
}
3205
+
},
3206
+
"node_modules/micromark-util-classify-character": {
3207
+
"version": "2.0.1",
3208
+
"resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
3209
+
"integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
3210
+
"funding": [
3211
+
{
3212
+
"type": "GitHub Sponsors",
3213
+
"url": "https://github.com/sponsors/unifiedjs"
3214
+
},
3215
+
{
3216
+
"type": "OpenCollective",
3217
+
"url": "https://opencollective.com/unified"
3218
+
}
3219
+
],
3220
+
"license": "MIT",
3221
+
"dependencies": {
3222
+
"micromark-util-character": "^2.0.0",
3223
+
"micromark-util-symbol": "^2.0.0",
3224
+
"micromark-util-types": "^2.0.0"
3225
+
}
3226
+
},
3227
+
"node_modules/micromark-util-combine-extensions": {
3228
+
"version": "2.0.1",
3229
+
"resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
3230
+
"integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
3231
+
"funding": [
3232
+
{
3233
+
"type": "GitHub Sponsors",
3234
+
"url": "https://github.com/sponsors/unifiedjs"
3235
+
},
3236
+
{
3237
+
"type": "OpenCollective",
3238
+
"url": "https://opencollective.com/unified"
3239
+
}
3240
+
],
3241
+
"license": "MIT",
3242
+
"dependencies": {
3243
+
"micromark-util-chunked": "^2.0.0",
3244
+
"micromark-util-types": "^2.0.0"
3245
+
}
3246
+
},
3247
+
"node_modules/micromark-util-decode-numeric-character-reference": {
3248
+
"version": "2.0.2",
3249
+
"resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
3250
+
"integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
3251
+
"funding": [
3252
+
{
3253
+
"type": "GitHub Sponsors",
3254
+
"url": "https://github.com/sponsors/unifiedjs"
3255
+
},
3256
+
{
3257
+
"type": "OpenCollective",
3258
+
"url": "https://opencollective.com/unified"
3259
+
}
3260
+
],
3261
+
"license": "MIT",
3262
+
"dependencies": {
3263
+
"micromark-util-symbol": "^2.0.0"
3264
+
}
3265
+
},
3266
+
"node_modules/micromark-util-decode-string": {
3267
+
"version": "2.0.1",
3268
+
"resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
3269
+
"integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
3270
+
"funding": [
3271
+
{
3272
+
"type": "GitHub Sponsors",
3273
+
"url": "https://github.com/sponsors/unifiedjs"
3274
+
},
3275
+
{
3276
+
"type": "OpenCollective",
3277
+
"url": "https://opencollective.com/unified"
3278
+
}
3279
+
],
3280
+
"license": "MIT",
3281
+
"dependencies": {
3282
+
"decode-named-character-reference": "^1.0.0",
3283
+
"micromark-util-character": "^2.0.0",
3284
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
3285
+
"micromark-util-symbol": "^2.0.0"
3286
+
}
3287
+
},
3288
+
"node_modules/micromark-util-encode": {
3289
+
"version": "2.0.1",
3290
+
"resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
3291
+
"integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
3292
+
"funding": [
3293
+
{
3294
+
"type": "GitHub Sponsors",
3295
+
"url": "https://github.com/sponsors/unifiedjs"
3296
+
},
3297
+
{
3298
+
"type": "OpenCollective",
3299
+
"url": "https://opencollective.com/unified"
3300
+
}
3301
+
],
3302
+
"license": "MIT"
3303
+
},
3304
+
"node_modules/micromark-util-html-tag-name": {
3305
+
"version": "2.0.1",
3306
+
"resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
3307
+
"integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
3308
+
"funding": [
3309
+
{
3310
+
"type": "GitHub Sponsors",
3311
+
"url": "https://github.com/sponsors/unifiedjs"
3312
+
},
3313
+
{
3314
+
"type": "OpenCollective",
3315
+
"url": "https://opencollective.com/unified"
3316
+
}
3317
+
],
3318
+
"license": "MIT"
3319
+
},
3320
+
"node_modules/micromark-util-normalize-identifier": {
3321
+
"version": "2.0.1",
3322
+
"resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
3323
+
"integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
3324
+
"funding": [
3325
+
{
3326
+
"type": "GitHub Sponsors",
3327
+
"url": "https://github.com/sponsors/unifiedjs"
3328
+
},
3329
+
{
3330
+
"type": "OpenCollective",
3331
+
"url": "https://opencollective.com/unified"
3332
+
}
3333
+
],
3334
+
"license": "MIT",
3335
+
"dependencies": {
3336
+
"micromark-util-symbol": "^2.0.0"
3337
+
}
3338
+
},
3339
+
"node_modules/micromark-util-resolve-all": {
3340
+
"version": "2.0.1",
3341
+
"resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
3342
+
"integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
3343
+
"funding": [
3344
+
{
3345
+
"type": "GitHub Sponsors",
3346
+
"url": "https://github.com/sponsors/unifiedjs"
3347
+
},
3348
+
{
3349
+
"type": "OpenCollective",
3350
+
"url": "https://opencollective.com/unified"
3351
+
}
3352
+
],
3353
+
"license": "MIT",
3354
+
"dependencies": {
3355
+
"micromark-util-types": "^2.0.0"
3356
+
}
3357
+
},
3358
+
"node_modules/micromark-util-sanitize-uri": {
3359
+
"version": "2.0.1",
3360
+
"resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
3361
+
"integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
3362
+
"funding": [
3363
+
{
3364
+
"type": "GitHub Sponsors",
3365
+
"url": "https://github.com/sponsors/unifiedjs"
3366
+
},
3367
+
{
3368
+
"type": "OpenCollective",
3369
+
"url": "https://opencollective.com/unified"
3370
+
}
3371
+
],
3372
+
"license": "MIT",
3373
+
"dependencies": {
3374
+
"micromark-util-character": "^2.0.0",
3375
+
"micromark-util-encode": "^2.0.0",
3376
+
"micromark-util-symbol": "^2.0.0"
3377
+
}
3378
+
},
3379
+
"node_modules/micromark-util-subtokenize": {
3380
+
"version": "2.1.0",
3381
+
"resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
3382
+
"integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
3383
+
"funding": [
3384
+
{
3385
+
"type": "GitHub Sponsors",
3386
+
"url": "https://github.com/sponsors/unifiedjs"
3387
+
},
3388
+
{
3389
+
"type": "OpenCollective",
3390
+
"url": "https://opencollective.com/unified"
3391
+
}
3392
+
],
3393
+
"license": "MIT",
3394
+
"dependencies": {
3395
+
"devlop": "^1.0.0",
3396
+
"micromark-util-chunked": "^2.0.0",
3397
+
"micromark-util-symbol": "^2.0.0",
3398
+
"micromark-util-types": "^2.0.0"
3399
+
}
3400
+
},
3401
+
"node_modules/micromark-util-symbol": {
3402
+
"version": "2.0.1",
3403
+
"resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
3404
+
"integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
3405
+
"funding": [
3406
+
{
3407
+
"type": "GitHub Sponsors",
3408
+
"url": "https://github.com/sponsors/unifiedjs"
3409
+
},
3410
+
{
3411
+
"type": "OpenCollective",
3412
+
"url": "https://opencollective.com/unified"
3413
+
}
3414
+
],
3415
+
"license": "MIT"
3416
+
},
3417
+
"node_modules/micromark-util-types": {
3418
+
"version": "2.0.2",
3419
+
"resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
3420
+
"integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
3421
+
"funding": [
3422
+
{
3423
+
"type": "GitHub Sponsors",
3424
+
"url": "https://github.com/sponsors/unifiedjs"
3425
+
},
3426
+
{
3427
+
"type": "OpenCollective",
3428
+
"url": "https://opencollective.com/unified"
3429
+
}
3430
+
],
3431
+
"license": "MIT"
3432
+
},
3433
+
"node_modules/mrmime": {
3434
+
"version": "2.0.1",
3435
+
"resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz",
3436
+
"integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==",
3437
+
"license": "MIT",
3438
+
"engines": {
3439
+
"node": ">=10"
3440
+
}
3441
+
},
3442
+
"node_modules/ms": {
3443
+
"version": "2.1.3",
3444
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
3445
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
3446
+
"license": "MIT"
3447
+
},
3448
+
"node_modules/nanoid": {
3449
+
"version": "3.3.11",
3450
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
3451
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
3452
+
"funding": [
3453
+
{
3454
+
"type": "github",
3455
+
"url": "https://github.com/sponsors/ai"
3456
+
}
3457
+
],
3458
+
"license": "MIT",
3459
+
"bin": {
3460
+
"nanoid": "bin/nanoid.cjs"
3461
+
},
3462
+
"engines": {
3463
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
3464
+
}
3465
+
},
3466
+
"node_modules/neotraverse": {
3467
+
"version": "0.6.18",
3468
+
"resolved": "https://registry.npmjs.org/neotraverse/-/neotraverse-0.6.18.tgz",
3469
+
"integrity": "sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==",
3470
+
"license": "MIT",
3471
+
"engines": {
3472
+
"node": ">= 10"
3473
+
}
3474
+
},
3475
+
"node_modules/nlcst-to-string": {
3476
+
"version": "4.0.0",
3477
+
"resolved": "https://registry.npmjs.org/nlcst-to-string/-/nlcst-to-string-4.0.0.tgz",
3478
+
"integrity": "sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==",
3479
+
"license": "MIT",
3480
+
"dependencies": {
3481
+
"@types/nlcst": "^2.0.0"
3482
+
},
3483
+
"funding": {
3484
+
"type": "opencollective",
3485
+
"url": "https://opencollective.com/unified"
3486
+
}
3487
+
},
3488
+
"node_modules/node-fetch": {
3489
+
"version": "2.7.0",
3490
+
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
3491
+
"integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
3492
+
"license": "MIT",
3493
+
"dependencies": {
3494
+
"whatwg-url": "^5.0.0"
3495
+
},
3496
+
"engines": {
3497
+
"node": "4.x || >=6.0.0"
3498
+
},
3499
+
"peerDependencies": {
3500
+
"encoding": "^0.1.0"
3501
+
},
3502
+
"peerDependenciesMeta": {
3503
+
"encoding": {
3504
+
"optional": true
3505
+
}
3506
+
}
3507
+
},
3508
+
"node_modules/node-fetch-native": {
3509
+
"version": "1.6.7",
3510
+
"resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.7.tgz",
3511
+
"integrity": "sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==",
3512
+
"license": "MIT"
3513
+
},
3514
+
"node_modules/node-mock-http": {
3515
+
"version": "1.0.2",
3516
+
"resolved": "https://registry.npmjs.org/node-mock-http/-/node-mock-http-1.0.2.tgz",
3517
+
"integrity": "sha512-zWaamgDUdo9SSLw47we78+zYw/bDr5gH8pH7oRRs8V3KmBtu8GLgGIbV2p/gRPd3LWpEOpjQj7X1FOU3VFMJ8g==",
3518
+
"license": "MIT"
3519
+
},
3520
+
"node_modules/normalize-path": {
3521
+
"version": "3.0.0",
3522
+
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
3523
+
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
3524
+
"license": "MIT",
3525
+
"engines": {
3526
+
"node": ">=0.10.0"
3527
+
}
3528
+
},
3529
+
"node_modules/ofetch": {
3530
+
"version": "1.4.1",
3531
+
"resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.4.1.tgz",
3532
+
"integrity": "sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==",
3533
+
"license": "MIT",
3534
+
"dependencies": {
3535
+
"destr": "^2.0.3",
3536
+
"node-fetch-native": "^1.6.4",
3537
+
"ufo": "^1.5.4"
3538
+
}
3539
+
},
3540
+
"node_modules/ohash": {
3541
+
"version": "2.0.11",
3542
+
"resolved": "https://registry.npmjs.org/ohash/-/ohash-2.0.11.tgz",
3543
+
"integrity": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==",
3544
+
"license": "MIT"
3545
+
},
3546
+
"node_modules/oniguruma-parser": {
3547
+
"version": "0.12.1",
3548
+
"resolved": "https://registry.npmjs.org/oniguruma-parser/-/oniguruma-parser-0.12.1.tgz",
3549
+
"integrity": "sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==",
3550
+
"license": "MIT"
3551
+
},
3552
+
"node_modules/oniguruma-to-es": {
3553
+
"version": "4.3.3",
3554
+
"resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-4.3.3.tgz",
3555
+
"integrity": "sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==",
3556
+
"license": "MIT",
3557
+
"dependencies": {
3558
+
"oniguruma-parser": "^0.12.1",
3559
+
"regex": "^6.0.1",
3560
+
"regex-recursion": "^6.0.2"
3561
+
}
3562
+
},
3563
+
"node_modules/p-limit": {
3564
+
"version": "6.2.0",
3565
+
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-6.2.0.tgz",
3566
+
"integrity": "sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==",
3567
+
"license": "MIT",
3568
+
"dependencies": {
3569
+
"yocto-queue": "^1.1.1"
3570
+
},
3571
+
"engines": {
3572
+
"node": ">=18"
3573
+
},
3574
+
"funding": {
3575
+
"url": "https://github.com/sponsors/sindresorhus"
3576
+
}
3577
+
},
3578
+
"node_modules/p-queue": {
3579
+
"version": "8.1.0",
3580
+
"resolved": "https://registry.npmjs.org/p-queue/-/p-queue-8.1.0.tgz",
3581
+
"integrity": "sha512-mxLDbbGIBEXTJL0zEx8JIylaj3xQ7Z/7eEVjcF9fJX4DBiH9oqe+oahYnlKKxm0Ci9TlWTyhSHgygxMxjIB2jw==",
3582
+
"license": "MIT",
3583
+
"dependencies": {
3584
+
"eventemitter3": "^5.0.1",
3585
+
"p-timeout": "^6.1.2"
3586
+
},
3587
+
"engines": {
3588
+
"node": ">=18"
3589
+
},
3590
+
"funding": {
3591
+
"url": "https://github.com/sponsors/sindresorhus"
3592
+
}
3593
+
},
3594
+
"node_modules/p-timeout": {
3595
+
"version": "6.1.4",
3596
+
"resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-6.1.4.tgz",
3597
+
"integrity": "sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==",
3598
+
"license": "MIT",
3599
+
"engines": {
3600
+
"node": ">=14.16"
3601
+
},
3602
+
"funding": {
3603
+
"url": "https://github.com/sponsors/sindresorhus"
3604
+
}
3605
+
},
3606
+
"node_modules/package-manager-detector": {
3607
+
"version": "1.3.0",
3608
+
"resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.3.0.tgz",
3609
+
"integrity": "sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==",
3610
+
"license": "MIT"
3611
+
},
3612
+
"node_modules/pako": {
3613
+
"version": "0.2.9",
3614
+
"resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz",
3615
+
"integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==",
3616
+
"license": "MIT"
3617
+
},
3618
+
"node_modules/parse-latin": {
3619
+
"version": "7.0.0",
3620
+
"resolved": "https://registry.npmjs.org/parse-latin/-/parse-latin-7.0.0.tgz",
3621
+
"integrity": "sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==",
3622
+
"license": "MIT",
3623
+
"dependencies": {
3624
+
"@types/nlcst": "^2.0.0",
3625
+
"@types/unist": "^3.0.0",
3626
+
"nlcst-to-string": "^4.0.0",
3627
+
"unist-util-modify-children": "^4.0.0",
3628
+
"unist-util-visit-children": "^3.0.0",
3629
+
"vfile": "^6.0.0"
3630
+
},
3631
+
"funding": {
3632
+
"type": "github",
3633
+
"url": "https://github.com/sponsors/wooorm"
3634
+
}
3635
+
},
3636
+
"node_modules/parse5": {
3637
+
"version": "7.3.0",
3638
+
"resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz",
3639
+
"integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==",
3640
+
"license": "MIT",
3641
+
"dependencies": {
3642
+
"entities": "^6.0.0"
3643
+
},
3644
+
"funding": {
3645
+
"url": "https://github.com/inikulin/parse5?sponsor=1"
3646
+
}
3647
+
},
3648
+
"node_modules/picocolors": {
3649
+
"version": "1.1.1",
3650
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
3651
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
3652
+
"license": "ISC"
3653
+
},
3654
+
"node_modules/picomatch": {
3655
+
"version": "4.0.3",
3656
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
3657
+
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
3658
+
"license": "MIT",
3659
+
"engines": {
3660
+
"node": ">=12"
3661
+
},
3662
+
"funding": {
3663
+
"url": "https://github.com/sponsors/jonschlinkert"
3664
+
}
3665
+
},
3666
+
"node_modules/postcss": {
3667
+
"version": "8.5.6",
3668
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
3669
+
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
3670
+
"funding": [
3671
+
{
3672
+
"type": "opencollective",
3673
+
"url": "https://opencollective.com/postcss/"
3674
+
},
3675
+
{
3676
+
"type": "tidelift",
3677
+
"url": "https://tidelift.com/funding/github/npm/postcss"
3678
+
},
3679
+
{
3680
+
"type": "github",
3681
+
"url": "https://github.com/sponsors/ai"
3682
+
}
3683
+
],
3684
+
"license": "MIT",
3685
+
"dependencies": {
3686
+
"nanoid": "^3.3.11",
3687
+
"picocolors": "^1.1.1",
3688
+
"source-map-js": "^1.2.1"
3689
+
},
3690
+
"engines": {
3691
+
"node": "^10 || ^12 || >=14"
3692
+
}
3693
+
},
3694
+
"node_modules/prismjs": {
3695
+
"version": "1.30.0",
3696
+
"resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz",
3697
+
"integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==",
3698
+
"license": "MIT",
3699
+
"engines": {
3700
+
"node": ">=6"
3701
+
}
3702
+
},
3703
+
"node_modules/prompts": {
3704
+
"version": "2.4.2",
3705
+
"resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
3706
+
"integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
3707
+
"license": "MIT",
3708
+
"dependencies": {
3709
+
"kleur": "^3.0.3",
3710
+
"sisteransi": "^1.0.5"
3711
+
},
3712
+
"engines": {
3713
+
"node": ">= 6"
3714
+
}
3715
+
},
3716
+
"node_modules/prompts/node_modules/kleur": {
3717
+
"version": "3.0.3",
3718
+
"resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
3719
+
"integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
3720
+
"license": "MIT",
3721
+
"engines": {
3722
+
"node": ">=6"
3723
+
}
3724
+
},
3725
+
"node_modules/property-information": {
3726
+
"version": "7.1.0",
3727
+
"resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz",
3728
+
"integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==",
3729
+
"license": "MIT",
3730
+
"funding": {
3731
+
"type": "github",
3732
+
"url": "https://github.com/sponsors/wooorm"
3733
+
}
3734
+
},
3735
+
"node_modules/radix3": {
3736
+
"version": "1.1.2",
3737
+
"resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz",
3738
+
"integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==",
3739
+
"license": "MIT"
3740
+
},
3741
+
"node_modules/readdirp": {
3742
+
"version": "4.1.2",
3743
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
3744
+
"integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
3745
+
"license": "MIT",
3746
+
"engines": {
3747
+
"node": ">= 14.18.0"
3748
+
},
3749
+
"funding": {
3750
+
"type": "individual",
3751
+
"url": "https://paulmillr.com/funding/"
3752
+
}
3753
+
},
3754
+
"node_modules/regex": {
3755
+
"version": "6.0.1",
3756
+
"resolved": "https://registry.npmjs.org/regex/-/regex-6.0.1.tgz",
3757
+
"integrity": "sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==",
3758
+
"license": "MIT",
3759
+
"dependencies": {
3760
+
"regex-utilities": "^2.3.0"
3761
+
}
3762
+
},
3763
+
"node_modules/regex-recursion": {
3764
+
"version": "6.0.2",
3765
+
"resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-6.0.2.tgz",
3766
+
"integrity": "sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==",
3767
+
"license": "MIT",
3768
+
"dependencies": {
3769
+
"regex-utilities": "^2.3.0"
3770
+
}
3771
+
},
3772
+
"node_modules/regex-utilities": {
3773
+
"version": "2.3.0",
3774
+
"resolved": "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz",
3775
+
"integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==",
3776
+
"license": "MIT"
3777
+
},
3778
+
"node_modules/rehype": {
3779
+
"version": "13.0.2",
3780
+
"resolved": "https://registry.npmjs.org/rehype/-/rehype-13.0.2.tgz",
3781
+
"integrity": "sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==",
3782
+
"license": "MIT",
3783
+
"dependencies": {
3784
+
"@types/hast": "^3.0.0",
3785
+
"rehype-parse": "^9.0.0",
3786
+
"rehype-stringify": "^10.0.0",
3787
+
"unified": "^11.0.0"
3788
+
},
3789
+
"funding": {
3790
+
"type": "opencollective",
3791
+
"url": "https://opencollective.com/unified"
3792
+
}
3793
+
},
3794
+
"node_modules/rehype-parse": {
3795
+
"version": "9.0.1",
3796
+
"resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-9.0.1.tgz",
3797
+
"integrity": "sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==",
3798
+
"license": "MIT",
3799
+
"dependencies": {
3800
+
"@types/hast": "^3.0.0",
3801
+
"hast-util-from-html": "^2.0.0",
3802
+
"unified": "^11.0.0"
3803
+
},
3804
+
"funding": {
3805
+
"type": "opencollective",
3806
+
"url": "https://opencollective.com/unified"
3807
+
}
3808
+
},
3809
+
"node_modules/rehype-raw": {
3810
+
"version": "7.0.0",
3811
+
"resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-7.0.0.tgz",
3812
+
"integrity": "sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==",
3813
+
"license": "MIT",
3814
+
"dependencies": {
3815
+
"@types/hast": "^3.0.0",
3816
+
"hast-util-raw": "^9.0.0",
3817
+
"vfile": "^6.0.0"
3818
+
},
3819
+
"funding": {
3820
+
"type": "opencollective",
3821
+
"url": "https://opencollective.com/unified"
3822
+
}
3823
+
},
3824
+
"node_modules/rehype-stringify": {
3825
+
"version": "10.0.1",
3826
+
"resolved": "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-10.0.1.tgz",
3827
+
"integrity": "sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==",
3828
+
"license": "MIT",
3829
+
"dependencies": {
3830
+
"@types/hast": "^3.0.0",
3831
+
"hast-util-to-html": "^9.0.0",
3832
+
"unified": "^11.0.0"
3833
+
},
3834
+
"funding": {
3835
+
"type": "opencollective",
3836
+
"url": "https://opencollective.com/unified"
3837
+
}
3838
+
},
3839
+
"node_modules/remark-gfm": {
3840
+
"version": "4.0.1",
3841
+
"resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz",
3842
+
"integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==",
3843
+
"license": "MIT",
3844
+
"dependencies": {
3845
+
"@types/mdast": "^4.0.0",
3846
+
"mdast-util-gfm": "^3.0.0",
3847
+
"micromark-extension-gfm": "^3.0.0",
3848
+
"remark-parse": "^11.0.0",
3849
+
"remark-stringify": "^11.0.0",
3850
+
"unified": "^11.0.0"
3851
+
},
3852
+
"funding": {
3853
+
"type": "opencollective",
3854
+
"url": "https://opencollective.com/unified"
3855
+
}
3856
+
},
3857
+
"node_modules/remark-parse": {
3858
+
"version": "11.0.0",
3859
+
"resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
3860
+
"integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
3861
+
"license": "MIT",
3862
+
"dependencies": {
3863
+
"@types/mdast": "^4.0.0",
3864
+
"mdast-util-from-markdown": "^2.0.0",
3865
+
"micromark-util-types": "^2.0.0",
3866
+
"unified": "^11.0.0"
3867
+
},
3868
+
"funding": {
3869
+
"type": "opencollective",
3870
+
"url": "https://opencollective.com/unified"
3871
+
}
3872
+
},
3873
+
"node_modules/remark-rehype": {
3874
+
"version": "11.1.2",
3875
+
"resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz",
3876
+
"integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==",
3877
+
"license": "MIT",
3878
+
"dependencies": {
3879
+
"@types/hast": "^3.0.0",
3880
+
"@types/mdast": "^4.0.0",
3881
+
"mdast-util-to-hast": "^13.0.0",
3882
+
"unified": "^11.0.0",
3883
+
"vfile": "^6.0.0"
3884
+
},
3885
+
"funding": {
3886
+
"type": "opencollective",
3887
+
"url": "https://opencollective.com/unified"
3888
+
}
3889
+
},
3890
+
"node_modules/remark-smartypants": {
3891
+
"version": "3.0.2",
3892
+
"resolved": "https://registry.npmjs.org/remark-smartypants/-/remark-smartypants-3.0.2.tgz",
3893
+
"integrity": "sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==",
3894
+
"license": "MIT",
3895
+
"dependencies": {
3896
+
"retext": "^9.0.0",
3897
+
"retext-smartypants": "^6.0.0",
3898
+
"unified": "^11.0.4",
3899
+
"unist-util-visit": "^5.0.0"
3900
+
},
3901
+
"engines": {
3902
+
"node": ">=16.0.0"
3903
+
}
3904
+
},
3905
+
"node_modules/remark-stringify": {
3906
+
"version": "11.0.0",
3907
+
"resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz",
3908
+
"integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==",
3909
+
"license": "MIT",
3910
+
"dependencies": {
3911
+
"@types/mdast": "^4.0.0",
3912
+
"mdast-util-to-markdown": "^2.0.0",
3913
+
"unified": "^11.0.0"
3914
+
},
3915
+
"funding": {
3916
+
"type": "opencollective",
3917
+
"url": "https://opencollective.com/unified"
3918
+
}
3919
+
},
3920
+
"node_modules/restructure": {
3921
+
"version": "3.0.2",
3922
+
"resolved": "https://registry.npmjs.org/restructure/-/restructure-3.0.2.tgz",
3923
+
"integrity": "sha512-gSfoiOEA0VPE6Tukkrr7I0RBdE0s7H1eFCDBk05l1KIQT1UIKNc5JZy6jdyW6eYH3aR3g5b3PuL77rq0hvwtAw==",
3924
+
"license": "MIT"
3925
+
},
3926
+
"node_modules/retext": {
3927
+
"version": "9.0.0",
3928
+
"resolved": "https://registry.npmjs.org/retext/-/retext-9.0.0.tgz",
3929
+
"integrity": "sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==",
3930
+
"license": "MIT",
3931
+
"dependencies": {
3932
+
"@types/nlcst": "^2.0.0",
3933
+
"retext-latin": "^4.0.0",
3934
+
"retext-stringify": "^4.0.0",
3935
+
"unified": "^11.0.0"
3936
+
},
3937
+
"funding": {
3938
+
"type": "opencollective",
3939
+
"url": "https://opencollective.com/unified"
3940
+
}
3941
+
},
3942
+
"node_modules/retext-latin": {
3943
+
"version": "4.0.0",
3944
+
"resolved": "https://registry.npmjs.org/retext-latin/-/retext-latin-4.0.0.tgz",
3945
+
"integrity": "sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==",
3946
+
"license": "MIT",
3947
+
"dependencies": {
3948
+
"@types/nlcst": "^2.0.0",
3949
+
"parse-latin": "^7.0.0",
3950
+
"unified": "^11.0.0"
3951
+
},
3952
+
"funding": {
3953
+
"type": "opencollective",
3954
+
"url": "https://opencollective.com/unified"
3955
+
}
3956
+
},
3957
+
"node_modules/retext-smartypants": {
3958
+
"version": "6.2.0",
3959
+
"resolved": "https://registry.npmjs.org/retext-smartypants/-/retext-smartypants-6.2.0.tgz",
3960
+
"integrity": "sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==",
3961
+
"license": "MIT",
3962
+
"dependencies": {
3963
+
"@types/nlcst": "^2.0.0",
3964
+
"nlcst-to-string": "^4.0.0",
3965
+
"unist-util-visit": "^5.0.0"
3966
+
},
3967
+
"funding": {
3968
+
"type": "opencollective",
3969
+
"url": "https://opencollective.com/unified"
3970
+
}
3971
+
},
3972
+
"node_modules/retext-stringify": {
3973
+
"version": "4.0.0",
3974
+
"resolved": "https://registry.npmjs.org/retext-stringify/-/retext-stringify-4.0.0.tgz",
3975
+
"integrity": "sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==",
3976
+
"license": "MIT",
3977
+
"dependencies": {
3978
+
"@types/nlcst": "^2.0.0",
3979
+
"nlcst-to-string": "^4.0.0",
3980
+
"unified": "^11.0.0"
3981
+
},
3982
+
"funding": {
3983
+
"type": "opencollective",
3984
+
"url": "https://opencollective.com/unified"
3985
+
}
3986
+
},
3987
+
"node_modules/rollup": {
3988
+
"version": "4.46.2",
3989
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.46.2.tgz",
3990
+
"integrity": "sha512-WMmLFI+Boh6xbop+OAGo9cQ3OgX9MIg7xOQjn+pTCwOkk+FNDAeAemXkJ3HzDJrVXleLOFVa1ipuc1AmEx1Dwg==",
3991
+
"license": "MIT",
3992
+
"dependencies": {
3993
+
"@types/estree": "1.0.8"
3994
+
},
3995
+
"bin": {
3996
+
"rollup": "dist/bin/rollup"
3997
+
},
3998
+
"engines": {
3999
+
"node": ">=18.0.0",
4000
+
"npm": ">=8.0.0"
4001
+
},
4002
+
"optionalDependencies": {
4003
+
"@rollup/rollup-android-arm-eabi": "4.46.2",
4004
+
"@rollup/rollup-android-arm64": "4.46.2",
4005
+
"@rollup/rollup-darwin-arm64": "4.46.2",
4006
+
"@rollup/rollup-darwin-x64": "4.46.2",
4007
+
"@rollup/rollup-freebsd-arm64": "4.46.2",
4008
+
"@rollup/rollup-freebsd-x64": "4.46.2",
4009
+
"@rollup/rollup-linux-arm-gnueabihf": "4.46.2",
4010
+
"@rollup/rollup-linux-arm-musleabihf": "4.46.2",
4011
+
"@rollup/rollup-linux-arm64-gnu": "4.46.2",
4012
+
"@rollup/rollup-linux-arm64-musl": "4.46.2",
4013
+
"@rollup/rollup-linux-loongarch64-gnu": "4.46.2",
4014
+
"@rollup/rollup-linux-ppc64-gnu": "4.46.2",
4015
+
"@rollup/rollup-linux-riscv64-gnu": "4.46.2",
4016
+
"@rollup/rollup-linux-riscv64-musl": "4.46.2",
4017
+
"@rollup/rollup-linux-s390x-gnu": "4.46.2",
4018
+
"@rollup/rollup-linux-x64-gnu": "4.46.2",
4019
+
"@rollup/rollup-linux-x64-musl": "4.46.2",
4020
+
"@rollup/rollup-win32-arm64-msvc": "4.46.2",
4021
+
"@rollup/rollup-win32-ia32-msvc": "4.46.2",
4022
+
"@rollup/rollup-win32-x64-msvc": "4.46.2",
4023
+
"fsevents": "~2.3.2"
4024
+
}
4025
+
},
4026
+
"node_modules/semver": {
4027
+
"version": "7.7.2",
4028
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz",
4029
+
"integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==",
4030
+
"license": "ISC",
4031
+
"bin": {
4032
+
"semver": "bin/semver.js"
4033
+
},
4034
+
"engines": {
4035
+
"node": ">=10"
4036
+
}
4037
+
},
4038
+
"node_modules/sharp": {
4039
+
"version": "0.33.5",
4040
+
"resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.5.tgz",
4041
+
"integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==",
4042
+
"hasInstallScript": true,
4043
+
"license": "Apache-2.0",
4044
+
"optional": true,
4045
+
"dependencies": {
4046
+
"color": "^4.2.3",
4047
+
"detect-libc": "^2.0.3",
4048
+
"semver": "^7.6.3"
4049
+
},
4050
+
"engines": {
4051
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
4052
+
},
4053
+
"funding": {
4054
+
"url": "https://opencollective.com/libvips"
4055
+
},
4056
+
"optionalDependencies": {
4057
+
"@img/sharp-darwin-arm64": "0.33.5",
4058
+
"@img/sharp-darwin-x64": "0.33.5",
4059
+
"@img/sharp-libvips-darwin-arm64": "1.0.4",
4060
+
"@img/sharp-libvips-darwin-x64": "1.0.4",
4061
+
"@img/sharp-libvips-linux-arm": "1.0.5",
4062
+
"@img/sharp-libvips-linux-arm64": "1.0.4",
4063
+
"@img/sharp-libvips-linux-s390x": "1.0.4",
4064
+
"@img/sharp-libvips-linux-x64": "1.0.4",
4065
+
"@img/sharp-libvips-linuxmusl-arm64": "1.0.4",
4066
+
"@img/sharp-libvips-linuxmusl-x64": "1.0.4",
4067
+
"@img/sharp-linux-arm": "0.33.5",
4068
+
"@img/sharp-linux-arm64": "0.33.5",
4069
+
"@img/sharp-linux-s390x": "0.33.5",
4070
+
"@img/sharp-linux-x64": "0.33.5",
4071
+
"@img/sharp-linuxmusl-arm64": "0.33.5",
4072
+
"@img/sharp-linuxmusl-x64": "0.33.5",
4073
+
"@img/sharp-wasm32": "0.33.5",
4074
+
"@img/sharp-win32-ia32": "0.33.5",
4075
+
"@img/sharp-win32-x64": "0.33.5"
4076
+
}
4077
+
},
4078
+
"node_modules/shiki": {
4079
+
"version": "3.9.2",
4080
+
"resolved": "https://registry.npmjs.org/shiki/-/shiki-3.9.2.tgz",
4081
+
"integrity": "sha512-t6NKl5e/zGTvw/IyftLcumolgOczhuroqwXngDeMqJ3h3EQiTY/7wmfgPlsmloD8oYfqkEDqxiaH37Pjm1zUhQ==",
4082
+
"license": "MIT",
4083
+
"dependencies": {
4084
+
"@shikijs/core": "3.9.2",
4085
+
"@shikijs/engine-javascript": "3.9.2",
4086
+
"@shikijs/engine-oniguruma": "3.9.2",
4087
+
"@shikijs/langs": "3.9.2",
4088
+
"@shikijs/themes": "3.9.2",
4089
+
"@shikijs/types": "3.9.2",
4090
+
"@shikijs/vscode-textmate": "^10.0.2",
4091
+
"@types/hast": "^3.0.4"
4092
+
}
4093
+
},
4094
+
"node_modules/simple-swizzle": {
4095
+
"version": "0.2.2",
4096
+
"resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
4097
+
"integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==",
4098
+
"license": "MIT",
4099
+
"optional": true,
4100
+
"dependencies": {
4101
+
"is-arrayish": "^0.3.1"
4102
+
}
4103
+
},
4104
+
"node_modules/sisteransi": {
4105
+
"version": "1.0.5",
4106
+
"resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
4107
+
"integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
4108
+
"license": "MIT"
4109
+
},
4110
+
"node_modules/smol-toml": {
4111
+
"version": "1.4.1",
4112
+
"resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.4.1.tgz",
4113
+
"integrity": "sha512-CxdwHXyYTONGHThDbq5XdwbFsuY4wlClRGejfE2NtwUtiHYsP1QtNsHb/hnj31jKYSchztJsaA8pSQoVzkfCFg==",
4114
+
"license": "BSD-3-Clause",
4115
+
"engines": {
4116
+
"node": ">= 18"
4117
+
},
4118
+
"funding": {
4119
+
"url": "https://github.com/sponsors/cyyynthia"
4120
+
}
4121
+
},
4122
+
"node_modules/source-map-js": {
4123
+
"version": "1.2.1",
4124
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
4125
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
4126
+
"license": "BSD-3-Clause",
4127
+
"engines": {
4128
+
"node": ">=0.10.0"
4129
+
}
4130
+
},
4131
+
"node_modules/space-separated-tokens": {
4132
+
"version": "2.0.2",
4133
+
"resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
4134
+
"integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==",
4135
+
"license": "MIT",
4136
+
"funding": {
4137
+
"type": "github",
4138
+
"url": "https://github.com/sponsors/wooorm"
4139
+
}
4140
+
},
4141
+
"node_modules/string-width": {
4142
+
"version": "7.2.0",
4143
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
4144
+
"integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
4145
+
"license": "MIT",
4146
+
"dependencies": {
4147
+
"emoji-regex": "^10.3.0",
4148
+
"get-east-asian-width": "^1.0.0",
4149
+
"strip-ansi": "^7.1.0"
4150
+
},
4151
+
"engines": {
4152
+
"node": ">=18"
4153
+
},
4154
+
"funding": {
4155
+
"url": "https://github.com/sponsors/sindresorhus"
4156
+
}
4157
+
},
4158
+
"node_modules/stringify-entities": {
4159
+
"version": "4.0.4",
4160
+
"resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz",
4161
+
"integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==",
4162
+
"license": "MIT",
4163
+
"dependencies": {
4164
+
"character-entities-html4": "^2.0.0",
4165
+
"character-entities-legacy": "^3.0.0"
4166
+
},
4167
+
"funding": {
4168
+
"type": "github",
4169
+
"url": "https://github.com/sponsors/wooorm"
4170
+
}
4171
+
},
4172
+
"node_modules/strip-ansi": {
4173
+
"version": "7.1.0",
4174
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
4175
+
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
4176
+
"license": "MIT",
4177
+
"dependencies": {
4178
+
"ansi-regex": "^6.0.1"
4179
+
},
4180
+
"engines": {
4181
+
"node": ">=12"
4182
+
},
4183
+
"funding": {
4184
+
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
4185
+
}
4186
+
},
4187
+
"node_modules/tiny-inflate": {
4188
+
"version": "1.0.3",
4189
+
"resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz",
4190
+
"integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==",
4191
+
"license": "MIT"
4192
+
},
4193
+
"node_modules/tinyexec": {
4194
+
"version": "0.3.2",
4195
+
"resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz",
4196
+
"integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==",
4197
+
"license": "MIT"
4198
+
},
4199
+
"node_modules/tinyglobby": {
4200
+
"version": "0.2.14",
4201
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz",
4202
+
"integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==",
4203
+
"license": "MIT",
4204
+
"dependencies": {
4205
+
"fdir": "^6.4.4",
4206
+
"picomatch": "^4.0.2"
4207
+
},
4208
+
"engines": {
4209
+
"node": ">=12.0.0"
4210
+
},
4211
+
"funding": {
4212
+
"url": "https://github.com/sponsors/SuperchupuDev"
4213
+
}
4214
+
},
4215
+
"node_modules/tr46": {
4216
+
"version": "0.0.3",
4217
+
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
4218
+
"integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
4219
+
"license": "MIT"
4220
+
},
4221
+
"node_modules/trim-lines": {
4222
+
"version": "3.0.1",
4223
+
"resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
4224
+
"integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==",
4225
+
"license": "MIT",
4226
+
"funding": {
4227
+
"type": "github",
4228
+
"url": "https://github.com/sponsors/wooorm"
4229
+
}
4230
+
},
4231
+
"node_modules/trough": {
4232
+
"version": "2.2.0",
4233
+
"resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
4234
+
"integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
4235
+
"license": "MIT",
4236
+
"funding": {
4237
+
"type": "github",
4238
+
"url": "https://github.com/sponsors/wooorm"
4239
+
}
4240
+
},
4241
+
"node_modules/tsconfck": {
4242
+
"version": "3.1.6",
4243
+
"resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.6.tgz",
4244
+
"integrity": "sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==",
4245
+
"license": "MIT",
4246
+
"bin": {
4247
+
"tsconfck": "bin/tsconfck.js"
4248
+
},
4249
+
"engines": {
4250
+
"node": "^18 || >=20"
4251
+
},
4252
+
"peerDependencies": {
4253
+
"typescript": "^5.0.0"
4254
+
},
4255
+
"peerDependenciesMeta": {
4256
+
"typescript": {
4257
+
"optional": true
4258
+
}
4259
+
}
4260
+
},
4261
+
"node_modules/tslib": {
4262
+
"version": "2.8.1",
4263
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
4264
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
4265
+
"license": "0BSD"
4266
+
},
4267
+
"node_modules/type-fest": {
4268
+
"version": "4.41.0",
4269
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.41.0.tgz",
4270
+
"integrity": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==",
4271
+
"license": "(MIT OR CC0-1.0)",
4272
+
"engines": {
4273
+
"node": ">=16"
4274
+
},
4275
+
"funding": {
4276
+
"url": "https://github.com/sponsors/sindresorhus"
4277
+
}
4278
+
},
4279
+
"node_modules/typescript": {
4280
+
"version": "5.9.2",
4281
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz",
4282
+
"integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==",
4283
+
"license": "Apache-2.0",
4284
+
"peer": true,
4285
+
"bin": {
4286
+
"tsc": "bin/tsc",
4287
+
"tsserver": "bin/tsserver"
4288
+
},
4289
+
"engines": {
4290
+
"node": ">=14.17"
4291
+
}
4292
+
},
4293
+
"node_modules/ufo": {
4294
+
"version": "1.6.1",
4295
+
"resolved": "https://registry.npmjs.org/ufo/-/ufo-1.6.1.tgz",
4296
+
"integrity": "sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==",
4297
+
"license": "MIT"
4298
+
},
4299
+
"node_modules/ultrahtml": {
4300
+
"version": "1.6.0",
4301
+
"resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.6.0.tgz",
4302
+
"integrity": "sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==",
4303
+
"license": "MIT"
4304
+
},
4305
+
"node_modules/uncrypto": {
4306
+
"version": "0.1.3",
4307
+
"resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz",
4308
+
"integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==",
4309
+
"license": "MIT"
4310
+
},
4311
+
"node_modules/undici-types": {
4312
+
"version": "7.10.0",
4313
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.10.0.tgz",
4314
+
"integrity": "sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==",
4315
+
"license": "MIT"
4316
+
},
4317
+
"node_modules/unicode-properties": {
4318
+
"version": "1.4.1",
4319
+
"resolved": "https://registry.npmjs.org/unicode-properties/-/unicode-properties-1.4.1.tgz",
4320
+
"integrity": "sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==",
4321
+
"license": "MIT",
4322
+
"dependencies": {
4323
+
"base64-js": "^1.3.0",
4324
+
"unicode-trie": "^2.0.0"
4325
+
}
4326
+
},
4327
+
"node_modules/unicode-trie": {
4328
+
"version": "2.0.0",
4329
+
"resolved": "https://registry.npmjs.org/unicode-trie/-/unicode-trie-2.0.0.tgz",
4330
+
"integrity": "sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==",
4331
+
"license": "MIT",
4332
+
"dependencies": {
4333
+
"pako": "^0.2.5",
4334
+
"tiny-inflate": "^1.0.0"
4335
+
}
4336
+
},
4337
+
"node_modules/unified": {
4338
+
"version": "11.0.5",
4339
+
"resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
4340
+
"integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
4341
+
"license": "MIT",
4342
+
"dependencies": {
4343
+
"@types/unist": "^3.0.0",
4344
+
"bail": "^2.0.0",
4345
+
"devlop": "^1.0.0",
4346
+
"extend": "^3.0.0",
4347
+
"is-plain-obj": "^4.0.0",
4348
+
"trough": "^2.0.0",
4349
+
"vfile": "^6.0.0"
4350
+
},
4351
+
"funding": {
4352
+
"type": "opencollective",
4353
+
"url": "https://opencollective.com/unified"
4354
+
}
4355
+
},
4356
+
"node_modules/unifont": {
4357
+
"version": "0.5.2",
4358
+
"resolved": "https://registry.npmjs.org/unifont/-/unifont-0.5.2.tgz",
4359
+
"integrity": "sha512-LzR4WUqzH9ILFvjLAUU7dK3Lnou/qd5kD+IakBtBK4S15/+x2y9VX+DcWQv6s551R6W+vzwgVS6tFg3XggGBgg==",
4360
+
"license": "MIT",
4361
+
"dependencies": {
4362
+
"css-tree": "^3.0.0",
4363
+
"ofetch": "^1.4.1",
4364
+
"ohash": "^2.0.0"
4365
+
}
4366
+
},
4367
+
"node_modules/unist-util-find-after": {
4368
+
"version": "5.0.0",
4369
+
"resolved": "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz",
4370
+
"integrity": "sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==",
4371
+
"license": "MIT",
4372
+
"dependencies": {
4373
+
"@types/unist": "^3.0.0",
4374
+
"unist-util-is": "^6.0.0"
4375
+
},
4376
+
"funding": {
4377
+
"type": "opencollective",
4378
+
"url": "https://opencollective.com/unified"
4379
+
}
4380
+
},
4381
+
"node_modules/unist-util-is": {
4382
+
"version": "6.0.0",
4383
+
"resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz",
4384
+
"integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==",
4385
+
"license": "MIT",
4386
+
"dependencies": {
4387
+
"@types/unist": "^3.0.0"
4388
+
},
4389
+
"funding": {
4390
+
"type": "opencollective",
4391
+
"url": "https://opencollective.com/unified"
4392
+
}
4393
+
},
4394
+
"node_modules/unist-util-modify-children": {
4395
+
"version": "4.0.0",
4396
+
"resolved": "https://registry.npmjs.org/unist-util-modify-children/-/unist-util-modify-children-4.0.0.tgz",
4397
+
"integrity": "sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==",
4398
+
"license": "MIT",
4399
+
"dependencies": {
4400
+
"@types/unist": "^3.0.0",
4401
+
"array-iterate": "^2.0.0"
4402
+
},
4403
+
"funding": {
4404
+
"type": "opencollective",
4405
+
"url": "https://opencollective.com/unified"
4406
+
}
4407
+
},
4408
+
"node_modules/unist-util-position": {
4409
+
"version": "5.0.0",
4410
+
"resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz",
4411
+
"integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==",
4412
+
"license": "MIT",
4413
+
"dependencies": {
4414
+
"@types/unist": "^3.0.0"
4415
+
},
4416
+
"funding": {
4417
+
"type": "opencollective",
4418
+
"url": "https://opencollective.com/unified"
4419
+
}
4420
+
},
4421
+
"node_modules/unist-util-remove-position": {
4422
+
"version": "5.0.0",
4423
+
"resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz",
4424
+
"integrity": "sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==",
4425
+
"license": "MIT",
4426
+
"dependencies": {
4427
+
"@types/unist": "^3.0.0",
4428
+
"unist-util-visit": "^5.0.0"
4429
+
},
4430
+
"funding": {
4431
+
"type": "opencollective",
4432
+
"url": "https://opencollective.com/unified"
4433
+
}
4434
+
},
4435
+
"node_modules/unist-util-stringify-position": {
4436
+
"version": "4.0.0",
4437
+
"resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
4438
+
"integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
4439
+
"license": "MIT",
4440
+
"dependencies": {
4441
+
"@types/unist": "^3.0.0"
4442
+
},
4443
+
"funding": {
4444
+
"type": "opencollective",
4445
+
"url": "https://opencollective.com/unified"
4446
+
}
4447
+
},
4448
+
"node_modules/unist-util-visit": {
4449
+
"version": "5.0.0",
4450
+
"resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz",
4451
+
"integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==",
4452
+
"license": "MIT",
4453
+
"dependencies": {
4454
+
"@types/unist": "^3.0.0",
4455
+
"unist-util-is": "^6.0.0",
4456
+
"unist-util-visit-parents": "^6.0.0"
4457
+
},
4458
+
"funding": {
4459
+
"type": "opencollective",
4460
+
"url": "https://opencollective.com/unified"
4461
+
}
4462
+
},
4463
+
"node_modules/unist-util-visit-children": {
4464
+
"version": "3.0.0",
4465
+
"resolved": "https://registry.npmjs.org/unist-util-visit-children/-/unist-util-visit-children-3.0.0.tgz",
4466
+
"integrity": "sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==",
4467
+
"license": "MIT",
4468
+
"dependencies": {
4469
+
"@types/unist": "^3.0.0"
4470
+
},
4471
+
"funding": {
4472
+
"type": "opencollective",
4473
+
"url": "https://opencollective.com/unified"
4474
+
}
4475
+
},
4476
+
"node_modules/unist-util-visit-parents": {
4477
+
"version": "6.0.1",
4478
+
"resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz",
4479
+
"integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==",
4480
+
"license": "MIT",
4481
+
"dependencies": {
4482
+
"@types/unist": "^3.0.0",
4483
+
"unist-util-is": "^6.0.0"
4484
+
},
4485
+
"funding": {
4486
+
"type": "opencollective",
4487
+
"url": "https://opencollective.com/unified"
4488
+
}
4489
+
},
4490
+
"node_modules/unstorage": {
4491
+
"version": "1.16.1",
4492
+
"resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.16.1.tgz",
4493
+
"integrity": "sha512-gdpZ3guLDhz+zWIlYP1UwQ259tG5T5vYRzDaHMkQ1bBY1SQPutvZnrRjTFaWUUpseErJIgAZS51h6NOcZVZiqQ==",
4494
+
"license": "MIT",
4495
+
"dependencies": {
4496
+
"anymatch": "^3.1.3",
4497
+
"chokidar": "^4.0.3",
4498
+
"destr": "^2.0.5",
4499
+
"h3": "^1.15.3",
4500
+
"lru-cache": "^10.4.3",
4501
+
"node-fetch-native": "^1.6.6",
4502
+
"ofetch": "^1.4.1",
4503
+
"ufo": "^1.6.1"
4504
+
},
4505
+
"peerDependencies": {
4506
+
"@azure/app-configuration": "^1.8.0",
4507
+
"@azure/cosmos": "^4.2.0",
4508
+
"@azure/data-tables": "^13.3.0",
4509
+
"@azure/identity": "^4.6.0",
4510
+
"@azure/keyvault-secrets": "^4.9.0",
4511
+
"@azure/storage-blob": "^12.26.0",
4512
+
"@capacitor/preferences": "^6.0.3 || ^7.0.0",
4513
+
"@deno/kv": ">=0.9.0",
4514
+
"@netlify/blobs": "^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0",
4515
+
"@planetscale/database": "^1.19.0",
4516
+
"@upstash/redis": "^1.34.3",
4517
+
"@vercel/blob": ">=0.27.1",
4518
+
"@vercel/kv": "^1.0.1",
4519
+
"aws4fetch": "^1.0.20",
4520
+
"db0": ">=0.2.1",
4521
+
"idb-keyval": "^6.2.1",
4522
+
"ioredis": "^5.4.2",
4523
+
"uploadthing": "^7.4.4"
4524
+
},
4525
+
"peerDependenciesMeta": {
4526
+
"@azure/app-configuration": {
4527
+
"optional": true
4528
+
},
4529
+
"@azure/cosmos": {
4530
+
"optional": true
4531
+
},
4532
+
"@azure/data-tables": {
4533
+
"optional": true
4534
+
},
4535
+
"@azure/identity": {
4536
+
"optional": true
4537
+
},
4538
+
"@azure/keyvault-secrets": {
4539
+
"optional": true
4540
+
},
4541
+
"@azure/storage-blob": {
4542
+
"optional": true
4543
+
},
4544
+
"@capacitor/preferences": {
4545
+
"optional": true
4546
+
},
4547
+
"@deno/kv": {
4548
+
"optional": true
4549
+
},
4550
+
"@netlify/blobs": {
4551
+
"optional": true
4552
+
},
4553
+
"@planetscale/database": {
4554
+
"optional": true
4555
+
},
4556
+
"@upstash/redis": {
4557
+
"optional": true
4558
+
},
4559
+
"@vercel/blob": {
4560
+
"optional": true
4561
+
},
4562
+
"@vercel/kv": {
4563
+
"optional": true
4564
+
},
4565
+
"aws4fetch": {
4566
+
"optional": true
4567
+
},
4568
+
"db0": {
4569
+
"optional": true
4570
+
},
4571
+
"idb-keyval": {
4572
+
"optional": true
4573
+
},
4574
+
"ioredis": {
4575
+
"optional": true
4576
+
},
4577
+
"uploadthing": {
4578
+
"optional": true
4579
+
}
4580
+
}
4581
+
},
4582
+
"node_modules/vfile": {
4583
+
"version": "6.0.3",
4584
+
"resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
4585
+
"integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
4586
+
"license": "MIT",
4587
+
"dependencies": {
4588
+
"@types/unist": "^3.0.0",
4589
+
"vfile-message": "^4.0.0"
4590
+
},
4591
+
"funding": {
4592
+
"type": "opencollective",
4593
+
"url": "https://opencollective.com/unified"
4594
+
}
4595
+
},
4596
+
"node_modules/vfile-location": {
4597
+
"version": "5.0.3",
4598
+
"resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz",
4599
+
"integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==",
4600
+
"license": "MIT",
4601
+
"dependencies": {
4602
+
"@types/unist": "^3.0.0",
4603
+
"vfile": "^6.0.0"
4604
+
},
4605
+
"funding": {
4606
+
"type": "opencollective",
4607
+
"url": "https://opencollective.com/unified"
4608
+
}
4609
+
},
4610
+
"node_modules/vfile-message": {
4611
+
"version": "4.0.3",
4612
+
"resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
4613
+
"integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
4614
+
"license": "MIT",
4615
+
"dependencies": {
4616
+
"@types/unist": "^3.0.0",
4617
+
"unist-util-stringify-position": "^4.0.0"
4618
+
},
4619
+
"funding": {
4620
+
"type": "opencollective",
4621
+
"url": "https://opencollective.com/unified"
4622
+
}
4623
+
},
4624
+
"node_modules/vite": {
4625
+
"version": "6.3.5",
4626
+
"resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz",
4627
+
"integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==",
4628
+
"license": "MIT",
4629
+
"dependencies": {
4630
+
"esbuild": "^0.25.0",
4631
+
"fdir": "^6.4.4",
4632
+
"picomatch": "^4.0.2",
4633
+
"postcss": "^8.5.3",
4634
+
"rollup": "^4.34.9",
4635
+
"tinyglobby": "^0.2.13"
4636
+
},
4637
+
"bin": {
4638
+
"vite": "bin/vite.js"
4639
+
},
4640
+
"engines": {
4641
+
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
4642
+
},
4643
+
"funding": {
4644
+
"url": "https://github.com/vitejs/vite?sponsor=1"
4645
+
},
4646
+
"optionalDependencies": {
4647
+
"fsevents": "~2.3.3"
4648
+
},
4649
+
"peerDependencies": {
4650
+
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
4651
+
"jiti": ">=1.21.0",
4652
+
"less": "*",
4653
+
"lightningcss": "^1.21.0",
4654
+
"sass": "*",
4655
+
"sass-embedded": "*",
4656
+
"stylus": "*",
4657
+
"sugarss": "*",
4658
+
"terser": "^5.16.0",
4659
+
"tsx": "^4.8.1",
4660
+
"yaml": "^2.4.2"
4661
+
},
4662
+
"peerDependenciesMeta": {
4663
+
"@types/node": {
4664
+
"optional": true
4665
+
},
4666
+
"jiti": {
4667
+
"optional": true
4668
+
},
4669
+
"less": {
4670
+
"optional": true
4671
+
},
4672
+
"lightningcss": {
4673
+
"optional": true
4674
+
},
4675
+
"sass": {
4676
+
"optional": true
4677
+
},
4678
+
"sass-embedded": {
4679
+
"optional": true
4680
+
},
4681
+
"stylus": {
4682
+
"optional": true
4683
+
},
4684
+
"sugarss": {
4685
+
"optional": true
4686
+
},
4687
+
"terser": {
4688
+
"optional": true
4689
+
},
4690
+
"tsx": {
4691
+
"optional": true
4692
+
},
4693
+
"yaml": {
4694
+
"optional": true
4695
+
}
4696
+
}
4697
+
},
4698
+
"node_modules/vitefu": {
4699
+
"version": "1.1.1",
4700
+
"resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.1.1.tgz",
4701
+
"integrity": "sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==",
4702
+
"license": "MIT",
4703
+
"workspaces": [
4704
+
"tests/deps/*",
4705
+
"tests/projects/*",
4706
+
"tests/projects/workspace/packages/*"
4707
+
],
4708
+
"peerDependencies": {
4709
+
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0"
4710
+
},
4711
+
"peerDependenciesMeta": {
4712
+
"vite": {
4713
+
"optional": true
4714
+
}
4715
+
}
4716
+
},
4717
+
"node_modules/web-namespaces": {
4718
+
"version": "2.0.1",
4719
+
"resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz",
4720
+
"integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==",
4721
+
"license": "MIT",
4722
+
"funding": {
4723
+
"type": "github",
4724
+
"url": "https://github.com/sponsors/wooorm"
4725
+
}
4726
+
},
4727
+
"node_modules/webidl-conversions": {
4728
+
"version": "3.0.1",
4729
+
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
4730
+
"integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
4731
+
"license": "BSD-2-Clause"
4732
+
},
4733
+
"node_modules/whatwg-url": {
4734
+
"version": "5.0.0",
4735
+
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
4736
+
"integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
4737
+
"license": "MIT",
4738
+
"dependencies": {
4739
+
"tr46": "~0.0.3",
4740
+
"webidl-conversions": "^3.0.0"
4741
+
}
4742
+
},
4743
+
"node_modules/which-pm-runs": {
4744
+
"version": "1.1.0",
4745
+
"resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.1.0.tgz",
4746
+
"integrity": "sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==",
4747
+
"license": "MIT",
4748
+
"engines": {
4749
+
"node": ">=4"
4750
+
}
4751
+
},
4752
+
"node_modules/widest-line": {
4753
+
"version": "5.0.0",
4754
+
"resolved": "https://registry.npmjs.org/widest-line/-/widest-line-5.0.0.tgz",
4755
+
"integrity": "sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==",
4756
+
"license": "MIT",
4757
+
"dependencies": {
4758
+
"string-width": "^7.0.0"
4759
+
},
4760
+
"engines": {
4761
+
"node": ">=18"
4762
+
},
4763
+
"funding": {
4764
+
"url": "https://github.com/sponsors/sindresorhus"
4765
+
}
4766
+
},
4767
+
"node_modules/wrap-ansi": {
4768
+
"version": "9.0.0",
4769
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz",
4770
+
"integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==",
4771
+
"license": "MIT",
4772
+
"dependencies": {
4773
+
"ansi-styles": "^6.2.1",
4774
+
"string-width": "^7.0.0",
4775
+
"strip-ansi": "^7.1.0"
4776
+
},
4777
+
"engines": {
4778
+
"node": ">=18"
4779
+
},
4780
+
"funding": {
4781
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
4782
+
}
4783
+
},
4784
+
"node_modules/xxhash-wasm": {
4785
+
"version": "1.1.0",
4786
+
"resolved": "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-1.1.0.tgz",
4787
+
"integrity": "sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==",
4788
+
"license": "MIT"
4789
+
},
4790
+
"node_modules/yargs-parser": {
4791
+
"version": "21.1.1",
4792
+
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
4793
+
"integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
4794
+
"license": "ISC",
4795
+
"engines": {
4796
+
"node": ">=12"
4797
+
}
4798
+
},
4799
+
"node_modules/yocto-queue": {
4800
+
"version": "1.2.1",
4801
+
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.1.tgz",
4802
+
"integrity": "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==",
4803
+
"license": "MIT",
4804
+
"engines": {
4805
+
"node": ">=12.20"
4806
+
},
4807
+
"funding": {
4808
+
"url": "https://github.com/sponsors/sindresorhus"
4809
+
}
4810
+
},
4811
+
"node_modules/yocto-spinner": {
4812
+
"version": "0.2.3",
4813
+
"resolved": "https://registry.npmjs.org/yocto-spinner/-/yocto-spinner-0.2.3.tgz",
4814
+
"integrity": "sha512-sqBChb33loEnkoXte1bLg45bEBsOP9N1kzQh5JZNKj/0rik4zAPTNSAVPj3uQAdc6slYJ0Ksc403G2XgxsJQFQ==",
4815
+
"license": "MIT",
4816
+
"dependencies": {
4817
+
"yoctocolors": "^2.1.1"
4818
+
},
4819
+
"engines": {
4820
+
"node": ">=18.19"
4821
+
},
4822
+
"funding": {
4823
+
"url": "https://github.com/sponsors/sindresorhus"
4824
+
}
4825
+
},
4826
+
"node_modules/yoctocolors": {
4827
+
"version": "2.1.1",
4828
+
"resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.1.tgz",
4829
+
"integrity": "sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==",
4830
+
"license": "MIT",
4831
+
"engines": {
4832
+
"node": ">=18"
4833
+
},
4834
+
"funding": {
4835
+
"url": "https://github.com/sponsors/sindresorhus"
4836
+
}
4837
+
},
4838
+
"node_modules/zod": {
4839
+
"version": "3.25.76",
4840
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
4841
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
4842
+
"license": "MIT",
4843
+
"funding": {
4844
+
"url": "https://github.com/sponsors/colinhacks"
4845
+
}
4846
+
},
4847
+
"node_modules/zod-to-json-schema": {
4848
+
"version": "3.24.6",
4849
+
"resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.24.6.tgz",
4850
+
"integrity": "sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==",
4851
+
"license": "ISC",
4852
+
"peerDependencies": {
4853
+
"zod": "^3.24.1"
4854
+
}
4855
+
},
4856
+
"node_modules/zod-to-ts": {
4857
+
"version": "1.2.0",
4858
+
"resolved": "https://registry.npmjs.org/zod-to-ts/-/zod-to-ts-1.2.0.tgz",
4859
+
"integrity": "sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==",
4860
+
"peerDependencies": {
4861
+
"typescript": "^4.9.4 || ^5.0.2",
4862
+
"zod": "^3"
4863
+
}
4864
+
},
4865
+
"node_modules/zwitch": {
4866
+
"version": "2.0.4",
4867
+
"resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
4868
+
"integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
4869
+
"license": "MIT",
4870
+
"funding": {
4871
+
"type": "github",
4872
+
"url": "https://github.com/sponsors/wooorm"
4873
+
}
4874
+
}
4875
+
}
4876
+
}
+14
package.json
+14
package.json
+9
public/favicon.svg
+9
public/favicon.svg
···
1
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 128 128">
2
+
<path d="M50.4 78.5a75.1 75.1 0 0 0-28.5 6.9l24.2-65.7c.7-2 1.9-3.2 3.4-3.2h29c1.5 0 2.7 1.2 3.4 3.2l24.2 65.7s-11.6-7-28.5-7L67 45.5c-.4-1.7-1.6-2.8-2.9-2.8-1.3 0-2.5 1.1-2.9 2.7L50.4 78.5Zm-1.1 28.2Zm-4.2-20.2c-2 6.6-.6 15.8 4.2 20.2a17.5 17.5 0 0 1 .2-.7 5.5 5.5 0 0 1 5.7-4.5c2.8.1 4.3 1.5 4.7 4.7.2 1.1.2 2.3.2 3.5v.4c0 2.7.7 5.2 2.2 7.4a13 13 0 0 0 5.7 4.9v-.3l-.2-.3c-1.8-5.6-.5-9.5 4.4-12.8l1.5-1a73 73 0 0 0 3.2-2.2 16 16 0 0 0 6.8-11.4c.3-2 .1-4-.6-6l-.8.6-1.6 1a37 37 0 0 1-22.4 2.7c-5-.7-9.7-2-13.2-6.2Z" />
3
+
<style>
4
+
path { fill: #000; }
5
+
@media (prefers-color-scheme: dark) {
6
+
path { fill: #FFF; }
7
+
}
8
+
</style>
9
+
</svg>
+16
src/pages/index.astro
+16
src/pages/index.astro
···
1
+
---
2
+
3
+
---
4
+
5
+
<html lang="en">
6
+
<head>
7
+
<meta charset="utf-8" />
8
+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
9
+
<meta name="viewport" content="width=device-width" />
10
+
<meta name="generator" content={Astro.generator} />
11
+
<title>Astro</title>
12
+
</head>
13
+
<body>
14
+
<h1>Astro</h1>
15
+
</body>
16
+
</html>