Skip to content
Snippets Groups Projects
package-lock.json 130 KiB
Newer Older
  • Learn to ignore specific revisions
  • 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
    {
      "name": "drp45",
      "version": "0.1.0",
      "lockfileVersion": 3,
      "requires": true,
      "packages": {
        "": {
          "name": "drp45",
          "version": "0.1.0",
          "dependencies": {
            "eslint": "8.41.0",
            "eslint-config-next": "13.4.4",
            "next": "13.4.4",
            "react": "18.2.0",
            "react-dom": "18.2.0"
          }
        },
        "node_modules/@babel/runtime": {
          "version": "7.22.3",
          "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.3.tgz",
          "integrity": "sha512-XsDuspWKLUsxwCp6r7EhsExHtYfbe5oAGQ19kqngTdCPUoPQzOPdUbD/pB9PJiwb2ptYKQDjSJT3R6dC+EPqfQ==",
          "dependencies": {
            "regenerator-runtime": "^0.13.11"
          },
          "engines": {
            "node": ">=6.9.0"
          }
        },
        "node_modules/@eslint-community/eslint-utils": {
          "version": "4.4.0",
          "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
          "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
          "dependencies": {
            "eslint-visitor-keys": "^3.3.0"
          },
          "engines": {
            "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
          },
          "peerDependencies": {
            "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
          }
        },
        "node_modules/@eslint-community/regexpp": {
          "version": "4.5.1",
          "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz",
          "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==",
          "engines": {
            "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
          }
        },
        "node_modules/@eslint/eslintrc": {
          "version": "2.0.3",
          "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz",
          "integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==",
          "dependencies": {
            "ajv": "^6.12.4",
            "debug": "^4.3.2",
            "espree": "^9.5.2",
            "globals": "^13.19.0",
            "ignore": "^5.2.0",
            "import-fresh": "^3.2.1",
            "js-yaml": "^4.1.0",
            "minimatch": "^3.1.2",
            "strip-json-comments": "^3.1.1"
          },
          "engines": {
            "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
          },
          "funding": {
            "url": "https://opencollective.com/eslint"
          }
        },
        "node_modules/@eslint/js": {
          "version": "8.41.0",
          "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.41.0.tgz",
          "integrity": "sha512-LxcyMGxwmTh2lY9FwHPGWOHmYFCZvbrFCBZL4FzSSsxsRPuhrYUg/49/0KDfW8tnIEaEHtfmn6+NPN+1DqaNmA==",
          "engines": {
            "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
          }
        },
        "node_modules/@humanwhocodes/config-array": {
          "version": "0.11.8",
          "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz",
          "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==",
          "dependencies": {
            "@humanwhocodes/object-schema": "^1.2.1",
            "debug": "^4.1.1",
            "minimatch": "^3.0.5"
          },
          "engines": {
            "node": ">=10.10.0"
          }
        },
        "node_modules/@humanwhocodes/module-importer": {
          "version": "1.0.1",
          "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
          "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
          "engines": {
            "node": ">=12.22"
          },
          "funding": {
            "type": "github",
            "url": "https://github.com/sponsors/nzakas"
          }
        },
        "node_modules/@humanwhocodes/object-schema": {
          "version": "1.2.1",
          "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
          "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
        },
        "node_modules/@next/env": {
          "version": "13.4.4",
          "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.4.tgz",
          "integrity": "sha512-q/y7VZj/9YpgzDe64Zi6rY1xPizx80JjlU2BTevlajtaE3w1LqweH1gGgxou2N7hdFosXHjGrI4OUvtFXXhGLg=="
        },
        "node_modules/@next/eslint-plugin-next": {
          "version": "13.4.4",
          "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.4.tgz",
          "integrity": "sha512-5jnh7q6I15efnjR/rR+/TGTc9hn53g3JTbEjAMjmeQiExKqEUgIXqrHI5zlTNlNyzCPkBB860/ctxXheZaF2Vw==",
          "dependencies": {
            "glob": "7.1.7"
          }
        },
        "node_modules/@next/swc-darwin-arm64": {
          "version": "13.4.4",
          "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.4.tgz",
          "integrity": "sha512-xfjgXvp4KalNUKZMHmsFxr1Ug+aGmmO6NWP0uoh4G3WFqP/mJ1xxfww0gMOeMeSq/Jyr5k7DvoZ2Pv+XOITTtw==",
          "cpu": [
            "arm64"
          ],
          "optional": true,
          "os": [
            "darwin"
          ],
          "engines": {
            "node": ">= 10"
          }
        },
        "node_modules/@next/swc-darwin-x64": {
          "version": "13.4.4",
          "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.4.tgz",
          "integrity": "sha512-ZY9Ti1hkIwJsxGus3nlubIkvYyB0gNOYxKrfsOrLEqD0I2iCX8D7w8v6QQZ2H+dDl6UT29oeEUdDUNGk4UEpfg==",
          "cpu": [
            "x64"
          ],
          "optional": true,
          "os": [
            "darwin"
          ],
          "engines": {
            "node": ">= 10"
          }
        },
        "node_modules/@next/swc-linux-arm64-gnu": {
          "version": "13.4.4",
          "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.4.tgz",
          "integrity": "sha512-+KZnDeMShYkpkqAvGCEDeqYTRADJXc6SY1jWXz+Uo6qWQO/Jd9CoyhTJwRSxvQA16MoYzvILkGaDqirkRNctyA==",
          "cpu": [
            "arm64"
          ],
          "optional": true,
          "os": [
            "linux"
          ],
          "engines": {
            "node": ">= 10"
          }
        },
        "node_modules/@next/swc-linux-arm64-musl": {
          "version": "13.4.4",
          "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.4.tgz",
          "integrity": "sha512-evC1twrny2XDT4uOftoubZvW3EG0zs0ZxMwEtu/dDGVRO5n5pT48S8qqEIBGBUZYu/Xx4zzpOkIxx1vpWdE+9A==",
          "cpu": [
            "arm64"
          ],
          "optional": true,
          "os": [
            "linux"
          ],
          "engines": {
            "node": ">= 10"
          }
        },
        "node_modules/@next/swc-linux-x64-gnu": {
          "version": "13.4.4",
          "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.4.tgz",
          "integrity": "sha512-PX706XcCHr2FfkyhP2lpf+pX/tUvq6/ke7JYnnr0ykNdEMo+sb7cC/o91gnURh4sPYSiZJhsF2gbIqg9rciOHQ==",
          "cpu": [
            "x64"
          ],
          "optional": true,
          "os": [
            "linux"
          ],
          "engines": {
            "node": ">= 10"
          }
        },
        "node_modules/@next/swc-linux-x64-musl": {
          "version": "13.4.4",
          "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.4.tgz",
          "integrity": "sha512-TKUUx3Ftd95JlHV6XagEnqpT204Y+IsEa3awaYIjayn0MOGjgKZMZibqarK3B1FsMSPaieJf2FEAcu9z0yT5aA==",
          "cpu": [
            "x64"
          ],
          "optional": true,
          "os": [
            "linux"
          ],
          "engines": {
            "node": ">= 10"
          }
        },
        "node_modules/@next/swc-win32-arm64-msvc": {
          "version": "13.4.4",
          "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.4.tgz",
          "integrity": "sha512-FP8AadgSq4+HPtim7WBkCMGbhr5vh9FePXiWx9+YOdjwdQocwoCK5ZVC3OW8oh3TWth6iJ0AXJ/yQ1q1cwSZ3A==",
          "cpu": [
            "arm64"
          ],
          "optional": true,
          "os": [
            "win32"
          ],
          "engines": {
            "node": ">= 10"
          }
        },
        "node_modules/@next/swc-win32-ia32-msvc": {
          "version": "13.4.4",
          "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.4.tgz",
          "integrity": "sha512-3WekVmtuA2MCdcAOrgrI+PuFiFURtSyyrN1I3UPtS0ckR2HtLqyqmS334Eulf15g1/bdwMteePdK363X/Y9JMg==",
          "cpu": [
            "ia32"
          ],
          "optional": true,
          "os": [
            "win32"
          ],
          "engines": {
            "node": ">= 10"
          }
        },
        "node_modules/@next/swc-win32-x64-msvc": {
          "version": "13.4.4",
          "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.4.tgz",
          "integrity": "sha512-AHRITu/CrlQ+qzoqQtEMfaTu7GHaQ6bziQln/pVWpOYC1wU+Mq6VQQFlsDtMCnDztPZtppAXdvvbNS7pcfRzlw==",
          "cpu": [
            "x64"
          ],
          "optional": true,
          "os": [
            "win32"
          ],
          "engines": {
            "node": ">= 10"
          }
        },
        "node_modules/@nodelib/fs.scandir": {
          "version": "2.1.5",
          "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
          "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
          "dependencies": {
            "@nodelib/fs.stat": "2.0.5",
            "run-parallel": "^1.1.9"
          },
          "engines": {
            "node": ">= 8"
          }
        },
        "node_modules/@nodelib/fs.stat": {
          "version": "2.0.5",
          "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
          "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
          "engines": {
            "node": ">= 8"
          }
        },
        "node_modules/@nodelib/fs.walk": {
          "version": "1.2.8",
          "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
          "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
          "dependencies": {
            "@nodelib/fs.scandir": "2.1.5",
            "fastq": "^1.6.0"
          },
          "engines": {
            "node": ">= 8"
          }
        },
        "node_modules/@pkgr/utils": {
          "version": "2.4.1",
          "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.1.tgz",
          "integrity": "sha512-JOqwkgFEyi+OROIyq7l4Jy28h/WwhDnG/cPkXG2Z1iFbubB6jsHW1NDvmyOzTBxHr3yg68YGirmh1JUgMqa+9w==",
          "dependencies": {
            "cross-spawn": "^7.0.3",
            "fast-glob": "^3.2.12",
            "is-glob": "^4.0.3",
            "open": "^9.1.0",
            "picocolors": "^1.0.0",
            "tslib": "^2.5.0"
          },
          "engines": {
            "node": "^12.20.0 || ^14.18.0 || >=16.0.0"
          },
          "funding": {
            "url": "https://opencollective.com/unts"
          }
        },
        "node_modules/@rushstack/eslint-patch": {
          "version": "1.3.0",
          "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.0.tgz",
          "integrity": "sha512-IthPJsJR85GhOkp3Hvp8zFOPK5ynKn6STyHa/WZpioK7E1aYDiBzpqQPrngc14DszIUkIrdd3k9Iu0XSzlP/1w=="
        },
        "node_modules/@swc/helpers": {
          "version": "0.5.1",
          "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz",
          "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==",
          "dependencies": {
            "tslib": "^2.4.0"
          }
        },
        "node_modules/@types/json5": {
          "version": "0.0.29",
          "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
          "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
        },
        "node_modules/@typescript-eslint/parser": {
          "version": "5.59.8",
          "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.8.tgz",
          "integrity": "sha512-AnR19RjJcpjoeGojmwZtCwBX/RidqDZtzcbG3xHrmz0aHHoOcbWnpDllenRDmDvsV0RQ6+tbb09/kyc+UT9Orw==",
          "dependencies": {
            "@typescript-eslint/scope-manager": "5.59.8",
            "@typescript-eslint/types": "5.59.8",
            "@typescript-eslint/typescript-estree": "5.59.8",
            "debug": "^4.3.4"
          },
          "engines": {
            "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
          },
          "funding": {
            "type": "opencollective",
            "url": "https://opencollective.com/typescript-eslint"
          },
          "peerDependencies": {
            "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
          },
          "peerDependenciesMeta": {
            "typescript": {
              "optional": true
            }
          }
        },
        "node_modules/@typescript-eslint/scope-manager": {
          "version": "5.59.8",
          "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.8.tgz",
          "integrity": "sha512-/w08ndCYI8gxGf+9zKf1vtx/16y8MHrZs5/tnjHhMLNSixuNcJavSX4wAiPf4aS5x41Es9YPCn44MIe4cxIlig==",
          "dependencies": {
            "@typescript-eslint/types": "5.59.8",
            "@typescript-eslint/visitor-keys": "5.59.8"
          },
          "engines": {
            "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
          },
          "funding": {
            "type": "opencollective",
            "url": "https://opencollective.com/typescript-eslint"
          }
        },
        "node_modules/@typescript-eslint/types": {
          "version": "5.59.8",
          "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.8.tgz",
          "integrity": "sha512-+uWuOhBTj/L6awoWIg0BlWy0u9TyFpCHrAuQ5bNfxDaZ1Ppb3mx6tUigc74LHcbHpOHuOTOJrBoAnhdHdaea1w==",
          "engines": {
            "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
          },
          "funding": {
            "type": "opencollective",
            "url": "https://opencollective.com/typescript-eslint"
          }
        },
        "node_modules/@typescript-eslint/typescript-estree": {
          "version": "5.59.8",
          "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.8.tgz",
          "integrity": "sha512-Jy/lPSDJGNow14vYu6IrW790p7HIf/SOV1Bb6lZ7NUkLc2iB2Z9elESmsaUtLw8kVqogSbtLH9tut5GCX1RLDg==",
          "dependencies": {
            "@typescript-eslint/types": "5.59.8",
            "@typescript-eslint/visitor-keys": "5.59.8",
            "debug": "^4.3.4",
            "globby": "^11.1.0",
            "is-glob": "^4.0.3",
            "semver": "^7.3.7",
            "tsutils": "^3.21.0"
          },
          "engines": {
            "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
          },
          "funding": {
            "type": "opencollective",
            "url": "https://opencollective.com/typescript-eslint"
          },
          "peerDependenciesMeta": {
            "typescript": {
              "optional": true
            }
          }
        },
        "node_modules/@typescript-eslint/visitor-keys": {
          "version": "5.59.8",
          "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.8.tgz",
          "integrity": "sha512-pJhi2ms0x0xgloT7xYabil3SGGlojNNKjK/q6dB3Ey0uJLMjK2UDGJvHieiyJVW/7C3KI+Z4Q3pEHkm4ejA+xQ==",
          "dependencies": {
            "@typescript-eslint/types": "5.59.8",
            "eslint-visitor-keys": "^3.3.0"
          },
          "engines": {
            "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
          },
          "funding": {
            "type": "opencollective",
            "url": "https://opencollective.com/typescript-eslint"
          }
        },
        "node_modules/acorn": {
          "version": "8.8.2",
          "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
          "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
          "bin": {
            "acorn": "bin/acorn"
          },
          "engines": {
            "node": ">=0.4.0"
          }
        },
        "node_modules/acorn-jsx": {
          "version": "5.3.2",
          "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
          "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
          "peerDependencies": {
            "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
          }
        },
        "node_modules/ajv": {
          "version": "6.12.6",
          "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
          "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
          "dependencies": {
            "fast-deep-equal": "^3.1.1",
            "fast-json-stable-stringify": "^2.0.0",
            "json-schema-traverse": "^0.4.1",
            "uri-js": "^4.2.2"
          },
          "funding": {
            "type": "github",
            "url": "https://github.com/sponsors/epoberezkin"
          }
        },
        "node_modules/ansi-regex": {
          "version": "5.0.1",
          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
          "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
          "engines": {
            "node": ">=8"
          }
        },
        "node_modules/ansi-styles": {
          "version": "4.3.0",
          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
          "dependencies": {
            "color-convert": "^2.0.1"
          },
          "engines": {
            "node": ">=8"
          },
          "funding": {
            "url": "https://github.com/chalk/ansi-styles?sponsor=1"
          }
        },
        "node_modules/argparse": {
          "version": "2.0.1",
          "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
          "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
        },
        "node_modules/aria-query": {
          "version": "5.1.3",
          "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz",
          "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==",
          "dependencies": {
            "deep-equal": "^2.0.5"
          }
        },
        "node_modules/array-buffer-byte-length": {
          "version": "1.0.0",
          "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz",
          "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==",
          "dependencies": {
            "call-bind": "^1.0.2",
            "is-array-buffer": "^3.0.1"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/array-includes": {
          "version": "3.1.6",
          "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz",
          "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==",
          "dependencies": {
            "call-bind": "^1.0.2",
            "define-properties": "^1.1.4",
            "es-abstract": "^1.20.4",
            "get-intrinsic": "^1.1.3",
            "is-string": "^1.0.7"
          },
          "engines": {
            "node": ">= 0.4"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/array-union": {
          "version": "2.1.0",
          "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
          "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
          "engines": {
            "node": ">=8"
          }
        },
        "node_modules/array.prototype.flat": {
          "version": "1.3.1",
          "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz",
          "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==",
          "dependencies": {
            "call-bind": "^1.0.2",
            "define-properties": "^1.1.4",
            "es-abstract": "^1.20.4",
            "es-shim-unscopables": "^1.0.0"
          },
          "engines": {
            "node": ">= 0.4"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/array.prototype.flatmap": {
          "version": "1.3.1",
          "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz",
          "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==",
          "dependencies": {
            "call-bind": "^1.0.2",
            "define-properties": "^1.1.4",
            "es-abstract": "^1.20.4",
            "es-shim-unscopables": "^1.0.0"
          },
          "engines": {
            "node": ">= 0.4"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/array.prototype.tosorted": {
          "version": "1.1.1",
          "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz",
          "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==",
          "dependencies": {
            "call-bind": "^1.0.2",
            "define-properties": "^1.1.4",
            "es-abstract": "^1.20.4",
            "es-shim-unscopables": "^1.0.0",
            "get-intrinsic": "^1.1.3"
          }
        },
        "node_modules/ast-types-flow": {
          "version": "0.0.7",
          "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
          "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag=="
        },
        "node_modules/available-typed-arrays": {
          "version": "1.0.5",
          "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz",
          "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==",
          "engines": {
            "node": ">= 0.4"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/axe-core": {
          "version": "4.7.2",
          "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz",
          "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==",
          "engines": {
            "node": ">=4"
          }
        },
        "node_modules/axobject-query": {
          "version": "3.1.1",
          "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz",
          "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==",
          "dependencies": {
            "deep-equal": "^2.0.5"
          }
        },
        "node_modules/balanced-match": {
          "version": "1.0.2",
          "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
          "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
        },
        "node_modules/big-integer": {
          "version": "1.6.51",
          "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz",
          "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==",
          "engines": {
            "node": ">=0.6"
          }
        },
        "node_modules/bplist-parser": {
          "version": "0.2.0",
          "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz",
          "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==",
          "dependencies": {
            "big-integer": "^1.6.44"
          },
          "engines": {
            "node": ">= 5.10.0"
          }
        },
        "node_modules/brace-expansion": {
          "version": "1.1.11",
          "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
          "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
          "dependencies": {
            "balanced-match": "^1.0.0",
            "concat-map": "0.0.1"
          }
        },
        "node_modules/braces": {
          "version": "3.0.2",
          "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
          "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
          "dependencies": {
            "fill-range": "^7.0.1"
          },
          "engines": {
            "node": ">=8"
          }
        },
        "node_modules/bundle-name": {
          "version": "3.0.0",
          "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz",
          "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==",
          "dependencies": {
            "run-applescript": "^5.0.0"
          },
          "engines": {
            "node": ">=12"
          },
          "funding": {
            "url": "https://github.com/sponsors/sindresorhus"
          }
        },
        "node_modules/busboy": {
          "version": "1.6.0",
          "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz",
          "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
          "dependencies": {
            "streamsearch": "^1.1.0"
          },
          "engines": {
            "node": ">=10.16.0"
          }
        },
        "node_modules/call-bind": {
          "version": "1.0.2",
          "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
          "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
          "dependencies": {
            "function-bind": "^1.1.1",
            "get-intrinsic": "^1.0.2"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/callsites": {
          "version": "3.1.0",
          "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
          "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
          "engines": {
            "node": ">=6"
          }
        },
        "node_modules/caniuse-lite": {
          "version": "1.0.30001491",
          "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001491.tgz",
          "integrity": "sha512-17EYIi4TLnPiTzVKMveIxU5ETlxbSO3B6iPvMbprqnKh4qJsQGk5Nh1Lp4jIMAE0XfrujsJuWZAM3oJdMHaKBA==",
          "funding": [
            {
              "type": "opencollective",
              "url": "https://opencollective.com/browserslist"
            },
            {
              "type": "tidelift",
              "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
            },
            {
              "type": "github",
              "url": "https://github.com/sponsors/ai"
            }
          ]
        },
        "node_modules/chalk": {
          "version": "4.1.2",
          "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
          "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
          "dependencies": {
            "ansi-styles": "^4.1.0",
            "supports-color": "^7.1.0"
          },
          "engines": {
            "node": ">=10"
          },
          "funding": {
            "url": "https://github.com/chalk/chalk?sponsor=1"
          }
        },
        "node_modules/client-only": {
          "version": "0.0.1",
          "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
          "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="
        },
        "node_modules/color-convert": {
          "version": "2.0.1",
          "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
          "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
          "dependencies": {
            "color-name": "~1.1.4"
          },
          "engines": {
            "node": ">=7.0.0"
          }
        },
        "node_modules/color-name": {
          "version": "1.1.4",
          "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
          "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
        },
        "node_modules/concat-map": {
          "version": "0.0.1",
          "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
          "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
        },
        "node_modules/cross-spawn": {
          "version": "7.0.3",
          "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
          "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
          "dependencies": {
            "path-key": "^3.1.0",
            "shebang-command": "^2.0.0",
            "which": "^2.0.1"
          },
          "engines": {
            "node": ">= 8"
          }
        },
        "node_modules/damerau-levenshtein": {
          "version": "1.0.8",
          "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
          "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA=="
        },
        "node_modules/debug": {
          "version": "4.3.4",
          "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
          "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
          "dependencies": {
            "ms": "2.1.2"
          },
          "engines": {
            "node": ">=6.0"
          },
          "peerDependenciesMeta": {
            "supports-color": {
              "optional": true
            }
          }
        },
        "node_modules/deep-equal": {
          "version": "2.2.1",
          "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz",
          "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==",
          "dependencies": {
            "array-buffer-byte-length": "^1.0.0",
            "call-bind": "^1.0.2",
            "es-get-iterator": "^1.1.3",
            "get-intrinsic": "^1.2.0",
            "is-arguments": "^1.1.1",
            "is-array-buffer": "^3.0.2",
            "is-date-object": "^1.0.5",
            "is-regex": "^1.1.4",
            "is-shared-array-buffer": "^1.0.2",
            "isarray": "^2.0.5",
            "object-is": "^1.1.5",
            "object-keys": "^1.1.1",
            "object.assign": "^4.1.4",
            "regexp.prototype.flags": "^1.5.0",
            "side-channel": "^1.0.4",
            "which-boxed-primitive": "^1.0.2",
            "which-collection": "^1.0.1",
            "which-typed-array": "^1.1.9"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/deep-is": {
          "version": "0.1.4",
          "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
          "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="
        },
        "node_modules/default-browser": {
          "version": "4.0.0",
          "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz",
          "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==",
          "dependencies": {
            "bundle-name": "^3.0.0",
            "default-browser-id": "^3.0.0",
            "execa": "^7.1.1",
            "titleize": "^3.0.0"
          },
          "engines": {
            "node": ">=14.16"
          },
          "funding": {
            "url": "https://github.com/sponsors/sindresorhus"
          }
        },
        "node_modules/default-browser-id": {
          "version": "3.0.0",
          "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz",
          "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==",
          "dependencies": {
            "bplist-parser": "^0.2.0",
            "untildify": "^4.0.0"
          },
          "engines": {
            "node": ">=12"
          },
          "funding": {
            "url": "https://github.com/sponsors/sindresorhus"
          }
        },
        "node_modules/define-lazy-prop": {
          "version": "3.0.0",
          "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz",
          "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==",
          "engines": {
            "node": ">=12"
          },
          "funding": {
            "url": "https://github.com/sponsors/sindresorhus"
          }
        },
        "node_modules/define-properties": {
          "version": "1.2.0",
          "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz",
          "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==",
          "dependencies": {
            "has-property-descriptors": "^1.0.0",
            "object-keys": "^1.1.1"
          },
          "engines": {
            "node": ">= 0.4"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/dir-glob": {
          "version": "3.0.1",
          "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
          "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
          "dependencies": {
            "path-type": "^4.0.0"
          },
          "engines": {
            "node": ">=8"
          }
        },
        "node_modules/doctrine": {
          "version": "3.0.0",
          "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
          "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
          "dependencies": {
            "esutils": "^2.0.2"
          },
          "engines": {
            "node": ">=6.0.0"
          }
        },
        "node_modules/emoji-regex": {
          "version": "9.2.2",
          "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
          "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
        },
        "node_modules/enhanced-resolve": {
          "version": "5.14.1",
          "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.1.tgz",
          "integrity": "sha512-Vklwq2vDKtl0y/vtwjSesgJ5MYS7Etuk5txS8VdKL4AOS1aUlD96zqIfsOSLQsdv3xgMRbtkWM8eG9XDfKUPow==",
          "dependencies": {
            "graceful-fs": "^4.2.4",
            "tapable": "^2.2.0"
          },
          "engines": {
            "node": ">=10.13.0"
          }
        },
        "node_modules/es-abstract": {
          "version": "1.21.2",
          "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz",
          "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==",
          "dependencies": {
            "array-buffer-byte-length": "^1.0.0",
            "available-typed-arrays": "^1.0.5",
            "call-bind": "^1.0.2",
            "es-set-tostringtag": "^2.0.1",
            "es-to-primitive": "^1.2.1",
            "function.prototype.name": "^1.1.5",
            "get-intrinsic": "^1.2.0",
            "get-symbol-description": "^1.0.0",
            "globalthis": "^1.0.3",
            "gopd": "^1.0.1",
            "has": "^1.0.3",
            "has-property-descriptors": "^1.0.0",
            "has-proto": "^1.0.1",
            "has-symbols": "^1.0.3",
            "internal-slot": "^1.0.5",
            "is-array-buffer": "^3.0.2",
            "is-callable": "^1.2.7",
            "is-negative-zero": "^2.0.2",
            "is-regex": "^1.1.4",
            "is-shared-array-buffer": "^1.0.2",
            "is-string": "^1.0.7",
            "is-typed-array": "^1.1.10",
            "is-weakref": "^1.0.2",
            "object-inspect": "^1.12.3",
            "object-keys": "^1.1.1",
            "object.assign": "^4.1.4",
            "regexp.prototype.flags": "^1.4.3",
            "safe-regex-test": "^1.0.0",
            "string.prototype.trim": "^1.2.7",
            "string.prototype.trimend": "^1.0.6",
            "string.prototype.trimstart": "^1.0.6",
            "typed-array-length": "^1.0.4",
            "unbox-primitive": "^1.0.2",
            "which-typed-array": "^1.1.9"
          },
          "engines": {
            "node": ">= 0.4"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/es-get-iterator": {
          "version": "1.1.3",
          "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz",
          "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==",
          "dependencies": {
            "call-bind": "^1.0.2",
            "get-intrinsic": "^1.1.3",
            "has-symbols": "^1.0.3",
            "is-arguments": "^1.1.1",
            "is-map": "^2.0.2",
            "is-set": "^2.0.2",
            "is-string": "^1.0.7",
            "isarray": "^2.0.5",
            "stop-iteration-iterator": "^1.0.0"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/es-set-tostringtag": {
          "version": "2.0.1",
          "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz",
          "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==",
          "dependencies": {
            "get-intrinsic": "^1.1.3",
            "has": "^1.0.3",
            "has-tostringtag": "^1.0.0"
          },
          "engines": {
            "node": ">= 0.4"
          }
        },