├── .eslintrc.json ├── app ├── favicon.ico ├── page.tsx ├── api │ ├── initiate-payment │ │ └── route.ts │ ├── auth │ │ └── [...nextauth] │ │ │ └── route.ts │ ├── verify │ │ └── route.ts │ └── confirm-payment │ │ └── route.ts ├── globals.css └── layout.tsx ├── next.config.mjs ├── .env.example ├── postcss.config.mjs ├── components ├── next-auth-provider.tsx ├── minikit-provider.tsx ├── Eruda │ ├── index.tsx │ └── eruda-provider.tsx ├── SignIn │ └── index.tsx ├── Pay │ └── index.tsx └── Verify │ └── index.tsx ├── .gitignore ├── tailwind.config.ts ├── public ├── vercel.svg └── next.svg ├── tsconfig.json ├── package.json ├── README.md └── pnpm-lock.yaml /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/minikit-next-template/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = {}; 3 | 4 | export default nextConfig; 5 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | APP_ID="INSERT_APPID" 2 | DEV_PORTAL_API_KEY="APIKEY" 3 | WLD_CLIENT_ID= 4 | WLD_CLIENT_SECRET= 5 | NEXTAUTH_URL=http://localhost:3000 6 | -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('postcss-load-config').Config} */ 2 | const config = { 3 | plugins: { 4 | tailwindcss: {}, 5 | }, 6 | }; 7 | 8 | export default config; 9 | -------------------------------------------------------------------------------- /components/next-auth-provider.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | 3 | import { SessionProvider } from "next-auth/react"; 4 | import { ReactNode } from "react"; 5 | 6 | export default function NextAuthProvider({ 7 | children, 8 | }: { 9 | children: ReactNode; 10 | }) { 11 | return {children}; 12 | } 13 | -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- 1 | import { PayBlock } from "@/components/Pay"; 2 | import { SignIn } from "@/components/SignIn"; 3 | import { VerifyBlock } from "@/components/Verify"; 4 | 5 | export default function Home() { 6 | return ( 7 |
8 | 9 | 10 | 11 |
12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /components/minikit-provider.tsx: -------------------------------------------------------------------------------- 1 | "use client"; // Required for Next.js 2 | 3 | import { MiniKit } from "@worldcoin/minikit-js"; 4 | import { ReactNode, useEffect } from "react"; 5 | 6 | export default function MiniKitProvider({ children }: { children: ReactNode }) { 7 | useEffect(() => { 8 | MiniKit.install(); 9 | console.log(MiniKit.isInstalled()); 10 | }, []); 11 | 12 | return <>{children}; 13 | } 14 | -------------------------------------------------------------------------------- /components/Eruda/index.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | 3 | import dynamic from "next/dynamic"; 4 | import { ReactNode } from "react"; 5 | 6 | const Eruda = dynamic(() => import("./eruda-provider").then((c) => c.Eruda), { 7 | ssr: false, 8 | }); 9 | 10 | export const ErudaProvider = (props: { children: ReactNode }) => { 11 | if (process.env.NEXT_PUBLIC_APP_ENV === "production") { 12 | return props.children; 13 | } 14 | return {props.children}; 15 | }; 16 | -------------------------------------------------------------------------------- /components/Eruda/eruda-provider.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | 3 | import eruda from "eruda"; 4 | import { ReactNode, useEffect } from "react"; 5 | 6 | export const Eruda = (props: { children: ReactNode }) => { 7 | useEffect(() => { 8 | if (typeof window !== "undefined") { 9 | try { 10 | eruda.init(); 11 | } catch (error) { 12 | console.log("Eruda failed to initialize", error); 13 | } 14 | } 15 | }, []); 16 | 17 | return <>{props.children}; 18 | }; 19 | -------------------------------------------------------------------------------- /app/api/initiate-payment/route.ts: -------------------------------------------------------------------------------- 1 | import { cookies } from "next/headers"; 2 | import { NextRequest, NextResponse } from "next/server"; 3 | 4 | export async function POST(req: NextRequest) { 5 | const uuid = crypto.randomUUID().replace(/-/g, ""); 6 | 7 | // TODO: Store the ID field in your database so you can verify the payment later 8 | cookies().set({ 9 | name: "payment-nonce", 10 | value: uuid, 11 | httpOnly: true, 12 | }); 13 | 14 | console.log(uuid); 15 | 16 | return NextResponse.json({ id: uuid }); 17 | } 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | .yarn/install-state.gz 8 | 9 | # testing 10 | /coverage 11 | 12 | # next.js 13 | /.next/ 14 | /out/ 15 | 16 | # production 17 | /build 18 | 19 | # misc 20 | .DS_Store 21 | *.pem 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | next-env.d.ts 37 | 38 | .env -------------------------------------------------------------------------------- /components/SignIn/index.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import { signIn, signOut, useSession } from "next-auth/react"; 3 | 4 | export const SignIn = () => { 5 | const { data: session } = useSession(); 6 | if (session) { 7 | return ( 8 | <> 9 | Signed in as {session?.user?.name?.slice(0, 10)}
10 | 11 | 12 | ); 13 | } else { 14 | return ( 15 | <> 16 | Not signed in
17 | 18 | 19 | ); 20 | } 21 | }; 22 | -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- 1 | import type { Config } from "tailwindcss"; 2 | 3 | const config: Config = { 4 | content: [ 5 | "./pages/**/*.{js,ts,jsx,tsx,mdx}", 6 | "./components/**/*.{js,ts,jsx,tsx,mdx}", 7 | "./app/**/*.{js,ts,jsx,tsx,mdx}", 8 | ], 9 | theme: { 10 | extend: { 11 | backgroundImage: { 12 | "gradient-radial": "radial-gradient(var(--tw-gradient-stops))", 13 | "gradient-conic": 14 | "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))", 15 | }, 16 | }, 17 | }, 18 | plugins: [], 19 | }; 20 | export default config; 21 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "lib": ["dom", "dom.iterable", "esnext"], 4 | "allowJs": true, 5 | "skipLibCheck": true, 6 | "strict": true, 7 | "noEmit": true, 8 | "esModuleInterop": true, 9 | "module": "esnext", 10 | "moduleResolution": "bundler", 11 | "resolveJsonModule": true, 12 | "isolatedModules": true, 13 | "jsx": "preserve", 14 | "incremental": true, 15 | "plugins": [ 16 | { 17 | "name": "next" 18 | } 19 | ], 20 | "paths": { 21 | "@/*": ["./*"] 22 | } 23 | }, 24 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 25 | "exclude": ["node_modules"] 26 | } 27 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "app-router-template", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@worldcoin/minikit-js": "1.3.0", 13 | "eruda": "^3.2.3", 14 | "next": "14.2.6", 15 | "next-auth": "^4.24.7", 16 | "react": "^18", 17 | "react-dom": "^18" 18 | }, 19 | "devDependencies": { 20 | "@types/node": "^20", 21 | "@types/react": "^18", 22 | "@types/react-dom": "^18", 23 | "eslint": "^8", 24 | "eslint-config-next": "14.2.6", 25 | "postcss": "^8", 26 | "tailwindcss": "^3.4.1", 27 | "typescript": "^5" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | :root { 6 | --foreground-rgb: 0, 0, 0; 7 | --background-start-rgb: 214, 219, 220; 8 | --background-end-rgb: 255, 255, 255; 9 | } 10 | 11 | @media (prefers-color-scheme: dark) { 12 | :root { 13 | --foreground-rgb: 255, 255, 255; 14 | --background-start-rgb: 0, 0, 0; 15 | --background-end-rgb: 0, 0, 0; 16 | } 17 | } 18 | 19 | body { 20 | color: rgb(var(--foreground-rgb)); 21 | background: linear-gradient( 22 | to bottom, 23 | transparent, 24 | rgb(var(--background-end-rgb)) 25 | ) 26 | rgb(var(--background-start-rgb)); 27 | } 28 | 29 | @layer utilities { 30 | .text-balance { 31 | text-wrap: balance; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- 1 | import NextAuth, { NextAuthOptions } from "next-auth"; 2 | 3 | const authOptions: NextAuthOptions = { 4 | secret: process.env.NEXTAUTH_SECRET, 5 | 6 | providers: [ 7 | { 8 | id: "worldcoin", 9 | name: "Worldcoin", 10 | type: "oauth", 11 | wellKnown: "https://id.worldcoin.org/.well-known/openid-configuration", 12 | authorization: { params: { scope: "openid" } }, 13 | clientId: process.env.WLD_CLIENT_ID, 14 | clientSecret: process.env.WLD_CLIENT_SECRET, 15 | idToken: true, 16 | checks: ["state", "nonce", "pkce"], 17 | profile(profile) { 18 | return { 19 | id: profile.sub, 20 | name: profile.sub, 21 | verificationLevel: 22 | profile["https://id.worldcoin.org/v1"].verification_level, 23 | }; 24 | }, 25 | }, 26 | ], 27 | callbacks: { 28 | async signIn({ user }) { 29 | return true; 30 | }, 31 | }, 32 | debug: process.env.NODE_ENV === "development", 33 | }; 34 | 35 | const handler = NextAuth(authOptions); 36 | export { handler as GET, handler as POST }; 37 | -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- 1 | import type { Metadata } from "next"; 2 | import { Inter } from "next/font/google"; 3 | import "./globals.css"; 4 | import MiniKitProvider from "@/components/minikit-provider"; 5 | import dynamic from "next/dynamic"; 6 | import NextAuthProvider from "@/components/next-auth-provider"; 7 | 8 | const inter = Inter({ subsets: ["latin"] }); 9 | 10 | export const metadata: Metadata = { 11 | title: "Create Next App", 12 | description: "Generated by create next app", 13 | }; 14 | 15 | export default function RootLayout({ 16 | children, 17 | }: Readonly<{ 18 | children: React.ReactNode; 19 | }>) { 20 | const ErudaProvider = dynamic( 21 | () => import("../components/Eruda").then((c) => c.ErudaProvider), 22 | { 23 | ssr: false, 24 | } 25 | ); 26 | return ( 27 | 28 | 29 | 30 | 31 | 32 | {children} 33 | 34 | 35 | 36 | 37 | 38 | ); 39 | } 40 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## This template provides a minimal setup to get Next.js working with MiniKit 2 | 3 | ## Setup 4 | 5 | ```bash 6 | cp .env.example .env 7 | pnpm i 8 | pnpm dev 9 | 10 | ``` 11 | 12 | To run as a mini app choose a production app in the dev portal and use NGROK to tunnel. Set the `NEXTAUTH_URL` and the redirect url if using sign in with worldcoin to that ngrok url 13 | 14 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 15 | 16 | To use the application, you'll need to: 17 | 18 | 1. **Get World ID Credentials** 19 | From the [World ID Developer Portal](https://developer.worldcoin.org/): 20 | 21 | - Create a new app to get your `APP_ID` 22 | - Get `DEV_PORTAL_API_KEY` from the API Keys section 23 | - Navigate to "Sign in with World ID" page to get: 24 | - `WLD_CLIENT_ID` 25 | - `WLD_CLIENT_SECRET` 26 | 27 | 2. **Configure Action** 28 | - In the Developer Portal, create an action in the "Incognito Actions" section 29 | - Use the same action name in `components/Verify/index.tsx` 30 | 31 | View docs: [Docs](https://docs.world.org/) 32 | 33 | [Developer Portal](https://developer.worldcoin.org/) 34 | -------------------------------------------------------------------------------- /app/api/verify/route.ts: -------------------------------------------------------------------------------- 1 | import { 2 | verifyCloudProof, 3 | IVerifyResponse, 4 | ISuccessResult, 5 | } from "@worldcoin/minikit-js"; 6 | import { NextRequest, NextResponse } from "next/server"; 7 | 8 | interface IRequestPayload { 9 | payload: ISuccessResult; 10 | action: string; 11 | signal: string | undefined; 12 | } 13 | 14 | export async function POST(req: NextRequest) { 15 | const { payload, action, signal } = (await req.json()) as IRequestPayload; 16 | const app_id = process.env.APP_ID as `app_${string}`; 17 | const verifyRes = (await verifyCloudProof( 18 | payload, 19 | app_id, 20 | action, 21 | signal 22 | )) as IVerifyResponse; // Wrapper on this 23 | 24 | console.log(verifyRes); 25 | 26 | if (verifyRes.success) { 27 | // This is where you should perform backend actions if the verification succeeds 28 | // Such as, setting a user as "verified" in a database 29 | return NextResponse.json({ verifyRes, status: 200 }); 30 | } else { 31 | // This is where you should handle errors from the World ID /verify endpoint. 32 | // Usually these errors are due to a user having already verified. 33 | return NextResponse.json({ verifyRes, status: 400 }); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/api/confirm-payment/route.ts: -------------------------------------------------------------------------------- 1 | import { MiniAppPaymentSuccessPayload } from "@worldcoin/minikit-js"; 2 | import { cookies } from "next/headers"; 3 | import { NextRequest, NextResponse } from "next/server"; 4 | 5 | interface IRequestPayload { 6 | payload: MiniAppPaymentSuccessPayload; 7 | } 8 | 9 | export async function POST(req: NextRequest) { 10 | const { payload } = (await req.json()) as IRequestPayload; 11 | 12 | // IMPORTANT: Here we should fetch the reference you created in /initiate-payment to ensure the transaction we are verifying is the same one we initiated 13 | // const reference = getReferenceFromDB(); 14 | const cookieStore = cookies(); 15 | 16 | const reference = cookieStore.get("payment-nonce")?.value; 17 | 18 | console.log(reference); 19 | 20 | if (!reference) { 21 | return NextResponse.json({ success: false }); 22 | } 23 | console.log(payload); 24 | // 1. Check that the transaction we received from the mini app is the same one we sent 25 | if (payload.reference === reference) { 26 | const response = await fetch( 27 | `https://developer.worldcoin.org/api/v2/minikit/transaction/${payload.transaction_id}?app_id=${process.env.APP_ID}`, 28 | { 29 | method: "GET", 30 | headers: { 31 | Authorization: `Bearer ${process.env.DEV_PORTAL_API_KEY}`, 32 | }, 33 | } 34 | ); 35 | const transaction = await response.json(); 36 | // 2. Here we optimistically confirm the transaction. 37 | // Otherwise, you can poll until the status == mined 38 | if (transaction.reference == reference && transaction.status != "failed") { 39 | return NextResponse.json({ success: true }); 40 | } else { 41 | return NextResponse.json({ success: false }); 42 | } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /components/Pay/index.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import { 3 | MiniKit, 4 | tokenToDecimals, 5 | Tokens, 6 | PayCommandInput, 7 | } from "@worldcoin/minikit-js"; 8 | 9 | const sendPayment = async () => { 10 | try { 11 | const res = await fetch(`/api/initiate-payment`, { 12 | method: "POST", 13 | }); 14 | 15 | const { id } = await res.json(); 16 | 17 | console.log(id); 18 | 19 | const payload: PayCommandInput = { 20 | reference: id, 21 | to: "0x0c892815f0B058E69987920A23FBb33c834289cf", // Test address 22 | tokens: [ 23 | { 24 | symbol: Tokens.WLD, 25 | token_amount: tokenToDecimals(0.5, Tokens.WLD).toString(), 26 | }, 27 | { 28 | symbol: Tokens.USDCE, 29 | token_amount: tokenToDecimals(0.1, Tokens.USDCE).toString(), 30 | }, 31 | ], 32 | description: "Watch this is a test", 33 | }; 34 | if (MiniKit.isInstalled()) { 35 | return await MiniKit.commandsAsync.pay(payload); 36 | } 37 | return null; 38 | } catch (error: unknown) { 39 | console.log("Error sending payment", error); 40 | return null; 41 | } 42 | }; 43 | 44 | const handlePay = async () => { 45 | if (!MiniKit.isInstalled()) { 46 | console.error("MiniKit is not installed"); 47 | return; 48 | } 49 | const sendPaymentResponse = await sendPayment(); 50 | const response = sendPaymentResponse?.finalPayload; 51 | if (!response) { 52 | return; 53 | } 54 | 55 | if (response.status == "success") { 56 | const res = await fetch(`${process.env.NEXTAUTH_URL}/api/confirm-payment`, { 57 | method: "POST", 58 | headers: { "Content-Type": "application/json" }, 59 | body: JSON.stringify({ payload: response }), 60 | }); 61 | const payment = await res.json(); 62 | if (payment.success) { 63 | // Congrats your payment was successful! 64 | console.log("SUCCESS!"); 65 | } else { 66 | // Payment failed 67 | console.log("FAILED!"); 68 | } 69 | } 70 | }; 71 | 72 | export const PayBlock = () => { 73 | return ( 74 | 77 | ); 78 | }; 79 | -------------------------------------------------------------------------------- /components/Verify/index.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import { 3 | MiniKit, 4 | VerificationLevel, 5 | ISuccessResult, 6 | MiniAppVerifyActionErrorPayload, 7 | IVerifyResponse, 8 | } from "@worldcoin/minikit-js"; 9 | import { useCallback, useState } from "react"; 10 | 11 | export type VerifyCommandInput = { 12 | action: string; 13 | signal?: string; 14 | verification_level?: VerificationLevel; // Default: Orb 15 | }; 16 | 17 | const verifyPayload: VerifyCommandInput = { 18 | action: "test-action", // This is your action ID from the Developer Portal 19 | signal: "", 20 | verification_level: VerificationLevel.Orb, // Orb | Device 21 | }; 22 | 23 | export const VerifyBlock = () => { 24 | const [handleVerifyResponse, setHandleVerifyResponse] = useState< 25 | MiniAppVerifyActionErrorPayload | IVerifyResponse | null 26 | >(null); 27 | 28 | const handleVerify = useCallback(async () => { 29 | if (!MiniKit.isInstalled()) { 30 | console.warn("Tried to invoke 'verify', but MiniKit is not installed."); 31 | return null; 32 | } 33 | 34 | const { finalPayload } = await MiniKit.commandsAsync.verify(verifyPayload); 35 | 36 | // no need to verify if command errored 37 | if (finalPayload.status === "error") { 38 | console.log("Command error"); 39 | console.log(finalPayload); 40 | 41 | setHandleVerifyResponse(finalPayload); 42 | return finalPayload; 43 | } 44 | 45 | // Verify the proof in the backend 46 | const verifyResponse = await fetch(`/api/verify`, { 47 | method: "POST", 48 | headers: { 49 | "Content-Type": "application/json", 50 | }, 51 | body: JSON.stringify({ 52 | payload: finalPayload as ISuccessResult, // Parses only the fields we need to verify 53 | action: verifyPayload.action, 54 | signal: verifyPayload.signal, // Optional 55 | }), 56 | }); 57 | 58 | // TODO: Handle Success! 59 | const verifyResponseJson = await verifyResponse.json(); 60 | 61 | if (verifyResponseJson.status === 200) { 62 | console.log("Verification success!"); 63 | console.log(finalPayload); 64 | } 65 | 66 | setHandleVerifyResponse(verifyResponseJson); 67 | return verifyResponseJson; 68 | }, []); 69 | 70 | return ( 71 |
72 |

