├── .eslintrc.json ├── .gitignore ├── README.md ├── biome.json ├── components.json ├── next.config.mjs ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── garfield.png ├── next.svg ├── odie.png └── vercel.svg ├── src ├── app │ ├── @breadcrumb │ │ ├── [...all] │ │ │ └── page.tsx │ │ ├── cats │ │ │ └── [id] │ │ │ │ └── page.tsx │ │ ├── dogs │ │ │ └── [id] │ │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── cats │ │ ├── [id] │ │ │ └── page.tsx │ │ └── page.tsx │ ├── dogs │ │ ├── [id] │ │ │ └── page.tsx │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components │ └── ui │ │ └── breadcrumb.tsx ├── lib │ └── utils.ts └── styles │ └── globals.css ├── tailwind.config.cjs ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | .yarn/install-state.gz 8 | 9 | # testing 10 | /coverage 11 | 12 | # next.js 13 | /.next/ 14 | /out/ 15 | 16 | # production 17 | /build 18 | 19 | # misc 20 | .DS_Store 21 | *.pem 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | next-env.d.ts 37 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # dynamic breadcrumb for Next.js 15 by [OpenStatus](https://www.openstatus.dev) 2 | 3 | This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). 4 | 5 | ## Getting Started 6 | 7 | First, run the development server: 8 | 9 | ```bash 10 | npm run dev 11 | # or 12 | yarn dev 13 | # or 14 | pnpm dev 15 | # or 16 | bun dev 17 | ``` 18 | 19 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 20 | -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://biomejs.dev/schemas/1.8.3/schema.json", 3 | "organizeImports": { 4 | "enabled": true 5 | }, 6 | "linter": { 7 | "enabled": true, 8 | "rules": { 9 | "recommended": true 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://ui.shadcn.com/schema.json", 3 | "style": "default", 4 | "rsc": false, 5 | "tsx": true, 6 | "tailwind": { 7 | "config": "./tailwind.config.cjs", 8 | "css": "src/styles/globals.css", 9 | "baseColor": "slate", 10 | "cssVariables": true 11 | }, 12 | "aliases": { 13 | "components": "@/components", 14 | "utils": "@/lib/utils" 15 | } 16 | } -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = {}; 3 | 4 | export default nextConfig; 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "dynamic-breadcrumb", 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 | "@radix-ui/react-slot": "1.1.1", 13 | "class-variance-authority": "0.7.1", 14 | "clsx": "2.1.1", 15 | "lucide-react": "^0.468.0", 16 | "next": "^15.1.2", 17 | "react": "19.0.0", 18 | "react-dom": "19.0.0", 19 | "tailwind-merge": "2.5.5", 20 | "tailwindcss-animate": "1.0.7" 21 | }, 22 | "devDependencies": { 23 | "@biomejs/biome": "^1.9.4", 24 | "@types/node": "^22.10.2", 25 | "@types/react": "^19.0.2", 26 | "@types/react-dom": "^19.0.2", 27 | "eslint": "9.17.0", 28 | "eslint-config-next": "^15.1.2", 29 | "postcss": "8.4.49", 30 | "tailwindcss": "3.4.17", 31 | "typescript": "5.7.2" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | '@radix-ui/react-slot': 12 | specifier: 1.1.1 13 | version: 1.1.1(@types/react@19.0.2)(react@19.0.0) 14 | class-variance-authority: 15 | specifier: 0.7.1 16 | version: 0.7.1 17 | clsx: 18 | specifier: 2.1.1 19 | version: 2.1.1 20 | lucide-react: 21 | specifier: ^0.468.0 22 | version: 0.468.0(react@19.0.0) 23 | next: 24 | specifier: ^15.1.2 25 | version: 15.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 26 | react: 27 | specifier: 19.0.0 28 | version: 19.0.0 29 | react-dom: 30 | specifier: 19.0.0 31 | version: 19.0.0(react@19.0.0) 32 | tailwind-merge: 33 | specifier: 2.5.5 34 | version: 2.5.5 35 | tailwindcss-animate: 36 | specifier: 1.0.7 37 | version: 1.0.7(tailwindcss@3.4.17) 38 | devDependencies: 39 | '@biomejs/biome': 40 | specifier: ^1.9.4 41 | version: 1.9.4 42 | '@types/node': 43 | specifier: ^22.10.2 44 | version: 22.10.2 45 | '@types/react': 46 | specifier: ^19.0.2 47 | version: 19.0.2 48 | '@types/react-dom': 49 | specifier: ^19.0.2 50 | version: 19.0.2(@types/react@19.0.2) 51 | eslint: 52 | specifier: 9.17.0 53 | version: 9.17.0(jiti@1.21.7) 54 | eslint-config-next: 55 | specifier: ^15.1.2 56 | version: 15.1.2(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2) 57 | postcss: 58 | specifier: 8.4.49 59 | version: 8.4.49 60 | tailwindcss: 61 | specifier: 3.4.17 62 | version: 3.4.17 63 | typescript: 64 | specifier: 5.7.2 65 | version: 5.7.2 66 | 67 | packages: 68 | 69 | '@alloc/quick-lru@5.2.0': 70 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} 71 | engines: {node: '>=10'} 72 | 73 | '@biomejs/biome@1.9.4': 74 | resolution: {integrity: sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog==} 75 | engines: {node: '>=14.21.3'} 76 | hasBin: true 77 | 78 | '@biomejs/cli-darwin-arm64@1.9.4': 79 | resolution: {integrity: sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw==} 80 | engines: {node: '>=14.21.3'} 81 | cpu: [arm64] 82 | os: [darwin] 83 | 84 | '@biomejs/cli-darwin-x64@1.9.4': 85 | resolution: {integrity: sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg==} 86 | engines: {node: '>=14.21.3'} 87 | cpu: [x64] 88 | os: [darwin] 89 | 90 | '@biomejs/cli-linux-arm64-musl@1.9.4': 91 | resolution: {integrity: sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA==} 92 | engines: {node: '>=14.21.3'} 93 | cpu: [arm64] 94 | os: [linux] 95 | 96 | '@biomejs/cli-linux-arm64@1.9.4': 97 | resolution: {integrity: sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g==} 98 | engines: {node: '>=14.21.3'} 99 | cpu: [arm64] 100 | os: [linux] 101 | 102 | '@biomejs/cli-linux-x64-musl@1.9.4': 103 | resolution: {integrity: sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg==} 104 | engines: {node: '>=14.21.3'} 105 | cpu: [x64] 106 | os: [linux] 107 | 108 | '@biomejs/cli-linux-x64@1.9.4': 109 | resolution: {integrity: sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg==} 110 | engines: {node: '>=14.21.3'} 111 | cpu: [x64] 112 | os: [linux] 113 | 114 | '@biomejs/cli-win32-arm64@1.9.4': 115 | resolution: {integrity: sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg==} 116 | engines: {node: '>=14.21.3'} 117 | cpu: [arm64] 118 | os: [win32] 119 | 120 | '@biomejs/cli-win32-x64@1.9.4': 121 | resolution: {integrity: sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA==} 122 | engines: {node: '>=14.21.3'} 123 | cpu: [x64] 124 | os: [win32] 125 | 126 | '@emnapi/runtime@1.3.1': 127 | resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==} 128 | 129 | '@eslint-community/eslint-utils@4.4.1': 130 | resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} 131 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 132 | peerDependencies: 133 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 134 | 135 | '@eslint-community/regexpp@4.12.1': 136 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} 137 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 138 | 139 | '@eslint/config-array@0.19.1': 140 | resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==} 141 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 142 | 143 | '@eslint/core@0.9.1': 144 | resolution: {integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==} 145 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 146 | 147 | '@eslint/eslintrc@3.2.0': 148 | resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} 149 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 150 | 151 | '@eslint/js@9.17.0': 152 | resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==} 153 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 154 | 155 | '@eslint/object-schema@2.1.5': 156 | resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==} 157 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 158 | 159 | '@eslint/plugin-kit@0.2.4': 160 | resolution: {integrity: sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==} 161 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 162 | 163 | '@humanfs/core@0.19.1': 164 | resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} 165 | engines: {node: '>=18.18.0'} 166 | 167 | '@humanfs/node@0.16.6': 168 | resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} 169 | engines: {node: '>=18.18.0'} 170 | 171 | '@humanwhocodes/module-importer@1.0.1': 172 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 173 | engines: {node: '>=12.22'} 174 | 175 | '@humanwhocodes/retry@0.3.1': 176 | resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} 177 | engines: {node: '>=18.18'} 178 | 179 | '@humanwhocodes/retry@0.4.1': 180 | resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==} 181 | engines: {node: '>=18.18'} 182 | 183 | '@img/sharp-darwin-arm64@0.33.5': 184 | resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} 185 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 186 | cpu: [arm64] 187 | os: [darwin] 188 | 189 | '@img/sharp-darwin-x64@0.33.5': 190 | resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} 191 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 192 | cpu: [x64] 193 | os: [darwin] 194 | 195 | '@img/sharp-libvips-darwin-arm64@1.0.4': 196 | resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} 197 | cpu: [arm64] 198 | os: [darwin] 199 | 200 | '@img/sharp-libvips-darwin-x64@1.0.4': 201 | resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} 202 | cpu: [x64] 203 | os: [darwin] 204 | 205 | '@img/sharp-libvips-linux-arm64@1.0.4': 206 | resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} 207 | cpu: [arm64] 208 | os: [linux] 209 | 210 | '@img/sharp-libvips-linux-arm@1.0.5': 211 | resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} 212 | cpu: [arm] 213 | os: [linux] 214 | 215 | '@img/sharp-libvips-linux-s390x@1.0.4': 216 | resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} 217 | cpu: [s390x] 218 | os: [linux] 219 | 220 | '@img/sharp-libvips-linux-x64@1.0.4': 221 | resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} 222 | cpu: [x64] 223 | os: [linux] 224 | 225 | '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 226 | resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} 227 | cpu: [arm64] 228 | os: [linux] 229 | 230 | '@img/sharp-libvips-linuxmusl-x64@1.0.4': 231 | resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} 232 | cpu: [x64] 233 | os: [linux] 234 | 235 | '@img/sharp-linux-arm64@0.33.5': 236 | resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} 237 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 238 | cpu: [arm64] 239 | os: [linux] 240 | 241 | '@img/sharp-linux-arm@0.33.5': 242 | resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} 243 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 244 | cpu: [arm] 245 | os: [linux] 246 | 247 | '@img/sharp-linux-s390x@0.33.5': 248 | resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} 249 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 250 | cpu: [s390x] 251 | os: [linux] 252 | 253 | '@img/sharp-linux-x64@0.33.5': 254 | resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} 255 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 256 | cpu: [x64] 257 | os: [linux] 258 | 259 | '@img/sharp-linuxmusl-arm64@0.33.5': 260 | resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} 261 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 262 | cpu: [arm64] 263 | os: [linux] 264 | 265 | '@img/sharp-linuxmusl-x64@0.33.5': 266 | resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} 267 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 268 | cpu: [x64] 269 | os: [linux] 270 | 271 | '@img/sharp-wasm32@0.33.5': 272 | resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} 273 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 274 | cpu: [wasm32] 275 | 276 | '@img/sharp-win32-ia32@0.33.5': 277 | resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} 278 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 279 | cpu: [ia32] 280 | os: [win32] 281 | 282 | '@img/sharp-win32-x64@0.33.5': 283 | resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==} 284 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 285 | cpu: [x64] 286 | os: [win32] 287 | 288 | '@isaacs/cliui@8.0.2': 289 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 290 | engines: {node: '>=12'} 291 | 292 | '@jridgewell/gen-mapping@0.3.8': 293 | resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} 294 | engines: {node: '>=6.0.0'} 295 | 296 | '@jridgewell/resolve-uri@3.1.2': 297 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 298 | engines: {node: '>=6.0.0'} 299 | 300 | '@jridgewell/set-array@1.2.1': 301 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 302 | engines: {node: '>=6.0.0'} 303 | 304 | '@jridgewell/sourcemap-codec@1.5.0': 305 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 306 | 307 | '@jridgewell/trace-mapping@0.3.25': 308 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 309 | 310 | '@next/env@15.1.2': 311 | resolution: {integrity: sha512-Hm3jIGsoUl6RLB1vzY+dZeqb+/kWPZ+h34yiWxW0dV87l8Im/eMOwpOA+a0L78U0HM04syEjXuRlCozqpwuojQ==} 312 | 313 | '@next/eslint-plugin-next@15.1.2': 314 | resolution: {integrity: sha512-sgfw3+WdaYOGPKCvM1L+UucBmRfh8V2Ygefp7ELON0+0vY7uohQwXXnVWg3rY7mXDKharQR3o7uedpfvnU2hlQ==} 315 | 316 | '@next/swc-darwin-arm64@15.1.2': 317 | resolution: {integrity: sha512-b9TN7q+j5/7+rGLhFAVZiKJGIASuo8tWvInGfAd8wsULjB1uNGRCj1z1WZwwPWzVQbIKWFYqc+9L7W09qwt52w==} 318 | engines: {node: '>= 10'} 319 | cpu: [arm64] 320 | os: [darwin] 321 | 322 | '@next/swc-darwin-x64@15.1.2': 323 | resolution: {integrity: sha512-caR62jNDUCU+qobStO6YJ05p9E+LR0EoXh1EEmyU69cYydsAy7drMcOlUlRtQihM6K6QfvNwJuLhsHcCzNpqtA==} 324 | engines: {node: '>= 10'} 325 | cpu: [x64] 326 | os: [darwin] 327 | 328 | '@next/swc-linux-arm64-gnu@15.1.2': 329 | resolution: {integrity: sha512-fHHXBusURjBmN6VBUtu6/5s7cCeEkuGAb/ZZiGHBLVBXMBy4D5QpM8P33Or8JD1nlOjm/ZT9sEE5HouQ0F+hUA==} 330 | engines: {node: '>= 10'} 331 | cpu: [arm64] 332 | os: [linux] 333 | 334 | '@next/swc-linux-arm64-musl@15.1.2': 335 | resolution: {integrity: sha512-9CF1Pnivij7+M3G74lxr+e9h6o2YNIe7QtExWq1KUK4hsOLTBv6FJikEwCaC3NeYTflzrm69E5UfwEAbV2U9/g==} 336 | engines: {node: '>= 10'} 337 | cpu: [arm64] 338 | os: [linux] 339 | 340 | '@next/swc-linux-x64-gnu@15.1.2': 341 | resolution: {integrity: sha512-tINV7WmcTUf4oM/eN3Yuu/f8jQ5C6AkueZPKeALs/qfdfX57eNv4Ij7rt0SA6iZ8+fMobVfcFVv664Op0caCCg==} 342 | engines: {node: '>= 10'} 343 | cpu: [x64] 344 | os: [linux] 345 | 346 | '@next/swc-linux-x64-musl@15.1.2': 347 | resolution: {integrity: sha512-jf2IseC4WRsGkzeUw/cK3wci9pxR53GlLAt30+y+B+2qAQxMw6WAC3QrANIKxkcoPU3JFh/10uFfmoMDF9JXKg==} 348 | engines: {node: '>= 10'} 349 | cpu: [x64] 350 | os: [linux] 351 | 352 | '@next/swc-win32-arm64-msvc@15.1.2': 353 | resolution: {integrity: sha512-wvg7MlfnaociP7k8lxLX4s2iBJm4BrNiNFhVUY+Yur5yhAJHfkS8qPPeDEUH8rQiY0PX3u/P7Q/wcg6Mv6GSAA==} 354 | engines: {node: '>= 10'} 355 | cpu: [arm64] 356 | os: [win32] 357 | 358 | '@next/swc-win32-x64-msvc@15.1.2': 359 | resolution: {integrity: sha512-D3cNA8NoT3aWISWmo7HF5Eyko/0OdOO+VagkoJuiTk7pyX3P/b+n8XA/MYvyR+xSVcbKn68B1rY9fgqjNISqzQ==} 360 | engines: {node: '>= 10'} 361 | cpu: [x64] 362 | os: [win32] 363 | 364 | '@nodelib/fs.scandir@2.1.5': 365 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 366 | engines: {node: '>= 8'} 367 | 368 | '@nodelib/fs.stat@2.0.5': 369 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 370 | engines: {node: '>= 8'} 371 | 372 | '@nodelib/fs.walk@1.2.8': 373 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 374 | engines: {node: '>= 8'} 375 | 376 | '@nolyfill/is-core-module@1.0.39': 377 | resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==} 378 | engines: {node: '>=12.4.0'} 379 | 380 | '@pkgjs/parseargs@0.11.0': 381 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 382 | engines: {node: '>=14'} 383 | 384 | '@radix-ui/react-compose-refs@1.1.1': 385 | resolution: {integrity: sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==} 386 | peerDependencies: 387 | '@types/react': '*' 388 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 389 | peerDependenciesMeta: 390 | '@types/react': 391 | optional: true 392 | 393 | '@radix-ui/react-slot@1.1.1': 394 | resolution: {integrity: sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==} 395 | peerDependencies: 396 | '@types/react': '*' 397 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 398 | peerDependenciesMeta: 399 | '@types/react': 400 | optional: true 401 | 402 | '@rtsao/scc@1.1.0': 403 | resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} 404 | 405 | '@rushstack/eslint-patch@1.10.4': 406 | resolution: {integrity: sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==} 407 | 408 | '@swc/counter@0.1.3': 409 | resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} 410 | 411 | '@swc/helpers@0.5.15': 412 | resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} 413 | 414 | '@types/estree@1.0.6': 415 | resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 416 | 417 | '@types/json-schema@7.0.15': 418 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 419 | 420 | '@types/json5@0.0.29': 421 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 422 | 423 | '@types/node@22.10.2': 424 | resolution: {integrity: sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==} 425 | 426 | '@types/react-dom@19.0.2': 427 | resolution: {integrity: sha512-c1s+7TKFaDRRxr1TxccIX2u7sfCnc3RxkVyBIUA2lCpyqCF+QoAwQ/CBg7bsMdVwP120HEH143VQezKtef5nCg==} 428 | peerDependencies: 429 | '@types/react': ^19.0.0 430 | 431 | '@types/react@19.0.2': 432 | resolution: {integrity: sha512-USU8ZI/xyKJwFTpjSVIrSeHBVAGagkHQKPNbxeWwql/vDmnTIBgx+TJnhFnj1NXgz8XfprU0egV2dROLGpsBEg==} 433 | 434 | '@typescript-eslint/eslint-plugin@8.18.1': 435 | resolution: {integrity: sha512-Ncvsq5CT3Gvh+uJG0Lwlho6suwDfUXH0HztslDf5I+F2wAFAZMRwYLEorumpKLzmO2suAXZ/td1tBg4NZIi9CQ==} 436 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 437 | peerDependencies: 438 | '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 439 | eslint: ^8.57.0 || ^9.0.0 440 | typescript: '>=4.8.4 <5.8.0' 441 | 442 | '@typescript-eslint/parser@7.2.0': 443 | resolution: {integrity: sha512-5FKsVcHTk6TafQKQbuIVkXq58Fnbkd2wDL4LB7AURN7RUOu1utVP+G8+6u3ZhEroW3DF6hyo3ZEXxgKgp4KeCg==} 444 | engines: {node: ^16.0.0 || >=18.0.0} 445 | peerDependencies: 446 | eslint: ^8.56.0 447 | typescript: '*' 448 | peerDependenciesMeta: 449 | typescript: 450 | optional: true 451 | 452 | '@typescript-eslint/scope-manager@7.2.0': 453 | resolution: {integrity: sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==} 454 | engines: {node: ^16.0.0 || >=18.0.0} 455 | 456 | '@typescript-eslint/scope-manager@8.18.1': 457 | resolution: {integrity: sha512-HxfHo2b090M5s2+/9Z3gkBhI6xBH8OJCFjH9MhQ+nnoZqxU3wNxkLT+VWXWSFWc3UF3Z+CfPAyqdCTdoXtDPCQ==} 458 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 459 | 460 | '@typescript-eslint/type-utils@8.18.1': 461 | resolution: {integrity: sha512-jAhTdK/Qx2NJPNOTxXpMwlOiSymtR2j283TtPqXkKBdH8OAMmhiUfP0kJjc/qSE51Xrq02Gj9NY7MwK+UxVwHQ==} 462 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 463 | peerDependencies: 464 | eslint: ^8.57.0 || ^9.0.0 465 | typescript: '>=4.8.4 <5.8.0' 466 | 467 | '@typescript-eslint/types@7.2.0': 468 | resolution: {integrity: sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==} 469 | engines: {node: ^16.0.0 || >=18.0.0} 470 | 471 | '@typescript-eslint/types@8.18.1': 472 | resolution: {integrity: sha512-7uoAUsCj66qdNQNpH2G8MyTFlgerum8ubf21s3TSM3XmKXuIn+H2Sifh/ES2nPOPiYSRJWAk0fDkW0APBWcpfw==} 473 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 474 | 475 | '@typescript-eslint/typescript-estree@7.2.0': 476 | resolution: {integrity: sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==} 477 | engines: {node: ^16.0.0 || >=18.0.0} 478 | peerDependencies: 479 | typescript: '*' 480 | peerDependenciesMeta: 481 | typescript: 482 | optional: true 483 | 484 | '@typescript-eslint/typescript-estree@8.18.1': 485 | resolution: {integrity: sha512-z8U21WI5txzl2XYOW7i9hJhxoKKNG1kcU4RzyNvKrdZDmbjkmLBo8bgeiOJmA06kizLI76/CCBAAGlTlEeUfyg==} 486 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 487 | peerDependencies: 488 | typescript: '>=4.8.4 <5.8.0' 489 | 490 | '@typescript-eslint/utils@8.18.1': 491 | resolution: {integrity: sha512-8vikiIj2ebrC4WRdcAdDcmnu9Q/MXXwg+STf40BVfT8exDqBCUPdypvzcUPxEqRGKg9ALagZ0UWcYCtn+4W2iQ==} 492 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 493 | peerDependencies: 494 | eslint: ^8.57.0 || ^9.0.0 495 | typescript: '>=4.8.4 <5.8.0' 496 | 497 | '@typescript-eslint/visitor-keys@7.2.0': 498 | resolution: {integrity: sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==} 499 | engines: {node: ^16.0.0 || >=18.0.0} 500 | 501 | '@typescript-eslint/visitor-keys@8.18.1': 502 | resolution: {integrity: sha512-Vj0WLm5/ZsD013YeUKn+K0y8p1M0jPpxOkKdbD1wB0ns53a5piVY02zjf072TblEweAbcYiFiPoSMF3kp+VhhQ==} 503 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 504 | 505 | acorn-jsx@5.3.2: 506 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 507 | peerDependencies: 508 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 509 | 510 | acorn@8.14.0: 511 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 512 | engines: {node: '>=0.4.0'} 513 | hasBin: true 514 | 515 | ajv@6.12.6: 516 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 517 | 518 | ansi-regex@5.0.1: 519 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 520 | engines: {node: '>=8'} 521 | 522 | ansi-regex@6.1.0: 523 | resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} 524 | engines: {node: '>=12'} 525 | 526 | ansi-styles@4.3.0: 527 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 528 | engines: {node: '>=8'} 529 | 530 | ansi-styles@6.2.1: 531 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 532 | engines: {node: '>=12'} 533 | 534 | any-promise@1.3.0: 535 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 536 | 537 | anymatch@3.1.3: 538 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 539 | engines: {node: '>= 8'} 540 | 541 | arg@5.0.2: 542 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 543 | 544 | argparse@2.0.1: 545 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 546 | 547 | aria-query@5.3.2: 548 | resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} 549 | engines: {node: '>= 0.4'} 550 | 551 | array-buffer-byte-length@1.0.1: 552 | resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} 553 | engines: {node: '>= 0.4'} 554 | 555 | array-includes@3.1.8: 556 | resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} 557 | engines: {node: '>= 0.4'} 558 | 559 | array-union@2.1.0: 560 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 561 | engines: {node: '>=8'} 562 | 563 | array.prototype.findlast@1.2.5: 564 | resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} 565 | engines: {node: '>= 0.4'} 566 | 567 | array.prototype.findlastindex@1.2.5: 568 | resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} 569 | engines: {node: '>= 0.4'} 570 | 571 | array.prototype.flat@1.3.3: 572 | resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==} 573 | engines: {node: '>= 0.4'} 574 | 575 | array.prototype.flatmap@1.3.3: 576 | resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==} 577 | engines: {node: '>= 0.4'} 578 | 579 | array.prototype.tosorted@1.1.4: 580 | resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} 581 | engines: {node: '>= 0.4'} 582 | 583 | arraybuffer.prototype.slice@1.0.4: 584 | resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} 585 | engines: {node: '>= 0.4'} 586 | 587 | ast-types-flow@0.0.8: 588 | resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} 589 | 590 | available-typed-arrays@1.0.7: 591 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 592 | engines: {node: '>= 0.4'} 593 | 594 | axe-core@4.10.2: 595 | resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==} 596 | engines: {node: '>=4'} 597 | 598 | axobject-query@4.1.0: 599 | resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 600 | engines: {node: '>= 0.4'} 601 | 602 | balanced-match@1.0.2: 603 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 604 | 605 | binary-extensions@2.3.0: 606 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 607 | engines: {node: '>=8'} 608 | 609 | brace-expansion@1.1.11: 610 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 611 | 612 | brace-expansion@2.0.1: 613 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 614 | 615 | braces@3.0.3: 616 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 617 | engines: {node: '>=8'} 618 | 619 | busboy@1.6.0: 620 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 621 | engines: {node: '>=10.16.0'} 622 | 623 | call-bind-apply-helpers@1.0.1: 624 | resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==} 625 | engines: {node: '>= 0.4'} 626 | 627 | call-bind@1.0.8: 628 | resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} 629 | engines: {node: '>= 0.4'} 630 | 631 | call-bound@1.0.3: 632 | resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==} 633 | engines: {node: '>= 0.4'} 634 | 635 | callsites@3.1.0: 636 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 637 | engines: {node: '>=6'} 638 | 639 | camelcase-css@2.0.1: 640 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 641 | engines: {node: '>= 6'} 642 | 643 | caniuse-lite@1.0.30001690: 644 | resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==} 645 | 646 | chalk@4.1.2: 647 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 648 | engines: {node: '>=10'} 649 | 650 | chokidar@3.6.0: 651 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 652 | engines: {node: '>= 8.10.0'} 653 | 654 | class-variance-authority@0.7.1: 655 | resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==} 656 | 657 | client-only@0.0.1: 658 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} 659 | 660 | clsx@2.1.1: 661 | resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} 662 | engines: {node: '>=6'} 663 | 664 | color-convert@2.0.1: 665 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 666 | engines: {node: '>=7.0.0'} 667 | 668 | color-name@1.1.4: 669 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 670 | 671 | color-string@1.9.1: 672 | resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} 673 | 674 | color@4.2.3: 675 | resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} 676 | engines: {node: '>=12.5.0'} 677 | 678 | commander@4.1.1: 679 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 680 | engines: {node: '>= 6'} 681 | 682 | concat-map@0.0.1: 683 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 684 | 685 | cross-spawn@7.0.6: 686 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 687 | engines: {node: '>= 8'} 688 | 689 | cssesc@3.0.0: 690 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 691 | engines: {node: '>=4'} 692 | hasBin: true 693 | 694 | csstype@3.1.3: 695 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 696 | 697 | damerau-levenshtein@1.0.8: 698 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 699 | 700 | data-view-buffer@1.0.1: 701 | resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} 702 | engines: {node: '>= 0.4'} 703 | 704 | data-view-byte-length@1.0.1: 705 | resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} 706 | engines: {node: '>= 0.4'} 707 | 708 | data-view-byte-offset@1.0.1: 709 | resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} 710 | engines: {node: '>= 0.4'} 711 | 712 | debug@3.2.7: 713 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 714 | peerDependencies: 715 | supports-color: '*' 716 | peerDependenciesMeta: 717 | supports-color: 718 | optional: true 719 | 720 | debug@4.4.0: 721 | resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} 722 | engines: {node: '>=6.0'} 723 | peerDependencies: 724 | supports-color: '*' 725 | peerDependenciesMeta: 726 | supports-color: 727 | optional: true 728 | 729 | deep-is@0.1.4: 730 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 731 | 732 | define-data-property@1.1.4: 733 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 734 | engines: {node: '>= 0.4'} 735 | 736 | define-properties@1.2.1: 737 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 738 | engines: {node: '>= 0.4'} 739 | 740 | detect-libc@2.0.3: 741 | resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} 742 | engines: {node: '>=8'} 743 | 744 | didyoumean@1.2.2: 745 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 746 | 747 | dir-glob@3.0.1: 748 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 749 | engines: {node: '>=8'} 750 | 751 | dlv@1.1.3: 752 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 753 | 754 | doctrine@2.1.0: 755 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 756 | engines: {node: '>=0.10.0'} 757 | 758 | dunder-proto@1.0.1: 759 | resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} 760 | engines: {node: '>= 0.4'} 761 | 762 | eastasianwidth@0.2.0: 763 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 764 | 765 | emoji-regex@8.0.0: 766 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 767 | 768 | emoji-regex@9.2.2: 769 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 770 | 771 | enhanced-resolve@5.17.1: 772 | resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} 773 | engines: {node: '>=10.13.0'} 774 | 775 | es-abstract@1.23.6: 776 | resolution: {integrity: sha512-Ifco6n3yj2tMZDWNLyloZrytt9lqqlwvS83P3HtaETR0NUOYnIULGGHpktqYGObGy+8wc1okO25p8TjemhImvA==} 777 | engines: {node: '>= 0.4'} 778 | 779 | es-define-property@1.0.1: 780 | resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} 781 | engines: {node: '>= 0.4'} 782 | 783 | es-errors@1.3.0: 784 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 785 | engines: {node: '>= 0.4'} 786 | 787 | es-iterator-helpers@1.2.0: 788 | resolution: {integrity: sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==} 789 | engines: {node: '>= 0.4'} 790 | 791 | es-object-atoms@1.0.0: 792 | resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} 793 | engines: {node: '>= 0.4'} 794 | 795 | es-set-tostringtag@2.0.3: 796 | resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} 797 | engines: {node: '>= 0.4'} 798 | 799 | es-shim-unscopables@1.0.2: 800 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 801 | 802 | es-to-primitive@1.3.0: 803 | resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} 804 | engines: {node: '>= 0.4'} 805 | 806 | escape-string-regexp@4.0.0: 807 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 808 | engines: {node: '>=10'} 809 | 810 | eslint-config-next@15.1.2: 811 | resolution: {integrity: sha512-PrMm1/4zWSJ689wd/ypWIR5ZF1uvmp3EkgpgBV1Yu6PhEobBjXMGgT8bVNelwl17LXojO8D5ePFRiI4qXjsPRA==} 812 | peerDependencies: 813 | eslint: ^7.23.0 || ^8.0.0 || ^9.0.0 814 | typescript: '>=3.3.1' 815 | peerDependenciesMeta: 816 | typescript: 817 | optional: true 818 | 819 | eslint-import-resolver-node@0.3.9: 820 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 821 | 822 | eslint-import-resolver-typescript@3.7.0: 823 | resolution: {integrity: sha512-Vrwyi8HHxY97K5ebydMtffsWAn1SCR9eol49eCd5fJS4O1WV7PaAjbcjmbfJJSMz/t4Mal212Uz/fQZrOB8mow==} 824 | engines: {node: ^14.18.0 || >=16.0.0} 825 | peerDependencies: 826 | eslint: '*' 827 | eslint-plugin-import: '*' 828 | eslint-plugin-import-x: '*' 829 | peerDependenciesMeta: 830 | eslint-plugin-import: 831 | optional: true 832 | eslint-plugin-import-x: 833 | optional: true 834 | 835 | eslint-module-utils@2.12.0: 836 | resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} 837 | engines: {node: '>=4'} 838 | peerDependencies: 839 | '@typescript-eslint/parser': '*' 840 | eslint: '*' 841 | eslint-import-resolver-node: '*' 842 | eslint-import-resolver-typescript: '*' 843 | eslint-import-resolver-webpack: '*' 844 | peerDependenciesMeta: 845 | '@typescript-eslint/parser': 846 | optional: true 847 | eslint: 848 | optional: true 849 | eslint-import-resolver-node: 850 | optional: true 851 | eslint-import-resolver-typescript: 852 | optional: true 853 | eslint-import-resolver-webpack: 854 | optional: true 855 | 856 | eslint-plugin-import@2.31.0: 857 | resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} 858 | engines: {node: '>=4'} 859 | peerDependencies: 860 | '@typescript-eslint/parser': '*' 861 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 862 | peerDependenciesMeta: 863 | '@typescript-eslint/parser': 864 | optional: true 865 | 866 | eslint-plugin-jsx-a11y@6.10.2: 867 | resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==} 868 | engines: {node: '>=4.0'} 869 | peerDependencies: 870 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 871 | 872 | eslint-plugin-react-hooks@5.1.0: 873 | resolution: {integrity: sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==} 874 | engines: {node: '>=10'} 875 | peerDependencies: 876 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 877 | 878 | eslint-plugin-react@7.37.2: 879 | resolution: {integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==} 880 | engines: {node: '>=4'} 881 | peerDependencies: 882 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 883 | 884 | eslint-scope@8.2.0: 885 | resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==} 886 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 887 | 888 | eslint-visitor-keys@3.4.3: 889 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 890 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 891 | 892 | eslint-visitor-keys@4.2.0: 893 | resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} 894 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 895 | 896 | eslint@9.17.0: 897 | resolution: {integrity: sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==} 898 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 899 | hasBin: true 900 | peerDependencies: 901 | jiti: '*' 902 | peerDependenciesMeta: 903 | jiti: 904 | optional: true 905 | 906 | espree@10.3.0: 907 | resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} 908 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 909 | 910 | esquery@1.6.0: 911 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 912 | engines: {node: '>=0.10'} 913 | 914 | esrecurse@4.3.0: 915 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 916 | engines: {node: '>=4.0'} 917 | 918 | estraverse@5.3.0: 919 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 920 | engines: {node: '>=4.0'} 921 | 922 | esutils@2.0.3: 923 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 924 | engines: {node: '>=0.10.0'} 925 | 926 | fast-deep-equal@3.1.3: 927 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 928 | 929 | fast-glob@3.3.1: 930 | resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} 931 | engines: {node: '>=8.6.0'} 932 | 933 | fast-glob@3.3.2: 934 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 935 | engines: {node: '>=8.6.0'} 936 | 937 | fast-json-stable-stringify@2.1.0: 938 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 939 | 940 | fast-levenshtein@2.0.6: 941 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 942 | 943 | fastq@1.17.1: 944 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 945 | 946 | file-entry-cache@8.0.0: 947 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} 948 | engines: {node: '>=16.0.0'} 949 | 950 | fill-range@7.1.1: 951 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 952 | engines: {node: '>=8'} 953 | 954 | find-up@5.0.0: 955 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 956 | engines: {node: '>=10'} 957 | 958 | flat-cache@4.0.1: 959 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} 960 | engines: {node: '>=16'} 961 | 962 | flatted@3.3.2: 963 | resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} 964 | 965 | for-each@0.3.3: 966 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 967 | 968 | foreground-child@3.3.0: 969 | resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} 970 | engines: {node: '>=14'} 971 | 972 | fsevents@2.3.3: 973 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 974 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 975 | os: [darwin] 976 | 977 | function-bind@1.1.2: 978 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 979 | 980 | function.prototype.name@1.1.7: 981 | resolution: {integrity: sha512-2g4x+HqTJKM9zcJqBSpjoRmdcPFtJM60J3xJisTQSXBWka5XqyBN/2tNUgma1mztTXyDuUsEtYe5qcs7xYzYQA==} 982 | engines: {node: '>= 0.4'} 983 | 984 | functions-have-names@1.2.3: 985 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 986 | 987 | get-intrinsic@1.2.6: 988 | resolution: {integrity: sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==} 989 | engines: {node: '>= 0.4'} 990 | 991 | get-symbol-description@1.1.0: 992 | resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} 993 | engines: {node: '>= 0.4'} 994 | 995 | get-tsconfig@4.8.1: 996 | resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} 997 | 998 | glob-parent@5.1.2: 999 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1000 | engines: {node: '>= 6'} 1001 | 1002 | glob-parent@6.0.2: 1003 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1004 | engines: {node: '>=10.13.0'} 1005 | 1006 | glob@10.4.5: 1007 | resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} 1008 | hasBin: true 1009 | 1010 | globals@14.0.0: 1011 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} 1012 | engines: {node: '>=18'} 1013 | 1014 | globalthis@1.0.4: 1015 | resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} 1016 | engines: {node: '>= 0.4'} 1017 | 1018 | globby@11.1.0: 1019 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1020 | engines: {node: '>=10'} 1021 | 1022 | gopd@1.2.0: 1023 | resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} 1024 | engines: {node: '>= 0.4'} 1025 | 1026 | graceful-fs@4.2.11: 1027 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1028 | 1029 | graphemer@1.4.0: 1030 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 1031 | 1032 | has-bigints@1.1.0: 1033 | resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} 1034 | engines: {node: '>= 0.4'} 1035 | 1036 | has-flag@4.0.0: 1037 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1038 | engines: {node: '>=8'} 1039 | 1040 | has-property-descriptors@1.0.2: 1041 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 1042 | 1043 | has-proto@1.2.0: 1044 | resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} 1045 | engines: {node: '>= 0.4'} 1046 | 1047 | has-symbols@1.1.0: 1048 | resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} 1049 | engines: {node: '>= 0.4'} 1050 | 1051 | has-tostringtag@1.0.2: 1052 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 1053 | engines: {node: '>= 0.4'} 1054 | 1055 | hasown@2.0.2: 1056 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 1057 | engines: {node: '>= 0.4'} 1058 | 1059 | ignore@5.3.2: 1060 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 1061 | engines: {node: '>= 4'} 1062 | 1063 | import-fresh@3.3.0: 1064 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1065 | engines: {node: '>=6'} 1066 | 1067 | imurmurhash@0.1.4: 1068 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1069 | engines: {node: '>=0.8.19'} 1070 | 1071 | internal-slot@1.1.0: 1072 | resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} 1073 | engines: {node: '>= 0.4'} 1074 | 1075 | is-array-buffer@3.0.5: 1076 | resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} 1077 | engines: {node: '>= 0.4'} 1078 | 1079 | is-arrayish@0.3.2: 1080 | resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} 1081 | 1082 | is-async-function@2.0.0: 1083 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} 1084 | engines: {node: '>= 0.4'} 1085 | 1086 | is-bigint@1.1.0: 1087 | resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} 1088 | engines: {node: '>= 0.4'} 1089 | 1090 | is-binary-path@2.1.0: 1091 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 1092 | engines: {node: '>=8'} 1093 | 1094 | is-boolean-object@1.2.1: 1095 | resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==} 1096 | engines: {node: '>= 0.4'} 1097 | 1098 | is-bun-module@1.3.0: 1099 | resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==} 1100 | 1101 | is-callable@1.2.7: 1102 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1103 | engines: {node: '>= 0.4'} 1104 | 1105 | is-core-module@2.16.0: 1106 | resolution: {integrity: sha512-urTSINYfAYgcbLb0yDQ6egFm6h3Mo1DcF9EkyXSRjjzdHbsulg01qhwWuXdOoUBuTkbQ80KDboXa0vFJ+BDH+g==} 1107 | engines: {node: '>= 0.4'} 1108 | 1109 | is-data-view@1.0.2: 1110 | resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} 1111 | engines: {node: '>= 0.4'} 1112 | 1113 | is-date-object@1.1.0: 1114 | resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} 1115 | engines: {node: '>= 0.4'} 1116 | 1117 | is-extglob@2.1.1: 1118 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1119 | engines: {node: '>=0.10.0'} 1120 | 1121 | is-finalizationregistry@1.1.1: 1122 | resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} 1123 | engines: {node: '>= 0.4'} 1124 | 1125 | is-fullwidth-code-point@3.0.0: 1126 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1127 | engines: {node: '>=8'} 1128 | 1129 | is-generator-function@1.0.10: 1130 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} 1131 | engines: {node: '>= 0.4'} 1132 | 1133 | is-glob@4.0.3: 1134 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1135 | engines: {node: '>=0.10.0'} 1136 | 1137 | is-map@2.0.3: 1138 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 1139 | engines: {node: '>= 0.4'} 1140 | 1141 | is-negative-zero@2.0.3: 1142 | resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} 1143 | engines: {node: '>= 0.4'} 1144 | 1145 | is-number-object@1.1.1: 1146 | resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} 1147 | engines: {node: '>= 0.4'} 1148 | 1149 | is-number@7.0.0: 1150 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1151 | engines: {node: '>=0.12.0'} 1152 | 1153 | is-regex@1.2.1: 1154 | resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} 1155 | engines: {node: '>= 0.4'} 1156 | 1157 | is-set@2.0.3: 1158 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} 1159 | engines: {node: '>= 0.4'} 1160 | 1161 | is-shared-array-buffer@1.0.4: 1162 | resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} 1163 | engines: {node: '>= 0.4'} 1164 | 1165 | is-string@1.1.1: 1166 | resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} 1167 | engines: {node: '>= 0.4'} 1168 | 1169 | is-symbol@1.1.1: 1170 | resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} 1171 | engines: {node: '>= 0.4'} 1172 | 1173 | is-typed-array@1.1.15: 1174 | resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} 1175 | engines: {node: '>= 0.4'} 1176 | 1177 | is-weakmap@2.0.2: 1178 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} 1179 | engines: {node: '>= 0.4'} 1180 | 1181 | is-weakref@1.1.0: 1182 | resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==} 1183 | engines: {node: '>= 0.4'} 1184 | 1185 | is-weakset@2.0.4: 1186 | resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} 1187 | engines: {node: '>= 0.4'} 1188 | 1189 | isarray@2.0.5: 1190 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 1191 | 1192 | isexe@2.0.0: 1193 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1194 | 1195 | iterator.prototype@1.1.4: 1196 | resolution: {integrity: sha512-x4WH0BWmrMmg4oHHl+duwubhrvczGlyuGAZu3nvrf0UXOfPu8IhZObFEr7DE/iv01YgVZrsOiRcqw2srkKEDIA==} 1197 | engines: {node: '>= 0.4'} 1198 | 1199 | jackspeak@3.4.3: 1200 | resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} 1201 | 1202 | jiti@1.21.7: 1203 | resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==} 1204 | hasBin: true 1205 | 1206 | js-tokens@4.0.0: 1207 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1208 | 1209 | js-yaml@4.1.0: 1210 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1211 | hasBin: true 1212 | 1213 | json-buffer@3.0.1: 1214 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1215 | 1216 | json-schema-traverse@0.4.1: 1217 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1218 | 1219 | json-stable-stringify-without-jsonify@1.0.1: 1220 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1221 | 1222 | json5@1.0.2: 1223 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 1224 | hasBin: true 1225 | 1226 | jsx-ast-utils@3.3.5: 1227 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} 1228 | engines: {node: '>=4.0'} 1229 | 1230 | keyv@4.5.4: 1231 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1232 | 1233 | language-subtag-registry@0.3.23: 1234 | resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} 1235 | 1236 | language-tags@1.0.9: 1237 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} 1238 | engines: {node: '>=0.10'} 1239 | 1240 | levn@0.4.1: 1241 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1242 | engines: {node: '>= 0.8.0'} 1243 | 1244 | lilconfig@3.1.3: 1245 | resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} 1246 | engines: {node: '>=14'} 1247 | 1248 | lines-and-columns@1.2.4: 1249 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1250 | 1251 | locate-path@6.0.0: 1252 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1253 | engines: {node: '>=10'} 1254 | 1255 | lodash.merge@4.6.2: 1256 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1257 | 1258 | loose-envify@1.4.0: 1259 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 1260 | hasBin: true 1261 | 1262 | lru-cache@10.4.3: 1263 | resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 1264 | 1265 | lucide-react@0.468.0: 1266 | resolution: {integrity: sha512-6koYRhnM2N0GGZIdXzSeiNwguv1gt/FAjZOiPl76roBi3xKEXa4WmfpxgQwTTL4KipXjefrnf3oV4IsYhi4JFA==} 1267 | peerDependencies: 1268 | react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc 1269 | 1270 | math-intrinsics@1.1.0: 1271 | resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} 1272 | engines: {node: '>= 0.4'} 1273 | 1274 | merge2@1.4.1: 1275 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1276 | engines: {node: '>= 8'} 1277 | 1278 | micromatch@4.0.8: 1279 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1280 | engines: {node: '>=8.6'} 1281 | 1282 | minimatch@3.1.2: 1283 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1284 | 1285 | minimatch@9.0.3: 1286 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} 1287 | engines: {node: '>=16 || 14 >=14.17'} 1288 | 1289 | minimatch@9.0.5: 1290 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 1291 | engines: {node: '>=16 || 14 >=14.17'} 1292 | 1293 | minimist@1.2.8: 1294 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1295 | 1296 | minipass@7.1.2: 1297 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 1298 | engines: {node: '>=16 || 14 >=14.17'} 1299 | 1300 | ms@2.1.3: 1301 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1302 | 1303 | mz@2.7.0: 1304 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 1305 | 1306 | nanoid@3.3.8: 1307 | resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} 1308 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1309 | hasBin: true 1310 | 1311 | natural-compare@1.4.0: 1312 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1313 | 1314 | next@15.1.2: 1315 | resolution: {integrity: sha512-nLJDV7peNy+0oHlmY2JZjzMfJ8Aj0/dd3jCwSZS8ZiO5nkQfcZRqDrRN3U5rJtqVTQneIOGZzb6LCNrk7trMCQ==} 1316 | engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} 1317 | hasBin: true 1318 | peerDependencies: 1319 | '@opentelemetry/api': ^1.1.0 1320 | '@playwright/test': ^1.41.2 1321 | babel-plugin-react-compiler: '*' 1322 | react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 1323 | react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 1324 | sass: ^1.3.0 1325 | peerDependenciesMeta: 1326 | '@opentelemetry/api': 1327 | optional: true 1328 | '@playwright/test': 1329 | optional: true 1330 | babel-plugin-react-compiler: 1331 | optional: true 1332 | sass: 1333 | optional: true 1334 | 1335 | normalize-path@3.0.0: 1336 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1337 | engines: {node: '>=0.10.0'} 1338 | 1339 | object-assign@4.1.1: 1340 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1341 | engines: {node: '>=0.10.0'} 1342 | 1343 | object-hash@3.0.0: 1344 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 1345 | engines: {node: '>= 6'} 1346 | 1347 | object-inspect@1.13.3: 1348 | resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} 1349 | engines: {node: '>= 0.4'} 1350 | 1351 | object-keys@1.1.1: 1352 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1353 | engines: {node: '>= 0.4'} 1354 | 1355 | object.assign@4.1.7: 1356 | resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} 1357 | engines: {node: '>= 0.4'} 1358 | 1359 | object.entries@1.1.8: 1360 | resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} 1361 | engines: {node: '>= 0.4'} 1362 | 1363 | object.fromentries@2.0.8: 1364 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} 1365 | engines: {node: '>= 0.4'} 1366 | 1367 | object.groupby@1.0.3: 1368 | resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} 1369 | engines: {node: '>= 0.4'} 1370 | 1371 | object.values@1.2.1: 1372 | resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} 1373 | engines: {node: '>= 0.4'} 1374 | 1375 | optionator@0.9.4: 1376 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1377 | engines: {node: '>= 0.8.0'} 1378 | 1379 | p-limit@3.1.0: 1380 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1381 | engines: {node: '>=10'} 1382 | 1383 | p-locate@5.0.0: 1384 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1385 | engines: {node: '>=10'} 1386 | 1387 | package-json-from-dist@1.0.1: 1388 | resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} 1389 | 1390 | parent-module@1.0.1: 1391 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1392 | engines: {node: '>=6'} 1393 | 1394 | path-exists@4.0.0: 1395 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1396 | engines: {node: '>=8'} 1397 | 1398 | path-key@3.1.1: 1399 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1400 | engines: {node: '>=8'} 1401 | 1402 | path-parse@1.0.7: 1403 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1404 | 1405 | path-scurry@1.11.1: 1406 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} 1407 | engines: {node: '>=16 || 14 >=14.18'} 1408 | 1409 | path-type@4.0.0: 1410 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 1411 | engines: {node: '>=8'} 1412 | 1413 | picocolors@1.1.1: 1414 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1415 | 1416 | picomatch@2.3.1: 1417 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1418 | engines: {node: '>=8.6'} 1419 | 1420 | pify@2.3.0: 1421 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 1422 | engines: {node: '>=0.10.0'} 1423 | 1424 | pirates@4.0.6: 1425 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 1426 | engines: {node: '>= 6'} 1427 | 1428 | possible-typed-array-names@1.0.0: 1429 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} 1430 | engines: {node: '>= 0.4'} 1431 | 1432 | postcss-import@15.1.0: 1433 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 1434 | engines: {node: '>=14.0.0'} 1435 | peerDependencies: 1436 | postcss: ^8.0.0 1437 | 1438 | postcss-js@4.0.1: 1439 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 1440 | engines: {node: ^12 || ^14 || >= 16} 1441 | peerDependencies: 1442 | postcss: ^8.4.21 1443 | 1444 | postcss-load-config@4.0.2: 1445 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} 1446 | engines: {node: '>= 14'} 1447 | peerDependencies: 1448 | postcss: '>=8.0.9' 1449 | ts-node: '>=9.0.0' 1450 | peerDependenciesMeta: 1451 | postcss: 1452 | optional: true 1453 | ts-node: 1454 | optional: true 1455 | 1456 | postcss-nested@6.2.0: 1457 | resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} 1458 | engines: {node: '>=12.0'} 1459 | peerDependencies: 1460 | postcss: ^8.2.14 1461 | 1462 | postcss-selector-parser@6.1.2: 1463 | resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} 1464 | engines: {node: '>=4'} 1465 | 1466 | postcss-value-parser@4.2.0: 1467 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 1468 | 1469 | postcss@8.4.31: 1470 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} 1471 | engines: {node: ^10 || ^12 || >=14} 1472 | 1473 | postcss@8.4.49: 1474 | resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} 1475 | engines: {node: ^10 || ^12 || >=14} 1476 | 1477 | prelude-ls@1.2.1: 1478 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1479 | engines: {node: '>= 0.8.0'} 1480 | 1481 | prop-types@15.8.1: 1482 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 1483 | 1484 | punycode@2.3.1: 1485 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1486 | engines: {node: '>=6'} 1487 | 1488 | queue-microtask@1.2.3: 1489 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1490 | 1491 | react-dom@19.0.0: 1492 | resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==} 1493 | peerDependencies: 1494 | react: ^19.0.0 1495 | 1496 | react-is@16.13.1: 1497 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 1498 | 1499 | react@19.0.0: 1500 | resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==} 1501 | engines: {node: '>=0.10.0'} 1502 | 1503 | read-cache@1.0.0: 1504 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 1505 | 1506 | readdirp@3.6.0: 1507 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 1508 | engines: {node: '>=8.10.0'} 1509 | 1510 | reflect.getprototypeof@1.0.9: 1511 | resolution: {integrity: sha512-r0Ay04Snci87djAsI4U+WNRcSw5S4pOH7qFjd/veA5gC7TbqESR3tcj28ia95L/fYUDw11JKP7uqUKUAfVvV5Q==} 1512 | engines: {node: '>= 0.4'} 1513 | 1514 | regexp.prototype.flags@1.5.3: 1515 | resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} 1516 | engines: {node: '>= 0.4'} 1517 | 1518 | resolve-from@4.0.0: 1519 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1520 | engines: {node: '>=4'} 1521 | 1522 | resolve-pkg-maps@1.0.0: 1523 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 1524 | 1525 | resolve@1.22.9: 1526 | resolution: {integrity: sha512-QxrmX1DzraFIi9PxdG5VkRfRwIgjwyud+z/iBwfRRrVmHc+P9Q7u2lSSpQ6bjr2gy5lrqIiU9vb6iAeGf2400A==} 1527 | hasBin: true 1528 | 1529 | resolve@2.0.0-next.5: 1530 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 1531 | hasBin: true 1532 | 1533 | reusify@1.0.4: 1534 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1535 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1536 | 1537 | run-parallel@1.2.0: 1538 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1539 | 1540 | safe-array-concat@1.1.3: 1541 | resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} 1542 | engines: {node: '>=0.4'} 1543 | 1544 | safe-regex-test@1.1.0: 1545 | resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} 1546 | engines: {node: '>= 0.4'} 1547 | 1548 | scheduler@0.25.0: 1549 | resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} 1550 | 1551 | semver@6.3.1: 1552 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 1553 | hasBin: true 1554 | 1555 | semver@7.6.3: 1556 | resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 1557 | engines: {node: '>=10'} 1558 | hasBin: true 1559 | 1560 | set-function-length@1.2.2: 1561 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 1562 | engines: {node: '>= 0.4'} 1563 | 1564 | set-function-name@2.0.2: 1565 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 1566 | engines: {node: '>= 0.4'} 1567 | 1568 | sharp@0.33.5: 1569 | resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} 1570 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1571 | 1572 | shebang-command@2.0.0: 1573 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1574 | engines: {node: '>=8'} 1575 | 1576 | shebang-regex@3.0.0: 1577 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1578 | engines: {node: '>=8'} 1579 | 1580 | side-channel-list@1.0.0: 1581 | resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} 1582 | engines: {node: '>= 0.4'} 1583 | 1584 | side-channel-map@1.0.1: 1585 | resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} 1586 | engines: {node: '>= 0.4'} 1587 | 1588 | side-channel-weakmap@1.0.2: 1589 | resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} 1590 | engines: {node: '>= 0.4'} 1591 | 1592 | side-channel@1.1.0: 1593 | resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} 1594 | engines: {node: '>= 0.4'} 1595 | 1596 | signal-exit@4.1.0: 1597 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 1598 | engines: {node: '>=14'} 1599 | 1600 | simple-swizzle@0.2.2: 1601 | resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} 1602 | 1603 | slash@3.0.0: 1604 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 1605 | engines: {node: '>=8'} 1606 | 1607 | source-map-js@1.2.1: 1608 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1609 | engines: {node: '>=0.10.0'} 1610 | 1611 | stable-hash@0.0.4: 1612 | resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==} 1613 | 1614 | streamsearch@1.1.0: 1615 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 1616 | engines: {node: '>=10.0.0'} 1617 | 1618 | string-width@4.2.3: 1619 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1620 | engines: {node: '>=8'} 1621 | 1622 | string-width@5.1.2: 1623 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 1624 | engines: {node: '>=12'} 1625 | 1626 | string.prototype.includes@2.0.1: 1627 | resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==} 1628 | engines: {node: '>= 0.4'} 1629 | 1630 | string.prototype.matchall@4.0.11: 1631 | resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} 1632 | engines: {node: '>= 0.4'} 1633 | 1634 | string.prototype.repeat@1.0.0: 1635 | resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==} 1636 | 1637 | string.prototype.trim@1.2.10: 1638 | resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} 1639 | engines: {node: '>= 0.4'} 1640 | 1641 | string.prototype.trimend@1.0.9: 1642 | resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} 1643 | engines: {node: '>= 0.4'} 1644 | 1645 | string.prototype.trimstart@1.0.8: 1646 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} 1647 | engines: {node: '>= 0.4'} 1648 | 1649 | strip-ansi@6.0.1: 1650 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1651 | engines: {node: '>=8'} 1652 | 1653 | strip-ansi@7.1.0: 1654 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 1655 | engines: {node: '>=12'} 1656 | 1657 | strip-bom@3.0.0: 1658 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 1659 | engines: {node: '>=4'} 1660 | 1661 | strip-json-comments@3.1.1: 1662 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1663 | engines: {node: '>=8'} 1664 | 1665 | styled-jsx@5.1.6: 1666 | resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==} 1667 | engines: {node: '>= 12.0.0'} 1668 | peerDependencies: 1669 | '@babel/core': '*' 1670 | babel-plugin-macros: '*' 1671 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0' 1672 | peerDependenciesMeta: 1673 | '@babel/core': 1674 | optional: true 1675 | babel-plugin-macros: 1676 | optional: true 1677 | 1678 | sucrase@3.35.0: 1679 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} 1680 | engines: {node: '>=16 || 14 >=14.17'} 1681 | hasBin: true 1682 | 1683 | supports-color@7.2.0: 1684 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1685 | engines: {node: '>=8'} 1686 | 1687 | supports-preserve-symlinks-flag@1.0.0: 1688 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1689 | engines: {node: '>= 0.4'} 1690 | 1691 | tailwind-merge@2.5.5: 1692 | resolution: {integrity: sha512-0LXunzzAZzo0tEPxV3I297ffKZPlKDrjj7NXphC8V5ak9yHC5zRmxnOe2m/Rd/7ivsOMJe3JZ2JVocoDdQTRBA==} 1693 | 1694 | tailwindcss-animate@1.0.7: 1695 | resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==} 1696 | peerDependencies: 1697 | tailwindcss: '>=3.0.0 || insiders' 1698 | 1699 | tailwindcss@3.4.17: 1700 | resolution: {integrity: sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==} 1701 | engines: {node: '>=14.0.0'} 1702 | hasBin: true 1703 | 1704 | tapable@2.2.1: 1705 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 1706 | engines: {node: '>=6'} 1707 | 1708 | thenify-all@1.6.0: 1709 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 1710 | engines: {node: '>=0.8'} 1711 | 1712 | thenify@3.3.1: 1713 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 1714 | 1715 | to-regex-range@5.0.1: 1716 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1717 | engines: {node: '>=8.0'} 1718 | 1719 | ts-api-utils@1.4.3: 1720 | resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} 1721 | engines: {node: '>=16'} 1722 | peerDependencies: 1723 | typescript: '>=4.2.0' 1724 | 1725 | ts-interface-checker@0.1.13: 1726 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 1727 | 1728 | tsconfig-paths@3.15.0: 1729 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} 1730 | 1731 | tslib@2.8.1: 1732 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 1733 | 1734 | type-check@0.4.0: 1735 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1736 | engines: {node: '>= 0.8.0'} 1737 | 1738 | typed-array-buffer@1.0.3: 1739 | resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} 1740 | engines: {node: '>= 0.4'} 1741 | 1742 | typed-array-byte-length@1.0.3: 1743 | resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} 1744 | engines: {node: '>= 0.4'} 1745 | 1746 | typed-array-byte-offset@1.0.4: 1747 | resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} 1748 | engines: {node: '>= 0.4'} 1749 | 1750 | typed-array-length@1.0.7: 1751 | resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} 1752 | engines: {node: '>= 0.4'} 1753 | 1754 | typescript@5.7.2: 1755 | resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} 1756 | engines: {node: '>=14.17'} 1757 | hasBin: true 1758 | 1759 | unbox-primitive@1.1.0: 1760 | resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} 1761 | engines: {node: '>= 0.4'} 1762 | 1763 | undici-types@6.20.0: 1764 | resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} 1765 | 1766 | uri-js@4.4.1: 1767 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1768 | 1769 | util-deprecate@1.0.2: 1770 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1771 | 1772 | which-boxed-primitive@1.1.1: 1773 | resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} 1774 | engines: {node: '>= 0.4'} 1775 | 1776 | which-builtin-type@1.2.1: 1777 | resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} 1778 | engines: {node: '>= 0.4'} 1779 | 1780 | which-collection@1.0.2: 1781 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} 1782 | engines: {node: '>= 0.4'} 1783 | 1784 | which-typed-array@1.1.18: 1785 | resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==} 1786 | engines: {node: '>= 0.4'} 1787 | 1788 | which@2.0.2: 1789 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1790 | engines: {node: '>= 8'} 1791 | hasBin: true 1792 | 1793 | word-wrap@1.2.5: 1794 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 1795 | engines: {node: '>=0.10.0'} 1796 | 1797 | wrap-ansi@7.0.0: 1798 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 1799 | engines: {node: '>=10'} 1800 | 1801 | wrap-ansi@8.1.0: 1802 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 1803 | engines: {node: '>=12'} 1804 | 1805 | yaml@2.6.1: 1806 | resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==} 1807 | engines: {node: '>= 14'} 1808 | hasBin: true 1809 | 1810 | yocto-queue@0.1.0: 1811 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1812 | engines: {node: '>=10'} 1813 | 1814 | snapshots: 1815 | 1816 | '@alloc/quick-lru@5.2.0': {} 1817 | 1818 | '@biomejs/biome@1.9.4': 1819 | optionalDependencies: 1820 | '@biomejs/cli-darwin-arm64': 1.9.4 1821 | '@biomejs/cli-darwin-x64': 1.9.4 1822 | '@biomejs/cli-linux-arm64': 1.9.4 1823 | '@biomejs/cli-linux-arm64-musl': 1.9.4 1824 | '@biomejs/cli-linux-x64': 1.9.4 1825 | '@biomejs/cli-linux-x64-musl': 1.9.4 1826 | '@biomejs/cli-win32-arm64': 1.9.4 1827 | '@biomejs/cli-win32-x64': 1.9.4 1828 | 1829 | '@biomejs/cli-darwin-arm64@1.9.4': 1830 | optional: true 1831 | 1832 | '@biomejs/cli-darwin-x64@1.9.4': 1833 | optional: true 1834 | 1835 | '@biomejs/cli-linux-arm64-musl@1.9.4': 1836 | optional: true 1837 | 1838 | '@biomejs/cli-linux-arm64@1.9.4': 1839 | optional: true 1840 | 1841 | '@biomejs/cli-linux-x64-musl@1.9.4': 1842 | optional: true 1843 | 1844 | '@biomejs/cli-linux-x64@1.9.4': 1845 | optional: true 1846 | 1847 | '@biomejs/cli-win32-arm64@1.9.4': 1848 | optional: true 1849 | 1850 | '@biomejs/cli-win32-x64@1.9.4': 1851 | optional: true 1852 | 1853 | '@emnapi/runtime@1.3.1': 1854 | dependencies: 1855 | tslib: 2.8.1 1856 | optional: true 1857 | 1858 | '@eslint-community/eslint-utils@4.4.1(eslint@9.17.0(jiti@1.21.7))': 1859 | dependencies: 1860 | eslint: 9.17.0(jiti@1.21.7) 1861 | eslint-visitor-keys: 3.4.3 1862 | 1863 | '@eslint-community/regexpp@4.12.1': {} 1864 | 1865 | '@eslint/config-array@0.19.1': 1866 | dependencies: 1867 | '@eslint/object-schema': 2.1.5 1868 | debug: 4.4.0 1869 | minimatch: 3.1.2 1870 | transitivePeerDependencies: 1871 | - supports-color 1872 | 1873 | '@eslint/core@0.9.1': 1874 | dependencies: 1875 | '@types/json-schema': 7.0.15 1876 | 1877 | '@eslint/eslintrc@3.2.0': 1878 | dependencies: 1879 | ajv: 6.12.6 1880 | debug: 4.4.0 1881 | espree: 10.3.0 1882 | globals: 14.0.0 1883 | ignore: 5.3.2 1884 | import-fresh: 3.3.0 1885 | js-yaml: 4.1.0 1886 | minimatch: 3.1.2 1887 | strip-json-comments: 3.1.1 1888 | transitivePeerDependencies: 1889 | - supports-color 1890 | 1891 | '@eslint/js@9.17.0': {} 1892 | 1893 | '@eslint/object-schema@2.1.5': {} 1894 | 1895 | '@eslint/plugin-kit@0.2.4': 1896 | dependencies: 1897 | levn: 0.4.1 1898 | 1899 | '@humanfs/core@0.19.1': {} 1900 | 1901 | '@humanfs/node@0.16.6': 1902 | dependencies: 1903 | '@humanfs/core': 0.19.1 1904 | '@humanwhocodes/retry': 0.3.1 1905 | 1906 | '@humanwhocodes/module-importer@1.0.1': {} 1907 | 1908 | '@humanwhocodes/retry@0.3.1': {} 1909 | 1910 | '@humanwhocodes/retry@0.4.1': {} 1911 | 1912 | '@img/sharp-darwin-arm64@0.33.5': 1913 | optionalDependencies: 1914 | '@img/sharp-libvips-darwin-arm64': 1.0.4 1915 | optional: true 1916 | 1917 | '@img/sharp-darwin-x64@0.33.5': 1918 | optionalDependencies: 1919 | '@img/sharp-libvips-darwin-x64': 1.0.4 1920 | optional: true 1921 | 1922 | '@img/sharp-libvips-darwin-arm64@1.0.4': 1923 | optional: true 1924 | 1925 | '@img/sharp-libvips-darwin-x64@1.0.4': 1926 | optional: true 1927 | 1928 | '@img/sharp-libvips-linux-arm64@1.0.4': 1929 | optional: true 1930 | 1931 | '@img/sharp-libvips-linux-arm@1.0.5': 1932 | optional: true 1933 | 1934 | '@img/sharp-libvips-linux-s390x@1.0.4': 1935 | optional: true 1936 | 1937 | '@img/sharp-libvips-linux-x64@1.0.4': 1938 | optional: true 1939 | 1940 | '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 1941 | optional: true 1942 | 1943 | '@img/sharp-libvips-linuxmusl-x64@1.0.4': 1944 | optional: true 1945 | 1946 | '@img/sharp-linux-arm64@0.33.5': 1947 | optionalDependencies: 1948 | '@img/sharp-libvips-linux-arm64': 1.0.4 1949 | optional: true 1950 | 1951 | '@img/sharp-linux-arm@0.33.5': 1952 | optionalDependencies: 1953 | '@img/sharp-libvips-linux-arm': 1.0.5 1954 | optional: true 1955 | 1956 | '@img/sharp-linux-s390x@0.33.5': 1957 | optionalDependencies: 1958 | '@img/sharp-libvips-linux-s390x': 1.0.4 1959 | optional: true 1960 | 1961 | '@img/sharp-linux-x64@0.33.5': 1962 | optionalDependencies: 1963 | '@img/sharp-libvips-linux-x64': 1.0.4 1964 | optional: true 1965 | 1966 | '@img/sharp-linuxmusl-arm64@0.33.5': 1967 | optionalDependencies: 1968 | '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 1969 | optional: true 1970 | 1971 | '@img/sharp-linuxmusl-x64@0.33.5': 1972 | optionalDependencies: 1973 | '@img/sharp-libvips-linuxmusl-x64': 1.0.4 1974 | optional: true 1975 | 1976 | '@img/sharp-wasm32@0.33.5': 1977 | dependencies: 1978 | '@emnapi/runtime': 1.3.1 1979 | optional: true 1980 | 1981 | '@img/sharp-win32-ia32@0.33.5': 1982 | optional: true 1983 | 1984 | '@img/sharp-win32-x64@0.33.5': 1985 | optional: true 1986 | 1987 | '@isaacs/cliui@8.0.2': 1988 | dependencies: 1989 | string-width: 5.1.2 1990 | string-width-cjs: string-width@4.2.3 1991 | strip-ansi: 7.1.0 1992 | strip-ansi-cjs: strip-ansi@6.0.1 1993 | wrap-ansi: 8.1.0 1994 | wrap-ansi-cjs: wrap-ansi@7.0.0 1995 | 1996 | '@jridgewell/gen-mapping@0.3.8': 1997 | dependencies: 1998 | '@jridgewell/set-array': 1.2.1 1999 | '@jridgewell/sourcemap-codec': 1.5.0 2000 | '@jridgewell/trace-mapping': 0.3.25 2001 | 2002 | '@jridgewell/resolve-uri@3.1.2': {} 2003 | 2004 | '@jridgewell/set-array@1.2.1': {} 2005 | 2006 | '@jridgewell/sourcemap-codec@1.5.0': {} 2007 | 2008 | '@jridgewell/trace-mapping@0.3.25': 2009 | dependencies: 2010 | '@jridgewell/resolve-uri': 3.1.2 2011 | '@jridgewell/sourcemap-codec': 1.5.0 2012 | 2013 | '@next/env@15.1.2': {} 2014 | 2015 | '@next/eslint-plugin-next@15.1.2': 2016 | dependencies: 2017 | fast-glob: 3.3.1 2018 | 2019 | '@next/swc-darwin-arm64@15.1.2': 2020 | optional: true 2021 | 2022 | '@next/swc-darwin-x64@15.1.2': 2023 | optional: true 2024 | 2025 | '@next/swc-linux-arm64-gnu@15.1.2': 2026 | optional: true 2027 | 2028 | '@next/swc-linux-arm64-musl@15.1.2': 2029 | optional: true 2030 | 2031 | '@next/swc-linux-x64-gnu@15.1.2': 2032 | optional: true 2033 | 2034 | '@next/swc-linux-x64-musl@15.1.2': 2035 | optional: true 2036 | 2037 | '@next/swc-win32-arm64-msvc@15.1.2': 2038 | optional: true 2039 | 2040 | '@next/swc-win32-x64-msvc@15.1.2': 2041 | optional: true 2042 | 2043 | '@nodelib/fs.scandir@2.1.5': 2044 | dependencies: 2045 | '@nodelib/fs.stat': 2.0.5 2046 | run-parallel: 1.2.0 2047 | 2048 | '@nodelib/fs.stat@2.0.5': {} 2049 | 2050 | '@nodelib/fs.walk@1.2.8': 2051 | dependencies: 2052 | '@nodelib/fs.scandir': 2.1.5 2053 | fastq: 1.17.1 2054 | 2055 | '@nolyfill/is-core-module@1.0.39': {} 2056 | 2057 | '@pkgjs/parseargs@0.11.0': 2058 | optional: true 2059 | 2060 | '@radix-ui/react-compose-refs@1.1.1(@types/react@19.0.2)(react@19.0.0)': 2061 | dependencies: 2062 | react: 19.0.0 2063 | optionalDependencies: 2064 | '@types/react': 19.0.2 2065 | 2066 | '@radix-ui/react-slot@1.1.1(@types/react@19.0.2)(react@19.0.0)': 2067 | dependencies: 2068 | '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.2)(react@19.0.0) 2069 | react: 19.0.0 2070 | optionalDependencies: 2071 | '@types/react': 19.0.2 2072 | 2073 | '@rtsao/scc@1.1.0': {} 2074 | 2075 | '@rushstack/eslint-patch@1.10.4': {} 2076 | 2077 | '@swc/counter@0.1.3': {} 2078 | 2079 | '@swc/helpers@0.5.15': 2080 | dependencies: 2081 | tslib: 2.8.1 2082 | 2083 | '@types/estree@1.0.6': {} 2084 | 2085 | '@types/json-schema@7.0.15': {} 2086 | 2087 | '@types/json5@0.0.29': {} 2088 | 2089 | '@types/node@22.10.2': 2090 | dependencies: 2091 | undici-types: 6.20.0 2092 | 2093 | '@types/react-dom@19.0.2(@types/react@19.0.2)': 2094 | dependencies: 2095 | '@types/react': 19.0.2 2096 | 2097 | '@types/react@19.0.2': 2098 | dependencies: 2099 | csstype: 3.1.3 2100 | 2101 | '@typescript-eslint/eslint-plugin@8.18.1(@typescript-eslint/parser@7.2.0(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2))(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2)': 2102 | dependencies: 2103 | '@eslint-community/regexpp': 4.12.1 2104 | '@typescript-eslint/parser': 7.2.0(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2) 2105 | '@typescript-eslint/scope-manager': 8.18.1 2106 | '@typescript-eslint/type-utils': 8.18.1(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2) 2107 | '@typescript-eslint/utils': 8.18.1(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2) 2108 | '@typescript-eslint/visitor-keys': 8.18.1 2109 | eslint: 9.17.0(jiti@1.21.7) 2110 | graphemer: 1.4.0 2111 | ignore: 5.3.2 2112 | natural-compare: 1.4.0 2113 | ts-api-utils: 1.4.3(typescript@5.7.2) 2114 | typescript: 5.7.2 2115 | transitivePeerDependencies: 2116 | - supports-color 2117 | 2118 | '@typescript-eslint/parser@7.2.0(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2)': 2119 | dependencies: 2120 | '@typescript-eslint/scope-manager': 7.2.0 2121 | '@typescript-eslint/types': 7.2.0 2122 | '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.7.2) 2123 | '@typescript-eslint/visitor-keys': 7.2.0 2124 | debug: 4.4.0 2125 | eslint: 9.17.0(jiti@1.21.7) 2126 | optionalDependencies: 2127 | typescript: 5.7.2 2128 | transitivePeerDependencies: 2129 | - supports-color 2130 | 2131 | '@typescript-eslint/scope-manager@7.2.0': 2132 | dependencies: 2133 | '@typescript-eslint/types': 7.2.0 2134 | '@typescript-eslint/visitor-keys': 7.2.0 2135 | 2136 | '@typescript-eslint/scope-manager@8.18.1': 2137 | dependencies: 2138 | '@typescript-eslint/types': 8.18.1 2139 | '@typescript-eslint/visitor-keys': 8.18.1 2140 | 2141 | '@typescript-eslint/type-utils@8.18.1(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2)': 2142 | dependencies: 2143 | '@typescript-eslint/typescript-estree': 8.18.1(typescript@5.7.2) 2144 | '@typescript-eslint/utils': 8.18.1(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2) 2145 | debug: 4.4.0 2146 | eslint: 9.17.0(jiti@1.21.7) 2147 | ts-api-utils: 1.4.3(typescript@5.7.2) 2148 | typescript: 5.7.2 2149 | transitivePeerDependencies: 2150 | - supports-color 2151 | 2152 | '@typescript-eslint/types@7.2.0': {} 2153 | 2154 | '@typescript-eslint/types@8.18.1': {} 2155 | 2156 | '@typescript-eslint/typescript-estree@7.2.0(typescript@5.7.2)': 2157 | dependencies: 2158 | '@typescript-eslint/types': 7.2.0 2159 | '@typescript-eslint/visitor-keys': 7.2.0 2160 | debug: 4.4.0 2161 | globby: 11.1.0 2162 | is-glob: 4.0.3 2163 | minimatch: 9.0.3 2164 | semver: 7.6.3 2165 | ts-api-utils: 1.4.3(typescript@5.7.2) 2166 | optionalDependencies: 2167 | typescript: 5.7.2 2168 | transitivePeerDependencies: 2169 | - supports-color 2170 | 2171 | '@typescript-eslint/typescript-estree@8.18.1(typescript@5.7.2)': 2172 | dependencies: 2173 | '@typescript-eslint/types': 8.18.1 2174 | '@typescript-eslint/visitor-keys': 8.18.1 2175 | debug: 4.4.0 2176 | fast-glob: 3.3.2 2177 | is-glob: 4.0.3 2178 | minimatch: 9.0.5 2179 | semver: 7.6.3 2180 | ts-api-utils: 1.4.3(typescript@5.7.2) 2181 | typescript: 5.7.2 2182 | transitivePeerDependencies: 2183 | - supports-color 2184 | 2185 | '@typescript-eslint/utils@8.18.1(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2)': 2186 | dependencies: 2187 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@1.21.7)) 2188 | '@typescript-eslint/scope-manager': 8.18.1 2189 | '@typescript-eslint/types': 8.18.1 2190 | '@typescript-eslint/typescript-estree': 8.18.1(typescript@5.7.2) 2191 | eslint: 9.17.0(jiti@1.21.7) 2192 | typescript: 5.7.2 2193 | transitivePeerDependencies: 2194 | - supports-color 2195 | 2196 | '@typescript-eslint/visitor-keys@7.2.0': 2197 | dependencies: 2198 | '@typescript-eslint/types': 7.2.0 2199 | eslint-visitor-keys: 3.4.3 2200 | 2201 | '@typescript-eslint/visitor-keys@8.18.1': 2202 | dependencies: 2203 | '@typescript-eslint/types': 8.18.1 2204 | eslint-visitor-keys: 4.2.0 2205 | 2206 | acorn-jsx@5.3.2(acorn@8.14.0): 2207 | dependencies: 2208 | acorn: 8.14.0 2209 | 2210 | acorn@8.14.0: {} 2211 | 2212 | ajv@6.12.6: 2213 | dependencies: 2214 | fast-deep-equal: 3.1.3 2215 | fast-json-stable-stringify: 2.1.0 2216 | json-schema-traverse: 0.4.1 2217 | uri-js: 4.4.1 2218 | 2219 | ansi-regex@5.0.1: {} 2220 | 2221 | ansi-regex@6.1.0: {} 2222 | 2223 | ansi-styles@4.3.0: 2224 | dependencies: 2225 | color-convert: 2.0.1 2226 | 2227 | ansi-styles@6.2.1: {} 2228 | 2229 | any-promise@1.3.0: {} 2230 | 2231 | anymatch@3.1.3: 2232 | dependencies: 2233 | normalize-path: 3.0.0 2234 | picomatch: 2.3.1 2235 | 2236 | arg@5.0.2: {} 2237 | 2238 | argparse@2.0.1: {} 2239 | 2240 | aria-query@5.3.2: {} 2241 | 2242 | array-buffer-byte-length@1.0.1: 2243 | dependencies: 2244 | call-bind: 1.0.8 2245 | is-array-buffer: 3.0.5 2246 | 2247 | array-includes@3.1.8: 2248 | dependencies: 2249 | call-bind: 1.0.8 2250 | define-properties: 1.2.1 2251 | es-abstract: 1.23.6 2252 | es-object-atoms: 1.0.0 2253 | get-intrinsic: 1.2.6 2254 | is-string: 1.1.1 2255 | 2256 | array-union@2.1.0: {} 2257 | 2258 | array.prototype.findlast@1.2.5: 2259 | dependencies: 2260 | call-bind: 1.0.8 2261 | define-properties: 1.2.1 2262 | es-abstract: 1.23.6 2263 | es-errors: 1.3.0 2264 | es-object-atoms: 1.0.0 2265 | es-shim-unscopables: 1.0.2 2266 | 2267 | array.prototype.findlastindex@1.2.5: 2268 | dependencies: 2269 | call-bind: 1.0.8 2270 | define-properties: 1.2.1 2271 | es-abstract: 1.23.6 2272 | es-errors: 1.3.0 2273 | es-object-atoms: 1.0.0 2274 | es-shim-unscopables: 1.0.2 2275 | 2276 | array.prototype.flat@1.3.3: 2277 | dependencies: 2278 | call-bind: 1.0.8 2279 | define-properties: 1.2.1 2280 | es-abstract: 1.23.6 2281 | es-shim-unscopables: 1.0.2 2282 | 2283 | array.prototype.flatmap@1.3.3: 2284 | dependencies: 2285 | call-bind: 1.0.8 2286 | define-properties: 1.2.1 2287 | es-abstract: 1.23.6 2288 | es-shim-unscopables: 1.0.2 2289 | 2290 | array.prototype.tosorted@1.1.4: 2291 | dependencies: 2292 | call-bind: 1.0.8 2293 | define-properties: 1.2.1 2294 | es-abstract: 1.23.6 2295 | es-errors: 1.3.0 2296 | es-shim-unscopables: 1.0.2 2297 | 2298 | arraybuffer.prototype.slice@1.0.4: 2299 | dependencies: 2300 | array-buffer-byte-length: 1.0.1 2301 | call-bind: 1.0.8 2302 | define-properties: 1.2.1 2303 | es-abstract: 1.23.6 2304 | es-errors: 1.3.0 2305 | get-intrinsic: 1.2.6 2306 | is-array-buffer: 3.0.5 2307 | 2308 | ast-types-flow@0.0.8: {} 2309 | 2310 | available-typed-arrays@1.0.7: 2311 | dependencies: 2312 | possible-typed-array-names: 1.0.0 2313 | 2314 | axe-core@4.10.2: {} 2315 | 2316 | axobject-query@4.1.0: {} 2317 | 2318 | balanced-match@1.0.2: {} 2319 | 2320 | binary-extensions@2.3.0: {} 2321 | 2322 | brace-expansion@1.1.11: 2323 | dependencies: 2324 | balanced-match: 1.0.2 2325 | concat-map: 0.0.1 2326 | 2327 | brace-expansion@2.0.1: 2328 | dependencies: 2329 | balanced-match: 1.0.2 2330 | 2331 | braces@3.0.3: 2332 | dependencies: 2333 | fill-range: 7.1.1 2334 | 2335 | busboy@1.6.0: 2336 | dependencies: 2337 | streamsearch: 1.1.0 2338 | 2339 | call-bind-apply-helpers@1.0.1: 2340 | dependencies: 2341 | es-errors: 1.3.0 2342 | function-bind: 1.1.2 2343 | 2344 | call-bind@1.0.8: 2345 | dependencies: 2346 | call-bind-apply-helpers: 1.0.1 2347 | es-define-property: 1.0.1 2348 | get-intrinsic: 1.2.6 2349 | set-function-length: 1.2.2 2350 | 2351 | call-bound@1.0.3: 2352 | dependencies: 2353 | call-bind-apply-helpers: 1.0.1 2354 | get-intrinsic: 1.2.6 2355 | 2356 | callsites@3.1.0: {} 2357 | 2358 | camelcase-css@2.0.1: {} 2359 | 2360 | caniuse-lite@1.0.30001690: {} 2361 | 2362 | chalk@4.1.2: 2363 | dependencies: 2364 | ansi-styles: 4.3.0 2365 | supports-color: 7.2.0 2366 | 2367 | chokidar@3.6.0: 2368 | dependencies: 2369 | anymatch: 3.1.3 2370 | braces: 3.0.3 2371 | glob-parent: 5.1.2 2372 | is-binary-path: 2.1.0 2373 | is-glob: 4.0.3 2374 | normalize-path: 3.0.0 2375 | readdirp: 3.6.0 2376 | optionalDependencies: 2377 | fsevents: 2.3.3 2378 | 2379 | class-variance-authority@0.7.1: 2380 | dependencies: 2381 | clsx: 2.1.1 2382 | 2383 | client-only@0.0.1: {} 2384 | 2385 | clsx@2.1.1: {} 2386 | 2387 | color-convert@2.0.1: 2388 | dependencies: 2389 | color-name: 1.1.4 2390 | 2391 | color-name@1.1.4: {} 2392 | 2393 | color-string@1.9.1: 2394 | dependencies: 2395 | color-name: 1.1.4 2396 | simple-swizzle: 0.2.2 2397 | optional: true 2398 | 2399 | color@4.2.3: 2400 | dependencies: 2401 | color-convert: 2.0.1 2402 | color-string: 1.9.1 2403 | optional: true 2404 | 2405 | commander@4.1.1: {} 2406 | 2407 | concat-map@0.0.1: {} 2408 | 2409 | cross-spawn@7.0.6: 2410 | dependencies: 2411 | path-key: 3.1.1 2412 | shebang-command: 2.0.0 2413 | which: 2.0.2 2414 | 2415 | cssesc@3.0.0: {} 2416 | 2417 | csstype@3.1.3: {} 2418 | 2419 | damerau-levenshtein@1.0.8: {} 2420 | 2421 | data-view-buffer@1.0.1: 2422 | dependencies: 2423 | call-bind: 1.0.8 2424 | es-errors: 1.3.0 2425 | is-data-view: 1.0.2 2426 | 2427 | data-view-byte-length@1.0.1: 2428 | dependencies: 2429 | call-bind: 1.0.8 2430 | es-errors: 1.3.0 2431 | is-data-view: 1.0.2 2432 | 2433 | data-view-byte-offset@1.0.1: 2434 | dependencies: 2435 | call-bound: 1.0.3 2436 | es-errors: 1.3.0 2437 | is-data-view: 1.0.2 2438 | 2439 | debug@3.2.7: 2440 | dependencies: 2441 | ms: 2.1.3 2442 | 2443 | debug@4.4.0: 2444 | dependencies: 2445 | ms: 2.1.3 2446 | 2447 | deep-is@0.1.4: {} 2448 | 2449 | define-data-property@1.1.4: 2450 | dependencies: 2451 | es-define-property: 1.0.1 2452 | es-errors: 1.3.0 2453 | gopd: 1.2.0 2454 | 2455 | define-properties@1.2.1: 2456 | dependencies: 2457 | define-data-property: 1.1.4 2458 | has-property-descriptors: 1.0.2 2459 | object-keys: 1.1.1 2460 | 2461 | detect-libc@2.0.3: 2462 | optional: true 2463 | 2464 | didyoumean@1.2.2: {} 2465 | 2466 | dir-glob@3.0.1: 2467 | dependencies: 2468 | path-type: 4.0.0 2469 | 2470 | dlv@1.1.3: {} 2471 | 2472 | doctrine@2.1.0: 2473 | dependencies: 2474 | esutils: 2.0.3 2475 | 2476 | dunder-proto@1.0.1: 2477 | dependencies: 2478 | call-bind-apply-helpers: 1.0.1 2479 | es-errors: 1.3.0 2480 | gopd: 1.2.0 2481 | 2482 | eastasianwidth@0.2.0: {} 2483 | 2484 | emoji-regex@8.0.0: {} 2485 | 2486 | emoji-regex@9.2.2: {} 2487 | 2488 | enhanced-resolve@5.17.1: 2489 | dependencies: 2490 | graceful-fs: 4.2.11 2491 | tapable: 2.2.1 2492 | 2493 | es-abstract@1.23.6: 2494 | dependencies: 2495 | array-buffer-byte-length: 1.0.1 2496 | arraybuffer.prototype.slice: 1.0.4 2497 | available-typed-arrays: 1.0.7 2498 | call-bind: 1.0.8 2499 | call-bound: 1.0.3 2500 | data-view-buffer: 1.0.1 2501 | data-view-byte-length: 1.0.1 2502 | data-view-byte-offset: 1.0.1 2503 | es-define-property: 1.0.1 2504 | es-errors: 1.3.0 2505 | es-object-atoms: 1.0.0 2506 | es-set-tostringtag: 2.0.3 2507 | es-to-primitive: 1.3.0 2508 | function.prototype.name: 1.1.7 2509 | get-intrinsic: 1.2.6 2510 | get-symbol-description: 1.1.0 2511 | globalthis: 1.0.4 2512 | gopd: 1.2.0 2513 | has-property-descriptors: 1.0.2 2514 | has-proto: 1.2.0 2515 | has-symbols: 1.1.0 2516 | hasown: 2.0.2 2517 | internal-slot: 1.1.0 2518 | is-array-buffer: 3.0.5 2519 | is-callable: 1.2.7 2520 | is-data-view: 1.0.2 2521 | is-negative-zero: 2.0.3 2522 | is-regex: 1.2.1 2523 | is-shared-array-buffer: 1.0.4 2524 | is-string: 1.1.1 2525 | is-typed-array: 1.1.15 2526 | is-weakref: 1.1.0 2527 | math-intrinsics: 1.1.0 2528 | object-inspect: 1.13.3 2529 | object-keys: 1.1.1 2530 | object.assign: 4.1.7 2531 | regexp.prototype.flags: 1.5.3 2532 | safe-array-concat: 1.1.3 2533 | safe-regex-test: 1.1.0 2534 | string.prototype.trim: 1.2.10 2535 | string.prototype.trimend: 1.0.9 2536 | string.prototype.trimstart: 1.0.8 2537 | typed-array-buffer: 1.0.3 2538 | typed-array-byte-length: 1.0.3 2539 | typed-array-byte-offset: 1.0.4 2540 | typed-array-length: 1.0.7 2541 | unbox-primitive: 1.1.0 2542 | which-typed-array: 1.1.18 2543 | 2544 | es-define-property@1.0.1: {} 2545 | 2546 | es-errors@1.3.0: {} 2547 | 2548 | es-iterator-helpers@1.2.0: 2549 | dependencies: 2550 | call-bind: 1.0.8 2551 | define-properties: 1.2.1 2552 | es-abstract: 1.23.6 2553 | es-errors: 1.3.0 2554 | es-set-tostringtag: 2.0.3 2555 | function-bind: 1.1.2 2556 | get-intrinsic: 1.2.6 2557 | globalthis: 1.0.4 2558 | gopd: 1.2.0 2559 | has-property-descriptors: 1.0.2 2560 | has-proto: 1.2.0 2561 | has-symbols: 1.1.0 2562 | internal-slot: 1.1.0 2563 | iterator.prototype: 1.1.4 2564 | safe-array-concat: 1.1.3 2565 | 2566 | es-object-atoms@1.0.0: 2567 | dependencies: 2568 | es-errors: 1.3.0 2569 | 2570 | es-set-tostringtag@2.0.3: 2571 | dependencies: 2572 | get-intrinsic: 1.2.6 2573 | has-tostringtag: 1.0.2 2574 | hasown: 2.0.2 2575 | 2576 | es-shim-unscopables@1.0.2: 2577 | dependencies: 2578 | hasown: 2.0.2 2579 | 2580 | es-to-primitive@1.3.0: 2581 | dependencies: 2582 | is-callable: 1.2.7 2583 | is-date-object: 1.1.0 2584 | is-symbol: 1.1.1 2585 | 2586 | escape-string-regexp@4.0.0: {} 2587 | 2588 | eslint-config-next@15.1.2(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2): 2589 | dependencies: 2590 | '@next/eslint-plugin-next': 15.1.2 2591 | '@rushstack/eslint-patch': 1.10.4 2592 | '@typescript-eslint/eslint-plugin': 8.18.1(@typescript-eslint/parser@7.2.0(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2))(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2) 2593 | '@typescript-eslint/parser': 7.2.0(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2) 2594 | eslint: 9.17.0(jiti@1.21.7) 2595 | eslint-import-resolver-node: 0.3.9 2596 | eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@1.21.7)) 2597 | eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.2.0(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2))(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@1.21.7)) 2598 | eslint-plugin-jsx-a11y: 6.10.2(eslint@9.17.0(jiti@1.21.7)) 2599 | eslint-plugin-react: 7.37.2(eslint@9.17.0(jiti@1.21.7)) 2600 | eslint-plugin-react-hooks: 5.1.0(eslint@9.17.0(jiti@1.21.7)) 2601 | optionalDependencies: 2602 | typescript: 5.7.2 2603 | transitivePeerDependencies: 2604 | - eslint-import-resolver-webpack 2605 | - eslint-plugin-import-x 2606 | - supports-color 2607 | 2608 | eslint-import-resolver-node@0.3.9: 2609 | dependencies: 2610 | debug: 3.2.7 2611 | is-core-module: 2.16.0 2612 | resolve: 1.22.9 2613 | transitivePeerDependencies: 2614 | - supports-color 2615 | 2616 | eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@1.21.7)): 2617 | dependencies: 2618 | '@nolyfill/is-core-module': 1.0.39 2619 | debug: 4.4.0 2620 | enhanced-resolve: 5.17.1 2621 | eslint: 9.17.0(jiti@1.21.7) 2622 | fast-glob: 3.3.2 2623 | get-tsconfig: 4.8.1 2624 | is-bun-module: 1.3.0 2625 | is-glob: 4.0.3 2626 | stable-hash: 0.0.4 2627 | optionalDependencies: 2628 | eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.2.0(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2))(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@1.21.7)) 2629 | transitivePeerDependencies: 2630 | - supports-color 2631 | 2632 | eslint-module-utils@2.12.0(@typescript-eslint/parser@7.2.0(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@1.21.7)): 2633 | dependencies: 2634 | debug: 3.2.7 2635 | optionalDependencies: 2636 | '@typescript-eslint/parser': 7.2.0(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2) 2637 | eslint: 9.17.0(jiti@1.21.7) 2638 | eslint-import-resolver-node: 0.3.9 2639 | eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@1.21.7)) 2640 | transitivePeerDependencies: 2641 | - supports-color 2642 | 2643 | eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.2.0(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2))(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@1.21.7)): 2644 | dependencies: 2645 | '@rtsao/scc': 1.1.0 2646 | array-includes: 3.1.8 2647 | array.prototype.findlastindex: 1.2.5 2648 | array.prototype.flat: 1.3.3 2649 | array.prototype.flatmap: 1.3.3 2650 | debug: 3.2.7 2651 | doctrine: 2.1.0 2652 | eslint: 9.17.0(jiti@1.21.7) 2653 | eslint-import-resolver-node: 0.3.9 2654 | eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.2.0(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@1.21.7)) 2655 | hasown: 2.0.2 2656 | is-core-module: 2.16.0 2657 | is-glob: 4.0.3 2658 | minimatch: 3.1.2 2659 | object.fromentries: 2.0.8 2660 | object.groupby: 1.0.3 2661 | object.values: 1.2.1 2662 | semver: 6.3.1 2663 | string.prototype.trimend: 1.0.9 2664 | tsconfig-paths: 3.15.0 2665 | optionalDependencies: 2666 | '@typescript-eslint/parser': 7.2.0(eslint@9.17.0(jiti@1.21.7))(typescript@5.7.2) 2667 | transitivePeerDependencies: 2668 | - eslint-import-resolver-typescript 2669 | - eslint-import-resolver-webpack 2670 | - supports-color 2671 | 2672 | eslint-plugin-jsx-a11y@6.10.2(eslint@9.17.0(jiti@1.21.7)): 2673 | dependencies: 2674 | aria-query: 5.3.2 2675 | array-includes: 3.1.8 2676 | array.prototype.flatmap: 1.3.3 2677 | ast-types-flow: 0.0.8 2678 | axe-core: 4.10.2 2679 | axobject-query: 4.1.0 2680 | damerau-levenshtein: 1.0.8 2681 | emoji-regex: 9.2.2 2682 | eslint: 9.17.0(jiti@1.21.7) 2683 | hasown: 2.0.2 2684 | jsx-ast-utils: 3.3.5 2685 | language-tags: 1.0.9 2686 | minimatch: 3.1.2 2687 | object.fromentries: 2.0.8 2688 | safe-regex-test: 1.1.0 2689 | string.prototype.includes: 2.0.1 2690 | 2691 | eslint-plugin-react-hooks@5.1.0(eslint@9.17.0(jiti@1.21.7)): 2692 | dependencies: 2693 | eslint: 9.17.0(jiti@1.21.7) 2694 | 2695 | eslint-plugin-react@7.37.2(eslint@9.17.0(jiti@1.21.7)): 2696 | dependencies: 2697 | array-includes: 3.1.8 2698 | array.prototype.findlast: 1.2.5 2699 | array.prototype.flatmap: 1.3.3 2700 | array.prototype.tosorted: 1.1.4 2701 | doctrine: 2.1.0 2702 | es-iterator-helpers: 1.2.0 2703 | eslint: 9.17.0(jiti@1.21.7) 2704 | estraverse: 5.3.0 2705 | hasown: 2.0.2 2706 | jsx-ast-utils: 3.3.5 2707 | minimatch: 3.1.2 2708 | object.entries: 1.1.8 2709 | object.fromentries: 2.0.8 2710 | object.values: 1.2.1 2711 | prop-types: 15.8.1 2712 | resolve: 2.0.0-next.5 2713 | semver: 6.3.1 2714 | string.prototype.matchall: 4.0.11 2715 | string.prototype.repeat: 1.0.0 2716 | 2717 | eslint-scope@8.2.0: 2718 | dependencies: 2719 | esrecurse: 4.3.0 2720 | estraverse: 5.3.0 2721 | 2722 | eslint-visitor-keys@3.4.3: {} 2723 | 2724 | eslint-visitor-keys@4.2.0: {} 2725 | 2726 | eslint@9.17.0(jiti@1.21.7): 2727 | dependencies: 2728 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@1.21.7)) 2729 | '@eslint-community/regexpp': 4.12.1 2730 | '@eslint/config-array': 0.19.1 2731 | '@eslint/core': 0.9.1 2732 | '@eslint/eslintrc': 3.2.0 2733 | '@eslint/js': 9.17.0 2734 | '@eslint/plugin-kit': 0.2.4 2735 | '@humanfs/node': 0.16.6 2736 | '@humanwhocodes/module-importer': 1.0.1 2737 | '@humanwhocodes/retry': 0.4.1 2738 | '@types/estree': 1.0.6 2739 | '@types/json-schema': 7.0.15 2740 | ajv: 6.12.6 2741 | chalk: 4.1.2 2742 | cross-spawn: 7.0.6 2743 | debug: 4.4.0 2744 | escape-string-regexp: 4.0.0 2745 | eslint-scope: 8.2.0 2746 | eslint-visitor-keys: 4.2.0 2747 | espree: 10.3.0 2748 | esquery: 1.6.0 2749 | esutils: 2.0.3 2750 | fast-deep-equal: 3.1.3 2751 | file-entry-cache: 8.0.0 2752 | find-up: 5.0.0 2753 | glob-parent: 6.0.2 2754 | ignore: 5.3.2 2755 | imurmurhash: 0.1.4 2756 | is-glob: 4.0.3 2757 | json-stable-stringify-without-jsonify: 1.0.1 2758 | lodash.merge: 4.6.2 2759 | minimatch: 3.1.2 2760 | natural-compare: 1.4.0 2761 | optionator: 0.9.4 2762 | optionalDependencies: 2763 | jiti: 1.21.7 2764 | transitivePeerDependencies: 2765 | - supports-color 2766 | 2767 | espree@10.3.0: 2768 | dependencies: 2769 | acorn: 8.14.0 2770 | acorn-jsx: 5.3.2(acorn@8.14.0) 2771 | eslint-visitor-keys: 4.2.0 2772 | 2773 | esquery@1.6.0: 2774 | dependencies: 2775 | estraverse: 5.3.0 2776 | 2777 | esrecurse@4.3.0: 2778 | dependencies: 2779 | estraverse: 5.3.0 2780 | 2781 | estraverse@5.3.0: {} 2782 | 2783 | esutils@2.0.3: {} 2784 | 2785 | fast-deep-equal@3.1.3: {} 2786 | 2787 | fast-glob@3.3.1: 2788 | dependencies: 2789 | '@nodelib/fs.stat': 2.0.5 2790 | '@nodelib/fs.walk': 1.2.8 2791 | glob-parent: 5.1.2 2792 | merge2: 1.4.1 2793 | micromatch: 4.0.8 2794 | 2795 | fast-glob@3.3.2: 2796 | dependencies: 2797 | '@nodelib/fs.stat': 2.0.5 2798 | '@nodelib/fs.walk': 1.2.8 2799 | glob-parent: 5.1.2 2800 | merge2: 1.4.1 2801 | micromatch: 4.0.8 2802 | 2803 | fast-json-stable-stringify@2.1.0: {} 2804 | 2805 | fast-levenshtein@2.0.6: {} 2806 | 2807 | fastq@1.17.1: 2808 | dependencies: 2809 | reusify: 1.0.4 2810 | 2811 | file-entry-cache@8.0.0: 2812 | dependencies: 2813 | flat-cache: 4.0.1 2814 | 2815 | fill-range@7.1.1: 2816 | dependencies: 2817 | to-regex-range: 5.0.1 2818 | 2819 | find-up@5.0.0: 2820 | dependencies: 2821 | locate-path: 6.0.0 2822 | path-exists: 4.0.0 2823 | 2824 | flat-cache@4.0.1: 2825 | dependencies: 2826 | flatted: 3.3.2 2827 | keyv: 4.5.4 2828 | 2829 | flatted@3.3.2: {} 2830 | 2831 | for-each@0.3.3: 2832 | dependencies: 2833 | is-callable: 1.2.7 2834 | 2835 | foreground-child@3.3.0: 2836 | dependencies: 2837 | cross-spawn: 7.0.6 2838 | signal-exit: 4.1.0 2839 | 2840 | fsevents@2.3.3: 2841 | optional: true 2842 | 2843 | function-bind@1.1.2: {} 2844 | 2845 | function.prototype.name@1.1.7: 2846 | dependencies: 2847 | call-bind: 1.0.8 2848 | define-properties: 1.2.1 2849 | functions-have-names: 1.2.3 2850 | hasown: 2.0.2 2851 | is-callable: 1.2.7 2852 | 2853 | functions-have-names@1.2.3: {} 2854 | 2855 | get-intrinsic@1.2.6: 2856 | dependencies: 2857 | call-bind-apply-helpers: 1.0.1 2858 | dunder-proto: 1.0.1 2859 | es-define-property: 1.0.1 2860 | es-errors: 1.3.0 2861 | es-object-atoms: 1.0.0 2862 | function-bind: 1.1.2 2863 | gopd: 1.2.0 2864 | has-symbols: 1.1.0 2865 | hasown: 2.0.2 2866 | math-intrinsics: 1.1.0 2867 | 2868 | get-symbol-description@1.1.0: 2869 | dependencies: 2870 | call-bound: 1.0.3 2871 | es-errors: 1.3.0 2872 | get-intrinsic: 1.2.6 2873 | 2874 | get-tsconfig@4.8.1: 2875 | dependencies: 2876 | resolve-pkg-maps: 1.0.0 2877 | 2878 | glob-parent@5.1.2: 2879 | dependencies: 2880 | is-glob: 4.0.3 2881 | 2882 | glob-parent@6.0.2: 2883 | dependencies: 2884 | is-glob: 4.0.3 2885 | 2886 | glob@10.4.5: 2887 | dependencies: 2888 | foreground-child: 3.3.0 2889 | jackspeak: 3.4.3 2890 | minimatch: 9.0.5 2891 | minipass: 7.1.2 2892 | package-json-from-dist: 1.0.1 2893 | path-scurry: 1.11.1 2894 | 2895 | globals@14.0.0: {} 2896 | 2897 | globalthis@1.0.4: 2898 | dependencies: 2899 | define-properties: 1.2.1 2900 | gopd: 1.2.0 2901 | 2902 | globby@11.1.0: 2903 | dependencies: 2904 | array-union: 2.1.0 2905 | dir-glob: 3.0.1 2906 | fast-glob: 3.3.2 2907 | ignore: 5.3.2 2908 | merge2: 1.4.1 2909 | slash: 3.0.0 2910 | 2911 | gopd@1.2.0: {} 2912 | 2913 | graceful-fs@4.2.11: {} 2914 | 2915 | graphemer@1.4.0: {} 2916 | 2917 | has-bigints@1.1.0: {} 2918 | 2919 | has-flag@4.0.0: {} 2920 | 2921 | has-property-descriptors@1.0.2: 2922 | dependencies: 2923 | es-define-property: 1.0.1 2924 | 2925 | has-proto@1.2.0: 2926 | dependencies: 2927 | dunder-proto: 1.0.1 2928 | 2929 | has-symbols@1.1.0: {} 2930 | 2931 | has-tostringtag@1.0.2: 2932 | dependencies: 2933 | has-symbols: 1.1.0 2934 | 2935 | hasown@2.0.2: 2936 | dependencies: 2937 | function-bind: 1.1.2 2938 | 2939 | ignore@5.3.2: {} 2940 | 2941 | import-fresh@3.3.0: 2942 | dependencies: 2943 | parent-module: 1.0.1 2944 | resolve-from: 4.0.0 2945 | 2946 | imurmurhash@0.1.4: {} 2947 | 2948 | internal-slot@1.1.0: 2949 | dependencies: 2950 | es-errors: 1.3.0 2951 | hasown: 2.0.2 2952 | side-channel: 1.1.0 2953 | 2954 | is-array-buffer@3.0.5: 2955 | dependencies: 2956 | call-bind: 1.0.8 2957 | call-bound: 1.0.3 2958 | get-intrinsic: 1.2.6 2959 | 2960 | is-arrayish@0.3.2: 2961 | optional: true 2962 | 2963 | is-async-function@2.0.0: 2964 | dependencies: 2965 | has-tostringtag: 1.0.2 2966 | 2967 | is-bigint@1.1.0: 2968 | dependencies: 2969 | has-bigints: 1.1.0 2970 | 2971 | is-binary-path@2.1.0: 2972 | dependencies: 2973 | binary-extensions: 2.3.0 2974 | 2975 | is-boolean-object@1.2.1: 2976 | dependencies: 2977 | call-bound: 1.0.3 2978 | has-tostringtag: 1.0.2 2979 | 2980 | is-bun-module@1.3.0: 2981 | dependencies: 2982 | semver: 7.6.3 2983 | 2984 | is-callable@1.2.7: {} 2985 | 2986 | is-core-module@2.16.0: 2987 | dependencies: 2988 | hasown: 2.0.2 2989 | 2990 | is-data-view@1.0.2: 2991 | dependencies: 2992 | call-bound: 1.0.3 2993 | get-intrinsic: 1.2.6 2994 | is-typed-array: 1.1.15 2995 | 2996 | is-date-object@1.1.0: 2997 | dependencies: 2998 | call-bound: 1.0.3 2999 | has-tostringtag: 1.0.2 3000 | 3001 | is-extglob@2.1.1: {} 3002 | 3003 | is-finalizationregistry@1.1.1: 3004 | dependencies: 3005 | call-bound: 1.0.3 3006 | 3007 | is-fullwidth-code-point@3.0.0: {} 3008 | 3009 | is-generator-function@1.0.10: 3010 | dependencies: 3011 | has-tostringtag: 1.0.2 3012 | 3013 | is-glob@4.0.3: 3014 | dependencies: 3015 | is-extglob: 2.1.1 3016 | 3017 | is-map@2.0.3: {} 3018 | 3019 | is-negative-zero@2.0.3: {} 3020 | 3021 | is-number-object@1.1.1: 3022 | dependencies: 3023 | call-bound: 1.0.3 3024 | has-tostringtag: 1.0.2 3025 | 3026 | is-number@7.0.0: {} 3027 | 3028 | is-regex@1.2.1: 3029 | dependencies: 3030 | call-bound: 1.0.3 3031 | gopd: 1.2.0 3032 | has-tostringtag: 1.0.2 3033 | hasown: 2.0.2 3034 | 3035 | is-set@2.0.3: {} 3036 | 3037 | is-shared-array-buffer@1.0.4: 3038 | dependencies: 3039 | call-bound: 1.0.3 3040 | 3041 | is-string@1.1.1: 3042 | dependencies: 3043 | call-bound: 1.0.3 3044 | has-tostringtag: 1.0.2 3045 | 3046 | is-symbol@1.1.1: 3047 | dependencies: 3048 | call-bound: 1.0.3 3049 | has-symbols: 1.1.0 3050 | safe-regex-test: 1.1.0 3051 | 3052 | is-typed-array@1.1.15: 3053 | dependencies: 3054 | which-typed-array: 1.1.18 3055 | 3056 | is-weakmap@2.0.2: {} 3057 | 3058 | is-weakref@1.1.0: 3059 | dependencies: 3060 | call-bound: 1.0.3 3061 | 3062 | is-weakset@2.0.4: 3063 | dependencies: 3064 | call-bound: 1.0.3 3065 | get-intrinsic: 1.2.6 3066 | 3067 | isarray@2.0.5: {} 3068 | 3069 | isexe@2.0.0: {} 3070 | 3071 | iterator.prototype@1.1.4: 3072 | dependencies: 3073 | define-data-property: 1.1.4 3074 | es-object-atoms: 1.0.0 3075 | get-intrinsic: 1.2.6 3076 | has-symbols: 1.1.0 3077 | reflect.getprototypeof: 1.0.9 3078 | set-function-name: 2.0.2 3079 | 3080 | jackspeak@3.4.3: 3081 | dependencies: 3082 | '@isaacs/cliui': 8.0.2 3083 | optionalDependencies: 3084 | '@pkgjs/parseargs': 0.11.0 3085 | 3086 | jiti@1.21.7: {} 3087 | 3088 | js-tokens@4.0.0: {} 3089 | 3090 | js-yaml@4.1.0: 3091 | dependencies: 3092 | argparse: 2.0.1 3093 | 3094 | json-buffer@3.0.1: {} 3095 | 3096 | json-schema-traverse@0.4.1: {} 3097 | 3098 | json-stable-stringify-without-jsonify@1.0.1: {} 3099 | 3100 | json5@1.0.2: 3101 | dependencies: 3102 | minimist: 1.2.8 3103 | 3104 | jsx-ast-utils@3.3.5: 3105 | dependencies: 3106 | array-includes: 3.1.8 3107 | array.prototype.flat: 1.3.3 3108 | object.assign: 4.1.7 3109 | object.values: 1.2.1 3110 | 3111 | keyv@4.5.4: 3112 | dependencies: 3113 | json-buffer: 3.0.1 3114 | 3115 | language-subtag-registry@0.3.23: {} 3116 | 3117 | language-tags@1.0.9: 3118 | dependencies: 3119 | language-subtag-registry: 0.3.23 3120 | 3121 | levn@0.4.1: 3122 | dependencies: 3123 | prelude-ls: 1.2.1 3124 | type-check: 0.4.0 3125 | 3126 | lilconfig@3.1.3: {} 3127 | 3128 | lines-and-columns@1.2.4: {} 3129 | 3130 | locate-path@6.0.0: 3131 | dependencies: 3132 | p-locate: 5.0.0 3133 | 3134 | lodash.merge@4.6.2: {} 3135 | 3136 | loose-envify@1.4.0: 3137 | dependencies: 3138 | js-tokens: 4.0.0 3139 | 3140 | lru-cache@10.4.3: {} 3141 | 3142 | lucide-react@0.468.0(react@19.0.0): 3143 | dependencies: 3144 | react: 19.0.0 3145 | 3146 | math-intrinsics@1.1.0: {} 3147 | 3148 | merge2@1.4.1: {} 3149 | 3150 | micromatch@4.0.8: 3151 | dependencies: 3152 | braces: 3.0.3 3153 | picomatch: 2.3.1 3154 | 3155 | minimatch@3.1.2: 3156 | dependencies: 3157 | brace-expansion: 1.1.11 3158 | 3159 | minimatch@9.0.3: 3160 | dependencies: 3161 | brace-expansion: 2.0.1 3162 | 3163 | minimatch@9.0.5: 3164 | dependencies: 3165 | brace-expansion: 2.0.1 3166 | 3167 | minimist@1.2.8: {} 3168 | 3169 | minipass@7.1.2: {} 3170 | 3171 | ms@2.1.3: {} 3172 | 3173 | mz@2.7.0: 3174 | dependencies: 3175 | any-promise: 1.3.0 3176 | object-assign: 4.1.1 3177 | thenify-all: 1.6.0 3178 | 3179 | nanoid@3.3.8: {} 3180 | 3181 | natural-compare@1.4.0: {} 3182 | 3183 | next@15.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 3184 | dependencies: 3185 | '@next/env': 15.1.2 3186 | '@swc/counter': 0.1.3 3187 | '@swc/helpers': 0.5.15 3188 | busboy: 1.6.0 3189 | caniuse-lite: 1.0.30001690 3190 | postcss: 8.4.31 3191 | react: 19.0.0 3192 | react-dom: 19.0.0(react@19.0.0) 3193 | styled-jsx: 5.1.6(react@19.0.0) 3194 | optionalDependencies: 3195 | '@next/swc-darwin-arm64': 15.1.2 3196 | '@next/swc-darwin-x64': 15.1.2 3197 | '@next/swc-linux-arm64-gnu': 15.1.2 3198 | '@next/swc-linux-arm64-musl': 15.1.2 3199 | '@next/swc-linux-x64-gnu': 15.1.2 3200 | '@next/swc-linux-x64-musl': 15.1.2 3201 | '@next/swc-win32-arm64-msvc': 15.1.2 3202 | '@next/swc-win32-x64-msvc': 15.1.2 3203 | sharp: 0.33.5 3204 | transitivePeerDependencies: 3205 | - '@babel/core' 3206 | - babel-plugin-macros 3207 | 3208 | normalize-path@3.0.0: {} 3209 | 3210 | object-assign@4.1.1: {} 3211 | 3212 | object-hash@3.0.0: {} 3213 | 3214 | object-inspect@1.13.3: {} 3215 | 3216 | object-keys@1.1.1: {} 3217 | 3218 | object.assign@4.1.7: 3219 | dependencies: 3220 | call-bind: 1.0.8 3221 | call-bound: 1.0.3 3222 | define-properties: 1.2.1 3223 | es-object-atoms: 1.0.0 3224 | has-symbols: 1.1.0 3225 | object-keys: 1.1.1 3226 | 3227 | object.entries@1.1.8: 3228 | dependencies: 3229 | call-bind: 1.0.8 3230 | define-properties: 1.2.1 3231 | es-object-atoms: 1.0.0 3232 | 3233 | object.fromentries@2.0.8: 3234 | dependencies: 3235 | call-bind: 1.0.8 3236 | define-properties: 1.2.1 3237 | es-abstract: 1.23.6 3238 | es-object-atoms: 1.0.0 3239 | 3240 | object.groupby@1.0.3: 3241 | dependencies: 3242 | call-bind: 1.0.8 3243 | define-properties: 1.2.1 3244 | es-abstract: 1.23.6 3245 | 3246 | object.values@1.2.1: 3247 | dependencies: 3248 | call-bind: 1.0.8 3249 | call-bound: 1.0.3 3250 | define-properties: 1.2.1 3251 | es-object-atoms: 1.0.0 3252 | 3253 | optionator@0.9.4: 3254 | dependencies: 3255 | deep-is: 0.1.4 3256 | fast-levenshtein: 2.0.6 3257 | levn: 0.4.1 3258 | prelude-ls: 1.2.1 3259 | type-check: 0.4.0 3260 | word-wrap: 1.2.5 3261 | 3262 | p-limit@3.1.0: 3263 | dependencies: 3264 | yocto-queue: 0.1.0 3265 | 3266 | p-locate@5.0.0: 3267 | dependencies: 3268 | p-limit: 3.1.0 3269 | 3270 | package-json-from-dist@1.0.1: {} 3271 | 3272 | parent-module@1.0.1: 3273 | dependencies: 3274 | callsites: 3.1.0 3275 | 3276 | path-exists@4.0.0: {} 3277 | 3278 | path-key@3.1.1: {} 3279 | 3280 | path-parse@1.0.7: {} 3281 | 3282 | path-scurry@1.11.1: 3283 | dependencies: 3284 | lru-cache: 10.4.3 3285 | minipass: 7.1.2 3286 | 3287 | path-type@4.0.0: {} 3288 | 3289 | picocolors@1.1.1: {} 3290 | 3291 | picomatch@2.3.1: {} 3292 | 3293 | pify@2.3.0: {} 3294 | 3295 | pirates@4.0.6: {} 3296 | 3297 | possible-typed-array-names@1.0.0: {} 3298 | 3299 | postcss-import@15.1.0(postcss@8.4.49): 3300 | dependencies: 3301 | postcss: 8.4.49 3302 | postcss-value-parser: 4.2.0 3303 | read-cache: 1.0.0 3304 | resolve: 1.22.9 3305 | 3306 | postcss-js@4.0.1(postcss@8.4.49): 3307 | dependencies: 3308 | camelcase-css: 2.0.1 3309 | postcss: 8.4.49 3310 | 3311 | postcss-load-config@4.0.2(postcss@8.4.49): 3312 | dependencies: 3313 | lilconfig: 3.1.3 3314 | yaml: 2.6.1 3315 | optionalDependencies: 3316 | postcss: 8.4.49 3317 | 3318 | postcss-nested@6.2.0(postcss@8.4.49): 3319 | dependencies: 3320 | postcss: 8.4.49 3321 | postcss-selector-parser: 6.1.2 3322 | 3323 | postcss-selector-parser@6.1.2: 3324 | dependencies: 3325 | cssesc: 3.0.0 3326 | util-deprecate: 1.0.2 3327 | 3328 | postcss-value-parser@4.2.0: {} 3329 | 3330 | postcss@8.4.31: 3331 | dependencies: 3332 | nanoid: 3.3.8 3333 | picocolors: 1.1.1 3334 | source-map-js: 1.2.1 3335 | 3336 | postcss@8.4.49: 3337 | dependencies: 3338 | nanoid: 3.3.8 3339 | picocolors: 1.1.1 3340 | source-map-js: 1.2.1 3341 | 3342 | prelude-ls@1.2.1: {} 3343 | 3344 | prop-types@15.8.1: 3345 | dependencies: 3346 | loose-envify: 1.4.0 3347 | object-assign: 4.1.1 3348 | react-is: 16.13.1 3349 | 3350 | punycode@2.3.1: {} 3351 | 3352 | queue-microtask@1.2.3: {} 3353 | 3354 | react-dom@19.0.0(react@19.0.0): 3355 | dependencies: 3356 | react: 19.0.0 3357 | scheduler: 0.25.0 3358 | 3359 | react-is@16.13.1: {} 3360 | 3361 | react@19.0.0: {} 3362 | 3363 | read-cache@1.0.0: 3364 | dependencies: 3365 | pify: 2.3.0 3366 | 3367 | readdirp@3.6.0: 3368 | dependencies: 3369 | picomatch: 2.3.1 3370 | 3371 | reflect.getprototypeof@1.0.9: 3372 | dependencies: 3373 | call-bind: 1.0.8 3374 | define-properties: 1.2.1 3375 | dunder-proto: 1.0.1 3376 | es-abstract: 1.23.6 3377 | es-errors: 1.3.0 3378 | get-intrinsic: 1.2.6 3379 | gopd: 1.2.0 3380 | which-builtin-type: 1.2.1 3381 | 3382 | regexp.prototype.flags@1.5.3: 3383 | dependencies: 3384 | call-bind: 1.0.8 3385 | define-properties: 1.2.1 3386 | es-errors: 1.3.0 3387 | set-function-name: 2.0.2 3388 | 3389 | resolve-from@4.0.0: {} 3390 | 3391 | resolve-pkg-maps@1.0.0: {} 3392 | 3393 | resolve@1.22.9: 3394 | dependencies: 3395 | is-core-module: 2.16.0 3396 | path-parse: 1.0.7 3397 | supports-preserve-symlinks-flag: 1.0.0 3398 | 3399 | resolve@2.0.0-next.5: 3400 | dependencies: 3401 | is-core-module: 2.16.0 3402 | path-parse: 1.0.7 3403 | supports-preserve-symlinks-flag: 1.0.0 3404 | 3405 | reusify@1.0.4: {} 3406 | 3407 | run-parallel@1.2.0: 3408 | dependencies: 3409 | queue-microtask: 1.2.3 3410 | 3411 | safe-array-concat@1.1.3: 3412 | dependencies: 3413 | call-bind: 1.0.8 3414 | call-bound: 1.0.3 3415 | get-intrinsic: 1.2.6 3416 | has-symbols: 1.1.0 3417 | isarray: 2.0.5 3418 | 3419 | safe-regex-test@1.1.0: 3420 | dependencies: 3421 | call-bound: 1.0.3 3422 | es-errors: 1.3.0 3423 | is-regex: 1.2.1 3424 | 3425 | scheduler@0.25.0: {} 3426 | 3427 | semver@6.3.1: {} 3428 | 3429 | semver@7.6.3: {} 3430 | 3431 | set-function-length@1.2.2: 3432 | dependencies: 3433 | define-data-property: 1.1.4 3434 | es-errors: 1.3.0 3435 | function-bind: 1.1.2 3436 | get-intrinsic: 1.2.6 3437 | gopd: 1.2.0 3438 | has-property-descriptors: 1.0.2 3439 | 3440 | set-function-name@2.0.2: 3441 | dependencies: 3442 | define-data-property: 1.1.4 3443 | es-errors: 1.3.0 3444 | functions-have-names: 1.2.3 3445 | has-property-descriptors: 1.0.2 3446 | 3447 | sharp@0.33.5: 3448 | dependencies: 3449 | color: 4.2.3 3450 | detect-libc: 2.0.3 3451 | semver: 7.6.3 3452 | optionalDependencies: 3453 | '@img/sharp-darwin-arm64': 0.33.5 3454 | '@img/sharp-darwin-x64': 0.33.5 3455 | '@img/sharp-libvips-darwin-arm64': 1.0.4 3456 | '@img/sharp-libvips-darwin-x64': 1.0.4 3457 | '@img/sharp-libvips-linux-arm': 1.0.5 3458 | '@img/sharp-libvips-linux-arm64': 1.0.4 3459 | '@img/sharp-libvips-linux-s390x': 1.0.4 3460 | '@img/sharp-libvips-linux-x64': 1.0.4 3461 | '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 3462 | '@img/sharp-libvips-linuxmusl-x64': 1.0.4 3463 | '@img/sharp-linux-arm': 0.33.5 3464 | '@img/sharp-linux-arm64': 0.33.5 3465 | '@img/sharp-linux-s390x': 0.33.5 3466 | '@img/sharp-linux-x64': 0.33.5 3467 | '@img/sharp-linuxmusl-arm64': 0.33.5 3468 | '@img/sharp-linuxmusl-x64': 0.33.5 3469 | '@img/sharp-wasm32': 0.33.5 3470 | '@img/sharp-win32-ia32': 0.33.5 3471 | '@img/sharp-win32-x64': 0.33.5 3472 | optional: true 3473 | 3474 | shebang-command@2.0.0: 3475 | dependencies: 3476 | shebang-regex: 3.0.0 3477 | 3478 | shebang-regex@3.0.0: {} 3479 | 3480 | side-channel-list@1.0.0: 3481 | dependencies: 3482 | es-errors: 1.3.0 3483 | object-inspect: 1.13.3 3484 | 3485 | side-channel-map@1.0.1: 3486 | dependencies: 3487 | call-bound: 1.0.3 3488 | es-errors: 1.3.0 3489 | get-intrinsic: 1.2.6 3490 | object-inspect: 1.13.3 3491 | 3492 | side-channel-weakmap@1.0.2: 3493 | dependencies: 3494 | call-bound: 1.0.3 3495 | es-errors: 1.3.0 3496 | get-intrinsic: 1.2.6 3497 | object-inspect: 1.13.3 3498 | side-channel-map: 1.0.1 3499 | 3500 | side-channel@1.1.0: 3501 | dependencies: 3502 | es-errors: 1.3.0 3503 | object-inspect: 1.13.3 3504 | side-channel-list: 1.0.0 3505 | side-channel-map: 1.0.1 3506 | side-channel-weakmap: 1.0.2 3507 | 3508 | signal-exit@4.1.0: {} 3509 | 3510 | simple-swizzle@0.2.2: 3511 | dependencies: 3512 | is-arrayish: 0.3.2 3513 | optional: true 3514 | 3515 | slash@3.0.0: {} 3516 | 3517 | source-map-js@1.2.1: {} 3518 | 3519 | stable-hash@0.0.4: {} 3520 | 3521 | streamsearch@1.1.0: {} 3522 | 3523 | string-width@4.2.3: 3524 | dependencies: 3525 | emoji-regex: 8.0.0 3526 | is-fullwidth-code-point: 3.0.0 3527 | strip-ansi: 6.0.1 3528 | 3529 | string-width@5.1.2: 3530 | dependencies: 3531 | eastasianwidth: 0.2.0 3532 | emoji-regex: 9.2.2 3533 | strip-ansi: 7.1.0 3534 | 3535 | string.prototype.includes@2.0.1: 3536 | dependencies: 3537 | call-bind: 1.0.8 3538 | define-properties: 1.2.1 3539 | es-abstract: 1.23.6 3540 | 3541 | string.prototype.matchall@4.0.11: 3542 | dependencies: 3543 | call-bind: 1.0.8 3544 | define-properties: 1.2.1 3545 | es-abstract: 1.23.6 3546 | es-errors: 1.3.0 3547 | es-object-atoms: 1.0.0 3548 | get-intrinsic: 1.2.6 3549 | gopd: 1.2.0 3550 | has-symbols: 1.1.0 3551 | internal-slot: 1.1.0 3552 | regexp.prototype.flags: 1.5.3 3553 | set-function-name: 2.0.2 3554 | side-channel: 1.1.0 3555 | 3556 | string.prototype.repeat@1.0.0: 3557 | dependencies: 3558 | define-properties: 1.2.1 3559 | es-abstract: 1.23.6 3560 | 3561 | string.prototype.trim@1.2.10: 3562 | dependencies: 3563 | call-bind: 1.0.8 3564 | call-bound: 1.0.3 3565 | define-data-property: 1.1.4 3566 | define-properties: 1.2.1 3567 | es-abstract: 1.23.6 3568 | es-object-atoms: 1.0.0 3569 | has-property-descriptors: 1.0.2 3570 | 3571 | string.prototype.trimend@1.0.9: 3572 | dependencies: 3573 | call-bind: 1.0.8 3574 | call-bound: 1.0.3 3575 | define-properties: 1.2.1 3576 | es-object-atoms: 1.0.0 3577 | 3578 | string.prototype.trimstart@1.0.8: 3579 | dependencies: 3580 | call-bind: 1.0.8 3581 | define-properties: 1.2.1 3582 | es-object-atoms: 1.0.0 3583 | 3584 | strip-ansi@6.0.1: 3585 | dependencies: 3586 | ansi-regex: 5.0.1 3587 | 3588 | strip-ansi@7.1.0: 3589 | dependencies: 3590 | ansi-regex: 6.1.0 3591 | 3592 | strip-bom@3.0.0: {} 3593 | 3594 | strip-json-comments@3.1.1: {} 3595 | 3596 | styled-jsx@5.1.6(react@19.0.0): 3597 | dependencies: 3598 | client-only: 0.0.1 3599 | react: 19.0.0 3600 | 3601 | sucrase@3.35.0: 3602 | dependencies: 3603 | '@jridgewell/gen-mapping': 0.3.8 3604 | commander: 4.1.1 3605 | glob: 10.4.5 3606 | lines-and-columns: 1.2.4 3607 | mz: 2.7.0 3608 | pirates: 4.0.6 3609 | ts-interface-checker: 0.1.13 3610 | 3611 | supports-color@7.2.0: 3612 | dependencies: 3613 | has-flag: 4.0.0 3614 | 3615 | supports-preserve-symlinks-flag@1.0.0: {} 3616 | 3617 | tailwind-merge@2.5.5: {} 3618 | 3619 | tailwindcss-animate@1.0.7(tailwindcss@3.4.17): 3620 | dependencies: 3621 | tailwindcss: 3.4.17 3622 | 3623 | tailwindcss@3.4.17: 3624 | dependencies: 3625 | '@alloc/quick-lru': 5.2.0 3626 | arg: 5.0.2 3627 | chokidar: 3.6.0 3628 | didyoumean: 1.2.2 3629 | dlv: 1.1.3 3630 | fast-glob: 3.3.2 3631 | glob-parent: 6.0.2 3632 | is-glob: 4.0.3 3633 | jiti: 1.21.7 3634 | lilconfig: 3.1.3 3635 | micromatch: 4.0.8 3636 | normalize-path: 3.0.0 3637 | object-hash: 3.0.0 3638 | picocolors: 1.1.1 3639 | postcss: 8.4.49 3640 | postcss-import: 15.1.0(postcss@8.4.49) 3641 | postcss-js: 4.0.1(postcss@8.4.49) 3642 | postcss-load-config: 4.0.2(postcss@8.4.49) 3643 | postcss-nested: 6.2.0(postcss@8.4.49) 3644 | postcss-selector-parser: 6.1.2 3645 | resolve: 1.22.9 3646 | sucrase: 3.35.0 3647 | transitivePeerDependencies: 3648 | - ts-node 3649 | 3650 | tapable@2.2.1: {} 3651 | 3652 | thenify-all@1.6.0: 3653 | dependencies: 3654 | thenify: 3.3.1 3655 | 3656 | thenify@3.3.1: 3657 | dependencies: 3658 | any-promise: 1.3.0 3659 | 3660 | to-regex-range@5.0.1: 3661 | dependencies: 3662 | is-number: 7.0.0 3663 | 3664 | ts-api-utils@1.4.3(typescript@5.7.2): 3665 | dependencies: 3666 | typescript: 5.7.2 3667 | 3668 | ts-interface-checker@0.1.13: {} 3669 | 3670 | tsconfig-paths@3.15.0: 3671 | dependencies: 3672 | '@types/json5': 0.0.29 3673 | json5: 1.0.2 3674 | minimist: 1.2.8 3675 | strip-bom: 3.0.0 3676 | 3677 | tslib@2.8.1: {} 3678 | 3679 | type-check@0.4.0: 3680 | dependencies: 3681 | prelude-ls: 1.2.1 3682 | 3683 | typed-array-buffer@1.0.3: 3684 | dependencies: 3685 | call-bound: 1.0.3 3686 | es-errors: 1.3.0 3687 | is-typed-array: 1.1.15 3688 | 3689 | typed-array-byte-length@1.0.3: 3690 | dependencies: 3691 | call-bind: 1.0.8 3692 | for-each: 0.3.3 3693 | gopd: 1.2.0 3694 | has-proto: 1.2.0 3695 | is-typed-array: 1.1.15 3696 | 3697 | typed-array-byte-offset@1.0.4: 3698 | dependencies: 3699 | available-typed-arrays: 1.0.7 3700 | call-bind: 1.0.8 3701 | for-each: 0.3.3 3702 | gopd: 1.2.0 3703 | has-proto: 1.2.0 3704 | is-typed-array: 1.1.15 3705 | reflect.getprototypeof: 1.0.9 3706 | 3707 | typed-array-length@1.0.7: 3708 | dependencies: 3709 | call-bind: 1.0.8 3710 | for-each: 0.3.3 3711 | gopd: 1.2.0 3712 | is-typed-array: 1.1.15 3713 | possible-typed-array-names: 1.0.0 3714 | reflect.getprototypeof: 1.0.9 3715 | 3716 | typescript@5.7.2: {} 3717 | 3718 | unbox-primitive@1.1.0: 3719 | dependencies: 3720 | call-bound: 1.0.3 3721 | has-bigints: 1.1.0 3722 | has-symbols: 1.1.0 3723 | which-boxed-primitive: 1.1.1 3724 | 3725 | undici-types@6.20.0: {} 3726 | 3727 | uri-js@4.4.1: 3728 | dependencies: 3729 | punycode: 2.3.1 3730 | 3731 | util-deprecate@1.0.2: {} 3732 | 3733 | which-boxed-primitive@1.1.1: 3734 | dependencies: 3735 | is-bigint: 1.1.0 3736 | is-boolean-object: 1.2.1 3737 | is-number-object: 1.1.1 3738 | is-string: 1.1.1 3739 | is-symbol: 1.1.1 3740 | 3741 | which-builtin-type@1.2.1: 3742 | dependencies: 3743 | call-bound: 1.0.3 3744 | function.prototype.name: 1.1.7 3745 | has-tostringtag: 1.0.2 3746 | is-async-function: 2.0.0 3747 | is-date-object: 1.1.0 3748 | is-finalizationregistry: 1.1.1 3749 | is-generator-function: 1.0.10 3750 | is-regex: 1.2.1 3751 | is-weakref: 1.1.0 3752 | isarray: 2.0.5 3753 | which-boxed-primitive: 1.1.1 3754 | which-collection: 1.0.2 3755 | which-typed-array: 1.1.18 3756 | 3757 | which-collection@1.0.2: 3758 | dependencies: 3759 | is-map: 2.0.3 3760 | is-set: 2.0.3 3761 | is-weakmap: 2.0.2 3762 | is-weakset: 2.0.4 3763 | 3764 | which-typed-array@1.1.18: 3765 | dependencies: 3766 | available-typed-arrays: 1.0.7 3767 | call-bind: 1.0.8 3768 | call-bound: 1.0.3 3769 | for-each: 0.3.3 3770 | gopd: 1.2.0 3771 | has-tostringtag: 1.0.2 3772 | 3773 | which@2.0.2: 3774 | dependencies: 3775 | isexe: 2.0.0 3776 | 3777 | word-wrap@1.2.5: {} 3778 | 3779 | wrap-ansi@7.0.0: 3780 | dependencies: 3781 | ansi-styles: 4.3.0 3782 | string-width: 4.2.3 3783 | strip-ansi: 6.0.1 3784 | 3785 | wrap-ansi@8.1.0: 3786 | dependencies: 3787 | ansi-styles: 6.2.1 3788 | string-width: 5.1.2 3789 | strip-ansi: 7.1.0 3790 | 3791 | yaml@2.6.1: {} 3792 | 3793 | yocto-queue@0.1.0: {} 3794 | -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('postcss-load-config').Config} */ 2 | const config = { 3 | plugins: { 4 | tailwindcss: {}, 5 | }, 6 | }; 7 | 8 | export default config; 9 | -------------------------------------------------------------------------------- /public/garfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstatusHQ/nextjs-dynamic-breadcrumb/6c7ce7e79e9e2f423854e43fdd9d7939a89f33d5/public/garfield.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/odie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstatusHQ/nextjs-dynamic-breadcrumb/6c7ce7e79e9e2f423854e43fdd9d7939a89f33d5/public/odie.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/@breadcrumb/[...all]/page.tsx: -------------------------------------------------------------------------------- 1 | import { 2 | Breadcrumb, 3 | BreadcrumbItem, 4 | BreadcrumbLink, 5 | BreadcrumbList, 6 | BreadcrumbPage, 7 | BreadcrumbSeparator, 8 | } from "@/components/ui/breadcrumb"; 9 | import React from "react"; 10 | import type { ReactElement } from "react"; 11 | 12 | export default async function BreadcrumbSlot(props: { params: Promise<{ all: string[] }> }) { 13 | const params = await props.params; 14 | const breadcrumbItems: ReactElement[] = []; 15 | let breadcrumbPage: ReactElement = <>; 16 | for (let i = 0; i < params.all.length; i++) { 17 | const route = params.all[i]; 18 | const href = `/${params.all.at(0)}/${route}`; 19 | console.log("route", route); 20 | if (i === params.all.length - 1) { 21 | breadcrumbPage = ( 22 | 23 | {route} 24 | 25 | ); 26 | } else { 27 | breadcrumbItems.push( 28 | 29 | 30 | 31 | {route} 32 | 33 | 34 | , 35 | ); 36 | } 37 | } 38 | 39 | return ( 40 | 41 | 42 | 43 | Home 44 | 45 | {breadcrumbItems} 46 | 47 | {breadcrumbPage} 48 | 49 | 50 | ); 51 | } 52 | -------------------------------------------------------------------------------- /src/app/@breadcrumb/cats/[id]/page.tsx: -------------------------------------------------------------------------------- 1 | import { 2 | BreadcrumbItem, 3 | BreadcrumbLink, 4 | BreadcrumbList, 5 | BreadcrumbPage, 6 | BreadcrumbSeparator, 7 | } from "@/components/ui/breadcrumb"; 8 | 9 | export default async function BreadcrumbSlot( 10 | { params }: { params: Promise<{ id: string }> }, 11 | ) { 12 | const { id } = await params; 13 | // Fetch our cat information from the database 14 | const cat = await Promise.resolve({ 15 | name: "Garfield", 16 | url: "https://upload.wikimedia.org/wikipedia/en/thumb/b/bc/Garfield_the_Cat.svg/1920px-Garfield_the_Cat.svg.png", 17 | }); 18 | return ( 19 | 20 | {" "} 21 | 22 | Home 23 | 24 | 25 | 26 | Cats 27 | 28 | 29 | 30 | {cat.name} 31 | 32 | 33 | ); 34 | } 35 | -------------------------------------------------------------------------------- /src/app/@breadcrumb/dogs/[id]/page.tsx: -------------------------------------------------------------------------------- 1 | import { 2 | BreadcrumbItem, 3 | BreadcrumbLink, 4 | BreadcrumbList, 5 | BreadcrumbPage, 6 | BreadcrumbSeparator, 7 | } from "@/components/ui/breadcrumb"; 8 | 9 | export default async function BreadcrumbSlot({ params }: { params: Promise<{ id: string }> }) { 10 | const { id } = await params; 11 | // Fetch dog from the api 12 | const dog = await Promise.resolve({ 13 | name: "Odie", 14 | url: "https://static.wikia.nocookie.net/garfield/images/a/ac/OdieCharacter.jpg", 15 | }); 16 | 17 | return ( 18 | 19 | {" "} 20 | 21 | Home 22 | 23 | 24 | 25 | Dogs 26 | 27 | 28 | 29 | {dog.name} 30 | 31 | 32 | ); 33 | } 34 | -------------------------------------------------------------------------------- /src/app/@breadcrumb/layout.tsx: -------------------------------------------------------------------------------- 1 | export default function BreadcrumbLayout({ 2 | children, 3 | }: { children: React.ReactNode }) { 4 | return
{children}
; 5 | } 6 | -------------------------------------------------------------------------------- /src/app/@breadcrumb/page.tsx: -------------------------------------------------------------------------------- 1 | import { 2 | Breadcrumb, 3 | BreadcrumbItem, 4 | BreadcrumbLink, 5 | BreadcrumbList, 6 | } from "@/components/ui/breadcrumb"; 7 | 8 | export default function BreadcrumbSlot() { 9 | return ( 10 | 11 | 12 | 13 | Home 14 | 15 | 16 | 17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /src/app/cats/[id]/page.tsx: -------------------------------------------------------------------------------- 1 | import Image from "next/image"; 2 | export default async function CatPage({ params }: { params: Promise<{ id: string }> }) { 3 | 4 | const { id } = await params; 5 | const cat = await Promise.resolve({ 6 | name: "Garfield", 7 | url: "https://upload.wikimedia.org/wikipedia/en/thumb/b/bc/Garfield_the_Cat.svg/1920px-Garfield_the_Cat.svg.png", 8 | }); 9 | 10 | return ( 11 |
12 |

{cat.name}

13 | 14 | {cat.name} 15 |
16 | ); 17 | } 18 | -------------------------------------------------------------------------------- /src/app/cats/page.tsx: -------------------------------------------------------------------------------- 1 | export default function CatsPage() { 2 | return ( 3 |
4 |

Cats

5 |
6 | ); 7 | } 8 | -------------------------------------------------------------------------------- /src/app/dogs/[id]/page.tsx: -------------------------------------------------------------------------------- 1 | import Image from "next/image"; 2 | export default async function DogPage({ params }: { params: Promise<{ id: string }> }) { 3 | const { id } = await params; 4 | const dog = await Promise.resolve({ 5 | name: "Odie", 6 | url: "https://static.wikia.nocookie.net/garfield/images/a/ac/OdieCharacter.jpg", 7 | }); 8 | 9 | return ( 10 |
11 |

{dog.name}

12 | 13 | {dog.name} 14 |
15 | ); 16 | } 17 | -------------------------------------------------------------------------------- /src/app/dogs/page.tsx: -------------------------------------------------------------------------------- 1 | import Link from "next/link"; 2 | 3 | export default function DogsPage() { 4 | return ( 5 |
6 |

The dogs of OpenStatus

7 | 12 |
13 | ); 14 | } 15 | -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstatusHQ/nextjs-dynamic-breadcrumb/6c7ce7e79e9e2f423854e43fdd9d7939a89f33d5/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | :root { 6 | --foreground-rgb: 0, 0, 0; 7 | --background-start-rgb: 214, 219, 220; 8 | --background-end-rgb: 255, 255, 255; 9 | } 10 | 11 | @media (prefers-color-scheme: dark) { 12 | :root { 13 | --foreground-rgb: 255, 255, 255; 14 | --background-start-rgb: 0, 0, 0; 15 | --background-end-rgb: 0, 0, 0; 16 | } 17 | } 18 | 19 | body { 20 | color: rgb(var(--foreground-rgb)); 21 | 22 | } 23 | 24 | @layer utilities { 25 | .text-balance { 26 | text-wrap: balance; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- 1 | import type { Metadata } from "next"; 2 | import { Inter } from "next/font/google"; 3 | import "./globals.css"; 4 | 5 | const inter = Inter({ subsets: ["latin"] }); 6 | 7 | export const metadata: Metadata = { 8 | title: "Create Next App", 9 | description: "Generated by create next app", 10 | }; 11 | 12 | export default function RootLayout({ 13 | breadcrumb, 14 | children, 15 | }: Readonly<{ 16 | breadcrumb: React.ReactNode; 17 | children: React.ReactNode; 18 | }>) { 19 | return ( 20 | 21 | 24 | {breadcrumb} 25 | {children} 26 | 27 | 28 | ); 29 | } 30 | -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- 1 | import Link from "next/link"; 2 | 3 | export default function Home() { 4 | return ( 5 |
6 | Dynamic breadcrumb are fun 7 | 18 |
19 | ); 20 | } 21 | -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react"; 2 | import { Slot } from "@radix-ui/react-slot"; 3 | import { ChevronRight, MoreHorizontal } from "lucide-react"; 4 | 5 | import { cn } from "@/lib/utils"; 6 | 7 | const Breadcrumb = React.forwardRef< 8 | HTMLElement, 9 | React.ComponentPropsWithoutRef<"nav"> & { 10 | separator?: React.ReactNode; 11 | } 12 | >(({ ...props }, ref) =>