My landing page, written in Astro hayden.moe
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: start upgrading to react-router v7

+525 -2547
+1
.gitignore
··· 1 1 node_modules 2 2 3 + .react-router 3 4 /.wrangler 4 5 /build 5 6 .env
+1 -1
functions/[[path]].ts
··· 1 - import { createPagesFunctionHandler } from "@remix-run/cloudflare-pages"; 1 + import { createPagesFunctionHandler } from "@react-router/cloudflare"; 2 2 3 3 // eslint-disable-next-line @typescript-eslint/ban-ts-comment 4 4 // @ts-ignore - the server build file is generated by `remix vite:build`
+8 -9
package.json
··· 5 5 "type": "module", 6 6 "packageManager": "pnpm@9.15.0", 7 7 "scripts": { 8 - "build": "remix vite:build", 8 + "build": "react-router build", 9 9 "deploy": "wrangler pages deploy ./build/client", 10 - "dev": "remix vite:dev", 10 + "dev": "react-router dev", 11 11 "lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .", 12 12 "start": "wrangler pages dev ./build/client", 13 - "typecheck": "tsc", 13 + "typecheck": "react-router typegen && tsc", 14 14 "typegen": "wrangler types" 15 15 }, 16 16 "dependencies": { 17 17 "@atproto/api": "^0.13.20", 18 18 "@cloudflare/kv-asset-handler": "^0.3.4", 19 19 "@fontsource/geist-mono": "^5.1.0", 20 - "@remix-run/cloudflare": "^2.15.1", 21 - "@remix-run/cloudflare-pages": "^2.15.1", 22 - "@remix-run/react": "^2.15.1", 23 - "@remix-run/server-runtime": "^2.15.1", 20 + "@react-router/cloudflare": "^7.0.0", 21 + "@react-router/fs-routes": "^7.0.2", 24 22 "feed": "^4.2.2", 25 23 "isbot": "^5.1.17", 26 24 "react": "^18.3.1", 27 25 "react-dom": "^18.3.1", 28 - "react-markdown": "^9.0.1" 26 + "react-markdown": "^9.0.1", 27 + "react-router": "^7.0.0" 29 28 }, 30 29 "devDependencies": { 31 30 "@cloudflare/workers-types": "^4.20241022.0", 32 - "@remix-run/dev": "^2.13.1", 31 + "@react-router/dev": "^7.0.0", 33 32 "@tailwindcss/typography": "^0.5.15", 34 33 "@types/react": "^18.3.12", 35 34 "@types/react-dom": "^18.3.1",
+474 -2483
pnpm-lock.yaml
··· 17 17 '@fontsource/geist-mono': 18 18 specifier: ^5.1.0 19 19 version: 5.1.0 20 - '@remix-run/cloudflare': 21 - specifier: ^2.15.1 22 - version: 2.15.1(@cloudflare/workers-types@4.20241022.0)(typescript@5.6.3) 23 - '@remix-run/cloudflare-pages': 24 - specifier: ^2.15.1 25 - version: 2.15.1(@cloudflare/workers-types@4.20241022.0)(typescript@5.6.3) 26 - '@remix-run/react': 27 - specifier: ^2.15.1 28 - version: 2.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) 29 - '@remix-run/server-runtime': 30 - specifier: ^2.15.1 31 - version: 2.15.1(typescript@5.6.3) 20 + '@react-router/cloudflare': 21 + specifier: ^7.0.0 22 + version: 7.0.2(@cloudflare/workers-types@4.20241022.0)(react-router@7.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(tsup@8.3.5(jiti@1.21.6)(postcss@8.4.49)(typescript@5.6.3)(yaml@2.6.1))(typescript@5.6.3) 23 + '@react-router/fs-routes': 24 + specifier: ^7.0.2 25 + version: 7.0.2(@react-router/dev@7.0.2(@types/node@22.10.2)(react-router@7.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3)(vite@5.4.11(@types/node@22.10.2))(wrangler@3.84.1(@cloudflare/workers-types@4.20241022.0)))(typescript@5.6.3) 32 26 feed: 33 27 specifier: ^4.2.2 34 28 version: 4.2.2 ··· 44 38 react-markdown: 45 39 specifier: ^9.0.1 46 40 version: 9.0.1(@types/react@18.3.12)(react@18.3.1) 41 + react-router: 42 + specifier: ^7.0.0 43 + version: 7.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 47 44 devDependencies: 48 45 '@cloudflare/workers-types': 49 46 specifier: ^4.20241022.0 50 47 version: 4.20241022.0 51 - '@remix-run/dev': 52 - specifier: ^2.13.1 53 - version: 2.13.1(@remix-run/react@2.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@types/node@22.10.2)(typescript@5.6.3)(vite@5.4.11(@types/node@22.10.2))(wrangler@3.84.1(@cloudflare/workers-types@4.20241022.0)) 48 + '@react-router/dev': 49 + specifier: ^7.0.0 50 + version: 7.0.2(@types/node@22.10.2)(react-router@7.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3)(vite@5.4.11(@types/node@22.10.2))(wrangler@3.84.1(@cloudflare/workers-types@4.20241022.0)) 54 51 '@tailwindcss/typography': 55 52 specifier: ^0.5.15 56 53 version: 0.5.15(tailwindcss@3.4.14) ··· 250 247 peerDependencies: 251 248 '@babel/core': ^7.0.0-0 252 249 253 - '@babel/runtime@7.26.0': 254 - resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} 255 - engines: {node: '>=6.9.0'} 256 - 257 250 '@babel/template@7.25.9': 258 251 resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} 259 252 engines: {node: '>=6.9.0'} ··· 265 258 '@babel/types@7.26.3': 266 259 resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} 267 260 engines: {node: '>=6.9.0'} 268 - 269 - '@cloudflare/kv-asset-handler@0.1.3': 270 - resolution: {integrity: sha512-FNcunDuTmEfQTLRLtA6zz+buIXUHj1soPvSWzzQFBC+n2lsy+CGf/NIrR3SEPCmsVNQj70/Jx2lViCpq+09YpQ==} 271 261 272 262 '@cloudflare/kv-asset-handler@0.3.4': 273 263 resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==} ··· 314 304 resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} 315 305 engines: {node: '>=12'} 316 306 317 - '@emotion/hash@0.9.2': 318 - resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==} 319 - 320 307 '@esbuild-plugins/node-globals-polyfill@0.2.3': 321 308 resolution: {integrity: sha512-r3MIryXDeXDOZh7ih1l/yE9ZLORCd5e8vWg02azWRGj5SPTuoh69A2AIyn0Z31V/kHBfZ4HgWJ+OK3GTTwLmnw==} 322 309 peerDependencies: ··· 333 320 cpu: [ppc64] 334 321 os: [aix] 335 322 323 + '@esbuild/aix-ppc64@0.24.2': 324 + resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==} 325 + engines: {node: '>=18'} 326 + cpu: [ppc64] 327 + os: [aix] 328 + 336 329 '@esbuild/android-arm64@0.17.19': 337 330 resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==} 338 331 engines: {node: '>=12'} 339 332 cpu: [arm64] 340 333 os: [android] 341 334 342 - '@esbuild/android-arm64@0.17.6': 343 - resolution: {integrity: sha512-YnYSCceN/dUzUr5kdtUzB+wZprCafuD89Hs0Aqv9QSdwhYQybhXTaSTcrl6X/aWThn1a/j0eEpUBGOE7269REg==} 335 + '@esbuild/android-arm64@0.21.5': 336 + resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} 344 337 engines: {node: '>=12'} 345 338 cpu: [arm64] 346 339 os: [android] 347 340 348 - '@esbuild/android-arm64@0.21.5': 349 - resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} 350 - engines: {node: '>=12'} 341 + '@esbuild/android-arm64@0.24.2': 342 + resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==} 343 + engines: {node: '>=18'} 351 344 cpu: [arm64] 352 345 os: [android] 353 346 ··· 357 350 cpu: [arm] 358 351 os: [android] 359 352 360 - '@esbuild/android-arm@0.17.6': 361 - resolution: {integrity: sha512-bSC9YVUjADDy1gae8RrioINU6e1lCkg3VGVwm0QQ2E1CWcC4gnMce9+B6RpxuSsrsXsk1yojn7sp1fnG8erE2g==} 353 + '@esbuild/android-arm@0.21.5': 354 + resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 362 355 engines: {node: '>=12'} 363 356 cpu: [arm] 364 357 os: [android] 365 358 366 - '@esbuild/android-arm@0.21.5': 367 - resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 368 - engines: {node: '>=12'} 359 + '@esbuild/android-arm@0.24.2': 360 + resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==} 361 + engines: {node: '>=18'} 369 362 cpu: [arm] 370 363 os: [android] 371 364 ··· 375 368 cpu: [x64] 376 369 os: [android] 377 370 378 - '@esbuild/android-x64@0.17.6': 379 - resolution: {integrity: sha512-MVcYcgSO7pfu/x34uX9u2QIZHmXAB7dEiLQC5bBl5Ryqtpj9lT2sg3gNDEsrPEmimSJW2FXIaxqSQ501YLDsZQ==} 371 + '@esbuild/android-x64@0.21.5': 372 + resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 380 373 engines: {node: '>=12'} 381 374 cpu: [x64] 382 375 os: [android] 383 376 384 - '@esbuild/android-x64@0.21.5': 385 - resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 386 - engines: {node: '>=12'} 377 + '@esbuild/android-x64@0.24.2': 378 + resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==} 379 + engines: {node: '>=18'} 387 380 cpu: [x64] 388 381 os: [android] 389 382 ··· 393 386 cpu: [arm64] 394 387 os: [darwin] 395 388 396 - '@esbuild/darwin-arm64@0.17.6': 397 - resolution: {integrity: sha512-bsDRvlbKMQMt6Wl08nHtFz++yoZHsyTOxnjfB2Q95gato+Yi4WnRl13oC2/PJJA9yLCoRv9gqT/EYX0/zDsyMA==} 389 + '@esbuild/darwin-arm64@0.21.5': 390 + resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 398 391 engines: {node: '>=12'} 399 392 cpu: [arm64] 400 393 os: [darwin] 401 394 402 - '@esbuild/darwin-arm64@0.21.5': 403 - resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 404 - engines: {node: '>=12'} 395 + '@esbuild/darwin-arm64@0.24.2': 396 + resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==} 397 + engines: {node: '>=18'} 405 398 cpu: [arm64] 406 399 os: [darwin] 407 400 ··· 411 404 cpu: [x64] 412 405 os: [darwin] 413 406 414 - '@esbuild/darwin-x64@0.17.6': 415 - resolution: {integrity: sha512-xh2A5oPrYRfMFz74QXIQTQo8uA+hYzGWJFoeTE8EvoZGHb+idyV4ATaukaUvnnxJiauhs/fPx3vYhU4wiGfosg==} 407 + '@esbuild/darwin-x64@0.21.5': 408 + resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} 416 409 engines: {node: '>=12'} 417 410 cpu: [x64] 418 411 os: [darwin] 419 412 420 - '@esbuild/darwin-x64@0.21.5': 421 - resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} 422 - engines: {node: '>=12'} 413 + '@esbuild/darwin-x64@0.24.2': 414 + resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==} 415 + engines: {node: '>=18'} 423 416 cpu: [x64] 424 417 os: [darwin] 425 418 ··· 429 422 cpu: [arm64] 430 423 os: [freebsd] 431 424 432 - '@esbuild/freebsd-arm64@0.17.6': 433 - resolution: {integrity: sha512-EnUwjRc1inT4ccZh4pB3v1cIhohE2S4YXlt1OvI7sw/+pD+dIE4smwekZlEPIwY6PhU6oDWwITrQQm5S2/iZgg==} 425 + '@esbuild/freebsd-arm64@0.21.5': 426 + resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 434 427 engines: {node: '>=12'} 435 428 cpu: [arm64] 436 429 os: [freebsd] 437 430 438 - '@esbuild/freebsd-arm64@0.21.5': 439 - resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 440 - engines: {node: '>=12'} 431 + '@esbuild/freebsd-arm64@0.24.2': 432 + resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==} 433 + engines: {node: '>=18'} 441 434 cpu: [arm64] 442 435 os: [freebsd] 443 436 ··· 447 440 cpu: [x64] 448 441 os: [freebsd] 449 442 450 - '@esbuild/freebsd-x64@0.17.6': 451 - resolution: {integrity: sha512-Uh3HLWGzH6FwpviUcLMKPCbZUAFzv67Wj5MTwK6jn89b576SR2IbEp+tqUHTr8DIl0iDmBAf51MVaP7pw6PY5Q==} 443 + '@esbuild/freebsd-x64@0.21.5': 444 + resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 452 445 engines: {node: '>=12'} 453 446 cpu: [x64] 454 447 os: [freebsd] 455 448 456 - '@esbuild/freebsd-x64@0.21.5': 457 - resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 458 - engines: {node: '>=12'} 449 + '@esbuild/freebsd-x64@0.24.2': 450 + resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==} 451 + engines: {node: '>=18'} 459 452 cpu: [x64] 460 453 os: [freebsd] 461 454 ··· 465 458 cpu: [arm64] 466 459 os: [linux] 467 460 468 - '@esbuild/linux-arm64@0.17.6': 469 - resolution: {integrity: sha512-bUR58IFOMJX523aDVozswnlp5yry7+0cRLCXDsxnUeQYJik1DukMY+apBsLOZJblpH+K7ox7YrKrHmJoWqVR9w==} 461 + '@esbuild/linux-arm64@0.21.5': 462 + resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 470 463 engines: {node: '>=12'} 471 464 cpu: [arm64] 472 465 os: [linux] 473 466 474 - '@esbuild/linux-arm64@0.21.5': 475 - resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 476 - engines: {node: '>=12'} 467 + '@esbuild/linux-arm64@0.24.2': 468 + resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==} 469 + engines: {node: '>=18'} 477 470 cpu: [arm64] 478 471 os: [linux] 479 472 ··· 483 476 cpu: [arm] 484 477 os: [linux] 485 478 486 - '@esbuild/linux-arm@0.17.6': 487 - resolution: {integrity: sha512-7YdGiurNt7lqO0Bf/U9/arrPWPqdPqcV6JCZda4LZgEn+PTQ5SMEI4MGR52Bfn3+d6bNEGcWFzlIxiQdS48YUw==} 479 + '@esbuild/linux-arm@0.21.5': 480 + resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} 488 481 engines: {node: '>=12'} 489 482 cpu: [arm] 490 483 os: [linux] 491 484 492 - '@esbuild/linux-arm@0.21.5': 493 - resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} 494 - engines: {node: '>=12'} 485 + '@esbuild/linux-arm@0.24.2': 486 + resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==} 487 + engines: {node: '>=18'} 495 488 cpu: [arm] 496 489 os: [linux] 497 490 ··· 501 494 cpu: [ia32] 502 495 os: [linux] 503 496 504 - '@esbuild/linux-ia32@0.17.6': 505 - resolution: {integrity: sha512-ujp8uoQCM9FRcbDfkqECoARsLnLfCUhKARTP56TFPog8ie9JG83D5GVKjQ6yVrEVdMie1djH86fm98eY3quQkQ==} 497 + '@esbuild/linux-ia32@0.21.5': 498 + resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 506 499 engines: {node: '>=12'} 507 500 cpu: [ia32] 508 501 os: [linux] 509 502 510 - '@esbuild/linux-ia32@0.21.5': 511 - resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 512 - engines: {node: '>=12'} 503 + '@esbuild/linux-ia32@0.24.2': 504 + resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==} 505 + engines: {node: '>=18'} 513 506 cpu: [ia32] 514 507 os: [linux] 515 508 ··· 519 512 cpu: [loong64] 520 513 os: [linux] 521 514 522 - '@esbuild/linux-loong64@0.17.6': 523 - resolution: {integrity: sha512-y2NX1+X/Nt+izj9bLoiaYB9YXT/LoaQFYvCkVD77G/4F+/yuVXYCWz4SE9yr5CBMbOxOfBcy/xFL4LlOeNlzYQ==} 515 + '@esbuild/linux-loong64@0.21.5': 516 + resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 524 517 engines: {node: '>=12'} 525 518 cpu: [loong64] 526 519 os: [linux] 527 520 528 - '@esbuild/linux-loong64@0.21.5': 529 - resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 530 - engines: {node: '>=12'} 521 + '@esbuild/linux-loong64@0.24.2': 522 + resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==} 523 + engines: {node: '>=18'} 531 524 cpu: [loong64] 532 525 os: [linux] 533 526 ··· 537 530 cpu: [mips64el] 538 531 os: [linux] 539 532 540 - '@esbuild/linux-mips64el@0.17.6': 541 - resolution: {integrity: sha512-09AXKB1HDOzXD+j3FdXCiL/MWmZP0Ex9eR8DLMBVcHorrWJxWmY8Nms2Nm41iRM64WVx7bA/JVHMv081iP2kUA==} 533 + '@esbuild/linux-mips64el@0.21.5': 534 + resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 542 535 engines: {node: '>=12'} 543 536 cpu: [mips64el] 544 537 os: [linux] 545 538 546 - '@esbuild/linux-mips64el@0.21.5': 547 - resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 548 - engines: {node: '>=12'} 539 + '@esbuild/linux-mips64el@0.24.2': 540 + resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==} 541 + engines: {node: '>=18'} 549 542 cpu: [mips64el] 550 543 os: [linux] 551 544 ··· 555 548 cpu: [ppc64] 556 549 os: [linux] 557 550 558 - '@esbuild/linux-ppc64@0.17.6': 559 - resolution: {integrity: sha512-AmLhMzkM8JuqTIOhxnX4ubh0XWJIznEynRnZAVdA2mMKE6FAfwT2TWKTwdqMG+qEaeyDPtfNoZRpJbD4ZBv0Tg==} 551 + '@esbuild/linux-ppc64@0.21.5': 552 + resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} 560 553 engines: {node: '>=12'} 561 554 cpu: [ppc64] 562 555 os: [linux] 563 556 564 - '@esbuild/linux-ppc64@0.21.5': 565 - resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} 566 - engines: {node: '>=12'} 557 + '@esbuild/linux-ppc64@0.24.2': 558 + resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==} 559 + engines: {node: '>=18'} 567 560 cpu: [ppc64] 568 561 os: [linux] 569 562 ··· 573 566 cpu: [riscv64] 574 567 os: [linux] 575 568 576 - '@esbuild/linux-riscv64@0.17.6': 577 - resolution: {integrity: sha512-Y4Ri62PfavhLQhFbqucysHOmRamlTVK10zPWlqjNbj2XMea+BOs4w6ASKwQwAiqf9ZqcY9Ab7NOU4wIgpxwoSQ==} 569 + '@esbuild/linux-riscv64@0.21.5': 570 + resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 578 571 engines: {node: '>=12'} 579 572 cpu: [riscv64] 580 573 os: [linux] 581 574 582 - '@esbuild/linux-riscv64@0.21.5': 583 - resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 584 - engines: {node: '>=12'} 575 + '@esbuild/linux-riscv64@0.24.2': 576 + resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==} 577 + engines: {node: '>=18'} 585 578 cpu: [riscv64] 586 579 os: [linux] 587 580 ··· 591 584 cpu: [s390x] 592 585 os: [linux] 593 586 594 - '@esbuild/linux-s390x@0.17.6': 595 - resolution: {integrity: sha512-SPUiz4fDbnNEm3JSdUW8pBJ/vkop3M1YwZAVwvdwlFLoJwKEZ9L98l3tzeyMzq27CyepDQ3Qgoba44StgbiN5Q==} 587 + '@esbuild/linux-s390x@0.21.5': 588 + resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 596 589 engines: {node: '>=12'} 597 590 cpu: [s390x] 598 591 os: [linux] 599 592 600 - '@esbuild/linux-s390x@0.21.5': 601 - resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 602 - engines: {node: '>=12'} 593 + '@esbuild/linux-s390x@0.24.2': 594 + resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==} 595 + engines: {node: '>=18'} 603 596 cpu: [s390x] 604 597 os: [linux] 605 598 ··· 609 602 cpu: [x64] 610 603 os: [linux] 611 604 612 - '@esbuild/linux-x64@0.17.6': 613 - resolution: {integrity: sha512-a3yHLmOodHrzuNgdpB7peFGPx1iJ2x6m+uDvhP2CKdr2CwOaqEFMeSqYAHU7hG+RjCq8r2NFujcd/YsEsFgTGw==} 605 + '@esbuild/linux-x64@0.21.5': 606 + resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 614 607 engines: {node: '>=12'} 615 608 cpu: [x64] 616 609 os: [linux] 617 610 618 - '@esbuild/linux-x64@0.21.5': 619 - resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 620 - engines: {node: '>=12'} 611 + '@esbuild/linux-x64@0.24.2': 612 + resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==} 613 + engines: {node: '>=18'} 621 614 cpu: [x64] 622 615 os: [linux] 616 + 617 + '@esbuild/netbsd-arm64@0.24.2': 618 + resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==} 619 + engines: {node: '>=18'} 620 + cpu: [arm64] 621 + os: [netbsd] 623 622 624 623 '@esbuild/netbsd-x64@0.17.19': 625 624 resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==} ··· 627 626 cpu: [x64] 628 627 os: [netbsd] 629 628 630 - '@esbuild/netbsd-x64@0.17.6': 631 - resolution: {integrity: sha512-EanJqcU/4uZIBreTrnbnre2DXgXSa+Gjap7ifRfllpmyAU7YMvaXmljdArptTHmjrkkKm9BK6GH5D5Yo+p6y5A==} 629 + '@esbuild/netbsd-x64@0.21.5': 630 + resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 632 631 engines: {node: '>=12'} 633 632 cpu: [x64] 634 633 os: [netbsd] 635 634 636 - '@esbuild/netbsd-x64@0.21.5': 637 - resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 638 - engines: {node: '>=12'} 635 + '@esbuild/netbsd-x64@0.24.2': 636 + resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==} 637 + engines: {node: '>=18'} 639 638 cpu: [x64] 640 639 os: [netbsd] 641 640 641 + '@esbuild/openbsd-arm64@0.24.2': 642 + resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==} 643 + engines: {node: '>=18'} 644 + cpu: [arm64] 645 + os: [openbsd] 646 + 642 647 '@esbuild/openbsd-x64@0.17.19': 643 648 resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==} 644 649 engines: {node: '>=12'} 645 650 cpu: [x64] 646 651 os: [openbsd] 647 652 648 - '@esbuild/openbsd-x64@0.17.6': 649 - resolution: {integrity: sha512-xaxeSunhQRsTNGFanoOkkLtnmMn5QbA0qBhNet/XLVsc+OVkpIWPHcr3zTW2gxVU5YOHFbIHR9ODuaUdNza2Vw==} 653 + '@esbuild/openbsd-x64@0.21.5': 654 + resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 650 655 engines: {node: '>=12'} 651 656 cpu: [x64] 652 657 os: [openbsd] 653 658 654 - '@esbuild/openbsd-x64@0.21.5': 655 - resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 656 - engines: {node: '>=12'} 659 + '@esbuild/openbsd-x64@0.24.2': 660 + resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==} 661 + engines: {node: '>=18'} 657 662 cpu: [x64] 658 663 os: [openbsd] 659 664 ··· 663 668 cpu: [x64] 664 669 os: [sunos] 665 670 666 - '@esbuild/sunos-x64@0.17.6': 667 - resolution: {integrity: sha512-gnMnMPg5pfMkZvhHee21KbKdc6W3GR8/JuE0Da1kjwpK6oiFU3nqfHuVPgUX2rsOx9N2SadSQTIYV1CIjYG+xw==} 671 + '@esbuild/sunos-x64@0.21.5': 672 + resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 668 673 engines: {node: '>=12'} 669 674 cpu: [x64] 670 675 os: [sunos] 671 676 672 - '@esbuild/sunos-x64@0.21.5': 673 - resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 674 - engines: {node: '>=12'} 677 + '@esbuild/sunos-x64@0.24.2': 678 + resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==} 679 + engines: {node: '>=18'} 675 680 cpu: [x64] 676 681 os: [sunos] 677 682 ··· 681 686 cpu: [arm64] 682 687 os: [win32] 683 688 684 - '@esbuild/win32-arm64@0.17.6': 685 - resolution: {integrity: sha512-G95n7vP1UnGJPsVdKXllAJPtqjMvFYbN20e8RK8LVLhlTiSOH1sd7+Gt7rm70xiG+I5tM58nYgwWrLs6I1jHqg==} 689 + '@esbuild/win32-arm64@0.21.5': 690 + resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 686 691 engines: {node: '>=12'} 687 692 cpu: [arm64] 688 693 os: [win32] 689 694 690 - '@esbuild/win32-arm64@0.21.5': 691 - resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 692 - engines: {node: '>=12'} 695 + '@esbuild/win32-arm64@0.24.2': 696 + resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==} 697 + engines: {node: '>=18'} 693 698 cpu: [arm64] 694 699 os: [win32] 695 700 ··· 699 704 cpu: [ia32] 700 705 os: [win32] 701 706 702 - '@esbuild/win32-ia32@0.17.6': 703 - resolution: {integrity: sha512-96yEFzLhq5bv9jJo5JhTs1gI+1cKQ83cUpyxHuGqXVwQtY5Eq54ZEsKs8veKtiKwlrNimtckHEkj4mRh4pPjsg==} 707 + '@esbuild/win32-ia32@0.21.5': 708 + resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 704 709 engines: {node: '>=12'} 705 710 cpu: [ia32] 706 711 os: [win32] 707 712 708 - '@esbuild/win32-ia32@0.21.5': 709 - resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 710 - engines: {node: '>=12'} 713 + '@esbuild/win32-ia32@0.24.2': 714 + resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==} 715 + engines: {node: '>=18'} 711 716 cpu: [ia32] 712 717 os: [win32] 713 718 ··· 717 722 cpu: [x64] 718 723 os: [win32] 719 724 720 - '@esbuild/win32-x64@0.17.6': 721 - resolution: {integrity: sha512-n6d8MOyUrNp6G4VSpRcgjs5xj4A91svJSaiwLIDWVWEsZtpN5FA9NlBbZHDmAJc2e8e6SF4tkBD3HAvPF+7igA==} 725 + '@esbuild/win32-x64@0.21.5': 726 + resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} 722 727 engines: {node: '>=12'} 723 728 cpu: [x64] 724 729 os: [win32] 725 730 726 - '@esbuild/win32-x64@0.21.5': 727 - resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} 728 - engines: {node: '>=12'} 731 + '@esbuild/win32-x64@0.24.2': 732 + resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==} 733 + engines: {node: '>=18'} 729 734 cpu: [x64] 730 735 os: [win32] 731 736 ··· 792 797 '@jridgewell/trace-mapping@0.3.9': 793 798 resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} 794 799 795 - '@jspm/core@2.0.1': 796 - resolution: {integrity: sha512-Lg3PnLp0QXpxwLIAuuJboLeRaIhrgJjeuh797QADg3xz8wGLugQOS5DpsE8A6i6Adgzf+bacllkKZG3J0tGfDw==} 797 - 798 - '@mdx-js/mdx@2.3.0': 799 - resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==} 800 + '@mjackson/node-fetch-server@0.2.0': 801 + resolution: {integrity: sha512-EMlH1e30yzmTpGLQjlFmaDAjyOeZhng1/XCd7DExR8PNAnG/G1tyruZxEoUe11ClnwGhGrtsdnyyUx1frSzjng==} 800 802 801 803 '@nodelib/fs.scandir@2.1.5': 802 804 resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} ··· 814 816 resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==} 815 817 engines: {node: '>=12.4.0'} 816 818 817 - '@npmcli/fs@3.1.1': 818 - resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==} 819 - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 820 - 821 819 '@npmcli/git@4.1.0': 822 820 resolution: {integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==} 823 821 engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} ··· 834 832 resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 835 833 engines: {node: '>=14'} 836 834 837 - '@remix-run/cloudflare-pages@2.15.1': 838 - resolution: {integrity: sha512-LP6pdeQ2UI1FPZccOdIFbbijMi3w5PnpE1ESrEpgD5QXZ8Y+S9aqixf7Acul8O9yuqQHMpCnSxqTYwtIIit+NQ==} 839 - engines: {node: '>=18.0.0'} 840 - peerDependencies: 841 - '@cloudflare/workers-types': ^4.0.0 842 - typescript: ^5.1.0 843 - peerDependenciesMeta: 844 - typescript: 845 - optional: true 846 - 847 - '@remix-run/cloudflare@2.15.1': 848 - resolution: {integrity: sha512-QQOyleNnI4bHjyxL75RBNmgIFTdMN7QgYWx6YhbSPCdopAw6PvuUwqKPExa8TZJQ/N4DuaiHUodTEYzdmETXkg==} 849 - engines: {node: '>=18.0.0'} 835 + '@react-router/cloudflare@7.0.2': 836 + resolution: {integrity: sha512-XZao1gH0+MP51f/pxzV5k1TIC5vOfyzzXLP6I8mcwshCO8jfVMn42Zx5+n/hDML4JVdBu4GwO+ATvjElhmuHnQ==} 837 + engines: {node: '>=20.0.0'} 850 838 peerDependencies: 851 839 '@cloudflare/workers-types': ^4.0.0 840 + react-router: ^7.0.2 841 + tsup: ^8.3.0 852 842 typescript: ^5.1.0 853 843 peerDependenciesMeta: 854 844 typescript: 855 845 optional: true 856 846 857 - '@remix-run/dev@2.13.1': 858 - resolution: {integrity: sha512-7+06Dail6zMyRlRvgrZ4cmQjs2gUb+M24iP4jbmql+0B7VAAPwzCRU0x+BF5z8GSef13kDrH3iXv/BQ2O2yOgw==} 859 - engines: {node: '>=18.0.0'} 847 + '@react-router/dev@7.0.2': 848 + resolution: {integrity: sha512-uT9OVTGJAtOHGSvAlES4Y2HLqLQ7pENffUhlS7Is7eEVWQeTfZei/1RXTnNwpLbwAuDEf7DHbINDeVLDdjP92w==} 849 + engines: {node: '>=20.0.0'} 860 850 hasBin: true 861 851 peerDependencies: 862 - '@remix-run/react': ^2.13.1 863 - '@remix-run/serve': ^2.13.1 852 + '@react-router/serve': ^7.0.2 853 + react-router: ^7.0.2 864 854 typescript: ^5.1.0 865 855 vite: ^5.1.0 866 856 wrangler: ^3.28.2 867 857 peerDependenciesMeta: 868 - '@remix-run/serve': 858 + '@react-router/serve': 869 859 optional: true 870 860 typescript: 871 861 optional: true 872 - vite: 873 - optional: true 874 862 wrangler: 875 863 optional: true 876 864 877 - '@remix-run/node@2.13.1': 878 - resolution: {integrity: sha512-2ly7bENj2n2FNBdEN60ZEbNCs5dAOex/QJoo6EZ8RNFfUQxVKAZkMwfQ4ETV2SLWDgkRLj3Jo5n/dx7O2ZGhGw==} 879 - engines: {node: '>=18.0.0'} 880 - peerDependencies: 881 - typescript: ^5.1.0 882 - peerDependenciesMeta: 883 - typescript: 884 - optional: true 885 - 886 - '@remix-run/react@2.15.1': 887 - resolution: {integrity: sha512-h0BVUeg87vt3FKbYfoF7Ln56MM3O8rvGLDKYOuPY0OgNlJVaQKQzWVX+mnlmzysX4hF7WnOPMw1q38Ow7N9wKg==} 888 - engines: {node: '>=18.0.0'} 889 - peerDependencies: 890 - react: ^18.0.0 891 - react-dom: ^18.0.0 892 - typescript: ^5.1.0 893 - peerDependenciesMeta: 894 - typescript: 895 - optional: true 896 - 897 - '@remix-run/router@1.20.0': 898 - resolution: {integrity: sha512-mUnk8rPJBI9loFDZ+YzPGdeniYK+FTmRD1TMCz7ev2SNIozyKKpnGgsxO34u6Z4z/t0ITuu7voi/AshfsGsgFg==} 899 - engines: {node: '>=14.0.0'} 900 - 901 - '@remix-run/router@1.21.0': 902 - resolution: {integrity: sha512-xfSkCAchbdG5PnbrKqFWwia4Bi61nH+wm8wLEqfHDyp7Y3dZzgqS2itV8i4gAq9pC2HsTpwyBC6Ds8VHZ96JlA==} 903 - engines: {node: '>=14.0.0'} 904 - 905 - '@remix-run/server-runtime@2.13.1': 906 - resolution: {integrity: sha512-2DfBPRcHKVzE4bCNsNkKB50BhCCKF73x+jiS836OyxSIAL+x0tguV2AEjmGXefEXc5AGGzoxkus0AUUEYa29Vg==} 907 - engines: {node: '>=18.0.0'} 865 + '@react-router/fs-routes@7.0.2': 866 + resolution: {integrity: sha512-XD1ag24/pLVZnmAWy7KzH2Bp8JxT4TzgdgM8WPkDXLhAzjn4bI51yr2NUQA8p70TND1Wph1O+kHH2D1tyc8v2Q==} 867 + engines: {node: '>=20.0.0'} 908 868 peerDependencies: 869 + '@react-router/dev': ^7.0.2 909 870 typescript: ^5.1.0 910 871 peerDependenciesMeta: 911 872 typescript: 912 873 optional: true 913 874 914 - '@remix-run/server-runtime@2.15.1': 915 - resolution: {integrity: sha512-TDM3rzax//N2F5uNMV5pNTWAop8cYul6hteDu+Xmfwys/eRGlbzEf7YJzyRj6Kcsg2TFVHI7+xEPItGAVm1hHA==} 916 - engines: {node: '>=18.0.0'} 875 + '@react-router/node@7.0.2': 876 + resolution: {integrity: sha512-6Of5M2wP9QgYlR+boR0ptPjh3UyfaNvPMKQihowTGjAjUZIoNqz4iBn8ClNsLFbT3KQewcnNTHi2p+Ou7S4ZyQ==} 877 + engines: {node: '>=20.0.0'} 917 878 peerDependencies: 879 + react-router: 7.0.2 918 880 typescript: ^5.1.0 919 881 peerDependenciesMeta: 920 882 typescript: 921 883 optional: true 922 884 923 - '@remix-run/web-blob@3.1.0': 924 - resolution: {integrity: sha512-owGzFLbqPH9PlKb8KvpNJ0NO74HWE2euAn61eEiyCXX/oteoVzTVSN8mpLgDjaxBf2btj5/nUllSUgpyd6IH6g==} 925 - 926 - '@remix-run/web-fetch@4.4.2': 927 - resolution: {integrity: sha512-jgKfzA713/4kAW/oZ4bC3MoLWyjModOVDjFPNseVqcJKSafgIscrYL9G50SurEYLswPuoU3HzSbO0jQCMYWHhA==} 928 - engines: {node: ^10.17 || >=12.3} 929 - 930 - '@remix-run/web-file@3.1.0': 931 - resolution: {integrity: sha512-dW2MNGwoiEYhlspOAXFBasmLeYshyAyhIdrlXBi06Duex5tDr3ut2LFKVj7tyHLmn8nnNwFf1BjNbkQpygC2aQ==} 932 - 933 - '@remix-run/web-form-data@3.1.0': 934 - resolution: {integrity: sha512-NdeohLMdrb+pHxMQ/Geuzdp0eqPbea+Ieo8M8Jx2lGC6TBHsgHzYcBvr0LyPdPVycNRDEpWpiDdCOdCryo3f9A==} 935 - 936 - '@remix-run/web-stream@1.1.0': 937 - resolution: {integrity: sha512-KRJtwrjRV5Bb+pM7zxcTJkhIqWWSy+MYsIxHK+0m5atcznsf15YwUBWHWulZerV2+vvHH1Lp1DD7pw6qKW8SgA==} 938 - 939 885 '@rollup/rollup-android-arm-eabi@4.28.1': 940 886 resolution: {integrity: sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ==} 941 887 cpu: [arm] ··· 1039 985 peerDependencies: 1040 986 tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20' 1041 987 1042 - '@types/acorn@4.0.6': 1043 - resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} 1044 - 1045 988 '@types/cookie@0.6.0': 1046 989 resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} 1047 990 ··· 1053 996 1054 997 '@types/estree@1.0.6': 1055 998 resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 1056 - 1057 - '@types/hast@2.3.10': 1058 - resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} 1059 999 1060 1000 '@types/hast@3.0.4': 1061 1001 resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} ··· 1066 1006 '@types/json5@0.0.29': 1067 1007 resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 1068 1008 1069 - '@types/mdast@3.0.15': 1070 - resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} 1071 - 1072 1009 '@types/mdast@4.0.4': 1073 1010 resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} 1074 - 1075 - '@types/mdx@2.0.13': 1076 - resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} 1077 1011 1078 1012 '@types/ms@0.7.34': 1079 1013 resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} ··· 1184 1118 '@ungap/structured-clone@1.2.1': 1185 1119 resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==} 1186 1120 1187 - '@vanilla-extract/babel-plugin-debug-ids@1.1.0': 1188 - resolution: {integrity: sha512-Zy9bKjaL2P5zsrFYQJ8IjWGlFODmZrpvFmjFE0Zv8om55Pz1JtpJtL6DvlxlWUxbVaP1HKCqsmEfFOZN8fX/ZQ==} 1189 - 1190 - '@vanilla-extract/css@1.16.1': 1191 - resolution: {integrity: sha512-3jKxH5ty/ZjmGoLAx8liY7e87FRCIJfnuufX/K9fQklu0YHP3ClrNisU++LkZuD+GZleqMSAQMF0r8Otln+OPQ==} 1192 - 1193 - '@vanilla-extract/integration@6.5.0': 1194 - resolution: {integrity: sha512-E2YcfO8vA+vs+ua+gpvy1HRqvgWbI+MTlUpxA8FvatOvybuNcWAY0CKwQ/Gpj7rswYKtC6C7+xw33emM6/ImdQ==} 1195 - 1196 - '@vanilla-extract/private@1.0.6': 1197 - resolution: {integrity: sha512-ytsG/JLweEjw7DBuZ/0JCN4WAQgM9erfSTdS1NQY778hFQSZ6cfCDEZZ0sgVm4k54uNz6ImKB33AYvSR//fjxw==} 1198 - 1199 - '@web3-storage/multipart-parser@1.0.0': 1200 - resolution: {integrity: sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw==} 1201 - 1202 - '@zxing/text-encoding@0.9.0': 1203 - resolution: {integrity: sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==} 1204 - 1205 - abort-controller@3.0.0: 1206 - resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} 1207 - engines: {node: '>=6.5'} 1208 - 1209 - accepts@1.3.8: 1210 - resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} 1211 - engines: {node: '>= 0.6'} 1212 - 1213 1121 acorn-jsx@5.3.2: 1214 1122 resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 1215 1123 peerDependencies: ··· 1224 1132 engines: {node: '>=0.4.0'} 1225 1133 hasBin: true 1226 1134 1227 - aggregate-error@3.1.0: 1228 - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} 1229 - engines: {node: '>=8'} 1230 - 1231 1135 ajv@6.12.6: 1232 1136 resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 1233 1137 ··· 1268 1172 resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} 1269 1173 engines: {node: '>= 0.4'} 1270 1174 1271 - array-flatten@1.1.1: 1272 - resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} 1273 - 1274 1175 array-includes@3.1.8: 1275 1176 resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} 1276 1177 engines: {node: '>= 0.4'} ··· 1309 1210 ast-types-flow@0.0.8: 1310 1211 resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} 1311 1212 1312 - astring@1.9.0: 1313 - resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==} 1314 - hasBin: true 1315 - 1316 1213 autoprefixer@10.4.20: 1317 1214 resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==} 1318 1215 engines: {node: ^10 || ^12 || >=14} ··· 1335 1232 resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 1336 1233 engines: {node: '>= 0.4'} 1337 1234 1235 + babel-dead-code-elimination@1.0.8: 1236 + resolution: {integrity: sha512-og6HQERk0Cmm+nTT4Od2wbPtgABXFMPaHACjbKLulZIFMkYyXZLkUGuAxdgpMJBrxyt/XFpSz++lNzjbcMnPkQ==} 1237 + 1338 1238 bail@2.0.2: 1339 1239 resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} 1340 1240 1341 1241 balanced-match@1.0.2: 1342 1242 resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 1343 1243 1344 - base64-js@1.5.1: 1345 - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 1346 - 1347 1244 binary-extensions@2.3.0: 1348 1245 resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 1349 1246 engines: {node: '>=8'} 1350 - 1351 - bl@4.1.0: 1352 - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} 1353 1247 1354 1248 blake3-wasm@2.1.5: 1355 1249 resolution: {integrity: sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==} 1356 - 1357 - body-parser@1.20.3: 1358 - resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==} 1359 - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} 1360 1250 1361 1251 brace-expansion@1.1.11: 1362 1252 resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} ··· 1379 1269 buffer-from@1.1.2: 1380 1270 resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} 1381 1271 1382 - buffer@5.7.1: 1383 - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 1384 - 1385 - bytes@3.1.2: 1386 - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} 1387 - engines: {node: '>= 0.8'} 1272 + bundle-require@5.0.0: 1273 + resolution: {integrity: sha512-GuziW3fSSmopcx4KRymQEJVbZUfqlCqcq7dvs6TYwKRZiegK/2buMxQTPs6MGlNv50wms1699qYO54R8XfRX4w==} 1274 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1275 + peerDependencies: 1276 + esbuild: '>=0.18' 1388 1277 1389 1278 cac@6.7.14: 1390 1279 resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 1391 1280 engines: {node: '>=8'} 1392 - 1393 - cacache@17.1.4: 1394 - resolution: {integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==} 1395 - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 1396 1281 1397 1282 call-bind-apply-helpers@1.0.1: 1398 1283 resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==} ··· 1443 1328 resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 1444 1329 engines: {node: '>= 8.10.0'} 1445 1330 1446 - chownr@1.1.4: 1447 - resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} 1448 - 1449 - chownr@2.0.0: 1450 - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} 1451 - engines: {node: '>=10'} 1452 - 1453 - clean-stack@2.2.0: 1454 - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} 1455 - engines: {node: '>=6'} 1456 - 1457 - cli-cursor@3.1.0: 1458 - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} 1459 - engines: {node: '>=8'} 1460 - 1461 - cli-spinners@2.9.2: 1462 - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} 1463 - engines: {node: '>=6'} 1464 - 1465 - clone@1.0.4: 1466 - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} 1467 - engines: {node: '>=0.8'} 1331 + chokidar@4.0.3: 1332 + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} 1333 + engines: {node: '>= 14.16.0'} 1468 1334 1469 1335 color-convert@2.0.1: 1470 1336 resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} ··· 1483 1349 concat-map@0.0.1: 1484 1350 resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 1485 1351 1486 - confbox@0.1.8: 1487 - resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} 1488 - 1489 - content-disposition@0.5.4: 1490 - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} 1491 - engines: {node: '>= 0.6'} 1492 - 1493 - content-type@1.0.5: 1494 - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} 1495 - engines: {node: '>= 0.6'} 1352 + consola@3.3.0: 1353 + resolution: {integrity: sha512-kxltocVQCwQNFvw40dlVRYeAkAvtYjMFZYNlOcsF5wExPpGwPxMwgx4IfDJvBRPtBpnQwItd5WkTaR0ZwT/TmQ==} 1354 + engines: {node: ^14.18.0 || >=16.10.0} 1496 1355 1497 1356 convert-source-map@2.0.0: 1498 1357 resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 1499 1358 1500 - cookie-signature@1.0.6: 1501 - resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} 1502 - 1503 - cookie-signature@1.2.2: 1504 - resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==} 1505 - engines: {node: '>=6.6.0'} 1506 - 1507 - cookie@0.6.0: 1508 - resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} 1509 - engines: {node: '>= 0.6'} 1510 - 1511 - cookie@0.7.1: 1512 - resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==} 1513 - engines: {node: '>= 0.6'} 1514 - 1515 1359 cookie@0.7.2: 1516 1360 resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} 1517 1361 engines: {node: '>= 0.6'} 1518 1362 1363 + cookie@1.0.2: 1364 + resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==} 1365 + engines: {node: '>=18'} 1366 + 1519 1367 core-util-is@1.0.3: 1520 1368 resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 1521 1369 1522 1370 cross-spawn@7.0.6: 1523 1371 resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 1524 1372 engines: {node: '>= 8'} 1525 - 1526 - css-what@6.1.0: 1527 - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} 1528 - engines: {node: '>= 6'} 1529 1373 1530 1374 cssesc@3.0.0: 1531 1375 resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} ··· 1541 1385 data-uri-to-buffer@2.0.2: 1542 1386 resolution: {integrity: sha512-ND9qDTLc6diwj+Xe5cdAgVTbLVdXbtxTJRXRhli8Mowuaan+0EJOtdqJ0QCHNSSPyoXGx9HX2/VMnKeC34AChA==} 1543 1387 1544 - data-uri-to-buffer@3.0.1: 1545 - resolution: {integrity: sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==} 1546 - engines: {node: '>= 6'} 1547 - 1548 1388 data-view-buffer@1.0.1: 1549 1389 resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} 1550 1390 engines: {node: '>= 0.4'} ··· 1560 1400 date-fns@4.1.0: 1561 1401 resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==} 1562 1402 1563 - debug@2.6.9: 1564 - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} 1565 - peerDependencies: 1566 - supports-color: '*' 1567 - peerDependenciesMeta: 1568 - supports-color: 1569 - optional: true 1570 - 1571 1403 debug@3.2.7: 1572 1404 resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 1573 1405 peerDependencies: ··· 1599 1431 deep-is@0.1.4: 1600 1432 resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 1601 1433 1602 - deep-object-diff@1.1.9: 1603 - resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==} 1604 - 1605 - deepmerge@4.3.1: 1606 - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} 1607 - engines: {node: '>=0.10.0'} 1608 - 1609 - defaults@1.0.4: 1610 - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} 1611 - 1612 1434 define-data-property@1.1.4: 1613 1435 resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 1614 1436 engines: {node: '>= 0.4'} ··· 1620 1442 defu@6.1.4: 1621 1443 resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} 1622 1444 1623 - depd@2.0.0: 1624 - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} 1625 - engines: {node: '>= 0.8'} 1626 - 1627 1445 dequal@2.0.3: 1628 1446 resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 1629 1447 engines: {node: '>=6'} 1630 - 1631 - destroy@1.2.0: 1632 - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} 1633 - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} 1634 1448 1635 1449 devlop@1.1.0: 1636 1450 resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} ··· 1638 1452 didyoumean@1.2.2: 1639 1453 resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 1640 1454 1641 - diff@5.2.0: 1642 - resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} 1643 - engines: {node: '>=0.3.1'} 1644 - 1645 1455 dir-glob@3.0.1: 1646 1456 resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 1647 1457 engines: {node: '>=8'} ··· 1657 1467 resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 1658 1468 engines: {node: '>=6.0.0'} 1659 1469 1660 - dotenv@16.4.7: 1661 - resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==} 1662 - engines: {node: '>=12'} 1663 - 1664 1470 dunder-proto@1.0.0: 1665 1471 resolution: {integrity: sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A==} 1666 1472 engines: {node: '>= 0.4'} ··· 1670 1476 1671 1477 eastasianwidth@0.2.0: 1672 1478 resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 1673 - 1674 - ee-first@1.1.1: 1675 - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} 1676 1479 1677 1480 electron-to-chromium@1.5.73: 1678 1481 resolution: {integrity: sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==} ··· 1683 1486 emoji-regex@9.2.2: 1684 1487 resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 1685 1488 1686 - encodeurl@1.0.2: 1687 - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} 1688 - engines: {node: '>= 0.8'} 1689 - 1690 - encodeurl@2.0.0: 1691 - resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} 1692 - engines: {node: '>= 0.8'} 1693 - 1694 1489 end-of-stream@1.4.4: 1695 1490 resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} 1696 1491 ··· 1735 1530 resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} 1736 1531 engines: {node: '>= 0.4'} 1737 1532 1738 - esbuild-plugins-node-modules-polyfill@1.6.8: 1739 - resolution: {integrity: sha512-bRB4qbgUDWrdY1eMk123KiaCSW9VzQ+QLZrmU7D//cCFkmksPd9mUMpmWoFK/rxjIeTfTSOpKCoGoimlvI+AWw==} 1740 - engines: {node: '>=14.0.0'} 1741 - peerDependencies: 1742 - esbuild: '>=0.14.0 <=0.24.x' 1743 - 1744 1533 esbuild@0.17.19: 1745 1534 resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==} 1746 1535 engines: {node: '>=12'} 1747 1536 hasBin: true 1748 1537 1749 - esbuild@0.17.6: 1750 - resolution: {integrity: sha512-TKFRp9TxrJDdRWfSsSERKEovm6v30iHnrjlcGhLBOtReE28Yp1VSBRfO3GTaOFMoxsNerx4TjrhzSuma9ha83Q==} 1751 - engines: {node: '>=12'} 1752 - hasBin: true 1753 - 1754 1538 esbuild@0.21.5: 1755 1539 resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 1756 1540 engines: {node: '>=12'} 1541 + hasBin: true 1542 + 1543 + esbuild@0.24.2: 1544 + resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==} 1545 + engines: {node: '>=18'} 1757 1546 hasBin: true 1758 1547 1759 1548 escalade@3.2.0: 1760 1549 resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 1761 1550 engines: {node: '>=6'} 1762 1551 1763 - escape-html@1.0.3: 1764 - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} 1765 - 1766 1552 escape-string-regexp@4.0.0: 1767 1553 resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 1768 1554 engines: {node: '>=10'} ··· 1862 1648 resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1863 1649 engines: {node: '>=4.0'} 1864 1650 1865 - estree-util-attach-comments@2.1.1: 1866 - resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==} 1867 - 1868 - estree-util-build-jsx@2.2.2: 1869 - resolution: {integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==} 1870 - 1871 - estree-util-is-identifier-name@1.1.0: 1872 - resolution: {integrity: sha512-OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ==} 1873 - 1874 - estree-util-is-identifier-name@2.1.0: 1875 - resolution: {integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==} 1876 - 1877 1651 estree-util-is-identifier-name@3.0.0: 1878 1652 resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} 1879 1653 1880 - estree-util-to-js@1.2.0: 1881 - resolution: {integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==} 1882 - 1883 - estree-util-value-to-estree@1.3.0: 1884 - resolution: {integrity: sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==} 1885 - engines: {node: '>=12.0.0'} 1886 - 1887 - estree-util-visit@1.2.1: 1888 - resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==} 1889 - 1890 1654 estree-walker@0.6.1: 1891 1655 resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} 1892 1656 1893 - estree-walker@3.0.3: 1894 - resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 1895 - 1896 1657 esutils@2.0.3: 1897 1658 resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1898 1659 engines: {node: '>=0.10.0'} 1899 1660 1900 - etag@1.8.1: 1901 - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} 1902 - engines: {node: '>= 0.6'} 1903 - 1904 - eval@0.1.8: 1905 - resolution: {integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==} 1906 - engines: {node: '>= 0.8'} 1907 - 1908 - event-target-shim@5.0.1: 1909 - resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} 1910 - engines: {node: '>=6'} 1911 - 1912 - execa@5.1.1: 1913 - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} 1914 - engines: {node: '>=10'} 1915 - 1916 1661 exit-hook@2.2.1: 1917 1662 resolution: {integrity: sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==} 1918 1663 engines: {node: '>=6'} 1919 1664 1920 - express@4.21.2: 1921 - resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==} 1922 - engines: {node: '>= 0.10.0'} 1923 - 1924 1665 extend@3.0.2: 1925 1666 resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} 1926 1667 ··· 1940 1681 fastq@1.17.1: 1941 1682 resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 1942 1683 1943 - fault@2.0.1: 1944 - resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==} 1684 + fdir@6.4.2: 1685 + resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==} 1686 + peerDependencies: 1687 + picomatch: ^3 || ^4 1688 + peerDependenciesMeta: 1689 + picomatch: 1690 + optional: true 1945 1691 1946 1692 feed@4.2.2: 1947 1693 resolution: {integrity: sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==} ··· 1955 1701 resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 1956 1702 engines: {node: '>=8'} 1957 1703 1958 - finalhandler@1.3.1: 1959 - resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==} 1960 - engines: {node: '>= 0.8'} 1961 - 1962 1704 find-up@5.0.0: 1963 1705 resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1964 1706 engines: {node: '>=10'} ··· 1976 1718 foreground-child@3.3.0: 1977 1719 resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} 1978 1720 engines: {node: '>=14'} 1979 - 1980 - format@0.2.2: 1981 - resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} 1982 - engines: {node: '>=0.4.x'} 1983 - 1984 - forwarded@0.2.0: 1985 - resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} 1986 - engines: {node: '>= 0.6'} 1987 1721 1988 1722 fraction.js@4.3.7: 1989 1723 resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} 1990 1724 1991 - fresh@0.5.2: 1992 - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} 1993 - engines: {node: '>= 0.6'} 1994 - 1995 - fs-constants@1.0.0: 1996 - resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} 1997 - 1998 1725 fs-extra@10.1.0: 1999 1726 resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} 2000 1727 engines: {node: '>=12'} 2001 1728 2002 - fs-minipass@2.1.0: 2003 - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} 2004 - engines: {node: '>= 8'} 2005 - 2006 - fs-minipass@3.0.3: 2007 - resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==} 2008 - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 2009 - 2010 1729 fs.realpath@1.0.0: 2011 1730 resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 2012 1731 ··· 2024 1743 2025 1744 functions-have-names@1.2.3: 2026 1745 resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 2027 - 2028 - generic-names@4.0.0: 2029 - resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} 2030 1746 2031 1747 gensync@1.0.0-beta.2: 2032 1748 resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} ··· 2036 1752 resolution: {integrity: sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==} 2037 1753 engines: {node: '>= 0.4'} 2038 1754 2039 - get-port@5.1.1: 2040 - resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} 2041 - engines: {node: '>=8'} 2042 - 2043 1755 get-source@2.0.12: 2044 1756 resolution: {integrity: sha512-X5+4+iD+HoSeEED+uwrQ07BOQr0kEDFMVqqpBuI+RaZBpBpHCuXxo70bjar6f0b0u/DQJsJ7ssurpP0V60Az+w==} 2045 1757 2046 - get-stream@6.0.1: 2047 - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 2048 - engines: {node: '>=10'} 2049 - 2050 1758 get-symbol-description@1.0.2: 2051 1759 resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} 2052 1760 engines: {node: '>= 0.4'} ··· 2132 1840 resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 2133 1841 engines: {node: '>= 0.4'} 2134 1842 2135 - hast-util-to-estree@2.3.3: 2136 - resolution: {integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==} 2137 - 2138 1843 hast-util-to-jsx-runtime@2.3.2: 2139 1844 resolution: {integrity: sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==} 2140 1845 2141 - hast-util-whitespace@2.0.1: 2142 - resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==} 2143 - 2144 1846 hast-util-whitespace@3.0.0: 2145 1847 resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} 2146 1848 ··· 2151 1853 html-url-attributes@3.0.1: 2152 1854 resolution: {integrity: sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==} 2153 1855 2154 - http-errors@2.0.0: 2155 - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} 2156 - engines: {node: '>= 0.8'} 2157 - 2158 - human-signals@2.1.0: 2159 - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} 2160 - engines: {node: '>=10.17.0'} 2161 - 2162 - iconv-lite@0.4.24: 2163 - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} 2164 - engines: {node: '>=0.10.0'} 2165 - 2166 - icss-utils@5.1.0: 2167 - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} 2168 - engines: {node: ^10 || ^12 || >= 14} 2169 - peerDependencies: 2170 - postcss: ^8.1.0 2171 - 2172 - ieee754@1.2.1: 2173 - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 2174 - 2175 1856 ignore@5.3.2: 2176 1857 resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 2177 1858 engines: {node: '>= 4'} ··· 2184 1865 resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 2185 1866 engines: {node: '>=0.8.19'} 2186 1867 2187 - indent-string@4.0.0: 2188 - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} 2189 - engines: {node: '>=8'} 2190 - 2191 1868 inflight@1.0.6: 2192 1869 resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 2193 1870 deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. ··· 2195 1872 inherits@2.0.4: 2196 1873 resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 2197 1874 2198 - inline-style-parser@0.1.1: 2199 - resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} 2200 - 2201 1875 inline-style-parser@0.2.4: 2202 1876 resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==} 2203 1877 2204 1878 internal-slot@1.1.0: 2205 1879 resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} 2206 1880 engines: {node: '>= 0.4'} 2207 - 2208 - ipaddr.js@1.9.1: 2209 - resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} 2210 - engines: {node: '>= 0.10'} 2211 1881 2212 1882 is-alphabetical@2.0.1: 2213 1883 resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} ··· 2215 1885 is-alphanumerical@2.0.1: 2216 1886 resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} 2217 1887 2218 - is-arguments@1.2.0: 2219 - resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==} 2220 - engines: {node: '>= 0.4'} 2221 - 2222 1888 is-array-buffer@3.0.4: 2223 1889 resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} 2224 1890 engines: {node: '>= 0.4'} ··· 2239 1905 resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==} 2240 1906 engines: {node: '>= 0.4'} 2241 1907 2242 - is-buffer@2.0.5: 2243 - resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} 2244 - engines: {node: '>=4'} 2245 - 2246 1908 is-bun-module@1.3.0: 2247 1909 resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==} 2248 1910 ··· 2295 1957 is-hexadecimal@2.0.1: 2296 1958 resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} 2297 1959 2298 - is-interactive@1.0.0: 2299 - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} 2300 - engines: {node: '>=8'} 2301 - 2302 1960 is-map@2.0.3: 2303 1961 resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 2304 1962 engines: {node: '>= 0.4'} ··· 2319 1977 resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 2320 1978 engines: {node: '>=8'} 2321 1979 2322 - is-plain-obj@3.0.0: 2323 - resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} 2324 - engines: {node: '>=10'} 2325 - 2326 1980 is-plain-obj@4.1.0: 2327 1981 resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} 2328 1982 engines: {node: '>=12'} 2329 1983 2330 - is-reference@3.0.3: 2331 - resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==} 2332 - 2333 1984 is-regex@1.2.1: 2334 1985 resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} 2335 1986 engines: {node: '>= 0.4'} ··· 2342 1993 resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} 2343 1994 engines: {node: '>= 0.4'} 2344 1995 2345 - is-stream@2.0.1: 2346 - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 2347 - engines: {node: '>=8'} 2348 - 2349 1996 is-string@1.1.1: 2350 1997 resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} 2351 1998 engines: {node: '>= 0.4'} ··· 2357 2004 is-typed-array@1.1.13: 2358 2005 resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} 2359 2006 engines: {node: '>= 0.4'} 2360 - 2361 - is-unicode-supported@0.1.0: 2362 - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} 2363 - engines: {node: '>=10'} 2364 2007 2365 2008 is-weakmap@2.0.2: 2366 2009 resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} ··· 2400 2043 jackspeak@3.4.3: 2401 2044 resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} 2402 2045 2403 - javascript-stringify@2.1.0: 2404 - resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==} 2405 - 2406 2046 jiti@1.21.6: 2407 2047 resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} 2408 2048 hasBin: true 2049 + 2050 + joycon@3.1.1: 2051 + resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} 2052 + engines: {node: '>=10'} 2409 2053 2410 2054 js-tokens@4.0.0: 2411 2055 resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} ··· 2451 2095 keyv@4.5.4: 2452 2096 resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 2453 2097 2454 - kleur@4.1.5: 2455 - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 2456 - engines: {node: '>=6'} 2457 - 2458 2098 language-subtag-registry@0.3.23: 2459 2099 resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} 2460 2100 ··· 2477 2117 lines-and-columns@1.2.4: 2478 2118 resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 2479 2119 2480 - loader-utils@3.3.1: 2481 - resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} 2482 - engines: {node: '>= 12.13.0'} 2483 - 2484 - local-pkg@0.5.1: 2485 - resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==} 2486 - engines: {node: '>=14'} 2120 + load-tsconfig@0.2.5: 2121 + resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==} 2122 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2487 2123 2488 2124 locate-path@6.0.0: 2489 2125 resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 2490 2126 engines: {node: '>=10'} 2491 2127 2492 - lodash.camelcase@4.3.0: 2493 - resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} 2494 - 2495 2128 lodash.castarray@4.4.0: 2496 2129 resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==} 2497 2130 2498 - lodash.debounce@4.0.8: 2499 - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} 2500 - 2501 2131 lodash.isplainobject@4.0.6: 2502 2132 resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} 2503 2133 2504 2134 lodash.merge@4.6.2: 2505 2135 resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 2136 + 2137 + lodash.sortby@4.7.0: 2138 + resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} 2506 2139 2507 2140 lodash@4.17.21: 2508 2141 resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 2509 - 2510 - log-symbols@4.1.0: 2511 - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} 2512 - engines: {node: '>=10'} 2513 2142 2514 2143 longest-streak@3.1.0: 2515 2144 resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} ··· 2531 2160 magic-string@0.25.9: 2532 2161 resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} 2533 2162 2534 - markdown-extensions@1.1.1: 2535 - resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==} 2536 - engines: {node: '>=0.10.0'} 2537 - 2538 2163 math-intrinsics@1.0.0: 2539 2164 resolution: {integrity: sha512-4MqMiKP90ybymYvsut0CH2g4XWbfLtmlCkXmtmdcDCxNB+mQcu1w/1+L/VD7vi/PSv7X2JYV7SCcR+jiPXnQtA==} 2540 2165 engines: {node: '>= 0.4'} 2541 2166 2542 - mdast-util-definitions@5.1.2: 2543 - resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} 2544 - 2545 - mdast-util-from-markdown@1.3.1: 2546 - resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==} 2547 - 2548 2167 mdast-util-from-markdown@2.0.2: 2549 2168 resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} 2550 2169 2551 - mdast-util-frontmatter@1.0.1: 2552 - resolution: {integrity: sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw==} 2553 - 2554 - mdast-util-mdx-expression@1.3.2: 2555 - resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==} 2556 - 2557 2170 mdast-util-mdx-expression@2.0.1: 2558 2171 resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==} 2559 2172 2560 - mdast-util-mdx-jsx@2.1.4: 2561 - resolution: {integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==} 2562 - 2563 2173 mdast-util-mdx-jsx@3.1.3: 2564 2174 resolution: {integrity: sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==} 2565 2175 2566 - mdast-util-mdx@2.0.1: 2567 - resolution: {integrity: sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==} 2568 - 2569 - mdast-util-mdxjs-esm@1.3.1: 2570 - resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==} 2571 - 2572 2176 mdast-util-mdxjs-esm@2.0.1: 2573 2177 resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} 2574 2178 2575 - mdast-util-phrasing@3.0.1: 2576 - resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==} 2577 - 2578 2179 mdast-util-phrasing@4.1.0: 2579 2180 resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} 2580 2181 2581 - mdast-util-to-hast@12.3.0: 2582 - resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==} 2583 - 2584 2182 mdast-util-to-hast@13.2.0: 2585 2183 resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} 2586 2184 2587 - mdast-util-to-markdown@1.5.0: 2588 - resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==} 2589 - 2590 2185 mdast-util-to-markdown@2.1.2: 2591 2186 resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} 2592 - 2593 - mdast-util-to-string@3.2.0: 2594 - resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==} 2595 2187 2596 2188 mdast-util-to-string@4.0.0: 2597 2189 resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} 2598 2190 2599 - media-query-parser@2.0.2: 2600 - resolution: {integrity: sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w==} 2601 - 2602 - media-typer@0.3.0: 2603 - resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} 2604 - engines: {node: '>= 0.6'} 2605 - 2606 - merge-descriptors@1.0.3: 2607 - resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==} 2608 - 2609 - merge-stream@2.0.0: 2610 - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 2611 - 2612 2191 merge2@1.4.1: 2613 2192 resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 2614 2193 engines: {node: '>= 8'} 2615 2194 2616 - methods@1.1.2: 2617 - resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} 2618 - engines: {node: '>= 0.6'} 2619 - 2620 - micromark-core-commonmark@1.1.0: 2621 - resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==} 2622 - 2623 2195 micromark-core-commonmark@2.0.2: 2624 2196 resolution: {integrity: sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==} 2625 2197 2626 - micromark-extension-frontmatter@1.1.1: 2627 - resolution: {integrity: sha512-m2UH9a7n3W8VAH9JO9y01APpPKmNNNs71P0RbknEmYSaZU5Ghogv38BYO94AI5Xw6OYfxZRdHZZ2nYjs/Z+SZQ==} 2628 - 2629 - micromark-extension-mdx-expression@1.0.8: 2630 - resolution: {integrity: sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==} 2631 - 2632 - micromark-extension-mdx-jsx@1.0.5: 2633 - resolution: {integrity: sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==} 2634 - 2635 - micromark-extension-mdx-md@1.0.1: 2636 - resolution: {integrity: sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==} 2637 - 2638 - micromark-extension-mdxjs-esm@1.0.5: 2639 - resolution: {integrity: sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==} 2640 - 2641 - micromark-extension-mdxjs@1.0.1: 2642 - resolution: {integrity: sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==} 2643 - 2644 - micromark-factory-destination@1.1.0: 2645 - resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==} 2646 - 2647 2198 micromark-factory-destination@2.0.1: 2648 2199 resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} 2649 2200 2650 - micromark-factory-label@1.1.0: 2651 - resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==} 2652 - 2653 2201 micromark-factory-label@2.0.1: 2654 2202 resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} 2655 2203 2656 - micromark-factory-mdx-expression@1.0.9: 2657 - resolution: {integrity: sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==} 2658 - 2659 - micromark-factory-space@1.1.0: 2660 - resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==} 2661 - 2662 2204 micromark-factory-space@2.0.1: 2663 2205 resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} 2664 2206 2665 - micromark-factory-title@1.1.0: 2666 - resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==} 2667 - 2668 2207 micromark-factory-title@2.0.1: 2669 2208 resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} 2670 2209 2671 - micromark-factory-whitespace@1.1.0: 2672 - resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==} 2673 - 2674 2210 micromark-factory-whitespace@2.0.1: 2675 2211 resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} 2676 2212 2677 - micromark-util-character@1.2.0: 2678 - resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==} 2679 - 2680 2213 micromark-util-character@2.1.1: 2681 2214 resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} 2682 2215 2683 - micromark-util-chunked@1.1.0: 2684 - resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==} 2685 - 2686 2216 micromark-util-chunked@2.0.1: 2687 2217 resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} 2688 2218 2689 - micromark-util-classify-character@1.1.0: 2690 - resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==} 2691 - 2692 2219 micromark-util-classify-character@2.0.1: 2693 2220 resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} 2694 2221 2695 - micromark-util-combine-extensions@1.1.0: 2696 - resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==} 2697 - 2698 2222 micromark-util-combine-extensions@2.0.1: 2699 2223 resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} 2700 2224 2701 - micromark-util-decode-numeric-character-reference@1.1.0: 2702 - resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==} 2703 - 2704 2225 micromark-util-decode-numeric-character-reference@2.0.2: 2705 2226 resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} 2706 2227 2707 - micromark-util-decode-string@1.1.0: 2708 - resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==} 2709 - 2710 2228 micromark-util-decode-string@2.0.1: 2711 2229 resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} 2712 2230 2713 - micromark-util-encode@1.1.0: 2714 - resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==} 2715 - 2716 2231 micromark-util-encode@2.0.1: 2717 2232 resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} 2718 2233 2719 - micromark-util-events-to-acorn@1.2.3: 2720 - resolution: {integrity: sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==} 2721 - 2722 - micromark-util-html-tag-name@1.2.0: 2723 - resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==} 2724 - 2725 2234 micromark-util-html-tag-name@2.0.1: 2726 2235 resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} 2727 2236 2728 - micromark-util-normalize-identifier@1.1.0: 2729 - resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==} 2730 - 2731 2237 micromark-util-normalize-identifier@2.0.1: 2732 2238 resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} 2733 2239 2734 - micromark-util-resolve-all@1.1.0: 2735 - resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==} 2736 - 2737 2240 micromark-util-resolve-all@2.0.1: 2738 2241 resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} 2739 - 2740 - micromark-util-sanitize-uri@1.2.0: 2741 - resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==} 2742 2242 2743 2243 micromark-util-sanitize-uri@2.0.1: 2744 2244 resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} 2745 2245 2746 - micromark-util-subtokenize@1.1.0: 2747 - resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==} 2748 - 2749 2246 micromark-util-subtokenize@2.0.3: 2750 2247 resolution: {integrity: sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==} 2751 - 2752 - micromark-util-symbol@1.1.0: 2753 - resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==} 2754 2248 2755 2249 micromark-util-symbol@2.0.1: 2756 2250 resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} 2757 2251 2758 - micromark-util-types@1.1.0: 2759 - resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==} 2760 - 2761 2252 micromark-util-types@2.0.1: 2762 2253 resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==} 2763 - 2764 - micromark@3.2.0: 2765 - resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} 2766 2254 2767 2255 micromark@4.0.1: 2768 2256 resolution: {integrity: sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==} ··· 2771 2259 resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 2772 2260 engines: {node: '>=8.6'} 2773 2261 2774 - mime-db@1.52.0: 2775 - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} 2776 - engines: {node: '>= 0.6'} 2777 - 2778 - mime-types@2.1.35: 2779 - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} 2780 - engines: {node: '>= 0.6'} 2781 - 2782 - mime@1.6.0: 2783 - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} 2784 - engines: {node: '>=4'} 2785 - hasBin: true 2786 - 2787 - mime@2.6.0: 2788 - resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} 2789 - engines: {node: '>=4.0.0'} 2790 - hasBin: true 2791 - 2792 2262 mime@3.0.0: 2793 2263 resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} 2794 2264 engines: {node: '>=10.0.0'} 2795 2265 hasBin: true 2796 - 2797 - mimic-fn@2.1.0: 2798 - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 2799 - engines: {node: '>=6'} 2800 2266 2801 2267 miniflare@3.20241022.0: 2802 2268 resolution: {integrity: sha512-x9Fbq1Hmz1f0osIT9Qmj78iX4UpCP2EqlZnA/tzj/3+I49vc3Kq0fNqSSKplcdf6HlCHdL3fOBicmreQF4BUUQ==} ··· 2817 2283 minimist@1.2.8: 2818 2284 resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 2819 2285 2820 - minipass-collect@1.0.2: 2821 - resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} 2822 - engines: {node: '>= 8'} 2823 - 2824 - minipass-flush@1.0.5: 2825 - resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} 2826 - engines: {node: '>= 8'} 2827 - 2828 - minipass-pipeline@1.2.4: 2829 - resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} 2830 - engines: {node: '>=8'} 2831 - 2832 - minipass@3.3.6: 2833 - resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} 2834 - engines: {node: '>=8'} 2835 - 2836 - minipass@5.0.0: 2837 - resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} 2838 - engines: {node: '>=8'} 2839 - 2840 2286 minipass@7.1.2: 2841 2287 resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 2842 2288 engines: {node: '>=16 || 14 >=14.17'} 2843 2289 2844 - minizlib@2.1.2: 2845 - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} 2846 - engines: {node: '>= 8'} 2847 - 2848 - mkdirp-classic@0.5.3: 2849 - resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} 2850 - 2851 - mkdirp@1.0.4: 2852 - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} 2853 - engines: {node: '>=10'} 2854 - hasBin: true 2855 - 2856 - mlly@1.7.3: 2857 - resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==} 2858 - 2859 - modern-ahocorasick@1.1.0: 2860 - resolution: {integrity: sha512-sEKPVl2rM+MNVkGQt3ChdmD8YsigmXdn5NifZn6jiwn9LRJpWm8F3guhaqrJT/JOat6pwpbXEk6kv+b9DMIjsQ==} 2861 - 2862 - mri@1.2.0: 2863 - resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} 2864 - engines: {node: '>=4'} 2865 - 2866 - mrmime@1.0.1: 2867 - resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==} 2868 - engines: {node: '>=10'} 2869 - 2870 - ms@2.0.0: 2871 - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} 2872 - 2873 2290 ms@2.1.3: 2874 2291 resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 2875 2292 ··· 2890 2307 2891 2308 natural-compare@1.4.0: 2892 2309 resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 2893 - 2894 - negotiator@0.6.3: 2895 - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} 2896 - engines: {node: '>= 0.6'} 2897 2310 2898 2311 node-forge@1.3.1: 2899 2312 resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} ··· 2930 2343 resolution: {integrity: sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==} 2931 2344 engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 2932 2345 2933 - npm-run-path@4.0.1: 2934 - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} 2935 - engines: {node: '>=8'} 2936 - 2937 2346 object-assign@4.1.1: 2938 2347 resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 2939 2348 engines: {node: '>=0.10.0'} ··· 2973 2382 ohash@1.1.4: 2974 2383 resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==} 2975 2384 2976 - on-finished@2.4.1: 2977 - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} 2978 - engines: {node: '>= 0.8'} 2979 - 2980 2385 once@1.4.0: 2981 2386 resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 2982 - 2983 - onetime@5.1.2: 2984 - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 2985 - engines: {node: '>=6'} 2986 2387 2987 2388 optionator@0.9.4: 2988 2389 resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 2989 2390 engines: {node: '>= 0.8.0'} 2990 2391 2991 - ora@5.4.1: 2992 - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} 2993 - engines: {node: '>=10'} 2994 - 2995 - outdent@0.8.0: 2996 - resolution: {integrity: sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==} 2997 - 2998 2392 p-limit@3.1.0: 2999 2393 resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 3000 2394 engines: {node: '>=10'} 3001 2395 3002 2396 p-locate@5.0.0: 3003 2397 resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 3004 - engines: {node: '>=10'} 3005 - 3006 - p-map@4.0.0: 3007 - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} 3008 2398 engines: {node: '>=10'} 3009 2399 3010 2400 package-json-from-dist@1.0.1: ··· 3020 2410 parse-entities@4.0.2: 3021 2411 resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==} 3022 2412 3023 - parse-ms@2.1.0: 3024 - resolution: {integrity: sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==} 3025 - engines: {node: '>=6'} 3026 - 3027 - parseurl@1.3.3: 3028 - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} 3029 - engines: {node: '>= 0.8'} 3030 - 3031 2413 path-exists@4.0.0: 3032 2414 resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 3033 2415 engines: {node: '>=8'} ··· 3047 2429 resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} 3048 2430 engines: {node: '>=16 || 14 >=14.18'} 3049 2431 3050 - path-to-regexp@0.1.12: 3051 - resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==} 3052 - 3053 2432 path-to-regexp@6.3.0: 3054 2433 resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==} 3055 2434 ··· 3063 2442 peek-stream@1.1.3: 3064 2443 resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==} 3065 2444 3066 - periscopic@3.1.0: 3067 - resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} 3068 - 3069 2445 picocolors@1.1.1: 3070 2446 resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 3071 2447 ··· 3073 2449 resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 3074 2450 engines: {node: '>=8.6'} 3075 2451 3076 - pidtree@0.6.0: 3077 - resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} 3078 - engines: {node: '>=0.10'} 3079 - hasBin: true 2452 + picomatch@4.0.2: 2453 + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} 2454 + engines: {node: '>=12'} 3080 2455 3081 2456 pify@2.3.0: 3082 2457 resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} ··· 3085 2460 pirates@4.0.6: 3086 2461 resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 3087 2462 engines: {node: '>= 6'} 3088 - 3089 - pkg-types@1.2.1: 3090 - resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==} 3091 2463 3092 2464 possible-typed-array-names@1.0.0: 3093 2465 resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} 3094 2466 engines: {node: '>= 0.4'} 3095 2467 3096 - postcss-discard-duplicates@5.1.0: 3097 - resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} 3098 - engines: {node: ^10 || ^12 || >=14.0} 3099 - peerDependencies: 3100 - postcss: ^8.2.15 3101 - 3102 2468 postcss-import@15.1.0: 3103 2469 resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 3104 2470 engines: {node: '>=14.0.0'} ··· 3123 2489 ts-node: 3124 2490 optional: true 3125 2491 3126 - postcss-modules-extract-imports@3.1.0: 3127 - resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} 3128 - engines: {node: ^10 || ^12 || >= 14} 3129 - peerDependencies: 3130 - postcss: ^8.1.0 3131 - 3132 - postcss-modules-local-by-default@4.2.0: 3133 - resolution: {integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==} 3134 - engines: {node: ^10 || ^12 || >= 14} 3135 - peerDependencies: 3136 - postcss: ^8.1.0 3137 - 3138 - postcss-modules-scope@3.2.1: 3139 - resolution: {integrity: sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==} 3140 - engines: {node: ^10 || ^12 || >= 14} 3141 - peerDependencies: 3142 - postcss: ^8.1.0 3143 - 3144 - postcss-modules-values@4.0.0: 3145 - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} 3146 - engines: {node: ^10 || ^12 || >= 14} 3147 - peerDependencies: 3148 - postcss: ^8.1.0 3149 - 3150 - postcss-modules@6.0.1: 3151 - resolution: {integrity: sha512-zyo2sAkVvuZFFy0gc2+4O+xar5dYlaVy/ebO24KT0ftk/iJevSNyPyQellsBLlnccwh7f6V6Y4GvuKRYToNgpQ==} 2492 + postcss-load-config@6.0.1: 2493 + resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==} 2494 + engines: {node: '>= 18'} 3152 2495 peerDependencies: 3153 - postcss: ^8.0.0 2496 + jiti: '>=1.21.0' 2497 + postcss: '>=8.0.9' 2498 + tsx: ^4.8.1 2499 + yaml: ^2.4.2 2500 + peerDependenciesMeta: 2501 + jiti: 2502 + optional: true 2503 + postcss: 2504 + optional: true 2505 + tsx: 2506 + optional: true 2507 + yaml: 2508 + optional: true 3154 2509 3155 2510 postcss-nested@6.2.0: 3156 2511 resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} ··· 3166 2521 resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} 3167 2522 engines: {node: '>=4'} 3168 2523 3169 - postcss-selector-parser@7.0.0: 3170 - resolution: {integrity: sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==} 3171 - engines: {node: '>=4'} 3172 - 3173 2524 postcss-value-parser@4.2.0: 3174 2525 resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 3175 2526 ··· 3185 2536 resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} 3186 2537 engines: {node: '>=10.13.0'} 3187 2538 hasBin: true 3188 - 3189 - pretty-ms@7.0.1: 3190 - resolution: {integrity: sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==} 3191 - engines: {node: '>=10'} 3192 2539 3193 2540 printable-characters@1.0.42: 3194 2541 resolution: {integrity: sha512-dKp+C4iXWK4vVYZmYSd0KBH5F/h1HoZRsbJ82AVKRO3PEo8L4lBS/vLwhVtpwwuYcoIsVY+1JYKR268yn480uQ==} ··· 3218 2565 property-information@6.5.0: 3219 2566 resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} 3220 2567 3221 - proxy-addr@2.0.7: 3222 - resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} 3223 - engines: {node: '>= 0.10'} 3224 - 3225 2568 pump@2.0.1: 3226 2569 resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} 3227 2570 3228 - pump@3.0.2: 3229 - resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} 3230 - 3231 2571 pumpify@1.5.1: 3232 2572 resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} 3233 2573 ··· 3235 2575 resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 3236 2576 engines: {node: '>=6'} 3237 2577 3238 - qs@6.13.0: 3239 - resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==} 3240 - engines: {node: '>=0.6'} 3241 - 3242 2578 queue-microtask@1.2.3: 3243 2579 resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 3244 2580 3245 - range-parser@1.2.1: 3246 - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} 3247 - engines: {node: '>= 0.6'} 3248 - 3249 - raw-body@2.5.2: 3250 - resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} 3251 - engines: {node: '>= 0.8'} 3252 - 3253 2581 react-dom@18.3.1: 3254 2582 resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} 3255 2583 peerDependencies: ··· 3268 2596 resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} 3269 2597 engines: {node: '>=0.10.0'} 3270 2598 3271 - react-router-dom@6.28.0: 3272 - resolution: {integrity: sha512-kQ7Unsl5YdyOltsPGl31zOjLrDv+m2VcIEcIHqYYD3Lp0UppLjrzcfJqDJwXxFw3TH/yvapbnUvPlAj7Kx5nbg==} 3273 - engines: {node: '>=14.0.0'} 3274 - peerDependencies: 3275 - react: '>=16.8' 3276 - react-dom: '>=16.8' 3277 - 3278 - react-router@6.28.0: 3279 - resolution: {integrity: sha512-HrYdIFqdrnhDw0PqG/AKjAqEqM7AvxCz0DQ4h2W8k6nqmc5uRBYDag0SBxx9iYz5G8gnuNVLzUe13wl9eAsXXg==} 3280 - engines: {node: '>=14.0.0'} 2599 + react-router@7.0.2: 2600 + resolution: {integrity: sha512-m5AcPfTRUcjwmhBzOJGEl6Y7+Crqyju0+TgTQxoS4SO+BkWbhOrcfZNq6wSWdl2BBbJbsAoBUb8ZacOFT+/JlA==} 2601 + engines: {node: '>=20.0.0'} 3281 2602 peerDependencies: 3282 - react: '>=16.8' 2603 + react: '>=18' 2604 + react-dom: '>=18' 2605 + peerDependenciesMeta: 2606 + react-dom: 2607 + optional: true 3283 2608 3284 2609 react@18.3.1: 3285 2610 resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} ··· 3291 2616 readable-stream@2.3.8: 3292 2617 resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} 3293 2618 3294 - readable-stream@3.6.2: 3295 - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 3296 - engines: {node: '>= 6'} 3297 - 3298 2619 readdirp@3.6.0: 3299 2620 resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 3300 2621 engines: {node: '>=8.10.0'} 3301 2622 2623 + readdirp@4.0.2: 2624 + resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==} 2625 + engines: {node: '>= 14.16.0'} 2626 + 3302 2627 reflect.getprototypeof@1.0.8: 3303 2628 resolution: {integrity: sha512-B5dj6usc5dkk8uFliwjwDHM8To5/QwdKz9JcBZ8Ic4G1f0YmeeJTtE/ZTdgRFPAfxZFiUaPhZ1Jcs4qeagItGQ==} 3304 2629 engines: {node: '>= 0.4'} 3305 2630 3306 - regenerator-runtime@0.14.1: 3307 - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 3308 - 3309 2631 regexp.prototype.flags@1.5.3: 3310 2632 resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} 3311 2633 engines: {node: '>= 0.4'} 3312 2634 3313 - remark-frontmatter@4.0.1: 3314 - resolution: {integrity: sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==} 3315 - 3316 - remark-mdx-frontmatter@1.1.1: 3317 - resolution: {integrity: sha512-7teX9DW4tI2WZkXS4DBxneYSY7NHiXl4AKdWDO9LXVweULlCT8OPWsOjLEnMIXViN1j+QcY8mfbq3k0EK6x3uA==} 3318 - engines: {node: '>=12.2.0'} 3319 - 3320 - remark-mdx@2.3.0: 3321 - resolution: {integrity: sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==} 3322 - 3323 - remark-parse@10.0.2: 3324 - resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==} 3325 - 3326 2635 remark-parse@11.0.0: 3327 2636 resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} 3328 2637 3329 - remark-rehype@10.1.0: 3330 - resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==} 3331 - 3332 2638 remark-rehype@11.1.1: 3333 2639 resolution: {integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==} 3334 - 3335 - require-like@0.1.2: 3336 - resolution: {integrity: sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==} 3337 2640 3338 2641 resolve-from@4.0.0: 3339 2642 resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 3340 2643 engines: {node: '>=4'} 2644 + 2645 + resolve-from@5.0.0: 2646 + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} 2647 + engines: {node: '>=8'} 3341 2648 3342 2649 resolve-pkg-maps@1.0.0: 3343 2650 resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} ··· 3353 2660 resolve@2.0.0-next.5: 3354 2661 resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 3355 2662 hasBin: true 3356 - 3357 - restore-cursor@3.1.0: 3358 - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} 3359 - engines: {node: '>=8'} 3360 2663 3361 2664 retry@0.12.0: 3362 2665 resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} ··· 3389 2692 run-parallel@1.2.0: 3390 2693 resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 3391 2694 3392 - sade@1.8.1: 3393 - resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} 3394 - engines: {node: '>=6'} 3395 - 3396 2695 safe-array-concat@1.1.3: 3397 2696 resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} 3398 2697 engines: {node: '>=0.4'} ··· 3400 2699 safe-buffer@5.1.2: 3401 2700 resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 3402 2701 3403 - safe-buffer@5.2.1: 3404 - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 3405 - 3406 2702 safe-regex-test@1.1.0: 3407 2703 resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} 3408 2704 engines: {node: '>= 0.4'} 3409 - 3410 - safer-buffer@2.1.2: 3411 - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 3412 2705 3413 2706 sax@1.4.1: 3414 2707 resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} ··· 3429 2722 engines: {node: '>=10'} 3430 2723 hasBin: true 3431 2724 3432 - send@0.19.0: 3433 - resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} 3434 - engines: {node: '>= 0.8.0'} 3435 - 3436 - serve-static@1.16.2: 3437 - resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==} 3438 - engines: {node: '>= 0.8.0'} 3439 - 3440 2725 set-cookie-parser@2.7.1: 3441 2726 resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==} 3442 2727 ··· 3447 2732 set-function-name@2.0.2: 3448 2733 resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 3449 2734 engines: {node: '>= 0.4'} 3450 - 3451 - setprototypeof@1.2.0: 3452 - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} 3453 2735 3454 2736 shebang-command@2.0.0: 3455 2737 resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} ··· 3475 2757 resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} 3476 2758 engines: {node: '>= 0.4'} 3477 2759 3478 - signal-exit@3.0.7: 3479 - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 3480 - 3481 2760 signal-exit@4.1.0: 3482 2761 resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 3483 2762 engines: {node: '>=14'} ··· 3497 2776 resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 3498 2777 engines: {node: '>=0.10.0'} 3499 2778 3500 - source-map@0.7.4: 3501 - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} 2779 + source-map@0.8.0-beta.0: 2780 + resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} 3502 2781 engines: {node: '>= 8'} 3503 2782 3504 2783 sourcemap-codec@1.4.8: ··· 3520 2799 spdx-license-ids@3.0.20: 3521 2800 resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==} 3522 2801 3523 - ssri@10.0.6: 3524 - resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==} 3525 - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 3526 - 3527 2802 stacktracey@2.1.8: 3528 2803 resolution: {integrity: sha512-Kpij9riA+UNg7TnphqjH7/CzctQ/owJGNbFkfEeve4Z4uxT5+JapVLFXcsurIfN34gnTWZNJ/f7NMG0E8JDzTw==} 3529 2804 3530 - statuses@2.0.1: 3531 - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} 3532 - engines: {node: '>= 0.8'} 3533 - 3534 2805 stoppable@1.1.0: 3535 2806 resolution: {integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==} 3536 2807 engines: {node: '>=4', npm: '>=6'} ··· 3540 2811 3541 2812 stream-slice@0.1.2: 3542 2813 resolution: {integrity: sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA==} 3543 - 3544 - string-hash@1.1.3: 3545 - resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} 3546 2814 3547 2815 string-width@4.2.3: 3548 2816 resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} ··· 3578 2846 string_decoder@1.1.1: 3579 2847 resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} 3580 2848 3581 - string_decoder@1.3.0: 3582 - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 3583 - 3584 2849 stringify-entities@4.0.4: 3585 2850 resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} 3586 2851 ··· 3595 2860 strip-bom@3.0.0: 3596 2861 resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 3597 2862 engines: {node: '>=4'} 3598 - 3599 - strip-final-newline@2.0.0: 3600 - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} 3601 - engines: {node: '>=6'} 3602 2863 3603 2864 strip-json-comments@3.1.1: 3604 2865 resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 3605 2866 engines: {node: '>=8'} 3606 2867 3607 - style-to-object@0.4.4: 3608 - resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==} 3609 - 3610 2868 style-to-object@1.0.8: 3611 2869 resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==} 3612 2870 ··· 3632 2890 resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 3633 2891 engines: {node: '>=6'} 3634 2892 3635 - tar-fs@2.1.1: 3636 - resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} 3637 - 3638 - tar-stream@2.2.0: 3639 - resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} 3640 - engines: {node: '>=6'} 3641 - 3642 - tar@6.2.1: 3643 - resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} 3644 - engines: {node: '>=10'} 3645 - 3646 2893 text-table@0.2.0: 3647 2894 resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 3648 2895 ··· 3656 2903 through2@2.0.5: 3657 2904 resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} 3658 2905 2906 + tinyexec@0.3.1: 2907 + resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==} 2908 + 2909 + tinyglobby@0.2.10: 2910 + resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==} 2911 + engines: {node: '>=12.0.0'} 2912 + 3659 2913 tlds@1.255.0: 3660 2914 resolution: {integrity: sha512-tcwMRIioTcF/FcxLev8MJWxCp+GUALRhFEqbDoZrnowmKSGqPrl5pqS+Sut2m8BgJ6S4FExCSSpGffZ0Tks6Aw==} 3661 2915 hasBin: true ··· 3664 2918 resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 3665 2919 engines: {node: '>=8.0'} 3666 2920 3667 - toidentifier@1.0.1: 3668 - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} 3669 - engines: {node: '>=0.6'} 2921 + tr46@1.0.1: 2922 + resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} 3670 2923 3671 - toml@3.0.0: 3672 - resolution: {integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==} 2924 + tree-kill@1.2.2: 2925 + resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} 2926 + hasBin: true 3673 2927 3674 2928 trim-lines@3.0.1: 3675 2929 resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} ··· 3699 2953 tsconfig-paths@3.15.0: 3700 2954 resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} 3701 2955 3702 - tsconfig-paths@4.2.0: 3703 - resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} 3704 - engines: {node: '>=6'} 3705 - 3706 2956 tslib@2.8.1: 3707 2957 resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 3708 2958 2959 + tsup@8.3.5: 2960 + resolution: {integrity: sha512-Tunf6r6m6tnZsG9GYWndg0z8dEV7fD733VBFzFJ5Vcm1FtlXB8xBD/rtrBi2a3YKEV7hHtxiZtW5EAVADoe1pA==} 2961 + engines: {node: '>=18'} 2962 + hasBin: true 2963 + peerDependencies: 2964 + '@microsoft/api-extractor': ^7.36.0 2965 + '@swc/core': ^1 2966 + postcss: ^8.4.12 2967 + typescript: '>=4.5.0' 2968 + peerDependenciesMeta: 2969 + '@microsoft/api-extractor': 2970 + optional: true 2971 + '@swc/core': 2972 + optional: true 2973 + postcss: 2974 + optional: true 2975 + typescript: 2976 + optional: true 2977 + 3709 2978 turbo-stream@2.4.0: 3710 2979 resolution: {integrity: sha512-FHncC10WpBd2eOmGwpmQsWLDoK4cqsA/UT/GqNoaKOQnT8uzhtCbg3EoUDMvqpOSAI0S26mr0rkjzbOO6S3v1g==} 3711 2980 ··· 3716 2985 type-fest@0.20.2: 3717 2986 resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 3718 2987 engines: {node: '>=10'} 3719 - 3720 - type-is@1.6.18: 3721 - resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} 3722 - engines: {node: '>= 0.6'} 3723 2988 3724 2989 typed-array-buffer@1.0.2: 3725 2990 resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} ··· 3766 3031 unenv-nightly@2.0.0-20241024-111401-d4156ac: 3767 3032 resolution: {integrity: sha512-xJO1hfY+Te+/XnfCYrCbFbRcgu6XEODND1s5wnVbaBCkuQX7JXF7fHEXPrukFE2j8EOH848P8QN19VO47XN8hw==} 3768 3033 3769 - unified@10.1.2: 3770 - resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} 3771 - 3772 3034 unified@11.0.5: 3773 3035 resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} 3774 3036 3775 - unique-filename@3.0.0: 3776 - resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} 3777 - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 3778 - 3779 - unique-slug@4.0.0: 3780 - resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} 3781 - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 3782 - 3783 - unist-util-generated@2.0.1: 3784 - resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==} 3785 - 3786 - unist-util-is@5.2.1: 3787 - resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} 3788 - 3789 3037 unist-util-is@6.0.0: 3790 3038 resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} 3791 3039 3792 - unist-util-position-from-estree@1.1.2: 3793 - resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==} 3794 - 3795 - unist-util-position@4.0.4: 3796 - resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==} 3797 - 3798 3040 unist-util-position@5.0.0: 3799 3041 resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} 3800 3042 3801 - unist-util-remove-position@4.0.2: 3802 - resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==} 3803 - 3804 - unist-util-stringify-position@3.0.3: 3805 - resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} 3806 - 3807 3043 unist-util-stringify-position@4.0.0: 3808 3044 resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} 3809 3045 3810 - unist-util-visit-parents@5.1.3: 3811 - resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} 3812 - 3813 3046 unist-util-visit-parents@6.0.1: 3814 3047 resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} 3815 3048 3816 - unist-util-visit@4.1.2: 3817 - resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} 3818 - 3819 3049 unist-util-visit@5.0.0: 3820 3050 resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} 3821 3051 3822 3052 universalify@2.0.1: 3823 3053 resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} 3824 3054 engines: {node: '>= 10.0.0'} 3825 - 3826 - unpipe@1.0.0: 3827 - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} 3828 - engines: {node: '>= 0.8'} 3829 3055 3830 3056 update-browserslist-db@1.1.1: 3831 3057 resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} ··· 3839 3065 util-deprecate@1.0.2: 3840 3066 resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 3841 3067 3842 - util@0.12.5: 3843 - resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} 3844 - 3845 - utils-merge@1.0.1: 3846 - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} 3847 - engines: {node: '>= 0.4.0'} 3848 - 3849 - uvu@0.5.6: 3850 - resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} 3851 - engines: {node: '>=8'} 3852 - hasBin: true 3068 + valibot@0.41.0: 3069 + resolution: {integrity: sha512-igDBb8CTYr8YTQlOKgaN9nSS0Be7z+WRuaeYqGf3Cjz3aKmSnqEmYnkfVjzIuumGqfHpa3fLIvMEAfhrpqN8ng==} 3070 + peerDependencies: 3071 + typescript: '>=5' 3072 + peerDependenciesMeta: 3073 + typescript: 3074 + optional: true 3853 3075 3854 3076 validate-npm-package-license@3.0.4: 3855 3077 resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} ··· 3858 3080 resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} 3859 3081 engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 3860 3082 3861 - vary@1.1.2: 3862 - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} 3863 - engines: {node: '>= 0.8'} 3864 - 3865 - vfile-message@3.1.4: 3866 - resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} 3867 - 3868 3083 vfile-message@4.0.2: 3869 3084 resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} 3870 - 3871 - vfile@5.3.7: 3872 - resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} 3873 3085 3874 3086 vfile@6.0.3: 3875 3087 resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} ··· 3918 3130 terser: 3919 3131 optional: true 3920 3132 3921 - wcwidth@1.0.1: 3922 - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} 3133 + webidl-conversions@4.0.2: 3134 + resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} 3923 3135 3924 - web-encoding@1.1.5: 3925 - resolution: {integrity: sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA==} 3926 - 3927 - web-streams-polyfill@3.3.3: 3928 - resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} 3929 - engines: {node: '>= 8'} 3136 + whatwg-url@7.1.0: 3137 + resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} 3930 3138 3931 3139 which-boxed-primitive@1.1.1: 3932 3140 resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} ··· 3984 3192 wrappy@1.0.2: 3985 3193 resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 3986 3194 3987 - ws@7.5.10: 3988 - resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} 3989 - engines: {node: '>=8.3.0'} 3990 - peerDependencies: 3991 - bufferutil: ^4.0.1 3992 - utf-8-validate: ^5.0.2 3993 - peerDependenciesMeta: 3994 - bufferutil: 3995 - optional: true 3996 - utf-8-validate: 3997 - optional: true 3998 - 3999 3195 ws@8.18.0: 4000 3196 resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} 4001 3197 engines: {node: '>=10.0.0'} ··· 4021 3217 4022 3218 yallist@3.1.1: 4023 3219 resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 4024 - 4025 - yallist@4.0.0: 4026 - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 4027 3220 4028 3221 yaml@2.6.1: 4029 3222 resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==} ··· 4251 3444 transitivePeerDependencies: 4252 3445 - supports-color 4253 3446 4254 - '@babel/runtime@7.26.0': 4255 - dependencies: 4256 - regenerator-runtime: 0.14.1 4257 - 4258 3447 '@babel/template@7.25.9': 4259 3448 dependencies: 4260 3449 '@babel/code-frame': 7.26.2 ··· 4278 3467 '@babel/helper-string-parser': 7.25.9 4279 3468 '@babel/helper-validator-identifier': 7.25.9 4280 3469 4281 - '@cloudflare/kv-asset-handler@0.1.3': 4282 - dependencies: 4283 - mime: 2.6.0 4284 - 4285 3470 '@cloudflare/kv-asset-handler@0.3.4': 4286 3471 dependencies: 4287 3472 mime: 3.0.0 ··· 4311 3496 '@cspotcode/source-map-support@0.8.1': 4312 3497 dependencies: 4313 3498 '@jridgewell/trace-mapping': 0.3.9 4314 - 4315 - '@emotion/hash@0.9.2': {} 4316 3499 4317 3500 '@esbuild-plugins/node-globals-polyfill@0.2.3(esbuild@0.17.19)': 4318 3501 dependencies: ··· 4327 3510 '@esbuild/aix-ppc64@0.21.5': 4328 3511 optional: true 4329 3512 4330 - '@esbuild/android-arm64@0.17.19': 3513 + '@esbuild/aix-ppc64@0.24.2': 4331 3514 optional: true 4332 3515 4333 - '@esbuild/android-arm64@0.17.6': 3516 + '@esbuild/android-arm64@0.17.19': 4334 3517 optional: true 4335 3518 4336 3519 '@esbuild/android-arm64@0.21.5': 4337 3520 optional: true 4338 3521 4339 - '@esbuild/android-arm@0.17.19': 3522 + '@esbuild/android-arm64@0.24.2': 4340 3523 optional: true 4341 3524 4342 - '@esbuild/android-arm@0.17.6': 3525 + '@esbuild/android-arm@0.17.19': 4343 3526 optional: true 4344 3527 4345 3528 '@esbuild/android-arm@0.21.5': 4346 3529 optional: true 4347 3530 4348 - '@esbuild/android-x64@0.17.19': 3531 + '@esbuild/android-arm@0.24.2': 4349 3532 optional: true 4350 3533 4351 - '@esbuild/android-x64@0.17.6': 3534 + '@esbuild/android-x64@0.17.19': 4352 3535 optional: true 4353 3536 4354 3537 '@esbuild/android-x64@0.21.5': 4355 3538 optional: true 4356 3539 4357 - '@esbuild/darwin-arm64@0.17.19': 3540 + '@esbuild/android-x64@0.24.2': 4358 3541 optional: true 4359 3542 4360 - '@esbuild/darwin-arm64@0.17.6': 3543 + '@esbuild/darwin-arm64@0.17.19': 4361 3544 optional: true 4362 3545 4363 3546 '@esbuild/darwin-arm64@0.21.5': 4364 3547 optional: true 4365 3548 4366 - '@esbuild/darwin-x64@0.17.19': 3549 + '@esbuild/darwin-arm64@0.24.2': 4367 3550 optional: true 4368 3551 4369 - '@esbuild/darwin-x64@0.17.6': 3552 + '@esbuild/darwin-x64@0.17.19': 4370 3553 optional: true 4371 3554 4372 3555 '@esbuild/darwin-x64@0.21.5': 4373 3556 optional: true 4374 3557 4375 - '@esbuild/freebsd-arm64@0.17.19': 3558 + '@esbuild/darwin-x64@0.24.2': 4376 3559 optional: true 4377 3560 4378 - '@esbuild/freebsd-arm64@0.17.6': 3561 + '@esbuild/freebsd-arm64@0.17.19': 4379 3562 optional: true 4380 3563 4381 3564 '@esbuild/freebsd-arm64@0.21.5': 4382 3565 optional: true 4383 3566 4384 - '@esbuild/freebsd-x64@0.17.19': 3567 + '@esbuild/freebsd-arm64@0.24.2': 4385 3568 optional: true 4386 3569 4387 - '@esbuild/freebsd-x64@0.17.6': 3570 + '@esbuild/freebsd-x64@0.17.19': 4388 3571 optional: true 4389 3572 4390 3573 '@esbuild/freebsd-x64@0.21.5': 4391 3574 optional: true 4392 3575 4393 - '@esbuild/linux-arm64@0.17.19': 3576 + '@esbuild/freebsd-x64@0.24.2': 4394 3577 optional: true 4395 3578 4396 - '@esbuild/linux-arm64@0.17.6': 3579 + '@esbuild/linux-arm64@0.17.19': 4397 3580 optional: true 4398 3581 4399 3582 '@esbuild/linux-arm64@0.21.5': 4400 3583 optional: true 4401 3584 4402 - '@esbuild/linux-arm@0.17.19': 3585 + '@esbuild/linux-arm64@0.24.2': 4403 3586 optional: true 4404 3587 4405 - '@esbuild/linux-arm@0.17.6': 3588 + '@esbuild/linux-arm@0.17.19': 4406 3589 optional: true 4407 3590 4408 3591 '@esbuild/linux-arm@0.21.5': 4409 3592 optional: true 4410 3593 4411 - '@esbuild/linux-ia32@0.17.19': 3594 + '@esbuild/linux-arm@0.24.2': 4412 3595 optional: true 4413 3596 4414 - '@esbuild/linux-ia32@0.17.6': 3597 + '@esbuild/linux-ia32@0.17.19': 4415 3598 optional: true 4416 3599 4417 3600 '@esbuild/linux-ia32@0.21.5': 4418 3601 optional: true 4419 3602 4420 - '@esbuild/linux-loong64@0.17.19': 3603 + '@esbuild/linux-ia32@0.24.2': 4421 3604 optional: true 4422 3605 4423 - '@esbuild/linux-loong64@0.17.6': 3606 + '@esbuild/linux-loong64@0.17.19': 4424 3607 optional: true 4425 3608 4426 3609 '@esbuild/linux-loong64@0.21.5': 4427 3610 optional: true 4428 3611 4429 - '@esbuild/linux-mips64el@0.17.19': 3612 + '@esbuild/linux-loong64@0.24.2': 4430 3613 optional: true 4431 3614 4432 - '@esbuild/linux-mips64el@0.17.6': 3615 + '@esbuild/linux-mips64el@0.17.19': 4433 3616 optional: true 4434 3617 4435 3618 '@esbuild/linux-mips64el@0.21.5': 4436 3619 optional: true 4437 3620 4438 - '@esbuild/linux-ppc64@0.17.19': 3621 + '@esbuild/linux-mips64el@0.24.2': 4439 3622 optional: true 4440 3623 4441 - '@esbuild/linux-ppc64@0.17.6': 3624 + '@esbuild/linux-ppc64@0.17.19': 4442 3625 optional: true 4443 3626 4444 3627 '@esbuild/linux-ppc64@0.21.5': 4445 3628 optional: true 4446 3629 4447 - '@esbuild/linux-riscv64@0.17.19': 3630 + '@esbuild/linux-ppc64@0.24.2': 4448 3631 optional: true 4449 3632 4450 - '@esbuild/linux-riscv64@0.17.6': 3633 + '@esbuild/linux-riscv64@0.17.19': 4451 3634 optional: true 4452 3635 4453 3636 '@esbuild/linux-riscv64@0.21.5': 4454 3637 optional: true 4455 3638 4456 - '@esbuild/linux-s390x@0.17.19': 3639 + '@esbuild/linux-riscv64@0.24.2': 4457 3640 optional: true 4458 3641 4459 - '@esbuild/linux-s390x@0.17.6': 3642 + '@esbuild/linux-s390x@0.17.19': 4460 3643 optional: true 4461 3644 4462 3645 '@esbuild/linux-s390x@0.21.5': 4463 3646 optional: true 4464 3647 3648 + '@esbuild/linux-s390x@0.24.2': 3649 + optional: true 3650 + 4465 3651 '@esbuild/linux-x64@0.17.19': 4466 3652 optional: true 4467 3653 4468 - '@esbuild/linux-x64@0.17.6': 3654 + '@esbuild/linux-x64@0.21.5': 3655 + optional: true 3656 + 3657 + '@esbuild/linux-x64@0.24.2': 4469 3658 optional: true 4470 3659 4471 - '@esbuild/linux-x64@0.21.5': 3660 + '@esbuild/netbsd-arm64@0.24.2': 4472 3661 optional: true 4473 3662 4474 3663 '@esbuild/netbsd-x64@0.17.19': 4475 3664 optional: true 4476 3665 4477 - '@esbuild/netbsd-x64@0.17.6': 3666 + '@esbuild/netbsd-x64@0.21.5': 4478 3667 optional: true 4479 3668 4480 - '@esbuild/netbsd-x64@0.21.5': 3669 + '@esbuild/netbsd-x64@0.24.2': 4481 3670 optional: true 4482 3671 4483 - '@esbuild/openbsd-x64@0.17.19': 3672 + '@esbuild/openbsd-arm64@0.24.2': 4484 3673 optional: true 4485 3674 4486 - '@esbuild/openbsd-x64@0.17.6': 3675 + '@esbuild/openbsd-x64@0.17.19': 4487 3676 optional: true 4488 3677 4489 3678 '@esbuild/openbsd-x64@0.21.5': 4490 3679 optional: true 4491 3680 4492 - '@esbuild/sunos-x64@0.17.19': 3681 + '@esbuild/openbsd-x64@0.24.2': 4493 3682 optional: true 4494 3683 4495 - '@esbuild/sunos-x64@0.17.6': 3684 + '@esbuild/sunos-x64@0.17.19': 4496 3685 optional: true 4497 3686 4498 3687 '@esbuild/sunos-x64@0.21.5': 4499 3688 optional: true 4500 3689 4501 - '@esbuild/win32-arm64@0.17.19': 3690 + '@esbuild/sunos-x64@0.24.2': 4502 3691 optional: true 4503 3692 4504 - '@esbuild/win32-arm64@0.17.6': 3693 + '@esbuild/win32-arm64@0.17.19': 4505 3694 optional: true 4506 3695 4507 3696 '@esbuild/win32-arm64@0.21.5': 4508 3697 optional: true 4509 3698 4510 - '@esbuild/win32-ia32@0.17.19': 3699 + '@esbuild/win32-arm64@0.24.2': 4511 3700 optional: true 4512 3701 4513 - '@esbuild/win32-ia32@0.17.6': 3702 + '@esbuild/win32-ia32@0.17.19': 4514 3703 optional: true 4515 3704 4516 3705 '@esbuild/win32-ia32@0.21.5': 3706 + optional: true 3707 + 3708 + '@esbuild/win32-ia32@0.24.2': 4517 3709 optional: true 4518 3710 4519 3711 '@esbuild/win32-x64@0.17.19': 4520 3712 optional: true 4521 3713 4522 - '@esbuild/win32-x64@0.17.6': 3714 + '@esbuild/win32-x64@0.21.5': 4523 3715 optional: true 4524 3716 4525 - '@esbuild/win32-x64@0.21.5': 3717 + '@esbuild/win32-x64@0.24.2': 4526 3718 optional: true 4527 3719 4528 3720 '@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)': ··· 4595 3787 '@jridgewell/resolve-uri': 3.1.2 4596 3788 '@jridgewell/sourcemap-codec': 1.5.0 4597 3789 4598 - '@jspm/core@2.0.1': {} 4599 - 4600 - '@mdx-js/mdx@2.3.0': 4601 - dependencies: 4602 - '@types/estree-jsx': 1.0.5 4603 - '@types/mdx': 2.0.13 4604 - estree-util-build-jsx: 2.2.2 4605 - estree-util-is-identifier-name: 2.1.0 4606 - estree-util-to-js: 1.2.0 4607 - estree-walker: 3.0.3 4608 - hast-util-to-estree: 2.3.3 4609 - markdown-extensions: 1.1.1 4610 - periscopic: 3.1.0 4611 - remark-mdx: 2.3.0 4612 - remark-parse: 10.0.2 4613 - remark-rehype: 10.1.0 4614 - unified: 10.1.2 4615 - unist-util-position-from-estree: 1.1.2 4616 - unist-util-stringify-position: 3.0.3 4617 - unist-util-visit: 4.1.2 4618 - vfile: 5.3.7 4619 - transitivePeerDependencies: 4620 - - supports-color 3790 + '@mjackson/node-fetch-server@0.2.0': {} 4621 3791 4622 3792 '@nodelib/fs.scandir@2.1.5': 4623 3793 dependencies: ··· 4632 3802 fastq: 1.17.1 4633 3803 4634 3804 '@nolyfill/is-core-module@1.0.39': {} 4635 - 4636 - '@npmcli/fs@3.1.1': 4637 - dependencies: 4638 - semver: 7.6.3 4639 3805 4640 3806 '@npmcli/git@4.1.0': 4641 3807 dependencies: ··· 4669 3835 '@pkgjs/parseargs@0.11.0': 4670 3836 optional: true 4671 3837 4672 - '@remix-run/cloudflare-pages@2.15.1(@cloudflare/workers-types@4.20241022.0)(typescript@5.6.3)': 3838 + '@react-router/cloudflare@7.0.2(@cloudflare/workers-types@4.20241022.0)(react-router@7.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(tsup@8.3.5(jiti@1.21.6)(postcss@8.4.49)(typescript@5.6.3)(yaml@2.6.1))(typescript@5.6.3)': 4673 3839 dependencies: 4674 3840 '@cloudflare/workers-types': 4.20241022.0 4675 - '@remix-run/cloudflare': 2.15.1(@cloudflare/workers-types@4.20241022.0)(typescript@5.6.3) 3841 + react-router: 7.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 3842 + tsup: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(typescript@5.6.3)(yaml@2.6.1) 4676 3843 optionalDependencies: 4677 3844 typescript: 5.6.3 4678 3845 4679 - '@remix-run/cloudflare@2.15.1(@cloudflare/workers-types@4.20241022.0)(typescript@5.6.3)': 4680 - dependencies: 4681 - '@cloudflare/kv-asset-handler': 0.1.3 4682 - '@cloudflare/workers-types': 4.20241022.0 4683 - '@remix-run/server-runtime': 2.15.1(typescript@5.6.3) 4684 - optionalDependencies: 4685 - typescript: 5.6.3 4686 - 4687 - '@remix-run/dev@2.13.1(@remix-run/react@2.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@types/node@22.10.2)(typescript@5.6.3)(vite@5.4.11(@types/node@22.10.2))(wrangler@3.84.1(@cloudflare/workers-types@4.20241022.0))': 3846 + '@react-router/dev@7.0.2(@types/node@22.10.2)(react-router@7.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3)(vite@5.4.11(@types/node@22.10.2))(wrangler@3.84.1(@cloudflare/workers-types@4.20241022.0))': 4688 3847 dependencies: 4689 3848 '@babel/core': 7.26.0 4690 3849 '@babel/generator': 7.26.3 ··· 4694 3853 '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) 4695 3854 '@babel/traverse': 7.26.4 4696 3855 '@babel/types': 7.26.3 4697 - '@mdx-js/mdx': 2.3.0 4698 3856 '@npmcli/package-json': 4.0.1 4699 - '@remix-run/node': 2.13.1(typescript@5.6.3) 4700 - '@remix-run/react': 2.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) 4701 - '@remix-run/router': 1.20.0 4702 - '@remix-run/server-runtime': 2.13.1(typescript@5.6.3) 4703 - '@types/mdx': 2.0.13 4704 - '@vanilla-extract/integration': 6.5.0(@types/node@22.10.2) 3857 + '@react-router/node': 7.0.2(react-router@7.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) 4705 3858 arg: 5.0.2 4706 - cacache: 17.1.4 4707 - chalk: 4.1.2 4708 - chokidar: 3.6.0 4709 - cross-spawn: 7.0.6 4710 - dotenv: 16.4.7 3859 + babel-dead-code-elimination: 1.0.8 3860 + chokidar: 4.0.3 3861 + dedent: 1.5.3 4711 3862 es-module-lexer: 1.5.4 4712 - esbuild: 0.17.6 4713 - esbuild-plugins-node-modules-polyfill: 1.6.8(esbuild@0.17.6) 4714 - execa: 5.1.1 4715 3863 exit-hook: 2.2.1 4716 - express: 4.21.2 4717 3864 fs-extra: 10.1.0 4718 - get-port: 5.1.1 4719 3865 gunzip-maybe: 1.4.2 4720 3866 jsesc: 3.0.2 4721 - json5: 2.2.3 4722 3867 lodash: 4.17.21 4723 - lodash.debounce: 4.0.8 4724 - minimatch: 9.0.5 4725 - ora: 5.4.1 3868 + pathe: 1.1.2 4726 3869 picocolors: 1.1.1 4727 3870 picomatch: 2.3.1 4728 - pidtree: 0.6.0 4729 - postcss: 8.4.49 4730 - postcss-discard-duplicates: 5.1.0(postcss@8.4.49) 4731 - postcss-load-config: 4.0.2(postcss@8.4.49) 4732 - postcss-modules: 6.0.1(postcss@8.4.49) 4733 3871 prettier: 2.8.8 4734 - pretty-ms: 7.0.1 4735 3872 react-refresh: 0.14.2 4736 - remark-frontmatter: 4.0.1 4737 - remark-mdx-frontmatter: 1.1.1 3873 + react-router: 7.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4738 3874 semver: 7.6.3 4739 3875 set-cookie-parser: 2.7.1 4740 - tar-fs: 2.1.1 4741 - tsconfig-paths: 4.2.0 4742 - ws: 7.5.10 3876 + valibot: 0.41.0(typescript@5.6.3) 3877 + vite: 5.4.11(@types/node@22.10.2) 3878 + vite-node: 1.6.0(@types/node@22.10.2) 4743 3879 optionalDependencies: 4744 3880 typescript: 5.6.3 4745 - vite: 5.4.11(@types/node@22.10.2) 4746 3881 wrangler: 3.84.1(@cloudflare/workers-types@4.20241022.0) 4747 3882 transitivePeerDependencies: 4748 3883 - '@types/node' 4749 3884 - babel-plugin-macros 4750 3885 - bluebird 4751 - - bufferutil 4752 3886 - less 4753 3887 - lightningcss 4754 3888 - sass ··· 4757 3891 - sugarss 4758 3892 - supports-color 4759 3893 - terser 4760 - - ts-node 4761 - - utf-8-validate 4762 3894 4763 - '@remix-run/node@2.13.1(typescript@5.6.3)': 3895 + '@react-router/fs-routes@7.0.2(@react-router/dev@7.0.2(@types/node@22.10.2)(react-router@7.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3)(vite@5.4.11(@types/node@22.10.2))(wrangler@3.84.1(@cloudflare/workers-types@4.20241022.0)))(typescript@5.6.3)': 4764 3896 dependencies: 4765 - '@remix-run/server-runtime': 2.13.1(typescript@5.6.3) 4766 - '@remix-run/web-fetch': 4.4.2 4767 - '@web3-storage/multipart-parser': 1.0.0 4768 - cookie-signature: 1.2.2 4769 - source-map-support: 0.5.21 4770 - stream-slice: 0.1.2 4771 - undici: 6.21.0 3897 + '@react-router/dev': 7.0.2(@types/node@22.10.2)(react-router@7.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3)(vite@5.4.11(@types/node@22.10.2))(wrangler@3.84.1(@cloudflare/workers-types@4.20241022.0)) 3898 + minimatch: 9.0.5 4772 3899 optionalDependencies: 4773 3900 typescript: 5.6.3 4774 3901 4775 - '@remix-run/react@2.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': 4776 - dependencies: 4777 - '@remix-run/router': 1.21.0 4778 - '@remix-run/server-runtime': 2.15.1(typescript@5.6.3) 4779 - react: 18.3.1 4780 - react-dom: 18.3.1(react@18.3.1) 4781 - react-router: 6.28.0(react@18.3.1) 4782 - react-router-dom: 6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4783 - turbo-stream: 2.4.0 4784 - optionalDependencies: 4785 - typescript: 5.6.3 4786 - 4787 - '@remix-run/router@1.20.0': {} 4788 - 4789 - '@remix-run/router@1.21.0': {} 4790 - 4791 - '@remix-run/server-runtime@2.13.1(typescript@5.6.3)': 4792 - dependencies: 4793 - '@remix-run/router': 1.20.0 4794 - '@types/cookie': 0.6.0 4795 - '@web3-storage/multipart-parser': 1.0.0 4796 - cookie: 0.6.0 4797 - set-cookie-parser: 2.7.1 4798 - source-map: 0.7.4 4799 - turbo-stream: 2.4.0 4800 - optionalDependencies: 4801 - typescript: 5.6.3 4802 - 4803 - '@remix-run/server-runtime@2.15.1(typescript@5.6.3)': 3902 + '@react-router/node@7.0.2(react-router@7.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3)': 4804 3903 dependencies: 4805 - '@remix-run/router': 1.21.0 4806 - '@types/cookie': 0.6.0 4807 - '@web3-storage/multipart-parser': 1.0.0 4808 - cookie: 0.6.0 4809 - set-cookie-parser: 2.7.1 4810 - source-map: 0.7.4 4811 - turbo-stream: 2.4.0 3904 + '@mjackson/node-fetch-server': 0.2.0 3905 + react-router: 7.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 3906 + source-map-support: 0.5.21 3907 + stream-slice: 0.1.2 3908 + undici: 6.21.0 4812 3909 optionalDependencies: 4813 3910 typescript: 5.6.3 4814 3911 4815 - '@remix-run/web-blob@3.1.0': 4816 - dependencies: 4817 - '@remix-run/web-stream': 1.1.0 4818 - web-encoding: 1.1.5 4819 - 4820 - '@remix-run/web-fetch@4.4.2': 4821 - dependencies: 4822 - '@remix-run/web-blob': 3.1.0 4823 - '@remix-run/web-file': 3.1.0 4824 - '@remix-run/web-form-data': 3.1.0 4825 - '@remix-run/web-stream': 1.1.0 4826 - '@web3-storage/multipart-parser': 1.0.0 4827 - abort-controller: 3.0.0 4828 - data-uri-to-buffer: 3.0.1 4829 - mrmime: 1.0.1 4830 - 4831 - '@remix-run/web-file@3.1.0': 4832 - dependencies: 4833 - '@remix-run/web-blob': 3.1.0 4834 - 4835 - '@remix-run/web-form-data@3.1.0': 4836 - dependencies: 4837 - web-encoding: 1.1.5 4838 - 4839 - '@remix-run/web-stream@1.1.0': 4840 - dependencies: 4841 - web-streams-polyfill: 3.3.3 4842 - 4843 3912 '@rollup/rollup-android-arm-eabi@4.28.1': 4844 3913 optional: true 4845 3914 ··· 4907 3976 postcss-selector-parser: 6.0.10 4908 3977 tailwindcss: 3.4.14 4909 3978 4910 - '@types/acorn@4.0.6': 4911 - dependencies: 4912 - '@types/estree': 1.0.6 4913 - 4914 3979 '@types/cookie@0.6.0': {} 4915 3980 4916 3981 '@types/debug@4.1.12': ··· 4923 3988 4924 3989 '@types/estree@1.0.6': {} 4925 3990 4926 - '@types/hast@2.3.10': 4927 - dependencies: 4928 - '@types/unist': 2.0.11 4929 - 4930 3991 '@types/hast@3.0.4': 4931 3992 dependencies: 4932 3993 '@types/unist': 3.0.3 ··· 4935 3996 4936 3997 '@types/json5@0.0.29': {} 4937 3998 4938 - '@types/mdast@3.0.15': 4939 - dependencies: 4940 - '@types/unist': 2.0.11 4941 - 4942 3999 '@types/mdast@4.0.4': 4943 4000 dependencies: 4944 4001 '@types/unist': 3.0.3 4945 - 4946 - '@types/mdx@2.0.13': {} 4947 4002 4948 4003 '@types/ms@0.7.34': {} 4949 4004 ··· 5087 4142 5088 4143 '@ungap/structured-clone@1.2.1': {} 5089 4144 5090 - '@vanilla-extract/babel-plugin-debug-ids@1.1.0': 5091 - dependencies: 5092 - '@babel/core': 7.26.0 5093 - transitivePeerDependencies: 5094 - - supports-color 5095 - 5096 - '@vanilla-extract/css@1.16.1': 5097 - dependencies: 5098 - '@emotion/hash': 0.9.2 5099 - '@vanilla-extract/private': 1.0.6 5100 - css-what: 6.1.0 5101 - cssesc: 3.0.0 5102 - csstype: 3.1.3 5103 - dedent: 1.5.3 5104 - deep-object-diff: 1.1.9 5105 - deepmerge: 4.3.1 5106 - lru-cache: 10.4.3 5107 - media-query-parser: 2.0.2 5108 - modern-ahocorasick: 1.1.0 5109 - picocolors: 1.1.1 5110 - transitivePeerDependencies: 5111 - - babel-plugin-macros 5112 - 5113 - '@vanilla-extract/integration@6.5.0(@types/node@22.10.2)': 5114 - dependencies: 5115 - '@babel/core': 7.26.0 5116 - '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0) 5117 - '@vanilla-extract/babel-plugin-debug-ids': 1.1.0 5118 - '@vanilla-extract/css': 1.16.1 5119 - esbuild: 0.17.19 5120 - eval: 0.1.8 5121 - find-up: 5.0.0 5122 - javascript-stringify: 2.1.0 5123 - lodash: 4.17.21 5124 - mlly: 1.7.3 5125 - outdent: 0.8.0 5126 - vite: 5.4.11(@types/node@22.10.2) 5127 - vite-node: 1.6.0(@types/node@22.10.2) 5128 - transitivePeerDependencies: 5129 - - '@types/node' 5130 - - babel-plugin-macros 5131 - - less 5132 - - lightningcss 5133 - - sass 5134 - - sass-embedded 5135 - - stylus 5136 - - sugarss 5137 - - supports-color 5138 - - terser 5139 - 5140 - '@vanilla-extract/private@1.0.6': {} 5141 - 5142 - '@web3-storage/multipart-parser@1.0.0': {} 5143 - 5144 - '@zxing/text-encoding@0.9.0': 5145 - optional: true 5146 - 5147 - abort-controller@3.0.0: 5148 - dependencies: 5149 - event-target-shim: 5.0.1 5150 - 5151 - accepts@1.3.8: 5152 - dependencies: 5153 - mime-types: 2.1.35 5154 - negotiator: 0.6.3 5155 - 5156 4145 acorn-jsx@5.3.2(acorn@8.14.0): 5157 4146 dependencies: 5158 4147 acorn: 8.14.0 ··· 5163 4152 5164 4153 acorn@8.14.0: {} 5165 4154 5166 - aggregate-error@3.1.0: 5167 - dependencies: 5168 - clean-stack: 2.2.0 5169 - indent-string: 4.0.0 5170 - 5171 4155 ajv@6.12.6: 5172 4156 dependencies: 5173 4157 fast-deep-equal: 3.1.3 ··· 5202 4186 dependencies: 5203 4187 call-bind: 1.0.8 5204 4188 is-array-buffer: 3.0.4 5205 - 5206 - array-flatten@1.1.1: {} 5207 4189 5208 4190 array-includes@3.1.8: 5209 4191 dependencies: ··· 5272 4254 5273 4255 ast-types-flow@0.0.8: {} 5274 4256 5275 - astring@1.9.0: {} 5276 - 5277 4257 autoprefixer@10.4.20(postcss@8.4.49): 5278 4258 dependencies: 5279 4259 browserslist: 4.24.3 ··· 5294 4274 5295 4275 axobject-query@4.1.0: {} 5296 4276 4277 + babel-dead-code-elimination@1.0.8: 4278 + dependencies: 4279 + '@babel/core': 7.26.0 4280 + '@babel/parser': 7.26.3 4281 + '@babel/traverse': 7.26.4 4282 + '@babel/types': 7.26.3 4283 + transitivePeerDependencies: 4284 + - supports-color 4285 + 5297 4286 bail@2.0.2: {} 5298 4287 5299 4288 balanced-match@1.0.2: {} 5300 - 5301 - base64-js@1.5.1: {} 5302 4289 5303 4290 binary-extensions@2.3.0: {} 5304 4291 5305 - bl@4.1.0: 5306 - dependencies: 5307 - buffer: 5.7.1 5308 - inherits: 2.0.4 5309 - readable-stream: 3.6.2 5310 - 5311 4292 blake3-wasm@2.1.5: {} 5312 4293 5313 - body-parser@1.20.3: 5314 - dependencies: 5315 - bytes: 3.1.2 5316 - content-type: 1.0.5 5317 - debug: 2.6.9 5318 - depd: 2.0.0 5319 - destroy: 1.2.0 5320 - http-errors: 2.0.0 5321 - iconv-lite: 0.4.24 5322 - on-finished: 2.4.1 5323 - qs: 6.13.0 5324 - raw-body: 2.5.2 5325 - type-is: 1.6.18 5326 - unpipe: 1.0.0 5327 - transitivePeerDependencies: 5328 - - supports-color 5329 - 5330 4294 brace-expansion@1.1.11: 5331 4295 dependencies: 5332 4296 balanced-match: 1.0.2 ··· 5353 4317 5354 4318 buffer-from@1.1.2: {} 5355 4319 5356 - buffer@5.7.1: 4320 + bundle-require@5.0.0(esbuild@0.24.2): 5357 4321 dependencies: 5358 - base64-js: 1.5.1 5359 - ieee754: 1.2.1 5360 - 5361 - bytes@3.1.2: {} 4322 + esbuild: 0.24.2 4323 + load-tsconfig: 0.2.5 5362 4324 5363 4325 cac@6.7.14: {} 5364 4326 5365 - cacache@17.1.4: 5366 - dependencies: 5367 - '@npmcli/fs': 3.1.1 5368 - fs-minipass: 3.0.3 5369 - glob: 10.4.5 5370 - lru-cache: 7.18.3 5371 - minipass: 7.1.2 5372 - minipass-collect: 1.0.2 5373 - minipass-flush: 1.0.5 5374 - minipass-pipeline: 1.2.4 5375 - p-map: 4.0.0 5376 - ssri: 10.0.6 5377 - tar: 6.2.1 5378 - unique-filename: 3.0.0 5379 - 5380 4327 call-bind-apply-helpers@1.0.1: 5381 4328 dependencies: 5382 4329 es-errors: 1.3.0 ··· 5434 4381 optionalDependencies: 5435 4382 fsevents: 2.3.3 5436 4383 5437 - chownr@1.1.4: {} 5438 - 5439 - chownr@2.0.0: {} 5440 - 5441 - clean-stack@2.2.0: {} 5442 - 5443 - cli-cursor@3.1.0: 4384 + chokidar@4.0.3: 5444 4385 dependencies: 5445 - restore-cursor: 3.1.0 5446 - 5447 - cli-spinners@2.9.2: {} 5448 - 5449 - clone@1.0.4: {} 4386 + readdirp: 4.0.2 5450 4387 5451 4388 color-convert@2.0.1: 5452 4389 dependencies: ··· 5460 4397 5461 4398 concat-map@0.0.1: {} 5462 4399 5463 - confbox@0.1.8: {} 5464 - 5465 - content-disposition@0.5.4: 5466 - dependencies: 5467 - safe-buffer: 5.2.1 5468 - 5469 - content-type@1.0.5: {} 4400 + consola@3.3.0: {} 5470 4401 5471 4402 convert-source-map@2.0.0: {} 5472 4403 5473 - cookie-signature@1.0.6: {} 4404 + cookie@0.7.2: {} 5474 4405 5475 - cookie-signature@1.2.2: {} 5476 - 5477 - cookie@0.6.0: {} 5478 - 5479 - cookie@0.7.1: {} 5480 - 5481 - cookie@0.7.2: {} 4406 + cookie@1.0.2: {} 5482 4407 5483 4408 core-util-is@1.0.3: {} 5484 4409 ··· 5488 4413 shebang-command: 2.0.0 5489 4414 which: 2.0.2 5490 4415 5491 - css-what@6.1.0: {} 5492 - 5493 4416 cssesc@3.0.0: {} 5494 4417 5495 4418 csstype@3.1.3: {} ··· 5497 4420 damerau-levenshtein@1.0.8: {} 5498 4421 5499 4422 data-uri-to-buffer@2.0.2: {} 5500 - 5501 - data-uri-to-buffer@3.0.1: {} 5502 4423 5503 4424 data-view-buffer@1.0.1: 5504 4425 dependencies: ··· 5520 4441 5521 4442 date-fns@4.1.0: {} 5522 4443 5523 - debug@2.6.9: 5524 - dependencies: 5525 - ms: 2.0.0 5526 - 5527 4444 debug@3.2.7: 5528 4445 dependencies: 5529 4446 ms: 2.1.3 ··· 5540 4457 5541 4458 deep-is@0.1.4: {} 5542 4459 5543 - deep-object-diff@1.1.9: {} 5544 - 5545 - deepmerge@4.3.1: {} 5546 - 5547 - defaults@1.0.4: 5548 - dependencies: 5549 - clone: 1.0.4 5550 - 5551 4460 define-data-property@1.1.4: 5552 4461 dependencies: 5553 4462 es-define-property: 1.0.1 ··· 5562 4471 5563 4472 defu@6.1.4: {} 5564 4473 5565 - depd@2.0.0: {} 5566 - 5567 4474 dequal@2.0.3: {} 5568 - 5569 - destroy@1.2.0: {} 5570 4475 5571 4476 devlop@1.1.0: 5572 4477 dependencies: 5573 4478 dequal: 2.0.3 5574 4479 5575 4480 didyoumean@1.2.2: {} 5576 - 5577 - diff@5.2.0: {} 5578 4481 5579 4482 dir-glob@3.0.1: 5580 4483 dependencies: ··· 5590 4493 dependencies: 5591 4494 esutils: 2.0.3 5592 4495 5593 - dotenv@16.4.7: {} 5594 - 5595 4496 dunder-proto@1.0.0: 5596 4497 dependencies: 5597 4498 call-bind-apply-helpers: 1.0.1 ··· 5607 4508 5608 4509 eastasianwidth@0.2.0: {} 5609 4510 5610 - ee-first@1.1.1: {} 5611 - 5612 4511 electron-to-chromium@1.5.73: {} 5613 4512 5614 4513 emoji-regex@8.0.0: {} 5615 4514 5616 4515 emoji-regex@9.2.2: {} 5617 4516 5618 - encodeurl@1.0.2: {} 5619 - 5620 - encodeurl@2.0.0: {} 5621 - 5622 4517 end-of-stream@1.4.4: 5623 4518 dependencies: 5624 4519 once: 1.4.0 ··· 5725 4620 is-date-object: 1.1.0 5726 4621 is-symbol: 1.1.1 5727 4622 5728 - esbuild-plugins-node-modules-polyfill@1.6.8(esbuild@0.17.6): 5729 - dependencies: 5730 - '@jspm/core': 2.0.1 5731 - esbuild: 0.17.6 5732 - local-pkg: 0.5.1 5733 - resolve.exports: 2.0.3 5734 - 5735 4623 esbuild@0.17.19: 5736 4624 optionalDependencies: 5737 4625 '@esbuild/android-arm': 0.17.19 ··· 5757 4645 '@esbuild/win32-ia32': 0.17.19 5758 4646 '@esbuild/win32-x64': 0.17.19 5759 4647 5760 - esbuild@0.17.6: 5761 - optionalDependencies: 5762 - '@esbuild/android-arm': 0.17.6 5763 - '@esbuild/android-arm64': 0.17.6 5764 - '@esbuild/android-x64': 0.17.6 5765 - '@esbuild/darwin-arm64': 0.17.6 5766 - '@esbuild/darwin-x64': 0.17.6 5767 - '@esbuild/freebsd-arm64': 0.17.6 5768 - '@esbuild/freebsd-x64': 0.17.6 5769 - '@esbuild/linux-arm': 0.17.6 5770 - '@esbuild/linux-arm64': 0.17.6 5771 - '@esbuild/linux-ia32': 0.17.6 5772 - '@esbuild/linux-loong64': 0.17.6 5773 - '@esbuild/linux-mips64el': 0.17.6 5774 - '@esbuild/linux-ppc64': 0.17.6 5775 - '@esbuild/linux-riscv64': 0.17.6 5776 - '@esbuild/linux-s390x': 0.17.6 5777 - '@esbuild/linux-x64': 0.17.6 5778 - '@esbuild/netbsd-x64': 0.17.6 5779 - '@esbuild/openbsd-x64': 0.17.6 5780 - '@esbuild/sunos-x64': 0.17.6 5781 - '@esbuild/win32-arm64': 0.17.6 5782 - '@esbuild/win32-ia32': 0.17.6 5783 - '@esbuild/win32-x64': 0.17.6 5784 - 5785 4648 esbuild@0.21.5: 5786 4649 optionalDependencies: 5787 4650 '@esbuild/aix-ppc64': 0.21.5 ··· 5808 4671 '@esbuild/win32-ia32': 0.21.5 5809 4672 '@esbuild/win32-x64': 0.21.5 5810 4673 5811 - escalade@3.2.0: {} 4674 + esbuild@0.24.2: 4675 + optionalDependencies: 4676 + '@esbuild/aix-ppc64': 0.24.2 4677 + '@esbuild/android-arm': 0.24.2 4678 + '@esbuild/android-arm64': 0.24.2 4679 + '@esbuild/android-x64': 0.24.2 4680 + '@esbuild/darwin-arm64': 0.24.2 4681 + '@esbuild/darwin-x64': 0.24.2 4682 + '@esbuild/freebsd-arm64': 0.24.2 4683 + '@esbuild/freebsd-x64': 0.24.2 4684 + '@esbuild/linux-arm': 0.24.2 4685 + '@esbuild/linux-arm64': 0.24.2 4686 + '@esbuild/linux-ia32': 0.24.2 4687 + '@esbuild/linux-loong64': 0.24.2 4688 + '@esbuild/linux-mips64el': 0.24.2 4689 + '@esbuild/linux-ppc64': 0.24.2 4690 + '@esbuild/linux-riscv64': 0.24.2 4691 + '@esbuild/linux-s390x': 0.24.2 4692 + '@esbuild/linux-x64': 0.24.2 4693 + '@esbuild/netbsd-arm64': 0.24.2 4694 + '@esbuild/netbsd-x64': 0.24.2 4695 + '@esbuild/openbsd-arm64': 0.24.2 4696 + '@esbuild/openbsd-x64': 0.24.2 4697 + '@esbuild/sunos-x64': 0.24.2 4698 + '@esbuild/win32-arm64': 0.24.2 4699 + '@esbuild/win32-ia32': 0.24.2 4700 + '@esbuild/win32-x64': 0.24.2 5812 4701 5813 - escape-html@1.0.3: {} 4702 + escalade@3.2.0: {} 5814 4703 5815 4704 escape-string-regexp@4.0.0: {} 5816 4705 ··· 5992 4881 5993 4882 estraverse@5.3.0: {} 5994 4883 5995 - estree-util-attach-comments@2.1.1: 5996 - dependencies: 5997 - '@types/estree': 1.0.6 5998 - 5999 - estree-util-build-jsx@2.2.2: 6000 - dependencies: 6001 - '@types/estree-jsx': 1.0.5 6002 - estree-util-is-identifier-name: 2.1.0 6003 - estree-walker: 3.0.3 6004 - 6005 - estree-util-is-identifier-name@1.1.0: {} 6006 - 6007 - estree-util-is-identifier-name@2.1.0: {} 6008 - 6009 4884 estree-util-is-identifier-name@3.0.0: {} 6010 - 6011 - estree-util-to-js@1.2.0: 6012 - dependencies: 6013 - '@types/estree-jsx': 1.0.5 6014 - astring: 1.9.0 6015 - source-map: 0.7.4 6016 - 6017 - estree-util-value-to-estree@1.3.0: 6018 - dependencies: 6019 - is-plain-obj: 3.0.0 6020 - 6021 - estree-util-visit@1.2.1: 6022 - dependencies: 6023 - '@types/estree-jsx': 1.0.5 6024 - '@types/unist': 2.0.11 6025 4885 6026 4886 estree-walker@0.6.1: {} 6027 4887 6028 - estree-walker@3.0.3: 6029 - dependencies: 6030 - '@types/estree': 1.0.6 6031 - 6032 4888 esutils@2.0.3: {} 6033 4889 6034 - etag@1.8.1: {} 6035 - 6036 - eval@0.1.8: 6037 - dependencies: 6038 - '@types/node': 22.10.2 6039 - require-like: 0.1.2 6040 - 6041 - event-target-shim@5.0.1: {} 6042 - 6043 - execa@5.1.1: 6044 - dependencies: 6045 - cross-spawn: 7.0.6 6046 - get-stream: 6.0.1 6047 - human-signals: 2.1.0 6048 - is-stream: 2.0.1 6049 - merge-stream: 2.0.0 6050 - npm-run-path: 4.0.1 6051 - onetime: 5.1.2 6052 - signal-exit: 3.0.7 6053 - strip-final-newline: 2.0.0 6054 - 6055 4890 exit-hook@2.2.1: {} 6056 4891 6057 - express@4.21.2: 6058 - dependencies: 6059 - accepts: 1.3.8 6060 - array-flatten: 1.1.1 6061 - body-parser: 1.20.3 6062 - content-disposition: 0.5.4 6063 - content-type: 1.0.5 6064 - cookie: 0.7.1 6065 - cookie-signature: 1.0.6 6066 - debug: 2.6.9 6067 - depd: 2.0.0 6068 - encodeurl: 2.0.0 6069 - escape-html: 1.0.3 6070 - etag: 1.8.1 6071 - finalhandler: 1.3.1 6072 - fresh: 0.5.2 6073 - http-errors: 2.0.0 6074 - merge-descriptors: 1.0.3 6075 - methods: 1.1.2 6076 - on-finished: 2.4.1 6077 - parseurl: 1.3.3 6078 - path-to-regexp: 0.1.12 6079 - proxy-addr: 2.0.7 6080 - qs: 6.13.0 6081 - range-parser: 1.2.1 6082 - safe-buffer: 5.2.1 6083 - send: 0.19.0 6084 - serve-static: 1.16.2 6085 - setprototypeof: 1.2.0 6086 - statuses: 2.0.1 6087 - type-is: 1.6.18 6088 - utils-merge: 1.0.1 6089 - vary: 1.1.2 6090 - transitivePeerDependencies: 6091 - - supports-color 6092 - 6093 4892 extend@3.0.2: {} 6094 4893 6095 4894 fast-deep-equal@3.1.3: {} ··· 6110 4909 dependencies: 6111 4910 reusify: 1.0.4 6112 4911 6113 - fault@2.0.1: 6114 - dependencies: 6115 - format: 0.2.2 4912 + fdir@6.4.2(picomatch@4.0.2): 4913 + optionalDependencies: 4914 + picomatch: 4.0.2 6116 4915 6117 4916 feed@4.2.2: 6118 4917 dependencies: ··· 6126 4925 dependencies: 6127 4926 to-regex-range: 5.0.1 6128 4927 6129 - finalhandler@1.3.1: 6130 - dependencies: 6131 - debug: 2.6.9 6132 - encodeurl: 2.0.0 6133 - escape-html: 1.0.3 6134 - on-finished: 2.4.1 6135 - parseurl: 1.3.3 6136 - statuses: 2.0.1 6137 - unpipe: 1.0.0 6138 - transitivePeerDependencies: 6139 - - supports-color 6140 - 6141 4928 find-up@5.0.0: 6142 4929 dependencies: 6143 4930 locate-path: 6.0.0 ··· 6160 4947 cross-spawn: 7.0.6 6161 4948 signal-exit: 4.1.0 6162 4949 6163 - format@0.2.2: {} 6164 - 6165 - forwarded@0.2.0: {} 6166 - 6167 4950 fraction.js@4.3.7: {} 6168 - 6169 - fresh@0.5.2: {} 6170 - 6171 - fs-constants@1.0.0: {} 6172 4951 6173 4952 fs-extra@10.1.0: 6174 4953 dependencies: ··· 6176 4955 jsonfile: 6.1.0 6177 4956 universalify: 2.0.1 6178 4957 6179 - fs-minipass@2.1.0: 6180 - dependencies: 6181 - minipass: 3.3.6 6182 - 6183 - fs-minipass@3.0.3: 6184 - dependencies: 6185 - minipass: 7.1.2 6186 - 6187 4958 fs.realpath@1.0.0: {} 6188 4959 6189 4960 fsevents@2.3.3: ··· 6201 4972 6202 4973 functions-have-names@1.2.3: {} 6203 4974 6204 - generic-names@4.0.0: 6205 - dependencies: 6206 - loader-utils: 3.3.1 6207 - 6208 4975 gensync@1.0.0-beta.2: {} 6209 4976 6210 4977 get-intrinsic@1.2.6: ··· 6220 4987 hasown: 2.0.2 6221 4988 math-intrinsics: 1.0.0 6222 4989 6223 - get-port@5.1.1: {} 6224 - 6225 4990 get-source@2.0.12: 6226 4991 dependencies: 6227 4992 data-uri-to-buffer: 2.0.2 6228 4993 source-map: 0.6.1 6229 - 6230 - get-stream@6.0.1: {} 6231 4994 6232 4995 get-symbol-description@1.0.2: 6233 4996 dependencies: ··· 6326 5089 dependencies: 6327 5090 function-bind: 1.1.2 6328 5091 6329 - hast-util-to-estree@2.3.3: 6330 - dependencies: 6331 - '@types/estree': 1.0.6 6332 - '@types/estree-jsx': 1.0.5 6333 - '@types/hast': 2.3.10 6334 - '@types/unist': 2.0.11 6335 - comma-separated-tokens: 2.0.3 6336 - estree-util-attach-comments: 2.1.1 6337 - estree-util-is-identifier-name: 2.1.0 6338 - hast-util-whitespace: 2.0.1 6339 - mdast-util-mdx-expression: 1.3.2 6340 - mdast-util-mdxjs-esm: 1.3.1 6341 - property-information: 6.5.0 6342 - space-separated-tokens: 2.0.2 6343 - style-to-object: 0.4.4 6344 - unist-util-position: 4.0.4 6345 - zwitch: 2.0.4 6346 - transitivePeerDependencies: 6347 - - supports-color 6348 - 6349 5092 hast-util-to-jsx-runtime@2.3.2: 6350 5093 dependencies: 6351 5094 '@types/estree': 1.0.6 ··· 6366 5109 transitivePeerDependencies: 6367 5110 - supports-color 6368 5111 6369 - hast-util-whitespace@2.0.1: {} 6370 - 6371 5112 hast-util-whitespace@3.0.0: 6372 5113 dependencies: 6373 5114 '@types/hast': 3.0.4 ··· 6378 5119 6379 5120 html-url-attributes@3.0.1: {} 6380 5121 6381 - http-errors@2.0.0: 6382 - dependencies: 6383 - depd: 2.0.0 6384 - inherits: 2.0.4 6385 - setprototypeof: 1.2.0 6386 - statuses: 2.0.1 6387 - toidentifier: 1.0.1 6388 - 6389 - human-signals@2.1.0: {} 6390 - 6391 - iconv-lite@0.4.24: 6392 - dependencies: 6393 - safer-buffer: 2.1.2 6394 - 6395 - icss-utils@5.1.0(postcss@8.4.49): 6396 - dependencies: 6397 - postcss: 8.4.49 6398 - 6399 - ieee754@1.2.1: {} 6400 - 6401 5122 ignore@5.3.2: {} 6402 5123 6403 5124 import-fresh@3.3.0: ··· 6406 5127 resolve-from: 4.0.0 6407 5128 6408 5129 imurmurhash@0.1.4: {} 6409 - 6410 - indent-string@4.0.0: {} 6411 5130 6412 5131 inflight@1.0.6: 6413 5132 dependencies: ··· 6416 5135 6417 5136 inherits@2.0.4: {} 6418 5137 6419 - inline-style-parser@0.1.1: {} 6420 - 6421 5138 inline-style-parser@0.2.4: {} 6422 5139 6423 5140 internal-slot@1.1.0: ··· 6426 5143 hasown: 2.0.2 6427 5144 side-channel: 1.1.0 6428 5145 6429 - ipaddr.js@1.9.1: {} 6430 - 6431 5146 is-alphabetical@2.0.1: {} 6432 5147 6433 5148 is-alphanumerical@2.0.1: 6434 5149 dependencies: 6435 5150 is-alphabetical: 2.0.1 6436 5151 is-decimal: 2.0.1 6437 - 6438 - is-arguments@1.2.0: 6439 - dependencies: 6440 - call-bound: 1.0.3 6441 - has-tostringtag: 1.0.2 6442 5152 6443 5153 is-array-buffer@3.0.4: 6444 5154 dependencies: ··· 6462 5172 call-bound: 1.0.3 6463 5173 has-tostringtag: 1.0.2 6464 5174 6465 - is-buffer@2.0.5: {} 6466 - 6467 5175 is-bun-module@1.3.0: 6468 5176 dependencies: 6469 5177 semver: 7.6.3 ··· 6509 5217 6510 5218 is-hexadecimal@2.0.1: {} 6511 5219 6512 - is-interactive@1.0.0: {} 6513 - 6514 5220 is-map@2.0.3: {} 6515 5221 6516 5222 is-negative-zero@2.0.3: {} ··· 6524 5230 6525 5231 is-path-inside@3.0.3: {} 6526 5232 6527 - is-plain-obj@3.0.0: {} 6528 - 6529 5233 is-plain-obj@4.1.0: {} 6530 - 6531 - is-reference@3.0.3: 6532 - dependencies: 6533 - '@types/estree': 1.0.6 6534 5234 6535 5235 is-regex@1.2.1: 6536 5236 dependencies: ··· 6545 5245 dependencies: 6546 5246 call-bind: 1.0.8 6547 5247 6548 - is-stream@2.0.1: {} 6549 - 6550 5248 is-string@1.1.1: 6551 5249 dependencies: 6552 5250 call-bound: 1.0.3 ··· 6561 5259 is-typed-array@1.1.13: 6562 5260 dependencies: 6563 5261 which-typed-array: 1.1.16 6564 - 6565 - is-unicode-supported@0.1.0: {} 6566 5262 6567 5263 is-weakmap@2.0.2: {} 6568 5264 ··· 6602 5298 optionalDependencies: 6603 5299 '@pkgjs/parseargs': 0.11.0 6604 5300 6605 - javascript-stringify@2.1.0: {} 5301 + jiti@1.21.6: {} 6606 5302 6607 - jiti@1.21.6: {} 5303 + joycon@3.1.1: {} 6608 5304 6609 5305 js-tokens@4.0.0: {} 6610 5306 ··· 6645 5341 dependencies: 6646 5342 json-buffer: 3.0.1 6647 5343 6648 - kleur@4.1.5: {} 6649 - 6650 5344 language-subtag-registry@0.3.23: {} 6651 5345 6652 5346 language-tags@1.0.9: ··· 6664 5358 6665 5359 lines-and-columns@1.2.4: {} 6666 5360 6667 - loader-utils@3.3.1: {} 6668 - 6669 - local-pkg@0.5.1: 6670 - dependencies: 6671 - mlly: 1.7.3 6672 - pkg-types: 1.2.1 5361 + load-tsconfig@0.2.5: {} 6673 5362 6674 5363 locate-path@6.0.0: 6675 5364 dependencies: 6676 5365 p-locate: 5.0.0 6677 5366 6678 - lodash.camelcase@4.3.0: {} 6679 - 6680 5367 lodash.castarray@4.4.0: {} 6681 - 6682 - lodash.debounce@4.0.8: {} 6683 5368 6684 5369 lodash.isplainobject@4.0.6: {} 6685 5370 6686 5371 lodash.merge@4.6.2: {} 6687 5372 6688 - lodash@4.17.21: {} 5373 + lodash.sortby@4.7.0: {} 6689 5374 6690 - log-symbols@4.1.0: 6691 - dependencies: 6692 - chalk: 4.1.2 6693 - is-unicode-supported: 0.1.0 5375 + lodash@4.17.21: {} 6694 5376 6695 5377 longest-streak@3.1.0: {} 6696 5378 ··· 6709 5391 magic-string@0.25.9: 6710 5392 dependencies: 6711 5393 sourcemap-codec: 1.4.8 6712 - 6713 - markdown-extensions@1.1.1: {} 6714 5394 6715 5395 math-intrinsics@1.0.0: {} 6716 5396 6717 - mdast-util-definitions@5.1.2: 6718 - dependencies: 6719 - '@types/mdast': 3.0.15 6720 - '@types/unist': 2.0.11 6721 - unist-util-visit: 4.1.2 6722 - 6723 - mdast-util-from-markdown@1.3.1: 6724 - dependencies: 6725 - '@types/mdast': 3.0.15 6726 - '@types/unist': 2.0.11 6727 - decode-named-character-reference: 1.0.2 6728 - mdast-util-to-string: 3.2.0 6729 - micromark: 3.2.0 6730 - micromark-util-decode-numeric-character-reference: 1.1.0 6731 - micromark-util-decode-string: 1.1.0 6732 - micromark-util-normalize-identifier: 1.1.0 6733 - micromark-util-symbol: 1.1.0 6734 - micromark-util-types: 1.1.0 6735 - unist-util-stringify-position: 3.0.3 6736 - uvu: 0.5.6 6737 - transitivePeerDependencies: 6738 - - supports-color 6739 - 6740 5397 mdast-util-from-markdown@2.0.2: 6741 5398 dependencies: 6742 5399 '@types/mdast': 4.0.4 ··· 6754 5411 transitivePeerDependencies: 6755 5412 - supports-color 6756 5413 6757 - mdast-util-frontmatter@1.0.1: 6758 - dependencies: 6759 - '@types/mdast': 3.0.15 6760 - mdast-util-to-markdown: 1.5.0 6761 - micromark-extension-frontmatter: 1.1.1 6762 - 6763 - mdast-util-mdx-expression@1.3.2: 6764 - dependencies: 6765 - '@types/estree-jsx': 1.0.5 6766 - '@types/hast': 2.3.10 6767 - '@types/mdast': 3.0.15 6768 - mdast-util-from-markdown: 1.3.1 6769 - mdast-util-to-markdown: 1.5.0 6770 - transitivePeerDependencies: 6771 - - supports-color 6772 - 6773 5414 mdast-util-mdx-expression@2.0.1: 6774 5415 dependencies: 6775 5416 '@types/estree-jsx': 1.0.5 ··· 6781 5422 transitivePeerDependencies: 6782 5423 - supports-color 6783 5424 6784 - mdast-util-mdx-jsx@2.1.4: 6785 - dependencies: 6786 - '@types/estree-jsx': 1.0.5 6787 - '@types/hast': 2.3.10 6788 - '@types/mdast': 3.0.15 6789 - '@types/unist': 2.0.11 6790 - ccount: 2.0.1 6791 - mdast-util-from-markdown: 1.3.1 6792 - mdast-util-to-markdown: 1.5.0 6793 - parse-entities: 4.0.2 6794 - stringify-entities: 4.0.4 6795 - unist-util-remove-position: 4.0.2 6796 - unist-util-stringify-position: 3.0.3 6797 - vfile-message: 3.1.4 6798 - transitivePeerDependencies: 6799 - - supports-color 6800 - 6801 5425 mdast-util-mdx-jsx@3.1.3: 6802 5426 dependencies: 6803 5427 '@types/estree-jsx': 1.0.5 ··· 6815 5439 transitivePeerDependencies: 6816 5440 - supports-color 6817 5441 6818 - mdast-util-mdx@2.0.1: 6819 - dependencies: 6820 - mdast-util-from-markdown: 1.3.1 6821 - mdast-util-mdx-expression: 1.3.2 6822 - mdast-util-mdx-jsx: 2.1.4 6823 - mdast-util-mdxjs-esm: 1.3.1 6824 - mdast-util-to-markdown: 1.5.0 6825 - transitivePeerDependencies: 6826 - - supports-color 6827 - 6828 - mdast-util-mdxjs-esm@1.3.1: 6829 - dependencies: 6830 - '@types/estree-jsx': 1.0.5 6831 - '@types/hast': 2.3.10 6832 - '@types/mdast': 3.0.15 6833 - mdast-util-from-markdown: 1.3.1 6834 - mdast-util-to-markdown: 1.5.0 6835 - transitivePeerDependencies: 6836 - - supports-color 6837 - 6838 5442 mdast-util-mdxjs-esm@2.0.1: 6839 5443 dependencies: 6840 5444 '@types/estree-jsx': 1.0.5 ··· 6846 5450 transitivePeerDependencies: 6847 5451 - supports-color 6848 5452 6849 - mdast-util-phrasing@3.0.1: 6850 - dependencies: 6851 - '@types/mdast': 3.0.15 6852 - unist-util-is: 5.2.1 6853 - 6854 5453 mdast-util-phrasing@4.1.0: 6855 5454 dependencies: 6856 5455 '@types/mdast': 4.0.4 6857 5456 unist-util-is: 6.0.0 6858 - 6859 - mdast-util-to-hast@12.3.0: 6860 - dependencies: 6861 - '@types/hast': 2.3.10 6862 - '@types/mdast': 3.0.15 6863 - mdast-util-definitions: 5.1.2 6864 - micromark-util-sanitize-uri: 1.2.0 6865 - trim-lines: 3.0.1 6866 - unist-util-generated: 2.0.1 6867 - unist-util-position: 4.0.4 6868 - unist-util-visit: 4.1.2 6869 5457 6870 5458 mdast-util-to-hast@13.2.0: 6871 5459 dependencies: ··· 6879 5467 unist-util-visit: 5.0.0 6880 5468 vfile: 6.0.3 6881 5469 6882 - mdast-util-to-markdown@1.5.0: 6883 - dependencies: 6884 - '@types/mdast': 3.0.15 6885 - '@types/unist': 2.0.11 6886 - longest-streak: 3.1.0 6887 - mdast-util-phrasing: 3.0.1 6888 - mdast-util-to-string: 3.2.0 6889 - micromark-util-decode-string: 1.1.0 6890 - unist-util-visit: 4.1.2 6891 - zwitch: 2.0.4 6892 - 6893 5470 mdast-util-to-markdown@2.1.2: 6894 5471 dependencies: 6895 5472 '@types/mdast': 4.0.4 ··· 6902 5479 unist-util-visit: 5.0.0 6903 5480 zwitch: 2.0.4 6904 5481 6905 - mdast-util-to-string@3.2.0: 6906 - dependencies: 6907 - '@types/mdast': 3.0.15 6908 - 6909 5482 mdast-util-to-string@4.0.0: 6910 5483 dependencies: 6911 5484 '@types/mdast': 4.0.4 6912 5485 6913 - media-query-parser@2.0.2: 6914 - dependencies: 6915 - '@babel/runtime': 7.26.0 6916 - 6917 - media-typer@0.3.0: {} 6918 - 6919 - merge-descriptors@1.0.3: {} 6920 - 6921 - merge-stream@2.0.0: {} 6922 - 6923 5486 merge2@1.4.1: {} 6924 5487 6925 - methods@1.1.2: {} 6926 - 6927 - micromark-core-commonmark@1.1.0: 6928 - dependencies: 6929 - decode-named-character-reference: 1.0.2 6930 - micromark-factory-destination: 1.1.0 6931 - micromark-factory-label: 1.1.0 6932 - micromark-factory-space: 1.1.0 6933 - micromark-factory-title: 1.1.0 6934 - micromark-factory-whitespace: 1.1.0 6935 - micromark-util-character: 1.2.0 6936 - micromark-util-chunked: 1.1.0 6937 - micromark-util-classify-character: 1.1.0 6938 - micromark-util-html-tag-name: 1.2.0 6939 - micromark-util-normalize-identifier: 1.1.0 6940 - micromark-util-resolve-all: 1.1.0 6941 - micromark-util-subtokenize: 1.1.0 6942 - micromark-util-symbol: 1.1.0 6943 - micromark-util-types: 1.1.0 6944 - uvu: 0.5.6 6945 - 6946 5488 micromark-core-commonmark@2.0.2: 6947 5489 dependencies: 6948 5490 decode-named-character-reference: 1.0.2 ··· 6962 5504 micromark-util-symbol: 2.0.1 6963 5505 micromark-util-types: 2.0.1 6964 5506 6965 - micromark-extension-frontmatter@1.1.1: 6966 - dependencies: 6967 - fault: 2.0.1 6968 - micromark-util-character: 1.2.0 6969 - micromark-util-symbol: 1.1.0 6970 - micromark-util-types: 1.1.0 6971 - 6972 - micromark-extension-mdx-expression@1.0.8: 6973 - dependencies: 6974 - '@types/estree': 1.0.6 6975 - micromark-factory-mdx-expression: 1.0.9 6976 - micromark-factory-space: 1.1.0 6977 - micromark-util-character: 1.2.0 6978 - micromark-util-events-to-acorn: 1.2.3 6979 - micromark-util-symbol: 1.1.0 6980 - micromark-util-types: 1.1.0 6981 - uvu: 0.5.6 6982 - 6983 - micromark-extension-mdx-jsx@1.0.5: 6984 - dependencies: 6985 - '@types/acorn': 4.0.6 6986 - '@types/estree': 1.0.6 6987 - estree-util-is-identifier-name: 2.1.0 6988 - micromark-factory-mdx-expression: 1.0.9 6989 - micromark-factory-space: 1.1.0 6990 - micromark-util-character: 1.2.0 6991 - micromark-util-symbol: 1.1.0 6992 - micromark-util-types: 1.1.0 6993 - uvu: 0.5.6 6994 - vfile-message: 3.1.4 6995 - 6996 - micromark-extension-mdx-md@1.0.1: 6997 - dependencies: 6998 - micromark-util-types: 1.1.0 6999 - 7000 - micromark-extension-mdxjs-esm@1.0.5: 7001 - dependencies: 7002 - '@types/estree': 1.0.6 7003 - micromark-core-commonmark: 1.1.0 7004 - micromark-util-character: 1.2.0 7005 - micromark-util-events-to-acorn: 1.2.3 7006 - micromark-util-symbol: 1.1.0 7007 - micromark-util-types: 1.1.0 7008 - unist-util-position-from-estree: 1.1.2 7009 - uvu: 0.5.6 7010 - vfile-message: 3.1.4 7011 - 7012 - micromark-extension-mdxjs@1.0.1: 7013 - dependencies: 7014 - acorn: 8.14.0 7015 - acorn-jsx: 5.3.2(acorn@8.14.0) 7016 - micromark-extension-mdx-expression: 1.0.8 7017 - micromark-extension-mdx-jsx: 1.0.5 7018 - micromark-extension-mdx-md: 1.0.1 7019 - micromark-extension-mdxjs-esm: 1.0.5 7020 - micromark-util-combine-extensions: 1.1.0 7021 - micromark-util-types: 1.1.0 7022 - 7023 - micromark-factory-destination@1.1.0: 7024 - dependencies: 7025 - micromark-util-character: 1.2.0 7026 - micromark-util-symbol: 1.1.0 7027 - micromark-util-types: 1.1.0 7028 - 7029 5507 micromark-factory-destination@2.0.1: 7030 5508 dependencies: 7031 5509 micromark-util-character: 2.1.1 7032 5510 micromark-util-symbol: 2.0.1 7033 5511 micromark-util-types: 2.0.1 7034 5512 7035 - micromark-factory-label@1.1.0: 7036 - dependencies: 7037 - micromark-util-character: 1.2.0 7038 - micromark-util-symbol: 1.1.0 7039 - micromark-util-types: 1.1.0 7040 - uvu: 0.5.6 7041 - 7042 5513 micromark-factory-label@2.0.1: 7043 5514 dependencies: 7044 5515 devlop: 1.1.0 ··· 7046 5517 micromark-util-symbol: 2.0.1 7047 5518 micromark-util-types: 2.0.1 7048 5519 7049 - micromark-factory-mdx-expression@1.0.9: 7050 - dependencies: 7051 - '@types/estree': 1.0.6 7052 - micromark-util-character: 1.2.0 7053 - micromark-util-events-to-acorn: 1.2.3 7054 - micromark-util-symbol: 1.1.0 7055 - micromark-util-types: 1.1.0 7056 - unist-util-position-from-estree: 1.1.2 7057 - uvu: 0.5.6 7058 - vfile-message: 3.1.4 7059 - 7060 - micromark-factory-space@1.1.0: 7061 - dependencies: 7062 - micromark-util-character: 1.2.0 7063 - micromark-util-types: 1.1.0 7064 - 7065 5520 micromark-factory-space@2.0.1: 7066 5521 dependencies: 7067 5522 micromark-util-character: 2.1.1 7068 5523 micromark-util-types: 2.0.1 7069 5524 7070 - micromark-factory-title@1.1.0: 7071 - dependencies: 7072 - micromark-factory-space: 1.1.0 7073 - micromark-util-character: 1.2.0 7074 - micromark-util-symbol: 1.1.0 7075 - micromark-util-types: 1.1.0 7076 - 7077 5525 micromark-factory-title@2.0.1: 7078 5526 dependencies: 7079 5527 micromark-factory-space: 2.0.1 ··· 7081 5529 micromark-util-symbol: 2.0.1 7082 5530 micromark-util-types: 2.0.1 7083 5531 7084 - micromark-factory-whitespace@1.1.0: 7085 - dependencies: 7086 - micromark-factory-space: 1.1.0 7087 - micromark-util-character: 1.2.0 7088 - micromark-util-symbol: 1.1.0 7089 - micromark-util-types: 1.1.0 7090 - 7091 5532 micromark-factory-whitespace@2.0.1: 7092 5533 dependencies: 7093 5534 micromark-factory-space: 2.0.1 ··· 7095 5536 micromark-util-symbol: 2.0.1 7096 5537 micromark-util-types: 2.0.1 7097 5538 7098 - micromark-util-character@1.2.0: 7099 - dependencies: 7100 - micromark-util-symbol: 1.1.0 7101 - micromark-util-types: 1.1.0 7102 - 7103 5539 micromark-util-character@2.1.1: 7104 5540 dependencies: 7105 5541 micromark-util-symbol: 2.0.1 7106 5542 micromark-util-types: 2.0.1 7107 - 7108 - micromark-util-chunked@1.1.0: 7109 - dependencies: 7110 - micromark-util-symbol: 1.1.0 7111 5543 7112 5544 micromark-util-chunked@2.0.1: 7113 5545 dependencies: 7114 5546 micromark-util-symbol: 2.0.1 7115 - 7116 - micromark-util-classify-character@1.1.0: 7117 - dependencies: 7118 - micromark-util-character: 1.2.0 7119 - micromark-util-symbol: 1.1.0 7120 - micromark-util-types: 1.1.0 7121 5547 7122 5548 micromark-util-classify-character@2.0.1: 7123 5549 dependencies: ··· 7125 5551 micromark-util-symbol: 2.0.1 7126 5552 micromark-util-types: 2.0.1 7127 5553 7128 - micromark-util-combine-extensions@1.1.0: 7129 - dependencies: 7130 - micromark-util-chunked: 1.1.0 7131 - micromark-util-types: 1.1.0 7132 - 7133 5554 micromark-util-combine-extensions@2.0.1: 7134 5555 dependencies: 7135 5556 micromark-util-chunked: 2.0.1 7136 5557 micromark-util-types: 2.0.1 7137 5558 7138 - micromark-util-decode-numeric-character-reference@1.1.0: 7139 - dependencies: 7140 - micromark-util-symbol: 1.1.0 7141 - 7142 5559 micromark-util-decode-numeric-character-reference@2.0.2: 7143 5560 dependencies: 7144 5561 micromark-util-symbol: 2.0.1 7145 5562 7146 - micromark-util-decode-string@1.1.0: 7147 - dependencies: 7148 - decode-named-character-reference: 1.0.2 7149 - micromark-util-character: 1.2.0 7150 - micromark-util-decode-numeric-character-reference: 1.1.0 7151 - micromark-util-symbol: 1.1.0 7152 - 7153 5563 micromark-util-decode-string@2.0.1: 7154 5564 dependencies: 7155 5565 decode-named-character-reference: 1.0.2 ··· 7157 5567 micromark-util-decode-numeric-character-reference: 2.0.2 7158 5568 micromark-util-symbol: 2.0.1 7159 5569 7160 - micromark-util-encode@1.1.0: {} 7161 - 7162 5570 micromark-util-encode@2.0.1: {} 7163 5571 7164 - micromark-util-events-to-acorn@1.2.3: 7165 - dependencies: 7166 - '@types/acorn': 4.0.6 7167 - '@types/estree': 1.0.6 7168 - '@types/unist': 2.0.11 7169 - estree-util-visit: 1.2.1 7170 - micromark-util-symbol: 1.1.0 7171 - micromark-util-types: 1.1.0 7172 - uvu: 0.5.6 7173 - vfile-message: 3.1.4 7174 - 7175 - micromark-util-html-tag-name@1.2.0: {} 7176 - 7177 5572 micromark-util-html-tag-name@2.0.1: {} 7178 - 7179 - micromark-util-normalize-identifier@1.1.0: 7180 - dependencies: 7181 - micromark-util-symbol: 1.1.0 7182 5573 7183 5574 micromark-util-normalize-identifier@2.0.1: 7184 5575 dependencies: 7185 5576 micromark-util-symbol: 2.0.1 7186 5577 7187 - micromark-util-resolve-all@1.1.0: 7188 - dependencies: 7189 - micromark-util-types: 1.1.0 7190 - 7191 5578 micromark-util-resolve-all@2.0.1: 7192 5579 dependencies: 7193 5580 micromark-util-types: 2.0.1 7194 5581 7195 - micromark-util-sanitize-uri@1.2.0: 7196 - dependencies: 7197 - micromark-util-character: 1.2.0 7198 - micromark-util-encode: 1.1.0 7199 - micromark-util-symbol: 1.1.0 7200 - 7201 5582 micromark-util-sanitize-uri@2.0.1: 7202 5583 dependencies: 7203 5584 micromark-util-character: 2.1.1 7204 5585 micromark-util-encode: 2.0.1 7205 5586 micromark-util-symbol: 2.0.1 7206 5587 7207 - micromark-util-subtokenize@1.1.0: 7208 - dependencies: 7209 - micromark-util-chunked: 1.1.0 7210 - micromark-util-symbol: 1.1.0 7211 - micromark-util-types: 1.1.0 7212 - uvu: 0.5.6 7213 - 7214 5588 micromark-util-subtokenize@2.0.3: 7215 5589 dependencies: 7216 5590 devlop: 1.1.0 ··· 7218 5592 micromark-util-symbol: 2.0.1 7219 5593 micromark-util-types: 2.0.1 7220 5594 7221 - micromark-util-symbol@1.1.0: {} 7222 - 7223 5595 micromark-util-symbol@2.0.1: {} 7224 - 7225 - micromark-util-types@1.1.0: {} 7226 5596 7227 5597 micromark-util-types@2.0.1: {} 7228 5598 7229 - micromark@3.2.0: 7230 - dependencies: 7231 - '@types/debug': 4.1.12 7232 - debug: 4.4.0 7233 - decode-named-character-reference: 1.0.2 7234 - micromark-core-commonmark: 1.1.0 7235 - micromark-factory-space: 1.1.0 7236 - micromark-util-character: 1.2.0 7237 - micromark-util-chunked: 1.1.0 7238 - micromark-util-combine-extensions: 1.1.0 7239 - micromark-util-decode-numeric-character-reference: 1.1.0 7240 - micromark-util-encode: 1.1.0 7241 - micromark-util-normalize-identifier: 1.1.0 7242 - micromark-util-resolve-all: 1.1.0 7243 - micromark-util-sanitize-uri: 1.2.0 7244 - micromark-util-subtokenize: 1.1.0 7245 - micromark-util-symbol: 1.1.0 7246 - micromark-util-types: 1.1.0 7247 - uvu: 0.5.6 7248 - transitivePeerDependencies: 7249 - - supports-color 7250 - 7251 5599 micromark@4.0.1: 7252 5600 dependencies: 7253 5601 '@types/debug': 4.1.12 ··· 7275 5623 braces: 3.0.3 7276 5624 picomatch: 2.3.1 7277 5625 7278 - mime-db@1.52.0: {} 7279 - 7280 - mime-types@2.1.35: 7281 - dependencies: 7282 - mime-db: 1.52.0 7283 - 7284 - mime@1.6.0: {} 7285 - 7286 - mime@2.6.0: {} 7287 - 7288 5626 mime@3.0.0: {} 7289 - 7290 - mimic-fn@2.1.0: {} 7291 5627 7292 5628 miniflare@3.20241022.0: 7293 5629 dependencies: ··· 7322 5658 7323 5659 minimist@1.2.8: {} 7324 5660 7325 - minipass-collect@1.0.2: 7326 - dependencies: 7327 - minipass: 3.3.6 7328 - 7329 - minipass-flush@1.0.5: 7330 - dependencies: 7331 - minipass: 3.3.6 7332 - 7333 - minipass-pipeline@1.2.4: 7334 - dependencies: 7335 - minipass: 3.3.6 7336 - 7337 - minipass@3.3.6: 7338 - dependencies: 7339 - yallist: 4.0.0 7340 - 7341 - minipass@5.0.0: {} 7342 - 7343 5661 minipass@7.1.2: {} 7344 5662 7345 - minizlib@2.1.2: 7346 - dependencies: 7347 - minipass: 3.3.6 7348 - yallist: 4.0.0 7349 - 7350 - mkdirp-classic@0.5.3: {} 7351 - 7352 - mkdirp@1.0.4: {} 7353 - 7354 - mlly@1.7.3: 7355 - dependencies: 7356 - acorn: 8.14.0 7357 - pathe: 1.1.2 7358 - pkg-types: 1.2.1 7359 - ufo: 1.5.4 7360 - 7361 - modern-ahocorasick@1.1.0: {} 7362 - 7363 - mri@1.2.0: {} 7364 - 7365 - mrmime@1.0.1: {} 7366 - 7367 - ms@2.0.0: {} 7368 - 7369 5663 ms@2.1.3: {} 7370 5664 7371 5665 multiformats@9.9.0: {} ··· 7382 5676 7383 5677 natural-compare@1.4.0: {} 7384 5678 7385 - negotiator@0.6.3: {} 7386 - 7387 5679 node-forge@1.3.1: {} 7388 5680 7389 5681 node-releases@2.0.19: {} ··· 7418 5710 npm-normalize-package-bin: 3.0.1 7419 5711 npm-package-arg: 10.1.0 7420 5712 semver: 7.6.3 7421 - 7422 - npm-run-path@4.0.1: 7423 - dependencies: 7424 - path-key: 3.1.1 7425 5713 7426 5714 object-assign@4.1.1: {} 7427 5715 ··· 7465 5753 7466 5754 ohash@1.1.4: {} 7467 5755 7468 - on-finished@2.4.1: 7469 - dependencies: 7470 - ee-first: 1.1.1 7471 - 7472 5756 once@1.4.0: 7473 5757 dependencies: 7474 5758 wrappy: 1.0.2 7475 5759 7476 - onetime@5.1.2: 7477 - dependencies: 7478 - mimic-fn: 2.1.0 7479 - 7480 5760 optionator@0.9.4: 7481 5761 dependencies: 7482 5762 deep-is: 0.1.4 ··· 7486 5766 type-check: 0.4.0 7487 5767 word-wrap: 1.2.5 7488 5768 7489 - ora@5.4.1: 7490 - dependencies: 7491 - bl: 4.1.0 7492 - chalk: 4.1.2 7493 - cli-cursor: 3.1.0 7494 - cli-spinners: 2.9.2 7495 - is-interactive: 1.0.0 7496 - is-unicode-supported: 0.1.0 7497 - log-symbols: 4.1.0 7498 - strip-ansi: 6.0.1 7499 - wcwidth: 1.0.1 7500 - 7501 - outdent@0.8.0: {} 7502 - 7503 5769 p-limit@3.1.0: 7504 5770 dependencies: 7505 5771 yocto-queue: 0.1.0 ··· 7508 5774 dependencies: 7509 5775 p-limit: 3.1.0 7510 5776 7511 - p-map@4.0.0: 7512 - dependencies: 7513 - aggregate-error: 3.1.0 7514 - 7515 5777 package-json-from-dist@1.0.1: {} 7516 5778 7517 5779 pako@0.2.9: {} ··· 7529 5791 is-alphanumerical: 2.0.1 7530 5792 is-decimal: 2.0.1 7531 5793 is-hexadecimal: 2.0.1 7532 - 7533 - parse-ms@2.1.0: {} 7534 - 7535 - parseurl@1.3.3: {} 7536 5794 7537 5795 path-exists@4.0.0: {} 7538 5796 ··· 7547 5805 lru-cache: 10.4.3 7548 5806 minipass: 7.1.2 7549 5807 7550 - path-to-regexp@0.1.12: {} 7551 - 7552 5808 path-to-regexp@6.3.0: {} 7553 5809 7554 5810 path-type@4.0.0: {} ··· 7561 5817 duplexify: 3.7.1 7562 5818 through2: 2.0.5 7563 5819 7564 - periscopic@3.1.0: 7565 - dependencies: 7566 - '@types/estree': 1.0.6 7567 - estree-walker: 3.0.3 7568 - is-reference: 3.0.3 7569 - 7570 5820 picocolors@1.1.1: {} 7571 5821 7572 5822 picomatch@2.3.1: {} 7573 5823 7574 - pidtree@0.6.0: {} 5824 + picomatch@4.0.2: {} 7575 5825 7576 5826 pify@2.3.0: {} 7577 5827 7578 5828 pirates@4.0.6: {} 7579 5829 7580 - pkg-types@1.2.1: 7581 - dependencies: 7582 - confbox: 0.1.8 7583 - mlly: 1.7.3 7584 - pathe: 1.1.2 7585 - 7586 5830 possible-typed-array-names@1.0.0: {} 7587 5831 7588 - postcss-discard-duplicates@5.1.0(postcss@8.4.49): 7589 - dependencies: 7590 - postcss: 8.4.49 7591 - 7592 5832 postcss-import@15.1.0(postcss@8.4.49): 7593 5833 dependencies: 7594 5834 postcss: 8.4.49 ··· 7608 5848 optionalDependencies: 7609 5849 postcss: 8.4.49 7610 5850 7611 - postcss-modules-extract-imports@3.1.0(postcss@8.4.49): 5851 + postcss-load-config@6.0.1(jiti@1.21.6)(postcss@8.4.49)(yaml@2.6.1): 7612 5852 dependencies: 5853 + lilconfig: 3.1.3 5854 + optionalDependencies: 5855 + jiti: 1.21.6 7613 5856 postcss: 8.4.49 7614 - 7615 - postcss-modules-local-by-default@4.2.0(postcss@8.4.49): 7616 - dependencies: 7617 - icss-utils: 5.1.0(postcss@8.4.49) 7618 - postcss: 8.4.49 7619 - postcss-selector-parser: 7.0.0 7620 - postcss-value-parser: 4.2.0 7621 - 7622 - postcss-modules-scope@3.2.1(postcss@8.4.49): 7623 - dependencies: 7624 - postcss: 8.4.49 7625 - postcss-selector-parser: 7.0.0 7626 - 7627 - postcss-modules-values@4.0.0(postcss@8.4.49): 7628 - dependencies: 7629 - icss-utils: 5.1.0(postcss@8.4.49) 7630 - postcss: 8.4.49 7631 - 7632 - postcss-modules@6.0.1(postcss@8.4.49): 7633 - dependencies: 7634 - generic-names: 4.0.0 7635 - icss-utils: 5.1.0(postcss@8.4.49) 7636 - lodash.camelcase: 4.3.0 7637 - postcss: 8.4.49 7638 - postcss-modules-extract-imports: 3.1.0(postcss@8.4.49) 7639 - postcss-modules-local-by-default: 4.2.0(postcss@8.4.49) 7640 - postcss-modules-scope: 3.2.1(postcss@8.4.49) 7641 - postcss-modules-values: 4.0.0(postcss@8.4.49) 7642 - string-hash: 1.1.3 5857 + yaml: 2.6.1 7643 5858 7644 5859 postcss-nested@6.2.0(postcss@8.4.49): 7645 5860 dependencies: ··· 7656 5871 cssesc: 3.0.0 7657 5872 util-deprecate: 1.0.2 7658 5873 7659 - postcss-selector-parser@7.0.0: 7660 - dependencies: 7661 - cssesc: 3.0.0 7662 - util-deprecate: 1.0.2 7663 - 7664 5874 postcss-value-parser@4.2.0: {} 7665 5875 7666 5876 postcss@8.4.49: ··· 7672 5882 prelude-ls@1.2.1: {} 7673 5883 7674 5884 prettier@2.8.8: {} 7675 - 7676 - pretty-ms@7.0.1: 7677 - dependencies: 7678 - parse-ms: 2.1.0 7679 5885 7680 5886 printable-characters@1.0.42: {} 7681 5887 ··· 7698 5904 7699 5905 property-information@6.5.0: {} 7700 5906 7701 - proxy-addr@2.0.7: 7702 - dependencies: 7703 - forwarded: 0.2.0 7704 - ipaddr.js: 1.9.1 7705 - 7706 5907 pump@2.0.1: 7707 - dependencies: 7708 - end-of-stream: 1.4.4 7709 - once: 1.4.0 7710 - 7711 - pump@3.0.2: 7712 5908 dependencies: 7713 5909 end-of-stream: 1.4.4 7714 5910 once: 1.4.0 ··· 7721 5917 7722 5918 punycode@2.3.1: {} 7723 5919 7724 - qs@6.13.0: 7725 - dependencies: 7726 - side-channel: 1.1.0 7727 - 7728 5920 queue-microtask@1.2.3: {} 7729 - 7730 - range-parser@1.2.1: {} 7731 - 7732 - raw-body@2.5.2: 7733 - dependencies: 7734 - bytes: 3.1.2 7735 - http-errors: 2.0.0 7736 - iconv-lite: 0.4.24 7737 - unpipe: 1.0.0 7738 5921 7739 5922 react-dom@18.3.1(react@18.3.1): 7740 5923 dependencies: ··· 7763 5946 7764 5947 react-refresh@0.14.2: {} 7765 5948 7766 - react-router-dom@6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 5949 + react-router@7.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 7767 5950 dependencies: 7768 - '@remix-run/router': 1.21.0 5951 + '@types/cookie': 0.6.0 5952 + cookie: 1.0.2 7769 5953 react: 18.3.1 5954 + set-cookie-parser: 2.7.1 5955 + turbo-stream: 2.4.0 5956 + optionalDependencies: 7770 5957 react-dom: 18.3.1(react@18.3.1) 7771 - react-router: 6.28.0(react@18.3.1) 7772 - 7773 - react-router@6.28.0(react@18.3.1): 7774 - dependencies: 7775 - '@remix-run/router': 1.21.0 7776 - react: 18.3.1 7777 5958 7778 5959 react@18.3.1: 7779 5960 dependencies: ··· 7793 5974 string_decoder: 1.1.1 7794 5975 util-deprecate: 1.0.2 7795 5976 7796 - readable-stream@3.6.2: 7797 - dependencies: 7798 - inherits: 2.0.4 7799 - string_decoder: 1.3.0 7800 - util-deprecate: 1.0.2 7801 - 7802 5977 readdirp@3.6.0: 7803 5978 dependencies: 7804 5979 picomatch: 2.3.1 5980 + 5981 + readdirp@4.0.2: {} 7805 5982 7806 5983 reflect.getprototypeof@1.0.8: 7807 5984 dependencies: ··· 7814 5991 gopd: 1.2.0 7815 5992 which-builtin-type: 1.2.1 7816 5993 7817 - regenerator-runtime@0.14.1: {} 7818 - 7819 5994 regexp.prototype.flags@1.5.3: 7820 5995 dependencies: 7821 5996 call-bind: 1.0.8 ··· 7823 5998 es-errors: 1.3.0 7824 5999 set-function-name: 2.0.2 7825 6000 7826 - remark-frontmatter@4.0.1: 7827 - dependencies: 7828 - '@types/mdast': 3.0.15 7829 - mdast-util-frontmatter: 1.0.1 7830 - micromark-extension-frontmatter: 1.1.1 7831 - unified: 10.1.2 7832 - 7833 - remark-mdx-frontmatter@1.1.1: 7834 - dependencies: 7835 - estree-util-is-identifier-name: 1.1.0 7836 - estree-util-value-to-estree: 1.3.0 7837 - js-yaml: 4.1.0 7838 - toml: 3.0.0 7839 - 7840 - remark-mdx@2.3.0: 7841 - dependencies: 7842 - mdast-util-mdx: 2.0.1 7843 - micromark-extension-mdxjs: 1.0.1 7844 - transitivePeerDependencies: 7845 - - supports-color 7846 - 7847 - remark-parse@10.0.2: 7848 - dependencies: 7849 - '@types/mdast': 3.0.15 7850 - mdast-util-from-markdown: 1.3.1 7851 - unified: 10.1.2 7852 - transitivePeerDependencies: 7853 - - supports-color 7854 - 7855 6001 remark-parse@11.0.0: 7856 6002 dependencies: 7857 6003 '@types/mdast': 4.0.4 ··· 7861 6007 transitivePeerDependencies: 7862 6008 - supports-color 7863 6009 7864 - remark-rehype@10.1.0: 7865 - dependencies: 7866 - '@types/hast': 2.3.10 7867 - '@types/mdast': 3.0.15 7868 - mdast-util-to-hast: 12.3.0 7869 - unified: 10.1.2 7870 - 7871 6010 remark-rehype@11.1.1: 7872 6011 dependencies: 7873 6012 '@types/hast': 3.0.4 ··· 7876 6015 unified: 11.0.5 7877 6016 vfile: 6.0.3 7878 6017 7879 - require-like@0.1.2: {} 7880 - 7881 6018 resolve-from@4.0.0: {} 7882 6019 6020 + resolve-from@5.0.0: {} 6021 + 7883 6022 resolve-pkg-maps@1.0.0: {} 7884 6023 7885 6024 resolve.exports@2.0.3: {} ··· 7895 6034 is-core-module: 2.16.0 7896 6035 path-parse: 1.0.7 7897 6036 supports-preserve-symlinks-flag: 1.0.0 7898 - 7899 - restore-cursor@3.1.0: 7900 - dependencies: 7901 - onetime: 5.1.2 7902 - signal-exit: 3.0.7 7903 6037 7904 6038 retry@0.12.0: {} 7905 6039 ··· 7952 6086 dependencies: 7953 6087 queue-microtask: 1.2.3 7954 6088 7955 - sade@1.8.1: 7956 - dependencies: 7957 - mri: 1.2.0 7958 - 7959 6089 safe-array-concat@1.1.3: 7960 6090 dependencies: 7961 6091 call-bind: 1.0.8 ··· 7965 6095 isarray: 2.0.5 7966 6096 7967 6097 safe-buffer@5.1.2: {} 7968 - 7969 - safe-buffer@5.2.1: {} 7970 6098 7971 6099 safe-regex-test@1.1.0: 7972 6100 dependencies: ··· 7974 6102 es-errors: 1.3.0 7975 6103 is-regex: 1.2.1 7976 6104 7977 - safer-buffer@2.1.2: {} 7978 - 7979 6105 sax@1.4.1: {} 7980 6106 7981 6107 scheduler@0.23.2: ··· 7991 6117 7992 6118 semver@7.6.3: {} 7993 6119 7994 - send@0.19.0: 7995 - dependencies: 7996 - debug: 2.6.9 7997 - depd: 2.0.0 7998 - destroy: 1.2.0 7999 - encodeurl: 1.0.2 8000 - escape-html: 1.0.3 8001 - etag: 1.8.1 8002 - fresh: 0.5.2 8003 - http-errors: 2.0.0 8004 - mime: 1.6.0 8005 - ms: 2.1.3 8006 - on-finished: 2.4.1 8007 - range-parser: 1.2.1 8008 - statuses: 2.0.1 8009 - transitivePeerDependencies: 8010 - - supports-color 8011 - 8012 - serve-static@1.16.2: 8013 - dependencies: 8014 - encodeurl: 2.0.0 8015 - escape-html: 1.0.3 8016 - parseurl: 1.3.3 8017 - send: 0.19.0 8018 - transitivePeerDependencies: 8019 - - supports-color 8020 - 8021 6120 set-cookie-parser@2.7.1: {} 8022 6121 8023 6122 set-function-length@1.2.2: ··· 8035 6134 es-errors: 1.3.0 8036 6135 functions-have-names: 1.2.3 8037 6136 has-property-descriptors: 1.0.2 8038 - 8039 - setprototypeof@1.2.0: {} 8040 6137 8041 6138 shebang-command@2.0.0: 8042 6139 dependencies: ··· 8072 6169 side-channel-map: 1.0.1 8073 6170 side-channel-weakmap: 1.0.2 8074 6171 8075 - signal-exit@3.0.7: {} 8076 - 8077 6172 signal-exit@4.1.0: {} 8078 6173 8079 6174 slash@3.0.0: {} ··· 8087 6182 8088 6183 source-map@0.6.1: {} 8089 6184 8090 - source-map@0.7.4: {} 6185 + source-map@0.8.0-beta.0: 6186 + dependencies: 6187 + whatwg-url: 7.1.0 8091 6188 8092 6189 sourcemap-codec@1.4.8: {} 8093 6190 ··· 8107 6204 8108 6205 spdx-license-ids@3.0.20: {} 8109 6206 8110 - ssri@10.0.6: 8111 - dependencies: 8112 - minipass: 7.1.2 8113 - 8114 6207 stacktracey@2.1.8: 8115 6208 dependencies: 8116 6209 as-table: 1.0.55 8117 6210 get-source: 2.0.12 8118 - 8119 - statuses@2.0.1: {} 8120 6211 8121 6212 stoppable@1.1.0: {} 8122 6213 8123 6214 stream-shift@1.0.3: {} 8124 6215 8125 6216 stream-slice@0.1.2: {} 8126 - 8127 - string-hash@1.1.3: {} 8128 6217 8129 6218 string-width@4.2.3: 8130 6219 dependencies: ··· 8191 6280 dependencies: 8192 6281 safe-buffer: 5.1.2 8193 6282 8194 - string_decoder@1.3.0: 8195 - dependencies: 8196 - safe-buffer: 5.2.1 8197 - 8198 6283 stringify-entities@4.0.4: 8199 6284 dependencies: 8200 6285 character-entities-html4: 2.1.0 ··· 8209 6294 ansi-regex: 6.1.0 8210 6295 8211 6296 strip-bom@3.0.0: {} 8212 - 8213 - strip-final-newline@2.0.0: {} 8214 6297 8215 6298 strip-json-comments@3.1.1: {} 8216 6299 8217 - style-to-object@0.4.4: 8218 - dependencies: 8219 - inline-style-parser: 0.1.1 8220 - 8221 6300 style-to-object@1.0.8: 8222 6301 dependencies: 8223 6302 inline-style-parser: 0.2.4 ··· 8267 6346 8268 6347 tapable@2.2.1: {} 8269 6348 8270 - tar-fs@2.1.1: 8271 - dependencies: 8272 - chownr: 1.1.4 8273 - mkdirp-classic: 0.5.3 8274 - pump: 3.0.2 8275 - tar-stream: 2.2.0 8276 - 8277 - tar-stream@2.2.0: 8278 - dependencies: 8279 - bl: 4.1.0 8280 - end-of-stream: 1.4.4 8281 - fs-constants: 1.0.0 8282 - inherits: 2.0.4 8283 - readable-stream: 3.6.2 8284 - 8285 - tar@6.2.1: 8286 - dependencies: 8287 - chownr: 2.0.0 8288 - fs-minipass: 2.1.0 8289 - minipass: 5.0.0 8290 - minizlib: 2.1.2 8291 - mkdirp: 1.0.4 8292 - yallist: 4.0.0 8293 - 8294 6349 text-table@0.2.0: {} 8295 6350 8296 6351 thenify-all@1.6.0: ··· 8305 6360 dependencies: 8306 6361 readable-stream: 2.3.8 8307 6362 xtend: 4.0.2 6363 + 6364 + tinyexec@0.3.1: {} 6365 + 6366 + tinyglobby@0.2.10: 6367 + dependencies: 6368 + fdir: 6.4.2(picomatch@4.0.2) 6369 + picomatch: 4.0.2 8308 6370 8309 6371 tlds@1.255.0: {} 8310 6372 ··· 8312 6374 dependencies: 8313 6375 is-number: 7.0.0 8314 6376 8315 - toidentifier@1.0.1: {} 6377 + tr46@1.0.1: 6378 + dependencies: 6379 + punycode: 2.3.1 8316 6380 8317 - toml@3.0.0: {} 6381 + tree-kill@1.2.2: {} 8318 6382 8319 6383 trim-lines@3.0.1: {} 8320 6384 ··· 8337 6401 minimist: 1.2.8 8338 6402 strip-bom: 3.0.0 8339 6403 8340 - tsconfig-paths@4.2.0: 8341 - dependencies: 8342 - json5: 2.2.3 8343 - minimist: 1.2.8 8344 - strip-bom: 3.0.0 6404 + tslib@2.8.1: {} 8345 6405 8346 - tslib@2.8.1: {} 6406 + tsup@8.3.5(jiti@1.21.6)(postcss@8.4.49)(typescript@5.6.3)(yaml@2.6.1): 6407 + dependencies: 6408 + bundle-require: 5.0.0(esbuild@0.24.2) 6409 + cac: 6.7.14 6410 + chokidar: 4.0.3 6411 + consola: 3.3.0 6412 + debug: 4.4.0 6413 + esbuild: 0.24.2 6414 + joycon: 3.1.1 6415 + picocolors: 1.1.1 6416 + postcss-load-config: 6.0.1(jiti@1.21.6)(postcss@8.4.49)(yaml@2.6.1) 6417 + resolve-from: 5.0.0 6418 + rollup: 4.28.1 6419 + source-map: 0.8.0-beta.0 6420 + sucrase: 3.35.0 6421 + tinyexec: 0.3.1 6422 + tinyglobby: 0.2.10 6423 + tree-kill: 1.2.2 6424 + optionalDependencies: 6425 + postcss: 8.4.49 6426 + typescript: 5.6.3 6427 + transitivePeerDependencies: 6428 + - jiti 6429 + - supports-color 6430 + - tsx 6431 + - yaml 8347 6432 8348 6433 turbo-stream@2.4.0: {} 8349 6434 ··· 8352 6437 prelude-ls: 1.2.1 8353 6438 8354 6439 type-fest@0.20.2: {} 8355 - 8356 - type-is@1.6.18: 8357 - dependencies: 8358 - media-typer: 0.3.0 8359 - mime-types: 2.1.35 8360 6440 8361 6441 typed-array-buffer@1.0.2: 8362 6442 dependencies: ··· 8421 6501 pathe: 1.1.2 8422 6502 ufo: 1.5.4 8423 6503 8424 - unified@10.1.2: 8425 - dependencies: 8426 - '@types/unist': 2.0.11 8427 - bail: 2.0.2 8428 - extend: 3.0.2 8429 - is-buffer: 2.0.5 8430 - is-plain-obj: 4.1.0 8431 - trough: 2.2.0 8432 - vfile: 5.3.7 8433 - 8434 6504 unified@11.0.5: 8435 6505 dependencies: 8436 6506 '@types/unist': 3.0.3 ··· 8441 6511 trough: 2.2.0 8442 6512 vfile: 6.0.3 8443 6513 8444 - unique-filename@3.0.0: 8445 - dependencies: 8446 - unique-slug: 4.0.0 8447 - 8448 - unique-slug@4.0.0: 8449 - dependencies: 8450 - imurmurhash: 0.1.4 8451 - 8452 - unist-util-generated@2.0.1: {} 8453 - 8454 - unist-util-is@5.2.1: 8455 - dependencies: 8456 - '@types/unist': 2.0.11 8457 - 8458 6514 unist-util-is@6.0.0: 8459 6515 dependencies: 8460 6516 '@types/unist': 3.0.3 8461 6517 8462 - unist-util-position-from-estree@1.1.2: 8463 - dependencies: 8464 - '@types/unist': 2.0.11 8465 - 8466 - unist-util-position@4.0.4: 8467 - dependencies: 8468 - '@types/unist': 2.0.11 8469 - 8470 6518 unist-util-position@5.0.0: 8471 6519 dependencies: 8472 6520 '@types/unist': 3.0.3 8473 6521 8474 - unist-util-remove-position@4.0.2: 8475 - dependencies: 8476 - '@types/unist': 2.0.11 8477 - unist-util-visit: 4.1.2 8478 - 8479 - unist-util-stringify-position@3.0.3: 8480 - dependencies: 8481 - '@types/unist': 2.0.11 8482 - 8483 6522 unist-util-stringify-position@4.0.0: 8484 6523 dependencies: 8485 6524 '@types/unist': 3.0.3 8486 6525 8487 - unist-util-visit-parents@5.1.3: 8488 - dependencies: 8489 - '@types/unist': 2.0.11 8490 - unist-util-is: 5.2.1 8491 - 8492 6526 unist-util-visit-parents@6.0.1: 8493 6527 dependencies: 8494 6528 '@types/unist': 3.0.3 8495 6529 unist-util-is: 6.0.0 8496 6530 8497 - unist-util-visit@4.1.2: 8498 - dependencies: 8499 - '@types/unist': 2.0.11 8500 - unist-util-is: 5.2.1 8501 - unist-util-visit-parents: 5.1.3 8502 - 8503 6531 unist-util-visit@5.0.0: 8504 6532 dependencies: 8505 6533 '@types/unist': 3.0.3 ··· 8507 6535 unist-util-visit-parents: 6.0.1 8508 6536 8509 6537 universalify@2.0.1: {} 8510 - 8511 - unpipe@1.0.0: {} 8512 6538 8513 6539 update-browserslist-db@1.1.1(browserslist@4.24.3): 8514 6540 dependencies: ··· 8522 6548 8523 6549 util-deprecate@1.0.2: {} 8524 6550 8525 - util@0.12.5: 8526 - dependencies: 8527 - inherits: 2.0.4 8528 - is-arguments: 1.2.0 8529 - is-generator-function: 1.0.10 8530 - is-typed-array: 1.1.13 8531 - which-typed-array: 1.1.16 8532 - 8533 - utils-merge@1.0.1: {} 8534 - 8535 - uvu@0.5.6: 8536 - dependencies: 8537 - dequal: 2.0.3 8538 - diff: 5.2.0 8539 - kleur: 4.1.5 8540 - sade: 1.8.1 6551 + valibot@0.41.0(typescript@5.6.3): 6552 + optionalDependencies: 6553 + typescript: 5.6.3 8541 6554 8542 6555 validate-npm-package-license@3.0.4: 8543 6556 dependencies: ··· 8546 6559 8547 6560 validate-npm-package-name@5.0.1: {} 8548 6561 8549 - vary@1.1.2: {} 8550 - 8551 - vfile-message@3.1.4: 8552 - dependencies: 8553 - '@types/unist': 2.0.11 8554 - unist-util-stringify-position: 3.0.3 8555 - 8556 6562 vfile-message@4.0.2: 8557 6563 dependencies: 8558 6564 '@types/unist': 3.0.3 8559 6565 unist-util-stringify-position: 4.0.0 8560 6566 8561 - vfile@5.3.7: 8562 - dependencies: 8563 - '@types/unist': 2.0.11 8564 - is-buffer: 2.0.5 8565 - unist-util-stringify-position: 3.0.3 8566 - vfile-message: 3.1.4 8567 - 8568 6567 vfile@6.0.3: 8569 6568 dependencies: 8570 6569 '@types/unist': 3.0.3 ··· 8608 6607 '@types/node': 22.10.2 8609 6608 fsevents: 2.3.3 8610 6609 8611 - wcwidth@1.0.1: 8612 - dependencies: 8613 - defaults: 1.0.4 6610 + webidl-conversions@4.0.2: {} 8614 6611 8615 - web-encoding@1.1.5: 6612 + whatwg-url@7.1.0: 8616 6613 dependencies: 8617 - util: 0.12.5 8618 - optionalDependencies: 8619 - '@zxing/text-encoding': 0.9.0 8620 - 8621 - web-streams-polyfill@3.3.3: {} 6614 + lodash.sortby: 4.7.0 6615 + tr46: 1.0.1 6616 + webidl-conversions: 4.0.2 8622 6617 8623 6618 which-boxed-primitive@1.1.1: 8624 6619 dependencies: ··· 8720 6715 8721 6716 wrappy@1.0.2: {} 8722 6717 8723 - ws@7.5.10: {} 8724 - 8725 6718 ws@8.18.0: {} 8726 6719 8727 6720 xml-js@1.6.11: ··· 8733 6726 xxhash-wasm@1.1.0: {} 8734 6727 8735 6728 yallist@3.1.1: {} 8736 - 8737 - yallist@4.0.0: {} 8738 6729 8739 6730 yaml@2.6.1: {} 8740 6731
+5
react-router.config.ts
··· 1 + import type { Config } from "@react-router/dev/config"; 2 + export default { 3 + ssr: true, 4 + appDirectory: './src/app', 5 + } satisfies Config;
+2 -1
server.ts
··· 1 1 import { getAssetFromKV } from "@cloudflare/kv-asset-handler"; 2 - import { createRequestHandler, type ServerBuild } from "@remix-run/cloudflare"; 2 + import { createRequestHandler } from "@react-router/cloudflare"; 3 + import { type ServerBuild } from "react-router"; 3 4 // eslint-disable-next-line @typescript-eslint/ban-ts-comment 4 5 // @ts-ignore This file won’t exist if it hasn’t yet been built 5 6 import * as build from "./build/server"; // eslint-disable-line import/no-unresolved
+2 -2
src/app/entry.client.tsx
··· 4 4 * For more information, see https://remix.run/file-conventions/entry.client 5 5 */ 6 6 7 - import { RemixBrowser } from "@remix-run/react"; 7 + import { HydratedRouter } from "react-router/dom"; 8 8 import { startTransition, StrictMode } from "react"; 9 9 import { hydrateRoot } from "react-dom/client"; 10 10 ··· 12 12 hydrateRoot( 13 13 document, 14 14 <StrictMode> 15 - <RemixBrowser /> 15 + <HydratedRouter /> 16 16 </StrictMode> 17 17 ); 18 18 });
+5 -5
src/app/entry.server.tsx
··· 4 4 * For more information, see https://remix.run/file-conventions/entry.server 5 5 */ 6 6 7 - import type { AppLoadContext, EntryContext } from "@remix-run/cloudflare"; 8 - import { RemixServer } from "@remix-run/react"; 7 + import type { AppLoadContext, EntryContext } from "react-router"; 8 + import { ServerRouter } from "react-router"; 9 9 import { isbot } from "isbot"; 10 10 import { renderToReadableStream } from "react-dom/server"; 11 11 ··· 15 15 request: Request, 16 16 responseStatusCode: number, 17 17 responseHeaders: Headers, 18 - remixContext: EntryContext, 18 + reactRouterContext: EntryContext, 19 19 // This is ignored so we can keep it in the template for visibility. Feel 20 20 // free to delete this parameter in your app if you're not using it! 21 21 // eslint-disable-next-line @typescript-eslint/no-unused-vars ··· 25 25 const timeoutId = setTimeout(() => controller.abort(), ABORT_DELAY); 26 26 27 27 const body = await renderToReadableStream( 28 - <RemixServer 29 - context={remixContext} 28 + <ServerRouter 29 + context={reactRouterContext} 30 30 url={request.url} 31 31 abortDelay={ABORT_DELAY} 32 32 />,
+5 -6
src/app/root.tsx
··· 1 1 import { 2 - json, 3 2 Links, 4 3 Meta, 5 4 Outlet, ··· 7 6 ScrollRestoration, 8 7 useLoaderData, 9 8 useLocation, 10 - } from "@remix-run/react"; 11 - import type { LinksFunction, LoaderFunction } from "@remix-run/cloudflare"; 9 + } from "react-router"; 10 + import type { LinksFunction, LoaderFunction } from "react-router"; 12 11 13 12 import "@fontsource/geist-mono"; 14 13 import "./tailwind.css"; ··· 16 15 import { Header } from "./components/header"; 17 16 18 17 export const loader: LoaderFunction = ({ request }) => { 19 - return json({ 18 + return { 20 19 origin: new URL(request.url).origin, 21 - }); 20 + }; 22 21 } 23 22 24 23 export const links: LinksFunction = () => [ ··· 33 32 ]; 34 33 35 34 export function Layout({ children }: { children: React.ReactNode }) { 36 - const props = useLoaderData<{ origin: string; }>(); 35 + const props = useLoaderData<{ origin: string }>(); 37 36 const { pathname } = useLocation() 38 37 const href = props ? props.origin + pathname : ''; 39 38
+4
src/app/routes.ts
··· 1 + import { type RouteConfig } from "@react-router/dev/routes"; 2 + import { flatRoutes } from "@react-router/fs-routes"; 3 + 4 + export default flatRoutes() satisfies RouteConfig;
+1 -1
src/app/routes/_index.tsx
··· 1 - import type { MetaFunction } from "@remix-run/cloudflare"; 1 + import type { MetaFunction } from "react-router"; 2 2 import { frens } from "src/ring"; 3 3 4 4 export const meta: MetaFunction = () => {
+4 -6
src/app/routes/posts.$rkey.tsx
··· 1 - import { json, LoaderFunctionArgs, MetaFunction } from '@remix-run/cloudflare'; 2 - import { useLoaderData } from '@remix-run/react'; 1 + import { LoaderFunctionArgs, MetaFunction } from 'react-router'; 2 + import { useLoaderData } from 'react-router'; 3 3 import { getPost } from 'src/atproto/getPost'; 4 4 import { WhtwndBlogEntryView } from 'src/types'; 5 5 import { FormattedDate } from '../components/formatted-date'; ··· 40 40 const { rkey } = params; 41 41 try { 42 42 const post = await getPost(context, rkey!); 43 - return json({ post }); 43 + return { post }; 44 44 } catch(e) { 45 45 throw new Response(null, { 46 46 status: 404, ··· 50 50 }; 51 51 52 52 export default () => { 53 - const { post } = useLoaderData<{ 54 - post: WhtwndBlogEntryView; 55 - }>(); 53 + const { post } = useLoaderData<typeof loader>(); 56 54 57 55 return ( 58 56 <>
+4 -7
src/app/routes/posts._index.tsx
··· 1 - import { json, LoaderFunctionArgs, MetaFunction } from '@remix-run/cloudflare'; 2 - import { useLoaderData } from '@remix-run/react'; 1 + import { LoaderFunctionArgs, MetaFunction } from 'react-router'; 2 + import { useLoaderData } from 'react-router'; 3 3 import { getPosts } from 'src/atproto/getPosts'; 4 - import { WhtwndBlogEntryView } from 'src/types'; 5 4 import { FormattedDate } from '../components/formatted-date'; 6 5 import Markdown from 'react-markdown'; 7 6 ··· 21 20 return p; 22 21 }); 23 22 24 - return json({ posts: postsShortened }); 23 + return { posts: postsShortened }; 25 24 }; 26 25 27 26 export default () => { 28 - const { posts } = useLoaderData<{ 29 - posts: WhtwndBlogEntryView[]; 30 - }>(); 27 + const { posts } = useLoaderData<typeof loader>(); 31 28 32 29 return ( 33 30 <div className="-mx-5 flex flex-col">
+1 -1
src/app/routes/rss[.xml].tsx
··· 1 - import { LoaderFunction } from "@remix-run/cloudflare"; 1 + import { LoaderFunction } from "react-router"; 2 2 import { Feed } from "feed"; 3 3 import { getPosts } from "src/atproto/getPosts"; 4 4
+1 -1
src/atproto/agent.ts
··· 1 1 import { AtpAgent } from '@atproto/api'; 2 - import { AppLoadContext } from '@remix-run/cloudflare'; 2 + import { AppLoadContext } from '@react-router'; 3 3 4 4 export const atpAgent = (ctx: AppLoadContext) => new AtpAgent({ 5 5 service: ctx.cloudflare.env.ATP_SERVICE,
+1 -1
src/atproto/getPost.ts
··· 1 1 import { WhtwndBlogEntryRecord, WhtwndBlogEntryView } from "src/types"; 2 2 import { atpAgent } from "./agent"; 3 3 import { whtwndBlogEntryRecordToView } from "./dataToView"; 4 - import { AppLoadContext } from "@remix-run/cloudflare"; 4 + import { AppLoadContext } from "react-router"; 5 5 import { getCachedPost, setCachedPost } from "src/kv"; 6 6 7 7 export const getPost = async (ctx: AppLoadContext, rkey: string, skipCache?: boolean) => {
+1 -1
src/atproto/getPosts.ts
··· 1 1 import { WhtwndBlogEntryRecord, WhtwndBlogEntryView } from "src/types"; 2 2 import { atpAgent } from "./agent"; 3 3 import { whtwndBlogEntryRecordToView } from "./dataToView"; 4 - import { AppLoadContext } from "@remix-run/cloudflare"; 4 + import { AppLoadContext } from "react-router"; 5 5 import { getCachedPosts, setCachedPost, setCachedPosts } from "src/kv"; 6 6 7 7 export const getPosts = async (ctx: AppLoadContext, cursor: string | undefined, skipCache?: boolean) => {
+1 -1
src/kv/index.ts
··· 1 - import { AppLoadContext } from "@remix-run/cloudflare"; 1 + import { AppLoadContext } from "react-router"; 2 2 import { WhtwndBlogEntryView } from "src/types"; 3 3 4 4 export const getCachedPosts = async (context: AppLoadContext) => {
+4 -21
vite.config.ts
··· 1 1 import { defineConfig } from "vite"; 2 - import { 3 - vitePlugin as remix, 4 - cloudflareDevProxyVitePlugin, 5 - } from "@remix-run/dev"; 2 + import { reactRouter } from "@react-router/dev/vite"; 3 + import { cloudflareDevProxy } from "@react-router/dev/vite/cloudflare"; 6 4 import tsconfigPaths from "vite-tsconfig-paths"; 7 5 8 - declare module "@remix-run/cloudflare" { 9 - interface Future { 10 - v3_singleFetch: true; 11 - } 12 - } 13 - 14 6 export default defineConfig({ 15 7 plugins: [ 16 - cloudflareDevProxyVitePlugin(), 17 - remix({ 18 - appDirectory: './src/app', 19 - future: { 20 - v3_fetcherPersist: true, 21 - v3_relativeSplatPath: true, 22 - v3_throwAbortReason: true, 23 - v3_singleFetch: true, 24 - v3_lazyRouteDiscovery: true, 25 - }, 26 - }), 8 + cloudflareDevProxy(), 9 + reactRouter(), 27 10 tsconfigPaths(), 28 11 ], 29 12 ssr: {