Verify Block

73 | 76 | {JSON.stringify(handleVerifyResponse, null, 2)} 77 |
78 | ); 79 | }; 80 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | '@worldcoin/minikit-js': 12 | specifier: 1.3.0 13 | version: 1.3.0(@types/react@18.3.4)(react@18.3.1)(typescript@5.5.4)(viem@2.20.0(typescript@5.5.4)) 14 | eruda: 15 | specifier: ^3.2.3 16 | version: 3.2.3 17 | next: 18 | specifier: 14.2.6 19 | version: 14.2.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 20 | next-auth: 21 | specifier: ^4.24.7 22 | version: 4.24.7(next@14.2.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 23 | react: 24 | specifier: ^18 25 | version: 18.3.1 26 | react-dom: 27 | specifier: ^18 28 | version: 18.3.1(react@18.3.1) 29 | devDependencies: 30 | '@types/node': 31 | specifier: ^20 32 | version: 20.16.1 33 | '@types/react': 34 | specifier: ^18 35 | version: 18.3.4 36 | '@types/react-dom': 37 | specifier: ^18 38 | version: 18.3.0 39 | eslint: 40 | specifier: ^8 41 | version: 8.57.0 42 | eslint-config-next: 43 | specifier: 14.2.6 44 | version: 14.2.6(eslint@8.57.0)(typescript@5.5.4) 45 | postcss: 46 | specifier: ^8 47 | version: 8.4.41 48 | tailwindcss: 49 | specifier: ^3.4.1 50 | version: 3.4.10 51 | typescript: 52 | specifier: ^5 53 | version: 5.5.4 54 | 55 | packages: 56 | 57 | '@adraffy/ens-normalize@1.10.0': 58 | resolution: {integrity: sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q==} 59 | 60 | '@alloc/quick-lru@5.2.0': 61 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} 62 | engines: {node: '>=10'} 63 | 64 | '@babel/runtime@7.25.4': 65 | resolution: {integrity: sha512-DSgLeL/FNcpXuzav5wfYvHCGvynXkJbn3Zvc3823AEe9nPwW9IK4UoCSS5yGymmQzN0pCPvivtgS6/8U2kkm1w==} 66 | engines: {node: '>=6.9.0'} 67 | 68 | '@eslint-community/eslint-utils@4.4.0': 69 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 70 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 71 | peerDependencies: 72 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 73 | 74 | '@eslint-community/regexpp@4.11.0': 75 | resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==} 76 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 77 | 78 | '@eslint/eslintrc@2.1.4': 79 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} 80 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 81 | 82 | '@eslint/js@8.57.0': 83 | resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} 84 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 85 | 86 | '@humanwhocodes/config-array@0.11.14': 87 | resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} 88 | engines: {node: '>=10.10.0'} 89 | deprecated: Use @eslint/config-array instead 90 | 91 | '@humanwhocodes/module-importer@1.0.1': 92 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 93 | engines: {node: '>=12.22'} 94 | 95 | '@humanwhocodes/object-schema@2.0.3': 96 | resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} 97 | deprecated: Use @eslint/object-schema instead 98 | 99 | '@isaacs/cliui@8.0.2': 100 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 101 | engines: {node: '>=12'} 102 | 103 | '@jridgewell/gen-mapping@0.3.5': 104 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} 105 | engines: {node: '>=6.0.0'} 106 | 107 | '@jridgewell/resolve-uri@3.1.2': 108 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 109 | engines: {node: '>=6.0.0'} 110 | 111 | '@jridgewell/set-array@1.2.1': 112 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 113 | engines: {node: '>=6.0.0'} 114 | 115 | '@jridgewell/sourcemap-codec@1.5.0': 116 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 117 | 118 | '@jridgewell/trace-mapping@0.3.25': 119 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 120 | 121 | '@next/env@14.2.6': 122 | resolution: {integrity: sha512-bs5DFKV+08EjWrl8EB+KKqev1ZTNONH1vFCaHh911aaB362NnP32UDTbE9VQhyiAgbFqJsfDkSxFERNDDb3j0g==} 123 | 124 | '@next/eslint-plugin-next@14.2.6': 125 | resolution: {integrity: sha512-d3+p4AjIYmhqzYHhhmkRYYN6ZU35TwZAKX08xKRfnHkz72KhWL2kxMFsDptpZs5e8bBGdepn7vn1+9DaF8iX+A==} 126 | 127 | '@next/swc-darwin-arm64@14.2.6': 128 | resolution: {integrity: sha512-BtJZb+hYXGaVJJivpnDoi3JFVn80SHKCiiRUW3kk1SY6UCUy5dWFFSbh+tGi5lHAughzeduMyxbLt3pspvXNSg==} 129 | engines: {node: '>= 10'} 130 | cpu: [arm64] 131 | os: [darwin] 132 | 133 | '@next/swc-darwin-x64@14.2.6': 134 | resolution: {integrity: sha512-ZHRbGpH6KHarzm6qEeXKSElSXh8dS2DtDPjQt3IMwY8QVk7GbdDYjvV4NgSnDA9huGpGgnyy3tH8i5yHCqVkiQ==} 135 | engines: {node: '>= 10'} 136 | cpu: [x64] 137 | os: [darwin] 138 | 139 | '@next/swc-linux-arm64-gnu@14.2.6': 140 | resolution: {integrity: sha512-O4HqUEe3ZvKshXHcDUXn1OybN4cSZg7ZdwHJMGCXSUEVUqGTJVsOh17smqilIjooP/sIJksgl+1kcf2IWMZWHg==} 141 | engines: {node: '>= 10'} 142 | cpu: [arm64] 143 | os: [linux] 144 | 145 | '@next/swc-linux-arm64-musl@14.2.6': 146 | resolution: {integrity: sha512-xUcdhr2hfalG8RDDGSFxQ75yOG894UlmFS4K2M0jLrUhauRBGOtUOxoDVwiIIuZQwZ3Y5hDsazNjdYGB0cQ9yQ==} 147 | engines: {node: '>= 10'} 148 | cpu: [arm64] 149 | os: [linux] 150 | 151 | '@next/swc-linux-x64-gnu@14.2.6': 152 | resolution: {integrity: sha512-InosKxw8UMcA/wEib5n2QttwHSKHZHNSbGcMepBM0CTcNwpxWzX32KETmwbhKod3zrS8n1vJ+DuJKbL9ZAB0Ag==} 153 | engines: {node: '>= 10'} 154 | cpu: [x64] 155 | os: [linux] 156 | 157 | '@next/swc-linux-x64-musl@14.2.6': 158 | resolution: {integrity: sha512-d4QXfJmt5pGJ7cG8qwxKSBnO5AXuKAFYxV7qyDRHnUNvY/dgDh+oX292gATpB2AAHgjdHd5ks1wXxIEj6muLUQ==} 159 | engines: {node: '>= 10'} 160 | cpu: [x64] 161 | os: [linux] 162 | 163 | '@next/swc-win32-arm64-msvc@14.2.6': 164 | resolution: {integrity: sha512-AlgIhk4/G+PzOG1qdF1b05uKTMsuRatFlFzAi5G8RZ9h67CVSSuZSbqGHbJDlcV1tZPxq/d4G0q6qcHDKWf4aQ==} 165 | engines: {node: '>= 10'} 166 | cpu: [arm64] 167 | os: [win32] 168 | 169 | '@next/swc-win32-ia32-msvc@14.2.6': 170 | resolution: {integrity: sha512-hNukAxq7hu4o5/UjPp5jqoBEtrpCbOmnUqZSKNJG8GrUVzfq0ucdhQFVrHcLRMvQcwqqDh1a5AJN9ORnNDpgBQ==} 171 | engines: {node: '>= 10'} 172 | cpu: [ia32] 173 | os: [win32] 174 | 175 | '@next/swc-win32-x64-msvc@14.2.6': 176 | resolution: {integrity: sha512-NANtw+ead1rSDK1jxmzq3TYkl03UNK2KHqUYf1nIhNci6NkeqBD4s1njSzYGIlSHxCK+wSaL8RXZm4v+NF/pMw==} 177 | engines: {node: '>= 10'} 178 | cpu: [x64] 179 | os: [win32] 180 | 181 | '@noble/curves@1.4.0': 182 | resolution: {integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==} 183 | 184 | '@noble/hashes@1.4.0': 185 | resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} 186 | engines: {node: '>= 16'} 187 | 188 | '@nodelib/fs.scandir@2.1.5': 189 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 190 | engines: {node: '>= 8'} 191 | 192 | '@nodelib/fs.stat@2.0.5': 193 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 194 | engines: {node: '>= 8'} 195 | 196 | '@nodelib/fs.walk@1.2.8': 197 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 198 | engines: {node: '>= 8'} 199 | 200 | '@panva/hkdf@1.2.1': 201 | resolution: {integrity: sha512-6oclG6Y3PiDFcoyk8srjLfVKyMfVCKJ27JwNPViuXziFpmdz+MZnZN/aKY0JGXgYuO/VghU0jcOAZgWXZ1Dmrw==} 202 | 203 | '@pkgjs/parseargs@0.11.0': 204 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 205 | engines: {node: '>=14'} 206 | 207 | '@rushstack/eslint-patch@1.10.4': 208 | resolution: {integrity: sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==} 209 | 210 | '@scure/base@1.1.7': 211 | resolution: {integrity: sha512-PPNYBslrLNNUQ/Yad37MHYsNQtK67EhWb6WtSvNLLPo7SdVZgkUjD6Dg+5On7zNwmskf8OX7I7Nx5oN+MIWE0g==} 212 | 213 | '@scure/bip32@1.4.0': 214 | resolution: {integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==} 215 | 216 | '@scure/bip39@1.3.0': 217 | resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==} 218 | 219 | '@swc/counter@0.1.3': 220 | resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} 221 | 222 | '@swc/helpers@0.5.5': 223 | resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==} 224 | 225 | '@types/json5@0.0.29': 226 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 227 | 228 | '@types/node@20.16.1': 229 | resolution: {integrity: sha512-zJDo7wEadFtSyNz5QITDfRcrhqDvQI1xQNQ0VoizPjM/dVAODqqIUWbJPkvsxmTI0MYRGRikcdjMPhOssnPejQ==} 230 | 231 | '@types/prop-types@15.7.12': 232 | resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} 233 | 234 | '@types/react-dom@18.3.0': 235 | resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} 236 | 237 | '@types/react@18.3.4': 238 | resolution: {integrity: sha512-J7W30FTdfCxDDjmfRM+/JqLHBIyl7xUIp9kwK637FGmY7+mkSFSe6L4jpZzhj5QMfLssSDP4/i75AKkrdC7/Jw==} 239 | 240 | '@typescript-eslint/parser@7.2.0': 241 | resolution: {integrity: sha512-5FKsVcHTk6TafQKQbuIVkXq58Fnbkd2wDL4LB7AURN7RUOu1utVP+G8+6u3ZhEroW3DF6hyo3ZEXxgKgp4KeCg==} 242 | engines: {node: ^16.0.0 || >=18.0.0} 243 | peerDependencies: 244 | eslint: ^8.56.0 245 | typescript: '*' 246 | peerDependenciesMeta: 247 | typescript: 248 | optional: true 249 | 250 | '@typescript-eslint/scope-manager@7.2.0': 251 | resolution: {integrity: sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==} 252 | engines: {node: ^16.0.0 || >=18.0.0} 253 | 254 | '@typescript-eslint/types@7.2.0': 255 | resolution: {integrity: sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==} 256 | engines: {node: ^16.0.0 || >=18.0.0} 257 | 258 | '@typescript-eslint/typescript-estree@7.2.0': 259 | resolution: {integrity: sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==} 260 | engines: {node: ^16.0.0 || >=18.0.0} 261 | peerDependencies: 262 | typescript: '*' 263 | peerDependenciesMeta: 264 | typescript: 265 | optional: true 266 | 267 | '@typescript-eslint/visitor-keys@7.2.0': 268 | resolution: {integrity: sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==} 269 | engines: {node: ^16.0.0 || >=18.0.0} 270 | 271 | '@ungap/structured-clone@1.2.0': 272 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 273 | 274 | '@worldcoin/idkit-core@1.3.0': 275 | resolution: {integrity: sha512-HAgaZl8rmKq5aKeNAOXIbvhDwtpxTM4Wsy8F26LH1vMBgTe3tx/wHXmV7jsNl1p2k8XRhGmrAdqeRVK5QPhBfg==} 276 | engines: {node: '>=12.4'} 277 | 278 | '@worldcoin/minikit-js@1.3.0': 279 | resolution: {integrity: sha512-Q1XBPvG/iSpxpk8kCs8fImiIigr5qmWDg1eKodBseK/rpav3OL2j9ijl2p7AdqFGSpIeiuj0tyHq4G43E2k+eg==} 280 | engines: {node: '>= 16'} 281 | peerDependencies: 282 | viem: ^2.0.0 283 | 284 | abitype@1.0.5: 285 | resolution: {integrity: sha512-YzDhti7cjlfaBhHutMaboYB21Ha3rXR9QTkNJFzYC4kC8YclaiwPBBBJY8ejFdu2wnJeZCVZSMlQJ7fi8S6hsw==} 286 | peerDependencies: 287 | typescript: '>=5.0.4' 288 | zod: ^3 >=3.22.0 289 | peerDependenciesMeta: 290 | typescript: 291 | optional: true 292 | zod: 293 | optional: true 294 | 295 | abitype@1.0.6: 296 | resolution: {integrity: sha512-MMSqYh4+C/aVqI2RQaWqbvI4Kxo5cQV40WQ4QFtDnNzCkqChm8MuENhElmynZlO0qUy/ObkEUaXtKqYnx1Kp3A==} 297 | peerDependencies: 298 | typescript: '>=5.0.4' 299 | zod: ^3 >=3.22.0 300 | peerDependenciesMeta: 301 | typescript: 302 | optional: true 303 | zod: 304 | optional: true 305 | 306 | acorn-jsx@5.3.2: 307 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 308 | peerDependencies: 309 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 310 | 311 | acorn@8.12.1: 312 | resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} 313 | engines: {node: '>=0.4.0'} 314 | hasBin: true 315 | 316 | ajv@6.12.6: 317 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 318 | 319 | ansi-regex@5.0.1: 320 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 321 | engines: {node: '>=8'} 322 | 323 | ansi-regex@6.0.1: 324 | resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} 325 | engines: {node: '>=12'} 326 | 327 | ansi-styles@4.3.0: 328 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 329 | engines: {node: '>=8'} 330 | 331 | ansi-styles@6.2.1: 332 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 333 | engines: {node: '>=12'} 334 | 335 | any-promise@1.3.0: 336 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 337 | 338 | anymatch@3.1.3: 339 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 340 | engines: {node: '>= 8'} 341 | 342 | arg@5.0.2: 343 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 344 | 345 | argparse@2.0.1: 346 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 347 | 348 | aria-query@5.1.3: 349 | resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} 350 | 351 | array-buffer-byte-length@1.0.1: 352 | resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} 353 | engines: {node: '>= 0.4'} 354 | 355 | array-includes@3.1.8: 356 | resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} 357 | engines: {node: '>= 0.4'} 358 | 359 | array-union@2.1.0: 360 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 361 | engines: {node: '>=8'} 362 | 363 | array.prototype.findlast@1.2.5: 364 | resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} 365 | engines: {node: '>= 0.4'} 366 | 367 | array.prototype.findlastindex@1.2.5: 368 | resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} 369 | engines: {node: '>= 0.4'} 370 | 371 | array.prototype.flat@1.3.2: 372 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} 373 | engines: {node: '>= 0.4'} 374 | 375 | array.prototype.flatmap@1.3.2: 376 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} 377 | engines: {node: '>= 0.4'} 378 | 379 | array.prototype.tosorted@1.1.4: 380 | resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} 381 | engines: {node: '>= 0.4'} 382 | 383 | arraybuffer.prototype.slice@1.0.3: 384 | resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} 385 | engines: {node: '>= 0.4'} 386 | 387 | ast-types-flow@0.0.8: 388 | resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} 389 | 390 | available-typed-arrays@1.0.7: 391 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 392 | engines: {node: '>= 0.4'} 393 | 394 | axe-core@4.10.0: 395 | resolution: {integrity: sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g==} 396 | engines: {node: '>=4'} 397 | 398 | axobject-query@3.1.1: 399 | resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==} 400 | 401 | balanced-match@1.0.2: 402 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 403 | 404 | base64-js@1.5.1: 405 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 406 | 407 | binary-extensions@2.3.0: 408 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 409 | engines: {node: '>=8'} 410 | 411 | brace-expansion@1.1.11: 412 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 413 | 414 | brace-expansion@2.0.1: 415 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 416 | 417 | braces@3.0.3: 418 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 419 | engines: {node: '>=8'} 420 | 421 | browser-or-node@3.0.0-pre.0: 422 | resolution: {integrity: sha512-J6/RvtjajlHVJMBZ/Xk+5O9E8CKUHOZDz5e/eG8UBjWBSB/d/tgqFOua/xxqP+eGfgZlaJHELHnC3mdsVTTMIQ==} 423 | 424 | buffer@6.0.3: 425 | resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} 426 | 427 | busboy@1.6.0: 428 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 429 | engines: {node: '>=10.16.0'} 430 | 431 | call-bind@1.0.7: 432 | resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} 433 | engines: {node: '>= 0.4'} 434 | 435 | callsites@3.1.0: 436 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 437 | engines: {node: '>=6'} 438 | 439 | camelcase-css@2.0.1: 440 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 441 | engines: {node: '>= 6'} 442 | 443 | caniuse-lite@1.0.30001651: 444 | resolution: {integrity: sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==} 445 | 446 | chalk@4.1.2: 447 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 448 | engines: {node: '>=10'} 449 | 450 | chokidar@3.6.0: 451 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 452 | engines: {node: '>= 8.10.0'} 453 | 454 | client-only@0.0.1: 455 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} 456 | 457 | color-convert@2.0.1: 458 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 459 | engines: {node: '>=7.0.0'} 460 | 461 | color-name@1.1.4: 462 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 463 | 464 | commander@4.1.1: 465 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 466 | engines: {node: '>= 6'} 467 | 468 | concat-map@0.0.1: 469 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 470 | 471 | cookie@0.5.0: 472 | resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} 473 | engines: {node: '>= 0.6'} 474 | 475 | cross-spawn@7.0.3: 476 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 477 | engines: {node: '>= 8'} 478 | 479 | cssesc@3.0.0: 480 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 481 | engines: {node: '>=4'} 482 | hasBin: true 483 | 484 | csstype@3.1.3: 485 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 486 | 487 | damerau-levenshtein@1.0.8: 488 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 489 | 490 | data-view-buffer@1.0.1: 491 | resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} 492 | engines: {node: '>= 0.4'} 493 | 494 | data-view-byte-length@1.0.1: 495 | resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} 496 | engines: {node: '>= 0.4'} 497 | 498 | data-view-byte-offset@1.0.0: 499 | resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} 500 | engines: {node: '>= 0.4'} 501 | 502 | debug@3.2.7: 503 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 504 | peerDependencies: 505 | supports-color: '*' 506 | peerDependenciesMeta: 507 | supports-color: 508 | optional: true 509 | 510 | debug@4.3.6: 511 | resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==} 512 | engines: {node: '>=6.0'} 513 | peerDependencies: 514 | supports-color: '*' 515 | peerDependenciesMeta: 516 | supports-color: 517 | optional: true 518 | 519 | deep-equal@2.2.3: 520 | resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} 521 | engines: {node: '>= 0.4'} 522 | 523 | deep-is@0.1.4: 524 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 525 | 526 | define-data-property@1.1.4: 527 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 528 | engines: {node: '>= 0.4'} 529 | 530 | define-properties@1.2.1: 531 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 532 | engines: {node: '>= 0.4'} 533 | 534 | didyoumean@1.2.2: 535 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 536 | 537 | dir-glob@3.0.1: 538 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 539 | engines: {node: '>=8'} 540 | 541 | dlv@1.1.3: 542 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 543 | 544 | doctrine@2.1.0: 545 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 546 | engines: {node: '>=0.10.0'} 547 | 548 | doctrine@3.0.0: 549 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 550 | engines: {node: '>=6.0.0'} 551 | 552 | eastasianwidth@0.2.0: 553 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 554 | 555 | emoji-regex@8.0.0: 556 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 557 | 558 | emoji-regex@9.2.2: 559 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 560 | 561 | enhanced-resolve@5.17.1: 562 | resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} 563 | engines: {node: '>=10.13.0'} 564 | 565 | eruda@3.2.3: 566 | resolution: {integrity: sha512-304e6QPmPGoFHh+nI0BJHBuGJFCh+VoRvpaFg4FIQA1+JS+DpjWCylLdbXp1O73735+47Wuls7+qUmB3khelmg==} 567 | 568 | es-abstract@1.23.3: 569 | resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} 570 | engines: {node: '>= 0.4'} 571 | 572 | es-define-property@1.0.0: 573 | resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} 574 | engines: {node: '>= 0.4'} 575 | 576 | es-errors@1.3.0: 577 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 578 | engines: {node: '>= 0.4'} 579 | 580 | es-get-iterator@1.1.3: 581 | resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} 582 | 583 | es-iterator-helpers@1.0.19: 584 | resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==} 585 | engines: {node: '>= 0.4'} 586 | 587 | es-object-atoms@1.0.0: 588 | resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} 589 | engines: {node: '>= 0.4'} 590 | 591 | es-set-tostringtag@2.0.3: 592 | resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} 593 | engines: {node: '>= 0.4'} 594 | 595 | es-shim-unscopables@1.0.2: 596 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 597 | 598 | es-to-primitive@1.2.1: 599 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 600 | engines: {node: '>= 0.4'} 601 | 602 | escape-string-regexp@4.0.0: 603 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 604 | engines: {node: '>=10'} 605 | 606 | eslint-config-next@14.2.6: 607 | resolution: {integrity: sha512-z0URA5LO6y8lS/YLN0EDW/C4LEkDODjJzA37dvLVdzCPzuewjzTe1os5g3XclZAZrQ8X8hPaSMQ2JuVWwMmrTA==} 608 | peerDependencies: 609 | eslint: ^7.23.0 || ^8.0.0 610 | typescript: '>=3.3.1' 611 | peerDependenciesMeta: 612 | typescript: 613 | optional: true 614 | 615 | eslint-import-resolver-node@0.3.9: 616 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 617 | 618 | eslint-import-resolver-typescript@3.6.1: 619 | resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} 620 | engines: {node: ^14.18.0 || >=16.0.0} 621 | peerDependencies: 622 | eslint: '*' 623 | eslint-plugin-import: '*' 624 | 625 | eslint-module-utils@2.8.1: 626 | resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} 627 | engines: {node: '>=4'} 628 | peerDependencies: 629 | '@typescript-eslint/parser': '*' 630 | eslint: '*' 631 | eslint-import-resolver-node: '*' 632 | eslint-import-resolver-typescript: '*' 633 | eslint-import-resolver-webpack: '*' 634 | peerDependenciesMeta: 635 | '@typescript-eslint/parser': 636 | optional: true 637 | eslint: 638 | optional: true 639 | eslint-import-resolver-node: 640 | optional: true 641 | eslint-import-resolver-typescript: 642 | optional: true 643 | eslint-import-resolver-webpack: 644 | optional: true 645 | 646 | eslint-plugin-import@2.29.1: 647 | resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} 648 | engines: {node: '>=4'} 649 | peerDependencies: 650 | '@typescript-eslint/parser': '*' 651 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 652 | peerDependenciesMeta: 653 | '@typescript-eslint/parser': 654 | optional: true 655 | 656 | eslint-plugin-jsx-a11y@6.9.0: 657 | resolution: {integrity: sha512-nOFOCaJG2pYqORjK19lqPqxMO/JpvdCZdPtNdxY3kvom3jTvkAbOvQvD8wuD0G8BYR0IGAGYDlzqWJOh/ybn2g==} 658 | engines: {node: '>=4.0'} 659 | peerDependencies: 660 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 661 | 662 | eslint-plugin-react-hooks@4.6.2: 663 | resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} 664 | engines: {node: '>=10'} 665 | peerDependencies: 666 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 667 | 668 | eslint-plugin-react@7.35.0: 669 | resolution: {integrity: sha512-v501SSMOWv8gerHkk+IIQBkcGRGrO2nfybfj5pLxuJNFTPxxA3PSryhXTK+9pNbtkggheDdsC0E9Q8CuPk6JKA==} 670 | engines: {node: '>=4'} 671 | peerDependencies: 672 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 673 | 674 | eslint-scope@7.2.2: 675 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 676 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 677 | 678 | eslint-visitor-keys@3.4.3: 679 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 680 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 681 | 682 | eslint@8.57.0: 683 | resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} 684 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 685 | hasBin: true 686 | 687 | espree@9.6.1: 688 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 689 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 690 | 691 | esquery@1.6.0: 692 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 693 | engines: {node: '>=0.10'} 694 | 695 | esrecurse@4.3.0: 696 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 697 | engines: {node: '>=4.0'} 698 | 699 | estraverse@5.3.0: 700 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 701 | engines: {node: '>=4.0'} 702 | 703 | esutils@2.0.3: 704 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 705 | engines: {node: '>=0.10.0'} 706 | 707 | fast-deep-equal@3.1.3: 708 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 709 | 710 | fast-glob@3.3.2: 711 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 712 | engines: {node: '>=8.6.0'} 713 | 714 | fast-json-stable-stringify@2.1.0: 715 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 716 | 717 | fast-levenshtein@2.0.6: 718 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 719 | 720 | fastq@1.17.1: 721 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 722 | 723 | file-entry-cache@6.0.1: 724 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 725 | engines: {node: ^10.12.0 || >=12.0.0} 726 | 727 | fill-range@7.1.1: 728 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 729 | engines: {node: '>=8'} 730 | 731 | find-up@5.0.0: 732 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 733 | engines: {node: '>=10'} 734 | 735 | flat-cache@3.2.0: 736 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} 737 | engines: {node: ^10.12.0 || >=12.0.0} 738 | 739 | flatted@3.3.1: 740 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} 741 | 742 | for-each@0.3.3: 743 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 744 | 745 | foreground-child@3.3.0: 746 | resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} 747 | engines: {node: '>=14'} 748 | 749 | fs.realpath@1.0.0: 750 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 751 | 752 | fsevents@2.3.3: 753 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 754 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 755 | os: [darwin] 756 | 757 | function-bind@1.1.2: 758 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 759 | 760 | function.prototype.name@1.1.6: 761 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} 762 | engines: {node: '>= 0.4'} 763 | 764 | functions-have-names@1.2.3: 765 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 766 | 767 | get-intrinsic@1.2.4: 768 | resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} 769 | engines: {node: '>= 0.4'} 770 | 771 | get-symbol-description@1.0.2: 772 | resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} 773 | engines: {node: '>= 0.4'} 774 | 775 | get-tsconfig@4.7.6: 776 | resolution: {integrity: sha512-ZAqrLlu18NbDdRaHq+AKXzAmqIUPswPWKUchfytdAjiRFnCe5ojG2bstg6mRiZabkKfCoL/e98pbBELIV/YCeA==} 777 | 778 | glob-parent@5.1.2: 779 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 780 | engines: {node: '>= 6'} 781 | 782 | glob-parent@6.0.2: 783 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 784 | engines: {node: '>=10.13.0'} 785 | 786 | glob@10.3.10: 787 | resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} 788 | engines: {node: '>=16 || 14 >=14.17'} 789 | hasBin: true 790 | 791 | glob@10.4.5: 792 | resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} 793 | hasBin: true 794 | 795 | glob@7.2.3: 796 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 797 | deprecated: Glob versions prior to v9 are no longer supported 798 | 799 | globals@13.24.0: 800 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 801 | engines: {node: '>=8'} 802 | 803 | globalthis@1.0.4: 804 | resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} 805 | engines: {node: '>= 0.4'} 806 | 807 | globby@11.1.0: 808 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 809 | engines: {node: '>=10'} 810 | 811 | gopd@1.0.1: 812 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 813 | 814 | graceful-fs@4.2.11: 815 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 816 | 817 | graphemer@1.4.0: 818 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 819 | 820 | has-bigints@1.0.2: 821 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 822 | 823 | has-flag@4.0.0: 824 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 825 | engines: {node: '>=8'} 826 | 827 | has-property-descriptors@1.0.2: 828 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 829 | 830 | has-proto@1.0.3: 831 | resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} 832 | engines: {node: '>= 0.4'} 833 | 834 | has-symbols@1.0.3: 835 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 836 | engines: {node: '>= 0.4'} 837 | 838 | has-tostringtag@1.0.2: 839 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 840 | engines: {node: '>= 0.4'} 841 | 842 | hasown@2.0.2: 843 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 844 | engines: {node: '>= 0.4'} 845 | 846 | ieee754@1.2.1: 847 | resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 848 | 849 | ignore@5.3.2: 850 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 851 | engines: {node: '>= 4'} 852 | 853 | import-fresh@3.3.0: 854 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 855 | engines: {node: '>=6'} 856 | 857 | imurmurhash@0.1.4: 858 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 859 | engines: {node: '>=0.8.19'} 860 | 861 | inflight@1.0.6: 862 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 863 | deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. 864 | 865 | inherits@2.0.4: 866 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 867 | 868 | internal-slot@1.0.7: 869 | resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} 870 | engines: {node: '>= 0.4'} 871 | 872 | is-arguments@1.1.1: 873 | resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} 874 | engines: {node: '>= 0.4'} 875 | 876 | is-array-buffer@3.0.4: 877 | resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} 878 | engines: {node: '>= 0.4'} 879 | 880 | is-async-function@2.0.0: 881 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} 882 | engines: {node: '>= 0.4'} 883 | 884 | is-bigint@1.0.4: 885 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 886 | 887 | is-binary-path@2.1.0: 888 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 889 | engines: {node: '>=8'} 890 | 891 | is-boolean-object@1.1.2: 892 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 893 | engines: {node: '>= 0.4'} 894 | 895 | is-callable@1.2.7: 896 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 897 | engines: {node: '>= 0.4'} 898 | 899 | is-core-module@2.15.1: 900 | resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} 901 | engines: {node: '>= 0.4'} 902 | 903 | is-data-view@1.0.1: 904 | resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} 905 | engines: {node: '>= 0.4'} 906 | 907 | is-date-object@1.0.5: 908 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 909 | engines: {node: '>= 0.4'} 910 | 911 | is-extglob@2.1.1: 912 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 913 | engines: {node: '>=0.10.0'} 914 | 915 | is-finalizationregistry@1.0.2: 916 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} 917 | 918 | is-fullwidth-code-point@3.0.0: 919 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 920 | engines: {node: '>=8'} 921 | 922 | is-generator-function@1.0.10: 923 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} 924 | engines: {node: '>= 0.4'} 925 | 926 | is-glob@4.0.3: 927 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 928 | engines: {node: '>=0.10.0'} 929 | 930 | is-map@2.0.3: 931 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 932 | engines: {node: '>= 0.4'} 933 | 934 | is-negative-zero@2.0.3: 935 | resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} 936 | engines: {node: '>= 0.4'} 937 | 938 | is-number-object@1.0.7: 939 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 940 | engines: {node: '>= 0.4'} 941 | 942 | is-number@7.0.0: 943 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 944 | engines: {node: '>=0.12.0'} 945 | 946 | is-path-inside@3.0.3: 947 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 948 | engines: {node: '>=8'} 949 | 950 | is-regex@1.1.4: 951 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 952 | engines: {node: '>= 0.4'} 953 | 954 | is-set@2.0.3: 955 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} 956 | engines: {node: '>= 0.4'} 957 | 958 | is-shared-array-buffer@1.0.3: 959 | resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} 960 | engines: {node: '>= 0.4'} 961 | 962 | is-string@1.0.7: 963 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 964 | engines: {node: '>= 0.4'} 965 | 966 | is-symbol@1.0.4: 967 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 968 | engines: {node: '>= 0.4'} 969 | 970 | is-typed-array@1.1.13: 971 | resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} 972 | engines: {node: '>= 0.4'} 973 | 974 | is-weakmap@2.0.2: 975 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} 976 | engines: {node: '>= 0.4'} 977 | 978 | is-weakref@1.0.2: 979 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 980 | 981 | is-weakset@2.0.3: 982 | resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} 983 | engines: {node: '>= 0.4'} 984 | 985 | isarray@2.0.5: 986 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 987 | 988 | isexe@2.0.0: 989 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 990 | 991 | isows@1.0.4: 992 | resolution: {integrity: sha512-hEzjY+x9u9hPmBom9IIAqdJCwNLax+xrPb51vEPpERoFlIxgmZcHzsT5jKG06nvInKOBGvReAVz80Umed5CczQ==} 993 | peerDependencies: 994 | ws: '*' 995 | 996 | iterator.prototype@1.1.2: 997 | resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} 998 | 999 | jackspeak@2.3.6: 1000 | resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} 1001 | engines: {node: '>=14'} 1002 | 1003 | jackspeak@3.4.3: 1004 | resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} 1005 | 1006 | jiti@1.21.6: 1007 | resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} 1008 | hasBin: true 1009 | 1010 | jose@4.15.9: 1011 | resolution: {integrity: sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA==} 1012 | 1013 | js-tokens@4.0.0: 1014 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1015 | 1016 | js-yaml@4.1.0: 1017 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1018 | hasBin: true 1019 | 1020 | json-buffer@3.0.1: 1021 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1022 | 1023 | json-schema-traverse@0.4.1: 1024 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1025 | 1026 | json-stable-stringify-without-jsonify@1.0.1: 1027 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1028 | 1029 | json5@1.0.2: 1030 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 1031 | hasBin: true 1032 | 1033 | jsx-ast-utils@3.3.5: 1034 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} 1035 | engines: {node: '>=4.0'} 1036 | 1037 | keyv@4.5.4: 1038 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1039 | 1040 | language-subtag-registry@0.3.23: 1041 | resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} 1042 | 1043 | language-tags@1.0.9: 1044 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} 1045 | engines: {node: '>=0.10'} 1046 | 1047 | levn@0.4.1: 1048 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1049 | engines: {node: '>= 0.8.0'} 1050 | 1051 | lilconfig@2.1.0: 1052 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 1053 | engines: {node: '>=10'} 1054 | 1055 | lilconfig@3.1.2: 1056 | resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} 1057 | engines: {node: '>=14'} 1058 | 1059 | lines-and-columns@1.2.4: 1060 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1061 | 1062 | locate-path@6.0.0: 1063 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1064 | engines: {node: '>=10'} 1065 | 1066 | lodash.merge@4.6.2: 1067 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1068 | 1069 | loose-envify@1.4.0: 1070 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 1071 | hasBin: true 1072 | 1073 | lru-cache@10.4.3: 1074 | resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 1075 | 1076 | lru-cache@6.0.0: 1077 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 1078 | engines: {node: '>=10'} 1079 | 1080 | merge2@1.4.1: 1081 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1082 | engines: {node: '>= 8'} 1083 | 1084 | micromatch@4.0.7: 1085 | resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} 1086 | engines: {node: '>=8.6'} 1087 | 1088 | minimatch@3.1.2: 1089 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1090 | 1091 | minimatch@9.0.3: 1092 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} 1093 | engines: {node: '>=16 || 14 >=14.17'} 1094 | 1095 | minimatch@9.0.5: 1096 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 1097 | engines: {node: '>=16 || 14 >=14.17'} 1098 | 1099 | minimist@1.2.8: 1100 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1101 | 1102 | minipass@7.1.2: 1103 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 1104 | engines: {node: '>=16 || 14 >=14.17'} 1105 | 1106 | ms@2.1.2: 1107 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 1108 | 1109 | ms@2.1.3: 1110 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1111 | 1112 | mz@2.7.0: 1113 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 1114 | 1115 | nanoid@3.3.7: 1116 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 1117 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1118 | hasBin: true 1119 | 1120 | natural-compare@1.4.0: 1121 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1122 | 1123 | next-auth@4.24.7: 1124 | resolution: {integrity: sha512-iChjE8ov/1K/z98gdKbn2Jw+2vLgJtVV39X+rCP5SGnVQuco7QOr19FRNGMIrD8d3LYhHWV9j9sKLzq1aDWWQQ==} 1125 | peerDependencies: 1126 | next: ^12.2.5 || ^13 || ^14 1127 | nodemailer: ^6.6.5 1128 | react: ^17.0.2 || ^18 1129 | react-dom: ^17.0.2 || ^18 1130 | peerDependenciesMeta: 1131 | nodemailer: 1132 | optional: true 1133 | 1134 | next@14.2.6: 1135 | resolution: {integrity: sha512-57Su7RqXs5CBKKKOagt8gPhMM3CpjgbeQhrtei2KLAA1vTNm7jfKS+uDARkSW8ZETUflDCBIsUKGSyQdRs4U4g==} 1136 | engines: {node: '>=18.17.0'} 1137 | hasBin: true 1138 | peerDependencies: 1139 | '@opentelemetry/api': ^1.1.0 1140 | '@playwright/test': ^1.41.2 1141 | react: ^18.2.0 1142 | react-dom: ^18.2.0 1143 | sass: ^1.3.0 1144 | peerDependenciesMeta: 1145 | '@opentelemetry/api': 1146 | optional: true 1147 | '@playwright/test': 1148 | optional: true 1149 | sass: 1150 | optional: true 1151 | 1152 | normalize-path@3.0.0: 1153 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1154 | engines: {node: '>=0.10.0'} 1155 | 1156 | oauth@0.9.15: 1157 | resolution: {integrity: sha512-a5ERWK1kh38ExDEfoO6qUHJb32rd7aYmPHuyCu3Fta/cnICvYmgd2uhuKXvPD+PXB+gCEYYEaQdIRAjCOwAKNA==} 1158 | 1159 | object-assign@4.1.1: 1160 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1161 | engines: {node: '>=0.10.0'} 1162 | 1163 | object-hash@2.2.0: 1164 | resolution: {integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==} 1165 | engines: {node: '>= 6'} 1166 | 1167 | object-hash@3.0.0: 1168 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 1169 | engines: {node: '>= 6'} 1170 | 1171 | object-inspect@1.13.2: 1172 | resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} 1173 | engines: {node: '>= 0.4'} 1174 | 1175 | object-is@1.1.6: 1176 | resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} 1177 | engines: {node: '>= 0.4'} 1178 | 1179 | object-keys@1.1.1: 1180 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1181 | engines: {node: '>= 0.4'} 1182 | 1183 | object.assign@4.1.5: 1184 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} 1185 | engines: {node: '>= 0.4'} 1186 | 1187 | object.entries@1.1.8: 1188 | resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} 1189 | engines: {node: '>= 0.4'} 1190 | 1191 | object.fromentries@2.0.8: 1192 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} 1193 | engines: {node: '>= 0.4'} 1194 | 1195 | object.groupby@1.0.3: 1196 | resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} 1197 | engines: {node: '>= 0.4'} 1198 | 1199 | object.values@1.2.0: 1200 | resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} 1201 | engines: {node: '>= 0.4'} 1202 | 1203 | oidc-token-hash@5.0.3: 1204 | resolution: {integrity: sha512-IF4PcGgzAr6XXSff26Sk/+P4KZFJVuHAJZj3wgO3vX2bMdNVp/QXTP3P7CEm9V1IdG8lDLY3HhiqpsE/nOwpPw==} 1205 | engines: {node: ^10.13.0 || >=12.0.0} 1206 | 1207 | once@1.4.0: 1208 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1209 | 1210 | openid-client@5.6.5: 1211 | resolution: {integrity: sha512-5P4qO9nGJzB5PI0LFlhj4Dzg3m4odt0qsJTfyEtZyOlkgpILwEioOhVVJOrS1iVH494S4Ee5OCjjg6Bf5WOj3w==} 1212 | 1213 | optionator@0.9.4: 1214 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1215 | engines: {node: '>= 0.8.0'} 1216 | 1217 | p-limit@3.1.0: 1218 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1219 | engines: {node: '>=10'} 1220 | 1221 | p-locate@5.0.0: 1222 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1223 | engines: {node: '>=10'} 1224 | 1225 | package-json-from-dist@1.0.0: 1226 | resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} 1227 | 1228 | parent-module@1.0.1: 1229 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1230 | engines: {node: '>=6'} 1231 | 1232 | path-exists@4.0.0: 1233 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1234 | engines: {node: '>=8'} 1235 | 1236 | path-is-absolute@1.0.1: 1237 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 1238 | engines: {node: '>=0.10.0'} 1239 | 1240 | path-key@3.1.1: 1241 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1242 | engines: {node: '>=8'} 1243 | 1244 | path-parse@1.0.7: 1245 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1246 | 1247 | path-scurry@1.11.1: 1248 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} 1249 | engines: {node: '>=16 || 14 >=14.18'} 1250 | 1251 | path-type@4.0.0: 1252 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 1253 | engines: {node: '>=8'} 1254 | 1255 | picocolors@1.0.1: 1256 | resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} 1257 | 1258 | picomatch@2.3.1: 1259 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1260 | engines: {node: '>=8.6'} 1261 | 1262 | pify@2.3.0: 1263 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 1264 | engines: {node: '>=0.10.0'} 1265 | 1266 | pirates@4.0.6: 1267 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 1268 | engines: {node: '>= 6'} 1269 | 1270 | possible-typed-array-names@1.0.0: 1271 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} 1272 | engines: {node: '>= 0.4'} 1273 | 1274 | postcss-import@15.1.0: 1275 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 1276 | engines: {node: '>=14.0.0'} 1277 | peerDependencies: 1278 | postcss: ^8.0.0 1279 | 1280 | postcss-js@4.0.1: 1281 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 1282 | engines: {node: ^12 || ^14 || >= 16} 1283 | peerDependencies: 1284 | postcss: ^8.4.21 1285 | 1286 | postcss-load-config@4.0.2: 1287 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} 1288 | engines: {node: '>= 14'} 1289 | peerDependencies: 1290 | postcss: '>=8.0.9' 1291 | ts-node: '>=9.0.0' 1292 | peerDependenciesMeta: 1293 | postcss: 1294 | optional: true 1295 | ts-node: 1296 | optional: true 1297 | 1298 | postcss-nested@6.2.0: 1299 | resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} 1300 | engines: {node: '>=12.0'} 1301 | peerDependencies: 1302 | postcss: ^8.2.14 1303 | 1304 | postcss-selector-parser@6.1.2: 1305 | resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} 1306 | engines: {node: '>=4'} 1307 | 1308 | postcss-value-parser@4.2.0: 1309 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 1310 | 1311 | postcss@8.4.31: 1312 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} 1313 | engines: {node: ^10 || ^12 || >=14} 1314 | 1315 | postcss@8.4.41: 1316 | resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==} 1317 | engines: {node: ^10 || ^12 || >=14} 1318 | 1319 | preact-render-to-string@5.2.6: 1320 | resolution: {integrity: sha512-JyhErpYOvBV1hEPwIxc/fHWXPfnEGdRKxc8gFdAZ7XV4tlzyzG847XAyEZqoDnynP88akM4eaHcSOzNcLWFguw==} 1321 | peerDependencies: 1322 | preact: '>=10' 1323 | 1324 | preact@10.23.2: 1325 | resolution: {integrity: sha512-kKYfePf9rzKnxOAKDpsWhg/ysrHPqT+yQ7UW4JjdnqjFIeNUnNcEJvhuA8fDenxAGWzUqtd51DfVg7xp/8T9NA==} 1326 | 1327 | prelude-ls@1.2.1: 1328 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1329 | engines: {node: '>= 0.8.0'} 1330 | 1331 | pretty-format@3.8.0: 1332 | resolution: {integrity: sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew==} 1333 | 1334 | prop-types@15.8.1: 1335 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 1336 | 1337 | punycode@2.3.1: 1338 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1339 | engines: {node: '>=6'} 1340 | 1341 | queue-microtask@1.2.3: 1342 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1343 | 1344 | react-dom@18.3.1: 1345 | resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} 1346 | peerDependencies: 1347 | react: ^18.3.1 1348 | 1349 | react-is@16.13.1: 1350 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 1351 | 1352 | react@18.3.1: 1353 | resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} 1354 | engines: {node: '>=0.10.0'} 1355 | 1356 | read-cache@1.0.0: 1357 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 1358 | 1359 | readdirp@3.6.0: 1360 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 1361 | engines: {node: '>=8.10.0'} 1362 | 1363 | reflect.getprototypeof@1.0.6: 1364 | resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} 1365 | engines: {node: '>= 0.4'} 1366 | 1367 | regenerator-runtime@0.14.1: 1368 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 1369 | 1370 | regexp.prototype.flags@1.5.2: 1371 | resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} 1372 | engines: {node: '>= 0.4'} 1373 | 1374 | resolve-from@4.0.0: 1375 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1376 | engines: {node: '>=4'} 1377 | 1378 | resolve-pkg-maps@1.0.0: 1379 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 1380 | 1381 | resolve@1.22.8: 1382 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 1383 | hasBin: true 1384 | 1385 | resolve@2.0.0-next.5: 1386 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 1387 | hasBin: true 1388 | 1389 | reusify@1.0.4: 1390 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1391 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1392 | 1393 | rimraf@3.0.2: 1394 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 1395 | deprecated: Rimraf versions prior to v4 are no longer supported 1396 | hasBin: true 1397 | 1398 | run-parallel@1.2.0: 1399 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1400 | 1401 | safe-array-concat@1.1.2: 1402 | resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} 1403 | engines: {node: '>=0.4'} 1404 | 1405 | safe-regex-test@1.0.3: 1406 | resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} 1407 | engines: {node: '>= 0.4'} 1408 | 1409 | scheduler@0.23.2: 1410 | resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} 1411 | 1412 | semver@6.3.1: 1413 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 1414 | hasBin: true 1415 | 1416 | semver@7.6.3: 1417 | resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 1418 | engines: {node: '>=10'} 1419 | hasBin: true 1420 | 1421 | set-function-length@1.2.2: 1422 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 1423 | engines: {node: '>= 0.4'} 1424 | 1425 | set-function-name@2.0.2: 1426 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 1427 | engines: {node: '>= 0.4'} 1428 | 1429 | shebang-command@2.0.0: 1430 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1431 | engines: {node: '>=8'} 1432 | 1433 | shebang-regex@3.0.0: 1434 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1435 | engines: {node: '>=8'} 1436 | 1437 | side-channel@1.0.6: 1438 | resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} 1439 | engines: {node: '>= 0.4'} 1440 | 1441 | signal-exit@4.1.0: 1442 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 1443 | engines: {node: '>=14'} 1444 | 1445 | slash@3.0.0: 1446 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 1447 | engines: {node: '>=8'} 1448 | 1449 | source-map-js@1.2.0: 1450 | resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} 1451 | engines: {node: '>=0.10.0'} 1452 | 1453 | stop-iteration-iterator@1.0.0: 1454 | resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} 1455 | engines: {node: '>= 0.4'} 1456 | 1457 | streamsearch@1.1.0: 1458 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 1459 | engines: {node: '>=10.0.0'} 1460 | 1461 | string-width@4.2.3: 1462 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1463 | engines: {node: '>=8'} 1464 | 1465 | string-width@5.1.2: 1466 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 1467 | engines: {node: '>=12'} 1468 | 1469 | string.prototype.includes@2.0.0: 1470 | resolution: {integrity: sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg==} 1471 | 1472 | string.prototype.matchall@4.0.11: 1473 | resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} 1474 | engines: {node: '>= 0.4'} 1475 | 1476 | string.prototype.repeat@1.0.0: 1477 | resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==} 1478 | 1479 | string.prototype.trim@1.2.9: 1480 | resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} 1481 | engines: {node: '>= 0.4'} 1482 | 1483 | string.prototype.trimend@1.0.8: 1484 | resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} 1485 | 1486 | string.prototype.trimstart@1.0.8: 1487 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} 1488 | engines: {node: '>= 0.4'} 1489 | 1490 | strip-ansi@6.0.1: 1491 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1492 | engines: {node: '>=8'} 1493 | 1494 | strip-ansi@7.1.0: 1495 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 1496 | engines: {node: '>=12'} 1497 | 1498 | strip-bom@3.0.0: 1499 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 1500 | engines: {node: '>=4'} 1501 | 1502 | strip-json-comments@3.1.1: 1503 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1504 | engines: {node: '>=8'} 1505 | 1506 | styled-jsx@5.1.1: 1507 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} 1508 | engines: {node: '>= 12.0.0'} 1509 | peerDependencies: 1510 | '@babel/core': '*' 1511 | babel-plugin-macros: '*' 1512 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' 1513 | peerDependenciesMeta: 1514 | '@babel/core': 1515 | optional: true 1516 | babel-plugin-macros: 1517 | optional: true 1518 | 1519 | sucrase@3.35.0: 1520 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} 1521 | engines: {node: '>=16 || 14 >=14.17'} 1522 | hasBin: true 1523 | 1524 | supports-color@7.2.0: 1525 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1526 | engines: {node: '>=8'} 1527 | 1528 | supports-preserve-symlinks-flag@1.0.0: 1529 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1530 | engines: {node: '>= 0.4'} 1531 | 1532 | tailwindcss@3.4.10: 1533 | resolution: {integrity: sha512-KWZkVPm7yJRhdu4SRSl9d4AK2wM3a50UsvgHZO7xY77NQr2V+fIrEuoDGQcbvswWvFGbS2f6e+jC/6WJm1Dl0w==} 1534 | engines: {node: '>=14.0.0'} 1535 | hasBin: true 1536 | 1537 | tapable@2.2.1: 1538 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 1539 | engines: {node: '>=6'} 1540 | 1541 | text-table@0.2.0: 1542 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 1543 | 1544 | thenify-all@1.6.0: 1545 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 1546 | engines: {node: '>=0.8'} 1547 | 1548 | thenify@3.3.1: 1549 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 1550 | 1551 | to-regex-range@5.0.1: 1552 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1553 | engines: {node: '>=8.0'} 1554 | 1555 | ts-api-utils@1.3.0: 1556 | resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} 1557 | engines: {node: '>=16'} 1558 | peerDependencies: 1559 | typescript: '>=4.2.0' 1560 | 1561 | ts-interface-checker@0.1.13: 1562 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 1563 | 1564 | tsconfig-paths@3.15.0: 1565 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} 1566 | 1567 | tslib@2.6.3: 1568 | resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} 1569 | 1570 | type-check@0.4.0: 1571 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1572 | engines: {node: '>= 0.8.0'} 1573 | 1574 | type-fest@0.20.2: 1575 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 1576 | engines: {node: '>=10'} 1577 | 1578 | typed-array-buffer@1.0.2: 1579 | resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} 1580 | engines: {node: '>= 0.4'} 1581 | 1582 | typed-array-byte-length@1.0.1: 1583 | resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} 1584 | engines: {node: '>= 0.4'} 1585 | 1586 | typed-array-byte-offset@1.0.2: 1587 | resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} 1588 | engines: {node: '>= 0.4'} 1589 | 1590 | typed-array-length@1.0.6: 1591 | resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} 1592 | engines: {node: '>= 0.4'} 1593 | 1594 | typescript@5.5.4: 1595 | resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==} 1596 | engines: {node: '>=14.17'} 1597 | hasBin: true 1598 | 1599 | unbox-primitive@1.0.2: 1600 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 1601 | 1602 | undici-types@6.19.8: 1603 | resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} 1604 | 1605 | uri-js@4.4.1: 1606 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1607 | 1608 | use-sync-external-store@1.2.2: 1609 | resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==} 1610 | peerDependencies: 1611 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 1612 | 1613 | util-deprecate@1.0.2: 1614 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1615 | 1616 | uuid@8.3.2: 1617 | resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} 1618 | hasBin: true 1619 | 1620 | viem@2.20.0: 1621 | resolution: {integrity: sha512-cM4vs81HnSNbfceI1MLkx4pCVzbVjl9xiNSv5SCutYjUyFFOVSPDlEyhpg2iHinxx1NM4Qne3END5eLT8rvUdg==} 1622 | peerDependencies: 1623 | typescript: '>=5.0.4' 1624 | peerDependenciesMeta: 1625 | typescript: 1626 | optional: true 1627 | 1628 | webauthn-p256@0.0.5: 1629 | resolution: {integrity: sha512-drMGNWKdaixZNobeORVIqq7k5DsRC9FnG201K2QjeOoQLmtSDaSsVZdkg6n5jUALJKcAG++zBPJXmv6hy0nWFg==} 1630 | 1631 | which-boxed-primitive@1.0.2: 1632 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 1633 | 1634 | which-builtin-type@1.1.4: 1635 | resolution: {integrity: sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==} 1636 | engines: {node: '>= 0.4'} 1637 | 1638 | which-collection@1.0.2: 1639 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} 1640 | engines: {node: '>= 0.4'} 1641 | 1642 | which-typed-array@1.1.15: 1643 | resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} 1644 | engines: {node: '>= 0.4'} 1645 | 1646 | which@2.0.2: 1647 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1648 | engines: {node: '>= 8'} 1649 | hasBin: true 1650 | 1651 | word-wrap@1.2.5: 1652 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 1653 | engines: {node: '>=0.10.0'} 1654 | 1655 | wrap-ansi@7.0.0: 1656 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 1657 | engines: {node: '>=10'} 1658 | 1659 | wrap-ansi@8.1.0: 1660 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 1661 | engines: {node: '>=12'} 1662 | 1663 | wrappy@1.0.2: 1664 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 1665 | 1666 | ws@8.17.1: 1667 | resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} 1668 | engines: {node: '>=10.0.0'} 1669 | peerDependencies: 1670 | bufferutil: ^4.0.1 1671 | utf-8-validate: '>=5.0.2' 1672 | peerDependenciesMeta: 1673 | bufferutil: 1674 | optional: true 1675 | utf-8-validate: 1676 | optional: true 1677 | 1678 | yallist@4.0.0: 1679 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 1680 | 1681 | yaml@2.5.0: 1682 | resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==} 1683 | engines: {node: '>= 14'} 1684 | hasBin: true 1685 | 1686 | yocto-queue@0.1.0: 1687 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1688 | engines: {node: '>=10'} 1689 | 1690 | zustand@4.5.5: 1691 | resolution: {integrity: sha512-+0PALYNJNgK6hldkgDq2vLrw5f6g/jCInz52n9RTpropGgeAf/ioFUCdtsjCqu4gNhW9D01rUQBROoRjdzyn2Q==} 1692 | engines: {node: '>=12.7.0'} 1693 | peerDependencies: 1694 | '@types/react': '>=16.8' 1695 | immer: '>=9.0.6' 1696 | react: '>=16.8' 1697 | peerDependenciesMeta: 1698 | '@types/react': 1699 | optional: true 1700 | immer: 1701 | optional: true 1702 | react: 1703 | optional: true 1704 | 1705 | snapshots: 1706 | 1707 | '@adraffy/ens-normalize@1.10.0': {} 1708 | 1709 | '@alloc/quick-lru@5.2.0': {} 1710 | 1711 | '@babel/runtime@7.25.4': 1712 | dependencies: 1713 | regenerator-runtime: 0.14.1 1714 | 1715 | '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)': 1716 | dependencies: 1717 | eslint: 8.57.0 1718 | eslint-visitor-keys: 3.4.3 1719 | 1720 | '@eslint-community/regexpp@4.11.0': {} 1721 | 1722 | '@eslint/eslintrc@2.1.4': 1723 | dependencies: 1724 | ajv: 6.12.6 1725 | debug: 4.3.6 1726 | espree: 9.6.1 1727 | globals: 13.24.0 1728 | ignore: 5.3.2 1729 | import-fresh: 3.3.0 1730 | js-yaml: 4.1.0 1731 | minimatch: 3.1.2 1732 | strip-json-comments: 3.1.1 1733 | transitivePeerDependencies: 1734 | - supports-color 1735 | 1736 | '@eslint/js@8.57.0': {} 1737 | 1738 | '@humanwhocodes/config-array@0.11.14': 1739 | dependencies: 1740 | '@humanwhocodes/object-schema': 2.0.3 1741 | debug: 4.3.6 1742 | minimatch: 3.1.2 1743 | transitivePeerDependencies: 1744 | - supports-color 1745 | 1746 | '@humanwhocodes/module-importer@1.0.1': {} 1747 | 1748 | '@humanwhocodes/object-schema@2.0.3': {} 1749 | 1750 | '@isaacs/cliui@8.0.2': 1751 | dependencies: 1752 | string-width: 5.1.2 1753 | string-width-cjs: string-width@4.2.3 1754 | strip-ansi: 7.1.0 1755 | strip-ansi-cjs: strip-ansi@6.0.1 1756 | wrap-ansi: 8.1.0 1757 | wrap-ansi-cjs: wrap-ansi@7.0.0 1758 | 1759 | '@jridgewell/gen-mapping@0.3.5': 1760 | dependencies: 1761 | '@jridgewell/set-array': 1.2.1 1762 | '@jridgewell/sourcemap-codec': 1.5.0 1763 | '@jridgewell/trace-mapping': 0.3.25 1764 | 1765 | '@jridgewell/resolve-uri@3.1.2': {} 1766 | 1767 | '@jridgewell/set-array@1.2.1': {} 1768 | 1769 | '@jridgewell/sourcemap-codec@1.5.0': {} 1770 | 1771 | '@jridgewell/trace-mapping@0.3.25': 1772 | dependencies: 1773 | '@jridgewell/resolve-uri': 3.1.2 1774 | '@jridgewell/sourcemap-codec': 1.5.0 1775 | 1776 | '@next/env@14.2.6': {} 1777 | 1778 | '@next/eslint-plugin-next@14.2.6': 1779 | dependencies: 1780 | glob: 10.3.10 1781 | 1782 | '@next/swc-darwin-arm64@14.2.6': 1783 | optional: true 1784 | 1785 | '@next/swc-darwin-x64@14.2.6': 1786 | optional: true 1787 | 1788 | '@next/swc-linux-arm64-gnu@14.2.6': 1789 | optional: true 1790 | 1791 | '@next/swc-linux-arm64-musl@14.2.6': 1792 | optional: true 1793 | 1794 | '@next/swc-linux-x64-gnu@14.2.6': 1795 | optional: true 1796 | 1797 | '@next/swc-linux-x64-musl@14.2.6': 1798 | optional: true 1799 | 1800 | '@next/swc-win32-arm64-msvc@14.2.6': 1801 | optional: true 1802 | 1803 | '@next/swc-win32-ia32-msvc@14.2.6': 1804 | optional: true 1805 | 1806 | '@next/swc-win32-x64-msvc@14.2.6': 1807 | optional: true 1808 | 1809 | '@noble/curves@1.4.0': 1810 | dependencies: 1811 | '@noble/hashes': 1.4.0 1812 | 1813 | '@noble/hashes@1.4.0': {} 1814 | 1815 | '@nodelib/fs.scandir@2.1.5': 1816 | dependencies: 1817 | '@nodelib/fs.stat': 2.0.5 1818 | run-parallel: 1.2.0 1819 | 1820 | '@nodelib/fs.stat@2.0.5': {} 1821 | 1822 | '@nodelib/fs.walk@1.2.8': 1823 | dependencies: 1824 | '@nodelib/fs.scandir': 2.1.5 1825 | fastq: 1.17.1 1826 | 1827 | '@panva/hkdf@1.2.1': {} 1828 | 1829 | '@pkgjs/parseargs@0.11.0': 1830 | optional: true 1831 | 1832 | '@rushstack/eslint-patch@1.10.4': {} 1833 | 1834 | '@scure/base@1.1.7': {} 1835 | 1836 | '@scure/bip32@1.4.0': 1837 | dependencies: 1838 | '@noble/curves': 1.4.0 1839 | '@noble/hashes': 1.4.0 1840 | '@scure/base': 1.1.7 1841 | 1842 | '@scure/bip39@1.3.0': 1843 | dependencies: 1844 | '@noble/hashes': 1.4.0 1845 | '@scure/base': 1.1.7 1846 | 1847 | '@swc/counter@0.1.3': {} 1848 | 1849 | '@swc/helpers@0.5.5': 1850 | dependencies: 1851 | '@swc/counter': 0.1.3 1852 | tslib: 2.6.3 1853 | 1854 | '@types/json5@0.0.29': {} 1855 | 1856 | '@types/node@20.16.1': 1857 | dependencies: 1858 | undici-types: 6.19.8 1859 | 1860 | '@types/prop-types@15.7.12': {} 1861 | 1862 | '@types/react-dom@18.3.0': 1863 | dependencies: 1864 | '@types/react': 18.3.4 1865 | 1866 | '@types/react@18.3.4': 1867 | dependencies: 1868 | '@types/prop-types': 15.7.12 1869 | csstype: 3.1.3 1870 | 1871 | '@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.4)': 1872 | dependencies: 1873 | '@typescript-eslint/scope-manager': 7.2.0 1874 | '@typescript-eslint/types': 7.2.0 1875 | '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.5.4) 1876 | '@typescript-eslint/visitor-keys': 7.2.0 1877 | debug: 4.3.6 1878 | eslint: 8.57.0 1879 | optionalDependencies: 1880 | typescript: 5.5.4 1881 | transitivePeerDependencies: 1882 | - supports-color 1883 | 1884 | '@typescript-eslint/scope-manager@7.2.0': 1885 | dependencies: 1886 | '@typescript-eslint/types': 7.2.0 1887 | '@typescript-eslint/visitor-keys': 7.2.0 1888 | 1889 | '@typescript-eslint/types@7.2.0': {} 1890 | 1891 | '@typescript-eslint/typescript-estree@7.2.0(typescript@5.5.4)': 1892 | dependencies: 1893 | '@typescript-eslint/types': 7.2.0 1894 | '@typescript-eslint/visitor-keys': 7.2.0 1895 | debug: 4.3.6 1896 | globby: 11.1.0 1897 | is-glob: 4.0.3 1898 | minimatch: 9.0.3 1899 | semver: 7.6.3 1900 | ts-api-utils: 1.3.0(typescript@5.5.4) 1901 | optionalDependencies: 1902 | typescript: 5.5.4 1903 | transitivePeerDependencies: 1904 | - supports-color 1905 | 1906 | '@typescript-eslint/visitor-keys@7.2.0': 1907 | dependencies: 1908 | '@typescript-eslint/types': 7.2.0 1909 | eslint-visitor-keys: 3.4.3 1910 | 1911 | '@ungap/structured-clone@1.2.0': {} 1912 | 1913 | '@worldcoin/idkit-core@1.3.0(@types/react@18.3.4)(react@18.3.1)(typescript@5.5.4)': 1914 | dependencies: 1915 | browser-or-node: 3.0.0-pre.0 1916 | buffer: 6.0.3 1917 | viem: 2.20.0(typescript@5.5.4) 1918 | zustand: 4.5.5(@types/react@18.3.4)(react@18.3.1) 1919 | transitivePeerDependencies: 1920 | - '@types/react' 1921 | - bufferutil 1922 | - immer 1923 | - react 1924 | - typescript 1925 | - utf-8-validate 1926 | - zod 1927 | 1928 | '@worldcoin/minikit-js@1.3.0(@types/react@18.3.4)(react@18.3.1)(typescript@5.5.4)(viem@2.20.0(typescript@5.5.4))': 1929 | dependencies: 1930 | '@worldcoin/idkit-core': 1.3.0(@types/react@18.3.4)(react@18.3.1)(typescript@5.5.4) 1931 | abitype: 1.0.6(typescript@5.5.4) 1932 | viem: 2.20.0(typescript@5.5.4) 1933 | transitivePeerDependencies: 1934 | - '@types/react' 1935 | - bufferutil 1936 | - immer 1937 | - react 1938 | - typescript 1939 | - utf-8-validate 1940 | - zod 1941 | 1942 | abitype@1.0.5(typescript@5.5.4): 1943 | optionalDependencies: 1944 | typescript: 5.5.4 1945 | 1946 | abitype@1.0.6(typescript@5.5.4): 1947 | optionalDependencies: 1948 | typescript: 5.5.4 1949 | 1950 | acorn-jsx@5.3.2(acorn@8.12.1): 1951 | dependencies: 1952 | acorn: 8.12.1 1953 | 1954 | acorn@8.12.1: {} 1955 | 1956 | ajv@6.12.6: 1957 | dependencies: 1958 | fast-deep-equal: 3.1.3 1959 | fast-json-stable-stringify: 2.1.0 1960 | json-schema-traverse: 0.4.1 1961 | uri-js: 4.4.1 1962 | 1963 | ansi-regex@5.0.1: {} 1964 | 1965 | ansi-regex@6.0.1: {} 1966 | 1967 | ansi-styles@4.3.0: 1968 | dependencies: 1969 | color-convert: 2.0.1 1970 | 1971 | ansi-styles@6.2.1: {} 1972 | 1973 | any-promise@1.3.0: {} 1974 | 1975 | anymatch@3.1.3: 1976 | dependencies: 1977 | normalize-path: 3.0.0 1978 | picomatch: 2.3.1 1979 | 1980 | arg@5.0.2: {} 1981 | 1982 | argparse@2.0.1: {} 1983 | 1984 | aria-query@5.1.3: 1985 | dependencies: 1986 | deep-equal: 2.2.3 1987 | 1988 | array-buffer-byte-length@1.0.1: 1989 | dependencies: 1990 | call-bind: 1.0.7 1991 | is-array-buffer: 3.0.4 1992 | 1993 | array-includes@3.1.8: 1994 | dependencies: 1995 | call-bind: 1.0.7 1996 | define-properties: 1.2.1 1997 | es-abstract: 1.23.3 1998 | es-object-atoms: 1.0.0 1999 | get-intrinsic: 1.2.4 2000 | is-string: 1.0.7 2001 | 2002 | array-union@2.1.0: {} 2003 | 2004 | array.prototype.findlast@1.2.5: 2005 | dependencies: 2006 | call-bind: 1.0.7 2007 | define-properties: 1.2.1 2008 | es-abstract: 1.23.3 2009 | es-errors: 1.3.0 2010 | es-object-atoms: 1.0.0 2011 | es-shim-unscopables: 1.0.2 2012 | 2013 | array.prototype.findlastindex@1.2.5: 2014 | dependencies: 2015 | call-bind: 1.0.7 2016 | define-properties: 1.2.1 2017 | es-abstract: 1.23.3 2018 | es-errors: 1.3.0 2019 | es-object-atoms: 1.0.0 2020 | es-shim-unscopables: 1.0.2 2021 | 2022 | array.prototype.flat@1.3.2: 2023 | dependencies: 2024 | call-bind: 1.0.7 2025 | define-properties: 1.2.1 2026 | es-abstract: 1.23.3 2027 | es-shim-unscopables: 1.0.2 2028 | 2029 | array.prototype.flatmap@1.3.2: 2030 | dependencies: 2031 | call-bind: 1.0.7 2032 | define-properties: 1.2.1 2033 | es-abstract: 1.23.3 2034 | es-shim-unscopables: 1.0.2 2035 | 2036 | array.prototype.tosorted@1.1.4: 2037 | dependencies: 2038 | call-bind: 1.0.7 2039 | define-properties: 1.2.1 2040 | es-abstract: 1.23.3 2041 | es-errors: 1.3.0 2042 | es-shim-unscopables: 1.0.2 2043 | 2044 | arraybuffer.prototype.slice@1.0.3: 2045 | dependencies: 2046 | array-buffer-byte-length: 1.0.1 2047 | call-bind: 1.0.7 2048 | define-properties: 1.2.1 2049 | es-abstract: 1.23.3 2050 | es-errors: 1.3.0 2051 | get-intrinsic: 1.2.4 2052 | is-array-buffer: 3.0.4 2053 | is-shared-array-buffer: 1.0.3 2054 | 2055 | ast-types-flow@0.0.8: {} 2056 | 2057 | available-typed-arrays@1.0.7: 2058 | dependencies: 2059 | possible-typed-array-names: 1.0.0 2060 | 2061 | axe-core@4.10.0: {} 2062 | 2063 | axobject-query@3.1.1: 2064 | dependencies: 2065 | deep-equal: 2.2.3 2066 | 2067 | balanced-match@1.0.2: {} 2068 | 2069 | base64-js@1.5.1: {} 2070 | 2071 | binary-extensions@2.3.0: {} 2072 | 2073 | brace-expansion@1.1.11: 2074 | dependencies: 2075 | balanced-match: 1.0.2 2076 | concat-map: 0.0.1 2077 | 2078 | brace-expansion@2.0.1: 2079 | dependencies: 2080 | balanced-match: 1.0.2 2081 | 2082 | braces@3.0.3: 2083 | dependencies: 2084 | fill-range: 7.1.1 2085 | 2086 | browser-or-node@3.0.0-pre.0: {} 2087 | 2088 | buffer@6.0.3: 2089 | dependencies: 2090 | base64-js: 1.5.1 2091 | ieee754: 1.2.1 2092 | 2093 | busboy@1.6.0: 2094 | dependencies: 2095 | streamsearch: 1.1.0 2096 | 2097 | call-bind@1.0.7: 2098 | dependencies: 2099 | es-define-property: 1.0.0 2100 | es-errors: 1.3.0 2101 | function-bind: 1.1.2 2102 | get-intrinsic: 1.2.4 2103 | set-function-length: 1.2.2 2104 | 2105 | callsites@3.1.0: {} 2106 | 2107 | camelcase-css@2.0.1: {} 2108 | 2109 | caniuse-lite@1.0.30001651: {} 2110 | 2111 | chalk@4.1.2: 2112 | dependencies: 2113 | ansi-styles: 4.3.0 2114 | supports-color: 7.2.0 2115 | 2116 | chokidar@3.6.0: 2117 | dependencies: 2118 | anymatch: 3.1.3 2119 | braces: 3.0.3 2120 | glob-parent: 5.1.2 2121 | is-binary-path: 2.1.0 2122 | is-glob: 4.0.3 2123 | normalize-path: 3.0.0 2124 | readdirp: 3.6.0 2125 | optionalDependencies: 2126 | fsevents: 2.3.3 2127 | 2128 | client-only@0.0.1: {} 2129 | 2130 | color-convert@2.0.1: 2131 | dependencies: 2132 | color-name: 1.1.4 2133 | 2134 | color-name@1.1.4: {} 2135 | 2136 | commander@4.1.1: {} 2137 | 2138 | concat-map@0.0.1: {} 2139 | 2140 | cookie@0.5.0: {} 2141 | 2142 | cross-spawn@7.0.3: 2143 | dependencies: 2144 | path-key: 3.1.1 2145 | shebang-command: 2.0.0 2146 | which: 2.0.2 2147 | 2148 | cssesc@3.0.0: {} 2149 | 2150 | csstype@3.1.3: {} 2151 | 2152 | damerau-levenshtein@1.0.8: {} 2153 | 2154 | data-view-buffer@1.0.1: 2155 | dependencies: 2156 | call-bind: 1.0.7 2157 | es-errors: 1.3.0 2158 | is-data-view: 1.0.1 2159 | 2160 | data-view-byte-length@1.0.1: 2161 | dependencies: 2162 | call-bind: 1.0.7 2163 | es-errors: 1.3.0 2164 | is-data-view: 1.0.1 2165 | 2166 | data-view-byte-offset@1.0.0: 2167 | dependencies: 2168 | call-bind: 1.0.7 2169 | es-errors: 1.3.0 2170 | is-data-view: 1.0.1 2171 | 2172 | debug@3.2.7: 2173 | dependencies: 2174 | ms: 2.1.3 2175 | 2176 | debug@4.3.6: 2177 | dependencies: 2178 | ms: 2.1.2 2179 | 2180 | deep-equal@2.2.3: 2181 | dependencies: 2182 | array-buffer-byte-length: 1.0.1 2183 | call-bind: 1.0.7 2184 | es-get-iterator: 1.1.3 2185 | get-intrinsic: 1.2.4 2186 | is-arguments: 1.1.1 2187 | is-array-buffer: 3.0.4 2188 | is-date-object: 1.0.5 2189 | is-regex: 1.1.4 2190 | is-shared-array-buffer: 1.0.3 2191 | isarray: 2.0.5 2192 | object-is: 1.1.6 2193 | object-keys: 1.1.1 2194 | object.assign: 4.1.5 2195 | regexp.prototype.flags: 1.5.2 2196 | side-channel: 1.0.6 2197 | which-boxed-primitive: 1.0.2 2198 | which-collection: 1.0.2 2199 | which-typed-array: 1.1.15 2200 | 2201 | deep-is@0.1.4: {} 2202 | 2203 | define-data-property@1.1.4: 2204 | dependencies: 2205 | es-define-property: 1.0.0 2206 | es-errors: 1.3.0 2207 | gopd: 1.0.1 2208 | 2209 | define-properties@1.2.1: 2210 | dependencies: 2211 | define-data-property: 1.1.4 2212 | has-property-descriptors: 1.0.2 2213 | object-keys: 1.1.1 2214 | 2215 | didyoumean@1.2.2: {} 2216 | 2217 | dir-glob@3.0.1: 2218 | dependencies: 2219 | path-type: 4.0.0 2220 | 2221 | dlv@1.1.3: {} 2222 | 2223 | doctrine@2.1.0: 2224 | dependencies: 2225 | esutils: 2.0.3 2226 | 2227 | doctrine@3.0.0: 2228 | dependencies: 2229 | esutils: 2.0.3 2230 | 2231 | eastasianwidth@0.2.0: {} 2232 | 2233 | emoji-regex@8.0.0: {} 2234 | 2235 | emoji-regex@9.2.2: {} 2236 | 2237 | enhanced-resolve@5.17.1: 2238 | dependencies: 2239 | graceful-fs: 4.2.11 2240 | tapable: 2.2.1 2241 | 2242 | eruda@3.2.3: {} 2243 | 2244 | es-abstract@1.23.3: 2245 | dependencies: 2246 | array-buffer-byte-length: 1.0.1 2247 | arraybuffer.prototype.slice: 1.0.3 2248 | available-typed-arrays: 1.0.7 2249 | call-bind: 1.0.7 2250 | data-view-buffer: 1.0.1 2251 | data-view-byte-length: 1.0.1 2252 | data-view-byte-offset: 1.0.0 2253 | es-define-property: 1.0.0 2254 | es-errors: 1.3.0 2255 | es-object-atoms: 1.0.0 2256 | es-set-tostringtag: 2.0.3 2257 | es-to-primitive: 1.2.1 2258 | function.prototype.name: 1.1.6 2259 | get-intrinsic: 1.2.4 2260 | get-symbol-description: 1.0.2 2261 | globalthis: 1.0.4 2262 | gopd: 1.0.1 2263 | has-property-descriptors: 1.0.2 2264 | has-proto: 1.0.3 2265 | has-symbols: 1.0.3 2266 | hasown: 2.0.2 2267 | internal-slot: 1.0.7 2268 | is-array-buffer: 3.0.4 2269 | is-callable: 1.2.7 2270 | is-data-view: 1.0.1 2271 | is-negative-zero: 2.0.3 2272 | is-regex: 1.1.4 2273 | is-shared-array-buffer: 1.0.3 2274 | is-string: 1.0.7 2275 | is-typed-array: 1.1.13 2276 | is-weakref: 1.0.2 2277 | object-inspect: 1.13.2 2278 | object-keys: 1.1.1 2279 | object.assign: 4.1.5 2280 | regexp.prototype.flags: 1.5.2 2281 | safe-array-concat: 1.1.2 2282 | safe-regex-test: 1.0.3 2283 | string.prototype.trim: 1.2.9 2284 | string.prototype.trimend: 1.0.8 2285 | string.prototype.trimstart: 1.0.8 2286 | typed-array-buffer: 1.0.2 2287 | typed-array-byte-length: 1.0.1 2288 | typed-array-byte-offset: 1.0.2 2289 | typed-array-length: 1.0.6 2290 | unbox-primitive: 1.0.2 2291 | which-typed-array: 1.1.15 2292 | 2293 | es-define-property@1.0.0: 2294 | dependencies: 2295 | get-intrinsic: 1.2.4 2296 | 2297 | es-errors@1.3.0: {} 2298 | 2299 | es-get-iterator@1.1.3: 2300 | dependencies: 2301 | call-bind: 1.0.7 2302 | get-intrinsic: 1.2.4 2303 | has-symbols: 1.0.3 2304 | is-arguments: 1.1.1 2305 | is-map: 2.0.3 2306 | is-set: 2.0.3 2307 | is-string: 1.0.7 2308 | isarray: 2.0.5 2309 | stop-iteration-iterator: 1.0.0 2310 | 2311 | es-iterator-helpers@1.0.19: 2312 | dependencies: 2313 | call-bind: 1.0.7 2314 | define-properties: 1.2.1 2315 | es-abstract: 1.23.3 2316 | es-errors: 1.3.0 2317 | es-set-tostringtag: 2.0.3 2318 | function-bind: 1.1.2 2319 | get-intrinsic: 1.2.4 2320 | globalthis: 1.0.4 2321 | has-property-descriptors: 1.0.2 2322 | has-proto: 1.0.3 2323 | has-symbols: 1.0.3 2324 | internal-slot: 1.0.7 2325 | iterator.prototype: 1.1.2 2326 | safe-array-concat: 1.1.2 2327 | 2328 | es-object-atoms@1.0.0: 2329 | dependencies: 2330 | es-errors: 1.3.0 2331 | 2332 | es-set-tostringtag@2.0.3: 2333 | dependencies: 2334 | get-intrinsic: 1.2.4 2335 | has-tostringtag: 1.0.2 2336 | hasown: 2.0.2 2337 | 2338 | es-shim-unscopables@1.0.2: 2339 | dependencies: 2340 | hasown: 2.0.2 2341 | 2342 | es-to-primitive@1.2.1: 2343 | dependencies: 2344 | is-callable: 1.2.7 2345 | is-date-object: 1.0.5 2346 | is-symbol: 1.0.4 2347 | 2348 | escape-string-regexp@4.0.0: {} 2349 | 2350 | eslint-config-next@14.2.6(eslint@8.57.0)(typescript@5.5.4): 2351 | dependencies: 2352 | '@next/eslint-plugin-next': 14.2.6 2353 | '@rushstack/eslint-patch': 1.10.4 2354 | '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.5.4) 2355 | eslint: 8.57.0 2356 | eslint-import-resolver-node: 0.3.9 2357 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0) 2358 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 2359 | eslint-plugin-jsx-a11y: 6.9.0(eslint@8.57.0) 2360 | eslint-plugin-react: 7.35.0(eslint@8.57.0) 2361 | eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0) 2362 | optionalDependencies: 2363 | typescript: 5.5.4 2364 | transitivePeerDependencies: 2365 | - eslint-import-resolver-webpack 2366 | - supports-color 2367 | 2368 | eslint-import-resolver-node@0.3.9: 2369 | dependencies: 2370 | debug: 3.2.7 2371 | is-core-module: 2.15.1 2372 | resolve: 1.22.8 2373 | transitivePeerDependencies: 2374 | - supports-color 2375 | 2376 | eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0): 2377 | dependencies: 2378 | debug: 4.3.6 2379 | enhanced-resolve: 5.17.1 2380 | eslint: 8.57.0 2381 | eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 2382 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 2383 | fast-glob: 3.3.2 2384 | get-tsconfig: 4.7.6 2385 | is-core-module: 2.15.1 2386 | is-glob: 4.0.3 2387 | transitivePeerDependencies: 2388 | - '@typescript-eslint/parser' 2389 | - eslint-import-resolver-node 2390 | - eslint-import-resolver-webpack 2391 | - supports-color 2392 | 2393 | eslint-module-utils@2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0): 2394 | dependencies: 2395 | debug: 3.2.7 2396 | optionalDependencies: 2397 | '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.5.4) 2398 | eslint: 8.57.0 2399 | eslint-import-resolver-node: 0.3.9 2400 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0) 2401 | transitivePeerDependencies: 2402 | - supports-color 2403 | 2404 | eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0): 2405 | dependencies: 2406 | array-includes: 3.1.8 2407 | array.prototype.findlastindex: 1.2.5 2408 | array.prototype.flat: 1.3.2 2409 | array.prototype.flatmap: 1.3.2 2410 | debug: 3.2.7 2411 | doctrine: 2.1.0 2412 | eslint: 8.57.0 2413 | eslint-import-resolver-node: 0.3.9 2414 | eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 2415 | hasown: 2.0.2 2416 | is-core-module: 2.15.1 2417 | is-glob: 4.0.3 2418 | minimatch: 3.1.2 2419 | object.fromentries: 2.0.8 2420 | object.groupby: 1.0.3 2421 | object.values: 1.2.0 2422 | semver: 6.3.1 2423 | tsconfig-paths: 3.15.0 2424 | optionalDependencies: 2425 | '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.5.4) 2426 | transitivePeerDependencies: 2427 | - eslint-import-resolver-typescript 2428 | - eslint-import-resolver-webpack 2429 | - supports-color 2430 | 2431 | eslint-plugin-jsx-a11y@6.9.0(eslint@8.57.0): 2432 | dependencies: 2433 | aria-query: 5.1.3 2434 | array-includes: 3.1.8 2435 | array.prototype.flatmap: 1.3.2 2436 | ast-types-flow: 0.0.8 2437 | axe-core: 4.10.0 2438 | axobject-query: 3.1.1 2439 | damerau-levenshtein: 1.0.8 2440 | emoji-regex: 9.2.2 2441 | es-iterator-helpers: 1.0.19 2442 | eslint: 8.57.0 2443 | hasown: 2.0.2 2444 | jsx-ast-utils: 3.3.5 2445 | language-tags: 1.0.9 2446 | minimatch: 3.1.2 2447 | object.fromentries: 2.0.8 2448 | safe-regex-test: 1.0.3 2449 | string.prototype.includes: 2.0.0 2450 | 2451 | eslint-plugin-react-hooks@4.6.2(eslint@8.57.0): 2452 | dependencies: 2453 | eslint: 8.57.0 2454 | 2455 | eslint-plugin-react@7.35.0(eslint@8.57.0): 2456 | dependencies: 2457 | array-includes: 3.1.8 2458 | array.prototype.findlast: 1.2.5 2459 | array.prototype.flatmap: 1.3.2 2460 | array.prototype.tosorted: 1.1.4 2461 | doctrine: 2.1.0 2462 | es-iterator-helpers: 1.0.19 2463 | eslint: 8.57.0 2464 | estraverse: 5.3.0 2465 | hasown: 2.0.2 2466 | jsx-ast-utils: 3.3.5 2467 | minimatch: 3.1.2 2468 | object.entries: 1.1.8 2469 | object.fromentries: 2.0.8 2470 | object.values: 1.2.0 2471 | prop-types: 15.8.1 2472 | resolve: 2.0.0-next.5 2473 | semver: 6.3.1 2474 | string.prototype.matchall: 4.0.11 2475 | string.prototype.repeat: 1.0.0 2476 | 2477 | eslint-scope@7.2.2: 2478 | dependencies: 2479 | esrecurse: 4.3.0 2480 | estraverse: 5.3.0 2481 | 2482 | eslint-visitor-keys@3.4.3: {} 2483 | 2484 | eslint@8.57.0: 2485 | dependencies: 2486 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) 2487 | '@eslint-community/regexpp': 4.11.0 2488 | '@eslint/eslintrc': 2.1.4 2489 | '@eslint/js': 8.57.0 2490 | '@humanwhocodes/config-array': 0.11.14 2491 | '@humanwhocodes/module-importer': 1.0.1 2492 | '@nodelib/fs.walk': 1.2.8 2493 | '@ungap/structured-clone': 1.2.0 2494 | ajv: 6.12.6 2495 | chalk: 4.1.2 2496 | cross-spawn: 7.0.3 2497 | debug: 4.3.6 2498 | doctrine: 3.0.0 2499 | escape-string-regexp: 4.0.0 2500 | eslint-scope: 7.2.2 2501 | eslint-visitor-keys: 3.4.3 2502 | espree: 9.6.1 2503 | esquery: 1.6.0 2504 | esutils: 2.0.3 2505 | fast-deep-equal: 3.1.3 2506 | file-entry-cache: 6.0.1 2507 | find-up: 5.0.0 2508 | glob-parent: 6.0.2 2509 | globals: 13.24.0 2510 | graphemer: 1.4.0 2511 | ignore: 5.3.2 2512 | imurmurhash: 0.1.4 2513 | is-glob: 4.0.3 2514 | is-path-inside: 3.0.3 2515 | js-yaml: 4.1.0 2516 | json-stable-stringify-without-jsonify: 1.0.1 2517 | levn: 0.4.1 2518 | lodash.merge: 4.6.2 2519 | minimatch: 3.1.2 2520 | natural-compare: 1.4.0 2521 | optionator: 0.9.4 2522 | strip-ansi: 6.0.1 2523 | text-table: 0.2.0 2524 | transitivePeerDependencies: 2525 | - supports-color 2526 | 2527 | espree@9.6.1: 2528 | dependencies: 2529 | acorn: 8.12.1 2530 | acorn-jsx: 5.3.2(acorn@8.12.1) 2531 | eslint-visitor-keys: 3.4.3 2532 | 2533 | esquery@1.6.0: 2534 | dependencies: 2535 | estraverse: 5.3.0 2536 | 2537 | esrecurse@4.3.0: 2538 | dependencies: 2539 | estraverse: 5.3.0 2540 | 2541 | estraverse@5.3.0: {} 2542 | 2543 | esutils@2.0.3: {} 2544 | 2545 | fast-deep-equal@3.1.3: {} 2546 | 2547 | fast-glob@3.3.2: 2548 | dependencies: 2549 | '@nodelib/fs.stat': 2.0.5 2550 | '@nodelib/fs.walk': 1.2.8 2551 | glob-parent: 5.1.2 2552 | merge2: 1.4.1 2553 | micromatch: 4.0.7 2554 | 2555 | fast-json-stable-stringify@2.1.0: {} 2556 | 2557 | fast-levenshtein@2.0.6: {} 2558 | 2559 | fastq@1.17.1: 2560 | dependencies: 2561 | reusify: 1.0.4 2562 | 2563 | file-entry-cache@6.0.1: 2564 | dependencies: 2565 | flat-cache: 3.2.0 2566 | 2567 | fill-range@7.1.1: 2568 | dependencies: 2569 | to-regex-range: 5.0.1 2570 | 2571 | find-up@5.0.0: 2572 | dependencies: 2573 | locate-path: 6.0.0 2574 | path-exists: 4.0.0 2575 | 2576 | flat-cache@3.2.0: 2577 | dependencies: 2578 | flatted: 3.3.1 2579 | keyv: 4.5.4 2580 | rimraf: 3.0.2 2581 | 2582 | flatted@3.3.1: {} 2583 | 2584 | for-each@0.3.3: 2585 | dependencies: 2586 | is-callable: 1.2.7 2587 | 2588 | foreground-child@3.3.0: 2589 | dependencies: 2590 | cross-spawn: 7.0.3 2591 | signal-exit: 4.1.0 2592 | 2593 | fs.realpath@1.0.0: {} 2594 | 2595 | fsevents@2.3.3: 2596 | optional: true 2597 | 2598 | function-bind@1.1.2: {} 2599 | 2600 | function.prototype.name@1.1.6: 2601 | dependencies: 2602 | call-bind: 1.0.7 2603 | define-properties: 1.2.1 2604 | es-abstract: 1.23.3 2605 | functions-have-names: 1.2.3 2606 | 2607 | functions-have-names@1.2.3: {} 2608 | 2609 | get-intrinsic@1.2.4: 2610 | dependencies: 2611 | es-errors: 1.3.0 2612 | function-bind: 1.1.2 2613 | has-proto: 1.0.3 2614 | has-symbols: 1.0.3 2615 | hasown: 2.0.2 2616 | 2617 | get-symbol-description@1.0.2: 2618 | dependencies: 2619 | call-bind: 1.0.7 2620 | es-errors: 1.3.0 2621 | get-intrinsic: 1.2.4 2622 | 2623 | get-tsconfig@4.7.6: 2624 | dependencies: 2625 | resolve-pkg-maps: 1.0.0 2626 | 2627 | glob-parent@5.1.2: 2628 | dependencies: 2629 | is-glob: 4.0.3 2630 | 2631 | glob-parent@6.0.2: 2632 | dependencies: 2633 | is-glob: 4.0.3 2634 | 2635 | glob@10.3.10: 2636 | dependencies: 2637 | foreground-child: 3.3.0 2638 | jackspeak: 2.3.6 2639 | minimatch: 9.0.5 2640 | minipass: 7.1.2 2641 | path-scurry: 1.11.1 2642 | 2643 | glob@10.4.5: 2644 | dependencies: 2645 | foreground-child: 3.3.0 2646 | jackspeak: 3.4.3 2647 | minimatch: 9.0.5 2648 | minipass: 7.1.2 2649 | package-json-from-dist: 1.0.0 2650 | path-scurry: 1.11.1 2651 | 2652 | glob@7.2.3: 2653 | dependencies: 2654 | fs.realpath: 1.0.0 2655 | inflight: 1.0.6 2656 | inherits: 2.0.4 2657 | minimatch: 3.1.2 2658 | once: 1.4.0 2659 | path-is-absolute: 1.0.1 2660 | 2661 | globals@13.24.0: 2662 | dependencies: 2663 | type-fest: 0.20.2 2664 | 2665 | globalthis@1.0.4: 2666 | dependencies: 2667 | define-properties: 1.2.1 2668 | gopd: 1.0.1 2669 | 2670 | globby@11.1.0: 2671 | dependencies: 2672 | array-union: 2.1.0 2673 | dir-glob: 3.0.1 2674 | fast-glob: 3.3.2 2675 | ignore: 5.3.2 2676 | merge2: 1.4.1 2677 | slash: 3.0.0 2678 | 2679 | gopd@1.0.1: 2680 | dependencies: 2681 | get-intrinsic: 1.2.4 2682 | 2683 | graceful-fs@4.2.11: {} 2684 | 2685 | graphemer@1.4.0: {} 2686 | 2687 | has-bigints@1.0.2: {} 2688 | 2689 | has-flag@4.0.0: {} 2690 | 2691 | has-property-descriptors@1.0.2: 2692 | dependencies: 2693 | es-define-property: 1.0.0 2694 | 2695 | has-proto@1.0.3: {} 2696 | 2697 | has-symbols@1.0.3: {} 2698 | 2699 | has-tostringtag@1.0.2: 2700 | dependencies: 2701 | has-symbols: 1.0.3 2702 | 2703 | hasown@2.0.2: 2704 | dependencies: 2705 | function-bind: 1.1.2 2706 | 2707 | ieee754@1.2.1: {} 2708 | 2709 | ignore@5.3.2: {} 2710 | 2711 | import-fresh@3.3.0: 2712 | dependencies: 2713 | parent-module: 1.0.1 2714 | resolve-from: 4.0.0 2715 | 2716 | imurmurhash@0.1.4: {} 2717 | 2718 | inflight@1.0.6: 2719 | dependencies: 2720 | once: 1.4.0 2721 | wrappy: 1.0.2 2722 | 2723 | inherits@2.0.4: {} 2724 | 2725 | internal-slot@1.0.7: 2726 | dependencies: 2727 | es-errors: 1.3.0 2728 | hasown: 2.0.2 2729 | side-channel: 1.0.6 2730 | 2731 | is-arguments@1.1.1: 2732 | dependencies: 2733 | call-bind: 1.0.7 2734 | has-tostringtag: 1.0.2 2735 | 2736 | is-array-buffer@3.0.4: 2737 | dependencies: 2738 | call-bind: 1.0.7 2739 | get-intrinsic: 1.2.4 2740 | 2741 | is-async-function@2.0.0: 2742 | dependencies: 2743 | has-tostringtag: 1.0.2 2744 | 2745 | is-bigint@1.0.4: 2746 | dependencies: 2747 | has-bigints: 1.0.2 2748 | 2749 | is-binary-path@2.1.0: 2750 | dependencies: 2751 | binary-extensions: 2.3.0 2752 | 2753 | is-boolean-object@1.1.2: 2754 | dependencies: 2755 | call-bind: 1.0.7 2756 | has-tostringtag: 1.0.2 2757 | 2758 | is-callable@1.2.7: {} 2759 | 2760 | is-core-module@2.15.1: 2761 | dependencies: 2762 | hasown: 2.0.2 2763 | 2764 | is-data-view@1.0.1: 2765 | dependencies: 2766 | is-typed-array: 1.1.13 2767 | 2768 | is-date-object@1.0.5: 2769 | dependencies: 2770 | has-tostringtag: 1.0.2 2771 | 2772 | is-extglob@2.1.1: {} 2773 | 2774 | is-finalizationregistry@1.0.2: 2775 | dependencies: 2776 | call-bind: 1.0.7 2777 | 2778 | is-fullwidth-code-point@3.0.0: {} 2779 | 2780 | is-generator-function@1.0.10: 2781 | dependencies: 2782 | has-tostringtag: 1.0.2 2783 | 2784 | is-glob@4.0.3: 2785 | dependencies: 2786 | is-extglob: 2.1.1 2787 | 2788 | is-map@2.0.3: {} 2789 | 2790 | is-negative-zero@2.0.3: {} 2791 | 2792 | is-number-object@1.0.7: 2793 | dependencies: 2794 | has-tostringtag: 1.0.2 2795 | 2796 | is-number@7.0.0: {} 2797 | 2798 | is-path-inside@3.0.3: {} 2799 | 2800 | is-regex@1.1.4: 2801 | dependencies: 2802 | call-bind: 1.0.7 2803 | has-tostringtag: 1.0.2 2804 | 2805 | is-set@2.0.3: {} 2806 | 2807 | is-shared-array-buffer@1.0.3: 2808 | dependencies: 2809 | call-bind: 1.0.7 2810 | 2811 | is-string@1.0.7: 2812 | dependencies: 2813 | has-tostringtag: 1.0.2 2814 | 2815 | is-symbol@1.0.4: 2816 | dependencies: 2817 | has-symbols: 1.0.3 2818 | 2819 | is-typed-array@1.1.13: 2820 | dependencies: 2821 | which-typed-array: 1.1.15 2822 | 2823 | is-weakmap@2.0.2: {} 2824 | 2825 | is-weakref@1.0.2: 2826 | dependencies: 2827 | call-bind: 1.0.7 2828 | 2829 | is-weakset@2.0.3: 2830 | dependencies: 2831 | call-bind: 1.0.7 2832 | get-intrinsic: 1.2.4 2833 | 2834 | isarray@2.0.5: {} 2835 | 2836 | isexe@2.0.0: {} 2837 | 2838 | isows@1.0.4(ws@8.17.1): 2839 | dependencies: 2840 | ws: 8.17.1 2841 | 2842 | iterator.prototype@1.1.2: 2843 | dependencies: 2844 | define-properties: 1.2.1 2845 | get-intrinsic: 1.2.4 2846 | has-symbols: 1.0.3 2847 | reflect.getprototypeof: 1.0.6 2848 | set-function-name: 2.0.2 2849 | 2850 | jackspeak@2.3.6: 2851 | dependencies: 2852 | '@isaacs/cliui': 8.0.2 2853 | optionalDependencies: 2854 | '@pkgjs/parseargs': 0.11.0 2855 | 2856 | jackspeak@3.4.3: 2857 | dependencies: 2858 | '@isaacs/cliui': 8.0.2 2859 | optionalDependencies: 2860 | '@pkgjs/parseargs': 0.11.0 2861 | 2862 | jiti@1.21.6: {} 2863 | 2864 | jose@4.15.9: {} 2865 | 2866 | js-tokens@4.0.0: {} 2867 | 2868 | js-yaml@4.1.0: 2869 | dependencies: 2870 | argparse: 2.0.1 2871 | 2872 | json-buffer@3.0.1: {} 2873 | 2874 | json-schema-traverse@0.4.1: {} 2875 | 2876 | json-stable-stringify-without-jsonify@1.0.1: {} 2877 | 2878 | json5@1.0.2: 2879 | dependencies: 2880 | minimist: 1.2.8 2881 | 2882 | jsx-ast-utils@3.3.5: 2883 | dependencies: 2884 | array-includes: 3.1.8 2885 | array.prototype.flat: 1.3.2 2886 | object.assign: 4.1.5 2887 | object.values: 1.2.0 2888 | 2889 | keyv@4.5.4: 2890 | dependencies: 2891 | json-buffer: 3.0.1 2892 | 2893 | language-subtag-registry@0.3.23: {} 2894 | 2895 | language-tags@1.0.9: 2896 | dependencies: 2897 | language-subtag-registry: 0.3.23 2898 | 2899 | levn@0.4.1: 2900 | dependencies: 2901 | prelude-ls: 1.2.1 2902 | type-check: 0.4.0 2903 | 2904 | lilconfig@2.1.0: {} 2905 | 2906 | lilconfig@3.1.2: {} 2907 | 2908 | lines-and-columns@1.2.4: {} 2909 | 2910 | locate-path@6.0.0: 2911 | dependencies: 2912 | p-locate: 5.0.0 2913 | 2914 | lodash.merge@4.6.2: {} 2915 | 2916 | loose-envify@1.4.0: 2917 | dependencies: 2918 | js-tokens: 4.0.0 2919 | 2920 | lru-cache@10.4.3: {} 2921 | 2922 | lru-cache@6.0.0: 2923 | dependencies: 2924 | yallist: 4.0.0 2925 | 2926 | merge2@1.4.1: {} 2927 | 2928 | micromatch@4.0.7: 2929 | dependencies: 2930 | braces: 3.0.3 2931 | picomatch: 2.3.1 2932 | 2933 | minimatch@3.1.2: 2934 | dependencies: 2935 | brace-expansion: 1.1.11 2936 | 2937 | minimatch@9.0.3: 2938 | dependencies: 2939 | brace-expansion: 2.0.1 2940 | 2941 | minimatch@9.0.5: 2942 | dependencies: 2943 | brace-expansion: 2.0.1 2944 | 2945 | minimist@1.2.8: {} 2946 | 2947 | minipass@7.1.2: {} 2948 | 2949 | ms@2.1.2: {} 2950 | 2951 | ms@2.1.3: {} 2952 | 2953 | mz@2.7.0: 2954 | dependencies: 2955 | any-promise: 1.3.0 2956 | object-assign: 4.1.1 2957 | thenify-all: 1.6.0 2958 | 2959 | nanoid@3.3.7: {} 2960 | 2961 | natural-compare@1.4.0: {} 2962 | 2963 | next-auth@4.24.7(next@14.2.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 2964 | dependencies: 2965 | '@babel/runtime': 7.25.4 2966 | '@panva/hkdf': 1.2.1 2967 | cookie: 0.5.0 2968 | jose: 4.15.9 2969 | next: 14.2.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2970 | oauth: 0.9.15 2971 | openid-client: 5.6.5 2972 | preact: 10.23.2 2973 | preact-render-to-string: 5.2.6(preact@10.23.2) 2974 | react: 18.3.1 2975 | react-dom: 18.3.1(react@18.3.1) 2976 | uuid: 8.3.2 2977 | 2978 | next@14.2.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 2979 | dependencies: 2980 | '@next/env': 14.2.6 2981 | '@swc/helpers': 0.5.5 2982 | busboy: 1.6.0 2983 | caniuse-lite: 1.0.30001651 2984 | graceful-fs: 4.2.11 2985 | postcss: 8.4.31 2986 | react: 18.3.1 2987 | react-dom: 18.3.1(react@18.3.1) 2988 | styled-jsx: 5.1.1(react@18.3.1) 2989 | optionalDependencies: 2990 | '@next/swc-darwin-arm64': 14.2.6 2991 | '@next/swc-darwin-x64': 14.2.6 2992 | '@next/swc-linux-arm64-gnu': 14.2.6 2993 | '@next/swc-linux-arm64-musl': 14.2.6 2994 | '@next/swc-linux-x64-gnu': 14.2.6 2995 | '@next/swc-linux-x64-musl': 14.2.6 2996 | '@next/swc-win32-arm64-msvc': 14.2.6 2997 | '@next/swc-win32-ia32-msvc': 14.2.6 2998 | '@next/swc-win32-x64-msvc': 14.2.6 2999 | transitivePeerDependencies: 3000 | - '@babel/core' 3001 | - babel-plugin-macros 3002 | 3003 | normalize-path@3.0.0: {} 3004 | 3005 | oauth@0.9.15: {} 3006 | 3007 | object-assign@4.1.1: {} 3008 | 3009 | object-hash@2.2.0: {} 3010 | 3011 | object-hash@3.0.0: {} 3012 | 3013 | object-inspect@1.13.2: {} 3014 | 3015 | object-is@1.1.6: 3016 | dependencies: 3017 | call-bind: 1.0.7 3018 | define-properties: 1.2.1 3019 | 3020 | object-keys@1.1.1: {} 3021 | 3022 | object.assign@4.1.5: 3023 | dependencies: 3024 | call-bind: 1.0.7 3025 | define-properties: 1.2.1 3026 | has-symbols: 1.0.3 3027 | object-keys: 1.1.1 3028 | 3029 | object.entries@1.1.8: 3030 | dependencies: 3031 | call-bind: 1.0.7 3032 | define-properties: 1.2.1 3033 | es-object-atoms: 1.0.0 3034 | 3035 | object.fromentries@2.0.8: 3036 | dependencies: 3037 | call-bind: 1.0.7 3038 | define-properties: 1.2.1 3039 | es-abstract: 1.23.3 3040 | es-object-atoms: 1.0.0 3041 | 3042 | object.groupby@1.0.3: 3043 | dependencies: 3044 | call-bind: 1.0.7 3045 | define-properties: 1.2.1 3046 | es-abstract: 1.23.3 3047 | 3048 | object.values@1.2.0: 3049 | dependencies: 3050 | call-bind: 1.0.7 3051 | define-properties: 1.2.1 3052 | es-object-atoms: 1.0.0 3053 | 3054 | oidc-token-hash@5.0.3: {} 3055 | 3056 | once@1.4.0: 3057 | dependencies: 3058 | wrappy: 1.0.2 3059 | 3060 | openid-client@5.6.5: 3061 | dependencies: 3062 | jose: 4.15.9 3063 | lru-cache: 6.0.0 3064 | object-hash: 2.2.0 3065 | oidc-token-hash: 5.0.3 3066 | 3067 | optionator@0.9.4: 3068 | dependencies: 3069 | deep-is: 0.1.4 3070 | fast-levenshtein: 2.0.6 3071 | levn: 0.4.1 3072 | prelude-ls: 1.2.1 3073 | type-check: 0.4.0 3074 | word-wrap: 1.2.5 3075 | 3076 | p-limit@3.1.0: 3077 | dependencies: 3078 | yocto-queue: 0.1.0 3079 | 3080 | p-locate@5.0.0: 3081 | dependencies: 3082 | p-limit: 3.1.0 3083 | 3084 | package-json-from-dist@1.0.0: {} 3085 | 3086 | parent-module@1.0.1: 3087 | dependencies: 3088 | callsites: 3.1.0 3089 | 3090 | path-exists@4.0.0: {} 3091 | 3092 | path-is-absolute@1.0.1: {} 3093 | 3094 | path-key@3.1.1: {} 3095 | 3096 | path-parse@1.0.7: {} 3097 | 3098 | path-scurry@1.11.1: 3099 | dependencies: 3100 | lru-cache: 10.4.3 3101 | minipass: 7.1.2 3102 | 3103 | path-type@4.0.0: {} 3104 | 3105 | picocolors@1.0.1: {} 3106 | 3107 | picomatch@2.3.1: {} 3108 | 3109 | pify@2.3.0: {} 3110 | 3111 | pirates@4.0.6: {} 3112 | 3113 | possible-typed-array-names@1.0.0: {} 3114 | 3115 | postcss-import@15.1.0(postcss@8.4.41): 3116 | dependencies: 3117 | postcss: 8.4.41 3118 | postcss-value-parser: 4.2.0 3119 | read-cache: 1.0.0 3120 | resolve: 1.22.8 3121 | 3122 | postcss-js@4.0.1(postcss@8.4.41): 3123 | dependencies: 3124 | camelcase-css: 2.0.1 3125 | postcss: 8.4.41 3126 | 3127 | postcss-load-config@4.0.2(postcss@8.4.41): 3128 | dependencies: 3129 | lilconfig: 3.1.2 3130 | yaml: 2.5.0 3131 | optionalDependencies: 3132 | postcss: 8.4.41 3133 | 3134 | postcss-nested@6.2.0(postcss@8.4.41): 3135 | dependencies: 3136 | postcss: 8.4.41 3137 | postcss-selector-parser: 6.1.2 3138 | 3139 | postcss-selector-parser@6.1.2: 3140 | dependencies: 3141 | cssesc: 3.0.0 3142 | util-deprecate: 1.0.2 3143 | 3144 | postcss-value-parser@4.2.0: {} 3145 | 3146 | postcss@8.4.31: 3147 | dependencies: 3148 | nanoid: 3.3.7 3149 | picocolors: 1.0.1 3150 | source-map-js: 1.2.0 3151 | 3152 | postcss@8.4.41: 3153 | dependencies: 3154 | nanoid: 3.3.7 3155 | picocolors: 1.0.1 3156 | source-map-js: 1.2.0 3157 | 3158 | preact-render-to-string@5.2.6(preact@10.23.2): 3159 | dependencies: 3160 | preact: 10.23.2 3161 | pretty-format: 3.8.0 3162 | 3163 | preact@10.23.2: {} 3164 | 3165 | prelude-ls@1.2.1: {} 3166 | 3167 | pretty-format@3.8.0: {} 3168 | 3169 | prop-types@15.8.1: 3170 | dependencies: 3171 | loose-envify: 1.4.0 3172 | object-assign: 4.1.1 3173 | react-is: 16.13.1 3174 | 3175 | punycode@2.3.1: {} 3176 | 3177 | queue-microtask@1.2.3: {} 3178 | 3179 | react-dom@18.3.1(react@18.3.1): 3180 | dependencies: 3181 | loose-envify: 1.4.0 3182 | react: 18.3.1 3183 | scheduler: 0.23.2 3184 | 3185 | react-is@16.13.1: {} 3186 | 3187 | react@18.3.1: 3188 | dependencies: 3189 | loose-envify: 1.4.0 3190 | 3191 | read-cache@1.0.0: 3192 | dependencies: 3193 | pify: 2.3.0 3194 | 3195 | readdirp@3.6.0: 3196 | dependencies: 3197 | picomatch: 2.3.1 3198 | 3199 | reflect.getprototypeof@1.0.6: 3200 | dependencies: 3201 | call-bind: 1.0.7 3202 | define-properties: 1.2.1 3203 | es-abstract: 1.23.3 3204 | es-errors: 1.3.0 3205 | get-intrinsic: 1.2.4 3206 | globalthis: 1.0.4 3207 | which-builtin-type: 1.1.4 3208 | 3209 | regenerator-runtime@0.14.1: {} 3210 | 3211 | regexp.prototype.flags@1.5.2: 3212 | dependencies: 3213 | call-bind: 1.0.7 3214 | define-properties: 1.2.1 3215 | es-errors: 1.3.0 3216 | set-function-name: 2.0.2 3217 | 3218 | resolve-from@4.0.0: {} 3219 | 3220 | resolve-pkg-maps@1.0.0: {} 3221 | 3222 | resolve@1.22.8: 3223 | dependencies: 3224 | is-core-module: 2.15.1 3225 | path-parse: 1.0.7 3226 | supports-preserve-symlinks-flag: 1.0.0 3227 | 3228 | resolve@2.0.0-next.5: 3229 | dependencies: 3230 | is-core-module: 2.15.1 3231 | path-parse: 1.0.7 3232 | supports-preserve-symlinks-flag: 1.0.0 3233 | 3234 | reusify@1.0.4: {} 3235 | 3236 | rimraf@3.0.2: 3237 | dependencies: 3238 | glob: 7.2.3 3239 | 3240 | run-parallel@1.2.0: 3241 | dependencies: 3242 | queue-microtask: 1.2.3 3243 | 3244 | safe-array-concat@1.1.2: 3245 | dependencies: 3246 | call-bind: 1.0.7 3247 | get-intrinsic: 1.2.4 3248 | has-symbols: 1.0.3 3249 | isarray: 2.0.5 3250 | 3251 | safe-regex-test@1.0.3: 3252 | dependencies: 3253 | call-bind: 1.0.7 3254 | es-errors: 1.3.0 3255 | is-regex: 1.1.4 3256 | 3257 | scheduler@0.23.2: 3258 | dependencies: 3259 | loose-envify: 1.4.0 3260 | 3261 | semver@6.3.1: {} 3262 | 3263 | semver@7.6.3: {} 3264 | 3265 | set-function-length@1.2.2: 3266 | dependencies: 3267 | define-data-property: 1.1.4 3268 | es-errors: 1.3.0 3269 | function-bind: 1.1.2 3270 | get-intrinsic: 1.2.4 3271 | gopd: 1.0.1 3272 | has-property-descriptors: 1.0.2 3273 | 3274 | set-function-name@2.0.2: 3275 | dependencies: 3276 | define-data-property: 1.1.4 3277 | es-errors: 1.3.0 3278 | functions-have-names: 1.2.3 3279 | has-property-descriptors: 1.0.2 3280 | 3281 | shebang-command@2.0.0: 3282 | dependencies: 3283 | shebang-regex: 3.0.0 3284 | 3285 | shebang-regex@3.0.0: {} 3286 | 3287 | side-channel@1.0.6: 3288 | dependencies: 3289 | call-bind: 1.0.7 3290 | es-errors: 1.3.0 3291 | get-intrinsic: 1.2.4 3292 | object-inspect: 1.13.2 3293 | 3294 | signal-exit@4.1.0: {} 3295 | 3296 | slash@3.0.0: {} 3297 | 3298 | source-map-js@1.2.0: {} 3299 | 3300 | stop-iteration-iterator@1.0.0: 3301 | dependencies: 3302 | internal-slot: 1.0.7 3303 | 3304 | streamsearch@1.1.0: {} 3305 | 3306 | string-width@4.2.3: 3307 | dependencies: 3308 | emoji-regex: 8.0.0 3309 | is-fullwidth-code-point: 3.0.0 3310 | strip-ansi: 6.0.1 3311 | 3312 | string-width@5.1.2: 3313 | dependencies: 3314 | eastasianwidth: 0.2.0 3315 | emoji-regex: 9.2.2 3316 | strip-ansi: 7.1.0 3317 | 3318 | string.prototype.includes@2.0.0: 3319 | dependencies: 3320 | define-properties: 1.2.1 3321 | es-abstract: 1.23.3 3322 | 3323 | string.prototype.matchall@4.0.11: 3324 | dependencies: 3325 | call-bind: 1.0.7 3326 | define-properties: 1.2.1 3327 | es-abstract: 1.23.3 3328 | es-errors: 1.3.0 3329 | es-object-atoms: 1.0.0 3330 | get-intrinsic: 1.2.4 3331 | gopd: 1.0.1 3332 | has-symbols: 1.0.3 3333 | internal-slot: 1.0.7 3334 | regexp.prototype.flags: 1.5.2 3335 | set-function-name: 2.0.2 3336 | side-channel: 1.0.6 3337 | 3338 | string.prototype.repeat@1.0.0: 3339 | dependencies: 3340 | define-properties: 1.2.1 3341 | es-abstract: 1.23.3 3342 | 3343 | string.prototype.trim@1.2.9: 3344 | dependencies: 3345 | call-bind: 1.0.7 3346 | define-properties: 1.2.1 3347 | es-abstract: 1.23.3 3348 | es-object-atoms: 1.0.0 3349 | 3350 | string.prototype.trimend@1.0.8: 3351 | dependencies: 3352 | call-bind: 1.0.7 3353 | define-properties: 1.2.1 3354 | es-object-atoms: 1.0.0 3355 | 3356 | string.prototype.trimstart@1.0.8: 3357 | dependencies: 3358 | call-bind: 1.0.7 3359 | define-properties: 1.2.1 3360 | es-object-atoms: 1.0.0 3361 | 3362 | strip-ansi@6.0.1: 3363 | dependencies: 3364 | ansi-regex: 5.0.1 3365 | 3366 | strip-ansi@7.1.0: 3367 | dependencies: 3368 | ansi-regex: 6.0.1 3369 | 3370 | strip-bom@3.0.0: {} 3371 | 3372 | strip-json-comments@3.1.1: {} 3373 | 3374 | styled-jsx@5.1.1(react@18.3.1): 3375 | dependencies: 3376 | client-only: 0.0.1 3377 | react: 18.3.1 3378 | 3379 | sucrase@3.35.0: 3380 | dependencies: 3381 | '@jridgewell/gen-mapping': 0.3.5 3382 | commander: 4.1.1 3383 | glob: 10.4.5 3384 | lines-and-columns: 1.2.4 3385 | mz: 2.7.0 3386 | pirates: 4.0.6 3387 | ts-interface-checker: 0.1.13 3388 | 3389 | supports-color@7.2.0: 3390 | dependencies: 3391 | has-flag: 4.0.0 3392 | 3393 | supports-preserve-symlinks-flag@1.0.0: {} 3394 | 3395 | tailwindcss@3.4.10: 3396 | dependencies: 3397 | '@alloc/quick-lru': 5.2.0 3398 | arg: 5.0.2 3399 | chokidar: 3.6.0 3400 | didyoumean: 1.2.2 3401 | dlv: 1.1.3 3402 | fast-glob: 3.3.2 3403 | glob-parent: 6.0.2 3404 | is-glob: 4.0.3 3405 | jiti: 1.21.6 3406 | lilconfig: 2.1.0 3407 | micromatch: 4.0.7 3408 | normalize-path: 3.0.0 3409 | object-hash: 3.0.0 3410 | picocolors: 1.0.1 3411 | postcss: 8.4.41 3412 | postcss-import: 15.1.0(postcss@8.4.41) 3413 | postcss-js: 4.0.1(postcss@8.4.41) 3414 | postcss-load-config: 4.0.2(postcss@8.4.41) 3415 | postcss-nested: 6.2.0(postcss@8.4.41) 3416 | postcss-selector-parser: 6.1.2 3417 | resolve: 1.22.8 3418 | sucrase: 3.35.0 3419 | transitivePeerDependencies: 3420 | - ts-node 3421 | 3422 | tapable@2.2.1: {} 3423 | 3424 | text-table@0.2.0: {} 3425 | 3426 | thenify-all@1.6.0: 3427 | dependencies: 3428 | thenify: 3.3.1 3429 | 3430 | thenify@3.3.1: 3431 | dependencies: 3432 | any-promise: 1.3.0 3433 | 3434 | to-regex-range@5.0.1: 3435 | dependencies: 3436 | is-number: 7.0.0 3437 | 3438 | ts-api-utils@1.3.0(typescript@5.5.4): 3439 | dependencies: 3440 | typescript: 5.5.4 3441 | 3442 | ts-interface-checker@0.1.13: {} 3443 | 3444 | tsconfig-paths@3.15.0: 3445 | dependencies: 3446 | '@types/json5': 0.0.29 3447 | json5: 1.0.2 3448 | minimist: 1.2.8 3449 | strip-bom: 3.0.0 3450 | 3451 | tslib@2.6.3: {} 3452 | 3453 | type-check@0.4.0: 3454 | dependencies: 3455 | prelude-ls: 1.2.1 3456 | 3457 | type-fest@0.20.2: {} 3458 | 3459 | typed-array-buffer@1.0.2: 3460 | dependencies: 3461 | call-bind: 1.0.7 3462 | es-errors: 1.3.0 3463 | is-typed-array: 1.1.13 3464 | 3465 | typed-array-byte-length@1.0.1: 3466 | dependencies: 3467 | call-bind: 1.0.7 3468 | for-each: 0.3.3 3469 | gopd: 1.0.1 3470 | has-proto: 1.0.3 3471 | is-typed-array: 1.1.13 3472 | 3473 | typed-array-byte-offset@1.0.2: 3474 | dependencies: 3475 | available-typed-arrays: 1.0.7 3476 | call-bind: 1.0.7 3477 | for-each: 0.3.3 3478 | gopd: 1.0.1 3479 | has-proto: 1.0.3 3480 | is-typed-array: 1.1.13 3481 | 3482 | typed-array-length@1.0.6: 3483 | dependencies: 3484 | call-bind: 1.0.7 3485 | for-each: 0.3.3 3486 | gopd: 1.0.1 3487 | has-proto: 1.0.3 3488 | is-typed-array: 1.1.13 3489 | possible-typed-array-names: 1.0.0 3490 | 3491 | typescript@5.5.4: {} 3492 | 3493 | unbox-primitive@1.0.2: 3494 | dependencies: 3495 | call-bind: 1.0.7 3496 | has-bigints: 1.0.2 3497 | has-symbols: 1.0.3 3498 | which-boxed-primitive: 1.0.2 3499 | 3500 | undici-types@6.19.8: {} 3501 | 3502 | uri-js@4.4.1: 3503 | dependencies: 3504 | punycode: 2.3.1 3505 | 3506 | use-sync-external-store@1.2.2(react@18.3.1): 3507 | dependencies: 3508 | react: 18.3.1 3509 | 3510 | util-deprecate@1.0.2: {} 3511 | 3512 | uuid@8.3.2: {} 3513 | 3514 | viem@2.20.0(typescript@5.5.4): 3515 | dependencies: 3516 | '@adraffy/ens-normalize': 1.10.0 3517 | '@noble/curves': 1.4.0 3518 | '@noble/hashes': 1.4.0 3519 | '@scure/bip32': 1.4.0 3520 | '@scure/bip39': 1.3.0 3521 | abitype: 1.0.5(typescript@5.5.4) 3522 | isows: 1.0.4(ws@8.17.1) 3523 | webauthn-p256: 0.0.5 3524 | ws: 8.17.1 3525 | optionalDependencies: 3526 | typescript: 5.5.4 3527 | transitivePeerDependencies: 3528 | - bufferutil 3529 | - utf-8-validate 3530 | - zod 3531 | 3532 | webauthn-p256@0.0.5: 3533 | dependencies: 3534 | '@noble/curves': 1.4.0 3535 | '@noble/hashes': 1.4.0 3536 | 3537 | which-boxed-primitive@1.0.2: 3538 | dependencies: 3539 | is-bigint: 1.0.4 3540 | is-boolean-object: 1.1.2 3541 | is-number-object: 1.0.7 3542 | is-string: 1.0.7 3543 | is-symbol: 1.0.4 3544 | 3545 | which-builtin-type@1.1.4: 3546 | dependencies: 3547 | function.prototype.name: 1.1.6 3548 | has-tostringtag: 1.0.2 3549 | is-async-function: 2.0.0 3550 | is-date-object: 1.0.5 3551 | is-finalizationregistry: 1.0.2 3552 | is-generator-function: 1.0.10 3553 | is-regex: 1.1.4 3554 | is-weakref: 1.0.2 3555 | isarray: 2.0.5 3556 | which-boxed-primitive: 1.0.2 3557 | which-collection: 1.0.2 3558 | which-typed-array: 1.1.15 3559 | 3560 | which-collection@1.0.2: 3561 | dependencies: 3562 | is-map: 2.0.3 3563 | is-set: 2.0.3 3564 | is-weakmap: 2.0.2 3565 | is-weakset: 2.0.3 3566 | 3567 | which-typed-array@1.1.15: 3568 | dependencies: 3569 | available-typed-arrays: 1.0.7 3570 | call-bind: 1.0.7 3571 | for-each: 0.3.3 3572 | gopd: 1.0.1 3573 | has-tostringtag: 1.0.2 3574 | 3575 | which@2.0.2: 3576 | dependencies: 3577 | isexe: 2.0.0 3578 | 3579 | word-wrap@1.2.5: {} 3580 | 3581 | wrap-ansi@7.0.0: 3582 | dependencies: 3583 | ansi-styles: 4.3.0 3584 | string-width: 4.2.3 3585 | strip-ansi: 6.0.1 3586 | 3587 | wrap-ansi@8.1.0: 3588 | dependencies: 3589 | ansi-styles: 6.2.1 3590 | string-width: 5.1.2 3591 | strip-ansi: 7.1.0 3592 | 3593 | wrappy@1.0.2: {} 3594 | 3595 | ws@8.17.1: {} 3596 | 3597 | yallist@4.0.0: {} 3598 | 3599 | yaml@2.5.0: {} 3600 | 3601 | yocto-queue@0.1.0: {} 3602 | 3603 | zustand@4.5.5(@types/react@18.3.4)(react@18.3.1): 3604 | dependencies: 3605 | use-sync-external-store: 1.2.2(react@18.3.1) 3606 | optionalDependencies: 3607 | '@types/react': 18.3.4 3608 | react: 18.3.1 3609 | --------------------------------------------------------------------------------