Openstatus www.openstatus.dev

๐Ÿ› bug cache (#871)

* ๐Ÿ› bug cache

* ๐Ÿ›

authored by

Thibault Le Ouay and committed by
GitHub
256487ec 1ccf3791

+31 -2845
+2
apps/web/src/app/app/[workspaceSlug]/(dashboard)/monitors/(overview)/layout.tsx
··· 6 6 import AppPageLayout from "@/components/layout/app-page-layout"; 7 7 import { api } from "@/trpc/server"; 8 8 9 + export const revalidate = 0; // revalidate the data at most every hour 10 + 9 11 export default async function Layout({ children }: { children: ReactNode }) { 10 12 const isLimitReached = await api.monitor.isMonitorLimitReached.query(); 11 13
+1
apps/web/src/app/app/[workspaceSlug]/(dashboard)/monitors/(overview)/page.tsx
··· 15 15 const tb = new OSTinybird({ token: env.TINY_BIRD_API_KEY }); 16 16 17 17 export const dynamic = "force-dynamic"; 18 + export const revalidate = 0; 18 19 19 20 /** 20 21 * allowed URL search params
+2
apps/web/src/app/app/[workspaceSlug]/(dashboard)/monitors/[id]/layout.tsx
··· 8 8 import { TagBadgeWithTooltip } from "@/components/monitor/tag-badge-with-tooltip"; 9 9 import { api } from "@/trpc/server"; 10 10 11 + export const revalidate = 0; // revalidate the data at most every hour 12 + 11 13 export default async function Layout({ 12 14 children, 13 15 params,
+20 -15
packages/tinybird/src/os-client.ts
··· 72 72 }) 73 73 .merge(latencySchema), 74 74 opts: { 75 - next: { 76 - revalidate: DEFAULT_CACHE, 77 - }, 75 + cache: "no-store", 76 + // next: { 77 + // revalidate: DEFAULT_CACHE, 78 + // }, 78 79 }, 79 80 })(props); 80 81 return res.data; ··· 96 97 parameters, 97 98 data: z.object({ timestamp: z.number().int() }).merge(latencySchema), 98 99 opts: { 99 - next: { 100 - revalidate: DEFAULT_CACHE, 101 - }, 100 + cache: "no-store", 101 + // next: { 102 + // revalidate: DEFAULT_CACHE, 103 + // }, 102 104 }, 103 105 })(props); 104 106 return res.data; ··· 161 163 }) 162 164 .merge(latencySchema), 163 165 opts: { 164 - next: { 165 - revalidate: DEFAULT_CACHE, 166 - }, 166 + cache: "no-store", 167 + // next: { 168 + // revalidate: DEFAULT_CACHE, 169 + // }, 167 170 }, 168 171 })(props); 169 172 return res.data; ··· 238 241 assertions: z.string().nullable().optional(), 239 242 }), 240 243 opts: { 241 - next: { 242 - revalidate: DEFAULT_CACHE, 243 - }, 244 + cache: "no-store", 245 + // next: { 246 + // revalidate: DEFAULT_CACHE, 247 + // }, 244 248 }, 245 249 })(props); 246 250 return res.data; ··· 323 327 assertions: z.string().nullable().optional(), // REMINDER: maybe include Assertions.serialize here 324 328 }), 325 329 opts: { 326 - next: { 327 - revalidate: MAX_CACHE, 328 - }, 330 + cache: "no-store", 331 + // next: { 332 + // revalidate: MAX_CACHE, 333 + // }, 329 334 }, 330 335 })(props); 331 336 return res.data;
+6 -2830
pnpm-lock.yaml
··· 707 707 specifier: 5.4.5 708 708 version: 5.4.5 709 709 710 - packages/emails/.react-email: 711 - dependencies: 712 - '@radix-ui/colors': 713 - specifier: 0.1.8 714 - version: 0.1.8 715 - '@radix-ui/react-collapsible': 716 - specifier: 1.0.1 717 - version: 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 718 - '@radix-ui/react-popover': 719 - specifier: 1.0.2 720 - version: 1.0.2(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 721 - '@radix-ui/react-slot': 722 - specifier: 1.0.1 723 - version: 1.0.1(react@18.2.0) 724 - '@radix-ui/react-toggle-group': 725 - specifier: 1.0.1 726 - version: 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 727 - '@radix-ui/react-tooltip': 728 - specifier: 1.0.2 729 - version: 1.0.2(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 730 - '@react-email/button': 731 - specifier: 0.0.10 732 - version: 0.0.10 733 - '@react-email/components': 734 - specifier: 0.0.7 735 - version: 0.0.7(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3)) 736 - '@react-email/head': 737 - specifier: 0.0.5 738 - version: 0.0.5 739 - '@react-email/html': 740 - specifier: 0.0.4 741 - version: 0.0.4 742 - '@react-email/render': 743 - specifier: 0.0.7 744 - version: 0.0.7 745 - '@react-email/tailwind': 746 - specifier: 0.0.9 747 - version: 0.0.9(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3)) 748 - '@t3-oss/env-core': 749 - specifier: 0.7.0 750 - version: 0.7.0(typescript@4.9.3)(zod@3.22.4) 751 - classnames: 752 - specifier: 2.3.2 753 - version: 2.3.2 754 - framer-motion: 755 - specifier: 8.4.6 756 - version: 8.4.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 757 - next: 758 - specifier: 13.2.4 759 - version: 13.2.4(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 760 - prism-react-renderer: 761 - specifier: 1.3.5 762 - version: 1.3.5(react@18.2.0) 763 - react: 764 - specifier: 18.2.0 765 - version: 18.2.0 766 - react-dom: 767 - specifier: 18.2.0 768 - version: 18.2.0(react@18.2.0) 769 - react-email: 770 - specifier: 1.10.0 771 - version: 1.10.0(encoding@0.1.13) 772 - resend: 773 - specifier: 2.0.0 774 - version: 2.0.0 775 - zod: 776 - specifier: 3.22.4 777 - version: 3.22.4 778 - devDependencies: 779 - '@types/classnames': 780 - specifier: 2.3.1 781 - version: 2.3.1 782 - '@types/node': 783 - specifier: 18.11.9 784 - version: 18.11.9 785 - '@types/react': 786 - specifier: 18.0.25 787 - version: 18.0.25 788 - '@types/react-dom': 789 - specifier: 18.0.9 790 - version: 18.0.9 791 - autoprefixer: 792 - specifier: 10.4.13 793 - version: 10.4.13(postcss@8.4.19) 794 - eslint: 795 - specifier: 8.36.0 796 - version: 8.36.0 797 - eslint-config-next: 798 - specifier: 13.2.4 799 - version: 13.2.4(eslint@8.36.0)(typescript@4.9.3) 800 - eslint-config-prettier: 801 - specifier: 8.7.0 802 - version: 8.7.0(eslint@8.36.0) 803 - eslint-plugin-simple-import-sort: 804 - specifier: 10.0.0 805 - version: 10.0.0(eslint@8.36.0) 806 - eslint-plugin-unused-imports: 807 - specifier: 2.0.0 808 - version: 2.0.0(eslint@8.36.0) 809 - postcss: 810 - specifier: 8.4.19 811 - version: 8.4.19 812 - prettier: 813 - specifier: 2.8.4 814 - version: 2.8.4 815 - tailwindcss: 816 - specifier: 3.2.4 817 - version: 3.2.4(postcss@8.4.19)(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3)) 818 - typescript: 819 - specifier: 4.9.3 820 - version: 4.9.3 821 - 822 710 packages/error: 823 711 dependencies: 824 712 zod: ··· 879 767 version: link:../../tinybird 880 768 '@react-email/components': 881 769 specifier: 0.0.7 882 - version: 0.0.7 770 + version: 0.0.7(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.4.5)) 883 771 '@react-email/render': 884 772 specifier: 0.0.7 885 773 version: 0.0.7 ··· 907 795 version: 18.2.21 908 796 next: 909 797 specifier: 14.2.3 910 - version: 14.2.3(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 798 + version: 14.2.3(@opentelemetry/api@1.8.0)(react-dom@18.3.1(react@18.2.0))(react@18.2.0) 911 799 typescript: 912 800 specifier: 5.4.5 913 801 version: 5.4.5 ··· 1725 1613 '@effect-ts/system@0.57.5': 1726 1614 resolution: {integrity: sha512-/crHGujo0xnuHIYNc1VgP0HGJGFSoSqq88JFXe6FmFyXPpWt8Xu39LyLg7rchsxfXFeEdA9CrIZvLV5eswXV5g==} 1727 1615 1728 - '@emotion/is-prop-valid@0.8.8': 1729 - resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} 1730 - 1731 - '@emotion/memoize@0.7.4': 1732 - resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} 1733 - 1734 1616 '@ericcornelissen/bash-parser@0.5.2': 1735 1617 resolution: {integrity: sha512-4pIMTa1nEFfMXitv7oaNEWOdM+zpOZavesa5GaiWTgda6Zk32CFGxjUp/iIaN0PwgUW1yTq/fztSjbpE8SLGZQ==} 1736 1618 engines: {node: '>=4'} ··· 2428 2310 cpu: [x64] 2429 2311 os: [win32] 2430 2312 2431 - '@eslint-community/eslint-utils@4.4.0': 2432 - resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 2433 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2434 - peerDependencies: 2435 - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 2436 - 2437 - '@eslint-community/regexpp@4.10.0': 2438 - resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} 2439 - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 2440 - 2441 - '@eslint/eslintrc@2.1.4': 2442 - resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} 2443 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2444 - 2445 - '@eslint/js@8.36.0': 2446 - resolution: {integrity: sha512-lxJ9R5ygVm8ZWgYdUweoq5ownDlJ4upvoWmO4eLxBYHdMo+vZ/Rx0EN6MbKWDJOSUGrqJy2Gt+Dyv/VKml0fjg==} 2447 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2448 - 2449 2313 '@fal-works/esbuild-plugin-global-externals@2.1.2': 2450 2314 resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} 2451 2315 2452 2316 '@fastify/busboy@2.1.1': 2453 2317 resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==} 2454 2318 engines: {node: '>=14'} 2455 - 2456 - '@floating-ui/core@0.7.3': 2457 - resolution: {integrity: sha512-buc8BXHmG9l82+OQXOFU3Kr2XQx9ys01U/Q9HMIrZ300iLc8HLMgh7dcCqgYzAzf4BkoQvDcXf5Y+CuEZ5JBYg==} 2458 2319 2459 2320 '@floating-ui/core@1.5.0': 2460 2321 resolution: {integrity: sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==} 2461 2322 2462 - '@floating-ui/dom@0.5.4': 2463 - resolution: {integrity: sha512-419BMceRLq0RrmTSDxn8hf9R3VCJv2K9PUfugh5JyEFmdjzDo+e8U5EdR8nzKq8Yj1htzLm3b6eQEEam3/rrtg==} 2464 - 2465 2323 '@floating-ui/dom@1.5.3': 2466 2324 resolution: {integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==} 2467 - 2468 - '@floating-ui/react-dom@0.7.2': 2469 - resolution: {integrity: sha512-1T0sJcpHgX/u4I1OzIEhlcrvkUN8ln39nz7fMoE/2HDHrPiMFoOGR7++GYyfUmIQHkkrTinaeQsO3XWubjSvGg==} 2470 - peerDependencies: 2471 - react: '>=16.8.0' 2472 - react-dom: '>=16.8.0' 2473 2325 2474 2326 '@floating-ui/react-dom@1.3.0': 2475 2327 resolution: {integrity: sha512-htwHm67Ji5E/pROEAr7f8IKFShuiCKHwUC/UY4vC3I5jiSvGFAYnSYiZO5MlGmads+QqvUkR9ANHEguGrDv72g==} ··· 2553 2405 peerDependencies: 2554 2406 react-hook-form: ^7.0.0 2555 2407 2556 - '@humanwhocodes/config-array@0.11.14': 2557 - resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} 2558 - engines: {node: '>=10.10.0'} 2559 - 2560 - '@humanwhocodes/module-importer@1.0.1': 2561 - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 2562 - engines: {node: '>=12.22'} 2563 - 2564 - '@humanwhocodes/object-schema@2.0.3': 2565 - resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} 2566 - 2567 2408 '@isaacs/cliui@8.0.2': 2568 2409 resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 2569 2410 engines: {node: '>=12'} ··· 2682 2523 '@mdx-js/mdx@2.3.0': 2683 2524 resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==} 2684 2525 2685 - '@motionone/animation@10.17.0': 2686 - resolution: {integrity: sha512-ANfIN9+iq1kGgsZxs+Nz96uiNcPLGTXwfNo2Xz/fcJXniPYpaz/Uyrfa+7I5BPLxCP82sh7quVDudf1GABqHbg==} 2687 - 2688 - '@motionone/dom@10.17.0': 2689 - resolution: {integrity: sha512-cMm33swRlCX/qOPHWGbIlCl0K9Uwi6X5RiL8Ma6OrlJ/TP7Q+Np5GE4xcZkFptysFjMTi4zcZzpnNQGQ5D6M0Q==} 2690 - 2691 - '@motionone/easing@10.17.0': 2692 - resolution: {integrity: sha512-Bxe2wSuLu/qxqW4rBFS5m9tMLOw+QBh8v5A7Z5k4Ul4sTj5jAOfZG5R0bn5ywmk+Fs92Ij1feZ5pmC4TeXA8Tg==} 2693 - 2694 - '@motionone/generators@10.17.0': 2695 - resolution: {integrity: sha512-T6Uo5bDHrZWhIfxG/2Aut7qyWQyJIWehk6OB4qNvr/jwA/SRmixwbd7SOrxZi1z5rH3LIeFFBKK1xHnSbGPZSQ==} 2696 - 2697 - '@motionone/types@10.17.0': 2698 - resolution: {integrity: sha512-EgeeqOZVdRUTEHq95Z3t8Rsirc7chN5xFAPMYFobx8TPubkEfRSm5xihmMUkbaR2ErKJTUw3347QDPTHIW12IA==} 2699 - 2700 - '@motionone/utils@10.17.0': 2701 - resolution: {integrity: sha512-bGwrki4896apMWIj9yp5rAS2m0xyhxblg6gTB/leWDPt+pb410W8lYWsxyurX+DH+gO1zsQsfx2su/c1/LtTpg==} 2702 - 2703 2526 '@neon-rs/load@0.0.4': 2704 2527 resolution: {integrity: sha512-kTPhdZyTQxB+2wpiRcFWrDcejc4JI6tkPuS7UZCG4l6Zvc5kU/gGQ/ozvHTh1XR5tS+UlfAfGuPajjzQjCiHCw==} 2705 - 2706 - '@next/env@13.2.4': 2707 - resolution: {integrity: sha512-+Mq3TtpkeeKFZanPturjcXt+KHfKYnLlX6jMLyCrmpq6OOs4i1GqBOAauSkii9QeKCMTYzGppar21JU57b/GEA==} 2708 2528 2709 2529 '@next/env@14.2.3': 2710 2530 resolution: {integrity: sha512-W7fd7IbkfmeeY2gXrzJYDx8D2lWKbVoTIj1o1ScPHNzvp30s1AuoEFSdr39bC5sjxJaxTtq3OTCZboNp0lNWHA==} 2711 2531 2712 - '@next/eslint-plugin-next@13.2.4': 2713 - resolution: {integrity: sha512-ck1lI+7r1mMJpqLNa3LJ5pxCfOB1lfJncKmRJeJxcJqcngaFwylreLP7da6Rrjr6u2gVRTfmnkSkjc80IiQCwQ==} 2714 - 2715 - '@next/swc-android-arm-eabi@13.2.4': 2716 - resolution: {integrity: sha512-DWlalTSkLjDU11MY11jg17O1gGQzpRccM9Oes2yTqj2DpHndajrXHGxj9HGtJ+idq2k7ImUdJVWS2h2l/EDJOw==} 2717 - engines: {node: '>= 10'} 2718 - cpu: [arm] 2719 - os: [android] 2720 - 2721 - '@next/swc-android-arm64@13.2.4': 2722 - resolution: {integrity: sha512-sRavmUImUCf332Gy+PjIfLkMhiRX1Ez4SI+3vFDRs1N5eXp+uNzjFUK/oLMMOzk6KFSkbiK/3Wt8+dHQR/flNg==} 2723 - engines: {node: '>= 10'} 2724 - cpu: [arm64] 2725 - os: [android] 2726 - 2727 - '@next/swc-darwin-arm64@13.2.4': 2728 - resolution: {integrity: sha512-S6vBl+OrInP47TM3LlYx65betocKUUlTZDDKzTiRDbsRESeyIkBtZ6Qi5uT2zQs4imqllJznVjFd1bXLx3Aa6A==} 2729 - engines: {node: '>= 10'} 2730 - cpu: [arm64] 2731 - os: [darwin] 2732 - 2733 2532 '@next/swc-darwin-arm64@14.2.3': 2734 2533 resolution: {integrity: sha512-3pEYo/RaGqPP0YzwnlmPN2puaF2WMLM3apt5jLW2fFdXD9+pqcoTzRk+iZsf8ta7+quAe4Q6Ms0nR0SFGFdS1A==} 2735 2534 engines: {node: '>= 10'} 2736 2535 cpu: [arm64] 2737 - os: [darwin] 2738 - 2739 - '@next/swc-darwin-x64@13.2.4': 2740 - resolution: {integrity: sha512-a6LBuoYGcFOPGd4o8TPo7wmv5FnMr+Prz+vYHopEDuhDoMSHOnC+v+Ab4D7F0NMZkvQjEJQdJS3rqgFhlZmKlw==} 2741 - engines: {node: '>= 10'} 2742 - cpu: [x64] 2743 2536 os: [darwin] 2744 2537 2745 2538 '@next/swc-darwin-x64@14.2.3': ··· 2748 2541 cpu: [x64] 2749 2542 os: [darwin] 2750 2543 2751 - '@next/swc-freebsd-x64@13.2.4': 2752 - resolution: {integrity: sha512-kkbzKVZGPaXRBPisoAQkh3xh22r+TD+5HwoC5bOkALraJ0dsOQgSMAvzMXKsN3tMzJUPS0tjtRf1cTzrQ0I5vQ==} 2753 - engines: {node: '>= 10'} 2754 - cpu: [x64] 2755 - os: [freebsd] 2756 - 2757 - '@next/swc-linux-arm-gnueabihf@13.2.4': 2758 - resolution: {integrity: sha512-7qA1++UY0fjprqtjBZaOA6cas/7GekpjVsZn/0uHvquuITFCdKGFCsKNBx3S0Rpxmx6WYo0GcmhNRM9ru08BGg==} 2759 - engines: {node: '>= 10'} 2760 - cpu: [arm] 2761 - os: [linux] 2762 - 2763 - '@next/swc-linux-arm64-gnu@13.2.4': 2764 - resolution: {integrity: sha512-xzYZdAeq883MwXgcwc72hqo/F/dwUxCukpDOkx/j1HTq/J0wJthMGjinN9wH5bPR98Mfeh1MZJ91WWPnZOedOg==} 2765 - engines: {node: '>= 10'} 2766 - cpu: [arm64] 2767 - os: [linux] 2768 - 2769 2544 '@next/swc-linux-arm64-gnu@14.2.3': 2770 2545 resolution: {integrity: sha512-cuzCE/1G0ZSnTAHJPUT1rPgQx1w5tzSX7POXSLaS7w2nIUJUD+e25QoXD/hMfxbsT9rslEXugWypJMILBj/QsA==} 2771 2546 engines: {node: '>= 10'} 2772 2547 cpu: [arm64] 2773 2548 os: [linux] 2774 2549 2775 - '@next/swc-linux-arm64-musl@13.2.4': 2776 - resolution: {integrity: sha512-8rXr3WfmqSiYkb71qzuDP6I6R2T2tpkmf83elDN8z783N9nvTJf2E7eLx86wu2OJCi4T05nuxCsh4IOU3LQ5xw==} 2777 - engines: {node: '>= 10'} 2778 - cpu: [arm64] 2779 - os: [linux] 2780 - 2781 2550 '@next/swc-linux-arm64-musl@14.2.3': 2782 2551 resolution: {integrity: sha512-0D4/oMM2Y9Ta3nGuCcQN8jjJjmDPYpHX9OJzqk42NZGJocU2MqhBq5tWkJrUQOQY9N+In9xOdymzapM09GeiZw==} 2783 2552 engines: {node: '>= 10'} 2784 2553 cpu: [arm64] 2785 2554 os: [linux] 2786 2555 2787 - '@next/swc-linux-x64-gnu@13.2.4': 2788 - resolution: {integrity: sha512-Ngxh51zGSlYJ4EfpKG4LI6WfquulNdtmHg1yuOYlaAr33KyPJp4HeN/tivBnAHcZkoNy0hh/SbwDyCnz5PFJQQ==} 2789 - engines: {node: '>= 10'} 2790 - cpu: [x64] 2791 - os: [linux] 2792 - 2793 2556 '@next/swc-linux-x64-gnu@14.2.3': 2794 2557 resolution: {integrity: sha512-ENPiNnBNDInBLyUU5ii8PMQh+4XLr4pG51tOp6aJ9xqFQ2iRI6IH0Ds2yJkAzNV1CfyagcyzPfROMViS2wOZ9w==} 2795 2558 engines: {node: '>= 10'} 2796 2559 cpu: [x64] 2797 2560 os: [linux] 2798 2561 2799 - '@next/swc-linux-x64-musl@13.2.4': 2800 - resolution: {integrity: sha512-gOvwIYoSxd+j14LOcvJr+ekd9fwYT1RyMAHOp7znA10+l40wkFiMONPLWiZuHxfRk+Dy7YdNdDh3ImumvL6VwA==} 2801 - engines: {node: '>= 10'} 2802 - cpu: [x64] 2803 - os: [linux] 2804 - 2805 2562 '@next/swc-linux-x64-musl@14.2.3': 2806 2563 resolution: {integrity: sha512-BTAbq0LnCbF5MtoM7I/9UeUu/8ZBY0i8SFjUMCbPDOLv+un67e2JgyN4pmgfXBwy/I+RHu8q+k+MCkDN6P9ViQ==} 2807 2564 engines: {node: '>= 10'} 2808 2565 cpu: [x64] 2809 2566 os: [linux] 2810 2567 2811 - '@next/swc-win32-arm64-msvc@13.2.4': 2812 - resolution: {integrity: sha512-q3NJzcfClgBm4HvdcnoEncmztxrA5GXqKeiZ/hADvC56pwNALt3ngDC6t6qr1YW9V/EPDxCYeaX4zYxHciW4Dw==} 2813 - engines: {node: '>= 10'} 2814 - cpu: [arm64] 2815 - os: [win32] 2816 - 2817 2568 '@next/swc-win32-arm64-msvc@14.2.3': 2818 2569 resolution: {integrity: sha512-AEHIw/dhAMLNFJFJIJIyOFDzrzI5bAjI9J26gbO5xhAKHYTZ9Or04BesFPXiAYXDNdrwTP2dQceYA4dL1geu8A==} 2819 2570 engines: {node: '>= 10'} 2820 2571 cpu: [arm64] 2821 2572 os: [win32] 2822 2573 2823 - '@next/swc-win32-ia32-msvc@13.2.4': 2824 - resolution: {integrity: sha512-/eZ5ncmHUYtD2fc6EUmAIZlAJnVT2YmxDsKs1Ourx0ttTtvtma/WKlMV5NoUsyOez0f9ExLyOpeCoz5aj+MPXw==} 2825 - engines: {node: '>= 10'} 2826 - cpu: [ia32] 2827 - os: [win32] 2828 - 2829 2574 '@next/swc-win32-ia32-msvc@14.2.3': 2830 2575 resolution: {integrity: sha512-vga40n1q6aYb0CLrM+eEmisfKCR45ixQYXuBXxOOmmoV8sYST9k7E3US32FsY+CkkF7NtzdcebiFT4CHuMSyZw==} 2831 2576 engines: {node: '>= 10'} 2832 2577 cpu: [ia32] 2833 - os: [win32] 2834 - 2835 - '@next/swc-win32-x64-msvc@13.2.4': 2836 - resolution: {integrity: sha512-0MffFmyv7tBLlji01qc0IaPP/LVExzvj7/R5x1Jph1bTAIj4Vu81yFQWHHQAP6r4ff9Ukj1mBK6MDNVXm7Tcvw==} 2837 - engines: {node: '>= 10'} 2838 - cpu: [x64] 2839 2578 os: [win32] 2840 2579 2841 2580 '@next/swc-win32-x64-msvc@14.2.3': ··· 3066 2805 '@protobufjs/utf8@1.1.0': 3067 2806 resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} 3068 2807 3069 - '@radix-ui/colors@0.1.8': 3070 - resolution: {integrity: sha512-jwRMXYwC0hUo0mv6wGpuw254Pd9p/R6Td5xsRpOmaWkUHlooNWqVcadgyzlRumMq3xfOTXwJReU0Jv+EIy4Jbw==} 3071 - 3072 2808 '@radix-ui/number@1.0.1': 3073 2809 resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==} 3074 2810 ··· 3104 2840 '@types/react-dom': 3105 2841 optional: true 3106 2842 3107 - '@radix-ui/react-arrow@1.0.1': 3108 - resolution: {integrity: sha512-1yientwXqXcErDHEv8av9ZVNEBldH8L9scVR3is20lL+jOCfcJyMFZFEY5cgIrgexsq1qggSXqiEL/d/4f+QXA==} 3109 - peerDependencies: 3110 - react: ^16.8 || ^17.0 || ^18.0 3111 - react-dom: ^16.8 || ^17.0 || ^18.0 3112 - 3113 2843 '@radix-ui/react-arrow@1.0.3': 3114 2844 resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} 3115 2845 peerDependencies: ··· 3149 2879 '@types/react-dom': 3150 2880 optional: true 3151 2881 3152 - '@radix-ui/react-collapsible@1.0.1': 3153 - resolution: {integrity: sha512-0maX4q91iYa4gjt3PsNf7dq/yqSR+HGAE8I5p54dQ6gnveS+ETWlMoijxrhmgV1k8svxpm34mQAtqIrJt4XZmA==} 3154 - peerDependencies: 3155 - react: ^16.8 || ^17.0 || ^18.0 3156 - react-dom: ^16.8 || ^17.0 || ^18.0 3157 - 3158 2882 '@radix-ui/react-collapsible@1.0.3': 3159 2883 resolution: {integrity: sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==} 3160 2884 peerDependencies: ··· 3167 2891 optional: true 3168 2892 '@types/react-dom': 3169 2893 optional: true 3170 - 3171 - '@radix-ui/react-collection@1.0.1': 3172 - resolution: {integrity: sha512-uuiFbs+YCKjn3X1DTSx9G7BHApu4GHbi3kgiwsnFUbOKCrwejAJv4eE4Vc8C0Oaxt9T0aV4ox0WCOdx+39Xo+g==} 3173 - peerDependencies: 3174 - react: ^16.8 || ^17.0 || ^18.0 3175 - react-dom: ^16.8 || ^17.0 || ^18.0 3176 2894 3177 2895 '@radix-ui/react-collection@1.0.3': 3178 2896 resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} ··· 3260 2978 '@types/react-dom': 3261 2979 optional: true 3262 2980 3263 - '@radix-ui/react-direction@1.0.0': 3264 - resolution: {integrity: sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ==} 3265 - peerDependencies: 3266 - react: ^16.8 || ^17.0 || ^18.0 3267 - 3268 2981 '@radix-ui/react-direction@1.0.1': 3269 2982 resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} 3270 2983 peerDependencies: ··· 3276 2989 3277 2990 '@radix-ui/react-dismissable-layer@1.0.0': 3278 2991 resolution: {integrity: sha512-n7kDRfx+LB1zLueRDvZ1Pd0bxdJWDUZNQ/GWoxDn2prnuJKRdxsjulejX/ePkOsLi2tTm6P24mDqlMSgQpsT6g==} 3279 - peerDependencies: 3280 - react: ^16.8 || ^17.0 || ^18.0 3281 - react-dom: ^16.8 || ^17.0 || ^18.0 3282 - 3283 - '@radix-ui/react-dismissable-layer@1.0.2': 3284 - resolution: {integrity: sha512-WjJzMrTWROozDqLB0uRWYvj4UuXsM/2L19EmQ3Au+IJWqwvwq9Bwd+P8ivo0Deg9JDPArR1I6MbWNi1CmXsskg==} 3285 2992 peerDependencies: 3286 2993 react: ^16.8 || ^17.0 || ^18.0 3287 2994 react-dom: ^16.8 || ^17.0 || ^18.0 ··· 3345 3052 react: ^16.8 || ^17.0 || ^18.0 3346 3053 react-dom: ^16.8 || ^17.0 || ^18.0 3347 3054 3348 - '@radix-ui/react-focus-scope@1.0.1': 3349 - resolution: {integrity: sha512-Ej2MQTit8IWJiS2uuujGUmxXjF/y5xZptIIQnyd2JHLwtV0R2j9NRVoRj/1j/gJ7e3REdaBw4Hjf4a1ImhkZcQ==} 3350 - peerDependencies: 3351 - react: ^16.8 || ^17.0 || ^18.0 3352 - react-dom: ^16.8 || ^17.0 || ^18.0 3353 - 3354 3055 '@radix-ui/react-focus-scope@1.0.3': 3355 3056 resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==} 3356 3057 peerDependencies: ··· 3430 3131 '@types/react-dom': 3431 3132 optional: true 3432 3133 3433 - '@radix-ui/react-popover@1.0.2': 3434 - resolution: {integrity: sha512-4tqZEl9w95R5mlZ/sFdgBnfhCBOEPepLIurBA5kt/qaAhldJ1tNQd0ngr0ET0AHbPotT4mwxMPr7a+MA/wbK0g==} 3435 - peerDependencies: 3436 - react: ^16.8 || ^17.0 || ^18.0 3437 - react-dom: ^16.8 || ^17.0 || ^18.0 3438 - 3439 3134 '@radix-ui/react-popover@1.0.7': 3440 3135 resolution: {integrity: sha512-shtvVnlsxT6faMnK/a7n0wptwBD23xc1Z5mdrtKLwVEfsEMXodS0r5s0/g5P0hX//EKYZS2sxUjqfzlg52ZSnQ==} 3441 3136 peerDependencies: ··· 3449 3144 '@types/react-dom': 3450 3145 optional: true 3451 3146 3452 - '@radix-ui/react-popper@1.0.1': 3453 - resolution: {integrity: sha512-J4Vj7k3k+EHNWgcKrE+BLlQfpewxA7Zd76h5I0bIa+/EqaIZ3DuwrbPj49O3wqN+STnXsBuxiHLiF0iU3yfovw==} 3454 - peerDependencies: 3455 - react: ^16.8 || ^17.0 || ^18.0 3456 - react-dom: ^16.8 || ^17.0 || ^18.0 3457 - 3458 3147 '@radix-ui/react-popper@1.1.3': 3459 3148 resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==} 3460 3149 peerDependencies: ··· 3470 3159 3471 3160 '@radix-ui/react-portal@1.0.0': 3472 3161 resolution: {integrity: sha512-a8qyFO/Xb99d8wQdu4o7qnigNjTPG123uADNecz0eX4usnQEj7o+cG4ZX4zkqq98NYekT7UoEQIjxBNWIFuqTA==} 3473 - peerDependencies: 3474 - react: ^16.8 || ^17.0 || ^18.0 3475 - react-dom: ^16.8 || ^17.0 || ^18.0 3476 - 3477 - '@radix-ui/react-portal@1.0.1': 3478 - resolution: {integrity: sha512-NY2vUWI5WENgAT1nfC6JS7RU5xRYBfjZVLq0HmgEN1Ezy3rk/UruMV4+Rd0F40PEaFC5SrLS1ixYvcYIQrb4Ig==} 3479 3162 peerDependencies: 3480 3163 react: ^16.8 || ^17.0 || ^18.0 3481 3164 react-dom: ^16.8 || ^17.0 || ^18.0 ··· 3531 3214 react: ^16.8 || ^17.0 || ^18.0 3532 3215 react-dom: ^16.8 || ^17.0 || ^18.0 3533 3216 3534 - '@radix-ui/react-primitive@1.0.1': 3535 - resolution: {integrity: sha512-fHbmislWVkZaIdeF6GZxF0A/NH/3BjrGIYj+Ae6eTmTCr7EB0RQAAVEiqsXK6p3/JcRqVSBQoceZroj30Jj3XA==} 3536 - peerDependencies: 3537 - react: ^16.8 || ^17.0 || ^18.0 3538 - react-dom: ^16.8 || ^17.0 || ^18.0 3539 - 3540 3217 '@radix-ui/react-primitive@1.0.3': 3541 3218 resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} 3542 3219 peerDependencies: ··· 3575 3252 optional: true 3576 3253 '@types/react-dom': 3577 3254 optional: true 3578 - 3579 - '@radix-ui/react-roving-focus@1.0.1': 3580 - resolution: {integrity: sha512-TB76u5TIxKpqMpUAuYH2VqMhHYKa+4Vs1NHygo/llLvlffN6mLVsFhz0AnSFlSBAvTBYVHYAkHAyEt7x1gPJOA==} 3581 - peerDependencies: 3582 - react: ^16.8 || ^17.0 || ^18.0 3583 - react-dom: ^16.8 || ^17.0 || ^18.0 3584 3255 3585 3256 '@radix-ui/react-roving-focus@1.0.4': 3586 3257 resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==} ··· 3626 3297 peerDependencies: 3627 3298 react: ^16.8 || ^17.0 || ^18.0 3628 3299 3629 - '@radix-ui/react-slot@1.0.1': 3630 - resolution: {integrity: sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==} 3631 - peerDependencies: 3632 - react: ^16.8 || ^17.0 || ^18.0 3633 - 3634 3300 '@radix-ui/react-slot@1.0.2': 3635 3301 resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} 3636 3302 peerDependencies: ··· 3666 3332 '@types/react-dom': 3667 3333 optional: true 3668 3334 3669 - '@radix-ui/react-toggle-group@1.0.1': 3670 - resolution: {integrity: sha512-eye/gYvzy82xtoSSeu5Pwlzrh6N2rOcDIwAI7xMatu622Qjlg64LtwB0PSh3iWdmn6Wqy1Fjo5twNPQsp0guiw==} 3671 - peerDependencies: 3672 - react: ^16.8 || ^17.0 || ^18.0 3673 - react-dom: ^16.8 || ^17.0 || ^18.0 3674 - 3675 - '@radix-ui/react-toggle@1.0.1': 3676 - resolution: {integrity: sha512-hZIp9ZKnw4NwVqeB4evWBLa91ryaSJhAO0Ed82wkzRPgg/I29ypcY6SuBb3AMZW+GsuBZpIVujpCq+33TdEcyg==} 3677 - peerDependencies: 3678 - react: ^16.8 || ^17.0 || ^18.0 3679 - react-dom: ^16.8 || ^17.0 || ^18.0 3680 - 3681 3335 '@radix-ui/react-toggle@1.0.3': 3682 3336 resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==} 3683 3337 peerDependencies: ··· 3691 3345 '@types/react-dom': 3692 3346 optional: true 3693 3347 3694 - '@radix-ui/react-tooltip@1.0.2': 3695 - resolution: {integrity: sha512-11gUlok2rv5mu+KBtxniOKKNKjqC/uTbgFHWoQdbF46vMV+zjDaBvCtVDK9+MTddlpmlisGPGvvojX7Qm0yr+g==} 3696 - peerDependencies: 3697 - react: ^16.8 || ^17.0 || ^18.0 3698 - react-dom: ^16.8 || ^17.0 || ^18.0 3699 - 3700 3348 '@radix-ui/react-tooltip@1.0.7': 3701 3349 resolution: {integrity: sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw==} 3702 3350 peerDependencies: ··· 3740 3388 3741 3389 '@radix-ui/react-use-escape-keydown@1.0.0': 3742 3390 resolution: {integrity: sha512-JwfBCUIfhXRxKExgIqGa4CQsiMemo1Xt0W/B4ei3fpzpvPENKpMKQ8mZSB6Acj3ebrAEgi2xiQvcI1PAAodvyg==} 3743 - peerDependencies: 3744 - react: ^16.8 || ^17.0 || ^18.0 3745 - 3746 - '@radix-ui/react-use-escape-keydown@1.0.2': 3747 - resolution: {integrity: sha512-DXGim3x74WgUv+iMNCF+cAo8xUHHeqvjx8zs7trKf+FkQKPQXLk2sX7Gx1ysH7Q76xCpZuxIJE7HLPxRE+Q+GA==} 3748 3391 peerDependencies: 3749 3392 react: ^16.8 || ^17.0 || ^18.0 3750 3393 ··· 3780 3423 '@types/react': 3781 3424 optional: true 3782 3425 3783 - '@radix-ui/react-use-rect@1.0.0': 3784 - resolution: {integrity: sha512-TB7pID8NRMEHxb/qQJpvSt3hQU4sqNPM1VCTjTRjEOa7cEop/QMuq8S6fb/5Tsz64kqSvB9WnwsDHtjnrM9qew==} 3785 - peerDependencies: 3786 - react: ^16.8 || ^17.0 || ^18.0 3787 - 3788 3426 '@radix-ui/react-use-rect@1.0.1': 3789 3427 resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} 3790 3428 peerDependencies: ··· 3794 3432 '@types/react': 3795 3433 optional: true 3796 3434 3797 - '@radix-ui/react-use-size@1.0.0': 3798 - resolution: {integrity: sha512-imZ3aYcoYCKhhgNpkNDh/aTiU05qw9hX+HHI1QDBTyIlcFjgeFlKKySNGMwTp7nYFLQg/j0VA2FmCY4WPDDHMg==} 3799 - peerDependencies: 3800 - react: ^16.8 || ^17.0 || ^18.0 3801 - 3802 3435 '@radix-ui/react-use-size@1.0.1': 3803 3436 resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} 3804 3437 peerDependencies: ··· 3808 3441 '@types/react': 3809 3442 optional: true 3810 3443 3811 - '@radix-ui/react-visually-hidden@1.0.1': 3812 - resolution: {integrity: sha512-K1hJcCMfWfiYUibRqf3V8r5Drpyf7rh44jnrwAbdvI5iCCijilBBeyQv9SKidYNZIopMdCyR9FnIjkHxHN0FcQ==} 3813 - peerDependencies: 3814 - react: ^16.8 || ^17.0 || ^18.0 3815 - react-dom: ^16.8 || ^17.0 || ^18.0 3816 - 3817 3444 '@radix-ui/react-visually-hidden@1.0.3': 3818 3445 resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} 3819 3446 peerDependencies: ··· 3827 3454 '@types/react-dom': 3828 3455 optional: true 3829 3456 3830 - '@radix-ui/rect@1.0.0': 3831 - resolution: {integrity: sha512-d0O68AYy/9oeEy1DdC07bz1/ZXX+DqCskRd3i4JzLSTXwefzaepQrKjXC7aNM8lTHjFLDO0pDgaEiQ7jEk+HVg==} 3832 - 3833 3457 '@radix-ui/rect@1.0.1': 3834 3458 resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==} 3835 3459 ··· 3936 3560 peerDependenciesMeta: 3937 3561 rollup: 3938 3562 optional: true 3939 - 3940 - '@rushstack/eslint-patch@1.10.3': 3941 - resolution: {integrity: sha512-qC/xYId4NMebE6w/V33Fh9gWxLgURiNYgVNObbJl2LZv0GUUItCcCqC5axQSwRaAgaxl2mELq1rMzlswaQ0Zxg==} 3942 3563 3943 3564 '@selderee/plugin-htmlparser2@0.10.0': 3944 3565 resolution: {integrity: sha512-gW69MEamZ4wk1OsOq1nG1jcyhXIQcnrsX5JwixVw/9xaiav8TCyjESAruu1Rz9yyInhgBXxkNwMeygKnN2uxNA==} ··· 4243 3864 '@swc/counter@0.1.3': 4244 3865 resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} 4245 3866 4246 - '@swc/helpers@0.4.14': 4247 - resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} 4248 - 4249 3867 '@swc/helpers@0.5.3': 4250 3868 resolution: {integrity: sha512-FaruWX6KdudYloq1AHD/4nU+UsMTdNE8CKyrseXWEcgjDAbvkwJg2QGPAnfIJLIWsjZOSPLOAykK6fuYp4vp4A==} 4251 3869 ··· 4387 4005 '@types/caseless@0.12.4': 4388 4006 resolution: {integrity: sha512-2in/lrHRNmDvHPgyormtEralhPcN3An1gLjJzj2Bw145VBxkQ75JEXW6CTdMAwShiHQcYsl2d10IjQSdJSJz4g==} 4389 4007 4390 - '@types/classnames@2.3.1': 4391 - resolution: {integrity: sha512-zeOWb0JGBoVmlQoznvqXbE0tEC/HONsnoUNH19Hc96NFsTAwTXbTqb8FMYkru1F/iqp7a18Ws3nWJvtA1sHD1A==} 4392 - deprecated: This is a stub types definition. classnames provides its own type definitions, so you do not need this installed. 4393 - 4394 4008 '@types/cookie@0.6.0': 4395 4009 resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} 4396 4010 ··· 4457 4071 '@types/jsdom@20.0.1': 4458 4072 resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} 4459 4073 4460 - '@types/json5@0.0.29': 4461 - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 4462 - 4463 4074 '@types/long@4.0.2': 4464 4075 resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==} 4465 4076 ··· 4484 4095 '@types/node-forge@1.3.11': 4485 4096 resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} 4486 4097 4487 - '@types/node@18.11.9': 4488 - resolution: {integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==} 4489 - 4490 4098 '@types/node@20.12.12': 4491 4099 resolution: {integrity: sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==} 4492 4100 ··· 4505 4113 '@types/prop-types@15.7.9': 4506 4114 resolution: {integrity: sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==} 4507 4115 4508 - '@types/react-dom@18.0.9': 4509 - resolution: {integrity: sha512-qnVvHxASt/H7i+XG1U1xMiY5t+IHcPGUK7TDMDzom08xa7e86eCeKOiLZezwCKVxJn6NEiiy2ekgX8aQssjIKg==} 4510 - 4511 4116 '@types/react-dom@18.2.21': 4512 4117 resolution: {integrity: sha512-gnvBA/21SA4xxqNXEwNiVcP0xSGHh/gi1VhWv9Bl46a0ItbTT5nFY+G9VSQpaG/8N/qdJpJ+vftQ4zflTtnjLw==} 4513 4118 4514 - '@types/react@18.0.25': 4515 - resolution: {integrity: sha512-xD6c0KDT4m7n9uD4ZHi02lzskaiqcBxf4zi+tXZY98a04wvc0hi/TcCPC2FOESZi51Nd7tlUeOJY8RofL799/g==} 4516 - 4517 4119 '@types/react@18.2.64': 4518 4120 resolution: {integrity: sha512-MlmPvHgjj2p3vZaxbQgFUQFvD8QiZwACfGqEdDSWou5yISWxDQ4/74nCAwsUiX7UFLKZz3BbVSPj+YxeoGGCfg==} 4519 4121 ··· 4565 4167 '@types/yargs@17.0.29': 4566 4168 resolution: {integrity: sha512-nacjqA3ee9zRF/++a3FUY1suHTFKZeHba2n8WeDw9cCVdmzmHpIxyzOJBcpHvvEmS8E9KqWlSnWHUkOrkhWcvA==} 4567 4169 4568 - '@typescript-eslint/parser@5.62.0': 4569 - resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} 4570 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 4571 - peerDependencies: 4572 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 4573 - typescript: '*' 4574 - peerDependenciesMeta: 4575 - typescript: 4576 - optional: true 4577 - 4578 - '@typescript-eslint/scope-manager@5.62.0': 4579 - resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} 4580 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 4581 - 4582 - '@typescript-eslint/types@5.62.0': 4583 - resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} 4584 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 4585 - 4586 - '@typescript-eslint/typescript-estree@5.62.0': 4587 - resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} 4588 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 4589 - peerDependencies: 4590 - typescript: '*' 4591 - peerDependenciesMeta: 4592 - typescript: 4593 - optional: true 4594 - 4595 - '@typescript-eslint/visitor-keys@5.62.0': 4596 - resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} 4597 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 4598 - 4599 4170 '@ungap/structured-clone@1.2.0': 4600 4171 resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 4601 4172 ··· 4691 4262 ajv: 4692 4263 optional: true 4693 4264 4694 - ajv@6.12.6: 4695 - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 4696 - 4697 4265 ajv@8.14.0: 4698 4266 resolution: {integrity: sha512-oYs1UUtO97ZO2lJ4bwnWeQW8/zvOIQLGKcvPTsWmvc2SYgBb+upuNS5NxoLaMU4h8Ju3Nbj6Cq8mD2LQoqVKFA==} 4699 4267 ··· 4767 4335 resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==} 4768 4336 engines: {node: '>=10'} 4769 4337 4770 - aria-query@5.3.0: 4771 - resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} 4772 - 4773 4338 arity-n@1.0.4: 4774 4339 resolution: {integrity: sha512-fExL2kFDC1Q2DUOx3whE/9KoN66IzkY4b4zUHUBFM1ojEYjZZYDcUW3bek/ufGionX9giIKDC5redH2IlGqcQQ==} 4775 4340 4776 - array-buffer-byte-length@1.0.1: 4777 - resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} 4778 - engines: {node: '>= 0.4'} 4779 - 4780 - array-includes@3.1.8: 4781 - resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} 4782 - engines: {node: '>= 0.4'} 4783 - 4784 4341 array-last@1.3.0: 4785 4342 resolution: {integrity: sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==} 4786 4343 engines: {node: '>=0.10.0'} ··· 4792 4349 resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 4793 4350 engines: {node: '>=8'} 4794 4351 4795 - array.prototype.findlast@1.2.5: 4796 - resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} 4797 - engines: {node: '>= 0.4'} 4798 - 4799 - array.prototype.findlastindex@1.2.5: 4800 - resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} 4801 - engines: {node: '>= 0.4'} 4802 - 4803 - array.prototype.flat@1.3.2: 4804 - resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} 4805 - engines: {node: '>= 0.4'} 4806 - 4807 - array.prototype.flatmap@1.3.2: 4808 - resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} 4809 - engines: {node: '>= 0.4'} 4810 - 4811 - array.prototype.toreversed@1.1.2: 4812 - resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} 4813 - 4814 - array.prototype.tosorted@1.1.3: 4815 - resolution: {integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==} 4816 - 4817 - arraybuffer.prototype.slice@1.0.3: 4818 - resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} 4819 - engines: {node: '>= 0.4'} 4820 - 4821 4352 arrify@1.0.1: 4822 4353 resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} 4823 4354 engines: {node: '>=0.10.0'} 4824 4355 4825 4356 as-table@1.0.55: 4826 4357 resolution: {integrity: sha512-xvsWESUJn0JN421Xb9MQw6AsMHRCUknCe0Wjlxvjud80mU4E6hQf1A6NzQKcYNmYw62MfzEtXc+badstZP3JpQ==} 4827 - 4828 - ast-types-flow@0.0.8: 4829 - resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} 4830 4358 4831 4359 ast-types@0.13.4: 4832 4360 resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} ··· 4839 4367 asynckit@0.4.0: 4840 4368 resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} 4841 4369 4842 - autoprefixer@10.4.13: 4843 - resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} 4844 - engines: {node: ^10 || ^12 || >=14} 4845 - hasBin: true 4846 - peerDependencies: 4847 - postcss: ^8.1.0 4848 - 4849 4370 autoprefixer@10.4.19: 4850 4371 resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==} 4851 4372 engines: {node: ^10 || ^12 || >=14} ··· 4857 4378 resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} 4858 4379 engines: {node: '>= 0.4'} 4859 4380 4860 - available-typed-arrays@1.0.7: 4861 - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 4862 - engines: {node: '>= 0.4'} 4863 - 4864 - axe-core@4.7.0: 4865 - resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} 4866 - engines: {node: '>=4'} 4867 - 4868 4381 axios@1.7.2: 4869 4382 resolution: {integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==} 4870 - 4871 - axobject-query@3.2.1: 4872 - resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} 4873 4383 4874 4384 babylon@6.18.0: 4875 4385 resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==} ··· 4981 4491 call-bind@1.0.5: 4982 4492 resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} 4983 4493 4984 - call-bind@1.0.7: 4985 - resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} 4986 - engines: {node: '>= 0.4'} 4987 - 4988 - callsites@3.1.0: 4989 - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 4990 - engines: {node: '>=6'} 4991 - 4992 4494 camel-case@3.0.0: 4993 4495 resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==} 4994 4496 ··· 5067 4569 5068 4570 class-variance-authority@0.7.0: 5069 4571 resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==} 5070 - 5071 - classnames@2.3.2: 5072 - resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==} 5073 4572 5074 4573 clean-stack@2.2.0: 5075 4574 resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} ··· 5291 4790 d@1.0.1: 5292 4791 resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==} 5293 4792 5294 - damerau-levenshtein@1.0.8: 5295 - resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 5296 - 5297 4793 data-uri-to-buffer@2.0.2: 5298 4794 resolution: {integrity: sha512-ND9qDTLc6diwj+Xe5cdAgVTbLVdXbtxTJRXRhli8Mowuaan+0EJOtdqJ0QCHNSSPyoXGx9HX2/VMnKeC34AChA==} 5299 4795 ··· 5309 4805 resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} 5310 4806 engines: {node: '>=12'} 5311 4807 5312 - data-view-buffer@1.0.1: 5313 - resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} 5314 - engines: {node: '>= 0.4'} 5315 - 5316 - data-view-byte-length@1.0.1: 5317 - resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} 5318 - engines: {node: '>= 0.4'} 5319 - 5320 - data-view-byte-offset@1.0.0: 5321 - resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} 5322 - engines: {node: '>= 0.4'} 5323 - 5324 4808 date-fns-tz@2.0.0: 5325 4809 resolution: {integrity: sha512-OAtcLdB9vxSXTWHdT8b398ARImVwQMyjfYGkKD2zaGpHseG2UPHbHjXELReErZFxWdSLph3c2zOaaTyHfOhERQ==} 5326 4810 peerDependencies: ··· 5330 4814 resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} 5331 4815 engines: {node: '>=0.11'} 5332 4816 5333 - debug@3.2.7: 5334 - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 5335 - peerDependencies: 5336 - supports-color: '*' 5337 - peerDependenciesMeta: 5338 - supports-color: 5339 - optional: true 5340 - 5341 4817 debug@4.3.4: 5342 4818 resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 5343 4819 engines: {node: '>=6.0'} ··· 5375 4851 deep-freeze@0.0.1: 5376 4852 resolution: {integrity: sha512-Z+z8HiAvsGwmjqlphnHW5oz6yWlOwu6EQfFTjmeTWlDeda3FS2yv3jhq35TX/ewmsnqB+RX2IdsIOyjJCQN5tg==} 5377 4853 5378 - deep-is@0.1.4: 5379 - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 5380 - 5381 4854 deepmerge@4.3.1: 5382 4855 resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} 5383 4856 engines: {node: '>=0.10.0'} ··· 5389 4862 resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} 5390 4863 engines: {node: '>= 0.4'} 5391 4864 5392 - define-data-property@1.1.4: 5393 - resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 5394 - engines: {node: '>= 0.4'} 5395 - 5396 - define-properties@1.2.1: 5397 - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 5398 - engines: {node: '>= 0.4'} 5399 - 5400 4865 defined@1.0.1: 5401 4866 resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} 5402 4867 ··· 5464 4929 5465 4930 dlv@1.1.3: 5466 4931 resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 5467 - 5468 - doctrine@2.1.0: 5469 - resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 5470 - engines: {node: '>=0.10.0'} 5471 - 5472 - doctrine@3.0.0: 5473 - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 5474 - engines: {node: '>=6.0.0'} 5475 4932 5476 4933 dom-helpers@3.4.0: 5477 4934 resolution: {integrity: sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==} ··· 5709 5166 end-of-stream@1.4.4: 5710 5167 resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} 5711 5168 5712 - enhanced-resolve@5.16.1: 5713 - resolution: {integrity: sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==} 5714 - engines: {node: '>=10.13.0'} 5715 - 5716 5169 entities@4.5.0: 5717 5170 resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 5718 5171 engines: {node: '>=0.12'} ··· 5723 5176 5724 5177 error-ex@1.3.2: 5725 5178 resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} 5726 - 5727 - es-abstract@1.23.3: 5728 - resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} 5729 - engines: {node: '>= 0.4'} 5730 - 5731 - es-define-property@1.0.0: 5732 - resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} 5733 - engines: {node: '>= 0.4'} 5734 - 5735 - es-errors@1.3.0: 5736 - resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 5737 - engines: {node: '>= 0.4'} 5738 - 5739 - es-iterator-helpers@1.0.19: 5740 - resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==} 5741 - engines: {node: '>= 0.4'} 5742 - 5743 - es-object-atoms@1.0.0: 5744 - resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} 5745 - engines: {node: '>= 0.4'} 5746 - 5747 - es-set-tostringtag@2.0.3: 5748 - resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} 5749 - engines: {node: '>= 0.4'} 5750 - 5751 - es-shim-unscopables@1.0.2: 5752 - resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 5753 - 5754 - es-to-primitive@1.2.1: 5755 - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 5756 - engines: {node: '>= 0.4'} 5757 5179 5758 5180 es5-ext@0.10.62: 5759 5181 resolution: {integrity: sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==} ··· 5823 5245 engines: {node: '>=6.0'} 5824 5246 hasBin: true 5825 5247 5826 - eslint-config-next@13.2.4: 5827 - resolution: {integrity: sha512-lunIBhsoeqw6/Lfkd6zPt25w1bn0znLA/JCL+au1HoEpSb4/PpsOYsYtgV/q+YPsoKIOzFyU5xnb04iZnXjUvg==} 5828 - peerDependencies: 5829 - eslint: ^7.23.0 || ^8.0.0 5830 - typescript: '>=3.3.1' 5831 - peerDependenciesMeta: 5832 - typescript: 5833 - optional: true 5834 - 5835 - eslint-config-prettier@8.7.0: 5836 - resolution: {integrity: sha512-HHVXLSlVUhMSmyW4ZzEuvjpwqamgmlfkutD53cYXLikh4pt/modINRcCIApJ84czDxM4GZInwUrromsDdTImTA==} 5837 - hasBin: true 5838 - peerDependencies: 5839 - eslint: '>=7.0.0' 5840 - 5841 - eslint-import-resolver-node@0.3.9: 5842 - resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 5843 - 5844 - eslint-import-resolver-typescript@3.6.1: 5845 - resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} 5846 - engines: {node: ^14.18.0 || >=16.0.0} 5847 - peerDependencies: 5848 - eslint: '*' 5849 - eslint-plugin-import: '*' 5850 - 5851 - eslint-module-utils@2.8.1: 5852 - resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} 5853 - engines: {node: '>=4'} 5854 - peerDependencies: 5855 - '@typescript-eslint/parser': '*' 5856 - eslint: '*' 5857 - eslint-import-resolver-node: '*' 5858 - eslint-import-resolver-typescript: '*' 5859 - eslint-import-resolver-webpack: '*' 5860 - peerDependenciesMeta: 5861 - '@typescript-eslint/parser': 5862 - optional: true 5863 - eslint: 5864 - optional: true 5865 - eslint-import-resolver-node: 5866 - optional: true 5867 - eslint-import-resolver-typescript: 5868 - optional: true 5869 - eslint-import-resolver-webpack: 5870 - optional: true 5871 - 5872 - eslint-plugin-import@2.29.1: 5873 - resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} 5874 - engines: {node: '>=4'} 5875 - peerDependencies: 5876 - '@typescript-eslint/parser': '*' 5877 - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 5878 - peerDependenciesMeta: 5879 - '@typescript-eslint/parser': 5880 - optional: true 5881 - 5882 - eslint-plugin-jsx-a11y@6.8.0: 5883 - resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} 5884 - engines: {node: '>=4.0'} 5885 - peerDependencies: 5886 - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 5887 - 5888 - eslint-plugin-react-hooks@4.6.2: 5889 - resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} 5890 - engines: {node: '>=10'} 5891 - peerDependencies: 5892 - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 5893 - 5894 - eslint-plugin-react@7.34.1: 5895 - resolution: {integrity: sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==} 5896 - engines: {node: '>=4'} 5897 - peerDependencies: 5898 - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 5899 - 5900 - eslint-plugin-simple-import-sort@10.0.0: 5901 - resolution: {integrity: sha512-AeTvO9UCMSNzIHRkg8S6c3RPy5YEwKWSQPx3DYghLedo2ZQxowPFLGDN1AZ2evfg6r6mjBSZSLxLFsWSu3acsw==} 5902 - peerDependencies: 5903 - eslint: '>=5.0.0' 5904 - 5905 - eslint-plugin-unused-imports@2.0.0: 5906 - resolution: {integrity: sha512-3APeS/tQlTrFa167ThtP0Zm0vctjr4M44HMpeg1P4bK6wItarumq0Ma82xorMKdFsWpphQBlRPzw/pxiVELX1A==} 5907 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 5908 - peerDependencies: 5909 - '@typescript-eslint/eslint-plugin': ^5.0.0 5910 - eslint: ^8.0.0 5911 - peerDependenciesMeta: 5912 - '@typescript-eslint/eslint-plugin': 5913 - optional: true 5914 - 5915 - eslint-rule-composer@0.3.0: 5916 - resolution: {integrity: sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==} 5917 - engines: {node: '>=4.0.0'} 5918 - 5919 - eslint-scope@7.2.2: 5920 - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 5921 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 5922 - 5923 - eslint-visitor-keys@3.4.3: 5924 - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 5925 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 5926 - 5927 - eslint@8.36.0: 5928 - resolution: {integrity: sha512-Y956lmS7vDqomxlaaQAHVmeb4tNMp2FWIvU/RnU5BD3IKMD/MJPr76xdyr68P8tV1iNMvN2mRK0yy3c+UjL+bw==} 5929 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 5930 - hasBin: true 5931 - 5932 - espree@9.6.1: 5933 - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 5934 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 5935 - 5936 5248 esprima@4.0.1: 5937 5249 resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 5938 5250 engines: {node: '>=4'} 5939 5251 hasBin: true 5940 - 5941 - esquery@1.5.0: 5942 - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 5943 - engines: {node: '>=0.10'} 5944 - 5945 - esrecurse@4.3.0: 5946 - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 5947 - engines: {node: '>=4.0'} 5948 5252 5949 5253 estraverse@5.3.0: 5950 5254 resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} ··· 6040 5344 resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 6041 5345 engines: {node: '>=8.6.0'} 6042 5346 6043 - fast-json-stable-stringify@2.1.0: 6044 - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 6045 - 6046 - fast-levenshtein@2.0.6: 6047 - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 6048 - 6049 5347 fast-xml-parser@4.2.5: 6050 5348 resolution: {integrity: sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==} 6051 5349 hasBin: true ··· 6067 5365 resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} 6068 5366 engines: {node: '>=8'} 6069 5367 6070 - file-entry-cache@6.0.1: 6071 - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 6072 - engines: {node: ^10.12.0 || >=12.0.0} 6073 - 6074 5368 file-entry-cache@8.0.0: 6075 5369 resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} 6076 5370 engines: {node: '>=16.0.0'} ··· 6096 5390 find-up@4.1.0: 6097 5391 resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} 6098 5392 engines: {node: '>=8'} 6099 - 6100 - find-up@5.0.0: 6101 - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 6102 - engines: {node: '>=10'} 6103 - 6104 - flat-cache@3.2.0: 6105 - resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} 6106 - engines: {node: ^10.12.0 || >=12.0.0} 6107 5393 6108 5394 flat-cache@4.0.1: 6109 5395 resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} ··· 6147 5433 fraction.js@4.3.7: 6148 5434 resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} 6149 5435 6150 - framer-motion@8.4.6: 6151 - resolution: {integrity: sha512-0GkpTQnhDysG5SiD2VbANtAs8yCXVQLasynVABDTZYI+Qcx1krWg+rfyveM8W78q7AX+8RTsiMz/LJ7YIRZvFw==} 6152 - peerDependencies: 6153 - react: ^18.0.0 6154 - react-dom: ^18.0.0 6155 - 6156 5436 fs-constants@1.0.0: 6157 5437 resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} 6158 5438 ··· 6187 5467 function-bind@1.1.2: 6188 5468 resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 6189 5469 6190 - function.prototype.name@1.1.6: 6191 - resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} 6192 - engines: {node: '>= 0.4'} 6193 - 6194 - functions-have-names@1.2.3: 6195 - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 6196 - 6197 5470 gaxios@6.1.1: 6198 5471 resolution: {integrity: sha512-bw8smrX+XlAoo9o1JAksBwX+hi/RG15J+NTSxmNPIclKC3ZVK6C2afwY8OSdRvOK0+ZLecUJYtj2MmjOt3Dm0w==} 6199 5472 engines: {node: '>=14'} ··· 6209 5482 get-intrinsic@1.2.1: 6210 5483 resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} 6211 5484 6212 - get-intrinsic@1.2.4: 6213 - resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} 6214 - engines: {node: '>= 0.4'} 6215 - 6216 5485 get-nonce@1.0.1: 6217 5486 resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} 6218 5487 engines: {node: '>=6'} ··· 6223 5492 get-stream@6.0.1: 6224 5493 resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 6225 5494 engines: {node: '>=10'} 6226 - 6227 - get-symbol-description@1.0.2: 6228 - resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} 6229 - engines: {node: '>= 0.4'} 6230 5495 6231 5496 get-tsconfig@4.7.2: 6232 5497 resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} ··· 6260 5525 glob@7.1.6: 6261 5526 resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} 6262 5527 6263 - glob@7.1.7: 6264 - resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} 6265 - 6266 5528 glob@7.2.3: 6267 5529 resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 6268 5530 ··· 6270 5532 resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} 6271 5533 engines: {node: '>=12'} 6272 5534 6273 - globals@13.24.0: 6274 - resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 6275 - engines: {node: '>=8'} 6276 - 6277 - globalthis@1.0.4: 6278 - resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} 6279 - engines: {node: '>= 0.4'} 6280 - 6281 5535 globby@10.0.2: 6282 5536 resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==} 6283 5537 engines: {node: '>=8'} ··· 6304 5558 resolution: {integrity: sha512-rEDCuqUQ4tbD78TpzsMtt5OIf0cBCSDWSJtUDaF6JsAh+k0v9r++NzxNEG87oDZx9ZwGhD8DaezR2L/yrw0Jdw==} 6305 5559 engines: {node: '>=10'} 6306 5560 6307 - grapheme-splitter@1.0.4: 6308 - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} 6309 - 6310 5561 graphql@16.8.1: 6311 5562 resolution: {integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==} 6312 5563 engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} ··· 6335 5586 resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} 6336 5587 engines: {node: '>=0.10.0'} 6337 5588 6338 - has-bigints@1.0.2: 6339 - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 6340 - 6341 5589 has-flag@3.0.0: 6342 5590 resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 6343 5591 engines: {node: '>=4'} ··· 6356 5604 has-property-descriptors@1.0.0: 6357 5605 resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} 6358 5606 6359 - has-property-descriptors@1.0.2: 6360 - resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 6361 - 6362 5607 has-proto@1.0.1: 6363 5608 resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} 6364 5609 engines: {node: '>= 0.4'} 6365 5610 6366 - has-proto@1.0.3: 6367 - resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} 6368 - engines: {node: '>= 0.4'} 6369 - 6370 5611 has-symbols@1.0.3: 6371 5612 resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 6372 5613 engines: {node: '>= 0.4'} ··· 6375 5616 resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 6376 5617 engines: {node: '>= 0.4'} 6377 5618 6378 - has-tostringtag@1.0.2: 6379 - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 6380 - engines: {node: '>= 0.4'} 6381 - 6382 5619 has@1.0.4: 6383 5620 resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} 6384 5621 engines: {node: '>= 0.4.0'} ··· 6389 5626 6390 5627 hash-wasm@4.10.0: 6391 5628 resolution: {integrity: sha512-a0NjBNWjavvMalm/pPSEJ00MPDjRG8rv9D5BK7dBQTLGwAOVWqnTEUggaYs5szATB5UK5ULeIQr7QJXbczAZYA==} 6392 - 6393 - hasown@2.0.2: 6394 - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 6395 - engines: {node: '>= 0.4'} 6396 5629 6397 5630 hast-to-hyperscript@10.0.3: 6398 5631 resolution: {integrity: sha512-NuBoUStp4fRwmvlfbidlEiRSTk0gSHm+97q4Xn9CJ10HO+Py7nlTuDi6RhM1qLOureukGrCXLG7AAxaGqqyslQ==} ··· 6441 5674 6442 5675 heap@0.2.7: 6443 5676 resolution: {integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==} 6444 - 6445 - hey-listen@1.0.8: 6446 - resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==} 6447 5677 6448 5678 hoist-non-react-statics@3.3.2: 6449 5679 resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} ··· 6548 5778 immediate@3.0.6: 6549 5779 resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} 6550 5780 6551 - import-fresh@3.3.0: 6552 - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 6553 - engines: {node: '>=6'} 6554 - 6555 - imurmurhash@0.1.4: 6556 - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 6557 - engines: {node: '>=0.8.19'} 6558 - 6559 5781 indent-string@4.0.0: 6560 5782 resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} 6561 5783 engines: {node: '>=8'} ··· 6584 5806 resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} 6585 5807 engines: {node: '>=12.0.0'} 6586 5808 6587 - internal-slot@1.0.7: 6588 - resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} 6589 - engines: {node: '>= 0.4'} 6590 - 6591 5809 internmap@2.0.3: 6592 5810 resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} 6593 5811 engines: {node: '>=12'} ··· 6615 5833 resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} 6616 5834 engines: {node: '>= 0.4'} 6617 5835 6618 - is-array-buffer@3.0.4: 6619 - resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} 6620 - engines: {node: '>= 0.4'} 6621 - 6622 5836 is-arrayish@0.2.1: 6623 5837 resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} 6624 5838 6625 - is-async-function@2.0.0: 6626 - resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} 6627 - engines: {node: '>= 0.4'} 6628 - 6629 - is-bigint@1.0.4: 6630 - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 6631 - 6632 5839 is-binary-path@2.1.0: 6633 5840 resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 6634 5841 engines: {node: '>=8'} 6635 5842 6636 - is-boolean-object@1.1.2: 6637 - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 6638 - engines: {node: '>= 0.4'} 6639 - 6640 5843 is-buffer@1.1.6: 6641 5844 resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} 6642 5845 ··· 6651 5854 is-core-module@2.13.0: 6652 5855 resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==} 6653 5856 6654 - is-core-module@2.13.1: 6655 - resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} 6656 - 6657 - is-data-view@1.0.1: 6658 - resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} 6659 - engines: {node: '>= 0.4'} 6660 - 6661 - is-date-object@1.0.5: 6662 - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 6663 - engines: {node: '>= 0.4'} 6664 - 6665 5857 is-decimal@2.0.1: 6666 5858 resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} 6667 5859 ··· 6672 5864 is-extglob@2.1.1: 6673 5865 resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 6674 5866 engines: {node: '>=0.10.0'} 6675 - 6676 - is-finalizationregistry@1.0.2: 6677 - resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} 6678 5867 6679 5868 is-fullwidth-code-point@3.0.0: 6680 5869 resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} ··· 6702 5891 is-lower-case@1.1.3: 6703 5892 resolution: {integrity: sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==} 6704 5893 6705 - is-map@2.0.3: 6706 - resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 6707 - engines: {node: '>= 0.4'} 6708 - 6709 - is-negative-zero@2.0.3: 6710 - resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} 6711 - engines: {node: '>= 0.4'} 6712 - 6713 - is-number-object@1.0.7: 6714 - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 6715 - engines: {node: '>= 0.4'} 6716 - 6717 5894 is-number@4.0.0: 6718 5895 resolution: {integrity: sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==} 6719 5896 engines: {node: '>=0.10.0'} ··· 6762 5939 is-reference@3.0.2: 6763 5940 resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} 6764 5941 6765 - is-regex@1.1.4: 6766 - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 6767 - engines: {node: '>= 0.4'} 6768 - 6769 - is-set@2.0.3: 6770 - resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} 6771 - engines: {node: '>= 0.4'} 6772 - 6773 - is-shared-array-buffer@1.0.3: 6774 - resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} 6775 - engines: {node: '>= 0.4'} 6776 - 6777 5942 is-stream@2.0.1: 6778 5943 resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 6779 5944 engines: {node: '>=8'} 6780 5945 6781 - is-string@1.0.7: 6782 - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 6783 - engines: {node: '>= 0.4'} 6784 - 6785 - is-symbol@1.0.4: 6786 - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 6787 - engines: {node: '>= 0.4'} 6788 - 6789 5946 is-typed-array@1.1.12: 6790 5947 resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} 6791 5948 engines: {node: '>= 0.4'} 6792 5949 6793 - is-typed-array@1.1.13: 6794 - resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} 6795 - engines: {node: '>= 0.4'} 6796 - 6797 5950 is-unicode-supported@0.1.0: 6798 5951 resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} 6799 5952 engines: {node: '>=10'} ··· 6801 5954 is-upper-case@1.1.2: 6802 5955 resolution: {integrity: sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw==} 6803 5956 6804 - is-weakmap@2.0.2: 6805 - resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} 6806 - engines: {node: '>= 0.4'} 6807 - 6808 - is-weakref@1.0.2: 6809 - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 6810 - 6811 - is-weakset@2.0.3: 6812 - resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} 6813 - engines: {node: '>= 0.4'} 6814 - 6815 5957 is-what@4.1.15: 6816 5958 resolution: {integrity: sha512-uKua1wfy3Yt+YqsD6mTUEa2zSi3G1oPlqTflgaPJ7z63vUGN5pxFpnQfeSLMFnJDEsdvOtkp1rUWkYjB4YfhgA==} 6817 5959 engines: {node: '>=12.13'} ··· 6819 5961 is-whitespace@0.3.0: 6820 5962 resolution: {integrity: sha512-RydPhl4S6JwAyj0JJjshWJEFG6hNye3pZFBRZaTUfZFwGHxzppNaNOVgQuS/E/SlhrApuMXrpnK1EEIXfdo3Dg==} 6821 5963 engines: {node: '>=0.10.0'} 6822 - 6823 - isarray@2.0.5: 6824 - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 6825 5964 6826 5965 isbinaryfile@4.0.10: 6827 5966 resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==} ··· 6837 5976 resolution: {integrity: sha512-hJnEP2Xk4+44DDwJqUQGdXal5VbyeWLaPyDl2AQc242Zr7iqz4DgpQOrEzglWVMGHMDCkguLHEKxd1+rOsmgSQ==} 6838 5977 engines: {node: '>=4'} 6839 5978 6840 - iterator.prototype@1.1.2: 6841 - resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} 6842 - 6843 5979 jackspeak@2.3.6: 6844 5980 resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} 6845 5981 engines: {node: '>=14'} ··· 6890 6026 engines: {node: '>=12'} 6891 6027 hasBin: true 6892 6028 6893 - js-sdsl@4.4.2: 6894 - resolution: {integrity: sha512-dwXFwByc/ajSV6m5bcKAPwe4yDDF6D614pxmIi5odytzxRlwqF6nwoiCek80Ixc7Cvma5awClxrzFtxCQvcM8w==} 6895 - 6896 6029 js-tokens@4.0.0: 6897 6030 resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 6898 6031 ··· 6929 6062 json-parse-even-better-errors@2.3.1: 6930 6063 resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} 6931 6064 6932 - json-schema-traverse@0.4.1: 6933 - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 6934 - 6935 6065 json-schema-traverse@1.0.0: 6936 6066 resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} 6937 6067 6938 - json-stable-stringify-without-jsonify@1.0.1: 6939 - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 6940 - 6941 - json5@1.0.2: 6942 - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 6943 - hasBin: true 6944 - 6945 6068 jsonc-parser@3.2.0: 6946 6069 resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} 6947 6070 ··· 6954 6077 jsonpath-plus@7.2.0: 6955 6078 resolution: {integrity: sha512-zBfiUPM5nD0YZSBT/o/fbCUlCcepMIdP0CJZxM1+KgA4f2T206f6VAg9e7mX35+KlMaIc5qXW34f3BnwJ3w+RA==} 6956 6079 engines: {node: '>=12.0.0'} 6957 - 6958 - jsx-ast-utils@3.3.5: 6959 - resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} 6960 - engines: {node: '>=4.0'} 6961 6080 6962 6081 jwa@2.0.0: 6963 6082 resolution: {integrity: sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==} ··· 6988 6107 '@types/node': '>=18' 6989 6108 typescript: '>=5.0.4' 6990 6109 6991 - language-subtag-registry@0.3.23: 6992 - resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} 6993 - 6994 - language-tags@1.0.9: 6995 - resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} 6996 - engines: {node: '>=0.10'} 6997 - 6998 6110 leac@0.6.0: 6999 6111 resolution: {integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==} 7000 - 7001 - levn@0.4.1: 7002 - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 7003 - engines: {node: '>= 0.8.0'} 7004 6112 7005 6113 libsql@0.3.10: 7006 6114 resolution: {integrity: sha512-/8YMTbwWFPmrDWY+YFK3kYqVPFkMgQre0DGmBaOmjogMdSe+7GHm1/q9AZ61AWkEub/vHmi+bA4tqIzVhKnqzg==} ··· 7026 6134 locate-path@5.0.0: 7027 6135 resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} 7028 6136 engines: {node: '>=8'} 7029 - 7030 - locate-path@6.0.0: 7031 - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 7032 - engines: {node: '>=10'} 7033 6137 7034 6138 lodash.camelcase@4.3.0: 7035 6139 resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} ··· 7454 6558 napi-build-utils@1.0.2: 7455 6559 resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} 7456 6560 7457 - natural-compare@1.4.0: 7458 - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 7459 - 7460 6561 neo-async@2.6.2: 7461 6562 resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} 7462 6563 ··· 7504 6605 7505 6606 next-tick@1.1.0: 7506 6607 resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} 7507 - 7508 - next@13.2.4: 7509 - resolution: {integrity: sha512-g1I30317cThkEpvzfXujf0O4wtaQHtDCLhlivwlTJ885Ld+eOgcz7r3TGQzeU+cSRoNHtD8tsJgzxVdYojFssw==} 7510 - engines: {node: '>=14.6.0'} 7511 - hasBin: true 7512 - peerDependencies: 7513 - '@opentelemetry/api': ^1.4.0 7514 - fibers: '>= 3.1.0' 7515 - node-sass: ^6.0.0 || ^7.0.0 7516 - react: ^18.2.0 7517 - react-dom: ^18.2.0 7518 - sass: ^1.3.0 7519 - peerDependenciesMeta: 7520 - '@opentelemetry/api': 7521 - optional: true 7522 - fibers: 7523 - optional: true 7524 - node-sass: 7525 - optional: true 7526 - sass: 7527 - optional: true 7528 6608 7529 6609 next@14.2.3: 7530 6610 resolution: {integrity: sha512-dowFkFTR8v79NPJO4QsBUtxv0g9BrS/phluVpMAt2ku7H+cbcBJlopXjkWlwxrk/xGqMemr7JkGPGemPrLLX7A==} ··· 7627 6707 object-inspect@1.13.1: 7628 6708 resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} 7629 6709 7630 - object-keys@1.1.1: 7631 - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 7632 - engines: {node: '>= 0.4'} 7633 - 7634 6710 object-pairs@0.1.0: 7635 6711 resolution: {integrity: sha512-3ECr6K831I4xX/Mduxr9UC+HPOz/d6WKKYj9p4cmC8Lg8p7g8gitzsxNX5IWlSIgFWN/a4JgrJaoAMKn20oKwA==} 7636 6712 ··· 7638 6714 resolution: {integrity: sha512-+8hwcz/JnQ9EpLIXzN0Rs7DLsBpJNT/xYehtB/jU93tHYr5BFEO8E+JGQNOSqE7opVzz5cGksKFHt7uUJVLSjQ==} 7639 6715 engines: {node: '>=0.10.0'} 7640 6716 7641 - object.assign@4.1.5: 7642 - resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} 7643 - engines: {node: '>= 0.4'} 7644 - 7645 - object.entries@1.1.8: 7646 - resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} 7647 - engines: {node: '>= 0.4'} 7648 - 7649 - object.fromentries@2.0.8: 7650 - resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} 7651 - engines: {node: '>= 0.4'} 7652 - 7653 - object.groupby@1.0.3: 7654 - resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} 7655 - engines: {node: '>= 0.4'} 7656 - 7657 - object.hasown@1.1.4: 7658 - resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} 7659 - engines: {node: '>= 0.4'} 7660 - 7661 - object.values@1.2.0: 7662 - resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} 7663 - engines: {node: '>= 0.4'} 7664 - 7665 6717 once@1.4.0: 7666 6718 resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 7667 6719 ··· 7676 6728 openapi3-ts@4.1.2: 7677 6729 resolution: {integrity: sha512-B7gOkwsYMZO7BZXwJzXCuVagym2xhqsrilVvV0dnq2Di4+iLUXKVX9gOK23ZqaAHZOwABXN0QTdW8QnkUTX6DA==} 7678 6730 7679 - optionator@0.9.4: 7680 - resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 7681 - engines: {node: '>= 0.8.0'} 7682 - 7683 6731 ora@4.1.1: 7684 6732 resolution: {integrity: sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==} 7685 6733 engines: {node: '>=8'} ··· 7695 6743 p-limit@2.3.0: 7696 6744 resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} 7697 6745 engines: {node: '>=6'} 7698 - 7699 - p-limit@3.1.0: 7700 - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 7701 - engines: {node: '>=10'} 7702 6746 7703 6747 p-locate@4.1.0: 7704 6748 resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} 7705 6749 engines: {node: '>=8'} 7706 6750 7707 - p-locate@5.0.0: 7708 - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 7709 - engines: {node: '>=10'} 7710 - 7711 6751 p-map@3.0.0: 7712 6752 resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} 7713 6753 engines: {node: '>=8'} ··· 7731 6771 param-case@2.1.1: 7732 6772 resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==} 7733 6773 7734 - parent-module@1.0.1: 7735 - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 7736 - engines: {node: '>=6'} 7737 - 7738 6774 parse-entities@4.0.1: 7739 6775 resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} 7740 6776 ··· 7844 6880 engines: {node: '>=16'} 7845 6881 hasBin: true 7846 6882 7847 - possible-typed-array-names@1.0.0: 7848 - resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} 7849 - engines: {node: '>= 0.4'} 7850 - 7851 6883 postcss-css-variables@0.18.0: 7852 6884 resolution: {integrity: sha512-lYS802gHbzn1GI+lXvy9MYIYDuGnl1WB4FTKoqMQqJ3Mab09A7a/1wZvGTkCEZJTM8mSbIyb1mJYn8f0aPye0Q==} 7853 6885 peerDependencies: ··· 7918 6950 postcss-value-parser@4.2.0: 7919 6951 resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 7920 6952 7921 - postcss@8.4.14: 7922 - resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} 7923 - engines: {node: ^10 || ^12 || >=14} 7924 - 7925 - postcss@8.4.19: 7926 - resolution: {integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==} 7927 - engines: {node: ^10 || ^12 || >=14} 7928 - 7929 6953 postcss@8.4.21: 7930 6954 resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==} 7931 6955 engines: {node: ^10 || ^12 || >=14} ··· 7961 6985 engines: {node: '>=10'} 7962 6986 hasBin: true 7963 6987 7964 - prelude-ls@1.2.1: 7965 - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 7966 - engines: {node: '>= 0.8.0'} 7967 - 7968 - prettier@2.8.4: 7969 - resolution: {integrity: sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==} 7970 - engines: {node: '>=10.13.0'} 7971 - hasBin: true 7972 - 7973 6988 pretty-format@29.7.0: 7974 6989 resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} 7975 6990 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} ··· 7987 7002 7988 7003 printable-characters@1.0.42: 7989 7004 resolution: {integrity: sha512-dKp+C4iXWK4vVYZmYSd0KBH5F/h1HoZRsbJ82AVKRO3PEo8L4lBS/vLwhVtpwwuYcoIsVY+1JYKR268yn480uQ==} 7990 - 7991 - prism-react-renderer@1.3.5: 7992 - resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==} 7993 - peerDependencies: 7994 - react: '>=0.14.9' 7995 7005 7996 7006 progress@2.0.3: 7997 7007 resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} ··· 8226 7236 redent@3.0.0: 8227 7237 resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} 8228 7238 engines: {node: '>=8'} 8229 - 8230 - reflect.getprototypeof@1.0.6: 8231 - resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} 8232 - engines: {node: '>= 0.4'} 8233 7239 8234 7240 regenerator-runtime@0.14.0: 8235 7241 resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} 8236 7242 8237 - regexp.prototype.flags@1.5.2: 8238 - resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} 8239 - engines: {node: '>= 0.4'} 8240 - 8241 7243 registry-auth-token@3.3.2: 8242 7244 resolution: {integrity: sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==} 8243 7245 ··· 8307 7309 resolution: {integrity: sha512-jAh0DN84ZjjmzGM2vMjJ1hphPBg1mG98dzopF7kJzmin62v8ESg4og2iCKWdkAboGOT2SeO5exbr/8Xh8gLddw==} 8308 7310 engines: {node: '>=18'} 8309 7311 8310 - resolve-from@4.0.0: 8311 - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 8312 - engines: {node: '>=4'} 8313 - 8314 7312 resolve-from@5.0.0: 8315 7313 resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} 8316 7314 engines: {node: '>=8'} ··· 8326 7324 resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 8327 7325 hasBin: true 8328 7326 8329 - resolve@2.0.0-next.5: 8330 - resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 8331 - hasBin: true 8332 - 8333 7327 restore-cursor@3.1.0: 8334 7328 resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} 8335 7329 engines: {node: '>=8'} ··· 8393 7387 resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} 8394 7388 engines: {node: '>=6'} 8395 7389 8396 - safe-array-concat@1.1.2: 8397 - resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} 8398 - engines: {node: '>=0.4'} 8399 - 8400 7390 safe-buffer@5.2.1: 8401 7391 resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 8402 - 8403 - safe-regex-test@1.0.3: 8404 - resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} 8405 - engines: {node: '>= 0.4'} 8406 7392 8407 7393 safer-buffer@2.1.2: 8408 7394 resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} ··· 8432 7418 resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} 8433 7419 hasBin: true 8434 7420 8435 - semver@6.3.1: 8436 - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 8437 - hasBin: true 8438 - 8439 7421 semver@7.5.4: 8440 7422 resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} 8441 7423 engines: {node: '>=10'} ··· 8448 7430 resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==} 8449 7431 engines: {node: '>= 0.4'} 8450 7432 8451 - set-function-length@1.2.2: 8452 - resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 8453 - engines: {node: '>= 0.4'} 8454 - 8455 - set-function-name@2.0.2: 8456 - resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 8457 - engines: {node: '>= 0.4'} 8458 - 8459 7433 shebang-command@2.0.0: 8460 7434 resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 8461 7435 engines: {node: '>=8'} ··· 8477 7451 8478 7452 side-channel@1.0.4: 8479 7453 resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 8480 - 8481 - side-channel@1.0.6: 8482 - resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} 8483 - engines: {node: '>= 0.4'} 8484 7454 8485 7455 signal-exit@3.0.7: 8486 7456 resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} ··· 8615 7585 string.fromcodepoint@0.2.1: 8616 7586 resolution: {integrity: sha512-n69H31OnxSGSZyZbgBlvYIXlrMhJQ0dQAX1js1QDhpaUH6zmU3QYlj07bCwCNlPOu3oRXIubGPl2gDGnHsiCqg==} 8617 7587 8618 - string.prototype.matchall@4.0.11: 8619 - resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} 8620 - engines: {node: '>= 0.4'} 8621 - 8622 - string.prototype.trim@1.2.9: 8623 - resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} 8624 - engines: {node: '>= 0.4'} 8625 - 8626 - string.prototype.trimend@1.0.8: 8627 - resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} 8628 - 8629 - string.prototype.trimstart@1.0.8: 8630 - resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} 8631 - engines: {node: '>= 0.4'} 8632 - 8633 7588 string_decoder@1.3.0: 8634 7589 resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 8635 7590 ··· 8667 7622 strip-json-comments@2.0.1: 8668 7623 resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} 8669 7624 engines: {node: '>=0.10.0'} 8670 - 8671 - strip-json-comments@3.1.1: 8672 - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 8673 - engines: {node: '>=8'} 8674 7625 8675 7626 strip-json-comments@5.0.1: 8676 7627 resolution: {integrity: sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw==} ··· 8758 7709 peerDependencies: 8759 7710 tailwindcss: '>=3.0.0 || insiders' 8760 7711 8761 - tailwindcss@3.2.4: 8762 - resolution: {integrity: sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==} 8763 - engines: {node: '>=12.13.0'} 8764 - hasBin: true 8765 - peerDependencies: 8766 - postcss: ^8.0.9 8767 - 8768 7712 tailwindcss@3.2.7: 8769 7713 resolution: {integrity: sha512-B6DLqJzc21x7wntlH/GsZwEXTBttVSl1FtCzC8WP4oBc/NKef7kaax5jeihkkCEWc831/5NDJ9gRNDK6NEioQQ==} 8770 7714 engines: {node: '>=12.13.0'} ··· 8776 7720 resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==} 8777 7721 engines: {node: '>=14.0.0'} 8778 7722 hasBin: true 8779 - 8780 - tapable@2.2.1: 8781 - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 8782 - engines: {node: '>=6'} 8783 7723 8784 7724 tar-fs@2.1.1: 8785 7725 resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} ··· 8792 7732 resolution: {integrity: sha512-resvxdc6Mgb7YEThw6G6bExlXKkv6+YbuzGg9xuXxSgxJF7Ozs+o8Y9+2R3sArdWdW8nOokoQb1yrpFB0pQK2g==} 8793 7733 engines: {node: '>=14'} 8794 7734 8795 - text-table@0.2.0: 8796 - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 8797 - 8798 7735 thenify-all@1.6.0: 8799 7736 resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 8800 7737 engines: {node: '>=0.8'} ··· 8896 7833 ts-pattern@4.3.0: 8897 7834 resolution: {integrity: sha512-pefrkcd4lmIVR0LA49Imjf9DYLK8vtWhqBPA3Ya1ir8xCW0O2yjL9dsCVvI7pCodLC5q7smNpEtDR2yVulQxOg==} 8898 7835 8899 - tsconfig-paths@3.15.0: 8900 - resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} 8901 - 8902 7836 tslib@1.14.1: 8903 7837 resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 8904 7838 ··· 8920 7854 optional: true 8921 7855 typescript: 8922 7856 optional: true 8923 - 8924 - tsutils@3.21.0: 8925 - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 8926 - engines: {node: '>= 6'} 8927 - peerDependencies: 8928 - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' 8929 7857 8930 7858 tunnel-agent@0.6.0: 8931 7859 resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} ··· 8971 7899 typanion@3.14.0: 8972 7900 resolution: {integrity: sha512-ZW/lVMRabETuYCd9O9ZvMhAh8GslSqaUjxmK/JLPCh6l73CvLBiuXswj/+7LdnWOgYsQ130FqLzFz5aGT4I3Ug==} 8973 7901 8974 - type-check@0.4.0: 8975 - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 8976 - engines: {node: '>= 0.8.0'} 8977 - 8978 7902 type-detect@4.0.8: 8979 7903 resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} 8980 7904 engines: {node: '>=4'} 8981 7905 8982 7906 type-fest@0.13.1: 8983 7907 resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} 8984 - engines: {node: '>=10'} 8985 - 8986 - type-fest@0.20.2: 8987 - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 8988 7908 engines: {node: '>=10'} 8989 7909 8990 7910 type-fest@0.21.3: ··· 9021 7941 type@2.7.2: 9022 7942 resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==} 9023 7943 9024 - typed-array-buffer@1.0.2: 9025 - resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} 9026 - engines: {node: '>= 0.4'} 9027 - 9028 - typed-array-byte-length@1.0.1: 9029 - resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} 9030 - engines: {node: '>= 0.4'} 9031 - 9032 - typed-array-byte-offset@1.0.2: 9033 - resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} 9034 - engines: {node: '>= 0.4'} 9035 - 9036 - typed-array-length@1.0.6: 9037 - resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} 9038 - engines: {node: '>= 0.4'} 9039 - 9040 - typescript@4.9.3: 9041 - resolution: {integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==} 9042 - engines: {node: '>=4.2.0'} 9043 - hasBin: true 9044 - 9045 7944 typescript@5.4.4: 9046 7945 resolution: {integrity: sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==} 9047 7946 engines: {node: '>=14.17'} ··· 9056 7955 resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} 9057 7956 engines: {node: '>=0.8.0'} 9058 7957 hasBin: true 9059 - 9060 - unbox-primitive@1.0.2: 9061 - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 9062 7958 9063 7959 undici-types@5.26.5: 9064 7960 resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} ··· 9174 8070 '@types/react': 9175 8071 optional: true 9176 8072 9177 - use-isomorphic-layout-effect@1.1.2: 9178 - resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} 9179 - peerDependencies: 9180 - '@types/react': '*' 9181 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 9182 - peerDependenciesMeta: 9183 - '@types/react': 9184 - optional: true 9185 - 9186 8073 use-sidecar@1.1.2: 9187 8074 resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} 9188 8075 engines: {node: '>=10'} ··· 9315 8202 whatwg-url@7.1.0: 9316 8203 resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} 9317 8204 9318 - which-boxed-primitive@1.0.2: 9319 - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 9320 - 9321 - which-builtin-type@1.1.3: 9322 - resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} 9323 - engines: {node: '>= 0.4'} 9324 - 9325 - which-collection@1.0.2: 9326 - resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} 9327 - engines: {node: '>= 0.4'} 9328 - 9329 8205 which-typed-array@1.1.13: 9330 8206 resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} 9331 8207 engines: {node: '>= 0.4'} 9332 8208 9333 - which-typed-array@1.1.15: 9334 - resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} 9335 - engines: {node: '>= 0.4'} 9336 - 9337 8209 which@2.0.2: 9338 8210 resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 9339 8211 engines: {node: '>= 8'} 9340 8212 hasBin: true 9341 - 9342 - word-wrap@1.2.5: 9343 - resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 9344 - engines: {node: '>=0.10.0'} 9345 8213 9346 8214 wordwrap@1.0.0: 9347 8215 resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} ··· 9462 8330 yn@3.1.1: 9463 8331 resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} 9464 8332 engines: {node: '>=6'} 9465 - 9466 - yocto-queue@0.1.0: 9467 - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 9468 - engines: {node: '>=10'} 9469 8333 9470 8334 youch@3.3.3: 9471 8335 resolution: {integrity: sha512-qSFXUk3UZBLfggAW3dJKg0BMblG5biqSF8M34E06o5CSsZtH92u9Hqmj2RzGiHDi64fhe83+4tENFP2DB6t6ZA==} ··· 10332 9196 10333 9197 '@effect-ts/system@0.57.5': {} 10334 9198 10335 - '@emotion/is-prop-valid@0.8.8': 10336 - dependencies: 10337 - '@emotion/memoize': 0.7.4 10338 - optional: true 10339 - 10340 - '@emotion/memoize@0.7.4': 10341 - optional: true 10342 - 10343 9199 '@ericcornelissen/bash-parser@0.5.2': 10344 9200 dependencies: 10345 9201 array-last: 1.3.0 ··· 10728 9584 '@esbuild/win32-x64@0.21.3': 10729 9585 optional: true 10730 9586 10731 - '@eslint-community/eslint-utils@4.4.0(eslint@8.36.0)': 10732 - dependencies: 10733 - eslint: 8.36.0 10734 - eslint-visitor-keys: 3.4.3 10735 - 10736 - '@eslint-community/regexpp@4.10.0': {} 10737 - 10738 - '@eslint/eslintrc@2.1.4': 10739 - dependencies: 10740 - ajv: 6.12.6 10741 - debug: 4.3.4 10742 - espree: 9.6.1 10743 - globals: 13.24.0 10744 - ignore: 5.2.4 10745 - import-fresh: 3.3.0 10746 - js-yaml: 4.1.0 10747 - minimatch: 3.1.2 10748 - strip-json-comments: 3.1.1 10749 - transitivePeerDependencies: 10750 - - supports-color 10751 - 10752 - '@eslint/js@8.36.0': {} 10753 - 10754 9587 '@fal-works/esbuild-plugin-global-externals@2.1.2': {} 10755 9588 10756 9589 '@fastify/busboy@2.1.1': {} 10757 9590 10758 - '@floating-ui/core@0.7.3': {} 10759 - 10760 9591 '@floating-ui/core@1.5.0': 10761 9592 dependencies: 10762 9593 '@floating-ui/utils': 0.1.6 10763 9594 10764 - '@floating-ui/dom@0.5.4': 10765 - dependencies: 10766 - '@floating-ui/core': 0.7.3 10767 - 10768 9595 '@floating-ui/dom@1.5.3': 10769 9596 dependencies: 10770 9597 '@floating-ui/core': 1.5.0 10771 9598 '@floating-ui/utils': 0.1.6 10772 - 10773 - '@floating-ui/react-dom@0.7.2(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': 10774 - dependencies: 10775 - '@floating-ui/dom': 0.5.4 10776 - react: 18.2.0 10777 - react-dom: 18.2.0(react@18.2.0) 10778 - use-isomorphic-layout-effect: 1.1.2(@types/react@18.0.25)(react@18.2.0) 10779 - transitivePeerDependencies: 10780 - - '@types/react' 10781 9599 10782 9600 '@floating-ui/react-dom@1.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': 10783 9601 dependencies: ··· 10866 9684 '@hookform/resolvers@3.3.1(react-hook-form@7.47.0(react@18.2.0))': 10867 9685 dependencies: 10868 9686 react-hook-form: 7.47.0(react@18.2.0) 10869 - 10870 - '@humanwhocodes/config-array@0.11.14': 10871 - dependencies: 10872 - '@humanwhocodes/object-schema': 2.0.3 10873 - debug: 4.3.4 10874 - minimatch: 3.1.2 10875 - transitivePeerDependencies: 10876 - - supports-color 10877 - 10878 - '@humanwhocodes/module-importer@1.0.1': {} 10879 - 10880 - '@humanwhocodes/object-schema@2.0.3': {} 10881 9687 10882 9688 '@isaacs/cliui@8.0.2': 10883 9689 dependencies: ··· 11081 9887 transitivePeerDependencies: 11082 9888 - supports-color 11083 9889 11084 - '@motionone/animation@10.17.0': 11085 - dependencies: 11086 - '@motionone/easing': 10.17.0 11087 - '@motionone/types': 10.17.0 11088 - '@motionone/utils': 10.17.0 11089 - tslib: 2.6.2 11090 - 11091 - '@motionone/dom@10.17.0': 11092 - dependencies: 11093 - '@motionone/animation': 10.17.0 11094 - '@motionone/generators': 10.17.0 11095 - '@motionone/types': 10.17.0 11096 - '@motionone/utils': 10.17.0 11097 - hey-listen: 1.0.8 11098 - tslib: 2.6.2 11099 - 11100 - '@motionone/easing@10.17.0': 11101 - dependencies: 11102 - '@motionone/utils': 10.17.0 11103 - tslib: 2.6.2 11104 - 11105 - '@motionone/generators@10.17.0': 11106 - dependencies: 11107 - '@motionone/types': 10.17.0 11108 - '@motionone/utils': 10.17.0 11109 - tslib: 2.6.2 11110 - 11111 - '@motionone/types@10.17.0': {} 11112 - 11113 - '@motionone/utils@10.17.0': 11114 - dependencies: 11115 - '@motionone/types': 10.17.0 11116 - hey-listen: 1.0.8 11117 - tslib: 2.6.2 11118 - 11119 9890 '@neon-rs/load@0.0.4': {} 11120 9891 11121 - '@next/env@13.2.4': {} 11122 - 11123 9892 '@next/env@14.2.3': {} 11124 9893 11125 - '@next/eslint-plugin-next@13.2.4': 11126 - dependencies: 11127 - glob: 7.1.7 11128 - 11129 - '@next/swc-android-arm-eabi@13.2.4': 11130 - optional: true 11131 - 11132 - '@next/swc-android-arm64@13.2.4': 11133 - optional: true 11134 - 11135 - '@next/swc-darwin-arm64@13.2.4': 11136 - optional: true 11137 - 11138 9894 '@next/swc-darwin-arm64@14.2.3': 11139 - optional: true 11140 - 11141 - '@next/swc-darwin-x64@13.2.4': 11142 9895 optional: true 11143 9896 11144 9897 '@next/swc-darwin-x64@14.2.3': 11145 - optional: true 11146 - 11147 - '@next/swc-freebsd-x64@13.2.4': 11148 - optional: true 11149 - 11150 - '@next/swc-linux-arm-gnueabihf@13.2.4': 11151 - optional: true 11152 - 11153 - '@next/swc-linux-arm64-gnu@13.2.4': 11154 9898 optional: true 11155 9899 11156 9900 '@next/swc-linux-arm64-gnu@14.2.3': 11157 9901 optional: true 11158 9902 11159 - '@next/swc-linux-arm64-musl@13.2.4': 11160 - optional: true 11161 - 11162 9903 '@next/swc-linux-arm64-musl@14.2.3': 11163 9904 optional: true 11164 9905 11165 - '@next/swc-linux-x64-gnu@13.2.4': 11166 - optional: true 11167 - 11168 9906 '@next/swc-linux-x64-gnu@14.2.3': 11169 - optional: true 11170 - 11171 - '@next/swc-linux-x64-musl@13.2.4': 11172 9907 optional: true 11173 9908 11174 9909 '@next/swc-linux-x64-musl@14.2.3': 11175 9910 optional: true 11176 9911 11177 - '@next/swc-win32-arm64-msvc@13.2.4': 11178 - optional: true 11179 - 11180 9912 '@next/swc-win32-arm64-msvc@14.2.3': 11181 9913 optional: true 11182 9914 11183 - '@next/swc-win32-ia32-msvc@13.2.4': 11184 - optional: true 11185 - 11186 9915 '@next/swc-win32-ia32-msvc@14.2.3': 11187 - optional: true 11188 - 11189 - '@next/swc-win32-x64-msvc@13.2.4': 11190 9916 optional: true 11191 9917 11192 9918 '@next/swc-win32-x64-msvc@14.2.3': ··· 11431 10157 11432 10158 '@protobufjs/utf8@1.1.0': {} 11433 10159 11434 - '@radix-ui/colors@0.1.8': {} 11435 - 11436 10160 '@radix-ui/number@1.0.1': 11437 10161 dependencies: 11438 10162 '@babel/runtime': 7.23.2 ··· 11478 10202 '@types/react': 18.2.64 11479 10203 '@types/react-dom': 18.2.21 11480 10204 11481 - '@radix-ui/react-arrow@1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': 11482 - dependencies: 11483 - '@babel/runtime': 7.23.2 11484 - '@radix-ui/react-primitive': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 11485 - react: 18.2.0 11486 - react-dom: 18.2.0(react@18.2.0) 11487 - 11488 10205 '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.21)(@types/react@18.2.64)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)': 11489 10206 dependencies: 11490 10207 '@babel/runtime': 7.23.2 ··· 11525 10242 '@types/react': 18.2.64 11526 10243 '@types/react-dom': 18.2.21 11527 10244 11528 - '@radix-ui/react-collapsible@1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': 11529 - dependencies: 11530 - '@babel/runtime': 7.23.2 11531 - '@radix-ui/primitive': 1.0.0 11532 - '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) 11533 - '@radix-ui/react-context': 1.0.0(react@18.2.0) 11534 - '@radix-ui/react-id': 1.0.0(react@18.2.0) 11535 - '@radix-ui/react-presence': 1.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 11536 - '@radix-ui/react-primitive': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 11537 - '@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0) 11538 - '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0) 11539 - react: 18.2.0 11540 - react-dom: 18.2.0(react@18.2.0) 11541 - 11542 10245 '@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.21)(@types/react@18.2.64)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)': 11543 10246 dependencies: 11544 10247 '@babel/runtime': 7.23.2 ··· 11556 10259 '@types/react': 18.2.64 11557 10260 '@types/react-dom': 18.2.21 11558 10261 11559 - '@radix-ui/react-collection@1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': 11560 - dependencies: 11561 - '@babel/runtime': 7.23.2 11562 - '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) 11563 - '@radix-ui/react-context': 1.0.0(react@18.2.0) 11564 - '@radix-ui/react-primitive': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 11565 - '@radix-ui/react-slot': 1.0.1(react@18.2.0) 11566 - react: 18.2.0 11567 - react-dom: 18.2.0(react@18.2.0) 11568 - 11569 10262 '@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.21)(@types/react@18.2.64)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)': 11570 10263 dependencies: 11571 10264 '@babel/runtime': 7.23.2 ··· 11708 10401 '@types/react': 18.2.64 11709 10402 '@types/react-dom': 18.2.21 11710 10403 11711 - '@radix-ui/react-direction@1.0.0(react@18.2.0)': 11712 - dependencies: 11713 - '@babel/runtime': 7.23.2 11714 - react: 18.2.0 11715 - 11716 10404 '@radix-ui/react-direction@1.0.1(@types/react@18.2.64)(react@18.2.0)': 11717 10405 dependencies: 11718 10406 '@babel/runtime': 7.23.2 ··· 11741 10429 '@radix-ui/react-use-escape-keydown': 1.0.0(react@18.2.0) 11742 10430 react: 18.2.0 11743 10431 react-dom: 18.3.1(react@18.2.0) 11744 - 11745 - '@radix-ui/react-dismissable-layer@1.0.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': 11746 - dependencies: 11747 - '@babel/runtime': 7.23.2 11748 - '@radix-ui/primitive': 1.0.0 11749 - '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) 11750 - '@radix-ui/react-primitive': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 11751 - '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0) 11752 - '@radix-ui/react-use-escape-keydown': 1.0.2(react@18.2.0) 11753 - react: 18.2.0 11754 - react-dom: 18.2.0(react@18.2.0) 11755 10432 11756 10433 '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.21)(@types/react@18.2.64)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)': 11757 10434 dependencies: ··· 11827 10504 react: 18.2.0 11828 10505 react-dom: 18.3.1(react@18.2.0) 11829 10506 11830 - '@radix-ui/react-focus-scope@1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': 11831 - dependencies: 11832 - '@babel/runtime': 7.23.2 11833 - '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) 11834 - '@radix-ui/react-primitive': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 11835 - '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0) 11836 - react: 18.2.0 11837 - react-dom: 18.2.0(react@18.2.0) 11838 - 11839 10507 '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.21)(@types/react@18.2.64)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)': 11840 10508 dependencies: 11841 10509 '@babel/runtime': 7.23.2 ··· 11929 10597 '@types/react': 18.2.64 11930 10598 '@types/react-dom': 18.2.21 11931 10599 11932 - '@radix-ui/react-popover@1.0.2(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': 11933 - dependencies: 11934 - '@babel/runtime': 7.23.2 11935 - '@radix-ui/primitive': 1.0.0 11936 - '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) 11937 - '@radix-ui/react-context': 1.0.0(react@18.2.0) 11938 - '@radix-ui/react-dismissable-layer': 1.0.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 11939 - '@radix-ui/react-focus-guards': 1.0.0(react@18.2.0) 11940 - '@radix-ui/react-focus-scope': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 11941 - '@radix-ui/react-id': 1.0.0(react@18.2.0) 11942 - '@radix-ui/react-popper': 1.0.1(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 11943 - '@radix-ui/react-portal': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 11944 - '@radix-ui/react-presence': 1.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 11945 - '@radix-ui/react-primitive': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 11946 - '@radix-ui/react-slot': 1.0.1(react@18.2.0) 11947 - '@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0) 11948 - aria-hidden: 1.2.3 11949 - react: 18.2.0 11950 - react-dom: 18.2.0(react@18.2.0) 11951 - react-remove-scroll: 2.5.5(@types/react@18.0.25)(react@18.2.0) 11952 - transitivePeerDependencies: 11953 - - '@types/react' 11954 - 11955 10600 '@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.21)(@types/react@18.2.64)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)': 11956 10601 dependencies: 11957 10602 '@babel/runtime': 7.23.2 ··· 11976 10621 '@types/react': 18.2.64 11977 10622 '@types/react-dom': 18.2.21 11978 10623 11979 - '@radix-ui/react-popper@1.0.1(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': 11980 - dependencies: 11981 - '@babel/runtime': 7.23.2 11982 - '@floating-ui/react-dom': 0.7.2(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 11983 - '@radix-ui/react-arrow': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 11984 - '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) 11985 - '@radix-ui/react-context': 1.0.0(react@18.2.0) 11986 - '@radix-ui/react-primitive': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 11987 - '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0) 11988 - '@radix-ui/react-use-rect': 1.0.0(react@18.2.0) 11989 - '@radix-ui/react-use-size': 1.0.0(react@18.2.0) 11990 - '@radix-ui/rect': 1.0.0 11991 - react: 18.2.0 11992 - react-dom: 18.2.0(react@18.2.0) 11993 - transitivePeerDependencies: 11994 - - '@types/react' 11995 - 11996 10624 '@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.21)(@types/react@18.2.64)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)': 11997 10625 dependencies: 11998 10626 '@babel/runtime': 7.23.2 ··· 12025 10653 '@radix-ui/react-primitive': 1.0.0(react-dom@18.3.1(react@18.2.0))(react@18.2.0) 12026 10654 react: 18.2.0 12027 10655 react-dom: 18.3.1(react@18.2.0) 12028 - 12029 - '@radix-ui/react-portal@1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': 12030 - dependencies: 12031 - '@babel/runtime': 7.23.2 12032 - '@radix-ui/react-primitive': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 12033 - react: 18.2.0 12034 - react-dom: 18.2.0(react@18.2.0) 12035 10656 12036 10657 '@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.21)(@types/react@18.2.64)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)': 12037 10658 dependencies: ··· 12094 10715 react: 18.2.0 12095 10716 react-dom: 18.3.1(react@18.2.0) 12096 10717 12097 - '@radix-ui/react-primitive@1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': 12098 - dependencies: 12099 - '@babel/runtime': 7.23.2 12100 - '@radix-ui/react-slot': 1.0.1(react@18.2.0) 12101 - react: 18.2.0 12102 - react-dom: 18.2.0(react@18.2.0) 12103 - 12104 10718 '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.21)(@types/react@18.2.64)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)': 12105 10719 dependencies: 12106 10720 '@babel/runtime': 7.23.2 ··· 12141 10755 '@types/react': 18.2.64 12142 10756 '@types/react-dom': 18.2.21 12143 10757 12144 - '@radix-ui/react-roving-focus@1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': 12145 - dependencies: 12146 - '@babel/runtime': 7.23.2 12147 - '@radix-ui/primitive': 1.0.0 12148 - '@radix-ui/react-collection': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 12149 - '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) 12150 - '@radix-ui/react-context': 1.0.0(react@18.2.0) 12151 - '@radix-ui/react-direction': 1.0.0(react@18.2.0) 12152 - '@radix-ui/react-id': 1.0.0(react@18.2.0) 12153 - '@radix-ui/react-primitive': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 12154 - '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0) 12155 - '@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0) 12156 - react: 18.2.0 12157 - react-dom: 18.2.0(react@18.2.0) 12158 - 12159 10758 '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.21)(@types/react@18.2.64)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)': 12160 10759 dependencies: 12161 10760 '@babel/runtime': 7.23.2 ··· 12220 10819 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) 12221 10820 react: 18.2.0 12222 10821 12223 - '@radix-ui/react-slot@1.0.1(react@18.2.0)': 12224 - dependencies: 12225 - '@babel/runtime': 7.23.2 12226 - '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) 12227 - react: 18.2.0 12228 - 12229 10822 '@radix-ui/react-slot@1.0.2(@types/react@18.2.64)(react@18.2.0)': 12230 10823 dependencies: 12231 10824 '@babel/runtime': 7.23.2 ··· 12267 10860 '@types/react': 18.2.64 12268 10861 '@types/react-dom': 18.2.21 12269 10862 12270 - '@radix-ui/react-toggle-group@1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': 12271 - dependencies: 12272 - '@babel/runtime': 7.23.2 12273 - '@radix-ui/primitive': 1.0.0 12274 - '@radix-ui/react-context': 1.0.0(react@18.2.0) 12275 - '@radix-ui/react-direction': 1.0.0(react@18.2.0) 12276 - '@radix-ui/react-primitive': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 12277 - '@radix-ui/react-roving-focus': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 12278 - '@radix-ui/react-toggle': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 12279 - '@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0) 12280 - react: 18.2.0 12281 - react-dom: 18.2.0(react@18.2.0) 12282 - 12283 - '@radix-ui/react-toggle@1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': 12284 - dependencies: 12285 - '@babel/runtime': 7.23.2 12286 - '@radix-ui/primitive': 1.0.0 12287 - '@radix-ui/react-primitive': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 12288 - '@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0) 12289 - react: 18.2.0 12290 - react-dom: 18.2.0(react@18.2.0) 12291 - 12292 10863 '@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.21)(@types/react@18.2.64)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)': 12293 10864 dependencies: 12294 10865 '@babel/runtime': 7.23.2 ··· 12301 10872 '@types/react': 18.2.64 12302 10873 '@types/react-dom': 18.2.21 12303 10874 12304 - '@radix-ui/react-tooltip@1.0.2(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': 12305 - dependencies: 12306 - '@babel/runtime': 7.23.2 12307 - '@radix-ui/primitive': 1.0.0 12308 - '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) 12309 - '@radix-ui/react-context': 1.0.0(react@18.2.0) 12310 - '@radix-ui/react-dismissable-layer': 1.0.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 12311 - '@radix-ui/react-id': 1.0.0(react@18.2.0) 12312 - '@radix-ui/react-popper': 1.0.1(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 12313 - '@radix-ui/react-portal': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 12314 - '@radix-ui/react-presence': 1.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 12315 - '@radix-ui/react-primitive': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 12316 - '@radix-ui/react-slot': 1.0.1(react@18.2.0) 12317 - '@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0) 12318 - '@radix-ui/react-visually-hidden': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 12319 - react: 18.2.0 12320 - react-dom: 18.2.0(react@18.2.0) 12321 - transitivePeerDependencies: 12322 - - '@types/react' 12323 - 12324 10875 '@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.21)(@types/react@18.2.64)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)': 12325 10876 dependencies: 12326 10877 '@babel/runtime': 7.23.2 ··· 12374 10925 '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0) 12375 10926 react: 18.2.0 12376 10927 12377 - '@radix-ui/react-use-escape-keydown@1.0.2(react@18.2.0)': 12378 - dependencies: 12379 - '@babel/runtime': 7.23.2 12380 - '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0) 12381 - react: 18.2.0 12382 - 12383 10928 '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.64)(react@18.2.0)': 12384 10929 dependencies: 12385 10930 '@babel/runtime': 7.23.2 ··· 12407 10952 optionalDependencies: 12408 10953 '@types/react': 18.2.64 12409 10954 12410 - '@radix-ui/react-use-rect@1.0.0(react@18.2.0)': 12411 - dependencies: 12412 - '@babel/runtime': 7.23.2 12413 - '@radix-ui/rect': 1.0.0 12414 - react: 18.2.0 12415 - 12416 10955 '@radix-ui/react-use-rect@1.0.1(@types/react@18.2.64)(react@18.2.0)': 12417 10956 dependencies: 12418 10957 '@babel/runtime': 7.23.2 ··· 12421 10960 optionalDependencies: 12422 10961 '@types/react': 18.2.64 12423 10962 12424 - '@radix-ui/react-use-size@1.0.0(react@18.2.0)': 12425 - dependencies: 12426 - '@babel/runtime': 7.23.2 12427 - '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0) 12428 - react: 18.2.0 12429 - 12430 10963 '@radix-ui/react-use-size@1.0.1(@types/react@18.2.64)(react@18.2.0)': 12431 10964 dependencies: 12432 10965 '@babel/runtime': 7.23.2 ··· 12435 10968 optionalDependencies: 12436 10969 '@types/react': 18.2.64 12437 10970 12438 - '@radix-ui/react-visually-hidden@1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': 12439 - dependencies: 12440 - '@babel/runtime': 7.23.2 12441 - '@radix-ui/react-primitive': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 12442 - react: 18.2.0 12443 - react-dom: 18.2.0(react@18.2.0) 12444 - 12445 10971 '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.21)(@types/react@18.2.64)(react-dom@18.3.1(react@18.2.0))(react@18.2.0)': 12446 10972 dependencies: 12447 10973 '@babel/runtime': 7.23.2 ··· 12451 10977 optionalDependencies: 12452 10978 '@types/react': 18.2.64 12453 10979 '@types/react-dom': 18.2.21 12454 - 12455 - '@radix-ui/rect@1.0.0': 12456 - dependencies: 12457 - '@babel/runtime': 7.23.2 12458 10980 12459 10981 '@radix-ui/rect@1.0.1': 12460 10982 dependencies: ··· 12476 10998 dependencies: 12477 10999 react: 18.2.0 12478 11000 12479 - '@react-email/components@0.0.7': 12480 - dependencies: 12481 - '@react-email/body': 0.0.2 12482 - '@react-email/button': 0.0.9 12483 - '@react-email/column': 0.0.7 12484 - '@react-email/container': 0.0.8 12485 - '@react-email/font': 0.0.2 12486 - '@react-email/head': 0.0.5 12487 - '@react-email/heading': 0.0.8 12488 - '@react-email/hr': 0.0.5 12489 - '@react-email/html': 0.0.4 12490 - '@react-email/img': 0.0.5 12491 - '@react-email/link': 0.0.5 12492 - '@react-email/preview': 0.0.6 12493 - '@react-email/render': 0.0.7 12494 - '@react-email/row': 0.0.5 12495 - '@react-email/section': 0.0.9 12496 - '@react-email/tailwind': 0.0.8 12497 - '@react-email/text': 0.0.5 12498 - react: 18.2.0 12499 - transitivePeerDependencies: 12500 - - ts-node 12501 - 12502 - '@react-email/components@0.0.7(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3))': 12503 - dependencies: 12504 - '@react-email/body': 0.0.2 12505 - '@react-email/button': 0.0.9 12506 - '@react-email/column': 0.0.7 12507 - '@react-email/container': 0.0.8 12508 - '@react-email/font': 0.0.2 12509 - '@react-email/head': 0.0.5 12510 - '@react-email/heading': 0.0.8 12511 - '@react-email/hr': 0.0.5 12512 - '@react-email/html': 0.0.4 12513 - '@react-email/img': 0.0.5 12514 - '@react-email/link': 0.0.5 12515 - '@react-email/preview': 0.0.6 12516 - '@react-email/render': 0.0.7 12517 - '@react-email/row': 0.0.5 12518 - '@react-email/section': 0.0.9 12519 - '@react-email/tailwind': 0.0.8(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3)) 12520 - '@react-email/text': 0.0.5 12521 - react: 18.2.0 12522 - transitivePeerDependencies: 12523 - - ts-node 12524 - 12525 11001 '@react-email/components@0.0.7(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.4.5))': 12526 11002 dependencies: 12527 11003 '@react-email/body': 0.0.2 ··· 12607 11083 dependencies: 12608 11084 react: 18.2.0 12609 11085 12610 - '@react-email/tailwind@0.0.8': 12611 - dependencies: 12612 - html-react-parser: 3.0.9(react@18.2.0) 12613 - react: 18.2.0 12614 - react-dom: 18.2.0(react@18.2.0) 12615 - tw-to-css: 0.0.11 12616 - transitivePeerDependencies: 12617 - - ts-node 12618 - 12619 - '@react-email/tailwind@0.0.8(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3))': 12620 - dependencies: 12621 - html-react-parser: 3.0.9(react@18.2.0) 12622 - react: 18.2.0 12623 - react-dom: 18.2.0(react@18.2.0) 12624 - tw-to-css: 0.0.11(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3)) 12625 - transitivePeerDependencies: 12626 - - ts-node 12627 - 12628 11086 '@react-email/tailwind@0.0.8(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.4.5))': 12629 11087 dependencies: 12630 11088 html-react-parser: 3.0.9(react@18.2.0) ··· 12634 11092 transitivePeerDependencies: 12635 11093 - ts-node 12636 11094 12637 - '@react-email/tailwind@0.0.9(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3))': 12638 - dependencies: 12639 - html-react-parser: 4.0.0(react@18.2.0) 12640 - react: 18.2.0 12641 - react-dom: 18.2.0(react@18.2.0) 12642 - tw-to-css: 0.0.11(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3)) 12643 - transitivePeerDependencies: 12644 - - ts-node 12645 - 12646 11095 '@react-email/tailwind@0.0.9(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.4.5))': 12647 11096 dependencies: 12648 11097 html-react-parser: 4.0.0(react@18.2.0) ··· 12674 11123 picomatch: 2.3.1 12675 11124 optionalDependencies: 12676 11125 rollup: 2.78.0 12677 - 12678 - '@rushstack/eslint-patch@1.10.3': {} 12679 11126 12680 11127 '@selderee/plugin-htmlparser2@0.10.0': 12681 11128 dependencies: ··· 13160 11607 13161 11608 '@swc/counter@0.1.3': {} 13162 11609 13163 - '@swc/helpers@0.4.14': 13164 - dependencies: 13165 - tslib: 2.6.2 13166 - 13167 11610 '@swc/helpers@0.5.3': 13168 11611 dependencies: 13169 11612 tslib: 2.6.2 ··· 13172 11615 dependencies: 13173 11616 '@swc/counter': 0.1.3 13174 11617 tslib: 2.6.2 13175 - 13176 - '@t3-oss/env-core@0.7.0(typescript@4.9.3)(zod@3.22.4)': 13177 - dependencies: 13178 - zod: 3.22.4 13179 - optionalDependencies: 13180 - typescript: 4.9.3 13181 11618 13182 11619 '@t3-oss/env-core@0.7.0(typescript@5.4.5)(zod@3.22.4)': 13183 11620 dependencies: ··· 13340 11777 13341 11778 '@types/caseless@0.12.4': {} 13342 11779 13343 - '@types/classnames@2.3.1': 13344 - dependencies: 13345 - classnames: 2.3.2 13346 - 13347 11780 '@types/cookie@0.6.0': {} 13348 11781 13349 11782 '@types/d3-array@3.0.9': {} ··· 13416 11849 '@types/tough-cookie': 4.0.4 13417 11850 parse5: 7.1.2 13418 11851 13419 - '@types/json5@0.0.29': {} 13420 - 13421 11852 '@types/long@4.0.2': {} 13422 11853 13423 11854 '@types/luxon@3.3.1': {} ··· 13438 11869 dependencies: 13439 11870 '@types/node': 20.8.0 13440 11871 13441 - '@types/node@18.11.9': {} 13442 - 13443 11872 '@types/node@20.12.12': 13444 11873 dependencies: 13445 11874 undici-types: 5.26.5 ··· 13451 11880 13452 11881 '@types/parse5@6.0.3': {} 13453 11882 13454 - '@types/prop-types@15.7.12': {} 11883 + '@types/prop-types@15.7.12': 11884 + optional: true 13455 11885 13456 11886 '@types/prop-types@15.7.9': {} 13457 11887 13458 - '@types/react-dom@18.0.9': 13459 - dependencies: 13460 - '@types/react': 18.2.64 13461 - 13462 11888 '@types/react-dom@18.2.21': 13463 11889 dependencies: 13464 11890 '@types/react': 18.2.64 13465 - 13466 - '@types/react@18.0.25': 13467 - dependencies: 13468 - '@types/prop-types': 15.7.12 13469 - '@types/scheduler': 0.16.5 13470 - csstype: 3.1.3 13471 11891 13472 11892 '@types/react@18.2.64': 13473 11893 dependencies: ··· 13525 11945 dependencies: 13526 11946 '@types/yargs-parser': 21.0.2 13527 11947 13528 - '@typescript-eslint/parser@5.62.0(eslint@8.36.0)(typescript@4.9.3)': 13529 - dependencies: 13530 - '@typescript-eslint/scope-manager': 5.62.0 13531 - '@typescript-eslint/types': 5.62.0 13532 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.3) 13533 - debug: 4.3.4 13534 - eslint: 8.36.0 13535 - optionalDependencies: 13536 - typescript: 4.9.3 13537 - transitivePeerDependencies: 13538 - - supports-color 13539 - 13540 - '@typescript-eslint/scope-manager@5.62.0': 13541 - dependencies: 13542 - '@typescript-eslint/types': 5.62.0 13543 - '@typescript-eslint/visitor-keys': 5.62.0 13544 - 13545 - '@typescript-eslint/types@5.62.0': {} 13546 - 13547 - '@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.3)': 13548 - dependencies: 13549 - '@typescript-eslint/types': 5.62.0 13550 - '@typescript-eslint/visitor-keys': 5.62.0 13551 - debug: 4.3.4 13552 - globby: 11.1.0 13553 - is-glob: 4.0.3 13554 - semver: 7.5.4 13555 - tsutils: 3.21.0(typescript@4.9.3) 13556 - optionalDependencies: 13557 - typescript: 4.9.3 13558 - transitivePeerDependencies: 13559 - - supports-color 13560 - 13561 - '@typescript-eslint/visitor-keys@5.62.0': 13562 - dependencies: 13563 - '@typescript-eslint/types': 5.62.0 13564 - eslint-visitor-keys: 3.4.3 13565 - 13566 11948 '@ungap/structured-clone@1.2.0': {} 13567 11949 13568 11950 '@unkey/api@0.16.0': {} ··· 13662 12044 optionalDependencies: 13663 12045 ajv: 8.14.0 13664 12046 13665 - ajv@6.12.6: 13666 - dependencies: 13667 - fast-deep-equal: 3.1.3 13668 - fast-json-stable-stringify: 2.1.0 13669 - json-schema-traverse: 0.4.1 13670 - uri-js: 4.4.1 13671 - 13672 12047 ajv@8.14.0: 13673 12048 dependencies: 13674 12049 fast-deep-equal: 3.1.3 ··· 13736 12111 dependencies: 13737 12112 tslib: 2.6.2 13738 12113 13739 - aria-query@5.3.0: 13740 - dependencies: 13741 - dequal: 2.0.3 13742 - 13743 12114 arity-n@1.0.4: {} 13744 12115 13745 - array-buffer-byte-length@1.0.1: 13746 - dependencies: 13747 - call-bind: 1.0.7 13748 - is-array-buffer: 3.0.4 13749 - 13750 - array-includes@3.1.8: 13751 - dependencies: 13752 - call-bind: 1.0.7 13753 - define-properties: 1.2.1 13754 - es-abstract: 1.23.3 13755 - es-object-atoms: 1.0.0 13756 - get-intrinsic: 1.2.4 13757 - is-string: 1.0.7 13758 - 13759 12116 array-last@1.3.0: 13760 12117 dependencies: 13761 12118 is-number: 4.0.0 ··· 13764 12121 13765 12122 array-union@2.1.0: {} 13766 12123 13767 - array.prototype.findlast@1.2.5: 13768 - dependencies: 13769 - call-bind: 1.0.7 13770 - define-properties: 1.2.1 13771 - es-abstract: 1.23.3 13772 - es-errors: 1.3.0 13773 - es-object-atoms: 1.0.0 13774 - es-shim-unscopables: 1.0.2 13775 - 13776 - array.prototype.findlastindex@1.2.5: 13777 - dependencies: 13778 - call-bind: 1.0.7 13779 - define-properties: 1.2.1 13780 - es-abstract: 1.23.3 13781 - es-errors: 1.3.0 13782 - es-object-atoms: 1.0.0 13783 - es-shim-unscopables: 1.0.2 13784 - 13785 - array.prototype.flat@1.3.2: 13786 - dependencies: 13787 - call-bind: 1.0.5 13788 - define-properties: 1.2.1 13789 - es-abstract: 1.23.3 13790 - es-shim-unscopables: 1.0.2 13791 - 13792 - array.prototype.flatmap@1.3.2: 13793 - dependencies: 13794 - call-bind: 1.0.5 13795 - define-properties: 1.2.1 13796 - es-abstract: 1.23.3 13797 - es-shim-unscopables: 1.0.2 13798 - 13799 - array.prototype.toreversed@1.1.2: 13800 - dependencies: 13801 - call-bind: 1.0.5 13802 - define-properties: 1.2.1 13803 - es-abstract: 1.23.3 13804 - es-shim-unscopables: 1.0.2 13805 - 13806 - array.prototype.tosorted@1.1.3: 13807 - dependencies: 13808 - call-bind: 1.0.5 13809 - define-properties: 1.2.1 13810 - es-abstract: 1.23.3 13811 - es-errors: 1.3.0 13812 - es-shim-unscopables: 1.0.2 13813 - 13814 - arraybuffer.prototype.slice@1.0.3: 13815 - dependencies: 13816 - array-buffer-byte-length: 1.0.1 13817 - call-bind: 1.0.7 13818 - define-properties: 1.2.1 13819 - es-abstract: 1.23.3 13820 - es-errors: 1.3.0 13821 - get-intrinsic: 1.2.4 13822 - is-array-buffer: 3.0.4 13823 - is-shared-array-buffer: 1.0.3 13824 - 13825 12124 arrify@1.0.1: {} 13826 12125 13827 12126 as-table@1.0.55: 13828 12127 dependencies: 13829 12128 printable-characters: 1.0.42 13830 12129 13831 - ast-types-flow@0.0.8: {} 13832 - 13833 12130 ast-types@0.13.4: 13834 12131 dependencies: 13835 12132 tslib: 2.6.2 ··· 13838 12135 13839 12136 asynckit@0.4.0: {} 13840 12137 13841 - autoprefixer@10.4.13(postcss@8.4.19): 13842 - dependencies: 13843 - browserslist: 4.23.0 13844 - caniuse-lite: 1.0.30001612 13845 - fraction.js: 4.3.7 13846 - normalize-range: 0.1.2 13847 - picocolors: 1.0.0 13848 - postcss: 8.4.19 13849 - postcss-value-parser: 4.2.0 13850 - 13851 12138 autoprefixer@10.4.19(postcss@8.4.38): 13852 12139 dependencies: 13853 12140 browserslist: 4.23.0 ··· 13860 12147 13861 12148 available-typed-arrays@1.0.5: {} 13862 12149 13863 - available-typed-arrays@1.0.7: 13864 - dependencies: 13865 - possible-typed-array-names: 1.0.0 13866 - 13867 - axe-core@4.7.0: {} 13868 - 13869 12150 axios@1.7.2: 13870 12151 dependencies: 13871 12152 follow-redirects: 1.15.6 ··· 13874 12155 transitivePeerDependencies: 13875 12156 - debug 13876 12157 13877 - axobject-query@3.2.1: 13878 - dependencies: 13879 - dequal: 2.0.3 13880 - 13881 12158 babylon@6.18.0: {} 13882 12159 13883 12160 bail@2.0.2: {} ··· 13988 12265 get-intrinsic: 1.2.1 13989 12266 set-function-length: 1.1.1 13990 12267 13991 - call-bind@1.0.7: 13992 - dependencies: 13993 - es-define-property: 1.0.0 13994 - es-errors: 1.3.0 13995 - function-bind: 1.1.2 13996 - get-intrinsic: 1.2.4 13997 - set-function-length: 1.2.2 13998 - 13999 - callsites@3.1.0: {} 14000 - 14001 12268 camel-case@3.0.0: 14002 12269 dependencies: 14003 12270 no-case: 2.3.2 ··· 14115 12382 class-variance-authority@0.7.0: 14116 12383 dependencies: 14117 12384 clsx: 2.0.0 14118 - 14119 - classnames@2.3.2: {} 14120 12385 14121 12386 clean-stack@2.2.0: {} 14122 12387 ··· 14286 12551 14287 12552 csstype@3.1.2: {} 14288 12553 14289 - csstype@3.1.3: {} 12554 + csstype@3.1.3: 12555 + optional: true 14290 12556 14291 12557 d3-array@3.2.4: 14292 12558 dependencies: ··· 14331 12597 es5-ext: 0.10.62 14332 12598 type: 1.2.0 14333 12599 14334 - damerau-levenshtein@1.0.8: {} 14335 - 14336 12600 data-uri-to-buffer@2.0.2: {} 14337 12601 14338 12602 data-uri-to-buffer@4.0.1: {} ··· 14345 12609 whatwg-mimetype: 3.0.0 14346 12610 whatwg-url: 11.0.0 14347 12611 14348 - data-view-buffer@1.0.1: 14349 - dependencies: 14350 - call-bind: 1.0.7 14351 - es-errors: 1.3.0 14352 - is-data-view: 1.0.1 14353 - 14354 - data-view-byte-length@1.0.1: 14355 - dependencies: 14356 - call-bind: 1.0.7 14357 - es-errors: 1.3.0 14358 - is-data-view: 1.0.1 14359 - 14360 - data-view-byte-offset@1.0.0: 14361 - dependencies: 14362 - call-bind: 1.0.7 14363 - es-errors: 1.3.0 14364 - is-data-view: 1.0.1 14365 - 14366 12612 date-fns-tz@2.0.0(date-fns@2.30.0): 14367 12613 dependencies: 14368 12614 date-fns: 2.30.0 ··· 14371 12617 dependencies: 14372 12618 '@babel/runtime': 7.23.2 14373 12619 14374 - debug@3.2.7: 14375 - dependencies: 14376 - ms: 2.1.2 14377 - 14378 12620 debug@4.3.4: 14379 12621 dependencies: 14380 12622 ms: 2.1.2 ··· 14402 12644 14403 12645 deep-freeze@0.0.1: {} 14404 12646 14405 - deep-is@0.1.4: {} 14406 - 14407 12647 deepmerge@4.3.1: {} 14408 12648 14409 12649 defaults@1.0.4: ··· 14416 12656 gopd: 1.0.1 14417 12657 has-property-descriptors: 1.0.0 14418 12658 14419 - define-data-property@1.1.4: 14420 - dependencies: 14421 - es-define-property: 1.0.0 14422 - es-errors: 1.3.0 14423 - gopd: 1.0.1 14424 - 14425 - define-properties@1.2.1: 14426 - dependencies: 14427 - define-data-property: 1.1.1 14428 - has-property-descriptors: 1.0.0 14429 - object-keys: 1.1.1 14430 - 14431 12659 defined@1.0.1: {} 14432 12660 14433 12661 degenerator@5.0.1: ··· 14490 12718 path-type: 4.0.0 14491 12719 14492 12720 dlv@1.1.3: {} 14493 - 14494 - doctrine@2.1.0: 14495 - dependencies: 14496 - esutils: 2.0.3 14497 - 14498 - doctrine@3.0.0: 14499 - dependencies: 14500 - esutils: 2.0.3 14501 12721 14502 12722 dom-helpers@3.4.0: 14503 12723 dependencies: ··· 14636 12856 dependencies: 14637 12857 once: 1.4.0 14638 12858 14639 - enhanced-resolve@5.16.1: 14640 - dependencies: 14641 - graceful-fs: 4.2.11 14642 - tapable: 2.2.1 14643 - 14644 12859 entities@4.5.0: {} 14645 12860 14646 12861 env-paths@3.0.0: {} ··· 14649 12864 dependencies: 14650 12865 is-arrayish: 0.2.1 14651 12866 14652 - es-abstract@1.23.3: 14653 - dependencies: 14654 - array-buffer-byte-length: 1.0.1 14655 - arraybuffer.prototype.slice: 1.0.3 14656 - available-typed-arrays: 1.0.7 14657 - call-bind: 1.0.7 14658 - data-view-buffer: 1.0.1 14659 - data-view-byte-length: 1.0.1 14660 - data-view-byte-offset: 1.0.0 14661 - es-define-property: 1.0.0 14662 - es-errors: 1.3.0 14663 - es-object-atoms: 1.0.0 14664 - es-set-tostringtag: 2.0.3 14665 - es-to-primitive: 1.2.1 14666 - function.prototype.name: 1.1.6 14667 - get-intrinsic: 1.2.4 14668 - get-symbol-description: 1.0.2 14669 - globalthis: 1.0.4 14670 - gopd: 1.0.1 14671 - has-property-descriptors: 1.0.2 14672 - has-proto: 1.0.3 14673 - has-symbols: 1.0.3 14674 - hasown: 2.0.2 14675 - internal-slot: 1.0.7 14676 - is-array-buffer: 3.0.4 14677 - is-callable: 1.2.7 14678 - is-data-view: 1.0.1 14679 - is-negative-zero: 2.0.3 14680 - is-regex: 1.1.4 14681 - is-shared-array-buffer: 1.0.3 14682 - is-string: 1.0.7 14683 - is-typed-array: 1.1.13 14684 - is-weakref: 1.0.2 14685 - object-inspect: 1.13.1 14686 - object-keys: 1.1.1 14687 - object.assign: 4.1.5 14688 - regexp.prototype.flags: 1.5.2 14689 - safe-array-concat: 1.1.2 14690 - safe-regex-test: 1.0.3 14691 - string.prototype.trim: 1.2.9 14692 - string.prototype.trimend: 1.0.8 14693 - string.prototype.trimstart: 1.0.8 14694 - typed-array-buffer: 1.0.2 14695 - typed-array-byte-length: 1.0.1 14696 - typed-array-byte-offset: 1.0.2 14697 - typed-array-length: 1.0.6 14698 - unbox-primitive: 1.0.2 14699 - which-typed-array: 1.1.15 14700 - 14701 - es-define-property@1.0.0: 14702 - dependencies: 14703 - get-intrinsic: 1.2.4 14704 - 14705 - es-errors@1.3.0: {} 14706 - 14707 - es-iterator-helpers@1.0.19: 14708 - dependencies: 14709 - call-bind: 1.0.7 14710 - define-properties: 1.2.1 14711 - es-abstract: 1.23.3 14712 - es-errors: 1.3.0 14713 - es-set-tostringtag: 2.0.3 14714 - function-bind: 1.1.2 14715 - get-intrinsic: 1.2.4 14716 - globalthis: 1.0.4 14717 - has-property-descriptors: 1.0.2 14718 - has-proto: 1.0.3 14719 - has-symbols: 1.0.3 14720 - internal-slot: 1.0.7 14721 - iterator.prototype: 1.1.2 14722 - safe-array-concat: 1.1.2 14723 - 14724 - es-object-atoms@1.0.0: 14725 - dependencies: 14726 - es-errors: 1.3.0 14727 - 14728 - es-set-tostringtag@2.0.3: 14729 - dependencies: 14730 - get-intrinsic: 1.2.4 14731 - has-tostringtag: 1.0.2 14732 - hasown: 2.0.2 14733 - 14734 - es-shim-unscopables@1.0.2: 14735 - dependencies: 14736 - hasown: 2.0.2 14737 - 14738 - es-to-primitive@1.2.1: 14739 - dependencies: 14740 - is-callable: 1.2.7 14741 - is-date-object: 1.0.5 14742 - is-symbol: 1.0.4 14743 - 14744 12867 es5-ext@0.10.62: 14745 12868 dependencies: 14746 12869 es6-iterator: 2.0.3 ··· 14917 13040 optionalDependencies: 14918 13041 source-map: 0.6.1 14919 13042 14920 - eslint-config-next@13.2.4(eslint@8.36.0)(typescript@4.9.3): 14921 - dependencies: 14922 - '@next/eslint-plugin-next': 13.2.4 14923 - '@rushstack/eslint-patch': 1.10.3 14924 - '@typescript-eslint/parser': 5.62.0(eslint@8.36.0)(typescript@4.9.3) 14925 - eslint: 8.36.0 14926 - eslint-import-resolver-node: 0.3.9 14927 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.36.0)(typescript@4.9.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.36.0))(eslint@8.36.0) 14928 - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.36.0)(typescript@4.9.3))(eslint-import-resolver-typescript@3.6.1)(eslint@8.36.0) 14929 - eslint-plugin-jsx-a11y: 6.8.0(eslint@8.36.0) 14930 - eslint-plugin-react: 7.34.1(eslint@8.36.0) 14931 - eslint-plugin-react-hooks: 4.6.2(eslint@8.36.0) 14932 - optionalDependencies: 14933 - typescript: 4.9.3 14934 - transitivePeerDependencies: 14935 - - eslint-import-resolver-webpack 14936 - - supports-color 14937 - 14938 - eslint-config-prettier@8.7.0(eslint@8.36.0): 14939 - dependencies: 14940 - eslint: 8.36.0 14941 - 14942 - eslint-import-resolver-node@0.3.9: 14943 - dependencies: 14944 - debug: 3.2.7 14945 - is-core-module: 2.13.0 14946 - resolve: 1.22.8 14947 - transitivePeerDependencies: 14948 - - supports-color 14949 - 14950 - eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.36.0)(typescript@4.9.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.36.0))(eslint@8.36.0): 14951 - dependencies: 14952 - debug: 4.3.4 14953 - enhanced-resolve: 5.16.1 14954 - eslint: 8.36.0 14955 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.36.0)(typescript@4.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.36.0)(typescript@4.9.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.36.0))(eslint@8.36.0))(eslint@8.36.0) 14956 - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.36.0)(typescript@4.9.3))(eslint-import-resolver-typescript@3.6.1)(eslint@8.36.0) 14957 - fast-glob: 3.3.2 14958 - get-tsconfig: 4.7.2 14959 - is-core-module: 2.13.0 14960 - is-glob: 4.0.3 14961 - transitivePeerDependencies: 14962 - - '@typescript-eslint/parser' 14963 - - eslint-import-resolver-node 14964 - - eslint-import-resolver-webpack 14965 - - supports-color 14966 - 14967 - eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.36.0)(typescript@4.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.36.0)(typescript@4.9.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.36.0))(eslint@8.36.0))(eslint@8.36.0): 14968 - dependencies: 14969 - debug: 3.2.7 14970 - optionalDependencies: 14971 - '@typescript-eslint/parser': 5.62.0(eslint@8.36.0)(typescript@4.9.3) 14972 - eslint: 8.36.0 14973 - eslint-import-resolver-node: 0.3.9 14974 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.36.0)(typescript@4.9.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.36.0))(eslint@8.36.0) 14975 - transitivePeerDependencies: 14976 - - supports-color 14977 - 14978 - eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.36.0)(typescript@4.9.3))(eslint-import-resolver-typescript@3.6.1)(eslint@8.36.0): 14979 - dependencies: 14980 - array-includes: 3.1.8 14981 - array.prototype.findlastindex: 1.2.5 14982 - array.prototype.flat: 1.3.2 14983 - array.prototype.flatmap: 1.3.2 14984 - debug: 3.2.7 14985 - doctrine: 2.1.0 14986 - eslint: 8.36.0 14987 - eslint-import-resolver-node: 0.3.9 14988 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.36.0)(typescript@4.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.36.0)(typescript@4.9.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.36.0))(eslint@8.36.0))(eslint@8.36.0) 14989 - hasown: 2.0.2 14990 - is-core-module: 2.13.1 14991 - is-glob: 4.0.3 14992 - minimatch: 3.1.2 14993 - object.fromentries: 2.0.8 14994 - object.groupby: 1.0.3 14995 - object.values: 1.2.0 14996 - semver: 6.3.1 14997 - tsconfig-paths: 3.15.0 14998 - optionalDependencies: 14999 - '@typescript-eslint/parser': 5.62.0(eslint@8.36.0)(typescript@4.9.3) 15000 - transitivePeerDependencies: 15001 - - eslint-import-resolver-typescript 15002 - - eslint-import-resolver-webpack 15003 - - supports-color 15004 - 15005 - eslint-plugin-jsx-a11y@6.8.0(eslint@8.36.0): 15006 - dependencies: 15007 - '@babel/runtime': 7.23.2 15008 - aria-query: 5.3.0 15009 - array-includes: 3.1.8 15010 - array.prototype.flatmap: 1.3.2 15011 - ast-types-flow: 0.0.8 15012 - axe-core: 4.7.0 15013 - axobject-query: 3.2.1 15014 - damerau-levenshtein: 1.0.8 15015 - emoji-regex: 9.2.2 15016 - es-iterator-helpers: 1.0.19 15017 - eslint: 8.36.0 15018 - hasown: 2.0.2 15019 - jsx-ast-utils: 3.3.5 15020 - language-tags: 1.0.9 15021 - minimatch: 3.1.2 15022 - object.entries: 1.1.8 15023 - object.fromentries: 2.0.8 15024 - 15025 - eslint-plugin-react-hooks@4.6.2(eslint@8.36.0): 15026 - dependencies: 15027 - eslint: 8.36.0 15028 - 15029 - eslint-plugin-react@7.34.1(eslint@8.36.0): 15030 - dependencies: 15031 - array-includes: 3.1.8 15032 - array.prototype.findlast: 1.2.5 15033 - array.prototype.flatmap: 1.3.2 15034 - array.prototype.toreversed: 1.1.2 15035 - array.prototype.tosorted: 1.1.3 15036 - doctrine: 2.1.0 15037 - es-iterator-helpers: 1.0.19 15038 - eslint: 8.36.0 15039 - estraverse: 5.3.0 15040 - jsx-ast-utils: 3.3.5 15041 - minimatch: 3.1.2 15042 - object.entries: 1.1.8 15043 - object.fromentries: 2.0.8 15044 - object.hasown: 1.1.4 15045 - object.values: 1.2.0 15046 - prop-types: 15.8.1 15047 - resolve: 2.0.0-next.5 15048 - semver: 6.3.1 15049 - string.prototype.matchall: 4.0.11 15050 - 15051 - eslint-plugin-simple-import-sort@10.0.0(eslint@8.36.0): 15052 - dependencies: 15053 - eslint: 8.36.0 15054 - 15055 - eslint-plugin-unused-imports@2.0.0(eslint@8.36.0): 15056 - dependencies: 15057 - eslint: 8.36.0 15058 - eslint-rule-composer: 0.3.0 15059 - 15060 - eslint-rule-composer@0.3.0: {} 15061 - 15062 - eslint-scope@7.2.2: 15063 - dependencies: 15064 - esrecurse: 4.3.0 15065 - estraverse: 5.3.0 15066 - 15067 - eslint-visitor-keys@3.4.3: {} 15068 - 15069 - eslint@8.36.0: 15070 - dependencies: 15071 - '@eslint-community/eslint-utils': 4.4.0(eslint@8.36.0) 15072 - '@eslint-community/regexpp': 4.10.0 15073 - '@eslint/eslintrc': 2.1.4 15074 - '@eslint/js': 8.36.0 15075 - '@humanwhocodes/config-array': 0.11.14 15076 - '@humanwhocodes/module-importer': 1.0.1 15077 - '@nodelib/fs.walk': 1.2.8 15078 - ajv: 6.12.6 15079 - chalk: 4.1.2 15080 - cross-spawn: 7.0.3 15081 - debug: 4.3.4 15082 - doctrine: 3.0.0 15083 - escape-string-regexp: 4.0.0 15084 - eslint-scope: 7.2.2 15085 - eslint-visitor-keys: 3.4.3 15086 - espree: 9.6.1 15087 - esquery: 1.5.0 15088 - esutils: 2.0.3 15089 - fast-deep-equal: 3.1.3 15090 - file-entry-cache: 6.0.1 15091 - find-up: 5.0.0 15092 - glob-parent: 6.0.2 15093 - globals: 13.24.0 15094 - grapheme-splitter: 1.0.4 15095 - ignore: 5.2.4 15096 - import-fresh: 3.3.0 15097 - imurmurhash: 0.1.4 15098 - is-glob: 4.0.3 15099 - is-path-inside: 3.0.3 15100 - js-sdsl: 4.4.2 15101 - js-yaml: 4.1.0 15102 - json-stable-stringify-without-jsonify: 1.0.1 15103 - levn: 0.4.1 15104 - lodash.merge: 4.6.2 15105 - minimatch: 3.1.2 15106 - natural-compare: 1.4.0 15107 - optionator: 0.9.4 15108 - strip-ansi: 6.0.1 15109 - strip-json-comments: 3.1.1 15110 - text-table: 0.2.0 15111 - transitivePeerDependencies: 15112 - - supports-color 15113 - 15114 - espree@9.6.1: 15115 - dependencies: 15116 - acorn: 8.11.3 15117 - acorn-jsx: 5.3.2(acorn@8.11.3) 15118 - eslint-visitor-keys: 3.4.3 15119 - 15120 13043 esprima@4.0.1: {} 15121 - 15122 - esquery@1.5.0: 15123 - dependencies: 15124 - estraverse: 5.3.0 15125 - 15126 - esrecurse@4.3.0: 15127 - dependencies: 15128 - estraverse: 5.3.0 15129 13044 15130 13045 estraverse@5.3.0: {} 15131 13046 ··· 15231 13146 merge2: 1.4.1 15232 13147 micromatch: 4.0.5 15233 13148 15234 - fast-json-stable-stringify@2.1.0: {} 15235 - 15236 - fast-levenshtein@2.0.6: {} 15237 - 15238 13149 fast-xml-parser@4.2.5: 15239 13150 dependencies: 15240 13151 strnum: 1.0.5 ··· 15257 13168 figures@3.2.0: 15258 13169 dependencies: 15259 13170 escape-string-regexp: 1.0.5 15260 - 15261 - file-entry-cache@6.0.1: 15262 - dependencies: 15263 - flat-cache: 3.2.0 15264 13171 15265 13172 file-entry-cache@8.0.0: 15266 13173 dependencies: ··· 15285 13192 locate-path: 5.0.0 15286 13193 path-exists: 4.0.0 15287 13194 15288 - find-up@5.0.0: 15289 - dependencies: 15290 - locate-path: 6.0.0 15291 - path-exists: 4.0.0 15292 - 15293 - flat-cache@3.2.0: 15294 - dependencies: 15295 - flatted: 3.3.1 15296 - keyv: 4.5.4 15297 - rimraf: 3.0.2 15298 - 15299 13195 flat-cache@4.0.1: 15300 13196 dependencies: 15301 13197 flatted: 3.3.1 ··· 15334 13230 15335 13231 fraction.js@4.3.7: {} 15336 13232 15337 - framer-motion@8.4.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0): 15338 - dependencies: 15339 - '@motionone/dom': 10.17.0 15340 - hey-listen: 1.0.8 15341 - react: 18.2.0 15342 - react-dom: 18.2.0(react@18.2.0) 15343 - tslib: 2.6.2 15344 - optionalDependencies: 15345 - '@emotion/is-prop-valid': 0.8.8 15346 - 15347 13233 fs-constants@1.0.0: {} 15348 13234 15349 13235 fs-extra@10.1.0: ··· 15376 13262 15377 13263 function-bind@1.1.2: {} 15378 13264 15379 - function.prototype.name@1.1.6: 15380 - dependencies: 15381 - call-bind: 1.0.7 15382 - define-properties: 1.2.1 15383 - es-abstract: 1.23.3 15384 - functions-have-names: 1.2.3 15385 - 15386 - functions-have-names@1.2.3: {} 15387 - 15388 13265 gaxios@6.1.1(encoding@0.1.13): 15389 13266 dependencies: 15390 13267 extend: 3.0.2 ··· 15412 13289 has-proto: 1.0.1 15413 13290 has-symbols: 1.0.3 15414 13291 15415 - get-intrinsic@1.2.4: 15416 - dependencies: 15417 - es-errors: 1.3.0 15418 - function-bind: 1.1.2 15419 - has-proto: 1.0.1 15420 - has-symbols: 1.0.3 15421 - hasown: 2.0.2 15422 - 15423 13292 get-nonce@1.0.1: {} 15424 13293 15425 13294 get-source@2.0.12: ··· 15428 13297 source-map: 0.6.1 15429 13298 15430 13299 get-stream@6.0.1: {} 15431 - 15432 - get-symbol-description@1.0.2: 15433 - dependencies: 15434 - call-bind: 1.0.7 15435 - es-errors: 1.3.0 15436 - get-intrinsic: 1.2.4 15437 13300 15438 13301 get-tsconfig@4.7.2: 15439 13302 dependencies: ··· 15479 13342 once: 1.4.0 15480 13343 path-is-absolute: 1.0.1 15481 13344 15482 - glob@7.1.7: 15483 - dependencies: 15484 - fs.realpath: 1.0.0 15485 - inflight: 1.0.6 15486 - inherits: 2.0.4 15487 - minimatch: 3.1.2 15488 - once: 1.4.0 15489 - path-is-absolute: 1.0.1 15490 - 15491 13345 glob@7.2.3: 15492 13346 dependencies: 15493 13347 fs.realpath: 1.0.0 ··· 15505 13359 minimatch: 5.1.6 15506 13360 once: 1.4.0 15507 13361 15508 - globals@13.24.0: 15509 - dependencies: 15510 - type-fest: 0.20.2 15511 - 15512 - globalthis@1.0.4: 15513 - dependencies: 15514 - define-properties: 1.2.1 15515 - gopd: 1.0.1 15516 - 15517 13362 globby@10.0.2: 15518 13363 dependencies: 15519 13364 '@types/glob': 7.2.0 ··· 15575 13420 chalk: 4.1.2 15576 13421 tinygradient: 1.1.5 15577 13422 15578 - grapheme-splitter@1.0.4: {} 15579 - 15580 13423 graphql@16.8.1: {} 15581 13424 15582 13425 gray-matter@4.0.3: ··· 15614 13457 dependencies: 15615 13458 ansi-regex: 2.1.1 15616 13459 15617 - has-bigints@1.0.2: {} 15618 - 15619 13460 has-flag@3.0.0: {} 15620 13461 15621 13462 has-flag@4.0.0: {} ··· 15628 13469 dependencies: 15629 13470 get-intrinsic: 1.2.1 15630 13471 15631 - has-property-descriptors@1.0.2: 15632 - dependencies: 15633 - es-define-property: 1.0.0 15634 - 15635 13472 has-proto@1.0.1: {} 15636 - 15637 - has-proto@1.0.3: {} 15638 13473 15639 13474 has-symbols@1.0.3: {} 15640 13475 ··· 15642 13477 dependencies: 15643 13478 has-symbols: 1.0.3 15644 13479 15645 - has-tostringtag@1.0.2: 15646 - dependencies: 15647 - has-symbols: 1.0.3 15648 - 15649 13480 has@1.0.4: {} 15650 13481 15651 13482 hash-obj@4.0.0: ··· 15656 13487 15657 13488 hash-wasm@4.10.0: {} 15658 13489 15659 - hasown@2.0.2: 15660 - dependencies: 15661 - function-bind: 1.1.2 15662 - 15663 13490 hast-to-hyperscript@10.0.3: 15664 13491 dependencies: 15665 13492 '@types/unist': 2.0.9 ··· 15774 13601 upper-case: 1.1.3 15775 13602 15776 13603 heap@0.2.7: {} 15777 - 15778 - hey-listen@1.0.8: {} 15779 13604 15780 13605 hoist-non-react-statics@3.3.2: 15781 13606 dependencies: ··· 15906 13731 imagescript@1.2.16: {} 15907 13732 15908 13733 immediate@3.0.6: {} 15909 - 15910 - import-fresh@3.3.0: 15911 - dependencies: 15912 - parent-module: 1.0.1 15913 - resolve-from: 4.0.0 15914 - 15915 - imurmurhash@0.1.4: {} 15916 13734 15917 13735 indent-string@4.0.0: {} 15918 13736 ··· 15963 13781 through: 2.3.8 15964 13782 wrap-ansi: 6.2.0 15965 13783 15966 - internal-slot@1.0.7: 15967 - dependencies: 15968 - es-errors: 1.3.0 15969 - hasown: 2.0.2 15970 - side-channel: 1.0.4 15971 - 15972 13784 internmap@2.0.3: {} 15973 13785 15974 13786 interpret@1.4.0: {} ··· 15992 13804 dependencies: 15993 13805 call-bind: 1.0.5 15994 13806 has-tostringtag: 1.0.0 15995 - 15996 - is-array-buffer@3.0.4: 15997 - dependencies: 15998 - call-bind: 1.0.7 15999 - get-intrinsic: 1.2.4 16000 13807 16001 13808 is-arrayish@0.2.1: {} 16002 13809 16003 - is-async-function@2.0.0: 16004 - dependencies: 16005 - has-tostringtag: 1.0.0 16006 - 16007 - is-bigint@1.0.4: 16008 - dependencies: 16009 - has-bigints: 1.0.2 16010 - 16011 13810 is-binary-path@2.1.0: 16012 13811 dependencies: 16013 13812 binary-extensions: 2.3.0 16014 13813 16015 - is-boolean-object@1.1.2: 16016 - dependencies: 16017 - call-bind: 1.0.7 16018 - has-tostringtag: 1.0.0 16019 - 16020 13814 is-buffer@1.1.6: {} 16021 13815 16022 13816 is-buffer@2.0.5: {} ··· 16027 13821 dependencies: 16028 13822 has: 1.0.4 16029 13823 16030 - is-core-module@2.13.1: 16031 - dependencies: 16032 - hasown: 2.0.2 16033 - 16034 - is-data-view@1.0.1: 16035 - dependencies: 16036 - is-typed-array: 1.1.13 16037 - 16038 - is-date-object@1.0.5: 16039 - dependencies: 16040 - has-tostringtag: 1.0.0 16041 - 16042 13824 is-decimal@2.0.1: {} 16043 13825 16044 13826 is-extendable@0.1.1: {} 16045 13827 16046 13828 is-extglob@2.1.1: {} 16047 - 16048 - is-finalizationregistry@1.0.2: 16049 - dependencies: 16050 - call-bind: 1.0.7 16051 13829 16052 13830 is-fullwidth-code-point@3.0.0: {} 16053 13831 ··· 16069 13847 dependencies: 16070 13848 lower-case: 1.1.4 16071 13849 16072 - is-map@2.0.3: {} 16073 - 16074 - is-negative-zero@2.0.3: {} 16075 - 16076 - is-number-object@1.0.7: 16077 - dependencies: 16078 - has-tostringtag: 1.0.0 16079 - 16080 13850 is-number@4.0.0: {} 16081 13851 16082 13852 is-number@7.0.0: {} ··· 16107 13877 dependencies: 16108 13878 '@types/estree': 1.0.3 16109 13879 16110 - is-regex@1.1.4: 16111 - dependencies: 16112 - call-bind: 1.0.7 16113 - has-tostringtag: 1.0.0 16114 - 16115 - is-set@2.0.3: {} 16116 - 16117 - is-shared-array-buffer@1.0.3: 16118 - dependencies: 16119 - call-bind: 1.0.7 16120 - 16121 13880 is-stream@2.0.1: {} 16122 - 16123 - is-string@1.0.7: 16124 - dependencies: 16125 - has-tostringtag: 1.0.0 16126 - 16127 - is-symbol@1.0.4: 16128 - dependencies: 16129 - has-symbols: 1.0.3 16130 13881 16131 13882 is-typed-array@1.1.12: 16132 13883 dependencies: 16133 13884 which-typed-array: 1.1.13 16134 13885 16135 - is-typed-array@1.1.13: 16136 - dependencies: 16137 - which-typed-array: 1.1.15 16138 - 16139 13886 is-unicode-supported@0.1.0: {} 16140 13887 16141 13888 is-upper-case@1.1.2: 16142 13889 dependencies: 16143 13890 upper-case: 1.1.3 16144 13891 16145 - is-weakmap@2.0.2: {} 16146 - 16147 - is-weakref@1.0.2: 16148 - dependencies: 16149 - call-bind: 1.0.7 16150 - 16151 - is-weakset@2.0.3: 16152 - dependencies: 16153 - call-bind: 1.0.7 16154 - get-intrinsic: 1.2.4 16155 - 16156 13892 is-what@4.1.15: {} 16157 13893 16158 13894 is-whitespace@0.3.0: {} 16159 - 16160 - isarray@2.0.5: {} 16161 13895 16162 13896 isbinaryfile@4.0.10: {} 16163 13897 ··· 16172 13906 16173 13907 iterable-lookahead@1.0.0: {} 16174 13908 16175 - iterator.prototype@1.1.2: 16176 - dependencies: 16177 - define-properties: 1.2.1 16178 - get-intrinsic: 1.2.4 16179 - has-symbols: 1.0.3 16180 - reflect.getprototypeof: 1.0.6 16181 - set-function-name: 2.0.2 16182 - 16183 13909 jackspeak@2.3.6: 16184 13910 dependencies: 16185 13911 '@isaacs/cliui': 8.0.2 ··· 16247 13973 glob: 8.1.0 16248 13974 nopt: 6.0.0 16249 13975 16250 - js-sdsl@4.4.2: {} 16251 - 16252 13976 js-tokens@4.0.0: {} 16253 13977 16254 13978 js-yaml@3.14.1: ··· 16309 14033 16310 14034 json-parse-even-better-errors@2.3.1: {} 16311 14035 16312 - json-schema-traverse@0.4.1: {} 16313 - 16314 14036 json-schema-traverse@1.0.0: {} 16315 14037 16316 - json-stable-stringify-without-jsonify@1.0.1: {} 16317 - 16318 - json5@1.0.2: 16319 - dependencies: 16320 - minimist: 1.2.8 16321 - 16322 14038 jsonc-parser@3.2.0: {} 16323 14039 16324 14040 jsonfile@4.0.0: ··· 16332 14048 graceful-fs: 4.2.11 16333 14049 16334 14050 jsonpath-plus@7.2.0: {} 16335 - 16336 - jsx-ast-utils@3.3.5: 16337 - dependencies: 16338 - array-includes: 3.1.8 16339 - array.prototype.flat: 1.3.2 16340 - object.assign: 4.1.5 16341 - object.values: 1.2.0 16342 14051 16343 14052 jwa@2.0.0: 16344 14053 dependencies: ··· 16386 14095 zod: 3.22.4 16387 14096 zod-validation-error: 3.3.0(zod@3.22.4) 16388 14097 16389 - language-subtag-registry@0.3.23: {} 16390 - 16391 - language-tags@1.0.9: 16392 - dependencies: 16393 - language-subtag-registry: 0.3.23 16394 - 16395 14098 leac@0.6.0: {} 16396 - 16397 - levn@0.4.1: 16398 - dependencies: 16399 - prelude-ls: 1.2.1 16400 - type-check: 0.4.0 16401 14099 16402 14100 libsql@0.3.10: 16403 14101 dependencies: ··· 16429 14127 locate-path@5.0.0: 16430 14128 dependencies: 16431 14129 p-locate: 4.1.0 16432 - 16433 - locate-path@6.0.0: 16434 - dependencies: 16435 - p-locate: 5.0.0 16436 14130 16437 14131 lodash.camelcase@4.3.0: {} 16438 14132 ··· 17119 14813 17120 14814 napi-build-utils@1.0.2: {} 17121 14815 17122 - natural-compare@1.4.0: {} 17123 - 17124 14816 neo-async@2.6.2: {} 17125 14817 17126 14818 netmask@2.0.2: {} ··· 17170 14862 react-dom: 18.3.1(react@18.2.0) 17171 14863 17172 14864 next-tick@1.1.0: {} 17173 - 17174 - next@13.2.4(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): 17175 - dependencies: 17176 - '@next/env': 13.2.4 17177 - '@swc/helpers': 0.4.14 17178 - caniuse-lite: 1.0.30001612 17179 - postcss: 8.4.14 17180 - react: 18.2.0 17181 - react-dom: 18.2.0(react@18.2.0) 17182 - styled-jsx: 5.1.1(react@18.2.0) 17183 - optionalDependencies: 17184 - '@next/swc-android-arm-eabi': 13.2.4 17185 - '@next/swc-android-arm64': 13.2.4 17186 - '@next/swc-darwin-arm64': 13.2.4 17187 - '@next/swc-darwin-x64': 13.2.4 17188 - '@next/swc-freebsd-x64': 13.2.4 17189 - '@next/swc-linux-arm-gnueabihf': 13.2.4 17190 - '@next/swc-linux-arm64-gnu': 13.2.4 17191 - '@next/swc-linux-arm64-musl': 13.2.4 17192 - '@next/swc-linux-x64-gnu': 13.2.4 17193 - '@next/swc-linux-x64-musl': 13.2.4 17194 - '@next/swc-win32-arm64-msvc': 13.2.4 17195 - '@next/swc-win32-ia32-msvc': 13.2.4 17196 - '@next/swc-win32-x64-msvc': 13.2.4 17197 - '@opentelemetry/api': 1.8.0 17198 - transitivePeerDependencies: 17199 - - '@babel/core' 17200 - - babel-plugin-macros 17201 14865 17202 14866 next@14.2.3(@opentelemetry/api@1.4.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): 17203 14867 dependencies: ··· 17356 15020 17357 15021 object-inspect@1.13.1: {} 17358 15022 17359 - object-keys@1.1.1: {} 17360 - 17361 15023 object-pairs@0.1.0: {} 17362 15024 17363 15025 object-values@1.0.0: {} 17364 15026 17365 - object.assign@4.1.5: 17366 - dependencies: 17367 - call-bind: 1.0.5 17368 - define-properties: 1.2.1 17369 - has-symbols: 1.0.3 17370 - object-keys: 1.1.1 17371 - 17372 - object.entries@1.1.8: 17373 - dependencies: 17374 - call-bind: 1.0.7 17375 - define-properties: 1.2.1 17376 - es-object-atoms: 1.0.0 17377 - 17378 - object.fromentries@2.0.8: 17379 - dependencies: 17380 - call-bind: 1.0.7 17381 - define-properties: 1.2.1 17382 - es-abstract: 1.23.3 17383 - es-object-atoms: 1.0.0 17384 - 17385 - object.groupby@1.0.3: 17386 - dependencies: 17387 - call-bind: 1.0.7 17388 - define-properties: 1.2.1 17389 - es-abstract: 1.23.3 17390 - 17391 - object.hasown@1.1.4: 17392 - dependencies: 17393 - define-properties: 1.2.1 17394 - es-abstract: 1.23.3 17395 - es-object-atoms: 1.0.0 17396 - 17397 - object.values@1.2.0: 17398 - dependencies: 17399 - call-bind: 1.0.7 17400 - define-properties: 1.2.1 17401 - es-object-atoms: 1.0.0 17402 - 17403 15027 once@1.4.0: 17404 15028 dependencies: 17405 15029 wrappy: 1.0.2 ··· 17414 15038 dependencies: 17415 15039 yaml: 2.3.3 17416 15040 17417 - optionator@0.9.4: 17418 - dependencies: 17419 - deep-is: 0.1.4 17420 - fast-levenshtein: 2.0.6 17421 - levn: 0.4.1 17422 - prelude-ls: 1.2.1 17423 - type-check: 0.4.0 17424 - word-wrap: 1.2.5 17425 - 17426 15041 ora@4.1.1: 17427 15042 dependencies: 17428 15043 chalk: 3.0.0 ··· 17452 15067 dependencies: 17453 15068 p-try: 2.2.0 17454 15069 17455 - p-limit@3.1.0: 17456 - dependencies: 17457 - yocto-queue: 0.1.0 17458 - 17459 15070 p-locate@4.1.0: 17460 15071 dependencies: 17461 15072 p-limit: 2.3.0 17462 15073 17463 - p-locate@5.0.0: 17464 - dependencies: 17465 - p-limit: 3.1.0 17466 - 17467 15074 p-map@3.0.0: 17468 15075 dependencies: 17469 15076 aggregate-error: 3.1.0 ··· 17496 15103 param-case@2.1.1: 17497 15104 dependencies: 17498 15105 no-case: 2.3.2 17499 - 17500 - parent-module@1.0.1: 17501 - dependencies: 17502 - callsites: 3.1.0 17503 15106 17504 15107 parse-entities@4.0.1: 17505 15108 dependencies: ··· 17604 15207 optionalDependencies: 17605 15208 fsevents: 2.3.2 17606 15209 17607 - possible-typed-array-names@1.0.0: {} 17608 - 17609 15210 postcss-css-variables@0.18.0(postcss@8.4.21): 17610 15211 dependencies: 17611 15212 balanced-match: 1.0.2 ··· 17613 15214 extend: 3.0.2 17614 15215 postcss: 8.4.21 17615 15216 17616 - postcss-import@14.1.0(postcss@8.4.19): 17617 - dependencies: 17618 - postcss: 8.4.19 17619 - postcss-value-parser: 4.2.0 17620 - read-cache: 1.0.0 17621 - resolve: 1.22.8 17622 - 17623 15217 postcss-import@14.1.0(postcss@8.4.21): 17624 15218 dependencies: 17625 15219 postcss: 8.4.21 ··· 17634 15228 read-cache: 1.0.0 17635 15229 resolve: 1.22.8 17636 15230 17637 - postcss-js@4.0.1(postcss@8.4.19): 17638 - dependencies: 17639 - camelcase-css: 2.0.1 17640 - postcss: 8.4.19 17641 - 17642 15231 postcss-js@4.0.1(postcss@8.4.21): 17643 15232 dependencies: 17644 15233 camelcase-css: 2.0.1 ··· 17649 15238 camelcase-css: 2.0.1 17650 15239 postcss: 8.4.38 17651 15240 17652 - postcss-load-config@3.1.4(postcss@8.4.19)(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3)): 17653 - dependencies: 17654 - lilconfig: 2.1.0 17655 - yaml: 1.10.2 17656 - optionalDependencies: 17657 - postcss: 8.4.19 17658 - ts-node: 10.9.2(@types/node@18.11.9)(typescript@4.9.3) 17659 - 17660 - postcss-load-config@3.1.4(postcss@8.4.21)(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3)): 17661 - dependencies: 17662 - lilconfig: 2.1.0 17663 - yaml: 1.10.2 17664 - optionalDependencies: 17665 - postcss: 8.4.21 17666 - ts-node: 10.9.2(@types/node@18.11.9)(typescript@4.9.3) 17667 - 17668 15241 postcss-load-config@3.1.4(postcss@8.4.21)(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.4.5)): 17669 15242 dependencies: 17670 15243 lilconfig: 2.1.0 ··· 17680 15253 optionalDependencies: 17681 15254 postcss: 8.4.38 17682 15255 ts-node: 10.9.2(@types/node@20.8.0)(typescript@5.4.5) 17683 - 17684 - postcss-nested@6.0.0(postcss@8.4.19): 17685 - dependencies: 17686 - postcss: 8.4.19 17687 - postcss-selector-parser: 6.0.13 17688 15256 17689 15257 postcss-nested@6.0.0(postcss@8.4.21): 17690 15258 dependencies: ··· 17708 15276 17709 15277 postcss-value-parser@4.2.0: {} 17710 15278 17711 - postcss@8.4.14: 17712 - dependencies: 17713 - nanoid: 3.3.7 17714 - picocolors: 1.0.0 17715 - source-map-js: 1.2.0 17716 - 17717 - postcss@8.4.19: 17718 - dependencies: 17719 - nanoid: 3.3.7 17720 - picocolors: 1.0.0 17721 - source-map-js: 1.2.0 17722 - 17723 15279 postcss@8.4.21: 17724 15280 dependencies: 17725 15281 nanoid: 3.3.7 ··· 17773 15329 simple-get: 4.0.1 17774 15330 tar-fs: 2.1.1 17775 15331 tunnel-agent: 0.6.0 17776 - 17777 - prelude-ls@1.2.1: {} 17778 - 17779 - prettier@2.8.4: {} 17780 15332 17781 15333 pretty-format@29.7.0: 17782 15334 dependencies: ··· 17798 15350 17799 15351 printable-characters@1.0.42: {} 17800 15352 17801 - prism-react-renderer@1.3.5(react@18.2.0): 17802 - dependencies: 17803 - react: 18.2.0 17804 - 17805 15353 progress@2.0.3: {} 17806 15354 17807 15355 prop-types@15.8.1: ··· 17943 15491 17944 15492 react-property@2.0.0: {} 17945 15493 17946 - react-remove-scroll-bar@2.3.4(@types/react@18.0.25)(react@18.2.0): 17947 - dependencies: 17948 - react: 18.2.0 17949 - react-style-singleton: 2.2.1(@types/react@18.0.25)(react@18.2.0) 17950 - tslib: 2.6.2 17951 - optionalDependencies: 17952 - '@types/react': 18.0.25 17953 - 17954 15494 react-remove-scroll-bar@2.3.4(@types/react@18.2.64)(react@18.2.0): 17955 15495 dependencies: 17956 15496 react: 18.2.0 ··· 17970 15510 optionalDependencies: 17971 15511 '@types/react': 18.2.64 17972 15512 17973 - react-remove-scroll@2.5.5(@types/react@18.0.25)(react@18.2.0): 17974 - dependencies: 17975 - react: 18.2.0 17976 - react-remove-scroll-bar: 2.3.4(@types/react@18.0.25)(react@18.2.0) 17977 - react-style-singleton: 2.2.1(@types/react@18.0.25)(react@18.2.0) 17978 - tslib: 2.6.2 17979 - use-callback-ref: 1.3.0(@types/react@18.0.25)(react@18.2.0) 17980 - use-sidecar: 1.1.2(@types/react@18.0.25)(react@18.2.0) 17981 - optionalDependencies: 17982 - '@types/react': 18.0.25 17983 - 17984 15513 react-remove-scroll@2.5.5(@types/react@18.2.64)(react@18.2.0): 17985 15514 dependencies: 17986 15515 react: 18.2.0 ··· 17999 15528 react: 18.2.0 18000 15529 react-dom: 18.2.0(react@18.2.0) 18001 15530 react-transition-group: 2.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 18002 - 18003 - react-style-singleton@2.2.1(@types/react@18.0.25)(react@18.2.0): 18004 - dependencies: 18005 - get-nonce: 1.0.1 18006 - invariant: 2.2.4 18007 - react: 18.2.0 18008 - tslib: 2.6.2 18009 - optionalDependencies: 18010 - '@types/react': 18.0.25 18011 15531 18012 15532 react-style-singleton@2.2.1(@types/react@18.2.64)(react@18.2.0): 18013 15533 dependencies: ··· 18112 15632 indent-string: 4.0.0 18113 15633 strip-indent: 3.0.0 18114 15634 18115 - reflect.getprototypeof@1.0.6: 18116 - dependencies: 18117 - call-bind: 1.0.7 18118 - define-properties: 1.2.1 18119 - es-abstract: 1.23.3 18120 - es-errors: 1.3.0 18121 - get-intrinsic: 1.2.4 18122 - globalthis: 1.0.4 18123 - which-builtin-type: 1.1.3 18124 - 18125 15635 regenerator-runtime@0.14.0: {} 18126 15636 18127 - regexp.prototype.flags@1.5.2: 18128 - dependencies: 18129 - call-bind: 1.0.7 18130 - define-properties: 1.2.1 18131 - es-errors: 1.3.0 18132 - set-function-name: 2.0.2 18133 - 18134 15637 registry-auth-token@3.3.2: 18135 15638 dependencies: 18136 15639 rc: 1.2.8 ··· 18243 15746 dependencies: 18244 15747 '@react-email/render': 0.0.9 18245 15748 18246 - resolve-from@4.0.0: {} 18247 - 18248 15749 resolve-from@5.0.0: {} 18249 15750 18250 15751 resolve-pkg-maps@1.0.0: {} ··· 18252 15753 resolve.exports@2.0.2: {} 18253 15754 18254 15755 resolve@1.22.8: 18255 - dependencies: 18256 - is-core-module: 2.13.0 18257 - path-parse: 1.0.7 18258 - supports-preserve-symlinks-flag: 1.0.0 18259 - 18260 - resolve@2.0.0-next.5: 18261 15756 dependencies: 18262 15757 is-core-module: 2.13.0 18263 15758 path-parse: 1.0.7 ··· 18333 15828 dependencies: 18334 15829 mri: 1.2.0 18335 15830 18336 - safe-array-concat@1.1.2: 18337 - dependencies: 18338 - call-bind: 1.0.7 18339 - get-intrinsic: 1.2.4 18340 - has-symbols: 1.0.3 18341 - isarray: 2.0.5 18342 - 18343 15831 safe-buffer@5.2.1: {} 18344 15832 18345 - safe-regex-test@1.0.3: 18346 - dependencies: 18347 - call-bind: 1.0.7 18348 - es-errors: 1.3.0 18349 - is-regex: 1.1.4 18350 - 18351 15833 safer-buffer@2.1.2: {} 18352 15834 18353 15835 saxes@6.0.0: ··· 18378 15860 18379 15861 semver@5.7.2: {} 18380 15862 18381 - semver@6.3.1: {} 18382 - 18383 15863 semver@7.5.4: 18384 15864 dependencies: 18385 15865 lru-cache: 6.0.0 ··· 18396 15876 gopd: 1.0.1 18397 15877 has-property-descriptors: 1.0.0 18398 15878 18399 - set-function-length@1.2.2: 18400 - dependencies: 18401 - define-data-property: 1.1.4 18402 - es-errors: 1.3.0 18403 - function-bind: 1.1.2 18404 - get-intrinsic: 1.2.4 18405 - gopd: 1.0.1 18406 - has-property-descriptors: 1.0.2 18407 - 18408 - set-function-name@2.0.2: 18409 - dependencies: 18410 - define-data-property: 1.1.4 18411 - es-errors: 1.3.0 18412 - functions-have-names: 1.2.3 18413 - has-property-descriptors: 1.0.2 18414 - 18415 15879 shebang-command@2.0.0: 18416 15880 dependencies: 18417 15881 shebang-regex: 3.0.0 ··· 18437 15901 dependencies: 18438 15902 call-bind: 1.0.5 18439 15903 get-intrinsic: 1.2.1 18440 - object-inspect: 1.13.1 18441 - 18442 - side-channel@1.0.6: 18443 - dependencies: 18444 - call-bind: 1.0.7 18445 - es-errors: 1.3.0 18446 - get-intrinsic: 1.2.4 18447 15904 object-inspect: 1.13.1 18448 15905 18449 15906 signal-exit@3.0.7: {} ··· 18575 16032 18576 16033 string.fromcodepoint@0.2.1: {} 18577 16034 18578 - string.prototype.matchall@4.0.11: 18579 - dependencies: 18580 - call-bind: 1.0.7 18581 - define-properties: 1.2.1 18582 - es-abstract: 1.23.3 18583 - es-errors: 1.3.0 18584 - es-object-atoms: 1.0.0 18585 - get-intrinsic: 1.2.4 18586 - gopd: 1.0.1 18587 - has-symbols: 1.0.3 18588 - internal-slot: 1.0.7 18589 - regexp.prototype.flags: 1.5.2 18590 - set-function-name: 2.0.2 18591 - side-channel: 1.0.6 18592 - 18593 - string.prototype.trim@1.2.9: 18594 - dependencies: 18595 - call-bind: 1.0.7 18596 - define-properties: 1.2.1 18597 - es-abstract: 1.23.3 18598 - es-object-atoms: 1.0.0 18599 - 18600 - string.prototype.trimend@1.0.8: 18601 - dependencies: 18602 - call-bind: 1.0.7 18603 - define-properties: 1.2.1 18604 - es-object-atoms: 1.0.0 18605 - 18606 - string.prototype.trimstart@1.0.8: 18607 - dependencies: 18608 - call-bind: 1.0.7 18609 - define-properties: 1.2.1 18610 - es-object-atoms: 1.0.0 18611 - 18612 16035 string_decoder@1.3.0: 18613 16036 dependencies: 18614 16037 safe-buffer: 5.2.1 ··· 18641 16064 min-indent: 1.0.1 18642 16065 18643 16066 strip-json-comments@2.0.1: {} 18644 - 18645 - strip-json-comments@3.1.1: {} 18646 16067 18647 16068 strip-json-comments@5.0.1: {} 18648 16069 ··· 18726 16147 dependencies: 18727 16148 tailwindcss: 3.4.3(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.4.5)) 18728 16149 18729 - tailwindcss@3.2.4(postcss@8.4.19)(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3)): 18730 - dependencies: 18731 - arg: 5.0.2 18732 - chokidar: 3.6.0 18733 - color-name: 1.1.4 18734 - detective: 5.2.1 18735 - didyoumean: 1.2.2 18736 - dlv: 1.1.3 18737 - fast-glob: 3.3.2 18738 - glob-parent: 6.0.2 18739 - is-glob: 4.0.3 18740 - lilconfig: 2.1.0 18741 - micromatch: 4.0.5 18742 - normalize-path: 3.0.0 18743 - object-hash: 3.0.0 18744 - picocolors: 1.0.0 18745 - postcss: 8.4.19 18746 - postcss-import: 14.1.0(postcss@8.4.19) 18747 - postcss-js: 4.0.1(postcss@8.4.19) 18748 - postcss-load-config: 3.1.4(postcss@8.4.19)(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3)) 18749 - postcss-nested: 6.0.0(postcss@8.4.19) 18750 - postcss-selector-parser: 6.0.13 18751 - postcss-value-parser: 4.2.0 18752 - quick-lru: 5.1.1 18753 - resolve: 1.22.8 18754 - transitivePeerDependencies: 18755 - - ts-node 18756 - 18757 - tailwindcss@3.2.7(postcss@8.4.21): 18758 - dependencies: 18759 - arg: 5.0.2 18760 - chokidar: 3.6.0 18761 - color-name: 1.1.4 18762 - detective: 5.2.1 18763 - didyoumean: 1.2.2 18764 - dlv: 1.1.3 18765 - fast-glob: 3.3.2 18766 - glob-parent: 6.0.2 18767 - is-glob: 4.0.3 18768 - lilconfig: 2.1.0 18769 - micromatch: 4.0.5 18770 - normalize-path: 3.0.0 18771 - object-hash: 3.0.0 18772 - picocolors: 1.0.0 18773 - postcss: 8.4.21 18774 - postcss-import: 14.1.0(postcss@8.4.21) 18775 - postcss-js: 4.0.1(postcss@8.4.21) 18776 - postcss-load-config: 3.1.4(postcss@8.4.21)(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3)) 18777 - postcss-nested: 6.0.0(postcss@8.4.21) 18778 - postcss-selector-parser: 6.0.13 18779 - postcss-value-parser: 4.2.0 18780 - quick-lru: 5.1.1 18781 - resolve: 1.22.8 18782 - transitivePeerDependencies: 18783 - - ts-node 18784 - 18785 - tailwindcss@3.2.7(postcss@8.4.21)(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3)): 18786 - dependencies: 18787 - arg: 5.0.2 18788 - chokidar: 3.6.0 18789 - color-name: 1.1.4 18790 - detective: 5.2.1 18791 - didyoumean: 1.2.2 18792 - dlv: 1.1.3 18793 - fast-glob: 3.3.2 18794 - glob-parent: 6.0.2 18795 - is-glob: 4.0.3 18796 - lilconfig: 2.1.0 18797 - micromatch: 4.0.5 18798 - normalize-path: 3.0.0 18799 - object-hash: 3.0.0 18800 - picocolors: 1.0.0 18801 - postcss: 8.4.21 18802 - postcss-import: 14.1.0(postcss@8.4.21) 18803 - postcss-js: 4.0.1(postcss@8.4.21) 18804 - postcss-load-config: 3.1.4(postcss@8.4.21)(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3)) 18805 - postcss-nested: 6.0.0(postcss@8.4.21) 18806 - postcss-selector-parser: 6.0.13 18807 - postcss-value-parser: 4.2.0 18808 - quick-lru: 5.1.1 18809 - resolve: 1.22.8 18810 - transitivePeerDependencies: 18811 - - ts-node 18812 - 18813 16150 tailwindcss@3.2.7(postcss@8.4.21)(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.4.5)): 18814 16151 dependencies: 18815 16152 arg: 5.0.2 ··· 18865 16202 transitivePeerDependencies: 18866 16203 - ts-node 18867 16204 18868 - tapable@2.2.1: {} 18869 - 18870 16205 tar-fs@2.1.1: 18871 16206 dependencies: 18872 16207 chownr: 1.1.4 ··· 18892 16227 transitivePeerDependencies: 18893 16228 - encoding 18894 16229 - supports-color 18895 - 18896 - text-table@0.2.0: {} 18897 16230 18898 16231 thenify-all@1.6.0: 18899 16232 dependencies: ··· 18987 16320 18988 16321 ts-interface-checker@0.1.13: {} 18989 16322 18990 - ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3): 18991 - dependencies: 18992 - '@cspotcode/source-map-support': 0.8.1 18993 - '@tsconfig/node10': 1.0.11 18994 - '@tsconfig/node12': 1.0.11 18995 - '@tsconfig/node14': 1.0.3 18996 - '@tsconfig/node16': 1.0.4 18997 - '@types/node': 18.11.9 18998 - acorn: 8.11.3 18999 - acorn-walk: 8.3.2 19000 - arg: 4.1.3 19001 - create-require: 1.1.1 19002 - diff: 4.0.2 19003 - make-error: 1.3.6 19004 - typescript: 4.9.3 19005 - v8-compile-cache-lib: 3.0.1 19006 - yn: 3.1.1 19007 - optional: true 19008 - 19009 16323 ts-node@10.9.2(@types/node@20.8.0)(typescript@5.4.5): 19010 16324 dependencies: 19011 16325 '@cspotcode/source-map-support': 0.8.1 ··· 19026 16340 19027 16341 ts-pattern@4.3.0: {} 19028 16342 19029 - tsconfig-paths@3.15.0: 19030 - dependencies: 19031 - '@types/json5': 0.0.29 19032 - json5: 1.0.2 19033 - minimist: 1.2.8 19034 - strip-bom: 3.0.0 19035 - 19036 16343 tslib@1.14.1: {} 19037 16344 19038 16345 tslib@2.6.2: {} ··· 19059 16366 transitivePeerDependencies: 19060 16367 - supports-color 19061 16368 - ts-node 19062 - 19063 - tsutils@3.21.0(typescript@4.9.3): 19064 - dependencies: 19065 - tslib: 1.14.1 19066 - typescript: 4.9.3 19067 16369 19068 16370 tunnel-agent@0.6.0: 19069 16371 dependencies: ··· 19095 16397 turbo-linux-arm64: 1.13.3 19096 16398 turbo-windows-64: 1.13.3 19097 16399 turbo-windows-arm64: 1.13.3 19098 - 19099 - tw-to-css@0.0.11: 19100 - dependencies: 19101 - postcss: 8.4.21 19102 - postcss-css-variables: 0.18.0(postcss@8.4.21) 19103 - tailwindcss: 3.2.7(postcss@8.4.21) 19104 - transitivePeerDependencies: 19105 - - ts-node 19106 - 19107 - tw-to-css@0.0.11(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3)): 19108 - dependencies: 19109 - postcss: 8.4.21 19110 - postcss-css-variables: 0.18.0(postcss@8.4.21) 19111 - tailwindcss: 3.2.7(postcss@8.4.21)(ts-node@10.9.2(@types/node@18.11.9)(typescript@4.9.3)) 19112 - transitivePeerDependencies: 19113 - - ts-node 19114 16400 19115 16401 tw-to-css@0.0.11(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.4.5)): 19116 16402 dependencies: ··· 19122 16408 19123 16409 typanion@3.14.0: {} 19124 16410 19125 - type-check@0.4.0: 19126 - dependencies: 19127 - prelude-ls: 1.2.1 19128 - 19129 16411 type-detect@4.0.8: {} 19130 16412 19131 16413 type-fest@0.13.1: {} 19132 - 19133 - type-fest@0.20.2: {} 19134 16414 19135 16415 type-fest@0.21.3: {} 19136 16416 ··· 19150 16430 19151 16431 type@2.7.2: {} 19152 16432 19153 - typed-array-buffer@1.0.2: 19154 - dependencies: 19155 - call-bind: 1.0.7 19156 - es-errors: 1.3.0 19157 - is-typed-array: 1.1.13 19158 - 19159 - typed-array-byte-length@1.0.1: 19160 - dependencies: 19161 - call-bind: 1.0.7 19162 - for-each: 0.3.3 19163 - gopd: 1.0.1 19164 - has-proto: 1.0.3 19165 - is-typed-array: 1.1.13 19166 - 19167 - typed-array-byte-offset@1.0.2: 19168 - dependencies: 19169 - available-typed-arrays: 1.0.7 19170 - call-bind: 1.0.7 19171 - for-each: 0.3.3 19172 - gopd: 1.0.1 19173 - has-proto: 1.0.3 19174 - is-typed-array: 1.1.13 19175 - 19176 - typed-array-length@1.0.6: 19177 - dependencies: 19178 - call-bind: 1.0.7 19179 - for-each: 0.3.3 19180 - gopd: 1.0.1 19181 - has-proto: 1.0.3 19182 - is-typed-array: 1.1.13 19183 - possible-typed-array-names: 1.0.0 19184 - 19185 - typescript@4.9.3: {} 19186 - 19187 16433 typescript@5.4.4: {} 19188 16434 19189 16435 typescript@5.4.5: {} 19190 16436 19191 16437 uglify-js@3.17.4: 19192 16438 optional: true 19193 - 19194 - unbox-primitive@1.0.2: 19195 - dependencies: 19196 - call-bind: 1.0.7 19197 - has-bigints: 1.0.2 19198 - has-symbols: 1.0.3 19199 - which-boxed-primitive: 1.0.2 19200 16439 19201 16440 undici-types@5.26.5: 19202 16441 optional: true ··· 19335 16574 punycode: 1.3.2 19336 16575 querystring: 0.2.0 19337 16576 19338 - use-callback-ref@1.3.0(@types/react@18.0.25)(react@18.2.0): 19339 - dependencies: 19340 - react: 18.2.0 19341 - tslib: 2.6.2 19342 - optionalDependencies: 19343 - '@types/react': 18.0.25 19344 - 19345 16577 use-callback-ref@1.3.0(@types/react@18.2.64)(react@18.2.0): 19346 16578 dependencies: 19347 16579 react: 18.2.0 ··· 19349 16581 optionalDependencies: 19350 16582 '@types/react': 18.2.64 19351 16583 19352 - use-isomorphic-layout-effect@1.1.2(@types/react@18.0.25)(react@18.2.0): 19353 - dependencies: 19354 - react: 18.2.0 19355 - optionalDependencies: 19356 - '@types/react': 18.0.25 19357 - 19358 - use-sidecar@1.1.2(@types/react@18.0.25)(react@18.2.0): 19359 - dependencies: 19360 - detect-node-es: 1.1.0 19361 - react: 18.2.0 19362 - tslib: 2.6.2 19363 - optionalDependencies: 19364 - '@types/react': 18.0.25 19365 - 19366 16584 use-sidecar@1.1.2(@types/react@18.2.64)(react@18.2.0): 19367 16585 dependencies: 19368 16586 detect-node-es: 1.1.0 ··· 19513 16731 tr46: 1.0.1 19514 16732 webidl-conversions: 4.0.2 19515 16733 19516 - which-boxed-primitive@1.0.2: 19517 - dependencies: 19518 - is-bigint: 1.0.4 19519 - is-boolean-object: 1.1.2 19520 - is-number-object: 1.0.7 19521 - is-string: 1.0.7 19522 - is-symbol: 1.0.4 19523 - 19524 - which-builtin-type@1.1.3: 19525 - dependencies: 19526 - function.prototype.name: 1.1.6 19527 - has-tostringtag: 1.0.0 19528 - is-async-function: 2.0.0 19529 - is-date-object: 1.0.5 19530 - is-finalizationregistry: 1.0.2 19531 - is-generator-function: 1.0.10 19532 - is-regex: 1.1.4 19533 - is-weakref: 1.0.2 19534 - isarray: 2.0.5 19535 - which-boxed-primitive: 1.0.2 19536 - which-collection: 1.0.2 19537 - which-typed-array: 1.1.13 19538 - 19539 - which-collection@1.0.2: 19540 - dependencies: 19541 - is-map: 2.0.3 19542 - is-set: 2.0.3 19543 - is-weakmap: 2.0.2 19544 - is-weakset: 2.0.3 19545 - 19546 16734 which-typed-array@1.1.13: 19547 16735 dependencies: 19548 16736 available-typed-arrays: 1.0.5 ··· 19551 16739 gopd: 1.0.1 19552 16740 has-tostringtag: 1.0.0 19553 16741 19554 - which-typed-array@1.1.15: 19555 - dependencies: 19556 - available-typed-arrays: 1.0.7 19557 - call-bind: 1.0.7 19558 - for-each: 0.3.3 19559 - gopd: 1.0.1 19560 - has-tostringtag: 1.0.2 19561 - 19562 16742 which@2.0.2: 19563 16743 dependencies: 19564 16744 isexe: 2.0.0 19565 - 19566 - word-wrap@1.2.5: {} 19567 16745 19568 16746 wordwrap@1.0.0: {} 19569 16747 ··· 19702 16880 yargs-parser: 21.1.1 19703 16881 19704 16882 yn@3.1.1: {} 19705 - 19706 - yocto-queue@0.1.0: {} 19707 16883 19708 16884 youch@3.3.3: 19709 16885 dependencies: