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