A website for the ATmosphereConf

Merged READMEs again

authored by houston[bot] and committed by bmann.ca 95337444 2ccea10b

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