├── .env.example ├── .eslintrc.json ├── .prettierignore ├── .gitattributes ├── public └── favicon.ico ├── next.config.js ├── postcss.config.js ├── .vscode └── settings.json ├── src ├── lib │ └── utils.ts ├── types │ └── index.d.ts ├── env.mjs ├── components │ ├── icons.tsx │ ├── theme-provider.tsx │ ├── mode-toggle.tsx │ └── ui │ │ ├── button.tsx │ │ └── dropdown-menu.tsx ├── config │ └── site.ts ├── app │ ├── page.tsx │ └── layout.tsx └── styles │ └── globals.css ├── components.json ├── .gitignore ├── tsconfig.json ├── prettier.config.js ├── LICENSE ├── package.json ├── README.md ├── tailwind.config.js └── pnpm-lock.yaml /.env.example: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_APP_URL=http://localhost:3000 -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | .next 4 | package.json 5 | pnpm-lock.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redpangilinan/next-entree/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = {} 3 | 4 | module.exports = nextConfig 5 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true, 3 | "editor.defaultFormatter": "esbenp.prettier-vscode" 4 | } 5 | -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- 1 | import { clsx, type ClassValue } from "clsx" 2 | import { twMerge } from "tailwind-merge" 3 | 4 | export function cn(...inputs: ClassValue[]) { 5 | return twMerge(clsx(inputs)) 6 | } 7 | -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- 1 | export type SiteConfig = { 2 | name: string 3 | author: string 4 | description: string 5 | keywords: Array 6 | url: { 7 | base: string 8 | author: string 9 | } 10 | links: { 11 | github: string 12 | } 13 | ogImage: string 14 | } 15 | -------------------------------------------------------------------------------- /src/env.mjs: -------------------------------------------------------------------------------- 1 | import { createEnv } from "@t3-oss/env-nextjs" 2 | import { z } from "zod" 3 | 4 | export const env = createEnv({ 5 | client: { 6 | NEXT_PUBLIC_APP_URL: z.string().min(1), 7 | }, 8 | runtimeEnv: { 9 | NEXT_PUBLIC_APP_URL: process.env.NEXT_PUBLIC_APP_URL, 10 | }, 11 | }) 12 | -------------------------------------------------------------------------------- /src/components/icons.tsx: -------------------------------------------------------------------------------- 1 | import { Command, Moon, SunMedium } from "lucide-react" 2 | 3 | export type IconKeys = keyof typeof icons 4 | 5 | type IconsType = { 6 | [key in IconKeys]: React.ElementType 7 | } 8 | 9 | const icons = { 10 | logo: Command, 11 | sun: SunMedium, 12 | moon: Moon, 13 | } 14 | 15 | export const Icons: IconsType = icons 16 | -------------------------------------------------------------------------------- /src/components/theme-provider.tsx: -------------------------------------------------------------------------------- 1 | "use client" 2 | 3 | import * as React from "react" 4 | import { ThemeProvider as NextThemesProvider } from "next-themes" 5 | import { type ThemeProviderProps } from "next-themes/dist/types" 6 | 7 | export function ThemeProvider({ children, ...props }: ThemeProviderProps) { 8 | return {children} 9 | } 10 | -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://ui.shadcn.com/schema.json", 3 | "style": "default", 4 | "rsc": true, 5 | "tsx": true, 6 | "tailwind": { 7 | "config": "tailwind.config.js", 8 | "css": "src/styles/globals.css", 9 | "baseColor": "neutral", 10 | "cssVariables": true, 11 | "prefix": "" 12 | }, 13 | "aliases": { 14 | "components": "@/components", 15 | "utils": "@/lib/utils" 16 | } 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 | -------------------------------------------------------------------------------- /src/config/site.ts: -------------------------------------------------------------------------------- 1 | import { SiteConfig } from "@/types" 2 | 3 | import { env } from "@/env.mjs" 4 | 5 | export const siteConfig: SiteConfig = { 6 | name: "Next Entree", 7 | author: "redpangilinan", 8 | description: 9 | "Next.js 14+ starter template with app router, shadcn/ui, typesafe env, icons and configs setup.", 10 | keywords: ["Next.js", "React", "Tailwind CSS", "Radix UI", "shadcn/ui"], 11 | url: { 12 | base: env.NEXT_PUBLIC_APP_URL, 13 | author: "https://rdev.pro", 14 | }, 15 | links: { 16 | github: "https://github.com/redpangilinan/next-entree", 17 | }, 18 | ogImage: `${env.NEXT_PUBLIC_APP_URL}/og.jpg`, 19 | } 20 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "noEmit": true, 9 | "esModuleInterop": true, 10 | "module": "esnext", 11 | "moduleResolution": "bundler", 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "jsx": "preserve", 15 | "incremental": true, 16 | "plugins": [ 17 | { 18 | "name": "next" 19 | } 20 | ], 21 | "paths": { 22 | "@/*": ["./src/*"] 23 | } 24 | }, 25 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 26 | "exclude": ["node_modules"] 27 | } 28 | -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('prettier').Config} */ 2 | module.exports = { 3 | endOfLine: "lf", 4 | semi: false, 5 | singleQuote: false, 6 | tabWidth: 2, 7 | trailingComma: "es5", 8 | importOrder: [ 9 | "^(react/(.*)$)|^(react$)", 10 | "^(next/(.*)$)|^(next$)", 11 | "", 12 | "", 13 | "^types$", 14 | "^@/env(.*)$", 15 | "^@/types/(.*)$", 16 | "^@/config/(.*)$", 17 | "^@/lib/(.*)$", 18 | "^@/hooks/(.*)$", 19 | "^@/components/ui/(.*)$", 20 | "^@/components/(.*)$", 21 | "^@/styles/(.*)$", 22 | "^@/app/(.*)$", 23 | "", 24 | "^[./]", 25 | ], 26 | importOrderParserPlugins: ["typescript", "jsx", "decorators-legacy"], 27 | plugins: [ 28 | "@ianvs/prettier-plugin-sort-imports", 29 | "prettier-plugin-tailwindcss", 30 | ], 31 | } 32 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 redpangilinan 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- 1 | import Link from "next/link" 2 | 3 | import { siteConfig } from "@/config/site" 4 | import { cn } from "@/lib/utils" 5 | import { buttonVariants } from "@/components/ui/button" 6 | import { Icons } from "@/components/icons" 7 | import { ModeToggle } from "@/components/mode-toggle" 8 | 9 | export default function Home() { 10 | return ( 11 |
12 |
13 | 14 |

15 | {siteConfig.name} 16 |

17 |

18 | {siteConfig.description} 19 |

