diff options
| author | diogo464 <[email protected]> | 2025-08-11 11:51:39 +0100 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2025-08-11 11:51:39 +0100 |
| commit | 4af66f418b6837b6441b4e8eaf2d8ede585238b9 (patch) | |
| tree | 34a4e913a2848515166b2ac0489794419a33bfcc /frontend | |
| parent | 0d3488a3811c8d58bd570af64cc29840df9ba439 (diff) | |
snapshot
Diffstat (limited to 'frontend')
| -rw-r--r-- | frontend/.gitignore | 41 | ||||
| -rw-r--r-- | frontend/README.md | 36 | ||||
| -rw-r--r-- | frontend/app/blob/[blobId]/route.ts | 80 | ||||
| -rw-r--r-- | frontend/app/drive/[...path]/page.tsx | 136 | ||||
| -rw-r--r-- | frontend/app/drive/page.tsx | 94 | ||||
| -rw-r--r-- | frontend/app/favicon.ico | bin | 0 -> 25931 bytes | |||
| -rw-r--r-- | frontend/app/globals.css | 26 | ||||
| -rw-r--r-- | frontend/app/layout.tsx | 38 | ||||
| -rw-r--r-- | frontend/app/page.tsx | 5 | ||||
| -rw-r--r-- | frontend/components/AuthButton.tsx | 31 | ||||
| -rw-r--r-- | frontend/eslint.config.mjs | 16 | ||||
| -rw-r--r-- | frontend/lib/auth.ts | 103 | ||||
| -rw-r--r-- | frontend/lib/drive.ts | 91 | ||||
| -rw-r--r-- | frontend/lib/env.ts | 3 | ||||
| -rw-r--r-- | frontend/lib/utils.ts | 26 | ||||
| -rw-r--r-- | frontend/next.config.ts | 7 | ||||
| -rw-r--r-- | frontend/package-lock.json | 6149 | ||||
| -rw-r--r-- | frontend/package.json | 27 | ||||
| -rw-r--r-- | frontend/postcss.config.mjs | 5 | ||||
| -rw-r--r-- | frontend/public/file.svg | 1 | ||||
| -rw-r--r-- | frontend/public/globe.svg | 1 | ||||
| -rw-r--r-- | frontend/public/next.svg | 1 | ||||
| -rw-r--r-- | frontend/public/vercel.svg | 1 | ||||
| -rw-r--r-- | frontend/public/window.svg | 1 | ||||
| -rw-r--r-- | frontend/tsconfig.json | 27 |
25 files changed, 6946 insertions, 0 deletions
diff --git a/frontend/.gitignore b/frontend/.gitignore new file mode 100644 index 0000000..5ef6a52 --- /dev/null +++ b/frontend/.gitignore | |||
| @@ -0,0 +1,41 @@ | |||
| 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 | ||
diff --git a/frontend/README.md b/frontend/README.md new file mode 100644 index 0000000..e215bc4 --- /dev/null +++ b/frontend/README.md | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app). | ||
| 2 | |||
| 3 | ## Getting Started | ||
| 4 | |||
| 5 | First, run the development server: | ||
| 6 | |||
| 7 | ```bash | ||
| 8 | npm run dev | ||
| 9 | # or | ||
| 10 | yarn dev | ||
| 11 | # or | ||
| 12 | pnpm dev | ||
| 13 | # or | ||
| 14 | bun dev | ||
| 15 | ``` | ||
| 16 | |||
| 17 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. | ||
| 18 | |||
| 19 | You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. | ||
| 20 | |||
| 21 | This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel. | ||
| 22 | |||
| 23 | ## Learn More | ||
| 24 | |||
| 25 | To learn more about Next.js, take a look at the following resources: | ||
| 26 | |||
| 27 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. | ||
| 28 | - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. | ||
| 29 | |||
| 30 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome! | ||
| 31 | |||
| 32 | ## Deploy on Vercel | ||
| 33 | |||
| 34 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. | ||
| 35 | |||
| 36 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details. | ||
diff --git a/frontend/app/blob/[blobId]/route.ts b/frontend/app/blob/[blobId]/route.ts new file mode 100644 index 0000000..1643b70 --- /dev/null +++ b/frontend/app/blob/[blobId]/route.ts | |||
| @@ -0,0 +1,80 @@ | |||
| 1 | import { Drive_blob_path } from "@/lib/drive" | ||
| 2 | import { NextRequest, NextResponse } from "next/server" | ||
| 3 | import { createReadStream, statSync } from "fs" | ||
| 4 | import path from "path" | ||
| 5 | |||
| 6 | export async function GET( | ||
| 7 | request: NextRequest, | ||
| 8 | { params }: { params: Promise<{ blobId: string }> } | ||
| 9 | ) { | ||
| 10 | try { | ||
| 11 | const { blobId } = await params | ||
| 12 | const { searchParams } = new URL(request.url) | ||
| 13 | const filename = searchParams.get('filename') || 'download' | ||
| 14 | |||
| 15 | // Get the filesystem path for this blob | ||
| 16 | const blobPath = await Drive_blob_path(blobId) | ||
| 17 | |||
| 18 | // Get file stats | ||
| 19 | const stats = statSync(blobPath) | ||
| 20 | const fileSize = stats.size | ||
| 21 | |||
| 22 | // Determine content type based on file extension | ||
| 23 | const ext = path.extname(filename).toLowerCase() | ||
| 24 | const contentType = getContentType(ext) | ||
| 25 | |||
| 26 | // Create readable stream | ||
| 27 | const stream = createReadStream(blobPath) | ||
| 28 | |||
| 29 | // Convert stream to web stream | ||
| 30 | const readableStream = new ReadableStream({ | ||
| 31 | start(controller) { | ||
| 32 | stream.on('data', (chunk: Buffer) => { | ||
| 33 | controller.enqueue(new Uint8Array(chunk)) | ||
| 34 | }) | ||
| 35 | stream.on('end', () => { | ||
| 36 | controller.close() | ||
| 37 | }) | ||
| 38 | stream.on('error', (error) => { | ||
| 39 | controller.error(error) | ||
| 40 | }) | ||
| 41 | } | ||
| 42 | }) | ||
| 43 | |||
| 44 | return new NextResponse(readableStream, { | ||
| 45 | headers: { | ||
| 46 | 'Content-Type': contentType, | ||
| 47 | 'Content-Length': fileSize.toString(), | ||
| 48 | 'Content-Disposition': `attachment; filename="${filename}"`, | ||
| 49 | 'Cache-Control': 'public, max-age=31536000', // Cache for 1 year | ||
| 50 | }, | ||
| 51 | }) | ||
| 52 | |||
| 53 | } catch (error) { | ||
| 54 | console.error('Error serving blob:', error) | ||
| 55 | return new NextResponse('File not found', { status: 404 }) | ||
| 56 | } | ||
| 57 | } | ||
| 58 | |||
| 59 | function getContentType(extension: string): string { | ||
| 60 | const mimeTypes: Record<string, string> = { | ||
| 61 | '.pdf': 'application/pdf', | ||
| 62 | '.txt': 'text/plain', | ||
| 63 | '.md': 'text/markdown', | ||
| 64 | '.docx': 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', | ||
| 65 | '.doc': 'application/msword', | ||
| 66 | '.zip': 'application/zip', | ||
| 67 | '.png': 'image/png', | ||
| 68 | '.jpg': 'image/jpeg', | ||
| 69 | '.jpeg': 'image/jpeg', | ||
| 70 | '.gif': 'image/gif', | ||
| 71 | '.svg': 'image/svg+xml', | ||
| 72 | '.css': 'text/css', | ||
| 73 | '.js': 'application/javascript', | ||
| 74 | '.json': 'application/json', | ||
| 75 | '.html': 'text/html', | ||
| 76 | '.htm': 'text/html', | ||
| 77 | } | ||
| 78 | |||
| 79 | return mimeTypes[extension] || 'application/octet-stream' | ||
| 80 | } \ No newline at end of file | ||
diff --git a/frontend/app/drive/[...path]/page.tsx b/frontend/app/drive/[...path]/page.tsx new file mode 100644 index 0000000..75a1bb1 --- /dev/null +++ b/frontend/app/drive/[...path]/page.tsx | |||
| @@ -0,0 +1,136 @@ | |||
| 1 | import { Drive_ls, Drive_basename, Drive_parent } from "@/lib/drive" | ||
| 2 | import { formatSize } from "@/lib/utils" | ||
| 3 | import Link from "next/link" | ||
| 4 | import { cookies } from 'next/headers'; | ||
| 5 | import { Auth_get_user } from "@/lib/auth"; | ||
| 6 | |||
| 7 | interface DrivePageProps { | ||
| 8 | params: Promise<{ | ||
| 9 | path: string[] | ||
| 10 | }> | ||
| 11 | } | ||
| 12 | |||
| 13 | export default async function DrivePage({ params }: DrivePageProps) { | ||
| 14 | // Await params as required by Next.js 15 | ||
| 15 | const { path } = await params | ||
| 16 | |||
| 17 | const user = await Auth_get_user(); | ||
| 18 | console.log(user); | ||
| 19 | |||
| 20 | // Construct the full path from params | ||
| 21 | const fullPath = path ? `/${path.join('/')}` : "" | ||
| 22 | |||
| 23 | const entries = await Drive_ls(fullPath, false) | ||
| 24 | |||
| 25 | // Check if we have a parent directory | ||
| 26 | const parentDir = Drive_parent(fullPath) | ||
| 27 | const parentPath = path && path.length > 1 | ||
| 28 | ? `/drive/${path.slice(0, -1).join('/')}` | ||
| 29 | : path && path.length === 1 | ||
| 30 | ? '/drive' | ||
| 31 | : null | ||
| 32 | |||
| 33 | // Create entries with optional parent directory at top | ||
| 34 | const allEntries = [] | ||
| 35 | if (parentDir !== null && parentPath !== null) { | ||
| 36 | allEntries.push({ | ||
| 37 | path: '(parent)', | ||
| 38 | type: 'dir' as const, | ||
| 39 | lastmod: 0, | ||
| 40 | blob: null, | ||
| 41 | size: null, | ||
| 42 | author: '', | ||
| 43 | isParent: true, | ||
| 44 | parentPath | ||
| 45 | }) | ||
| 46 | } | ||
| 47 | |||
| 48 | // Sort entries: directories first, then files, both alphabetically | ||
| 49 | const sortedEntries = entries.sort((a, b) => { | ||
| 50 | // First sort by type (directories before files) | ||
| 51 | if (a.type !== b.type) { | ||
| 52 | return a.type === 'dir' ? -1 : 1 | ||
| 53 | } | ||
| 54 | // Then sort alphabetically by path | ||
| 55 | return a.path.localeCompare(b.path) | ||
| 56 | }) | ||
| 57 | |||
| 58 | allEntries.push(...sortedEntries) | ||
| 59 | |||
| 60 | return ( | ||
| 61 | <div className="min-h-screen bg-background"> | ||
| 62 | <div className="container mx-auto p-4"> | ||
| 63 | <Link href="/drive" className="inline-block mb-6"> | ||
| 64 | <h1 className="text-2xl font-bold text-foreground hover:text-blue-600 dark:hover:text-blue-400 transition-colors cursor-pointer">FCTDrive</h1> | ||
| 65 | </Link> | ||
| 66 | |||
| 67 | <div className="bg-white dark:bg-gray-800 rounded-lg shadow overflow-hidden"> | ||
| 68 | <div className="overflow-x-auto"> | ||
| 69 | <table className="w-full"> | ||
| 70 | <thead className="bg-gray-50 dark:bg-gray-700"> | ||
| 71 | <tr> | ||
| 72 | <th className="px-4 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider"> | ||
| 73 | Name | ||
| 74 | </th> | ||
| 75 | <th className="px-4 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider"> | ||
| 76 | Size | ||
| 77 | </th> | ||
| 78 | <th className="px-4 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider"> | ||
| 79 | Author | ||
| 80 | </th> | ||
| 81 | <th className="px-4 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider"> | ||
| 82 | Modified | ||
| 83 | </th> | ||
| 84 | </tr> | ||
| 85 | </thead> | ||
| 86 | <tbody className="divide-y divide-gray-200 dark:divide-gray-600"> | ||
| 87 | {allEntries.map((entry, index) => ( | ||
| 88 | <tr | ||
| 89 | key={entry.path} | ||
| 90 | className="hover:bg-gray-50 dark:hover:bg-gray-700 transition-colors" | ||
| 91 | > | ||
| 92 | <td className="px-4 py-4 whitespace-nowrap"> | ||
| 93 | <div className="flex items-center"> | ||
| 94 | <div className="flex-shrink-0 h-5 w-5 mr-3"> | ||
| 95 | {entry.type === 'dir' ? ( | ||
| 96 | <div className="h-5 w-5 text-blue-500">📁</div> | ||
| 97 | ) : ( | ||
| 98 | <div className="h-5 w-5 text-gray-400">📄</div> | ||
| 99 | )} | ||
| 100 | </div> | ||
| 101 | {entry.type === 'dir' ? ( | ||
| 102 | <Link | ||
| 103 | href={(entry as any).isParent ? (entry as any).parentPath : `/drive${entry.path}`} | ||
| 104 | className="text-sm font-medium text-blue-600 dark:text-blue-400 hover:underline" | ||
| 105 | > | ||
| 106 | {(entry as any).isParent ? '(parent)' : Drive_basename(entry.path)} | ||
| 107 | </Link> | ||
| 108 | ) : ( | ||
| 109 | <Link | ||
| 110 | href={`/blob/${entry.blob}?filename=${encodeURIComponent(Drive_basename(entry.path))}`} | ||
| 111 | className="text-sm font-medium text-blue-600 dark:text-blue-400 hover:underline" | ||
| 112 | > | ||
| 113 | {Drive_basename(entry.path)} | ||
| 114 | </Link> | ||
| 115 | )} | ||
| 116 | </div> | ||
| 117 | </td> | ||
| 118 | <td className="px-4 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300"> | ||
| 119 | {formatSize(entry.size)} | ||
| 120 | </td> | ||
| 121 | <td className="px-4 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300"> | ||
| 122 | {entry.author} | ||
| 123 | </td> | ||
| 124 | <td className="px-4 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300"> | ||
| 125 | {new Date(entry.lastmod * 1000).toLocaleString()} | ||
| 126 | </td> | ||
| 127 | </tr> | ||
| 128 | ))} | ||
| 129 | </tbody> | ||
| 130 | </table> | ||
| 131 | </div> | ||
| 132 | </div> | ||
| 133 | </div> | ||
| 134 | </div> | ||
| 135 | ) | ||
| 136 | } | ||
diff --git a/frontend/app/drive/page.tsx b/frontend/app/drive/page.tsx new file mode 100644 index 0000000..218774a --- /dev/null +++ b/frontend/app/drive/page.tsx | |||
| @@ -0,0 +1,94 @@ | |||
| 1 | import { Drive_ls, Drive_basename } from "@/lib/drive" | ||
| 2 | import { formatSize } from "@/lib/utils" | ||
| 3 | import Link from "next/link" | ||
| 4 | |||
| 5 | export default async function DrivePage() { | ||
| 6 | const entries = await Drive_ls("", false) | ||
| 7 | |||
| 8 | // Sort entries: directories first, then files, both alphabetically | ||
| 9 | const sortedEntries = entries.sort((a, b) => { | ||
| 10 | // First sort by type (directories before files) | ||
| 11 | if (a.type !== b.type) { | ||
| 12 | return a.type === 'dir' ? -1 : 1 | ||
| 13 | } | ||
| 14 | // Then sort alphabetically by path | ||
| 15 | return a.path.localeCompare(b.path) | ||
| 16 | }) | ||
| 17 | |||
| 18 | return ( | ||
| 19 | <div className="min-h-screen bg-background"> | ||
| 20 | <div className="container mx-auto p-4"> | ||
| 21 | <Link href="/drive" className="inline-block mb-6"> | ||
| 22 | <h1 className="text-2xl font-bold text-foreground hover:text-blue-600 dark:hover:text-blue-400 transition-colors cursor-pointer">FCTDrive</h1> | ||
| 23 | </Link> | ||
| 24 | |||
| 25 | <div className="bg-white dark:bg-gray-800 rounded-lg shadow overflow-hidden"> | ||
| 26 | <div className="overflow-x-auto"> | ||
| 27 | <table className="w-full"> | ||
| 28 | <thead className="bg-gray-50 dark:bg-gray-700"> | ||
| 29 | <tr> | ||
| 30 | <th className="px-4 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider"> | ||
| 31 | Name | ||
| 32 | </th> | ||
| 33 | <th className="px-4 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider"> | ||
| 34 | Size | ||
| 35 | </th> | ||
| 36 | <th className="px-4 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider"> | ||
| 37 | Author | ||
| 38 | </th> | ||
| 39 | <th className="px-4 py-3 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider"> | ||
| 40 | Modified | ||
| 41 | </th> | ||
| 42 | </tr> | ||
| 43 | </thead> | ||
| 44 | <tbody className="divide-y divide-gray-200 dark:divide-gray-600"> | ||
| 45 | {sortedEntries.map((entry, index) => ( | ||
| 46 | <tr | ||
| 47 | key={entry.path} | ||
| 48 | className="hover:bg-gray-50 dark:hover:bg-gray-700 transition-colors" | ||
| 49 | > | ||
| 50 | <td className="px-4 py-4 whitespace-nowrap"> | ||
| 51 | <div className="flex items-center"> | ||
| 52 | <div className="flex-shrink-0 h-5 w-5 mr-3"> | ||
| 53 | {entry.type === 'dir' ? ( | ||
| 54 | <div className="h-5 w-5 text-blue-500">📁</div> | ||
| 55 | ) : ( | ||
| 56 | <div className="h-5 w-5 text-gray-400">📄</div> | ||
| 57 | )} | ||
| 58 | </div> | ||
| 59 | {entry.type === 'dir' ? ( | ||
| 60 | <Link | ||
| 61 | href={`/drive${entry.path}`} | ||
| 62 | className="text-sm font-medium text-blue-600 dark:text-blue-400 hover:underline" | ||
| 63 | > | ||
| 64 | {Drive_basename(entry.path)} | ||
| 65 | </Link> | ||
| 66 | ) : ( | ||
| 67 | <Link | ||
| 68 | href={`/blob/${entry.blob}?filename=${encodeURIComponent(Drive_basename(entry.path))}`} | ||
| 69 | className="text-sm font-medium text-blue-600 dark:text-blue-400 hover:underline" | ||
| 70 | > | ||
| 71 | {Drive_basename(entry.path)} | ||
| 72 | </Link> | ||
| 73 | )} | ||
| 74 | </div> | ||
| 75 | </td> | ||
| 76 | <td className="px-4 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300"> | ||
| 77 | {formatSize(entry.size)} | ||
| 78 | </td> | ||
| 79 | <td className="px-4 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300"> | ||
| 80 | {entry.author} | ||
| 81 | </td> | ||
| 82 | <td className="px-4 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-300"> | ||
| 83 | {new Date(entry.lastmod * 1000).toLocaleString()} | ||
| 84 | </td> | ||
| 85 | </tr> | ||
| 86 | ))} | ||
| 87 | </tbody> | ||
| 88 | </table> | ||
| 89 | </div> | ||
| 90 | </div> | ||
| 91 | </div> | ||
| 92 | </div> | ||
| 93 | ) | ||
| 94 | } \ No newline at end of file | ||
diff --git a/frontend/app/favicon.ico b/frontend/app/favicon.ico new file mode 100644 index 0000000..718d6fe --- /dev/null +++ b/frontend/app/favicon.ico | |||
| Binary files differ | |||
diff --git a/frontend/app/globals.css b/frontend/app/globals.css new file mode 100644 index 0000000..a2dc41e --- /dev/null +++ b/frontend/app/globals.css | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | @import "tailwindcss"; | ||
| 2 | |||
| 3 | :root { | ||
| 4 | --background: #ffffff; | ||
| 5 | --foreground: #171717; | ||
| 6 | } | ||
| 7 | |||
| 8 | @theme inline { | ||
| 9 | --color-background: var(--background); | ||
| 10 | --color-foreground: var(--foreground); | ||
| 11 | --font-sans: var(--font-geist-sans); | ||
| 12 | --font-mono: var(--font-geist-mono); | ||
| 13 | } | ||
| 14 | |||
| 15 | @media (prefers-color-scheme: dark) { | ||
| 16 | :root { | ||
| 17 | --background: #0a0a0a; | ||
| 18 | --foreground: #ededed; | ||
| 19 | } | ||
| 20 | } | ||
| 21 | |||
| 22 | body { | ||
| 23 | background: var(--background); | ||
| 24 | color: var(--foreground); | ||
| 25 | font-family: Arial, Helvetica, sans-serif; | ||
| 26 | } | ||
diff --git a/frontend/app/layout.tsx b/frontend/app/layout.tsx new file mode 100644 index 0000000..2e001e4 --- /dev/null +++ b/frontend/app/layout.tsx | |||
| @@ -0,0 +1,38 @@ | |||
| 1 | import type { Metadata } from "next"; | ||
| 2 | import { Geist, Geist_Mono } from "next/font/google"; | ||
| 3 | import "./globals.css"; | ||
| 4 | import AuthButton from "@/components/AuthButton"; | ||
| 5 | |||
| 6 | const geistSans = Geist({ | ||
| 7 | variable: "--font-geist-sans", | ||
| 8 | subsets: ["latin"], | ||
| 9 | }); | ||
| 10 | |||
| 11 | const geistMono = Geist_Mono({ | ||
| 12 | variable: "--font-geist-mono", | ||
| 13 | subsets: ["latin"], | ||
| 14 | }); | ||
| 15 | |||
| 16 | export const metadata: Metadata = { | ||
| 17 | title: "FCTDrive", | ||
| 18 | description: "Simple file browsing interface for FCTDrive", | ||
| 19 | }; | ||
| 20 | |||
| 21 | export default function RootLayout({ | ||
| 22 | children, | ||
| 23 | }: Readonly<{ | ||
| 24 | children: React.ReactNode; | ||
| 25 | }>) { | ||
| 26 | return ( | ||
| 27 | <html lang="en"> | ||
| 28 | <body | ||
| 29 | className={`${geistSans.variable} ${geistMono.variable} antialiased`} | ||
| 30 | > | ||
| 31 | <div className="absolute top-4 right-4 z-10"> | ||
| 32 | <AuthButton /> | ||
| 33 | </div> | ||
| 34 | {children} | ||
| 35 | </body> | ||
| 36 | </html> | ||
| 37 | ); | ||
| 38 | } | ||
diff --git a/frontend/app/page.tsx b/frontend/app/page.tsx new file mode 100644 index 0000000..3333985 --- /dev/null +++ b/frontend/app/page.tsx | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | import { redirect } from 'next/navigation' | ||
| 2 | |||
| 3 | export default function Home() { | ||
| 4 | redirect('/drive') | ||
| 5 | } | ||
diff --git a/frontend/components/AuthButton.tsx b/frontend/components/AuthButton.tsx new file mode 100644 index 0000000..05c493c --- /dev/null +++ b/frontend/components/AuthButton.tsx | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | import { Auth_get_user, Auth_tinyauth_public_endpoint } from '@/lib/auth' | ||
| 2 | |||
| 3 | export default async function AuthButton() { | ||
| 4 | const user = await Auth_get_user() | ||
| 5 | const authEndpoint = Auth_tinyauth_public_endpoint() | ||
| 6 | |||
| 7 | if (user.isLoggedIn) { | ||
| 8 | return ( | ||
| 9 | <div className="flex items-center gap-4"> | ||
| 10 | <span className="text-sm text-gray-600 dark:text-gray-300"> | ||
| 11 | {user.email} | ||
| 12 | </span> | ||
| 13 | <a | ||
| 14 | href={authEndpoint} | ||
| 15 | className="px-3 py-1 text-sm bg-red-600 hover:bg-red-700 text-white rounded transition-colors" | ||
| 16 | > | ||
| 17 | Logout | ||
| 18 | </a> | ||
| 19 | </div> | ||
| 20 | ) | ||
| 21 | } | ||
| 22 | |||
| 23 | return ( | ||
| 24 | <a | ||
| 25 | href={authEndpoint} | ||
| 26 | className="px-3 py-1 text-sm bg-blue-600 hover:bg-blue-700 text-white rounded transition-colors" | ||
| 27 | > | ||
| 28 | Login | ||
| 29 | </a> | ||
| 30 | ) | ||
| 31 | } \ No newline at end of file | ||
diff --git a/frontend/eslint.config.mjs b/frontend/eslint.config.mjs new file mode 100644 index 0000000..c85fb67 --- /dev/null +++ b/frontend/eslint.config.mjs | |||
| @@ -0,0 +1,16 @@ | |||
| 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; | ||
diff --git a/frontend/lib/auth.ts b/frontend/lib/auth.ts new file mode 100644 index 0000000..fe00b11 --- /dev/null +++ b/frontend/lib/auth.ts | |||
| @@ -0,0 +1,103 @@ | |||
| 1 | import { cookies } from 'next/headers'; | ||
| 2 | import { Env_is_development } from './env'; | ||
| 3 | import { Elsie } from 'next/font/google'; | ||
| 4 | |||
| 5 | export interface UserSessionCookie { | ||
| 6 | name: string, | ||
| 7 | value: string, | ||
| 8 | } | ||
| 9 | |||
| 10 | export interface UserAuth { | ||
| 11 | isLoggedIn: boolean, | ||
| 12 | username: string, | ||
| 13 | name: string, | ||
| 14 | email: string, | ||
| 15 | provider: string, | ||
| 16 | oauth: boolean, | ||
| 17 | } | ||
| 18 | |||
| 19 | export async function Auth_extract_session_cookie(): Promise<UserSessionCookie | null> { | ||
| 20 | const cookieStore = await cookies(); | ||
| 21 | for (const cookie of cookieStore.getAll()) { | ||
| 22 | if (!cookie.name.includes("tinyauth-session")) | ||
| 23 | continue; | ||
| 24 | return { | ||
| 25 | name: cookie.name, | ||
| 26 | value: cookie.value, | ||
| 27 | } as UserSessionCookie; | ||
| 28 | } | ||
| 29 | return null; | ||
| 30 | } | ||
| 31 | |||
| 32 | export async function Auth_get_user(): Promise<UserAuth> { | ||
| 33 | const cookie = await Auth_extract_session_cookie(); | ||
| 34 | const endpoint = Auth_tinyauth_endpoint(); | ||
| 35 | |||
| 36 | try { | ||
| 37 | const headers: Record<string, string> = {}; | ||
| 38 | if (cookie) { | ||
| 39 | headers['Cookie'] = `${cookie.name}=${cookie.value}`; | ||
| 40 | } | ||
| 41 | |||
| 42 | const response = await fetch(`${endpoint}/api/user`, { | ||
| 43 | method: 'GET', | ||
| 44 | headers | ||
| 45 | }); | ||
| 46 | |||
| 47 | if (!response.ok) { | ||
| 48 | return { | ||
| 49 | isLoggedIn: false, | ||
| 50 | username: '', | ||
| 51 | name: '', | ||
| 52 | email: '', | ||
| 53 | provider: '', | ||
| 54 | oauth: false | ||
| 55 | }; | ||
| 56 | } | ||
| 57 | |||
| 58 | const data = await response.json(); | ||
| 59 | |||
| 60 | return { | ||
| 61 | isLoggedIn: data.isLoggedIn || false, | ||
| 62 | username: data.username || '', | ||
| 63 | name: data.name || '', | ||
| 64 | email: data.email || '', | ||
| 65 | provider: data.provider || '', | ||
| 66 | oauth: data.oauth || false | ||
| 67 | }; | ||
| 68 | } catch (error) { | ||
| 69 | console.error('Failed to fetch user:', error); | ||
| 70 | return { | ||
| 71 | isLoggedIn: false, | ||
| 72 | username: '', | ||
| 73 | name: '', | ||
| 74 | email: '', | ||
| 75 | provider: '', | ||
| 76 | oauth: false | ||
| 77 | }; | ||
| 78 | } | ||
| 79 | } | ||
| 80 | |||
| 81 | export function Auth_user_can_upload(user: UserAuth): boolean { | ||
| 82 | if (!user.isLoggedIn) | ||
| 83 | return false; | ||
| 84 | |||
| 85 | if (Env_is_development()) | ||
| 86 | return true; | ||
| 87 | |||
| 88 | return user.oauth && user.email.endsWith("@campus.fct.unl.pt"); | ||
| 89 | } | ||
| 90 | |||
| 91 | function Auth_tinyauth_endpoint(): string { | ||
| 92 | const endpoint = process.env.TINYAUTH_ENDPOINT; | ||
| 93 | if (endpoint == undefined) | ||
| 94 | throw new Error(`env var TINYAUTH_ENDPOINT not defined`); | ||
| 95 | return endpoint; | ||
| 96 | } | ||
| 97 | |||
| 98 | export function Auth_tinyauth_public_endpoint(): string { | ||
| 99 | const endpoint = process.env.TINYAUTH_PUBLIC_ENDPOINT; | ||
| 100 | if (endpoint == undefined) | ||
| 101 | throw new Error(`env var TINYAUTH_PUBLIC_ENDPOINT not defined`); | ||
| 102 | return endpoint; | ||
| 103 | } | ||
diff --git a/frontend/lib/drive.ts b/frontend/lib/drive.ts new file mode 100644 index 0000000..4211949 --- /dev/null +++ b/frontend/lib/drive.ts | |||
| @@ -0,0 +1,91 @@ | |||
| 1 | import { spawnSync } from 'child_process' | ||
| 2 | |||
| 3 | export interface DriveLsEntry { | ||
| 4 | path: string | ||
| 5 | type: "dir" | "file" | ||
| 6 | lastmod: number | ||
| 7 | blob: string | null | ||
| 8 | size: number | null | ||
| 9 | author: string | ||
| 10 | } | ||
| 11 | |||
| 12 | /// lists the given path on the drive | ||
| 13 | export async function Drive_ls(path: string, recursive: boolean): Promise<DriveLsEntry[]> { | ||
| 14 | const args = ['ls'] | ||
| 15 | if (recursive) { | ||
| 16 | args.push('-r') | ||
| 17 | } | ||
| 18 | if (path) { | ||
| 19 | args.push(path) | ||
| 20 | } | ||
| 21 | |||
| 22 | const result = spawnSync('fctdrive', args, { encoding: 'utf-8' }) | ||
| 23 | if (result.error) { | ||
| 24 | throw new Error(`Failed to execute fctdrive: ${result.error.message}`) | ||
| 25 | } | ||
| 26 | if (result.status !== 0) { | ||
| 27 | throw new Error(`fctdrive exited with code ${result.status}: ${result.stderr}`) | ||
| 28 | } | ||
| 29 | const stdout = result.stdout | ||
| 30 | const entries = [] | ||
| 31 | for (const line of stdout.split('\n')) { | ||
| 32 | if (line.trim() == "") | ||
| 33 | continue; | ||
| 34 | |||
| 35 | const parts = line.split('\t'); | ||
| 36 | const path = parts[0]; | ||
| 37 | const type = parts[1]; | ||
| 38 | const lastmod = parseInt(parts[2]); | ||
| 39 | const blobStr = parts[3]; | ||
| 40 | const sizeStr = parts[4]; | ||
| 41 | const author = parts[5]; | ||
| 42 | |||
| 43 | var blob = null; | ||
| 44 | if (blobStr != "-") | ||
| 45 | blob = blobStr; | ||
| 46 | |||
| 47 | var size = null; | ||
| 48 | if (sizeStr != "-") | ||
| 49 | size = parseFloat(sizeStr); | ||
| 50 | |||
| 51 | entries.push({ | ||
| 52 | path, type, lastmod, blob, size, author | ||
| 53 | } as DriveLsEntry); | ||
| 54 | } | ||
| 55 | return entries; | ||
| 56 | } | ||
| 57 | |||
| 58 | /// import the file at local_path by moving it to drive_path | ||
| 59 | export async function Drive_import(local_path: string, drive_path: string, email: string) { | ||
| 60 | const result = spawnSync('fctdrive', ['import', local_path, "--mode", "move", "--destination", drive_path, "--email", email], { encoding: 'utf-8' }); | ||
| 61 | if (result.error) { | ||
| 62 | throw new Error(`Failed to execute fctdrive: ${result.error.message}`); | ||
| 63 | } | ||
| 64 | if (result.status !== 0) { | ||
| 65 | throw new Error(`fctdrive exited with code ${result.status}: ${result.stderr}`); | ||
| 66 | } | ||
| 67 | } | ||
| 68 | |||
| 69 | /// returns the full filesystem path of the blob given its id | ||
| 70 | export async function Drive_blob_path(blob: string): Promise<string> { | ||
| 71 | const result = spawnSync('fctdrive', ['blob', blob], { encoding: 'utf-8' }) | ||
| 72 | if (result.error) { | ||
| 73 | throw new Error(`Failed to execute fctdrive: ${result.error.message}`) | ||
| 74 | } | ||
| 75 | if (result.status !== 0) { | ||
| 76 | throw new Error(`fctdrive exited with code ${result.status}: ${result.stderr}`) | ||
| 77 | } | ||
| 78 | return result.stdout.trim(); | ||
| 79 | } | ||
| 80 | |||
| 81 | export function Drive_basename(path: string): string { | ||
| 82 | const parts = path.split('/'); | ||
| 83 | return parts[parts.length - 1]; | ||
| 84 | } | ||
| 85 | |||
| 86 | export function Drive_parent(path: string): string | null { | ||
| 87 | const parts = path.split('/'); | ||
| 88 | if (parts.length <= 1) | ||
| 89 | return null; | ||
| 90 | return parts[parts.length - 2]; | ||
| 91 | } | ||
diff --git a/frontend/lib/env.ts b/frontend/lib/env.ts new file mode 100644 index 0000000..d67fb3c --- /dev/null +++ b/frontend/lib/env.ts | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | export function Env_is_development(): boolean { | ||
| 2 | return process.env.NODE_ENV == "development"; | ||
| 3 | } | ||
diff --git a/frontend/lib/utils.ts b/frontend/lib/utils.ts new file mode 100644 index 0000000..7a1e30c --- /dev/null +++ b/frontend/lib/utils.ts | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | /** | ||
| 2 | * Formats a size in bytes into a human-readable string | ||
| 3 | * @param bytes Size in bytes | ||
| 4 | * @returns Formatted size string (e.g., "1.5 KB", "2.3 MB", "1.2 GB") | ||
| 5 | */ | ||
| 6 | export function formatSize(bytes: number | null): string { | ||
| 7 | if (bytes === null || bytes === 0) { | ||
| 8 | return '-' | ||
| 9 | } | ||
| 10 | |||
| 11 | const units = ['B', 'KB', 'MB', 'GB', 'TB'] | ||
| 12 | let size = bytes | ||
| 13 | let unitIndex = 0 | ||
| 14 | |||
| 15 | while (size >= 1024 && unitIndex < units.length - 1) { | ||
| 16 | size /= 1024 | ||
| 17 | unitIndex++ | ||
| 18 | } | ||
| 19 | |||
| 20 | // Format with appropriate decimal places | ||
| 21 | if (size < 10 && unitIndex > 0) { | ||
| 22 | return `${size.toFixed(1)} ${units[unitIndex]}` | ||
| 23 | } else { | ||
| 24 | return `${Math.round(size)} ${units[unitIndex]}` | ||
| 25 | } | ||
| 26 | } \ No newline at end of file | ||
diff --git a/frontend/next.config.ts b/frontend/next.config.ts new file mode 100644 index 0000000..e9ffa30 --- /dev/null +++ b/frontend/next.config.ts | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | import type { NextConfig } from "next"; | ||
| 2 | |||
| 3 | const nextConfig: NextConfig = { | ||
| 4 | /* config options here */ | ||
| 5 | }; | ||
| 6 | |||
| 7 | export default nextConfig; | ||
diff --git a/frontend/package-lock.json b/frontend/package-lock.json new file mode 100644 index 0000000..9f0d213 --- /dev/null +++ b/frontend/package-lock.json | |||
| @@ -0,0 +1,6149 @@ | |||
| 1 | { | ||
| 2 | "name": "frontend", | ||
| 3 | "version": "0.1.0", | ||
| 4 | "lockfileVersion": 3, | ||
| 5 | "requires": true, | ||
| 6 | "packages": { | ||
| 7 | "": { | ||
| 8 | "name": "frontend", | ||
| 9 | "version": "0.1.0", | ||
| 10 | "dependencies": { | ||
| 11 | "next": "15.4.6", | ||
| 12 | "react": "19.1.0", | ||
| 13 | "react-dom": "19.1.0" | ||
| 14 | }, | ||
| 15 | "devDependencies": { | ||
| 16 | "@eslint/eslintrc": "^3", | ||
| 17 | "@tailwindcss/postcss": "^4", | ||
| 18 | "@types/node": "^20", | ||
| 19 | "@types/react": "^19", | ||
| 20 | "@types/react-dom": "^19", | ||
| 21 | "eslint": "^9", | ||
| 22 | "eslint-config-next": "15.4.6", | ||
| 23 | "tailwindcss": "^4", | ||
| 24 | "typescript": "^5" | ||
| 25 | } | ||
| 26 | }, | ||
| 27 | "node_modules/@alloc/quick-lru": { | ||
| 28 | "version": "5.2.0", | ||
| 29 | "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", | ||
| 30 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", | ||
| 31 | "dev": true, | ||
| 32 | "license": "MIT", | ||
| 33 | "engines": { | ||
| 34 | "node": ">=10" | ||
| 35 | }, | ||
| 36 | "funding": { | ||
| 37 | "url": "https://github.com/sponsors/sindresorhus" | ||
| 38 | } | ||
| 39 | }, | ||
| 40 | "node_modules/@ampproject/remapping": { | ||
| 41 | "version": "2.3.0", | ||
| 42 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", | ||
| 43 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", | ||
| 44 | "dev": true, | ||
| 45 | "license": "Apache-2.0", | ||
| 46 | "dependencies": { | ||
| 47 | "@jridgewell/gen-mapping": "^0.3.5", | ||
| 48 | "@jridgewell/trace-mapping": "^0.3.24" | ||
| 49 | }, | ||
| 50 | "engines": { | ||
| 51 | "node": ">=6.0.0" | ||
| 52 | } | ||
| 53 | }, | ||
| 54 | "node_modules/@emnapi/core": { | ||
| 55 | "version": "1.4.5", | ||
| 56 | "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.4.5.tgz", | ||
| 57 | "integrity": "sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q==", | ||
| 58 | "dev": true, | ||
| 59 | "license": "MIT", | ||
| 60 | "optional": true, | ||
| 61 | "dependencies": { | ||
| 62 | "@emnapi/wasi-threads": "1.0.4", | ||
| 63 | "tslib": "^2.4.0" | ||
| 64 | } | ||
| 65 | }, | ||
| 66 | "node_modules/@emnapi/runtime": { | ||
| 67 | "version": "1.4.5", | ||
| 68 | "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.4.5.tgz", | ||
| 69 | "integrity": "sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==", | ||
| 70 | "license": "MIT", | ||
| 71 | "optional": true, | ||
| 72 | "dependencies": { | ||
| 73 | "tslib": "^2.4.0" | ||
| 74 | } | ||
| 75 | }, | ||
| 76 | "node_modules/@emnapi/wasi-threads": { | ||
| 77 | "version": "1.0.4", | ||
| 78 | "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.0.4.tgz", | ||
| 79 | "integrity": "sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g==", | ||
| 80 | "dev": true, | ||
| 81 | "license": "MIT", | ||
| 82 | "optional": true, | ||
| 83 | "dependencies": { | ||
| 84 | "tslib": "^2.4.0" | ||
| 85 | } | ||
| 86 | }, | ||
| 87 | "node_modules/@eslint-community/eslint-utils": { | ||
| 88 | "version": "4.7.0", | ||
| 89 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", | ||
| 90 | "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", | ||
| 91 | "dev": true, | ||
| 92 | "license": "MIT", | ||
| 93 | "dependencies": { | ||
| 94 | "eslint-visitor-keys": "^3.4.3" | ||
| 95 | }, | ||
| 96 | "engines": { | ||
| 97 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" | ||
| 98 | }, | ||
| 99 | "funding": { | ||
| 100 | "url": "https://opencollective.com/eslint" | ||
| 101 | }, | ||
| 102 | "peerDependencies": { | ||
| 103 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" | ||
| 104 | } | ||
| 105 | }, | ||
| 106 | "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { | ||
| 107 | "version": "3.4.3", | ||
| 108 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", | ||
| 109 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", | ||
| 110 | "dev": true, | ||
| 111 | "license": "Apache-2.0", | ||
| 112 | "engines": { | ||
| 113 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" | ||
| 114 | }, | ||
| 115 | "funding": { | ||
| 116 | "url": "https://opencollective.com/eslint" | ||
| 117 | } | ||
| 118 | }, | ||
| 119 | "node_modules/@eslint-community/regexpp": { | ||
| 120 | "version": "4.12.1", | ||
| 121 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", | ||
| 122 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", | ||
| 123 | "dev": true, | ||
| 124 | "license": "MIT", | ||
| 125 | "engines": { | ||
| 126 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" | ||
| 127 | } | ||
| 128 | }, | ||
| 129 | "node_modules/@eslint/config-array": { | ||
| 130 | "version": "0.21.0", | ||
| 131 | "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.0.tgz", | ||
| 132 | "integrity": "sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==", | ||
| 133 | "dev": true, | ||
| 134 | "license": "Apache-2.0", | ||
| 135 | "dependencies": { | ||
| 136 | "@eslint/object-schema": "^2.1.6", | ||
| 137 | "debug": "^4.3.1", | ||
| 138 | "minimatch": "^3.1.2" | ||
| 139 | }, | ||
| 140 | "engines": { | ||
| 141 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 142 | } | ||
| 143 | }, | ||
| 144 | "node_modules/@eslint/config-helpers": { | ||
| 145 | "version": "0.3.1", | ||
| 146 | "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.3.1.tgz", | ||
| 147 | "integrity": "sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==", | ||
| 148 | "dev": true, | ||
| 149 | "license": "Apache-2.0", | ||
| 150 | "engines": { | ||
| 151 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 152 | } | ||
| 153 | }, | ||
| 154 | "node_modules/@eslint/core": { | ||
| 155 | "version": "0.15.2", | ||
| 156 | "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.2.tgz", | ||
| 157 | "integrity": "sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==", | ||
| 158 | "dev": true, | ||
| 159 | "license": "Apache-2.0", | ||
| 160 | "dependencies": { | ||
| 161 | "@types/json-schema": "^7.0.15" | ||
| 162 | }, | ||
| 163 | "engines": { | ||
| 164 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 165 | } | ||
| 166 | }, | ||
| 167 | "node_modules/@eslint/eslintrc": { | ||
| 168 | "version": "3.3.1", | ||
| 169 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", | ||
| 170 | "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", | ||
| 171 | "dev": true, | ||
| 172 | "license": "MIT", | ||
| 173 | "dependencies": { | ||
| 174 | "ajv": "^6.12.4", | ||
| 175 | "debug": "^4.3.2", | ||
| 176 | "espree": "^10.0.1", | ||
| 177 | "globals": "^14.0.0", | ||
| 178 | "ignore": "^5.2.0", | ||
| 179 | "import-fresh": "^3.2.1", | ||
| 180 | "js-yaml": "^4.1.0", | ||
| 181 | "minimatch": "^3.1.2", | ||
| 182 | "strip-json-comments": "^3.1.1" | ||
| 183 | }, | ||
| 184 | "engines": { | ||
| 185 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 186 | }, | ||
| 187 | "funding": { | ||
| 188 | "url": "https://opencollective.com/eslint" | ||
| 189 | } | ||
| 190 | }, | ||
| 191 | "node_modules/@eslint/js": { | ||
| 192 | "version": "9.33.0", | ||
| 193 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.33.0.tgz", | ||
| 194 | "integrity": "sha512-5K1/mKhWaMfreBGJTwval43JJmkip0RmM+3+IuqupeSKNC/Th2Kc7ucaq5ovTSra/OOKB9c58CGSz3QMVbWt0A==", | ||
| 195 | "dev": true, | ||
| 196 | "license": "MIT", | ||
| 197 | "engines": { | ||
| 198 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 199 | }, | ||
| 200 | "funding": { | ||
| 201 | "url": "https://eslint.org/donate" | ||
| 202 | } | ||
| 203 | }, | ||
| 204 | "node_modules/@eslint/object-schema": { | ||
| 205 | "version": "2.1.6", | ||
| 206 | "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", | ||
| 207 | "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", | ||
| 208 | "dev": true, | ||
| 209 | "license": "Apache-2.0", | ||
| 210 | "engines": { | ||
| 211 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 212 | } | ||
| 213 | }, | ||
| 214 | "node_modules/@eslint/plugin-kit": { | ||
| 215 | "version": "0.3.5", | ||
| 216 | "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.5.tgz", | ||
| 217 | "integrity": "sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==", | ||
| 218 | "dev": true, | ||
| 219 | "license": "Apache-2.0", | ||
| 220 | "dependencies": { | ||
| 221 | "@eslint/core": "^0.15.2", | ||
| 222 | "levn": "^0.4.1" | ||
| 223 | }, | ||
| 224 | "engines": { | ||
| 225 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 226 | } | ||
| 227 | }, | ||
| 228 | "node_modules/@humanfs/core": { | ||
| 229 | "version": "0.19.1", | ||
| 230 | "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", | ||
| 231 | "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", | ||
| 232 | "dev": true, | ||
| 233 | "license": "Apache-2.0", | ||
| 234 | "engines": { | ||
| 235 | "node": ">=18.18.0" | ||
| 236 | } | ||
| 237 | }, | ||
| 238 | "node_modules/@humanfs/node": { | ||
| 239 | "version": "0.16.6", | ||
| 240 | "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", | ||
| 241 | "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", | ||
| 242 | "dev": true, | ||
| 243 | "license": "Apache-2.0", | ||
| 244 | "dependencies": { | ||
| 245 | "@humanfs/core": "^0.19.1", | ||
| 246 | "@humanwhocodes/retry": "^0.3.0" | ||
| 247 | }, | ||
| 248 | "engines": { | ||
| 249 | "node": ">=18.18.0" | ||
| 250 | } | ||
| 251 | }, | ||
| 252 | "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { | ||
| 253 | "version": "0.3.1", | ||
| 254 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", | ||
| 255 | "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", | ||
| 256 | "dev": true, | ||
| 257 | "license": "Apache-2.0", | ||
| 258 | "engines": { | ||
| 259 | "node": ">=18.18" | ||
| 260 | }, | ||
| 261 | "funding": { | ||
| 262 | "type": "github", | ||
| 263 | "url": "https://github.com/sponsors/nzakas" | ||
| 264 | } | ||
| 265 | }, | ||
| 266 | "node_modules/@humanwhocodes/module-importer": { | ||
| 267 | "version": "1.0.1", | ||
| 268 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", | ||
| 269 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", | ||
| 270 | "dev": true, | ||
| 271 | "license": "Apache-2.0", | ||
| 272 | "engines": { | ||
| 273 | "node": ">=12.22" | ||
| 274 | }, | ||
| 275 | "funding": { | ||
| 276 | "type": "github", | ||
| 277 | "url": "https://github.com/sponsors/nzakas" | ||
| 278 | } | ||
| 279 | }, | ||
| 280 | "node_modules/@humanwhocodes/retry": { | ||
| 281 | "version": "0.4.3", | ||
| 282 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", | ||
| 283 | "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", | ||
| 284 | "dev": true, | ||
| 285 | "license": "Apache-2.0", | ||
| 286 | "engines": { | ||
| 287 | "node": ">=18.18" | ||
| 288 | }, | ||
| 289 | "funding": { | ||
| 290 | "type": "github", | ||
| 291 | "url": "https://github.com/sponsors/nzakas" | ||
| 292 | } | ||
| 293 | }, | ||
| 294 | "node_modules/@img/sharp-darwin-arm64": { | ||
| 295 | "version": "0.34.3", | ||
| 296 | "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.3.tgz", | ||
| 297 | "integrity": "sha512-ryFMfvxxpQRsgZJqBd4wsttYQbCxsJksrv9Lw/v798JcQ8+w84mBWuXwl+TT0WJ/WrYOLaYpwQXi3sA9nTIaIg==", | ||
| 298 | "cpu": [ | ||
| 299 | "arm64" | ||
| 300 | ], | ||
| 301 | "license": "Apache-2.0", | ||
| 302 | "optional": true, | ||
| 303 | "os": [ | ||
| 304 | "darwin" | ||
| 305 | ], | ||
| 306 | "engines": { | ||
| 307 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" | ||
| 308 | }, | ||
| 309 | "funding": { | ||
| 310 | "url": "https://opencollective.com/libvips" | ||
| 311 | }, | ||
| 312 | "optionalDependencies": { | ||
| 313 | "@img/sharp-libvips-darwin-arm64": "1.2.0" | ||
| 314 | } | ||
| 315 | }, | ||
| 316 | "node_modules/@img/sharp-darwin-x64": { | ||
| 317 | "version": "0.34.3", | ||
| 318 | "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.3.tgz", | ||
| 319 | "integrity": "sha512-yHpJYynROAj12TA6qil58hmPmAwxKKC7reUqtGLzsOHfP7/rniNGTL8tjWX6L3CTV4+5P4ypcS7Pp+7OB+8ihA==", | ||
| 320 | "cpu": [ | ||
| 321 | "x64" | ||
| 322 | ], | ||
| 323 | "license": "Apache-2.0", | ||
| 324 | "optional": true, | ||
| 325 | "os": [ | ||
| 326 | "darwin" | ||
| 327 | ], | ||
| 328 | "engines": { | ||
| 329 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" | ||
| 330 | }, | ||
| 331 | "funding": { | ||
| 332 | "url": "https://opencollective.com/libvips" | ||
| 333 | }, | ||
| 334 | "optionalDependencies": { | ||
| 335 | "@img/sharp-libvips-darwin-x64": "1.2.0" | ||
| 336 | } | ||
| 337 | }, | ||
| 338 | "node_modules/@img/sharp-libvips-darwin-arm64": { | ||
| 339 | "version": "1.2.0", | ||
| 340 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.0.tgz", | ||
| 341 | "integrity": "sha512-sBZmpwmxqwlqG9ueWFXtockhsxefaV6O84BMOrhtg/YqbTaRdqDE7hxraVE3y6gVM4eExmfzW4a8el9ArLeEiQ==", | ||
| 342 | "cpu": [ | ||
| 343 | "arm64" | ||
| 344 | ], | ||
| 345 | "license": "LGPL-3.0-or-later", | ||
| 346 | "optional": true, | ||
| 347 | "os": [ | ||
| 348 | "darwin" | ||
| 349 | ], | ||
| 350 | "funding": { | ||
| 351 | "url": "https://opencollective.com/libvips" | ||
| 352 | } | ||
| 353 | }, | ||
| 354 | "node_modules/@img/sharp-libvips-darwin-x64": { | ||
| 355 | "version": "1.2.0", | ||
| 356 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.0.tgz", | ||
| 357 | "integrity": "sha512-M64XVuL94OgiNHa5/m2YvEQI5q2cl9d/wk0qFTDVXcYzi43lxuiFTftMR1tOnFQovVXNZJ5TURSDK2pNe9Yzqg==", | ||
| 358 | "cpu": [ | ||
| 359 | "x64" | ||
| 360 | ], | ||
| 361 | "license": "LGPL-3.0-or-later", | ||
| 362 | "optional": true, | ||
| 363 | "os": [ | ||
| 364 | "darwin" | ||
| 365 | ], | ||
| 366 | "funding": { | ||
| 367 | "url": "https://opencollective.com/libvips" | ||
| 368 | } | ||
| 369 | }, | ||
| 370 | "node_modules/@img/sharp-libvips-linux-arm": { | ||
| 371 | "version": "1.2.0", | ||
| 372 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.0.tgz", | ||
| 373 | "integrity": "sha512-mWd2uWvDtL/nvIzThLq3fr2nnGfyr/XMXlq8ZJ9WMR6PXijHlC3ksp0IpuhK6bougvQrchUAfzRLnbsen0Cqvw==", | ||
| 374 | "cpu": [ | ||
| 375 | "arm" | ||
| 376 | ], | ||
| 377 | "license": "LGPL-3.0-or-later", | ||
| 378 | "optional": true, | ||
| 379 | "os": [ | ||
| 380 | "linux" | ||
| 381 | ], | ||
| 382 | "funding": { | ||
| 383 | "url": "https://opencollective.com/libvips" | ||
| 384 | } | ||
| 385 | }, | ||
| 386 | "node_modules/@img/sharp-libvips-linux-arm64": { | ||
| 387 | "version": "1.2.0", | ||
| 388 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.0.tgz", | ||
| 389 | "integrity": "sha512-RXwd0CgG+uPRX5YYrkzKyalt2OJYRiJQ8ED/fi1tq9WQW2jsQIn0tqrlR5l5dr/rjqq6AHAxURhj2DVjyQWSOA==", | ||
| 390 | "cpu": [ | ||
| 391 | "arm64" | ||
| 392 | ], | ||
| 393 | "license": "LGPL-3.0-or-later", | ||
| 394 | "optional": true, | ||
| 395 | "os": [ | ||
| 396 | "linux" | ||
| 397 | ], | ||
| 398 | "funding": { | ||
| 399 | "url": "https://opencollective.com/libvips" | ||
| 400 | } | ||
| 401 | }, | ||
| 402 | "node_modules/@img/sharp-libvips-linux-ppc64": { | ||
| 403 | "version": "1.2.0", | ||
| 404 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.0.tgz", | ||
| 405 | "integrity": "sha512-Xod/7KaDDHkYu2phxxfeEPXfVXFKx70EAFZ0qyUdOjCcxbjqyJOEUpDe6RIyaunGxT34Anf9ue/wuWOqBW2WcQ==", | ||
| 406 | "cpu": [ | ||
| 407 | "ppc64" | ||
| 408 | ], | ||
| 409 | "license": "LGPL-3.0-or-later", | ||
| 410 | "optional": true, | ||
| 411 | "os": [ | ||
| 412 | "linux" | ||
| 413 | ], | ||
| 414 | "funding": { | ||
| 415 | "url": "https://opencollective.com/libvips" | ||
| 416 | } | ||
| 417 | }, | ||
| 418 | "node_modules/@img/sharp-libvips-linux-s390x": { | ||
| 419 | "version": "1.2.0", | ||
| 420 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.0.tgz", | ||
| 421 | "integrity": "sha512-eMKfzDxLGT8mnmPJTNMcjfO33fLiTDsrMlUVcp6b96ETbnJmd4uvZxVJSKPQfS+odwfVaGifhsB07J1LynFehw==", | ||
| 422 | "cpu": [ | ||
| 423 | "s390x" | ||
| 424 | ], | ||
| 425 | "license": "LGPL-3.0-or-later", | ||
| 426 | "optional": true, | ||
| 427 | "os": [ | ||
| 428 | "linux" | ||
| 429 | ], | ||
| 430 | "funding": { | ||
| 431 | "url": "https://opencollective.com/libvips" | ||
| 432 | } | ||
| 433 | }, | ||
| 434 | "node_modules/@img/sharp-libvips-linux-x64": { | ||
| 435 | "version": "1.2.0", | ||
| 436 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.0.tgz", | ||
| 437 | "integrity": "sha512-ZW3FPWIc7K1sH9E3nxIGB3y3dZkpJlMnkk7z5tu1nSkBoCgw2nSRTFHI5pB/3CQaJM0pdzMF3paf9ckKMSE9Tg==", | ||
| 438 | "cpu": [ | ||
| 439 | "x64" | ||
| 440 | ], | ||
| 441 | "license": "LGPL-3.0-or-later", | ||
| 442 | "optional": true, | ||
| 443 | "os": [ | ||
| 444 | "linux" | ||
| 445 | ], | ||
| 446 | "funding": { | ||
| 447 | "url": "https://opencollective.com/libvips" | ||
| 448 | } | ||
| 449 | }, | ||
| 450 | "node_modules/@img/sharp-libvips-linuxmusl-arm64": { | ||
| 451 | "version": "1.2.0", | ||
| 452 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.0.tgz", | ||
| 453 | "integrity": "sha512-UG+LqQJbf5VJ8NWJ5Z3tdIe/HXjuIdo4JeVNADXBFuG7z9zjoegpzzGIyV5zQKi4zaJjnAd2+g2nna8TZvuW9Q==", | ||
| 454 | "cpu": [ | ||
| 455 | "arm64" | ||
| 456 | ], | ||
| 457 | "license": "LGPL-3.0-or-later", | ||
| 458 | "optional": true, | ||
| 459 | "os": [ | ||
| 460 | "linux" | ||
| 461 | ], | ||
| 462 | "funding": { | ||
| 463 | "url": "https://opencollective.com/libvips" | ||
| 464 | } | ||
| 465 | }, | ||
| 466 | "node_modules/@img/sharp-libvips-linuxmusl-x64": { | ||
| 467 | "version": "1.2.0", | ||
| 468 | "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.0.tgz", | ||
| 469 | "integrity": "sha512-SRYOLR7CXPgNze8akZwjoGBoN1ThNZoqpOgfnOxmWsklTGVfJiGJoC/Lod7aNMGA1jSsKWM1+HRX43OP6p9+6Q==", | ||
| 470 | "cpu": [ | ||
| 471 | "x64" | ||
| 472 | ], | ||
| 473 | "license": "LGPL-3.0-or-later", | ||
| 474 | "optional": true, | ||
| 475 | "os": [ | ||
| 476 | "linux" | ||
| 477 | ], | ||
| 478 | "funding": { | ||
| 479 | "url": "https://opencollective.com/libvips" | ||
| 480 | } | ||
| 481 | }, | ||
| 482 | "node_modules/@img/sharp-linux-arm": { | ||
| 483 | "version": "0.34.3", | ||
| 484 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.3.tgz", | ||
| 485 | "integrity": "sha512-oBK9l+h6KBN0i3dC8rYntLiVfW8D8wH+NPNT3O/WBHeW0OQWCjfWksLUaPidsrDKpJgXp3G3/hkmhptAW0I3+A==", | ||
| 486 | "cpu": [ | ||
| 487 | "arm" | ||
| 488 | ], | ||
| 489 | "license": "Apache-2.0", | ||
| 490 | "optional": true, | ||
| 491 | "os": [ | ||
| 492 | "linux" | ||
| 493 | ], | ||
| 494 | "engines": { | ||
| 495 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" | ||
| 496 | }, | ||
| 497 | "funding": { | ||
| 498 | "url": "https://opencollective.com/libvips" | ||
| 499 | }, | ||
| 500 | "optionalDependencies": { | ||
| 501 | "@img/sharp-libvips-linux-arm": "1.2.0" | ||
| 502 | } | ||
| 503 | }, | ||
| 504 | "node_modules/@img/sharp-linux-arm64": { | ||
| 505 | "version": "0.34.3", | ||
| 506 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.3.tgz", | ||
| 507 | "integrity": "sha512-QdrKe3EvQrqwkDrtuTIjI0bu6YEJHTgEeqdzI3uWJOH6G1O8Nl1iEeVYRGdj1h5I21CqxSvQp1Yv7xeU3ZewbA==", | ||
| 508 | "cpu": [ | ||
| 509 | "arm64" | ||
| 510 | ], | ||
| 511 | "license": "Apache-2.0", | ||
| 512 | "optional": true, | ||
| 513 | "os": [ | ||
| 514 | "linux" | ||
| 515 | ], | ||
| 516 | "engines": { | ||
| 517 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" | ||
| 518 | }, | ||
| 519 | "funding": { | ||
| 520 | "url": "https://opencollective.com/libvips" | ||
| 521 | }, | ||
| 522 | "optionalDependencies": { | ||
| 523 | "@img/sharp-libvips-linux-arm64": "1.2.0" | ||
| 524 | } | ||
| 525 | }, | ||
| 526 | "node_modules/@img/sharp-linux-ppc64": { | ||
| 527 | "version": "0.34.3", | ||
| 528 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.3.tgz", | ||
| 529 | "integrity": "sha512-GLtbLQMCNC5nxuImPR2+RgrviwKwVql28FWZIW1zWruy6zLgA5/x2ZXk3mxj58X/tszVF69KK0Is83V8YgWhLA==", | ||
| 530 | "cpu": [ | ||
| 531 | "ppc64" | ||
| 532 | ], | ||
| 533 | "license": "Apache-2.0", | ||
| 534 | "optional": true, | ||
| 535 | "os": [ | ||
| 536 | "linux" | ||
| 537 | ], | ||
| 538 | "engines": { | ||
| 539 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" | ||
| 540 | }, | ||
| 541 | "funding": { | ||
| 542 | "url": "https://opencollective.com/libvips" | ||
| 543 | }, | ||
| 544 | "optionalDependencies": { | ||
| 545 | "@img/sharp-libvips-linux-ppc64": "1.2.0" | ||
| 546 | } | ||
| 547 | }, | ||
| 548 | "node_modules/@img/sharp-linux-s390x": { | ||
| 549 | "version": "0.34.3", | ||
| 550 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.3.tgz", | ||
| 551 | "integrity": "sha512-3gahT+A6c4cdc2edhsLHmIOXMb17ltffJlxR0aC2VPZfwKoTGZec6u5GrFgdR7ciJSsHT27BD3TIuGcuRT0KmQ==", | ||
| 552 | "cpu": [ | ||
| 553 | "s390x" | ||
| 554 | ], | ||
| 555 | "license": "Apache-2.0", | ||
| 556 | "optional": true, | ||
| 557 | "os": [ | ||
| 558 | "linux" | ||
| 559 | ], | ||
| 560 | "engines": { | ||
| 561 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" | ||
| 562 | }, | ||
| 563 | "funding": { | ||
| 564 | "url": "https://opencollective.com/libvips" | ||
| 565 | }, | ||
| 566 | "optionalDependencies": { | ||
| 567 | "@img/sharp-libvips-linux-s390x": "1.2.0" | ||
| 568 | } | ||
| 569 | }, | ||
| 570 | "node_modules/@img/sharp-linux-x64": { | ||
| 571 | "version": "0.34.3", | ||
| 572 | "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.3.tgz", | ||
| 573 | "integrity": "sha512-8kYso8d806ypnSq3/Ly0QEw90V5ZoHh10yH0HnrzOCr6DKAPI6QVHvwleqMkVQ0m+fc7EH8ah0BB0QPuWY6zJQ==", | ||
| 574 | "cpu": [ | ||
| 575 | "x64" | ||
| 576 | ], | ||
| 577 | "license": "Apache-2.0", | ||
| 578 | "optional": true, | ||
| 579 | "os": [ | ||
| 580 | "linux" | ||
| 581 | ], | ||
| 582 | "engines": { | ||
| 583 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" | ||
| 584 | }, | ||
| 585 | "funding": { | ||
| 586 | "url": "https://opencollective.com/libvips" | ||
| 587 | }, | ||
| 588 | "optionalDependencies": { | ||
| 589 | "@img/sharp-libvips-linux-x64": "1.2.0" | ||
| 590 | } | ||
| 591 | }, | ||
| 592 | "node_modules/@img/sharp-linuxmusl-arm64": { | ||
| 593 | "version": "0.34.3", | ||
| 594 | "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.3.tgz", | ||
| 595 | "integrity": "sha512-vAjbHDlr4izEiXM1OTggpCcPg9tn4YriK5vAjowJsHwdBIdx0fYRsURkxLG2RLm9gyBq66gwtWI8Gx0/ov+JKQ==", | ||
| 596 | "cpu": [ | ||
| 597 | "arm64" | ||
| 598 | ], | ||
| 599 | "license": "Apache-2.0", | ||
| 600 | "optional": true, | ||
| 601 | "os": [ | ||
| 602 | "linux" | ||
| 603 | ], | ||
| 604 | "engines": { | ||
| 605 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" | ||
| 606 | }, | ||
| 607 | "funding": { | ||
| 608 | "url": "https://opencollective.com/libvips" | ||
| 609 | }, | ||
| 610 | "optionalDependencies": { | ||
| 611 | "@img/sharp-libvips-linuxmusl-arm64": "1.2.0" | ||
| 612 | } | ||
| 613 | }, | ||
| 614 | "node_modules/@img/sharp-linuxmusl-x64": { | ||
| 615 | "version": "0.34.3", | ||
| 616 | "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.3.tgz", | ||
| 617 | "integrity": "sha512-gCWUn9547K5bwvOn9l5XGAEjVTTRji4aPTqLzGXHvIr6bIDZKNTA34seMPgM0WmSf+RYBH411VavCejp3PkOeQ==", | ||
| 618 | "cpu": [ | ||
| 619 | "x64" | ||
| 620 | ], | ||
| 621 | "license": "Apache-2.0", | ||
| 622 | "optional": true, | ||
| 623 | "os": [ | ||
| 624 | "linux" | ||
| 625 | ], | ||
| 626 | "engines": { | ||
| 627 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" | ||
| 628 | }, | ||
| 629 | "funding": { | ||
| 630 | "url": "https://opencollective.com/libvips" | ||
| 631 | }, | ||
| 632 | "optionalDependencies": { | ||
| 633 | "@img/sharp-libvips-linuxmusl-x64": "1.2.0" | ||
| 634 | } | ||
| 635 | }, | ||
| 636 | "node_modules/@img/sharp-wasm32": { | ||
| 637 | "version": "0.34.3", | ||
| 638 | "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.3.tgz", | ||
| 639 | "integrity": "sha512-+CyRcpagHMGteySaWos8IbnXcHgfDn7pO2fiC2slJxvNq9gDipYBN42/RagzctVRKgxATmfqOSulgZv5e1RdMg==", | ||
| 640 | "cpu": [ | ||
| 641 | "wasm32" | ||
| 642 | ], | ||
| 643 | "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", | ||
| 644 | "optional": true, | ||
| 645 | "dependencies": { | ||
| 646 | "@emnapi/runtime": "^1.4.4" | ||
| 647 | }, | ||
| 648 | "engines": { | ||
| 649 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" | ||
| 650 | }, | ||
| 651 | "funding": { | ||
| 652 | "url": "https://opencollective.com/libvips" | ||
| 653 | } | ||
| 654 | }, | ||
| 655 | "node_modules/@img/sharp-win32-arm64": { | ||
| 656 | "version": "0.34.3", | ||
| 657 | "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.3.tgz", | ||
| 658 | "integrity": "sha512-MjnHPnbqMXNC2UgeLJtX4XqoVHHlZNd+nPt1kRPmj63wURegwBhZlApELdtxM2OIZDRv/DFtLcNhVbd1z8GYXQ==", | ||
| 659 | "cpu": [ | ||
| 660 | "arm64" | ||
| 661 | ], | ||
| 662 | "license": "Apache-2.0 AND LGPL-3.0-or-later", | ||
| 663 | "optional": true, | ||
| 664 | "os": [ | ||
| 665 | "win32" | ||
| 666 | ], | ||
| 667 | "engines": { | ||
| 668 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" | ||
| 669 | }, | ||
| 670 | "funding": { | ||
| 671 | "url": "https://opencollective.com/libvips" | ||
| 672 | } | ||
| 673 | }, | ||
| 674 | "node_modules/@img/sharp-win32-ia32": { | ||
| 675 | "version": "0.34.3", | ||
| 676 | "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.3.tgz", | ||
| 677 | "integrity": "sha512-xuCdhH44WxuXgOM714hn4amodJMZl3OEvf0GVTm0BEyMeA2to+8HEdRPShH0SLYptJY1uBw+SCFP9WVQi1Q/cw==", | ||
| 678 | "cpu": [ | ||
| 679 | "ia32" | ||
| 680 | ], | ||
| 681 | "license": "Apache-2.0 AND LGPL-3.0-or-later", | ||
| 682 | "optional": true, | ||
| 683 | "os": [ | ||
| 684 | "win32" | ||
| 685 | ], | ||
| 686 | "engines": { | ||
| 687 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" | ||
| 688 | }, | ||
| 689 | "funding": { | ||
| 690 | "url": "https://opencollective.com/libvips" | ||
| 691 | } | ||
| 692 | }, | ||
| 693 | "node_modules/@img/sharp-win32-x64": { | ||
| 694 | "version": "0.34.3", | ||
| 695 | "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.3.tgz", | ||
| 696 | "integrity": "sha512-OWwz05d++TxzLEv4VnsTz5CmZ6mI6S05sfQGEMrNrQcOEERbX46332IvE7pO/EUiw7jUrrS40z/M7kPyjfl04g==", | ||
| 697 | "cpu": [ | ||
| 698 | "x64" | ||
| 699 | ], | ||
| 700 | "license": "Apache-2.0 AND LGPL-3.0-or-later", | ||
| 701 | "optional": true, | ||
| 702 | "os": [ | ||
| 703 | "win32" | ||
| 704 | ], | ||
| 705 | "engines": { | ||
| 706 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" | ||
| 707 | }, | ||
| 708 | "funding": { | ||
| 709 | "url": "https://opencollective.com/libvips" | ||
| 710 | } | ||
| 711 | }, | ||
| 712 | "node_modules/@isaacs/fs-minipass": { | ||
| 713 | "version": "4.0.1", | ||
| 714 | "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz", | ||
| 715 | "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==", | ||
| 716 | "dev": true, | ||
| 717 | "license": "ISC", | ||
| 718 | "dependencies": { | ||
| 719 | "minipass": "^7.0.4" | ||
| 720 | }, | ||
| 721 | "engines": { | ||
| 722 | "node": ">=18.0.0" | ||
| 723 | } | ||
| 724 | }, | ||
| 725 | "node_modules/@jridgewell/gen-mapping": { | ||
| 726 | "version": "0.3.12", | ||
| 727 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", | ||
| 728 | "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", | ||
| 729 | "dev": true, | ||
| 730 | "license": "MIT", | ||
| 731 | "dependencies": { | ||
| 732 | "@jridgewell/sourcemap-codec": "^1.5.0", | ||
| 733 | "@jridgewell/trace-mapping": "^0.3.24" | ||
| 734 | } | ||
| 735 | }, | ||
| 736 | "node_modules/@jridgewell/resolve-uri": { | ||
| 737 | "version": "3.1.2", | ||
| 738 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", | ||
| 739 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", | ||
| 740 | "dev": true, | ||
| 741 | "license": "MIT", | ||
| 742 | "engines": { | ||
| 743 | "node": ">=6.0.0" | ||
| 744 | } | ||
| 745 | }, | ||
| 746 | "node_modules/@jridgewell/sourcemap-codec": { | ||
| 747 | "version": "1.5.4", | ||
| 748 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", | ||
| 749 | "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==", | ||
| 750 | "dev": true, | ||
| 751 | "license": "MIT" | ||
| 752 | }, | ||
| 753 | "node_modules/@jridgewell/trace-mapping": { | ||
| 754 | "version": "0.3.29", | ||
| 755 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", | ||
| 756 | "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", | ||
| 757 | "dev": true, | ||
| 758 | "license": "MIT", | ||
| 759 | "dependencies": { | ||
| 760 | "@jridgewell/resolve-uri": "^3.1.0", | ||
| 761 | "@jridgewell/sourcemap-codec": "^1.4.14" | ||
| 762 | } | ||
| 763 | }, | ||
| 764 | "node_modules/@napi-rs/wasm-runtime": { | ||
| 765 | "version": "0.2.12", | ||
| 766 | "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz", | ||
| 767 | "integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==", | ||
| 768 | "dev": true, | ||
| 769 | "license": "MIT", | ||
| 770 | "optional": true, | ||
| 771 | "dependencies": { | ||
| 772 | "@emnapi/core": "^1.4.3", | ||
| 773 | "@emnapi/runtime": "^1.4.3", | ||
| 774 | "@tybys/wasm-util": "^0.10.0" | ||
| 775 | } | ||
| 776 | }, | ||
| 777 | "node_modules/@next/env": { | ||
| 778 | "version": "15.4.6", | ||
| 779 | "resolved": "https://registry.npmjs.org/@next/env/-/env-15.4.6.tgz", | ||
| 780 | "integrity": "sha512-yHDKVTcHrZy/8TWhj0B23ylKv5ypocuCwey9ZqPyv4rPdUdRzpGCkSi03t04KBPyU96kxVtUqx6O3nE1kpxASQ==", | ||
| 781 | "license": "MIT" | ||
| 782 | }, | ||
| 783 | "node_modules/@next/eslint-plugin-next": { | ||
| 784 | "version": "15.4.6", | ||
| 785 | "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-15.4.6.tgz", | ||
| 786 | "integrity": "sha512-2NOu3ln+BTcpnbIDuxx6MNq+pRrCyey4WSXGaJIyt0D2TYicHeO9QrUENNjcf673n3B1s7hsiV5xBYRCK1Q8kA==", | ||
| 787 | "dev": true, | ||
| 788 | "license": "MIT", | ||
| 789 | "dependencies": { | ||
| 790 | "fast-glob": "3.3.1" | ||
| 791 | } | ||
| 792 | }, | ||
| 793 | "node_modules/@next/swc-darwin-arm64": { | ||
| 794 | "version": "15.4.6", | ||
| 795 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.4.6.tgz", | ||
| 796 | "integrity": "sha512-667R0RTP4DwxzmrqTs4Lr5dcEda9OxuZsVFsjVtxVMVhzSpo6nLclXejJVfQo2/g7/Z9qF3ETDmN3h65mTjpTQ==", | ||
| 797 | "cpu": [ | ||
| 798 | "arm64" | ||
| 799 | ], | ||
| 800 | "license": "MIT", | ||
| 801 | "optional": true, | ||
| 802 | "os": [ | ||
| 803 | "darwin" | ||
| 804 | ], | ||
| 805 | "engines": { | ||
| 806 | "node": ">= 10" | ||
| 807 | } | ||
| 808 | }, | ||
| 809 | "node_modules/@next/swc-darwin-x64": { | ||
| 810 | "version": "15.4.6", | ||
| 811 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-15.4.6.tgz", | ||
| 812 | "integrity": "sha512-KMSFoistFkaiQYVQQnaU9MPWtp/3m0kn2Xed1Ces5ll+ag1+rlac20sxG+MqhH2qYWX1O2GFOATQXEyxKiIscg==", | ||
| 813 | "cpu": [ | ||
| 814 | "x64" | ||
| 815 | ], | ||
| 816 | "license": "MIT", | ||
| 817 | "optional": true, | ||
| 818 | "os": [ | ||
| 819 | "darwin" | ||
| 820 | ], | ||
| 821 | "engines": { | ||
| 822 | "node": ">= 10" | ||
| 823 | } | ||
| 824 | }, | ||
| 825 | "node_modules/@next/swc-linux-arm64-gnu": { | ||
| 826 | "version": "15.4.6", | ||
| 827 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.4.6.tgz", | ||
| 828 | "integrity": "sha512-PnOx1YdO0W7m/HWFeYd2A6JtBO8O8Eb9h6nfJia2Dw1sRHoHpNf6lN1U4GKFRzRDBi9Nq2GrHk9PF3Vmwf7XVw==", | ||
| 829 | "cpu": [ | ||
| 830 | "arm64" | ||
| 831 | ], | ||
| 832 | "license": "MIT", | ||
| 833 | "optional": true, | ||
| 834 | "os": [ | ||
| 835 | "linux" | ||
| 836 | ], | ||
| 837 | "engines": { | ||
| 838 | "node": ">= 10" | ||
| 839 | } | ||
| 840 | }, | ||
| 841 | "node_modules/@next/swc-linux-arm64-musl": { | ||
| 842 | "version": "15.4.6", | ||
| 843 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.4.6.tgz", | ||
| 844 | "integrity": "sha512-XBbuQddtY1p5FGPc2naMO0kqs4YYtLYK/8aPausI5lyOjr4J77KTG9mtlU4P3NwkLI1+OjsPzKVvSJdMs3cFaw==", | ||
| 845 | "cpu": [ | ||
| 846 | "arm64" | ||
| 847 | ], | ||
| 848 | "license": "MIT", | ||
| 849 | "optional": true, | ||
| 850 | "os": [ | ||
| 851 | "linux" | ||
| 852 | ], | ||
| 853 | "engines": { | ||
| 854 | "node": ">= 10" | ||
| 855 | } | ||
| 856 | }, | ||
| 857 | "node_modules/@next/swc-linux-x64-gnu": { | ||
| 858 | "version": "15.4.6", | ||
| 859 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.4.6.tgz", | ||
| 860 | "integrity": "sha512-+WTeK7Qdw82ez3U9JgD+igBAP75gqZ1vbK6R8PlEEuY0OIe5FuYXA4aTjL811kWPf7hNeslD4hHK2WoM9W0IgA==", | ||
| 861 | "cpu": [ | ||
| 862 | "x64" | ||
| 863 | ], | ||
| 864 | "license": "MIT", | ||
| 865 | "optional": true, | ||
| 866 | "os": [ | ||
| 867 | "linux" | ||
| 868 | ], | ||
| 869 | "engines": { | ||
| 870 | "node": ">= 10" | ||
| 871 | } | ||
| 872 | }, | ||
| 873 | "node_modules/@next/swc-linux-x64-musl": { | ||
| 874 | "version": "15.4.6", | ||
| 875 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.4.6.tgz", | ||
| 876 | "integrity": "sha512-XP824mCbgQsK20jlXKrUpZoh/iO3vUWhMpxCz8oYeagoiZ4V0TQiKy0ASji1KK6IAe3DYGfj5RfKP6+L2020OQ==", | ||
| 877 | "cpu": [ | ||
| 878 | "x64" | ||
| 879 | ], | ||
| 880 | "license": "MIT", | ||
| 881 | "optional": true, | ||
| 882 | "os": [ | ||
| 883 | "linux" | ||
| 884 | ], | ||
| 885 | "engines": { | ||
| 886 | "node": ">= 10" | ||
| 887 | } | ||
| 888 | }, | ||
| 889 | "node_modules/@next/swc-win32-arm64-msvc": { | ||
| 890 | "version": "15.4.6", | ||
| 891 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.4.6.tgz", | ||
| 892 | "integrity": "sha512-FxrsenhUz0LbgRkNWx6FRRJIPe/MI1JRA4W4EPd5leXO00AZ6YU8v5vfx4MDXTvN77lM/EqsE3+6d2CIeF5NYg==", | ||
| 893 | "cpu": [ | ||
| 894 | "arm64" | ||
| 895 | ], | ||
| 896 | "license": "MIT", | ||
| 897 | "optional": true, | ||
| 898 | "os": [ | ||
| 899 | "win32" | ||
| 900 | ], | ||
| 901 | "engines": { | ||
| 902 | "node": ">= 10" | ||
| 903 | } | ||
| 904 | }, | ||
| 905 | "node_modules/@next/swc-win32-x64-msvc": { | ||
| 906 | "version": "15.4.6", | ||
| 907 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.4.6.tgz", | ||
| 908 | "integrity": "sha512-T4ufqnZ4u88ZheczkBTtOF+eKaM14V8kbjud/XrAakoM5DKQWjW09vD6B9fsdsWS2T7D5EY31hRHdta7QKWOng==", | ||
| 909 | "cpu": [ | ||
| 910 | "x64" | ||
| 911 | ], | ||
| 912 | "license": "MIT", | ||
| 913 | "optional": true, | ||
| 914 | "os": [ | ||
| 915 | "win32" | ||
| 916 | ], | ||
| 917 | "engines": { | ||
| 918 | "node": ">= 10" | ||
| 919 | } | ||
| 920 | }, | ||
| 921 | "node_modules/@nodelib/fs.scandir": { | ||
| 922 | "version": "2.1.5", | ||
| 923 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", | ||
| 924 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", | ||
| 925 | "dev": true, | ||
| 926 | "license": "MIT", | ||
| 927 | "dependencies": { | ||
| 928 | "@nodelib/fs.stat": "2.0.5", | ||
| 929 | "run-parallel": "^1.1.9" | ||
| 930 | }, | ||
| 931 | "engines": { | ||
| 932 | "node": ">= 8" | ||
| 933 | } | ||
| 934 | }, | ||
| 935 | "node_modules/@nodelib/fs.stat": { | ||
| 936 | "version": "2.0.5", | ||
| 937 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", | ||
| 938 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", | ||
| 939 | "dev": true, | ||
| 940 | "license": "MIT", | ||
| 941 | "engines": { | ||
| 942 | "node": ">= 8" | ||
| 943 | } | ||
| 944 | }, | ||
| 945 | "node_modules/@nodelib/fs.walk": { | ||
| 946 | "version": "1.2.8", | ||
| 947 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", | ||
| 948 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", | ||
| 949 | "dev": true, | ||
| 950 | "license": "MIT", | ||
| 951 | "dependencies": { | ||
| 952 | "@nodelib/fs.scandir": "2.1.5", | ||
| 953 | "fastq": "^1.6.0" | ||
| 954 | }, | ||
| 955 | "engines": { | ||
| 956 | "node": ">= 8" | ||
| 957 | } | ||
| 958 | }, | ||
| 959 | "node_modules/@nolyfill/is-core-module": { | ||
| 960 | "version": "1.0.39", | ||
| 961 | "resolved": "https://registry.npmjs.org/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz", | ||
| 962 | "integrity": "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==", | ||
| 963 | "dev": true, | ||
| 964 | "license": "MIT", | ||
| 965 | "engines": { | ||
| 966 | "node": ">=12.4.0" | ||
| 967 | } | ||
| 968 | }, | ||
| 969 | "node_modules/@rtsao/scc": { | ||
| 970 | "version": "1.1.0", | ||
| 971 | "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", | ||
| 972 | "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", | ||
| 973 | "dev": true, | ||
| 974 | "license": "MIT" | ||
| 975 | }, | ||
| 976 | "node_modules/@rushstack/eslint-patch": { | ||
| 977 | "version": "1.12.0", | ||
| 978 | "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.12.0.tgz", | ||
| 979 | "integrity": "sha512-5EwMtOqvJMMa3HbmxLlF74e+3/HhwBTMcvt3nqVJgGCozO6hzIPOBlwm8mGVNR9SN2IJpxSnlxczyDjcn7qIyw==", | ||
| 980 | "dev": true, | ||
| 981 | "license": "MIT" | ||
| 982 | }, | ||
| 983 | "node_modules/@swc/helpers": { | ||
| 984 | "version": "0.5.15", | ||
| 985 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", | ||
| 986 | "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==", | ||
| 987 | "license": "Apache-2.0", | ||
| 988 | "dependencies": { | ||
| 989 | "tslib": "^2.8.0" | ||
| 990 | } | ||
| 991 | }, | ||
| 992 | "node_modules/@tailwindcss/node": { | ||
| 993 | "version": "4.1.11", | ||
| 994 | "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.11.tgz", | ||
| 995 | "integrity": "sha512-yzhzuGRmv5QyU9qLNg4GTlYI6STedBWRE7NjxP45CsFYYq9taI0zJXZBMqIC/c8fViNLhmrbpSFS57EoxUmD6Q==", | ||
| 996 | "dev": true, | ||
| 997 | "license": "MIT", | ||
| 998 | "dependencies": { | ||
| 999 | "@ampproject/remapping": "^2.3.0", | ||
| 1000 | "enhanced-resolve": "^5.18.1", | ||
| 1001 | "jiti": "^2.4.2", | ||
| 1002 | "lightningcss": "1.30.1", | ||
| 1003 | "magic-string": "^0.30.17", | ||
| 1004 | "source-map-js": "^1.2.1", | ||
| 1005 | "tailwindcss": "4.1.11" | ||
| 1006 | } | ||
| 1007 | }, | ||
| 1008 | "node_modules/@tailwindcss/oxide": { | ||
| 1009 | "version": "4.1.11", | ||
| 1010 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.11.tgz", | ||
| 1011 | "integrity": "sha512-Q69XzrtAhuyfHo+5/HMgr1lAiPP/G40OMFAnws7xcFEYqcypZmdW8eGXaOUIeOl1dzPJBPENXgbjsOyhg2nkrg==", | ||
| 1012 | "dev": true, | ||
| 1013 | "hasInstallScript": true, | ||
| 1014 | "license": "MIT", | ||
| 1015 | "dependencies": { | ||
| 1016 | "detect-libc": "^2.0.4", | ||
| 1017 | "tar": "^7.4.3" | ||
| 1018 | }, | ||
| 1019 | "engines": { | ||
| 1020 | "node": ">= 10" | ||
| 1021 | }, | ||
| 1022 | "optionalDependencies": { | ||
| 1023 | "@tailwindcss/oxide-android-arm64": "4.1.11", | ||
| 1024 | "@tailwindcss/oxide-darwin-arm64": "4.1.11", | ||
| 1025 | "@tailwindcss/oxide-darwin-x64": "4.1.11", | ||
| 1026 | "@tailwindcss/oxide-freebsd-x64": "4.1.11", | ||
| 1027 | "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.11", | ||
| 1028 | "@tailwindcss/oxide-linux-arm64-gnu": "4.1.11", | ||
| 1029 | "@tailwindcss/oxide-linux-arm64-musl": "4.1.11", | ||
| 1030 | "@tailwindcss/oxide-linux-x64-gnu": "4.1.11", | ||
| 1031 | "@tailwindcss/oxide-linux-x64-musl": "4.1.11", | ||
| 1032 | "@tailwindcss/oxide-wasm32-wasi": "4.1.11", | ||
| 1033 | "@tailwindcss/oxide-win32-arm64-msvc": "4.1.11", | ||
| 1034 | "@tailwindcss/oxide-win32-x64-msvc": "4.1.11" | ||
| 1035 | } | ||
| 1036 | }, | ||
| 1037 | "node_modules/@tailwindcss/oxide-android-arm64": { | ||
| 1038 | "version": "4.1.11", | ||
| 1039 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.11.tgz", | ||
| 1040 | "integrity": "sha512-3IfFuATVRUMZZprEIx9OGDjG3Ou3jG4xQzNTvjDoKmU9JdmoCohQJ83MYd0GPnQIu89YoJqvMM0G3uqLRFtetg==", | ||
| 1041 | "cpu": [ | ||
| 1042 | "arm64" | ||
| 1043 | ], | ||
| 1044 | "dev": true, | ||
| 1045 | "license": "MIT", | ||
| 1046 | "optional": true, | ||
| 1047 | "os": [ | ||
| 1048 | "android" | ||
| 1049 | ], | ||
| 1050 | "engines": { | ||
| 1051 | "node": ">= 10" | ||
| 1052 | } | ||
| 1053 | }, | ||
| 1054 | "node_modules/@tailwindcss/oxide-darwin-arm64": { | ||
| 1055 | "version": "4.1.11", | ||
| 1056 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.11.tgz", | ||
| 1057 | "integrity": "sha512-ESgStEOEsyg8J5YcMb1xl8WFOXfeBmrhAwGsFxxB2CxY9evy63+AtpbDLAyRkJnxLy2WsD1qF13E97uQyP1lfQ==", | ||
| 1058 | "cpu": [ | ||
| 1059 | "arm64" | ||
| 1060 | ], | ||
| 1061 | "dev": true, | ||
| 1062 | "license": "MIT", | ||
| 1063 | "optional": true, | ||
| 1064 | "os": [ | ||
| 1065 | "darwin" | ||
| 1066 | ], | ||
| 1067 | "engines": { | ||
| 1068 | "node": ">= 10" | ||
| 1069 | } | ||
| 1070 | }, | ||
| 1071 | "node_modules/@tailwindcss/oxide-darwin-x64": { | ||
| 1072 | "version": "4.1.11", | ||
| 1073 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.11.tgz", | ||
| 1074 | "integrity": "sha512-EgnK8kRchgmgzG6jE10UQNaH9Mwi2n+yw1jWmof9Vyg2lpKNX2ioe7CJdf9M5f8V9uaQxInenZkOxnTVL3fhAw==", | ||
| 1075 | "cpu": [ | ||
| 1076 | "x64" | ||
| 1077 | ], | ||
| 1078 | "dev": true, | ||
| 1079 | "license": "MIT", | ||
| 1080 | "optional": true, | ||
| 1081 | "os": [ | ||
| 1082 | "darwin" | ||
| 1083 | ], | ||
| 1084 | "engines": { | ||
| 1085 | "node": ">= 10" | ||
| 1086 | } | ||
| 1087 | }, | ||
| 1088 | "node_modules/@tailwindcss/oxide-freebsd-x64": { | ||
| 1089 | "version": "4.1.11", | ||
| 1090 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.11.tgz", | ||
| 1091 | "integrity": "sha512-xdqKtbpHs7pQhIKmqVpxStnY1skuNh4CtbcyOHeX1YBE0hArj2romsFGb6yUmzkq/6M24nkxDqU8GYrKrz+UcA==", | ||
| 1092 | "cpu": [ | ||
| 1093 | "x64" | ||
| 1094 | ], | ||
| 1095 | "dev": true, | ||
| 1096 | "license": "MIT", | ||
| 1097 | "optional": true, | ||
| 1098 | "os": [ | ||
| 1099 | "freebsd" | ||
| 1100 | ], | ||
| 1101 | "engines": { | ||
| 1102 | "node": ">= 10" | ||
| 1103 | } | ||
| 1104 | }, | ||
| 1105 | "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { | ||
| 1106 | "version": "4.1.11", | ||
| 1107 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.11.tgz", | ||
| 1108 | "integrity": "sha512-ryHQK2eyDYYMwB5wZL46uoxz2zzDZsFBwfjssgB7pzytAeCCa6glsiJGjhTEddq/4OsIjsLNMAiMlHNYnkEEeg==", | ||
| 1109 | "cpu": [ | ||
| 1110 | "arm" | ||
| 1111 | ], | ||
| 1112 | "dev": true, | ||
| 1113 | "license": "MIT", | ||
| 1114 | "optional": true, | ||
| 1115 | "os": [ | ||
| 1116 | "linux" | ||
| 1117 | ], | ||
| 1118 | "engines": { | ||
| 1119 | "node": ">= 10" | ||
| 1120 | } | ||
| 1121 | }, | ||
| 1122 | "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { | ||
| 1123 | "version": "4.1.11", | ||
| 1124 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.11.tgz", | ||
| 1125 | "integrity": "sha512-mYwqheq4BXF83j/w75ewkPJmPZIqqP1nhoghS9D57CLjsh3Nfq0m4ftTotRYtGnZd3eCztgbSPJ9QhfC91gDZQ==", | ||
| 1126 | "cpu": [ | ||
| 1127 | "arm64" | ||
| 1128 | ], | ||
| 1129 | "dev": true, | ||
| 1130 | "license": "MIT", | ||
| 1131 | "optional": true, | ||
| 1132 | "os": [ | ||
| 1133 | "linux" | ||
| 1134 | ], | ||
| 1135 | "engines": { | ||
| 1136 | "node": ">= 10" | ||
| 1137 | } | ||
| 1138 | }, | ||
| 1139 | "node_modules/@tailwindcss/oxide-linux-arm64-musl": { | ||
| 1140 | "version": "4.1.11", | ||
| 1141 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.11.tgz", | ||
| 1142 | "integrity": "sha512-m/NVRFNGlEHJrNVk3O6I9ggVuNjXHIPoD6bqay/pubtYC9QIdAMpS+cswZQPBLvVvEF6GtSNONbDkZrjWZXYNQ==", | ||
| 1143 | "cpu": [ | ||
| 1144 | "arm64" | ||
| 1145 | ], | ||
| 1146 | "dev": true, | ||
| 1147 | "license": "MIT", | ||
| 1148 | "optional": true, | ||
| 1149 | "os": [ | ||
| 1150 | "linux" | ||
| 1151 | ], | ||
| 1152 | "engines": { | ||
| 1153 | "node": ">= 10" | ||
| 1154 | } | ||
| 1155 | }, | ||
| 1156 | "node_modules/@tailwindcss/oxide-linux-x64-gnu": { | ||
| 1157 | "version": "4.1.11", | ||
| 1158 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.11.tgz", | ||
| 1159 | "integrity": "sha512-YW6sblI7xukSD2TdbbaeQVDysIm/UPJtObHJHKxDEcW2exAtY47j52f8jZXkqE1krdnkhCMGqP3dbniu1Te2Fg==", | ||
| 1160 | "cpu": [ | ||
| 1161 | "x64" | ||
| 1162 | ], | ||
| 1163 | "dev": true, | ||
| 1164 | "license": "MIT", | ||
| 1165 | "optional": true, | ||
| 1166 | "os": [ | ||
| 1167 | "linux" | ||
| 1168 | ], | ||
| 1169 | "engines": { | ||
| 1170 | "node": ">= 10" | ||
| 1171 | } | ||
| 1172 | }, | ||
| 1173 | "node_modules/@tailwindcss/oxide-linux-x64-musl": { | ||
| 1174 | "version": "4.1.11", | ||
| 1175 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.11.tgz", | ||
| 1176 | "integrity": "sha512-e3C/RRhGunWYNC3aSF7exsQkdXzQ/M+aYuZHKnw4U7KQwTJotnWsGOIVih0s2qQzmEzOFIJ3+xt7iq67K/p56Q==", | ||
| 1177 | "cpu": [ | ||
| 1178 | "x64" | ||
| 1179 | ], | ||
| 1180 | "dev": true, | ||
| 1181 | "license": "MIT", | ||
| 1182 | "optional": true, | ||
| 1183 | "os": [ | ||
| 1184 | "linux" | ||
| 1185 | ], | ||
| 1186 | "engines": { | ||
| 1187 | "node": ">= 10" | ||
| 1188 | } | ||
| 1189 | }, | ||
| 1190 | "node_modules/@tailwindcss/oxide-wasm32-wasi": { | ||
| 1191 | "version": "4.1.11", | ||
| 1192 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.11.tgz", | ||
| 1193 | "integrity": "sha512-Xo1+/GU0JEN/C/dvcammKHzeM6NqKovG+6921MR6oadee5XPBaKOumrJCXvopJ/Qb5TH7LX/UAywbqrP4lax0g==", | ||
| 1194 | "bundleDependencies": [ | ||
| 1195 | "@napi-rs/wasm-runtime", | ||
| 1196 | "@emnapi/core", | ||
| 1197 | "@emnapi/runtime", | ||
| 1198 | "@tybys/wasm-util", | ||
| 1199 | "@emnapi/wasi-threads", | ||
| 1200 | "tslib" | ||
| 1201 | ], | ||
| 1202 | "cpu": [ | ||
| 1203 | "wasm32" | ||
| 1204 | ], | ||
| 1205 | "dev": true, | ||
| 1206 | "license": "MIT", | ||
| 1207 | "optional": true, | ||
| 1208 | "dependencies": { | ||
| 1209 | "@emnapi/core": "^1.4.3", | ||
| 1210 | "@emnapi/runtime": "^1.4.3", | ||
| 1211 | "@emnapi/wasi-threads": "^1.0.2", | ||
| 1212 | "@napi-rs/wasm-runtime": "^0.2.11", | ||
| 1213 | "@tybys/wasm-util": "^0.9.0", | ||
| 1214 | "tslib": "^2.8.0" | ||
| 1215 | }, | ||
| 1216 | "engines": { | ||
| 1217 | "node": ">=14.0.0" | ||
| 1218 | } | ||
| 1219 | }, | ||
| 1220 | "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { | ||
| 1221 | "version": "4.1.11", | ||
| 1222 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.11.tgz", | ||
| 1223 | "integrity": "sha512-UgKYx5PwEKrac3GPNPf6HVMNhUIGuUh4wlDFR2jYYdkX6pL/rn73zTq/4pzUm8fOjAn5L8zDeHp9iXmUGOXZ+w==", | ||
| 1224 | "cpu": [ | ||
| 1225 | "arm64" | ||
| 1226 | ], | ||
| 1227 | "dev": true, | ||
| 1228 | "license": "MIT", | ||
| 1229 | "optional": true, | ||
| 1230 | "os": [ | ||
| 1231 | "win32" | ||
| 1232 | ], | ||
| 1233 | "engines": { | ||
| 1234 | "node": ">= 10" | ||
| 1235 | } | ||
| 1236 | }, | ||
| 1237 | "node_modules/@tailwindcss/oxide-win32-x64-msvc": { | ||
| 1238 | "version": "4.1.11", | ||
| 1239 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.11.tgz", | ||
| 1240 | "integrity": "sha512-YfHoggn1j0LK7wR82TOucWc5LDCguHnoS879idHekmmiR7g9HUtMw9MI0NHatS28u/Xlkfi9w5RJWgz2Dl+5Qg==", | ||
| 1241 | "cpu": [ | ||
| 1242 | "x64" | ||
| 1243 | ], | ||
| 1244 | "dev": true, | ||
| 1245 | "license": "MIT", | ||
| 1246 | "optional": true, | ||
| 1247 | "os": [ | ||
| 1248 | "win32" | ||
| 1249 | ], | ||
| 1250 | "engines": { | ||
| 1251 | "node": ">= 10" | ||
| 1252 | } | ||
| 1253 | }, | ||
| 1254 | "node_modules/@tailwindcss/postcss": { | ||
| 1255 | "version": "4.1.11", | ||
| 1256 | "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.1.11.tgz", | ||
| 1257 | "integrity": "sha512-q/EAIIpF6WpLhKEuQSEVMZNMIY8KhWoAemZ9eylNAih9jxMGAYPPWBn3I9QL/2jZ+e7OEz/tZkX5HwbBR4HohA==", | ||
| 1258 | "dev": true, | ||
| 1259 | "license": "MIT", | ||
| 1260 | "dependencies": { | ||
| 1261 | "@alloc/quick-lru": "^5.2.0", | ||
| 1262 | "@tailwindcss/node": "4.1.11", | ||
| 1263 | "@tailwindcss/oxide": "4.1.11", | ||
| 1264 | "postcss": "^8.4.41", | ||
| 1265 | "tailwindcss": "4.1.11" | ||
| 1266 | } | ||
| 1267 | }, | ||
| 1268 | "node_modules/@tybys/wasm-util": { | ||
| 1269 | "version": "0.10.0", | ||
| 1270 | "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.0.tgz", | ||
| 1271 | "integrity": "sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==", | ||
| 1272 | "dev": true, | ||
| 1273 | "license": "MIT", | ||
| 1274 | "optional": true, | ||
| 1275 | "dependencies": { | ||
| 1276 | "tslib": "^2.4.0" | ||
| 1277 | } | ||
| 1278 | }, | ||
| 1279 | "node_modules/@types/estree": { | ||
| 1280 | "version": "1.0.8", | ||
| 1281 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", | ||
| 1282 | "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", | ||
| 1283 | "dev": true, | ||
| 1284 | "license": "MIT" | ||
| 1285 | }, | ||
| 1286 | "node_modules/@types/json-schema": { | ||
| 1287 | "version": "7.0.15", | ||
| 1288 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", | ||
| 1289 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", | ||
| 1290 | "dev": true, | ||
| 1291 | "license": "MIT" | ||
| 1292 | }, | ||
| 1293 | "node_modules/@types/json5": { | ||
| 1294 | "version": "0.0.29", | ||
| 1295 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", | ||
| 1296 | "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", | ||
| 1297 | "dev": true, | ||
| 1298 | "license": "MIT" | ||
| 1299 | }, | ||
| 1300 | "node_modules/@types/node": { | ||
| 1301 | "version": "20.19.10", | ||
| 1302 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.10.tgz", | ||
| 1303 | "integrity": "sha512-iAFpG6DokED3roLSP0K+ybeDdIX6Bc0Vd3mLW5uDqThPWtNos3E+EqOM11mPQHKzfWHqEBuLjIlsBQQ8CsISmQ==", | ||
| 1304 | "dev": true, | ||
| 1305 | "license": "MIT", | ||
| 1306 | "dependencies": { | ||
| 1307 | "undici-types": "~6.21.0" | ||
| 1308 | } | ||
| 1309 | }, | ||
| 1310 | "node_modules/@types/react": { | ||
| 1311 | "version": "19.1.9", | ||
| 1312 | "resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.9.tgz", | ||
| 1313 | "integrity": "sha512-WmdoynAX8Stew/36uTSVMcLJJ1KRh6L3IZRx1PZ7qJtBqT3dYTgyDTx8H1qoRghErydW7xw9mSJ3wS//tCRpFA==", | ||
| 1314 | "dev": true, | ||
| 1315 | "license": "MIT", | ||
| 1316 | "dependencies": { | ||
| 1317 | "csstype": "^3.0.2" | ||
| 1318 | } | ||
| 1319 | }, | ||
| 1320 | "node_modules/@types/react-dom": { | ||
| 1321 | "version": "19.1.7", | ||
| 1322 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.1.7.tgz", | ||
| 1323 | "integrity": "sha512-i5ZzwYpqjmrKenzkoLM2Ibzt6mAsM7pxB6BCIouEVVmgiqaMj1TjaK7hnA36hbW5aZv20kx7Lw6hWzPWg0Rurw==", | ||
| 1324 | "dev": true, | ||
| 1325 | "license": "MIT", | ||
| 1326 | "peerDependencies": { | ||
| 1327 | "@types/react": "^19.0.0" | ||
| 1328 | } | ||
| 1329 | }, | ||
| 1330 | "node_modules/@typescript-eslint/eslint-plugin": { | ||
| 1331 | "version": "8.39.0", | ||
| 1332 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.39.0.tgz", | ||
| 1333 | "integrity": "sha512-bhEz6OZeUR+O/6yx9Jk6ohX6H9JSFTaiY0v9/PuKT3oGK0rn0jNplLmyFUGV+a9gfYnVNwGDwS/UkLIuXNb2Rw==", | ||
| 1334 | "dev": true, | ||
| 1335 | "license": "MIT", | ||
| 1336 | "dependencies": { | ||
| 1337 | "@eslint-community/regexpp": "^4.10.0", | ||
| 1338 | "@typescript-eslint/scope-manager": "8.39.0", | ||
| 1339 | "@typescript-eslint/type-utils": "8.39.0", | ||
| 1340 | "@typescript-eslint/utils": "8.39.0", | ||
| 1341 | "@typescript-eslint/visitor-keys": "8.39.0", | ||
| 1342 | "graphemer": "^1.4.0", | ||
| 1343 | "ignore": "^7.0.0", | ||
| 1344 | "natural-compare": "^1.4.0", | ||
| 1345 | "ts-api-utils": "^2.1.0" | ||
| 1346 | }, | ||
| 1347 | "engines": { | ||
| 1348 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 1349 | }, | ||
| 1350 | "funding": { | ||
| 1351 | "type": "opencollective", | ||
| 1352 | "url": "https://opencollective.com/typescript-eslint" | ||
| 1353 | }, | ||
| 1354 | "peerDependencies": { | ||
| 1355 | "@typescript-eslint/parser": "^8.39.0", | ||
| 1356 | "eslint": "^8.57.0 || ^9.0.0", | ||
| 1357 | "typescript": ">=4.8.4 <6.0.0" | ||
| 1358 | } | ||
| 1359 | }, | ||
| 1360 | "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { | ||
| 1361 | "version": "7.0.5", | ||
| 1362 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", | ||
| 1363 | "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", | ||
| 1364 | "dev": true, | ||
| 1365 | "license": "MIT", | ||
| 1366 | "engines": { | ||
| 1367 | "node": ">= 4" | ||
| 1368 | } | ||
| 1369 | }, | ||
| 1370 | "node_modules/@typescript-eslint/parser": { | ||
| 1371 | "version": "8.39.0", | ||
| 1372 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.39.0.tgz", | ||
| 1373 | "integrity": "sha512-g3WpVQHngx0aLXn6kfIYCZxM6rRJlWzEkVpqEFLT3SgEDsp9cpCbxxgwnE504q4H+ruSDh/VGS6nqZIDynP+vg==", | ||
| 1374 | "dev": true, | ||
| 1375 | "license": "MIT", | ||
| 1376 | "dependencies": { | ||
| 1377 | "@typescript-eslint/scope-manager": "8.39.0", | ||
| 1378 | "@typescript-eslint/types": "8.39.0", | ||
| 1379 | "@typescript-eslint/typescript-estree": "8.39.0", | ||
| 1380 | "@typescript-eslint/visitor-keys": "8.39.0", | ||
| 1381 | "debug": "^4.3.4" | ||
| 1382 | }, | ||
| 1383 | "engines": { | ||
| 1384 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 1385 | }, | ||
| 1386 | "funding": { | ||
| 1387 | "type": "opencollective", | ||
| 1388 | "url": "https://opencollective.com/typescript-eslint" | ||
| 1389 | }, | ||
| 1390 | "peerDependencies": { | ||
| 1391 | "eslint": "^8.57.0 || ^9.0.0", | ||
| 1392 | "typescript": ">=4.8.4 <6.0.0" | ||
| 1393 | } | ||
| 1394 | }, | ||
| 1395 | "node_modules/@typescript-eslint/project-service": { | ||
| 1396 | "version": "8.39.0", | ||
| 1397 | "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.39.0.tgz", | ||
| 1398 | "integrity": "sha512-CTzJqaSq30V/Z2Og9jogzZt8lJRR5TKlAdXmWgdu4hgcC9Kww5flQ+xFvMxIBWVNdxJO7OifgdOK4PokMIWPew==", | ||
| 1399 | "dev": true, | ||
| 1400 | "license": "MIT", | ||
| 1401 | "dependencies": { | ||
| 1402 | "@typescript-eslint/tsconfig-utils": "^8.39.0", | ||
| 1403 | "@typescript-eslint/types": "^8.39.0", | ||
| 1404 | "debug": "^4.3.4" | ||
| 1405 | }, | ||
| 1406 | "engines": { | ||
| 1407 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 1408 | }, | ||
| 1409 | "funding": { | ||
| 1410 | "type": "opencollective", | ||
| 1411 | "url": "https://opencollective.com/typescript-eslint" | ||
| 1412 | }, | ||
| 1413 | "peerDependencies": { | ||
| 1414 | "typescript": ">=4.8.4 <6.0.0" | ||
| 1415 | } | ||
| 1416 | }, | ||
| 1417 | "node_modules/@typescript-eslint/scope-manager": { | ||
| 1418 | "version": "8.39.0", | ||
| 1419 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.39.0.tgz", | ||
| 1420 | "integrity": "sha512-8QOzff9UKxOh6npZQ/4FQu4mjdOCGSdO3p44ww0hk8Vu+IGbg0tB/H1LcTARRDzGCC8pDGbh2rissBuuoPgH8A==", | ||
| 1421 | "dev": true, | ||
| 1422 | "license": "MIT", | ||
| 1423 | "dependencies": { | ||
| 1424 | "@typescript-eslint/types": "8.39.0", | ||
| 1425 | "@typescript-eslint/visitor-keys": "8.39.0" | ||
| 1426 | }, | ||
| 1427 | "engines": { | ||
| 1428 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 1429 | }, | ||
| 1430 | "funding": { | ||
| 1431 | "type": "opencollective", | ||
| 1432 | "url": "https://opencollective.com/typescript-eslint" | ||
| 1433 | } | ||
| 1434 | }, | ||
| 1435 | "node_modules/@typescript-eslint/tsconfig-utils": { | ||
| 1436 | "version": "8.39.0", | ||
| 1437 | "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.39.0.tgz", | ||
| 1438 | "integrity": "sha512-Fd3/QjmFV2sKmvv3Mrj8r6N8CryYiCS8Wdb/6/rgOXAWGcFuc+VkQuG28uk/4kVNVZBQuuDHEDUpo/pQ32zsIQ==", | ||
| 1439 | "dev": true, | ||
| 1440 | "license": "MIT", | ||
| 1441 | "engines": { | ||
| 1442 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 1443 | }, | ||
| 1444 | "funding": { | ||
| 1445 | "type": "opencollective", | ||
| 1446 | "url": "https://opencollective.com/typescript-eslint" | ||
| 1447 | }, | ||
| 1448 | "peerDependencies": { | ||
| 1449 | "typescript": ">=4.8.4 <6.0.0" | ||
| 1450 | } | ||
| 1451 | }, | ||
| 1452 | "node_modules/@typescript-eslint/type-utils": { | ||
| 1453 | "version": "8.39.0", | ||
| 1454 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.39.0.tgz", | ||
| 1455 | "integrity": "sha512-6B3z0c1DXVT2vYA9+z9axjtc09rqKUPRmijD5m9iv8iQpHBRYRMBcgxSiKTZKm6FwWw1/cI4v6em35OsKCiN5Q==", | ||
| 1456 | "dev": true, | ||
| 1457 | "license": "MIT", | ||
| 1458 | "dependencies": { | ||
| 1459 | "@typescript-eslint/types": "8.39.0", | ||
| 1460 | "@typescript-eslint/typescript-estree": "8.39.0", | ||
| 1461 | "@typescript-eslint/utils": "8.39.0", | ||
| 1462 | "debug": "^4.3.4", | ||
| 1463 | "ts-api-utils": "^2.1.0" | ||
| 1464 | }, | ||
| 1465 | "engines": { | ||
| 1466 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 1467 | }, | ||
| 1468 | "funding": { | ||
| 1469 | "type": "opencollective", | ||
| 1470 | "url": "https://opencollective.com/typescript-eslint" | ||
| 1471 | }, | ||
| 1472 | "peerDependencies": { | ||
| 1473 | "eslint": "^8.57.0 || ^9.0.0", | ||
| 1474 | "typescript": ">=4.8.4 <6.0.0" | ||
| 1475 | } | ||
| 1476 | }, | ||
| 1477 | "node_modules/@typescript-eslint/types": { | ||
| 1478 | "version": "8.39.0", | ||
| 1479 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.39.0.tgz", | ||
| 1480 | "integrity": "sha512-ArDdaOllnCj3yn/lzKn9s0pBQYmmyme/v1HbGIGB0GB/knFI3fWMHloC+oYTJW46tVbYnGKTMDK4ah1sC2v0Kg==", | ||
| 1481 | "dev": true, | ||
| 1482 | "license": "MIT", | ||
| 1483 | "engines": { | ||
| 1484 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 1485 | }, | ||
| 1486 | "funding": { | ||
| 1487 | "type": "opencollective", | ||
| 1488 | "url": "https://opencollective.com/typescript-eslint" | ||
| 1489 | } | ||
| 1490 | }, | ||
| 1491 | "node_modules/@typescript-eslint/typescript-estree": { | ||
| 1492 | "version": "8.39.0", | ||
| 1493 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.39.0.tgz", | ||
| 1494 | "integrity": "sha512-ndWdiflRMvfIgQRpckQQLiB5qAKQ7w++V4LlCHwp62eym1HLB/kw7D9f2e8ytONls/jt89TEasgvb+VwnRprsw==", | ||
| 1495 | "dev": true, | ||
| 1496 | "license": "MIT", | ||
| 1497 | "dependencies": { | ||
| 1498 | "@typescript-eslint/project-service": "8.39.0", | ||
| 1499 | "@typescript-eslint/tsconfig-utils": "8.39.0", | ||
| 1500 | "@typescript-eslint/types": "8.39.0", | ||
| 1501 | "@typescript-eslint/visitor-keys": "8.39.0", | ||
| 1502 | "debug": "^4.3.4", | ||
| 1503 | "fast-glob": "^3.3.2", | ||
| 1504 | "is-glob": "^4.0.3", | ||
| 1505 | "minimatch": "^9.0.4", | ||
| 1506 | "semver": "^7.6.0", | ||
| 1507 | "ts-api-utils": "^2.1.0" | ||
| 1508 | }, | ||
| 1509 | "engines": { | ||
| 1510 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 1511 | }, | ||
| 1512 | "funding": { | ||
| 1513 | "type": "opencollective", | ||
| 1514 | "url": "https://opencollective.com/typescript-eslint" | ||
| 1515 | }, | ||
| 1516 | "peerDependencies": { | ||
| 1517 | "typescript": ">=4.8.4 <6.0.0" | ||
| 1518 | } | ||
| 1519 | }, | ||
| 1520 | "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { | ||
| 1521 | "version": "2.0.2", | ||
| 1522 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", | ||
| 1523 | "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", | ||
| 1524 | "dev": true, | ||
| 1525 | "license": "MIT", | ||
| 1526 | "dependencies": { | ||
| 1527 | "balanced-match": "^1.0.0" | ||
| 1528 | } | ||
| 1529 | }, | ||
| 1530 | "node_modules/@typescript-eslint/typescript-estree/node_modules/fast-glob": { | ||
| 1531 | "version": "3.3.3", | ||
| 1532 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", | ||
| 1533 | "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", | ||
| 1534 | "dev": true, | ||
| 1535 | "license": "MIT", | ||
| 1536 | "dependencies": { | ||
| 1537 | "@nodelib/fs.stat": "^2.0.2", | ||
| 1538 | "@nodelib/fs.walk": "^1.2.3", | ||
| 1539 | "glob-parent": "^5.1.2", | ||
| 1540 | "merge2": "^1.3.0", | ||
| 1541 | "micromatch": "^4.0.8" | ||
| 1542 | }, | ||
| 1543 | "engines": { | ||
| 1544 | "node": ">=8.6.0" | ||
| 1545 | } | ||
| 1546 | }, | ||
| 1547 | "node_modules/@typescript-eslint/typescript-estree/node_modules/glob-parent": { | ||
| 1548 | "version": "5.1.2", | ||
| 1549 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", | ||
| 1550 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", | ||
| 1551 | "dev": true, | ||
| 1552 | "license": "ISC", | ||
| 1553 | "dependencies": { | ||
| 1554 | "is-glob": "^4.0.1" | ||
| 1555 | }, | ||
| 1556 | "engines": { | ||
| 1557 | "node": ">= 6" | ||
| 1558 | } | ||
| 1559 | }, | ||
| 1560 | "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { | ||
| 1561 | "version": "9.0.5", | ||
| 1562 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", | ||
| 1563 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", | ||
| 1564 | "dev": true, | ||
| 1565 | "license": "ISC", | ||
| 1566 | "dependencies": { | ||
| 1567 | "brace-expansion": "^2.0.1" | ||
| 1568 | }, | ||
| 1569 | "engines": { | ||
| 1570 | "node": ">=16 || 14 >=14.17" | ||
| 1571 | }, | ||
| 1572 | "funding": { | ||
| 1573 | "url": "https://github.com/sponsors/isaacs" | ||
| 1574 | } | ||
| 1575 | }, | ||
| 1576 | "node_modules/@typescript-eslint/utils": { | ||
| 1577 | "version": "8.39.0", | ||
| 1578 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.39.0.tgz", | ||
| 1579 | "integrity": "sha512-4GVSvNA0Vx1Ktwvf4sFE+exxJ3QGUorQG1/A5mRfRNZtkBT2xrA/BCO2H0eALx/PnvCS6/vmYwRdDA41EoffkQ==", | ||
| 1580 | "dev": true, | ||
| 1581 | "license": "MIT", | ||
| 1582 | "dependencies": { | ||
| 1583 | "@eslint-community/eslint-utils": "^4.7.0", | ||
| 1584 | "@typescript-eslint/scope-manager": "8.39.0", | ||
| 1585 | "@typescript-eslint/types": "8.39.0", | ||
| 1586 | "@typescript-eslint/typescript-estree": "8.39.0" | ||
| 1587 | }, | ||
| 1588 | "engines": { | ||
| 1589 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 1590 | }, | ||
| 1591 | "funding": { | ||
| 1592 | "type": "opencollective", | ||
| 1593 | "url": "https://opencollective.com/typescript-eslint" | ||
| 1594 | }, | ||
| 1595 | "peerDependencies": { | ||
| 1596 | "eslint": "^8.57.0 || ^9.0.0", | ||
| 1597 | "typescript": ">=4.8.4 <6.0.0" | ||
| 1598 | } | ||
| 1599 | }, | ||
| 1600 | "node_modules/@typescript-eslint/visitor-keys": { | ||
| 1601 | "version": "8.39.0", | ||
| 1602 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.39.0.tgz", | ||
| 1603 | "integrity": "sha512-ldgiJ+VAhQCfIjeOgu8Kj5nSxds0ktPOSO9p4+0VDH2R2pLvQraaM5Oen2d7NxzMCm+Sn/vJT+mv2H5u6b/3fA==", | ||
| 1604 | "dev": true, | ||
| 1605 | "license": "MIT", | ||
| 1606 | "dependencies": { | ||
| 1607 | "@typescript-eslint/types": "8.39.0", | ||
| 1608 | "eslint-visitor-keys": "^4.2.1" | ||
| 1609 | }, | ||
| 1610 | "engines": { | ||
| 1611 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 1612 | }, | ||
| 1613 | "funding": { | ||
| 1614 | "type": "opencollective", | ||
| 1615 | "url": "https://opencollective.com/typescript-eslint" | ||
| 1616 | } | ||
| 1617 | }, | ||
| 1618 | "node_modules/@unrs/resolver-binding-android-arm-eabi": { | ||
| 1619 | "version": "1.11.1", | ||
| 1620 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz", | ||
| 1621 | "integrity": "sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==", | ||
| 1622 | "cpu": [ | ||
| 1623 | "arm" | ||
| 1624 | ], | ||
| 1625 | "dev": true, | ||
| 1626 | "license": "MIT", | ||
| 1627 | "optional": true, | ||
| 1628 | "os": [ | ||
| 1629 | "android" | ||
| 1630 | ] | ||
| 1631 | }, | ||
| 1632 | "node_modules/@unrs/resolver-binding-android-arm64": { | ||
| 1633 | "version": "1.11.1", | ||
| 1634 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz", | ||
| 1635 | "integrity": "sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==", | ||
| 1636 | "cpu": [ | ||
| 1637 | "arm64" | ||
| 1638 | ], | ||
| 1639 | "dev": true, | ||
| 1640 | "license": "MIT", | ||
| 1641 | "optional": true, | ||
| 1642 | "os": [ | ||
| 1643 | "android" | ||
| 1644 | ] | ||
| 1645 | }, | ||
| 1646 | "node_modules/@unrs/resolver-binding-darwin-arm64": { | ||
| 1647 | "version": "1.11.1", | ||
| 1648 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz", | ||
| 1649 | "integrity": "sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==", | ||
| 1650 | "cpu": [ | ||
| 1651 | "arm64" | ||
| 1652 | ], | ||
| 1653 | "dev": true, | ||
| 1654 | "license": "MIT", | ||
| 1655 | "optional": true, | ||
| 1656 | "os": [ | ||
| 1657 | "darwin" | ||
| 1658 | ] | ||
| 1659 | }, | ||
| 1660 | "node_modules/@unrs/resolver-binding-darwin-x64": { | ||
| 1661 | "version": "1.11.1", | ||
| 1662 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz", | ||
| 1663 | "integrity": "sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==", | ||
| 1664 | "cpu": [ | ||
| 1665 | "x64" | ||
| 1666 | ], | ||
| 1667 | "dev": true, | ||
| 1668 | "license": "MIT", | ||
| 1669 | "optional": true, | ||
| 1670 | "os": [ | ||
| 1671 | "darwin" | ||
| 1672 | ] | ||
| 1673 | }, | ||
| 1674 | "node_modules/@unrs/resolver-binding-freebsd-x64": { | ||
| 1675 | "version": "1.11.1", | ||
| 1676 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz", | ||
| 1677 | "integrity": "sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==", | ||
| 1678 | "cpu": [ | ||
| 1679 | "x64" | ||
| 1680 | ], | ||
| 1681 | "dev": true, | ||
| 1682 | "license": "MIT", | ||
| 1683 | "optional": true, | ||
| 1684 | "os": [ | ||
| 1685 | "freebsd" | ||
| 1686 | ] | ||
| 1687 | }, | ||
| 1688 | "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { | ||
| 1689 | "version": "1.11.1", | ||
| 1690 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz", | ||
| 1691 | "integrity": "sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==", | ||
| 1692 | "cpu": [ | ||
| 1693 | "arm" | ||
| 1694 | ], | ||
| 1695 | "dev": true, | ||
| 1696 | "license": "MIT", | ||
| 1697 | "optional": true, | ||
| 1698 | "os": [ | ||
| 1699 | "linux" | ||
| 1700 | ] | ||
| 1701 | }, | ||
| 1702 | "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { | ||
| 1703 | "version": "1.11.1", | ||
| 1704 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.11.1.tgz", | ||
| 1705 | "integrity": "sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==", | ||
| 1706 | "cpu": [ | ||
| 1707 | "arm" | ||
| 1708 | ], | ||
| 1709 | "dev": true, | ||
| 1710 | "license": "MIT", | ||
| 1711 | "optional": true, | ||
| 1712 | "os": [ | ||
| 1713 | "linux" | ||
| 1714 | ] | ||
| 1715 | }, | ||
| 1716 | "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { | ||
| 1717 | "version": "1.11.1", | ||
| 1718 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.11.1.tgz", | ||
| 1719 | "integrity": "sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==", | ||
| 1720 | "cpu": [ | ||
| 1721 | "arm64" | ||
| 1722 | ], | ||
| 1723 | "dev": true, | ||
| 1724 | "license": "MIT", | ||
| 1725 | "optional": true, | ||
| 1726 | "os": [ | ||
| 1727 | "linux" | ||
| 1728 | ] | ||
| 1729 | }, | ||
| 1730 | "node_modules/@unrs/resolver-binding-linux-arm64-musl": { | ||
| 1731 | "version": "1.11.1", | ||
| 1732 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.11.1.tgz", | ||
| 1733 | "integrity": "sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==", | ||
| 1734 | "cpu": [ | ||
| 1735 | "arm64" | ||
| 1736 | ], | ||
| 1737 | "dev": true, | ||
| 1738 | "license": "MIT", | ||
| 1739 | "optional": true, | ||
| 1740 | "os": [ | ||
| 1741 | "linux" | ||
| 1742 | ] | ||
| 1743 | }, | ||
| 1744 | "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { | ||
| 1745 | "version": "1.11.1", | ||
| 1746 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.11.1.tgz", | ||
| 1747 | "integrity": "sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==", | ||
| 1748 | "cpu": [ | ||
| 1749 | "ppc64" | ||
| 1750 | ], | ||
| 1751 | "dev": true, | ||
| 1752 | "license": "MIT", | ||
| 1753 | "optional": true, | ||
| 1754 | "os": [ | ||
| 1755 | "linux" | ||
| 1756 | ] | ||
| 1757 | }, | ||
| 1758 | "node_modules/@unrs/resolver-binding-linux-riscv64-gnu": { | ||
| 1759 | "version": "1.11.1", | ||
| 1760 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.11.1.tgz", | ||
| 1761 | "integrity": "sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==", | ||
| 1762 | "cpu": [ | ||
| 1763 | "riscv64" | ||
| 1764 | ], | ||
| 1765 | "dev": true, | ||
| 1766 | "license": "MIT", | ||
| 1767 | "optional": true, | ||
| 1768 | "os": [ | ||
| 1769 | "linux" | ||
| 1770 | ] | ||
| 1771 | }, | ||
| 1772 | "node_modules/@unrs/resolver-binding-linux-riscv64-musl": { | ||
| 1773 | "version": "1.11.1", | ||
| 1774 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.11.1.tgz", | ||
| 1775 | "integrity": "sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==", | ||
| 1776 | "cpu": [ | ||
| 1777 | "riscv64" | ||
| 1778 | ], | ||
| 1779 | "dev": true, | ||
| 1780 | "license": "MIT", | ||
| 1781 | "optional": true, | ||
| 1782 | "os": [ | ||
| 1783 | "linux" | ||
| 1784 | ] | ||
| 1785 | }, | ||
| 1786 | "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { | ||
| 1787 | "version": "1.11.1", | ||
| 1788 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.11.1.tgz", | ||
| 1789 | "integrity": "sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==", | ||
| 1790 | "cpu": [ | ||
| 1791 | "s390x" | ||
| 1792 | ], | ||
| 1793 | "dev": true, | ||
| 1794 | "license": "MIT", | ||
| 1795 | "optional": true, | ||
| 1796 | "os": [ | ||
| 1797 | "linux" | ||
| 1798 | ] | ||
| 1799 | }, | ||
| 1800 | "node_modules/@unrs/resolver-binding-linux-x64-gnu": { | ||
| 1801 | "version": "1.11.1", | ||
| 1802 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.11.1.tgz", | ||
| 1803 | "integrity": "sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==", | ||
| 1804 | "cpu": [ | ||
| 1805 | "x64" | ||
| 1806 | ], | ||
| 1807 | "dev": true, | ||
| 1808 | "license": "MIT", | ||
| 1809 | "optional": true, | ||
| 1810 | "os": [ | ||
| 1811 | "linux" | ||
| 1812 | ] | ||
| 1813 | }, | ||
| 1814 | "node_modules/@unrs/resolver-binding-linux-x64-musl": { | ||
| 1815 | "version": "1.11.1", | ||
| 1816 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.11.1.tgz", | ||
| 1817 | "integrity": "sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==", | ||
| 1818 | "cpu": [ | ||
| 1819 | "x64" | ||
| 1820 | ], | ||
| 1821 | "dev": true, | ||
| 1822 | "license": "MIT", | ||
| 1823 | "optional": true, | ||
| 1824 | "os": [ | ||
| 1825 | "linux" | ||
| 1826 | ] | ||
| 1827 | }, | ||
| 1828 | "node_modules/@unrs/resolver-binding-wasm32-wasi": { | ||
| 1829 | "version": "1.11.1", | ||
| 1830 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.11.1.tgz", | ||
| 1831 | "integrity": "sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==", | ||
| 1832 | "cpu": [ | ||
| 1833 | "wasm32" | ||
| 1834 | ], | ||
| 1835 | "dev": true, | ||
| 1836 | "license": "MIT", | ||
| 1837 | "optional": true, | ||
| 1838 | "dependencies": { | ||
| 1839 | "@napi-rs/wasm-runtime": "^0.2.11" | ||
| 1840 | }, | ||
| 1841 | "engines": { | ||
| 1842 | "node": ">=14.0.0" | ||
| 1843 | } | ||
| 1844 | }, | ||
| 1845 | "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { | ||
| 1846 | "version": "1.11.1", | ||
| 1847 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz", | ||
| 1848 | "integrity": "sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==", | ||
| 1849 | "cpu": [ | ||
| 1850 | "arm64" | ||
| 1851 | ], | ||
| 1852 | "dev": true, | ||
| 1853 | "license": "MIT", | ||
| 1854 | "optional": true, | ||
| 1855 | "os": [ | ||
| 1856 | "win32" | ||
| 1857 | ] | ||
| 1858 | }, | ||
| 1859 | "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { | ||
| 1860 | "version": "1.11.1", | ||
| 1861 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.11.1.tgz", | ||
| 1862 | "integrity": "sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==", | ||
| 1863 | "cpu": [ | ||
| 1864 | "ia32" | ||
| 1865 | ], | ||
| 1866 | "dev": true, | ||
| 1867 | "license": "MIT", | ||
| 1868 | "optional": true, | ||
| 1869 | "os": [ | ||
| 1870 | "win32" | ||
| 1871 | ] | ||
| 1872 | }, | ||
| 1873 | "node_modules/@unrs/resolver-binding-win32-x64-msvc": { | ||
| 1874 | "version": "1.11.1", | ||
| 1875 | "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.11.1.tgz", | ||
| 1876 | "integrity": "sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==", | ||
| 1877 | "cpu": [ | ||
| 1878 | "x64" | ||
| 1879 | ], | ||
| 1880 | "dev": true, | ||
| 1881 | "license": "MIT", | ||
| 1882 | "optional": true, | ||
| 1883 | "os": [ | ||
| 1884 | "win32" | ||
| 1885 | ] | ||
| 1886 | }, | ||
| 1887 | "node_modules/acorn": { | ||
| 1888 | "version": "8.15.0", | ||
| 1889 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", | ||
| 1890 | "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", | ||
| 1891 | "dev": true, | ||
| 1892 | "license": "MIT", | ||
| 1893 | "bin": { | ||
| 1894 | "acorn": "bin/acorn" | ||
| 1895 | }, | ||
| 1896 | "engines": { | ||
| 1897 | "node": ">=0.4.0" | ||
| 1898 | } | ||
| 1899 | }, | ||
| 1900 | "node_modules/acorn-jsx": { | ||
| 1901 | "version": "5.3.2", | ||
| 1902 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", | ||
| 1903 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", | ||
| 1904 | "dev": true, | ||
| 1905 | "license": "MIT", | ||
| 1906 | "peerDependencies": { | ||
| 1907 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" | ||
| 1908 | } | ||
| 1909 | }, | ||
| 1910 | "node_modules/ajv": { | ||
| 1911 | "version": "6.12.6", | ||
| 1912 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", | ||
| 1913 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", | ||
| 1914 | "dev": true, | ||
| 1915 | "license": "MIT", | ||
| 1916 | "dependencies": { | ||
| 1917 | "fast-deep-equal": "^3.1.1", | ||
| 1918 | "fast-json-stable-stringify": "^2.0.0", | ||
| 1919 | "json-schema-traverse": "^0.4.1", | ||
| 1920 | "uri-js": "^4.2.2" | ||
| 1921 | }, | ||
| 1922 | "funding": { | ||
| 1923 | "type": "github", | ||
| 1924 | "url": "https://github.com/sponsors/epoberezkin" | ||
| 1925 | } | ||
| 1926 | }, | ||
| 1927 | "node_modules/ansi-styles": { | ||
| 1928 | "version": "4.3.0", | ||
| 1929 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", | ||
| 1930 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", | ||
| 1931 | "dev": true, | ||
| 1932 | "license": "MIT", | ||
| 1933 | "dependencies": { | ||
| 1934 | "color-convert": "^2.0.1" | ||
| 1935 | }, | ||
| 1936 | "engines": { | ||
| 1937 | "node": ">=8" | ||
| 1938 | }, | ||
| 1939 | "funding": { | ||
| 1940 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" | ||
| 1941 | } | ||
| 1942 | }, | ||
| 1943 | "node_modules/argparse": { | ||
| 1944 | "version": "2.0.1", | ||
| 1945 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", | ||
| 1946 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", | ||
| 1947 | "dev": true, | ||
| 1948 | "license": "Python-2.0" | ||
| 1949 | }, | ||
| 1950 | "node_modules/aria-query": { | ||
| 1951 | "version": "5.3.2", | ||
| 1952 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", | ||
| 1953 | "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", | ||
| 1954 | "dev": true, | ||
| 1955 | "license": "Apache-2.0", | ||
| 1956 | "engines": { | ||
| 1957 | "node": ">= 0.4" | ||
| 1958 | } | ||
| 1959 | }, | ||
| 1960 | "node_modules/array-buffer-byte-length": { | ||
| 1961 | "version": "1.0.2", | ||
| 1962 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", | ||
| 1963 | "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", | ||
| 1964 | "dev": true, | ||
| 1965 | "license": "MIT", | ||
| 1966 | "dependencies": { | ||
| 1967 | "call-bound": "^1.0.3", | ||
| 1968 | "is-array-buffer": "^3.0.5" | ||
| 1969 | }, | ||
| 1970 | "engines": { | ||
| 1971 | "node": ">= 0.4" | ||
| 1972 | }, | ||
| 1973 | "funding": { | ||
| 1974 | "url": "https://github.com/sponsors/ljharb" | ||
| 1975 | } | ||
| 1976 | }, | ||
| 1977 | "node_modules/array-includes": { | ||
| 1978 | "version": "3.1.9", | ||
| 1979 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz", | ||
| 1980 | "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==", | ||
| 1981 | "dev": true, | ||
| 1982 | "license": "MIT", | ||
| 1983 | "dependencies": { | ||
| 1984 | "call-bind": "^1.0.8", | ||
| 1985 | "call-bound": "^1.0.4", | ||
| 1986 | "define-properties": "^1.2.1", | ||
| 1987 | "es-abstract": "^1.24.0", | ||
| 1988 | "es-object-atoms": "^1.1.1", | ||
| 1989 | "get-intrinsic": "^1.3.0", | ||
| 1990 | "is-string": "^1.1.1", | ||
| 1991 | "math-intrinsics": "^1.1.0" | ||
| 1992 | }, | ||
| 1993 | "engines": { | ||
| 1994 | "node": ">= 0.4" | ||
| 1995 | }, | ||
| 1996 | "funding": { | ||
| 1997 | "url": "https://github.com/sponsors/ljharb" | ||
| 1998 | } | ||
| 1999 | }, | ||
| 2000 | "node_modules/array.prototype.findlast": { | ||
| 2001 | "version": "1.2.5", | ||
| 2002 | "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", | ||
| 2003 | "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", | ||
| 2004 | "dev": true, | ||
| 2005 | "license": "MIT", | ||
| 2006 | "dependencies": { | ||
| 2007 | "call-bind": "^1.0.7", | ||
| 2008 | "define-properties": "^1.2.1", | ||
| 2009 | "es-abstract": "^1.23.2", | ||
| 2010 | "es-errors": "^1.3.0", | ||
| 2011 | "es-object-atoms": "^1.0.0", | ||
| 2012 | "es-shim-unscopables": "^1.0.2" | ||
| 2013 | }, | ||
| 2014 | "engines": { | ||
| 2015 | "node": ">= 0.4" | ||
| 2016 | }, | ||
| 2017 | "funding": { | ||
| 2018 | "url": "https://github.com/sponsors/ljharb" | ||
| 2019 | } | ||
| 2020 | }, | ||
| 2021 | "node_modules/array.prototype.findlastindex": { | ||
| 2022 | "version": "1.2.6", | ||
| 2023 | "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz", | ||
| 2024 | "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==", | ||
| 2025 | "dev": true, | ||
| 2026 | "license": "MIT", | ||
| 2027 | "dependencies": { | ||
| 2028 | "call-bind": "^1.0.8", | ||
| 2029 | "call-bound": "^1.0.4", | ||
| 2030 | "define-properties": "^1.2.1", | ||
| 2031 | "es-abstract": "^1.23.9", | ||
| 2032 | "es-errors": "^1.3.0", | ||
| 2033 | "es-object-atoms": "^1.1.1", | ||
| 2034 | "es-shim-unscopables": "^1.1.0" | ||
| 2035 | }, | ||
| 2036 | "engines": { | ||
| 2037 | "node": ">= 0.4" | ||
| 2038 | }, | ||
| 2039 | "funding": { | ||
| 2040 | "url": "https://github.com/sponsors/ljharb" | ||
| 2041 | } | ||
| 2042 | }, | ||
| 2043 | "node_modules/array.prototype.flat": { | ||
| 2044 | "version": "1.3.3", | ||
| 2045 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", | ||
| 2046 | "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", | ||
| 2047 | "dev": true, | ||
| 2048 | "license": "MIT", | ||
| 2049 | "dependencies": { | ||
| 2050 | "call-bind": "^1.0.8", | ||
| 2051 | "define-properties": "^1.2.1", | ||
| 2052 | "es-abstract": "^1.23.5", | ||
| 2053 | "es-shim-unscopables": "^1.0.2" | ||
| 2054 | }, | ||
| 2055 | "engines": { | ||
| 2056 | "node": ">= 0.4" | ||
| 2057 | }, | ||
| 2058 | "funding": { | ||
| 2059 | "url": "https://github.com/sponsors/ljharb" | ||
| 2060 | } | ||
| 2061 | }, | ||
| 2062 | "node_modules/array.prototype.flatmap": { | ||
| 2063 | "version": "1.3.3", | ||
| 2064 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", | ||
| 2065 | "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", | ||
| 2066 | "dev": true, | ||
| 2067 | "license": "MIT", | ||
| 2068 | "dependencies": { | ||
| 2069 | "call-bind": "^1.0.8", | ||
| 2070 | "define-properties": "^1.2.1", | ||
| 2071 | "es-abstract": "^1.23.5", | ||
| 2072 | "es-shim-unscopables": "^1.0.2" | ||
| 2073 | }, | ||
| 2074 | "engines": { | ||
| 2075 | "node": ">= 0.4" | ||
| 2076 | }, | ||
| 2077 | "funding": { | ||
| 2078 | "url": "https://github.com/sponsors/ljharb" | ||
| 2079 | } | ||
| 2080 | }, | ||
| 2081 | "node_modules/array.prototype.tosorted": { | ||
| 2082 | "version": "1.1.4", | ||
| 2083 | "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", | ||
| 2084 | "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", | ||
| 2085 | "dev": true, | ||
| 2086 | "license": "MIT", | ||
| 2087 | "dependencies": { | ||
| 2088 | "call-bind": "^1.0.7", | ||
| 2089 | "define-properties": "^1.2.1", | ||
| 2090 | "es-abstract": "^1.23.3", | ||
| 2091 | "es-errors": "^1.3.0", | ||
| 2092 | "es-shim-unscopables": "^1.0.2" | ||
| 2093 | }, | ||
| 2094 | "engines": { | ||
| 2095 | "node": ">= 0.4" | ||
| 2096 | } | ||
| 2097 | }, | ||
| 2098 | "node_modules/arraybuffer.prototype.slice": { | ||
| 2099 | "version": "1.0.4", | ||
| 2100 | "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", | ||
| 2101 | "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", | ||
| 2102 | "dev": true, | ||
| 2103 | "license": "MIT", | ||
| 2104 | "dependencies": { | ||
| 2105 | "array-buffer-byte-length": "^1.0.1", | ||
| 2106 | "call-bind": "^1.0.8", | ||
| 2107 | "define-properties": "^1.2.1", | ||
| 2108 | "es-abstract": "^1.23.5", | ||
| 2109 | "es-errors": "^1.3.0", | ||
| 2110 | "get-intrinsic": "^1.2.6", | ||
| 2111 | "is-array-buffer": "^3.0.4" | ||
| 2112 | }, | ||
| 2113 | "engines": { | ||
| 2114 | "node": ">= 0.4" | ||
| 2115 | }, | ||
| 2116 | "funding": { | ||
| 2117 | "url": "https://github.com/sponsors/ljharb" | ||
| 2118 | } | ||
| 2119 | }, | ||
| 2120 | "node_modules/ast-types-flow": { | ||
| 2121 | "version": "0.0.8", | ||
| 2122 | "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", | ||
| 2123 | "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", | ||
| 2124 | "dev": true, | ||
| 2125 | "license": "MIT" | ||
| 2126 | }, | ||
| 2127 | "node_modules/async-function": { | ||
| 2128 | "version": "1.0.0", | ||
| 2129 | "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", | ||
| 2130 | "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", | ||
| 2131 | "dev": true, | ||
| 2132 | "license": "MIT", | ||
| 2133 | "engines": { | ||
| 2134 | "node": ">= 0.4" | ||
| 2135 | } | ||
| 2136 | }, | ||
| 2137 | "node_modules/available-typed-arrays": { | ||
| 2138 | "version": "1.0.7", | ||
| 2139 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", | ||
| 2140 | "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", | ||
| 2141 | "dev": true, | ||
| 2142 | "license": "MIT", | ||
| 2143 | "dependencies": { | ||
| 2144 | "possible-typed-array-names": "^1.0.0" | ||
| 2145 | }, | ||
| 2146 | "engines": { | ||
| 2147 | "node": ">= 0.4" | ||
| 2148 | }, | ||
| 2149 | "funding": { | ||
| 2150 | "url": "https://github.com/sponsors/ljharb" | ||
| 2151 | } | ||
| 2152 | }, | ||
| 2153 | "node_modules/axe-core": { | ||
| 2154 | "version": "4.10.3", | ||
| 2155 | "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.10.3.tgz", | ||
| 2156 | "integrity": "sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==", | ||
| 2157 | "dev": true, | ||
| 2158 | "license": "MPL-2.0", | ||
| 2159 | "engines": { | ||
| 2160 | "node": ">=4" | ||
| 2161 | } | ||
| 2162 | }, | ||
| 2163 | "node_modules/axobject-query": { | ||
| 2164 | "version": "4.1.0", | ||
| 2165 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", | ||
| 2166 | "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", | ||
| 2167 | "dev": true, | ||
| 2168 | "license": "Apache-2.0", | ||
| 2169 | "engines": { | ||
| 2170 | "node": ">= 0.4" | ||
| 2171 | } | ||
| 2172 | }, | ||
| 2173 | "node_modules/balanced-match": { | ||
| 2174 | "version": "1.0.2", | ||
| 2175 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", | ||
| 2176 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", | ||
| 2177 | "dev": true, | ||
| 2178 | "license": "MIT" | ||
| 2179 | }, | ||
| 2180 | "node_modules/brace-expansion": { | ||
| 2181 | "version": "1.1.12", | ||
| 2182 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", | ||
| 2183 | "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", | ||
| 2184 | "dev": true, | ||
| 2185 | "license": "MIT", | ||
| 2186 | "dependencies": { | ||
| 2187 | "balanced-match": "^1.0.0", | ||
| 2188 | "concat-map": "0.0.1" | ||
| 2189 | } | ||
| 2190 | }, | ||
| 2191 | "node_modules/braces": { | ||
| 2192 | "version": "3.0.3", | ||
| 2193 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", | ||
| 2194 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", | ||
| 2195 | "dev": true, | ||
| 2196 | "license": "MIT", | ||
| 2197 | "dependencies": { | ||
| 2198 | "fill-range": "^7.1.1" | ||
| 2199 | }, | ||
| 2200 | "engines": { | ||
| 2201 | "node": ">=8" | ||
| 2202 | } | ||
| 2203 | }, | ||
| 2204 | "node_modules/call-bind": { | ||
| 2205 | "version": "1.0.8", | ||
| 2206 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", | ||
| 2207 | "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", | ||
| 2208 | "dev": true, | ||
| 2209 | "license": "MIT", | ||
| 2210 | "dependencies": { | ||
| 2211 | "call-bind-apply-helpers": "^1.0.0", | ||
| 2212 | "es-define-property": "^1.0.0", | ||
| 2213 | "get-intrinsic": "^1.2.4", | ||
| 2214 | "set-function-length": "^1.2.2" | ||
| 2215 | }, | ||
| 2216 | "engines": { | ||
| 2217 | "node": ">= 0.4" | ||
| 2218 | }, | ||
| 2219 | "funding": { | ||
| 2220 | "url": "https://github.com/sponsors/ljharb" | ||
| 2221 | } | ||
| 2222 | }, | ||
| 2223 | "node_modules/call-bind-apply-helpers": { | ||
| 2224 | "version": "1.0.2", | ||
| 2225 | "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", | ||
| 2226 | "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", | ||
| 2227 | "dev": true, | ||
| 2228 | "license": "MIT", | ||
| 2229 | "dependencies": { | ||
| 2230 | "es-errors": "^1.3.0", | ||
| 2231 | "function-bind": "^1.1.2" | ||
| 2232 | }, | ||
| 2233 | "engines": { | ||
| 2234 | "node": ">= 0.4" | ||
| 2235 | } | ||
| 2236 | }, | ||
| 2237 | "node_modules/call-bound": { | ||
| 2238 | "version": "1.0.4", | ||
| 2239 | "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", | ||
| 2240 | "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", | ||
| 2241 | "dev": true, | ||
| 2242 | "license": "MIT", | ||
| 2243 | "dependencies": { | ||
| 2244 | "call-bind-apply-helpers": "^1.0.2", | ||
| 2245 | "get-intrinsic": "^1.3.0" | ||
| 2246 | }, | ||
| 2247 | "engines": { | ||
| 2248 | "node": ">= 0.4" | ||
| 2249 | }, | ||
| 2250 | "funding": { | ||
| 2251 | "url": "https://github.com/sponsors/ljharb" | ||
| 2252 | } | ||
| 2253 | }, | ||
| 2254 | "node_modules/callsites": { | ||
| 2255 | "version": "3.1.0", | ||
| 2256 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", | ||
| 2257 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", | ||
| 2258 | "dev": true, | ||
| 2259 | "license": "MIT", | ||
| 2260 | "engines": { | ||
| 2261 | "node": ">=6" | ||
| 2262 | } | ||
| 2263 | }, | ||
| 2264 | "node_modules/caniuse-lite": { | ||
| 2265 | "version": "1.0.30001733", | ||
| 2266 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001733.tgz", | ||
| 2267 | "integrity": "sha512-e4QKw/O2Kavj2VQTKZWrwzkt3IxOmIlU6ajRb6LP64LHpBo1J67k2Hi4Vu/TgJWsNtynurfS0uK3MaUTCPfu5Q==", | ||
| 2268 | "funding": [ | ||
| 2269 | { | ||
| 2270 | "type": "opencollective", | ||
| 2271 | "url": "https://opencollective.com/browserslist" | ||
| 2272 | }, | ||
| 2273 | { | ||
| 2274 | "type": "tidelift", | ||
| 2275 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" | ||
| 2276 | }, | ||
| 2277 | { | ||
| 2278 | "type": "github", | ||
| 2279 | "url": "https://github.com/sponsors/ai" | ||
| 2280 | } | ||
| 2281 | ], | ||
| 2282 | "license": "CC-BY-4.0" | ||
| 2283 | }, | ||
| 2284 | "node_modules/chalk": { | ||
| 2285 | "version": "4.1.2", | ||
| 2286 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", | ||
| 2287 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", | ||
| 2288 | "dev": true, | ||
| 2289 | "license": "MIT", | ||
| 2290 | "dependencies": { | ||
| 2291 | "ansi-styles": "^4.1.0", | ||
| 2292 | "supports-color": "^7.1.0" | ||
| 2293 | }, | ||
| 2294 | "engines": { | ||
| 2295 | "node": ">=10" | ||
| 2296 | }, | ||
| 2297 | "funding": { | ||
| 2298 | "url": "https://github.com/chalk/chalk?sponsor=1" | ||
| 2299 | } | ||
| 2300 | }, | ||
| 2301 | "node_modules/chownr": { | ||
| 2302 | "version": "3.0.0", | ||
| 2303 | "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", | ||
| 2304 | "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", | ||
| 2305 | "dev": true, | ||
| 2306 | "license": "BlueOak-1.0.0", | ||
| 2307 | "engines": { | ||
| 2308 | "node": ">=18" | ||
| 2309 | } | ||
| 2310 | }, | ||
| 2311 | "node_modules/client-only": { | ||
| 2312 | "version": "0.0.1", | ||
| 2313 | "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", | ||
| 2314 | "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", | ||
| 2315 | "license": "MIT" | ||
| 2316 | }, | ||
| 2317 | "node_modules/color": { | ||
| 2318 | "version": "4.2.3", | ||
| 2319 | "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", | ||
| 2320 | "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", | ||
| 2321 | "license": "MIT", | ||
| 2322 | "optional": true, | ||
| 2323 | "dependencies": { | ||
| 2324 | "color-convert": "^2.0.1", | ||
| 2325 | "color-string": "^1.9.0" | ||
| 2326 | }, | ||
| 2327 | "engines": { | ||
| 2328 | "node": ">=12.5.0" | ||
| 2329 | } | ||
| 2330 | }, | ||
| 2331 | "node_modules/color-convert": { | ||
| 2332 | "version": "2.0.1", | ||
| 2333 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", | ||
| 2334 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", | ||
| 2335 | "devOptional": true, | ||
| 2336 | "license": "MIT", | ||
| 2337 | "dependencies": { | ||
| 2338 | "color-name": "~1.1.4" | ||
| 2339 | }, | ||
| 2340 | "engines": { | ||
| 2341 | "node": ">=7.0.0" | ||
| 2342 | } | ||
| 2343 | }, | ||
| 2344 | "node_modules/color-name": { | ||
| 2345 | "version": "1.1.4", | ||
| 2346 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", | ||
| 2347 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", | ||
| 2348 | "devOptional": true, | ||
| 2349 | "license": "MIT" | ||
| 2350 | }, | ||
| 2351 | "node_modules/color-string": { | ||
| 2352 | "version": "1.9.1", | ||
| 2353 | "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", | ||
| 2354 | "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", | ||
| 2355 | "license": "MIT", | ||
| 2356 | "optional": true, | ||
| 2357 | "dependencies": { | ||
| 2358 | "color-name": "^1.0.0", | ||
| 2359 | "simple-swizzle": "^0.2.2" | ||
| 2360 | } | ||
| 2361 | }, | ||
| 2362 | "node_modules/concat-map": { | ||
| 2363 | "version": "0.0.1", | ||
| 2364 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", | ||
| 2365 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", | ||
| 2366 | "dev": true, | ||
| 2367 | "license": "MIT" | ||
| 2368 | }, | ||
| 2369 | "node_modules/cross-spawn": { | ||
| 2370 | "version": "7.0.6", | ||
| 2371 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", | ||
| 2372 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", | ||
| 2373 | "dev": true, | ||
| 2374 | "license": "MIT", | ||
| 2375 | "dependencies": { | ||
| 2376 | "path-key": "^3.1.0", | ||
| 2377 | "shebang-command": "^2.0.0", | ||
| 2378 | "which": "^2.0.1" | ||
| 2379 | }, | ||
| 2380 | "engines": { | ||
| 2381 | "node": ">= 8" | ||
| 2382 | } | ||
| 2383 | }, | ||
| 2384 | "node_modules/csstype": { | ||
| 2385 | "version": "3.1.3", | ||
| 2386 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", | ||
| 2387 | "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", | ||
| 2388 | "dev": true, | ||
| 2389 | "license": "MIT" | ||
| 2390 | }, | ||
| 2391 | "node_modules/damerau-levenshtein": { | ||
| 2392 | "version": "1.0.8", | ||
| 2393 | "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", | ||
| 2394 | "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", | ||
| 2395 | "dev": true, | ||
| 2396 | "license": "BSD-2-Clause" | ||
| 2397 | }, | ||
| 2398 | "node_modules/data-view-buffer": { | ||
| 2399 | "version": "1.0.2", | ||
| 2400 | "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", | ||
| 2401 | "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", | ||
| 2402 | "dev": true, | ||
| 2403 | "license": "MIT", | ||
| 2404 | "dependencies": { | ||
| 2405 | "call-bound": "^1.0.3", | ||
| 2406 | "es-errors": "^1.3.0", | ||
| 2407 | "is-data-view": "^1.0.2" | ||
| 2408 | }, | ||
| 2409 | "engines": { | ||
| 2410 | "node": ">= 0.4" | ||
| 2411 | }, | ||
| 2412 | "funding": { | ||
| 2413 | "url": "https://github.com/sponsors/ljharb" | ||
| 2414 | } | ||
| 2415 | }, | ||
| 2416 | "node_modules/data-view-byte-length": { | ||
| 2417 | "version": "1.0.2", | ||
| 2418 | "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", | ||
| 2419 | "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", | ||
| 2420 | "dev": true, | ||
| 2421 | "license": "MIT", | ||
| 2422 | "dependencies": { | ||
| 2423 | "call-bound": "^1.0.3", | ||
| 2424 | "es-errors": "^1.3.0", | ||
| 2425 | "is-data-view": "^1.0.2" | ||
| 2426 | }, | ||
| 2427 | "engines": { | ||
| 2428 | "node": ">= 0.4" | ||
| 2429 | }, | ||
| 2430 | "funding": { | ||
| 2431 | "url": "https://github.com/sponsors/inspect-js" | ||
| 2432 | } | ||
| 2433 | }, | ||
| 2434 | "node_modules/data-view-byte-offset": { | ||
| 2435 | "version": "1.0.1", | ||
| 2436 | "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", | ||
| 2437 | "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", | ||
| 2438 | "dev": true, | ||
| 2439 | "license": "MIT", | ||
| 2440 | "dependencies": { | ||
| 2441 | "call-bound": "^1.0.2", | ||
| 2442 | "es-errors": "^1.3.0", | ||
| 2443 | "is-data-view": "^1.0.1" | ||
| 2444 | }, | ||
| 2445 | "engines": { | ||
| 2446 | "node": ">= 0.4" | ||
| 2447 | }, | ||
| 2448 | "funding": { | ||
| 2449 | "url": "https://github.com/sponsors/ljharb" | ||
| 2450 | } | ||
| 2451 | }, | ||
| 2452 | "node_modules/debug": { | ||
| 2453 | "version": "4.4.1", | ||
| 2454 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", | ||
| 2455 | "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", | ||
| 2456 | "dev": true, | ||
| 2457 | "license": "MIT", | ||
| 2458 | "dependencies": { | ||
| 2459 | "ms": "^2.1.3" | ||
| 2460 | }, | ||
| 2461 | "engines": { | ||
| 2462 | "node": ">=6.0" | ||
| 2463 | }, | ||
| 2464 | "peerDependenciesMeta": { | ||
| 2465 | "supports-color": { | ||
| 2466 | "optional": true | ||
| 2467 | } | ||
| 2468 | } | ||
| 2469 | }, | ||
| 2470 | "node_modules/deep-is": { | ||
| 2471 | "version": "0.1.4", | ||
| 2472 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", | ||
| 2473 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", | ||
| 2474 | "dev": true, | ||
| 2475 | "license": "MIT" | ||
| 2476 | }, | ||
| 2477 | "node_modules/define-data-property": { | ||
| 2478 | "version": "1.1.4", | ||
| 2479 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", | ||
| 2480 | "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", | ||
| 2481 | "dev": true, | ||
| 2482 | "license": "MIT", | ||
| 2483 | "dependencies": { | ||
| 2484 | "es-define-property": "^1.0.0", | ||
| 2485 | "es-errors": "^1.3.0", | ||
| 2486 | "gopd": "^1.0.1" | ||
| 2487 | }, | ||
| 2488 | "engines": { | ||
| 2489 | "node": ">= 0.4" | ||
| 2490 | }, | ||
| 2491 | "funding": { | ||
| 2492 | "url": "https://github.com/sponsors/ljharb" | ||
| 2493 | } | ||
| 2494 | }, | ||
| 2495 | "node_modules/define-properties": { | ||
| 2496 | "version": "1.2.1", | ||
| 2497 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", | ||
| 2498 | "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", | ||
| 2499 | "dev": true, | ||
| 2500 | "license": "MIT", | ||
| 2501 | "dependencies": { | ||
| 2502 | "define-data-property": "^1.0.1", | ||
| 2503 | "has-property-descriptors": "^1.0.0", | ||
| 2504 | "object-keys": "^1.1.1" | ||
| 2505 | }, | ||
| 2506 | "engines": { | ||
| 2507 | "node": ">= 0.4" | ||
| 2508 | }, | ||
| 2509 | "funding": { | ||
| 2510 | "url": "https://github.com/sponsors/ljharb" | ||
| 2511 | } | ||
| 2512 | }, | ||
| 2513 | "node_modules/detect-libc": { | ||
| 2514 | "version": "2.0.4", | ||
| 2515 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz", | ||
| 2516 | "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==", | ||
| 2517 | "devOptional": true, | ||
| 2518 | "license": "Apache-2.0", | ||
| 2519 | "engines": { | ||
| 2520 | "node": ">=8" | ||
| 2521 | } | ||
| 2522 | }, | ||
| 2523 | "node_modules/doctrine": { | ||
| 2524 | "version": "2.1.0", | ||
| 2525 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", | ||
| 2526 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", | ||
| 2527 | "dev": true, | ||
| 2528 | "license": "Apache-2.0", | ||
| 2529 | "dependencies": { | ||
| 2530 | "esutils": "^2.0.2" | ||
| 2531 | }, | ||
| 2532 | "engines": { | ||
| 2533 | "node": ">=0.10.0" | ||
| 2534 | } | ||
| 2535 | }, | ||
| 2536 | "node_modules/dunder-proto": { | ||
| 2537 | "version": "1.0.1", | ||
| 2538 | "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", | ||
| 2539 | "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", | ||
| 2540 | "dev": true, | ||
| 2541 | "license": "MIT", | ||
| 2542 | "dependencies": { | ||
| 2543 | "call-bind-apply-helpers": "^1.0.1", | ||
| 2544 | "es-errors": "^1.3.0", | ||
| 2545 | "gopd": "^1.2.0" | ||
| 2546 | }, | ||
| 2547 | "engines": { | ||
| 2548 | "node": ">= 0.4" | ||
| 2549 | } | ||
| 2550 | }, | ||
| 2551 | "node_modules/emoji-regex": { | ||
| 2552 | "version": "9.2.2", | ||
| 2553 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", | ||
| 2554 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", | ||
| 2555 | "dev": true, | ||
| 2556 | "license": "MIT" | ||
| 2557 | }, | ||
| 2558 | "node_modules/enhanced-resolve": { | ||
| 2559 | "version": "5.18.3", | ||
| 2560 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", | ||
| 2561 | "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", | ||
| 2562 | "dev": true, | ||
| 2563 | "license": "MIT", | ||
| 2564 | "dependencies": { | ||
| 2565 | "graceful-fs": "^4.2.4", | ||
| 2566 | "tapable": "^2.2.0" | ||
| 2567 | }, | ||
| 2568 | "engines": { | ||
| 2569 | "node": ">=10.13.0" | ||
| 2570 | } | ||
| 2571 | }, | ||
| 2572 | "node_modules/es-abstract": { | ||
| 2573 | "version": "1.24.0", | ||
| 2574 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.0.tgz", | ||
| 2575 | "integrity": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==", | ||
| 2576 | "dev": true, | ||
| 2577 | "license": "MIT", | ||
| 2578 | "dependencies": { | ||
| 2579 | "array-buffer-byte-length": "^1.0.2", | ||
| 2580 | "arraybuffer.prototype.slice": "^1.0.4", | ||
| 2581 | "available-typed-arrays": "^1.0.7", | ||
| 2582 | "call-bind": "^1.0.8", | ||
| 2583 | "call-bound": "^1.0.4", | ||
| 2584 | "data-view-buffer": "^1.0.2", | ||
| 2585 | "data-view-byte-length": "^1.0.2", | ||
| 2586 | "data-view-byte-offset": "^1.0.1", | ||
| 2587 | "es-define-property": "^1.0.1", | ||
| 2588 | "es-errors": "^1.3.0", | ||
| 2589 | "es-object-atoms": "^1.1.1", | ||
| 2590 | "es-set-tostringtag": "^2.1.0", | ||
| 2591 | "es-to-primitive": "^1.3.0", | ||
| 2592 | "function.prototype.name": "^1.1.8", | ||
| 2593 | "get-intrinsic": "^1.3.0", | ||
| 2594 | "get-proto": "^1.0.1", | ||
| 2595 | "get-symbol-description": "^1.1.0", | ||
| 2596 | "globalthis": "^1.0.4", | ||
| 2597 | "gopd": "^1.2.0", | ||
| 2598 | "has-property-descriptors": "^1.0.2", | ||
| 2599 | "has-proto": "^1.2.0", | ||
| 2600 | "has-symbols": "^1.1.0", | ||
| 2601 | "hasown": "^2.0.2", | ||
| 2602 | "internal-slot": "^1.1.0", | ||
| 2603 | "is-array-buffer": "^3.0.5", | ||
| 2604 | "is-callable": "^1.2.7", | ||
| 2605 | "is-data-view": "^1.0.2", | ||
| 2606 | "is-negative-zero": "^2.0.3", | ||
| 2607 | "is-regex": "^1.2.1", | ||
| 2608 | "is-set": "^2.0.3", | ||
| 2609 | "is-shared-array-buffer": "^1.0.4", | ||
| 2610 | "is-string": "^1.1.1", | ||
| 2611 | "is-typed-array": "^1.1.15", | ||
| 2612 | "is-weakref": "^1.1.1", | ||
| 2613 | "math-intrinsics": "^1.1.0", | ||
| 2614 | "object-inspect": "^1.13.4", | ||
| 2615 | "object-keys": "^1.1.1", | ||
| 2616 | "object.assign": "^4.1.7", | ||
| 2617 | "own-keys": "^1.0.1", | ||
| 2618 | "regexp.prototype.flags": "^1.5.4", | ||
| 2619 | "safe-array-concat": "^1.1.3", | ||
| 2620 | "safe-push-apply": "^1.0.0", | ||
| 2621 | "safe-regex-test": "^1.1.0", | ||
| 2622 | "set-proto": "^1.0.0", | ||
| 2623 | "stop-iteration-iterator": "^1.1.0", | ||
| 2624 | "string.prototype.trim": "^1.2.10", | ||
| 2625 | "string.prototype.trimend": "^1.0.9", | ||
| 2626 | "string.prototype.trimstart": "^1.0.8", | ||
| 2627 | "typed-array-buffer": "^1.0.3", | ||
| 2628 | "typed-array-byte-length": "^1.0.3", | ||
| 2629 | "typed-array-byte-offset": "^1.0.4", | ||
| 2630 | "typed-array-length": "^1.0.7", | ||
| 2631 | "unbox-primitive": "^1.1.0", | ||
| 2632 | "which-typed-array": "^1.1.19" | ||
| 2633 | }, | ||
| 2634 | "engines": { | ||
| 2635 | "node": ">= 0.4" | ||
| 2636 | }, | ||
| 2637 | "funding": { | ||
| 2638 | "url": "https://github.com/sponsors/ljharb" | ||
| 2639 | } | ||
| 2640 | }, | ||
| 2641 | "node_modules/es-define-property": { | ||
| 2642 | "version": "1.0.1", | ||
| 2643 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", | ||
| 2644 | "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", | ||
| 2645 | "dev": true, | ||
| 2646 | "license": "MIT", | ||
| 2647 | "engines": { | ||
| 2648 | "node": ">= 0.4" | ||
| 2649 | } | ||
| 2650 | }, | ||
| 2651 | "node_modules/es-errors": { | ||
| 2652 | "version": "1.3.0", | ||
| 2653 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", | ||
| 2654 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", | ||
| 2655 | "dev": true, | ||
| 2656 | "license": "MIT", | ||
| 2657 | "engines": { | ||
| 2658 | "node": ">= 0.4" | ||
| 2659 | } | ||
| 2660 | }, | ||
| 2661 | "node_modules/es-iterator-helpers": { | ||
| 2662 | "version": "1.2.1", | ||
| 2663 | "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz", | ||
| 2664 | "integrity": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==", | ||
| 2665 | "dev": true, | ||
| 2666 | "license": "MIT", | ||
| 2667 | "dependencies": { | ||
| 2668 | "call-bind": "^1.0.8", | ||
| 2669 | "call-bound": "^1.0.3", | ||
| 2670 | "define-properties": "^1.2.1", | ||
| 2671 | "es-abstract": "^1.23.6", | ||
| 2672 | "es-errors": "^1.3.0", | ||
| 2673 | "es-set-tostringtag": "^2.0.3", | ||
| 2674 | "function-bind": "^1.1.2", | ||
| 2675 | "get-intrinsic": "^1.2.6", | ||
| 2676 | "globalthis": "^1.0.4", | ||
| 2677 | "gopd": "^1.2.0", | ||
| 2678 | "has-property-descriptors": "^1.0.2", | ||
| 2679 | "has-proto": "^1.2.0", | ||
| 2680 | "has-symbols": "^1.1.0", | ||
| 2681 | "internal-slot": "^1.1.0", | ||
| 2682 | "iterator.prototype": "^1.1.4", | ||
| 2683 | "safe-array-concat": "^1.1.3" | ||
| 2684 | }, | ||
| 2685 | "engines": { | ||
| 2686 | "node": ">= 0.4" | ||
| 2687 | } | ||
| 2688 | }, | ||
| 2689 | "node_modules/es-object-atoms": { | ||
| 2690 | "version": "1.1.1", | ||
| 2691 | "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", | ||
| 2692 | "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", | ||
| 2693 | "dev": true, | ||
| 2694 | "license": "MIT", | ||
| 2695 | "dependencies": { | ||
| 2696 | "es-errors": "^1.3.0" | ||
| 2697 | }, | ||
| 2698 | "engines": { | ||
| 2699 | "node": ">= 0.4" | ||
| 2700 | } | ||
| 2701 | }, | ||
| 2702 | "node_modules/es-set-tostringtag": { | ||
| 2703 | "version": "2.1.0", | ||
| 2704 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", | ||
| 2705 | "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", | ||
| 2706 | "dev": true, | ||
| 2707 | "license": "MIT", | ||
| 2708 | "dependencies": { | ||
| 2709 | "es-errors": "^1.3.0", | ||
| 2710 | "get-intrinsic": "^1.2.6", | ||
| 2711 | "has-tostringtag": "^1.0.2", | ||
| 2712 | "hasown": "^2.0.2" | ||
| 2713 | }, | ||
| 2714 | "engines": { | ||
| 2715 | "node": ">= 0.4" | ||
| 2716 | } | ||
| 2717 | }, | ||
| 2718 | "node_modules/es-shim-unscopables": { | ||
| 2719 | "version": "1.1.0", | ||
| 2720 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", | ||
| 2721 | "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", | ||
| 2722 | "dev": true, | ||
| 2723 | "license": "MIT", | ||
| 2724 | "dependencies": { | ||
| 2725 | "hasown": "^2.0.2" | ||
| 2726 | }, | ||
| 2727 | "engines": { | ||
| 2728 | "node": ">= 0.4" | ||
| 2729 | } | ||
| 2730 | }, | ||
| 2731 | "node_modules/es-to-primitive": { | ||
| 2732 | "version": "1.3.0", | ||
| 2733 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", | ||
| 2734 | "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", | ||
| 2735 | "dev": true, | ||
| 2736 | "license": "MIT", | ||
| 2737 | "dependencies": { | ||
| 2738 | "is-callable": "^1.2.7", | ||
| 2739 | "is-date-object": "^1.0.5", | ||
| 2740 | "is-symbol": "^1.0.4" | ||
| 2741 | }, | ||
| 2742 | "engines": { | ||
| 2743 | "node": ">= 0.4" | ||
| 2744 | }, | ||
| 2745 | "funding": { | ||
| 2746 | "url": "https://github.com/sponsors/ljharb" | ||
| 2747 | } | ||
| 2748 | }, | ||
| 2749 | "node_modules/escape-string-regexp": { | ||
| 2750 | "version": "4.0.0", | ||
| 2751 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", | ||
| 2752 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", | ||
| 2753 | "dev": true, | ||
| 2754 | "license": "MIT", | ||
| 2755 | "engines": { | ||
| 2756 | "node": ">=10" | ||
| 2757 | }, | ||
| 2758 | "funding": { | ||
| 2759 | "url": "https://github.com/sponsors/sindresorhus" | ||
| 2760 | } | ||
| 2761 | }, | ||
| 2762 | "node_modules/eslint": { | ||
| 2763 | "version": "9.33.0", | ||
| 2764 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.33.0.tgz", | ||
| 2765 | "integrity": "sha512-TS9bTNIryDzStCpJN93aC5VRSW3uTx9sClUn4B87pwiCaJh220otoI0X8mJKr+VcPtniMdN8GKjlwgWGUv5ZKA==", | ||
| 2766 | "dev": true, | ||
| 2767 | "license": "MIT", | ||
| 2768 | "dependencies": { | ||
| 2769 | "@eslint-community/eslint-utils": "^4.2.0", | ||
| 2770 | "@eslint-community/regexpp": "^4.12.1", | ||
| 2771 | "@eslint/config-array": "^0.21.0", | ||
| 2772 | "@eslint/config-helpers": "^0.3.1", | ||
| 2773 | "@eslint/core": "^0.15.2", | ||
| 2774 | "@eslint/eslintrc": "^3.3.1", | ||
| 2775 | "@eslint/js": "9.33.0", | ||
| 2776 | "@eslint/plugin-kit": "^0.3.5", | ||
| 2777 | "@humanfs/node": "^0.16.6", | ||
| 2778 | "@humanwhocodes/module-importer": "^1.0.1", | ||
| 2779 | "@humanwhocodes/retry": "^0.4.2", | ||
| 2780 | "@types/estree": "^1.0.6", | ||
| 2781 | "@types/json-schema": "^7.0.15", | ||
| 2782 | "ajv": "^6.12.4", | ||
| 2783 | "chalk": "^4.0.0", | ||
| 2784 | "cross-spawn": "^7.0.6", | ||
| 2785 | "debug": "^4.3.2", | ||
| 2786 | "escape-string-regexp": "^4.0.0", | ||
| 2787 | "eslint-scope": "^8.4.0", | ||
| 2788 | "eslint-visitor-keys": "^4.2.1", | ||
| 2789 | "espree": "^10.4.0", | ||
| 2790 | "esquery": "^1.5.0", | ||
| 2791 | "esutils": "^2.0.2", | ||
| 2792 | "fast-deep-equal": "^3.1.3", | ||
| 2793 | "file-entry-cache": "^8.0.0", | ||
| 2794 | "find-up": "^5.0.0", | ||
| 2795 | "glob-parent": "^6.0.2", | ||
| 2796 | "ignore": "^5.2.0", | ||
| 2797 | "imurmurhash": "^0.1.4", | ||
| 2798 | "is-glob": "^4.0.0", | ||
| 2799 | "json-stable-stringify-without-jsonify": "^1.0.1", | ||
| 2800 | "lodash.merge": "^4.6.2", | ||
| 2801 | "minimatch": "^3.1.2", | ||
| 2802 | "natural-compare": "^1.4.0", | ||
| 2803 | "optionator": "^0.9.3" | ||
| 2804 | }, | ||
| 2805 | "bin": { | ||
| 2806 | "eslint": "bin/eslint.js" | ||
| 2807 | }, | ||
| 2808 | "engines": { | ||
| 2809 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 2810 | }, | ||
| 2811 | "funding": { | ||
| 2812 | "url": "https://eslint.org/donate" | ||
| 2813 | }, | ||
| 2814 | "peerDependencies": { | ||
| 2815 | "jiti": "*" | ||
| 2816 | }, | ||
| 2817 | "peerDependenciesMeta": { | ||
| 2818 | "jiti": { | ||
| 2819 | "optional": true | ||
| 2820 | } | ||
| 2821 | } | ||
| 2822 | }, | ||
| 2823 | "node_modules/eslint-config-next": { | ||
| 2824 | "version": "15.4.6", | ||
| 2825 | "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-15.4.6.tgz", | ||
| 2826 | "integrity": "sha512-4uznvw5DlTTjrZgYZjMciSdDDMO2SWIuQgUNaFyC2O3Zw3Z91XeIejeVa439yRq2CnJb/KEvE4U2AeN/66FpUA==", | ||
| 2827 | "dev": true, | ||
| 2828 | "license": "MIT", | ||
| 2829 | "dependencies": { | ||
| 2830 | "@next/eslint-plugin-next": "15.4.6", | ||
| 2831 | "@rushstack/eslint-patch": "^1.10.3", | ||
| 2832 | "@typescript-eslint/eslint-plugin": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", | ||
| 2833 | "@typescript-eslint/parser": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", | ||
| 2834 | "eslint-import-resolver-node": "^0.3.6", | ||
| 2835 | "eslint-import-resolver-typescript": "^3.5.2", | ||
| 2836 | "eslint-plugin-import": "^2.31.0", | ||
| 2837 | "eslint-plugin-jsx-a11y": "^6.10.0", | ||
| 2838 | "eslint-plugin-react": "^7.37.0", | ||
| 2839 | "eslint-plugin-react-hooks": "^5.0.0" | ||
| 2840 | }, | ||
| 2841 | "peerDependencies": { | ||
| 2842 | "eslint": "^7.23.0 || ^8.0.0 || ^9.0.0", | ||
| 2843 | "typescript": ">=3.3.1" | ||
| 2844 | }, | ||
| 2845 | "peerDependenciesMeta": { | ||
| 2846 | "typescript": { | ||
| 2847 | "optional": true | ||
| 2848 | } | ||
| 2849 | } | ||
| 2850 | }, | ||
| 2851 | "node_modules/eslint-import-resolver-node": { | ||
| 2852 | "version": "0.3.9", | ||
| 2853 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", | ||
| 2854 | "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", | ||
| 2855 | "dev": true, | ||
| 2856 | "license": "MIT", | ||
| 2857 | "dependencies": { | ||
| 2858 | "debug": "^3.2.7", | ||
| 2859 | "is-core-module": "^2.13.0", | ||
| 2860 | "resolve": "^1.22.4" | ||
| 2861 | } | ||
| 2862 | }, | ||
| 2863 | "node_modules/eslint-import-resolver-node/node_modules/debug": { | ||
| 2864 | "version": "3.2.7", | ||
| 2865 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", | ||
| 2866 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", | ||
| 2867 | "dev": true, | ||
| 2868 | "license": "MIT", | ||
| 2869 | "dependencies": { | ||
| 2870 | "ms": "^2.1.1" | ||
| 2871 | } | ||
| 2872 | }, | ||
| 2873 | "node_modules/eslint-import-resolver-typescript": { | ||
| 2874 | "version": "3.10.1", | ||
| 2875 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.1.tgz", | ||
| 2876 | "integrity": "sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==", | ||
| 2877 | "dev": true, | ||
| 2878 | "license": "ISC", | ||
| 2879 | "dependencies": { | ||
| 2880 | "@nolyfill/is-core-module": "1.0.39", | ||
| 2881 | "debug": "^4.4.0", | ||
| 2882 | "get-tsconfig": "^4.10.0", | ||
| 2883 | "is-bun-module": "^2.0.0", | ||
| 2884 | "stable-hash": "^0.0.5", | ||
| 2885 | "tinyglobby": "^0.2.13", | ||
| 2886 | "unrs-resolver": "^1.6.2" | ||
| 2887 | }, | ||
| 2888 | "engines": { | ||
| 2889 | "node": "^14.18.0 || >=16.0.0" | ||
| 2890 | }, | ||
| 2891 | "funding": { | ||
| 2892 | "url": "https://opencollective.com/eslint-import-resolver-typescript" | ||
| 2893 | }, | ||
| 2894 | "peerDependencies": { | ||
| 2895 | "eslint": "*", | ||
| 2896 | "eslint-plugin-import": "*", | ||
| 2897 | "eslint-plugin-import-x": "*" | ||
| 2898 | }, | ||
| 2899 | "peerDependenciesMeta": { | ||
| 2900 | "eslint-plugin-import": { | ||
| 2901 | "optional": true | ||
| 2902 | }, | ||
| 2903 | "eslint-plugin-import-x": { | ||
| 2904 | "optional": true | ||
| 2905 | } | ||
| 2906 | } | ||
| 2907 | }, | ||
| 2908 | "node_modules/eslint-module-utils": { | ||
| 2909 | "version": "2.12.1", | ||
| 2910 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz", | ||
| 2911 | "integrity": "sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==", | ||
| 2912 | "dev": true, | ||
| 2913 | "license": "MIT", | ||
| 2914 | "dependencies": { | ||
| 2915 | "debug": "^3.2.7" | ||
| 2916 | }, | ||
| 2917 | "engines": { | ||
| 2918 | "node": ">=4" | ||
| 2919 | }, | ||
| 2920 | "peerDependenciesMeta": { | ||
| 2921 | "eslint": { | ||
| 2922 | "optional": true | ||
| 2923 | } | ||
| 2924 | } | ||
| 2925 | }, | ||
| 2926 | "node_modules/eslint-module-utils/node_modules/debug": { | ||
| 2927 | "version": "3.2.7", | ||
| 2928 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", | ||
| 2929 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", | ||
| 2930 | "dev": true, | ||
| 2931 | "license": "MIT", | ||
| 2932 | "dependencies": { | ||
| 2933 | "ms": "^2.1.1" | ||
| 2934 | } | ||
| 2935 | }, | ||
| 2936 | "node_modules/eslint-plugin-import": { | ||
| 2937 | "version": "2.32.0", | ||
| 2938 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz", | ||
| 2939 | "integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==", | ||
| 2940 | "dev": true, | ||
| 2941 | "license": "MIT", | ||
| 2942 | "dependencies": { | ||
| 2943 | "@rtsao/scc": "^1.1.0", | ||
| 2944 | "array-includes": "^3.1.9", | ||
| 2945 | "array.prototype.findlastindex": "^1.2.6", | ||
| 2946 | "array.prototype.flat": "^1.3.3", | ||
| 2947 | "array.prototype.flatmap": "^1.3.3", | ||
| 2948 | "debug": "^3.2.7", | ||
| 2949 | "doctrine": "^2.1.0", | ||
| 2950 | "eslint-import-resolver-node": "^0.3.9", | ||
| 2951 | "eslint-module-utils": "^2.12.1", | ||
| 2952 | "hasown": "^2.0.2", | ||
| 2953 | "is-core-module": "^2.16.1", | ||
| 2954 | "is-glob": "^4.0.3", | ||
| 2955 | "minimatch": "^3.1.2", | ||
| 2956 | "object.fromentries": "^2.0.8", | ||
| 2957 | "object.groupby": "^1.0.3", | ||
| 2958 | "object.values": "^1.2.1", | ||
| 2959 | "semver": "^6.3.1", | ||
| 2960 | "string.prototype.trimend": "^1.0.9", | ||
| 2961 | "tsconfig-paths": "^3.15.0" | ||
| 2962 | }, | ||
| 2963 | "engines": { | ||
| 2964 | "node": ">=4" | ||
| 2965 | }, | ||
| 2966 | "peerDependencies": { | ||
| 2967 | "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" | ||
| 2968 | } | ||
| 2969 | }, | ||
| 2970 | "node_modules/eslint-plugin-import/node_modules/debug": { | ||
| 2971 | "version": "3.2.7", | ||
| 2972 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", | ||
| 2973 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", | ||
| 2974 | "dev": true, | ||
| 2975 | "license": "MIT", | ||
| 2976 | "dependencies": { | ||
| 2977 | "ms": "^2.1.1" | ||
| 2978 | } | ||
| 2979 | }, | ||
| 2980 | "node_modules/eslint-plugin-import/node_modules/semver": { | ||
| 2981 | "version": "6.3.1", | ||
| 2982 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", | ||
| 2983 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", | ||
| 2984 | "dev": true, | ||
| 2985 | "license": "ISC", | ||
| 2986 | "bin": { | ||
| 2987 | "semver": "bin/semver.js" | ||
| 2988 | } | ||
| 2989 | }, | ||
| 2990 | "node_modules/eslint-plugin-jsx-a11y": { | ||
| 2991 | "version": "6.10.2", | ||
| 2992 | "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz", | ||
| 2993 | "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==", | ||
| 2994 | "dev": true, | ||
| 2995 | "license": "MIT", | ||
| 2996 | "dependencies": { | ||
| 2997 | "aria-query": "^5.3.2", | ||
| 2998 | "array-includes": "^3.1.8", | ||
| 2999 | "array.prototype.flatmap": "^1.3.2", | ||
| 3000 | "ast-types-flow": "^0.0.8", | ||
| 3001 | "axe-core": "^4.10.0", | ||
| 3002 | "axobject-query": "^4.1.0", | ||
| 3003 | "damerau-levenshtein": "^1.0.8", | ||
| 3004 | "emoji-regex": "^9.2.2", | ||
| 3005 | "hasown": "^2.0.2", | ||
| 3006 | "jsx-ast-utils": "^3.3.5", | ||
| 3007 | "language-tags": "^1.0.9", | ||
| 3008 | "minimatch": "^3.1.2", | ||
| 3009 | "object.fromentries": "^2.0.8", | ||
| 3010 | "safe-regex-test": "^1.0.3", | ||
| 3011 | "string.prototype.includes": "^2.0.1" | ||
| 3012 | }, | ||
| 3013 | "engines": { | ||
| 3014 | "node": ">=4.0" | ||
| 3015 | }, | ||
| 3016 | "peerDependencies": { | ||
| 3017 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9" | ||
| 3018 | } | ||
| 3019 | }, | ||
| 3020 | "node_modules/eslint-plugin-react": { | ||
| 3021 | "version": "7.37.5", | ||
| 3022 | "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", | ||
| 3023 | "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==", | ||
| 3024 | "dev": true, | ||
| 3025 | "license": "MIT", | ||
| 3026 | "dependencies": { | ||
| 3027 | "array-includes": "^3.1.8", | ||
| 3028 | "array.prototype.findlast": "^1.2.5", | ||
| 3029 | "array.prototype.flatmap": "^1.3.3", | ||
| 3030 | "array.prototype.tosorted": "^1.1.4", | ||
| 3031 | "doctrine": "^2.1.0", | ||
| 3032 | "es-iterator-helpers": "^1.2.1", | ||
| 3033 | "estraverse": "^5.3.0", | ||
| 3034 | "hasown": "^2.0.2", | ||
| 3035 | "jsx-ast-utils": "^2.4.1 || ^3.0.0", | ||
| 3036 | "minimatch": "^3.1.2", | ||
| 3037 | "object.entries": "^1.1.9", | ||
| 3038 | "object.fromentries": "^2.0.8", | ||
| 3039 | "object.values": "^1.2.1", | ||
| 3040 | "prop-types": "^15.8.1", | ||
| 3041 | "resolve": "^2.0.0-next.5", | ||
| 3042 | "semver": "^6.3.1", | ||
| 3043 | "string.prototype.matchall": "^4.0.12", | ||
| 3044 | "string.prototype.repeat": "^1.0.0" | ||
| 3045 | }, | ||
| 3046 | "engines": { | ||
| 3047 | "node": ">=4" | ||
| 3048 | }, | ||
| 3049 | "peerDependencies": { | ||
| 3050 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" | ||
| 3051 | } | ||
| 3052 | }, | ||
| 3053 | "node_modules/eslint-plugin-react-hooks": { | ||
| 3054 | "version": "5.2.0", | ||
| 3055 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz", | ||
| 3056 | "integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==", | ||
| 3057 | "dev": true, | ||
| 3058 | "license": "MIT", | ||
| 3059 | "engines": { | ||
| 3060 | "node": ">=10" | ||
| 3061 | }, | ||
| 3062 | "peerDependencies": { | ||
| 3063 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" | ||
| 3064 | } | ||
| 3065 | }, | ||
| 3066 | "node_modules/eslint-plugin-react/node_modules/resolve": { | ||
| 3067 | "version": "2.0.0-next.5", | ||
| 3068 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", | ||
| 3069 | "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", | ||
| 3070 | "dev": true, | ||
| 3071 | "license": "MIT", | ||
| 3072 | "dependencies": { | ||
| 3073 | "is-core-module": "^2.13.0", | ||
| 3074 | "path-parse": "^1.0.7", | ||
| 3075 | "supports-preserve-symlinks-flag": "^1.0.0" | ||
| 3076 | }, | ||
| 3077 | "bin": { | ||
| 3078 | "resolve": "bin/resolve" | ||
| 3079 | }, | ||
| 3080 | "funding": { | ||
| 3081 | "url": "https://github.com/sponsors/ljharb" | ||
| 3082 | } | ||
| 3083 | }, | ||
| 3084 | "node_modules/eslint-plugin-react/node_modules/semver": { | ||
| 3085 | "version": "6.3.1", | ||
| 3086 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", | ||
| 3087 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", | ||
| 3088 | "dev": true, | ||
| 3089 | "license": "ISC", | ||
| 3090 | "bin": { | ||
| 3091 | "semver": "bin/semver.js" | ||
| 3092 | } | ||
| 3093 | }, | ||
| 3094 | "node_modules/eslint-scope": { | ||
| 3095 | "version": "8.4.0", | ||
| 3096 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", | ||
| 3097 | "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", | ||
| 3098 | "dev": true, | ||
| 3099 | "license": "BSD-2-Clause", | ||
| 3100 | "dependencies": { | ||
| 3101 | "esrecurse": "^4.3.0", | ||
| 3102 | "estraverse": "^5.2.0" | ||
| 3103 | }, | ||
| 3104 | "engines": { | ||
| 3105 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 3106 | }, | ||
| 3107 | "funding": { | ||
| 3108 | "url": "https://opencollective.com/eslint" | ||
| 3109 | } | ||
| 3110 | }, | ||
| 3111 | "node_modules/eslint-visitor-keys": { | ||
| 3112 | "version": "4.2.1", | ||
| 3113 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", | ||
| 3114 | "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", | ||
| 3115 | "dev": true, | ||
| 3116 | "license": "Apache-2.0", | ||
| 3117 | "engines": { | ||
| 3118 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 3119 | }, | ||
| 3120 | "funding": { | ||
| 3121 | "url": "https://opencollective.com/eslint" | ||
| 3122 | } | ||
| 3123 | }, | ||
| 3124 | "node_modules/espree": { | ||
| 3125 | "version": "10.4.0", | ||
| 3126 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", | ||
| 3127 | "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", | ||
| 3128 | "dev": true, | ||
| 3129 | "license": "BSD-2-Clause", | ||
| 3130 | "dependencies": { | ||
| 3131 | "acorn": "^8.15.0", | ||
| 3132 | "acorn-jsx": "^5.3.2", | ||
| 3133 | "eslint-visitor-keys": "^4.2.1" | ||
| 3134 | }, | ||
| 3135 | "engines": { | ||
| 3136 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" | ||
| 3137 | }, | ||
| 3138 | "funding": { | ||
| 3139 | "url": "https://opencollective.com/eslint" | ||
| 3140 | } | ||
| 3141 | }, | ||
| 3142 | "node_modules/esquery": { | ||
| 3143 | "version": "1.6.0", | ||
| 3144 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", | ||
| 3145 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", | ||
| 3146 | "dev": true, | ||
| 3147 | "license": "BSD-3-Clause", | ||
| 3148 | "dependencies": { | ||
| 3149 | "estraverse": "^5.1.0" | ||
| 3150 | }, | ||
| 3151 | "engines": { | ||
| 3152 | "node": ">=0.10" | ||
| 3153 | } | ||
| 3154 | }, | ||
| 3155 | "node_modules/esrecurse": { | ||
| 3156 | "version": "4.3.0", | ||
| 3157 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", | ||
| 3158 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", | ||
| 3159 | "dev": true, | ||
| 3160 | "license": "BSD-2-Clause", | ||
| 3161 | "dependencies": { | ||
| 3162 | "estraverse": "^5.2.0" | ||
| 3163 | }, | ||
| 3164 | "engines": { | ||
| 3165 | "node": ">=4.0" | ||
| 3166 | } | ||
| 3167 | }, | ||
| 3168 | "node_modules/estraverse": { | ||
| 3169 | "version": "5.3.0", | ||
| 3170 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", | ||
| 3171 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", | ||
| 3172 | "dev": true, | ||
| 3173 | "license": "BSD-2-Clause", | ||
| 3174 | "engines": { | ||
| 3175 | "node": ">=4.0" | ||
| 3176 | } | ||
| 3177 | }, | ||
| 3178 | "node_modules/esutils": { | ||
| 3179 | "version": "2.0.3", | ||
| 3180 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", | ||
| 3181 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", | ||
| 3182 | "dev": true, | ||
| 3183 | "license": "BSD-2-Clause", | ||
| 3184 | "engines": { | ||
| 3185 | "node": ">=0.10.0" | ||
| 3186 | } | ||
| 3187 | }, | ||
| 3188 | "node_modules/fast-deep-equal": { | ||
| 3189 | "version": "3.1.3", | ||
| 3190 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", | ||
| 3191 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", | ||
| 3192 | "dev": true, | ||
| 3193 | "license": "MIT" | ||
| 3194 | }, | ||
| 3195 | "node_modules/fast-glob": { | ||
| 3196 | "version": "3.3.1", | ||
| 3197 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", | ||
| 3198 | "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", | ||
| 3199 | "dev": true, | ||
| 3200 | "license": "MIT", | ||
| 3201 | "dependencies": { | ||
| 3202 | "@nodelib/fs.stat": "^2.0.2", | ||
| 3203 | "@nodelib/fs.walk": "^1.2.3", | ||
| 3204 | "glob-parent": "^5.1.2", | ||
| 3205 | "merge2": "^1.3.0", | ||
| 3206 | "micromatch": "^4.0.4" | ||
| 3207 | }, | ||
| 3208 | "engines": { | ||
| 3209 | "node": ">=8.6.0" | ||
| 3210 | } | ||
| 3211 | }, | ||
| 3212 | "node_modules/fast-glob/node_modules/glob-parent": { | ||
| 3213 | "version": "5.1.2", | ||
| 3214 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", | ||
| 3215 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", | ||
| 3216 | "dev": true, | ||
| 3217 | "license": "ISC", | ||
| 3218 | "dependencies": { | ||
| 3219 | "is-glob": "^4.0.1" | ||
| 3220 | }, | ||
| 3221 | "engines": { | ||
| 3222 | "node": ">= 6" | ||
| 3223 | } | ||
| 3224 | }, | ||
| 3225 | "node_modules/fast-json-stable-stringify": { | ||
| 3226 | "version": "2.1.0", | ||
| 3227 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", | ||
| 3228 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", | ||
| 3229 | "dev": true, | ||
| 3230 | "license": "MIT" | ||
| 3231 | }, | ||
| 3232 | "node_modules/fast-levenshtein": { | ||
| 3233 | "version": "2.0.6", | ||
| 3234 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", | ||
| 3235 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", | ||
| 3236 | "dev": true, | ||
| 3237 | "license": "MIT" | ||
| 3238 | }, | ||
| 3239 | "node_modules/fastq": { | ||
| 3240 | "version": "1.19.1", | ||
| 3241 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", | ||
| 3242 | "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", | ||
| 3243 | "dev": true, | ||
| 3244 | "license": "ISC", | ||
| 3245 | "dependencies": { | ||
| 3246 | "reusify": "^1.0.4" | ||
| 3247 | } | ||
| 3248 | }, | ||
| 3249 | "node_modules/file-entry-cache": { | ||
| 3250 | "version": "8.0.0", | ||
| 3251 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", | ||
| 3252 | "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", | ||
| 3253 | "dev": true, | ||
| 3254 | "license": "MIT", | ||
| 3255 | "dependencies": { | ||
| 3256 | "flat-cache": "^4.0.0" | ||
| 3257 | }, | ||
| 3258 | "engines": { | ||
| 3259 | "node": ">=16.0.0" | ||
| 3260 | } | ||
| 3261 | }, | ||
| 3262 | "node_modules/fill-range": { | ||
| 3263 | "version": "7.1.1", | ||
| 3264 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", | ||
| 3265 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", | ||
| 3266 | "dev": true, | ||
| 3267 | "license": "MIT", | ||
| 3268 | "dependencies": { | ||
| 3269 | "to-regex-range": "^5.0.1" | ||
| 3270 | }, | ||
| 3271 | "engines": { | ||
| 3272 | "node": ">=8" | ||
| 3273 | } | ||
| 3274 | }, | ||
| 3275 | "node_modules/find-up": { | ||
| 3276 | "version": "5.0.0", | ||
| 3277 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", | ||
| 3278 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", | ||
| 3279 | "dev": true, | ||
| 3280 | "license": "MIT", | ||
| 3281 | "dependencies": { | ||
| 3282 | "locate-path": "^6.0.0", | ||
| 3283 | "path-exists": "^4.0.0" | ||
| 3284 | }, | ||
| 3285 | "engines": { | ||
| 3286 | "node": ">=10" | ||
| 3287 | }, | ||
| 3288 | "funding": { | ||
| 3289 | "url": "https://github.com/sponsors/sindresorhus" | ||
| 3290 | } | ||
| 3291 | }, | ||
| 3292 | "node_modules/flat-cache": { | ||
| 3293 | "version": "4.0.1", | ||
| 3294 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", | ||
| 3295 | "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", | ||
| 3296 | "dev": true, | ||
| 3297 | "license": "MIT", | ||
| 3298 | "dependencies": { | ||
| 3299 | "flatted": "^3.2.9", | ||
| 3300 | "keyv": "^4.5.4" | ||
| 3301 | }, | ||
| 3302 | "engines": { | ||
| 3303 | "node": ">=16" | ||
| 3304 | } | ||
| 3305 | }, | ||
| 3306 | "node_modules/flatted": { | ||
| 3307 | "version": "3.3.3", | ||
| 3308 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", | ||
| 3309 | "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", | ||
| 3310 | "dev": true, | ||
| 3311 | "license": "ISC" | ||
| 3312 | }, | ||
| 3313 | "node_modules/for-each": { | ||
| 3314 | "version": "0.3.5", | ||
| 3315 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", | ||
| 3316 | "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", | ||
| 3317 | "dev": true, | ||
| 3318 | "license": "MIT", | ||
| 3319 | "dependencies": { | ||
| 3320 | "is-callable": "^1.2.7" | ||
| 3321 | }, | ||
| 3322 | "engines": { | ||
| 3323 | "node": ">= 0.4" | ||
| 3324 | }, | ||
| 3325 | "funding": { | ||
| 3326 | "url": "https://github.com/sponsors/ljharb" | ||
| 3327 | } | ||
| 3328 | }, | ||
| 3329 | "node_modules/function-bind": { | ||
| 3330 | "version": "1.1.2", | ||
| 3331 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", | ||
| 3332 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", | ||
| 3333 | "dev": true, | ||
| 3334 | "license": "MIT", | ||
| 3335 | "funding": { | ||
| 3336 | "url": "https://github.com/sponsors/ljharb" | ||
| 3337 | } | ||
| 3338 | }, | ||
| 3339 | "node_modules/function.prototype.name": { | ||
| 3340 | "version": "1.1.8", | ||
| 3341 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", | ||
| 3342 | "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", | ||
| 3343 | "dev": true, | ||
| 3344 | "license": "MIT", | ||
| 3345 | "dependencies": { | ||
| 3346 | "call-bind": "^1.0.8", | ||
| 3347 | "call-bound": "^1.0.3", | ||
| 3348 | "define-properties": "^1.2.1", | ||
| 3349 | "functions-have-names": "^1.2.3", | ||
| 3350 | "hasown": "^2.0.2", | ||
| 3351 | "is-callable": "^1.2.7" | ||
| 3352 | }, | ||
| 3353 | "engines": { | ||
| 3354 | "node": ">= 0.4" | ||
| 3355 | }, | ||
| 3356 | "funding": { | ||
| 3357 | "url": "https://github.com/sponsors/ljharb" | ||
| 3358 | } | ||
| 3359 | }, | ||
| 3360 | "node_modules/functions-have-names": { | ||
| 3361 | "version": "1.2.3", | ||
| 3362 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", | ||
| 3363 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", | ||
| 3364 | "dev": true, | ||
| 3365 | "license": "MIT", | ||
| 3366 | "funding": { | ||
| 3367 | "url": "https://github.com/sponsors/ljharb" | ||
| 3368 | } | ||
| 3369 | }, | ||
| 3370 | "node_modules/get-intrinsic": { | ||
| 3371 | "version": "1.3.0", | ||
| 3372 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", | ||
| 3373 | "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", | ||
| 3374 | "dev": true, | ||
| 3375 | "license": "MIT", | ||
| 3376 | "dependencies": { | ||
| 3377 | "call-bind-apply-helpers": "^1.0.2", | ||
| 3378 | "es-define-property": "^1.0.1", | ||
| 3379 | "es-errors": "^1.3.0", | ||
| 3380 | "es-object-atoms": "^1.1.1", | ||
| 3381 | "function-bind": "^1.1.2", | ||
| 3382 | "get-proto": "^1.0.1", | ||
| 3383 | "gopd": "^1.2.0", | ||
| 3384 | "has-symbols": "^1.1.0", | ||
| 3385 | "hasown": "^2.0.2", | ||
| 3386 | "math-intrinsics": "^1.1.0" | ||
| 3387 | }, | ||
| 3388 | "engines": { | ||
| 3389 | "node": ">= 0.4" | ||
| 3390 | }, | ||
| 3391 | "funding": { | ||
| 3392 | "url": "https://github.com/sponsors/ljharb" | ||
| 3393 | } | ||
| 3394 | }, | ||
| 3395 | "node_modules/get-proto": { | ||
| 3396 | "version": "1.0.1", | ||
| 3397 | "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", | ||
| 3398 | "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", | ||
| 3399 | "dev": true, | ||
| 3400 | "license": "MIT", | ||
| 3401 | "dependencies": { | ||
| 3402 | "dunder-proto": "^1.0.1", | ||
| 3403 | "es-object-atoms": "^1.0.0" | ||
| 3404 | }, | ||
| 3405 | "engines": { | ||
| 3406 | "node": ">= 0.4" | ||
| 3407 | } | ||
| 3408 | }, | ||
| 3409 | "node_modules/get-symbol-description": { | ||
| 3410 | "version": "1.1.0", | ||
| 3411 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", | ||
| 3412 | "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", | ||
| 3413 | "dev": true, | ||
| 3414 | "license": "MIT", | ||
| 3415 | "dependencies": { | ||
| 3416 | "call-bound": "^1.0.3", | ||
| 3417 | "es-errors": "^1.3.0", | ||
| 3418 | "get-intrinsic": "^1.2.6" | ||
| 3419 | }, | ||
| 3420 | "engines": { | ||
| 3421 | "node": ">= 0.4" | ||
| 3422 | }, | ||
| 3423 | "funding": { | ||
| 3424 | "url": "https://github.com/sponsors/ljharb" | ||
| 3425 | } | ||
| 3426 | }, | ||
| 3427 | "node_modules/get-tsconfig": { | ||
| 3428 | "version": "4.10.1", | ||
| 3429 | "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.1.tgz", | ||
| 3430 | "integrity": "sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==", | ||
| 3431 | "dev": true, | ||
| 3432 | "license": "MIT", | ||
| 3433 | "dependencies": { | ||
| 3434 | "resolve-pkg-maps": "^1.0.0" | ||
| 3435 | }, | ||
| 3436 | "funding": { | ||
| 3437 | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" | ||
| 3438 | } | ||
| 3439 | }, | ||
| 3440 | "node_modules/glob-parent": { | ||
| 3441 | "version": "6.0.2", | ||
| 3442 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", | ||
| 3443 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", | ||
| 3444 | "dev": true, | ||
| 3445 | "license": "ISC", | ||
| 3446 | "dependencies": { | ||
| 3447 | "is-glob": "^4.0.3" | ||
| 3448 | }, | ||
| 3449 | "engines": { | ||
| 3450 | "node": ">=10.13.0" | ||
| 3451 | } | ||
| 3452 | }, | ||
| 3453 | "node_modules/globals": { | ||
| 3454 | "version": "14.0.0", | ||
| 3455 | "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", | ||
| 3456 | "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", | ||
| 3457 | "dev": true, | ||
| 3458 | "license": "MIT", | ||
| 3459 | "engines": { | ||
| 3460 | "node": ">=18" | ||
| 3461 | }, | ||
| 3462 | "funding": { | ||
| 3463 | "url": "https://github.com/sponsors/sindresorhus" | ||
| 3464 | } | ||
| 3465 | }, | ||
| 3466 | "node_modules/globalthis": { | ||
| 3467 | "version": "1.0.4", | ||
| 3468 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", | ||
| 3469 | "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", | ||
| 3470 | "dev": true, | ||
| 3471 | "license": "MIT", | ||
| 3472 | "dependencies": { | ||
| 3473 | "define-properties": "^1.2.1", | ||
| 3474 | "gopd": "^1.0.1" | ||
| 3475 | }, | ||
| 3476 | "engines": { | ||
| 3477 | "node": ">= 0.4" | ||
| 3478 | }, | ||
| 3479 | "funding": { | ||
| 3480 | "url": "https://github.com/sponsors/ljharb" | ||
| 3481 | } | ||
| 3482 | }, | ||
| 3483 | "node_modules/gopd": { | ||
| 3484 | "version": "1.2.0", | ||
| 3485 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", | ||
| 3486 | "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", | ||
| 3487 | "dev": true, | ||
| 3488 | "license": "MIT", | ||
| 3489 | "engines": { | ||
| 3490 | "node": ">= 0.4" | ||
| 3491 | }, | ||
| 3492 | "funding": { | ||
| 3493 | "url": "https://github.com/sponsors/ljharb" | ||
| 3494 | } | ||
| 3495 | }, | ||
| 3496 | "node_modules/graceful-fs": { | ||
| 3497 | "version": "4.2.11", | ||
| 3498 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", | ||
| 3499 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", | ||
| 3500 | "dev": true, | ||
| 3501 | "license": "ISC" | ||
| 3502 | }, | ||
| 3503 | "node_modules/graphemer": { | ||
| 3504 | "version": "1.4.0", | ||
| 3505 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", | ||
| 3506 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", | ||
| 3507 | "dev": true, | ||
| 3508 | "license": "MIT" | ||
| 3509 | }, | ||
| 3510 | "node_modules/has-bigints": { | ||
| 3511 | "version": "1.1.0", | ||
| 3512 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", | ||
| 3513 | "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", | ||
| 3514 | "dev": true, | ||
| 3515 | "license": "MIT", | ||
| 3516 | "engines": { | ||
| 3517 | "node": ">= 0.4" | ||
| 3518 | }, | ||
| 3519 | "funding": { | ||
| 3520 | "url": "https://github.com/sponsors/ljharb" | ||
| 3521 | } | ||
| 3522 | }, | ||
| 3523 | "node_modules/has-flag": { | ||
| 3524 | "version": "4.0.0", | ||
| 3525 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", | ||
| 3526 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", | ||
| 3527 | "dev": true, | ||
| 3528 | "license": "MIT", | ||
| 3529 | "engines": { | ||
| 3530 | "node": ">=8" | ||
| 3531 | } | ||
| 3532 | }, | ||
| 3533 | "node_modules/has-property-descriptors": { | ||
| 3534 | "version": "1.0.2", | ||
| 3535 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", | ||
| 3536 | "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", | ||
| 3537 | "dev": true, | ||
| 3538 | "license": "MIT", | ||
| 3539 | "dependencies": { | ||
| 3540 | "es-define-property": "^1.0.0" | ||
| 3541 | }, | ||
| 3542 | "funding": { | ||
| 3543 | "url": "https://github.com/sponsors/ljharb" | ||
| 3544 | } | ||
| 3545 | }, | ||
| 3546 | "node_modules/has-proto": { | ||
| 3547 | "version": "1.2.0", | ||
| 3548 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", | ||
| 3549 | "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", | ||
| 3550 | "dev": true, | ||
| 3551 | "license": "MIT", | ||
| 3552 | "dependencies": { | ||
| 3553 | "dunder-proto": "^1.0.0" | ||
| 3554 | }, | ||
| 3555 | "engines": { | ||
| 3556 | "node": ">= 0.4" | ||
| 3557 | }, | ||
| 3558 | "funding": { | ||
| 3559 | "url": "https://github.com/sponsors/ljharb" | ||
| 3560 | } | ||
| 3561 | }, | ||
| 3562 | "node_modules/has-symbols": { | ||
| 3563 | "version": "1.1.0", | ||
| 3564 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", | ||
| 3565 | "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", | ||
| 3566 | "dev": true, | ||
| 3567 | "license": "MIT", | ||
| 3568 | "engines": { | ||
| 3569 | "node": ">= 0.4" | ||
| 3570 | }, | ||
| 3571 | "funding": { | ||
| 3572 | "url": "https://github.com/sponsors/ljharb" | ||
| 3573 | } | ||
| 3574 | }, | ||
| 3575 | "node_modules/has-tostringtag": { | ||
| 3576 | "version": "1.0.2", | ||
| 3577 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", | ||
| 3578 | "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", | ||
| 3579 | "dev": true, | ||
| 3580 | "license": "MIT", | ||
| 3581 | "dependencies": { | ||
| 3582 | "has-symbols": "^1.0.3" | ||
| 3583 | }, | ||
| 3584 | "engines": { | ||
| 3585 | "node": ">= 0.4" | ||
| 3586 | }, | ||
| 3587 | "funding": { | ||
| 3588 | "url": "https://github.com/sponsors/ljharb" | ||
| 3589 | } | ||
| 3590 | }, | ||
| 3591 | "node_modules/hasown": { | ||
| 3592 | "version": "2.0.2", | ||
| 3593 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", | ||
| 3594 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", | ||
| 3595 | "dev": true, | ||
| 3596 | "license": "MIT", | ||
| 3597 | "dependencies": { | ||
| 3598 | "function-bind": "^1.1.2" | ||
| 3599 | }, | ||
| 3600 | "engines": { | ||
| 3601 | "node": ">= 0.4" | ||
| 3602 | } | ||
| 3603 | }, | ||
| 3604 | "node_modules/ignore": { | ||
| 3605 | "version": "5.3.2", | ||
| 3606 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", | ||
| 3607 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", | ||
| 3608 | "dev": true, | ||
| 3609 | "license": "MIT", | ||
| 3610 | "engines": { | ||
| 3611 | "node": ">= 4" | ||
| 3612 | } | ||
| 3613 | }, | ||
| 3614 | "node_modules/import-fresh": { | ||
| 3615 | "version": "3.3.1", | ||
| 3616 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", | ||
| 3617 | "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", | ||
| 3618 | "dev": true, | ||
| 3619 | "license": "MIT", | ||
| 3620 | "dependencies": { | ||
| 3621 | "parent-module": "^1.0.0", | ||
| 3622 | "resolve-from": "^4.0.0" | ||
| 3623 | }, | ||
| 3624 | "engines": { | ||
| 3625 | "node": ">=6" | ||
| 3626 | }, | ||
| 3627 | "funding": { | ||
| 3628 | "url": "https://github.com/sponsors/sindresorhus" | ||
| 3629 | } | ||
| 3630 | }, | ||
| 3631 | "node_modules/imurmurhash": { | ||
| 3632 | "version": "0.1.4", | ||
| 3633 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", | ||
| 3634 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", | ||
| 3635 | "dev": true, | ||
| 3636 | "license": "MIT", | ||
| 3637 | "engines": { | ||
| 3638 | "node": ">=0.8.19" | ||
| 3639 | } | ||
| 3640 | }, | ||
| 3641 | "node_modules/internal-slot": { | ||
| 3642 | "version": "1.1.0", | ||
| 3643 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", | ||
| 3644 | "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", | ||
| 3645 | "dev": true, | ||
| 3646 | "license": "MIT", | ||
| 3647 | "dependencies": { | ||
| 3648 | "es-errors": "^1.3.0", | ||
| 3649 | "hasown": "^2.0.2", | ||
| 3650 | "side-channel": "^1.1.0" | ||
| 3651 | }, | ||
| 3652 | "engines": { | ||
| 3653 | "node": ">= 0.4" | ||
| 3654 | } | ||
| 3655 | }, | ||
| 3656 | "node_modules/is-array-buffer": { | ||
| 3657 | "version": "3.0.5", | ||
| 3658 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", | ||
| 3659 | "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", | ||
| 3660 | "dev": true, | ||
| 3661 | "license": "MIT", | ||
| 3662 | "dependencies": { | ||
| 3663 | "call-bind": "^1.0.8", | ||
| 3664 | "call-bound": "^1.0.3", | ||
| 3665 | "get-intrinsic": "^1.2.6" | ||
| 3666 | }, | ||
| 3667 | "engines": { | ||
| 3668 | "node": ">= 0.4" | ||
| 3669 | }, | ||
| 3670 | "funding": { | ||
| 3671 | "url": "https://github.com/sponsors/ljharb" | ||
| 3672 | } | ||
| 3673 | }, | ||
| 3674 | "node_modules/is-arrayish": { | ||
| 3675 | "version": "0.3.2", | ||
| 3676 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", | ||
| 3677 | "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", | ||
| 3678 | "license": "MIT", | ||
| 3679 | "optional": true | ||
| 3680 | }, | ||
| 3681 | "node_modules/is-async-function": { | ||
| 3682 | "version": "2.1.1", | ||
| 3683 | "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", | ||
| 3684 | "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", | ||
| 3685 | "dev": true, | ||
| 3686 | "license": "MIT", | ||
| 3687 | "dependencies": { | ||
| 3688 | "async-function": "^1.0.0", | ||
| 3689 | "call-bound": "^1.0.3", | ||
| 3690 | "get-proto": "^1.0.1", | ||
| 3691 | "has-tostringtag": "^1.0.2", | ||
| 3692 | "safe-regex-test": "^1.1.0" | ||
| 3693 | }, | ||
| 3694 | "engines": { | ||
| 3695 | "node": ">= 0.4" | ||
| 3696 | }, | ||
| 3697 | "funding": { | ||
| 3698 | "url": "https://github.com/sponsors/ljharb" | ||
| 3699 | } | ||
| 3700 | }, | ||
| 3701 | "node_modules/is-bigint": { | ||
| 3702 | "version": "1.1.0", | ||
| 3703 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", | ||
| 3704 | "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", | ||
| 3705 | "dev": true, | ||
| 3706 | "license": "MIT", | ||
| 3707 | "dependencies": { | ||
| 3708 | "has-bigints": "^1.0.2" | ||
| 3709 | }, | ||
| 3710 | "engines": { | ||
| 3711 | "node": ">= 0.4" | ||
| 3712 | }, | ||
| 3713 | "funding": { | ||
| 3714 | "url": "https://github.com/sponsors/ljharb" | ||
| 3715 | } | ||
| 3716 | }, | ||
| 3717 | "node_modules/is-boolean-object": { | ||
| 3718 | "version": "1.2.2", | ||
| 3719 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", | ||
| 3720 | "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", | ||
| 3721 | "dev": true, | ||
| 3722 | "license": "MIT", | ||
| 3723 | "dependencies": { | ||
| 3724 | "call-bound": "^1.0.3", | ||
| 3725 | "has-tostringtag": "^1.0.2" | ||
| 3726 | }, | ||
| 3727 | "engines": { | ||
| 3728 | "node": ">= 0.4" | ||
| 3729 | }, | ||
| 3730 | "funding": { | ||
| 3731 | "url": "https://github.com/sponsors/ljharb" | ||
| 3732 | } | ||
| 3733 | }, | ||
| 3734 | "node_modules/is-bun-module": { | ||
| 3735 | "version": "2.0.0", | ||
| 3736 | "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz", | ||
| 3737 | "integrity": "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==", | ||
| 3738 | "dev": true, | ||
| 3739 | "license": "MIT", | ||
| 3740 | "dependencies": { | ||
| 3741 | "semver": "^7.7.1" | ||
| 3742 | } | ||
| 3743 | }, | ||
| 3744 | "node_modules/is-callable": { | ||
| 3745 | "version": "1.2.7", | ||
| 3746 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", | ||
| 3747 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", | ||
| 3748 | "dev": true, | ||
| 3749 | "license": "MIT", | ||
| 3750 | "engines": { | ||
| 3751 | "node": ">= 0.4" | ||
| 3752 | }, | ||
| 3753 | "funding": { | ||
| 3754 | "url": "https://github.com/sponsors/ljharb" | ||
| 3755 | } | ||
| 3756 | }, | ||
| 3757 | "node_modules/is-core-module": { | ||
| 3758 | "version": "2.16.1", | ||
| 3759 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", | ||
| 3760 | "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", | ||
| 3761 | "dev": true, | ||
| 3762 | "license": "MIT", | ||
| 3763 | "dependencies": { | ||
| 3764 | "hasown": "^2.0.2" | ||
| 3765 | }, | ||
| 3766 | "engines": { | ||
| 3767 | "node": ">= 0.4" | ||
| 3768 | }, | ||
| 3769 | "funding": { | ||
| 3770 | "url": "https://github.com/sponsors/ljharb" | ||
| 3771 | } | ||
| 3772 | }, | ||
| 3773 | "node_modules/is-data-view": { | ||
| 3774 | "version": "1.0.2", | ||
| 3775 | "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", | ||
| 3776 | "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", | ||
| 3777 | "dev": true, | ||
| 3778 | "license": "MIT", | ||
| 3779 | "dependencies": { | ||
| 3780 | "call-bound": "^1.0.2", | ||
| 3781 | "get-intrinsic": "^1.2.6", | ||
| 3782 | "is-typed-array": "^1.1.13" | ||
| 3783 | }, | ||
| 3784 | "engines": { | ||
| 3785 | "node": ">= 0.4" | ||
| 3786 | }, | ||
| 3787 | "funding": { | ||
| 3788 | "url": "https://github.com/sponsors/ljharb" | ||
| 3789 | } | ||
| 3790 | }, | ||
| 3791 | "node_modules/is-date-object": { | ||
| 3792 | "version": "1.1.0", | ||
| 3793 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", | ||
| 3794 | "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", | ||
| 3795 | "dev": true, | ||
| 3796 | "license": "MIT", | ||
| 3797 | "dependencies": { | ||
| 3798 | "call-bound": "^1.0.2", | ||
| 3799 | "has-tostringtag": "^1.0.2" | ||
| 3800 | }, | ||
| 3801 | "engines": { | ||
| 3802 | "node": ">= 0.4" | ||
| 3803 | }, | ||
| 3804 | "funding": { | ||
| 3805 | "url": "https://github.com/sponsors/ljharb" | ||
| 3806 | } | ||
| 3807 | }, | ||
| 3808 | "node_modules/is-extglob": { | ||
| 3809 | "version": "2.1.1", | ||
| 3810 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", | ||
| 3811 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", | ||
| 3812 | "dev": true, | ||
| 3813 | "license": "MIT", | ||
| 3814 | "engines": { | ||
| 3815 | "node": ">=0.10.0" | ||
| 3816 | } | ||
| 3817 | }, | ||
| 3818 | "node_modules/is-finalizationregistry": { | ||
| 3819 | "version": "1.1.1", | ||
| 3820 | "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", | ||
| 3821 | "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", | ||
| 3822 | "dev": true, | ||
| 3823 | "license": "MIT", | ||
| 3824 | "dependencies": { | ||
| 3825 | "call-bound": "^1.0.3" | ||
| 3826 | }, | ||
| 3827 | "engines": { | ||
| 3828 | "node": ">= 0.4" | ||
| 3829 | }, | ||
| 3830 | "funding": { | ||
| 3831 | "url": "https://github.com/sponsors/ljharb" | ||
| 3832 | } | ||
| 3833 | }, | ||
| 3834 | "node_modules/is-generator-function": { | ||
| 3835 | "version": "1.1.0", | ||
| 3836 | "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz", | ||
| 3837 | "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==", | ||
| 3838 | "dev": true, | ||
| 3839 | "license": "MIT", | ||
| 3840 | "dependencies": { | ||
| 3841 | "call-bound": "^1.0.3", | ||
| 3842 | "get-proto": "^1.0.0", | ||
| 3843 | "has-tostringtag": "^1.0.2", | ||
| 3844 | "safe-regex-test": "^1.1.0" | ||
| 3845 | }, | ||
| 3846 | "engines": { | ||
| 3847 | "node": ">= 0.4" | ||
| 3848 | }, | ||
| 3849 | "funding": { | ||
| 3850 | "url": "https://github.com/sponsors/ljharb" | ||
| 3851 | } | ||
| 3852 | }, | ||
| 3853 | "node_modules/is-glob": { | ||
| 3854 | "version": "4.0.3", | ||
| 3855 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", | ||
| 3856 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", | ||
| 3857 | "dev": true, | ||
| 3858 | "license": "MIT", | ||
| 3859 | "dependencies": { | ||
| 3860 | "is-extglob": "^2.1.1" | ||
| 3861 | }, | ||
| 3862 | "engines": { | ||
| 3863 | "node": ">=0.10.0" | ||
| 3864 | } | ||
| 3865 | }, | ||
| 3866 | "node_modules/is-map": { | ||
| 3867 | "version": "2.0.3", | ||
| 3868 | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", | ||
| 3869 | "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", | ||
| 3870 | "dev": true, | ||
| 3871 | "license": "MIT", | ||
| 3872 | "engines": { | ||
| 3873 | "node": ">= 0.4" | ||
| 3874 | }, | ||
| 3875 | "funding": { | ||
| 3876 | "url": "https://github.com/sponsors/ljharb" | ||
| 3877 | } | ||
| 3878 | }, | ||
| 3879 | "node_modules/is-negative-zero": { | ||
| 3880 | "version": "2.0.3", | ||
| 3881 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", | ||
| 3882 | "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", | ||
| 3883 | "dev": true, | ||
| 3884 | "license": "MIT", | ||
| 3885 | "engines": { | ||
| 3886 | "node": ">= 0.4" | ||
| 3887 | }, | ||
| 3888 | "funding": { | ||
| 3889 | "url": "https://github.com/sponsors/ljharb" | ||
| 3890 | } | ||
| 3891 | }, | ||
| 3892 | "node_modules/is-number": { | ||
| 3893 | "version": "7.0.0", | ||
| 3894 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", | ||
| 3895 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", | ||
| 3896 | "dev": true, | ||
| 3897 | "license": "MIT", | ||
| 3898 | "engines": { | ||
| 3899 | "node": ">=0.12.0" | ||
| 3900 | } | ||
| 3901 | }, | ||
| 3902 | "node_modules/is-number-object": { | ||
| 3903 | "version": "1.1.1", | ||
| 3904 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", | ||
| 3905 | "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", | ||
| 3906 | "dev": true, | ||
| 3907 | "license": "MIT", | ||
| 3908 | "dependencies": { | ||
| 3909 | "call-bound": "^1.0.3", | ||
| 3910 | "has-tostringtag": "^1.0.2" | ||
| 3911 | }, | ||
| 3912 | "engines": { | ||
| 3913 | "node": ">= 0.4" | ||
| 3914 | }, | ||
| 3915 | "funding": { | ||
| 3916 | "url": "https://github.com/sponsors/ljharb" | ||
| 3917 | } | ||
| 3918 | }, | ||
| 3919 | "node_modules/is-regex": { | ||
| 3920 | "version": "1.2.1", | ||
| 3921 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", | ||
| 3922 | "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", | ||
| 3923 | "dev": true, | ||
| 3924 | "license": "MIT", | ||
| 3925 | "dependencies": { | ||
| 3926 | "call-bound": "^1.0.2", | ||
| 3927 | "gopd": "^1.2.0", | ||
| 3928 | "has-tostringtag": "^1.0.2", | ||
| 3929 | "hasown": "^2.0.2" | ||
| 3930 | }, | ||
| 3931 | "engines": { | ||
| 3932 | "node": ">= 0.4" | ||
| 3933 | }, | ||
| 3934 | "funding": { | ||
| 3935 | "url": "https://github.com/sponsors/ljharb" | ||
| 3936 | } | ||
| 3937 | }, | ||
| 3938 | "node_modules/is-set": { | ||
| 3939 | "version": "2.0.3", | ||
| 3940 | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", | ||
| 3941 | "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", | ||
| 3942 | "dev": true, | ||
| 3943 | "license": "MIT", | ||
| 3944 | "engines": { | ||
| 3945 | "node": ">= 0.4" | ||
| 3946 | }, | ||
| 3947 | "funding": { | ||
| 3948 | "url": "https://github.com/sponsors/ljharb" | ||
| 3949 | } | ||
| 3950 | }, | ||
| 3951 | "node_modules/is-shared-array-buffer": { | ||
| 3952 | "version": "1.0.4", | ||
| 3953 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", | ||
| 3954 | "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", | ||
| 3955 | "dev": true, | ||
| 3956 | "license": "MIT", | ||
| 3957 | "dependencies": { | ||
| 3958 | "call-bound": "^1.0.3" | ||
| 3959 | }, | ||
| 3960 | "engines": { | ||
| 3961 | "node": ">= 0.4" | ||
| 3962 | }, | ||
| 3963 | "funding": { | ||
| 3964 | "url": "https://github.com/sponsors/ljharb" | ||
| 3965 | } | ||
| 3966 | }, | ||
| 3967 | "node_modules/is-string": { | ||
| 3968 | "version": "1.1.1", | ||
| 3969 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", | ||
| 3970 | "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", | ||
| 3971 | "dev": true, | ||
| 3972 | "license": "MIT", | ||
| 3973 | "dependencies": { | ||
| 3974 | "call-bound": "^1.0.3", | ||
| 3975 | "has-tostringtag": "^1.0.2" | ||
| 3976 | }, | ||
| 3977 | "engines": { | ||
| 3978 | "node": ">= 0.4" | ||
| 3979 | }, | ||
| 3980 | "funding": { | ||
| 3981 | "url": "https://github.com/sponsors/ljharb" | ||
| 3982 | } | ||
| 3983 | }, | ||
| 3984 | "node_modules/is-symbol": { | ||
| 3985 | "version": "1.1.1", | ||
| 3986 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", | ||
| 3987 | "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", | ||
| 3988 | "dev": true, | ||
| 3989 | "license": "MIT", | ||
| 3990 | "dependencies": { | ||
| 3991 | "call-bound": "^1.0.2", | ||
| 3992 | "has-symbols": "^1.1.0", | ||
| 3993 | "safe-regex-test": "^1.1.0" | ||
| 3994 | }, | ||
| 3995 | "engines": { | ||
| 3996 | "node": ">= 0.4" | ||
| 3997 | }, | ||
| 3998 | "funding": { | ||
| 3999 | "url": "https://github.com/sponsors/ljharb" | ||
| 4000 | } | ||
| 4001 | }, | ||
| 4002 | "node_modules/is-typed-array": { | ||
| 4003 | "version": "1.1.15", | ||
| 4004 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", | ||
| 4005 | "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", | ||
| 4006 | "dev": true, | ||
| 4007 | "license": "MIT", | ||
| 4008 | "dependencies": { | ||
| 4009 | "which-typed-array": "^1.1.16" | ||
| 4010 | }, | ||
| 4011 | "engines": { | ||
| 4012 | "node": ">= 0.4" | ||
| 4013 | }, | ||
| 4014 | "funding": { | ||
| 4015 | "url": "https://github.com/sponsors/ljharb" | ||
| 4016 | } | ||
| 4017 | }, | ||
| 4018 | "node_modules/is-weakmap": { | ||
| 4019 | "version": "2.0.2", | ||
| 4020 | "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", | ||
| 4021 | "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", | ||
| 4022 | "dev": true, | ||
| 4023 | "license": "MIT", | ||
| 4024 | "engines": { | ||
| 4025 | "node": ">= 0.4" | ||
| 4026 | }, | ||
| 4027 | "funding": { | ||
| 4028 | "url": "https://github.com/sponsors/ljharb" | ||
| 4029 | } | ||
| 4030 | }, | ||
| 4031 | "node_modules/is-weakref": { | ||
| 4032 | "version": "1.1.1", | ||
| 4033 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", | ||
| 4034 | "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", | ||
| 4035 | "dev": true, | ||
| 4036 | "license": "MIT", | ||
| 4037 | "dependencies": { | ||
| 4038 | "call-bound": "^1.0.3" | ||
| 4039 | }, | ||
| 4040 | "engines": { | ||
| 4041 | "node": ">= 0.4" | ||
| 4042 | }, | ||
| 4043 | "funding": { | ||
| 4044 | "url": "https://github.com/sponsors/ljharb" | ||
| 4045 | } | ||
| 4046 | }, | ||
| 4047 | "node_modules/is-weakset": { | ||
| 4048 | "version": "2.0.4", | ||
| 4049 | "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", | ||
| 4050 | "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", | ||
| 4051 | "dev": true, | ||
| 4052 | "license": "MIT", | ||
| 4053 | "dependencies": { | ||
| 4054 | "call-bound": "^1.0.3", | ||
| 4055 | "get-intrinsic": "^1.2.6" | ||
| 4056 | }, | ||
| 4057 | "engines": { | ||
| 4058 | "node": ">= 0.4" | ||
| 4059 | }, | ||
| 4060 | "funding": { | ||
| 4061 | "url": "https://github.com/sponsors/ljharb" | ||
| 4062 | } | ||
| 4063 | }, | ||
| 4064 | "node_modules/isarray": { | ||
| 4065 | "version": "2.0.5", | ||
| 4066 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", | ||
| 4067 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", | ||
| 4068 | "dev": true, | ||
| 4069 | "license": "MIT" | ||
| 4070 | }, | ||
| 4071 | "node_modules/isexe": { | ||
| 4072 | "version": "2.0.0", | ||
| 4073 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", | ||
| 4074 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", | ||
| 4075 | "dev": true, | ||
| 4076 | "license": "ISC" | ||
| 4077 | }, | ||
| 4078 | "node_modules/iterator.prototype": { | ||
| 4079 | "version": "1.1.5", | ||
| 4080 | "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", | ||
| 4081 | "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", | ||
| 4082 | "dev": true, | ||
| 4083 | "license": "MIT", | ||
| 4084 | "dependencies": { | ||
| 4085 | "define-data-property": "^1.1.4", | ||
| 4086 | "es-object-atoms": "^1.0.0", | ||
| 4087 | "get-intrinsic": "^1.2.6", | ||
| 4088 | "get-proto": "^1.0.0", | ||
| 4089 | "has-symbols": "^1.1.0", | ||
| 4090 | "set-function-name": "^2.0.2" | ||
| 4091 | }, | ||
| 4092 | "engines": { | ||
| 4093 | "node": ">= 0.4" | ||
| 4094 | } | ||
| 4095 | }, | ||
| 4096 | "node_modules/jiti": { | ||
| 4097 | "version": "2.5.1", | ||
| 4098 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.5.1.tgz", | ||
| 4099 | "integrity": "sha512-twQoecYPiVA5K/h6SxtORw/Bs3ar+mLUtoPSc7iMXzQzK8d7eJ/R09wmTwAjiamETn1cXYPGfNnu7DMoHgu12w==", | ||
| 4100 | "dev": true, | ||
| 4101 | "license": "MIT", | ||
| 4102 | "bin": { | ||
| 4103 | "jiti": "lib/jiti-cli.mjs" | ||
| 4104 | } | ||
| 4105 | }, | ||
| 4106 | "node_modules/js-tokens": { | ||
| 4107 | "version": "4.0.0", | ||
| 4108 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", | ||
| 4109 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", | ||
| 4110 | "dev": true, | ||
| 4111 | "license": "MIT" | ||
| 4112 | }, | ||
| 4113 | "node_modules/js-yaml": { | ||
| 4114 | "version": "4.1.0", | ||
| 4115 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", | ||
| 4116 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", | ||
| 4117 | "dev": true, | ||
| 4118 | "license": "MIT", | ||
| 4119 | "dependencies": { | ||
| 4120 | "argparse": "^2.0.1" | ||
| 4121 | }, | ||
| 4122 | "bin": { | ||
| 4123 | "js-yaml": "bin/js-yaml.js" | ||
| 4124 | } | ||
| 4125 | }, | ||
| 4126 | "node_modules/json-buffer": { | ||
| 4127 | "version": "3.0.1", | ||
| 4128 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", | ||
| 4129 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", | ||
| 4130 | "dev": true, | ||
| 4131 | "license": "MIT" | ||
| 4132 | }, | ||
| 4133 | "node_modules/json-schema-traverse": { | ||
| 4134 | "version": "0.4.1", | ||
| 4135 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", | ||
| 4136 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", | ||
| 4137 | "dev": true, | ||
| 4138 | "license": "MIT" | ||
| 4139 | }, | ||
| 4140 | "node_modules/json-stable-stringify-without-jsonify": { | ||
| 4141 | "version": "1.0.1", | ||
| 4142 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", | ||
| 4143 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", | ||
| 4144 | "dev": true, | ||
| 4145 | "license": "MIT" | ||
| 4146 | }, | ||
| 4147 | "node_modules/json5": { | ||
| 4148 | "version": "1.0.2", | ||
| 4149 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", | ||
| 4150 | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", | ||
| 4151 | "dev": true, | ||
| 4152 | "license": "MIT", | ||
| 4153 | "dependencies": { | ||
| 4154 | "minimist": "^1.2.0" | ||
| 4155 | }, | ||
| 4156 | "bin": { | ||
| 4157 | "json5": "lib/cli.js" | ||
| 4158 | } | ||
| 4159 | }, | ||
| 4160 | "node_modules/jsx-ast-utils": { | ||
| 4161 | "version": "3.3.5", | ||
| 4162 | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", | ||
| 4163 | "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", | ||
| 4164 | "dev": true, | ||
| 4165 | "license": "MIT", | ||
| 4166 | "dependencies": { | ||
| 4167 | "array-includes": "^3.1.6", | ||
| 4168 | "array.prototype.flat": "^1.3.1", | ||
| 4169 | "object.assign": "^4.1.4", | ||
| 4170 | "object.values": "^1.1.6" | ||
| 4171 | }, | ||
| 4172 | "engines": { | ||
| 4173 | "node": ">=4.0" | ||
| 4174 | } | ||
| 4175 | }, | ||
| 4176 | "node_modules/keyv": { | ||
| 4177 | "version": "4.5.4", | ||
| 4178 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", | ||
| 4179 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", | ||
| 4180 | "dev": true, | ||
| 4181 | "license": "MIT", | ||
| 4182 | "dependencies": { | ||
| 4183 | "json-buffer": "3.0.1" | ||
| 4184 | } | ||
| 4185 | }, | ||
| 4186 | "node_modules/language-subtag-registry": { | ||
| 4187 | "version": "0.3.23", | ||
| 4188 | "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", | ||
| 4189 | "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==", | ||
| 4190 | "dev": true, | ||
| 4191 | "license": "CC0-1.0" | ||
| 4192 | }, | ||
| 4193 | "node_modules/language-tags": { | ||
| 4194 | "version": "1.0.9", | ||
| 4195 | "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", | ||
| 4196 | "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", | ||
| 4197 | "dev": true, | ||
| 4198 | "license": "MIT", | ||
| 4199 | "dependencies": { | ||
| 4200 | "language-subtag-registry": "^0.3.20" | ||
| 4201 | }, | ||
| 4202 | "engines": { | ||
| 4203 | "node": ">=0.10" | ||
| 4204 | } | ||
| 4205 | }, | ||
| 4206 | "node_modules/levn": { | ||
| 4207 | "version": "0.4.1", | ||
| 4208 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", | ||
| 4209 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", | ||
| 4210 | "dev": true, | ||
| 4211 | "license": "MIT", | ||
| 4212 | "dependencies": { | ||
| 4213 | "prelude-ls": "^1.2.1", | ||
| 4214 | "type-check": "~0.4.0" | ||
| 4215 | }, | ||
| 4216 | "engines": { | ||
| 4217 | "node": ">= 0.8.0" | ||
| 4218 | } | ||
| 4219 | }, | ||
| 4220 | "node_modules/lightningcss": { | ||
| 4221 | "version": "1.30.1", | ||
| 4222 | "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.1.tgz", | ||
| 4223 | "integrity": "sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==", | ||
| 4224 | "dev": true, | ||
| 4225 | "license": "MPL-2.0", | ||
| 4226 | "dependencies": { | ||
| 4227 | "detect-libc": "^2.0.3" | ||
| 4228 | }, | ||
| 4229 | "engines": { | ||
| 4230 | "node": ">= 12.0.0" | ||
| 4231 | }, | ||
| 4232 | "funding": { | ||
| 4233 | "type": "opencollective", | ||
| 4234 | "url": "https://opencollective.com/parcel" | ||
| 4235 | }, | ||
| 4236 | "optionalDependencies": { | ||
| 4237 | "lightningcss-darwin-arm64": "1.30.1", | ||
| 4238 | "lightningcss-darwin-x64": "1.30.1", | ||
| 4239 | "lightningcss-freebsd-x64": "1.30.1", | ||
| 4240 | "lightningcss-linux-arm-gnueabihf": "1.30.1", | ||
| 4241 | "lightningcss-linux-arm64-gnu": "1.30.1", | ||
| 4242 | "lightningcss-linux-arm64-musl": "1.30.1", | ||
| 4243 | "lightningcss-linux-x64-gnu": "1.30.1", | ||
| 4244 | "lightningcss-linux-x64-musl": "1.30.1", | ||
| 4245 | "lightningcss-win32-arm64-msvc": "1.30.1", | ||
| 4246 | "lightningcss-win32-x64-msvc": "1.30.1" | ||
| 4247 | } | ||
| 4248 | }, | ||
| 4249 | "node_modules/lightningcss-darwin-arm64": { | ||
| 4250 | "version": "1.30.1", | ||
| 4251 | "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.1.tgz", | ||
| 4252 | "integrity": "sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==", | ||
| 4253 | "cpu": [ | ||
| 4254 | "arm64" | ||
| 4255 | ], | ||
| 4256 | "dev": true, | ||
| 4257 | "license": "MPL-2.0", | ||
| 4258 | "optional": true, | ||
| 4259 | "os": [ | ||
| 4260 | "darwin" | ||
| 4261 | ], | ||
| 4262 | "engines": { | ||
| 4263 | "node": ">= 12.0.0" | ||
| 4264 | }, | ||
| 4265 | "funding": { | ||
| 4266 | "type": "opencollective", | ||
| 4267 | "url": "https://opencollective.com/parcel" | ||
| 4268 | } | ||
| 4269 | }, | ||
| 4270 | "node_modules/lightningcss-darwin-x64": { | ||
| 4271 | "version": "1.30.1", | ||
| 4272 | "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.1.tgz", | ||
| 4273 | "integrity": "sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==", | ||
| 4274 | "cpu": [ | ||
| 4275 | "x64" | ||
| 4276 | ], | ||
| 4277 | "dev": true, | ||
| 4278 | "license": "MPL-2.0", | ||
| 4279 | "optional": true, | ||
| 4280 | "os": [ | ||
| 4281 | "darwin" | ||
| 4282 | ], | ||
| 4283 | "engines": { | ||
| 4284 | "node": ">= 12.0.0" | ||
| 4285 | }, | ||
| 4286 | "funding": { | ||
| 4287 | "type": "opencollective", | ||
| 4288 | "url": "https://opencollective.com/parcel" | ||
| 4289 | } | ||
| 4290 | }, | ||
| 4291 | "node_modules/lightningcss-freebsd-x64": { | ||
| 4292 | "version": "1.30.1", | ||
| 4293 | "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.1.tgz", | ||
| 4294 | "integrity": "sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==", | ||
| 4295 | "cpu": [ | ||
| 4296 | "x64" | ||
| 4297 | ], | ||
| 4298 | "dev": true, | ||
| 4299 | "license": "MPL-2.0", | ||
| 4300 | "optional": true, | ||
| 4301 | "os": [ | ||
| 4302 | "freebsd" | ||
| 4303 | ], | ||
| 4304 | "engines": { | ||
| 4305 | "node": ">= 12.0.0" | ||
| 4306 | }, | ||
| 4307 | "funding": { | ||
| 4308 | "type": "opencollective", | ||
| 4309 | "url": "https://opencollective.com/parcel" | ||
| 4310 | } | ||
| 4311 | }, | ||
| 4312 | "node_modules/lightningcss-linux-arm-gnueabihf": { | ||
| 4313 | "version": "1.30.1", | ||
| 4314 | "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.1.tgz", | ||
| 4315 | "integrity": "sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==", | ||
| 4316 | "cpu": [ | ||
| 4317 | "arm" | ||
| 4318 | ], | ||
| 4319 | "dev": true, | ||
| 4320 | "license": "MPL-2.0", | ||
| 4321 | "optional": true, | ||
| 4322 | "os": [ | ||
| 4323 | "linux" | ||
| 4324 | ], | ||
| 4325 | "engines": { | ||
| 4326 | "node": ">= 12.0.0" | ||
| 4327 | }, | ||
| 4328 | "funding": { | ||
| 4329 | "type": "opencollective", | ||
| 4330 | "url": "https://opencollective.com/parcel" | ||
| 4331 | } | ||
| 4332 | }, | ||
| 4333 | "node_modules/lightningcss-linux-arm64-gnu": { | ||
| 4334 | "version": "1.30.1", | ||
| 4335 | "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.1.tgz", | ||
| 4336 | "integrity": "sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==", | ||
| 4337 | "cpu": [ | ||
| 4338 | "arm64" | ||
| 4339 | ], | ||
| 4340 | "dev": true, | ||
| 4341 | "license": "MPL-2.0", | ||
| 4342 | "optional": true, | ||
| 4343 | "os": [ | ||
| 4344 | "linux" | ||
| 4345 | ], | ||
| 4346 | "engines": { | ||
| 4347 | "node": ">= 12.0.0" | ||
| 4348 | }, | ||
| 4349 | "funding": { | ||
| 4350 | "type": "opencollective", | ||
| 4351 | "url": "https://opencollective.com/parcel" | ||
| 4352 | } | ||
| 4353 | }, | ||
| 4354 | "node_modules/lightningcss-linux-arm64-musl": { | ||
| 4355 | "version": "1.30.1", | ||
| 4356 | "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.1.tgz", | ||
| 4357 | "integrity": "sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==", | ||
| 4358 | "cpu": [ | ||
| 4359 | "arm64" | ||
| 4360 | ], | ||
| 4361 | "dev": true, | ||
| 4362 | "license": "MPL-2.0", | ||
| 4363 | "optional": true, | ||
| 4364 | "os": [ | ||
| 4365 | "linux" | ||
| 4366 | ], | ||
| 4367 | "engines": { | ||
| 4368 | "node": ">= 12.0.0" | ||
| 4369 | }, | ||
| 4370 | "funding": { | ||
| 4371 | "type": "opencollective", | ||
| 4372 | "url": "https://opencollective.com/parcel" | ||
| 4373 | } | ||
| 4374 | }, | ||
| 4375 | "node_modules/lightningcss-linux-x64-gnu": { | ||
| 4376 | "version": "1.30.1", | ||
| 4377 | "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.1.tgz", | ||
| 4378 | "integrity": "sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==", | ||
| 4379 | "cpu": [ | ||
| 4380 | "x64" | ||
| 4381 | ], | ||
| 4382 | "dev": true, | ||
| 4383 | "license": "MPL-2.0", | ||
| 4384 | "optional": true, | ||
| 4385 | "os": [ | ||
| 4386 | "linux" | ||
| 4387 | ], | ||
| 4388 | "engines": { | ||
| 4389 | "node": ">= 12.0.0" | ||
| 4390 | }, | ||
| 4391 | "funding": { | ||
| 4392 | "type": "opencollective", | ||
| 4393 | "url": "https://opencollective.com/parcel" | ||
| 4394 | } | ||
| 4395 | }, | ||
| 4396 | "node_modules/lightningcss-linux-x64-musl": { | ||
| 4397 | "version": "1.30.1", | ||
| 4398 | "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.1.tgz", | ||
| 4399 | "integrity": "sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==", | ||
| 4400 | "cpu": [ | ||
| 4401 | "x64" | ||
| 4402 | ], | ||
| 4403 | "dev": true, | ||
| 4404 | "license": "MPL-2.0", | ||
| 4405 | "optional": true, | ||
| 4406 | "os": [ | ||
| 4407 | "linux" | ||
| 4408 | ], | ||
| 4409 | "engines": { | ||
| 4410 | "node": ">= 12.0.0" | ||
| 4411 | }, | ||
| 4412 | "funding": { | ||
| 4413 | "type": "opencollective", | ||
| 4414 | "url": "https://opencollective.com/parcel" | ||
| 4415 | } | ||
| 4416 | }, | ||
| 4417 | "node_modules/lightningcss-win32-arm64-msvc": { | ||
| 4418 | "version": "1.30.1", | ||
| 4419 | "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.1.tgz", | ||
| 4420 | "integrity": "sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==", | ||
| 4421 | "cpu": [ | ||
| 4422 | "arm64" | ||
| 4423 | ], | ||
| 4424 | "dev": true, | ||
| 4425 | "license": "MPL-2.0", | ||
| 4426 | "optional": true, | ||
| 4427 | "os": [ | ||
| 4428 | "win32" | ||
| 4429 | ], | ||
| 4430 | "engines": { | ||
| 4431 | "node": ">= 12.0.0" | ||
| 4432 | }, | ||
| 4433 | "funding": { | ||
| 4434 | "type": "opencollective", | ||
| 4435 | "url": "https://opencollective.com/parcel" | ||
| 4436 | } | ||
| 4437 | }, | ||
| 4438 | "node_modules/lightningcss-win32-x64-msvc": { | ||
| 4439 | "version": "1.30.1", | ||
| 4440 | "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.1.tgz", | ||
| 4441 | "integrity": "sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==", | ||
| 4442 | "cpu": [ | ||
| 4443 | "x64" | ||
| 4444 | ], | ||
| 4445 | "dev": true, | ||
| 4446 | "license": "MPL-2.0", | ||
| 4447 | "optional": true, | ||
| 4448 | "os": [ | ||
| 4449 | "win32" | ||
| 4450 | ], | ||
| 4451 | "engines": { | ||
| 4452 | "node": ">= 12.0.0" | ||
| 4453 | }, | ||
| 4454 | "funding": { | ||
| 4455 | "type": "opencollective", | ||
| 4456 | "url": "https://opencollective.com/parcel" | ||
| 4457 | } | ||
| 4458 | }, | ||
| 4459 | "node_modules/locate-path": { | ||
| 4460 | "version": "6.0.0", | ||
| 4461 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", | ||
| 4462 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", | ||
| 4463 | "dev": true, | ||
| 4464 | "license": "MIT", | ||
| 4465 | "dependencies": { | ||
| 4466 | "p-locate": "^5.0.0" | ||
| 4467 | }, | ||
| 4468 | "engines": { | ||
| 4469 | "node": ">=10" | ||
| 4470 | }, | ||
| 4471 | "funding": { | ||
| 4472 | "url": "https://github.com/sponsors/sindresorhus" | ||
| 4473 | } | ||
| 4474 | }, | ||
| 4475 | "node_modules/lodash.merge": { | ||
| 4476 | "version": "4.6.2", | ||
| 4477 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", | ||
| 4478 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", | ||
| 4479 | "dev": true, | ||
| 4480 | "license": "MIT" | ||
| 4481 | }, | ||
| 4482 | "node_modules/loose-envify": { | ||
| 4483 | "version": "1.4.0", | ||
| 4484 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", | ||
| 4485 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", | ||
| 4486 | "dev": true, | ||
| 4487 | "license": "MIT", | ||
| 4488 | "dependencies": { | ||
| 4489 | "js-tokens": "^3.0.0 || ^4.0.0" | ||
| 4490 | }, | ||
| 4491 | "bin": { | ||
| 4492 | "loose-envify": "cli.js" | ||
| 4493 | } | ||
| 4494 | }, | ||
| 4495 | "node_modules/magic-string": { | ||
| 4496 | "version": "0.30.17", | ||
| 4497 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", | ||
| 4498 | "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", | ||
| 4499 | "dev": true, | ||
| 4500 | "license": "MIT", | ||
| 4501 | "dependencies": { | ||
| 4502 | "@jridgewell/sourcemap-codec": "^1.5.0" | ||
| 4503 | } | ||
| 4504 | }, | ||
| 4505 | "node_modules/math-intrinsics": { | ||
| 4506 | "version": "1.1.0", | ||
| 4507 | "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", | ||
| 4508 | "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", | ||
| 4509 | "dev": true, | ||
| 4510 | "license": "MIT", | ||
| 4511 | "engines": { | ||
| 4512 | "node": ">= 0.4" | ||
| 4513 | } | ||
| 4514 | }, | ||
| 4515 | "node_modules/merge2": { | ||
| 4516 | "version": "1.4.1", | ||
| 4517 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", | ||
| 4518 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", | ||
| 4519 | "dev": true, | ||
| 4520 | "license": "MIT", | ||
| 4521 | "engines": { | ||
| 4522 | "node": ">= 8" | ||
| 4523 | } | ||
| 4524 | }, | ||
| 4525 | "node_modules/micromatch": { | ||
| 4526 | "version": "4.0.8", | ||
| 4527 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", | ||
| 4528 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", | ||
| 4529 | "dev": true, | ||
| 4530 | "license": "MIT", | ||
| 4531 | "dependencies": { | ||
| 4532 | "braces": "^3.0.3", | ||
| 4533 | "picomatch": "^2.3.1" | ||
| 4534 | }, | ||
| 4535 | "engines": { | ||
| 4536 | "node": ">=8.6" | ||
| 4537 | } | ||
| 4538 | }, | ||
| 4539 | "node_modules/minimatch": { | ||
| 4540 | "version": "3.1.2", | ||
| 4541 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", | ||
| 4542 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", | ||
| 4543 | "dev": true, | ||
| 4544 | "license": "ISC", | ||
| 4545 | "dependencies": { | ||
| 4546 | "brace-expansion": "^1.1.7" | ||
| 4547 | }, | ||
| 4548 | "engines": { | ||
| 4549 | "node": "*" | ||
| 4550 | } | ||
| 4551 | }, | ||
| 4552 | "node_modules/minimist": { | ||
| 4553 | "version": "1.2.8", | ||
| 4554 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", | ||
| 4555 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", | ||
| 4556 | "dev": true, | ||
| 4557 | "license": "MIT", | ||
| 4558 | "funding": { | ||
| 4559 | "url": "https://github.com/sponsors/ljharb" | ||
| 4560 | } | ||
| 4561 | }, | ||
| 4562 | "node_modules/minipass": { | ||
| 4563 | "version": "7.1.2", | ||
| 4564 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", | ||
| 4565 | "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", | ||
| 4566 | "dev": true, | ||
| 4567 | "license": "ISC", | ||
| 4568 | "engines": { | ||
| 4569 | "node": ">=16 || 14 >=14.17" | ||
| 4570 | } | ||
| 4571 | }, | ||
| 4572 | "node_modules/minizlib": { | ||
| 4573 | "version": "3.0.2", | ||
| 4574 | "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.0.2.tgz", | ||
| 4575 | "integrity": "sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==", | ||
| 4576 | "dev": true, | ||
| 4577 | "license": "MIT", | ||
| 4578 | "dependencies": { | ||
| 4579 | "minipass": "^7.1.2" | ||
| 4580 | }, | ||
| 4581 | "engines": { | ||
| 4582 | "node": ">= 18" | ||
| 4583 | } | ||
| 4584 | }, | ||
| 4585 | "node_modules/mkdirp": { | ||
| 4586 | "version": "3.0.1", | ||
| 4587 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", | ||
| 4588 | "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", | ||
| 4589 | "dev": true, | ||
| 4590 | "license": "MIT", | ||
| 4591 | "bin": { | ||
| 4592 | "mkdirp": "dist/cjs/src/bin.js" | ||
| 4593 | }, | ||
| 4594 | "engines": { | ||
| 4595 | "node": ">=10" | ||
| 4596 | }, | ||
| 4597 | "funding": { | ||
| 4598 | "url": "https://github.com/sponsors/isaacs" | ||
| 4599 | } | ||
| 4600 | }, | ||
| 4601 | "node_modules/ms": { | ||
| 4602 | "version": "2.1.3", | ||
| 4603 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", | ||
| 4604 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", | ||
| 4605 | "dev": true, | ||
| 4606 | "license": "MIT" | ||
| 4607 | }, | ||
| 4608 | "node_modules/nanoid": { | ||
| 4609 | "version": "3.3.11", | ||
| 4610 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", | ||
| 4611 | "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", | ||
| 4612 | "funding": [ | ||
| 4613 | { | ||
| 4614 | "type": "github", | ||
| 4615 | "url": "https://github.com/sponsors/ai" | ||
| 4616 | } | ||
| 4617 | ], | ||
| 4618 | "license": "MIT", | ||
| 4619 | "bin": { | ||
| 4620 | "nanoid": "bin/nanoid.cjs" | ||
| 4621 | }, | ||
| 4622 | "engines": { | ||
| 4623 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" | ||
| 4624 | } | ||
| 4625 | }, | ||
| 4626 | "node_modules/napi-postinstall": { | ||
| 4627 | "version": "0.3.3", | ||
| 4628 | "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.3.tgz", | ||
| 4629 | "integrity": "sha512-uTp172LLXSxuSYHv/kou+f6KW3SMppU9ivthaVTXian9sOt3XM/zHYHpRZiLgQoxeWfYUnslNWQHF1+G71xcow==", | ||
| 4630 | "dev": true, | ||
| 4631 | "license": "MIT", | ||
| 4632 | "bin": { | ||
| 4633 | "napi-postinstall": "lib/cli.js" | ||
| 4634 | }, | ||
| 4635 | "engines": { | ||
| 4636 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" | ||
| 4637 | }, | ||
| 4638 | "funding": { | ||
| 4639 | "url": "https://opencollective.com/napi-postinstall" | ||
| 4640 | } | ||
| 4641 | }, | ||
| 4642 | "node_modules/natural-compare": { | ||
| 4643 | "version": "1.4.0", | ||
| 4644 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", | ||
| 4645 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", | ||
| 4646 | "dev": true, | ||
| 4647 | "license": "MIT" | ||
| 4648 | }, | ||
| 4649 | "node_modules/next": { | ||
| 4650 | "version": "15.4.6", | ||
| 4651 | "resolved": "https://registry.npmjs.org/next/-/next-15.4.6.tgz", | ||
| 4652 | "integrity": "sha512-us++E/Q80/8+UekzB3SAGs71AlLDsadpFMXVNM/uQ0BMwsh9m3mr0UNQIfjKed8vpWXsASe+Qifrnu1oLIcKEQ==", | ||
| 4653 | "license": "MIT", | ||
| 4654 | "dependencies": { | ||
| 4655 | "@next/env": "15.4.6", | ||
| 4656 | "@swc/helpers": "0.5.15", | ||
| 4657 | "caniuse-lite": "^1.0.30001579", | ||
| 4658 | "postcss": "8.4.31", | ||
| 4659 | "styled-jsx": "5.1.6" | ||
| 4660 | }, | ||
| 4661 | "bin": { | ||
| 4662 | "next": "dist/bin/next" | ||
| 4663 | }, | ||
| 4664 | "engines": { | ||
| 4665 | "node": "^18.18.0 || ^19.8.0 || >= 20.0.0" | ||
| 4666 | }, | ||
| 4667 | "optionalDependencies": { | ||
| 4668 | "@next/swc-darwin-arm64": "15.4.6", | ||
| 4669 | "@next/swc-darwin-x64": "15.4.6", | ||
| 4670 | "@next/swc-linux-arm64-gnu": "15.4.6", | ||
| 4671 | "@next/swc-linux-arm64-musl": "15.4.6", | ||
| 4672 | "@next/swc-linux-x64-gnu": "15.4.6", | ||
| 4673 | "@next/swc-linux-x64-musl": "15.4.6", | ||
| 4674 | "@next/swc-win32-arm64-msvc": "15.4.6", | ||
| 4675 | "@next/swc-win32-x64-msvc": "15.4.6", | ||
| 4676 | "sharp": "^0.34.3" | ||
| 4677 | }, | ||
| 4678 | "peerDependencies": { | ||
| 4679 | "@opentelemetry/api": "^1.1.0", | ||
| 4680 | "@playwright/test": "^1.51.1", | ||
| 4681 | "babel-plugin-react-compiler": "*", | ||
| 4682 | "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", | ||
| 4683 | "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", | ||
| 4684 | "sass": "^1.3.0" | ||
| 4685 | }, | ||
| 4686 | "peerDependenciesMeta": { | ||
| 4687 | "@opentelemetry/api": { | ||
| 4688 | "optional": true | ||
| 4689 | }, | ||
| 4690 | "@playwright/test": { | ||
| 4691 | "optional": true | ||
| 4692 | }, | ||
| 4693 | "babel-plugin-react-compiler": { | ||
| 4694 | "optional": true | ||
| 4695 | }, | ||
| 4696 | "sass": { | ||
| 4697 | "optional": true | ||
| 4698 | } | ||
| 4699 | } | ||
| 4700 | }, | ||
| 4701 | "node_modules/next/node_modules/postcss": { | ||
| 4702 | "version": "8.4.31", | ||
| 4703 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", | ||
| 4704 | "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", | ||
| 4705 | "funding": [ | ||
| 4706 | { | ||
| 4707 | "type": "opencollective", | ||
| 4708 | "url": "https://opencollective.com/postcss/" | ||
| 4709 | }, | ||
| 4710 | { | ||
| 4711 | "type": "tidelift", | ||
| 4712 | "url": "https://tidelift.com/funding/github/npm/postcss" | ||
| 4713 | }, | ||
| 4714 | { | ||
| 4715 | "type": "github", | ||
| 4716 | "url": "https://github.com/sponsors/ai" | ||
| 4717 | } | ||
| 4718 | ], | ||
| 4719 | "license": "MIT", | ||
| 4720 | "dependencies": { | ||
| 4721 | "nanoid": "^3.3.6", | ||
| 4722 | "picocolors": "^1.0.0", | ||
| 4723 | "source-map-js": "^1.0.2" | ||
| 4724 | }, | ||
| 4725 | "engines": { | ||
| 4726 | "node": "^10 || ^12 || >=14" | ||
| 4727 | } | ||
| 4728 | }, | ||
| 4729 | "node_modules/object-assign": { | ||
| 4730 | "version": "4.1.1", | ||
| 4731 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", | ||
| 4732 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", | ||
| 4733 | "dev": true, | ||
| 4734 | "license": "MIT", | ||
| 4735 | "engines": { | ||
| 4736 | "node": ">=0.10.0" | ||
| 4737 | } | ||
| 4738 | }, | ||
| 4739 | "node_modules/object-inspect": { | ||
| 4740 | "version": "1.13.4", | ||
| 4741 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", | ||
| 4742 | "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", | ||
| 4743 | "dev": true, | ||
| 4744 | "license": "MIT", | ||
| 4745 | "engines": { | ||
| 4746 | "node": ">= 0.4" | ||
| 4747 | }, | ||
| 4748 | "funding": { | ||
| 4749 | "url": "https://github.com/sponsors/ljharb" | ||
| 4750 | } | ||
| 4751 | }, | ||
| 4752 | "node_modules/object-keys": { | ||
| 4753 | "version": "1.1.1", | ||
| 4754 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", | ||
| 4755 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", | ||
| 4756 | "dev": true, | ||
| 4757 | "license": "MIT", | ||
| 4758 | "engines": { | ||
| 4759 | "node": ">= 0.4" | ||
| 4760 | } | ||
| 4761 | }, | ||
| 4762 | "node_modules/object.assign": { | ||
| 4763 | "version": "4.1.7", | ||
| 4764 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", | ||
| 4765 | "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", | ||
| 4766 | "dev": true, | ||
| 4767 | "license": "MIT", | ||
| 4768 | "dependencies": { | ||
| 4769 | "call-bind": "^1.0.8", | ||
| 4770 | "call-bound": "^1.0.3", | ||
| 4771 | "define-properties": "^1.2.1", | ||
| 4772 | "es-object-atoms": "^1.0.0", | ||
| 4773 | "has-symbols": "^1.1.0", | ||
| 4774 | "object-keys": "^1.1.1" | ||
| 4775 | }, | ||
| 4776 | "engines": { | ||
| 4777 | "node": ">= 0.4" | ||
| 4778 | }, | ||
| 4779 | "funding": { | ||
| 4780 | "url": "https://github.com/sponsors/ljharb" | ||
| 4781 | } | ||
| 4782 | }, | ||
| 4783 | "node_modules/object.entries": { | ||
| 4784 | "version": "1.1.9", | ||
| 4785 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", | ||
| 4786 | "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", | ||
| 4787 | "dev": true, | ||
| 4788 | "license": "MIT", | ||
| 4789 | "dependencies": { | ||
| 4790 | "call-bind": "^1.0.8", | ||
| 4791 | "call-bound": "^1.0.4", | ||
| 4792 | "define-properties": "^1.2.1", | ||
| 4793 | "es-object-atoms": "^1.1.1" | ||
| 4794 | }, | ||
| 4795 | "engines": { | ||
| 4796 | "node": ">= 0.4" | ||
| 4797 | } | ||
| 4798 | }, | ||
| 4799 | "node_modules/object.fromentries": { | ||
| 4800 | "version": "2.0.8", | ||
| 4801 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", | ||
| 4802 | "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", | ||
| 4803 | "dev": true, | ||
| 4804 | "license": "MIT", | ||
| 4805 | "dependencies": { | ||
| 4806 | "call-bind": "^1.0.7", | ||
| 4807 | "define-properties": "^1.2.1", | ||
| 4808 | "es-abstract": "^1.23.2", | ||
| 4809 | "es-object-atoms": "^1.0.0" | ||
| 4810 | }, | ||
| 4811 | "engines": { | ||
| 4812 | "node": ">= 0.4" | ||
| 4813 | }, | ||
| 4814 | "funding": { | ||
| 4815 | "url": "https://github.com/sponsors/ljharb" | ||
| 4816 | } | ||
| 4817 | }, | ||
| 4818 | "node_modules/object.groupby": { | ||
| 4819 | "version": "1.0.3", | ||
| 4820 | "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", | ||
| 4821 | "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", | ||
| 4822 | "dev": true, | ||
| 4823 | "license": "MIT", | ||
| 4824 | "dependencies": { | ||
| 4825 | "call-bind": "^1.0.7", | ||
| 4826 | "define-properties": "^1.2.1", | ||
| 4827 | "es-abstract": "^1.23.2" | ||
| 4828 | }, | ||
| 4829 | "engines": { | ||
| 4830 | "node": ">= 0.4" | ||
| 4831 | } | ||
| 4832 | }, | ||
| 4833 | "node_modules/object.values": { | ||
| 4834 | "version": "1.2.1", | ||
| 4835 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", | ||
| 4836 | "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", | ||
| 4837 | "dev": true, | ||
| 4838 | "license": "MIT", | ||
| 4839 | "dependencies": { | ||
| 4840 | "call-bind": "^1.0.8", | ||
| 4841 | "call-bound": "^1.0.3", | ||
| 4842 | "define-properties": "^1.2.1", | ||
| 4843 | "es-object-atoms": "^1.0.0" | ||
| 4844 | }, | ||
| 4845 | "engines": { | ||
| 4846 | "node": ">= 0.4" | ||
| 4847 | }, | ||
| 4848 | "funding": { | ||
| 4849 | "url": "https://github.com/sponsors/ljharb" | ||
| 4850 | } | ||
| 4851 | }, | ||
| 4852 | "node_modules/optionator": { | ||
| 4853 | "version": "0.9.4", | ||
| 4854 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", | ||
| 4855 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", | ||
| 4856 | "dev": true, | ||
| 4857 | "license": "MIT", | ||
| 4858 | "dependencies": { | ||
| 4859 | "deep-is": "^0.1.3", | ||
| 4860 | "fast-levenshtein": "^2.0.6", | ||
| 4861 | "levn": "^0.4.1", | ||
| 4862 | "prelude-ls": "^1.2.1", | ||
| 4863 | "type-check": "^0.4.0", | ||
| 4864 | "word-wrap": "^1.2.5" | ||
| 4865 | }, | ||
| 4866 | "engines": { | ||
| 4867 | "node": ">= 0.8.0" | ||
| 4868 | } | ||
| 4869 | }, | ||
| 4870 | "node_modules/own-keys": { | ||
| 4871 | "version": "1.0.1", | ||
| 4872 | "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", | ||
| 4873 | "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", | ||
| 4874 | "dev": true, | ||
| 4875 | "license": "MIT", | ||
| 4876 | "dependencies": { | ||
| 4877 | "get-intrinsic": "^1.2.6", | ||
| 4878 | "object-keys": "^1.1.1", | ||
| 4879 | "safe-push-apply": "^1.0.0" | ||
| 4880 | }, | ||
| 4881 | "engines": { | ||
| 4882 | "node": ">= 0.4" | ||
| 4883 | }, | ||
| 4884 | "funding": { | ||
| 4885 | "url": "https://github.com/sponsors/ljharb" | ||
| 4886 | } | ||
| 4887 | }, | ||
| 4888 | "node_modules/p-limit": { | ||
| 4889 | "version": "3.1.0", | ||
| 4890 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", | ||
| 4891 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", | ||
| 4892 | "dev": true, | ||
| 4893 | "license": "MIT", | ||
| 4894 | "dependencies": { | ||
| 4895 | "yocto-queue": "^0.1.0" | ||
| 4896 | }, | ||
| 4897 | "engines": { | ||
| 4898 | "node": ">=10" | ||
| 4899 | }, | ||
| 4900 | "funding": { | ||
| 4901 | "url": "https://github.com/sponsors/sindresorhus" | ||
| 4902 | } | ||
| 4903 | }, | ||
| 4904 | "node_modules/p-locate": { | ||
| 4905 | "version": "5.0.0", | ||
| 4906 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", | ||
| 4907 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", | ||
| 4908 | "dev": true, | ||
| 4909 | "license": "MIT", | ||
| 4910 | "dependencies": { | ||
| 4911 | "p-limit": "^3.0.2" | ||
| 4912 | }, | ||
| 4913 | "engines": { | ||
| 4914 | "node": ">=10" | ||
| 4915 | }, | ||
| 4916 | "funding": { | ||
| 4917 | "url": "https://github.com/sponsors/sindresorhus" | ||
| 4918 | } | ||
| 4919 | }, | ||
| 4920 | "node_modules/parent-module": { | ||
| 4921 | "version": "1.0.1", | ||
| 4922 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", | ||
| 4923 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", | ||
| 4924 | "dev": true, | ||
| 4925 | "license": "MIT", | ||
| 4926 | "dependencies": { | ||
| 4927 | "callsites": "^3.0.0" | ||
| 4928 | }, | ||
| 4929 | "engines": { | ||
| 4930 | "node": ">=6" | ||
| 4931 | } | ||
| 4932 | }, | ||
| 4933 | "node_modules/path-exists": { | ||
| 4934 | "version": "4.0.0", | ||
| 4935 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", | ||
| 4936 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", | ||
| 4937 | "dev": true, | ||
| 4938 | "license": "MIT", | ||
| 4939 | "engines": { | ||
| 4940 | "node": ">=8" | ||
| 4941 | } | ||
| 4942 | }, | ||
| 4943 | "node_modules/path-key": { | ||
| 4944 | "version": "3.1.1", | ||
| 4945 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", | ||
| 4946 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", | ||
| 4947 | "dev": true, | ||
| 4948 | "license": "MIT", | ||
| 4949 | "engines": { | ||
| 4950 | "node": ">=8" | ||
| 4951 | } | ||
| 4952 | }, | ||
| 4953 | "node_modules/path-parse": { | ||
| 4954 | "version": "1.0.7", | ||
| 4955 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", | ||
| 4956 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", | ||
| 4957 | "dev": true, | ||
| 4958 | "license": "MIT" | ||
| 4959 | }, | ||
| 4960 | "node_modules/picocolors": { | ||
| 4961 | "version": "1.1.1", | ||
| 4962 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", | ||
| 4963 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", | ||
| 4964 | "license": "ISC" | ||
| 4965 | }, | ||
| 4966 | "node_modules/picomatch": { | ||
| 4967 | "version": "2.3.1", | ||
| 4968 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", | ||
| 4969 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", | ||
| 4970 | "dev": true, | ||
| 4971 | "license": "MIT", | ||
| 4972 | "engines": { | ||
| 4973 | "node": ">=8.6" | ||
| 4974 | }, | ||
| 4975 | "funding": { | ||
| 4976 | "url": "https://github.com/sponsors/jonschlinkert" | ||
| 4977 | } | ||
| 4978 | }, | ||
| 4979 | "node_modules/possible-typed-array-names": { | ||
| 4980 | "version": "1.1.0", | ||
| 4981 | "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", | ||
| 4982 | "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", | ||
| 4983 | "dev": true, | ||
| 4984 | "license": "MIT", | ||
| 4985 | "engines": { | ||
| 4986 | "node": ">= 0.4" | ||
| 4987 | } | ||
| 4988 | }, | ||
| 4989 | "node_modules/postcss": { | ||
| 4990 | "version": "8.5.6", | ||
| 4991 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", | ||
| 4992 | "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", | ||
| 4993 | "dev": true, | ||
| 4994 | "funding": [ | ||
| 4995 | { | ||
| 4996 | "type": "opencollective", | ||
| 4997 | "url": "https://opencollective.com/postcss/" | ||
| 4998 | }, | ||
| 4999 | { | ||
| 5000 | "type": "tidelift", | ||
| 5001 | "url": "https://tidelift.com/funding/github/npm/postcss" | ||
| 5002 | }, | ||
| 5003 | { | ||
| 5004 | "type": "github", | ||
| 5005 | "url": "https://github.com/sponsors/ai" | ||
| 5006 | } | ||
| 5007 | ], | ||
| 5008 | "license": "MIT", | ||
| 5009 | "dependencies": { | ||
| 5010 | "nanoid": "^3.3.11", | ||
| 5011 | "picocolors": "^1.1.1", | ||
| 5012 | "source-map-js": "^1.2.1" | ||
| 5013 | }, | ||
| 5014 | "engines": { | ||
| 5015 | "node": "^10 || ^12 || >=14" | ||
| 5016 | } | ||
| 5017 | }, | ||
| 5018 | "node_modules/prelude-ls": { | ||
| 5019 | "version": "1.2.1", | ||
| 5020 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", | ||
| 5021 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", | ||
| 5022 | "dev": true, | ||
| 5023 | "license": "MIT", | ||
| 5024 | "engines": { | ||
| 5025 | "node": ">= 0.8.0" | ||
| 5026 | } | ||
| 5027 | }, | ||
| 5028 | "node_modules/prop-types": { | ||
| 5029 | "version": "15.8.1", | ||
| 5030 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", | ||
| 5031 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", | ||
| 5032 | "dev": true, | ||
| 5033 | "license": "MIT", | ||
| 5034 | "dependencies": { | ||
| 5035 | "loose-envify": "^1.4.0", | ||
| 5036 | "object-assign": "^4.1.1", | ||
| 5037 | "react-is": "^16.13.1" | ||
| 5038 | } | ||
| 5039 | }, | ||
| 5040 | "node_modules/punycode": { | ||
| 5041 | "version": "2.3.1", | ||
| 5042 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", | ||
| 5043 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", | ||
| 5044 | "dev": true, | ||
| 5045 | "license": "MIT", | ||
| 5046 | "engines": { | ||
| 5047 | "node": ">=6" | ||
| 5048 | } | ||
| 5049 | }, | ||
| 5050 | "node_modules/queue-microtask": { | ||
| 5051 | "version": "1.2.3", | ||
| 5052 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", | ||
| 5053 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", | ||
| 5054 | "dev": true, | ||
| 5055 | "funding": [ | ||
| 5056 | { | ||
| 5057 | "type": "github", | ||
| 5058 | "url": "https://github.com/sponsors/feross" | ||
| 5059 | }, | ||
| 5060 | { | ||
| 5061 | "type": "patreon", | ||
| 5062 | "url": "https://www.patreon.com/feross" | ||
| 5063 | }, | ||
| 5064 | { | ||
| 5065 | "type": "consulting", | ||
| 5066 | "url": "https://feross.org/support" | ||
| 5067 | } | ||
| 5068 | ], | ||
| 5069 | "license": "MIT" | ||
| 5070 | }, | ||
| 5071 | "node_modules/react": { | ||
| 5072 | "version": "19.1.0", | ||
| 5073 | "resolved": "https://registry.npmjs.org/react/-/react-19.1.0.tgz", | ||
| 5074 | "integrity": "sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==", | ||
| 5075 | "license": "MIT", | ||
| 5076 | "engines": { | ||
| 5077 | "node": ">=0.10.0" | ||
| 5078 | } | ||
| 5079 | }, | ||
| 5080 | "node_modules/react-dom": { | ||
| 5081 | "version": "19.1.0", | ||
| 5082 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.1.0.tgz", | ||
| 5083 | "integrity": "sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==", | ||
| 5084 | "license": "MIT", | ||
| 5085 | "dependencies": { | ||
| 5086 | "scheduler": "^0.26.0" | ||
| 5087 | }, | ||
| 5088 | "peerDependencies": { | ||
| 5089 | "react": "^19.1.0" | ||
| 5090 | } | ||
| 5091 | }, | ||
| 5092 | "node_modules/react-is": { | ||
| 5093 | "version": "16.13.1", | ||
| 5094 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", | ||
| 5095 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", | ||
| 5096 | "dev": true, | ||
| 5097 | "license": "MIT" | ||
| 5098 | }, | ||
| 5099 | "node_modules/reflect.getprototypeof": { | ||
| 5100 | "version": "1.0.10", | ||
| 5101 | "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", | ||
| 5102 | "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", | ||
| 5103 | "dev": true, | ||
| 5104 | "license": "MIT", | ||
| 5105 | "dependencies": { | ||
| 5106 | "call-bind": "^1.0.8", | ||
| 5107 | "define-properties": "^1.2.1", | ||
| 5108 | "es-abstract": "^1.23.9", | ||
| 5109 | "es-errors": "^1.3.0", | ||
| 5110 | "es-object-atoms": "^1.0.0", | ||
| 5111 | "get-intrinsic": "^1.2.7", | ||
| 5112 | "get-proto": "^1.0.1", | ||
| 5113 | "which-builtin-type": "^1.2.1" | ||
| 5114 | }, | ||
| 5115 | "engines": { | ||
| 5116 | "node": ">= 0.4" | ||
| 5117 | }, | ||
| 5118 | "funding": { | ||
| 5119 | "url": "https://github.com/sponsors/ljharb" | ||
| 5120 | } | ||
| 5121 | }, | ||
| 5122 | "node_modules/regexp.prototype.flags": { | ||
| 5123 | "version": "1.5.4", | ||
| 5124 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", | ||
| 5125 | "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", | ||
| 5126 | "dev": true, | ||
| 5127 | "license": "MIT", | ||
| 5128 | "dependencies": { | ||
| 5129 | "call-bind": "^1.0.8", | ||
| 5130 | "define-properties": "^1.2.1", | ||
| 5131 | "es-errors": "^1.3.0", | ||
| 5132 | "get-proto": "^1.0.1", | ||
| 5133 | "gopd": "^1.2.0", | ||
| 5134 | "set-function-name": "^2.0.2" | ||
| 5135 | }, | ||
| 5136 | "engines": { | ||
| 5137 | "node": ">= 0.4" | ||
| 5138 | }, | ||
| 5139 | "funding": { | ||
| 5140 | "url": "https://github.com/sponsors/ljharb" | ||
| 5141 | } | ||
| 5142 | }, | ||
| 5143 | "node_modules/resolve": { | ||
| 5144 | "version": "1.22.10", | ||
| 5145 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", | ||
| 5146 | "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", | ||
| 5147 | "dev": true, | ||
| 5148 | "license": "MIT", | ||
| 5149 | "dependencies": { | ||
| 5150 | "is-core-module": "^2.16.0", | ||
| 5151 | "path-parse": "^1.0.7", | ||
| 5152 | "supports-preserve-symlinks-flag": "^1.0.0" | ||
| 5153 | }, | ||
| 5154 | "bin": { | ||
| 5155 | "resolve": "bin/resolve" | ||
| 5156 | }, | ||
| 5157 | "engines": { | ||
| 5158 | "node": ">= 0.4" | ||
| 5159 | }, | ||
| 5160 | "funding": { | ||
| 5161 | "url": "https://github.com/sponsors/ljharb" | ||
| 5162 | } | ||
| 5163 | }, | ||
| 5164 | "node_modules/resolve-from": { | ||
| 5165 | "version": "4.0.0", | ||
| 5166 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", | ||
| 5167 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", | ||
| 5168 | "dev": true, | ||
| 5169 | "license": "MIT", | ||
| 5170 | "engines": { | ||
| 5171 | "node": ">=4" | ||
| 5172 | } | ||
| 5173 | }, | ||
| 5174 | "node_modules/resolve-pkg-maps": { | ||
| 5175 | "version": "1.0.0", | ||
| 5176 | "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", | ||
| 5177 | "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", | ||
| 5178 | "dev": true, | ||
| 5179 | "license": "MIT", | ||
| 5180 | "funding": { | ||
| 5181 | "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" | ||
| 5182 | } | ||
| 5183 | }, | ||
| 5184 | "node_modules/reusify": { | ||
| 5185 | "version": "1.1.0", | ||
| 5186 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", | ||
| 5187 | "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", | ||
| 5188 | "dev": true, | ||
| 5189 | "license": "MIT", | ||
| 5190 | "engines": { | ||
| 5191 | "iojs": ">=1.0.0", | ||
| 5192 | "node": ">=0.10.0" | ||
| 5193 | } | ||
| 5194 | }, | ||
| 5195 | "node_modules/run-parallel": { | ||
| 5196 | "version": "1.2.0", | ||
| 5197 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", | ||
| 5198 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", | ||
| 5199 | "dev": true, | ||
| 5200 | "funding": [ | ||
| 5201 | { | ||
| 5202 | "type": "github", | ||
| 5203 | "url": "https://github.com/sponsors/feross" | ||
| 5204 | }, | ||
| 5205 | { | ||
| 5206 | "type": "patreon", | ||
| 5207 | "url": "https://www.patreon.com/feross" | ||
| 5208 | }, | ||
| 5209 | { | ||
| 5210 | "type": "consulting", | ||
| 5211 | "url": "https://feross.org/support" | ||
| 5212 | } | ||
| 5213 | ], | ||
| 5214 | "license": "MIT", | ||
| 5215 | "dependencies": { | ||
| 5216 | "queue-microtask": "^1.2.2" | ||
| 5217 | } | ||
| 5218 | }, | ||
| 5219 | "node_modules/safe-array-concat": { | ||
| 5220 | "version": "1.1.3", | ||
| 5221 | "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", | ||
| 5222 | "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", | ||
| 5223 | "dev": true, | ||
| 5224 | "license": "MIT", | ||
| 5225 | "dependencies": { | ||
| 5226 | "call-bind": "^1.0.8", | ||
| 5227 | "call-bound": "^1.0.2", | ||
| 5228 | "get-intrinsic": "^1.2.6", | ||
| 5229 | "has-symbols": "^1.1.0", | ||
| 5230 | "isarray": "^2.0.5" | ||
| 5231 | }, | ||
| 5232 | "engines": { | ||
| 5233 | "node": ">=0.4" | ||
| 5234 | }, | ||
| 5235 | "funding": { | ||
| 5236 | "url": "https://github.com/sponsors/ljharb" | ||
| 5237 | } | ||
| 5238 | }, | ||
| 5239 | "node_modules/safe-push-apply": { | ||
| 5240 | "version": "1.0.0", | ||
| 5241 | "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", | ||
| 5242 | "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", | ||
| 5243 | "dev": true, | ||
| 5244 | "license": "MIT", | ||
| 5245 | "dependencies": { | ||
| 5246 | "es-errors": "^1.3.0", | ||
| 5247 | "isarray": "^2.0.5" | ||
| 5248 | }, | ||
| 5249 | "engines": { | ||
| 5250 | "node": ">= 0.4" | ||
| 5251 | }, | ||
| 5252 | "funding": { | ||
| 5253 | "url": "https://github.com/sponsors/ljharb" | ||
| 5254 | } | ||
| 5255 | }, | ||
| 5256 | "node_modules/safe-regex-test": { | ||
| 5257 | "version": "1.1.0", | ||
| 5258 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", | ||
| 5259 | "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", | ||
| 5260 | "dev": true, | ||
| 5261 | "license": "MIT", | ||
| 5262 | "dependencies": { | ||
| 5263 | "call-bound": "^1.0.2", | ||
| 5264 | "es-errors": "^1.3.0", | ||
| 5265 | "is-regex": "^1.2.1" | ||
| 5266 | }, | ||
| 5267 | "engines": { | ||
| 5268 | "node": ">= 0.4" | ||
| 5269 | }, | ||
| 5270 | "funding": { | ||
| 5271 | "url": "https://github.com/sponsors/ljharb" | ||
| 5272 | } | ||
| 5273 | }, | ||
| 5274 | "node_modules/scheduler": { | ||
| 5275 | "version": "0.26.0", | ||
| 5276 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.26.0.tgz", | ||
| 5277 | "integrity": "sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==", | ||
| 5278 | "license": "MIT" | ||
| 5279 | }, | ||
| 5280 | "node_modules/semver": { | ||
| 5281 | "version": "7.7.2", | ||
| 5282 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", | ||
| 5283 | "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", | ||
| 5284 | "devOptional": true, | ||
| 5285 | "license": "ISC", | ||
| 5286 | "bin": { | ||
| 5287 | "semver": "bin/semver.js" | ||
| 5288 | }, | ||
| 5289 | "engines": { | ||
| 5290 | "node": ">=10" | ||
| 5291 | } | ||
| 5292 | }, | ||
| 5293 | "node_modules/set-function-length": { | ||
| 5294 | "version": "1.2.2", | ||
| 5295 | "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", | ||
| 5296 | "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", | ||
| 5297 | "dev": true, | ||
| 5298 | "license": "MIT", | ||
| 5299 | "dependencies": { | ||
| 5300 | "define-data-property": "^1.1.4", | ||
| 5301 | "es-errors": "^1.3.0", | ||
| 5302 | "function-bind": "^1.1.2", | ||
| 5303 | "get-intrinsic": "^1.2.4", | ||
| 5304 | "gopd": "^1.0.1", | ||
| 5305 | "has-property-descriptors": "^1.0.2" | ||
| 5306 | }, | ||
| 5307 | "engines": { | ||
| 5308 | "node": ">= 0.4" | ||
| 5309 | } | ||
| 5310 | }, | ||
| 5311 | "node_modules/set-function-name": { | ||
| 5312 | "version": "2.0.2", | ||
| 5313 | "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", | ||
| 5314 | "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", | ||
| 5315 | "dev": true, | ||
| 5316 | "license": "MIT", | ||
| 5317 | "dependencies": { | ||
| 5318 | "define-data-property": "^1.1.4", | ||
| 5319 | "es-errors": "^1.3.0", | ||
| 5320 | "functions-have-names": "^1.2.3", | ||
| 5321 | "has-property-descriptors": "^1.0.2" | ||
| 5322 | }, | ||
| 5323 | "engines": { | ||
| 5324 | "node": ">= 0.4" | ||
| 5325 | } | ||
| 5326 | }, | ||
| 5327 | "node_modules/set-proto": { | ||
| 5328 | "version": "1.0.0", | ||
| 5329 | "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", | ||
| 5330 | "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", | ||
| 5331 | "dev": true, | ||
| 5332 | "license": "MIT", | ||
| 5333 | "dependencies": { | ||
| 5334 | "dunder-proto": "^1.0.1", | ||
| 5335 | "es-errors": "^1.3.0", | ||
| 5336 | "es-object-atoms": "^1.0.0" | ||
| 5337 | }, | ||
| 5338 | "engines": { | ||
| 5339 | "node": ">= 0.4" | ||
| 5340 | } | ||
| 5341 | }, | ||
| 5342 | "node_modules/sharp": { | ||
| 5343 | "version": "0.34.3", | ||
| 5344 | "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.3.tgz", | ||
| 5345 | "integrity": "sha512-eX2IQ6nFohW4DbvHIOLRB3MHFpYqaqvXd3Tp5e/T/dSH83fxaNJQRvDMhASmkNTsNTVF2/OOopzRCt7xokgPfg==", | ||
| 5346 | "hasInstallScript": true, | ||
| 5347 | "license": "Apache-2.0", | ||
| 5348 | "optional": true, | ||
| 5349 | "dependencies": { | ||
| 5350 | "color": "^4.2.3", | ||
| 5351 | "detect-libc": "^2.0.4", | ||
| 5352 | "semver": "^7.7.2" | ||
| 5353 | }, | ||
| 5354 | "engines": { | ||
| 5355 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" | ||
| 5356 | }, | ||
| 5357 | "funding": { | ||
| 5358 | "url": "https://opencollective.com/libvips" | ||
| 5359 | }, | ||
| 5360 | "optionalDependencies": { | ||
| 5361 | "@img/sharp-darwin-arm64": "0.34.3", | ||
| 5362 | "@img/sharp-darwin-x64": "0.34.3", | ||
| 5363 | "@img/sharp-libvips-darwin-arm64": "1.2.0", | ||
| 5364 | "@img/sharp-libvips-darwin-x64": "1.2.0", | ||
| 5365 | "@img/sharp-libvips-linux-arm": "1.2.0", | ||
| 5366 | "@img/sharp-libvips-linux-arm64": "1.2.0", | ||
| 5367 | "@img/sharp-libvips-linux-ppc64": "1.2.0", | ||
| 5368 | "@img/sharp-libvips-linux-s390x": "1.2.0", | ||
| 5369 | "@img/sharp-libvips-linux-x64": "1.2.0", | ||
| 5370 | "@img/sharp-libvips-linuxmusl-arm64": "1.2.0", | ||
| 5371 | "@img/sharp-libvips-linuxmusl-x64": "1.2.0", | ||
| 5372 | "@img/sharp-linux-arm": "0.34.3", | ||
| 5373 | "@img/sharp-linux-arm64": "0.34.3", | ||
| 5374 | "@img/sharp-linux-ppc64": "0.34.3", | ||
| 5375 | "@img/sharp-linux-s390x": "0.34.3", | ||
| 5376 | "@img/sharp-linux-x64": "0.34.3", | ||
| 5377 | "@img/sharp-linuxmusl-arm64": "0.34.3", | ||
| 5378 | "@img/sharp-linuxmusl-x64": "0.34.3", | ||
| 5379 | "@img/sharp-wasm32": "0.34.3", | ||
| 5380 | "@img/sharp-win32-arm64": "0.34.3", | ||
| 5381 | "@img/sharp-win32-ia32": "0.34.3", | ||
| 5382 | "@img/sharp-win32-x64": "0.34.3" | ||
| 5383 | } | ||
| 5384 | }, | ||
| 5385 | "node_modules/shebang-command": { | ||
| 5386 | "version": "2.0.0", | ||
| 5387 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", | ||
| 5388 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", | ||
| 5389 | "dev": true, | ||
| 5390 | "license": "MIT", | ||
| 5391 | "dependencies": { | ||
| 5392 | "shebang-regex": "^3.0.0" | ||
| 5393 | }, | ||
| 5394 | "engines": { | ||
| 5395 | "node": ">=8" | ||
| 5396 | } | ||
| 5397 | }, | ||
| 5398 | "node_modules/shebang-regex": { | ||
| 5399 | "version": "3.0.0", | ||
| 5400 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", | ||
| 5401 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", | ||
| 5402 | "dev": true, | ||
| 5403 | "license": "MIT", | ||
| 5404 | "engines": { | ||
| 5405 | "node": ">=8" | ||
| 5406 | } | ||
| 5407 | }, | ||
| 5408 | "node_modules/side-channel": { | ||
| 5409 | "version": "1.1.0", | ||
| 5410 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", | ||
| 5411 | "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", | ||
| 5412 | "dev": true, | ||
| 5413 | "license": "MIT", | ||
| 5414 | "dependencies": { | ||
| 5415 | "es-errors": "^1.3.0", | ||
| 5416 | "object-inspect": "^1.13.3", | ||
| 5417 | "side-channel-list": "^1.0.0", | ||
| 5418 | "side-channel-map": "^1.0.1", | ||
| 5419 | "side-channel-weakmap": "^1.0.2" | ||
| 5420 | }, | ||
| 5421 | "engines": { | ||
| 5422 | "node": ">= 0.4" | ||
| 5423 | }, | ||
| 5424 | "funding": { | ||
| 5425 | "url": "https://github.com/sponsors/ljharb" | ||
| 5426 | } | ||
| 5427 | }, | ||
| 5428 | "node_modules/side-channel-list": { | ||
| 5429 | "version": "1.0.0", | ||
| 5430 | "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", | ||
| 5431 | "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", | ||
| 5432 | "dev": true, | ||
| 5433 | "license": "MIT", | ||
| 5434 | "dependencies": { | ||
| 5435 | "es-errors": "^1.3.0", | ||
| 5436 | "object-inspect": "^1.13.3" | ||
| 5437 | }, | ||
| 5438 | "engines": { | ||
| 5439 | "node": ">= 0.4" | ||
| 5440 | }, | ||
| 5441 | "funding": { | ||
| 5442 | "url": "https://github.com/sponsors/ljharb" | ||
| 5443 | } | ||
| 5444 | }, | ||
| 5445 | "node_modules/side-channel-map": { | ||
| 5446 | "version": "1.0.1", | ||
| 5447 | "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", | ||
| 5448 | "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", | ||
| 5449 | "dev": true, | ||
| 5450 | "license": "MIT", | ||
| 5451 | "dependencies": { | ||
| 5452 | "call-bound": "^1.0.2", | ||
| 5453 | "es-errors": "^1.3.0", | ||
| 5454 | "get-intrinsic": "^1.2.5", | ||
| 5455 | "object-inspect": "^1.13.3" | ||
| 5456 | }, | ||
| 5457 | "engines": { | ||
| 5458 | "node": ">= 0.4" | ||
| 5459 | }, | ||
| 5460 | "funding": { | ||
| 5461 | "url": "https://github.com/sponsors/ljharb" | ||
| 5462 | } | ||
| 5463 | }, | ||
| 5464 | "node_modules/side-channel-weakmap": { | ||
| 5465 | "version": "1.0.2", | ||
| 5466 | "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", | ||
| 5467 | "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", | ||
| 5468 | "dev": true, | ||
| 5469 | "license": "MIT", | ||
| 5470 | "dependencies": { | ||
| 5471 | "call-bound": "^1.0.2", | ||
| 5472 | "es-errors": "^1.3.0", | ||
| 5473 | "get-intrinsic": "^1.2.5", | ||
| 5474 | "object-inspect": "^1.13.3", | ||
| 5475 | "side-channel-map": "^1.0.1" | ||
| 5476 | }, | ||
| 5477 | "engines": { | ||
| 5478 | "node": ">= 0.4" | ||
| 5479 | }, | ||
| 5480 | "funding": { | ||
| 5481 | "url": "https://github.com/sponsors/ljharb" | ||
| 5482 | } | ||
| 5483 | }, | ||
| 5484 | "node_modules/simple-swizzle": { | ||
| 5485 | "version": "0.2.2", | ||
| 5486 | "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", | ||
| 5487 | "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", | ||
| 5488 | "license": "MIT", | ||
| 5489 | "optional": true, | ||
| 5490 | "dependencies": { | ||
| 5491 | "is-arrayish": "^0.3.1" | ||
| 5492 | } | ||
| 5493 | }, | ||
| 5494 | "node_modules/source-map-js": { | ||
| 5495 | "version": "1.2.1", | ||
| 5496 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", | ||
| 5497 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", | ||
| 5498 | "license": "BSD-3-Clause", | ||
| 5499 | "engines": { | ||
| 5500 | "node": ">=0.10.0" | ||
| 5501 | } | ||
| 5502 | }, | ||
| 5503 | "node_modules/stable-hash": { | ||
| 5504 | "version": "0.0.5", | ||
| 5505 | "resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz", | ||
| 5506 | "integrity": "sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==", | ||
| 5507 | "dev": true, | ||
| 5508 | "license": "MIT" | ||
| 5509 | }, | ||
| 5510 | "node_modules/stop-iteration-iterator": { | ||
| 5511 | "version": "1.1.0", | ||
| 5512 | "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", | ||
| 5513 | "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", | ||
| 5514 | "dev": true, | ||
| 5515 | "license": "MIT", | ||
| 5516 | "dependencies": { | ||
| 5517 | "es-errors": "^1.3.0", | ||
| 5518 | "internal-slot": "^1.1.0" | ||
| 5519 | }, | ||
| 5520 | "engines": { | ||
| 5521 | "node": ">= 0.4" | ||
| 5522 | } | ||
| 5523 | }, | ||
| 5524 | "node_modules/string.prototype.includes": { | ||
| 5525 | "version": "2.0.1", | ||
| 5526 | "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", | ||
| 5527 | "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==", | ||
| 5528 | "dev": true, | ||
| 5529 | "license": "MIT", | ||
| 5530 | "dependencies": { | ||
| 5531 | "call-bind": "^1.0.7", | ||
| 5532 | "define-properties": "^1.2.1", | ||
| 5533 | "es-abstract": "^1.23.3" | ||
| 5534 | }, | ||
| 5535 | "engines": { | ||
| 5536 | "node": ">= 0.4" | ||
| 5537 | } | ||
| 5538 | }, | ||
| 5539 | "node_modules/string.prototype.matchall": { | ||
| 5540 | "version": "4.0.12", | ||
| 5541 | "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz", | ||
| 5542 | "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==", | ||
| 5543 | "dev": true, | ||
| 5544 | "license": "MIT", | ||
| 5545 | "dependencies": { | ||
| 5546 | "call-bind": "^1.0.8", | ||
| 5547 | "call-bound": "^1.0.3", | ||
| 5548 | "define-properties": "^1.2.1", | ||
| 5549 | "es-abstract": "^1.23.6", | ||
| 5550 | "es-errors": "^1.3.0", | ||
| 5551 | "es-object-atoms": "^1.0.0", | ||
| 5552 | "get-intrinsic": "^1.2.6", | ||
| 5553 | "gopd": "^1.2.0", | ||
| 5554 | "has-symbols": "^1.1.0", | ||
| 5555 | "internal-slot": "^1.1.0", | ||
| 5556 | "regexp.prototype.flags": "^1.5.3", | ||
| 5557 | "set-function-name": "^2.0.2", | ||
| 5558 | "side-channel": "^1.1.0" | ||
| 5559 | }, | ||
| 5560 | "engines": { | ||
| 5561 | "node": ">= 0.4" | ||
| 5562 | }, | ||
| 5563 | "funding": { | ||
| 5564 | "url": "https://github.com/sponsors/ljharb" | ||
| 5565 | } | ||
| 5566 | }, | ||
| 5567 | "node_modules/string.prototype.repeat": { | ||
| 5568 | "version": "1.0.0", | ||
| 5569 | "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", | ||
| 5570 | "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", | ||
| 5571 | "dev": true, | ||
| 5572 | "license": "MIT", | ||
| 5573 | "dependencies": { | ||
| 5574 | "define-properties": "^1.1.3", | ||
| 5575 | "es-abstract": "^1.17.5" | ||
| 5576 | } | ||
| 5577 | }, | ||
| 5578 | "node_modules/string.prototype.trim": { | ||
| 5579 | "version": "1.2.10", | ||
| 5580 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", | ||
| 5581 | "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", | ||
| 5582 | "dev": true, | ||
| 5583 | "license": "MIT", | ||
| 5584 | "dependencies": { | ||
| 5585 | "call-bind": "^1.0.8", | ||
| 5586 | "call-bound": "^1.0.2", | ||
| 5587 | "define-data-property": "^1.1.4", | ||
| 5588 | "define-properties": "^1.2.1", | ||
| 5589 | "es-abstract": "^1.23.5", | ||
| 5590 | "es-object-atoms": "^1.0.0", | ||
| 5591 | "has-property-descriptors": "^1.0.2" | ||
| 5592 | }, | ||
| 5593 | "engines": { | ||
| 5594 | "node": ">= 0.4" | ||
| 5595 | }, | ||
| 5596 | "funding": { | ||
| 5597 | "url": "https://github.com/sponsors/ljharb" | ||
| 5598 | } | ||
| 5599 | }, | ||
| 5600 | "node_modules/string.prototype.trimend": { | ||
| 5601 | "version": "1.0.9", | ||
| 5602 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", | ||
| 5603 | "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", | ||
| 5604 | "dev": true, | ||
| 5605 | "license": "MIT", | ||
| 5606 | "dependencies": { | ||
| 5607 | "call-bind": "^1.0.8", | ||
| 5608 | "call-bound": "^1.0.2", | ||
| 5609 | "define-properties": "^1.2.1", | ||
| 5610 | "es-object-atoms": "^1.0.0" | ||
| 5611 | }, | ||
| 5612 | "engines": { | ||
| 5613 | "node": ">= 0.4" | ||
| 5614 | }, | ||
| 5615 | "funding": { | ||
| 5616 | "url": "https://github.com/sponsors/ljharb" | ||
| 5617 | } | ||
| 5618 | }, | ||
| 5619 | "node_modules/string.prototype.trimstart": { | ||
| 5620 | "version": "1.0.8", | ||
| 5621 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", | ||
| 5622 | "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", | ||
| 5623 | "dev": true, | ||
| 5624 | "license": "MIT", | ||
| 5625 | "dependencies": { | ||
| 5626 | "call-bind": "^1.0.7", | ||
| 5627 | "define-properties": "^1.2.1", | ||
| 5628 | "es-object-atoms": "^1.0.0" | ||
| 5629 | }, | ||
| 5630 | "engines": { | ||
| 5631 | "node": ">= 0.4" | ||
| 5632 | }, | ||
| 5633 | "funding": { | ||
| 5634 | "url": "https://github.com/sponsors/ljharb" | ||
| 5635 | } | ||
| 5636 | }, | ||
| 5637 | "node_modules/strip-bom": { | ||
| 5638 | "version": "3.0.0", | ||
| 5639 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", | ||
| 5640 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", | ||
| 5641 | "dev": true, | ||
| 5642 | "license": "MIT", | ||
| 5643 | "engines": { | ||
| 5644 | "node": ">=4" | ||
| 5645 | } | ||
| 5646 | }, | ||
| 5647 | "node_modules/strip-json-comments": { | ||
| 5648 | "version": "3.1.1", | ||
| 5649 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", | ||
| 5650 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", | ||
| 5651 | "dev": true, | ||
| 5652 | "license": "MIT", | ||
| 5653 | "engines": { | ||
| 5654 | "node": ">=8" | ||
| 5655 | }, | ||
| 5656 | "funding": { | ||
| 5657 | "url": "https://github.com/sponsors/sindresorhus" | ||
| 5658 | } | ||
| 5659 | }, | ||
| 5660 | "node_modules/styled-jsx": { | ||
| 5661 | "version": "5.1.6", | ||
| 5662 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", | ||
| 5663 | "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", | ||
| 5664 | "license": "MIT", | ||
| 5665 | "dependencies": { | ||
| 5666 | "client-only": "0.0.1" | ||
| 5667 | }, | ||
| 5668 | "engines": { | ||
| 5669 | "node": ">= 12.0.0" | ||
| 5670 | }, | ||
| 5671 | "peerDependencies": { | ||
| 5672 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" | ||
| 5673 | }, | ||
| 5674 | "peerDependenciesMeta": { | ||
| 5675 | "@babel/core": { | ||
| 5676 | "optional": true | ||
| 5677 | }, | ||
| 5678 | "babel-plugin-macros": { | ||
| 5679 | "optional": true | ||
| 5680 | } | ||
| 5681 | } | ||
| 5682 | }, | ||
| 5683 | "node_modules/supports-color": { | ||
| 5684 | "version": "7.2.0", | ||
| 5685 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", | ||
| 5686 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", | ||
| 5687 | "dev": true, | ||
| 5688 | "license": "MIT", | ||
| 5689 | "dependencies": { | ||
| 5690 | "has-flag": "^4.0.0" | ||
| 5691 | }, | ||
| 5692 | "engines": { | ||
| 5693 | "node": ">=8" | ||
| 5694 | } | ||
| 5695 | }, | ||
| 5696 | "node_modules/supports-preserve-symlinks-flag": { | ||
| 5697 | "version": "1.0.0", | ||
| 5698 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", | ||
| 5699 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", | ||
| 5700 | "dev": true, | ||
| 5701 | "license": "MIT", | ||
| 5702 | "engines": { | ||
| 5703 | "node": ">= 0.4" | ||
| 5704 | }, | ||
| 5705 | "funding": { | ||
| 5706 | "url": "https://github.com/sponsors/ljharb" | ||
| 5707 | } | ||
| 5708 | }, | ||
| 5709 | "node_modules/tailwindcss": { | ||
| 5710 | "version": "4.1.11", | ||
| 5711 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.11.tgz", | ||
| 5712 | "integrity": "sha512-2E9TBm6MDD/xKYe+dvJZAmg3yxIEDNRc0jwlNyDg/4Fil2QcSLjFKGVff0lAf1jjeaArlG/M75Ey/EYr/OJtBA==", | ||
| 5713 | "dev": true, | ||
| 5714 | "license": "MIT" | ||
| 5715 | }, | ||
| 5716 | "node_modules/tapable": { | ||
| 5717 | "version": "2.2.2", | ||
| 5718 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.2.tgz", | ||
| 5719 | "integrity": "sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==", | ||
| 5720 | "dev": true, | ||
| 5721 | "license": "MIT", | ||
| 5722 | "engines": { | ||
| 5723 | "node": ">=6" | ||
| 5724 | } | ||
| 5725 | }, | ||
| 5726 | "node_modules/tar": { | ||
| 5727 | "version": "7.4.3", | ||
| 5728 | "resolved": "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz", | ||
| 5729 | "integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==", | ||
| 5730 | "dev": true, | ||
| 5731 | "license": "ISC", | ||
| 5732 | "dependencies": { | ||
| 5733 | "@isaacs/fs-minipass": "^4.0.0", | ||
| 5734 | "chownr": "^3.0.0", | ||
| 5735 | "minipass": "^7.1.2", | ||
| 5736 | "minizlib": "^3.0.1", | ||
| 5737 | "mkdirp": "^3.0.1", | ||
| 5738 | "yallist": "^5.0.0" | ||
| 5739 | }, | ||
| 5740 | "engines": { | ||
| 5741 | "node": ">=18" | ||
| 5742 | } | ||
| 5743 | }, | ||
| 5744 | "node_modules/tinyglobby": { | ||
| 5745 | "version": "0.2.14", | ||
| 5746 | "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz", | ||
| 5747 | "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==", | ||
| 5748 | "dev": true, | ||
| 5749 | "license": "MIT", | ||
| 5750 | "dependencies": { | ||
| 5751 | "fdir": "^6.4.4", | ||
| 5752 | "picomatch": "^4.0.2" | ||
| 5753 | }, | ||
| 5754 | "engines": { | ||
| 5755 | "node": ">=12.0.0" | ||
| 5756 | }, | ||
| 5757 | "funding": { | ||
| 5758 | "url": "https://github.com/sponsors/SuperchupuDev" | ||
| 5759 | } | ||
| 5760 | }, | ||
| 5761 | "node_modules/tinyglobby/node_modules/fdir": { | ||
| 5762 | "version": "6.4.6", | ||
| 5763 | "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz", | ||
| 5764 | "integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==", | ||
| 5765 | "dev": true, | ||
| 5766 | "license": "MIT", | ||
| 5767 | "peerDependencies": { | ||
| 5768 | "picomatch": "^3 || ^4" | ||
| 5769 | }, | ||
| 5770 | "peerDependenciesMeta": { | ||
| 5771 | "picomatch": { | ||
| 5772 | "optional": true | ||
| 5773 | } | ||
| 5774 | } | ||
| 5775 | }, | ||
| 5776 | "node_modules/tinyglobby/node_modules/picomatch": { | ||
| 5777 | "version": "4.0.3", | ||
| 5778 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", | ||
| 5779 | "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", | ||
| 5780 | "dev": true, | ||
| 5781 | "license": "MIT", | ||
| 5782 | "engines": { | ||
| 5783 | "node": ">=12" | ||
| 5784 | }, | ||
| 5785 | "funding": { | ||
| 5786 | "url": "https://github.com/sponsors/jonschlinkert" | ||
| 5787 | } | ||
| 5788 | }, | ||
| 5789 | "node_modules/to-regex-range": { | ||
| 5790 | "version": "5.0.1", | ||
| 5791 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", | ||
| 5792 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", | ||
| 5793 | "dev": true, | ||
| 5794 | "license": "MIT", | ||
| 5795 | "dependencies": { | ||
| 5796 | "is-number": "^7.0.0" | ||
| 5797 | }, | ||
| 5798 | "engines": { | ||
| 5799 | "node": ">=8.0" | ||
| 5800 | } | ||
| 5801 | }, | ||
| 5802 | "node_modules/ts-api-utils": { | ||
| 5803 | "version": "2.1.0", | ||
| 5804 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", | ||
| 5805 | "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", | ||
| 5806 | "dev": true, | ||
| 5807 | "license": "MIT", | ||
| 5808 | "engines": { | ||
| 5809 | "node": ">=18.12" | ||
| 5810 | }, | ||
| 5811 | "peerDependencies": { | ||
| 5812 | "typescript": ">=4.8.4" | ||
| 5813 | } | ||
| 5814 | }, | ||
| 5815 | "node_modules/tsconfig-paths": { | ||
| 5816 | "version": "3.15.0", | ||
| 5817 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", | ||
| 5818 | "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", | ||
| 5819 | "dev": true, | ||
| 5820 | "license": "MIT", | ||
| 5821 | "dependencies": { | ||
| 5822 | "@types/json5": "^0.0.29", | ||
| 5823 | "json5": "^1.0.2", | ||
| 5824 | "minimist": "^1.2.6", | ||
| 5825 | "strip-bom": "^3.0.0" | ||
| 5826 | } | ||
| 5827 | }, | ||
| 5828 | "node_modules/tslib": { | ||
| 5829 | "version": "2.8.1", | ||
| 5830 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", | ||
| 5831 | "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", | ||
| 5832 | "license": "0BSD" | ||
| 5833 | }, | ||
| 5834 | "node_modules/type-check": { | ||
| 5835 | "version": "0.4.0", | ||
| 5836 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", | ||
| 5837 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", | ||
| 5838 | "dev": true, | ||
| 5839 | "license": "MIT", | ||
| 5840 | "dependencies": { | ||
| 5841 | "prelude-ls": "^1.2.1" | ||
| 5842 | }, | ||
| 5843 | "engines": { | ||
| 5844 | "node": ">= 0.8.0" | ||
| 5845 | } | ||
| 5846 | }, | ||
| 5847 | "node_modules/typed-array-buffer": { | ||
| 5848 | "version": "1.0.3", | ||
| 5849 | "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", | ||
| 5850 | "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", | ||
| 5851 | "dev": true, | ||
| 5852 | "license": "MIT", | ||
| 5853 | "dependencies": { | ||
| 5854 | "call-bound": "^1.0.3", | ||
| 5855 | "es-errors": "^1.3.0", | ||
| 5856 | "is-typed-array": "^1.1.14" | ||
| 5857 | }, | ||
| 5858 | "engines": { | ||
| 5859 | "node": ">= 0.4" | ||
| 5860 | } | ||
| 5861 | }, | ||
| 5862 | "node_modules/typed-array-byte-length": { | ||
| 5863 | "version": "1.0.3", | ||
| 5864 | "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", | ||
| 5865 | "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", | ||
| 5866 | "dev": true, | ||
| 5867 | "license": "MIT", | ||
| 5868 | "dependencies": { | ||
| 5869 | "call-bind": "^1.0.8", | ||
| 5870 | "for-each": "^0.3.3", | ||
| 5871 | "gopd": "^1.2.0", | ||
| 5872 | "has-proto": "^1.2.0", | ||
| 5873 | "is-typed-array": "^1.1.14" | ||
| 5874 | }, | ||
| 5875 | "engines": { | ||
| 5876 | "node": ">= 0.4" | ||
| 5877 | }, | ||
| 5878 | "funding": { | ||
| 5879 | "url": "https://github.com/sponsors/ljharb" | ||
| 5880 | } | ||
| 5881 | }, | ||
| 5882 | "node_modules/typed-array-byte-offset": { | ||
| 5883 | "version": "1.0.4", | ||
| 5884 | "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", | ||
| 5885 | "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", | ||
| 5886 | "dev": true, | ||
| 5887 | "license": "MIT", | ||
| 5888 | "dependencies": { | ||
| 5889 | "available-typed-arrays": "^1.0.7", | ||
| 5890 | "call-bind": "^1.0.8", | ||
| 5891 | "for-each": "^0.3.3", | ||
| 5892 | "gopd": "^1.2.0", | ||
| 5893 | "has-proto": "^1.2.0", | ||
| 5894 | "is-typed-array": "^1.1.15", | ||
| 5895 | "reflect.getprototypeof": "^1.0.9" | ||
| 5896 | }, | ||
| 5897 | "engines": { | ||
| 5898 | "node": ">= 0.4" | ||
| 5899 | }, | ||
| 5900 | "funding": { | ||
| 5901 | "url": "https://github.com/sponsors/ljharb" | ||
| 5902 | } | ||
| 5903 | }, | ||
| 5904 | "node_modules/typed-array-length": { | ||
| 5905 | "version": "1.0.7", | ||
| 5906 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", | ||
| 5907 | "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", | ||
| 5908 | "dev": true, | ||
| 5909 | "license": "MIT", | ||
| 5910 | "dependencies": { | ||
| 5911 | "call-bind": "^1.0.7", | ||
| 5912 | "for-each": "^0.3.3", | ||
| 5913 | "gopd": "^1.0.1", | ||
| 5914 | "is-typed-array": "^1.1.13", | ||
| 5915 | "possible-typed-array-names": "^1.0.0", | ||
| 5916 | "reflect.getprototypeof": "^1.0.6" | ||
| 5917 | }, | ||
| 5918 | "engines": { | ||
| 5919 | "node": ">= 0.4" | ||
| 5920 | }, | ||
| 5921 | "funding": { | ||
| 5922 | "url": "https://github.com/sponsors/ljharb" | ||
| 5923 | } | ||
| 5924 | }, | ||
| 5925 | "node_modules/typescript": { | ||
| 5926 | "version": "5.9.2", | ||
| 5927 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz", | ||
| 5928 | "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==", | ||
| 5929 | "dev": true, | ||
| 5930 | "license": "Apache-2.0", | ||
| 5931 | "bin": { | ||
| 5932 | "tsc": "bin/tsc", | ||
| 5933 | "tsserver": "bin/tsserver" | ||
| 5934 | }, | ||
| 5935 | "engines": { | ||
| 5936 | "node": ">=14.17" | ||
| 5937 | } | ||
| 5938 | }, | ||
| 5939 | "node_modules/unbox-primitive": { | ||
| 5940 | "version": "1.1.0", | ||
| 5941 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", | ||
| 5942 | "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", | ||
| 5943 | "dev": true, | ||
| 5944 | "license": "MIT", | ||
| 5945 | "dependencies": { | ||
| 5946 | "call-bound": "^1.0.3", | ||
| 5947 | "has-bigints": "^1.0.2", | ||
| 5948 | "has-symbols": "^1.1.0", | ||
| 5949 | "which-boxed-primitive": "^1.1.1" | ||
| 5950 | }, | ||
| 5951 | "engines": { | ||
| 5952 | "node": ">= 0.4" | ||
| 5953 | }, | ||
| 5954 | "funding": { | ||
| 5955 | "url": "https://github.com/sponsors/ljharb" | ||
| 5956 | } | ||
| 5957 | }, | ||
| 5958 | "node_modules/undici-types": { | ||
| 5959 | "version": "6.21.0", | ||
| 5960 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", | ||
| 5961 | "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", | ||
| 5962 | "dev": true, | ||
| 5963 | "license": "MIT" | ||
| 5964 | }, | ||
| 5965 | "node_modules/unrs-resolver": { | ||
| 5966 | "version": "1.11.1", | ||
| 5967 | "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.11.1.tgz", | ||
| 5968 | "integrity": "sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==", | ||
| 5969 | "dev": true, | ||
| 5970 | "hasInstallScript": true, | ||
| 5971 | "license": "MIT", | ||
| 5972 | "dependencies": { | ||
| 5973 | "napi-postinstall": "^0.3.0" | ||
| 5974 | }, | ||
| 5975 | "funding": { | ||
| 5976 | "url": "https://opencollective.com/unrs-resolver" | ||
| 5977 | }, | ||
| 5978 | "optionalDependencies": { | ||
| 5979 | "@unrs/resolver-binding-android-arm-eabi": "1.11.1", | ||
| 5980 | "@unrs/resolver-binding-android-arm64": "1.11.1", | ||
| 5981 | "@unrs/resolver-binding-darwin-arm64": "1.11.1", | ||
| 5982 | "@unrs/resolver-binding-darwin-x64": "1.11.1", | ||
| 5983 | "@unrs/resolver-binding-freebsd-x64": "1.11.1", | ||
| 5984 | "@unrs/resolver-binding-linux-arm-gnueabihf": "1.11.1", | ||
| 5985 | "@unrs/resolver-binding-linux-arm-musleabihf": "1.11.1", | ||
| 5986 | "@unrs/resolver-binding-linux-arm64-gnu": "1.11.1", | ||
| 5987 | "@unrs/resolver-binding-linux-arm64-musl": "1.11.1", | ||
| 5988 | "@unrs/resolver-binding-linux-ppc64-gnu": "1.11.1", | ||
| 5989 | "@unrs/resolver-binding-linux-riscv64-gnu": "1.11.1", | ||
| 5990 | "@unrs/resolver-binding-linux-riscv64-musl": "1.11.1", | ||
| 5991 | "@unrs/resolver-binding-linux-s390x-gnu": "1.11.1", | ||
| 5992 | "@unrs/resolver-binding-linux-x64-gnu": "1.11.1", | ||
| 5993 | "@unrs/resolver-binding-linux-x64-musl": "1.11.1", | ||
| 5994 | "@unrs/resolver-binding-wasm32-wasi": "1.11.1", | ||
| 5995 | "@unrs/resolver-binding-win32-arm64-msvc": "1.11.1", | ||
| 5996 | "@unrs/resolver-binding-win32-ia32-msvc": "1.11.1", | ||
| 5997 | "@unrs/resolver-binding-win32-x64-msvc": "1.11.1" | ||
| 5998 | } | ||
| 5999 | }, | ||
| 6000 | "node_modules/uri-js": { | ||
| 6001 | "version": "4.4.1", | ||
| 6002 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", | ||
| 6003 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", | ||
| 6004 | "dev": true, | ||
| 6005 | "license": "BSD-2-Clause", | ||
| 6006 | "dependencies": { | ||
| 6007 | "punycode": "^2.1.0" | ||
| 6008 | } | ||
| 6009 | }, | ||
| 6010 | "node_modules/which": { | ||
| 6011 | "version": "2.0.2", | ||
| 6012 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", | ||
| 6013 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", | ||
| 6014 | "dev": true, | ||
| 6015 | "license": "ISC", | ||
| 6016 | "dependencies": { | ||
| 6017 | "isexe": "^2.0.0" | ||
| 6018 | }, | ||
| 6019 | "bin": { | ||
| 6020 | "node-which": "bin/node-which" | ||
| 6021 | }, | ||
| 6022 | "engines": { | ||
| 6023 | "node": ">= 8" | ||
| 6024 | } | ||
| 6025 | }, | ||
| 6026 | "node_modules/which-boxed-primitive": { | ||
| 6027 | "version": "1.1.1", | ||
| 6028 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", | ||
| 6029 | "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", | ||
| 6030 | "dev": true, | ||
| 6031 | "license": "MIT", | ||
| 6032 | "dependencies": { | ||
| 6033 | "is-bigint": "^1.1.0", | ||
| 6034 | "is-boolean-object": "^1.2.1", | ||
| 6035 | "is-number-object": "^1.1.1", | ||
| 6036 | "is-string": "^1.1.1", | ||
| 6037 | "is-symbol": "^1.1.1" | ||
| 6038 | }, | ||
| 6039 | "engines": { | ||
| 6040 | "node": ">= 0.4" | ||
| 6041 | }, | ||
| 6042 | "funding": { | ||
| 6043 | "url": "https://github.com/sponsors/ljharb" | ||
| 6044 | } | ||
| 6045 | }, | ||
| 6046 | "node_modules/which-builtin-type": { | ||
| 6047 | "version": "1.2.1", | ||
| 6048 | "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", | ||
| 6049 | "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", | ||
| 6050 | "dev": true, | ||
| 6051 | "license": "MIT", | ||
| 6052 | "dependencies": { | ||
| 6053 | "call-bound": "^1.0.2", | ||
| 6054 | "function.prototype.name": "^1.1.6", | ||
| 6055 | "has-tostringtag": "^1.0.2", | ||
| 6056 | "is-async-function": "^2.0.0", | ||
| 6057 | "is-date-object": "^1.1.0", | ||
| 6058 | "is-finalizationregistry": "^1.1.0", | ||
| 6059 | "is-generator-function": "^1.0.10", | ||
| 6060 | "is-regex": "^1.2.1", | ||
| 6061 | "is-weakref": "^1.0.2", | ||
| 6062 | "isarray": "^2.0.5", | ||
| 6063 | "which-boxed-primitive": "^1.1.0", | ||
| 6064 | "which-collection": "^1.0.2", | ||
| 6065 | "which-typed-array": "^1.1.16" | ||
| 6066 | }, | ||
| 6067 | "engines": { | ||
| 6068 | "node": ">= 0.4" | ||
| 6069 | }, | ||
| 6070 | "funding": { | ||
| 6071 | "url": "https://github.com/sponsors/ljharb" | ||
| 6072 | } | ||
| 6073 | }, | ||
| 6074 | "node_modules/which-collection": { | ||
| 6075 | "version": "1.0.2", | ||
| 6076 | "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", | ||
| 6077 | "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", | ||
| 6078 | "dev": true, | ||
| 6079 | "license": "MIT", | ||
| 6080 | "dependencies": { | ||
| 6081 | "is-map": "^2.0.3", | ||
| 6082 | "is-set": "^2.0.3", | ||
| 6083 | "is-weakmap": "^2.0.2", | ||
| 6084 | "is-weakset": "^2.0.3" | ||
| 6085 | }, | ||
| 6086 | "engines": { | ||
| 6087 | "node": ">= 0.4" | ||
| 6088 | }, | ||
| 6089 | "funding": { | ||
| 6090 | "url": "https://github.com/sponsors/ljharb" | ||
| 6091 | } | ||
| 6092 | }, | ||
| 6093 | "node_modules/which-typed-array": { | ||
| 6094 | "version": "1.1.19", | ||
| 6095 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz", | ||
| 6096 | "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==", | ||
| 6097 | "dev": true, | ||
| 6098 | "license": "MIT", | ||
| 6099 | "dependencies": { | ||
| 6100 | "available-typed-arrays": "^1.0.7", | ||
| 6101 | "call-bind": "^1.0.8", | ||
| 6102 | "call-bound": "^1.0.4", | ||
| 6103 | "for-each": "^0.3.5", | ||
| 6104 | "get-proto": "^1.0.1", | ||
| 6105 | "gopd": "^1.2.0", | ||
| 6106 | "has-tostringtag": "^1.0.2" | ||
| 6107 | }, | ||
| 6108 | "engines": { | ||
| 6109 | "node": ">= 0.4" | ||
| 6110 | }, | ||
| 6111 | "funding": { | ||
| 6112 | "url": "https://github.com/sponsors/ljharb" | ||
| 6113 | } | ||
| 6114 | }, | ||
| 6115 | "node_modules/word-wrap": { | ||
| 6116 | "version": "1.2.5", | ||
| 6117 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", | ||
| 6118 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", | ||
| 6119 | "dev": true, | ||
| 6120 | "license": "MIT", | ||
| 6121 | "engines": { | ||
| 6122 | "node": ">=0.10.0" | ||
| 6123 | } | ||
| 6124 | }, | ||
| 6125 | "node_modules/yallist": { | ||
| 6126 | "version": "5.0.0", | ||
| 6127 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", | ||
| 6128 | "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", | ||
| 6129 | "dev": true, | ||
| 6130 | "license": "BlueOak-1.0.0", | ||
| 6131 | "engines": { | ||
| 6132 | "node": ">=18" | ||
| 6133 | } | ||
| 6134 | }, | ||
| 6135 | "node_modules/yocto-queue": { | ||
| 6136 | "version": "0.1.0", | ||
| 6137 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", | ||
| 6138 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", | ||
| 6139 | "dev": true, | ||
| 6140 | "license": "MIT", | ||
| 6141 | "engines": { | ||
| 6142 | "node": ">=10" | ||
| 6143 | }, | ||
| 6144 | "funding": { | ||
| 6145 | "url": "https://github.com/sponsors/sindresorhus" | ||
| 6146 | } | ||
| 6147 | } | ||
| 6148 | } | ||
| 6149 | } | ||
diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000..0852c78 --- /dev/null +++ b/frontend/package.json | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | { | ||
| 2 | "name": "frontend", | ||
| 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 | "react": "19.1.0", | ||
| 13 | "react-dom": "19.1.0", | ||
| 14 | "next": "15.4.6" | ||
| 15 | }, | ||
| 16 | "devDependencies": { | ||
| 17 | "typescript": "^5", | ||
| 18 | "@types/node": "^20", | ||
| 19 | "@types/react": "^19", | ||
| 20 | "@types/react-dom": "^19", | ||
| 21 | "@tailwindcss/postcss": "^4", | ||
| 22 | "tailwindcss": "^4", | ||
| 23 | "eslint": "^9", | ||
| 24 | "eslint-config-next": "15.4.6", | ||
| 25 | "@eslint/eslintrc": "^3" | ||
| 26 | } | ||
| 27 | } | ||
diff --git a/frontend/postcss.config.mjs b/frontend/postcss.config.mjs new file mode 100644 index 0000000..c7bcb4b --- /dev/null +++ b/frontend/postcss.config.mjs | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | const config = { | ||
| 2 | plugins: ["@tailwindcss/postcss"], | ||
| 3 | }; | ||
| 4 | |||
| 5 | export default config; | ||
diff --git a/frontend/public/file.svg b/frontend/public/file.svg new file mode 100644 index 0000000..004145c --- /dev/null +++ b/frontend/public/file.svg | |||
| @@ -0,0 +1 @@ | |||
| <svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg> \ No newline at end of file | |||
diff --git a/frontend/public/globe.svg b/frontend/public/globe.svg new file mode 100644 index 0000000..567f17b --- /dev/null +++ b/frontend/public/globe.svg | |||
| @@ -0,0 +1 @@ | |||
| <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.27 14.1a6.5 6.5 0 0 0 3.67-3.45q-1.24.21-2.7.34-.31 1.83-.97 3.1M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.48-1.52a7 7 0 0 1-.96 0H7.5a4 4 0 0 1-.84-1.32q-.38-.89-.63-2.08a40 40 0 0 0 3.92 0q-.25 1.2-.63 2.08a4 4 0 0 1-.84 1.31zm2.94-4.76q1.66-.15 2.95-.43a7 7 0 0 0 0-2.58q-1.3-.27-2.95-.43a18 18 0 0 1 0 3.44m-1.27-3.54a17 17 0 0 1 0 3.64 39 39 0 0 1-4.3 0 17 17 0 0 1 0-3.64 39 39 0 0 1 4.3 0m1.1-1.17q1.45.13 2.69.34a6.5 6.5 0 0 0-3.67-3.44q.65 1.26.98 3.1M8.48 1.5l.01.02q.41.37.84 1.31.38.89.63 2.08a40 40 0 0 0-3.92 0q.25-1.2.63-2.08a4 4 0 0 1 .85-1.32 7 7 0 0 1 .96 0m-2.75.4a6.5 6.5 0 0 0-3.67 3.44 29 29 0 0 1 2.7-.34q.31-1.83.97-3.1M4.58 6.28q-1.66.16-2.95.43a7 7 0 0 0 0 2.58q1.3.27 2.95.43a18 18 0 0 1 0-3.44m.17 4.71q-1.45-.12-2.69-.34a6.5 6.5 0 0 0 3.67 3.44q-.65-1.27-.98-3.1" fill="#666"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg> \ No newline at end of file | |||
diff --git a/frontend/public/next.svg b/frontend/public/next.svg new file mode 100644 index 0000000..5174b28 --- /dev/null +++ b/frontend/public/next.svg | |||
| @@ -0,0 +1 @@ | |||
| <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 394 80"><path fill="#000" d="M262 0h68.5v12.7h-27.2v66.6h-13.6V12.7H262V0ZM149 0v12.7H94v20.4h44.3v12.6H94v21h55v12.6H80.5V0h68.7zm34.3 0h-17.8l63.8 79.4h17.9l-32-39.7 32-39.6h-17.9l-23 28.6-23-28.6zm18.3 56.7-9-11-27.1 33.7h17.8l18.3-22.7z"/><path fill="#000" d="M81 79.3 17 0H0v79.3h13.6V17l50.2 62.3H81Zm252.6-.4c-1 0-1.8-.4-2.5-1s-1.1-1.6-1.1-2.6.3-1.8 1-2.5 1.6-1 2.6-1 1.8.3 2.5 1a3.4 3.4 0 0 1 .6 4.3 3.7 3.7 0 0 1-3 1.8zm23.2-33.5h6v23.3c0 2.1-.4 4-1.3 5.5a9.1 9.1 0 0 1-3.8 3.5c-1.6.8-3.5 1.3-5.7 1.3-2 0-3.7-.4-5.3-1s-2.8-1.8-3.7-3.2c-.9-1.3-1.4-3-1.4-5h6c.1.8.3 1.6.7 2.2s1 1.2 1.6 1.5c.7.4 1.5.5 2.4.5 1 0 1.8-.2 2.4-.6a4 4 0 0 0 1.6-1.8c.3-.8.5-1.8.5-3V45.5zm30.9 9.1a4.4 4.4 0 0 0-2-3.3 7.5 7.5 0 0 0-4.3-1.1c-1.3 0-2.4.2-3.3.5-.9.4-1.6 1-2 1.6a3.5 3.5 0 0 0-.3 4c.3.5.7.9 1.3 1.2l1.8 1 2 .5 3.2.8c1.3.3 2.5.7 3.7 1.2a13 13 0 0 1 3.2 1.8 8.1 8.1 0 0 1 3 6.5c0 2-.5 3.7-1.5 5.1a10 10 0 0 1-4.4 3.5c-1.8.8-4.1 1.2-6.8 1.2-2.6 0-4.9-.4-6.8-1.2-2-.8-3.4-2-4.5-3.5a10 10 0 0 1-1.7-5.6h6a5 5 0 0 0 3.5 4.6c1 .4 2.2.6 3.4.6 1.3 0 2.5-.2 3.5-.6 1-.4 1.8-1 2.4-1.7a4 4 0 0 0 .8-2.4c0-.9-.2-1.6-.7-2.2a11 11 0 0 0-2.1-1.4l-3.2-1-3.8-1c-2.8-.7-5-1.7-6.6-3.2a7.2 7.2 0 0 1-2.4-5.7 8 8 0 0 1 1.7-5 10 10 0 0 1 4.3-3.5c2-.8 4-1.2 6.4-1.2 2.3 0 4.4.4 6.2 1.2 1.8.8 3.2 2 4.3 3.4 1 1.4 1.5 3 1.5 5h-5.8z"/></svg> \ No newline at end of file | |||
diff --git a/frontend/public/vercel.svg b/frontend/public/vercel.svg new file mode 100644 index 0000000..7705396 --- /dev/null +++ b/frontend/public/vercel.svg | |||
| @@ -0,0 +1 @@ | |||
| <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1155 1000"><path d="m577.3 0 577.4 1000H0z" fill="#fff"/></svg> \ No newline at end of file | |||
diff --git a/frontend/public/window.svg b/frontend/public/window.svg new file mode 100644 index 0000000..b2b2a44 --- /dev/null +++ b/frontend/public/window.svg | |||
| @@ -0,0 +1 @@ | |||
| <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 2.5h13v10a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1zM0 1h16v11.5a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12.5zm3.75 4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M7 4.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" fill="#666"/></svg> \ No newline at end of file | |||
diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json new file mode 100644 index 0000000..d8b9323 --- /dev/null +++ b/frontend/tsconfig.json | |||
| @@ -0,0 +1,27 @@ | |||
| 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 | } | ||
