├── .gitignore ├── README.md ├── app ├── analyze │ └── route.ts ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── eslint.config.mjs ├── img ├── flow.png └── webhook-config.png ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── file.svg ├── globe.svg ├── next.svg ├── vercel.svg └── window.svg ├── tailwind.config.ts └── tsconfig.json /.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.* 7 | .yarn/* 8 | !.yarn/patches 9 | !.yarn/plugins 10 | !.yarn/releases 11 | !.yarn/versions 12 | 13 | # testing 14 | /coverage 15 | 16 | # next.js 17 | /.next/ 18 | /out/ 19 | 20 | # production 21 | /build 22 | 23 | # misc 24 | .DS_Store 25 | *.pem 26 | 27 | # debug 28 | npm-debug.log* 29 | yarn-debug.log* 30 | yarn-error.log* 31 | .pnpm-debug.log* 32 | 33 | # env files (can opt-in for committing if needed) 34 | .env* 35 | 36 | # vercel 37 | .vercel 38 | 39 | # typescript 40 | *.tsbuildinfo 41 | next-env.d.ts 42 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Email Analysis Workflow with DeepSeek V3 2 | 3 | This project allows you to automatically analyze email threads and their attachments using AI. When you forward an email to specific email address, Zapier will trigger a webhook that processes the content and sends back an AI generated response suggestion. 4 | 5 | ## Setup Instructions 6 | 7 | For more detailed setup guide, see the [related blog post](https://upstash.com/blog/email-analysis-agent). 8 | 9 | ### 1. Set Environment Variables 10 | 11 | This application uses **Resend** to send emails and **DeepSeek** for LLMs. To run the application, you need the following environment variables in the `.env` file. 12 | 13 | ``` 14 | DEEPSEEK_API_KEY= 15 | QSTASH_TOKEN= 16 | RESEND_API_KEY= 17 | ``` 18 | 19 | ### 2. Deploy Your API Endpoint 20 | 21 | First, deploy your API endpoint that will receive the webhook from Zapier. The endpoint should be accessible at 22 | 23 | ``` 24 | https:///analyze 25 | ``` 26 | 27 | You can also use `ngrok` to setup a publicly accessible endpoint on your local. See [local development guide](https://upstash.com/docs/workflow/howto/local-development) 28 | 29 | ### 3. Configure Zapier Integration 30 | 31 | #### Step 1: Create a New Zap 32 | 33 | 1. Go to [Zapier](https://zapier.com) and click "Create Zap" 34 | 2. Name your Zap (e.g., "Email Analysis Workflow") 35 | 36 | #### Step 2: Configure Gmail Trigger 37 | 38 | 1. Choose "Gmail" as your trigger app 39 | 2. Select "New Email" as the trigger event 40 | 3. Connect your Gmail account if not already done. This email address will be the account you'll forward the emails to get the response suggestions. 41 | 4. Optional: Add filters to only trigger on specific emails 42 | 43 | ![flow](./img/flow.png) 44 | 45 | #### Step 4: Configure Webhook Action 46 | 47 | 1. Add a new action step 48 | 2. Choose "Webhooks by Zapier" 49 | 3. Select "POST" as the action event 50 | 4. Configure the webhook with these settings: 51 | 52 | - **URL**: Your API endpoint (e.g., `https://your-domain.com/api/analyze`) 53 | - **Payload Type**: `json` 54 | - **Data**: 55 | ```json 56 | { 57 | "message": "{{body_plain}}", 58 | "subject": "{{subject}}", 59 | "to": "{{to_email}}", 60 | "attachment": "{{attachment_1}}", 61 | "attachment_type": "{{attachment_type}}" 62 | } 63 | ``` 64 | - **Wrap Request in Array**: No 65 | - **Unflatten**: Yes 66 | 67 | ![webhook config](./img/webhook-config.png) 68 | 69 | ### Field Mappings 70 | 71 | - `message`: Use Gmail's "Body Plain" field 72 | - `subject`: Use Gmail's "Raw Payload Headers Subject" field 73 | - `to`: Use Gmail's "From Email" field 74 | - `attachment`: Use Gmail's "Attachment 1 Attachment" field 75 | - `attachment_type`: The type of the attachment, currently only `application/pdf` is available on backend. 76 | 77 | ## Limitations 78 | 79 | - Currently handles one attachment per email 80 | - Supports PDF attachments 81 | - Maximum email size limit based on your API endpoint's limitations 82 | -------------------------------------------------------------------------------- /app/analyze/route.ts: -------------------------------------------------------------------------------- 1 | import { serve } from "@upstash/workflow/nextjs"; 2 | import { tool } from 'ai'; 3 | import { z } from "zod"; 4 | import pdf from "pdf-parse"; 5 | import { Resend } from 'resend'; 6 | 7 | type EmailPayload = { 8 | message: string, 9 | subject: string, 10 | to: string, 11 | attachment?: string, 12 | attachment_type?: string 13 | } 14 | 15 | const resend = new Resend(process.env.RESEND_API_KEY); 16 | 17 | export const { POST } = serve(async (context) => { 18 | const { message, subject, to, attachment, attachment_type } = context.requestPayload; 19 | const model = context.agents.openai("deepseek-chat", 20 | { 21 | baseURL: "https://api.deepseek.com", 22 | apiKey: process.env.DEEPSEEK_API_KEY 23 | } 24 | ); 25 | 26 | // PDF processing agent 27 | const pdfAgent = context.agents.agent({ 28 | model, 29 | name: 'pdfAgent', 30 | maxSteps: 3, 31 | background: 'You are a specialist in extracting and summarizing key information from PDF documents.', 32 | tools: { 33 | processPDF: tool({ 34 | description: 'Process and extract text from PDF attachments', 35 | parameters: z.object({ 36 | attachmentUrl: z.string().describe('URL of the PDF attachment') 37 | }), 38 | execute: async ({ attachmentUrl }) => { 39 | if (!attachmentUrl || attachment_type !== 'application/pdf') { 40 | return "NO_ATTACHMENT"; 41 | } 42 | 43 | const response = await fetch(attachmentUrl); 44 | const fileContent = await response.arrayBuffer(); 45 | const buffer = Buffer.from(fileContent); 46 | 47 | try { 48 | const data = await pdf(buffer); 49 | return { content: data.text }; 50 | } catch (error) { 51 | console.error('Error parsing PDF:', error); 52 | return { content: 'Unable to extract PDF content' }; 53 | } 54 | } 55 | }) 56 | } 57 | }); 58 | 59 | // Email composition agent 60 | const emailAgent = context.agents.agent({ 61 | model, 62 | name: 'emailAgent', 63 | maxSteps: 3, 64 | background: `You are an email specialist who writes professional, concise responses. 65 | You maintain conversation flow while being clear and helpful.`, 66 | tools: { 67 | sendEmail: tool({ 68 | description: 'Send email using Resend API', 69 | parameters: z.object({ 70 | to: z.string().describe('Recipient email address'), 71 | subject: z.string().describe('Email subject'), 72 | content: z.string().describe('Email content') 73 | }), 74 | execute: async ({ to, subject, content }) => { 75 | 76 | const emailResponse = await resend.emails.send({ 77 | from: "Analysis Agent ", 78 | to, 79 | subject, 80 | text: content 81 | }) 82 | 83 | return emailResponse; 84 | } 85 | }) 86 | } 87 | }); 88 | 89 | // Step 1: Process and summarize PDF if exists 90 | let pdfContent = ''; 91 | if (attachment) { 92 | const { text } = await context.agents.task({ 93 | agent: pdfAgent, 94 | prompt: `Process this PDF attachment using the processPDF tool. 95 | If the attachment doesn't exist or is not a PDF, tool returns NO_ATTACHMENT string. 96 | If there is no attachment, don't retry processing the PDF. 97 | Attachment URL: ${attachment} 98 | 99 | Extract and summarize the key information from this PDF. 100 | Return the extracted content in a clear, organized format.` 101 | }).run(); 102 | pdfContent = text; 103 | } 104 | 105 | // Step 2: Compose and send email response 106 | await context.agents.task({ 107 | agent: emailAgent, 108 | prompt: `You are going to compose an email and send it using the sendEmail tool. 109 | 110 | Email Parameters: 111 | TO: ${to} 112 | SUBJECT: ${subject} 113 | MESSAGE CONTEXT: ${message} 114 | PDF CONTENT: ${pdfContent} 115 | 116 | First, compose your email response. Then, use the sendEmail tool with these exact parameters: 117 | { 118 | "to": "${to}", 119 | "subject": "Analysis: ${subject}", 120 | "content": "YOUR_EMAIL_CONTENT" 121 | } 122 | 123 | Make sure to replace YOUR_EMAIL_CONTENT with your actual email text in a single line, using \\n for newlines. 124 | The response should be concise but address all key points from both the message and PDF content.` 125 | }).run(); 126 | }); -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/email-analysis-agent/eb594866ea2371b8eb49af6851593ea1cc2cae8b/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | :root { 6 | --background: #ffffff; 7 | --foreground: #171717; 8 | } 9 | 10 | @media (prefers-color-scheme: dark) { 11 | :root { 12 | --background: #0a0a0a; 13 | --foreground: #ededed; 14 | } 15 | } 16 | 17 | body { 18 | color: var(--foreground); 19 | background: var(--background); 20 | font-family: Arial, Helvetica, sans-serif; 21 | } 22 | -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- 1 | import type { Metadata } from "next"; 2 | import { Geist, Geist_Mono } from "next/font/google"; 3 | import "./globals.css"; 4 | 5 | const geistSans = Geist({ 6 | variable: "--font-geist-sans", 7 | subsets: ["latin"], 8 | }); 9 | 10 | const geistMono = Geist_Mono({ 11 | variable: "--font-geist-mono", 12 | subsets: ["latin"], 13 | }); 14 | 15 | export const metadata: Metadata = { 16 | title: "Create Next App", 17 | description: "Generated by create next app", 18 | }; 19 | 20 | export default function RootLayout({ 21 | children, 22 | }: Readonly<{ 23 | children: React.ReactNode; 24 | }>) { 25 | return ( 26 | 27 | 30 | {children} 31 | 32 | 33 | ); 34 | } 35 | -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- 1 | import Image from "next/image"; 2 | 3 | export default function Home() { 4 | return ( 5 |
6 |
7 | Next.js logo 15 |
    16 |
  1. 17 | Get started by editing{" "} 18 | 19 | app/page.tsx 20 | 21 | . 22 |
  2. 23 |
  3. Save and see your changes instantly.
  4. 24 |
25 | 26 | 51 |
52 | 99 |
100 | ); 101 | } 102 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- 1 | import { dirname } from "path"; 2 | import { fileURLToPath } from "url"; 3 | import { FlatCompat } from "@eslint/eslintrc"; 4 | 5 | const __filename = fileURLToPath(import.meta.url); 6 | const __dirname = dirname(__filename); 7 | 8 | const compat = new FlatCompat({ 9 | baseDirectory: __dirname, 10 | }); 11 | 12 | const eslintConfig = [ 13 | ...compat.extends("next/core-web-vitals", "next/typescript"), 14 | ]; 15 | 16 | export default eslintConfig; 17 | -------------------------------------------------------------------------------- /img/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/email-analysis-agent/eb594866ea2371b8eb49af6851593ea1cc2cae8b/img/flow.png -------------------------------------------------------------------------------- /img/webhook-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upstash/email-analysis-agent/eb594866ea2371b8eb49af6851593ea1cc2cae8b/img/webhook-config.png -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- 1 | import type { NextConfig } from "next"; 2 | 3 | const nextConfig: NextConfig = { 4 | serverExternalPackages: ["pdf-parse"] 5 | }; 6 | 7 | export default nextConfig; 8 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "email-analysis-agent", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev --turbopack", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@upstash/workflow": "^0.2.6", 13 | "ai": "^4.1.7", 14 | "next": "15.1.6", 15 | "pdf-parse": "^1.1.1", 16 | "react": "^19.0.0", 17 | "react-dom": "^19.0.0", 18 | "resend": "^4.1.1", 19 | "zod": "^3.24.1" 20 | }, 21 | "devDependencies": { 22 | "@eslint/eslintrc": "^3", 23 | "@types/node": "^20", 24 | "@types/pdf-parse": "^1.1.4", 25 | "@types/react": "^19", 26 | "@types/react-dom": "^19", 27 | "eslint": "^9", 28 | "eslint-config-next": "15.1.6", 29 | "postcss": "^8", 30 | "tailwindcss": "^3.4.1", 31 | "typescript": "^5" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | '@upstash/workflow': 12 | specifier: ^0.2.6 13 | version: 0.2.6(react@19.0.0) 14 | ai: 15 | specifier: ^4.1.7 16 | version: 4.1.7(react@19.0.0)(zod@3.24.1) 17 | next: 18 | specifier: 15.1.6 19 | version: 15.1.6(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 20 | pdf-parse: 21 | specifier: ^1.1.1 22 | version: 1.1.1 23 | react: 24 | specifier: ^19.0.0 25 | version: 19.0.0 26 | react-dom: 27 | specifier: ^19.0.0 28 | version: 19.0.0(react@19.0.0) 29 | resend: 30 | specifier: ^4.1.1 31 | version: 4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 32 | zod: 33 | specifier: ^3.24.1 34 | version: 3.24.1 35 | devDependencies: 36 | '@eslint/eslintrc': 37 | specifier: ^3 38 | version: 3.2.0 39 | '@types/node': 40 | specifier: ^20 41 | version: 20.17.16 42 | '@types/pdf-parse': 43 | specifier: ^1.1.4 44 | version: 1.1.4 45 | '@types/react': 46 | specifier: ^19 47 | version: 19.0.8 48 | '@types/react-dom': 49 | specifier: ^19 50 | version: 19.0.3(@types/react@19.0.8) 51 | eslint: 52 | specifier: ^9 53 | version: 9.19.0(jiti@1.21.7) 54 | eslint-config-next: 55 | specifier: 15.1.6 56 | version: 15.1.6(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3) 57 | postcss: 58 | specifier: ^8 59 | version: 8.5.1 60 | tailwindcss: 61 | specifier: ^3.4.1 62 | version: 3.4.17 63 | typescript: 64 | specifier: ^5 65 | version: 5.7.3 66 | 67 | packages: 68 | 69 | '@ai-sdk/openai@1.1.4': 70 | resolution: {integrity: sha512-C1a+p8lXzy684TdgSqQqubmp2YHm1P/mPXNzlcpJUb/T3xl1Uvw597V9wVeEvCynmimXI9WKRvLMQS/XnBljmg==} 71 | engines: {node: '>=18'} 72 | peerDependencies: 73 | zod: ^3.0.0 74 | 75 | '@ai-sdk/provider-utils@2.1.4': 76 | resolution: {integrity: sha512-KrGr76ebmN3onrb+bQihgXZyYgYu/kClB+YjFmR1uXQpJG067rCBDWuTHvpI7vwPdQQDvIIgZ+0U5G4V+dN74w==} 77 | engines: {node: '>=18'} 78 | peerDependencies: 79 | zod: ^3.0.0 80 | peerDependenciesMeta: 81 | zod: 82 | optional: true 83 | 84 | '@ai-sdk/provider@1.0.6': 85 | resolution: {integrity: sha512-hwj/gFNxpDgEfTaYzCYoslmw01IY9kWLKl/wf8xuPvHtQIzlfXWmmUwc8PnCwxyt8cKzIuV0dfUghCf68HQ0SA==} 86 | engines: {node: '>=18'} 87 | 88 | '@ai-sdk/react@1.1.5': 89 | resolution: {integrity: sha512-VTsX7BG3ntUbQtjHU4kqYt1uXQnQDx9/QAgp0/hu4Z2SpVFvf2QNsSCAUExDBvV6PupfITfzPyZmfiZworRZYg==} 90 | engines: {node: '>=18'} 91 | peerDependencies: 92 | react: ^18 || ^19 || ^19.0.0-rc 93 | zod: ^3.0.0 94 | peerDependenciesMeta: 95 | react: 96 | optional: true 97 | zod: 98 | optional: true 99 | 100 | '@ai-sdk/ui-utils@1.1.5': 101 | resolution: {integrity: sha512-N4/YyDxJ7STcUeE6qv48Rgihly33yMIBeXtADuPEtuObofUcVAEjHSeWWSNuY780m2nocrjOV34XELwMDmZ73w==} 102 | engines: {node: '>=18'} 103 | peerDependencies: 104 | zod: ^3.0.0 105 | peerDependenciesMeta: 106 | zod: 107 | optional: true 108 | 109 | '@alloc/quick-lru@5.2.0': 110 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} 111 | engines: {node: '>=10'} 112 | 113 | '@emnapi/runtime@1.3.1': 114 | resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==} 115 | 116 | '@eslint-community/eslint-utils@4.4.1': 117 | resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} 118 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 119 | peerDependencies: 120 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 121 | 122 | '@eslint-community/regexpp@4.12.1': 123 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} 124 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 125 | 126 | '@eslint/config-array@0.19.1': 127 | resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==} 128 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 129 | 130 | '@eslint/core@0.10.0': 131 | resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==} 132 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 133 | 134 | '@eslint/eslintrc@3.2.0': 135 | resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} 136 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 137 | 138 | '@eslint/js@9.19.0': 139 | resolution: {integrity: sha512-rbq9/g38qjfqFLOVPvwjIvFFdNziEC5S65jmjPw5r6A//QH+W91akh9irMwjDN8zKUTak6W9EsAv4m/7Wnw0UQ==} 140 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 141 | 142 | '@eslint/object-schema@2.1.5': 143 | resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==} 144 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 145 | 146 | '@eslint/plugin-kit@0.2.5': 147 | resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==} 148 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 149 | 150 | '@humanfs/core@0.19.1': 151 | resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} 152 | engines: {node: '>=18.18.0'} 153 | 154 | '@humanfs/node@0.16.6': 155 | resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} 156 | engines: {node: '>=18.18.0'} 157 | 158 | '@humanwhocodes/module-importer@1.0.1': 159 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 160 | engines: {node: '>=12.22'} 161 | 162 | '@humanwhocodes/retry@0.3.1': 163 | resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} 164 | engines: {node: '>=18.18'} 165 | 166 | '@humanwhocodes/retry@0.4.1': 167 | resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==} 168 | engines: {node: '>=18.18'} 169 | 170 | '@img/sharp-darwin-arm64@0.33.5': 171 | resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} 172 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 173 | cpu: [arm64] 174 | os: [darwin] 175 | 176 | '@img/sharp-darwin-x64@0.33.5': 177 | resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} 178 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 179 | cpu: [x64] 180 | os: [darwin] 181 | 182 | '@img/sharp-libvips-darwin-arm64@1.0.4': 183 | resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} 184 | cpu: [arm64] 185 | os: [darwin] 186 | 187 | '@img/sharp-libvips-darwin-x64@1.0.4': 188 | resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} 189 | cpu: [x64] 190 | os: [darwin] 191 | 192 | '@img/sharp-libvips-linux-arm64@1.0.4': 193 | resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} 194 | cpu: [arm64] 195 | os: [linux] 196 | 197 | '@img/sharp-libvips-linux-arm@1.0.5': 198 | resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} 199 | cpu: [arm] 200 | os: [linux] 201 | 202 | '@img/sharp-libvips-linux-s390x@1.0.4': 203 | resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} 204 | cpu: [s390x] 205 | os: [linux] 206 | 207 | '@img/sharp-libvips-linux-x64@1.0.4': 208 | resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} 209 | cpu: [x64] 210 | os: [linux] 211 | 212 | '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 213 | resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} 214 | cpu: [arm64] 215 | os: [linux] 216 | 217 | '@img/sharp-libvips-linuxmusl-x64@1.0.4': 218 | resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} 219 | cpu: [x64] 220 | os: [linux] 221 | 222 | '@img/sharp-linux-arm64@0.33.5': 223 | resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} 224 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 225 | cpu: [arm64] 226 | os: [linux] 227 | 228 | '@img/sharp-linux-arm@0.33.5': 229 | resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} 230 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 231 | cpu: [arm] 232 | os: [linux] 233 | 234 | '@img/sharp-linux-s390x@0.33.5': 235 | resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} 236 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 237 | cpu: [s390x] 238 | os: [linux] 239 | 240 | '@img/sharp-linux-x64@0.33.5': 241 | resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} 242 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 243 | cpu: [x64] 244 | os: [linux] 245 | 246 | '@img/sharp-linuxmusl-arm64@0.33.5': 247 | resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} 248 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 249 | cpu: [arm64] 250 | os: [linux] 251 | 252 | '@img/sharp-linuxmusl-x64@0.33.5': 253 | resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} 254 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 255 | cpu: [x64] 256 | os: [linux] 257 | 258 | '@img/sharp-wasm32@0.33.5': 259 | resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} 260 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 261 | cpu: [wasm32] 262 | 263 | '@img/sharp-win32-ia32@0.33.5': 264 | resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} 265 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 266 | cpu: [ia32] 267 | os: [win32] 268 | 269 | '@img/sharp-win32-x64@0.33.5': 270 | resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==} 271 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 272 | cpu: [x64] 273 | os: [win32] 274 | 275 | '@isaacs/cliui@8.0.2': 276 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 277 | engines: {node: '>=12'} 278 | 279 | '@jridgewell/gen-mapping@0.3.8': 280 | resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} 281 | engines: {node: '>=6.0.0'} 282 | 283 | '@jridgewell/resolve-uri@3.1.2': 284 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 285 | engines: {node: '>=6.0.0'} 286 | 287 | '@jridgewell/set-array@1.2.1': 288 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 289 | engines: {node: '>=6.0.0'} 290 | 291 | '@jridgewell/sourcemap-codec@1.5.0': 292 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 293 | 294 | '@jridgewell/trace-mapping@0.3.25': 295 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 296 | 297 | '@next/env@15.1.6': 298 | resolution: {integrity: sha512-d9AFQVPEYNr+aqokIiPLNK/MTyt3DWa/dpKveiAaVccUadFbhFEvY6FXYX2LJO2Hv7PHnLBu2oWwB4uBuHjr/w==} 299 | 300 | '@next/eslint-plugin-next@15.1.6': 301 | resolution: {integrity: sha512-+slMxhTgILUntZDGNgsKEYHUvpn72WP1YTlkmEhS51vnVd7S9jEEy0n9YAMcI21vUG4akTw9voWH02lrClt/yw==} 302 | 303 | '@next/swc-darwin-arm64@15.1.6': 304 | resolution: {integrity: sha512-u7lg4Mpl9qWpKgy6NzEkz/w0/keEHtOybmIl0ykgItBxEM5mYotS5PmqTpo+Rhg8FiOiWgwr8USxmKQkqLBCrw==} 305 | engines: {node: '>= 10'} 306 | cpu: [arm64] 307 | os: [darwin] 308 | 309 | '@next/swc-darwin-x64@15.1.6': 310 | resolution: {integrity: sha512-x1jGpbHbZoZ69nRuogGL2MYPLqohlhnT9OCU6E6QFewwup+z+M6r8oU47BTeJcWsF2sdBahp5cKiAcDbwwK/lg==} 311 | engines: {node: '>= 10'} 312 | cpu: [x64] 313 | os: [darwin] 314 | 315 | '@next/swc-linux-arm64-gnu@15.1.6': 316 | resolution: {integrity: sha512-jar9sFw0XewXsBzPf9runGzoivajeWJUc/JkfbLTC4it9EhU8v7tCRLH7l5Y1ReTMN6zKJO0kKAGqDk8YSO2bg==} 317 | engines: {node: '>= 10'} 318 | cpu: [arm64] 319 | os: [linux] 320 | 321 | '@next/swc-linux-arm64-musl@15.1.6': 322 | resolution: {integrity: sha512-+n3u//bfsrIaZch4cgOJ3tXCTbSxz0s6brJtU3SzLOvkJlPQMJ+eHVRi6qM2kKKKLuMY+tcau8XD9CJ1OjeSQQ==} 323 | engines: {node: '>= 10'} 324 | cpu: [arm64] 325 | os: [linux] 326 | 327 | '@next/swc-linux-x64-gnu@15.1.6': 328 | resolution: {integrity: sha512-SpuDEXixM3PycniL4iVCLyUyvcl6Lt0mtv3am08sucskpG0tYkW1KlRhTgj4LI5ehyxriVVcfdoxuuP8csi3kQ==} 329 | engines: {node: '>= 10'} 330 | cpu: [x64] 331 | os: [linux] 332 | 333 | '@next/swc-linux-x64-musl@15.1.6': 334 | resolution: {integrity: sha512-L4druWmdFSZIIRhF+G60API5sFB7suTbDRhYWSjiw0RbE+15igQvE2g2+S973pMGvwN3guw7cJUjA/TmbPWTHQ==} 335 | engines: {node: '>= 10'} 336 | cpu: [x64] 337 | os: [linux] 338 | 339 | '@next/swc-win32-arm64-msvc@15.1.6': 340 | resolution: {integrity: sha512-s8w6EeqNmi6gdvM19tqKKWbCyOBvXFbndkGHl+c9YrzsLARRdCHsD9S1fMj8gsXm9v8vhC8s3N8rjuC/XrtkEg==} 341 | engines: {node: '>= 10'} 342 | cpu: [arm64] 343 | os: [win32] 344 | 345 | '@next/swc-win32-x64-msvc@15.1.6': 346 | resolution: {integrity: sha512-6xomMuu54FAFxttYr5PJbEfu96godcxBTRk1OhAvJq0/EnmFU/Ybiax30Snis4vdWZ9LGpf7Roy5fSs7v/5ROQ==} 347 | engines: {node: '>= 10'} 348 | cpu: [x64] 349 | os: [win32] 350 | 351 | '@nodelib/fs.scandir@2.1.5': 352 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 353 | engines: {node: '>= 8'} 354 | 355 | '@nodelib/fs.stat@2.0.5': 356 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 357 | engines: {node: '>= 8'} 358 | 359 | '@nodelib/fs.walk@1.2.8': 360 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 361 | engines: {node: '>= 8'} 362 | 363 | '@nolyfill/is-core-module@1.0.39': 364 | resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==} 365 | engines: {node: '>=12.4.0'} 366 | 367 | '@one-ini/wasm@0.1.1': 368 | resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} 369 | 370 | '@opentelemetry/api@1.9.0': 371 | resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==} 372 | engines: {node: '>=8.0.0'} 373 | 374 | '@pkgjs/parseargs@0.11.0': 375 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 376 | engines: {node: '>=14'} 377 | 378 | '@react-email/render@1.0.1': 379 | resolution: {integrity: sha512-W3gTrcmLOVYnG80QuUp22ReIT/xfLsVJ+n7ghSlG2BITB8evNABn1AO2rGQoXuK84zKtDAlxCdm3hRyIpZdGSA==} 380 | engines: {node: '>=18.0.0'} 381 | peerDependencies: 382 | react: ^18.0 || ^19.0 || ^19.0.0-rc 383 | react-dom: ^18.0 || ^19.0 || ^19.0.0-rc 384 | 385 | '@rtsao/scc@1.1.0': 386 | resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} 387 | 388 | '@rushstack/eslint-patch@1.10.5': 389 | resolution: {integrity: sha512-kkKUDVlII2DQiKy7UstOR1ErJP8kUKAQ4oa+SQtM0K+lPdmmjj0YnnxBgtTVYH7mUKtbsxeFC9y0AmK7Yb78/A==} 390 | 391 | '@selderee/plugin-htmlparser2@0.11.0': 392 | resolution: {integrity: sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ==} 393 | 394 | '@swc/counter@0.1.3': 395 | resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} 396 | 397 | '@swc/helpers@0.5.15': 398 | resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} 399 | 400 | '@types/diff-match-patch@1.0.36': 401 | resolution: {integrity: sha512-xFdR6tkm0MWvBfO8xXCSsinYxHcqkQUlcHeSpMC2ukzOb6lwQAfDmW+Qt0AvlGd8HpsS28qKsB+oPeJn9I39jg==} 402 | 403 | '@types/estree@1.0.6': 404 | resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 405 | 406 | '@types/json-schema@7.0.15': 407 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 408 | 409 | '@types/json5@0.0.29': 410 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 411 | 412 | '@types/node@20.17.16': 413 | resolution: {integrity: sha512-vOTpLduLkZXePLxHiHsBLp98mHGnl8RptV4YAO3HfKO5UHjDvySGbxKtpYfy8Sx5+WKcgc45qNreJJRVM3L6mw==} 414 | 415 | '@types/pdf-parse@1.1.4': 416 | resolution: {integrity: sha512-+gbBHbNCVGGYw1S9lAIIvrHW47UYOhMIFUsJcMkMrzy1Jf0vulBN3XQIjPgnoOXveMuHnF3b57fXROnY/Or7eg==} 417 | 418 | '@types/react-dom@19.0.3': 419 | resolution: {integrity: sha512-0Knk+HJiMP/qOZgMyNFamlIjw9OFCsyC2ZbigmEEyXXixgre6IQpm/4V+r3qH4GC1JPvRJKInw+on2rV6YZLeA==} 420 | peerDependencies: 421 | '@types/react': ^19.0.0 422 | 423 | '@types/react@19.0.8': 424 | resolution: {integrity: sha512-9P/o1IGdfmQxrujGbIMDyYaaCykhLKc0NGCtYcECNUr9UAaDe4gwvV9bR6tvd5Br1SG0j+PBpbKr2UYY8CwqSw==} 425 | 426 | '@typescript-eslint/eslint-plugin@8.21.0': 427 | resolution: {integrity: sha512-eTH+UOR4I7WbdQnG4Z48ebIA6Bgi7WO8HvFEneeYBxG8qCOYgTOFPSg6ek9ITIDvGjDQzWHcoWHCDO2biByNzA==} 428 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 429 | peerDependencies: 430 | '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 431 | eslint: ^8.57.0 || ^9.0.0 432 | typescript: '>=4.8.4 <5.8.0' 433 | 434 | '@typescript-eslint/parser@8.21.0': 435 | resolution: {integrity: sha512-Wy+/sdEH9kI3w9civgACwabHbKl+qIOu0uFZ9IMKzX3Jpv9og0ZBJrZExGrPpFAY7rWsXuxs5e7CPPP17A4eYA==} 436 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 437 | peerDependencies: 438 | eslint: ^8.57.0 || ^9.0.0 439 | typescript: '>=4.8.4 <5.8.0' 440 | 441 | '@typescript-eslint/scope-manager@8.21.0': 442 | resolution: {integrity: sha512-G3IBKz0/0IPfdeGRMbp+4rbjfSSdnGkXsM/pFZA8zM9t9klXDnB/YnKOBQ0GoPmoROa4bCq2NeHgJa5ydsQ4mA==} 443 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 444 | 445 | '@typescript-eslint/type-utils@8.21.0': 446 | resolution: {integrity: sha512-95OsL6J2BtzoBxHicoXHxgk3z+9P3BEcQTpBKriqiYzLKnM2DeSqs+sndMKdamU8FosiadQFT3D+BSL9EKnAJQ==} 447 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 448 | peerDependencies: 449 | eslint: ^8.57.0 || ^9.0.0 450 | typescript: '>=4.8.4 <5.8.0' 451 | 452 | '@typescript-eslint/types@8.21.0': 453 | resolution: {integrity: sha512-PAL6LUuQwotLW2a8VsySDBwYMm129vFm4tMVlylzdoTybTHaAi0oBp7Ac6LhSrHHOdLM3efH+nAR6hAWoMF89A==} 454 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 455 | 456 | '@typescript-eslint/typescript-estree@8.21.0': 457 | resolution: {integrity: sha512-x+aeKh/AjAArSauz0GiQZsjT8ciadNMHdkUSwBB9Z6PrKc/4knM4g3UfHml6oDJmKC88a6//cdxnO/+P2LkMcg==} 458 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 459 | peerDependencies: 460 | typescript: '>=4.8.4 <5.8.0' 461 | 462 | '@typescript-eslint/utils@8.21.0': 463 | resolution: {integrity: sha512-xcXBfcq0Kaxgj7dwejMbFyq7IOHgpNMtVuDveK7w3ZGwG9owKzhALVwKpTF2yrZmEwl9SWdetf3fxNzJQaVuxw==} 464 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 465 | peerDependencies: 466 | eslint: ^8.57.0 || ^9.0.0 467 | typescript: '>=4.8.4 <5.8.0' 468 | 469 | '@typescript-eslint/visitor-keys@8.21.0': 470 | resolution: {integrity: sha512-BkLMNpdV6prozk8LlyK/SOoWLmUFi+ZD+pcqti9ILCbVvHGk1ui1g4jJOc2WDLaeExz2qWwojxlPce5PljcT3w==} 471 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 472 | 473 | '@upstash/qstash@2.7.20': 474 | resolution: {integrity: sha512-fdh5df4BuJwSUhXv33g/Eaj7gG+fu3tBoXyGE5hg4zEZX9fwUY/nuc0uDlLWh54L66JfMdESVOjIaiLa1cgL1Q==} 475 | 476 | '@upstash/workflow@0.2.6': 477 | resolution: {integrity: sha512-/yRoAnhCwsqdrBhCGLEppG29VDz7ihhSkMjdAu/znAhSLCYcDS2oSIxS0NKKHq+hHqYBw+/bePO5qBQyQwUzvA==} 478 | 479 | abbrev@2.0.0: 480 | resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} 481 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 482 | 483 | acorn-jsx@5.3.2: 484 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 485 | peerDependencies: 486 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 487 | 488 | acorn@8.14.0: 489 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 490 | engines: {node: '>=0.4.0'} 491 | hasBin: true 492 | 493 | ai@4.1.7: 494 | resolution: {integrity: sha512-UonRhARlF5/IMUxawJp3KAB2d6uWVajR2EtmE4UjcnZmbk4rbS97zH4Xo0bcuqUTg/rODygRk8Iyky5pxUXPUQ==} 495 | engines: {node: '>=18'} 496 | peerDependencies: 497 | react: ^18 || ^19 || ^19.0.0-rc 498 | zod: ^3.0.0 499 | peerDependenciesMeta: 500 | react: 501 | optional: true 502 | zod: 503 | optional: true 504 | 505 | ajv@6.12.6: 506 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 507 | 508 | ansi-regex@5.0.1: 509 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 510 | engines: {node: '>=8'} 511 | 512 | ansi-regex@6.1.0: 513 | resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} 514 | engines: {node: '>=12'} 515 | 516 | ansi-styles@4.3.0: 517 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 518 | engines: {node: '>=8'} 519 | 520 | ansi-styles@6.2.1: 521 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 522 | engines: {node: '>=12'} 523 | 524 | any-promise@1.3.0: 525 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 526 | 527 | anymatch@3.1.3: 528 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 529 | engines: {node: '>= 8'} 530 | 531 | arg@5.0.2: 532 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 533 | 534 | argparse@2.0.1: 535 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 536 | 537 | aria-query@5.3.2: 538 | resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} 539 | engines: {node: '>= 0.4'} 540 | 541 | array-buffer-byte-length@1.0.2: 542 | resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} 543 | engines: {node: '>= 0.4'} 544 | 545 | array-includes@3.1.8: 546 | resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} 547 | engines: {node: '>= 0.4'} 548 | 549 | array.prototype.findlast@1.2.5: 550 | resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} 551 | engines: {node: '>= 0.4'} 552 | 553 | array.prototype.findlastindex@1.2.5: 554 | resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} 555 | engines: {node: '>= 0.4'} 556 | 557 | array.prototype.flat@1.3.3: 558 | resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==} 559 | engines: {node: '>= 0.4'} 560 | 561 | array.prototype.flatmap@1.3.3: 562 | resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==} 563 | engines: {node: '>= 0.4'} 564 | 565 | array.prototype.tosorted@1.1.4: 566 | resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} 567 | engines: {node: '>= 0.4'} 568 | 569 | arraybuffer.prototype.slice@1.0.4: 570 | resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} 571 | engines: {node: '>= 0.4'} 572 | 573 | ast-types-flow@0.0.8: 574 | resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} 575 | 576 | async-function@1.0.0: 577 | resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} 578 | engines: {node: '>= 0.4'} 579 | 580 | available-typed-arrays@1.0.7: 581 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 582 | engines: {node: '>= 0.4'} 583 | 584 | axe-core@4.10.2: 585 | resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==} 586 | engines: {node: '>=4'} 587 | 588 | axobject-query@4.1.0: 589 | resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 590 | engines: {node: '>= 0.4'} 591 | 592 | balanced-match@1.0.2: 593 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 594 | 595 | binary-extensions@2.3.0: 596 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 597 | engines: {node: '>=8'} 598 | 599 | brace-expansion@1.1.11: 600 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 601 | 602 | brace-expansion@2.0.1: 603 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 604 | 605 | braces@3.0.3: 606 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 607 | engines: {node: '>=8'} 608 | 609 | busboy@1.6.0: 610 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 611 | engines: {node: '>=10.16.0'} 612 | 613 | call-bind-apply-helpers@1.0.1: 614 | resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==} 615 | engines: {node: '>= 0.4'} 616 | 617 | call-bind@1.0.8: 618 | resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} 619 | engines: {node: '>= 0.4'} 620 | 621 | call-bound@1.0.3: 622 | resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==} 623 | engines: {node: '>= 0.4'} 624 | 625 | callsites@3.1.0: 626 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 627 | engines: {node: '>=6'} 628 | 629 | camelcase-css@2.0.1: 630 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 631 | engines: {node: '>= 6'} 632 | 633 | caniuse-lite@1.0.30001695: 634 | resolution: {integrity: sha512-vHyLade6wTgI2u1ec3WQBxv+2BrTERV28UXQu9LO6lZ9pYeMk34vjXFLOxo1A4UBA8XTL4njRQZdno/yYaSmWw==} 635 | 636 | chalk@4.1.2: 637 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 638 | engines: {node: '>=10'} 639 | 640 | chalk@5.4.1: 641 | resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} 642 | engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 643 | 644 | chokidar@3.6.0: 645 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 646 | engines: {node: '>= 8.10.0'} 647 | 648 | client-only@0.0.1: 649 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} 650 | 651 | color-convert@2.0.1: 652 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 653 | engines: {node: '>=7.0.0'} 654 | 655 | color-name@1.1.4: 656 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 657 | 658 | color-string@1.9.1: 659 | resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} 660 | 661 | color@4.2.3: 662 | resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} 663 | engines: {node: '>=12.5.0'} 664 | 665 | commander@10.0.1: 666 | resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} 667 | engines: {node: '>=14'} 668 | 669 | commander@4.1.1: 670 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 671 | engines: {node: '>= 6'} 672 | 673 | concat-map@0.0.1: 674 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 675 | 676 | config-chain@1.1.13: 677 | resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} 678 | 679 | cross-spawn@7.0.6: 680 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 681 | engines: {node: '>= 8'} 682 | 683 | crypto-js@4.2.0: 684 | resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==} 685 | 686 | cssesc@3.0.0: 687 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 688 | engines: {node: '>=4'} 689 | hasBin: true 690 | 691 | csstype@3.1.3: 692 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 693 | 694 | damerau-levenshtein@1.0.8: 695 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 696 | 697 | data-view-buffer@1.0.2: 698 | resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} 699 | engines: {node: '>= 0.4'} 700 | 701 | data-view-byte-length@1.0.2: 702 | resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} 703 | engines: {node: '>= 0.4'} 704 | 705 | data-view-byte-offset@1.0.1: 706 | resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} 707 | engines: {node: '>= 0.4'} 708 | 709 | debug@3.2.7: 710 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 711 | peerDependencies: 712 | supports-color: '*' 713 | peerDependenciesMeta: 714 | supports-color: 715 | optional: true 716 | 717 | debug@4.4.0: 718 | resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} 719 | engines: {node: '>=6.0'} 720 | peerDependencies: 721 | supports-color: '*' 722 | peerDependenciesMeta: 723 | supports-color: 724 | optional: true 725 | 726 | deep-is@0.1.4: 727 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 728 | 729 | deepmerge@4.3.1: 730 | resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} 731 | engines: {node: '>=0.10.0'} 732 | 733 | define-data-property@1.1.4: 734 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 735 | engines: {node: '>= 0.4'} 736 | 737 | define-properties@1.2.1: 738 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 739 | engines: {node: '>= 0.4'} 740 | 741 | dequal@2.0.3: 742 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 743 | engines: {node: '>=6'} 744 | 745 | detect-libc@2.0.3: 746 | resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} 747 | engines: {node: '>=8'} 748 | 749 | didyoumean@1.2.2: 750 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 751 | 752 | diff-match-patch@1.0.5: 753 | resolution: {integrity: sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==} 754 | 755 | dlv@1.1.3: 756 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 757 | 758 | doctrine@2.1.0: 759 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 760 | engines: {node: '>=0.10.0'} 761 | 762 | dom-serializer@2.0.0: 763 | resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} 764 | 765 | domelementtype@2.3.0: 766 | resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} 767 | 768 | domhandler@5.0.3: 769 | resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} 770 | engines: {node: '>= 4'} 771 | 772 | domutils@3.2.2: 773 | resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} 774 | 775 | dunder-proto@1.0.1: 776 | resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} 777 | engines: {node: '>= 0.4'} 778 | 779 | eastasianwidth@0.2.0: 780 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 781 | 782 | editorconfig@1.0.4: 783 | resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==} 784 | engines: {node: '>=14'} 785 | hasBin: true 786 | 787 | emoji-regex@8.0.0: 788 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 789 | 790 | emoji-regex@9.2.2: 791 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 792 | 793 | enhanced-resolve@5.18.0: 794 | resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==} 795 | engines: {node: '>=10.13.0'} 796 | 797 | entities@4.5.0: 798 | resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 799 | engines: {node: '>=0.12'} 800 | 801 | es-abstract@1.23.9: 802 | resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==} 803 | engines: {node: '>= 0.4'} 804 | 805 | es-define-property@1.0.1: 806 | resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} 807 | engines: {node: '>= 0.4'} 808 | 809 | es-errors@1.3.0: 810 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 811 | engines: {node: '>= 0.4'} 812 | 813 | es-iterator-helpers@1.2.1: 814 | resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==} 815 | engines: {node: '>= 0.4'} 816 | 817 | es-object-atoms@1.1.1: 818 | resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} 819 | engines: {node: '>= 0.4'} 820 | 821 | es-set-tostringtag@2.1.0: 822 | resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} 823 | engines: {node: '>= 0.4'} 824 | 825 | es-shim-unscopables@1.0.2: 826 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 827 | 828 | es-to-primitive@1.3.0: 829 | resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} 830 | engines: {node: '>= 0.4'} 831 | 832 | escape-string-regexp@4.0.0: 833 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 834 | engines: {node: '>=10'} 835 | 836 | eslint-config-next@15.1.6: 837 | resolution: {integrity: sha512-Wd1uy6y7nBbXUSg9QAuQ+xYEKli5CgUhLjz1QHW11jLDis5vK5XB3PemL6jEmy7HrdhaRFDz+GTZ/3FoH+EUjg==} 838 | peerDependencies: 839 | eslint: ^7.23.0 || ^8.0.0 || ^9.0.0 840 | typescript: '>=3.3.1' 841 | peerDependenciesMeta: 842 | typescript: 843 | optional: true 844 | 845 | eslint-import-resolver-node@0.3.9: 846 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 847 | 848 | eslint-import-resolver-typescript@3.7.0: 849 | resolution: {integrity: sha512-Vrwyi8HHxY97K5ebydMtffsWAn1SCR9eol49eCd5fJS4O1WV7PaAjbcjmbfJJSMz/t4Mal212Uz/fQZrOB8mow==} 850 | engines: {node: ^14.18.0 || >=16.0.0} 851 | peerDependencies: 852 | eslint: '*' 853 | eslint-plugin-import: '*' 854 | eslint-plugin-import-x: '*' 855 | peerDependenciesMeta: 856 | eslint-plugin-import: 857 | optional: true 858 | eslint-plugin-import-x: 859 | optional: true 860 | 861 | eslint-module-utils@2.12.0: 862 | resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} 863 | engines: {node: '>=4'} 864 | peerDependencies: 865 | '@typescript-eslint/parser': '*' 866 | eslint: '*' 867 | eslint-import-resolver-node: '*' 868 | eslint-import-resolver-typescript: '*' 869 | eslint-import-resolver-webpack: '*' 870 | peerDependenciesMeta: 871 | '@typescript-eslint/parser': 872 | optional: true 873 | eslint: 874 | optional: true 875 | eslint-import-resolver-node: 876 | optional: true 877 | eslint-import-resolver-typescript: 878 | optional: true 879 | eslint-import-resolver-webpack: 880 | optional: true 881 | 882 | eslint-plugin-import@2.31.0: 883 | resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} 884 | engines: {node: '>=4'} 885 | peerDependencies: 886 | '@typescript-eslint/parser': '*' 887 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 888 | peerDependenciesMeta: 889 | '@typescript-eslint/parser': 890 | optional: true 891 | 892 | eslint-plugin-jsx-a11y@6.10.2: 893 | resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==} 894 | engines: {node: '>=4.0'} 895 | peerDependencies: 896 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 897 | 898 | eslint-plugin-react-hooks@5.1.0: 899 | resolution: {integrity: sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==} 900 | engines: {node: '>=10'} 901 | peerDependencies: 902 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 903 | 904 | eslint-plugin-react@7.37.4: 905 | resolution: {integrity: sha512-BGP0jRmfYyvOyvMoRX/uoUeW+GqNj9y16bPQzqAHf3AYII/tDs+jMN0dBVkl88/OZwNGwrVFxE7riHsXVfy/LQ==} 906 | engines: {node: '>=4'} 907 | peerDependencies: 908 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 909 | 910 | eslint-scope@8.2.0: 911 | resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==} 912 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 913 | 914 | eslint-visitor-keys@3.4.3: 915 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 916 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 917 | 918 | eslint-visitor-keys@4.2.0: 919 | resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} 920 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 921 | 922 | eslint@9.19.0: 923 | resolution: {integrity: sha512-ug92j0LepKlbbEv6hD911THhoRHmbdXt2gX+VDABAW/Ir7D3nqKdv5Pf5vtlyY6HQMTEP2skXY43ueqTCWssEA==} 924 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 925 | hasBin: true 926 | peerDependencies: 927 | jiti: '*' 928 | peerDependenciesMeta: 929 | jiti: 930 | optional: true 931 | 932 | espree@10.3.0: 933 | resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} 934 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 935 | 936 | esquery@1.6.0: 937 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 938 | engines: {node: '>=0.10'} 939 | 940 | esrecurse@4.3.0: 941 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 942 | engines: {node: '>=4.0'} 943 | 944 | estraverse@5.3.0: 945 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 946 | engines: {node: '>=4.0'} 947 | 948 | esutils@2.0.3: 949 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 950 | engines: {node: '>=0.10.0'} 951 | 952 | eventsource-parser@3.0.0: 953 | resolution: {integrity: sha512-T1C0XCUimhxVQzW4zFipdx0SficT651NnkR0ZSH3yQwh+mFMdLfgjABVi4YtMTtaL4s168593DaoaRLMqryavA==} 954 | engines: {node: '>=18.0.0'} 955 | 956 | fast-deep-equal@2.0.1: 957 | resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==} 958 | 959 | fast-deep-equal@3.1.3: 960 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 961 | 962 | fast-glob@3.3.1: 963 | resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} 964 | engines: {node: '>=8.6.0'} 965 | 966 | fast-glob@3.3.3: 967 | resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} 968 | engines: {node: '>=8.6.0'} 969 | 970 | fast-json-stable-stringify@2.1.0: 971 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 972 | 973 | fast-levenshtein@2.0.6: 974 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 975 | 976 | fastq@1.18.0: 977 | resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==} 978 | 979 | file-entry-cache@8.0.0: 980 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} 981 | engines: {node: '>=16.0.0'} 982 | 983 | fill-range@7.1.1: 984 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 985 | engines: {node: '>=8'} 986 | 987 | find-up@5.0.0: 988 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 989 | engines: {node: '>=10'} 990 | 991 | flat-cache@4.0.1: 992 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} 993 | engines: {node: '>=16'} 994 | 995 | flatted@3.3.2: 996 | resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} 997 | 998 | for-each@0.3.4: 999 | resolution: {integrity: sha512-kKaIINnFpzW6ffJNDjjyjrk21BkDx38c0xa/klsT8VzLCaMEefv4ZTacrcVR4DmgTeBra++jMDAfS/tS799YDw==} 1000 | engines: {node: '>= 0.4'} 1001 | 1002 | foreground-child@3.3.0: 1003 | resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} 1004 | engines: {node: '>=14'} 1005 | 1006 | fsevents@2.3.3: 1007 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1008 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1009 | os: [darwin] 1010 | 1011 | function-bind@1.1.2: 1012 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 1013 | 1014 | function.prototype.name@1.1.8: 1015 | resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} 1016 | engines: {node: '>= 0.4'} 1017 | 1018 | functions-have-names@1.2.3: 1019 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1020 | 1021 | get-intrinsic@1.2.7: 1022 | resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==} 1023 | engines: {node: '>= 0.4'} 1024 | 1025 | get-proto@1.0.1: 1026 | resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} 1027 | engines: {node: '>= 0.4'} 1028 | 1029 | get-symbol-description@1.1.0: 1030 | resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} 1031 | engines: {node: '>= 0.4'} 1032 | 1033 | get-tsconfig@4.10.0: 1034 | resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==} 1035 | 1036 | glob-parent@5.1.2: 1037 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1038 | engines: {node: '>= 6'} 1039 | 1040 | glob-parent@6.0.2: 1041 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1042 | engines: {node: '>=10.13.0'} 1043 | 1044 | glob@10.4.5: 1045 | resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} 1046 | hasBin: true 1047 | 1048 | globals@14.0.0: 1049 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} 1050 | engines: {node: '>=18'} 1051 | 1052 | globalthis@1.0.4: 1053 | resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} 1054 | engines: {node: '>= 0.4'} 1055 | 1056 | gopd@1.2.0: 1057 | resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} 1058 | engines: {node: '>= 0.4'} 1059 | 1060 | graceful-fs@4.2.11: 1061 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1062 | 1063 | graphemer@1.4.0: 1064 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 1065 | 1066 | has-bigints@1.1.0: 1067 | resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} 1068 | engines: {node: '>= 0.4'} 1069 | 1070 | has-flag@4.0.0: 1071 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1072 | engines: {node: '>=8'} 1073 | 1074 | has-property-descriptors@1.0.2: 1075 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 1076 | 1077 | has-proto@1.2.0: 1078 | resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} 1079 | engines: {node: '>= 0.4'} 1080 | 1081 | has-symbols@1.1.0: 1082 | resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} 1083 | engines: {node: '>= 0.4'} 1084 | 1085 | has-tostringtag@1.0.2: 1086 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 1087 | engines: {node: '>= 0.4'} 1088 | 1089 | hasown@2.0.2: 1090 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 1091 | engines: {node: '>= 0.4'} 1092 | 1093 | html-to-text@9.0.5: 1094 | resolution: {integrity: sha512-qY60FjREgVZL03vJU6IfMV4GDjGBIoOyvuFdpBDIX9yTlDw0TjxVBQp+P8NvpdIXNJvfWBTNul7fsAQJq2FNpg==} 1095 | engines: {node: '>=14'} 1096 | 1097 | htmlparser2@8.0.2: 1098 | resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} 1099 | 1100 | ignore@5.3.2: 1101 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 1102 | engines: {node: '>= 4'} 1103 | 1104 | import-fresh@3.3.0: 1105 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1106 | engines: {node: '>=6'} 1107 | 1108 | imurmurhash@0.1.4: 1109 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1110 | engines: {node: '>=0.8.19'} 1111 | 1112 | ini@1.3.8: 1113 | resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 1114 | 1115 | internal-slot@1.1.0: 1116 | resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} 1117 | engines: {node: '>= 0.4'} 1118 | 1119 | is-array-buffer@3.0.5: 1120 | resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} 1121 | engines: {node: '>= 0.4'} 1122 | 1123 | is-arrayish@0.3.2: 1124 | resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} 1125 | 1126 | is-async-function@2.1.1: 1127 | resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} 1128 | engines: {node: '>= 0.4'} 1129 | 1130 | is-bigint@1.1.0: 1131 | resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} 1132 | engines: {node: '>= 0.4'} 1133 | 1134 | is-binary-path@2.1.0: 1135 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 1136 | engines: {node: '>=8'} 1137 | 1138 | is-boolean-object@1.2.1: 1139 | resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==} 1140 | engines: {node: '>= 0.4'} 1141 | 1142 | is-bun-module@1.3.0: 1143 | resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==} 1144 | 1145 | is-callable@1.2.7: 1146 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1147 | engines: {node: '>= 0.4'} 1148 | 1149 | is-core-module@2.16.1: 1150 | resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} 1151 | engines: {node: '>= 0.4'} 1152 | 1153 | is-data-view@1.0.2: 1154 | resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} 1155 | engines: {node: '>= 0.4'} 1156 | 1157 | is-date-object@1.1.0: 1158 | resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} 1159 | engines: {node: '>= 0.4'} 1160 | 1161 | is-extglob@2.1.1: 1162 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1163 | engines: {node: '>=0.10.0'} 1164 | 1165 | is-finalizationregistry@1.1.1: 1166 | resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} 1167 | engines: {node: '>= 0.4'} 1168 | 1169 | is-fullwidth-code-point@3.0.0: 1170 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1171 | engines: {node: '>=8'} 1172 | 1173 | is-generator-function@1.1.0: 1174 | resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==} 1175 | engines: {node: '>= 0.4'} 1176 | 1177 | is-glob@4.0.3: 1178 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1179 | engines: {node: '>=0.10.0'} 1180 | 1181 | is-map@2.0.3: 1182 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 1183 | engines: {node: '>= 0.4'} 1184 | 1185 | is-number-object@1.1.1: 1186 | resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} 1187 | engines: {node: '>= 0.4'} 1188 | 1189 | is-number@7.0.0: 1190 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1191 | engines: {node: '>=0.12.0'} 1192 | 1193 | is-regex@1.2.1: 1194 | resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} 1195 | engines: {node: '>= 0.4'} 1196 | 1197 | is-set@2.0.3: 1198 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} 1199 | engines: {node: '>= 0.4'} 1200 | 1201 | is-shared-array-buffer@1.0.4: 1202 | resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} 1203 | engines: {node: '>= 0.4'} 1204 | 1205 | is-string@1.1.1: 1206 | resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} 1207 | engines: {node: '>= 0.4'} 1208 | 1209 | is-symbol@1.1.1: 1210 | resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} 1211 | engines: {node: '>= 0.4'} 1212 | 1213 | is-typed-array@1.1.15: 1214 | resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} 1215 | engines: {node: '>= 0.4'} 1216 | 1217 | is-weakmap@2.0.2: 1218 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} 1219 | engines: {node: '>= 0.4'} 1220 | 1221 | is-weakref@1.1.0: 1222 | resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==} 1223 | engines: {node: '>= 0.4'} 1224 | 1225 | is-weakset@2.0.4: 1226 | resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} 1227 | engines: {node: '>= 0.4'} 1228 | 1229 | isarray@2.0.5: 1230 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 1231 | 1232 | isexe@2.0.0: 1233 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1234 | 1235 | iterator.prototype@1.1.5: 1236 | resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==} 1237 | engines: {node: '>= 0.4'} 1238 | 1239 | jackspeak@3.4.3: 1240 | resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} 1241 | 1242 | jiti@1.21.7: 1243 | resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==} 1244 | hasBin: true 1245 | 1246 | jose@5.9.6: 1247 | resolution: {integrity: sha512-AMlnetc9+CV9asI19zHmrgS/WYsWUwCn2R7RzlbJWD7F9eWYUTGyBmU9o6PxngtLGOiDGPRu+Uc4fhKzbpteZQ==} 1248 | 1249 | js-beautify@1.15.1: 1250 | resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==} 1251 | engines: {node: '>=14'} 1252 | hasBin: true 1253 | 1254 | js-cookie@3.0.5: 1255 | resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} 1256 | engines: {node: '>=14'} 1257 | 1258 | js-tokens@4.0.0: 1259 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1260 | 1261 | js-yaml@4.1.0: 1262 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1263 | hasBin: true 1264 | 1265 | json-buffer@3.0.1: 1266 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1267 | 1268 | json-schema-traverse@0.4.1: 1269 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1270 | 1271 | json-schema@0.4.0: 1272 | resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} 1273 | 1274 | json-stable-stringify-without-jsonify@1.0.1: 1275 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1276 | 1277 | json5@1.0.2: 1278 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 1279 | hasBin: true 1280 | 1281 | jsondiffpatch@0.6.0: 1282 | resolution: {integrity: sha512-3QItJOXp2AP1uv7waBkao5nCvhEv+QmJAd38Ybq7wNI74Q+BBmnLn4EDKz6yI9xGAIQoUF87qHt+kc1IVxB4zQ==} 1283 | engines: {node: ^18.0.0 || >=20.0.0} 1284 | hasBin: true 1285 | 1286 | jsx-ast-utils@3.3.5: 1287 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} 1288 | engines: {node: '>=4.0'} 1289 | 1290 | keyv@4.5.4: 1291 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1292 | 1293 | language-subtag-registry@0.3.23: 1294 | resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} 1295 | 1296 | language-tags@1.0.9: 1297 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} 1298 | engines: {node: '>=0.10'} 1299 | 1300 | leac@0.6.0: 1301 | resolution: {integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==} 1302 | 1303 | levn@0.4.1: 1304 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1305 | engines: {node: '>= 0.8.0'} 1306 | 1307 | lilconfig@3.1.3: 1308 | resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} 1309 | engines: {node: '>=14'} 1310 | 1311 | lines-and-columns@1.2.4: 1312 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1313 | 1314 | locate-path@6.0.0: 1315 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1316 | engines: {node: '>=10'} 1317 | 1318 | lodash.merge@4.6.2: 1319 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1320 | 1321 | loose-envify@1.4.0: 1322 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 1323 | hasBin: true 1324 | 1325 | lru-cache@10.4.3: 1326 | resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 1327 | 1328 | math-intrinsics@1.1.0: 1329 | resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} 1330 | engines: {node: '>= 0.4'} 1331 | 1332 | merge2@1.4.1: 1333 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1334 | engines: {node: '>= 8'} 1335 | 1336 | micromatch@4.0.8: 1337 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1338 | engines: {node: '>=8.6'} 1339 | 1340 | minimatch@3.1.2: 1341 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1342 | 1343 | minimatch@9.0.1: 1344 | resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} 1345 | engines: {node: '>=16 || 14 >=14.17'} 1346 | 1347 | minimatch@9.0.5: 1348 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 1349 | engines: {node: '>=16 || 14 >=14.17'} 1350 | 1351 | minimist@1.2.8: 1352 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1353 | 1354 | minipass@7.1.2: 1355 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 1356 | engines: {node: '>=16 || 14 >=14.17'} 1357 | 1358 | ms@2.1.3: 1359 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1360 | 1361 | mz@2.7.0: 1362 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 1363 | 1364 | nanoid@3.3.8: 1365 | resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} 1366 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1367 | hasBin: true 1368 | 1369 | natural-compare@1.4.0: 1370 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1371 | 1372 | neverthrow@7.2.0: 1373 | resolution: {integrity: sha512-iGBUfFB7yPczHHtA8dksKTJ9E8TESNTAx1UQWW6TzMF280vo9jdPYpLUXrMN1BCkPdHFdNG3fxOt2CUad8KhAw==} 1374 | engines: {node: '>=18'} 1375 | 1376 | next@15.1.6: 1377 | resolution: {integrity: sha512-Hch4wzbaX0vKQtalpXvUiw5sYivBy4cm5rzUKrBnUB/y436LGrvOUqYvlSeNVCWFO/770gDlltR9gqZH62ct4Q==} 1378 | engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} 1379 | hasBin: true 1380 | peerDependencies: 1381 | '@opentelemetry/api': ^1.1.0 1382 | '@playwright/test': ^1.41.2 1383 | babel-plugin-react-compiler: '*' 1384 | react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 1385 | react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 1386 | sass: ^1.3.0 1387 | peerDependenciesMeta: 1388 | '@opentelemetry/api': 1389 | optional: true 1390 | '@playwright/test': 1391 | optional: true 1392 | babel-plugin-react-compiler: 1393 | optional: true 1394 | sass: 1395 | optional: true 1396 | 1397 | node-ensure@0.0.0: 1398 | resolution: {integrity: sha512-DRI60hzo2oKN1ma0ckc6nQWlHU69RH6xN0sjQTjMpChPfTYvKZdcQFfdYK2RWbJcKyUizSIy/l8OTGxMAM1QDw==} 1399 | 1400 | nopt@7.2.1: 1401 | resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} 1402 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 1403 | hasBin: true 1404 | 1405 | normalize-path@3.0.0: 1406 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1407 | engines: {node: '>=0.10.0'} 1408 | 1409 | object-assign@4.1.1: 1410 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1411 | engines: {node: '>=0.10.0'} 1412 | 1413 | object-hash@3.0.0: 1414 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 1415 | engines: {node: '>= 6'} 1416 | 1417 | object-inspect@1.13.3: 1418 | resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} 1419 | engines: {node: '>= 0.4'} 1420 | 1421 | object-keys@1.1.1: 1422 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1423 | engines: {node: '>= 0.4'} 1424 | 1425 | object.assign@4.1.7: 1426 | resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} 1427 | engines: {node: '>= 0.4'} 1428 | 1429 | object.entries@1.1.8: 1430 | resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} 1431 | engines: {node: '>= 0.4'} 1432 | 1433 | object.fromentries@2.0.8: 1434 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} 1435 | engines: {node: '>= 0.4'} 1436 | 1437 | object.groupby@1.0.3: 1438 | resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} 1439 | engines: {node: '>= 0.4'} 1440 | 1441 | object.values@1.2.1: 1442 | resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} 1443 | engines: {node: '>= 0.4'} 1444 | 1445 | optionator@0.9.4: 1446 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1447 | engines: {node: '>= 0.8.0'} 1448 | 1449 | own-keys@1.0.1: 1450 | resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} 1451 | engines: {node: '>= 0.4'} 1452 | 1453 | p-limit@3.1.0: 1454 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1455 | engines: {node: '>=10'} 1456 | 1457 | p-locate@5.0.0: 1458 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1459 | engines: {node: '>=10'} 1460 | 1461 | package-json-from-dist@1.0.1: 1462 | resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} 1463 | 1464 | parent-module@1.0.1: 1465 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1466 | engines: {node: '>=6'} 1467 | 1468 | parseley@0.12.1: 1469 | resolution: {integrity: sha512-e6qHKe3a9HWr0oMRVDTRhKce+bRO8VGQR3NyVwcjwrbhMmFCX9KszEV35+rn4AdilFAq9VPxP/Fe1wC9Qjd2lw==} 1470 | 1471 | path-exists@4.0.0: 1472 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1473 | engines: {node: '>=8'} 1474 | 1475 | path-key@3.1.1: 1476 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1477 | engines: {node: '>=8'} 1478 | 1479 | path-parse@1.0.7: 1480 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1481 | 1482 | path-scurry@1.11.1: 1483 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} 1484 | engines: {node: '>=16 || 14 >=14.18'} 1485 | 1486 | pdf-parse@1.1.1: 1487 | resolution: {integrity: sha512-v6ZJ/efsBpGrGGknjtq9J/oC8tZWq0KWL5vQrk2GlzLEQPUDB1ex+13Rmidl1neNN358Jn9EHZw5y07FFtaC7A==} 1488 | engines: {node: '>=6.8.1'} 1489 | 1490 | peberminta@0.9.0: 1491 | resolution: {integrity: sha512-XIxfHpEuSJbITd1H3EeQwpcZbTLHc+VVr8ANI9t5sit565tsI4/xK3KWTUFE2e6QiangUkh3B0jihzmGnNrRsQ==} 1492 | 1493 | picocolors@1.1.1: 1494 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1495 | 1496 | picomatch@2.3.1: 1497 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1498 | engines: {node: '>=8.6'} 1499 | 1500 | pify@2.3.0: 1501 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 1502 | engines: {node: '>=0.10.0'} 1503 | 1504 | pirates@4.0.6: 1505 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 1506 | engines: {node: '>= 6'} 1507 | 1508 | possible-typed-array-names@1.0.0: 1509 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} 1510 | engines: {node: '>= 0.4'} 1511 | 1512 | postcss-import@15.1.0: 1513 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 1514 | engines: {node: '>=14.0.0'} 1515 | peerDependencies: 1516 | postcss: ^8.0.0 1517 | 1518 | postcss-js@4.0.1: 1519 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 1520 | engines: {node: ^12 || ^14 || >= 16} 1521 | peerDependencies: 1522 | postcss: ^8.4.21 1523 | 1524 | postcss-load-config@4.0.2: 1525 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} 1526 | engines: {node: '>= 14'} 1527 | peerDependencies: 1528 | postcss: '>=8.0.9' 1529 | ts-node: '>=9.0.0' 1530 | peerDependenciesMeta: 1531 | postcss: 1532 | optional: true 1533 | ts-node: 1534 | optional: true 1535 | 1536 | postcss-nested@6.2.0: 1537 | resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} 1538 | engines: {node: '>=12.0'} 1539 | peerDependencies: 1540 | postcss: ^8.2.14 1541 | 1542 | postcss-selector-parser@6.1.2: 1543 | resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} 1544 | engines: {node: '>=4'} 1545 | 1546 | postcss-value-parser@4.2.0: 1547 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 1548 | 1549 | postcss@8.4.31: 1550 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} 1551 | engines: {node: ^10 || ^12 || >=14} 1552 | 1553 | postcss@8.5.1: 1554 | resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==} 1555 | engines: {node: ^10 || ^12 || >=14} 1556 | 1557 | prelude-ls@1.2.1: 1558 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1559 | engines: {node: '>= 0.8.0'} 1560 | 1561 | prop-types@15.8.1: 1562 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 1563 | 1564 | proto-list@1.2.4: 1565 | resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} 1566 | 1567 | punycode@2.3.1: 1568 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1569 | engines: {node: '>=6'} 1570 | 1571 | queue-microtask@1.2.3: 1572 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1573 | 1574 | react-dom@19.0.0: 1575 | resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==} 1576 | peerDependencies: 1577 | react: ^19.0.0 1578 | 1579 | react-is@16.13.1: 1580 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 1581 | 1582 | react-promise-suspense@0.3.4: 1583 | resolution: {integrity: sha512-I42jl7L3Ze6kZaq+7zXWSunBa3b1on5yfvUW6Eo/3fFOj6dZ5Bqmcd264nJbTK/gn1HjjILAjSwnZbV4RpSaNQ==} 1584 | 1585 | react@19.0.0: 1586 | resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==} 1587 | engines: {node: '>=0.10.0'} 1588 | 1589 | read-cache@1.0.0: 1590 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 1591 | 1592 | readdirp@3.6.0: 1593 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 1594 | engines: {node: '>=8.10.0'} 1595 | 1596 | reflect.getprototypeof@1.0.10: 1597 | resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} 1598 | engines: {node: '>= 0.4'} 1599 | 1600 | regexp.prototype.flags@1.5.4: 1601 | resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} 1602 | engines: {node: '>= 0.4'} 1603 | 1604 | resend@4.1.1: 1605 | resolution: {integrity: sha512-nkcRpIOgPb3sFPA/GyOTr6Vmlrkhwsu+XlC20kKbbebOfw0WbAjbBbJ1m4AcjKOkPf57O4DH9Bnbxi9i18JYng==} 1606 | engines: {node: '>=18'} 1607 | 1608 | resolve-from@4.0.0: 1609 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1610 | engines: {node: '>=4'} 1611 | 1612 | resolve-pkg-maps@1.0.0: 1613 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 1614 | 1615 | resolve@1.22.10: 1616 | resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} 1617 | engines: {node: '>= 0.4'} 1618 | hasBin: true 1619 | 1620 | resolve@2.0.0-next.5: 1621 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 1622 | hasBin: true 1623 | 1624 | reusify@1.0.4: 1625 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1626 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1627 | 1628 | run-parallel@1.2.0: 1629 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1630 | 1631 | safe-array-concat@1.1.3: 1632 | resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} 1633 | engines: {node: '>=0.4'} 1634 | 1635 | safe-push-apply@1.0.0: 1636 | resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} 1637 | engines: {node: '>= 0.4'} 1638 | 1639 | safe-regex-test@1.1.0: 1640 | resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} 1641 | engines: {node: '>= 0.4'} 1642 | 1643 | scheduler@0.25.0: 1644 | resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} 1645 | 1646 | secure-json-parse@2.7.0: 1647 | resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==} 1648 | 1649 | selderee@0.11.0: 1650 | resolution: {integrity: sha512-5TF+l7p4+OsnP8BCCvSyZiSPc4x4//p5uPwK8TCnVPJYRmU2aYKMpOXvw8zM5a5JvuuCGN1jmsMwuU2W02ukfA==} 1651 | 1652 | semver@6.3.1: 1653 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 1654 | hasBin: true 1655 | 1656 | semver@7.6.3: 1657 | resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 1658 | engines: {node: '>=10'} 1659 | hasBin: true 1660 | 1661 | set-function-length@1.2.2: 1662 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 1663 | engines: {node: '>= 0.4'} 1664 | 1665 | set-function-name@2.0.2: 1666 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 1667 | engines: {node: '>= 0.4'} 1668 | 1669 | set-proto@1.0.0: 1670 | resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} 1671 | engines: {node: '>= 0.4'} 1672 | 1673 | sharp@0.33.5: 1674 | resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} 1675 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1676 | 1677 | shebang-command@2.0.0: 1678 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1679 | engines: {node: '>=8'} 1680 | 1681 | shebang-regex@3.0.0: 1682 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1683 | engines: {node: '>=8'} 1684 | 1685 | side-channel-list@1.0.0: 1686 | resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} 1687 | engines: {node: '>= 0.4'} 1688 | 1689 | side-channel-map@1.0.1: 1690 | resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} 1691 | engines: {node: '>= 0.4'} 1692 | 1693 | side-channel-weakmap@1.0.2: 1694 | resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} 1695 | engines: {node: '>= 0.4'} 1696 | 1697 | side-channel@1.1.0: 1698 | resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} 1699 | engines: {node: '>= 0.4'} 1700 | 1701 | signal-exit@4.1.0: 1702 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 1703 | engines: {node: '>=14'} 1704 | 1705 | simple-swizzle@0.2.2: 1706 | resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} 1707 | 1708 | source-map-js@1.2.1: 1709 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1710 | engines: {node: '>=0.10.0'} 1711 | 1712 | stable-hash@0.0.4: 1713 | resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==} 1714 | 1715 | streamsearch@1.1.0: 1716 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 1717 | engines: {node: '>=10.0.0'} 1718 | 1719 | string-width@4.2.3: 1720 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1721 | engines: {node: '>=8'} 1722 | 1723 | string-width@5.1.2: 1724 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 1725 | engines: {node: '>=12'} 1726 | 1727 | string.prototype.includes@2.0.1: 1728 | resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==} 1729 | engines: {node: '>= 0.4'} 1730 | 1731 | string.prototype.matchall@4.0.12: 1732 | resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==} 1733 | engines: {node: '>= 0.4'} 1734 | 1735 | string.prototype.repeat@1.0.0: 1736 | resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==} 1737 | 1738 | string.prototype.trim@1.2.10: 1739 | resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} 1740 | engines: {node: '>= 0.4'} 1741 | 1742 | string.prototype.trimend@1.0.9: 1743 | resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} 1744 | engines: {node: '>= 0.4'} 1745 | 1746 | string.prototype.trimstart@1.0.8: 1747 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} 1748 | engines: {node: '>= 0.4'} 1749 | 1750 | strip-ansi@6.0.1: 1751 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1752 | engines: {node: '>=8'} 1753 | 1754 | strip-ansi@7.1.0: 1755 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 1756 | engines: {node: '>=12'} 1757 | 1758 | strip-bom@3.0.0: 1759 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 1760 | engines: {node: '>=4'} 1761 | 1762 | strip-json-comments@3.1.1: 1763 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1764 | engines: {node: '>=8'} 1765 | 1766 | styled-jsx@5.1.6: 1767 | resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==} 1768 | engines: {node: '>= 12.0.0'} 1769 | peerDependencies: 1770 | '@babel/core': '*' 1771 | babel-plugin-macros: '*' 1772 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0' 1773 | peerDependenciesMeta: 1774 | '@babel/core': 1775 | optional: true 1776 | babel-plugin-macros: 1777 | optional: true 1778 | 1779 | sucrase@3.35.0: 1780 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} 1781 | engines: {node: '>=16 || 14 >=14.17'} 1782 | hasBin: true 1783 | 1784 | supports-color@7.2.0: 1785 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1786 | engines: {node: '>=8'} 1787 | 1788 | supports-preserve-symlinks-flag@1.0.0: 1789 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1790 | engines: {node: '>= 0.4'} 1791 | 1792 | swr@2.3.0: 1793 | resolution: {integrity: sha512-NyZ76wA4yElZWBHzSgEJc28a0u6QZvhb6w0azeL2k7+Q1gAzVK+IqQYXhVOC/mzi+HZIozrZvBVeSeOZNR2bqA==} 1794 | peerDependencies: 1795 | react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 1796 | 1797 | tailwindcss@3.4.17: 1798 | resolution: {integrity: sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==} 1799 | engines: {node: '>=14.0.0'} 1800 | hasBin: true 1801 | 1802 | tapable@2.2.1: 1803 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 1804 | engines: {node: '>=6'} 1805 | 1806 | thenify-all@1.6.0: 1807 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 1808 | engines: {node: '>=0.8'} 1809 | 1810 | thenify@3.3.1: 1811 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 1812 | 1813 | throttleit@2.1.0: 1814 | resolution: {integrity: sha512-nt6AMGKW1p/70DF/hGBdJB57B8Tspmbp5gfJ8ilhLnt7kkr2ye7hzD6NVG8GGErk2HWF34igrL2CXmNIkzKqKw==} 1815 | engines: {node: '>=18'} 1816 | 1817 | to-regex-range@5.0.1: 1818 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1819 | engines: {node: '>=8.0'} 1820 | 1821 | ts-api-utils@2.0.0: 1822 | resolution: {integrity: sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==} 1823 | engines: {node: '>=18.12'} 1824 | peerDependencies: 1825 | typescript: '>=4.8.4' 1826 | 1827 | ts-interface-checker@0.1.13: 1828 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 1829 | 1830 | tsconfig-paths@3.15.0: 1831 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} 1832 | 1833 | tslib@2.8.1: 1834 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 1835 | 1836 | type-check@0.4.0: 1837 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1838 | engines: {node: '>= 0.8.0'} 1839 | 1840 | typed-array-buffer@1.0.3: 1841 | resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} 1842 | engines: {node: '>= 0.4'} 1843 | 1844 | typed-array-byte-length@1.0.3: 1845 | resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} 1846 | engines: {node: '>= 0.4'} 1847 | 1848 | typed-array-byte-offset@1.0.4: 1849 | resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} 1850 | engines: {node: '>= 0.4'} 1851 | 1852 | typed-array-length@1.0.7: 1853 | resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} 1854 | engines: {node: '>= 0.4'} 1855 | 1856 | typescript@5.7.3: 1857 | resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==} 1858 | engines: {node: '>=14.17'} 1859 | hasBin: true 1860 | 1861 | unbox-primitive@1.1.0: 1862 | resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} 1863 | engines: {node: '>= 0.4'} 1864 | 1865 | undici-types@6.19.8: 1866 | resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} 1867 | 1868 | uri-js@4.4.1: 1869 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1870 | 1871 | use-sync-external-store@1.4.0: 1872 | resolution: {integrity: sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==} 1873 | peerDependencies: 1874 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 1875 | 1876 | util-deprecate@1.0.2: 1877 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1878 | 1879 | which-boxed-primitive@1.1.1: 1880 | resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} 1881 | engines: {node: '>= 0.4'} 1882 | 1883 | which-builtin-type@1.2.1: 1884 | resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} 1885 | engines: {node: '>= 0.4'} 1886 | 1887 | which-collection@1.0.2: 1888 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} 1889 | engines: {node: '>= 0.4'} 1890 | 1891 | which-typed-array@1.1.18: 1892 | resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==} 1893 | engines: {node: '>= 0.4'} 1894 | 1895 | which@2.0.2: 1896 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1897 | engines: {node: '>= 8'} 1898 | hasBin: true 1899 | 1900 | word-wrap@1.2.5: 1901 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 1902 | engines: {node: '>=0.10.0'} 1903 | 1904 | wrap-ansi@7.0.0: 1905 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 1906 | engines: {node: '>=10'} 1907 | 1908 | wrap-ansi@8.1.0: 1909 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 1910 | engines: {node: '>=12'} 1911 | 1912 | yaml@2.7.0: 1913 | resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==} 1914 | engines: {node: '>= 14'} 1915 | hasBin: true 1916 | 1917 | yocto-queue@0.1.0: 1918 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1919 | engines: {node: '>=10'} 1920 | 1921 | zod-to-json-schema@3.24.1: 1922 | resolution: {integrity: sha512-3h08nf3Vw3Wl3PK+q3ow/lIil81IT2Oa7YpQyUUDsEWbXveMesdfK1xBd2RhCkynwZndAxixji/7SYJJowr62w==} 1923 | peerDependencies: 1924 | zod: ^3.24.1 1925 | 1926 | zod@3.24.1: 1927 | resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==} 1928 | 1929 | snapshots: 1930 | 1931 | '@ai-sdk/openai@1.1.4(zod@3.24.1)': 1932 | dependencies: 1933 | '@ai-sdk/provider': 1.0.6 1934 | '@ai-sdk/provider-utils': 2.1.4(zod@3.24.1) 1935 | zod: 3.24.1 1936 | 1937 | '@ai-sdk/provider-utils@2.1.4(zod@3.24.1)': 1938 | dependencies: 1939 | '@ai-sdk/provider': 1.0.6 1940 | eventsource-parser: 3.0.0 1941 | nanoid: 3.3.8 1942 | secure-json-parse: 2.7.0 1943 | optionalDependencies: 1944 | zod: 3.24.1 1945 | 1946 | '@ai-sdk/provider@1.0.6': 1947 | dependencies: 1948 | json-schema: 0.4.0 1949 | 1950 | '@ai-sdk/react@1.1.5(react@19.0.0)(zod@3.24.1)': 1951 | dependencies: 1952 | '@ai-sdk/provider-utils': 2.1.4(zod@3.24.1) 1953 | '@ai-sdk/ui-utils': 1.1.5(zod@3.24.1) 1954 | swr: 2.3.0(react@19.0.0) 1955 | throttleit: 2.1.0 1956 | optionalDependencies: 1957 | react: 19.0.0 1958 | zod: 3.24.1 1959 | 1960 | '@ai-sdk/ui-utils@1.1.5(zod@3.24.1)': 1961 | dependencies: 1962 | '@ai-sdk/provider': 1.0.6 1963 | '@ai-sdk/provider-utils': 2.1.4(zod@3.24.1) 1964 | zod-to-json-schema: 3.24.1(zod@3.24.1) 1965 | optionalDependencies: 1966 | zod: 3.24.1 1967 | 1968 | '@alloc/quick-lru@5.2.0': {} 1969 | 1970 | '@emnapi/runtime@1.3.1': 1971 | dependencies: 1972 | tslib: 2.8.1 1973 | optional: true 1974 | 1975 | '@eslint-community/eslint-utils@4.4.1(eslint@9.19.0(jiti@1.21.7))': 1976 | dependencies: 1977 | eslint: 9.19.0(jiti@1.21.7) 1978 | eslint-visitor-keys: 3.4.3 1979 | 1980 | '@eslint-community/regexpp@4.12.1': {} 1981 | 1982 | '@eslint/config-array@0.19.1': 1983 | dependencies: 1984 | '@eslint/object-schema': 2.1.5 1985 | debug: 4.4.0 1986 | minimatch: 3.1.2 1987 | transitivePeerDependencies: 1988 | - supports-color 1989 | 1990 | '@eslint/core@0.10.0': 1991 | dependencies: 1992 | '@types/json-schema': 7.0.15 1993 | 1994 | '@eslint/eslintrc@3.2.0': 1995 | dependencies: 1996 | ajv: 6.12.6 1997 | debug: 4.4.0 1998 | espree: 10.3.0 1999 | globals: 14.0.0 2000 | ignore: 5.3.2 2001 | import-fresh: 3.3.0 2002 | js-yaml: 4.1.0 2003 | minimatch: 3.1.2 2004 | strip-json-comments: 3.1.1 2005 | transitivePeerDependencies: 2006 | - supports-color 2007 | 2008 | '@eslint/js@9.19.0': {} 2009 | 2010 | '@eslint/object-schema@2.1.5': {} 2011 | 2012 | '@eslint/plugin-kit@0.2.5': 2013 | dependencies: 2014 | '@eslint/core': 0.10.0 2015 | levn: 0.4.1 2016 | 2017 | '@humanfs/core@0.19.1': {} 2018 | 2019 | '@humanfs/node@0.16.6': 2020 | dependencies: 2021 | '@humanfs/core': 0.19.1 2022 | '@humanwhocodes/retry': 0.3.1 2023 | 2024 | '@humanwhocodes/module-importer@1.0.1': {} 2025 | 2026 | '@humanwhocodes/retry@0.3.1': {} 2027 | 2028 | '@humanwhocodes/retry@0.4.1': {} 2029 | 2030 | '@img/sharp-darwin-arm64@0.33.5': 2031 | optionalDependencies: 2032 | '@img/sharp-libvips-darwin-arm64': 1.0.4 2033 | optional: true 2034 | 2035 | '@img/sharp-darwin-x64@0.33.5': 2036 | optionalDependencies: 2037 | '@img/sharp-libvips-darwin-x64': 1.0.4 2038 | optional: true 2039 | 2040 | '@img/sharp-libvips-darwin-arm64@1.0.4': 2041 | optional: true 2042 | 2043 | '@img/sharp-libvips-darwin-x64@1.0.4': 2044 | optional: true 2045 | 2046 | '@img/sharp-libvips-linux-arm64@1.0.4': 2047 | optional: true 2048 | 2049 | '@img/sharp-libvips-linux-arm@1.0.5': 2050 | optional: true 2051 | 2052 | '@img/sharp-libvips-linux-s390x@1.0.4': 2053 | optional: true 2054 | 2055 | '@img/sharp-libvips-linux-x64@1.0.4': 2056 | optional: true 2057 | 2058 | '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 2059 | optional: true 2060 | 2061 | '@img/sharp-libvips-linuxmusl-x64@1.0.4': 2062 | optional: true 2063 | 2064 | '@img/sharp-linux-arm64@0.33.5': 2065 | optionalDependencies: 2066 | '@img/sharp-libvips-linux-arm64': 1.0.4 2067 | optional: true 2068 | 2069 | '@img/sharp-linux-arm@0.33.5': 2070 | optionalDependencies: 2071 | '@img/sharp-libvips-linux-arm': 1.0.5 2072 | optional: true 2073 | 2074 | '@img/sharp-linux-s390x@0.33.5': 2075 | optionalDependencies: 2076 | '@img/sharp-libvips-linux-s390x': 1.0.4 2077 | optional: true 2078 | 2079 | '@img/sharp-linux-x64@0.33.5': 2080 | optionalDependencies: 2081 | '@img/sharp-libvips-linux-x64': 1.0.4 2082 | optional: true 2083 | 2084 | '@img/sharp-linuxmusl-arm64@0.33.5': 2085 | optionalDependencies: 2086 | '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 2087 | optional: true 2088 | 2089 | '@img/sharp-linuxmusl-x64@0.33.5': 2090 | optionalDependencies: 2091 | '@img/sharp-libvips-linuxmusl-x64': 1.0.4 2092 | optional: true 2093 | 2094 | '@img/sharp-wasm32@0.33.5': 2095 | dependencies: 2096 | '@emnapi/runtime': 1.3.1 2097 | optional: true 2098 | 2099 | '@img/sharp-win32-ia32@0.33.5': 2100 | optional: true 2101 | 2102 | '@img/sharp-win32-x64@0.33.5': 2103 | optional: true 2104 | 2105 | '@isaacs/cliui@8.0.2': 2106 | dependencies: 2107 | string-width: 5.1.2 2108 | string-width-cjs: string-width@4.2.3 2109 | strip-ansi: 7.1.0 2110 | strip-ansi-cjs: strip-ansi@6.0.1 2111 | wrap-ansi: 8.1.0 2112 | wrap-ansi-cjs: wrap-ansi@7.0.0 2113 | 2114 | '@jridgewell/gen-mapping@0.3.8': 2115 | dependencies: 2116 | '@jridgewell/set-array': 1.2.1 2117 | '@jridgewell/sourcemap-codec': 1.5.0 2118 | '@jridgewell/trace-mapping': 0.3.25 2119 | 2120 | '@jridgewell/resolve-uri@3.1.2': {} 2121 | 2122 | '@jridgewell/set-array@1.2.1': {} 2123 | 2124 | '@jridgewell/sourcemap-codec@1.5.0': {} 2125 | 2126 | '@jridgewell/trace-mapping@0.3.25': 2127 | dependencies: 2128 | '@jridgewell/resolve-uri': 3.1.2 2129 | '@jridgewell/sourcemap-codec': 1.5.0 2130 | 2131 | '@next/env@15.1.6': {} 2132 | 2133 | '@next/eslint-plugin-next@15.1.6': 2134 | dependencies: 2135 | fast-glob: 3.3.1 2136 | 2137 | '@next/swc-darwin-arm64@15.1.6': 2138 | optional: true 2139 | 2140 | '@next/swc-darwin-x64@15.1.6': 2141 | optional: true 2142 | 2143 | '@next/swc-linux-arm64-gnu@15.1.6': 2144 | optional: true 2145 | 2146 | '@next/swc-linux-arm64-musl@15.1.6': 2147 | optional: true 2148 | 2149 | '@next/swc-linux-x64-gnu@15.1.6': 2150 | optional: true 2151 | 2152 | '@next/swc-linux-x64-musl@15.1.6': 2153 | optional: true 2154 | 2155 | '@next/swc-win32-arm64-msvc@15.1.6': 2156 | optional: true 2157 | 2158 | '@next/swc-win32-x64-msvc@15.1.6': 2159 | optional: true 2160 | 2161 | '@nodelib/fs.scandir@2.1.5': 2162 | dependencies: 2163 | '@nodelib/fs.stat': 2.0.5 2164 | run-parallel: 1.2.0 2165 | 2166 | '@nodelib/fs.stat@2.0.5': {} 2167 | 2168 | '@nodelib/fs.walk@1.2.8': 2169 | dependencies: 2170 | '@nodelib/fs.scandir': 2.1.5 2171 | fastq: 1.18.0 2172 | 2173 | '@nolyfill/is-core-module@1.0.39': {} 2174 | 2175 | '@one-ini/wasm@0.1.1': {} 2176 | 2177 | '@opentelemetry/api@1.9.0': {} 2178 | 2179 | '@pkgjs/parseargs@0.11.0': 2180 | optional: true 2181 | 2182 | '@react-email/render@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 2183 | dependencies: 2184 | html-to-text: 9.0.5 2185 | js-beautify: 1.15.1 2186 | react: 19.0.0 2187 | react-dom: 19.0.0(react@19.0.0) 2188 | react-promise-suspense: 0.3.4 2189 | 2190 | '@rtsao/scc@1.1.0': {} 2191 | 2192 | '@rushstack/eslint-patch@1.10.5': {} 2193 | 2194 | '@selderee/plugin-htmlparser2@0.11.0': 2195 | dependencies: 2196 | domhandler: 5.0.3 2197 | selderee: 0.11.0 2198 | 2199 | '@swc/counter@0.1.3': {} 2200 | 2201 | '@swc/helpers@0.5.15': 2202 | dependencies: 2203 | tslib: 2.8.1 2204 | 2205 | '@types/diff-match-patch@1.0.36': {} 2206 | 2207 | '@types/estree@1.0.6': {} 2208 | 2209 | '@types/json-schema@7.0.15': {} 2210 | 2211 | '@types/json5@0.0.29': {} 2212 | 2213 | '@types/node@20.17.16': 2214 | dependencies: 2215 | undici-types: 6.19.8 2216 | 2217 | '@types/pdf-parse@1.1.4': {} 2218 | 2219 | '@types/react-dom@19.0.3(@types/react@19.0.8)': 2220 | dependencies: 2221 | '@types/react': 19.0.8 2222 | 2223 | '@types/react@19.0.8': 2224 | dependencies: 2225 | csstype: 3.1.3 2226 | 2227 | '@typescript-eslint/eslint-plugin@8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3))(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3)': 2228 | dependencies: 2229 | '@eslint-community/regexpp': 4.12.1 2230 | '@typescript-eslint/parser': 8.21.0(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3) 2231 | '@typescript-eslint/scope-manager': 8.21.0 2232 | '@typescript-eslint/type-utils': 8.21.0(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3) 2233 | '@typescript-eslint/utils': 8.21.0(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3) 2234 | '@typescript-eslint/visitor-keys': 8.21.0 2235 | eslint: 9.19.0(jiti@1.21.7) 2236 | graphemer: 1.4.0 2237 | ignore: 5.3.2 2238 | natural-compare: 1.4.0 2239 | ts-api-utils: 2.0.0(typescript@5.7.3) 2240 | typescript: 5.7.3 2241 | transitivePeerDependencies: 2242 | - supports-color 2243 | 2244 | '@typescript-eslint/parser@8.21.0(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3)': 2245 | dependencies: 2246 | '@typescript-eslint/scope-manager': 8.21.0 2247 | '@typescript-eslint/types': 8.21.0 2248 | '@typescript-eslint/typescript-estree': 8.21.0(typescript@5.7.3) 2249 | '@typescript-eslint/visitor-keys': 8.21.0 2250 | debug: 4.4.0 2251 | eslint: 9.19.0(jiti@1.21.7) 2252 | typescript: 5.7.3 2253 | transitivePeerDependencies: 2254 | - supports-color 2255 | 2256 | '@typescript-eslint/scope-manager@8.21.0': 2257 | dependencies: 2258 | '@typescript-eslint/types': 8.21.0 2259 | '@typescript-eslint/visitor-keys': 8.21.0 2260 | 2261 | '@typescript-eslint/type-utils@8.21.0(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3)': 2262 | dependencies: 2263 | '@typescript-eslint/typescript-estree': 8.21.0(typescript@5.7.3) 2264 | '@typescript-eslint/utils': 8.21.0(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3) 2265 | debug: 4.4.0 2266 | eslint: 9.19.0(jiti@1.21.7) 2267 | ts-api-utils: 2.0.0(typescript@5.7.3) 2268 | typescript: 5.7.3 2269 | transitivePeerDependencies: 2270 | - supports-color 2271 | 2272 | '@typescript-eslint/types@8.21.0': {} 2273 | 2274 | '@typescript-eslint/typescript-estree@8.21.0(typescript@5.7.3)': 2275 | dependencies: 2276 | '@typescript-eslint/types': 8.21.0 2277 | '@typescript-eslint/visitor-keys': 8.21.0 2278 | debug: 4.4.0 2279 | fast-glob: 3.3.3 2280 | is-glob: 4.0.3 2281 | minimatch: 9.0.5 2282 | semver: 7.6.3 2283 | ts-api-utils: 2.0.0(typescript@5.7.3) 2284 | typescript: 5.7.3 2285 | transitivePeerDependencies: 2286 | - supports-color 2287 | 2288 | '@typescript-eslint/utils@8.21.0(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3)': 2289 | dependencies: 2290 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.19.0(jiti@1.21.7)) 2291 | '@typescript-eslint/scope-manager': 8.21.0 2292 | '@typescript-eslint/types': 8.21.0 2293 | '@typescript-eslint/typescript-estree': 8.21.0(typescript@5.7.3) 2294 | eslint: 9.19.0(jiti@1.21.7) 2295 | typescript: 5.7.3 2296 | transitivePeerDependencies: 2297 | - supports-color 2298 | 2299 | '@typescript-eslint/visitor-keys@8.21.0': 2300 | dependencies: 2301 | '@typescript-eslint/types': 8.21.0 2302 | eslint-visitor-keys: 4.2.0 2303 | 2304 | '@upstash/qstash@2.7.20': 2305 | dependencies: 2306 | crypto-js: 4.2.0 2307 | jose: 5.9.6 2308 | neverthrow: 7.2.0 2309 | 2310 | '@upstash/workflow@0.2.6(react@19.0.0)': 2311 | dependencies: 2312 | '@ai-sdk/openai': 1.1.4(zod@3.24.1) 2313 | '@upstash/qstash': 2.7.20 2314 | ai: 4.1.7(react@19.0.0)(zod@3.24.1) 2315 | zod: 3.24.1 2316 | transitivePeerDependencies: 2317 | - react 2318 | 2319 | abbrev@2.0.0: {} 2320 | 2321 | acorn-jsx@5.3.2(acorn@8.14.0): 2322 | dependencies: 2323 | acorn: 8.14.0 2324 | 2325 | acorn@8.14.0: {} 2326 | 2327 | ai@4.1.7(react@19.0.0)(zod@3.24.1): 2328 | dependencies: 2329 | '@ai-sdk/provider': 1.0.6 2330 | '@ai-sdk/provider-utils': 2.1.4(zod@3.24.1) 2331 | '@ai-sdk/react': 1.1.5(react@19.0.0)(zod@3.24.1) 2332 | '@ai-sdk/ui-utils': 1.1.5(zod@3.24.1) 2333 | '@opentelemetry/api': 1.9.0 2334 | jsondiffpatch: 0.6.0 2335 | optionalDependencies: 2336 | react: 19.0.0 2337 | zod: 3.24.1 2338 | 2339 | ajv@6.12.6: 2340 | dependencies: 2341 | fast-deep-equal: 3.1.3 2342 | fast-json-stable-stringify: 2.1.0 2343 | json-schema-traverse: 0.4.1 2344 | uri-js: 4.4.1 2345 | 2346 | ansi-regex@5.0.1: {} 2347 | 2348 | ansi-regex@6.1.0: {} 2349 | 2350 | ansi-styles@4.3.0: 2351 | dependencies: 2352 | color-convert: 2.0.1 2353 | 2354 | ansi-styles@6.2.1: {} 2355 | 2356 | any-promise@1.3.0: {} 2357 | 2358 | anymatch@3.1.3: 2359 | dependencies: 2360 | normalize-path: 3.0.0 2361 | picomatch: 2.3.1 2362 | 2363 | arg@5.0.2: {} 2364 | 2365 | argparse@2.0.1: {} 2366 | 2367 | aria-query@5.3.2: {} 2368 | 2369 | array-buffer-byte-length@1.0.2: 2370 | dependencies: 2371 | call-bound: 1.0.3 2372 | is-array-buffer: 3.0.5 2373 | 2374 | array-includes@3.1.8: 2375 | dependencies: 2376 | call-bind: 1.0.8 2377 | define-properties: 1.2.1 2378 | es-abstract: 1.23.9 2379 | es-object-atoms: 1.1.1 2380 | get-intrinsic: 1.2.7 2381 | is-string: 1.1.1 2382 | 2383 | array.prototype.findlast@1.2.5: 2384 | dependencies: 2385 | call-bind: 1.0.8 2386 | define-properties: 1.2.1 2387 | es-abstract: 1.23.9 2388 | es-errors: 1.3.0 2389 | es-object-atoms: 1.1.1 2390 | es-shim-unscopables: 1.0.2 2391 | 2392 | array.prototype.findlastindex@1.2.5: 2393 | dependencies: 2394 | call-bind: 1.0.8 2395 | define-properties: 1.2.1 2396 | es-abstract: 1.23.9 2397 | es-errors: 1.3.0 2398 | es-object-atoms: 1.1.1 2399 | es-shim-unscopables: 1.0.2 2400 | 2401 | array.prototype.flat@1.3.3: 2402 | dependencies: 2403 | call-bind: 1.0.8 2404 | define-properties: 1.2.1 2405 | es-abstract: 1.23.9 2406 | es-shim-unscopables: 1.0.2 2407 | 2408 | array.prototype.flatmap@1.3.3: 2409 | dependencies: 2410 | call-bind: 1.0.8 2411 | define-properties: 1.2.1 2412 | es-abstract: 1.23.9 2413 | es-shim-unscopables: 1.0.2 2414 | 2415 | array.prototype.tosorted@1.1.4: 2416 | dependencies: 2417 | call-bind: 1.0.8 2418 | define-properties: 1.2.1 2419 | es-abstract: 1.23.9 2420 | es-errors: 1.3.0 2421 | es-shim-unscopables: 1.0.2 2422 | 2423 | arraybuffer.prototype.slice@1.0.4: 2424 | dependencies: 2425 | array-buffer-byte-length: 1.0.2 2426 | call-bind: 1.0.8 2427 | define-properties: 1.2.1 2428 | es-abstract: 1.23.9 2429 | es-errors: 1.3.0 2430 | get-intrinsic: 1.2.7 2431 | is-array-buffer: 3.0.5 2432 | 2433 | ast-types-flow@0.0.8: {} 2434 | 2435 | async-function@1.0.0: {} 2436 | 2437 | available-typed-arrays@1.0.7: 2438 | dependencies: 2439 | possible-typed-array-names: 1.0.0 2440 | 2441 | axe-core@4.10.2: {} 2442 | 2443 | axobject-query@4.1.0: {} 2444 | 2445 | balanced-match@1.0.2: {} 2446 | 2447 | binary-extensions@2.3.0: {} 2448 | 2449 | brace-expansion@1.1.11: 2450 | dependencies: 2451 | balanced-match: 1.0.2 2452 | concat-map: 0.0.1 2453 | 2454 | brace-expansion@2.0.1: 2455 | dependencies: 2456 | balanced-match: 1.0.2 2457 | 2458 | braces@3.0.3: 2459 | dependencies: 2460 | fill-range: 7.1.1 2461 | 2462 | busboy@1.6.0: 2463 | dependencies: 2464 | streamsearch: 1.1.0 2465 | 2466 | call-bind-apply-helpers@1.0.1: 2467 | dependencies: 2468 | es-errors: 1.3.0 2469 | function-bind: 1.1.2 2470 | 2471 | call-bind@1.0.8: 2472 | dependencies: 2473 | call-bind-apply-helpers: 1.0.1 2474 | es-define-property: 1.0.1 2475 | get-intrinsic: 1.2.7 2476 | set-function-length: 1.2.2 2477 | 2478 | call-bound@1.0.3: 2479 | dependencies: 2480 | call-bind-apply-helpers: 1.0.1 2481 | get-intrinsic: 1.2.7 2482 | 2483 | callsites@3.1.0: {} 2484 | 2485 | camelcase-css@2.0.1: {} 2486 | 2487 | caniuse-lite@1.0.30001695: {} 2488 | 2489 | chalk@4.1.2: 2490 | dependencies: 2491 | ansi-styles: 4.3.0 2492 | supports-color: 7.2.0 2493 | 2494 | chalk@5.4.1: {} 2495 | 2496 | chokidar@3.6.0: 2497 | dependencies: 2498 | anymatch: 3.1.3 2499 | braces: 3.0.3 2500 | glob-parent: 5.1.2 2501 | is-binary-path: 2.1.0 2502 | is-glob: 4.0.3 2503 | normalize-path: 3.0.0 2504 | readdirp: 3.6.0 2505 | optionalDependencies: 2506 | fsevents: 2.3.3 2507 | 2508 | client-only@0.0.1: {} 2509 | 2510 | color-convert@2.0.1: 2511 | dependencies: 2512 | color-name: 1.1.4 2513 | 2514 | color-name@1.1.4: {} 2515 | 2516 | color-string@1.9.1: 2517 | dependencies: 2518 | color-name: 1.1.4 2519 | simple-swizzle: 0.2.2 2520 | optional: true 2521 | 2522 | color@4.2.3: 2523 | dependencies: 2524 | color-convert: 2.0.1 2525 | color-string: 1.9.1 2526 | optional: true 2527 | 2528 | commander@10.0.1: {} 2529 | 2530 | commander@4.1.1: {} 2531 | 2532 | concat-map@0.0.1: {} 2533 | 2534 | config-chain@1.1.13: 2535 | dependencies: 2536 | ini: 1.3.8 2537 | proto-list: 1.2.4 2538 | 2539 | cross-spawn@7.0.6: 2540 | dependencies: 2541 | path-key: 3.1.1 2542 | shebang-command: 2.0.0 2543 | which: 2.0.2 2544 | 2545 | crypto-js@4.2.0: {} 2546 | 2547 | cssesc@3.0.0: {} 2548 | 2549 | csstype@3.1.3: {} 2550 | 2551 | damerau-levenshtein@1.0.8: {} 2552 | 2553 | data-view-buffer@1.0.2: 2554 | dependencies: 2555 | call-bound: 1.0.3 2556 | es-errors: 1.3.0 2557 | is-data-view: 1.0.2 2558 | 2559 | data-view-byte-length@1.0.2: 2560 | dependencies: 2561 | call-bound: 1.0.3 2562 | es-errors: 1.3.0 2563 | is-data-view: 1.0.2 2564 | 2565 | data-view-byte-offset@1.0.1: 2566 | dependencies: 2567 | call-bound: 1.0.3 2568 | es-errors: 1.3.0 2569 | is-data-view: 1.0.2 2570 | 2571 | debug@3.2.7: 2572 | dependencies: 2573 | ms: 2.1.3 2574 | 2575 | debug@4.4.0: 2576 | dependencies: 2577 | ms: 2.1.3 2578 | 2579 | deep-is@0.1.4: {} 2580 | 2581 | deepmerge@4.3.1: {} 2582 | 2583 | define-data-property@1.1.4: 2584 | dependencies: 2585 | es-define-property: 1.0.1 2586 | es-errors: 1.3.0 2587 | gopd: 1.2.0 2588 | 2589 | define-properties@1.2.1: 2590 | dependencies: 2591 | define-data-property: 1.1.4 2592 | has-property-descriptors: 1.0.2 2593 | object-keys: 1.1.1 2594 | 2595 | dequal@2.0.3: {} 2596 | 2597 | detect-libc@2.0.3: 2598 | optional: true 2599 | 2600 | didyoumean@1.2.2: {} 2601 | 2602 | diff-match-patch@1.0.5: {} 2603 | 2604 | dlv@1.1.3: {} 2605 | 2606 | doctrine@2.1.0: 2607 | dependencies: 2608 | esutils: 2.0.3 2609 | 2610 | dom-serializer@2.0.0: 2611 | dependencies: 2612 | domelementtype: 2.3.0 2613 | domhandler: 5.0.3 2614 | entities: 4.5.0 2615 | 2616 | domelementtype@2.3.0: {} 2617 | 2618 | domhandler@5.0.3: 2619 | dependencies: 2620 | domelementtype: 2.3.0 2621 | 2622 | domutils@3.2.2: 2623 | dependencies: 2624 | dom-serializer: 2.0.0 2625 | domelementtype: 2.3.0 2626 | domhandler: 5.0.3 2627 | 2628 | dunder-proto@1.0.1: 2629 | dependencies: 2630 | call-bind-apply-helpers: 1.0.1 2631 | es-errors: 1.3.0 2632 | gopd: 1.2.0 2633 | 2634 | eastasianwidth@0.2.0: {} 2635 | 2636 | editorconfig@1.0.4: 2637 | dependencies: 2638 | '@one-ini/wasm': 0.1.1 2639 | commander: 10.0.1 2640 | minimatch: 9.0.1 2641 | semver: 7.6.3 2642 | 2643 | emoji-regex@8.0.0: {} 2644 | 2645 | emoji-regex@9.2.2: {} 2646 | 2647 | enhanced-resolve@5.18.0: 2648 | dependencies: 2649 | graceful-fs: 4.2.11 2650 | tapable: 2.2.1 2651 | 2652 | entities@4.5.0: {} 2653 | 2654 | es-abstract@1.23.9: 2655 | dependencies: 2656 | array-buffer-byte-length: 1.0.2 2657 | arraybuffer.prototype.slice: 1.0.4 2658 | available-typed-arrays: 1.0.7 2659 | call-bind: 1.0.8 2660 | call-bound: 1.0.3 2661 | data-view-buffer: 1.0.2 2662 | data-view-byte-length: 1.0.2 2663 | data-view-byte-offset: 1.0.1 2664 | es-define-property: 1.0.1 2665 | es-errors: 1.3.0 2666 | es-object-atoms: 1.1.1 2667 | es-set-tostringtag: 2.1.0 2668 | es-to-primitive: 1.3.0 2669 | function.prototype.name: 1.1.8 2670 | get-intrinsic: 1.2.7 2671 | get-proto: 1.0.1 2672 | get-symbol-description: 1.1.0 2673 | globalthis: 1.0.4 2674 | gopd: 1.2.0 2675 | has-property-descriptors: 1.0.2 2676 | has-proto: 1.2.0 2677 | has-symbols: 1.1.0 2678 | hasown: 2.0.2 2679 | internal-slot: 1.1.0 2680 | is-array-buffer: 3.0.5 2681 | is-callable: 1.2.7 2682 | is-data-view: 1.0.2 2683 | is-regex: 1.2.1 2684 | is-shared-array-buffer: 1.0.4 2685 | is-string: 1.1.1 2686 | is-typed-array: 1.1.15 2687 | is-weakref: 1.1.0 2688 | math-intrinsics: 1.1.0 2689 | object-inspect: 1.13.3 2690 | object-keys: 1.1.1 2691 | object.assign: 4.1.7 2692 | own-keys: 1.0.1 2693 | regexp.prototype.flags: 1.5.4 2694 | safe-array-concat: 1.1.3 2695 | safe-push-apply: 1.0.0 2696 | safe-regex-test: 1.1.0 2697 | set-proto: 1.0.0 2698 | string.prototype.trim: 1.2.10 2699 | string.prototype.trimend: 1.0.9 2700 | string.prototype.trimstart: 1.0.8 2701 | typed-array-buffer: 1.0.3 2702 | typed-array-byte-length: 1.0.3 2703 | typed-array-byte-offset: 1.0.4 2704 | typed-array-length: 1.0.7 2705 | unbox-primitive: 1.1.0 2706 | which-typed-array: 1.1.18 2707 | 2708 | es-define-property@1.0.1: {} 2709 | 2710 | es-errors@1.3.0: {} 2711 | 2712 | es-iterator-helpers@1.2.1: 2713 | dependencies: 2714 | call-bind: 1.0.8 2715 | call-bound: 1.0.3 2716 | define-properties: 1.2.1 2717 | es-abstract: 1.23.9 2718 | es-errors: 1.3.0 2719 | es-set-tostringtag: 2.1.0 2720 | function-bind: 1.1.2 2721 | get-intrinsic: 1.2.7 2722 | globalthis: 1.0.4 2723 | gopd: 1.2.0 2724 | has-property-descriptors: 1.0.2 2725 | has-proto: 1.2.0 2726 | has-symbols: 1.1.0 2727 | internal-slot: 1.1.0 2728 | iterator.prototype: 1.1.5 2729 | safe-array-concat: 1.1.3 2730 | 2731 | es-object-atoms@1.1.1: 2732 | dependencies: 2733 | es-errors: 1.3.0 2734 | 2735 | es-set-tostringtag@2.1.0: 2736 | dependencies: 2737 | es-errors: 1.3.0 2738 | get-intrinsic: 1.2.7 2739 | has-tostringtag: 1.0.2 2740 | hasown: 2.0.2 2741 | 2742 | es-shim-unscopables@1.0.2: 2743 | dependencies: 2744 | hasown: 2.0.2 2745 | 2746 | es-to-primitive@1.3.0: 2747 | dependencies: 2748 | is-callable: 1.2.7 2749 | is-date-object: 1.1.0 2750 | is-symbol: 1.1.1 2751 | 2752 | escape-string-regexp@4.0.0: {} 2753 | 2754 | eslint-config-next@15.1.6(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3): 2755 | dependencies: 2756 | '@next/eslint-plugin-next': 15.1.6 2757 | '@rushstack/eslint-patch': 1.10.5 2758 | '@typescript-eslint/eslint-plugin': 8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3))(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3) 2759 | '@typescript-eslint/parser': 8.21.0(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3) 2760 | eslint: 9.19.0(jiti@1.21.7) 2761 | eslint-import-resolver-node: 0.3.9 2762 | eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.19.0(jiti@1.21.7)) 2763 | eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.21.0(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3))(eslint-import-resolver-typescript@3.7.0)(eslint@9.19.0(jiti@1.21.7)) 2764 | eslint-plugin-jsx-a11y: 6.10.2(eslint@9.19.0(jiti@1.21.7)) 2765 | eslint-plugin-react: 7.37.4(eslint@9.19.0(jiti@1.21.7)) 2766 | eslint-plugin-react-hooks: 5.1.0(eslint@9.19.0(jiti@1.21.7)) 2767 | optionalDependencies: 2768 | typescript: 5.7.3 2769 | transitivePeerDependencies: 2770 | - eslint-import-resolver-webpack 2771 | - eslint-plugin-import-x 2772 | - supports-color 2773 | 2774 | eslint-import-resolver-node@0.3.9: 2775 | dependencies: 2776 | debug: 3.2.7 2777 | is-core-module: 2.16.1 2778 | resolve: 1.22.10 2779 | transitivePeerDependencies: 2780 | - supports-color 2781 | 2782 | eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0)(eslint@9.19.0(jiti@1.21.7)): 2783 | dependencies: 2784 | '@nolyfill/is-core-module': 1.0.39 2785 | debug: 4.4.0 2786 | enhanced-resolve: 5.18.0 2787 | eslint: 9.19.0(jiti@1.21.7) 2788 | fast-glob: 3.3.3 2789 | get-tsconfig: 4.10.0 2790 | is-bun-module: 1.3.0 2791 | is-glob: 4.0.3 2792 | stable-hash: 0.0.4 2793 | optionalDependencies: 2794 | eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.21.0(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3))(eslint-import-resolver-typescript@3.7.0)(eslint@9.19.0(jiti@1.21.7)) 2795 | transitivePeerDependencies: 2796 | - supports-color 2797 | 2798 | eslint-module-utils@2.12.0(@typescript-eslint/parser@8.21.0(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@9.19.0(jiti@1.21.7)): 2799 | dependencies: 2800 | debug: 3.2.7 2801 | optionalDependencies: 2802 | '@typescript-eslint/parser': 8.21.0(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3) 2803 | eslint: 9.19.0(jiti@1.21.7) 2804 | eslint-import-resolver-node: 0.3.9 2805 | eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.19.0(jiti@1.21.7)) 2806 | transitivePeerDependencies: 2807 | - supports-color 2808 | 2809 | eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.21.0(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3))(eslint-import-resolver-typescript@3.7.0)(eslint@9.19.0(jiti@1.21.7)): 2810 | dependencies: 2811 | '@rtsao/scc': 1.1.0 2812 | array-includes: 3.1.8 2813 | array.prototype.findlastindex: 1.2.5 2814 | array.prototype.flat: 1.3.3 2815 | array.prototype.flatmap: 1.3.3 2816 | debug: 3.2.7 2817 | doctrine: 2.1.0 2818 | eslint: 9.19.0(jiti@1.21.7) 2819 | eslint-import-resolver-node: 0.3.9 2820 | eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.21.0(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@9.19.0(jiti@1.21.7)) 2821 | hasown: 2.0.2 2822 | is-core-module: 2.16.1 2823 | is-glob: 4.0.3 2824 | minimatch: 3.1.2 2825 | object.fromentries: 2.0.8 2826 | object.groupby: 1.0.3 2827 | object.values: 1.2.1 2828 | semver: 6.3.1 2829 | string.prototype.trimend: 1.0.9 2830 | tsconfig-paths: 3.15.0 2831 | optionalDependencies: 2832 | '@typescript-eslint/parser': 8.21.0(eslint@9.19.0(jiti@1.21.7))(typescript@5.7.3) 2833 | transitivePeerDependencies: 2834 | - eslint-import-resolver-typescript 2835 | - eslint-import-resolver-webpack 2836 | - supports-color 2837 | 2838 | eslint-plugin-jsx-a11y@6.10.2(eslint@9.19.0(jiti@1.21.7)): 2839 | dependencies: 2840 | aria-query: 5.3.2 2841 | array-includes: 3.1.8 2842 | array.prototype.flatmap: 1.3.3 2843 | ast-types-flow: 0.0.8 2844 | axe-core: 4.10.2 2845 | axobject-query: 4.1.0 2846 | damerau-levenshtein: 1.0.8 2847 | emoji-regex: 9.2.2 2848 | eslint: 9.19.0(jiti@1.21.7) 2849 | hasown: 2.0.2 2850 | jsx-ast-utils: 3.3.5 2851 | language-tags: 1.0.9 2852 | minimatch: 3.1.2 2853 | object.fromentries: 2.0.8 2854 | safe-regex-test: 1.1.0 2855 | string.prototype.includes: 2.0.1 2856 | 2857 | eslint-plugin-react-hooks@5.1.0(eslint@9.19.0(jiti@1.21.7)): 2858 | dependencies: 2859 | eslint: 9.19.0(jiti@1.21.7) 2860 | 2861 | eslint-plugin-react@7.37.4(eslint@9.19.0(jiti@1.21.7)): 2862 | dependencies: 2863 | array-includes: 3.1.8 2864 | array.prototype.findlast: 1.2.5 2865 | array.prototype.flatmap: 1.3.3 2866 | array.prototype.tosorted: 1.1.4 2867 | doctrine: 2.1.0 2868 | es-iterator-helpers: 1.2.1 2869 | eslint: 9.19.0(jiti@1.21.7) 2870 | estraverse: 5.3.0 2871 | hasown: 2.0.2 2872 | jsx-ast-utils: 3.3.5 2873 | minimatch: 3.1.2 2874 | object.entries: 1.1.8 2875 | object.fromentries: 2.0.8 2876 | object.values: 1.2.1 2877 | prop-types: 15.8.1 2878 | resolve: 2.0.0-next.5 2879 | semver: 6.3.1 2880 | string.prototype.matchall: 4.0.12 2881 | string.prototype.repeat: 1.0.0 2882 | 2883 | eslint-scope@8.2.0: 2884 | dependencies: 2885 | esrecurse: 4.3.0 2886 | estraverse: 5.3.0 2887 | 2888 | eslint-visitor-keys@3.4.3: {} 2889 | 2890 | eslint-visitor-keys@4.2.0: {} 2891 | 2892 | eslint@9.19.0(jiti@1.21.7): 2893 | dependencies: 2894 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.19.0(jiti@1.21.7)) 2895 | '@eslint-community/regexpp': 4.12.1 2896 | '@eslint/config-array': 0.19.1 2897 | '@eslint/core': 0.10.0 2898 | '@eslint/eslintrc': 3.2.0 2899 | '@eslint/js': 9.19.0 2900 | '@eslint/plugin-kit': 0.2.5 2901 | '@humanfs/node': 0.16.6 2902 | '@humanwhocodes/module-importer': 1.0.1 2903 | '@humanwhocodes/retry': 0.4.1 2904 | '@types/estree': 1.0.6 2905 | '@types/json-schema': 7.0.15 2906 | ajv: 6.12.6 2907 | chalk: 4.1.2 2908 | cross-spawn: 7.0.6 2909 | debug: 4.4.0 2910 | escape-string-regexp: 4.0.0 2911 | eslint-scope: 8.2.0 2912 | eslint-visitor-keys: 4.2.0 2913 | espree: 10.3.0 2914 | esquery: 1.6.0 2915 | esutils: 2.0.3 2916 | fast-deep-equal: 3.1.3 2917 | file-entry-cache: 8.0.0 2918 | find-up: 5.0.0 2919 | glob-parent: 6.0.2 2920 | ignore: 5.3.2 2921 | imurmurhash: 0.1.4 2922 | is-glob: 4.0.3 2923 | json-stable-stringify-without-jsonify: 1.0.1 2924 | lodash.merge: 4.6.2 2925 | minimatch: 3.1.2 2926 | natural-compare: 1.4.0 2927 | optionator: 0.9.4 2928 | optionalDependencies: 2929 | jiti: 1.21.7 2930 | transitivePeerDependencies: 2931 | - supports-color 2932 | 2933 | espree@10.3.0: 2934 | dependencies: 2935 | acorn: 8.14.0 2936 | acorn-jsx: 5.3.2(acorn@8.14.0) 2937 | eslint-visitor-keys: 4.2.0 2938 | 2939 | esquery@1.6.0: 2940 | dependencies: 2941 | estraverse: 5.3.0 2942 | 2943 | esrecurse@4.3.0: 2944 | dependencies: 2945 | estraverse: 5.3.0 2946 | 2947 | estraverse@5.3.0: {} 2948 | 2949 | esutils@2.0.3: {} 2950 | 2951 | eventsource-parser@3.0.0: {} 2952 | 2953 | fast-deep-equal@2.0.1: {} 2954 | 2955 | fast-deep-equal@3.1.3: {} 2956 | 2957 | fast-glob@3.3.1: 2958 | dependencies: 2959 | '@nodelib/fs.stat': 2.0.5 2960 | '@nodelib/fs.walk': 1.2.8 2961 | glob-parent: 5.1.2 2962 | merge2: 1.4.1 2963 | micromatch: 4.0.8 2964 | 2965 | fast-glob@3.3.3: 2966 | dependencies: 2967 | '@nodelib/fs.stat': 2.0.5 2968 | '@nodelib/fs.walk': 1.2.8 2969 | glob-parent: 5.1.2 2970 | merge2: 1.4.1 2971 | micromatch: 4.0.8 2972 | 2973 | fast-json-stable-stringify@2.1.0: {} 2974 | 2975 | fast-levenshtein@2.0.6: {} 2976 | 2977 | fastq@1.18.0: 2978 | dependencies: 2979 | reusify: 1.0.4 2980 | 2981 | file-entry-cache@8.0.0: 2982 | dependencies: 2983 | flat-cache: 4.0.1 2984 | 2985 | fill-range@7.1.1: 2986 | dependencies: 2987 | to-regex-range: 5.0.1 2988 | 2989 | find-up@5.0.0: 2990 | dependencies: 2991 | locate-path: 6.0.0 2992 | path-exists: 4.0.0 2993 | 2994 | flat-cache@4.0.1: 2995 | dependencies: 2996 | flatted: 3.3.2 2997 | keyv: 4.5.4 2998 | 2999 | flatted@3.3.2: {} 3000 | 3001 | for-each@0.3.4: 3002 | dependencies: 3003 | is-callable: 1.2.7 3004 | 3005 | foreground-child@3.3.0: 3006 | dependencies: 3007 | cross-spawn: 7.0.6 3008 | signal-exit: 4.1.0 3009 | 3010 | fsevents@2.3.3: 3011 | optional: true 3012 | 3013 | function-bind@1.1.2: {} 3014 | 3015 | function.prototype.name@1.1.8: 3016 | dependencies: 3017 | call-bind: 1.0.8 3018 | call-bound: 1.0.3 3019 | define-properties: 1.2.1 3020 | functions-have-names: 1.2.3 3021 | hasown: 2.0.2 3022 | is-callable: 1.2.7 3023 | 3024 | functions-have-names@1.2.3: {} 3025 | 3026 | get-intrinsic@1.2.7: 3027 | dependencies: 3028 | call-bind-apply-helpers: 1.0.1 3029 | es-define-property: 1.0.1 3030 | es-errors: 1.3.0 3031 | es-object-atoms: 1.1.1 3032 | function-bind: 1.1.2 3033 | get-proto: 1.0.1 3034 | gopd: 1.2.0 3035 | has-symbols: 1.1.0 3036 | hasown: 2.0.2 3037 | math-intrinsics: 1.1.0 3038 | 3039 | get-proto@1.0.1: 3040 | dependencies: 3041 | dunder-proto: 1.0.1 3042 | es-object-atoms: 1.1.1 3043 | 3044 | get-symbol-description@1.1.0: 3045 | dependencies: 3046 | call-bound: 1.0.3 3047 | es-errors: 1.3.0 3048 | get-intrinsic: 1.2.7 3049 | 3050 | get-tsconfig@4.10.0: 3051 | dependencies: 3052 | resolve-pkg-maps: 1.0.0 3053 | 3054 | glob-parent@5.1.2: 3055 | dependencies: 3056 | is-glob: 4.0.3 3057 | 3058 | glob-parent@6.0.2: 3059 | dependencies: 3060 | is-glob: 4.0.3 3061 | 3062 | glob@10.4.5: 3063 | dependencies: 3064 | foreground-child: 3.3.0 3065 | jackspeak: 3.4.3 3066 | minimatch: 9.0.5 3067 | minipass: 7.1.2 3068 | package-json-from-dist: 1.0.1 3069 | path-scurry: 1.11.1 3070 | 3071 | globals@14.0.0: {} 3072 | 3073 | globalthis@1.0.4: 3074 | dependencies: 3075 | define-properties: 1.2.1 3076 | gopd: 1.2.0 3077 | 3078 | gopd@1.2.0: {} 3079 | 3080 | graceful-fs@4.2.11: {} 3081 | 3082 | graphemer@1.4.0: {} 3083 | 3084 | has-bigints@1.1.0: {} 3085 | 3086 | has-flag@4.0.0: {} 3087 | 3088 | has-property-descriptors@1.0.2: 3089 | dependencies: 3090 | es-define-property: 1.0.1 3091 | 3092 | has-proto@1.2.0: 3093 | dependencies: 3094 | dunder-proto: 1.0.1 3095 | 3096 | has-symbols@1.1.0: {} 3097 | 3098 | has-tostringtag@1.0.2: 3099 | dependencies: 3100 | has-symbols: 1.1.0 3101 | 3102 | hasown@2.0.2: 3103 | dependencies: 3104 | function-bind: 1.1.2 3105 | 3106 | html-to-text@9.0.5: 3107 | dependencies: 3108 | '@selderee/plugin-htmlparser2': 0.11.0 3109 | deepmerge: 4.3.1 3110 | dom-serializer: 2.0.0 3111 | htmlparser2: 8.0.2 3112 | selderee: 0.11.0 3113 | 3114 | htmlparser2@8.0.2: 3115 | dependencies: 3116 | domelementtype: 2.3.0 3117 | domhandler: 5.0.3 3118 | domutils: 3.2.2 3119 | entities: 4.5.0 3120 | 3121 | ignore@5.3.2: {} 3122 | 3123 | import-fresh@3.3.0: 3124 | dependencies: 3125 | parent-module: 1.0.1 3126 | resolve-from: 4.0.0 3127 | 3128 | imurmurhash@0.1.4: {} 3129 | 3130 | ini@1.3.8: {} 3131 | 3132 | internal-slot@1.1.0: 3133 | dependencies: 3134 | es-errors: 1.3.0 3135 | hasown: 2.0.2 3136 | side-channel: 1.1.0 3137 | 3138 | is-array-buffer@3.0.5: 3139 | dependencies: 3140 | call-bind: 1.0.8 3141 | call-bound: 1.0.3 3142 | get-intrinsic: 1.2.7 3143 | 3144 | is-arrayish@0.3.2: 3145 | optional: true 3146 | 3147 | is-async-function@2.1.1: 3148 | dependencies: 3149 | async-function: 1.0.0 3150 | call-bound: 1.0.3 3151 | get-proto: 1.0.1 3152 | has-tostringtag: 1.0.2 3153 | safe-regex-test: 1.1.0 3154 | 3155 | is-bigint@1.1.0: 3156 | dependencies: 3157 | has-bigints: 1.1.0 3158 | 3159 | is-binary-path@2.1.0: 3160 | dependencies: 3161 | binary-extensions: 2.3.0 3162 | 3163 | is-boolean-object@1.2.1: 3164 | dependencies: 3165 | call-bound: 1.0.3 3166 | has-tostringtag: 1.0.2 3167 | 3168 | is-bun-module@1.3.0: 3169 | dependencies: 3170 | semver: 7.6.3 3171 | 3172 | is-callable@1.2.7: {} 3173 | 3174 | is-core-module@2.16.1: 3175 | dependencies: 3176 | hasown: 2.0.2 3177 | 3178 | is-data-view@1.0.2: 3179 | dependencies: 3180 | call-bound: 1.0.3 3181 | get-intrinsic: 1.2.7 3182 | is-typed-array: 1.1.15 3183 | 3184 | is-date-object@1.1.0: 3185 | dependencies: 3186 | call-bound: 1.0.3 3187 | has-tostringtag: 1.0.2 3188 | 3189 | is-extglob@2.1.1: {} 3190 | 3191 | is-finalizationregistry@1.1.1: 3192 | dependencies: 3193 | call-bound: 1.0.3 3194 | 3195 | is-fullwidth-code-point@3.0.0: {} 3196 | 3197 | is-generator-function@1.1.0: 3198 | dependencies: 3199 | call-bound: 1.0.3 3200 | get-proto: 1.0.1 3201 | has-tostringtag: 1.0.2 3202 | safe-regex-test: 1.1.0 3203 | 3204 | is-glob@4.0.3: 3205 | dependencies: 3206 | is-extglob: 2.1.1 3207 | 3208 | is-map@2.0.3: {} 3209 | 3210 | is-number-object@1.1.1: 3211 | dependencies: 3212 | call-bound: 1.0.3 3213 | has-tostringtag: 1.0.2 3214 | 3215 | is-number@7.0.0: {} 3216 | 3217 | is-regex@1.2.1: 3218 | dependencies: 3219 | call-bound: 1.0.3 3220 | gopd: 1.2.0 3221 | has-tostringtag: 1.0.2 3222 | hasown: 2.0.2 3223 | 3224 | is-set@2.0.3: {} 3225 | 3226 | is-shared-array-buffer@1.0.4: 3227 | dependencies: 3228 | call-bound: 1.0.3 3229 | 3230 | is-string@1.1.1: 3231 | dependencies: 3232 | call-bound: 1.0.3 3233 | has-tostringtag: 1.0.2 3234 | 3235 | is-symbol@1.1.1: 3236 | dependencies: 3237 | call-bound: 1.0.3 3238 | has-symbols: 1.1.0 3239 | safe-regex-test: 1.1.0 3240 | 3241 | is-typed-array@1.1.15: 3242 | dependencies: 3243 | which-typed-array: 1.1.18 3244 | 3245 | is-weakmap@2.0.2: {} 3246 | 3247 | is-weakref@1.1.0: 3248 | dependencies: 3249 | call-bound: 1.0.3 3250 | 3251 | is-weakset@2.0.4: 3252 | dependencies: 3253 | call-bound: 1.0.3 3254 | get-intrinsic: 1.2.7 3255 | 3256 | isarray@2.0.5: {} 3257 | 3258 | isexe@2.0.0: {} 3259 | 3260 | iterator.prototype@1.1.5: 3261 | dependencies: 3262 | define-data-property: 1.1.4 3263 | es-object-atoms: 1.1.1 3264 | get-intrinsic: 1.2.7 3265 | get-proto: 1.0.1 3266 | has-symbols: 1.1.0 3267 | set-function-name: 2.0.2 3268 | 3269 | jackspeak@3.4.3: 3270 | dependencies: 3271 | '@isaacs/cliui': 8.0.2 3272 | optionalDependencies: 3273 | '@pkgjs/parseargs': 0.11.0 3274 | 3275 | jiti@1.21.7: {} 3276 | 3277 | jose@5.9.6: {} 3278 | 3279 | js-beautify@1.15.1: 3280 | dependencies: 3281 | config-chain: 1.1.13 3282 | editorconfig: 1.0.4 3283 | glob: 10.4.5 3284 | js-cookie: 3.0.5 3285 | nopt: 7.2.1 3286 | 3287 | js-cookie@3.0.5: {} 3288 | 3289 | js-tokens@4.0.0: {} 3290 | 3291 | js-yaml@4.1.0: 3292 | dependencies: 3293 | argparse: 2.0.1 3294 | 3295 | json-buffer@3.0.1: {} 3296 | 3297 | json-schema-traverse@0.4.1: {} 3298 | 3299 | json-schema@0.4.0: {} 3300 | 3301 | json-stable-stringify-without-jsonify@1.0.1: {} 3302 | 3303 | json5@1.0.2: 3304 | dependencies: 3305 | minimist: 1.2.8 3306 | 3307 | jsondiffpatch@0.6.0: 3308 | dependencies: 3309 | '@types/diff-match-patch': 1.0.36 3310 | chalk: 5.4.1 3311 | diff-match-patch: 1.0.5 3312 | 3313 | jsx-ast-utils@3.3.5: 3314 | dependencies: 3315 | array-includes: 3.1.8 3316 | array.prototype.flat: 1.3.3 3317 | object.assign: 4.1.7 3318 | object.values: 1.2.1 3319 | 3320 | keyv@4.5.4: 3321 | dependencies: 3322 | json-buffer: 3.0.1 3323 | 3324 | language-subtag-registry@0.3.23: {} 3325 | 3326 | language-tags@1.0.9: 3327 | dependencies: 3328 | language-subtag-registry: 0.3.23 3329 | 3330 | leac@0.6.0: {} 3331 | 3332 | levn@0.4.1: 3333 | dependencies: 3334 | prelude-ls: 1.2.1 3335 | type-check: 0.4.0 3336 | 3337 | lilconfig@3.1.3: {} 3338 | 3339 | lines-and-columns@1.2.4: {} 3340 | 3341 | locate-path@6.0.0: 3342 | dependencies: 3343 | p-locate: 5.0.0 3344 | 3345 | lodash.merge@4.6.2: {} 3346 | 3347 | loose-envify@1.4.0: 3348 | dependencies: 3349 | js-tokens: 4.0.0 3350 | 3351 | lru-cache@10.4.3: {} 3352 | 3353 | math-intrinsics@1.1.0: {} 3354 | 3355 | merge2@1.4.1: {} 3356 | 3357 | micromatch@4.0.8: 3358 | dependencies: 3359 | braces: 3.0.3 3360 | picomatch: 2.3.1 3361 | 3362 | minimatch@3.1.2: 3363 | dependencies: 3364 | brace-expansion: 1.1.11 3365 | 3366 | minimatch@9.0.1: 3367 | dependencies: 3368 | brace-expansion: 2.0.1 3369 | 3370 | minimatch@9.0.5: 3371 | dependencies: 3372 | brace-expansion: 2.0.1 3373 | 3374 | minimist@1.2.8: {} 3375 | 3376 | minipass@7.1.2: {} 3377 | 3378 | ms@2.1.3: {} 3379 | 3380 | mz@2.7.0: 3381 | dependencies: 3382 | any-promise: 1.3.0 3383 | object-assign: 4.1.1 3384 | thenify-all: 1.6.0 3385 | 3386 | nanoid@3.3.8: {} 3387 | 3388 | natural-compare@1.4.0: {} 3389 | 3390 | neverthrow@7.2.0: {} 3391 | 3392 | next@15.1.6(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 3393 | dependencies: 3394 | '@next/env': 15.1.6 3395 | '@swc/counter': 0.1.3 3396 | '@swc/helpers': 0.5.15 3397 | busboy: 1.6.0 3398 | caniuse-lite: 1.0.30001695 3399 | postcss: 8.4.31 3400 | react: 19.0.0 3401 | react-dom: 19.0.0(react@19.0.0) 3402 | styled-jsx: 5.1.6(react@19.0.0) 3403 | optionalDependencies: 3404 | '@next/swc-darwin-arm64': 15.1.6 3405 | '@next/swc-darwin-x64': 15.1.6 3406 | '@next/swc-linux-arm64-gnu': 15.1.6 3407 | '@next/swc-linux-arm64-musl': 15.1.6 3408 | '@next/swc-linux-x64-gnu': 15.1.6 3409 | '@next/swc-linux-x64-musl': 15.1.6 3410 | '@next/swc-win32-arm64-msvc': 15.1.6 3411 | '@next/swc-win32-x64-msvc': 15.1.6 3412 | '@opentelemetry/api': 1.9.0 3413 | sharp: 0.33.5 3414 | transitivePeerDependencies: 3415 | - '@babel/core' 3416 | - babel-plugin-macros 3417 | 3418 | node-ensure@0.0.0: {} 3419 | 3420 | nopt@7.2.1: 3421 | dependencies: 3422 | abbrev: 2.0.0 3423 | 3424 | normalize-path@3.0.0: {} 3425 | 3426 | object-assign@4.1.1: {} 3427 | 3428 | object-hash@3.0.0: {} 3429 | 3430 | object-inspect@1.13.3: {} 3431 | 3432 | object-keys@1.1.1: {} 3433 | 3434 | object.assign@4.1.7: 3435 | dependencies: 3436 | call-bind: 1.0.8 3437 | call-bound: 1.0.3 3438 | define-properties: 1.2.1 3439 | es-object-atoms: 1.1.1 3440 | has-symbols: 1.1.0 3441 | object-keys: 1.1.1 3442 | 3443 | object.entries@1.1.8: 3444 | dependencies: 3445 | call-bind: 1.0.8 3446 | define-properties: 1.2.1 3447 | es-object-atoms: 1.1.1 3448 | 3449 | object.fromentries@2.0.8: 3450 | dependencies: 3451 | call-bind: 1.0.8 3452 | define-properties: 1.2.1 3453 | es-abstract: 1.23.9 3454 | es-object-atoms: 1.1.1 3455 | 3456 | object.groupby@1.0.3: 3457 | dependencies: 3458 | call-bind: 1.0.8 3459 | define-properties: 1.2.1 3460 | es-abstract: 1.23.9 3461 | 3462 | object.values@1.2.1: 3463 | dependencies: 3464 | call-bind: 1.0.8 3465 | call-bound: 1.0.3 3466 | define-properties: 1.2.1 3467 | es-object-atoms: 1.1.1 3468 | 3469 | optionator@0.9.4: 3470 | dependencies: 3471 | deep-is: 0.1.4 3472 | fast-levenshtein: 2.0.6 3473 | levn: 0.4.1 3474 | prelude-ls: 1.2.1 3475 | type-check: 0.4.0 3476 | word-wrap: 1.2.5 3477 | 3478 | own-keys@1.0.1: 3479 | dependencies: 3480 | get-intrinsic: 1.2.7 3481 | object-keys: 1.1.1 3482 | safe-push-apply: 1.0.0 3483 | 3484 | p-limit@3.1.0: 3485 | dependencies: 3486 | yocto-queue: 0.1.0 3487 | 3488 | p-locate@5.0.0: 3489 | dependencies: 3490 | p-limit: 3.1.0 3491 | 3492 | package-json-from-dist@1.0.1: {} 3493 | 3494 | parent-module@1.0.1: 3495 | dependencies: 3496 | callsites: 3.1.0 3497 | 3498 | parseley@0.12.1: 3499 | dependencies: 3500 | leac: 0.6.0 3501 | peberminta: 0.9.0 3502 | 3503 | path-exists@4.0.0: {} 3504 | 3505 | path-key@3.1.1: {} 3506 | 3507 | path-parse@1.0.7: {} 3508 | 3509 | path-scurry@1.11.1: 3510 | dependencies: 3511 | lru-cache: 10.4.3 3512 | minipass: 7.1.2 3513 | 3514 | pdf-parse@1.1.1: 3515 | dependencies: 3516 | debug: 3.2.7 3517 | node-ensure: 0.0.0 3518 | transitivePeerDependencies: 3519 | - supports-color 3520 | 3521 | peberminta@0.9.0: {} 3522 | 3523 | picocolors@1.1.1: {} 3524 | 3525 | picomatch@2.3.1: {} 3526 | 3527 | pify@2.3.0: {} 3528 | 3529 | pirates@4.0.6: {} 3530 | 3531 | possible-typed-array-names@1.0.0: {} 3532 | 3533 | postcss-import@15.1.0(postcss@8.5.1): 3534 | dependencies: 3535 | postcss: 8.5.1 3536 | postcss-value-parser: 4.2.0 3537 | read-cache: 1.0.0 3538 | resolve: 1.22.10 3539 | 3540 | postcss-js@4.0.1(postcss@8.5.1): 3541 | dependencies: 3542 | camelcase-css: 2.0.1 3543 | postcss: 8.5.1 3544 | 3545 | postcss-load-config@4.0.2(postcss@8.5.1): 3546 | dependencies: 3547 | lilconfig: 3.1.3 3548 | yaml: 2.7.0 3549 | optionalDependencies: 3550 | postcss: 8.5.1 3551 | 3552 | postcss-nested@6.2.0(postcss@8.5.1): 3553 | dependencies: 3554 | postcss: 8.5.1 3555 | postcss-selector-parser: 6.1.2 3556 | 3557 | postcss-selector-parser@6.1.2: 3558 | dependencies: 3559 | cssesc: 3.0.0 3560 | util-deprecate: 1.0.2 3561 | 3562 | postcss-value-parser@4.2.0: {} 3563 | 3564 | postcss@8.4.31: 3565 | dependencies: 3566 | nanoid: 3.3.8 3567 | picocolors: 1.1.1 3568 | source-map-js: 1.2.1 3569 | 3570 | postcss@8.5.1: 3571 | dependencies: 3572 | nanoid: 3.3.8 3573 | picocolors: 1.1.1 3574 | source-map-js: 1.2.1 3575 | 3576 | prelude-ls@1.2.1: {} 3577 | 3578 | prop-types@15.8.1: 3579 | dependencies: 3580 | loose-envify: 1.4.0 3581 | object-assign: 4.1.1 3582 | react-is: 16.13.1 3583 | 3584 | proto-list@1.2.4: {} 3585 | 3586 | punycode@2.3.1: {} 3587 | 3588 | queue-microtask@1.2.3: {} 3589 | 3590 | react-dom@19.0.0(react@19.0.0): 3591 | dependencies: 3592 | react: 19.0.0 3593 | scheduler: 0.25.0 3594 | 3595 | react-is@16.13.1: {} 3596 | 3597 | react-promise-suspense@0.3.4: 3598 | dependencies: 3599 | fast-deep-equal: 2.0.1 3600 | 3601 | react@19.0.0: {} 3602 | 3603 | read-cache@1.0.0: 3604 | dependencies: 3605 | pify: 2.3.0 3606 | 3607 | readdirp@3.6.0: 3608 | dependencies: 3609 | picomatch: 2.3.1 3610 | 3611 | reflect.getprototypeof@1.0.10: 3612 | dependencies: 3613 | call-bind: 1.0.8 3614 | define-properties: 1.2.1 3615 | es-abstract: 1.23.9 3616 | es-errors: 1.3.0 3617 | es-object-atoms: 1.1.1 3618 | get-intrinsic: 1.2.7 3619 | get-proto: 1.0.1 3620 | which-builtin-type: 1.2.1 3621 | 3622 | regexp.prototype.flags@1.5.4: 3623 | dependencies: 3624 | call-bind: 1.0.8 3625 | define-properties: 1.2.1 3626 | es-errors: 1.3.0 3627 | get-proto: 1.0.1 3628 | gopd: 1.2.0 3629 | set-function-name: 2.0.2 3630 | 3631 | resend@4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 3632 | dependencies: 3633 | '@react-email/render': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 3634 | transitivePeerDependencies: 3635 | - react 3636 | - react-dom 3637 | 3638 | resolve-from@4.0.0: {} 3639 | 3640 | resolve-pkg-maps@1.0.0: {} 3641 | 3642 | resolve@1.22.10: 3643 | dependencies: 3644 | is-core-module: 2.16.1 3645 | path-parse: 1.0.7 3646 | supports-preserve-symlinks-flag: 1.0.0 3647 | 3648 | resolve@2.0.0-next.5: 3649 | dependencies: 3650 | is-core-module: 2.16.1 3651 | path-parse: 1.0.7 3652 | supports-preserve-symlinks-flag: 1.0.0 3653 | 3654 | reusify@1.0.4: {} 3655 | 3656 | run-parallel@1.2.0: 3657 | dependencies: 3658 | queue-microtask: 1.2.3 3659 | 3660 | safe-array-concat@1.1.3: 3661 | dependencies: 3662 | call-bind: 1.0.8 3663 | call-bound: 1.0.3 3664 | get-intrinsic: 1.2.7 3665 | has-symbols: 1.1.0 3666 | isarray: 2.0.5 3667 | 3668 | safe-push-apply@1.0.0: 3669 | dependencies: 3670 | es-errors: 1.3.0 3671 | isarray: 2.0.5 3672 | 3673 | safe-regex-test@1.1.0: 3674 | dependencies: 3675 | call-bound: 1.0.3 3676 | es-errors: 1.3.0 3677 | is-regex: 1.2.1 3678 | 3679 | scheduler@0.25.0: {} 3680 | 3681 | secure-json-parse@2.7.0: {} 3682 | 3683 | selderee@0.11.0: 3684 | dependencies: 3685 | parseley: 0.12.1 3686 | 3687 | semver@6.3.1: {} 3688 | 3689 | semver@7.6.3: {} 3690 | 3691 | set-function-length@1.2.2: 3692 | dependencies: 3693 | define-data-property: 1.1.4 3694 | es-errors: 1.3.0 3695 | function-bind: 1.1.2 3696 | get-intrinsic: 1.2.7 3697 | gopd: 1.2.0 3698 | has-property-descriptors: 1.0.2 3699 | 3700 | set-function-name@2.0.2: 3701 | dependencies: 3702 | define-data-property: 1.1.4 3703 | es-errors: 1.3.0 3704 | functions-have-names: 1.2.3 3705 | has-property-descriptors: 1.0.2 3706 | 3707 | set-proto@1.0.0: 3708 | dependencies: 3709 | dunder-proto: 1.0.1 3710 | es-errors: 1.3.0 3711 | es-object-atoms: 1.1.1 3712 | 3713 | sharp@0.33.5: 3714 | dependencies: 3715 | color: 4.2.3 3716 | detect-libc: 2.0.3 3717 | semver: 7.6.3 3718 | optionalDependencies: 3719 | '@img/sharp-darwin-arm64': 0.33.5 3720 | '@img/sharp-darwin-x64': 0.33.5 3721 | '@img/sharp-libvips-darwin-arm64': 1.0.4 3722 | '@img/sharp-libvips-darwin-x64': 1.0.4 3723 | '@img/sharp-libvips-linux-arm': 1.0.5 3724 | '@img/sharp-libvips-linux-arm64': 1.0.4 3725 | '@img/sharp-libvips-linux-s390x': 1.0.4 3726 | '@img/sharp-libvips-linux-x64': 1.0.4 3727 | '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 3728 | '@img/sharp-libvips-linuxmusl-x64': 1.0.4 3729 | '@img/sharp-linux-arm': 0.33.5 3730 | '@img/sharp-linux-arm64': 0.33.5 3731 | '@img/sharp-linux-s390x': 0.33.5 3732 | '@img/sharp-linux-x64': 0.33.5 3733 | '@img/sharp-linuxmusl-arm64': 0.33.5 3734 | '@img/sharp-linuxmusl-x64': 0.33.5 3735 | '@img/sharp-wasm32': 0.33.5 3736 | '@img/sharp-win32-ia32': 0.33.5 3737 | '@img/sharp-win32-x64': 0.33.5 3738 | optional: true 3739 | 3740 | shebang-command@2.0.0: 3741 | dependencies: 3742 | shebang-regex: 3.0.0 3743 | 3744 | shebang-regex@3.0.0: {} 3745 | 3746 | side-channel-list@1.0.0: 3747 | dependencies: 3748 | es-errors: 1.3.0 3749 | object-inspect: 1.13.3 3750 | 3751 | side-channel-map@1.0.1: 3752 | dependencies: 3753 | call-bound: 1.0.3 3754 | es-errors: 1.3.0 3755 | get-intrinsic: 1.2.7 3756 | object-inspect: 1.13.3 3757 | 3758 | side-channel-weakmap@1.0.2: 3759 | dependencies: 3760 | call-bound: 1.0.3 3761 | es-errors: 1.3.0 3762 | get-intrinsic: 1.2.7 3763 | object-inspect: 1.13.3 3764 | side-channel-map: 1.0.1 3765 | 3766 | side-channel@1.1.0: 3767 | dependencies: 3768 | es-errors: 1.3.0 3769 | object-inspect: 1.13.3 3770 | side-channel-list: 1.0.0 3771 | side-channel-map: 1.0.1 3772 | side-channel-weakmap: 1.0.2 3773 | 3774 | signal-exit@4.1.0: {} 3775 | 3776 | simple-swizzle@0.2.2: 3777 | dependencies: 3778 | is-arrayish: 0.3.2 3779 | optional: true 3780 | 3781 | source-map-js@1.2.1: {} 3782 | 3783 | stable-hash@0.0.4: {} 3784 | 3785 | streamsearch@1.1.0: {} 3786 | 3787 | string-width@4.2.3: 3788 | dependencies: 3789 | emoji-regex: 8.0.0 3790 | is-fullwidth-code-point: 3.0.0 3791 | strip-ansi: 6.0.1 3792 | 3793 | string-width@5.1.2: 3794 | dependencies: 3795 | eastasianwidth: 0.2.0 3796 | emoji-regex: 9.2.2 3797 | strip-ansi: 7.1.0 3798 | 3799 | string.prototype.includes@2.0.1: 3800 | dependencies: 3801 | call-bind: 1.0.8 3802 | define-properties: 1.2.1 3803 | es-abstract: 1.23.9 3804 | 3805 | string.prototype.matchall@4.0.12: 3806 | dependencies: 3807 | call-bind: 1.0.8 3808 | call-bound: 1.0.3 3809 | define-properties: 1.2.1 3810 | es-abstract: 1.23.9 3811 | es-errors: 1.3.0 3812 | es-object-atoms: 1.1.1 3813 | get-intrinsic: 1.2.7 3814 | gopd: 1.2.0 3815 | has-symbols: 1.1.0 3816 | internal-slot: 1.1.0 3817 | regexp.prototype.flags: 1.5.4 3818 | set-function-name: 2.0.2 3819 | side-channel: 1.1.0 3820 | 3821 | string.prototype.repeat@1.0.0: 3822 | dependencies: 3823 | define-properties: 1.2.1 3824 | es-abstract: 1.23.9 3825 | 3826 | string.prototype.trim@1.2.10: 3827 | dependencies: 3828 | call-bind: 1.0.8 3829 | call-bound: 1.0.3 3830 | define-data-property: 1.1.4 3831 | define-properties: 1.2.1 3832 | es-abstract: 1.23.9 3833 | es-object-atoms: 1.1.1 3834 | has-property-descriptors: 1.0.2 3835 | 3836 | string.prototype.trimend@1.0.9: 3837 | dependencies: 3838 | call-bind: 1.0.8 3839 | call-bound: 1.0.3 3840 | define-properties: 1.2.1 3841 | es-object-atoms: 1.1.1 3842 | 3843 | string.prototype.trimstart@1.0.8: 3844 | dependencies: 3845 | call-bind: 1.0.8 3846 | define-properties: 1.2.1 3847 | es-object-atoms: 1.1.1 3848 | 3849 | strip-ansi@6.0.1: 3850 | dependencies: 3851 | ansi-regex: 5.0.1 3852 | 3853 | strip-ansi@7.1.0: 3854 | dependencies: 3855 | ansi-regex: 6.1.0 3856 | 3857 | strip-bom@3.0.0: {} 3858 | 3859 | strip-json-comments@3.1.1: {} 3860 | 3861 | styled-jsx@5.1.6(react@19.0.0): 3862 | dependencies: 3863 | client-only: 0.0.1 3864 | react: 19.0.0 3865 | 3866 | sucrase@3.35.0: 3867 | dependencies: 3868 | '@jridgewell/gen-mapping': 0.3.8 3869 | commander: 4.1.1 3870 | glob: 10.4.5 3871 | lines-and-columns: 1.2.4 3872 | mz: 2.7.0 3873 | pirates: 4.0.6 3874 | ts-interface-checker: 0.1.13 3875 | 3876 | supports-color@7.2.0: 3877 | dependencies: 3878 | has-flag: 4.0.0 3879 | 3880 | supports-preserve-symlinks-flag@1.0.0: {} 3881 | 3882 | swr@2.3.0(react@19.0.0): 3883 | dependencies: 3884 | dequal: 2.0.3 3885 | react: 19.0.0 3886 | use-sync-external-store: 1.4.0(react@19.0.0) 3887 | 3888 | tailwindcss@3.4.17: 3889 | dependencies: 3890 | '@alloc/quick-lru': 5.2.0 3891 | arg: 5.0.2 3892 | chokidar: 3.6.0 3893 | didyoumean: 1.2.2 3894 | dlv: 1.1.3 3895 | fast-glob: 3.3.3 3896 | glob-parent: 6.0.2 3897 | is-glob: 4.0.3 3898 | jiti: 1.21.7 3899 | lilconfig: 3.1.3 3900 | micromatch: 4.0.8 3901 | normalize-path: 3.0.0 3902 | object-hash: 3.0.0 3903 | picocolors: 1.1.1 3904 | postcss: 8.5.1 3905 | postcss-import: 15.1.0(postcss@8.5.1) 3906 | postcss-js: 4.0.1(postcss@8.5.1) 3907 | postcss-load-config: 4.0.2(postcss@8.5.1) 3908 | postcss-nested: 6.2.0(postcss@8.5.1) 3909 | postcss-selector-parser: 6.1.2 3910 | resolve: 1.22.10 3911 | sucrase: 3.35.0 3912 | transitivePeerDependencies: 3913 | - ts-node 3914 | 3915 | tapable@2.2.1: {} 3916 | 3917 | thenify-all@1.6.0: 3918 | dependencies: 3919 | thenify: 3.3.1 3920 | 3921 | thenify@3.3.1: 3922 | dependencies: 3923 | any-promise: 1.3.0 3924 | 3925 | throttleit@2.1.0: {} 3926 | 3927 | to-regex-range@5.0.1: 3928 | dependencies: 3929 | is-number: 7.0.0 3930 | 3931 | ts-api-utils@2.0.0(typescript@5.7.3): 3932 | dependencies: 3933 | typescript: 5.7.3 3934 | 3935 | ts-interface-checker@0.1.13: {} 3936 | 3937 | tsconfig-paths@3.15.0: 3938 | dependencies: 3939 | '@types/json5': 0.0.29 3940 | json5: 1.0.2 3941 | minimist: 1.2.8 3942 | strip-bom: 3.0.0 3943 | 3944 | tslib@2.8.1: {} 3945 | 3946 | type-check@0.4.0: 3947 | dependencies: 3948 | prelude-ls: 1.2.1 3949 | 3950 | typed-array-buffer@1.0.3: 3951 | dependencies: 3952 | call-bound: 1.0.3 3953 | es-errors: 1.3.0 3954 | is-typed-array: 1.1.15 3955 | 3956 | typed-array-byte-length@1.0.3: 3957 | dependencies: 3958 | call-bind: 1.0.8 3959 | for-each: 0.3.4 3960 | gopd: 1.2.0 3961 | has-proto: 1.2.0 3962 | is-typed-array: 1.1.15 3963 | 3964 | typed-array-byte-offset@1.0.4: 3965 | dependencies: 3966 | available-typed-arrays: 1.0.7 3967 | call-bind: 1.0.8 3968 | for-each: 0.3.4 3969 | gopd: 1.2.0 3970 | has-proto: 1.2.0 3971 | is-typed-array: 1.1.15 3972 | reflect.getprototypeof: 1.0.10 3973 | 3974 | typed-array-length@1.0.7: 3975 | dependencies: 3976 | call-bind: 1.0.8 3977 | for-each: 0.3.4 3978 | gopd: 1.2.0 3979 | is-typed-array: 1.1.15 3980 | possible-typed-array-names: 1.0.0 3981 | reflect.getprototypeof: 1.0.10 3982 | 3983 | typescript@5.7.3: {} 3984 | 3985 | unbox-primitive@1.1.0: 3986 | dependencies: 3987 | call-bound: 1.0.3 3988 | has-bigints: 1.1.0 3989 | has-symbols: 1.1.0 3990 | which-boxed-primitive: 1.1.1 3991 | 3992 | undici-types@6.19.8: {} 3993 | 3994 | uri-js@4.4.1: 3995 | dependencies: 3996 | punycode: 2.3.1 3997 | 3998 | use-sync-external-store@1.4.0(react@19.0.0): 3999 | dependencies: 4000 | react: 19.0.0 4001 | 4002 | util-deprecate@1.0.2: {} 4003 | 4004 | which-boxed-primitive@1.1.1: 4005 | dependencies: 4006 | is-bigint: 1.1.0 4007 | is-boolean-object: 1.2.1 4008 | is-number-object: 1.1.1 4009 | is-string: 1.1.1 4010 | is-symbol: 1.1.1 4011 | 4012 | which-builtin-type@1.2.1: 4013 | dependencies: 4014 | call-bound: 1.0.3 4015 | function.prototype.name: 1.1.8 4016 | has-tostringtag: 1.0.2 4017 | is-async-function: 2.1.1 4018 | is-date-object: 1.1.0 4019 | is-finalizationregistry: 1.1.1 4020 | is-generator-function: 1.1.0 4021 | is-regex: 1.2.1 4022 | is-weakref: 1.1.0 4023 | isarray: 2.0.5 4024 | which-boxed-primitive: 1.1.1 4025 | which-collection: 1.0.2 4026 | which-typed-array: 1.1.18 4027 | 4028 | which-collection@1.0.2: 4029 | dependencies: 4030 | is-map: 2.0.3 4031 | is-set: 2.0.3 4032 | is-weakmap: 2.0.2 4033 | is-weakset: 2.0.4 4034 | 4035 | which-typed-array@1.1.18: 4036 | dependencies: 4037 | available-typed-arrays: 1.0.7 4038 | call-bind: 1.0.8 4039 | call-bound: 1.0.3 4040 | for-each: 0.3.4 4041 | gopd: 1.2.0 4042 | has-tostringtag: 1.0.2 4043 | 4044 | which@2.0.2: 4045 | dependencies: 4046 | isexe: 2.0.0 4047 | 4048 | word-wrap@1.2.5: {} 4049 | 4050 | wrap-ansi@7.0.0: 4051 | dependencies: 4052 | ansi-styles: 4.3.0 4053 | string-width: 4.2.3 4054 | strip-ansi: 6.0.1 4055 | 4056 | wrap-ansi@8.1.0: 4057 | dependencies: 4058 | ansi-styles: 6.2.1 4059 | string-width: 5.1.2 4060 | strip-ansi: 7.1.0 4061 | 4062 | yaml@2.7.0: {} 4063 | 4064 | yocto-queue@0.1.0: {} 4065 | 4066 | zod-to-json-schema@3.24.1(zod@3.24.1): 4067 | dependencies: 4068 | zod: 3.24.1 4069 | 4070 | zod@3.24.1: {} 4071 | -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('postcss-load-config').Config} */ 2 | const config = { 3 | plugins: { 4 | tailwindcss: {}, 5 | }, 6 | }; 7 | 8 | export default config; 9 | -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- 1 | import type { Config } from "tailwindcss"; 2 | 3 | export default { 4 | content: [ 5 | "./pages/**/*.{js,ts,jsx,tsx,mdx}", 6 | "./components/**/*.{js,ts,jsx,tsx,mdx}", 7 | "./app/**/*.{js,ts,jsx,tsx,mdx}", 8 | ], 9 | theme: { 10 | extend: { 11 | colors: { 12 | background: "var(--background)", 13 | foreground: "var(--foreground)", 14 | }, 15 | }, 16 | }, 17 | plugins: [], 18 | } satisfies Config; 19 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2017", 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 | "@/*": ["./*"] 23 | } 24 | }, 25 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 26 | "exclude": ["node_modules"] 27 | } 28 | --------------------------------------------------------------------------------