├── .eslintrc.json ├── next.config.ts ├── postcss.config.mjs ├── middleware.ts ├── README.md ├── .gitignore ├── app └── api │ └── posts │ ├── [id] │ ├── comments │ │ └── route.ts │ └── route.ts │ └── route.ts ├── package.json ├── tsconfig.json ├── LICENSE └── pnpm-lock.yaml /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/core-web-vitals", "next/typescript"] 3 | } 4 | -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- 1 | import { NextConfig } from "next"; 2 | 3 | const nextConfig:NextConfig = { 4 | 5 | }; 6 | 7 | export default nextConfig; 8 | -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('postcss-load-config').Config} */ 2 | const config = { 3 | plugins: { 4 | tailwindcss: {}, 5 | }, 6 | }; 7 | 8 | export default config; 9 | -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- 1 | import { NextResponse } from "next/server"; 2 | 3 | export default function middleware() { 4 | console.log("this is middleware") 5 | return NextResponse.next(); 6 | } 7 | 8 | export const config = { 9 | matcher: "/api/:path*", 10 | }; 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Nexjs Route handlers 2 | 3 | > Build Restful Apis With Next js App router 4 | 5 | Clone git Repository 6 | 7 | ```bash 8 | git clone 9 | ``` 10 | 11 | install dependicies 12 | 13 | ```bash 14 | pnpm install 15 | 16 | ``` 17 | 18 | start development server 19 | 20 | ```bash 21 | pnpm dev 22 | ``` 23 | Open browser [localhost:3000](http://localhost:3000) -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /app/api/posts/[id]/comments/route.ts: -------------------------------------------------------------------------------- 1 | import { NextResponse } from "next/server"; 2 | 3 | export async function GET({ params }: { params: { id: string } }) { 4 | try { 5 | const { id } = params; 6 | const response = await fetch( 7 | `https://jsonplaceholder.typicode.com/posts/${id}/comments`, 8 | ); 9 | if (!response.ok) throw new Error("comments not found"); 10 | const comments = await response.json(); 11 | return Response.json(comments); 12 | } catch (e) { 13 | return NextResponse.json({ error: (e as Error).message },{status:500}); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "route-handlers", 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": "19.0.0-rc-fb9a90fa48-20240614", 13 | "react-dom": "19.0.0-rc-fb9a90fa48-20240614", 14 | "next": "15.0.3" 15 | }, 16 | "devDependencies": { 17 | "typescript": "^5.7.2", 18 | "@types/node": "^20.17.9", 19 | "@types/react": "^18.3.12", 20 | "@types/react-dom": "^18.3.1", 21 | "eslint": "^9.15.0", 22 | "eslint-config-next": "15.0.1" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2017", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "noEmit": true, 9 | "esModuleInterop": true, 10 | "module": "esnext", 11 | "moduleResolution": "bundler", 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "jsx": "preserve", 15 | "incremental": true, 16 | "plugins": [ 17 | { 18 | "name": "next" 19 | } 20 | ], 21 | "paths": { 22 | "@/*": ["./*"] 23 | } 24 | }, 25 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 26 | "exclude": ["node_modules"] 27 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Shema Elisa 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /app/api/posts/route.ts: -------------------------------------------------------------------------------- 1 | import { NextRequest, NextResponse } from "next/server"; 2 | 3 | export async function GET() { 4 | try { 5 | const response = await fetch("https://jsonplaceholder.typicode.com/posts"); 6 | if (response.ok) { 7 | const data = await response.json(); 8 | return Response.json(data, { status: 200 }); 9 | } 10 | throw new Error("Something Went wrong"); 11 | } catch (e) { 12 | if (e instanceof Error) { 13 | return Response.json(e.message, { status: 500 }); 14 | } 15 | return NextResponse.json("Something Went wrong", { status: 500 }); 16 | } 17 | } 18 | 19 | export async function POST(request: NextRequest) { 20 | try { 21 | const { title, body, userId } = await request.json(); 22 | const response = await fetch("https://jsonplaceholder.typicode.com/posts", { 23 | method: "POST", 24 | body: JSON.stringify({ 25 | title: title, 26 | body: body, 27 | userId: userId, 28 | }), 29 | headers: { 30 | "Content-Type": "application/json", 31 | }, 32 | }); 33 | if (!response.ok) throw Error("Something Went wrong"); 34 | return NextResponse.json(await response.json(),{status:200}); 35 | } catch (e) { 36 | return NextResponse.json({ error: (e as Error).message }, { status: 500 }); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /app/api/posts/[id]/route.ts: -------------------------------------------------------------------------------- 1 | import { NextRequest, NextResponse } from "next/server"; 2 | export async function GET( 3 | request: NextRequest, 4 | { params }: { params: { id: number } } 5 | ) { 6 | const { id } = params; 7 | try { 8 | const response = await fetch( 9 | `https://jsonplaceholder.typicode.com/posts/${id}` 10 | ); 11 | if (!response.ok) throw new Error("Something went wrong!"); 12 | const post = await response.json(); 13 | if (!post) NextResponse.json({ message: "Post not found." }, { status: 404 }); 14 | return NextResponse.json(post, { status: 200 }); 15 | } catch (e) { 16 | return NextResponse.json({ error: (e as Error).message }, { status: 500 }); 17 | } 18 | } 19 | 20 | export async function PUT( 21 | request: NextRequest, 22 | { params }: { params: { id: number } } 23 | ) { 24 | try { 25 | const { id } = params; 26 | const { title, userId, body } = await request.json(); 27 | const response = await fetch( 28 | `https://jsonplaceholder.typicode.com/posts/${id}`, 29 | { 30 | method: "PUT", 31 | headers: { 32 | "content-type": "application/json", 33 | }, 34 | body: JSON.stringify({ 35 | id: id, 36 | title: title, 37 | body: body, 38 | userId: userId, 39 | }), 40 | } 41 | ); 42 | if (!response.ok) throw new Error(response.statusText); 43 | const data = await response.json(); 44 | return NextResponse.json(data, { status: 200 }); 45 | } catch (e) { 46 | return NextResponse.json({ error: (e as Error).message }, { status: 500 }); 47 | } 48 | } 49 | export async function DELETE( 50 | request: Request, 51 | { params }: { params: { id: number } } 52 | ) { 53 | try { 54 | const { id } = params; 55 | const response = await fetch( 56 | `https://jsonplaceholder.typicode.com/posts/${id}`, 57 | { 58 | method: "DELETE", 59 | } 60 | ); 61 | if (!response.ok) throw new Error(response.statusText); 62 | return NextResponse.json({ message: "post deeleted" }, { status: 200 }); 63 | } catch (e) { 64 | return NextResponse.json((e as Error).message, { status: 500 }); 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /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: 15.0.3 13 | version: 15.0.3(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@19.0.0-rc-fb9a90fa48-20240614))(react@19.0.0-rc-fb9a90fa48-20240614) 14 | react: 15 | specifier: 19.0.0-rc-fb9a90fa48-20240614 16 | version: 19.0.0-rc-fb9a90fa48-20240614 17 | react-dom: 18 | specifier: 19.0.0-rc-fb9a90fa48-20240614 19 | version: 19.0.0-rc-fb9a90fa48-20240614(react@19.0.0-rc-fb9a90fa48-20240614) 20 | devDependencies: 21 | '@types/node': 22 | specifier: ^20.17.9 23 | version: 20.17.9 24 | '@types/react': 25 | specifier: ^18.3.12 26 | version: 18.3.12 27 | '@types/react-dom': 28 | specifier: ^18.3.1 29 | version: 18.3.1 30 | eslint: 31 | specifier: ^9.15.0 32 | version: 9.16.0 33 | eslint-config-next: 34 | specifier: 15.0.1 35 | version: 15.0.1(eslint@9.16.0)(typescript@5.7.2) 36 | typescript: 37 | specifier: ^5.7.2 38 | version: 5.7.2 39 | 40 | packages: 41 | 42 | '@emnapi/runtime@1.3.1': 43 | resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==} 44 | 45 | '@eslint-community/eslint-utils@4.4.1': 46 | resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} 47 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 48 | peerDependencies: 49 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 50 | 51 | '@eslint-community/regexpp@4.12.1': 52 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} 53 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 54 | 55 | '@eslint/config-array@0.19.0': 56 | resolution: {integrity: sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==} 57 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 58 | 59 | '@eslint/core@0.9.0': 60 | resolution: {integrity: sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg==} 61 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 62 | 63 | '@eslint/eslintrc@3.2.0': 64 | resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} 65 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 66 | 67 | '@eslint/js@9.16.0': 68 | resolution: {integrity: sha512-tw2HxzQkrbeuvyj1tG2Yqq+0H9wGoI2IMk4EOsQeX+vmd75FtJAzf+gTA69WF+baUKRYQ3x2kbLE08js5OsTVg==} 69 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 70 | 71 | '@eslint/object-schema@2.1.4': 72 | resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==} 73 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 74 | 75 | '@eslint/plugin-kit@0.2.3': 76 | resolution: {integrity: sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==} 77 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 78 | 79 | '@humanfs/core@0.19.1': 80 | resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} 81 | engines: {node: '>=18.18.0'} 82 | 83 | '@humanfs/node@0.16.6': 84 | resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} 85 | engines: {node: '>=18.18.0'} 86 | 87 | '@humanwhocodes/module-importer@1.0.1': 88 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 89 | engines: {node: '>=12.22'} 90 | 91 | '@humanwhocodes/retry@0.3.1': 92 | resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} 93 | engines: {node: '>=18.18'} 94 | 95 | '@humanwhocodes/retry@0.4.1': 96 | resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==} 97 | engines: {node: '>=18.18'} 98 | 99 | '@img/sharp-darwin-arm64@0.33.5': 100 | resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} 101 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 102 | cpu: [arm64] 103 | os: [darwin] 104 | 105 | '@img/sharp-darwin-x64@0.33.5': 106 | resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} 107 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 108 | cpu: [x64] 109 | os: [darwin] 110 | 111 | '@img/sharp-libvips-darwin-arm64@1.0.4': 112 | resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} 113 | cpu: [arm64] 114 | os: [darwin] 115 | 116 | '@img/sharp-libvips-darwin-x64@1.0.4': 117 | resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} 118 | cpu: [x64] 119 | os: [darwin] 120 | 121 | '@img/sharp-libvips-linux-arm64@1.0.4': 122 | resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} 123 | cpu: [arm64] 124 | os: [linux] 125 | 126 | '@img/sharp-libvips-linux-arm@1.0.5': 127 | resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} 128 | cpu: [arm] 129 | os: [linux] 130 | 131 | '@img/sharp-libvips-linux-s390x@1.0.4': 132 | resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} 133 | cpu: [s390x] 134 | os: [linux] 135 | 136 | '@img/sharp-libvips-linux-x64@1.0.4': 137 | resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} 138 | cpu: [x64] 139 | os: [linux] 140 | 141 | '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 142 | resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} 143 | cpu: [arm64] 144 | os: [linux] 145 | 146 | '@img/sharp-libvips-linuxmusl-x64@1.0.4': 147 | resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} 148 | cpu: [x64] 149 | os: [linux] 150 | 151 | '@img/sharp-linux-arm64@0.33.5': 152 | resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} 153 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 154 | cpu: [arm64] 155 | os: [linux] 156 | 157 | '@img/sharp-linux-arm@0.33.5': 158 | resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} 159 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 160 | cpu: [arm] 161 | os: [linux] 162 | 163 | '@img/sharp-linux-s390x@0.33.5': 164 | resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} 165 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 166 | cpu: [s390x] 167 | os: [linux] 168 | 169 | '@img/sharp-linux-x64@0.33.5': 170 | resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} 171 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 172 | cpu: [x64] 173 | os: [linux] 174 | 175 | '@img/sharp-linuxmusl-arm64@0.33.5': 176 | resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} 177 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 178 | cpu: [arm64] 179 | os: [linux] 180 | 181 | '@img/sharp-linuxmusl-x64@0.33.5': 182 | resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} 183 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 184 | cpu: [x64] 185 | os: [linux] 186 | 187 | '@img/sharp-wasm32@0.33.5': 188 | resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} 189 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 190 | cpu: [wasm32] 191 | 192 | '@img/sharp-win32-ia32@0.33.5': 193 | resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} 194 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 195 | cpu: [ia32] 196 | os: [win32] 197 | 198 | '@img/sharp-win32-x64@0.33.5': 199 | resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==} 200 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 201 | cpu: [x64] 202 | os: [win32] 203 | 204 | '@next/env@15.0.3': 205 | resolution: {integrity: sha512-t9Xy32pjNOvVn2AS+Utt6VmyrshbpfUMhIjFO60gI58deSo/KgLOp31XZ4O+kY/Is8WAGYwA5gR7kOb1eORDBA==} 206 | 207 | '@next/eslint-plugin-next@15.0.1': 208 | resolution: {integrity: sha512-bKWsMaGPbiFAaGqrDJvbE8b4Z0uKicGVcgOI77YM2ui3UfjHMr4emFPrZTLeZVchi7fT1mooG2LxREfUUClIKw==} 209 | 210 | '@next/swc-darwin-arm64@15.0.3': 211 | resolution: {integrity: sha512-s3Q/NOorCsLYdCKvQlWU+a+GeAd3C8Rb3L1YnetsgwXzhc3UTWrtQpB/3eCjFOdGUj5QmXfRak12uocd1ZiiQw==} 212 | engines: {node: '>= 10'} 213 | cpu: [arm64] 214 | os: [darwin] 215 | 216 | '@next/swc-darwin-x64@15.0.3': 217 | resolution: {integrity: sha512-Zxl/TwyXVZPCFSf0u2BNj5sE0F2uR6iSKxWpq4Wlk/Sv9Ob6YCKByQTkV2y6BCic+fkabp9190hyrDdPA/dNrw==} 218 | engines: {node: '>= 10'} 219 | cpu: [x64] 220 | os: [darwin] 221 | 222 | '@next/swc-linux-arm64-gnu@15.0.3': 223 | resolution: {integrity: sha512-T5+gg2EwpsY3OoaLxUIofmMb7ohAUlcNZW0fPQ6YAutaWJaxt1Z1h+8zdl4FRIOr5ABAAhXtBcpkZNwUcKI2fw==} 224 | engines: {node: '>= 10'} 225 | cpu: [arm64] 226 | os: [linux] 227 | 228 | '@next/swc-linux-arm64-musl@15.0.3': 229 | resolution: {integrity: sha512-WkAk6R60mwDjH4lG/JBpb2xHl2/0Vj0ZRu1TIzWuOYfQ9tt9NFsIinI1Epma77JVgy81F32X/AeD+B2cBu/YQA==} 230 | engines: {node: '>= 10'} 231 | cpu: [arm64] 232 | os: [linux] 233 | 234 | '@next/swc-linux-x64-gnu@15.0.3': 235 | resolution: {integrity: sha512-gWL/Cta1aPVqIGgDb6nxkqy06DkwJ9gAnKORdHWX1QBbSZZB+biFYPFti8aKIQL7otCE1pjyPaXpFzGeG2OS2w==} 236 | engines: {node: '>= 10'} 237 | cpu: [x64] 238 | os: [linux] 239 | 240 | '@next/swc-linux-x64-musl@15.0.3': 241 | resolution: {integrity: sha512-QQEMwFd8r7C0GxQS62Zcdy6GKx999I/rTO2ubdXEe+MlZk9ZiinsrjwoiBL5/57tfyjikgh6GOU2WRQVUej3UA==} 242 | engines: {node: '>= 10'} 243 | cpu: [x64] 244 | os: [linux] 245 | 246 | '@next/swc-win32-arm64-msvc@15.0.3': 247 | resolution: {integrity: sha512-9TEp47AAd/ms9fPNgtgnT7F3M1Hf7koIYYWCMQ9neOwjbVWJsHZxrFbI3iEDJ8rf1TDGpmHbKxXf2IFpAvheIQ==} 248 | engines: {node: '>= 10'} 249 | cpu: [arm64] 250 | os: [win32] 251 | 252 | '@next/swc-win32-x64-msvc@15.0.3': 253 | resolution: {integrity: sha512-VNAz+HN4OGgvZs6MOoVfnn41kBzT+M+tB+OK4cww6DNyWS6wKaDpaAm/qLeOUbnMh0oVx1+mg0uoYARF69dJyA==} 254 | engines: {node: '>= 10'} 255 | cpu: [x64] 256 | os: [win32] 257 | 258 | '@nodelib/fs.scandir@2.1.5': 259 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 260 | engines: {node: '>= 8'} 261 | 262 | '@nodelib/fs.stat@2.0.5': 263 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 264 | engines: {node: '>= 8'} 265 | 266 | '@nodelib/fs.walk@1.2.8': 267 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 268 | engines: {node: '>= 8'} 269 | 270 | '@nolyfill/is-core-module@1.0.39': 271 | resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==} 272 | engines: {node: '>=12.4.0'} 273 | 274 | '@rtsao/scc@1.1.0': 275 | resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} 276 | 277 | '@rushstack/eslint-patch@1.10.4': 278 | resolution: {integrity: sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==} 279 | 280 | '@swc/counter@0.1.3': 281 | resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} 282 | 283 | '@swc/helpers@0.5.13': 284 | resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==} 285 | 286 | '@types/estree@1.0.6': 287 | resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 288 | 289 | '@types/json-schema@7.0.15': 290 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 291 | 292 | '@types/json5@0.0.29': 293 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 294 | 295 | '@types/node@20.17.9': 296 | resolution: {integrity: sha512-0JOXkRyLanfGPE2QRCwgxhzlBAvaRdCNMcvbd7jFfpmD4eEXll7LRwy5ymJmyeZqk7Nh7eD2LeUyQ68BbndmXw==} 297 | 298 | '@types/prop-types@15.7.13': 299 | resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==} 300 | 301 | '@types/react-dom@18.3.1': 302 | resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==} 303 | 304 | '@types/react@18.3.12': 305 | resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==} 306 | 307 | '@typescript-eslint/eslint-plugin@8.16.0': 308 | resolution: {integrity: sha512-5YTHKV8MYlyMI6BaEG7crQ9BhSc8RxzshOReKwZwRWN0+XvvTOm+L/UYLCYxFpfwYuAAqhxiq4yae0CMFwbL7Q==} 309 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 310 | peerDependencies: 311 | '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 312 | eslint: ^8.57.0 || ^9.0.0 313 | typescript: '*' 314 | peerDependenciesMeta: 315 | typescript: 316 | optional: true 317 | 318 | '@typescript-eslint/parser@8.16.0': 319 | resolution: {integrity: sha512-D7DbgGFtsqIPIFMPJwCad9Gfi/hC0PWErRRHFnaCWoEDYi5tQUDiJCTmGUbBiLzjqAck4KcXt9Ayj0CNlIrF+w==} 320 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 321 | peerDependencies: 322 | eslint: ^8.57.0 || ^9.0.0 323 | typescript: '*' 324 | peerDependenciesMeta: 325 | typescript: 326 | optional: true 327 | 328 | '@typescript-eslint/scope-manager@8.16.0': 329 | resolution: {integrity: sha512-mwsZWubQvBki2t5565uxF0EYvG+FwdFb8bMtDuGQLdCCnGPrDEDvm1gtfynuKlnpzeBRqdFCkMf9jg1fnAK8sg==} 330 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 331 | 332 | '@typescript-eslint/type-utils@8.16.0': 333 | resolution: {integrity: sha512-IqZHGG+g1XCWX9NyqnI/0CX5LL8/18awQqmkZSl2ynn8F76j579dByc0jhfVSnSnhf7zv76mKBQv9HQFKvDCgg==} 334 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 335 | peerDependencies: 336 | eslint: ^8.57.0 || ^9.0.0 337 | typescript: '*' 338 | peerDependenciesMeta: 339 | typescript: 340 | optional: true 341 | 342 | '@typescript-eslint/types@8.16.0': 343 | resolution: {integrity: sha512-NzrHj6thBAOSE4d9bsuRNMvk+BvaQvmY4dDglgkgGC0EW/tB3Kelnp3tAKH87GEwzoxgeQn9fNGRyFJM/xd+GQ==} 344 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 345 | 346 | '@typescript-eslint/typescript-estree@8.16.0': 347 | resolution: {integrity: sha512-E2+9IzzXMc1iaBy9zmo+UYvluE3TW7bCGWSF41hVWUE01o8nzr1rvOQYSxelxr6StUvRcTMe633eY8mXASMaNw==} 348 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 349 | peerDependencies: 350 | typescript: '*' 351 | peerDependenciesMeta: 352 | typescript: 353 | optional: true 354 | 355 | '@typescript-eslint/utils@8.16.0': 356 | resolution: {integrity: sha512-C1zRy/mOL8Pj157GiX4kaw7iyRLKfJXBR3L82hk5kS/GyHcOFmy4YUq/zfZti72I9wnuQtA/+xzft4wCC8PJdA==} 357 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 358 | peerDependencies: 359 | eslint: ^8.57.0 || ^9.0.0 360 | typescript: '*' 361 | peerDependenciesMeta: 362 | typescript: 363 | optional: true 364 | 365 | '@typescript-eslint/visitor-keys@8.16.0': 366 | resolution: {integrity: sha512-pq19gbaMOmFE3CbL0ZB8J8BFCo2ckfHBfaIsaOZgBIF4EoISJIdLX5xRhd0FGB0LlHReNRuzoJoMGpTjq8F2CQ==} 367 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 368 | 369 | acorn-jsx@5.3.2: 370 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 371 | peerDependencies: 372 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 373 | 374 | acorn@8.14.0: 375 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 376 | engines: {node: '>=0.4.0'} 377 | hasBin: true 378 | 379 | ajv@6.12.6: 380 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 381 | 382 | ansi-styles@4.3.0: 383 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 384 | engines: {node: '>=8'} 385 | 386 | argparse@2.0.1: 387 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 388 | 389 | aria-query@5.3.2: 390 | resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} 391 | engines: {node: '>= 0.4'} 392 | 393 | array-buffer-byte-length@1.0.1: 394 | resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} 395 | engines: {node: '>= 0.4'} 396 | 397 | array-includes@3.1.8: 398 | resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} 399 | engines: {node: '>= 0.4'} 400 | 401 | array.prototype.findlast@1.2.5: 402 | resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} 403 | engines: {node: '>= 0.4'} 404 | 405 | array.prototype.findlastindex@1.2.5: 406 | resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} 407 | engines: {node: '>= 0.4'} 408 | 409 | array.prototype.flat@1.3.2: 410 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} 411 | engines: {node: '>= 0.4'} 412 | 413 | array.prototype.flatmap@1.3.2: 414 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} 415 | engines: {node: '>= 0.4'} 416 | 417 | array.prototype.tosorted@1.1.4: 418 | resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} 419 | engines: {node: '>= 0.4'} 420 | 421 | arraybuffer.prototype.slice@1.0.3: 422 | resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} 423 | engines: {node: '>= 0.4'} 424 | 425 | ast-types-flow@0.0.8: 426 | resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} 427 | 428 | available-typed-arrays@1.0.7: 429 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 430 | engines: {node: '>= 0.4'} 431 | 432 | axe-core@4.10.2: 433 | resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==} 434 | engines: {node: '>=4'} 435 | 436 | axobject-query@4.1.0: 437 | resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 438 | engines: {node: '>= 0.4'} 439 | 440 | balanced-match@1.0.2: 441 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 442 | 443 | brace-expansion@1.1.11: 444 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 445 | 446 | brace-expansion@2.0.1: 447 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 448 | 449 | braces@3.0.3: 450 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 451 | engines: {node: '>=8'} 452 | 453 | busboy@1.6.0: 454 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 455 | engines: {node: '>=10.16.0'} 456 | 457 | call-bind@1.0.7: 458 | resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} 459 | engines: {node: '>= 0.4'} 460 | 461 | callsites@3.1.0: 462 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 463 | engines: {node: '>=6'} 464 | 465 | caniuse-lite@1.0.30001685: 466 | resolution: {integrity: sha512-e/kJN1EMyHQzgcMEEgoo+YTCO1NGCmIYHk5Qk8jT6AazWemS5QFKJ5ShCJlH3GZrNIdZofcNCEwZqbMjjKzmnA==} 467 | 468 | chalk@4.1.2: 469 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 470 | engines: {node: '>=10'} 471 | 472 | client-only@0.0.1: 473 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} 474 | 475 | color-convert@2.0.1: 476 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 477 | engines: {node: '>=7.0.0'} 478 | 479 | color-name@1.1.4: 480 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 481 | 482 | color-string@1.9.1: 483 | resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} 484 | 485 | color@4.2.3: 486 | resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} 487 | engines: {node: '>=12.5.0'} 488 | 489 | concat-map@0.0.1: 490 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 491 | 492 | cross-spawn@7.0.6: 493 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 494 | engines: {node: '>= 8'} 495 | 496 | csstype@3.1.3: 497 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 498 | 499 | damerau-levenshtein@1.0.8: 500 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 501 | 502 | data-view-buffer@1.0.1: 503 | resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} 504 | engines: {node: '>= 0.4'} 505 | 506 | data-view-byte-length@1.0.1: 507 | resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} 508 | engines: {node: '>= 0.4'} 509 | 510 | data-view-byte-offset@1.0.0: 511 | resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} 512 | engines: {node: '>= 0.4'} 513 | 514 | debug@3.2.7: 515 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 516 | peerDependencies: 517 | supports-color: '*' 518 | peerDependenciesMeta: 519 | supports-color: 520 | optional: true 521 | 522 | debug@4.3.7: 523 | resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} 524 | engines: {node: '>=6.0'} 525 | peerDependencies: 526 | supports-color: '*' 527 | peerDependenciesMeta: 528 | supports-color: 529 | optional: true 530 | 531 | deep-is@0.1.4: 532 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 533 | 534 | define-data-property@1.1.4: 535 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 536 | engines: {node: '>= 0.4'} 537 | 538 | define-properties@1.2.1: 539 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 540 | engines: {node: '>= 0.4'} 541 | 542 | detect-libc@2.0.3: 543 | resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} 544 | engines: {node: '>=8'} 545 | 546 | doctrine@2.1.0: 547 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 548 | engines: {node: '>=0.10.0'} 549 | 550 | emoji-regex@9.2.2: 551 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 552 | 553 | enhanced-resolve@5.17.1: 554 | resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} 555 | engines: {node: '>=10.13.0'} 556 | 557 | es-abstract@1.23.5: 558 | resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==} 559 | engines: {node: '>= 0.4'} 560 | 561 | es-define-property@1.0.0: 562 | resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} 563 | engines: {node: '>= 0.4'} 564 | 565 | es-errors@1.3.0: 566 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 567 | engines: {node: '>= 0.4'} 568 | 569 | es-iterator-helpers@1.2.0: 570 | resolution: {integrity: sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==} 571 | engines: {node: '>= 0.4'} 572 | 573 | es-object-atoms@1.0.0: 574 | resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} 575 | engines: {node: '>= 0.4'} 576 | 577 | es-set-tostringtag@2.0.3: 578 | resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} 579 | engines: {node: '>= 0.4'} 580 | 581 | es-shim-unscopables@1.0.2: 582 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 583 | 584 | es-to-primitive@1.3.0: 585 | resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} 586 | engines: {node: '>= 0.4'} 587 | 588 | escape-string-regexp@4.0.0: 589 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 590 | engines: {node: '>=10'} 591 | 592 | eslint-config-next@15.0.1: 593 | resolution: {integrity: sha512-3cYCrgbH6GS/ufApza7XCKz92vtq4dAdYhx++rMFNlH2cAV+/GsAKkrr4+bohYOACmzG2nAOR+uWprKC1Uld6A==} 594 | peerDependencies: 595 | eslint: ^7.23.0 || ^8.0.0 || ^9.0.0 596 | typescript: '>=3.3.1' 597 | peerDependenciesMeta: 598 | typescript: 599 | optional: true 600 | 601 | eslint-import-resolver-node@0.3.9: 602 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 603 | 604 | eslint-import-resolver-typescript@3.6.3: 605 | resolution: {integrity: sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==} 606 | engines: {node: ^14.18.0 || >=16.0.0} 607 | peerDependencies: 608 | eslint: '*' 609 | eslint-plugin-import: '*' 610 | eslint-plugin-import-x: '*' 611 | peerDependenciesMeta: 612 | eslint-plugin-import: 613 | optional: true 614 | eslint-plugin-import-x: 615 | optional: true 616 | 617 | eslint-module-utils@2.12.0: 618 | resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} 619 | engines: {node: '>=4'} 620 | peerDependencies: 621 | '@typescript-eslint/parser': '*' 622 | eslint: '*' 623 | eslint-import-resolver-node: '*' 624 | eslint-import-resolver-typescript: '*' 625 | eslint-import-resolver-webpack: '*' 626 | peerDependenciesMeta: 627 | '@typescript-eslint/parser': 628 | optional: true 629 | eslint: 630 | optional: true 631 | eslint-import-resolver-node: 632 | optional: true 633 | eslint-import-resolver-typescript: 634 | optional: true 635 | eslint-import-resolver-webpack: 636 | optional: true 637 | 638 | eslint-plugin-import@2.31.0: 639 | resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} 640 | engines: {node: '>=4'} 641 | peerDependencies: 642 | '@typescript-eslint/parser': '*' 643 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 644 | peerDependenciesMeta: 645 | '@typescript-eslint/parser': 646 | optional: true 647 | 648 | eslint-plugin-jsx-a11y@6.10.2: 649 | resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==} 650 | engines: {node: '>=4.0'} 651 | peerDependencies: 652 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 653 | 654 | eslint-plugin-react-hooks@5.0.0: 655 | resolution: {integrity: sha512-hIOwI+5hYGpJEc4uPRmz2ulCjAGD/N13Lukkh8cLV0i2IRk/bdZDYjgLVHj+U9Z704kLIdIO6iueGvxNur0sgw==} 656 | engines: {node: '>=10'} 657 | peerDependencies: 658 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 659 | 660 | eslint-plugin-react@7.37.2: 661 | resolution: {integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==} 662 | engines: {node: '>=4'} 663 | peerDependencies: 664 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 665 | 666 | eslint-scope@8.2.0: 667 | resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==} 668 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 669 | 670 | eslint-visitor-keys@3.4.3: 671 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 672 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 673 | 674 | eslint-visitor-keys@4.2.0: 675 | resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} 676 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 677 | 678 | eslint@9.16.0: 679 | resolution: {integrity: sha512-whp8mSQI4C8VXd+fLgSM0lh3UlmcFtVwUQjyKCFfsp+2ItAIYhlq/hqGahGqHE6cv9unM41VlqKk2VtKYR2TaA==} 680 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 681 | hasBin: true 682 | peerDependencies: 683 | jiti: '*' 684 | peerDependenciesMeta: 685 | jiti: 686 | optional: true 687 | 688 | espree@10.3.0: 689 | resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} 690 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 691 | 692 | esquery@1.6.0: 693 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 694 | engines: {node: '>=0.10'} 695 | 696 | esrecurse@4.3.0: 697 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 698 | engines: {node: '>=4.0'} 699 | 700 | estraverse@5.3.0: 701 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 702 | engines: {node: '>=4.0'} 703 | 704 | esutils@2.0.3: 705 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 706 | engines: {node: '>=0.10.0'} 707 | 708 | fast-deep-equal@3.1.3: 709 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 710 | 711 | fast-glob@3.3.1: 712 | resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} 713 | engines: {node: '>=8.6.0'} 714 | 715 | fast-glob@3.3.2: 716 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 717 | engines: {node: '>=8.6.0'} 718 | 719 | fast-json-stable-stringify@2.1.0: 720 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 721 | 722 | fast-levenshtein@2.0.6: 723 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 724 | 725 | fastq@1.17.1: 726 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 727 | 728 | file-entry-cache@8.0.0: 729 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} 730 | engines: {node: '>=16.0.0'} 731 | 732 | fill-range@7.1.1: 733 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 734 | engines: {node: '>=8'} 735 | 736 | find-up@5.0.0: 737 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 738 | engines: {node: '>=10'} 739 | 740 | flat-cache@4.0.1: 741 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} 742 | engines: {node: '>=16'} 743 | 744 | flatted@3.3.2: 745 | resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} 746 | 747 | for-each@0.3.3: 748 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 749 | 750 | function-bind@1.1.2: 751 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 752 | 753 | function.prototype.name@1.1.6: 754 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} 755 | engines: {node: '>= 0.4'} 756 | 757 | functions-have-names@1.2.3: 758 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 759 | 760 | get-intrinsic@1.2.4: 761 | resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} 762 | engines: {node: '>= 0.4'} 763 | 764 | get-symbol-description@1.0.2: 765 | resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} 766 | engines: {node: '>= 0.4'} 767 | 768 | get-tsconfig@4.8.1: 769 | resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} 770 | 771 | glob-parent@5.1.2: 772 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 773 | engines: {node: '>= 6'} 774 | 775 | glob-parent@6.0.2: 776 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 777 | engines: {node: '>=10.13.0'} 778 | 779 | globals@14.0.0: 780 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} 781 | engines: {node: '>=18'} 782 | 783 | globalthis@1.0.4: 784 | resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} 785 | engines: {node: '>= 0.4'} 786 | 787 | gopd@1.1.0: 788 | resolution: {integrity: sha512-FQoVQnqcdk4hVM4JN1eromaun4iuS34oStkdlLENLdpULsuQcTyXj8w7ayhuUfPwEYZ1ZOooOTT6fdA9Vmx/RA==} 789 | engines: {node: '>= 0.4'} 790 | 791 | graceful-fs@4.2.11: 792 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 793 | 794 | graphemer@1.4.0: 795 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 796 | 797 | has-bigints@1.0.2: 798 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 799 | 800 | has-flag@4.0.0: 801 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 802 | engines: {node: '>=8'} 803 | 804 | has-property-descriptors@1.0.2: 805 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 806 | 807 | has-proto@1.1.0: 808 | resolution: {integrity: sha512-QLdzI9IIO1Jg7f9GT1gXpPpXArAn6cS31R1eEZqz08Gc+uQ8/XiqHWt17Fiw+2p6oTTIq5GXEpQkAlA88YRl/Q==} 809 | engines: {node: '>= 0.4'} 810 | 811 | has-symbols@1.0.3: 812 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 813 | engines: {node: '>= 0.4'} 814 | 815 | has-tostringtag@1.0.2: 816 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 817 | engines: {node: '>= 0.4'} 818 | 819 | hasown@2.0.2: 820 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 821 | engines: {node: '>= 0.4'} 822 | 823 | ignore@5.3.2: 824 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 825 | engines: {node: '>= 4'} 826 | 827 | import-fresh@3.3.0: 828 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 829 | engines: {node: '>=6'} 830 | 831 | imurmurhash@0.1.4: 832 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 833 | engines: {node: '>=0.8.19'} 834 | 835 | internal-slot@1.0.7: 836 | resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} 837 | engines: {node: '>= 0.4'} 838 | 839 | is-array-buffer@3.0.4: 840 | resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} 841 | engines: {node: '>= 0.4'} 842 | 843 | is-arrayish@0.3.2: 844 | resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} 845 | 846 | is-async-function@2.0.0: 847 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} 848 | engines: {node: '>= 0.4'} 849 | 850 | is-bigint@1.0.4: 851 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 852 | 853 | is-boolean-object@1.2.0: 854 | resolution: {integrity: sha512-kR5g0+dXf/+kXnqI+lu0URKYPKgICtHGGNCDSB10AaUFj3o/HkB3u7WfpRBJGFopxxY0oH3ux7ZsDjLtK7xqvw==} 855 | engines: {node: '>= 0.4'} 856 | 857 | is-bun-module@1.3.0: 858 | resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==} 859 | 860 | is-callable@1.2.7: 861 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 862 | engines: {node: '>= 0.4'} 863 | 864 | is-core-module@2.15.1: 865 | resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} 866 | engines: {node: '>= 0.4'} 867 | 868 | is-data-view@1.0.1: 869 | resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} 870 | engines: {node: '>= 0.4'} 871 | 872 | is-date-object@1.0.5: 873 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 874 | engines: {node: '>= 0.4'} 875 | 876 | is-extglob@2.1.1: 877 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 878 | engines: {node: '>=0.10.0'} 879 | 880 | is-finalizationregistry@1.1.0: 881 | resolution: {integrity: sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==} 882 | engines: {node: '>= 0.4'} 883 | 884 | is-generator-function@1.0.10: 885 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} 886 | engines: {node: '>= 0.4'} 887 | 888 | is-glob@4.0.3: 889 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 890 | engines: {node: '>=0.10.0'} 891 | 892 | is-map@2.0.3: 893 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 894 | engines: {node: '>= 0.4'} 895 | 896 | is-negative-zero@2.0.3: 897 | resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} 898 | engines: {node: '>= 0.4'} 899 | 900 | is-number-object@1.1.0: 901 | resolution: {integrity: sha512-KVSZV0Dunv9DTPkhXwcZ3Q+tUc9TsaE1ZwX5J2WMvsSGS6Md8TFPun5uwh0yRdrNerI6vf/tbJxqSx4c1ZI1Lw==} 902 | engines: {node: '>= 0.4'} 903 | 904 | is-number@7.0.0: 905 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 906 | engines: {node: '>=0.12.0'} 907 | 908 | is-regex@1.2.0: 909 | resolution: {integrity: sha512-B6ohK4ZmoftlUe+uvenXSbPJFo6U37BH7oO1B3nQH8f/7h27N56s85MhUtbFJAziz5dcmuR3i8ovUl35zp8pFA==} 910 | engines: {node: '>= 0.4'} 911 | 912 | is-set@2.0.3: 913 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} 914 | engines: {node: '>= 0.4'} 915 | 916 | is-shared-array-buffer@1.0.3: 917 | resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} 918 | engines: {node: '>= 0.4'} 919 | 920 | is-string@1.1.0: 921 | resolution: {integrity: sha512-PlfzajuF9vSo5wErv3MJAKD/nqf9ngAs1NFQYm16nUYFO2IzxJ2hcm+IOCg+EEopdykNNUhVq5cz35cAUxU8+g==} 922 | engines: {node: '>= 0.4'} 923 | 924 | is-symbol@1.0.4: 925 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 926 | engines: {node: '>= 0.4'} 927 | 928 | is-typed-array@1.1.13: 929 | resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} 930 | engines: {node: '>= 0.4'} 931 | 932 | is-weakmap@2.0.2: 933 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} 934 | engines: {node: '>= 0.4'} 935 | 936 | is-weakref@1.0.2: 937 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 938 | 939 | is-weakset@2.0.3: 940 | resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} 941 | engines: {node: '>= 0.4'} 942 | 943 | isarray@2.0.5: 944 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 945 | 946 | isexe@2.0.0: 947 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 948 | 949 | iterator.prototype@1.1.3: 950 | resolution: {integrity: sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==} 951 | engines: {node: '>= 0.4'} 952 | 953 | js-tokens@4.0.0: 954 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 955 | 956 | js-yaml@4.1.0: 957 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 958 | hasBin: true 959 | 960 | json-buffer@3.0.1: 961 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 962 | 963 | json-schema-traverse@0.4.1: 964 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 965 | 966 | json-stable-stringify-without-jsonify@1.0.1: 967 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 968 | 969 | json5@1.0.2: 970 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 971 | hasBin: true 972 | 973 | jsx-ast-utils@3.3.5: 974 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} 975 | engines: {node: '>=4.0'} 976 | 977 | keyv@4.5.4: 978 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 979 | 980 | language-subtag-registry@0.3.23: 981 | resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} 982 | 983 | language-tags@1.0.9: 984 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} 985 | engines: {node: '>=0.10'} 986 | 987 | levn@0.4.1: 988 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 989 | engines: {node: '>= 0.8.0'} 990 | 991 | locate-path@6.0.0: 992 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 993 | engines: {node: '>=10'} 994 | 995 | lodash.merge@4.6.2: 996 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 997 | 998 | loose-envify@1.4.0: 999 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 1000 | hasBin: true 1001 | 1002 | merge2@1.4.1: 1003 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1004 | engines: {node: '>= 8'} 1005 | 1006 | micromatch@4.0.8: 1007 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1008 | engines: {node: '>=8.6'} 1009 | 1010 | minimatch@3.1.2: 1011 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1012 | 1013 | minimatch@9.0.5: 1014 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 1015 | engines: {node: '>=16 || 14 >=14.17'} 1016 | 1017 | minimist@1.2.8: 1018 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1019 | 1020 | ms@2.1.3: 1021 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1022 | 1023 | nanoid@3.3.8: 1024 | resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} 1025 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1026 | hasBin: true 1027 | 1028 | natural-compare@1.4.0: 1029 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1030 | 1031 | next@15.0.3: 1032 | resolution: {integrity: sha512-ontCbCRKJUIoivAdGB34yCaOcPgYXr9AAkV/IwqFfWWTXEPUgLYkSkqBhIk9KK7gGmgjc64B+RdoeIDM13Irnw==} 1033 | engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} 1034 | hasBin: true 1035 | peerDependencies: 1036 | '@opentelemetry/api': ^1.1.0 1037 | '@playwright/test': ^1.41.2 1038 | babel-plugin-react-compiler: '*' 1039 | react: ^19.0.0-rc 1040 | react-dom: ^19.0.0-rc 1041 | sass: ^1.3.0 1042 | peerDependenciesMeta: 1043 | '@opentelemetry/api': 1044 | optional: true 1045 | '@playwright/test': 1046 | optional: true 1047 | babel-plugin-react-compiler: 1048 | optional: true 1049 | sass: 1050 | optional: true 1051 | 1052 | object-assign@4.1.1: 1053 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1054 | engines: {node: '>=0.10.0'} 1055 | 1056 | object-inspect@1.13.3: 1057 | resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} 1058 | engines: {node: '>= 0.4'} 1059 | 1060 | object-keys@1.1.1: 1061 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1062 | engines: {node: '>= 0.4'} 1063 | 1064 | object.assign@4.1.5: 1065 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} 1066 | engines: {node: '>= 0.4'} 1067 | 1068 | object.entries@1.1.8: 1069 | resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} 1070 | engines: {node: '>= 0.4'} 1071 | 1072 | object.fromentries@2.0.8: 1073 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} 1074 | engines: {node: '>= 0.4'} 1075 | 1076 | object.groupby@1.0.3: 1077 | resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} 1078 | engines: {node: '>= 0.4'} 1079 | 1080 | object.values@1.2.0: 1081 | resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} 1082 | engines: {node: '>= 0.4'} 1083 | 1084 | optionator@0.9.4: 1085 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1086 | engines: {node: '>= 0.8.0'} 1087 | 1088 | p-limit@3.1.0: 1089 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1090 | engines: {node: '>=10'} 1091 | 1092 | p-locate@5.0.0: 1093 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1094 | engines: {node: '>=10'} 1095 | 1096 | parent-module@1.0.1: 1097 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1098 | engines: {node: '>=6'} 1099 | 1100 | path-exists@4.0.0: 1101 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1102 | engines: {node: '>=8'} 1103 | 1104 | path-key@3.1.1: 1105 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1106 | engines: {node: '>=8'} 1107 | 1108 | path-parse@1.0.7: 1109 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1110 | 1111 | picocolors@1.1.1: 1112 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1113 | 1114 | picomatch@2.3.1: 1115 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1116 | engines: {node: '>=8.6'} 1117 | 1118 | possible-typed-array-names@1.0.0: 1119 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} 1120 | engines: {node: '>= 0.4'} 1121 | 1122 | postcss@8.4.31: 1123 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} 1124 | engines: {node: ^10 || ^12 || >=14} 1125 | 1126 | prelude-ls@1.2.1: 1127 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1128 | engines: {node: '>= 0.8.0'} 1129 | 1130 | prop-types@15.8.1: 1131 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 1132 | 1133 | punycode@2.3.1: 1134 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1135 | engines: {node: '>=6'} 1136 | 1137 | queue-microtask@1.2.3: 1138 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1139 | 1140 | react-dom@19.0.0-rc-fb9a90fa48-20240614: 1141 | resolution: {integrity: sha512-PoEsPe32F7KPLYOBvZfjylEI1B67N44PwY3lyvpmBkhlluLnLz0jH8q2Wg9YidAi6z0k3iUnNRm5x10wurzt9Q==} 1142 | peerDependencies: 1143 | react: 19.0.0-rc-fb9a90fa48-20240614 1144 | 1145 | react-is@16.13.1: 1146 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 1147 | 1148 | react@19.0.0-rc-fb9a90fa48-20240614: 1149 | resolution: {integrity: sha512-nvE3Gy+IOIfH/DXhkyxFVQSrITarFcQz4+shzC/McxQXEUSonpw2oDy/Wi9hdDtV3hlP12VYuDL95iiBREedNQ==} 1150 | engines: {node: '>=0.10.0'} 1151 | 1152 | reflect.getprototypeof@1.0.7: 1153 | resolution: {integrity: sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==} 1154 | engines: {node: '>= 0.4'} 1155 | 1156 | regexp.prototype.flags@1.5.3: 1157 | resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} 1158 | engines: {node: '>= 0.4'} 1159 | 1160 | resolve-from@4.0.0: 1161 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1162 | engines: {node: '>=4'} 1163 | 1164 | resolve-pkg-maps@1.0.0: 1165 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 1166 | 1167 | resolve@1.22.8: 1168 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 1169 | hasBin: true 1170 | 1171 | resolve@2.0.0-next.5: 1172 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 1173 | hasBin: true 1174 | 1175 | reusify@1.0.4: 1176 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1177 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1178 | 1179 | run-parallel@1.2.0: 1180 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1181 | 1182 | safe-array-concat@1.1.2: 1183 | resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} 1184 | engines: {node: '>=0.4'} 1185 | 1186 | safe-regex-test@1.0.3: 1187 | resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} 1188 | engines: {node: '>= 0.4'} 1189 | 1190 | scheduler@0.25.0-rc-fb9a90fa48-20240614: 1191 | resolution: {integrity: sha512-HHqQ/SqbeiDfXXVKgNxTpbQTD4n7IUb4hZATvHjp03jr3TF7igehCyHdOjeYTrzIseLO93cTTfSb5f4qWcirMQ==} 1192 | 1193 | semver@6.3.1: 1194 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 1195 | hasBin: true 1196 | 1197 | semver@7.6.3: 1198 | resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 1199 | engines: {node: '>=10'} 1200 | hasBin: true 1201 | 1202 | set-function-length@1.2.2: 1203 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 1204 | engines: {node: '>= 0.4'} 1205 | 1206 | set-function-name@2.0.2: 1207 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 1208 | engines: {node: '>= 0.4'} 1209 | 1210 | sharp@0.33.5: 1211 | resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} 1212 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1213 | 1214 | shebang-command@2.0.0: 1215 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1216 | engines: {node: '>=8'} 1217 | 1218 | shebang-regex@3.0.0: 1219 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1220 | engines: {node: '>=8'} 1221 | 1222 | side-channel@1.0.6: 1223 | resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} 1224 | engines: {node: '>= 0.4'} 1225 | 1226 | simple-swizzle@0.2.2: 1227 | resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} 1228 | 1229 | source-map-js@1.2.1: 1230 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1231 | engines: {node: '>=0.10.0'} 1232 | 1233 | streamsearch@1.1.0: 1234 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 1235 | engines: {node: '>=10.0.0'} 1236 | 1237 | string.prototype.includes@2.0.1: 1238 | resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==} 1239 | engines: {node: '>= 0.4'} 1240 | 1241 | string.prototype.matchall@4.0.11: 1242 | resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} 1243 | engines: {node: '>= 0.4'} 1244 | 1245 | string.prototype.repeat@1.0.0: 1246 | resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==} 1247 | 1248 | string.prototype.trim@1.2.9: 1249 | resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} 1250 | engines: {node: '>= 0.4'} 1251 | 1252 | string.prototype.trimend@1.0.8: 1253 | resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} 1254 | 1255 | string.prototype.trimstart@1.0.8: 1256 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} 1257 | engines: {node: '>= 0.4'} 1258 | 1259 | strip-bom@3.0.0: 1260 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 1261 | engines: {node: '>=4'} 1262 | 1263 | strip-json-comments@3.1.1: 1264 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1265 | engines: {node: '>=8'} 1266 | 1267 | styled-jsx@5.1.6: 1268 | resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==} 1269 | engines: {node: '>= 12.0.0'} 1270 | peerDependencies: 1271 | '@babel/core': '*' 1272 | babel-plugin-macros: '*' 1273 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0' 1274 | peerDependenciesMeta: 1275 | '@babel/core': 1276 | optional: true 1277 | babel-plugin-macros: 1278 | optional: true 1279 | 1280 | supports-color@7.2.0: 1281 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1282 | engines: {node: '>=8'} 1283 | 1284 | supports-preserve-symlinks-flag@1.0.0: 1285 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1286 | engines: {node: '>= 0.4'} 1287 | 1288 | tapable@2.2.1: 1289 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 1290 | engines: {node: '>=6'} 1291 | 1292 | to-regex-range@5.0.1: 1293 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1294 | engines: {node: '>=8.0'} 1295 | 1296 | ts-api-utils@1.4.3: 1297 | resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} 1298 | engines: {node: '>=16'} 1299 | peerDependencies: 1300 | typescript: '>=4.2.0' 1301 | 1302 | tsconfig-paths@3.15.0: 1303 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} 1304 | 1305 | tslib@2.8.1: 1306 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 1307 | 1308 | type-check@0.4.0: 1309 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1310 | engines: {node: '>= 0.8.0'} 1311 | 1312 | typed-array-buffer@1.0.2: 1313 | resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} 1314 | engines: {node: '>= 0.4'} 1315 | 1316 | typed-array-byte-length@1.0.1: 1317 | resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} 1318 | engines: {node: '>= 0.4'} 1319 | 1320 | typed-array-byte-offset@1.0.3: 1321 | resolution: {integrity: sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==} 1322 | engines: {node: '>= 0.4'} 1323 | 1324 | typed-array-length@1.0.7: 1325 | resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} 1326 | engines: {node: '>= 0.4'} 1327 | 1328 | typescript@5.7.2: 1329 | resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} 1330 | engines: {node: '>=14.17'} 1331 | hasBin: true 1332 | 1333 | unbox-primitive@1.0.2: 1334 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 1335 | 1336 | undici-types@6.19.8: 1337 | resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} 1338 | 1339 | uri-js@4.4.1: 1340 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1341 | 1342 | which-boxed-primitive@1.0.2: 1343 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 1344 | 1345 | which-builtin-type@1.2.0: 1346 | resolution: {integrity: sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==} 1347 | engines: {node: '>= 0.4'} 1348 | 1349 | which-collection@1.0.2: 1350 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} 1351 | engines: {node: '>= 0.4'} 1352 | 1353 | which-typed-array@1.1.16: 1354 | resolution: {integrity: sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==} 1355 | engines: {node: '>= 0.4'} 1356 | 1357 | which@2.0.2: 1358 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1359 | engines: {node: '>= 8'} 1360 | hasBin: true 1361 | 1362 | word-wrap@1.2.5: 1363 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 1364 | engines: {node: '>=0.10.0'} 1365 | 1366 | yocto-queue@0.1.0: 1367 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1368 | engines: {node: '>=10'} 1369 | 1370 | snapshots: 1371 | 1372 | '@emnapi/runtime@1.3.1': 1373 | dependencies: 1374 | tslib: 2.8.1 1375 | optional: true 1376 | 1377 | '@eslint-community/eslint-utils@4.4.1(eslint@9.16.0)': 1378 | dependencies: 1379 | eslint: 9.16.0 1380 | eslint-visitor-keys: 3.4.3 1381 | 1382 | '@eslint-community/regexpp@4.12.1': {} 1383 | 1384 | '@eslint/config-array@0.19.0': 1385 | dependencies: 1386 | '@eslint/object-schema': 2.1.4 1387 | debug: 4.3.7 1388 | minimatch: 3.1.2 1389 | transitivePeerDependencies: 1390 | - supports-color 1391 | 1392 | '@eslint/core@0.9.0': {} 1393 | 1394 | '@eslint/eslintrc@3.2.0': 1395 | dependencies: 1396 | ajv: 6.12.6 1397 | debug: 4.3.7 1398 | espree: 10.3.0 1399 | globals: 14.0.0 1400 | ignore: 5.3.2 1401 | import-fresh: 3.3.0 1402 | js-yaml: 4.1.0 1403 | minimatch: 3.1.2 1404 | strip-json-comments: 3.1.1 1405 | transitivePeerDependencies: 1406 | - supports-color 1407 | 1408 | '@eslint/js@9.16.0': {} 1409 | 1410 | '@eslint/object-schema@2.1.4': {} 1411 | 1412 | '@eslint/plugin-kit@0.2.3': 1413 | dependencies: 1414 | levn: 0.4.1 1415 | 1416 | '@humanfs/core@0.19.1': {} 1417 | 1418 | '@humanfs/node@0.16.6': 1419 | dependencies: 1420 | '@humanfs/core': 0.19.1 1421 | '@humanwhocodes/retry': 0.3.1 1422 | 1423 | '@humanwhocodes/module-importer@1.0.1': {} 1424 | 1425 | '@humanwhocodes/retry@0.3.1': {} 1426 | 1427 | '@humanwhocodes/retry@0.4.1': {} 1428 | 1429 | '@img/sharp-darwin-arm64@0.33.5': 1430 | optionalDependencies: 1431 | '@img/sharp-libvips-darwin-arm64': 1.0.4 1432 | optional: true 1433 | 1434 | '@img/sharp-darwin-x64@0.33.5': 1435 | optionalDependencies: 1436 | '@img/sharp-libvips-darwin-x64': 1.0.4 1437 | optional: true 1438 | 1439 | '@img/sharp-libvips-darwin-arm64@1.0.4': 1440 | optional: true 1441 | 1442 | '@img/sharp-libvips-darwin-x64@1.0.4': 1443 | optional: true 1444 | 1445 | '@img/sharp-libvips-linux-arm64@1.0.4': 1446 | optional: true 1447 | 1448 | '@img/sharp-libvips-linux-arm@1.0.5': 1449 | optional: true 1450 | 1451 | '@img/sharp-libvips-linux-s390x@1.0.4': 1452 | optional: true 1453 | 1454 | '@img/sharp-libvips-linux-x64@1.0.4': 1455 | optional: true 1456 | 1457 | '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 1458 | optional: true 1459 | 1460 | '@img/sharp-libvips-linuxmusl-x64@1.0.4': 1461 | optional: true 1462 | 1463 | '@img/sharp-linux-arm64@0.33.5': 1464 | optionalDependencies: 1465 | '@img/sharp-libvips-linux-arm64': 1.0.4 1466 | optional: true 1467 | 1468 | '@img/sharp-linux-arm@0.33.5': 1469 | optionalDependencies: 1470 | '@img/sharp-libvips-linux-arm': 1.0.5 1471 | optional: true 1472 | 1473 | '@img/sharp-linux-s390x@0.33.5': 1474 | optionalDependencies: 1475 | '@img/sharp-libvips-linux-s390x': 1.0.4 1476 | optional: true 1477 | 1478 | '@img/sharp-linux-x64@0.33.5': 1479 | optionalDependencies: 1480 | '@img/sharp-libvips-linux-x64': 1.0.4 1481 | optional: true 1482 | 1483 | '@img/sharp-linuxmusl-arm64@0.33.5': 1484 | optionalDependencies: 1485 | '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 1486 | optional: true 1487 | 1488 | '@img/sharp-linuxmusl-x64@0.33.5': 1489 | optionalDependencies: 1490 | '@img/sharp-libvips-linuxmusl-x64': 1.0.4 1491 | optional: true 1492 | 1493 | '@img/sharp-wasm32@0.33.5': 1494 | dependencies: 1495 | '@emnapi/runtime': 1.3.1 1496 | optional: true 1497 | 1498 | '@img/sharp-win32-ia32@0.33.5': 1499 | optional: true 1500 | 1501 | '@img/sharp-win32-x64@0.33.5': 1502 | optional: true 1503 | 1504 | '@next/env@15.0.3': {} 1505 | 1506 | '@next/eslint-plugin-next@15.0.1': 1507 | dependencies: 1508 | fast-glob: 3.3.1 1509 | 1510 | '@next/swc-darwin-arm64@15.0.3': 1511 | optional: true 1512 | 1513 | '@next/swc-darwin-x64@15.0.3': 1514 | optional: true 1515 | 1516 | '@next/swc-linux-arm64-gnu@15.0.3': 1517 | optional: true 1518 | 1519 | '@next/swc-linux-arm64-musl@15.0.3': 1520 | optional: true 1521 | 1522 | '@next/swc-linux-x64-gnu@15.0.3': 1523 | optional: true 1524 | 1525 | '@next/swc-linux-x64-musl@15.0.3': 1526 | optional: true 1527 | 1528 | '@next/swc-win32-arm64-msvc@15.0.3': 1529 | optional: true 1530 | 1531 | '@next/swc-win32-x64-msvc@15.0.3': 1532 | optional: true 1533 | 1534 | '@nodelib/fs.scandir@2.1.5': 1535 | dependencies: 1536 | '@nodelib/fs.stat': 2.0.5 1537 | run-parallel: 1.2.0 1538 | 1539 | '@nodelib/fs.stat@2.0.5': {} 1540 | 1541 | '@nodelib/fs.walk@1.2.8': 1542 | dependencies: 1543 | '@nodelib/fs.scandir': 2.1.5 1544 | fastq: 1.17.1 1545 | 1546 | '@nolyfill/is-core-module@1.0.39': {} 1547 | 1548 | '@rtsao/scc@1.1.0': {} 1549 | 1550 | '@rushstack/eslint-patch@1.10.4': {} 1551 | 1552 | '@swc/counter@0.1.3': {} 1553 | 1554 | '@swc/helpers@0.5.13': 1555 | dependencies: 1556 | tslib: 2.8.1 1557 | 1558 | '@types/estree@1.0.6': {} 1559 | 1560 | '@types/json-schema@7.0.15': {} 1561 | 1562 | '@types/json5@0.0.29': {} 1563 | 1564 | '@types/node@20.17.9': 1565 | dependencies: 1566 | undici-types: 6.19.8 1567 | 1568 | '@types/prop-types@15.7.13': {} 1569 | 1570 | '@types/react-dom@18.3.1': 1571 | dependencies: 1572 | '@types/react': 18.3.12 1573 | 1574 | '@types/react@18.3.12': 1575 | dependencies: 1576 | '@types/prop-types': 15.7.13 1577 | csstype: 3.1.3 1578 | 1579 | '@typescript-eslint/eslint-plugin@8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.16.0)(typescript@5.7.2))(eslint@9.16.0)(typescript@5.7.2)': 1580 | dependencies: 1581 | '@eslint-community/regexpp': 4.12.1 1582 | '@typescript-eslint/parser': 8.16.0(eslint@9.16.0)(typescript@5.7.2) 1583 | '@typescript-eslint/scope-manager': 8.16.0 1584 | '@typescript-eslint/type-utils': 8.16.0(eslint@9.16.0)(typescript@5.7.2) 1585 | '@typescript-eslint/utils': 8.16.0(eslint@9.16.0)(typescript@5.7.2) 1586 | '@typescript-eslint/visitor-keys': 8.16.0 1587 | eslint: 9.16.0 1588 | graphemer: 1.4.0 1589 | ignore: 5.3.2 1590 | natural-compare: 1.4.0 1591 | ts-api-utils: 1.4.3(typescript@5.7.2) 1592 | optionalDependencies: 1593 | typescript: 5.7.2 1594 | transitivePeerDependencies: 1595 | - supports-color 1596 | 1597 | '@typescript-eslint/parser@8.16.0(eslint@9.16.0)(typescript@5.7.2)': 1598 | dependencies: 1599 | '@typescript-eslint/scope-manager': 8.16.0 1600 | '@typescript-eslint/types': 8.16.0 1601 | '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.7.2) 1602 | '@typescript-eslint/visitor-keys': 8.16.0 1603 | debug: 4.3.7 1604 | eslint: 9.16.0 1605 | optionalDependencies: 1606 | typescript: 5.7.2 1607 | transitivePeerDependencies: 1608 | - supports-color 1609 | 1610 | '@typescript-eslint/scope-manager@8.16.0': 1611 | dependencies: 1612 | '@typescript-eslint/types': 8.16.0 1613 | '@typescript-eslint/visitor-keys': 8.16.0 1614 | 1615 | '@typescript-eslint/type-utils@8.16.0(eslint@9.16.0)(typescript@5.7.2)': 1616 | dependencies: 1617 | '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.7.2) 1618 | '@typescript-eslint/utils': 8.16.0(eslint@9.16.0)(typescript@5.7.2) 1619 | debug: 4.3.7 1620 | eslint: 9.16.0 1621 | ts-api-utils: 1.4.3(typescript@5.7.2) 1622 | optionalDependencies: 1623 | typescript: 5.7.2 1624 | transitivePeerDependencies: 1625 | - supports-color 1626 | 1627 | '@typescript-eslint/types@8.16.0': {} 1628 | 1629 | '@typescript-eslint/typescript-estree@8.16.0(typescript@5.7.2)': 1630 | dependencies: 1631 | '@typescript-eslint/types': 8.16.0 1632 | '@typescript-eslint/visitor-keys': 8.16.0 1633 | debug: 4.3.7 1634 | fast-glob: 3.3.2 1635 | is-glob: 4.0.3 1636 | minimatch: 9.0.5 1637 | semver: 7.6.3 1638 | ts-api-utils: 1.4.3(typescript@5.7.2) 1639 | optionalDependencies: 1640 | typescript: 5.7.2 1641 | transitivePeerDependencies: 1642 | - supports-color 1643 | 1644 | '@typescript-eslint/utils@8.16.0(eslint@9.16.0)(typescript@5.7.2)': 1645 | dependencies: 1646 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0) 1647 | '@typescript-eslint/scope-manager': 8.16.0 1648 | '@typescript-eslint/types': 8.16.0 1649 | '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.7.2) 1650 | eslint: 9.16.0 1651 | optionalDependencies: 1652 | typescript: 5.7.2 1653 | transitivePeerDependencies: 1654 | - supports-color 1655 | 1656 | '@typescript-eslint/visitor-keys@8.16.0': 1657 | dependencies: 1658 | '@typescript-eslint/types': 8.16.0 1659 | eslint-visitor-keys: 4.2.0 1660 | 1661 | acorn-jsx@5.3.2(acorn@8.14.0): 1662 | dependencies: 1663 | acorn: 8.14.0 1664 | 1665 | acorn@8.14.0: {} 1666 | 1667 | ajv@6.12.6: 1668 | dependencies: 1669 | fast-deep-equal: 3.1.3 1670 | fast-json-stable-stringify: 2.1.0 1671 | json-schema-traverse: 0.4.1 1672 | uri-js: 4.4.1 1673 | 1674 | ansi-styles@4.3.0: 1675 | dependencies: 1676 | color-convert: 2.0.1 1677 | 1678 | argparse@2.0.1: {} 1679 | 1680 | aria-query@5.3.2: {} 1681 | 1682 | array-buffer-byte-length@1.0.1: 1683 | dependencies: 1684 | call-bind: 1.0.7 1685 | is-array-buffer: 3.0.4 1686 | 1687 | array-includes@3.1.8: 1688 | dependencies: 1689 | call-bind: 1.0.7 1690 | define-properties: 1.2.1 1691 | es-abstract: 1.23.5 1692 | es-object-atoms: 1.0.0 1693 | get-intrinsic: 1.2.4 1694 | is-string: 1.1.0 1695 | 1696 | array.prototype.findlast@1.2.5: 1697 | dependencies: 1698 | call-bind: 1.0.7 1699 | define-properties: 1.2.1 1700 | es-abstract: 1.23.5 1701 | es-errors: 1.3.0 1702 | es-object-atoms: 1.0.0 1703 | es-shim-unscopables: 1.0.2 1704 | 1705 | array.prototype.findlastindex@1.2.5: 1706 | dependencies: 1707 | call-bind: 1.0.7 1708 | define-properties: 1.2.1 1709 | es-abstract: 1.23.5 1710 | es-errors: 1.3.0 1711 | es-object-atoms: 1.0.0 1712 | es-shim-unscopables: 1.0.2 1713 | 1714 | array.prototype.flat@1.3.2: 1715 | dependencies: 1716 | call-bind: 1.0.7 1717 | define-properties: 1.2.1 1718 | es-abstract: 1.23.5 1719 | es-shim-unscopables: 1.0.2 1720 | 1721 | array.prototype.flatmap@1.3.2: 1722 | dependencies: 1723 | call-bind: 1.0.7 1724 | define-properties: 1.2.1 1725 | es-abstract: 1.23.5 1726 | es-shim-unscopables: 1.0.2 1727 | 1728 | array.prototype.tosorted@1.1.4: 1729 | dependencies: 1730 | call-bind: 1.0.7 1731 | define-properties: 1.2.1 1732 | es-abstract: 1.23.5 1733 | es-errors: 1.3.0 1734 | es-shim-unscopables: 1.0.2 1735 | 1736 | arraybuffer.prototype.slice@1.0.3: 1737 | dependencies: 1738 | array-buffer-byte-length: 1.0.1 1739 | call-bind: 1.0.7 1740 | define-properties: 1.2.1 1741 | es-abstract: 1.23.5 1742 | es-errors: 1.3.0 1743 | get-intrinsic: 1.2.4 1744 | is-array-buffer: 3.0.4 1745 | is-shared-array-buffer: 1.0.3 1746 | 1747 | ast-types-flow@0.0.8: {} 1748 | 1749 | available-typed-arrays@1.0.7: 1750 | dependencies: 1751 | possible-typed-array-names: 1.0.0 1752 | 1753 | axe-core@4.10.2: {} 1754 | 1755 | axobject-query@4.1.0: {} 1756 | 1757 | balanced-match@1.0.2: {} 1758 | 1759 | brace-expansion@1.1.11: 1760 | dependencies: 1761 | balanced-match: 1.0.2 1762 | concat-map: 0.0.1 1763 | 1764 | brace-expansion@2.0.1: 1765 | dependencies: 1766 | balanced-match: 1.0.2 1767 | 1768 | braces@3.0.3: 1769 | dependencies: 1770 | fill-range: 7.1.1 1771 | 1772 | busboy@1.6.0: 1773 | dependencies: 1774 | streamsearch: 1.1.0 1775 | 1776 | call-bind@1.0.7: 1777 | dependencies: 1778 | es-define-property: 1.0.0 1779 | es-errors: 1.3.0 1780 | function-bind: 1.1.2 1781 | get-intrinsic: 1.2.4 1782 | set-function-length: 1.2.2 1783 | 1784 | callsites@3.1.0: {} 1785 | 1786 | caniuse-lite@1.0.30001685: {} 1787 | 1788 | chalk@4.1.2: 1789 | dependencies: 1790 | ansi-styles: 4.3.0 1791 | supports-color: 7.2.0 1792 | 1793 | client-only@0.0.1: {} 1794 | 1795 | color-convert@2.0.1: 1796 | dependencies: 1797 | color-name: 1.1.4 1798 | 1799 | color-name@1.1.4: {} 1800 | 1801 | color-string@1.9.1: 1802 | dependencies: 1803 | color-name: 1.1.4 1804 | simple-swizzle: 0.2.2 1805 | optional: true 1806 | 1807 | color@4.2.3: 1808 | dependencies: 1809 | color-convert: 2.0.1 1810 | color-string: 1.9.1 1811 | optional: true 1812 | 1813 | concat-map@0.0.1: {} 1814 | 1815 | cross-spawn@7.0.6: 1816 | dependencies: 1817 | path-key: 3.1.1 1818 | shebang-command: 2.0.0 1819 | which: 2.0.2 1820 | 1821 | csstype@3.1.3: {} 1822 | 1823 | damerau-levenshtein@1.0.8: {} 1824 | 1825 | data-view-buffer@1.0.1: 1826 | dependencies: 1827 | call-bind: 1.0.7 1828 | es-errors: 1.3.0 1829 | is-data-view: 1.0.1 1830 | 1831 | data-view-byte-length@1.0.1: 1832 | dependencies: 1833 | call-bind: 1.0.7 1834 | es-errors: 1.3.0 1835 | is-data-view: 1.0.1 1836 | 1837 | data-view-byte-offset@1.0.0: 1838 | dependencies: 1839 | call-bind: 1.0.7 1840 | es-errors: 1.3.0 1841 | is-data-view: 1.0.1 1842 | 1843 | debug@3.2.7: 1844 | dependencies: 1845 | ms: 2.1.3 1846 | 1847 | debug@4.3.7: 1848 | dependencies: 1849 | ms: 2.1.3 1850 | 1851 | deep-is@0.1.4: {} 1852 | 1853 | define-data-property@1.1.4: 1854 | dependencies: 1855 | es-define-property: 1.0.0 1856 | es-errors: 1.3.0 1857 | gopd: 1.1.0 1858 | 1859 | define-properties@1.2.1: 1860 | dependencies: 1861 | define-data-property: 1.1.4 1862 | has-property-descriptors: 1.0.2 1863 | object-keys: 1.1.1 1864 | 1865 | detect-libc@2.0.3: 1866 | optional: true 1867 | 1868 | doctrine@2.1.0: 1869 | dependencies: 1870 | esutils: 2.0.3 1871 | 1872 | emoji-regex@9.2.2: {} 1873 | 1874 | enhanced-resolve@5.17.1: 1875 | dependencies: 1876 | graceful-fs: 4.2.11 1877 | tapable: 2.2.1 1878 | 1879 | es-abstract@1.23.5: 1880 | dependencies: 1881 | array-buffer-byte-length: 1.0.1 1882 | arraybuffer.prototype.slice: 1.0.3 1883 | available-typed-arrays: 1.0.7 1884 | call-bind: 1.0.7 1885 | data-view-buffer: 1.0.1 1886 | data-view-byte-length: 1.0.1 1887 | data-view-byte-offset: 1.0.0 1888 | es-define-property: 1.0.0 1889 | es-errors: 1.3.0 1890 | es-object-atoms: 1.0.0 1891 | es-set-tostringtag: 2.0.3 1892 | es-to-primitive: 1.3.0 1893 | function.prototype.name: 1.1.6 1894 | get-intrinsic: 1.2.4 1895 | get-symbol-description: 1.0.2 1896 | globalthis: 1.0.4 1897 | gopd: 1.1.0 1898 | has-property-descriptors: 1.0.2 1899 | has-proto: 1.1.0 1900 | has-symbols: 1.0.3 1901 | hasown: 2.0.2 1902 | internal-slot: 1.0.7 1903 | is-array-buffer: 3.0.4 1904 | is-callable: 1.2.7 1905 | is-data-view: 1.0.1 1906 | is-negative-zero: 2.0.3 1907 | is-regex: 1.2.0 1908 | is-shared-array-buffer: 1.0.3 1909 | is-string: 1.1.0 1910 | is-typed-array: 1.1.13 1911 | is-weakref: 1.0.2 1912 | object-inspect: 1.13.3 1913 | object-keys: 1.1.1 1914 | object.assign: 4.1.5 1915 | regexp.prototype.flags: 1.5.3 1916 | safe-array-concat: 1.1.2 1917 | safe-regex-test: 1.0.3 1918 | string.prototype.trim: 1.2.9 1919 | string.prototype.trimend: 1.0.8 1920 | string.prototype.trimstart: 1.0.8 1921 | typed-array-buffer: 1.0.2 1922 | typed-array-byte-length: 1.0.1 1923 | typed-array-byte-offset: 1.0.3 1924 | typed-array-length: 1.0.7 1925 | unbox-primitive: 1.0.2 1926 | which-typed-array: 1.1.16 1927 | 1928 | es-define-property@1.0.0: 1929 | dependencies: 1930 | get-intrinsic: 1.2.4 1931 | 1932 | es-errors@1.3.0: {} 1933 | 1934 | es-iterator-helpers@1.2.0: 1935 | dependencies: 1936 | call-bind: 1.0.7 1937 | define-properties: 1.2.1 1938 | es-abstract: 1.23.5 1939 | es-errors: 1.3.0 1940 | es-set-tostringtag: 2.0.3 1941 | function-bind: 1.1.2 1942 | get-intrinsic: 1.2.4 1943 | globalthis: 1.0.4 1944 | gopd: 1.1.0 1945 | has-property-descriptors: 1.0.2 1946 | has-proto: 1.1.0 1947 | has-symbols: 1.0.3 1948 | internal-slot: 1.0.7 1949 | iterator.prototype: 1.1.3 1950 | safe-array-concat: 1.1.2 1951 | 1952 | es-object-atoms@1.0.0: 1953 | dependencies: 1954 | es-errors: 1.3.0 1955 | 1956 | es-set-tostringtag@2.0.3: 1957 | dependencies: 1958 | get-intrinsic: 1.2.4 1959 | has-tostringtag: 1.0.2 1960 | hasown: 2.0.2 1961 | 1962 | es-shim-unscopables@1.0.2: 1963 | dependencies: 1964 | hasown: 2.0.2 1965 | 1966 | es-to-primitive@1.3.0: 1967 | dependencies: 1968 | is-callable: 1.2.7 1969 | is-date-object: 1.0.5 1970 | is-symbol: 1.0.4 1971 | 1972 | escape-string-regexp@4.0.0: {} 1973 | 1974 | eslint-config-next@15.0.1(eslint@9.16.0)(typescript@5.7.2): 1975 | dependencies: 1976 | '@next/eslint-plugin-next': 15.0.1 1977 | '@rushstack/eslint-patch': 1.10.4 1978 | '@typescript-eslint/eslint-plugin': 8.16.0(@typescript-eslint/parser@8.16.0(eslint@9.16.0)(typescript@5.7.2))(eslint@9.16.0)(typescript@5.7.2) 1979 | '@typescript-eslint/parser': 8.16.0(eslint@9.16.0)(typescript@5.7.2) 1980 | eslint: 9.16.0 1981 | eslint-import-resolver-node: 0.3.9 1982 | eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.16.0(eslint@9.16.0)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.16.0) 1983 | eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.16.0(eslint@9.16.0)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.16.0) 1984 | eslint-plugin-jsx-a11y: 6.10.2(eslint@9.16.0) 1985 | eslint-plugin-react: 7.37.2(eslint@9.16.0) 1986 | eslint-plugin-react-hooks: 5.0.0(eslint@9.16.0) 1987 | optionalDependencies: 1988 | typescript: 5.7.2 1989 | transitivePeerDependencies: 1990 | - eslint-import-resolver-webpack 1991 | - eslint-plugin-import-x 1992 | - supports-color 1993 | 1994 | eslint-import-resolver-node@0.3.9: 1995 | dependencies: 1996 | debug: 3.2.7 1997 | is-core-module: 2.15.1 1998 | resolve: 1.22.8 1999 | transitivePeerDependencies: 2000 | - supports-color 2001 | 2002 | eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.16.0(eslint@9.16.0)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.16.0): 2003 | dependencies: 2004 | '@nolyfill/is-core-module': 1.0.39 2005 | debug: 4.3.7 2006 | enhanced-resolve: 5.17.1 2007 | eslint: 9.16.0 2008 | eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.16.0(eslint@9.16.0)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.16.0) 2009 | fast-glob: 3.3.2 2010 | get-tsconfig: 4.8.1 2011 | is-bun-module: 1.3.0 2012 | is-glob: 4.0.3 2013 | optionalDependencies: 2014 | eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.16.0(eslint@9.16.0)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.16.0) 2015 | transitivePeerDependencies: 2016 | - '@typescript-eslint/parser' 2017 | - eslint-import-resolver-node 2018 | - eslint-import-resolver-webpack 2019 | - supports-color 2020 | 2021 | eslint-module-utils@2.12.0(@typescript-eslint/parser@8.16.0(eslint@9.16.0)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.16.0): 2022 | dependencies: 2023 | debug: 3.2.7 2024 | optionalDependencies: 2025 | '@typescript-eslint/parser': 8.16.0(eslint@9.16.0)(typescript@5.7.2) 2026 | eslint: 9.16.0 2027 | eslint-import-resolver-node: 0.3.9 2028 | eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.16.0(eslint@9.16.0)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.16.0) 2029 | transitivePeerDependencies: 2030 | - supports-color 2031 | 2032 | eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.16.0(eslint@9.16.0)(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.16.0): 2033 | dependencies: 2034 | '@rtsao/scc': 1.1.0 2035 | array-includes: 3.1.8 2036 | array.prototype.findlastindex: 1.2.5 2037 | array.prototype.flat: 1.3.2 2038 | array.prototype.flatmap: 1.3.2 2039 | debug: 3.2.7 2040 | doctrine: 2.1.0 2041 | eslint: 9.16.0 2042 | eslint-import-resolver-node: 0.3.9 2043 | eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.16.0(eslint@9.16.0)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.16.0) 2044 | hasown: 2.0.2 2045 | is-core-module: 2.15.1 2046 | is-glob: 4.0.3 2047 | minimatch: 3.1.2 2048 | object.fromentries: 2.0.8 2049 | object.groupby: 1.0.3 2050 | object.values: 1.2.0 2051 | semver: 6.3.1 2052 | string.prototype.trimend: 1.0.8 2053 | tsconfig-paths: 3.15.0 2054 | optionalDependencies: 2055 | '@typescript-eslint/parser': 8.16.0(eslint@9.16.0)(typescript@5.7.2) 2056 | transitivePeerDependencies: 2057 | - eslint-import-resolver-typescript 2058 | - eslint-import-resolver-webpack 2059 | - supports-color 2060 | 2061 | eslint-plugin-jsx-a11y@6.10.2(eslint@9.16.0): 2062 | dependencies: 2063 | aria-query: 5.3.2 2064 | array-includes: 3.1.8 2065 | array.prototype.flatmap: 1.3.2 2066 | ast-types-flow: 0.0.8 2067 | axe-core: 4.10.2 2068 | axobject-query: 4.1.0 2069 | damerau-levenshtein: 1.0.8 2070 | emoji-regex: 9.2.2 2071 | eslint: 9.16.0 2072 | hasown: 2.0.2 2073 | jsx-ast-utils: 3.3.5 2074 | language-tags: 1.0.9 2075 | minimatch: 3.1.2 2076 | object.fromentries: 2.0.8 2077 | safe-regex-test: 1.0.3 2078 | string.prototype.includes: 2.0.1 2079 | 2080 | eslint-plugin-react-hooks@5.0.0(eslint@9.16.0): 2081 | dependencies: 2082 | eslint: 9.16.0 2083 | 2084 | eslint-plugin-react@7.37.2(eslint@9.16.0): 2085 | dependencies: 2086 | array-includes: 3.1.8 2087 | array.prototype.findlast: 1.2.5 2088 | array.prototype.flatmap: 1.3.2 2089 | array.prototype.tosorted: 1.1.4 2090 | doctrine: 2.1.0 2091 | es-iterator-helpers: 1.2.0 2092 | eslint: 9.16.0 2093 | estraverse: 5.3.0 2094 | hasown: 2.0.2 2095 | jsx-ast-utils: 3.3.5 2096 | minimatch: 3.1.2 2097 | object.entries: 1.1.8 2098 | object.fromentries: 2.0.8 2099 | object.values: 1.2.0 2100 | prop-types: 15.8.1 2101 | resolve: 2.0.0-next.5 2102 | semver: 6.3.1 2103 | string.prototype.matchall: 4.0.11 2104 | string.prototype.repeat: 1.0.0 2105 | 2106 | eslint-scope@8.2.0: 2107 | dependencies: 2108 | esrecurse: 4.3.0 2109 | estraverse: 5.3.0 2110 | 2111 | eslint-visitor-keys@3.4.3: {} 2112 | 2113 | eslint-visitor-keys@4.2.0: {} 2114 | 2115 | eslint@9.16.0: 2116 | dependencies: 2117 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0) 2118 | '@eslint-community/regexpp': 4.12.1 2119 | '@eslint/config-array': 0.19.0 2120 | '@eslint/core': 0.9.0 2121 | '@eslint/eslintrc': 3.2.0 2122 | '@eslint/js': 9.16.0 2123 | '@eslint/plugin-kit': 0.2.3 2124 | '@humanfs/node': 0.16.6 2125 | '@humanwhocodes/module-importer': 1.0.1 2126 | '@humanwhocodes/retry': 0.4.1 2127 | '@types/estree': 1.0.6 2128 | '@types/json-schema': 7.0.15 2129 | ajv: 6.12.6 2130 | chalk: 4.1.2 2131 | cross-spawn: 7.0.6 2132 | debug: 4.3.7 2133 | escape-string-regexp: 4.0.0 2134 | eslint-scope: 8.2.0 2135 | eslint-visitor-keys: 4.2.0 2136 | espree: 10.3.0 2137 | esquery: 1.6.0 2138 | esutils: 2.0.3 2139 | fast-deep-equal: 3.1.3 2140 | file-entry-cache: 8.0.0 2141 | find-up: 5.0.0 2142 | glob-parent: 6.0.2 2143 | ignore: 5.3.2 2144 | imurmurhash: 0.1.4 2145 | is-glob: 4.0.3 2146 | json-stable-stringify-without-jsonify: 1.0.1 2147 | lodash.merge: 4.6.2 2148 | minimatch: 3.1.2 2149 | natural-compare: 1.4.0 2150 | optionator: 0.9.4 2151 | transitivePeerDependencies: 2152 | - supports-color 2153 | 2154 | espree@10.3.0: 2155 | dependencies: 2156 | acorn: 8.14.0 2157 | acorn-jsx: 5.3.2(acorn@8.14.0) 2158 | eslint-visitor-keys: 4.2.0 2159 | 2160 | esquery@1.6.0: 2161 | dependencies: 2162 | estraverse: 5.3.0 2163 | 2164 | esrecurse@4.3.0: 2165 | dependencies: 2166 | estraverse: 5.3.0 2167 | 2168 | estraverse@5.3.0: {} 2169 | 2170 | esutils@2.0.3: {} 2171 | 2172 | fast-deep-equal@3.1.3: {} 2173 | 2174 | fast-glob@3.3.1: 2175 | dependencies: 2176 | '@nodelib/fs.stat': 2.0.5 2177 | '@nodelib/fs.walk': 1.2.8 2178 | glob-parent: 5.1.2 2179 | merge2: 1.4.1 2180 | micromatch: 4.0.8 2181 | 2182 | fast-glob@3.3.2: 2183 | dependencies: 2184 | '@nodelib/fs.stat': 2.0.5 2185 | '@nodelib/fs.walk': 1.2.8 2186 | glob-parent: 5.1.2 2187 | merge2: 1.4.1 2188 | micromatch: 4.0.8 2189 | 2190 | fast-json-stable-stringify@2.1.0: {} 2191 | 2192 | fast-levenshtein@2.0.6: {} 2193 | 2194 | fastq@1.17.1: 2195 | dependencies: 2196 | reusify: 1.0.4 2197 | 2198 | file-entry-cache@8.0.0: 2199 | dependencies: 2200 | flat-cache: 4.0.1 2201 | 2202 | fill-range@7.1.1: 2203 | dependencies: 2204 | to-regex-range: 5.0.1 2205 | 2206 | find-up@5.0.0: 2207 | dependencies: 2208 | locate-path: 6.0.0 2209 | path-exists: 4.0.0 2210 | 2211 | flat-cache@4.0.1: 2212 | dependencies: 2213 | flatted: 3.3.2 2214 | keyv: 4.5.4 2215 | 2216 | flatted@3.3.2: {} 2217 | 2218 | for-each@0.3.3: 2219 | dependencies: 2220 | is-callable: 1.2.7 2221 | 2222 | function-bind@1.1.2: {} 2223 | 2224 | function.prototype.name@1.1.6: 2225 | dependencies: 2226 | call-bind: 1.0.7 2227 | define-properties: 1.2.1 2228 | es-abstract: 1.23.5 2229 | functions-have-names: 1.2.3 2230 | 2231 | functions-have-names@1.2.3: {} 2232 | 2233 | get-intrinsic@1.2.4: 2234 | dependencies: 2235 | es-errors: 1.3.0 2236 | function-bind: 1.1.2 2237 | has-proto: 1.1.0 2238 | has-symbols: 1.0.3 2239 | hasown: 2.0.2 2240 | 2241 | get-symbol-description@1.0.2: 2242 | dependencies: 2243 | call-bind: 1.0.7 2244 | es-errors: 1.3.0 2245 | get-intrinsic: 1.2.4 2246 | 2247 | get-tsconfig@4.8.1: 2248 | dependencies: 2249 | resolve-pkg-maps: 1.0.0 2250 | 2251 | glob-parent@5.1.2: 2252 | dependencies: 2253 | is-glob: 4.0.3 2254 | 2255 | glob-parent@6.0.2: 2256 | dependencies: 2257 | is-glob: 4.0.3 2258 | 2259 | globals@14.0.0: {} 2260 | 2261 | globalthis@1.0.4: 2262 | dependencies: 2263 | define-properties: 1.2.1 2264 | gopd: 1.1.0 2265 | 2266 | gopd@1.1.0: 2267 | dependencies: 2268 | get-intrinsic: 1.2.4 2269 | 2270 | graceful-fs@4.2.11: {} 2271 | 2272 | graphemer@1.4.0: {} 2273 | 2274 | has-bigints@1.0.2: {} 2275 | 2276 | has-flag@4.0.0: {} 2277 | 2278 | has-property-descriptors@1.0.2: 2279 | dependencies: 2280 | es-define-property: 1.0.0 2281 | 2282 | has-proto@1.1.0: 2283 | dependencies: 2284 | call-bind: 1.0.7 2285 | 2286 | has-symbols@1.0.3: {} 2287 | 2288 | has-tostringtag@1.0.2: 2289 | dependencies: 2290 | has-symbols: 1.0.3 2291 | 2292 | hasown@2.0.2: 2293 | dependencies: 2294 | function-bind: 1.1.2 2295 | 2296 | ignore@5.3.2: {} 2297 | 2298 | import-fresh@3.3.0: 2299 | dependencies: 2300 | parent-module: 1.0.1 2301 | resolve-from: 4.0.0 2302 | 2303 | imurmurhash@0.1.4: {} 2304 | 2305 | internal-slot@1.0.7: 2306 | dependencies: 2307 | es-errors: 1.3.0 2308 | hasown: 2.0.2 2309 | side-channel: 1.0.6 2310 | 2311 | is-array-buffer@3.0.4: 2312 | dependencies: 2313 | call-bind: 1.0.7 2314 | get-intrinsic: 1.2.4 2315 | 2316 | is-arrayish@0.3.2: 2317 | optional: true 2318 | 2319 | is-async-function@2.0.0: 2320 | dependencies: 2321 | has-tostringtag: 1.0.2 2322 | 2323 | is-bigint@1.0.4: 2324 | dependencies: 2325 | has-bigints: 1.0.2 2326 | 2327 | is-boolean-object@1.2.0: 2328 | dependencies: 2329 | call-bind: 1.0.7 2330 | has-tostringtag: 1.0.2 2331 | 2332 | is-bun-module@1.3.0: 2333 | dependencies: 2334 | semver: 7.6.3 2335 | 2336 | is-callable@1.2.7: {} 2337 | 2338 | is-core-module@2.15.1: 2339 | dependencies: 2340 | hasown: 2.0.2 2341 | 2342 | is-data-view@1.0.1: 2343 | dependencies: 2344 | is-typed-array: 1.1.13 2345 | 2346 | is-date-object@1.0.5: 2347 | dependencies: 2348 | has-tostringtag: 1.0.2 2349 | 2350 | is-extglob@2.1.1: {} 2351 | 2352 | is-finalizationregistry@1.1.0: 2353 | dependencies: 2354 | call-bind: 1.0.7 2355 | 2356 | is-generator-function@1.0.10: 2357 | dependencies: 2358 | has-tostringtag: 1.0.2 2359 | 2360 | is-glob@4.0.3: 2361 | dependencies: 2362 | is-extglob: 2.1.1 2363 | 2364 | is-map@2.0.3: {} 2365 | 2366 | is-negative-zero@2.0.3: {} 2367 | 2368 | is-number-object@1.1.0: 2369 | dependencies: 2370 | call-bind: 1.0.7 2371 | has-tostringtag: 1.0.2 2372 | 2373 | is-number@7.0.0: {} 2374 | 2375 | is-regex@1.2.0: 2376 | dependencies: 2377 | call-bind: 1.0.7 2378 | gopd: 1.1.0 2379 | has-tostringtag: 1.0.2 2380 | hasown: 2.0.2 2381 | 2382 | is-set@2.0.3: {} 2383 | 2384 | is-shared-array-buffer@1.0.3: 2385 | dependencies: 2386 | call-bind: 1.0.7 2387 | 2388 | is-string@1.1.0: 2389 | dependencies: 2390 | call-bind: 1.0.7 2391 | has-tostringtag: 1.0.2 2392 | 2393 | is-symbol@1.0.4: 2394 | dependencies: 2395 | has-symbols: 1.0.3 2396 | 2397 | is-typed-array@1.1.13: 2398 | dependencies: 2399 | which-typed-array: 1.1.16 2400 | 2401 | is-weakmap@2.0.2: {} 2402 | 2403 | is-weakref@1.0.2: 2404 | dependencies: 2405 | call-bind: 1.0.7 2406 | 2407 | is-weakset@2.0.3: 2408 | dependencies: 2409 | call-bind: 1.0.7 2410 | get-intrinsic: 1.2.4 2411 | 2412 | isarray@2.0.5: {} 2413 | 2414 | isexe@2.0.0: {} 2415 | 2416 | iterator.prototype@1.1.3: 2417 | dependencies: 2418 | define-properties: 1.2.1 2419 | get-intrinsic: 1.2.4 2420 | has-symbols: 1.0.3 2421 | reflect.getprototypeof: 1.0.7 2422 | set-function-name: 2.0.2 2423 | 2424 | js-tokens@4.0.0: {} 2425 | 2426 | js-yaml@4.1.0: 2427 | dependencies: 2428 | argparse: 2.0.1 2429 | 2430 | json-buffer@3.0.1: {} 2431 | 2432 | json-schema-traverse@0.4.1: {} 2433 | 2434 | json-stable-stringify-without-jsonify@1.0.1: {} 2435 | 2436 | json5@1.0.2: 2437 | dependencies: 2438 | minimist: 1.2.8 2439 | 2440 | jsx-ast-utils@3.3.5: 2441 | dependencies: 2442 | array-includes: 3.1.8 2443 | array.prototype.flat: 1.3.2 2444 | object.assign: 4.1.5 2445 | object.values: 1.2.0 2446 | 2447 | keyv@4.5.4: 2448 | dependencies: 2449 | json-buffer: 3.0.1 2450 | 2451 | language-subtag-registry@0.3.23: {} 2452 | 2453 | language-tags@1.0.9: 2454 | dependencies: 2455 | language-subtag-registry: 0.3.23 2456 | 2457 | levn@0.4.1: 2458 | dependencies: 2459 | prelude-ls: 1.2.1 2460 | type-check: 0.4.0 2461 | 2462 | locate-path@6.0.0: 2463 | dependencies: 2464 | p-locate: 5.0.0 2465 | 2466 | lodash.merge@4.6.2: {} 2467 | 2468 | loose-envify@1.4.0: 2469 | dependencies: 2470 | js-tokens: 4.0.0 2471 | 2472 | merge2@1.4.1: {} 2473 | 2474 | micromatch@4.0.8: 2475 | dependencies: 2476 | braces: 3.0.3 2477 | picomatch: 2.3.1 2478 | 2479 | minimatch@3.1.2: 2480 | dependencies: 2481 | brace-expansion: 1.1.11 2482 | 2483 | minimatch@9.0.5: 2484 | dependencies: 2485 | brace-expansion: 2.0.1 2486 | 2487 | minimist@1.2.8: {} 2488 | 2489 | ms@2.1.3: {} 2490 | 2491 | nanoid@3.3.8: {} 2492 | 2493 | natural-compare@1.4.0: {} 2494 | 2495 | next@15.0.3(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@19.0.0-rc-fb9a90fa48-20240614))(react@19.0.0-rc-fb9a90fa48-20240614): 2496 | dependencies: 2497 | '@next/env': 15.0.3 2498 | '@swc/counter': 0.1.3 2499 | '@swc/helpers': 0.5.13 2500 | busboy: 1.6.0 2501 | caniuse-lite: 1.0.30001685 2502 | postcss: 8.4.31 2503 | react: 19.0.0-rc-fb9a90fa48-20240614 2504 | react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@19.0.0-rc-fb9a90fa48-20240614) 2505 | styled-jsx: 5.1.6(react@19.0.0-rc-fb9a90fa48-20240614) 2506 | optionalDependencies: 2507 | '@next/swc-darwin-arm64': 15.0.3 2508 | '@next/swc-darwin-x64': 15.0.3 2509 | '@next/swc-linux-arm64-gnu': 15.0.3 2510 | '@next/swc-linux-arm64-musl': 15.0.3 2511 | '@next/swc-linux-x64-gnu': 15.0.3 2512 | '@next/swc-linux-x64-musl': 15.0.3 2513 | '@next/swc-win32-arm64-msvc': 15.0.3 2514 | '@next/swc-win32-x64-msvc': 15.0.3 2515 | sharp: 0.33.5 2516 | transitivePeerDependencies: 2517 | - '@babel/core' 2518 | - babel-plugin-macros 2519 | 2520 | object-assign@4.1.1: {} 2521 | 2522 | object-inspect@1.13.3: {} 2523 | 2524 | object-keys@1.1.1: {} 2525 | 2526 | object.assign@4.1.5: 2527 | dependencies: 2528 | call-bind: 1.0.7 2529 | define-properties: 1.2.1 2530 | has-symbols: 1.0.3 2531 | object-keys: 1.1.1 2532 | 2533 | object.entries@1.1.8: 2534 | dependencies: 2535 | call-bind: 1.0.7 2536 | define-properties: 1.2.1 2537 | es-object-atoms: 1.0.0 2538 | 2539 | object.fromentries@2.0.8: 2540 | dependencies: 2541 | call-bind: 1.0.7 2542 | define-properties: 1.2.1 2543 | es-abstract: 1.23.5 2544 | es-object-atoms: 1.0.0 2545 | 2546 | object.groupby@1.0.3: 2547 | dependencies: 2548 | call-bind: 1.0.7 2549 | define-properties: 1.2.1 2550 | es-abstract: 1.23.5 2551 | 2552 | object.values@1.2.0: 2553 | dependencies: 2554 | call-bind: 1.0.7 2555 | define-properties: 1.2.1 2556 | es-object-atoms: 1.0.0 2557 | 2558 | optionator@0.9.4: 2559 | dependencies: 2560 | deep-is: 0.1.4 2561 | fast-levenshtein: 2.0.6 2562 | levn: 0.4.1 2563 | prelude-ls: 1.2.1 2564 | type-check: 0.4.0 2565 | word-wrap: 1.2.5 2566 | 2567 | p-limit@3.1.0: 2568 | dependencies: 2569 | yocto-queue: 0.1.0 2570 | 2571 | p-locate@5.0.0: 2572 | dependencies: 2573 | p-limit: 3.1.0 2574 | 2575 | parent-module@1.0.1: 2576 | dependencies: 2577 | callsites: 3.1.0 2578 | 2579 | path-exists@4.0.0: {} 2580 | 2581 | path-key@3.1.1: {} 2582 | 2583 | path-parse@1.0.7: {} 2584 | 2585 | picocolors@1.1.1: {} 2586 | 2587 | picomatch@2.3.1: {} 2588 | 2589 | possible-typed-array-names@1.0.0: {} 2590 | 2591 | postcss@8.4.31: 2592 | dependencies: 2593 | nanoid: 3.3.8 2594 | picocolors: 1.1.1 2595 | source-map-js: 1.2.1 2596 | 2597 | prelude-ls@1.2.1: {} 2598 | 2599 | prop-types@15.8.1: 2600 | dependencies: 2601 | loose-envify: 1.4.0 2602 | object-assign: 4.1.1 2603 | react-is: 16.13.1 2604 | 2605 | punycode@2.3.1: {} 2606 | 2607 | queue-microtask@1.2.3: {} 2608 | 2609 | react-dom@19.0.0-rc-fb9a90fa48-20240614(react@19.0.0-rc-fb9a90fa48-20240614): 2610 | dependencies: 2611 | react: 19.0.0-rc-fb9a90fa48-20240614 2612 | scheduler: 0.25.0-rc-fb9a90fa48-20240614 2613 | 2614 | react-is@16.13.1: {} 2615 | 2616 | react@19.0.0-rc-fb9a90fa48-20240614: {} 2617 | 2618 | reflect.getprototypeof@1.0.7: 2619 | dependencies: 2620 | call-bind: 1.0.7 2621 | define-properties: 1.2.1 2622 | es-abstract: 1.23.5 2623 | es-errors: 1.3.0 2624 | get-intrinsic: 1.2.4 2625 | gopd: 1.1.0 2626 | which-builtin-type: 1.2.0 2627 | 2628 | regexp.prototype.flags@1.5.3: 2629 | dependencies: 2630 | call-bind: 1.0.7 2631 | define-properties: 1.2.1 2632 | es-errors: 1.3.0 2633 | set-function-name: 2.0.2 2634 | 2635 | resolve-from@4.0.0: {} 2636 | 2637 | resolve-pkg-maps@1.0.0: {} 2638 | 2639 | resolve@1.22.8: 2640 | dependencies: 2641 | is-core-module: 2.15.1 2642 | path-parse: 1.0.7 2643 | supports-preserve-symlinks-flag: 1.0.0 2644 | 2645 | resolve@2.0.0-next.5: 2646 | dependencies: 2647 | is-core-module: 2.15.1 2648 | path-parse: 1.0.7 2649 | supports-preserve-symlinks-flag: 1.0.0 2650 | 2651 | reusify@1.0.4: {} 2652 | 2653 | run-parallel@1.2.0: 2654 | dependencies: 2655 | queue-microtask: 1.2.3 2656 | 2657 | safe-array-concat@1.1.2: 2658 | dependencies: 2659 | call-bind: 1.0.7 2660 | get-intrinsic: 1.2.4 2661 | has-symbols: 1.0.3 2662 | isarray: 2.0.5 2663 | 2664 | safe-regex-test@1.0.3: 2665 | dependencies: 2666 | call-bind: 1.0.7 2667 | es-errors: 1.3.0 2668 | is-regex: 1.2.0 2669 | 2670 | scheduler@0.25.0-rc-fb9a90fa48-20240614: {} 2671 | 2672 | semver@6.3.1: {} 2673 | 2674 | semver@7.6.3: {} 2675 | 2676 | set-function-length@1.2.2: 2677 | dependencies: 2678 | define-data-property: 1.1.4 2679 | es-errors: 1.3.0 2680 | function-bind: 1.1.2 2681 | get-intrinsic: 1.2.4 2682 | gopd: 1.1.0 2683 | has-property-descriptors: 1.0.2 2684 | 2685 | set-function-name@2.0.2: 2686 | dependencies: 2687 | define-data-property: 1.1.4 2688 | es-errors: 1.3.0 2689 | functions-have-names: 1.2.3 2690 | has-property-descriptors: 1.0.2 2691 | 2692 | sharp@0.33.5: 2693 | dependencies: 2694 | color: 4.2.3 2695 | detect-libc: 2.0.3 2696 | semver: 7.6.3 2697 | optionalDependencies: 2698 | '@img/sharp-darwin-arm64': 0.33.5 2699 | '@img/sharp-darwin-x64': 0.33.5 2700 | '@img/sharp-libvips-darwin-arm64': 1.0.4 2701 | '@img/sharp-libvips-darwin-x64': 1.0.4 2702 | '@img/sharp-libvips-linux-arm': 1.0.5 2703 | '@img/sharp-libvips-linux-arm64': 1.0.4 2704 | '@img/sharp-libvips-linux-s390x': 1.0.4 2705 | '@img/sharp-libvips-linux-x64': 1.0.4 2706 | '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 2707 | '@img/sharp-libvips-linuxmusl-x64': 1.0.4 2708 | '@img/sharp-linux-arm': 0.33.5 2709 | '@img/sharp-linux-arm64': 0.33.5 2710 | '@img/sharp-linux-s390x': 0.33.5 2711 | '@img/sharp-linux-x64': 0.33.5 2712 | '@img/sharp-linuxmusl-arm64': 0.33.5 2713 | '@img/sharp-linuxmusl-x64': 0.33.5 2714 | '@img/sharp-wasm32': 0.33.5 2715 | '@img/sharp-win32-ia32': 0.33.5 2716 | '@img/sharp-win32-x64': 0.33.5 2717 | optional: true 2718 | 2719 | shebang-command@2.0.0: 2720 | dependencies: 2721 | shebang-regex: 3.0.0 2722 | 2723 | shebang-regex@3.0.0: {} 2724 | 2725 | side-channel@1.0.6: 2726 | dependencies: 2727 | call-bind: 1.0.7 2728 | es-errors: 1.3.0 2729 | get-intrinsic: 1.2.4 2730 | object-inspect: 1.13.3 2731 | 2732 | simple-swizzle@0.2.2: 2733 | dependencies: 2734 | is-arrayish: 0.3.2 2735 | optional: true 2736 | 2737 | source-map-js@1.2.1: {} 2738 | 2739 | streamsearch@1.1.0: {} 2740 | 2741 | string.prototype.includes@2.0.1: 2742 | dependencies: 2743 | call-bind: 1.0.7 2744 | define-properties: 1.2.1 2745 | es-abstract: 1.23.5 2746 | 2747 | string.prototype.matchall@4.0.11: 2748 | dependencies: 2749 | call-bind: 1.0.7 2750 | define-properties: 1.2.1 2751 | es-abstract: 1.23.5 2752 | es-errors: 1.3.0 2753 | es-object-atoms: 1.0.0 2754 | get-intrinsic: 1.2.4 2755 | gopd: 1.1.0 2756 | has-symbols: 1.0.3 2757 | internal-slot: 1.0.7 2758 | regexp.prototype.flags: 1.5.3 2759 | set-function-name: 2.0.2 2760 | side-channel: 1.0.6 2761 | 2762 | string.prototype.repeat@1.0.0: 2763 | dependencies: 2764 | define-properties: 1.2.1 2765 | es-abstract: 1.23.5 2766 | 2767 | string.prototype.trim@1.2.9: 2768 | dependencies: 2769 | call-bind: 1.0.7 2770 | define-properties: 1.2.1 2771 | es-abstract: 1.23.5 2772 | es-object-atoms: 1.0.0 2773 | 2774 | string.prototype.trimend@1.0.8: 2775 | dependencies: 2776 | call-bind: 1.0.7 2777 | define-properties: 1.2.1 2778 | es-object-atoms: 1.0.0 2779 | 2780 | string.prototype.trimstart@1.0.8: 2781 | dependencies: 2782 | call-bind: 1.0.7 2783 | define-properties: 1.2.1 2784 | es-object-atoms: 1.0.0 2785 | 2786 | strip-bom@3.0.0: {} 2787 | 2788 | strip-json-comments@3.1.1: {} 2789 | 2790 | styled-jsx@5.1.6(react@19.0.0-rc-fb9a90fa48-20240614): 2791 | dependencies: 2792 | client-only: 0.0.1 2793 | react: 19.0.0-rc-fb9a90fa48-20240614 2794 | 2795 | supports-color@7.2.0: 2796 | dependencies: 2797 | has-flag: 4.0.0 2798 | 2799 | supports-preserve-symlinks-flag@1.0.0: {} 2800 | 2801 | tapable@2.2.1: {} 2802 | 2803 | to-regex-range@5.0.1: 2804 | dependencies: 2805 | is-number: 7.0.0 2806 | 2807 | ts-api-utils@1.4.3(typescript@5.7.2): 2808 | dependencies: 2809 | typescript: 5.7.2 2810 | 2811 | tsconfig-paths@3.15.0: 2812 | dependencies: 2813 | '@types/json5': 0.0.29 2814 | json5: 1.0.2 2815 | minimist: 1.2.8 2816 | strip-bom: 3.0.0 2817 | 2818 | tslib@2.8.1: {} 2819 | 2820 | type-check@0.4.0: 2821 | dependencies: 2822 | prelude-ls: 1.2.1 2823 | 2824 | typed-array-buffer@1.0.2: 2825 | dependencies: 2826 | call-bind: 1.0.7 2827 | es-errors: 1.3.0 2828 | is-typed-array: 1.1.13 2829 | 2830 | typed-array-byte-length@1.0.1: 2831 | dependencies: 2832 | call-bind: 1.0.7 2833 | for-each: 0.3.3 2834 | gopd: 1.1.0 2835 | has-proto: 1.1.0 2836 | is-typed-array: 1.1.13 2837 | 2838 | typed-array-byte-offset@1.0.3: 2839 | dependencies: 2840 | available-typed-arrays: 1.0.7 2841 | call-bind: 1.0.7 2842 | for-each: 0.3.3 2843 | gopd: 1.1.0 2844 | has-proto: 1.1.0 2845 | is-typed-array: 1.1.13 2846 | reflect.getprototypeof: 1.0.7 2847 | 2848 | typed-array-length@1.0.7: 2849 | dependencies: 2850 | call-bind: 1.0.7 2851 | for-each: 0.3.3 2852 | gopd: 1.1.0 2853 | is-typed-array: 1.1.13 2854 | possible-typed-array-names: 1.0.0 2855 | reflect.getprototypeof: 1.0.7 2856 | 2857 | typescript@5.7.2: {} 2858 | 2859 | unbox-primitive@1.0.2: 2860 | dependencies: 2861 | call-bind: 1.0.7 2862 | has-bigints: 1.0.2 2863 | has-symbols: 1.0.3 2864 | which-boxed-primitive: 1.0.2 2865 | 2866 | undici-types@6.19.8: {} 2867 | 2868 | uri-js@4.4.1: 2869 | dependencies: 2870 | punycode: 2.3.1 2871 | 2872 | which-boxed-primitive@1.0.2: 2873 | dependencies: 2874 | is-bigint: 1.0.4 2875 | is-boolean-object: 1.2.0 2876 | is-number-object: 1.1.0 2877 | is-string: 1.1.0 2878 | is-symbol: 1.0.4 2879 | 2880 | which-builtin-type@1.2.0: 2881 | dependencies: 2882 | call-bind: 1.0.7 2883 | function.prototype.name: 1.1.6 2884 | has-tostringtag: 1.0.2 2885 | is-async-function: 2.0.0 2886 | is-date-object: 1.0.5 2887 | is-finalizationregistry: 1.1.0 2888 | is-generator-function: 1.0.10 2889 | is-regex: 1.2.0 2890 | is-weakref: 1.0.2 2891 | isarray: 2.0.5 2892 | which-boxed-primitive: 1.0.2 2893 | which-collection: 1.0.2 2894 | which-typed-array: 1.1.16 2895 | 2896 | which-collection@1.0.2: 2897 | dependencies: 2898 | is-map: 2.0.3 2899 | is-set: 2.0.3 2900 | is-weakmap: 2.0.2 2901 | is-weakset: 2.0.3 2902 | 2903 | which-typed-array@1.1.16: 2904 | dependencies: 2905 | available-typed-arrays: 1.0.7 2906 | call-bind: 1.0.7 2907 | for-each: 0.3.3 2908 | gopd: 1.1.0 2909 | has-tostringtag: 1.0.2 2910 | 2911 | which@2.0.2: 2912 | dependencies: 2913 | isexe: 2.0.0 2914 | 2915 | word-wrap@1.2.5: {} 2916 | 2917 | yocto-queue@0.1.0: {} 2918 | --------------------------------------------------------------------------------