├── .env.local.example ├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── api │ ├── ayd │ │ └── route.ts │ └── ayd_widget │ │ └── route.ts ├── dashboard │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── next.config.mjs ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── tailwind.config.ts └── tsconfig.json /.env.local.example: -------------------------------------------------------------------------------- 1 | AYD_API_KEY=YOUR_API_KEY 2 | AYD_CHATBOT_ID=YOUR_CHATBOT_ID 3 | AYD_WIDGET_ID=YOUR_WIDGET_ID -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | .yarn/install-state.gz 8 | 9 | # testing 10 | /coverage 11 | 12 | # next.js 13 | /.next/ 14 | /out/ 15 | 16 | # production 17 | /build 18 | 19 | # misc 20 | .DS_Store 21 | *.pem 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | next-env.d.ts 37 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | This is a demo project demonstrating how to integrate AskYourDatabase chatbot into [Next.js](https://nextjs.org/). 3 | 4 | ## Getting Started 5 | 6 | First, run the development server: 7 | 8 | ```bash 9 | npm install 10 | npm run dev 11 | ``` 12 | 13 | ## Prepare enviroment variables 14 | 15 | Copy `.env.local.example` to `.env.local` and replace with your own enviroment variable. 16 | 17 | `AYD_API_KEY` can be created in [API Key](https://www.askyourdatabase.com/dashboard/api-key) page. 18 | 19 | `AYD_CHATBOT_ID` can be found in the URL, for example `https://www.askyourdatabase.com/dashboard/chatbot/12345678-1234-1234-1234-123456789012` the chatbot ID is `12345678-1234-1234-1234-123456789012`. 20 | 21 | ## Deploy on Vercel 22 | 23 | [![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2FAskYourDatabase%2Fnextjs-chatbot&env=AYD_API_KEY,AYD_CHATBOT_ID,AYD_WIDGET_ID&envDescription=API_KEY%20can%20be%20created%20at%20https%3A%2F%2Fwww.askyourdatabase.com%2Fdashboard%2Fapi-key.%20CHATBOT_ID%20can%20be%20found%20in%20chatbot%20edit%20URL.) -------------------------------------------------------------------------------- /app/api/ayd/route.ts: -------------------------------------------------------------------------------- 1 | import { NextRequest, NextResponse } from "next/server"; 2 | 3 | export const revalidate = 0; 4 | 5 | export const dynamic = "force-dynamic"; 6 | 7 | export async function POST(req: NextRequest) { 8 | 9 | const { url } = await fetch("https://www.askyourdatabase.com/api/chatbot/v2/session", { 10 | method: "POST", 11 | headers: { 12 | "Content-Type": "application/json", 13 | "Authorization": `Bearer ${process.env.AYD_API_KEY}` 14 | }, 15 | body: JSON.stringify({ 16 | "chatbotid": process.env.AYD_CHATBOT_ID, 17 | "name": "Sheldon", 18 | "email": "test@gmail.com" 19 | }), 20 | }).then((res) => res.json()); 21 | 22 | return NextResponse.json({ url }); 23 | } -------------------------------------------------------------------------------- /app/api/ayd_widget/route.ts: -------------------------------------------------------------------------------- 1 | import { NextRequest, NextResponse } from "next/server"; 2 | 3 | export const revalidate = 0; 4 | 5 | export const dynamic = "force-dynamic"; 6 | 7 | export async function POST(req: NextRequest) { 8 | 9 | const body = await fetch("https://www.askyourdatabase.com/api/widget/v2/session", { 10 | method: "POST", 11 | headers: { 12 | "Content-Type": "application/json", 13 | "Authorization": `Bearer ${process.env.AYD_API_KEY}` 14 | }, 15 | body: JSON.stringify({ 16 | "widgetId": process.env.AYD_WIDGET_ID, 17 | "name": "Sheldon", 18 | "email": "test@gmail.com" 19 | }), 20 | }).then((res) => res.json()); 21 | 22 | console.log(body) 23 | 24 | return NextResponse.json(body); 25 | } -------------------------------------------------------------------------------- /app/dashboard/page.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import { useEffect, useState } from "react"; 3 | 4 | export default function Home() { 5 | const [iframeUrl, setIframeUrl] = useState(""); 6 | 7 | useEffect(() => { 8 | // 第一步:获取初始 URL 9 | fetch("/api/ayd_widget", { 10 | method: "POST", 11 | headers: { 12 | "Content-Type": "application/json", 13 | }, 14 | body: JSON.stringify({}), 15 | }) 16 | .then((res) => res.json()) 17 | .then(({ url }) => { 18 | setIframeUrl(url); 19 | }); 20 | }, []); 21 | 22 | 23 | return ( 24 |
25 | 29 |
30 | ); 31 | } -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AskYourDatabase/nextjs-chatbot/10c5675b632ab2495f0ef95f3b3a04bcb8e71651/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | :root { 6 | --foreground-rgb: 0, 0, 0; 7 | --background-start-rgb: 214, 219, 220; 8 | --background-end-rgb: 255, 255, 255; 9 | } -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- 1 | import type { Metadata } from "next"; 2 | import { Inter } from "next/font/google"; 3 | import "./globals.css"; 4 | 5 | const inter = Inter({ subsets: ["latin"] }); 6 | 7 | export const metadata: Metadata = { 8 | title: "Create Next App", 9 | description: "Generated by create next app", 10 | }; 11 | 12 | export default function RootLayout({ 13 | children, 14 | }: Readonly<{ 15 | children: React.ReactNode; 16 | }>) { 17 | return ( 18 | 19 | {children} 20 | 21 | ); 22 | } 23 | -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import { useEffect, useState } from "react"; 3 | 4 | export default function Home() { 5 | const [iframeUrl, setIframeUrl] = useState(""); 6 | 7 | useEffect(() => { 8 | fetch("/api/ayd", { 9 | method: "POST", 10 | headers: { 11 | "Content-Type": "application/json", 12 | }, 13 | body: JSON.stringify({}), 14 | }) 15 | .then((res) => res.json()) 16 | .then(({ url }) => { 17 | setIframeUrl(url); 18 | }); 19 | }, []); 20 | 21 | return ( 22 |
23 | 32 |
33 | ); 34 | } 35 | -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = {}; 3 | 4 | export default nextConfig; 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nextjs", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "react": "^18", 13 | "react-dom": "^18", 14 | "next": "14.1.4" 15 | }, 16 | "devDependencies": { 17 | "typescript": "^5", 18 | "@types/node": "^20", 19 | "@types/react": "^18", 20 | "@types/react-dom": "^18", 21 | "autoprefixer": "^10.0.1", 22 | "postcss": "^8", 23 | "tailwindcss": "^3.3.0", 24 | "eslint": "^8", 25 | "eslint-config-next": "14.1.4" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | next: 12 | specifier: 14.1.4 13 | version: 14.1.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) 14 | react: 15 | specifier: ^18 16 | version: 18.2.0 17 | react-dom: 18 | specifier: ^18 19 | version: 18.2.0(react@18.2.0) 20 | devDependencies: 21 | '@types/node': 22 | specifier: ^20 23 | version: 20.12.7 24 | '@types/react': 25 | specifier: ^18 26 | version: 18.2.75 27 | '@types/react-dom': 28 | specifier: ^18 29 | version: 18.2.24 30 | autoprefixer: 31 | specifier: ^10.0.1 32 | version: 10.4.19(postcss@8.4.38) 33 | eslint: 34 | specifier: ^8 35 | version: 8.57.0 36 | eslint-config-next: 37 | specifier: 14.1.4 38 | version: 14.1.4(eslint@8.57.0)(typescript@5.4.5) 39 | postcss: 40 | specifier: ^8 41 | version: 8.4.38 42 | tailwindcss: 43 | specifier: ^3.3.0 44 | version: 3.4.3 45 | typescript: 46 | specifier: ^5 47 | version: 5.4.5 48 | 49 | packages: 50 | 51 | '@aashutoshrathi/word-wrap@1.2.6': 52 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} 53 | engines: {node: '>=0.10.0'} 54 | 55 | '@alloc/quick-lru@5.2.0': 56 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} 57 | engines: {node: '>=10'} 58 | 59 | '@babel/runtime@7.24.4': 60 | resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==} 61 | engines: {node: '>=6.9.0'} 62 | 63 | '@eslint-community/eslint-utils@4.4.0': 64 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 65 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 66 | peerDependencies: 67 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 68 | 69 | '@eslint-community/regexpp@4.10.0': 70 | resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} 71 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 72 | 73 | '@eslint/eslintrc@2.1.4': 74 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} 75 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 76 | 77 | '@eslint/js@8.57.0': 78 | resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} 79 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 80 | 81 | '@humanwhocodes/config-array@0.11.14': 82 | resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} 83 | engines: {node: '>=10.10.0'} 84 | deprecated: Use @eslint/config-array instead 85 | 86 | '@humanwhocodes/module-importer@1.0.1': 87 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 88 | engines: {node: '>=12.22'} 89 | 90 | '@humanwhocodes/object-schema@2.0.3': 91 | resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} 92 | deprecated: Use @eslint/object-schema instead 93 | 94 | '@isaacs/cliui@8.0.2': 95 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 96 | engines: {node: '>=12'} 97 | 98 | '@jridgewell/gen-mapping@0.3.5': 99 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} 100 | engines: {node: '>=6.0.0'} 101 | 102 | '@jridgewell/resolve-uri@3.1.2': 103 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 104 | engines: {node: '>=6.0.0'} 105 | 106 | '@jridgewell/set-array@1.2.1': 107 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 108 | engines: {node: '>=6.0.0'} 109 | 110 | '@jridgewell/sourcemap-codec@1.4.15': 111 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 112 | 113 | '@jridgewell/trace-mapping@0.3.25': 114 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 115 | 116 | '@next/env@14.1.4': 117 | resolution: {integrity: sha512-e7X7bbn3Z6DWnDi75UWn+REgAbLEqxI8Tq2pkFOFAMpWAWApz/YCUhtWMWn410h8Q2fYiYL7Yg5OlxMOCfFjJQ==} 118 | 119 | '@next/eslint-plugin-next@14.1.4': 120 | resolution: {integrity: sha512-n4zYNLSyCo0Ln5b7qxqQeQ34OZKXwgbdcx6kmkQbywr+0k6M3Vinft0T72R6CDAcDrne2IAgSud4uWCzFgc5HA==} 121 | 122 | '@next/swc-darwin-arm64@14.1.4': 123 | resolution: {integrity: sha512-ubmUkbmW65nIAOmoxT1IROZdmmJMmdYvXIe8211send9ZYJu+SqxSnJM4TrPj9wmL6g9Atvj0S/2cFmMSS99jg==} 124 | engines: {node: '>= 10'} 125 | cpu: [arm64] 126 | os: [darwin] 127 | 128 | '@next/swc-darwin-x64@14.1.4': 129 | resolution: {integrity: sha512-b0Xo1ELj3u7IkZWAKcJPJEhBop117U78l70nfoQGo4xUSvv0PJSTaV4U9xQBLvZlnjsYkc8RwQN1HoH/oQmLlQ==} 130 | engines: {node: '>= 10'} 131 | cpu: [x64] 132 | os: [darwin] 133 | 134 | '@next/swc-linux-arm64-gnu@14.1.4': 135 | resolution: {integrity: sha512-457G0hcLrdYA/u1O2XkRMsDKId5VKe3uKPvrKVOyuARa6nXrdhJOOYU9hkKKyQTMru1B8qEP78IAhf/1XnVqKA==} 136 | engines: {node: '>= 10'} 137 | cpu: [arm64] 138 | os: [linux] 139 | 140 | '@next/swc-linux-arm64-musl@14.1.4': 141 | resolution: {integrity: sha512-l/kMG+z6MB+fKA9KdtyprkTQ1ihlJcBh66cf0HvqGP+rXBbOXX0dpJatjZbHeunvEHoBBS69GYQG5ry78JMy3g==} 142 | engines: {node: '>= 10'} 143 | cpu: [arm64] 144 | os: [linux] 145 | 146 | '@next/swc-linux-x64-gnu@14.1.4': 147 | resolution: {integrity: sha512-BapIFZ3ZRnvQ1uWbmqEGJuPT9cgLwvKtxhK/L2t4QYO7l+/DxXuIGjvp1x8rvfa/x1FFSsipERZK70pewbtJtw==} 148 | engines: {node: '>= 10'} 149 | cpu: [x64] 150 | os: [linux] 151 | 152 | '@next/swc-linux-x64-musl@14.1.4': 153 | resolution: {integrity: sha512-mqVxTwk4XuBl49qn2A5UmzFImoL1iLm0KQQwtdRJRKl21ylQwwGCxJtIYo2rbfkZHoSKlh/YgztY0qH3wG1xIg==} 154 | engines: {node: '>= 10'} 155 | cpu: [x64] 156 | os: [linux] 157 | 158 | '@next/swc-win32-arm64-msvc@14.1.4': 159 | resolution: {integrity: sha512-xzxF4ErcumXjO2Pvg/wVGrtr9QQJLk3IyQX1ddAC/fi6/5jZCZ9xpuL9Tzc4KPWMFq8GGWFVDMshZOdHGdkvag==} 160 | engines: {node: '>= 10'} 161 | cpu: [arm64] 162 | os: [win32] 163 | 164 | '@next/swc-win32-ia32-msvc@14.1.4': 165 | resolution: {integrity: sha512-WZiz8OdbkpRw6/IU/lredZWKKZopUMhcI2F+XiMAcPja0uZYdMTZQRoQ0WZcvinn9xZAidimE7tN9W5v9Yyfyw==} 166 | engines: {node: '>= 10'} 167 | cpu: [ia32] 168 | os: [win32] 169 | 170 | '@next/swc-win32-x64-msvc@14.1.4': 171 | resolution: {integrity: sha512-4Rto21sPfw555sZ/XNLqfxDUNeLhNYGO2dlPqsnuCg8N8a2a9u1ltqBOPQ4vj1Gf7eJC0W2hHG2eYUHuiXgY2w==} 172 | engines: {node: '>= 10'} 173 | cpu: [x64] 174 | os: [win32] 175 | 176 | '@nodelib/fs.scandir@2.1.5': 177 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 178 | engines: {node: '>= 8'} 179 | 180 | '@nodelib/fs.stat@2.0.5': 181 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 182 | engines: {node: '>= 8'} 183 | 184 | '@nodelib/fs.walk@1.2.8': 185 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 186 | engines: {node: '>= 8'} 187 | 188 | '@pkgjs/parseargs@0.11.0': 189 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 190 | engines: {node: '>=14'} 191 | 192 | '@rushstack/eslint-patch@1.10.2': 193 | resolution: {integrity: sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==} 194 | 195 | '@swc/helpers@0.5.2': 196 | resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==} 197 | 198 | '@types/json5@0.0.29': 199 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 200 | 201 | '@types/node@20.12.7': 202 | resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==} 203 | 204 | '@types/prop-types@15.7.12': 205 | resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} 206 | 207 | '@types/react-dom@18.2.24': 208 | resolution: {integrity: sha512-cN6upcKd8zkGy4HU9F1+/s98Hrp6D4MOcippK4PoE8OZRngohHZpbJn1GsaDLz87MqvHNoT13nHvNqM9ocRHZg==} 209 | 210 | '@types/react@18.2.75': 211 | resolution: {integrity: sha512-+DNnF7yc5y0bHkBTiLKqXFe+L4B3nvOphiMY3tuA5X10esmjqk7smyBZzbGTy2vsiy/Bnzj8yFIBL8xhRacoOg==} 212 | 213 | '@typescript-eslint/parser@6.21.0': 214 | resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==} 215 | engines: {node: ^16.0.0 || >=18.0.0} 216 | peerDependencies: 217 | eslint: ^7.0.0 || ^8.0.0 218 | typescript: '*' 219 | peerDependenciesMeta: 220 | typescript: 221 | optional: true 222 | 223 | '@typescript-eslint/scope-manager@6.21.0': 224 | resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==} 225 | engines: {node: ^16.0.0 || >=18.0.0} 226 | 227 | '@typescript-eslint/types@6.21.0': 228 | resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==} 229 | engines: {node: ^16.0.0 || >=18.0.0} 230 | 231 | '@typescript-eslint/typescript-estree@6.21.0': 232 | resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} 233 | engines: {node: ^16.0.0 || >=18.0.0} 234 | peerDependencies: 235 | typescript: '*' 236 | peerDependenciesMeta: 237 | typescript: 238 | optional: true 239 | 240 | '@typescript-eslint/visitor-keys@6.21.0': 241 | resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==} 242 | engines: {node: ^16.0.0 || >=18.0.0} 243 | 244 | '@ungap/structured-clone@1.2.0': 245 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 246 | 247 | acorn-jsx@5.3.2: 248 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 249 | peerDependencies: 250 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 251 | 252 | acorn@8.11.3: 253 | resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} 254 | engines: {node: '>=0.4.0'} 255 | hasBin: true 256 | 257 | ajv@6.12.6: 258 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 259 | 260 | ansi-regex@5.0.1: 261 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 262 | engines: {node: '>=8'} 263 | 264 | ansi-regex@6.0.1: 265 | resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} 266 | engines: {node: '>=12'} 267 | 268 | ansi-styles@4.3.0: 269 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 270 | engines: {node: '>=8'} 271 | 272 | ansi-styles@6.2.1: 273 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 274 | engines: {node: '>=12'} 275 | 276 | any-promise@1.3.0: 277 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 278 | 279 | anymatch@3.1.3: 280 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 281 | engines: {node: '>= 8'} 282 | 283 | arg@5.0.2: 284 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 285 | 286 | argparse@2.0.1: 287 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 288 | 289 | aria-query@5.3.0: 290 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} 291 | 292 | array-buffer-byte-length@1.0.1: 293 | resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} 294 | engines: {node: '>= 0.4'} 295 | 296 | array-includes@3.1.8: 297 | resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} 298 | engines: {node: '>= 0.4'} 299 | 300 | array-union@2.1.0: 301 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 302 | engines: {node: '>=8'} 303 | 304 | array.prototype.findlast@1.2.5: 305 | resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} 306 | engines: {node: '>= 0.4'} 307 | 308 | array.prototype.findlastindex@1.2.5: 309 | resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} 310 | engines: {node: '>= 0.4'} 311 | 312 | array.prototype.flat@1.3.2: 313 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} 314 | engines: {node: '>= 0.4'} 315 | 316 | array.prototype.flatmap@1.3.2: 317 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} 318 | engines: {node: '>= 0.4'} 319 | 320 | array.prototype.toreversed@1.1.2: 321 | resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} 322 | 323 | array.prototype.tosorted@1.1.3: 324 | resolution: {integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==} 325 | 326 | arraybuffer.prototype.slice@1.0.3: 327 | resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} 328 | engines: {node: '>= 0.4'} 329 | 330 | ast-types-flow@0.0.8: 331 | resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} 332 | 333 | autoprefixer@10.4.19: 334 | resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==} 335 | engines: {node: ^10 || ^12 || >=14} 336 | hasBin: true 337 | peerDependencies: 338 | postcss: ^8.1.0 339 | 340 | available-typed-arrays@1.0.7: 341 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 342 | engines: {node: '>= 0.4'} 343 | 344 | axe-core@4.7.0: 345 | resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} 346 | engines: {node: '>=4'} 347 | 348 | axobject-query@3.2.1: 349 | resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} 350 | 351 | balanced-match@1.0.2: 352 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 353 | 354 | binary-extensions@2.3.0: 355 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 356 | engines: {node: '>=8'} 357 | 358 | brace-expansion@1.1.11: 359 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 360 | 361 | brace-expansion@2.0.1: 362 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 363 | 364 | braces@3.0.3: 365 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 366 | engines: {node: '>=8'} 367 | 368 | browserslist@4.23.0: 369 | resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==} 370 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 371 | hasBin: true 372 | 373 | busboy@1.6.0: 374 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 375 | engines: {node: '>=10.16.0'} 376 | 377 | call-bind@1.0.7: 378 | resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} 379 | engines: {node: '>= 0.4'} 380 | 381 | callsites@3.1.0: 382 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 383 | engines: {node: '>=6'} 384 | 385 | camelcase-css@2.0.1: 386 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 387 | engines: {node: '>= 6'} 388 | 389 | caniuse-lite@1.0.30001608: 390 | resolution: {integrity: sha512-cjUJTQkk9fQlJR2s4HMuPMvTiRggl0rAVMtthQuyOlDWuqHXqN8azLq+pi8B2TjwKJ32diHjUqRIKeFX4z1FoA==} 391 | 392 | chalk@4.1.2: 393 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 394 | engines: {node: '>=10'} 395 | 396 | chokidar@3.6.0: 397 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 398 | engines: {node: '>= 8.10.0'} 399 | 400 | client-only@0.0.1: 401 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} 402 | 403 | color-convert@2.0.1: 404 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 405 | engines: {node: '>=7.0.0'} 406 | 407 | color-name@1.1.4: 408 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 409 | 410 | commander@4.1.1: 411 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 412 | engines: {node: '>= 6'} 413 | 414 | concat-map@0.0.1: 415 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 416 | 417 | cross-spawn@7.0.3: 418 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 419 | engines: {node: '>= 8'} 420 | 421 | cssesc@3.0.0: 422 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 423 | engines: {node: '>=4'} 424 | hasBin: true 425 | 426 | csstype@3.1.3: 427 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 428 | 429 | damerau-levenshtein@1.0.8: 430 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 431 | 432 | data-view-buffer@1.0.1: 433 | resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} 434 | engines: {node: '>= 0.4'} 435 | 436 | data-view-byte-length@1.0.1: 437 | resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} 438 | engines: {node: '>= 0.4'} 439 | 440 | data-view-byte-offset@1.0.0: 441 | resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} 442 | engines: {node: '>= 0.4'} 443 | 444 | debug@3.2.7: 445 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 446 | peerDependencies: 447 | supports-color: '*' 448 | peerDependenciesMeta: 449 | supports-color: 450 | optional: true 451 | 452 | debug@4.3.4: 453 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 454 | engines: {node: '>=6.0'} 455 | peerDependencies: 456 | supports-color: '*' 457 | peerDependenciesMeta: 458 | supports-color: 459 | optional: true 460 | 461 | deep-is@0.1.4: 462 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 463 | 464 | define-data-property@1.1.4: 465 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 466 | engines: {node: '>= 0.4'} 467 | 468 | define-properties@1.2.1: 469 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 470 | engines: {node: '>= 0.4'} 471 | 472 | dequal@2.0.3: 473 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 474 | engines: {node: '>=6'} 475 | 476 | didyoumean@1.2.2: 477 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 478 | 479 | dir-glob@3.0.1: 480 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 481 | engines: {node: '>=8'} 482 | 483 | dlv@1.1.3: 484 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 485 | 486 | doctrine@2.1.0: 487 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 488 | engines: {node: '>=0.10.0'} 489 | 490 | doctrine@3.0.0: 491 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 492 | engines: {node: '>=6.0.0'} 493 | 494 | eastasianwidth@0.2.0: 495 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 496 | 497 | electron-to-chromium@1.4.733: 498 | resolution: {integrity: sha512-gUI9nhI2iBGF0OaYYLKOaOtliFMl+Bt1rY7VmEjwxOxqoYLub/D9xmduPEhbw2imE6gYkJKhIE5it+KE2ulVxQ==} 499 | 500 | emoji-regex@8.0.0: 501 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 502 | 503 | emoji-regex@9.2.2: 504 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 505 | 506 | enhanced-resolve@5.16.0: 507 | resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==} 508 | engines: {node: '>=10.13.0'} 509 | 510 | es-abstract@1.23.3: 511 | resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} 512 | engines: {node: '>= 0.4'} 513 | 514 | es-define-property@1.0.0: 515 | resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} 516 | engines: {node: '>= 0.4'} 517 | 518 | es-errors@1.3.0: 519 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 520 | engines: {node: '>= 0.4'} 521 | 522 | es-iterator-helpers@1.0.18: 523 | resolution: {integrity: sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==} 524 | engines: {node: '>= 0.4'} 525 | 526 | es-object-atoms@1.0.0: 527 | resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} 528 | engines: {node: '>= 0.4'} 529 | 530 | es-set-tostringtag@2.0.3: 531 | resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} 532 | engines: {node: '>= 0.4'} 533 | 534 | es-shim-unscopables@1.0.2: 535 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 536 | 537 | es-to-primitive@1.2.1: 538 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 539 | engines: {node: '>= 0.4'} 540 | 541 | escalade@3.1.2: 542 | resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} 543 | engines: {node: '>=6'} 544 | 545 | escape-string-regexp@4.0.0: 546 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 547 | engines: {node: '>=10'} 548 | 549 | eslint-config-next@14.1.4: 550 | resolution: {integrity: sha512-cihIahbhYAWwXJwZkAaRPpUi5t9aOi/HdfWXOjZeUOqNWXHD8X22kd1KG58Dc3MVaRx3HoR/oMGk2ltcrqDn8g==} 551 | peerDependencies: 552 | eslint: ^7.23.0 || ^8.0.0 553 | typescript: '>=3.3.1' 554 | peerDependenciesMeta: 555 | typescript: 556 | optional: true 557 | 558 | eslint-import-resolver-node@0.3.9: 559 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 560 | 561 | eslint-import-resolver-typescript@3.6.1: 562 | resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} 563 | engines: {node: ^14.18.0 || >=16.0.0} 564 | peerDependencies: 565 | eslint: '*' 566 | eslint-plugin-import: '*' 567 | 568 | eslint-module-utils@2.8.1: 569 | resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} 570 | engines: {node: '>=4'} 571 | peerDependencies: 572 | '@typescript-eslint/parser': '*' 573 | eslint: '*' 574 | eslint-import-resolver-node: '*' 575 | eslint-import-resolver-typescript: '*' 576 | eslint-import-resolver-webpack: '*' 577 | peerDependenciesMeta: 578 | '@typescript-eslint/parser': 579 | optional: true 580 | eslint: 581 | optional: true 582 | eslint-import-resolver-node: 583 | optional: true 584 | eslint-import-resolver-typescript: 585 | optional: true 586 | eslint-import-resolver-webpack: 587 | optional: true 588 | 589 | eslint-plugin-import@2.29.1: 590 | resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} 591 | engines: {node: '>=4'} 592 | peerDependencies: 593 | '@typescript-eslint/parser': '*' 594 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 595 | peerDependenciesMeta: 596 | '@typescript-eslint/parser': 597 | optional: true 598 | 599 | eslint-plugin-jsx-a11y@6.8.0: 600 | resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} 601 | engines: {node: '>=4.0'} 602 | peerDependencies: 603 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 604 | 605 | eslint-plugin-react-hooks@4.6.0: 606 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} 607 | engines: {node: '>=10'} 608 | peerDependencies: 609 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 610 | 611 | eslint-plugin-react@7.34.1: 612 | resolution: {integrity: sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==} 613 | engines: {node: '>=4'} 614 | peerDependencies: 615 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 616 | 617 | eslint-scope@7.2.2: 618 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 619 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 620 | 621 | eslint-visitor-keys@3.4.3: 622 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 623 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 624 | 625 | eslint@8.57.0: 626 | resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} 627 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 628 | hasBin: true 629 | 630 | espree@9.6.1: 631 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 632 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 633 | 634 | esquery@1.5.0: 635 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 636 | engines: {node: '>=0.10'} 637 | 638 | esrecurse@4.3.0: 639 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 640 | engines: {node: '>=4.0'} 641 | 642 | estraverse@5.3.0: 643 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 644 | engines: {node: '>=4.0'} 645 | 646 | esutils@2.0.3: 647 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 648 | engines: {node: '>=0.10.0'} 649 | 650 | fast-deep-equal@3.1.3: 651 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 652 | 653 | fast-glob@3.3.2: 654 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 655 | engines: {node: '>=8.6.0'} 656 | 657 | fast-json-stable-stringify@2.1.0: 658 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 659 | 660 | fast-levenshtein@2.0.6: 661 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 662 | 663 | fastq@1.17.1: 664 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 665 | 666 | file-entry-cache@6.0.1: 667 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 668 | engines: {node: ^10.12.0 || >=12.0.0} 669 | 670 | fill-range@7.1.1: 671 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 672 | engines: {node: '>=8'} 673 | 674 | find-up@5.0.0: 675 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 676 | engines: {node: '>=10'} 677 | 678 | flat-cache@3.2.0: 679 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} 680 | engines: {node: ^10.12.0 || >=12.0.0} 681 | 682 | flatted@3.3.1: 683 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} 684 | 685 | for-each@0.3.3: 686 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 687 | 688 | foreground-child@3.1.1: 689 | resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} 690 | engines: {node: '>=14'} 691 | 692 | fraction.js@4.3.7: 693 | resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} 694 | 695 | fs.realpath@1.0.0: 696 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 697 | 698 | fsevents@2.3.3: 699 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 700 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 701 | os: [darwin] 702 | 703 | function-bind@1.1.2: 704 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 705 | 706 | function.prototype.name@1.1.6: 707 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} 708 | engines: {node: '>= 0.4'} 709 | 710 | functions-have-names@1.2.3: 711 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 712 | 713 | get-intrinsic@1.2.4: 714 | resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} 715 | engines: {node: '>= 0.4'} 716 | 717 | get-symbol-description@1.0.2: 718 | resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} 719 | engines: {node: '>= 0.4'} 720 | 721 | get-tsconfig@4.7.3: 722 | resolution: {integrity: sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==} 723 | 724 | glob-parent@5.1.2: 725 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 726 | engines: {node: '>= 6'} 727 | 728 | glob-parent@6.0.2: 729 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 730 | engines: {node: '>=10.13.0'} 731 | 732 | glob@10.3.10: 733 | resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} 734 | engines: {node: '>=16 || 14 >=14.17'} 735 | hasBin: true 736 | 737 | glob@10.3.12: 738 | resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==} 739 | engines: {node: '>=16 || 14 >=14.17'} 740 | hasBin: true 741 | 742 | glob@7.2.3: 743 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 744 | deprecated: Glob versions prior to v9 are no longer supported 745 | 746 | globals@13.24.0: 747 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 748 | engines: {node: '>=8'} 749 | 750 | globalthis@1.0.3: 751 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 752 | engines: {node: '>= 0.4'} 753 | 754 | globby@11.1.0: 755 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 756 | engines: {node: '>=10'} 757 | 758 | gopd@1.0.1: 759 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 760 | 761 | graceful-fs@4.2.11: 762 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 763 | 764 | graphemer@1.4.0: 765 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 766 | 767 | has-bigints@1.0.2: 768 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 769 | 770 | has-flag@4.0.0: 771 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 772 | engines: {node: '>=8'} 773 | 774 | has-property-descriptors@1.0.2: 775 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 776 | 777 | has-proto@1.0.3: 778 | resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} 779 | engines: {node: '>= 0.4'} 780 | 781 | has-symbols@1.0.3: 782 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 783 | engines: {node: '>= 0.4'} 784 | 785 | has-tostringtag@1.0.2: 786 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 787 | engines: {node: '>= 0.4'} 788 | 789 | hasown@2.0.2: 790 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 791 | engines: {node: '>= 0.4'} 792 | 793 | ignore@5.3.1: 794 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} 795 | engines: {node: '>= 4'} 796 | 797 | import-fresh@3.3.0: 798 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 799 | engines: {node: '>=6'} 800 | 801 | imurmurhash@0.1.4: 802 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 803 | engines: {node: '>=0.8.19'} 804 | 805 | inflight@1.0.6: 806 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 807 | deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. 808 | 809 | inherits@2.0.4: 810 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 811 | 812 | internal-slot@1.0.7: 813 | resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} 814 | engines: {node: '>= 0.4'} 815 | 816 | is-array-buffer@3.0.4: 817 | resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} 818 | engines: {node: '>= 0.4'} 819 | 820 | is-async-function@2.0.0: 821 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} 822 | engines: {node: '>= 0.4'} 823 | 824 | is-bigint@1.0.4: 825 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 826 | 827 | is-binary-path@2.1.0: 828 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 829 | engines: {node: '>=8'} 830 | 831 | is-boolean-object@1.1.2: 832 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 833 | engines: {node: '>= 0.4'} 834 | 835 | is-callable@1.2.7: 836 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 837 | engines: {node: '>= 0.4'} 838 | 839 | is-core-module@2.13.1: 840 | resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} 841 | 842 | is-data-view@1.0.1: 843 | resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} 844 | engines: {node: '>= 0.4'} 845 | 846 | is-date-object@1.0.5: 847 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 848 | engines: {node: '>= 0.4'} 849 | 850 | is-extglob@2.1.1: 851 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 852 | engines: {node: '>=0.10.0'} 853 | 854 | is-finalizationregistry@1.0.2: 855 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} 856 | 857 | is-fullwidth-code-point@3.0.0: 858 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 859 | engines: {node: '>=8'} 860 | 861 | is-generator-function@1.0.10: 862 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} 863 | engines: {node: '>= 0.4'} 864 | 865 | is-glob@4.0.3: 866 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 867 | engines: {node: '>=0.10.0'} 868 | 869 | is-map@2.0.3: 870 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 871 | engines: {node: '>= 0.4'} 872 | 873 | is-negative-zero@2.0.3: 874 | resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} 875 | engines: {node: '>= 0.4'} 876 | 877 | is-number-object@1.0.7: 878 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 879 | engines: {node: '>= 0.4'} 880 | 881 | is-number@7.0.0: 882 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 883 | engines: {node: '>=0.12.0'} 884 | 885 | is-path-inside@3.0.3: 886 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 887 | engines: {node: '>=8'} 888 | 889 | is-regex@1.1.4: 890 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 891 | engines: {node: '>= 0.4'} 892 | 893 | is-set@2.0.3: 894 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} 895 | engines: {node: '>= 0.4'} 896 | 897 | is-shared-array-buffer@1.0.3: 898 | resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} 899 | engines: {node: '>= 0.4'} 900 | 901 | is-string@1.0.7: 902 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 903 | engines: {node: '>= 0.4'} 904 | 905 | is-symbol@1.0.4: 906 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 907 | engines: {node: '>= 0.4'} 908 | 909 | is-typed-array@1.1.13: 910 | resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} 911 | engines: {node: '>= 0.4'} 912 | 913 | is-weakmap@2.0.2: 914 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} 915 | engines: {node: '>= 0.4'} 916 | 917 | is-weakref@1.0.2: 918 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 919 | 920 | is-weakset@2.0.3: 921 | resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} 922 | engines: {node: '>= 0.4'} 923 | 924 | isarray@2.0.5: 925 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 926 | 927 | isexe@2.0.0: 928 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 929 | 930 | iterator.prototype@1.1.2: 931 | resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} 932 | 933 | jackspeak@2.3.6: 934 | resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} 935 | engines: {node: '>=14'} 936 | 937 | jiti@1.21.0: 938 | resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} 939 | hasBin: true 940 | 941 | js-tokens@4.0.0: 942 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 943 | 944 | js-yaml@4.1.0: 945 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 946 | hasBin: true 947 | 948 | json-buffer@3.0.1: 949 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 950 | 951 | json-schema-traverse@0.4.1: 952 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 953 | 954 | json-stable-stringify-without-jsonify@1.0.1: 955 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 956 | 957 | json5@1.0.2: 958 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 959 | hasBin: true 960 | 961 | jsx-ast-utils@3.3.5: 962 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} 963 | engines: {node: '>=4.0'} 964 | 965 | keyv@4.5.4: 966 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 967 | 968 | language-subtag-registry@0.3.22: 969 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} 970 | 971 | language-tags@1.0.9: 972 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} 973 | engines: {node: '>=0.10'} 974 | 975 | levn@0.4.1: 976 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 977 | engines: {node: '>= 0.8.0'} 978 | 979 | lilconfig@2.1.0: 980 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 981 | engines: {node: '>=10'} 982 | 983 | lilconfig@3.1.1: 984 | resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==} 985 | engines: {node: '>=14'} 986 | 987 | lines-and-columns@1.2.4: 988 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 989 | 990 | locate-path@6.0.0: 991 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 992 | engines: {node: '>=10'} 993 | 994 | lodash.merge@4.6.2: 995 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 996 | 997 | loose-envify@1.4.0: 998 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 999 | hasBin: true 1000 | 1001 | lru-cache@10.2.0: 1002 | resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==} 1003 | engines: {node: 14 || >=16.14} 1004 | 1005 | lru-cache@6.0.0: 1006 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 1007 | engines: {node: '>=10'} 1008 | 1009 | merge2@1.4.1: 1010 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1011 | engines: {node: '>= 8'} 1012 | 1013 | micromatch@4.0.5: 1014 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 1015 | engines: {node: '>=8.6'} 1016 | 1017 | minimatch@3.1.2: 1018 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1019 | 1020 | minimatch@9.0.3: 1021 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} 1022 | engines: {node: '>=16 || 14 >=14.17'} 1023 | 1024 | minimatch@9.0.4: 1025 | resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} 1026 | engines: {node: '>=16 || 14 >=14.17'} 1027 | 1028 | minimist@1.2.8: 1029 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1030 | 1031 | minipass@7.0.4: 1032 | resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} 1033 | engines: {node: '>=16 || 14 >=14.17'} 1034 | 1035 | ms@2.1.2: 1036 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 1037 | 1038 | ms@2.1.3: 1039 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1040 | 1041 | mz@2.7.0: 1042 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 1043 | 1044 | nanoid@3.3.7: 1045 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 1046 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1047 | hasBin: true 1048 | 1049 | natural-compare@1.4.0: 1050 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1051 | 1052 | next@14.1.4: 1053 | resolution: {integrity: sha512-1WTaXeSrUwlz/XcnhGTY7+8eiaFvdet5z9u3V2jb+Ek1vFo0VhHKSAIJvDWfQpttWjnyw14kBeq28TPq7bTeEQ==} 1054 | engines: {node: '>=18.17.0'} 1055 | hasBin: true 1056 | peerDependencies: 1057 | '@opentelemetry/api': ^1.1.0 1058 | react: ^18.2.0 1059 | react-dom: ^18.2.0 1060 | sass: ^1.3.0 1061 | peerDependenciesMeta: 1062 | '@opentelemetry/api': 1063 | optional: true 1064 | sass: 1065 | optional: true 1066 | 1067 | node-releases@2.0.14: 1068 | resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} 1069 | 1070 | normalize-path@3.0.0: 1071 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1072 | engines: {node: '>=0.10.0'} 1073 | 1074 | normalize-range@0.1.2: 1075 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} 1076 | engines: {node: '>=0.10.0'} 1077 | 1078 | object-assign@4.1.1: 1079 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1080 | engines: {node: '>=0.10.0'} 1081 | 1082 | object-hash@3.0.0: 1083 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 1084 | engines: {node: '>= 6'} 1085 | 1086 | object-inspect@1.13.1: 1087 | resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} 1088 | 1089 | object-keys@1.1.1: 1090 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1091 | engines: {node: '>= 0.4'} 1092 | 1093 | object.assign@4.1.5: 1094 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} 1095 | engines: {node: '>= 0.4'} 1096 | 1097 | object.entries@1.1.8: 1098 | resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} 1099 | engines: {node: '>= 0.4'} 1100 | 1101 | object.fromentries@2.0.8: 1102 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} 1103 | engines: {node: '>= 0.4'} 1104 | 1105 | object.groupby@1.0.3: 1106 | resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} 1107 | engines: {node: '>= 0.4'} 1108 | 1109 | object.hasown@1.1.4: 1110 | resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} 1111 | engines: {node: '>= 0.4'} 1112 | 1113 | object.values@1.2.0: 1114 | resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} 1115 | engines: {node: '>= 0.4'} 1116 | 1117 | once@1.4.0: 1118 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1119 | 1120 | optionator@0.9.3: 1121 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} 1122 | engines: {node: '>= 0.8.0'} 1123 | 1124 | p-limit@3.1.0: 1125 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1126 | engines: {node: '>=10'} 1127 | 1128 | p-locate@5.0.0: 1129 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1130 | engines: {node: '>=10'} 1131 | 1132 | parent-module@1.0.1: 1133 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1134 | engines: {node: '>=6'} 1135 | 1136 | path-exists@4.0.0: 1137 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1138 | engines: {node: '>=8'} 1139 | 1140 | path-is-absolute@1.0.1: 1141 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 1142 | engines: {node: '>=0.10.0'} 1143 | 1144 | path-key@3.1.1: 1145 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1146 | engines: {node: '>=8'} 1147 | 1148 | path-parse@1.0.7: 1149 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1150 | 1151 | path-scurry@1.10.2: 1152 | resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==} 1153 | engines: {node: '>=16 || 14 >=14.17'} 1154 | 1155 | path-type@4.0.0: 1156 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 1157 | engines: {node: '>=8'} 1158 | 1159 | picocolors@1.0.0: 1160 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 1161 | 1162 | picomatch@2.3.1: 1163 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1164 | engines: {node: '>=8.6'} 1165 | 1166 | pify@2.3.0: 1167 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 1168 | engines: {node: '>=0.10.0'} 1169 | 1170 | pirates@4.0.6: 1171 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 1172 | engines: {node: '>= 6'} 1173 | 1174 | possible-typed-array-names@1.0.0: 1175 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} 1176 | engines: {node: '>= 0.4'} 1177 | 1178 | postcss-import@15.1.0: 1179 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 1180 | engines: {node: '>=14.0.0'} 1181 | peerDependencies: 1182 | postcss: ^8.0.0 1183 | 1184 | postcss-js@4.0.1: 1185 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 1186 | engines: {node: ^12 || ^14 || >= 16} 1187 | peerDependencies: 1188 | postcss: ^8.4.21 1189 | 1190 | postcss-load-config@4.0.2: 1191 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} 1192 | engines: {node: '>= 14'} 1193 | peerDependencies: 1194 | postcss: '>=8.0.9' 1195 | ts-node: '>=9.0.0' 1196 | peerDependenciesMeta: 1197 | postcss: 1198 | optional: true 1199 | ts-node: 1200 | optional: true 1201 | 1202 | postcss-nested@6.0.1: 1203 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} 1204 | engines: {node: '>=12.0'} 1205 | peerDependencies: 1206 | postcss: ^8.2.14 1207 | 1208 | postcss-selector-parser@6.0.16: 1209 | resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==} 1210 | engines: {node: '>=4'} 1211 | 1212 | postcss-value-parser@4.2.0: 1213 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 1214 | 1215 | postcss@8.4.31: 1216 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} 1217 | engines: {node: ^10 || ^12 || >=14} 1218 | 1219 | postcss@8.4.38: 1220 | resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} 1221 | engines: {node: ^10 || ^12 || >=14} 1222 | 1223 | prelude-ls@1.2.1: 1224 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1225 | engines: {node: '>= 0.8.0'} 1226 | 1227 | prop-types@15.8.1: 1228 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 1229 | 1230 | punycode@2.3.1: 1231 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1232 | engines: {node: '>=6'} 1233 | 1234 | queue-microtask@1.2.3: 1235 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1236 | 1237 | react-dom@18.2.0: 1238 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} 1239 | peerDependencies: 1240 | react: ^18.2.0 1241 | 1242 | react-is@16.13.1: 1243 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 1244 | 1245 | react@18.2.0: 1246 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} 1247 | engines: {node: '>=0.10.0'} 1248 | 1249 | read-cache@1.0.0: 1250 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 1251 | 1252 | readdirp@3.6.0: 1253 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 1254 | engines: {node: '>=8.10.0'} 1255 | 1256 | reflect.getprototypeof@1.0.6: 1257 | resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} 1258 | engines: {node: '>= 0.4'} 1259 | 1260 | regenerator-runtime@0.14.1: 1261 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 1262 | 1263 | regexp.prototype.flags@1.5.2: 1264 | resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} 1265 | engines: {node: '>= 0.4'} 1266 | 1267 | resolve-from@4.0.0: 1268 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1269 | engines: {node: '>=4'} 1270 | 1271 | resolve-pkg-maps@1.0.0: 1272 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 1273 | 1274 | resolve@1.22.8: 1275 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 1276 | hasBin: true 1277 | 1278 | resolve@2.0.0-next.5: 1279 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 1280 | hasBin: true 1281 | 1282 | reusify@1.0.4: 1283 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1284 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1285 | 1286 | rimraf@3.0.2: 1287 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 1288 | deprecated: Rimraf versions prior to v4 are no longer supported 1289 | hasBin: true 1290 | 1291 | run-parallel@1.2.0: 1292 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1293 | 1294 | safe-array-concat@1.1.2: 1295 | resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} 1296 | engines: {node: '>=0.4'} 1297 | 1298 | safe-regex-test@1.0.3: 1299 | resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} 1300 | engines: {node: '>= 0.4'} 1301 | 1302 | scheduler@0.23.0: 1303 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} 1304 | 1305 | semver@6.3.1: 1306 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 1307 | hasBin: true 1308 | 1309 | semver@7.6.0: 1310 | resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==} 1311 | engines: {node: '>=10'} 1312 | hasBin: true 1313 | 1314 | set-function-length@1.2.2: 1315 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 1316 | engines: {node: '>= 0.4'} 1317 | 1318 | set-function-name@2.0.2: 1319 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 1320 | engines: {node: '>= 0.4'} 1321 | 1322 | shebang-command@2.0.0: 1323 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1324 | engines: {node: '>=8'} 1325 | 1326 | shebang-regex@3.0.0: 1327 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1328 | engines: {node: '>=8'} 1329 | 1330 | side-channel@1.0.6: 1331 | resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} 1332 | engines: {node: '>= 0.4'} 1333 | 1334 | signal-exit@4.1.0: 1335 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 1336 | engines: {node: '>=14'} 1337 | 1338 | slash@3.0.0: 1339 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 1340 | engines: {node: '>=8'} 1341 | 1342 | source-map-js@1.2.0: 1343 | resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} 1344 | engines: {node: '>=0.10.0'} 1345 | 1346 | streamsearch@1.1.0: 1347 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 1348 | engines: {node: '>=10.0.0'} 1349 | 1350 | string-width@4.2.3: 1351 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1352 | engines: {node: '>=8'} 1353 | 1354 | string-width@5.1.2: 1355 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 1356 | engines: {node: '>=12'} 1357 | 1358 | string.prototype.matchall@4.0.11: 1359 | resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} 1360 | engines: {node: '>= 0.4'} 1361 | 1362 | string.prototype.trim@1.2.9: 1363 | resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} 1364 | engines: {node: '>= 0.4'} 1365 | 1366 | string.prototype.trimend@1.0.8: 1367 | resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} 1368 | 1369 | string.prototype.trimstart@1.0.8: 1370 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} 1371 | engines: {node: '>= 0.4'} 1372 | 1373 | strip-ansi@6.0.1: 1374 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1375 | engines: {node: '>=8'} 1376 | 1377 | strip-ansi@7.1.0: 1378 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 1379 | engines: {node: '>=12'} 1380 | 1381 | strip-bom@3.0.0: 1382 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 1383 | engines: {node: '>=4'} 1384 | 1385 | strip-json-comments@3.1.1: 1386 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1387 | engines: {node: '>=8'} 1388 | 1389 | styled-jsx@5.1.1: 1390 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} 1391 | engines: {node: '>= 12.0.0'} 1392 | peerDependencies: 1393 | '@babel/core': '*' 1394 | babel-plugin-macros: '*' 1395 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' 1396 | peerDependenciesMeta: 1397 | '@babel/core': 1398 | optional: true 1399 | babel-plugin-macros: 1400 | optional: true 1401 | 1402 | sucrase@3.35.0: 1403 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} 1404 | engines: {node: '>=16 || 14 >=14.17'} 1405 | hasBin: true 1406 | 1407 | supports-color@7.2.0: 1408 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1409 | engines: {node: '>=8'} 1410 | 1411 | supports-preserve-symlinks-flag@1.0.0: 1412 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1413 | engines: {node: '>= 0.4'} 1414 | 1415 | tailwindcss@3.4.3: 1416 | resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==} 1417 | engines: {node: '>=14.0.0'} 1418 | hasBin: true 1419 | 1420 | tapable@2.2.1: 1421 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 1422 | engines: {node: '>=6'} 1423 | 1424 | text-table@0.2.0: 1425 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 1426 | 1427 | thenify-all@1.6.0: 1428 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 1429 | engines: {node: '>=0.8'} 1430 | 1431 | thenify@3.3.1: 1432 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 1433 | 1434 | to-regex-range@5.0.1: 1435 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1436 | engines: {node: '>=8.0'} 1437 | 1438 | ts-api-utils@1.3.0: 1439 | resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} 1440 | engines: {node: '>=16'} 1441 | peerDependencies: 1442 | typescript: '>=4.2.0' 1443 | 1444 | ts-interface-checker@0.1.13: 1445 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 1446 | 1447 | tsconfig-paths@3.15.0: 1448 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} 1449 | 1450 | tslib@2.6.2: 1451 | resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} 1452 | 1453 | type-check@0.4.0: 1454 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1455 | engines: {node: '>= 0.8.0'} 1456 | 1457 | type-fest@0.20.2: 1458 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 1459 | engines: {node: '>=10'} 1460 | 1461 | typed-array-buffer@1.0.2: 1462 | resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} 1463 | engines: {node: '>= 0.4'} 1464 | 1465 | typed-array-byte-length@1.0.1: 1466 | resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} 1467 | engines: {node: '>= 0.4'} 1468 | 1469 | typed-array-byte-offset@1.0.2: 1470 | resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} 1471 | engines: {node: '>= 0.4'} 1472 | 1473 | typed-array-length@1.0.6: 1474 | resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} 1475 | engines: {node: '>= 0.4'} 1476 | 1477 | typescript@5.4.5: 1478 | resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} 1479 | engines: {node: '>=14.17'} 1480 | hasBin: true 1481 | 1482 | unbox-primitive@1.0.2: 1483 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 1484 | 1485 | undici-types@5.26.5: 1486 | resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} 1487 | 1488 | update-browserslist-db@1.0.13: 1489 | resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} 1490 | hasBin: true 1491 | peerDependencies: 1492 | browserslist: '>= 4.21.0' 1493 | 1494 | uri-js@4.4.1: 1495 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1496 | 1497 | util-deprecate@1.0.2: 1498 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1499 | 1500 | which-boxed-primitive@1.0.2: 1501 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 1502 | 1503 | which-builtin-type@1.1.3: 1504 | resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} 1505 | engines: {node: '>= 0.4'} 1506 | 1507 | which-collection@1.0.2: 1508 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} 1509 | engines: {node: '>= 0.4'} 1510 | 1511 | which-typed-array@1.1.15: 1512 | resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} 1513 | engines: {node: '>= 0.4'} 1514 | 1515 | which@2.0.2: 1516 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1517 | engines: {node: '>= 8'} 1518 | hasBin: true 1519 | 1520 | wrap-ansi@7.0.0: 1521 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 1522 | engines: {node: '>=10'} 1523 | 1524 | wrap-ansi@8.1.0: 1525 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 1526 | engines: {node: '>=12'} 1527 | 1528 | wrappy@1.0.2: 1529 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 1530 | 1531 | yallist@4.0.0: 1532 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 1533 | 1534 | yaml@2.4.1: 1535 | resolution: {integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==} 1536 | engines: {node: '>= 14'} 1537 | hasBin: true 1538 | 1539 | yocto-queue@0.1.0: 1540 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1541 | engines: {node: '>=10'} 1542 | 1543 | snapshots: 1544 | 1545 | '@aashutoshrathi/word-wrap@1.2.6': {} 1546 | 1547 | '@alloc/quick-lru@5.2.0': {} 1548 | 1549 | '@babel/runtime@7.24.4': 1550 | dependencies: 1551 | regenerator-runtime: 0.14.1 1552 | 1553 | '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)': 1554 | dependencies: 1555 | eslint: 8.57.0 1556 | eslint-visitor-keys: 3.4.3 1557 | 1558 | '@eslint-community/regexpp@4.10.0': {} 1559 | 1560 | '@eslint/eslintrc@2.1.4': 1561 | dependencies: 1562 | ajv: 6.12.6 1563 | debug: 4.3.4 1564 | espree: 9.6.1 1565 | globals: 13.24.0 1566 | ignore: 5.3.1 1567 | import-fresh: 3.3.0 1568 | js-yaml: 4.1.0 1569 | minimatch: 3.1.2 1570 | strip-json-comments: 3.1.1 1571 | transitivePeerDependencies: 1572 | - supports-color 1573 | 1574 | '@eslint/js@8.57.0': {} 1575 | 1576 | '@humanwhocodes/config-array@0.11.14': 1577 | dependencies: 1578 | '@humanwhocodes/object-schema': 2.0.3 1579 | debug: 4.3.4 1580 | minimatch: 3.1.2 1581 | transitivePeerDependencies: 1582 | - supports-color 1583 | 1584 | '@humanwhocodes/module-importer@1.0.1': {} 1585 | 1586 | '@humanwhocodes/object-schema@2.0.3': {} 1587 | 1588 | '@isaacs/cliui@8.0.2': 1589 | dependencies: 1590 | string-width: 5.1.2 1591 | string-width-cjs: string-width@4.2.3 1592 | strip-ansi: 7.1.0 1593 | strip-ansi-cjs: strip-ansi@6.0.1 1594 | wrap-ansi: 8.1.0 1595 | wrap-ansi-cjs: wrap-ansi@7.0.0 1596 | 1597 | '@jridgewell/gen-mapping@0.3.5': 1598 | dependencies: 1599 | '@jridgewell/set-array': 1.2.1 1600 | '@jridgewell/sourcemap-codec': 1.4.15 1601 | '@jridgewell/trace-mapping': 0.3.25 1602 | 1603 | '@jridgewell/resolve-uri@3.1.2': {} 1604 | 1605 | '@jridgewell/set-array@1.2.1': {} 1606 | 1607 | '@jridgewell/sourcemap-codec@1.4.15': {} 1608 | 1609 | '@jridgewell/trace-mapping@0.3.25': 1610 | dependencies: 1611 | '@jridgewell/resolve-uri': 3.1.2 1612 | '@jridgewell/sourcemap-codec': 1.4.15 1613 | 1614 | '@next/env@14.1.4': {} 1615 | 1616 | '@next/eslint-plugin-next@14.1.4': 1617 | dependencies: 1618 | glob: 10.3.10 1619 | 1620 | '@next/swc-darwin-arm64@14.1.4': 1621 | optional: true 1622 | 1623 | '@next/swc-darwin-x64@14.1.4': 1624 | optional: true 1625 | 1626 | '@next/swc-linux-arm64-gnu@14.1.4': 1627 | optional: true 1628 | 1629 | '@next/swc-linux-arm64-musl@14.1.4': 1630 | optional: true 1631 | 1632 | '@next/swc-linux-x64-gnu@14.1.4': 1633 | optional: true 1634 | 1635 | '@next/swc-linux-x64-musl@14.1.4': 1636 | optional: true 1637 | 1638 | '@next/swc-win32-arm64-msvc@14.1.4': 1639 | optional: true 1640 | 1641 | '@next/swc-win32-ia32-msvc@14.1.4': 1642 | optional: true 1643 | 1644 | '@next/swc-win32-x64-msvc@14.1.4': 1645 | optional: true 1646 | 1647 | '@nodelib/fs.scandir@2.1.5': 1648 | dependencies: 1649 | '@nodelib/fs.stat': 2.0.5 1650 | run-parallel: 1.2.0 1651 | 1652 | '@nodelib/fs.stat@2.0.5': {} 1653 | 1654 | '@nodelib/fs.walk@1.2.8': 1655 | dependencies: 1656 | '@nodelib/fs.scandir': 2.1.5 1657 | fastq: 1.17.1 1658 | 1659 | '@pkgjs/parseargs@0.11.0': 1660 | optional: true 1661 | 1662 | '@rushstack/eslint-patch@1.10.2': {} 1663 | 1664 | '@swc/helpers@0.5.2': 1665 | dependencies: 1666 | tslib: 2.6.2 1667 | 1668 | '@types/json5@0.0.29': {} 1669 | 1670 | '@types/node@20.12.7': 1671 | dependencies: 1672 | undici-types: 5.26.5 1673 | 1674 | '@types/prop-types@15.7.12': {} 1675 | 1676 | '@types/react-dom@18.2.24': 1677 | dependencies: 1678 | '@types/react': 18.2.75 1679 | 1680 | '@types/react@18.2.75': 1681 | dependencies: 1682 | '@types/prop-types': 15.7.12 1683 | csstype: 3.1.3 1684 | 1685 | '@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5)': 1686 | dependencies: 1687 | '@typescript-eslint/scope-manager': 6.21.0 1688 | '@typescript-eslint/types': 6.21.0 1689 | '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) 1690 | '@typescript-eslint/visitor-keys': 6.21.0 1691 | debug: 4.3.4 1692 | eslint: 8.57.0 1693 | optionalDependencies: 1694 | typescript: 5.4.5 1695 | transitivePeerDependencies: 1696 | - supports-color 1697 | 1698 | '@typescript-eslint/scope-manager@6.21.0': 1699 | dependencies: 1700 | '@typescript-eslint/types': 6.21.0 1701 | '@typescript-eslint/visitor-keys': 6.21.0 1702 | 1703 | '@typescript-eslint/types@6.21.0': {} 1704 | 1705 | '@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.5)': 1706 | dependencies: 1707 | '@typescript-eslint/types': 6.21.0 1708 | '@typescript-eslint/visitor-keys': 6.21.0 1709 | debug: 4.3.4 1710 | globby: 11.1.0 1711 | is-glob: 4.0.3 1712 | minimatch: 9.0.3 1713 | semver: 7.6.0 1714 | ts-api-utils: 1.3.0(typescript@5.4.5) 1715 | optionalDependencies: 1716 | typescript: 5.4.5 1717 | transitivePeerDependencies: 1718 | - supports-color 1719 | 1720 | '@typescript-eslint/visitor-keys@6.21.0': 1721 | dependencies: 1722 | '@typescript-eslint/types': 6.21.0 1723 | eslint-visitor-keys: 3.4.3 1724 | 1725 | '@ungap/structured-clone@1.2.0': {} 1726 | 1727 | acorn-jsx@5.3.2(acorn@8.11.3): 1728 | dependencies: 1729 | acorn: 8.11.3 1730 | 1731 | acorn@8.11.3: {} 1732 | 1733 | ajv@6.12.6: 1734 | dependencies: 1735 | fast-deep-equal: 3.1.3 1736 | fast-json-stable-stringify: 2.1.0 1737 | json-schema-traverse: 0.4.1 1738 | uri-js: 4.4.1 1739 | 1740 | ansi-regex@5.0.1: {} 1741 | 1742 | ansi-regex@6.0.1: {} 1743 | 1744 | ansi-styles@4.3.0: 1745 | dependencies: 1746 | color-convert: 2.0.1 1747 | 1748 | ansi-styles@6.2.1: {} 1749 | 1750 | any-promise@1.3.0: {} 1751 | 1752 | anymatch@3.1.3: 1753 | dependencies: 1754 | normalize-path: 3.0.0 1755 | picomatch: 2.3.1 1756 | 1757 | arg@5.0.2: {} 1758 | 1759 | argparse@2.0.1: {} 1760 | 1761 | aria-query@5.3.0: 1762 | dependencies: 1763 | dequal: 2.0.3 1764 | 1765 | array-buffer-byte-length@1.0.1: 1766 | dependencies: 1767 | call-bind: 1.0.7 1768 | is-array-buffer: 3.0.4 1769 | 1770 | array-includes@3.1.8: 1771 | dependencies: 1772 | call-bind: 1.0.7 1773 | define-properties: 1.2.1 1774 | es-abstract: 1.23.3 1775 | es-object-atoms: 1.0.0 1776 | get-intrinsic: 1.2.4 1777 | is-string: 1.0.7 1778 | 1779 | array-union@2.1.0: {} 1780 | 1781 | array.prototype.findlast@1.2.5: 1782 | dependencies: 1783 | call-bind: 1.0.7 1784 | define-properties: 1.2.1 1785 | es-abstract: 1.23.3 1786 | es-errors: 1.3.0 1787 | es-object-atoms: 1.0.0 1788 | es-shim-unscopables: 1.0.2 1789 | 1790 | array.prototype.findlastindex@1.2.5: 1791 | dependencies: 1792 | call-bind: 1.0.7 1793 | define-properties: 1.2.1 1794 | es-abstract: 1.23.3 1795 | es-errors: 1.3.0 1796 | es-object-atoms: 1.0.0 1797 | es-shim-unscopables: 1.0.2 1798 | 1799 | array.prototype.flat@1.3.2: 1800 | dependencies: 1801 | call-bind: 1.0.7 1802 | define-properties: 1.2.1 1803 | es-abstract: 1.23.3 1804 | es-shim-unscopables: 1.0.2 1805 | 1806 | array.prototype.flatmap@1.3.2: 1807 | dependencies: 1808 | call-bind: 1.0.7 1809 | define-properties: 1.2.1 1810 | es-abstract: 1.23.3 1811 | es-shim-unscopables: 1.0.2 1812 | 1813 | array.prototype.toreversed@1.1.2: 1814 | dependencies: 1815 | call-bind: 1.0.7 1816 | define-properties: 1.2.1 1817 | es-abstract: 1.23.3 1818 | es-shim-unscopables: 1.0.2 1819 | 1820 | array.prototype.tosorted@1.1.3: 1821 | dependencies: 1822 | call-bind: 1.0.7 1823 | define-properties: 1.2.1 1824 | es-abstract: 1.23.3 1825 | es-errors: 1.3.0 1826 | es-shim-unscopables: 1.0.2 1827 | 1828 | arraybuffer.prototype.slice@1.0.3: 1829 | dependencies: 1830 | array-buffer-byte-length: 1.0.1 1831 | call-bind: 1.0.7 1832 | define-properties: 1.2.1 1833 | es-abstract: 1.23.3 1834 | es-errors: 1.3.0 1835 | get-intrinsic: 1.2.4 1836 | is-array-buffer: 3.0.4 1837 | is-shared-array-buffer: 1.0.3 1838 | 1839 | ast-types-flow@0.0.8: {} 1840 | 1841 | autoprefixer@10.4.19(postcss@8.4.38): 1842 | dependencies: 1843 | browserslist: 4.23.0 1844 | caniuse-lite: 1.0.30001608 1845 | fraction.js: 4.3.7 1846 | normalize-range: 0.1.2 1847 | picocolors: 1.0.0 1848 | postcss: 8.4.38 1849 | postcss-value-parser: 4.2.0 1850 | 1851 | available-typed-arrays@1.0.7: 1852 | dependencies: 1853 | possible-typed-array-names: 1.0.0 1854 | 1855 | axe-core@4.7.0: {} 1856 | 1857 | axobject-query@3.2.1: 1858 | dependencies: 1859 | dequal: 2.0.3 1860 | 1861 | balanced-match@1.0.2: {} 1862 | 1863 | binary-extensions@2.3.0: {} 1864 | 1865 | brace-expansion@1.1.11: 1866 | dependencies: 1867 | balanced-match: 1.0.2 1868 | concat-map: 0.0.1 1869 | 1870 | brace-expansion@2.0.1: 1871 | dependencies: 1872 | balanced-match: 1.0.2 1873 | 1874 | braces@3.0.3: 1875 | dependencies: 1876 | fill-range: 7.1.1 1877 | 1878 | browserslist@4.23.0: 1879 | dependencies: 1880 | caniuse-lite: 1.0.30001608 1881 | electron-to-chromium: 1.4.733 1882 | node-releases: 2.0.14 1883 | update-browserslist-db: 1.0.13(browserslist@4.23.0) 1884 | 1885 | busboy@1.6.0: 1886 | dependencies: 1887 | streamsearch: 1.1.0 1888 | 1889 | call-bind@1.0.7: 1890 | dependencies: 1891 | es-define-property: 1.0.0 1892 | es-errors: 1.3.0 1893 | function-bind: 1.1.2 1894 | get-intrinsic: 1.2.4 1895 | set-function-length: 1.2.2 1896 | 1897 | callsites@3.1.0: {} 1898 | 1899 | camelcase-css@2.0.1: {} 1900 | 1901 | caniuse-lite@1.0.30001608: {} 1902 | 1903 | chalk@4.1.2: 1904 | dependencies: 1905 | ansi-styles: 4.3.0 1906 | supports-color: 7.2.0 1907 | 1908 | chokidar@3.6.0: 1909 | dependencies: 1910 | anymatch: 3.1.3 1911 | braces: 3.0.3 1912 | glob-parent: 5.1.2 1913 | is-binary-path: 2.1.0 1914 | is-glob: 4.0.3 1915 | normalize-path: 3.0.0 1916 | readdirp: 3.6.0 1917 | optionalDependencies: 1918 | fsevents: 2.3.3 1919 | 1920 | client-only@0.0.1: {} 1921 | 1922 | color-convert@2.0.1: 1923 | dependencies: 1924 | color-name: 1.1.4 1925 | 1926 | color-name@1.1.4: {} 1927 | 1928 | commander@4.1.1: {} 1929 | 1930 | concat-map@0.0.1: {} 1931 | 1932 | cross-spawn@7.0.3: 1933 | dependencies: 1934 | path-key: 3.1.1 1935 | shebang-command: 2.0.0 1936 | which: 2.0.2 1937 | 1938 | cssesc@3.0.0: {} 1939 | 1940 | csstype@3.1.3: {} 1941 | 1942 | damerau-levenshtein@1.0.8: {} 1943 | 1944 | data-view-buffer@1.0.1: 1945 | dependencies: 1946 | call-bind: 1.0.7 1947 | es-errors: 1.3.0 1948 | is-data-view: 1.0.1 1949 | 1950 | data-view-byte-length@1.0.1: 1951 | dependencies: 1952 | call-bind: 1.0.7 1953 | es-errors: 1.3.0 1954 | is-data-view: 1.0.1 1955 | 1956 | data-view-byte-offset@1.0.0: 1957 | dependencies: 1958 | call-bind: 1.0.7 1959 | es-errors: 1.3.0 1960 | is-data-view: 1.0.1 1961 | 1962 | debug@3.2.7: 1963 | dependencies: 1964 | ms: 2.1.3 1965 | 1966 | debug@4.3.4: 1967 | dependencies: 1968 | ms: 2.1.2 1969 | 1970 | deep-is@0.1.4: {} 1971 | 1972 | define-data-property@1.1.4: 1973 | dependencies: 1974 | es-define-property: 1.0.0 1975 | es-errors: 1.3.0 1976 | gopd: 1.0.1 1977 | 1978 | define-properties@1.2.1: 1979 | dependencies: 1980 | define-data-property: 1.1.4 1981 | has-property-descriptors: 1.0.2 1982 | object-keys: 1.1.1 1983 | 1984 | dequal@2.0.3: {} 1985 | 1986 | didyoumean@1.2.2: {} 1987 | 1988 | dir-glob@3.0.1: 1989 | dependencies: 1990 | path-type: 4.0.0 1991 | 1992 | dlv@1.1.3: {} 1993 | 1994 | doctrine@2.1.0: 1995 | dependencies: 1996 | esutils: 2.0.3 1997 | 1998 | doctrine@3.0.0: 1999 | dependencies: 2000 | esutils: 2.0.3 2001 | 2002 | eastasianwidth@0.2.0: {} 2003 | 2004 | electron-to-chromium@1.4.733: {} 2005 | 2006 | emoji-regex@8.0.0: {} 2007 | 2008 | emoji-regex@9.2.2: {} 2009 | 2010 | enhanced-resolve@5.16.0: 2011 | dependencies: 2012 | graceful-fs: 4.2.11 2013 | tapable: 2.2.1 2014 | 2015 | es-abstract@1.23.3: 2016 | dependencies: 2017 | array-buffer-byte-length: 1.0.1 2018 | arraybuffer.prototype.slice: 1.0.3 2019 | available-typed-arrays: 1.0.7 2020 | call-bind: 1.0.7 2021 | data-view-buffer: 1.0.1 2022 | data-view-byte-length: 1.0.1 2023 | data-view-byte-offset: 1.0.0 2024 | es-define-property: 1.0.0 2025 | es-errors: 1.3.0 2026 | es-object-atoms: 1.0.0 2027 | es-set-tostringtag: 2.0.3 2028 | es-to-primitive: 1.2.1 2029 | function.prototype.name: 1.1.6 2030 | get-intrinsic: 1.2.4 2031 | get-symbol-description: 1.0.2 2032 | globalthis: 1.0.3 2033 | gopd: 1.0.1 2034 | has-property-descriptors: 1.0.2 2035 | has-proto: 1.0.3 2036 | has-symbols: 1.0.3 2037 | hasown: 2.0.2 2038 | internal-slot: 1.0.7 2039 | is-array-buffer: 3.0.4 2040 | is-callable: 1.2.7 2041 | is-data-view: 1.0.1 2042 | is-negative-zero: 2.0.3 2043 | is-regex: 1.1.4 2044 | is-shared-array-buffer: 1.0.3 2045 | is-string: 1.0.7 2046 | is-typed-array: 1.1.13 2047 | is-weakref: 1.0.2 2048 | object-inspect: 1.13.1 2049 | object-keys: 1.1.1 2050 | object.assign: 4.1.5 2051 | regexp.prototype.flags: 1.5.2 2052 | safe-array-concat: 1.1.2 2053 | safe-regex-test: 1.0.3 2054 | string.prototype.trim: 1.2.9 2055 | string.prototype.trimend: 1.0.8 2056 | string.prototype.trimstart: 1.0.8 2057 | typed-array-buffer: 1.0.2 2058 | typed-array-byte-length: 1.0.1 2059 | typed-array-byte-offset: 1.0.2 2060 | typed-array-length: 1.0.6 2061 | unbox-primitive: 1.0.2 2062 | which-typed-array: 1.1.15 2063 | 2064 | es-define-property@1.0.0: 2065 | dependencies: 2066 | get-intrinsic: 1.2.4 2067 | 2068 | es-errors@1.3.0: {} 2069 | 2070 | es-iterator-helpers@1.0.18: 2071 | dependencies: 2072 | call-bind: 1.0.7 2073 | define-properties: 1.2.1 2074 | es-abstract: 1.23.3 2075 | es-errors: 1.3.0 2076 | es-set-tostringtag: 2.0.3 2077 | function-bind: 1.1.2 2078 | get-intrinsic: 1.2.4 2079 | globalthis: 1.0.3 2080 | has-property-descriptors: 1.0.2 2081 | has-proto: 1.0.3 2082 | has-symbols: 1.0.3 2083 | internal-slot: 1.0.7 2084 | iterator.prototype: 1.1.2 2085 | safe-array-concat: 1.1.2 2086 | 2087 | es-object-atoms@1.0.0: 2088 | dependencies: 2089 | es-errors: 1.3.0 2090 | 2091 | es-set-tostringtag@2.0.3: 2092 | dependencies: 2093 | get-intrinsic: 1.2.4 2094 | has-tostringtag: 1.0.2 2095 | hasown: 2.0.2 2096 | 2097 | es-shim-unscopables@1.0.2: 2098 | dependencies: 2099 | hasown: 2.0.2 2100 | 2101 | es-to-primitive@1.2.1: 2102 | dependencies: 2103 | is-callable: 1.2.7 2104 | is-date-object: 1.0.5 2105 | is-symbol: 1.0.4 2106 | 2107 | escalade@3.1.2: {} 2108 | 2109 | escape-string-regexp@4.0.0: {} 2110 | 2111 | eslint-config-next@14.1.4(eslint@8.57.0)(typescript@5.4.5): 2112 | dependencies: 2113 | '@next/eslint-plugin-next': 14.1.4 2114 | '@rushstack/eslint-patch': 1.10.2 2115 | '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5) 2116 | eslint: 8.57.0 2117 | eslint-import-resolver-node: 0.3.9 2118 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0) 2119 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 2120 | eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0) 2121 | eslint-plugin-react: 7.34.1(eslint@8.57.0) 2122 | eslint-plugin-react-hooks: 4.6.0(eslint@8.57.0) 2123 | optionalDependencies: 2124 | typescript: 5.4.5 2125 | transitivePeerDependencies: 2126 | - eslint-import-resolver-webpack 2127 | - supports-color 2128 | 2129 | eslint-import-resolver-node@0.3.9: 2130 | dependencies: 2131 | debug: 3.2.7 2132 | is-core-module: 2.13.1 2133 | resolve: 1.22.8 2134 | transitivePeerDependencies: 2135 | - supports-color 2136 | 2137 | eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0): 2138 | dependencies: 2139 | debug: 4.3.4 2140 | enhanced-resolve: 5.16.0 2141 | eslint: 8.57.0 2142 | eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 2143 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 2144 | fast-glob: 3.3.2 2145 | get-tsconfig: 4.7.3 2146 | is-core-module: 2.13.1 2147 | is-glob: 4.0.3 2148 | transitivePeerDependencies: 2149 | - '@typescript-eslint/parser' 2150 | - eslint-import-resolver-node 2151 | - eslint-import-resolver-webpack 2152 | - supports-color 2153 | 2154 | eslint-module-utils@2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0): 2155 | dependencies: 2156 | debug: 3.2.7 2157 | optionalDependencies: 2158 | '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5) 2159 | eslint: 8.57.0 2160 | eslint-import-resolver-node: 0.3.9 2161 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0) 2162 | transitivePeerDependencies: 2163 | - supports-color 2164 | 2165 | eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): 2166 | dependencies: 2167 | array-includes: 3.1.8 2168 | array.prototype.findlastindex: 1.2.5 2169 | array.prototype.flat: 1.3.2 2170 | array.prototype.flatmap: 1.3.2 2171 | debug: 3.2.7 2172 | doctrine: 2.1.0 2173 | eslint: 8.57.0 2174 | eslint-import-resolver-node: 0.3.9 2175 | eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 2176 | hasown: 2.0.2 2177 | is-core-module: 2.13.1 2178 | is-glob: 4.0.3 2179 | minimatch: 3.1.2 2180 | object.fromentries: 2.0.8 2181 | object.groupby: 1.0.3 2182 | object.values: 1.2.0 2183 | semver: 6.3.1 2184 | tsconfig-paths: 3.15.0 2185 | optionalDependencies: 2186 | '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5) 2187 | transitivePeerDependencies: 2188 | - eslint-import-resolver-typescript 2189 | - eslint-import-resolver-webpack 2190 | - supports-color 2191 | 2192 | eslint-plugin-jsx-a11y@6.8.0(eslint@8.57.0): 2193 | dependencies: 2194 | '@babel/runtime': 7.24.4 2195 | aria-query: 5.3.0 2196 | array-includes: 3.1.8 2197 | array.prototype.flatmap: 1.3.2 2198 | ast-types-flow: 0.0.8 2199 | axe-core: 4.7.0 2200 | axobject-query: 3.2.1 2201 | damerau-levenshtein: 1.0.8 2202 | emoji-regex: 9.2.2 2203 | es-iterator-helpers: 1.0.18 2204 | eslint: 8.57.0 2205 | hasown: 2.0.2 2206 | jsx-ast-utils: 3.3.5 2207 | language-tags: 1.0.9 2208 | minimatch: 3.1.2 2209 | object.entries: 1.1.8 2210 | object.fromentries: 2.0.8 2211 | 2212 | eslint-plugin-react-hooks@4.6.0(eslint@8.57.0): 2213 | dependencies: 2214 | eslint: 8.57.0 2215 | 2216 | eslint-plugin-react@7.34.1(eslint@8.57.0): 2217 | dependencies: 2218 | array-includes: 3.1.8 2219 | array.prototype.findlast: 1.2.5 2220 | array.prototype.flatmap: 1.3.2 2221 | array.prototype.toreversed: 1.1.2 2222 | array.prototype.tosorted: 1.1.3 2223 | doctrine: 2.1.0 2224 | es-iterator-helpers: 1.0.18 2225 | eslint: 8.57.0 2226 | estraverse: 5.3.0 2227 | jsx-ast-utils: 3.3.5 2228 | minimatch: 3.1.2 2229 | object.entries: 1.1.8 2230 | object.fromentries: 2.0.8 2231 | object.hasown: 1.1.4 2232 | object.values: 1.2.0 2233 | prop-types: 15.8.1 2234 | resolve: 2.0.0-next.5 2235 | semver: 6.3.1 2236 | string.prototype.matchall: 4.0.11 2237 | 2238 | eslint-scope@7.2.2: 2239 | dependencies: 2240 | esrecurse: 4.3.0 2241 | estraverse: 5.3.0 2242 | 2243 | eslint-visitor-keys@3.4.3: {} 2244 | 2245 | eslint@8.57.0: 2246 | dependencies: 2247 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) 2248 | '@eslint-community/regexpp': 4.10.0 2249 | '@eslint/eslintrc': 2.1.4 2250 | '@eslint/js': 8.57.0 2251 | '@humanwhocodes/config-array': 0.11.14 2252 | '@humanwhocodes/module-importer': 1.0.1 2253 | '@nodelib/fs.walk': 1.2.8 2254 | '@ungap/structured-clone': 1.2.0 2255 | ajv: 6.12.6 2256 | chalk: 4.1.2 2257 | cross-spawn: 7.0.3 2258 | debug: 4.3.4 2259 | doctrine: 3.0.0 2260 | escape-string-regexp: 4.0.0 2261 | eslint-scope: 7.2.2 2262 | eslint-visitor-keys: 3.4.3 2263 | espree: 9.6.1 2264 | esquery: 1.5.0 2265 | esutils: 2.0.3 2266 | fast-deep-equal: 3.1.3 2267 | file-entry-cache: 6.0.1 2268 | find-up: 5.0.0 2269 | glob-parent: 6.0.2 2270 | globals: 13.24.0 2271 | graphemer: 1.4.0 2272 | ignore: 5.3.1 2273 | imurmurhash: 0.1.4 2274 | is-glob: 4.0.3 2275 | is-path-inside: 3.0.3 2276 | js-yaml: 4.1.0 2277 | json-stable-stringify-without-jsonify: 1.0.1 2278 | levn: 0.4.1 2279 | lodash.merge: 4.6.2 2280 | minimatch: 3.1.2 2281 | natural-compare: 1.4.0 2282 | optionator: 0.9.3 2283 | strip-ansi: 6.0.1 2284 | text-table: 0.2.0 2285 | transitivePeerDependencies: 2286 | - supports-color 2287 | 2288 | espree@9.6.1: 2289 | dependencies: 2290 | acorn: 8.11.3 2291 | acorn-jsx: 5.3.2(acorn@8.11.3) 2292 | eslint-visitor-keys: 3.4.3 2293 | 2294 | esquery@1.5.0: 2295 | dependencies: 2296 | estraverse: 5.3.0 2297 | 2298 | esrecurse@4.3.0: 2299 | dependencies: 2300 | estraverse: 5.3.0 2301 | 2302 | estraverse@5.3.0: {} 2303 | 2304 | esutils@2.0.3: {} 2305 | 2306 | fast-deep-equal@3.1.3: {} 2307 | 2308 | fast-glob@3.3.2: 2309 | dependencies: 2310 | '@nodelib/fs.stat': 2.0.5 2311 | '@nodelib/fs.walk': 1.2.8 2312 | glob-parent: 5.1.2 2313 | merge2: 1.4.1 2314 | micromatch: 4.0.5 2315 | 2316 | fast-json-stable-stringify@2.1.0: {} 2317 | 2318 | fast-levenshtein@2.0.6: {} 2319 | 2320 | fastq@1.17.1: 2321 | dependencies: 2322 | reusify: 1.0.4 2323 | 2324 | file-entry-cache@6.0.1: 2325 | dependencies: 2326 | flat-cache: 3.2.0 2327 | 2328 | fill-range@7.1.1: 2329 | dependencies: 2330 | to-regex-range: 5.0.1 2331 | 2332 | find-up@5.0.0: 2333 | dependencies: 2334 | locate-path: 6.0.0 2335 | path-exists: 4.0.0 2336 | 2337 | flat-cache@3.2.0: 2338 | dependencies: 2339 | flatted: 3.3.1 2340 | keyv: 4.5.4 2341 | rimraf: 3.0.2 2342 | 2343 | flatted@3.3.1: {} 2344 | 2345 | for-each@0.3.3: 2346 | dependencies: 2347 | is-callable: 1.2.7 2348 | 2349 | foreground-child@3.1.1: 2350 | dependencies: 2351 | cross-spawn: 7.0.3 2352 | signal-exit: 4.1.0 2353 | 2354 | fraction.js@4.3.7: {} 2355 | 2356 | fs.realpath@1.0.0: {} 2357 | 2358 | fsevents@2.3.3: 2359 | optional: true 2360 | 2361 | function-bind@1.1.2: {} 2362 | 2363 | function.prototype.name@1.1.6: 2364 | dependencies: 2365 | call-bind: 1.0.7 2366 | define-properties: 1.2.1 2367 | es-abstract: 1.23.3 2368 | functions-have-names: 1.2.3 2369 | 2370 | functions-have-names@1.2.3: {} 2371 | 2372 | get-intrinsic@1.2.4: 2373 | dependencies: 2374 | es-errors: 1.3.0 2375 | function-bind: 1.1.2 2376 | has-proto: 1.0.3 2377 | has-symbols: 1.0.3 2378 | hasown: 2.0.2 2379 | 2380 | get-symbol-description@1.0.2: 2381 | dependencies: 2382 | call-bind: 1.0.7 2383 | es-errors: 1.3.0 2384 | get-intrinsic: 1.2.4 2385 | 2386 | get-tsconfig@4.7.3: 2387 | dependencies: 2388 | resolve-pkg-maps: 1.0.0 2389 | 2390 | glob-parent@5.1.2: 2391 | dependencies: 2392 | is-glob: 4.0.3 2393 | 2394 | glob-parent@6.0.2: 2395 | dependencies: 2396 | is-glob: 4.0.3 2397 | 2398 | glob@10.3.10: 2399 | dependencies: 2400 | foreground-child: 3.1.1 2401 | jackspeak: 2.3.6 2402 | minimatch: 9.0.4 2403 | minipass: 7.0.4 2404 | path-scurry: 1.10.2 2405 | 2406 | glob@10.3.12: 2407 | dependencies: 2408 | foreground-child: 3.1.1 2409 | jackspeak: 2.3.6 2410 | minimatch: 9.0.4 2411 | minipass: 7.0.4 2412 | path-scurry: 1.10.2 2413 | 2414 | glob@7.2.3: 2415 | dependencies: 2416 | fs.realpath: 1.0.0 2417 | inflight: 1.0.6 2418 | inherits: 2.0.4 2419 | minimatch: 3.1.2 2420 | once: 1.4.0 2421 | path-is-absolute: 1.0.1 2422 | 2423 | globals@13.24.0: 2424 | dependencies: 2425 | type-fest: 0.20.2 2426 | 2427 | globalthis@1.0.3: 2428 | dependencies: 2429 | define-properties: 1.2.1 2430 | 2431 | globby@11.1.0: 2432 | dependencies: 2433 | array-union: 2.1.0 2434 | dir-glob: 3.0.1 2435 | fast-glob: 3.3.2 2436 | ignore: 5.3.1 2437 | merge2: 1.4.1 2438 | slash: 3.0.0 2439 | 2440 | gopd@1.0.1: 2441 | dependencies: 2442 | get-intrinsic: 1.2.4 2443 | 2444 | graceful-fs@4.2.11: {} 2445 | 2446 | graphemer@1.4.0: {} 2447 | 2448 | has-bigints@1.0.2: {} 2449 | 2450 | has-flag@4.0.0: {} 2451 | 2452 | has-property-descriptors@1.0.2: 2453 | dependencies: 2454 | es-define-property: 1.0.0 2455 | 2456 | has-proto@1.0.3: {} 2457 | 2458 | has-symbols@1.0.3: {} 2459 | 2460 | has-tostringtag@1.0.2: 2461 | dependencies: 2462 | has-symbols: 1.0.3 2463 | 2464 | hasown@2.0.2: 2465 | dependencies: 2466 | function-bind: 1.1.2 2467 | 2468 | ignore@5.3.1: {} 2469 | 2470 | import-fresh@3.3.0: 2471 | dependencies: 2472 | parent-module: 1.0.1 2473 | resolve-from: 4.0.0 2474 | 2475 | imurmurhash@0.1.4: {} 2476 | 2477 | inflight@1.0.6: 2478 | dependencies: 2479 | once: 1.4.0 2480 | wrappy: 1.0.2 2481 | 2482 | inherits@2.0.4: {} 2483 | 2484 | internal-slot@1.0.7: 2485 | dependencies: 2486 | es-errors: 1.3.0 2487 | hasown: 2.0.2 2488 | side-channel: 1.0.6 2489 | 2490 | is-array-buffer@3.0.4: 2491 | dependencies: 2492 | call-bind: 1.0.7 2493 | get-intrinsic: 1.2.4 2494 | 2495 | is-async-function@2.0.0: 2496 | dependencies: 2497 | has-tostringtag: 1.0.2 2498 | 2499 | is-bigint@1.0.4: 2500 | dependencies: 2501 | has-bigints: 1.0.2 2502 | 2503 | is-binary-path@2.1.0: 2504 | dependencies: 2505 | binary-extensions: 2.3.0 2506 | 2507 | is-boolean-object@1.1.2: 2508 | dependencies: 2509 | call-bind: 1.0.7 2510 | has-tostringtag: 1.0.2 2511 | 2512 | is-callable@1.2.7: {} 2513 | 2514 | is-core-module@2.13.1: 2515 | dependencies: 2516 | hasown: 2.0.2 2517 | 2518 | is-data-view@1.0.1: 2519 | dependencies: 2520 | is-typed-array: 1.1.13 2521 | 2522 | is-date-object@1.0.5: 2523 | dependencies: 2524 | has-tostringtag: 1.0.2 2525 | 2526 | is-extglob@2.1.1: {} 2527 | 2528 | is-finalizationregistry@1.0.2: 2529 | dependencies: 2530 | call-bind: 1.0.7 2531 | 2532 | is-fullwidth-code-point@3.0.0: {} 2533 | 2534 | is-generator-function@1.0.10: 2535 | dependencies: 2536 | has-tostringtag: 1.0.2 2537 | 2538 | is-glob@4.0.3: 2539 | dependencies: 2540 | is-extglob: 2.1.1 2541 | 2542 | is-map@2.0.3: {} 2543 | 2544 | is-negative-zero@2.0.3: {} 2545 | 2546 | is-number-object@1.0.7: 2547 | dependencies: 2548 | has-tostringtag: 1.0.2 2549 | 2550 | is-number@7.0.0: {} 2551 | 2552 | is-path-inside@3.0.3: {} 2553 | 2554 | is-regex@1.1.4: 2555 | dependencies: 2556 | call-bind: 1.0.7 2557 | has-tostringtag: 1.0.2 2558 | 2559 | is-set@2.0.3: {} 2560 | 2561 | is-shared-array-buffer@1.0.3: 2562 | dependencies: 2563 | call-bind: 1.0.7 2564 | 2565 | is-string@1.0.7: 2566 | dependencies: 2567 | has-tostringtag: 1.0.2 2568 | 2569 | is-symbol@1.0.4: 2570 | dependencies: 2571 | has-symbols: 1.0.3 2572 | 2573 | is-typed-array@1.1.13: 2574 | dependencies: 2575 | which-typed-array: 1.1.15 2576 | 2577 | is-weakmap@2.0.2: {} 2578 | 2579 | is-weakref@1.0.2: 2580 | dependencies: 2581 | call-bind: 1.0.7 2582 | 2583 | is-weakset@2.0.3: 2584 | dependencies: 2585 | call-bind: 1.0.7 2586 | get-intrinsic: 1.2.4 2587 | 2588 | isarray@2.0.5: {} 2589 | 2590 | isexe@2.0.0: {} 2591 | 2592 | iterator.prototype@1.1.2: 2593 | dependencies: 2594 | define-properties: 1.2.1 2595 | get-intrinsic: 1.2.4 2596 | has-symbols: 1.0.3 2597 | reflect.getprototypeof: 1.0.6 2598 | set-function-name: 2.0.2 2599 | 2600 | jackspeak@2.3.6: 2601 | dependencies: 2602 | '@isaacs/cliui': 8.0.2 2603 | optionalDependencies: 2604 | '@pkgjs/parseargs': 0.11.0 2605 | 2606 | jiti@1.21.0: {} 2607 | 2608 | js-tokens@4.0.0: {} 2609 | 2610 | js-yaml@4.1.0: 2611 | dependencies: 2612 | argparse: 2.0.1 2613 | 2614 | json-buffer@3.0.1: {} 2615 | 2616 | json-schema-traverse@0.4.1: {} 2617 | 2618 | json-stable-stringify-without-jsonify@1.0.1: {} 2619 | 2620 | json5@1.0.2: 2621 | dependencies: 2622 | minimist: 1.2.8 2623 | 2624 | jsx-ast-utils@3.3.5: 2625 | dependencies: 2626 | array-includes: 3.1.8 2627 | array.prototype.flat: 1.3.2 2628 | object.assign: 4.1.5 2629 | object.values: 1.2.0 2630 | 2631 | keyv@4.5.4: 2632 | dependencies: 2633 | json-buffer: 3.0.1 2634 | 2635 | language-subtag-registry@0.3.22: {} 2636 | 2637 | language-tags@1.0.9: 2638 | dependencies: 2639 | language-subtag-registry: 0.3.22 2640 | 2641 | levn@0.4.1: 2642 | dependencies: 2643 | prelude-ls: 1.2.1 2644 | type-check: 0.4.0 2645 | 2646 | lilconfig@2.1.0: {} 2647 | 2648 | lilconfig@3.1.1: {} 2649 | 2650 | lines-and-columns@1.2.4: {} 2651 | 2652 | locate-path@6.0.0: 2653 | dependencies: 2654 | p-locate: 5.0.0 2655 | 2656 | lodash.merge@4.6.2: {} 2657 | 2658 | loose-envify@1.4.0: 2659 | dependencies: 2660 | js-tokens: 4.0.0 2661 | 2662 | lru-cache@10.2.0: {} 2663 | 2664 | lru-cache@6.0.0: 2665 | dependencies: 2666 | yallist: 4.0.0 2667 | 2668 | merge2@1.4.1: {} 2669 | 2670 | micromatch@4.0.5: 2671 | dependencies: 2672 | braces: 3.0.3 2673 | picomatch: 2.3.1 2674 | 2675 | minimatch@3.1.2: 2676 | dependencies: 2677 | brace-expansion: 1.1.11 2678 | 2679 | minimatch@9.0.3: 2680 | dependencies: 2681 | brace-expansion: 2.0.1 2682 | 2683 | minimatch@9.0.4: 2684 | dependencies: 2685 | brace-expansion: 2.0.1 2686 | 2687 | minimist@1.2.8: {} 2688 | 2689 | minipass@7.0.4: {} 2690 | 2691 | ms@2.1.2: {} 2692 | 2693 | ms@2.1.3: {} 2694 | 2695 | mz@2.7.0: 2696 | dependencies: 2697 | any-promise: 1.3.0 2698 | object-assign: 4.1.1 2699 | thenify-all: 1.6.0 2700 | 2701 | nanoid@3.3.7: {} 2702 | 2703 | natural-compare@1.4.0: {} 2704 | 2705 | next@14.1.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0): 2706 | dependencies: 2707 | '@next/env': 14.1.4 2708 | '@swc/helpers': 0.5.2 2709 | busboy: 1.6.0 2710 | caniuse-lite: 1.0.30001608 2711 | graceful-fs: 4.2.11 2712 | postcss: 8.4.31 2713 | react: 18.2.0 2714 | react-dom: 18.2.0(react@18.2.0) 2715 | styled-jsx: 5.1.1(react@18.2.0) 2716 | optionalDependencies: 2717 | '@next/swc-darwin-arm64': 14.1.4 2718 | '@next/swc-darwin-x64': 14.1.4 2719 | '@next/swc-linux-arm64-gnu': 14.1.4 2720 | '@next/swc-linux-arm64-musl': 14.1.4 2721 | '@next/swc-linux-x64-gnu': 14.1.4 2722 | '@next/swc-linux-x64-musl': 14.1.4 2723 | '@next/swc-win32-arm64-msvc': 14.1.4 2724 | '@next/swc-win32-ia32-msvc': 14.1.4 2725 | '@next/swc-win32-x64-msvc': 14.1.4 2726 | transitivePeerDependencies: 2727 | - '@babel/core' 2728 | - babel-plugin-macros 2729 | 2730 | node-releases@2.0.14: {} 2731 | 2732 | normalize-path@3.0.0: {} 2733 | 2734 | normalize-range@0.1.2: {} 2735 | 2736 | object-assign@4.1.1: {} 2737 | 2738 | object-hash@3.0.0: {} 2739 | 2740 | object-inspect@1.13.1: {} 2741 | 2742 | object-keys@1.1.1: {} 2743 | 2744 | object.assign@4.1.5: 2745 | dependencies: 2746 | call-bind: 1.0.7 2747 | define-properties: 1.2.1 2748 | has-symbols: 1.0.3 2749 | object-keys: 1.1.1 2750 | 2751 | object.entries@1.1.8: 2752 | dependencies: 2753 | call-bind: 1.0.7 2754 | define-properties: 1.2.1 2755 | es-object-atoms: 1.0.0 2756 | 2757 | object.fromentries@2.0.8: 2758 | dependencies: 2759 | call-bind: 1.0.7 2760 | define-properties: 1.2.1 2761 | es-abstract: 1.23.3 2762 | es-object-atoms: 1.0.0 2763 | 2764 | object.groupby@1.0.3: 2765 | dependencies: 2766 | call-bind: 1.0.7 2767 | define-properties: 1.2.1 2768 | es-abstract: 1.23.3 2769 | 2770 | object.hasown@1.1.4: 2771 | dependencies: 2772 | define-properties: 1.2.1 2773 | es-abstract: 1.23.3 2774 | es-object-atoms: 1.0.0 2775 | 2776 | object.values@1.2.0: 2777 | dependencies: 2778 | call-bind: 1.0.7 2779 | define-properties: 1.2.1 2780 | es-object-atoms: 1.0.0 2781 | 2782 | once@1.4.0: 2783 | dependencies: 2784 | wrappy: 1.0.2 2785 | 2786 | optionator@0.9.3: 2787 | dependencies: 2788 | '@aashutoshrathi/word-wrap': 1.2.6 2789 | deep-is: 0.1.4 2790 | fast-levenshtein: 2.0.6 2791 | levn: 0.4.1 2792 | prelude-ls: 1.2.1 2793 | type-check: 0.4.0 2794 | 2795 | p-limit@3.1.0: 2796 | dependencies: 2797 | yocto-queue: 0.1.0 2798 | 2799 | p-locate@5.0.0: 2800 | dependencies: 2801 | p-limit: 3.1.0 2802 | 2803 | parent-module@1.0.1: 2804 | dependencies: 2805 | callsites: 3.1.0 2806 | 2807 | path-exists@4.0.0: {} 2808 | 2809 | path-is-absolute@1.0.1: {} 2810 | 2811 | path-key@3.1.1: {} 2812 | 2813 | path-parse@1.0.7: {} 2814 | 2815 | path-scurry@1.10.2: 2816 | dependencies: 2817 | lru-cache: 10.2.0 2818 | minipass: 7.0.4 2819 | 2820 | path-type@4.0.0: {} 2821 | 2822 | picocolors@1.0.0: {} 2823 | 2824 | picomatch@2.3.1: {} 2825 | 2826 | pify@2.3.0: {} 2827 | 2828 | pirates@4.0.6: {} 2829 | 2830 | possible-typed-array-names@1.0.0: {} 2831 | 2832 | postcss-import@15.1.0(postcss@8.4.38): 2833 | dependencies: 2834 | postcss: 8.4.38 2835 | postcss-value-parser: 4.2.0 2836 | read-cache: 1.0.0 2837 | resolve: 1.22.8 2838 | 2839 | postcss-js@4.0.1(postcss@8.4.38): 2840 | dependencies: 2841 | camelcase-css: 2.0.1 2842 | postcss: 8.4.38 2843 | 2844 | postcss-load-config@4.0.2(postcss@8.4.38): 2845 | dependencies: 2846 | lilconfig: 3.1.1 2847 | yaml: 2.4.1 2848 | optionalDependencies: 2849 | postcss: 8.4.38 2850 | 2851 | postcss-nested@6.0.1(postcss@8.4.38): 2852 | dependencies: 2853 | postcss: 8.4.38 2854 | postcss-selector-parser: 6.0.16 2855 | 2856 | postcss-selector-parser@6.0.16: 2857 | dependencies: 2858 | cssesc: 3.0.0 2859 | util-deprecate: 1.0.2 2860 | 2861 | postcss-value-parser@4.2.0: {} 2862 | 2863 | postcss@8.4.31: 2864 | dependencies: 2865 | nanoid: 3.3.7 2866 | picocolors: 1.0.0 2867 | source-map-js: 1.2.0 2868 | 2869 | postcss@8.4.38: 2870 | dependencies: 2871 | nanoid: 3.3.7 2872 | picocolors: 1.0.0 2873 | source-map-js: 1.2.0 2874 | 2875 | prelude-ls@1.2.1: {} 2876 | 2877 | prop-types@15.8.1: 2878 | dependencies: 2879 | loose-envify: 1.4.0 2880 | object-assign: 4.1.1 2881 | react-is: 16.13.1 2882 | 2883 | punycode@2.3.1: {} 2884 | 2885 | queue-microtask@1.2.3: {} 2886 | 2887 | react-dom@18.2.0(react@18.2.0): 2888 | dependencies: 2889 | loose-envify: 1.4.0 2890 | react: 18.2.0 2891 | scheduler: 0.23.0 2892 | 2893 | react-is@16.13.1: {} 2894 | 2895 | react@18.2.0: 2896 | dependencies: 2897 | loose-envify: 1.4.0 2898 | 2899 | read-cache@1.0.0: 2900 | dependencies: 2901 | pify: 2.3.0 2902 | 2903 | readdirp@3.6.0: 2904 | dependencies: 2905 | picomatch: 2.3.1 2906 | 2907 | reflect.getprototypeof@1.0.6: 2908 | dependencies: 2909 | call-bind: 1.0.7 2910 | define-properties: 1.2.1 2911 | es-abstract: 1.23.3 2912 | es-errors: 1.3.0 2913 | get-intrinsic: 1.2.4 2914 | globalthis: 1.0.3 2915 | which-builtin-type: 1.1.3 2916 | 2917 | regenerator-runtime@0.14.1: {} 2918 | 2919 | regexp.prototype.flags@1.5.2: 2920 | dependencies: 2921 | call-bind: 1.0.7 2922 | define-properties: 1.2.1 2923 | es-errors: 1.3.0 2924 | set-function-name: 2.0.2 2925 | 2926 | resolve-from@4.0.0: {} 2927 | 2928 | resolve-pkg-maps@1.0.0: {} 2929 | 2930 | resolve@1.22.8: 2931 | dependencies: 2932 | is-core-module: 2.13.1 2933 | path-parse: 1.0.7 2934 | supports-preserve-symlinks-flag: 1.0.0 2935 | 2936 | resolve@2.0.0-next.5: 2937 | dependencies: 2938 | is-core-module: 2.13.1 2939 | path-parse: 1.0.7 2940 | supports-preserve-symlinks-flag: 1.0.0 2941 | 2942 | reusify@1.0.4: {} 2943 | 2944 | rimraf@3.0.2: 2945 | dependencies: 2946 | glob: 7.2.3 2947 | 2948 | run-parallel@1.2.0: 2949 | dependencies: 2950 | queue-microtask: 1.2.3 2951 | 2952 | safe-array-concat@1.1.2: 2953 | dependencies: 2954 | call-bind: 1.0.7 2955 | get-intrinsic: 1.2.4 2956 | has-symbols: 1.0.3 2957 | isarray: 2.0.5 2958 | 2959 | safe-regex-test@1.0.3: 2960 | dependencies: 2961 | call-bind: 1.0.7 2962 | es-errors: 1.3.0 2963 | is-regex: 1.1.4 2964 | 2965 | scheduler@0.23.0: 2966 | dependencies: 2967 | loose-envify: 1.4.0 2968 | 2969 | semver@6.3.1: {} 2970 | 2971 | semver@7.6.0: 2972 | dependencies: 2973 | lru-cache: 6.0.0 2974 | 2975 | set-function-length@1.2.2: 2976 | dependencies: 2977 | define-data-property: 1.1.4 2978 | es-errors: 1.3.0 2979 | function-bind: 1.1.2 2980 | get-intrinsic: 1.2.4 2981 | gopd: 1.0.1 2982 | has-property-descriptors: 1.0.2 2983 | 2984 | set-function-name@2.0.2: 2985 | dependencies: 2986 | define-data-property: 1.1.4 2987 | es-errors: 1.3.0 2988 | functions-have-names: 1.2.3 2989 | has-property-descriptors: 1.0.2 2990 | 2991 | shebang-command@2.0.0: 2992 | dependencies: 2993 | shebang-regex: 3.0.0 2994 | 2995 | shebang-regex@3.0.0: {} 2996 | 2997 | side-channel@1.0.6: 2998 | dependencies: 2999 | call-bind: 1.0.7 3000 | es-errors: 1.3.0 3001 | get-intrinsic: 1.2.4 3002 | object-inspect: 1.13.1 3003 | 3004 | signal-exit@4.1.0: {} 3005 | 3006 | slash@3.0.0: {} 3007 | 3008 | source-map-js@1.2.0: {} 3009 | 3010 | streamsearch@1.1.0: {} 3011 | 3012 | string-width@4.2.3: 3013 | dependencies: 3014 | emoji-regex: 8.0.0 3015 | is-fullwidth-code-point: 3.0.0 3016 | strip-ansi: 6.0.1 3017 | 3018 | string-width@5.1.2: 3019 | dependencies: 3020 | eastasianwidth: 0.2.0 3021 | emoji-regex: 9.2.2 3022 | strip-ansi: 7.1.0 3023 | 3024 | string.prototype.matchall@4.0.11: 3025 | dependencies: 3026 | call-bind: 1.0.7 3027 | define-properties: 1.2.1 3028 | es-abstract: 1.23.3 3029 | es-errors: 1.3.0 3030 | es-object-atoms: 1.0.0 3031 | get-intrinsic: 1.2.4 3032 | gopd: 1.0.1 3033 | has-symbols: 1.0.3 3034 | internal-slot: 1.0.7 3035 | regexp.prototype.flags: 1.5.2 3036 | set-function-name: 2.0.2 3037 | side-channel: 1.0.6 3038 | 3039 | string.prototype.trim@1.2.9: 3040 | dependencies: 3041 | call-bind: 1.0.7 3042 | define-properties: 1.2.1 3043 | es-abstract: 1.23.3 3044 | es-object-atoms: 1.0.0 3045 | 3046 | string.prototype.trimend@1.0.8: 3047 | dependencies: 3048 | call-bind: 1.0.7 3049 | define-properties: 1.2.1 3050 | es-object-atoms: 1.0.0 3051 | 3052 | string.prototype.trimstart@1.0.8: 3053 | dependencies: 3054 | call-bind: 1.0.7 3055 | define-properties: 1.2.1 3056 | es-object-atoms: 1.0.0 3057 | 3058 | strip-ansi@6.0.1: 3059 | dependencies: 3060 | ansi-regex: 5.0.1 3061 | 3062 | strip-ansi@7.1.0: 3063 | dependencies: 3064 | ansi-regex: 6.0.1 3065 | 3066 | strip-bom@3.0.0: {} 3067 | 3068 | strip-json-comments@3.1.1: {} 3069 | 3070 | styled-jsx@5.1.1(react@18.2.0): 3071 | dependencies: 3072 | client-only: 0.0.1 3073 | react: 18.2.0 3074 | 3075 | sucrase@3.35.0: 3076 | dependencies: 3077 | '@jridgewell/gen-mapping': 0.3.5 3078 | commander: 4.1.1 3079 | glob: 10.3.12 3080 | lines-and-columns: 1.2.4 3081 | mz: 2.7.0 3082 | pirates: 4.0.6 3083 | ts-interface-checker: 0.1.13 3084 | 3085 | supports-color@7.2.0: 3086 | dependencies: 3087 | has-flag: 4.0.0 3088 | 3089 | supports-preserve-symlinks-flag@1.0.0: {} 3090 | 3091 | tailwindcss@3.4.3: 3092 | dependencies: 3093 | '@alloc/quick-lru': 5.2.0 3094 | arg: 5.0.2 3095 | chokidar: 3.6.0 3096 | didyoumean: 1.2.2 3097 | dlv: 1.1.3 3098 | fast-glob: 3.3.2 3099 | glob-parent: 6.0.2 3100 | is-glob: 4.0.3 3101 | jiti: 1.21.0 3102 | lilconfig: 2.1.0 3103 | micromatch: 4.0.5 3104 | normalize-path: 3.0.0 3105 | object-hash: 3.0.0 3106 | picocolors: 1.0.0 3107 | postcss: 8.4.38 3108 | postcss-import: 15.1.0(postcss@8.4.38) 3109 | postcss-js: 4.0.1(postcss@8.4.38) 3110 | postcss-load-config: 4.0.2(postcss@8.4.38) 3111 | postcss-nested: 6.0.1(postcss@8.4.38) 3112 | postcss-selector-parser: 6.0.16 3113 | resolve: 1.22.8 3114 | sucrase: 3.35.0 3115 | transitivePeerDependencies: 3116 | - ts-node 3117 | 3118 | tapable@2.2.1: {} 3119 | 3120 | text-table@0.2.0: {} 3121 | 3122 | thenify-all@1.6.0: 3123 | dependencies: 3124 | thenify: 3.3.1 3125 | 3126 | thenify@3.3.1: 3127 | dependencies: 3128 | any-promise: 1.3.0 3129 | 3130 | to-regex-range@5.0.1: 3131 | dependencies: 3132 | is-number: 7.0.0 3133 | 3134 | ts-api-utils@1.3.0(typescript@5.4.5): 3135 | dependencies: 3136 | typescript: 5.4.5 3137 | 3138 | ts-interface-checker@0.1.13: {} 3139 | 3140 | tsconfig-paths@3.15.0: 3141 | dependencies: 3142 | '@types/json5': 0.0.29 3143 | json5: 1.0.2 3144 | minimist: 1.2.8 3145 | strip-bom: 3.0.0 3146 | 3147 | tslib@2.6.2: {} 3148 | 3149 | type-check@0.4.0: 3150 | dependencies: 3151 | prelude-ls: 1.2.1 3152 | 3153 | type-fest@0.20.2: {} 3154 | 3155 | typed-array-buffer@1.0.2: 3156 | dependencies: 3157 | call-bind: 1.0.7 3158 | es-errors: 1.3.0 3159 | is-typed-array: 1.1.13 3160 | 3161 | typed-array-byte-length@1.0.1: 3162 | dependencies: 3163 | call-bind: 1.0.7 3164 | for-each: 0.3.3 3165 | gopd: 1.0.1 3166 | has-proto: 1.0.3 3167 | is-typed-array: 1.1.13 3168 | 3169 | typed-array-byte-offset@1.0.2: 3170 | dependencies: 3171 | available-typed-arrays: 1.0.7 3172 | call-bind: 1.0.7 3173 | for-each: 0.3.3 3174 | gopd: 1.0.1 3175 | has-proto: 1.0.3 3176 | is-typed-array: 1.1.13 3177 | 3178 | typed-array-length@1.0.6: 3179 | dependencies: 3180 | call-bind: 1.0.7 3181 | for-each: 0.3.3 3182 | gopd: 1.0.1 3183 | has-proto: 1.0.3 3184 | is-typed-array: 1.1.13 3185 | possible-typed-array-names: 1.0.0 3186 | 3187 | typescript@5.4.5: {} 3188 | 3189 | unbox-primitive@1.0.2: 3190 | dependencies: 3191 | call-bind: 1.0.7 3192 | has-bigints: 1.0.2 3193 | has-symbols: 1.0.3 3194 | which-boxed-primitive: 1.0.2 3195 | 3196 | undici-types@5.26.5: {} 3197 | 3198 | update-browserslist-db@1.0.13(browserslist@4.23.0): 3199 | dependencies: 3200 | browserslist: 4.23.0 3201 | escalade: 3.1.2 3202 | picocolors: 1.0.0 3203 | 3204 | uri-js@4.4.1: 3205 | dependencies: 3206 | punycode: 2.3.1 3207 | 3208 | util-deprecate@1.0.2: {} 3209 | 3210 | which-boxed-primitive@1.0.2: 3211 | dependencies: 3212 | is-bigint: 1.0.4 3213 | is-boolean-object: 1.1.2 3214 | is-number-object: 1.0.7 3215 | is-string: 1.0.7 3216 | is-symbol: 1.0.4 3217 | 3218 | which-builtin-type@1.1.3: 3219 | dependencies: 3220 | function.prototype.name: 1.1.6 3221 | has-tostringtag: 1.0.2 3222 | is-async-function: 2.0.0 3223 | is-date-object: 1.0.5 3224 | is-finalizationregistry: 1.0.2 3225 | is-generator-function: 1.0.10 3226 | is-regex: 1.1.4 3227 | is-weakref: 1.0.2 3228 | isarray: 2.0.5 3229 | which-boxed-primitive: 1.0.2 3230 | which-collection: 1.0.2 3231 | which-typed-array: 1.1.15 3232 | 3233 | which-collection@1.0.2: 3234 | dependencies: 3235 | is-map: 2.0.3 3236 | is-set: 2.0.3 3237 | is-weakmap: 2.0.2 3238 | is-weakset: 2.0.3 3239 | 3240 | which-typed-array@1.1.15: 3241 | dependencies: 3242 | available-typed-arrays: 1.0.7 3243 | call-bind: 1.0.7 3244 | for-each: 0.3.3 3245 | gopd: 1.0.1 3246 | has-tostringtag: 1.0.2 3247 | 3248 | which@2.0.2: 3249 | dependencies: 3250 | isexe: 2.0.0 3251 | 3252 | wrap-ansi@7.0.0: 3253 | dependencies: 3254 | ansi-styles: 4.3.0 3255 | string-width: 4.2.3 3256 | strip-ansi: 6.0.1 3257 | 3258 | wrap-ansi@8.1.0: 3259 | dependencies: 3260 | ansi-styles: 6.2.1 3261 | string-width: 5.1.2 3262 | strip-ansi: 7.1.0 3263 | 3264 | wrappy@1.0.2: {} 3265 | 3266 | yallist@4.0.0: {} 3267 | 3268 | yaml@2.4.1: {} 3269 | 3270 | yocto-queue@0.1.0: {} 3271 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- 1 | import type { Config } from "tailwindcss"; 2 | 3 | const config: Config = { 4 | content: [ 5 | "./pages/**/*.{js,ts,jsx,tsx,mdx}", 6 | "./components/**/*.{js,ts,jsx,tsx,mdx}", 7 | "./app/**/*.{js,ts,jsx,tsx,mdx}", 8 | ], 9 | theme: { 10 | extend: { 11 | backgroundImage: { 12 | "gradient-radial": "radial-gradient(var(--tw-gradient-stops))", 13 | "gradient-conic": 14 | "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))", 15 | }, 16 | }, 17 | }, 18 | plugins: [], 19 | }; 20 | export default config; 21 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "lib": ["dom", "dom.iterable", "esnext"], 4 | "allowJs": true, 5 | "skipLibCheck": true, 6 | "strict": true, 7 | "noEmit": true, 8 | "esModuleInterop": true, 9 | "module": "esnext", 10 | "moduleResolution": "bundler", 11 | "resolveJsonModule": true, 12 | "isolatedModules": true, 13 | "jsx": "preserve", 14 | "incremental": true, 15 | "plugins": [ 16 | { 17 | "name": "next" 18 | } 19 | ], 20 | "paths": { 21 | "@/*": ["./*"] 22 | } 23 | }, 24 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 25 | "exclude": ["node_modules"] 26 | } 27 | --------------------------------------------------------------------------------