20 |
21 | 26 | Get Started 27 | 28 | 29 |
30 |
31 |
32 | ) 33 | } 34 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "next-entree", 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 | "format": "pnpm prettier ./src --write", 11 | "format:check": "pnpm prettier ./src --check" 12 | }, 13 | "dependencies": { 14 | "@radix-ui/react-dropdown-menu": "^2.0.6", 15 | "@radix-ui/react-slot": "^1.0.2", 16 | "@t3-oss/env-nextjs": "^0.9.2", 17 | "class-variance-authority": "^0.7.0", 18 | "clsx": "^2.1.1", 19 | "lucide-react": "^0.330.0", 20 | "next": "14.1.1", 21 | "next-themes": "^0.2.1", 22 | "react": "^18.3.1", 23 | "react-dom": "^18.3.1", 24 | "tailwind-merge": "^2.3.0", 25 | "tailwindcss-animate": "^1.0.7", 26 | "zod": "^3.23.4" 27 | }, 28 | "devDependencies": { 29 | "@ianvs/prettier-plugin-sort-imports": "^4.2.1", 30 | "@types/node": "^20.12.7", 31 | "@types/react": "^18.3.1", 32 | "@types/react-dom": "^18.3.0", 33 | "autoprefixer": "^10.4.19", 34 | "eslint": "^8.57.0", 35 | "eslint-config-next": "14.1.0", 36 | "postcss": "^8.4.38", 37 | "prettier": "^3.2.5", 38 | "prettier-plugin-tailwindcss": "^0.5.14", 39 | "tailwindcss": "^3.4.3", 40 | "typescript": "^5.4.5" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Next Entree 2 | 3 | Next.js 14+ starter template with app router, shadcn/ui, typesafe env, icons and configs setup. 4 | 5 | ## Usage 6 | 7 | 1. Setup a project using the template 8 | 9 | ```bash 10 | pnpm create next-app -e https://github.com/redpangilinan/next-entree 11 | ``` 12 | 13 | ```bash 14 | npx create-next-app -e https://github.com/redpangilinan/next-entree 15 | ``` 16 | 17 | ```bash 18 | yarn create next-app -e https://github.com/redpangilinan/next-entree 19 | ``` 20 | 21 | ```bash 22 | bunx create-next-app -e https://github.com/redpangilinan/next-entree 23 | ``` 24 | 25 | 2. Copy `.env.example` to `.env.local` 26 | 27 | ```bash 28 | cp .env.example .env.local 29 | ``` 30 | 31 | ## Features 32 | 33 | This template uses [shadcn](https://github.com/shadcn)'s Next.js app structure from [shadcn/ui](https://ui.shadcn.com/). 34 | 35 | - Next.js 14+ `/app` router 36 | - TypeScript 37 | - Tailwind CSS 38 | - shadcn/ui (Radix UI + Tailwind) 39 | - Prettier (w/ auto sort imports and tailwind classes) 40 | - SEO optimized 41 | - Typesafe env, icons, and config 42 | - Ready to use - jump right into development 43 | 44 | ## Scripts 45 | 46 | If you are using a different package manager, be sure to update the package.json format scripts. 47 | 48 | 1. Check project formatting 49 | 50 | ```bash 51 | pnpm format:check 52 | ``` 53 | 54 | 2. Format the project 55 | 56 | ```bash 57 | pnpm format 58 | ``` 59 | -------------------------------------------------------------------------------- /src/components/mode-toggle.tsx: -------------------------------------------------------------------------------- 1 | "use client" 2 | 3 | import * as React from "react" 4 | import { useTheme } from "next-themes" 5 | 6 | import { Button } from "@/components/ui/button" 7 | import { 8 | DropdownMenu, 9 | DropdownMenuContent, 10 | DropdownMenuItem, 11 | DropdownMenuTrigger, 12 | } from "@/components/ui/dropdown-menu" 13 | import { Icons } from "@/components/icons" 14 | 15 | export function ModeToggle() { 16 | const { setTheme } = useTheme() 17 | 18 | return ( 19 | 20 | 21 | 26 | 27 | 28 | setTheme("light")}> 29 | Light 30 | 31 | setTheme("dark")}> 32 | Dark 33 | 34 | setTheme("system")}> 35 | System 36 | 37 | 38 | 39 | ) 40 | } 41 | -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | @layer base { 6 | :root { 7 | --background: 0 0% 100%; 8 | --foreground: 0 0% 3.9%; 9 | 10 | --card: 0 0% 100%; 11 | --card-foreground: 0 0% 3.9%; 12 | 13 | --popover: 0 0% 100%; 14 | --popover-foreground: 0 0% 3.9%; 15 | 16 | --primary: 0 0% 9%; 17 | --primary-foreground: 0 0% 98%; 18 | 19 | --secondary: 0 0% 96.1%; 20 | --secondary-foreground: 0 0% 9%; 21 | 22 | --muted: 0 0% 96.1%; 23 | --muted-foreground: 0 0% 45.1%; 24 | 25 | --accent: 0 0% 96.1%; 26 | --accent-foreground: 0 0% 9%; 27 | 28 | --destructive: 0 84.2% 60.2%; 29 | --destructive-foreground: 0 0% 98%; 30 | 31 | --border: 0 0% 89.8%; 32 | --input: 0 0% 89.8%; 33 | --ring: 0 0% 3.9%; 34 | 35 | --radius: 0.5rem; 36 | } 37 | 38 | .dark { 39 | --background: 0 0% 3.9%; 40 | --foreground: 0 0% 98%; 41 | 42 | --card: 0 0% 3.9%; 43 | --card-foreground: 0 0% 98%; 44 | 45 | --popover: 0 0% 3.9%; 46 | --popover-foreground: 0 0% 98%; 47 | 48 | --primary: 0 0% 98%; 49 | --primary-foreground: 0 0% 9%; 50 | 51 | --secondary: 0 0% 14.9%; 52 | --secondary-foreground: 0 0% 98%; 53 | 54 | --muted: 0 0% 14.9%; 55 | --muted-foreground: 0 0% 63.9%; 56 | 57 | --accent: 0 0% 14.9%; 58 | --accent-foreground: 0 0% 98%; 59 | 60 | --destructive: 0 62.8% 30.6%; 61 | --destructive-foreground: 0 0% 98%; 62 | 63 | --border: 0 0% 14.9%; 64 | --input: 0 0% 14.9%; 65 | --ring: 0 0% 83.1%; 66 | } 67 | } 68 | 69 | @layer base { 70 | * { 71 | @apply border-border; 72 | } 73 | body { 74 | @apply bg-background text-foreground; 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react" 2 | import { Slot } from "@radix-ui/react-slot" 3 | import { cva, type VariantProps } from "class-variance-authority" 4 | 5 | import { cn } from "@/lib/utils" 6 | 7 | const buttonVariants = cva( 8 | "inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50", 9 | { 10 | variants: { 11 | variant: { 12 | default: "bg-primary text-primary-foreground hover:bg-primary/90", 13 | destructive: 14 | "bg-destructive text-destructive-foreground hover:bg-destructive/90", 15 | outline: 16 | "border border-input bg-background hover:bg-accent hover:text-accent-foreground", 17 | secondary: 18 | "bg-secondary text-secondary-foreground hover:bg-secondary/80", 19 | ghost: "hover:bg-accent hover:text-accent-foreground", 20 | link: "text-primary underline-offset-4 hover:underline", 21 | }, 22 | size: { 23 | default: "h-10 px-4 py-2", 24 | sm: "h-9 rounded-md px-3", 25 | lg: "h-11 rounded-md px-8", 26 | icon: "h-10 w-10", 27 | }, 28 | }, 29 | defaultVariants: { 30 | variant: "default", 31 | size: "default", 32 | }, 33 | } 34 | ) 35 | 36 | export interface ButtonProps 37 | extends React.ButtonHTMLAttributes, 38 | VariantProps { 39 | asChild?: boolean 40 | } 41 | 42 | const Button = React.forwardRef( 43 | ({ className, variant, size, asChild = false, ...props }, ref) => { 44 | const Comp = asChild ? Slot : "button" 45 | return ( 46 | 51 | ) 52 | } 53 | ) 54 | Button.displayName = "Button" 55 | 56 | export { Button, buttonVariants } 57 | -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- 1 | import "@/styles/globals.css" 2 | 3 | import type { Metadata, Viewport } from "next" 4 | import { Inter } from "next/font/google" 5 | 6 | import { siteConfig } from "@/config/site" 7 | import { cn } from "@/lib/utils" 8 | import { ThemeProvider } from "@/components/theme-provider" 9 | 10 | const inter = Inter({ subsets: ["latin"] }) 11 | 12 | interface RootLayoutProps { 13 | children: React.ReactNode 14 | } 15 | 16 | export const metadata: Metadata = { 17 | metadataBase: new URL(siteConfig.url.base), 18 | title: { 19 | default: siteConfig.name, 20 | template: `%s | ${siteConfig.name}`, 21 | }, 22 | description: siteConfig.description, 23 | keywords: siteConfig.keywords, 24 | authors: [ 25 | { 26 | name: siteConfig.author, 27 | url: siteConfig.url.author, 28 | }, 29 | ], 30 | creator: siteConfig.author, 31 | openGraph: { 32 | type: "website", 33 | locale: "en_US", 34 | url: siteConfig.url.base, 35 | title: siteConfig.name, 36 | description: siteConfig.description, 37 | siteName: siteConfig.name, 38 | images: [ 39 | { 40 | url: siteConfig.ogImage, 41 | width: 1200, 42 | height: 630, 43 | alt: siteConfig.name, 44 | }, 45 | ], 46 | }, 47 | twitter: { 48 | card: "summary_large_image", 49 | title: siteConfig.name, 50 | description: siteConfig.description, 51 | images: [siteConfig.ogImage], 52 | creator: "@_rdev7", 53 | }, 54 | icons: { 55 | icon: "/favicon.ico", 56 | }, 57 | } 58 | 59 | export const viewport: Viewport = { 60 | themeColor: [ 61 | { media: "(prefers-color-scheme: light)", color: "white" }, 62 | { media: "(prefers-color-scheme: dark)", color: "black" }, 63 | ], 64 | } 65 | 66 | export default function RootLayout({ children }: RootLayoutProps) { 67 | return ( 68 | 69 | 70 | 76 | 82 | {children} 83 | 84 | 85 | 86 | ) 87 | } 88 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | darkMode: ["class"], 4 | content: [ 5 | "./pages/**/*.{ts,tsx}", 6 | "./components/**/*.{ts,tsx}", 7 | "./app/**/*.{ts,tsx}", 8 | "./src/**/*.{ts,tsx}", 9 | ], 10 | prefix: "", 11 | theme: { 12 | container: { 13 | center: true, 14 | padding: "2rem", 15 | screens: { 16 | "2xl": "1400px", 17 | }, 18 | }, 19 | extend: { 20 | colors: { 21 | border: "hsl(var(--border))", 22 | input: "hsl(var(--input))", 23 | ring: "hsl(var(--ring))", 24 | background: "hsl(var(--background))", 25 | foreground: "hsl(var(--foreground))", 26 | primary: { 27 | DEFAULT: "hsl(var(--primary))", 28 | foreground: "hsl(var(--primary-foreground))", 29 | }, 30 | secondary: { 31 | DEFAULT: "hsl(var(--secondary))", 32 | foreground: "hsl(var(--secondary-foreground))", 33 | }, 34 | destructive: { 35 | DEFAULT: "hsl(var(--destructive))", 36 | foreground: "hsl(var(--destructive-foreground))", 37 | }, 38 | muted: { 39 | DEFAULT: "hsl(var(--muted))", 40 | foreground: "hsl(var(--muted-foreground))", 41 | }, 42 | accent: { 43 | DEFAULT: "hsl(var(--accent))", 44 | foreground: "hsl(var(--accent-foreground))", 45 | }, 46 | popover: { 47 | DEFAULT: "hsl(var(--popover))", 48 | foreground: "hsl(var(--popover-foreground))", 49 | }, 50 | card: { 51 | DEFAULT: "hsl(var(--card))", 52 | foreground: "hsl(var(--card-foreground))", 53 | }, 54 | }, 55 | borderRadius: { 56 | lg: "var(--radius)", 57 | md: "calc(var(--radius) - 2px)", 58 | sm: "calc(var(--radius) - 4px)", 59 | }, 60 | keyframes: { 61 | "accordion-down": { 62 | from: { height: "0" }, 63 | to: { height: "var(--radix-accordion-content-height)" }, 64 | }, 65 | "accordion-up": { 66 | from: { height: "var(--radix-accordion-content-height)" }, 67 | to: { height: "0" }, 68 | }, 69 | }, 70 | animation: { 71 | "accordion-down": "accordion-down 0.2s ease-out", 72 | "accordion-up": "accordion-up 0.2s ease-out", 73 | }, 74 | }, 75 | }, 76 | plugins: [require("tailwindcss-animate")], 77 | } 78 | -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- 1 | "use client" 2 | 3 | import * as React from "react" 4 | import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu" 5 | import { Check, ChevronRight, Circle } from "lucide-react" 6 | 7 | import { cn } from "@/lib/utils" 8 | 9 | const DropdownMenu = DropdownMenuPrimitive.Root 10 | 11 | const DropdownMenuTrigger = DropdownMenuPrimitive.Trigger 12 | 13 | const DropdownMenuGroup = DropdownMenuPrimitive.Group 14 | 15 | const DropdownMenuPortal = DropdownMenuPrimitive.Portal 16 | 17 | const DropdownMenuSub = DropdownMenuPrimitive.Sub 18 | 19 | const DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup 20 | 21 | const DropdownMenuSubTrigger = React.forwardRef< 22 | React.ElementRef, 23 | React.ComponentPropsWithoutRef & { 24 | inset?: boolean 25 | } 26 | >(({ className, inset, children, ...props }, ref) => ( 27 | 36 | {children} 37 | 38 | 39 | )) 40 | DropdownMenuSubTrigger.displayName = 41 | DropdownMenuPrimitive.SubTrigger.displayName 42 | 43 | const DropdownMenuSubContent = React.forwardRef< 44 | React.ElementRef, 45 | React.ComponentPropsWithoutRef 46 | >(({ className, ...props }, ref) => ( 47 | 55 | )) 56 | DropdownMenuSubContent.displayName = 57 | DropdownMenuPrimitive.SubContent.displayName 58 | 59 | const DropdownMenuContent = React.forwardRef< 60 | React.ElementRef, 61 | React.ComponentPropsWithoutRef 62 | >(({ className, sideOffset = 4, ...props }, ref) => ( 63 | 64 | 73 | 74 | )) 75 | DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName 76 | 77 | const DropdownMenuItem = React.forwardRef< 78 | React.ElementRef, 79 | React.ComponentPropsWithoutRef & { 80 | inset?: boolean 81 | } 82 | >(({ className, inset, ...props }, ref) => ( 83 | 92 | )) 93 | DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName 94 | 95 | const DropdownMenuCheckboxItem = React.forwardRef< 96 | React.ElementRef, 97 | React.ComponentPropsWithoutRef 98 | >(({ className, children, checked, ...props }, ref) => ( 99 | 108 | 109 | 110 | 111 | 112 | 113 | {children} 114 | 115 | )) 116 | DropdownMenuCheckboxItem.displayName = 117 | DropdownMenuPrimitive.CheckboxItem.displayName 118 | 119 | const DropdownMenuRadioItem = React.forwardRef< 120 | React.ElementRef, 121 | React.ComponentPropsWithoutRef 122 | >(({ className, children, ...props }, ref) => ( 123 | 131 | 132 | 133 | 134 | 135 | 136 | {children} 137 | 138 | )) 139 | DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName 140 | 141 | const DropdownMenuLabel = React.forwardRef< 142 | React.ElementRef, 143 | React.ComponentPropsWithoutRef & { 144 | inset?: boolean 145 | } 146 | >(({ className, inset, ...props }, ref) => ( 147 | 156 | )) 157 | DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName 158 | 159 | const DropdownMenuSeparator = React.forwardRef< 160 | React.ElementRef, 161 | React.ComponentPropsWithoutRef 162 | >(({ className, ...props }, ref) => ( 163 | 168 | )) 169 | DropdownMenuSeparator.displayName = DropdownMenuPrimitive.Separator.displayName 170 | 171 | const DropdownMenuShortcut = ({ 172 | className, 173 | ...props 174 | }: React.HTMLAttributes) => { 175 | return ( 176 | 180 | ) 181 | } 182 | DropdownMenuShortcut.displayName = "DropdownMenuShortcut" 183 | 184 | export { 185 | DropdownMenu, 186 | DropdownMenuTrigger, 187 | DropdownMenuContent, 188 | DropdownMenuItem, 189 | DropdownMenuCheckboxItem, 190 | DropdownMenuRadioItem, 191 | DropdownMenuLabel, 192 | DropdownMenuSeparator, 193 | DropdownMenuShortcut, 194 | DropdownMenuGroup, 195 | DropdownMenuPortal, 196 | DropdownMenuSub, 197 | DropdownMenuSubContent, 198 | DropdownMenuSubTrigger, 199 | DropdownMenuRadioGroup, 200 | } 201 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | '@radix-ui/react-dropdown-menu': 12 | specifier: ^2.0.6 13 | version: 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 14 | '@radix-ui/react-slot': 15 | specifier: ^1.0.2 16 | version: 1.0.2(@types/react@18.3.1)(react@18.3.1) 17 | '@t3-oss/env-nextjs': 18 | specifier: ^0.9.2 19 | version: 0.9.2(typescript@5.4.5)(zod@3.23.4) 20 | class-variance-authority: 21 | specifier: ^0.7.0 22 | version: 0.7.0 23 | clsx: 24 | specifier: ^2.1.1 25 | version: 2.1.1 26 | lucide-react: 27 | specifier: ^0.330.0 28 | version: 0.330.0(react@18.3.1) 29 | next: 30 | specifier: 14.1.1 31 | version: 14.1.1(@babel/core@7.24.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 32 | next-themes: 33 | specifier: ^0.2.1 34 | version: 0.2.1(next@14.1.1(@babel/core@7.24.4)(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) 35 | react: 36 | specifier: ^18.3.1 37 | version: 18.3.1 38 | react-dom: 39 | specifier: ^18.3.1 40 | version: 18.3.1(react@18.3.1) 41 | tailwind-merge: 42 | specifier: ^2.3.0 43 | version: 2.3.0 44 | tailwindcss-animate: 45 | specifier: ^1.0.7 46 | version: 1.0.7(tailwindcss@3.4.3) 47 | zod: 48 | specifier: ^3.23.4 49 | version: 3.23.4 50 | devDependencies: 51 | '@ianvs/prettier-plugin-sort-imports': 52 | specifier: ^4.2.1 53 | version: 4.2.1(prettier@3.2.5) 54 | '@types/node': 55 | specifier: ^20.12.7 56 | version: 20.12.7 57 | '@types/react': 58 | specifier: ^18.3.1 59 | version: 18.3.1 60 | '@types/react-dom': 61 | specifier: ^18.3.0 62 | version: 18.3.0 63 | autoprefixer: 64 | specifier: ^10.4.19 65 | version: 10.4.19(postcss@8.4.38) 66 | eslint: 67 | specifier: ^8.57.0 68 | version: 8.57.0 69 | eslint-config-next: 70 | specifier: 14.1.0 71 | version: 14.1.0(eslint@8.57.0)(typescript@5.4.5) 72 | postcss: 73 | specifier: ^8.4.38 74 | version: 8.4.38 75 | prettier: 76 | specifier: ^3.2.5 77 | version: 3.2.5 78 | prettier-plugin-tailwindcss: 79 | specifier: ^0.5.14 80 | version: 0.5.14(@ianvs/prettier-plugin-sort-imports@4.2.1(prettier@3.2.5))(prettier@3.2.5) 81 | tailwindcss: 82 | specifier: ^3.4.3 83 | version: 3.4.3 84 | typescript: 85 | specifier: ^5.4.5 86 | version: 5.4.5 87 | 88 | packages: 89 | 90 | '@alloc/quick-lru@5.2.0': 91 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} 92 | engines: {node: '>=10'} 93 | 94 | '@ampproject/remapping@2.3.0': 95 | resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} 96 | engines: {node: '>=6.0.0'} 97 | 98 | '@babel/code-frame@7.24.2': 99 | resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==} 100 | engines: {node: '>=6.9.0'} 101 | 102 | '@babel/compat-data@7.24.4': 103 | resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==} 104 | engines: {node: '>=6.9.0'} 105 | 106 | '@babel/core@7.24.4': 107 | resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==} 108 | engines: {node: '>=6.9.0'} 109 | 110 | '@babel/generator@7.24.4': 111 | resolution: {integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==} 112 | engines: {node: '>=6.9.0'} 113 | 114 | '@babel/helper-compilation-targets@7.23.6': 115 | resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} 116 | engines: {node: '>=6.9.0'} 117 | 118 | '@babel/helper-environment-visitor@7.22.20': 119 | resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} 120 | engines: {node: '>=6.9.0'} 121 | 122 | '@babel/helper-function-name@7.23.0': 123 | resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} 124 | engines: {node: '>=6.9.0'} 125 | 126 | '@babel/helper-hoist-variables@7.22.5': 127 | resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} 128 | engines: {node: '>=6.9.0'} 129 | 130 | '@babel/helper-module-imports@7.24.3': 131 | resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==} 132 | engines: {node: '>=6.9.0'} 133 | 134 | '@babel/helper-module-transforms@7.23.3': 135 | resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} 136 | engines: {node: '>=6.9.0'} 137 | peerDependencies: 138 | '@babel/core': ^7.0.0 139 | 140 | '@babel/helper-simple-access@7.22.5': 141 | resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} 142 | engines: {node: '>=6.9.0'} 143 | 144 | '@babel/helper-split-export-declaration@7.22.6': 145 | resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} 146 | engines: {node: '>=6.9.0'} 147 | 148 | '@babel/helper-string-parser@7.24.1': 149 | resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==} 150 | engines: {node: '>=6.9.0'} 151 | 152 | '@babel/helper-validator-identifier@7.22.20': 153 | resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} 154 | engines: {node: '>=6.9.0'} 155 | 156 | '@babel/helper-validator-option@7.23.5': 157 | resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} 158 | engines: {node: '>=6.9.0'} 159 | 160 | '@babel/helpers@7.24.4': 161 | resolution: {integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==} 162 | engines: {node: '>=6.9.0'} 163 | 164 | '@babel/highlight@7.24.2': 165 | resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==} 166 | engines: {node: '>=6.9.0'} 167 | 168 | '@babel/parser@7.24.4': 169 | resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==} 170 | engines: {node: '>=6.0.0'} 171 | hasBin: true 172 | 173 | '@babel/runtime@7.24.4': 174 | resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==} 175 | engines: {node: '>=6.9.0'} 176 | 177 | '@babel/template@7.24.0': 178 | resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==} 179 | engines: {node: '>=6.9.0'} 180 | 181 | '@babel/traverse@7.24.1': 182 | resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==} 183 | engines: {node: '>=6.9.0'} 184 | 185 | '@babel/types@7.24.0': 186 | resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==} 187 | engines: {node: '>=6.9.0'} 188 | 189 | '@eslint-community/eslint-utils@4.4.0': 190 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 191 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 192 | peerDependencies: 193 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 194 | 195 | '@eslint-community/regexpp@4.10.0': 196 | resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} 197 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 198 | 199 | '@eslint/eslintrc@2.1.4': 200 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} 201 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 202 | 203 | '@eslint/js@8.57.0': 204 | resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} 205 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 206 | 207 | '@floating-ui/core@1.6.1': 208 | resolution: {integrity: sha512-42UH54oPZHPdRHdw6BgoBD6cg/eVTmVrFcgeRDM3jbO7uxSoipVcmcIGFcA5jmOHO5apcyvBhkSKES3fQJnu7A==} 209 | 210 | '@floating-ui/dom@1.6.4': 211 | resolution: {integrity: sha512-0G8R+zOvQsAG1pg2Q99P21jiqxqGBW1iRe/iXHsBRBxnpXKFI8QwbB4x5KmYLggNO5m34IQgOIu9SCRfR/WWiQ==} 212 | 213 | '@floating-ui/react-dom@2.0.9': 214 | resolution: {integrity: sha512-q0umO0+LQK4+p6aGyvzASqKbKOJcAHJ7ycE9CuUvfx3s9zTHWmGJTPOIlM/hmSBfUfg/XfY5YhLBLR/LHwShQQ==} 215 | peerDependencies: 216 | react: '>=16.8.0' 217 | react-dom: '>=16.8.0' 218 | 219 | '@floating-ui/utils@0.2.2': 220 | resolution: {integrity: sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw==} 221 | 222 | '@humanwhocodes/config-array@0.11.14': 223 | resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} 224 | engines: {node: '>=10.10.0'} 225 | deprecated: Use @eslint/config-array instead 226 | 227 | '@humanwhocodes/module-importer@1.0.1': 228 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 229 | engines: {node: '>=12.22'} 230 | 231 | '@humanwhocodes/object-schema@2.0.3': 232 | resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} 233 | deprecated: Use @eslint/object-schema instead 234 | 235 | '@ianvs/prettier-plugin-sort-imports@4.2.1': 236 | resolution: {integrity: sha512-NKN1LVFWUDGDGr3vt+6Ey3qPeN/163uR1pOPAlkWpgvAqgxQ6kSdUf1F0it8aHUtKRUzEGcK38Wxd07O61d7+Q==} 237 | peerDependencies: 238 | '@vue/compiler-sfc': 2.7.x || 3.x 239 | prettier: 2 || 3 240 | peerDependenciesMeta: 241 | '@vue/compiler-sfc': 242 | optional: true 243 | 244 | '@isaacs/cliui@8.0.2': 245 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 246 | engines: {node: '>=12'} 247 | 248 | '@jridgewell/gen-mapping@0.3.5': 249 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} 250 | engines: {node: '>=6.0.0'} 251 | 252 | '@jridgewell/resolve-uri@3.1.2': 253 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 254 | engines: {node: '>=6.0.0'} 255 | 256 | '@jridgewell/set-array@1.2.1': 257 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 258 | engines: {node: '>=6.0.0'} 259 | 260 | '@jridgewell/sourcemap-codec@1.4.15': 261 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 262 | 263 | '@jridgewell/trace-mapping@0.3.25': 264 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 265 | 266 | '@next/env@14.1.1': 267 | resolution: {integrity: sha512-7CnQyD5G8shHxQIIg3c7/pSeYFeMhsNbpU/bmvH7ZnDql7mNRgg8O2JZrhrc/soFnfBnKP4/xXNiiSIPn2w8gA==} 268 | 269 | '@next/eslint-plugin-next@14.1.0': 270 | resolution: {integrity: sha512-x4FavbNEeXx/baD/zC/SdrvkjSby8nBn8KcCREqk6UuwvwoAPZmaV8TFCAuo/cpovBRTIY67mHhe86MQQm/68Q==} 271 | 272 | '@next/swc-darwin-arm64@14.1.1': 273 | resolution: {integrity: sha512-yDjSFKQKTIjyT7cFv+DqQfW5jsD+tVxXTckSe1KIouKk75t1qZmj/mV3wzdmFb0XHVGtyRjDMulfVG8uCKemOQ==} 274 | engines: {node: '>= 10'} 275 | cpu: [arm64] 276 | os: [darwin] 277 | 278 | '@next/swc-darwin-x64@14.1.1': 279 | resolution: {integrity: sha512-KCQmBL0CmFmN8D64FHIZVD9I4ugQsDBBEJKiblXGgwn7wBCSe8N4Dx47sdzl4JAg39IkSN5NNrr8AniXLMb3aw==} 280 | engines: {node: '>= 10'} 281 | cpu: [x64] 282 | os: [darwin] 283 | 284 | '@next/swc-linux-arm64-gnu@14.1.1': 285 | resolution: {integrity: sha512-YDQfbWyW0JMKhJf/T4eyFr4b3tceTorQ5w2n7I0mNVTFOvu6CGEzfwT3RSAQGTi/FFMTFcuspPec/7dFHuP7Eg==} 286 | engines: {node: '>= 10'} 287 | cpu: [arm64] 288 | os: [linux] 289 | 290 | '@next/swc-linux-arm64-musl@14.1.1': 291 | resolution: {integrity: sha512-fiuN/OG6sNGRN/bRFxRvV5LyzLB8gaL8cbDH5o3mEiVwfcMzyE5T//ilMmaTrnA8HLMS6hoz4cHOu6Qcp9vxgQ==} 292 | engines: {node: '>= 10'} 293 | cpu: [arm64] 294 | os: [linux] 295 | 296 | '@next/swc-linux-x64-gnu@14.1.1': 297 | resolution: {integrity: sha512-rv6AAdEXoezjbdfp3ouMuVqeLjE1Bin0AuE6qxE6V9g3Giz5/R3xpocHoAi7CufRR+lnkuUjRBn05SYJ83oKNQ==} 298 | engines: {node: '>= 10'} 299 | cpu: [x64] 300 | os: [linux] 301 | 302 | '@next/swc-linux-x64-musl@14.1.1': 303 | resolution: {integrity: sha512-YAZLGsaNeChSrpz/G7MxO3TIBLaMN8QWMr3X8bt6rCvKovwU7GqQlDu99WdvF33kI8ZahvcdbFsy4jAFzFX7og==} 304 | engines: {node: '>= 10'} 305 | cpu: [x64] 306 | os: [linux] 307 | 308 | '@next/swc-win32-arm64-msvc@14.1.1': 309 | resolution: {integrity: sha512-1L4mUYPBMvVDMZg1inUYyPvFSduot0g73hgfD9CODgbr4xiTYe0VOMTZzaRqYJYBA9mana0x4eaAaypmWo1r5A==} 310 | engines: {node: '>= 10'} 311 | cpu: [arm64] 312 | os: [win32] 313 | 314 | '@next/swc-win32-ia32-msvc@14.1.1': 315 | resolution: {integrity: sha512-jvIE9tsuj9vpbbXlR5YxrghRfMuG0Qm/nZ/1KDHc+y6FpnZ/apsgh+G6t15vefU0zp3WSpTMIdXRUsNl/7RSuw==} 316 | engines: {node: '>= 10'} 317 | cpu: [ia32] 318 | os: [win32] 319 | 320 | '@next/swc-win32-x64-msvc@14.1.1': 321 | resolution: {integrity: sha512-S6K6EHDU5+1KrBDLko7/c1MNy/Ya73pIAmvKeFwsF4RmBFJSO7/7YeD4FnZ4iBdzE69PpQ4sOMU9ORKeNuxe8A==} 322 | engines: {node: '>= 10'} 323 | cpu: [x64] 324 | os: [win32] 325 | 326 | '@nodelib/fs.scandir@2.1.5': 327 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 328 | engines: {node: '>= 8'} 329 | 330 | '@nodelib/fs.stat@2.0.5': 331 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 332 | engines: {node: '>= 8'} 333 | 334 | '@nodelib/fs.walk@1.2.8': 335 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 336 | engines: {node: '>= 8'} 337 | 338 | '@pkgjs/parseargs@0.11.0': 339 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 340 | engines: {node: '>=14'} 341 | 342 | '@radix-ui/primitive@1.0.1': 343 | resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==} 344 | 345 | '@radix-ui/react-arrow@1.0.3': 346 | resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} 347 | peerDependencies: 348 | '@types/react': '*' 349 | '@types/react-dom': '*' 350 | react: ^16.8 || ^17.0 || ^18.0 351 | react-dom: ^16.8 || ^17.0 || ^18.0 352 | peerDependenciesMeta: 353 | '@types/react': 354 | optional: true 355 | '@types/react-dom': 356 | optional: true 357 | 358 | '@radix-ui/react-collection@1.0.3': 359 | resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} 360 | peerDependencies: 361 | '@types/react': '*' 362 | '@types/react-dom': '*' 363 | react: ^16.8 || ^17.0 || ^18.0 364 | react-dom: ^16.8 || ^17.0 || ^18.0 365 | peerDependenciesMeta: 366 | '@types/react': 367 | optional: true 368 | '@types/react-dom': 369 | optional: true 370 | 371 | '@radix-ui/react-compose-refs@1.0.1': 372 | resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} 373 | peerDependencies: 374 | '@types/react': '*' 375 | react: ^16.8 || ^17.0 || ^18.0 376 | peerDependenciesMeta: 377 | '@types/react': 378 | optional: true 379 | 380 | '@radix-ui/react-context@1.0.1': 381 | resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} 382 | peerDependencies: 383 | '@types/react': '*' 384 | react: ^16.8 || ^17.0 || ^18.0 385 | peerDependenciesMeta: 386 | '@types/react': 387 | optional: true 388 | 389 | '@radix-ui/react-direction@1.0.1': 390 | resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} 391 | peerDependencies: 392 | '@types/react': '*' 393 | react: ^16.8 || ^17.0 || ^18.0 394 | peerDependenciesMeta: 395 | '@types/react': 396 | optional: true 397 | 398 | '@radix-ui/react-dismissable-layer@1.0.5': 399 | resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==} 400 | peerDependencies: 401 | '@types/react': '*' 402 | '@types/react-dom': '*' 403 | react: ^16.8 || ^17.0 || ^18.0 404 | react-dom: ^16.8 || ^17.0 || ^18.0 405 | peerDependenciesMeta: 406 | '@types/react': 407 | optional: true 408 | '@types/react-dom': 409 | optional: true 410 | 411 | '@radix-ui/react-dropdown-menu@2.0.6': 412 | resolution: {integrity: sha512-i6TuFOoWmLWq+M/eCLGd/bQ2HfAX1RJgvrBQ6AQLmzfvsLdefxbWu8G9zczcPFfcSPehz9GcpF6K9QYreFV8hA==} 413 | peerDependencies: 414 | '@types/react': '*' 415 | '@types/react-dom': '*' 416 | react: ^16.8 || ^17.0 || ^18.0 417 | react-dom: ^16.8 || ^17.0 || ^18.0 418 | peerDependenciesMeta: 419 | '@types/react': 420 | optional: true 421 | '@types/react-dom': 422 | optional: true 423 | 424 | '@radix-ui/react-focus-guards@1.0.1': 425 | resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} 426 | peerDependencies: 427 | '@types/react': '*' 428 | react: ^16.8 || ^17.0 || ^18.0 429 | peerDependenciesMeta: 430 | '@types/react': 431 | optional: true 432 | 433 | '@radix-ui/react-focus-scope@1.0.4': 434 | resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==} 435 | peerDependencies: 436 | '@types/react': '*' 437 | '@types/react-dom': '*' 438 | react: ^16.8 || ^17.0 || ^18.0 439 | react-dom: ^16.8 || ^17.0 || ^18.0 440 | peerDependenciesMeta: 441 | '@types/react': 442 | optional: true 443 | '@types/react-dom': 444 | optional: true 445 | 446 | '@radix-ui/react-id@1.0.1': 447 | resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} 448 | peerDependencies: 449 | '@types/react': '*' 450 | react: ^16.8 || ^17.0 || ^18.0 451 | peerDependenciesMeta: 452 | '@types/react': 453 | optional: true 454 | 455 | '@radix-ui/react-menu@2.0.6': 456 | resolution: {integrity: sha512-BVkFLS+bUC8HcImkRKPSiVumA1VPOOEC5WBMiT+QAVsPzW1FJzI9KnqgGxVDPBcql5xXrHkD3JOVoXWEXD8SYA==} 457 | peerDependencies: 458 | '@types/react': '*' 459 | '@types/react-dom': '*' 460 | react: ^16.8 || ^17.0 || ^18.0 461 | react-dom: ^16.8 || ^17.0 || ^18.0 462 | peerDependenciesMeta: 463 | '@types/react': 464 | optional: true 465 | '@types/react-dom': 466 | optional: true 467 | 468 | '@radix-ui/react-popper@1.1.3': 469 | resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==} 470 | peerDependencies: 471 | '@types/react': '*' 472 | '@types/react-dom': '*' 473 | react: ^16.8 || ^17.0 || ^18.0 474 | react-dom: ^16.8 || ^17.0 || ^18.0 475 | peerDependenciesMeta: 476 | '@types/react': 477 | optional: true 478 | '@types/react-dom': 479 | optional: true 480 | 481 | '@radix-ui/react-portal@1.0.4': 482 | resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==} 483 | peerDependencies: 484 | '@types/react': '*' 485 | '@types/react-dom': '*' 486 | react: ^16.8 || ^17.0 || ^18.0 487 | react-dom: ^16.8 || ^17.0 || ^18.0 488 | peerDependenciesMeta: 489 | '@types/react': 490 | optional: true 491 | '@types/react-dom': 492 | optional: true 493 | 494 | '@radix-ui/react-presence@1.0.1': 495 | resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==} 496 | peerDependencies: 497 | '@types/react': '*' 498 | '@types/react-dom': '*' 499 | react: ^16.8 || ^17.0 || ^18.0 500 | react-dom: ^16.8 || ^17.0 || ^18.0 501 | peerDependenciesMeta: 502 | '@types/react': 503 | optional: true 504 | '@types/react-dom': 505 | optional: true 506 | 507 | '@radix-ui/react-primitive@1.0.3': 508 | resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} 509 | peerDependencies: 510 | '@types/react': '*' 511 | '@types/react-dom': '*' 512 | react: ^16.8 || ^17.0 || ^18.0 513 | react-dom: ^16.8 || ^17.0 || ^18.0 514 | peerDependenciesMeta: 515 | '@types/react': 516 | optional: true 517 | '@types/react-dom': 518 | optional: true 519 | 520 | '@radix-ui/react-roving-focus@1.0.4': 521 | resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==} 522 | peerDependencies: 523 | '@types/react': '*' 524 | '@types/react-dom': '*' 525 | react: ^16.8 || ^17.0 || ^18.0 526 | react-dom: ^16.8 || ^17.0 || ^18.0 527 | peerDependenciesMeta: 528 | '@types/react': 529 | optional: true 530 | '@types/react-dom': 531 | optional: true 532 | 533 | '@radix-ui/react-slot@1.0.2': 534 | resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} 535 | peerDependencies: 536 | '@types/react': '*' 537 | react: ^16.8 || ^17.0 || ^18.0 538 | peerDependenciesMeta: 539 | '@types/react': 540 | optional: true 541 | 542 | '@radix-ui/react-use-callback-ref@1.0.1': 543 | resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} 544 | peerDependencies: 545 | '@types/react': '*' 546 | react: ^16.8 || ^17.0 || ^18.0 547 | peerDependenciesMeta: 548 | '@types/react': 549 | optional: true 550 | 551 | '@radix-ui/react-use-controllable-state@1.0.1': 552 | resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} 553 | peerDependencies: 554 | '@types/react': '*' 555 | react: ^16.8 || ^17.0 || ^18.0 556 | peerDependenciesMeta: 557 | '@types/react': 558 | optional: true 559 | 560 | '@radix-ui/react-use-escape-keydown@1.0.3': 561 | resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} 562 | peerDependencies: 563 | '@types/react': '*' 564 | react: ^16.8 || ^17.0 || ^18.0 565 | peerDependenciesMeta: 566 | '@types/react': 567 | optional: true 568 | 569 | '@radix-ui/react-use-layout-effect@1.0.1': 570 | resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} 571 | peerDependencies: 572 | '@types/react': '*' 573 | react: ^16.8 || ^17.0 || ^18.0 574 | peerDependenciesMeta: 575 | '@types/react': 576 | optional: true 577 | 578 | '@radix-ui/react-use-rect@1.0.1': 579 | resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} 580 | peerDependencies: 581 | '@types/react': '*' 582 | react: ^16.8 || ^17.0 || ^18.0 583 | peerDependenciesMeta: 584 | '@types/react': 585 | optional: true 586 | 587 | '@radix-ui/react-use-size@1.0.1': 588 | resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} 589 | peerDependencies: 590 | '@types/react': '*' 591 | react: ^16.8 || ^17.0 || ^18.0 592 | peerDependenciesMeta: 593 | '@types/react': 594 | optional: true 595 | 596 | '@radix-ui/rect@1.0.1': 597 | resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==} 598 | 599 | '@rushstack/eslint-patch@1.10.2': 600 | resolution: {integrity: sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==} 601 | 602 | '@swc/helpers@0.5.2': 603 | resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==} 604 | 605 | '@t3-oss/env-core@0.9.2': 606 | resolution: {integrity: sha512-KgWXljUTHgO3o7GMZQPAD5+P+HqpauMNNHowlm7V2b9IeMitSUpNKwG6xQrup/xARWHTdxRVIl0mSI4wCevQhQ==} 607 | peerDependencies: 608 | typescript: '>=5.0.0' 609 | zod: ^3.0.0 610 | peerDependenciesMeta: 611 | typescript: 612 | optional: true 613 | 614 | '@t3-oss/env-nextjs@0.9.2': 615 | resolution: {integrity: sha512-dklHrgKLESStNVB67Jdbu6osxDYA+xNKaPBRerlnkEvzbCccSKMvZENx6EZebJuR4snqB3/yRykNMn/bdIAyiQ==} 616 | peerDependencies: 617 | typescript: '>=5.0.0' 618 | zod: ^3.0.0 619 | peerDependenciesMeta: 620 | typescript: 621 | optional: true 622 | 623 | '@types/json5@0.0.29': 624 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 625 | 626 | '@types/node@20.12.7': 627 | resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==} 628 | 629 | '@types/prop-types@15.7.12': 630 | resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} 631 | 632 | '@types/react-dom@18.3.0': 633 | resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} 634 | 635 | '@types/react@18.3.1': 636 | resolution: {integrity: sha512-V0kuGBX3+prX+DQ/7r2qsv1NsdfnCLnTgnRJ1pYnxykBhGMz+qj+box5lq7XsO5mtZsBqpjwwTu/7wszPfMBcw==} 637 | 638 | '@typescript-eslint/parser@6.21.0': 639 | resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==} 640 | engines: {node: ^16.0.0 || >=18.0.0} 641 | peerDependencies: 642 | eslint: ^7.0.0 || ^8.0.0 643 | typescript: '*' 644 | peerDependenciesMeta: 645 | typescript: 646 | optional: true 647 | 648 | '@typescript-eslint/scope-manager@6.21.0': 649 | resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==} 650 | engines: {node: ^16.0.0 || >=18.0.0} 651 | 652 | '@typescript-eslint/types@6.21.0': 653 | resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==} 654 | engines: {node: ^16.0.0 || >=18.0.0} 655 | 656 | '@typescript-eslint/typescript-estree@6.21.0': 657 | resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} 658 | engines: {node: ^16.0.0 || >=18.0.0} 659 | peerDependencies: 660 | typescript: '*' 661 | peerDependenciesMeta: 662 | typescript: 663 | optional: true 664 | 665 | '@typescript-eslint/visitor-keys@6.21.0': 666 | resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==} 667 | engines: {node: ^16.0.0 || >=18.0.0} 668 | 669 | '@ungap/structured-clone@1.2.0': 670 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 671 | 672 | acorn-jsx@5.3.2: 673 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 674 | peerDependencies: 675 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 676 | 677 | acorn@8.11.3: 678 | resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} 679 | engines: {node: '>=0.4.0'} 680 | hasBin: true 681 | 682 | ajv@6.12.6: 683 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 684 | 685 | ansi-regex@5.0.1: 686 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 687 | engines: {node: '>=8'} 688 | 689 | ansi-regex@6.0.1: 690 | resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} 691 | engines: {node: '>=12'} 692 | 693 | ansi-styles@3.2.1: 694 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 695 | engines: {node: '>=4'} 696 | 697 | ansi-styles@4.3.0: 698 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 699 | engines: {node: '>=8'} 700 | 701 | ansi-styles@6.2.1: 702 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 703 | engines: {node: '>=12'} 704 | 705 | any-promise@1.3.0: 706 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 707 | 708 | anymatch@3.1.3: 709 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 710 | engines: {node: '>= 8'} 711 | 712 | arg@5.0.2: 713 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 714 | 715 | argparse@2.0.1: 716 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 717 | 718 | aria-hidden@1.2.4: 719 | resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==} 720 | engines: {node: '>=10'} 721 | 722 | aria-query@5.3.0: 723 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} 724 | 725 | array-buffer-byte-length@1.0.1: 726 | resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} 727 | engines: {node: '>= 0.4'} 728 | 729 | array-includes@3.1.8: 730 | resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} 731 | engines: {node: '>= 0.4'} 732 | 733 | array-union@2.1.0: 734 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 735 | engines: {node: '>=8'} 736 | 737 | array.prototype.findlast@1.2.5: 738 | resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} 739 | engines: {node: '>= 0.4'} 740 | 741 | array.prototype.findlastindex@1.2.5: 742 | resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} 743 | engines: {node: '>= 0.4'} 744 | 745 | array.prototype.flat@1.3.2: 746 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} 747 | engines: {node: '>= 0.4'} 748 | 749 | array.prototype.flatmap@1.3.2: 750 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} 751 | engines: {node: '>= 0.4'} 752 | 753 | array.prototype.toreversed@1.1.2: 754 | resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} 755 | 756 | array.prototype.tosorted@1.1.3: 757 | resolution: {integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==} 758 | 759 | arraybuffer.prototype.slice@1.0.3: 760 | resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} 761 | engines: {node: '>= 0.4'} 762 | 763 | ast-types-flow@0.0.8: 764 | resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} 765 | 766 | autoprefixer@10.4.19: 767 | resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==} 768 | engines: {node: ^10 || ^12 || >=14} 769 | hasBin: true 770 | peerDependencies: 771 | postcss: ^8.1.0 772 | 773 | available-typed-arrays@1.0.7: 774 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 775 | engines: {node: '>= 0.4'} 776 | 777 | axe-core@4.7.0: 778 | resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} 779 | engines: {node: '>=4'} 780 | 781 | axobject-query@3.2.1: 782 | resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} 783 | 784 | balanced-match@1.0.2: 785 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 786 | 787 | binary-extensions@2.3.0: 788 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 789 | engines: {node: '>=8'} 790 | 791 | brace-expansion@1.1.11: 792 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 793 | 794 | brace-expansion@2.0.1: 795 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 796 | 797 | braces@3.0.3: 798 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 799 | engines: {node: '>=8'} 800 | 801 | browserslist@4.23.0: 802 | resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==} 803 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 804 | hasBin: true 805 | 806 | busboy@1.6.0: 807 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 808 | engines: {node: '>=10.16.0'} 809 | 810 | call-bind@1.0.7: 811 | resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} 812 | engines: {node: '>= 0.4'} 813 | 814 | callsites@3.1.0: 815 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 816 | engines: {node: '>=6'} 817 | 818 | camelcase-css@2.0.1: 819 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 820 | engines: {node: '>= 6'} 821 | 822 | caniuse-lite@1.0.30001613: 823 | resolution: {integrity: sha512-BNjJULJfOONQERivfxte7alLfeLW4QnwHvNW4wEcLEbXfV6VSCYvr+REbf2Sojv8tC1THpjPXBxWgDbq4NtLWg==} 824 | 825 | chalk@2.4.2: 826 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 827 | engines: {node: '>=4'} 828 | 829 | chalk@4.1.2: 830 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 831 | engines: {node: '>=10'} 832 | 833 | chokidar@3.6.0: 834 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 835 | engines: {node: '>= 8.10.0'} 836 | 837 | class-variance-authority@0.7.0: 838 | resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==} 839 | 840 | client-only@0.0.1: 841 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} 842 | 843 | clsx@2.0.0: 844 | resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==} 845 | engines: {node: '>=6'} 846 | 847 | clsx@2.1.1: 848 | resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} 849 | engines: {node: '>=6'} 850 | 851 | color-convert@1.9.3: 852 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 853 | 854 | color-convert@2.0.1: 855 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 856 | engines: {node: '>=7.0.0'} 857 | 858 | color-name@1.1.3: 859 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 860 | 861 | color-name@1.1.4: 862 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 863 | 864 | commander@4.1.1: 865 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 866 | engines: {node: '>= 6'} 867 | 868 | concat-map@0.0.1: 869 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 870 | 871 | convert-source-map@2.0.0: 872 | resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 873 | 874 | cross-spawn@7.0.3: 875 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 876 | engines: {node: '>= 8'} 877 | 878 | cssesc@3.0.0: 879 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 880 | engines: {node: '>=4'} 881 | hasBin: true 882 | 883 | csstype@3.1.3: 884 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 885 | 886 | damerau-levenshtein@1.0.8: 887 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 888 | 889 | data-view-buffer@1.0.1: 890 | resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} 891 | engines: {node: '>= 0.4'} 892 | 893 | data-view-byte-length@1.0.1: 894 | resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} 895 | engines: {node: '>= 0.4'} 896 | 897 | data-view-byte-offset@1.0.0: 898 | resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} 899 | engines: {node: '>= 0.4'} 900 | 901 | debug@3.2.7: 902 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 903 | peerDependencies: 904 | supports-color: '*' 905 | peerDependenciesMeta: 906 | supports-color: 907 | optional: true 908 | 909 | debug@4.3.4: 910 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 911 | engines: {node: '>=6.0'} 912 | peerDependencies: 913 | supports-color: '*' 914 | peerDependenciesMeta: 915 | supports-color: 916 | optional: true 917 | 918 | deep-is@0.1.4: 919 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 920 | 921 | define-data-property@1.1.4: 922 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 923 | engines: {node: '>= 0.4'} 924 | 925 | define-properties@1.2.1: 926 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 927 | engines: {node: '>= 0.4'} 928 | 929 | dequal@2.0.3: 930 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 931 | engines: {node: '>=6'} 932 | 933 | detect-node-es@1.1.0: 934 | resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} 935 | 936 | didyoumean@1.2.2: 937 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 938 | 939 | dir-glob@3.0.1: 940 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 941 | engines: {node: '>=8'} 942 | 943 | dlv@1.1.3: 944 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 945 | 946 | doctrine@2.1.0: 947 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 948 | engines: {node: '>=0.10.0'} 949 | 950 | doctrine@3.0.0: 951 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 952 | engines: {node: '>=6.0.0'} 953 | 954 | eastasianwidth@0.2.0: 955 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 956 | 957 | electron-to-chromium@1.4.750: 958 | resolution: {integrity: sha512-9ItEpeu15hW5m8jKdriL+BQrgwDTXEL9pn4SkillWFu73ZNNNQ2BKKLS+ZHv2vC9UkNhosAeyfxOf/5OSeTCPA==} 959 | 960 | emoji-regex@8.0.0: 961 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 962 | 963 | emoji-regex@9.2.2: 964 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 965 | 966 | enhanced-resolve@5.16.0: 967 | resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==} 968 | engines: {node: '>=10.13.0'} 969 | 970 | es-abstract@1.23.3: 971 | resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} 972 | engines: {node: '>= 0.4'} 973 | 974 | es-define-property@1.0.0: 975 | resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} 976 | engines: {node: '>= 0.4'} 977 | 978 | es-errors@1.3.0: 979 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 980 | engines: {node: '>= 0.4'} 981 | 982 | es-iterator-helpers@1.0.19: 983 | resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==} 984 | engines: {node: '>= 0.4'} 985 | 986 | es-object-atoms@1.0.0: 987 | resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} 988 | engines: {node: '>= 0.4'} 989 | 990 | es-set-tostringtag@2.0.3: 991 | resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} 992 | engines: {node: '>= 0.4'} 993 | 994 | es-shim-unscopables@1.0.2: 995 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 996 | 997 | es-to-primitive@1.2.1: 998 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 999 | engines: {node: '>= 0.4'} 1000 | 1001 | escalade@3.1.2: 1002 | resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} 1003 | engines: {node: '>=6'} 1004 | 1005 | escape-string-regexp@1.0.5: 1006 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 1007 | engines: {node: '>=0.8.0'} 1008 | 1009 | escape-string-regexp@4.0.0: 1010 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 1011 | engines: {node: '>=10'} 1012 | 1013 | eslint-config-next@14.1.0: 1014 | resolution: {integrity: sha512-SBX2ed7DoRFXC6CQSLc/SbLY9Ut6HxNB2wPTcoIWjUMd7aF7O/SIE7111L8FdZ9TXsNV4pulUDnfthpyPtbFUg==} 1015 | peerDependencies: 1016 | eslint: ^7.23.0 || ^8.0.0 1017 | typescript: '>=3.3.1' 1018 | peerDependenciesMeta: 1019 | typescript: 1020 | optional: true 1021 | 1022 | eslint-import-resolver-node@0.3.9: 1023 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 1024 | 1025 | eslint-import-resolver-typescript@3.6.1: 1026 | resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} 1027 | engines: {node: ^14.18.0 || >=16.0.0} 1028 | peerDependencies: 1029 | eslint: '*' 1030 | eslint-plugin-import: '*' 1031 | 1032 | eslint-module-utils@2.8.1: 1033 | resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} 1034 | engines: {node: '>=4'} 1035 | peerDependencies: 1036 | '@typescript-eslint/parser': '*' 1037 | eslint: '*' 1038 | eslint-import-resolver-node: '*' 1039 | eslint-import-resolver-typescript: '*' 1040 | eslint-import-resolver-webpack: '*' 1041 | peerDependenciesMeta: 1042 | '@typescript-eslint/parser': 1043 | optional: true 1044 | eslint: 1045 | optional: true 1046 | eslint-import-resolver-node: 1047 | optional: true 1048 | eslint-import-resolver-typescript: 1049 | optional: true 1050 | eslint-import-resolver-webpack: 1051 | optional: true 1052 | 1053 | eslint-plugin-import@2.29.1: 1054 | resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} 1055 | engines: {node: '>=4'} 1056 | peerDependencies: 1057 | '@typescript-eslint/parser': '*' 1058 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 1059 | peerDependenciesMeta: 1060 | '@typescript-eslint/parser': 1061 | optional: true 1062 | 1063 | eslint-plugin-jsx-a11y@6.8.0: 1064 | resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} 1065 | engines: {node: '>=4.0'} 1066 | peerDependencies: 1067 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1068 | 1069 | eslint-plugin-react-hooks@4.6.2: 1070 | resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} 1071 | engines: {node: '>=10'} 1072 | peerDependencies: 1073 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 1074 | 1075 | eslint-plugin-react@7.34.1: 1076 | resolution: {integrity: sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==} 1077 | engines: {node: '>=4'} 1078 | peerDependencies: 1079 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1080 | 1081 | eslint-scope@7.2.2: 1082 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 1083 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1084 | 1085 | eslint-visitor-keys@3.4.3: 1086 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 1087 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1088 | 1089 | eslint@8.57.0: 1090 | resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} 1091 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1092 | hasBin: true 1093 | 1094 | espree@9.6.1: 1095 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 1096 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1097 | 1098 | esquery@1.5.0: 1099 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 1100 | engines: {node: '>=0.10'} 1101 | 1102 | esrecurse@4.3.0: 1103 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1104 | engines: {node: '>=4.0'} 1105 | 1106 | estraverse@5.3.0: 1107 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1108 | engines: {node: '>=4.0'} 1109 | 1110 | esutils@2.0.3: 1111 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1112 | engines: {node: '>=0.10.0'} 1113 | 1114 | fast-deep-equal@3.1.3: 1115 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1116 | 1117 | fast-glob@3.3.2: 1118 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 1119 | engines: {node: '>=8.6.0'} 1120 | 1121 | fast-json-stable-stringify@2.1.0: 1122 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1123 | 1124 | fast-levenshtein@2.0.6: 1125 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1126 | 1127 | fastq@1.17.1: 1128 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 1129 | 1130 | file-entry-cache@6.0.1: 1131 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1132 | engines: {node: ^10.12.0 || >=12.0.0} 1133 | 1134 | fill-range@7.1.1: 1135 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 1136 | engines: {node: '>=8'} 1137 | 1138 | find-up@5.0.0: 1139 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1140 | engines: {node: '>=10'} 1141 | 1142 | flat-cache@3.2.0: 1143 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} 1144 | engines: {node: ^10.12.0 || >=12.0.0} 1145 | 1146 | flatted@3.3.1: 1147 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} 1148 | 1149 | for-each@0.3.3: 1150 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 1151 | 1152 | foreground-child@3.1.1: 1153 | resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} 1154 | engines: {node: '>=14'} 1155 | 1156 | fraction.js@4.3.7: 1157 | resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} 1158 | 1159 | fs.realpath@1.0.0: 1160 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1161 | 1162 | fsevents@2.3.3: 1163 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1164 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1165 | os: [darwin] 1166 | 1167 | function-bind@1.1.2: 1168 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 1169 | 1170 | function.prototype.name@1.1.6: 1171 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} 1172 | engines: {node: '>= 0.4'} 1173 | 1174 | functions-have-names@1.2.3: 1175 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1176 | 1177 | gensync@1.0.0-beta.2: 1178 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 1179 | engines: {node: '>=6.9.0'} 1180 | 1181 | get-intrinsic@1.2.4: 1182 | resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} 1183 | engines: {node: '>= 0.4'} 1184 | 1185 | get-nonce@1.0.1: 1186 | resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} 1187 | engines: {node: '>=6'} 1188 | 1189 | get-symbol-description@1.0.2: 1190 | resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} 1191 | engines: {node: '>= 0.4'} 1192 | 1193 | get-tsconfig@4.7.3: 1194 | resolution: {integrity: sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==} 1195 | 1196 | glob-parent@5.1.2: 1197 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1198 | engines: {node: '>= 6'} 1199 | 1200 | glob-parent@6.0.2: 1201 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1202 | engines: {node: '>=10.13.0'} 1203 | 1204 | glob@10.3.10: 1205 | resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} 1206 | engines: {node: '>=16 || 14 >=14.17'} 1207 | hasBin: true 1208 | 1209 | glob@10.3.12: 1210 | resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==} 1211 | engines: {node: '>=16 || 14 >=14.17'} 1212 | hasBin: true 1213 | 1214 | glob@7.2.3: 1215 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1216 | deprecated: Glob versions prior to v9 are no longer supported 1217 | 1218 | globals@11.12.0: 1219 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 1220 | engines: {node: '>=4'} 1221 | 1222 | globals@13.24.0: 1223 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 1224 | engines: {node: '>=8'} 1225 | 1226 | globalthis@1.0.3: 1227 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 1228 | engines: {node: '>= 0.4'} 1229 | 1230 | globby@11.1.0: 1231 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1232 | engines: {node: '>=10'} 1233 | 1234 | gopd@1.0.1: 1235 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 1236 | 1237 | graceful-fs@4.2.11: 1238 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1239 | 1240 | graphemer@1.4.0: 1241 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 1242 | 1243 | has-bigints@1.0.2: 1244 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 1245 | 1246 | has-flag@3.0.0: 1247 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 1248 | engines: {node: '>=4'} 1249 | 1250 | has-flag@4.0.0: 1251 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1252 | engines: {node: '>=8'} 1253 | 1254 | has-property-descriptors@1.0.2: 1255 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 1256 | 1257 | has-proto@1.0.3: 1258 | resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} 1259 | engines: {node: '>= 0.4'} 1260 | 1261 | has-symbols@1.0.3: 1262 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 1263 | engines: {node: '>= 0.4'} 1264 | 1265 | has-tostringtag@1.0.2: 1266 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 1267 | engines: {node: '>= 0.4'} 1268 | 1269 | hasown@2.0.2: 1270 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 1271 | engines: {node: '>= 0.4'} 1272 | 1273 | ignore@5.3.1: 1274 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} 1275 | engines: {node: '>= 4'} 1276 | 1277 | import-fresh@3.3.0: 1278 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1279 | engines: {node: '>=6'} 1280 | 1281 | imurmurhash@0.1.4: 1282 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1283 | engines: {node: '>=0.8.19'} 1284 | 1285 | inflight@1.0.6: 1286 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1287 | 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. 1288 | 1289 | inherits@2.0.4: 1290 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1291 | 1292 | internal-slot@1.0.7: 1293 | resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} 1294 | engines: {node: '>= 0.4'} 1295 | 1296 | invariant@2.2.4: 1297 | resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} 1298 | 1299 | is-array-buffer@3.0.4: 1300 | resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} 1301 | engines: {node: '>= 0.4'} 1302 | 1303 | is-async-function@2.0.0: 1304 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} 1305 | engines: {node: '>= 0.4'} 1306 | 1307 | is-bigint@1.0.4: 1308 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 1309 | 1310 | is-binary-path@2.1.0: 1311 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 1312 | engines: {node: '>=8'} 1313 | 1314 | is-boolean-object@1.1.2: 1315 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 1316 | engines: {node: '>= 0.4'} 1317 | 1318 | is-callable@1.2.7: 1319 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1320 | engines: {node: '>= 0.4'} 1321 | 1322 | is-core-module@2.13.1: 1323 | resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} 1324 | 1325 | is-data-view@1.0.1: 1326 | resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} 1327 | engines: {node: '>= 0.4'} 1328 | 1329 | is-date-object@1.0.5: 1330 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 1331 | engines: {node: '>= 0.4'} 1332 | 1333 | is-extglob@2.1.1: 1334 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1335 | engines: {node: '>=0.10.0'} 1336 | 1337 | is-finalizationregistry@1.0.2: 1338 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} 1339 | 1340 | is-fullwidth-code-point@3.0.0: 1341 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1342 | engines: {node: '>=8'} 1343 | 1344 | is-generator-function@1.0.10: 1345 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} 1346 | engines: {node: '>= 0.4'} 1347 | 1348 | is-glob@4.0.3: 1349 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1350 | engines: {node: '>=0.10.0'} 1351 | 1352 | is-map@2.0.3: 1353 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 1354 | engines: {node: '>= 0.4'} 1355 | 1356 | is-negative-zero@2.0.3: 1357 | resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} 1358 | engines: {node: '>= 0.4'} 1359 | 1360 | is-number-object@1.0.7: 1361 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 1362 | engines: {node: '>= 0.4'} 1363 | 1364 | is-number@7.0.0: 1365 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1366 | engines: {node: '>=0.12.0'} 1367 | 1368 | is-path-inside@3.0.3: 1369 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 1370 | engines: {node: '>=8'} 1371 | 1372 | is-regex@1.1.4: 1373 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 1374 | engines: {node: '>= 0.4'} 1375 | 1376 | is-set@2.0.3: 1377 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} 1378 | engines: {node: '>= 0.4'} 1379 | 1380 | is-shared-array-buffer@1.0.3: 1381 | resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} 1382 | engines: {node: '>= 0.4'} 1383 | 1384 | is-string@1.0.7: 1385 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 1386 | engines: {node: '>= 0.4'} 1387 | 1388 | is-symbol@1.0.4: 1389 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 1390 | engines: {node: '>= 0.4'} 1391 | 1392 | is-typed-array@1.1.13: 1393 | resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} 1394 | engines: {node: '>= 0.4'} 1395 | 1396 | is-weakmap@2.0.2: 1397 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} 1398 | engines: {node: '>= 0.4'} 1399 | 1400 | is-weakref@1.0.2: 1401 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 1402 | 1403 | is-weakset@2.0.3: 1404 | resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} 1405 | engines: {node: '>= 0.4'} 1406 | 1407 | isarray@2.0.5: 1408 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 1409 | 1410 | isexe@2.0.0: 1411 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1412 | 1413 | iterator.prototype@1.1.2: 1414 | resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} 1415 | 1416 | jackspeak@2.3.6: 1417 | resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} 1418 | engines: {node: '>=14'} 1419 | 1420 | jiti@1.21.0: 1421 | resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} 1422 | hasBin: true 1423 | 1424 | js-tokens@4.0.0: 1425 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1426 | 1427 | js-yaml@4.1.0: 1428 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1429 | hasBin: true 1430 | 1431 | jsesc@2.5.2: 1432 | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} 1433 | engines: {node: '>=4'} 1434 | hasBin: true 1435 | 1436 | json-buffer@3.0.1: 1437 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1438 | 1439 | json-schema-traverse@0.4.1: 1440 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1441 | 1442 | json-stable-stringify-without-jsonify@1.0.1: 1443 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1444 | 1445 | json5@1.0.2: 1446 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 1447 | hasBin: true 1448 | 1449 | json5@2.2.3: 1450 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 1451 | engines: {node: '>=6'} 1452 | hasBin: true 1453 | 1454 | jsx-ast-utils@3.3.5: 1455 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} 1456 | engines: {node: '>=4.0'} 1457 | 1458 | keyv@4.5.4: 1459 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1460 | 1461 | language-subtag-registry@0.3.22: 1462 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} 1463 | 1464 | language-tags@1.0.9: 1465 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} 1466 | engines: {node: '>=0.10'} 1467 | 1468 | levn@0.4.1: 1469 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1470 | engines: {node: '>= 0.8.0'} 1471 | 1472 | lilconfig@2.1.0: 1473 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 1474 | engines: {node: '>=10'} 1475 | 1476 | lilconfig@3.1.1: 1477 | resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==} 1478 | engines: {node: '>=14'} 1479 | 1480 | lines-and-columns@1.2.4: 1481 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1482 | 1483 | locate-path@6.0.0: 1484 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1485 | engines: {node: '>=10'} 1486 | 1487 | lodash.merge@4.6.2: 1488 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1489 | 1490 | loose-envify@1.4.0: 1491 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 1492 | hasBin: true 1493 | 1494 | lru-cache@10.2.1: 1495 | resolution: {integrity: sha512-tS24spDe/zXhWbNPErCHs/AGOzbKGHT+ybSBqmdLm8WZ1xXLWvH8Qn71QPAlqVhd0qUTWjy+Kl9JmISgDdEjsA==} 1496 | engines: {node: 14 || >=16.14} 1497 | 1498 | lru-cache@5.1.1: 1499 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 1500 | 1501 | lru-cache@6.0.0: 1502 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 1503 | engines: {node: '>=10'} 1504 | 1505 | lucide-react@0.330.0: 1506 | resolution: {integrity: sha512-CQwY+Fpbt2kxCoVhuN0RCZDCYlbYnqB870Bl/vIQf3ER/cnDDQ6moLmEkguRyruAUGd4j3Lc4mtnJosXnqHheA==} 1507 | peerDependencies: 1508 | react: ^16.5.1 || ^17.0.0 || ^18.0.0 1509 | 1510 | merge2@1.4.1: 1511 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1512 | engines: {node: '>= 8'} 1513 | 1514 | micromatch@4.0.8: 1515 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1516 | engines: {node: '>=8.6'} 1517 | 1518 | minimatch@3.1.2: 1519 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1520 | 1521 | minimatch@9.0.3: 1522 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} 1523 | engines: {node: '>=16 || 14 >=14.17'} 1524 | 1525 | minimatch@9.0.4: 1526 | resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} 1527 | engines: {node: '>=16 || 14 >=14.17'} 1528 | 1529 | minimist@1.2.8: 1530 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1531 | 1532 | minipass@7.0.4: 1533 | resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} 1534 | engines: {node: '>=16 || 14 >=14.17'} 1535 | 1536 | ms@2.1.2: 1537 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 1538 | 1539 | ms@2.1.3: 1540 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1541 | 1542 | mz@2.7.0: 1543 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 1544 | 1545 | nanoid@3.3.7: 1546 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 1547 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1548 | hasBin: true 1549 | 1550 | natural-compare@1.4.0: 1551 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1552 | 1553 | next-themes@0.2.1: 1554 | resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==} 1555 | peerDependencies: 1556 | next: '*' 1557 | react: '*' 1558 | react-dom: '*' 1559 | 1560 | next@14.1.1: 1561 | resolution: {integrity: sha512-McrGJqlGSHeaz2yTRPkEucxQKe5Zq7uPwyeHNmJaZNY4wx9E9QdxmTp310agFRoMuIYgQrCrT3petg13fSVOww==} 1562 | engines: {node: '>=18.17.0'} 1563 | hasBin: true 1564 | peerDependencies: 1565 | '@opentelemetry/api': ^1.1.0 1566 | react: ^18.2.0 1567 | react-dom: ^18.2.0 1568 | sass: ^1.3.0 1569 | peerDependenciesMeta: 1570 | '@opentelemetry/api': 1571 | optional: true 1572 | sass: 1573 | optional: true 1574 | 1575 | node-releases@2.0.14: 1576 | resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} 1577 | 1578 | normalize-path@3.0.0: 1579 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1580 | engines: {node: '>=0.10.0'} 1581 | 1582 | normalize-range@0.1.2: 1583 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} 1584 | engines: {node: '>=0.10.0'} 1585 | 1586 | object-assign@4.1.1: 1587 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1588 | engines: {node: '>=0.10.0'} 1589 | 1590 | object-hash@3.0.0: 1591 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 1592 | engines: {node: '>= 6'} 1593 | 1594 | object-inspect@1.13.1: 1595 | resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} 1596 | 1597 | object-keys@1.1.1: 1598 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1599 | engines: {node: '>= 0.4'} 1600 | 1601 | object.assign@4.1.5: 1602 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} 1603 | engines: {node: '>= 0.4'} 1604 | 1605 | object.entries@1.1.8: 1606 | resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} 1607 | engines: {node: '>= 0.4'} 1608 | 1609 | object.fromentries@2.0.8: 1610 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} 1611 | engines: {node: '>= 0.4'} 1612 | 1613 | object.groupby@1.0.3: 1614 | resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} 1615 | engines: {node: '>= 0.4'} 1616 | 1617 | object.hasown@1.1.4: 1618 | resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} 1619 | engines: {node: '>= 0.4'} 1620 | 1621 | object.values@1.2.0: 1622 | resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} 1623 | engines: {node: '>= 0.4'} 1624 | 1625 | once@1.4.0: 1626 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1627 | 1628 | optionator@0.9.4: 1629 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1630 | engines: {node: '>= 0.8.0'} 1631 | 1632 | p-limit@3.1.0: 1633 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1634 | engines: {node: '>=10'} 1635 | 1636 | p-locate@5.0.0: 1637 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1638 | engines: {node: '>=10'} 1639 | 1640 | parent-module@1.0.1: 1641 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1642 | engines: {node: '>=6'} 1643 | 1644 | path-exists@4.0.0: 1645 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1646 | engines: {node: '>=8'} 1647 | 1648 | path-is-absolute@1.0.1: 1649 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 1650 | engines: {node: '>=0.10.0'} 1651 | 1652 | path-key@3.1.1: 1653 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1654 | engines: {node: '>=8'} 1655 | 1656 | path-parse@1.0.7: 1657 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1658 | 1659 | path-scurry@1.10.2: 1660 | resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==} 1661 | engines: {node: '>=16 || 14 >=14.17'} 1662 | 1663 | path-type@4.0.0: 1664 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 1665 | engines: {node: '>=8'} 1666 | 1667 | picocolors@1.0.0: 1668 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 1669 | 1670 | picomatch@2.3.1: 1671 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1672 | engines: {node: '>=8.6'} 1673 | 1674 | pify@2.3.0: 1675 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 1676 | engines: {node: '>=0.10.0'} 1677 | 1678 | pirates@4.0.6: 1679 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 1680 | engines: {node: '>= 6'} 1681 | 1682 | possible-typed-array-names@1.0.0: 1683 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} 1684 | engines: {node: '>= 0.4'} 1685 | 1686 | postcss-import@15.1.0: 1687 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 1688 | engines: {node: '>=14.0.0'} 1689 | peerDependencies: 1690 | postcss: ^8.0.0 1691 | 1692 | postcss-js@4.0.1: 1693 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 1694 | engines: {node: ^12 || ^14 || >= 16} 1695 | peerDependencies: 1696 | postcss: ^8.4.21 1697 | 1698 | postcss-load-config@4.0.2: 1699 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} 1700 | engines: {node: '>= 14'} 1701 | peerDependencies: 1702 | postcss: '>=8.0.9' 1703 | ts-node: '>=9.0.0' 1704 | peerDependenciesMeta: 1705 | postcss: 1706 | optional: true 1707 | ts-node: 1708 | optional: true 1709 | 1710 | postcss-nested@6.0.1: 1711 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} 1712 | engines: {node: '>=12.0'} 1713 | peerDependencies: 1714 | postcss: ^8.2.14 1715 | 1716 | postcss-selector-parser@6.0.16: 1717 | resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==} 1718 | engines: {node: '>=4'} 1719 | 1720 | postcss-value-parser@4.2.0: 1721 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 1722 | 1723 | postcss@8.4.31: 1724 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} 1725 | engines: {node: ^10 || ^12 || >=14} 1726 | 1727 | postcss@8.4.38: 1728 | resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} 1729 | engines: {node: ^10 || ^12 || >=14} 1730 | 1731 | prelude-ls@1.2.1: 1732 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1733 | engines: {node: '>= 0.8.0'} 1734 | 1735 | prettier-plugin-tailwindcss@0.5.14: 1736 | resolution: {integrity: sha512-Puaz+wPUAhFp8Lo9HuciYKM2Y2XExESjeT+9NQoVFXZsPPnc9VYss2SpxdQ6vbatmt8/4+SN0oe0I1cPDABg9Q==} 1737 | engines: {node: '>=14.21.3'} 1738 | peerDependencies: 1739 | '@ianvs/prettier-plugin-sort-imports': '*' 1740 | '@prettier/plugin-pug': '*' 1741 | '@shopify/prettier-plugin-liquid': '*' 1742 | '@trivago/prettier-plugin-sort-imports': '*' 1743 | '@zackad/prettier-plugin-twig-melody': '*' 1744 | prettier: ^3.0 1745 | prettier-plugin-astro: '*' 1746 | prettier-plugin-css-order: '*' 1747 | prettier-plugin-import-sort: '*' 1748 | prettier-plugin-jsdoc: '*' 1749 | prettier-plugin-marko: '*' 1750 | prettier-plugin-organize-attributes: '*' 1751 | prettier-plugin-organize-imports: '*' 1752 | prettier-plugin-sort-imports: '*' 1753 | prettier-plugin-style-order: '*' 1754 | prettier-plugin-svelte: '*' 1755 | peerDependenciesMeta: 1756 | '@ianvs/prettier-plugin-sort-imports': 1757 | optional: true 1758 | '@prettier/plugin-pug': 1759 | optional: true 1760 | '@shopify/prettier-plugin-liquid': 1761 | optional: true 1762 | '@trivago/prettier-plugin-sort-imports': 1763 | optional: true 1764 | '@zackad/prettier-plugin-twig-melody': 1765 | optional: true 1766 | prettier-plugin-astro: 1767 | optional: true 1768 | prettier-plugin-css-order: 1769 | optional: true 1770 | prettier-plugin-import-sort: 1771 | optional: true 1772 | prettier-plugin-jsdoc: 1773 | optional: true 1774 | prettier-plugin-marko: 1775 | optional: true 1776 | prettier-plugin-organize-attributes: 1777 | optional: true 1778 | prettier-plugin-organize-imports: 1779 | optional: true 1780 | prettier-plugin-sort-imports: 1781 | optional: true 1782 | prettier-plugin-style-order: 1783 | optional: true 1784 | prettier-plugin-svelte: 1785 | optional: true 1786 | 1787 | prettier@3.2.5: 1788 | resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==} 1789 | engines: {node: '>=14'} 1790 | hasBin: true 1791 | 1792 | prop-types@15.8.1: 1793 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 1794 | 1795 | punycode@2.3.1: 1796 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1797 | engines: {node: '>=6'} 1798 | 1799 | queue-microtask@1.2.3: 1800 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1801 | 1802 | react-dom@18.3.1: 1803 | resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} 1804 | peerDependencies: 1805 | react: ^18.3.1 1806 | 1807 | react-is@16.13.1: 1808 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 1809 | 1810 | react-remove-scroll-bar@2.3.6: 1811 | resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==} 1812 | engines: {node: '>=10'} 1813 | peerDependencies: 1814 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 1815 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 1816 | peerDependenciesMeta: 1817 | '@types/react': 1818 | optional: true 1819 | 1820 | react-remove-scroll@2.5.5: 1821 | resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} 1822 | engines: {node: '>=10'} 1823 | peerDependencies: 1824 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 1825 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 1826 | peerDependenciesMeta: 1827 | '@types/react': 1828 | optional: true 1829 | 1830 | react-style-singleton@2.2.1: 1831 | resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} 1832 | engines: {node: '>=10'} 1833 | peerDependencies: 1834 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 1835 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 1836 | peerDependenciesMeta: 1837 | '@types/react': 1838 | optional: true 1839 | 1840 | react@18.3.1: 1841 | resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} 1842 | engines: {node: '>=0.10.0'} 1843 | 1844 | read-cache@1.0.0: 1845 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 1846 | 1847 | readdirp@3.6.0: 1848 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 1849 | engines: {node: '>=8.10.0'} 1850 | 1851 | reflect.getprototypeof@1.0.6: 1852 | resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} 1853 | engines: {node: '>= 0.4'} 1854 | 1855 | regenerator-runtime@0.14.1: 1856 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 1857 | 1858 | regexp.prototype.flags@1.5.2: 1859 | resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} 1860 | engines: {node: '>= 0.4'} 1861 | 1862 | resolve-from@4.0.0: 1863 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1864 | engines: {node: '>=4'} 1865 | 1866 | resolve-pkg-maps@1.0.0: 1867 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 1868 | 1869 | resolve@1.22.8: 1870 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 1871 | hasBin: true 1872 | 1873 | resolve@2.0.0-next.5: 1874 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 1875 | hasBin: true 1876 | 1877 | reusify@1.0.4: 1878 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1879 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1880 | 1881 | rimraf@3.0.2: 1882 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 1883 | deprecated: Rimraf versions prior to v4 are no longer supported 1884 | hasBin: true 1885 | 1886 | run-parallel@1.2.0: 1887 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1888 | 1889 | safe-array-concat@1.1.2: 1890 | resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} 1891 | engines: {node: '>=0.4'} 1892 | 1893 | safe-regex-test@1.0.3: 1894 | resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} 1895 | engines: {node: '>= 0.4'} 1896 | 1897 | scheduler@0.23.2: 1898 | resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} 1899 | 1900 | semver@6.3.1: 1901 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 1902 | hasBin: true 1903 | 1904 | semver@7.6.0: 1905 | resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==} 1906 | engines: {node: '>=10'} 1907 | hasBin: true 1908 | 1909 | set-function-length@1.2.2: 1910 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 1911 | engines: {node: '>= 0.4'} 1912 | 1913 | set-function-name@2.0.2: 1914 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 1915 | engines: {node: '>= 0.4'} 1916 | 1917 | shebang-command@2.0.0: 1918 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1919 | engines: {node: '>=8'} 1920 | 1921 | shebang-regex@3.0.0: 1922 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1923 | engines: {node: '>=8'} 1924 | 1925 | side-channel@1.0.6: 1926 | resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} 1927 | engines: {node: '>= 0.4'} 1928 | 1929 | signal-exit@4.1.0: 1930 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 1931 | engines: {node: '>=14'} 1932 | 1933 | slash@3.0.0: 1934 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 1935 | engines: {node: '>=8'} 1936 | 1937 | source-map-js@1.2.0: 1938 | resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} 1939 | engines: {node: '>=0.10.0'} 1940 | 1941 | streamsearch@1.1.0: 1942 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 1943 | engines: {node: '>=10.0.0'} 1944 | 1945 | string-width@4.2.3: 1946 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1947 | engines: {node: '>=8'} 1948 | 1949 | string-width@5.1.2: 1950 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 1951 | engines: {node: '>=12'} 1952 | 1953 | string.prototype.matchall@4.0.11: 1954 | resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} 1955 | engines: {node: '>= 0.4'} 1956 | 1957 | string.prototype.trim@1.2.9: 1958 | resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} 1959 | engines: {node: '>= 0.4'} 1960 | 1961 | string.prototype.trimend@1.0.8: 1962 | resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} 1963 | 1964 | string.prototype.trimstart@1.0.8: 1965 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} 1966 | engines: {node: '>= 0.4'} 1967 | 1968 | strip-ansi@6.0.1: 1969 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1970 | engines: {node: '>=8'} 1971 | 1972 | strip-ansi@7.1.0: 1973 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 1974 | engines: {node: '>=12'} 1975 | 1976 | strip-bom@3.0.0: 1977 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 1978 | engines: {node: '>=4'} 1979 | 1980 | strip-json-comments@3.1.1: 1981 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1982 | engines: {node: '>=8'} 1983 | 1984 | styled-jsx@5.1.1: 1985 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} 1986 | engines: {node: '>= 12.0.0'} 1987 | peerDependencies: 1988 | '@babel/core': '*' 1989 | babel-plugin-macros: '*' 1990 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' 1991 | peerDependenciesMeta: 1992 | '@babel/core': 1993 | optional: true 1994 | babel-plugin-macros: 1995 | optional: true 1996 | 1997 | sucrase@3.35.0: 1998 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} 1999 | engines: {node: '>=16 || 14 >=14.17'} 2000 | hasBin: true 2001 | 2002 | supports-color@5.5.0: 2003 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 2004 | engines: {node: '>=4'} 2005 | 2006 | supports-color@7.2.0: 2007 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 2008 | engines: {node: '>=8'} 2009 | 2010 | supports-preserve-symlinks-flag@1.0.0: 2011 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 2012 | engines: {node: '>= 0.4'} 2013 | 2014 | tailwind-merge@2.3.0: 2015 | resolution: {integrity: sha512-vkYrLpIP+lgR0tQCG6AP7zZXCTLc1Lnv/CCRT3BqJ9CZ3ui2++GPaGb1x/ILsINIMSYqqvrpqjUFsMNLlW99EA==} 2016 | 2017 | tailwindcss-animate@1.0.7: 2018 | resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==} 2019 | peerDependencies: 2020 | tailwindcss: '>=3.0.0 || insiders' 2021 | 2022 | tailwindcss@3.4.3: 2023 | resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==} 2024 | engines: {node: '>=14.0.0'} 2025 | hasBin: true 2026 | 2027 | tapable@2.2.1: 2028 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 2029 | engines: {node: '>=6'} 2030 | 2031 | text-table@0.2.0: 2032 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 2033 | 2034 | thenify-all@1.6.0: 2035 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 2036 | engines: {node: '>=0.8'} 2037 | 2038 | thenify@3.3.1: 2039 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 2040 | 2041 | to-fast-properties@2.0.0: 2042 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} 2043 | engines: {node: '>=4'} 2044 | 2045 | to-regex-range@5.0.1: 2046 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 2047 | engines: {node: '>=8.0'} 2048 | 2049 | ts-api-utils@1.3.0: 2050 | resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} 2051 | engines: {node: '>=16'} 2052 | peerDependencies: 2053 | typescript: '>=4.2.0' 2054 | 2055 | ts-interface-checker@0.1.13: 2056 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 2057 | 2058 | tsconfig-paths@3.15.0: 2059 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} 2060 | 2061 | tslib@2.6.2: 2062 | resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} 2063 | 2064 | type-check@0.4.0: 2065 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 2066 | engines: {node: '>= 0.8.0'} 2067 | 2068 | type-fest@0.20.2: 2069 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 2070 | engines: {node: '>=10'} 2071 | 2072 | typed-array-buffer@1.0.2: 2073 | resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} 2074 | engines: {node: '>= 0.4'} 2075 | 2076 | typed-array-byte-length@1.0.1: 2077 | resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} 2078 | engines: {node: '>= 0.4'} 2079 | 2080 | typed-array-byte-offset@1.0.2: 2081 | resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} 2082 | engines: {node: '>= 0.4'} 2083 | 2084 | typed-array-length@1.0.6: 2085 | resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} 2086 | engines: {node: '>= 0.4'} 2087 | 2088 | typescript@5.4.5: 2089 | resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} 2090 | engines: {node: '>=14.17'} 2091 | hasBin: true 2092 | 2093 | unbox-primitive@1.0.2: 2094 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 2095 | 2096 | undici-types@5.26.5: 2097 | resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} 2098 | 2099 | update-browserslist-db@1.0.13: 2100 | resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} 2101 | hasBin: true 2102 | peerDependencies: 2103 | browserslist: '>= 4.21.0' 2104 | 2105 | uri-js@4.4.1: 2106 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 2107 | 2108 | use-callback-ref@1.3.2: 2109 | resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==} 2110 | engines: {node: '>=10'} 2111 | peerDependencies: 2112 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 2113 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 2114 | peerDependenciesMeta: 2115 | '@types/react': 2116 | optional: true 2117 | 2118 | use-sidecar@1.1.2: 2119 | resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} 2120 | engines: {node: '>=10'} 2121 | peerDependencies: 2122 | '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 2123 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 2124 | peerDependenciesMeta: 2125 | '@types/react': 2126 | optional: true 2127 | 2128 | util-deprecate@1.0.2: 2129 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 2130 | 2131 | which-boxed-primitive@1.0.2: 2132 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 2133 | 2134 | which-builtin-type@1.1.3: 2135 | resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} 2136 | engines: {node: '>= 0.4'} 2137 | 2138 | which-collection@1.0.2: 2139 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} 2140 | engines: {node: '>= 0.4'} 2141 | 2142 | which-typed-array@1.1.15: 2143 | resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} 2144 | engines: {node: '>= 0.4'} 2145 | 2146 | which@2.0.2: 2147 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2148 | engines: {node: '>= 8'} 2149 | hasBin: true 2150 | 2151 | word-wrap@1.2.5: 2152 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 2153 | engines: {node: '>=0.10.0'} 2154 | 2155 | wrap-ansi@7.0.0: 2156 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 2157 | engines: {node: '>=10'} 2158 | 2159 | wrap-ansi@8.1.0: 2160 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 2161 | engines: {node: '>=12'} 2162 | 2163 | wrappy@1.0.2: 2164 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 2165 | 2166 | yallist@3.1.1: 2167 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 2168 | 2169 | yallist@4.0.0: 2170 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 2171 | 2172 | yaml@2.4.2: 2173 | resolution: {integrity: sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==} 2174 | engines: {node: '>= 14'} 2175 | hasBin: true 2176 | 2177 | yocto-queue@0.1.0: 2178 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 2179 | engines: {node: '>=10'} 2180 | 2181 | zod@3.23.4: 2182 | resolution: {integrity: sha512-/AtWOKbBgjzEYYQRNfoGKHObgfAZag6qUJX1VbHo2PRBgS+wfWagEY2mizjfyAPcGesrJOcx/wcl0L9WnVrHFw==} 2183 | 2184 | snapshots: 2185 | 2186 | '@alloc/quick-lru@5.2.0': {} 2187 | 2188 | '@ampproject/remapping@2.3.0': 2189 | dependencies: 2190 | '@jridgewell/gen-mapping': 0.3.5 2191 | '@jridgewell/trace-mapping': 0.3.25 2192 | 2193 | '@babel/code-frame@7.24.2': 2194 | dependencies: 2195 | '@babel/highlight': 7.24.2 2196 | picocolors: 1.0.0 2197 | 2198 | '@babel/compat-data@7.24.4': {} 2199 | 2200 | '@babel/core@7.24.4': 2201 | dependencies: 2202 | '@ampproject/remapping': 2.3.0 2203 | '@babel/code-frame': 7.24.2 2204 | '@babel/generator': 7.24.4 2205 | '@babel/helper-compilation-targets': 7.23.6 2206 | '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) 2207 | '@babel/helpers': 7.24.4 2208 | '@babel/parser': 7.24.4 2209 | '@babel/template': 7.24.0 2210 | '@babel/traverse': 7.24.1 2211 | '@babel/types': 7.24.0 2212 | convert-source-map: 2.0.0 2213 | debug: 4.3.4 2214 | gensync: 1.0.0-beta.2 2215 | json5: 2.2.3 2216 | semver: 6.3.1 2217 | transitivePeerDependencies: 2218 | - supports-color 2219 | 2220 | '@babel/generator@7.24.4': 2221 | dependencies: 2222 | '@babel/types': 7.24.0 2223 | '@jridgewell/gen-mapping': 0.3.5 2224 | '@jridgewell/trace-mapping': 0.3.25 2225 | jsesc: 2.5.2 2226 | 2227 | '@babel/helper-compilation-targets@7.23.6': 2228 | dependencies: 2229 | '@babel/compat-data': 7.24.4 2230 | '@babel/helper-validator-option': 7.23.5 2231 | browserslist: 4.23.0 2232 | lru-cache: 5.1.1 2233 | semver: 6.3.1 2234 | 2235 | '@babel/helper-environment-visitor@7.22.20': {} 2236 | 2237 | '@babel/helper-function-name@7.23.0': 2238 | dependencies: 2239 | '@babel/template': 7.24.0 2240 | '@babel/types': 7.24.0 2241 | 2242 | '@babel/helper-hoist-variables@7.22.5': 2243 | dependencies: 2244 | '@babel/types': 7.24.0 2245 | 2246 | '@babel/helper-module-imports@7.24.3': 2247 | dependencies: 2248 | '@babel/types': 7.24.0 2249 | 2250 | '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4)': 2251 | dependencies: 2252 | '@babel/core': 7.24.4 2253 | '@babel/helper-environment-visitor': 7.22.20 2254 | '@babel/helper-module-imports': 7.24.3 2255 | '@babel/helper-simple-access': 7.22.5 2256 | '@babel/helper-split-export-declaration': 7.22.6 2257 | '@babel/helper-validator-identifier': 7.22.20 2258 | 2259 | '@babel/helper-simple-access@7.22.5': 2260 | dependencies: 2261 | '@babel/types': 7.24.0 2262 | 2263 | '@babel/helper-split-export-declaration@7.22.6': 2264 | dependencies: 2265 | '@babel/types': 7.24.0 2266 | 2267 | '@babel/helper-string-parser@7.24.1': {} 2268 | 2269 | '@babel/helper-validator-identifier@7.22.20': {} 2270 | 2271 | '@babel/helper-validator-option@7.23.5': {} 2272 | 2273 | '@babel/helpers@7.24.4': 2274 | dependencies: 2275 | '@babel/template': 7.24.0 2276 | '@babel/traverse': 7.24.1 2277 | '@babel/types': 7.24.0 2278 | transitivePeerDependencies: 2279 | - supports-color 2280 | 2281 | '@babel/highlight@7.24.2': 2282 | dependencies: 2283 | '@babel/helper-validator-identifier': 7.22.20 2284 | chalk: 2.4.2 2285 | js-tokens: 4.0.0 2286 | picocolors: 1.0.0 2287 | 2288 | '@babel/parser@7.24.4': 2289 | dependencies: 2290 | '@babel/types': 7.24.0 2291 | 2292 | '@babel/runtime@7.24.4': 2293 | dependencies: 2294 | regenerator-runtime: 0.14.1 2295 | 2296 | '@babel/template@7.24.0': 2297 | dependencies: 2298 | '@babel/code-frame': 7.24.2 2299 | '@babel/parser': 7.24.4 2300 | '@babel/types': 7.24.0 2301 | 2302 | '@babel/traverse@7.24.1': 2303 | dependencies: 2304 | '@babel/code-frame': 7.24.2 2305 | '@babel/generator': 7.24.4 2306 | '@babel/helper-environment-visitor': 7.22.20 2307 | '@babel/helper-function-name': 7.23.0 2308 | '@babel/helper-hoist-variables': 7.22.5 2309 | '@babel/helper-split-export-declaration': 7.22.6 2310 | '@babel/parser': 7.24.4 2311 | '@babel/types': 7.24.0 2312 | debug: 4.3.4 2313 | globals: 11.12.0 2314 | transitivePeerDependencies: 2315 | - supports-color 2316 | 2317 | '@babel/types@7.24.0': 2318 | dependencies: 2319 | '@babel/helper-string-parser': 7.24.1 2320 | '@babel/helper-validator-identifier': 7.22.20 2321 | to-fast-properties: 2.0.0 2322 | 2323 | '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)': 2324 | dependencies: 2325 | eslint: 8.57.0 2326 | eslint-visitor-keys: 3.4.3 2327 | 2328 | '@eslint-community/regexpp@4.10.0': {} 2329 | 2330 | '@eslint/eslintrc@2.1.4': 2331 | dependencies: 2332 | ajv: 6.12.6 2333 | debug: 4.3.4 2334 | espree: 9.6.1 2335 | globals: 13.24.0 2336 | ignore: 5.3.1 2337 | import-fresh: 3.3.0 2338 | js-yaml: 4.1.0 2339 | minimatch: 3.1.2 2340 | strip-json-comments: 3.1.1 2341 | transitivePeerDependencies: 2342 | - supports-color 2343 | 2344 | '@eslint/js@8.57.0': {} 2345 | 2346 | '@floating-ui/core@1.6.1': 2347 | dependencies: 2348 | '@floating-ui/utils': 0.2.2 2349 | 2350 | '@floating-ui/dom@1.6.4': 2351 | dependencies: 2352 | '@floating-ui/core': 1.6.1 2353 | '@floating-ui/utils': 0.2.2 2354 | 2355 | '@floating-ui/react-dom@2.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2356 | dependencies: 2357 | '@floating-ui/dom': 1.6.4 2358 | react: 18.3.1 2359 | react-dom: 18.3.1(react@18.3.1) 2360 | 2361 | '@floating-ui/utils@0.2.2': {} 2362 | 2363 | '@humanwhocodes/config-array@0.11.14': 2364 | dependencies: 2365 | '@humanwhocodes/object-schema': 2.0.3 2366 | debug: 4.3.4 2367 | minimatch: 3.1.2 2368 | transitivePeerDependencies: 2369 | - supports-color 2370 | 2371 | '@humanwhocodes/module-importer@1.0.1': {} 2372 | 2373 | '@humanwhocodes/object-schema@2.0.3': {} 2374 | 2375 | '@ianvs/prettier-plugin-sort-imports@4.2.1(prettier@3.2.5)': 2376 | dependencies: 2377 | '@babel/core': 7.24.4 2378 | '@babel/generator': 7.24.4 2379 | '@babel/parser': 7.24.4 2380 | '@babel/traverse': 7.24.1 2381 | '@babel/types': 7.24.0 2382 | prettier: 3.2.5 2383 | semver: 7.6.0 2384 | transitivePeerDependencies: 2385 | - supports-color 2386 | 2387 | '@isaacs/cliui@8.0.2': 2388 | dependencies: 2389 | string-width: 5.1.2 2390 | string-width-cjs: string-width@4.2.3 2391 | strip-ansi: 7.1.0 2392 | strip-ansi-cjs: strip-ansi@6.0.1 2393 | wrap-ansi: 8.1.0 2394 | wrap-ansi-cjs: wrap-ansi@7.0.0 2395 | 2396 | '@jridgewell/gen-mapping@0.3.5': 2397 | dependencies: 2398 | '@jridgewell/set-array': 1.2.1 2399 | '@jridgewell/sourcemap-codec': 1.4.15 2400 | '@jridgewell/trace-mapping': 0.3.25 2401 | 2402 | '@jridgewell/resolve-uri@3.1.2': {} 2403 | 2404 | '@jridgewell/set-array@1.2.1': {} 2405 | 2406 | '@jridgewell/sourcemap-codec@1.4.15': {} 2407 | 2408 | '@jridgewell/trace-mapping@0.3.25': 2409 | dependencies: 2410 | '@jridgewell/resolve-uri': 3.1.2 2411 | '@jridgewell/sourcemap-codec': 1.4.15 2412 | 2413 | '@next/env@14.1.1': {} 2414 | 2415 | '@next/eslint-plugin-next@14.1.0': 2416 | dependencies: 2417 | glob: 10.3.10 2418 | 2419 | '@next/swc-darwin-arm64@14.1.1': 2420 | optional: true 2421 | 2422 | '@next/swc-darwin-x64@14.1.1': 2423 | optional: true 2424 | 2425 | '@next/swc-linux-arm64-gnu@14.1.1': 2426 | optional: true 2427 | 2428 | '@next/swc-linux-arm64-musl@14.1.1': 2429 | optional: true 2430 | 2431 | '@next/swc-linux-x64-gnu@14.1.1': 2432 | optional: true 2433 | 2434 | '@next/swc-linux-x64-musl@14.1.1': 2435 | optional: true 2436 | 2437 | '@next/swc-win32-arm64-msvc@14.1.1': 2438 | optional: true 2439 | 2440 | '@next/swc-win32-ia32-msvc@14.1.1': 2441 | optional: true 2442 | 2443 | '@next/swc-win32-x64-msvc@14.1.1': 2444 | optional: true 2445 | 2446 | '@nodelib/fs.scandir@2.1.5': 2447 | dependencies: 2448 | '@nodelib/fs.stat': 2.0.5 2449 | run-parallel: 1.2.0 2450 | 2451 | '@nodelib/fs.stat@2.0.5': {} 2452 | 2453 | '@nodelib/fs.walk@1.2.8': 2454 | dependencies: 2455 | '@nodelib/fs.scandir': 2.1.5 2456 | fastq: 1.17.1 2457 | 2458 | '@pkgjs/parseargs@0.11.0': 2459 | optional: true 2460 | 2461 | '@radix-ui/primitive@1.0.1': 2462 | dependencies: 2463 | '@babel/runtime': 7.24.4 2464 | 2465 | '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2466 | dependencies: 2467 | '@babel/runtime': 7.24.4 2468 | '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2469 | react: 18.3.1 2470 | react-dom: 18.3.1(react@18.3.1) 2471 | optionalDependencies: 2472 | '@types/react': 18.3.1 2473 | '@types/react-dom': 18.3.0 2474 | 2475 | '@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2476 | dependencies: 2477 | '@babel/runtime': 7.24.4 2478 | '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2479 | '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2480 | '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2481 | '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) 2482 | react: 18.3.1 2483 | react-dom: 18.3.1(react@18.3.1) 2484 | optionalDependencies: 2485 | '@types/react': 18.3.1 2486 | '@types/react-dom': 18.3.0 2487 | 2488 | '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.1)(react@18.3.1)': 2489 | dependencies: 2490 | '@babel/runtime': 7.24.4 2491 | react: 18.3.1 2492 | optionalDependencies: 2493 | '@types/react': 18.3.1 2494 | 2495 | '@radix-ui/react-context@1.0.1(@types/react@18.3.1)(react@18.3.1)': 2496 | dependencies: 2497 | '@babel/runtime': 7.24.4 2498 | react: 18.3.1 2499 | optionalDependencies: 2500 | '@types/react': 18.3.1 2501 | 2502 | '@radix-ui/react-direction@1.0.1(@types/react@18.3.1)(react@18.3.1)': 2503 | dependencies: 2504 | '@babel/runtime': 7.24.4 2505 | react: 18.3.1 2506 | optionalDependencies: 2507 | '@types/react': 18.3.1 2508 | 2509 | '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2510 | dependencies: 2511 | '@babel/runtime': 7.24.4 2512 | '@radix-ui/primitive': 1.0.1 2513 | '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2514 | '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2515 | '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2516 | '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.1)(react@18.3.1) 2517 | react: 18.3.1 2518 | react-dom: 18.3.1(react@18.3.1) 2519 | optionalDependencies: 2520 | '@types/react': 18.3.1 2521 | '@types/react-dom': 18.3.0 2522 | 2523 | '@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2524 | dependencies: 2525 | '@babel/runtime': 7.24.4 2526 | '@radix-ui/primitive': 1.0.1 2527 | '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2528 | '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2529 | '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2530 | '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2531 | '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2532 | '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2533 | react: 18.3.1 2534 | react-dom: 18.3.1(react@18.3.1) 2535 | optionalDependencies: 2536 | '@types/react': 18.3.1 2537 | '@types/react-dom': 18.3.0 2538 | 2539 | '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.1)(react@18.3.1)': 2540 | dependencies: 2541 | '@babel/runtime': 7.24.4 2542 | react: 18.3.1 2543 | optionalDependencies: 2544 | '@types/react': 18.3.1 2545 | 2546 | '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2547 | dependencies: 2548 | '@babel/runtime': 7.24.4 2549 | '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2550 | '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2551 | '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2552 | react: 18.3.1 2553 | react-dom: 18.3.1(react@18.3.1) 2554 | optionalDependencies: 2555 | '@types/react': 18.3.1 2556 | '@types/react-dom': 18.3.0 2557 | 2558 | '@radix-ui/react-id@1.0.1(@types/react@18.3.1)(react@18.3.1)': 2559 | dependencies: 2560 | '@babel/runtime': 7.24.4 2561 | '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2562 | react: 18.3.1 2563 | optionalDependencies: 2564 | '@types/react': 18.3.1 2565 | 2566 | '@radix-ui/react-menu@2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2567 | dependencies: 2568 | '@babel/runtime': 7.24.4 2569 | '@radix-ui/primitive': 1.0.1 2570 | '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2571 | '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2572 | '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2573 | '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2574 | '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2575 | '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2576 | '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2577 | '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2578 | '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2579 | '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2580 | '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2581 | '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2582 | '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2583 | '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) 2584 | '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2585 | aria-hidden: 1.2.4 2586 | react: 18.3.1 2587 | react-dom: 18.3.1(react@18.3.1) 2588 | react-remove-scroll: 2.5.5(@types/react@18.3.1)(react@18.3.1) 2589 | optionalDependencies: 2590 | '@types/react': 18.3.1 2591 | '@types/react-dom': 18.3.0 2592 | 2593 | '@radix-ui/react-popper@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2594 | dependencies: 2595 | '@babel/runtime': 7.24.4 2596 | '@floating-ui/react-dom': 2.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2597 | '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2598 | '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2599 | '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2600 | '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2601 | '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2602 | '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2603 | '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2604 | '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2605 | '@radix-ui/rect': 1.0.1 2606 | react: 18.3.1 2607 | react-dom: 18.3.1(react@18.3.1) 2608 | optionalDependencies: 2609 | '@types/react': 18.3.1 2610 | '@types/react-dom': 18.3.0 2611 | 2612 | '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2613 | dependencies: 2614 | '@babel/runtime': 7.24.4 2615 | '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2616 | react: 18.3.1 2617 | react-dom: 18.3.1(react@18.3.1) 2618 | optionalDependencies: 2619 | '@types/react': 18.3.1 2620 | '@types/react-dom': 18.3.0 2621 | 2622 | '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2623 | dependencies: 2624 | '@babel/runtime': 7.24.4 2625 | '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2626 | '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2627 | react: 18.3.1 2628 | react-dom: 18.3.1(react@18.3.1) 2629 | optionalDependencies: 2630 | '@types/react': 18.3.1 2631 | '@types/react-dom': 18.3.0 2632 | 2633 | '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2634 | dependencies: 2635 | '@babel/runtime': 7.24.4 2636 | '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) 2637 | react: 18.3.1 2638 | react-dom: 18.3.1(react@18.3.1) 2639 | optionalDependencies: 2640 | '@types/react': 18.3.1 2641 | '@types/react-dom': 18.3.0 2642 | 2643 | '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2644 | dependencies: 2645 | '@babel/runtime': 7.24.4 2646 | '@radix-ui/primitive': 1.0.1 2647 | '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2648 | '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2649 | '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2650 | '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2651 | '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2652 | '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 2653 | '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2654 | '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2655 | react: 18.3.1 2656 | react-dom: 18.3.1(react@18.3.1) 2657 | optionalDependencies: 2658 | '@types/react': 18.3.1 2659 | '@types/react-dom': 18.3.0 2660 | 2661 | '@radix-ui/react-slot@1.0.2(@types/react@18.3.1)(react@18.3.1)': 2662 | dependencies: 2663 | '@babel/runtime': 7.24.4 2664 | '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2665 | react: 18.3.1 2666 | optionalDependencies: 2667 | '@types/react': 18.3.1 2668 | 2669 | '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.1)(react@18.3.1)': 2670 | dependencies: 2671 | '@babel/runtime': 7.24.4 2672 | react: 18.3.1 2673 | optionalDependencies: 2674 | '@types/react': 18.3.1 2675 | 2676 | '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.1)(react@18.3.1)': 2677 | dependencies: 2678 | '@babel/runtime': 7.24.4 2679 | '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2680 | react: 18.3.1 2681 | optionalDependencies: 2682 | '@types/react': 18.3.1 2683 | 2684 | '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.1)(react@18.3.1)': 2685 | dependencies: 2686 | '@babel/runtime': 7.24.4 2687 | '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2688 | react: 18.3.1 2689 | optionalDependencies: 2690 | '@types/react': 18.3.1 2691 | 2692 | '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.1)(react@18.3.1)': 2693 | dependencies: 2694 | '@babel/runtime': 7.24.4 2695 | react: 18.3.1 2696 | optionalDependencies: 2697 | '@types/react': 18.3.1 2698 | 2699 | '@radix-ui/react-use-rect@1.0.1(@types/react@18.3.1)(react@18.3.1)': 2700 | dependencies: 2701 | '@babel/runtime': 7.24.4 2702 | '@radix-ui/rect': 1.0.1 2703 | react: 18.3.1 2704 | optionalDependencies: 2705 | '@types/react': 18.3.1 2706 | 2707 | '@radix-ui/react-use-size@1.0.1(@types/react@18.3.1)(react@18.3.1)': 2708 | dependencies: 2709 | '@babel/runtime': 7.24.4 2710 | '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) 2711 | react: 18.3.1 2712 | optionalDependencies: 2713 | '@types/react': 18.3.1 2714 | 2715 | '@radix-ui/rect@1.0.1': 2716 | dependencies: 2717 | '@babel/runtime': 7.24.4 2718 | 2719 | '@rushstack/eslint-patch@1.10.2': {} 2720 | 2721 | '@swc/helpers@0.5.2': 2722 | dependencies: 2723 | tslib: 2.6.2 2724 | 2725 | '@t3-oss/env-core@0.9.2(typescript@5.4.5)(zod@3.23.4)': 2726 | dependencies: 2727 | zod: 3.23.4 2728 | optionalDependencies: 2729 | typescript: 5.4.5 2730 | 2731 | '@t3-oss/env-nextjs@0.9.2(typescript@5.4.5)(zod@3.23.4)': 2732 | dependencies: 2733 | '@t3-oss/env-core': 0.9.2(typescript@5.4.5)(zod@3.23.4) 2734 | zod: 3.23.4 2735 | optionalDependencies: 2736 | typescript: 5.4.5 2737 | 2738 | '@types/json5@0.0.29': {} 2739 | 2740 | '@types/node@20.12.7': 2741 | dependencies: 2742 | undici-types: 5.26.5 2743 | 2744 | '@types/prop-types@15.7.12': {} 2745 | 2746 | '@types/react-dom@18.3.0': 2747 | dependencies: 2748 | '@types/react': 18.3.1 2749 | 2750 | '@types/react@18.3.1': 2751 | dependencies: 2752 | '@types/prop-types': 15.7.12 2753 | csstype: 3.1.3 2754 | 2755 | '@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5)': 2756 | dependencies: 2757 | '@typescript-eslint/scope-manager': 6.21.0 2758 | '@typescript-eslint/types': 6.21.0 2759 | '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) 2760 | '@typescript-eslint/visitor-keys': 6.21.0 2761 | debug: 4.3.4 2762 | eslint: 8.57.0 2763 | optionalDependencies: 2764 | typescript: 5.4.5 2765 | transitivePeerDependencies: 2766 | - supports-color 2767 | 2768 | '@typescript-eslint/scope-manager@6.21.0': 2769 | dependencies: 2770 | '@typescript-eslint/types': 6.21.0 2771 | '@typescript-eslint/visitor-keys': 6.21.0 2772 | 2773 | '@typescript-eslint/types@6.21.0': {} 2774 | 2775 | '@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.5)': 2776 | dependencies: 2777 | '@typescript-eslint/types': 6.21.0 2778 | '@typescript-eslint/visitor-keys': 6.21.0 2779 | debug: 4.3.4 2780 | globby: 11.1.0 2781 | is-glob: 4.0.3 2782 | minimatch: 9.0.3 2783 | semver: 7.6.0 2784 | ts-api-utils: 1.3.0(typescript@5.4.5) 2785 | optionalDependencies: 2786 | typescript: 5.4.5 2787 | transitivePeerDependencies: 2788 | - supports-color 2789 | 2790 | '@typescript-eslint/visitor-keys@6.21.0': 2791 | dependencies: 2792 | '@typescript-eslint/types': 6.21.0 2793 | eslint-visitor-keys: 3.4.3 2794 | 2795 | '@ungap/structured-clone@1.2.0': {} 2796 | 2797 | acorn-jsx@5.3.2(acorn@8.11.3): 2798 | dependencies: 2799 | acorn: 8.11.3 2800 | 2801 | acorn@8.11.3: {} 2802 | 2803 | ajv@6.12.6: 2804 | dependencies: 2805 | fast-deep-equal: 3.1.3 2806 | fast-json-stable-stringify: 2.1.0 2807 | json-schema-traverse: 0.4.1 2808 | uri-js: 4.4.1 2809 | 2810 | ansi-regex@5.0.1: {} 2811 | 2812 | ansi-regex@6.0.1: {} 2813 | 2814 | ansi-styles@3.2.1: 2815 | dependencies: 2816 | color-convert: 1.9.3 2817 | 2818 | ansi-styles@4.3.0: 2819 | dependencies: 2820 | color-convert: 2.0.1 2821 | 2822 | ansi-styles@6.2.1: {} 2823 | 2824 | any-promise@1.3.0: {} 2825 | 2826 | anymatch@3.1.3: 2827 | dependencies: 2828 | normalize-path: 3.0.0 2829 | picomatch: 2.3.1 2830 | 2831 | arg@5.0.2: {} 2832 | 2833 | argparse@2.0.1: {} 2834 | 2835 | aria-hidden@1.2.4: 2836 | dependencies: 2837 | tslib: 2.6.2 2838 | 2839 | aria-query@5.3.0: 2840 | dependencies: 2841 | dequal: 2.0.3 2842 | 2843 | array-buffer-byte-length@1.0.1: 2844 | dependencies: 2845 | call-bind: 1.0.7 2846 | is-array-buffer: 3.0.4 2847 | 2848 | array-includes@3.1.8: 2849 | dependencies: 2850 | call-bind: 1.0.7 2851 | define-properties: 1.2.1 2852 | es-abstract: 1.23.3 2853 | es-object-atoms: 1.0.0 2854 | get-intrinsic: 1.2.4 2855 | is-string: 1.0.7 2856 | 2857 | array-union@2.1.0: {} 2858 | 2859 | array.prototype.findlast@1.2.5: 2860 | dependencies: 2861 | call-bind: 1.0.7 2862 | define-properties: 1.2.1 2863 | es-abstract: 1.23.3 2864 | es-errors: 1.3.0 2865 | es-object-atoms: 1.0.0 2866 | es-shim-unscopables: 1.0.2 2867 | 2868 | array.prototype.findlastindex@1.2.5: 2869 | dependencies: 2870 | call-bind: 1.0.7 2871 | define-properties: 1.2.1 2872 | es-abstract: 1.23.3 2873 | es-errors: 1.3.0 2874 | es-object-atoms: 1.0.0 2875 | es-shim-unscopables: 1.0.2 2876 | 2877 | array.prototype.flat@1.3.2: 2878 | dependencies: 2879 | call-bind: 1.0.7 2880 | define-properties: 1.2.1 2881 | es-abstract: 1.23.3 2882 | es-shim-unscopables: 1.0.2 2883 | 2884 | array.prototype.flatmap@1.3.2: 2885 | dependencies: 2886 | call-bind: 1.0.7 2887 | define-properties: 1.2.1 2888 | es-abstract: 1.23.3 2889 | es-shim-unscopables: 1.0.2 2890 | 2891 | array.prototype.toreversed@1.1.2: 2892 | dependencies: 2893 | call-bind: 1.0.7 2894 | define-properties: 1.2.1 2895 | es-abstract: 1.23.3 2896 | es-shim-unscopables: 1.0.2 2897 | 2898 | array.prototype.tosorted@1.1.3: 2899 | dependencies: 2900 | call-bind: 1.0.7 2901 | define-properties: 1.2.1 2902 | es-abstract: 1.23.3 2903 | es-errors: 1.3.0 2904 | es-shim-unscopables: 1.0.2 2905 | 2906 | arraybuffer.prototype.slice@1.0.3: 2907 | dependencies: 2908 | array-buffer-byte-length: 1.0.1 2909 | call-bind: 1.0.7 2910 | define-properties: 1.2.1 2911 | es-abstract: 1.23.3 2912 | es-errors: 1.3.0 2913 | get-intrinsic: 1.2.4 2914 | is-array-buffer: 3.0.4 2915 | is-shared-array-buffer: 1.0.3 2916 | 2917 | ast-types-flow@0.0.8: {} 2918 | 2919 | autoprefixer@10.4.19(postcss@8.4.38): 2920 | dependencies: 2921 | browserslist: 4.23.0 2922 | caniuse-lite: 1.0.30001613 2923 | fraction.js: 4.3.7 2924 | normalize-range: 0.1.2 2925 | picocolors: 1.0.0 2926 | postcss: 8.4.38 2927 | postcss-value-parser: 4.2.0 2928 | 2929 | available-typed-arrays@1.0.7: 2930 | dependencies: 2931 | possible-typed-array-names: 1.0.0 2932 | 2933 | axe-core@4.7.0: {} 2934 | 2935 | axobject-query@3.2.1: 2936 | dependencies: 2937 | dequal: 2.0.3 2938 | 2939 | balanced-match@1.0.2: {} 2940 | 2941 | binary-extensions@2.3.0: {} 2942 | 2943 | brace-expansion@1.1.11: 2944 | dependencies: 2945 | balanced-match: 1.0.2 2946 | concat-map: 0.0.1 2947 | 2948 | brace-expansion@2.0.1: 2949 | dependencies: 2950 | balanced-match: 1.0.2 2951 | 2952 | braces@3.0.3: 2953 | dependencies: 2954 | fill-range: 7.1.1 2955 | 2956 | browserslist@4.23.0: 2957 | dependencies: 2958 | caniuse-lite: 1.0.30001613 2959 | electron-to-chromium: 1.4.750 2960 | node-releases: 2.0.14 2961 | update-browserslist-db: 1.0.13(browserslist@4.23.0) 2962 | 2963 | busboy@1.6.0: 2964 | dependencies: 2965 | streamsearch: 1.1.0 2966 | 2967 | call-bind@1.0.7: 2968 | dependencies: 2969 | es-define-property: 1.0.0 2970 | es-errors: 1.3.0 2971 | function-bind: 1.1.2 2972 | get-intrinsic: 1.2.4 2973 | set-function-length: 1.2.2 2974 | 2975 | callsites@3.1.0: {} 2976 | 2977 | camelcase-css@2.0.1: {} 2978 | 2979 | caniuse-lite@1.0.30001613: {} 2980 | 2981 | chalk@2.4.2: 2982 | dependencies: 2983 | ansi-styles: 3.2.1 2984 | escape-string-regexp: 1.0.5 2985 | supports-color: 5.5.0 2986 | 2987 | chalk@4.1.2: 2988 | dependencies: 2989 | ansi-styles: 4.3.0 2990 | supports-color: 7.2.0 2991 | 2992 | chokidar@3.6.0: 2993 | dependencies: 2994 | anymatch: 3.1.3 2995 | braces: 3.0.3 2996 | glob-parent: 5.1.2 2997 | is-binary-path: 2.1.0 2998 | is-glob: 4.0.3 2999 | normalize-path: 3.0.0 3000 | readdirp: 3.6.0 3001 | optionalDependencies: 3002 | fsevents: 2.3.3 3003 | 3004 | class-variance-authority@0.7.0: 3005 | dependencies: 3006 | clsx: 2.0.0 3007 | 3008 | client-only@0.0.1: {} 3009 | 3010 | clsx@2.0.0: {} 3011 | 3012 | clsx@2.1.1: {} 3013 | 3014 | color-convert@1.9.3: 3015 | dependencies: 3016 | color-name: 1.1.3 3017 | 3018 | color-convert@2.0.1: 3019 | dependencies: 3020 | color-name: 1.1.4 3021 | 3022 | color-name@1.1.3: {} 3023 | 3024 | color-name@1.1.4: {} 3025 | 3026 | commander@4.1.1: {} 3027 | 3028 | concat-map@0.0.1: {} 3029 | 3030 | convert-source-map@2.0.0: {} 3031 | 3032 | cross-spawn@7.0.3: 3033 | dependencies: 3034 | path-key: 3.1.1 3035 | shebang-command: 2.0.0 3036 | which: 2.0.2 3037 | 3038 | cssesc@3.0.0: {} 3039 | 3040 | csstype@3.1.3: {} 3041 | 3042 | damerau-levenshtein@1.0.8: {} 3043 | 3044 | data-view-buffer@1.0.1: 3045 | dependencies: 3046 | call-bind: 1.0.7 3047 | es-errors: 1.3.0 3048 | is-data-view: 1.0.1 3049 | 3050 | data-view-byte-length@1.0.1: 3051 | dependencies: 3052 | call-bind: 1.0.7 3053 | es-errors: 1.3.0 3054 | is-data-view: 1.0.1 3055 | 3056 | data-view-byte-offset@1.0.0: 3057 | dependencies: 3058 | call-bind: 1.0.7 3059 | es-errors: 1.3.0 3060 | is-data-view: 1.0.1 3061 | 3062 | debug@3.2.7: 3063 | dependencies: 3064 | ms: 2.1.3 3065 | 3066 | debug@4.3.4: 3067 | dependencies: 3068 | ms: 2.1.2 3069 | 3070 | deep-is@0.1.4: {} 3071 | 3072 | define-data-property@1.1.4: 3073 | dependencies: 3074 | es-define-property: 1.0.0 3075 | es-errors: 1.3.0 3076 | gopd: 1.0.1 3077 | 3078 | define-properties@1.2.1: 3079 | dependencies: 3080 | define-data-property: 1.1.4 3081 | has-property-descriptors: 1.0.2 3082 | object-keys: 1.1.1 3083 | 3084 | dequal@2.0.3: {} 3085 | 3086 | detect-node-es@1.1.0: {} 3087 | 3088 | didyoumean@1.2.2: {} 3089 | 3090 | dir-glob@3.0.1: 3091 | dependencies: 3092 | path-type: 4.0.0 3093 | 3094 | dlv@1.1.3: {} 3095 | 3096 | doctrine@2.1.0: 3097 | dependencies: 3098 | esutils: 2.0.3 3099 | 3100 | doctrine@3.0.0: 3101 | dependencies: 3102 | esutils: 2.0.3 3103 | 3104 | eastasianwidth@0.2.0: {} 3105 | 3106 | electron-to-chromium@1.4.750: {} 3107 | 3108 | emoji-regex@8.0.0: {} 3109 | 3110 | emoji-regex@9.2.2: {} 3111 | 3112 | enhanced-resolve@5.16.0: 3113 | dependencies: 3114 | graceful-fs: 4.2.11 3115 | tapable: 2.2.1 3116 | 3117 | es-abstract@1.23.3: 3118 | dependencies: 3119 | array-buffer-byte-length: 1.0.1 3120 | arraybuffer.prototype.slice: 1.0.3 3121 | available-typed-arrays: 1.0.7 3122 | call-bind: 1.0.7 3123 | data-view-buffer: 1.0.1 3124 | data-view-byte-length: 1.0.1 3125 | data-view-byte-offset: 1.0.0 3126 | es-define-property: 1.0.0 3127 | es-errors: 1.3.0 3128 | es-object-atoms: 1.0.0 3129 | es-set-tostringtag: 2.0.3 3130 | es-to-primitive: 1.2.1 3131 | function.prototype.name: 1.1.6 3132 | get-intrinsic: 1.2.4 3133 | get-symbol-description: 1.0.2 3134 | globalthis: 1.0.3 3135 | gopd: 1.0.1 3136 | has-property-descriptors: 1.0.2 3137 | has-proto: 1.0.3 3138 | has-symbols: 1.0.3 3139 | hasown: 2.0.2 3140 | internal-slot: 1.0.7 3141 | is-array-buffer: 3.0.4 3142 | is-callable: 1.2.7 3143 | is-data-view: 1.0.1 3144 | is-negative-zero: 2.0.3 3145 | is-regex: 1.1.4 3146 | is-shared-array-buffer: 1.0.3 3147 | is-string: 1.0.7 3148 | is-typed-array: 1.1.13 3149 | is-weakref: 1.0.2 3150 | object-inspect: 1.13.1 3151 | object-keys: 1.1.1 3152 | object.assign: 4.1.5 3153 | regexp.prototype.flags: 1.5.2 3154 | safe-array-concat: 1.1.2 3155 | safe-regex-test: 1.0.3 3156 | string.prototype.trim: 1.2.9 3157 | string.prototype.trimend: 1.0.8 3158 | string.prototype.trimstart: 1.0.8 3159 | typed-array-buffer: 1.0.2 3160 | typed-array-byte-length: 1.0.1 3161 | typed-array-byte-offset: 1.0.2 3162 | typed-array-length: 1.0.6 3163 | unbox-primitive: 1.0.2 3164 | which-typed-array: 1.1.15 3165 | 3166 | es-define-property@1.0.0: 3167 | dependencies: 3168 | get-intrinsic: 1.2.4 3169 | 3170 | es-errors@1.3.0: {} 3171 | 3172 | es-iterator-helpers@1.0.19: 3173 | dependencies: 3174 | call-bind: 1.0.7 3175 | define-properties: 1.2.1 3176 | es-abstract: 1.23.3 3177 | es-errors: 1.3.0 3178 | es-set-tostringtag: 2.0.3 3179 | function-bind: 1.1.2 3180 | get-intrinsic: 1.2.4 3181 | globalthis: 1.0.3 3182 | has-property-descriptors: 1.0.2 3183 | has-proto: 1.0.3 3184 | has-symbols: 1.0.3 3185 | internal-slot: 1.0.7 3186 | iterator.prototype: 1.1.2 3187 | safe-array-concat: 1.1.2 3188 | 3189 | es-object-atoms@1.0.0: 3190 | dependencies: 3191 | es-errors: 1.3.0 3192 | 3193 | es-set-tostringtag@2.0.3: 3194 | dependencies: 3195 | get-intrinsic: 1.2.4 3196 | has-tostringtag: 1.0.2 3197 | hasown: 2.0.2 3198 | 3199 | es-shim-unscopables@1.0.2: 3200 | dependencies: 3201 | hasown: 2.0.2 3202 | 3203 | es-to-primitive@1.2.1: 3204 | dependencies: 3205 | is-callable: 1.2.7 3206 | is-date-object: 1.0.5 3207 | is-symbol: 1.0.4 3208 | 3209 | escalade@3.1.2: {} 3210 | 3211 | escape-string-regexp@1.0.5: {} 3212 | 3213 | escape-string-regexp@4.0.0: {} 3214 | 3215 | eslint-config-next@14.1.0(eslint@8.57.0)(typescript@5.4.5): 3216 | dependencies: 3217 | '@next/eslint-plugin-next': 14.1.0 3218 | '@rushstack/eslint-patch': 1.10.2 3219 | '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5) 3220 | eslint: 8.57.0 3221 | eslint-import-resolver-node: 0.3.9 3222 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0) 3223 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 3224 | eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0) 3225 | eslint-plugin-react: 7.34.1(eslint@8.57.0) 3226 | eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0) 3227 | optionalDependencies: 3228 | typescript: 5.4.5 3229 | transitivePeerDependencies: 3230 | - eslint-import-resolver-webpack 3231 | - supports-color 3232 | 3233 | eslint-import-resolver-node@0.3.9: 3234 | dependencies: 3235 | debug: 3.2.7 3236 | is-core-module: 2.13.1 3237 | resolve: 1.22.8 3238 | transitivePeerDependencies: 3239 | - supports-color 3240 | 3241 | eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0): 3242 | dependencies: 3243 | debug: 4.3.4 3244 | enhanced-resolve: 5.16.0 3245 | eslint: 8.57.0 3246 | eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(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) 3247 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 3248 | fast-glob: 3.3.2 3249 | get-tsconfig: 4.7.3 3250 | is-core-module: 2.13.1 3251 | is-glob: 4.0.3 3252 | transitivePeerDependencies: 3253 | - '@typescript-eslint/parser' 3254 | - eslint-import-resolver-node 3255 | - eslint-import-resolver-webpack 3256 | - supports-color 3257 | 3258 | eslint-module-utils@2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(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): 3259 | dependencies: 3260 | debug: 3.2.7 3261 | optionalDependencies: 3262 | '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5) 3263 | eslint: 8.57.0 3264 | eslint-import-resolver-node: 0.3.9 3265 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0) 3266 | transitivePeerDependencies: 3267 | - supports-color 3268 | 3269 | eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): 3270 | dependencies: 3271 | array-includes: 3.1.8 3272 | array.prototype.findlastindex: 1.2.5 3273 | array.prototype.flat: 1.3.2 3274 | array.prototype.flatmap: 1.3.2 3275 | debug: 3.2.7 3276 | doctrine: 2.1.0 3277 | eslint: 8.57.0 3278 | eslint-import-resolver-node: 0.3.9 3279 | eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(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) 3280 | hasown: 2.0.2 3281 | is-core-module: 2.13.1 3282 | is-glob: 4.0.3 3283 | minimatch: 3.1.2 3284 | object.fromentries: 2.0.8 3285 | object.groupby: 1.0.3 3286 | object.values: 1.2.0 3287 | semver: 6.3.1 3288 | tsconfig-paths: 3.15.0 3289 | optionalDependencies: 3290 | '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5) 3291 | transitivePeerDependencies: 3292 | - eslint-import-resolver-typescript 3293 | - eslint-import-resolver-webpack 3294 | - supports-color 3295 | 3296 | eslint-plugin-jsx-a11y@6.8.0(eslint@8.57.0): 3297 | dependencies: 3298 | '@babel/runtime': 7.24.4 3299 | aria-query: 5.3.0 3300 | array-includes: 3.1.8 3301 | array.prototype.flatmap: 1.3.2 3302 | ast-types-flow: 0.0.8 3303 | axe-core: 4.7.0 3304 | axobject-query: 3.2.1 3305 | damerau-levenshtein: 1.0.8 3306 | emoji-regex: 9.2.2 3307 | es-iterator-helpers: 1.0.19 3308 | eslint: 8.57.0 3309 | hasown: 2.0.2 3310 | jsx-ast-utils: 3.3.5 3311 | language-tags: 1.0.9 3312 | minimatch: 3.1.2 3313 | object.entries: 1.1.8 3314 | object.fromentries: 2.0.8 3315 | 3316 | eslint-plugin-react-hooks@4.6.2(eslint@8.57.0): 3317 | dependencies: 3318 | eslint: 8.57.0 3319 | 3320 | eslint-plugin-react@7.34.1(eslint@8.57.0): 3321 | dependencies: 3322 | array-includes: 3.1.8 3323 | array.prototype.findlast: 1.2.5 3324 | array.prototype.flatmap: 1.3.2 3325 | array.prototype.toreversed: 1.1.2 3326 | array.prototype.tosorted: 1.1.3 3327 | doctrine: 2.1.0 3328 | es-iterator-helpers: 1.0.19 3329 | eslint: 8.57.0 3330 | estraverse: 5.3.0 3331 | jsx-ast-utils: 3.3.5 3332 | minimatch: 3.1.2 3333 | object.entries: 1.1.8 3334 | object.fromentries: 2.0.8 3335 | object.hasown: 1.1.4 3336 | object.values: 1.2.0 3337 | prop-types: 15.8.1 3338 | resolve: 2.0.0-next.5 3339 | semver: 6.3.1 3340 | string.prototype.matchall: 4.0.11 3341 | 3342 | eslint-scope@7.2.2: 3343 | dependencies: 3344 | esrecurse: 4.3.0 3345 | estraverse: 5.3.0 3346 | 3347 | eslint-visitor-keys@3.4.3: {} 3348 | 3349 | eslint@8.57.0: 3350 | dependencies: 3351 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) 3352 | '@eslint-community/regexpp': 4.10.0 3353 | '@eslint/eslintrc': 2.1.4 3354 | '@eslint/js': 8.57.0 3355 | '@humanwhocodes/config-array': 0.11.14 3356 | '@humanwhocodes/module-importer': 1.0.1 3357 | '@nodelib/fs.walk': 1.2.8 3358 | '@ungap/structured-clone': 1.2.0 3359 | ajv: 6.12.6 3360 | chalk: 4.1.2 3361 | cross-spawn: 7.0.3 3362 | debug: 4.3.4 3363 | doctrine: 3.0.0 3364 | escape-string-regexp: 4.0.0 3365 | eslint-scope: 7.2.2 3366 | eslint-visitor-keys: 3.4.3 3367 | espree: 9.6.1 3368 | esquery: 1.5.0 3369 | esutils: 2.0.3 3370 | fast-deep-equal: 3.1.3 3371 | file-entry-cache: 6.0.1 3372 | find-up: 5.0.0 3373 | glob-parent: 6.0.2 3374 | globals: 13.24.0 3375 | graphemer: 1.4.0 3376 | ignore: 5.3.1 3377 | imurmurhash: 0.1.4 3378 | is-glob: 4.0.3 3379 | is-path-inside: 3.0.3 3380 | js-yaml: 4.1.0 3381 | json-stable-stringify-without-jsonify: 1.0.1 3382 | levn: 0.4.1 3383 | lodash.merge: 4.6.2 3384 | minimatch: 3.1.2 3385 | natural-compare: 1.4.0 3386 | optionator: 0.9.4 3387 | strip-ansi: 6.0.1 3388 | text-table: 0.2.0 3389 | transitivePeerDependencies: 3390 | - supports-color 3391 | 3392 | espree@9.6.1: 3393 | dependencies: 3394 | acorn: 8.11.3 3395 | acorn-jsx: 5.3.2(acorn@8.11.3) 3396 | eslint-visitor-keys: 3.4.3 3397 | 3398 | esquery@1.5.0: 3399 | dependencies: 3400 | estraverse: 5.3.0 3401 | 3402 | esrecurse@4.3.0: 3403 | dependencies: 3404 | estraverse: 5.3.0 3405 | 3406 | estraverse@5.3.0: {} 3407 | 3408 | esutils@2.0.3: {} 3409 | 3410 | fast-deep-equal@3.1.3: {} 3411 | 3412 | fast-glob@3.3.2: 3413 | dependencies: 3414 | '@nodelib/fs.stat': 2.0.5 3415 | '@nodelib/fs.walk': 1.2.8 3416 | glob-parent: 5.1.2 3417 | merge2: 1.4.1 3418 | micromatch: 4.0.8 3419 | 3420 | fast-json-stable-stringify@2.1.0: {} 3421 | 3422 | fast-levenshtein@2.0.6: {} 3423 | 3424 | fastq@1.17.1: 3425 | dependencies: 3426 | reusify: 1.0.4 3427 | 3428 | file-entry-cache@6.0.1: 3429 | dependencies: 3430 | flat-cache: 3.2.0 3431 | 3432 | fill-range@7.1.1: 3433 | dependencies: 3434 | to-regex-range: 5.0.1 3435 | 3436 | find-up@5.0.0: 3437 | dependencies: 3438 | locate-path: 6.0.0 3439 | path-exists: 4.0.0 3440 | 3441 | flat-cache@3.2.0: 3442 | dependencies: 3443 | flatted: 3.3.1 3444 | keyv: 4.5.4 3445 | rimraf: 3.0.2 3446 | 3447 | flatted@3.3.1: {} 3448 | 3449 | for-each@0.3.3: 3450 | dependencies: 3451 | is-callable: 1.2.7 3452 | 3453 | foreground-child@3.1.1: 3454 | dependencies: 3455 | cross-spawn: 7.0.3 3456 | signal-exit: 4.1.0 3457 | 3458 | fraction.js@4.3.7: {} 3459 | 3460 | fs.realpath@1.0.0: {} 3461 | 3462 | fsevents@2.3.3: 3463 | optional: true 3464 | 3465 | function-bind@1.1.2: {} 3466 | 3467 | function.prototype.name@1.1.6: 3468 | dependencies: 3469 | call-bind: 1.0.7 3470 | define-properties: 1.2.1 3471 | es-abstract: 1.23.3 3472 | functions-have-names: 1.2.3 3473 | 3474 | functions-have-names@1.2.3: {} 3475 | 3476 | gensync@1.0.0-beta.2: {} 3477 | 3478 | get-intrinsic@1.2.4: 3479 | dependencies: 3480 | es-errors: 1.3.0 3481 | function-bind: 1.1.2 3482 | has-proto: 1.0.3 3483 | has-symbols: 1.0.3 3484 | hasown: 2.0.2 3485 | 3486 | get-nonce@1.0.1: {} 3487 | 3488 | get-symbol-description@1.0.2: 3489 | dependencies: 3490 | call-bind: 1.0.7 3491 | es-errors: 1.3.0 3492 | get-intrinsic: 1.2.4 3493 | 3494 | get-tsconfig@4.7.3: 3495 | dependencies: 3496 | resolve-pkg-maps: 1.0.0 3497 | 3498 | glob-parent@5.1.2: 3499 | dependencies: 3500 | is-glob: 4.0.3 3501 | 3502 | glob-parent@6.0.2: 3503 | dependencies: 3504 | is-glob: 4.0.3 3505 | 3506 | glob@10.3.10: 3507 | dependencies: 3508 | foreground-child: 3.1.1 3509 | jackspeak: 2.3.6 3510 | minimatch: 9.0.4 3511 | minipass: 7.0.4 3512 | path-scurry: 1.10.2 3513 | 3514 | glob@10.3.12: 3515 | dependencies: 3516 | foreground-child: 3.1.1 3517 | jackspeak: 2.3.6 3518 | minimatch: 9.0.4 3519 | minipass: 7.0.4 3520 | path-scurry: 1.10.2 3521 | 3522 | glob@7.2.3: 3523 | dependencies: 3524 | fs.realpath: 1.0.0 3525 | inflight: 1.0.6 3526 | inherits: 2.0.4 3527 | minimatch: 3.1.2 3528 | once: 1.4.0 3529 | path-is-absolute: 1.0.1 3530 | 3531 | globals@11.12.0: {} 3532 | 3533 | globals@13.24.0: 3534 | dependencies: 3535 | type-fest: 0.20.2 3536 | 3537 | globalthis@1.0.3: 3538 | dependencies: 3539 | define-properties: 1.2.1 3540 | 3541 | globby@11.1.0: 3542 | dependencies: 3543 | array-union: 2.1.0 3544 | dir-glob: 3.0.1 3545 | fast-glob: 3.3.2 3546 | ignore: 5.3.1 3547 | merge2: 1.4.1 3548 | slash: 3.0.0 3549 | 3550 | gopd@1.0.1: 3551 | dependencies: 3552 | get-intrinsic: 1.2.4 3553 | 3554 | graceful-fs@4.2.11: {} 3555 | 3556 | graphemer@1.4.0: {} 3557 | 3558 | has-bigints@1.0.2: {} 3559 | 3560 | has-flag@3.0.0: {} 3561 | 3562 | has-flag@4.0.0: {} 3563 | 3564 | has-property-descriptors@1.0.2: 3565 | dependencies: 3566 | es-define-property: 1.0.0 3567 | 3568 | has-proto@1.0.3: {} 3569 | 3570 | has-symbols@1.0.3: {} 3571 | 3572 | has-tostringtag@1.0.2: 3573 | dependencies: 3574 | has-symbols: 1.0.3 3575 | 3576 | hasown@2.0.2: 3577 | dependencies: 3578 | function-bind: 1.1.2 3579 | 3580 | ignore@5.3.1: {} 3581 | 3582 | import-fresh@3.3.0: 3583 | dependencies: 3584 | parent-module: 1.0.1 3585 | resolve-from: 4.0.0 3586 | 3587 | imurmurhash@0.1.4: {} 3588 | 3589 | inflight@1.0.6: 3590 | dependencies: 3591 | once: 1.4.0 3592 | wrappy: 1.0.2 3593 | 3594 | inherits@2.0.4: {} 3595 | 3596 | internal-slot@1.0.7: 3597 | dependencies: 3598 | es-errors: 1.3.0 3599 | hasown: 2.0.2 3600 | side-channel: 1.0.6 3601 | 3602 | invariant@2.2.4: 3603 | dependencies: 3604 | loose-envify: 1.4.0 3605 | 3606 | is-array-buffer@3.0.4: 3607 | dependencies: 3608 | call-bind: 1.0.7 3609 | get-intrinsic: 1.2.4 3610 | 3611 | is-async-function@2.0.0: 3612 | dependencies: 3613 | has-tostringtag: 1.0.2 3614 | 3615 | is-bigint@1.0.4: 3616 | dependencies: 3617 | has-bigints: 1.0.2 3618 | 3619 | is-binary-path@2.1.0: 3620 | dependencies: 3621 | binary-extensions: 2.3.0 3622 | 3623 | is-boolean-object@1.1.2: 3624 | dependencies: 3625 | call-bind: 1.0.7 3626 | has-tostringtag: 1.0.2 3627 | 3628 | is-callable@1.2.7: {} 3629 | 3630 | is-core-module@2.13.1: 3631 | dependencies: 3632 | hasown: 2.0.2 3633 | 3634 | is-data-view@1.0.1: 3635 | dependencies: 3636 | is-typed-array: 1.1.13 3637 | 3638 | is-date-object@1.0.5: 3639 | dependencies: 3640 | has-tostringtag: 1.0.2 3641 | 3642 | is-extglob@2.1.1: {} 3643 | 3644 | is-finalizationregistry@1.0.2: 3645 | dependencies: 3646 | call-bind: 1.0.7 3647 | 3648 | is-fullwidth-code-point@3.0.0: {} 3649 | 3650 | is-generator-function@1.0.10: 3651 | dependencies: 3652 | has-tostringtag: 1.0.2 3653 | 3654 | is-glob@4.0.3: 3655 | dependencies: 3656 | is-extglob: 2.1.1 3657 | 3658 | is-map@2.0.3: {} 3659 | 3660 | is-negative-zero@2.0.3: {} 3661 | 3662 | is-number-object@1.0.7: 3663 | dependencies: 3664 | has-tostringtag: 1.0.2 3665 | 3666 | is-number@7.0.0: {} 3667 | 3668 | is-path-inside@3.0.3: {} 3669 | 3670 | is-regex@1.1.4: 3671 | dependencies: 3672 | call-bind: 1.0.7 3673 | has-tostringtag: 1.0.2 3674 | 3675 | is-set@2.0.3: {} 3676 | 3677 | is-shared-array-buffer@1.0.3: 3678 | dependencies: 3679 | call-bind: 1.0.7 3680 | 3681 | is-string@1.0.7: 3682 | dependencies: 3683 | has-tostringtag: 1.0.2 3684 | 3685 | is-symbol@1.0.4: 3686 | dependencies: 3687 | has-symbols: 1.0.3 3688 | 3689 | is-typed-array@1.1.13: 3690 | dependencies: 3691 | which-typed-array: 1.1.15 3692 | 3693 | is-weakmap@2.0.2: {} 3694 | 3695 | is-weakref@1.0.2: 3696 | dependencies: 3697 | call-bind: 1.0.7 3698 | 3699 | is-weakset@2.0.3: 3700 | dependencies: 3701 | call-bind: 1.0.7 3702 | get-intrinsic: 1.2.4 3703 | 3704 | isarray@2.0.5: {} 3705 | 3706 | isexe@2.0.0: {} 3707 | 3708 | iterator.prototype@1.1.2: 3709 | dependencies: 3710 | define-properties: 1.2.1 3711 | get-intrinsic: 1.2.4 3712 | has-symbols: 1.0.3 3713 | reflect.getprototypeof: 1.0.6 3714 | set-function-name: 2.0.2 3715 | 3716 | jackspeak@2.3.6: 3717 | dependencies: 3718 | '@isaacs/cliui': 8.0.2 3719 | optionalDependencies: 3720 | '@pkgjs/parseargs': 0.11.0 3721 | 3722 | jiti@1.21.0: {} 3723 | 3724 | js-tokens@4.0.0: {} 3725 | 3726 | js-yaml@4.1.0: 3727 | dependencies: 3728 | argparse: 2.0.1 3729 | 3730 | jsesc@2.5.2: {} 3731 | 3732 | json-buffer@3.0.1: {} 3733 | 3734 | json-schema-traverse@0.4.1: {} 3735 | 3736 | json-stable-stringify-without-jsonify@1.0.1: {} 3737 | 3738 | json5@1.0.2: 3739 | dependencies: 3740 | minimist: 1.2.8 3741 | 3742 | json5@2.2.3: {} 3743 | 3744 | jsx-ast-utils@3.3.5: 3745 | dependencies: 3746 | array-includes: 3.1.8 3747 | array.prototype.flat: 1.3.2 3748 | object.assign: 4.1.5 3749 | object.values: 1.2.0 3750 | 3751 | keyv@4.5.4: 3752 | dependencies: 3753 | json-buffer: 3.0.1 3754 | 3755 | language-subtag-registry@0.3.22: {} 3756 | 3757 | language-tags@1.0.9: 3758 | dependencies: 3759 | language-subtag-registry: 0.3.22 3760 | 3761 | levn@0.4.1: 3762 | dependencies: 3763 | prelude-ls: 1.2.1 3764 | type-check: 0.4.0 3765 | 3766 | lilconfig@2.1.0: {} 3767 | 3768 | lilconfig@3.1.1: {} 3769 | 3770 | lines-and-columns@1.2.4: {} 3771 | 3772 | locate-path@6.0.0: 3773 | dependencies: 3774 | p-locate: 5.0.0 3775 | 3776 | lodash.merge@4.6.2: {} 3777 | 3778 | loose-envify@1.4.0: 3779 | dependencies: 3780 | js-tokens: 4.0.0 3781 | 3782 | lru-cache@10.2.1: {} 3783 | 3784 | lru-cache@5.1.1: 3785 | dependencies: 3786 | yallist: 3.1.1 3787 | 3788 | lru-cache@6.0.0: 3789 | dependencies: 3790 | yallist: 4.0.0 3791 | 3792 | lucide-react@0.330.0(react@18.3.1): 3793 | dependencies: 3794 | react: 18.3.1 3795 | 3796 | merge2@1.4.1: {} 3797 | 3798 | micromatch@4.0.8: 3799 | dependencies: 3800 | braces: 3.0.3 3801 | picomatch: 2.3.1 3802 | 3803 | minimatch@3.1.2: 3804 | dependencies: 3805 | brace-expansion: 1.1.11 3806 | 3807 | minimatch@9.0.3: 3808 | dependencies: 3809 | brace-expansion: 2.0.1 3810 | 3811 | minimatch@9.0.4: 3812 | dependencies: 3813 | brace-expansion: 2.0.1 3814 | 3815 | minimist@1.2.8: {} 3816 | 3817 | minipass@7.0.4: {} 3818 | 3819 | ms@2.1.2: {} 3820 | 3821 | ms@2.1.3: {} 3822 | 3823 | mz@2.7.0: 3824 | dependencies: 3825 | any-promise: 1.3.0 3826 | object-assign: 4.1.1 3827 | thenify-all: 1.6.0 3828 | 3829 | nanoid@3.3.7: {} 3830 | 3831 | natural-compare@1.4.0: {} 3832 | 3833 | next-themes@0.2.1(next@14.1.1(@babel/core@7.24.4)(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): 3834 | dependencies: 3835 | next: 14.1.1(@babel/core@7.24.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 3836 | react: 18.3.1 3837 | react-dom: 18.3.1(react@18.3.1) 3838 | 3839 | next@14.1.1(@babel/core@7.24.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 3840 | dependencies: 3841 | '@next/env': 14.1.1 3842 | '@swc/helpers': 0.5.2 3843 | busboy: 1.6.0 3844 | caniuse-lite: 1.0.30001613 3845 | graceful-fs: 4.2.11 3846 | postcss: 8.4.31 3847 | react: 18.3.1 3848 | react-dom: 18.3.1(react@18.3.1) 3849 | styled-jsx: 5.1.1(@babel/core@7.24.4)(react@18.3.1) 3850 | optionalDependencies: 3851 | '@next/swc-darwin-arm64': 14.1.1 3852 | '@next/swc-darwin-x64': 14.1.1 3853 | '@next/swc-linux-arm64-gnu': 14.1.1 3854 | '@next/swc-linux-arm64-musl': 14.1.1 3855 | '@next/swc-linux-x64-gnu': 14.1.1 3856 | '@next/swc-linux-x64-musl': 14.1.1 3857 | '@next/swc-win32-arm64-msvc': 14.1.1 3858 | '@next/swc-win32-ia32-msvc': 14.1.1 3859 | '@next/swc-win32-x64-msvc': 14.1.1 3860 | transitivePeerDependencies: 3861 | - '@babel/core' 3862 | - babel-plugin-macros 3863 | 3864 | node-releases@2.0.14: {} 3865 | 3866 | normalize-path@3.0.0: {} 3867 | 3868 | normalize-range@0.1.2: {} 3869 | 3870 | object-assign@4.1.1: {} 3871 | 3872 | object-hash@3.0.0: {} 3873 | 3874 | object-inspect@1.13.1: {} 3875 | 3876 | object-keys@1.1.1: {} 3877 | 3878 | object.assign@4.1.5: 3879 | dependencies: 3880 | call-bind: 1.0.7 3881 | define-properties: 1.2.1 3882 | has-symbols: 1.0.3 3883 | object-keys: 1.1.1 3884 | 3885 | object.entries@1.1.8: 3886 | dependencies: 3887 | call-bind: 1.0.7 3888 | define-properties: 1.2.1 3889 | es-object-atoms: 1.0.0 3890 | 3891 | object.fromentries@2.0.8: 3892 | dependencies: 3893 | call-bind: 1.0.7 3894 | define-properties: 1.2.1 3895 | es-abstract: 1.23.3 3896 | es-object-atoms: 1.0.0 3897 | 3898 | object.groupby@1.0.3: 3899 | dependencies: 3900 | call-bind: 1.0.7 3901 | define-properties: 1.2.1 3902 | es-abstract: 1.23.3 3903 | 3904 | object.hasown@1.1.4: 3905 | dependencies: 3906 | define-properties: 1.2.1 3907 | es-abstract: 1.23.3 3908 | es-object-atoms: 1.0.0 3909 | 3910 | object.values@1.2.0: 3911 | dependencies: 3912 | call-bind: 1.0.7 3913 | define-properties: 1.2.1 3914 | es-object-atoms: 1.0.0 3915 | 3916 | once@1.4.0: 3917 | dependencies: 3918 | wrappy: 1.0.2 3919 | 3920 | optionator@0.9.4: 3921 | dependencies: 3922 | deep-is: 0.1.4 3923 | fast-levenshtein: 2.0.6 3924 | levn: 0.4.1 3925 | prelude-ls: 1.2.1 3926 | type-check: 0.4.0 3927 | word-wrap: 1.2.5 3928 | 3929 | p-limit@3.1.0: 3930 | dependencies: 3931 | yocto-queue: 0.1.0 3932 | 3933 | p-locate@5.0.0: 3934 | dependencies: 3935 | p-limit: 3.1.0 3936 | 3937 | parent-module@1.0.1: 3938 | dependencies: 3939 | callsites: 3.1.0 3940 | 3941 | path-exists@4.0.0: {} 3942 | 3943 | path-is-absolute@1.0.1: {} 3944 | 3945 | path-key@3.1.1: {} 3946 | 3947 | path-parse@1.0.7: {} 3948 | 3949 | path-scurry@1.10.2: 3950 | dependencies: 3951 | lru-cache: 10.2.1 3952 | minipass: 7.0.4 3953 | 3954 | path-type@4.0.0: {} 3955 | 3956 | picocolors@1.0.0: {} 3957 | 3958 | picomatch@2.3.1: {} 3959 | 3960 | pify@2.3.0: {} 3961 | 3962 | pirates@4.0.6: {} 3963 | 3964 | possible-typed-array-names@1.0.0: {} 3965 | 3966 | postcss-import@15.1.0(postcss@8.4.38): 3967 | dependencies: 3968 | postcss: 8.4.38 3969 | postcss-value-parser: 4.2.0 3970 | read-cache: 1.0.0 3971 | resolve: 1.22.8 3972 | 3973 | postcss-js@4.0.1(postcss@8.4.38): 3974 | dependencies: 3975 | camelcase-css: 2.0.1 3976 | postcss: 8.4.38 3977 | 3978 | postcss-load-config@4.0.2(postcss@8.4.38): 3979 | dependencies: 3980 | lilconfig: 3.1.1 3981 | yaml: 2.4.2 3982 | optionalDependencies: 3983 | postcss: 8.4.38 3984 | 3985 | postcss-nested@6.0.1(postcss@8.4.38): 3986 | dependencies: 3987 | postcss: 8.4.38 3988 | postcss-selector-parser: 6.0.16 3989 | 3990 | postcss-selector-parser@6.0.16: 3991 | dependencies: 3992 | cssesc: 3.0.0 3993 | util-deprecate: 1.0.2 3994 | 3995 | postcss-value-parser@4.2.0: {} 3996 | 3997 | postcss@8.4.31: 3998 | dependencies: 3999 | nanoid: 3.3.7 4000 | picocolors: 1.0.0 4001 | source-map-js: 1.2.0 4002 | 4003 | postcss@8.4.38: 4004 | dependencies: 4005 | nanoid: 3.3.7 4006 | picocolors: 1.0.0 4007 | source-map-js: 1.2.0 4008 | 4009 | prelude-ls@1.2.1: {} 4010 | 4011 | prettier-plugin-tailwindcss@0.5.14(@ianvs/prettier-plugin-sort-imports@4.2.1(prettier@3.2.5))(prettier@3.2.5): 4012 | dependencies: 4013 | prettier: 3.2.5 4014 | optionalDependencies: 4015 | '@ianvs/prettier-plugin-sort-imports': 4.2.1(prettier@3.2.5) 4016 | 4017 | prettier@3.2.5: {} 4018 | 4019 | prop-types@15.8.1: 4020 | dependencies: 4021 | loose-envify: 1.4.0 4022 | object-assign: 4.1.1 4023 | react-is: 16.13.1 4024 | 4025 | punycode@2.3.1: {} 4026 | 4027 | queue-microtask@1.2.3: {} 4028 | 4029 | react-dom@18.3.1(react@18.3.1): 4030 | dependencies: 4031 | loose-envify: 1.4.0 4032 | react: 18.3.1 4033 | scheduler: 0.23.2 4034 | 4035 | react-is@16.13.1: {} 4036 | 4037 | react-remove-scroll-bar@2.3.6(@types/react@18.3.1)(react@18.3.1): 4038 | dependencies: 4039 | react: 18.3.1 4040 | react-style-singleton: 2.2.1(@types/react@18.3.1)(react@18.3.1) 4041 | tslib: 2.6.2 4042 | optionalDependencies: 4043 | '@types/react': 18.3.1 4044 | 4045 | react-remove-scroll@2.5.5(@types/react@18.3.1)(react@18.3.1): 4046 | dependencies: 4047 | react: 18.3.1 4048 | react-remove-scroll-bar: 2.3.6(@types/react@18.3.1)(react@18.3.1) 4049 | react-style-singleton: 2.2.1(@types/react@18.3.1)(react@18.3.1) 4050 | tslib: 2.6.2 4051 | use-callback-ref: 1.3.2(@types/react@18.3.1)(react@18.3.1) 4052 | use-sidecar: 1.1.2(@types/react@18.3.1)(react@18.3.1) 4053 | optionalDependencies: 4054 | '@types/react': 18.3.1 4055 | 4056 | react-style-singleton@2.2.1(@types/react@18.3.1)(react@18.3.1): 4057 | dependencies: 4058 | get-nonce: 1.0.1 4059 | invariant: 2.2.4 4060 | react: 18.3.1 4061 | tslib: 2.6.2 4062 | optionalDependencies: 4063 | '@types/react': 18.3.1 4064 | 4065 | react@18.3.1: 4066 | dependencies: 4067 | loose-envify: 1.4.0 4068 | 4069 | read-cache@1.0.0: 4070 | dependencies: 4071 | pify: 2.3.0 4072 | 4073 | readdirp@3.6.0: 4074 | dependencies: 4075 | picomatch: 2.3.1 4076 | 4077 | reflect.getprototypeof@1.0.6: 4078 | dependencies: 4079 | call-bind: 1.0.7 4080 | define-properties: 1.2.1 4081 | es-abstract: 1.23.3 4082 | es-errors: 1.3.0 4083 | get-intrinsic: 1.2.4 4084 | globalthis: 1.0.3 4085 | which-builtin-type: 1.1.3 4086 | 4087 | regenerator-runtime@0.14.1: {} 4088 | 4089 | regexp.prototype.flags@1.5.2: 4090 | dependencies: 4091 | call-bind: 1.0.7 4092 | define-properties: 1.2.1 4093 | es-errors: 1.3.0 4094 | set-function-name: 2.0.2 4095 | 4096 | resolve-from@4.0.0: {} 4097 | 4098 | resolve-pkg-maps@1.0.0: {} 4099 | 4100 | resolve@1.22.8: 4101 | dependencies: 4102 | is-core-module: 2.13.1 4103 | path-parse: 1.0.7 4104 | supports-preserve-symlinks-flag: 1.0.0 4105 | 4106 | resolve@2.0.0-next.5: 4107 | dependencies: 4108 | is-core-module: 2.13.1 4109 | path-parse: 1.0.7 4110 | supports-preserve-symlinks-flag: 1.0.0 4111 | 4112 | reusify@1.0.4: {} 4113 | 4114 | rimraf@3.0.2: 4115 | dependencies: 4116 | glob: 7.2.3 4117 | 4118 | run-parallel@1.2.0: 4119 | dependencies: 4120 | queue-microtask: 1.2.3 4121 | 4122 | safe-array-concat@1.1.2: 4123 | dependencies: 4124 | call-bind: 1.0.7 4125 | get-intrinsic: 1.2.4 4126 | has-symbols: 1.0.3 4127 | isarray: 2.0.5 4128 | 4129 | safe-regex-test@1.0.3: 4130 | dependencies: 4131 | call-bind: 1.0.7 4132 | es-errors: 1.3.0 4133 | is-regex: 1.1.4 4134 | 4135 | scheduler@0.23.2: 4136 | dependencies: 4137 | loose-envify: 1.4.0 4138 | 4139 | semver@6.3.1: {} 4140 | 4141 | semver@7.6.0: 4142 | dependencies: 4143 | lru-cache: 6.0.0 4144 | 4145 | set-function-length@1.2.2: 4146 | dependencies: 4147 | define-data-property: 1.1.4 4148 | es-errors: 1.3.0 4149 | function-bind: 1.1.2 4150 | get-intrinsic: 1.2.4 4151 | gopd: 1.0.1 4152 | has-property-descriptors: 1.0.2 4153 | 4154 | set-function-name@2.0.2: 4155 | dependencies: 4156 | define-data-property: 1.1.4 4157 | es-errors: 1.3.0 4158 | functions-have-names: 1.2.3 4159 | has-property-descriptors: 1.0.2 4160 | 4161 | shebang-command@2.0.0: 4162 | dependencies: 4163 | shebang-regex: 3.0.0 4164 | 4165 | shebang-regex@3.0.0: {} 4166 | 4167 | side-channel@1.0.6: 4168 | dependencies: 4169 | call-bind: 1.0.7 4170 | es-errors: 1.3.0 4171 | get-intrinsic: 1.2.4 4172 | object-inspect: 1.13.1 4173 | 4174 | signal-exit@4.1.0: {} 4175 | 4176 | slash@3.0.0: {} 4177 | 4178 | source-map-js@1.2.0: {} 4179 | 4180 | streamsearch@1.1.0: {} 4181 | 4182 | string-width@4.2.3: 4183 | dependencies: 4184 | emoji-regex: 8.0.0 4185 | is-fullwidth-code-point: 3.0.0 4186 | strip-ansi: 6.0.1 4187 | 4188 | string-width@5.1.2: 4189 | dependencies: 4190 | eastasianwidth: 0.2.0 4191 | emoji-regex: 9.2.2 4192 | strip-ansi: 7.1.0 4193 | 4194 | string.prototype.matchall@4.0.11: 4195 | dependencies: 4196 | call-bind: 1.0.7 4197 | define-properties: 1.2.1 4198 | es-abstract: 1.23.3 4199 | es-errors: 1.3.0 4200 | es-object-atoms: 1.0.0 4201 | get-intrinsic: 1.2.4 4202 | gopd: 1.0.1 4203 | has-symbols: 1.0.3 4204 | internal-slot: 1.0.7 4205 | regexp.prototype.flags: 1.5.2 4206 | set-function-name: 2.0.2 4207 | side-channel: 1.0.6 4208 | 4209 | string.prototype.trim@1.2.9: 4210 | dependencies: 4211 | call-bind: 1.0.7 4212 | define-properties: 1.2.1 4213 | es-abstract: 1.23.3 4214 | es-object-atoms: 1.0.0 4215 | 4216 | string.prototype.trimend@1.0.8: 4217 | dependencies: 4218 | call-bind: 1.0.7 4219 | define-properties: 1.2.1 4220 | es-object-atoms: 1.0.0 4221 | 4222 | string.prototype.trimstart@1.0.8: 4223 | dependencies: 4224 | call-bind: 1.0.7 4225 | define-properties: 1.2.1 4226 | es-object-atoms: 1.0.0 4227 | 4228 | strip-ansi@6.0.1: 4229 | dependencies: 4230 | ansi-regex: 5.0.1 4231 | 4232 | strip-ansi@7.1.0: 4233 | dependencies: 4234 | ansi-regex: 6.0.1 4235 | 4236 | strip-bom@3.0.0: {} 4237 | 4238 | strip-json-comments@3.1.1: {} 4239 | 4240 | styled-jsx@5.1.1(@babel/core@7.24.4)(react@18.3.1): 4241 | dependencies: 4242 | client-only: 0.0.1 4243 | react: 18.3.1 4244 | optionalDependencies: 4245 | '@babel/core': 7.24.4 4246 | 4247 | sucrase@3.35.0: 4248 | dependencies: 4249 | '@jridgewell/gen-mapping': 0.3.5 4250 | commander: 4.1.1 4251 | glob: 10.3.12 4252 | lines-and-columns: 1.2.4 4253 | mz: 2.7.0 4254 | pirates: 4.0.6 4255 | ts-interface-checker: 0.1.13 4256 | 4257 | supports-color@5.5.0: 4258 | dependencies: 4259 | has-flag: 3.0.0 4260 | 4261 | supports-color@7.2.0: 4262 | dependencies: 4263 | has-flag: 4.0.0 4264 | 4265 | supports-preserve-symlinks-flag@1.0.0: {} 4266 | 4267 | tailwind-merge@2.3.0: 4268 | dependencies: 4269 | '@babel/runtime': 7.24.4 4270 | 4271 | tailwindcss-animate@1.0.7(tailwindcss@3.4.3): 4272 | dependencies: 4273 | tailwindcss: 3.4.3 4274 | 4275 | tailwindcss@3.4.3: 4276 | dependencies: 4277 | '@alloc/quick-lru': 5.2.0 4278 | arg: 5.0.2 4279 | chokidar: 3.6.0 4280 | didyoumean: 1.2.2 4281 | dlv: 1.1.3 4282 | fast-glob: 3.3.2 4283 | glob-parent: 6.0.2 4284 | is-glob: 4.0.3 4285 | jiti: 1.21.0 4286 | lilconfig: 2.1.0 4287 | micromatch: 4.0.8 4288 | normalize-path: 3.0.0 4289 | object-hash: 3.0.0 4290 | picocolors: 1.0.0 4291 | postcss: 8.4.38 4292 | postcss-import: 15.1.0(postcss@8.4.38) 4293 | postcss-js: 4.0.1(postcss@8.4.38) 4294 | postcss-load-config: 4.0.2(postcss@8.4.38) 4295 | postcss-nested: 6.0.1(postcss@8.4.38) 4296 | postcss-selector-parser: 6.0.16 4297 | resolve: 1.22.8 4298 | sucrase: 3.35.0 4299 | transitivePeerDependencies: 4300 | - ts-node 4301 | 4302 | tapable@2.2.1: {} 4303 | 4304 | text-table@0.2.0: {} 4305 | 4306 | thenify-all@1.6.0: 4307 | dependencies: 4308 | thenify: 3.3.1 4309 | 4310 | thenify@3.3.1: 4311 | dependencies: 4312 | any-promise: 1.3.0 4313 | 4314 | to-fast-properties@2.0.0: {} 4315 | 4316 | to-regex-range@5.0.1: 4317 | dependencies: 4318 | is-number: 7.0.0 4319 | 4320 | ts-api-utils@1.3.0(typescript@5.4.5): 4321 | dependencies: 4322 | typescript: 5.4.5 4323 | 4324 | ts-interface-checker@0.1.13: {} 4325 | 4326 | tsconfig-paths@3.15.0: 4327 | dependencies: 4328 | '@types/json5': 0.0.29 4329 | json5: 1.0.2 4330 | minimist: 1.2.8 4331 | strip-bom: 3.0.0 4332 | 4333 | tslib@2.6.2: {} 4334 | 4335 | type-check@0.4.0: 4336 | dependencies: 4337 | prelude-ls: 1.2.1 4338 | 4339 | type-fest@0.20.2: {} 4340 | 4341 | typed-array-buffer@1.0.2: 4342 | dependencies: 4343 | call-bind: 1.0.7 4344 | es-errors: 1.3.0 4345 | is-typed-array: 1.1.13 4346 | 4347 | typed-array-byte-length@1.0.1: 4348 | dependencies: 4349 | call-bind: 1.0.7 4350 | for-each: 0.3.3 4351 | gopd: 1.0.1 4352 | has-proto: 1.0.3 4353 | is-typed-array: 1.1.13 4354 | 4355 | typed-array-byte-offset@1.0.2: 4356 | dependencies: 4357 | available-typed-arrays: 1.0.7 4358 | call-bind: 1.0.7 4359 | for-each: 0.3.3 4360 | gopd: 1.0.1 4361 | has-proto: 1.0.3 4362 | is-typed-array: 1.1.13 4363 | 4364 | typed-array-length@1.0.6: 4365 | dependencies: 4366 | call-bind: 1.0.7 4367 | for-each: 0.3.3 4368 | gopd: 1.0.1 4369 | has-proto: 1.0.3 4370 | is-typed-array: 1.1.13 4371 | possible-typed-array-names: 1.0.0 4372 | 4373 | typescript@5.4.5: {} 4374 | 4375 | unbox-primitive@1.0.2: 4376 | dependencies: 4377 | call-bind: 1.0.7 4378 | has-bigints: 1.0.2 4379 | has-symbols: 1.0.3 4380 | which-boxed-primitive: 1.0.2 4381 | 4382 | undici-types@5.26.5: {} 4383 | 4384 | update-browserslist-db@1.0.13(browserslist@4.23.0): 4385 | dependencies: 4386 | browserslist: 4.23.0 4387 | escalade: 3.1.2 4388 | picocolors: 1.0.0 4389 | 4390 | uri-js@4.4.1: 4391 | dependencies: 4392 | punycode: 2.3.1 4393 | 4394 | use-callback-ref@1.3.2(@types/react@18.3.1)(react@18.3.1): 4395 | dependencies: 4396 | react: 18.3.1 4397 | tslib: 2.6.2 4398 | optionalDependencies: 4399 | '@types/react': 18.3.1 4400 | 4401 | use-sidecar@1.1.2(@types/react@18.3.1)(react@18.3.1): 4402 | dependencies: 4403 | detect-node-es: 1.1.0 4404 | react: 18.3.1 4405 | tslib: 2.6.2 4406 | optionalDependencies: 4407 | '@types/react': 18.3.1 4408 | 4409 | util-deprecate@1.0.2: {} 4410 | 4411 | which-boxed-primitive@1.0.2: 4412 | dependencies: 4413 | is-bigint: 1.0.4 4414 | is-boolean-object: 1.1.2 4415 | is-number-object: 1.0.7 4416 | is-string: 1.0.7 4417 | is-symbol: 1.0.4 4418 | 4419 | which-builtin-type@1.1.3: 4420 | dependencies: 4421 | function.prototype.name: 1.1.6 4422 | has-tostringtag: 1.0.2 4423 | is-async-function: 2.0.0 4424 | is-date-object: 1.0.5 4425 | is-finalizationregistry: 1.0.2 4426 | is-generator-function: 1.0.10 4427 | is-regex: 1.1.4 4428 | is-weakref: 1.0.2 4429 | isarray: 2.0.5 4430 | which-boxed-primitive: 1.0.2 4431 | which-collection: 1.0.2 4432 | which-typed-array: 1.1.15 4433 | 4434 | which-collection@1.0.2: 4435 | dependencies: 4436 | is-map: 2.0.3 4437 | is-set: 2.0.3 4438 | is-weakmap: 2.0.2 4439 | is-weakset: 2.0.3 4440 | 4441 | which-typed-array@1.1.15: 4442 | dependencies: 4443 | available-typed-arrays: 1.0.7 4444 | call-bind: 1.0.7 4445 | for-each: 0.3.3 4446 | gopd: 1.0.1 4447 | has-tostringtag: 1.0.2 4448 | 4449 | which@2.0.2: 4450 | dependencies: 4451 | isexe: 2.0.0 4452 | 4453 | word-wrap@1.2.5: {} 4454 | 4455 | wrap-ansi@7.0.0: 4456 | dependencies: 4457 | ansi-styles: 4.3.0 4458 | string-width: 4.2.3 4459 | strip-ansi: 6.0.1 4460 | 4461 | wrap-ansi@8.1.0: 4462 | dependencies: 4463 | ansi-styles: 6.2.1 4464 | string-width: 5.1.2 4465 | strip-ansi: 7.1.0 4466 | 4467 | wrappy@1.0.2: {} 4468 | 4469 | yallist@3.1.1: {} 4470 | 4471 | yallist@4.0.0: {} 4472 | 4473 | yaml@2.4.2: {} 4474 | 4475 | yocto-queue@0.1.0: {} 4476 | 4477 | zod@3.23.4: {} 4478 | --------------------------------------------------------------------------------