initial commit

Entomoviscera 81474255

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