├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── api │ └── route.js ├── favicon.ico ├── fonts │ ├── GeistMonoVF.woff │ └── GeistVF.woff ├── globals.css ├── layout.tsx ├── page.jsx └── sqlite.ts ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── 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.* 7 | .yarn/* 8 | !.yarn/patches 9 | !.yarn/plugins 10 | !.yarn/releases 11 | !.yarn/versions 12 | 13 | # testing 14 | /coverage 15 | 16 | # next.js 17 | /.next/ 18 | /out/ 19 | 20 | # production 21 | /build 22 | 23 | # misc 24 | .DS_Store 25 | *.pem 26 | 27 | # debug 28 | npm-debug.log* 29 | yarn-debug.log* 30 | yarn-error.log* 31 | 32 | # env files (can opt-in for commiting if needed) 33 | .env* 34 | 35 | # vercel 36 | .vercel 37 | 38 | # typescript 39 | *.tsbuildinfo 40 | next-env.d.ts 41 | .env*.local 42 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # next-sqlite 2 | 3 | **Demo**: [https://n-sqlite.vercel.app/](https://n-sqlite.vercel.app/) 4 | 5 | Inspired by [jasonleowsg's tweet](https://twitter.com/jasonleowsg/status/1801182816740520227), it demonstrates how easy Next.js App Router with RSC makes it to talk to SQLite. 6 | 7 | SQLite provided by [Turso](https://docs.turso.tech/sdk/introduction). 8 | -------------------------------------------------------------------------------- /app/api/route.js: -------------------------------------------------------------------------------- 1 | import { db } from "../sqlite"; 2 | 3 | export async function GET() { 4 | const table = "student"; 5 | const { rows } = await db.execute( 6 | `SELECT * from ${table} ORDER BY random() LIMIT 10`, 7 | ); 8 | return Response.json(rows, { 9 | headers: { 10 | "Access-Control-Allow-Origin": "*", 11 | }, 12 | }); 13 | } 14 | -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauchg/next-sqlite/67433dc2a5b48de0d099ccc31f3a2b285af982ce/app/favicon.ico -------------------------------------------------------------------------------- /app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauchg/next-sqlite/67433dc2a5b48de0d099ccc31f3a2b285af982ce/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauchg/next-sqlite/67433dc2a5b48de0d099ccc31f3a2b285af982ce/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | :root { 6 | --background: #ffffff; 7 | --foreground: #171717; 8 | } 9 | 10 | @media (prefers-color-scheme: dark) { 11 | :root { 12 | --background: #0a0a0a; 13 | --foreground: #ededed; 14 | } 15 | } 16 | 17 | body { 18 | color: var(--foreground); 19 | background: var(--background); 20 | font-family: Arial, Helvetica, sans-serif; 21 | } 22 | -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- 1 | import type { Metadata } from "next"; 2 | import localFont from "next/font/local"; 3 | import "./globals.css"; 4 | 5 | const geistSans = localFont({ 6 | src: "./fonts/GeistVF.woff", 7 | variable: "--font-geist-sans", 8 | weight: "100 900", 9 | }); 10 | const geistMono = localFont({ 11 | src: "./fonts/GeistMonoVF.woff", 12 | variable: "--font-geist-mono", 13 | weight: "100 900", 14 | }); 15 | 16 | export const metadata: Metadata = { 17 | title: "Next.js with SQLite", 18 | description: "An example of using SQLite with Next.js and Turso", 19 | }; 20 | 21 | export default function RootLayout({ 22 | children, 23 | }: Readonly<{ 24 | children: React.ReactNode; 25 | }>) { 26 | return ( 27 | 28 |
29 |{JSON.stringify(rows, null, 2)}; 9 | } 10 | -------------------------------------------------------------------------------- /app/sqlite.ts: -------------------------------------------------------------------------------- 1 | import { createClient } from "@libsql/client"; 2 | 3 | if (!process.env.TURSO_DATABASE_URL) { 4 | throw new Error("TURSO_DATABASE_URL is not set"); 5 | } 6 | 7 | if (!process.env.TURSO_AUTH_TOKEN) { 8 | throw new Error("TURSO_AUTH_TOKEN is not set"); 9 | } 10 | 11 | export const db = createClient({ 12 | url: process.env.TURSO_DATABASE_URL, 13 | authToken: process.env.TURSO_AUTH_TOKEN, 14 | fetch: (url: string, options: any) => 15 | fetch(url, { ...options, cache: "no-cache" }), 16 | }); 17 | -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | experimental: { 4 | ppr: true, 5 | }, 6 | }; 7 | 8 | export default nextConfig; 9 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "next-sqlite", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev --turbo", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@libsql/client": "^0.6.2", 13 | "next": "15.0.0-rc.0", 14 | "react": "19.0.0-rc.0", 15 | "react-dom": "19.0.0-rc.0" 16 | }, 17 | "devDependencies": { 18 | "@types/node": "^20", 19 | "@types/react": "^18", 20 | "@types/react-dom": "^18", 21 | "eslint": "^8", 22 | "eslint-config-next": "15.0.0-canary.36", 23 | "postcss": "^8", 24 | "tailwindcss": "^3.4.1", 25 | "typescript": "^5" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | '@libsql/client': 12 | specifier: ^0.6.2 13 | version: 0.6.2 14 | next: 15 | specifier: 15.0.0-rc.0 16 | version: 15.0.0-rc.0(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0) 17 | react: 18 | specifier: 19.0.0-rc.0 19 | version: 19.0.0-rc.0 20 | react-dom: 21 | specifier: 19.0.0-rc.0 22 | version: 19.0.0-rc.0(react@19.0.0-rc.0) 23 | devDependencies: 24 | '@types/node': 25 | specifier: ^20 26 | version: 20.14.4 27 | '@types/react': 28 | specifier: ^18 29 | version: 18.3.3 30 | '@types/react-dom': 31 | specifier: ^18 32 | version: 18.3.0 33 | eslint: 34 | specifier: ^8 35 | version: 8.57.0 36 | eslint-config-next: 37 | specifier: 15.0.0-canary.36 38 | version: 15.0.0-canary.36(eslint@8.57.0)(typescript@5.4.5) 39 | postcss: 40 | specifier: ^8 41 | version: 8.4.38 42 | tailwindcss: 43 | specifier: ^3.4.1 44 | version: 3.4.4 45 | typescript: 46 | specifier: ^5 47 | version: 5.4.5 48 | 49 | packages: 50 | 51 | '@alloc/quick-lru@5.2.0': 52 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} 53 | engines: {node: '>=10'} 54 | 55 | '@babel/runtime@7.24.7': 56 | resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==} 57 | engines: {node: '>=6.9.0'} 58 | 59 | '@emnapi/runtime@1.2.0': 60 | resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==} 61 | 62 | '@eslint-community/eslint-utils@4.4.0': 63 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 64 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 65 | peerDependencies: 66 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 67 | 68 | '@eslint-community/regexpp@4.10.1': 69 | resolution: {integrity: sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA==} 70 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 71 | 72 | '@eslint/eslintrc@2.1.4': 73 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} 74 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 75 | 76 | '@eslint/js@8.57.0': 77 | resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} 78 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 79 | 80 | '@humanwhocodes/config-array@0.11.14': 81 | resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} 82 | engines: {node: '>=10.10.0'} 83 | deprecated: Use @eslint/config-array instead 84 | 85 | '@humanwhocodes/module-importer@1.0.1': 86 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 87 | engines: {node: '>=12.22'} 88 | 89 | '@humanwhocodes/object-schema@2.0.3': 90 | resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} 91 | deprecated: Use @eslint/object-schema instead 92 | 93 | '@img/sharp-darwin-arm64@0.33.4': 94 | resolution: {integrity: sha512-p0suNqXufJs9t3RqLBO6vvrgr5OhgbWp76s5gTRvdmxmuv9E1rcaqGUsl3l4mKVmXPkTkTErXediAui4x+8PSA==} 95 | engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 96 | cpu: [arm64] 97 | os: [darwin] 98 | 99 | '@img/sharp-darwin-x64@0.33.4': 100 | resolution: {integrity: sha512-0l7yRObwtTi82Z6ebVI2PnHT8EB2NxBgpK2MiKJZJ7cz32R4lxd001ecMhzzsZig3Yv9oclvqqdV93jo9hy+Dw==} 101 | engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 102 | cpu: [x64] 103 | os: [darwin] 104 | 105 | '@img/sharp-libvips-darwin-arm64@1.0.2': 106 | resolution: {integrity: sha512-tcK/41Rq8IKlSaKRCCAuuY3lDJjQnYIW1UXU1kxcEKrfL8WR7N6+rzNoOxoQRJWTAECuKwgAHnPvqXGN8XfkHA==} 107 | engines: {macos: '>=11', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 108 | cpu: [arm64] 109 | os: [darwin] 110 | 111 | '@img/sharp-libvips-darwin-x64@1.0.2': 112 | resolution: {integrity: sha512-Ofw+7oaWa0HiiMiKWqqaZbaYV3/UGL2wAPeLuJTx+9cXpCRdvQhCLG0IH8YGwM0yGWGLpsF4Su9vM1o6aer+Fw==} 113 | engines: {macos: '>=10.13', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 114 | cpu: [x64] 115 | os: [darwin] 116 | 117 | '@img/sharp-libvips-linux-arm64@1.0.2': 118 | resolution: {integrity: sha512-x7kCt3N00ofFmmkkdshwj3vGPCnmiDh7Gwnd4nUwZln2YjqPxV1NlTyZOvoDWdKQVDL911487HOueBvrpflagw==} 119 | engines: {glibc: '>=2.26', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 120 | cpu: [arm64] 121 | os: [linux] 122 | 123 | '@img/sharp-libvips-linux-arm@1.0.2': 124 | resolution: {integrity: sha512-iLWCvrKgeFoglQxdEwzu1eQV04o8YeYGFXtfWU26Zr2wWT3q3MTzC+QTCO3ZQfWd3doKHT4Pm2kRmLbupT+sZw==} 125 | engines: {glibc: '>=2.28', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 126 | cpu: [arm] 127 | os: [linux] 128 | 129 | '@img/sharp-libvips-linux-s390x@1.0.2': 130 | resolution: {integrity: sha512-cmhQ1J4qVhfmS6szYW7RT+gLJq9dH2i4maq+qyXayUSn9/3iY2ZeWpbAgSpSVbV2E1JUL2Gg7pwnYQ1h8rQIog==} 131 | engines: {glibc: '>=2.28', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 132 | cpu: [s390x] 133 | os: [linux] 134 | 135 | '@img/sharp-libvips-linux-x64@1.0.2': 136 | resolution: {integrity: sha512-E441q4Qdb+7yuyiADVi5J+44x8ctlrqn8XgkDTwr4qPJzWkaHwD489iZ4nGDgcuya4iMN3ULV6NwbhRZJ9Z7SQ==} 137 | engines: {glibc: '>=2.26', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 138 | cpu: [x64] 139 | os: [linux] 140 | 141 | '@img/sharp-libvips-linuxmusl-arm64@1.0.2': 142 | resolution: {integrity: sha512-3CAkndNpYUrlDqkCM5qhksfE+qSIREVpyoeHIU6jd48SJZViAmznoQQLAv4hVXF7xyUB9zf+G++e2v1ABjCbEQ==} 143 | engines: {musl: '>=1.2.2', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 144 | cpu: [arm64] 145 | os: [linux] 146 | 147 | '@img/sharp-libvips-linuxmusl-x64@1.0.2': 148 | resolution: {integrity: sha512-VI94Q6khIHqHWNOh6LLdm9s2Ry4zdjWJwH56WoiJU7NTeDwyApdZZ8c+SADC8OH98KWNQXnE01UdJ9CSfZvwZw==} 149 | engines: {musl: '>=1.2.2', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 150 | cpu: [x64] 151 | os: [linux] 152 | 153 | '@img/sharp-linux-arm64@0.33.4': 154 | resolution: {integrity: sha512-2800clwVg1ZQtxwSoTlHvtm9ObgAax7V6MTAB/hDT945Tfyy3hVkmiHpeLPCKYqYR1Gcmv1uDZ3a4OFwkdBL7Q==} 155 | engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 156 | cpu: [arm64] 157 | os: [linux] 158 | 159 | '@img/sharp-linux-arm@0.33.4': 160 | resolution: {integrity: sha512-RUgBD1c0+gCYZGCCe6mMdTiOFS0Zc/XrN0fYd6hISIKcDUbAW5NtSQW9g/powkrXYm6Vzwd6y+fqmExDuCdHNQ==} 161 | engines: {glibc: '>=2.28', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 162 | cpu: [arm] 163 | os: [linux] 164 | 165 | '@img/sharp-linux-s390x@0.33.4': 166 | resolution: {integrity: sha512-h3RAL3siQoyzSoH36tUeS0PDmb5wINKGYzcLB5C6DIiAn2F3udeFAum+gj8IbA/82+8RGCTn7XW8WTFnqag4tQ==} 167 | engines: {glibc: '>=2.31', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 168 | cpu: [s390x] 169 | os: [linux] 170 | 171 | '@img/sharp-linux-x64@0.33.4': 172 | resolution: {integrity: sha512-GoR++s0XW9DGVi8SUGQ/U4AeIzLdNjHka6jidVwapQ/JebGVQIpi52OdyxCNVRE++n1FCLzjDovJNozif7w/Aw==} 173 | engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 174 | cpu: [x64] 175 | os: [linux] 176 | 177 | '@img/sharp-linuxmusl-arm64@0.33.4': 178 | resolution: {integrity: sha512-nhr1yC3BlVrKDTl6cO12gTpXMl4ITBUZieehFvMntlCXFzH2bvKG76tBL2Y/OqhupZt81pR7R+Q5YhJxW0rGgQ==} 179 | engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 180 | cpu: [arm64] 181 | os: [linux] 182 | 183 | '@img/sharp-linuxmusl-x64@0.33.4': 184 | resolution: {integrity: sha512-uCPTku0zwqDmZEOi4ILyGdmW76tH7dm8kKlOIV1XC5cLyJ71ENAAqarOHQh0RLfpIpbV5KOpXzdU6XkJtS0daw==} 185 | engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 186 | cpu: [x64] 187 | os: [linux] 188 | 189 | '@img/sharp-wasm32@0.33.4': 190 | resolution: {integrity: sha512-Bmmauh4sXUsUqkleQahpdNXKvo+wa1V9KhT2pDA4VJGKwnKMJXiSTGphn0gnJrlooda0QxCtXc6RX1XAU6hMnQ==} 191 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 192 | cpu: [wasm32] 193 | 194 | '@img/sharp-win32-ia32@0.33.4': 195 | resolution: {integrity: sha512-99SJ91XzUhYHbx7uhK3+9Lf7+LjwMGQZMDlO/E/YVJ7Nc3lyDFZPGhjwiYdctoH2BOzW9+TnfqcaMKt0jHLdqw==} 196 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 197 | cpu: [ia32] 198 | os: [win32] 199 | 200 | '@img/sharp-win32-x64@0.33.4': 201 | resolution: {integrity: sha512-3QLocdTRVIrFNye5YocZl+KKpYKP+fksi1QhmOArgx7GyhIbQp/WrJRu176jm8IxromS7RIkzMiMINVdBtC8Aw==} 202 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 203 | cpu: [x64] 204 | os: [win32] 205 | 206 | '@isaacs/cliui@8.0.2': 207 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 208 | engines: {node: '>=12'} 209 | 210 | '@jridgewell/gen-mapping@0.3.5': 211 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} 212 | engines: {node: '>=6.0.0'} 213 | 214 | '@jridgewell/resolve-uri@3.1.2': 215 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 216 | engines: {node: '>=6.0.0'} 217 | 218 | '@jridgewell/set-array@1.2.1': 219 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 220 | engines: {node: '>=6.0.0'} 221 | 222 | '@jridgewell/sourcemap-codec@1.4.15': 223 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 224 | 225 | '@jridgewell/trace-mapping@0.3.25': 226 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 227 | 228 | '@libsql/client@0.6.2': 229 | resolution: {integrity: sha512-xRNfRLv/dOCbV4qd+M0baQwGmvuZpMd2wG2UAPs8XmcdaPvu5ErkcaeITkxlm3hDEJVabQM1cFhMBxsugWW9fQ==} 230 | 231 | '@libsql/core@0.6.2': 232 | resolution: {integrity: sha512-c2P4M+4u/4b2L02A0KjggO3UW51rGkhxr/7fzJO0fEAqsqrWGxuNj2YtRkina/oxfYvAof6xjp8RucNoIV/Odw==} 233 | 234 | '@libsql/darwin-arm64@0.3.19': 235 | resolution: {integrity: sha512-rmOqsLcDI65zzxlUOoEiPJLhqmbFsZF6p4UJQ2kMqB+Kc0Rt5/A1OAdOZ/Wo8fQfJWjR1IbkbpEINFioyKf+nQ==} 236 | cpu: [arm64] 237 | os: [darwin] 238 | 239 | '@libsql/darwin-x64@0.3.19': 240 | resolution: {integrity: sha512-q9O55B646zU+644SMmOQL3FIfpmEvdWpRpzubwFc2trsa+zoBlSkHuzU9v/C+UNoPHQVRMP7KQctJ455I/h/xw==} 241 | cpu: [x64] 242 | os: [darwin] 243 | 244 | '@libsql/hrana-client@0.6.2': 245 | resolution: {integrity: sha512-MWxgD7mXLNf9FXXiM0bc90wCjZSpErWKr5mGza7ERy2FJNNMXd7JIOv+DepBA1FQTIfI8TFO4/QDYgaQC0goNw==} 246 | 247 | '@libsql/isomorphic-fetch@0.2.1': 248 | resolution: {integrity: sha512-Sv07QP1Aw8A5OOrmKgRUBKe2fFhF2hpGJhtHe3d1aRnTESZCGkn//0zDycMKTGamVWb3oLYRroOsCV8Ukes9GA==} 249 | 250 | '@libsql/isomorphic-ws@0.1.5': 251 | resolution: {integrity: sha512-DtLWIH29onUYR00i0GlQ3UdcTRC6EP4u9w/h9LxpUZJWRMARk6dQwZ6Jkd+QdwVpuAOrdxt18v0K2uIYR3fwFg==} 252 | 253 | '@libsql/linux-arm64-gnu@0.3.19': 254 | resolution: {integrity: sha512-mgeAUU1oqqh57k7I3cQyU6Trpdsdt607eFyEmH5QO7dv303ti+LjUvh1pp21QWV6WX7wZyjeJV1/VzEImB+jRg==} 255 | cpu: [arm64] 256 | os: [linux] 257 | 258 | '@libsql/linux-arm64-musl@0.3.19': 259 | resolution: {integrity: sha512-VEZtxghyK6zwGzU9PHohvNxthruSxBEnRrX7BSL5jQ62tN4n2JNepJ6SdzXp70pdzTfwroOj/eMwiPt94gkVRg==} 260 | cpu: [arm64] 261 | os: [linux] 262 | 263 | '@libsql/linux-x64-gnu@0.3.19': 264 | resolution: {integrity: sha512-2t/J7LD5w2f63wGihEO+0GxfTyYIyLGEvTFEsMO16XI5o7IS9vcSHrxsvAJs4w2Pf907uDjmc7fUfMg6L82BrQ==} 265 | cpu: [x64] 266 | os: [linux] 267 | 268 | '@libsql/linux-x64-musl@0.3.19': 269 | resolution: {integrity: sha512-BLsXyJaL8gZD8+3W2LU08lDEd9MIgGds0yPy5iNPp8tfhXx3pV/Fge2GErN0FC+nzt4DYQtjL+A9GUMglQefXQ==} 270 | cpu: [x64] 271 | os: [linux] 272 | 273 | '@libsql/win32-x64-msvc@0.3.19': 274 | resolution: {integrity: sha512-ay1X9AobE4BpzG0XPw1gplyLZPGHIgJOovvW23gUrukRegiUP62uzhpRbKNogLlUOynyXeq//prHgPXiebUfWg==} 275 | cpu: [x64] 276 | os: [win32] 277 | 278 | '@neon-rs/load@0.0.4': 279 | resolution: {integrity: sha512-kTPhdZyTQxB+2wpiRcFWrDcejc4JI6tkPuS7UZCG4l6Zvc5kU/gGQ/ozvHTh1XR5tS+UlfAfGuPajjzQjCiHCw==} 280 | 281 | '@next/env@15.0.0-rc.0': 282 | resolution: {integrity: sha512-6W0ndQvHR9sXcqcKeR/inD2UTRCs9+VkSK3lfaGmEuZs7EjwwXMO2BPYjz9oBrtfPL3xuTjtXsHKSsalYQ5l1Q==} 283 | 284 | '@next/eslint-plugin-next@15.0.0-canary.36': 285 | resolution: {integrity: sha512-e+nAaxXGX5OXx3OVV7zDSAni0mWsBwVu8OPH9p6ZJv8GySDLW15wFEOqlDEgJOcVRQ997ZSn7lSsNGPrbhAWfQ==} 286 | 287 | '@next/swc-darwin-arm64@15.0.0-rc.0': 288 | resolution: {integrity: sha512-4OpTXvAWcSabXA5d688zdUwa3sfT9QrLnHMdpv4q2UDnnuqmOI0xLb6lrOxwpi+vHJNkneuNLqyc5HGBhkqL6A==} 289 | engines: {node: '>= 10'} 290 | cpu: [arm64] 291 | os: [darwin] 292 | 293 | '@next/swc-darwin-x64@15.0.0-rc.0': 294 | resolution: {integrity: sha512-/TD8M9DT244uhtFA8P/0DUbM7ftg2zio6yOo6ajV16vNjkcug9Kt9//Wa4SrJjWcsGZpViLctOlwn3/6JFAuAA==} 295 | engines: {node: '>= 10'} 296 | cpu: [x64] 297 | os: [darwin] 298 | 299 | '@next/swc-linux-arm64-gnu@15.0.0-rc.0': 300 | resolution: {integrity: sha512-3VTO32938AcqOlOI/U61/MIpeYrblP22VU1GrgmMQJozsAXEJgLCgf3wxZtn61/FG4Yc0tp7rPZE2t1fIGe0+w==} 301 | engines: {node: '>= 10'} 302 | cpu: [arm64] 303 | os: [linux] 304 | 305 | '@next/swc-linux-arm64-musl@15.0.0-rc.0': 306 | resolution: {integrity: sha512-0kDnxM3AfrrHFJ/wTkjkv7cVHIaGwv+CzDg9lL2BoLEM4kMQhH20DTsBOMqpTpo1K2KCg67LuTGd3QOITT5uFQ==} 307 | engines: {node: '>= 10'} 308 | cpu: [arm64] 309 | os: [linux] 310 | 311 | '@next/swc-linux-x64-gnu@15.0.0-rc.0': 312 | resolution: {integrity: sha512-fPMNahzqYFjm5h0ncJ5+F3NrShmWhpusM+zrQl01MMU0Ed5xsL4pJJDSuXV4wPkNUSjCP3XstTjxR5kBdO4juQ==} 313 | engines: {node: '>= 10'} 314 | cpu: [x64] 315 | os: [linux] 316 | 317 | '@next/swc-linux-x64-musl@15.0.0-rc.0': 318 | resolution: {integrity: sha512-7/FLgOqrrQAxOVQrxfr3bGgZ83pSCmc2S3TXBILnHw0S8qLxmFjhSjH5ogaDmjrES/PSYMaX1FsP5Af88hp7Gw==} 319 | engines: {node: '>= 10'} 320 | cpu: [x64] 321 | os: [linux] 322 | 323 | '@next/swc-win32-arm64-msvc@15.0.0-rc.0': 324 | resolution: {integrity: sha512-5wcqoYHh7hbdghjH6Xs3i5/f0ov+i1Xw2E3O+BzZNESYVLgCM1q7KJu5gdGFoXA2gz5XaKF/VBcYHikLzyjgmA==} 325 | engines: {node: '>= 10'} 326 | cpu: [arm64] 327 | os: [win32] 328 | 329 | '@next/swc-win32-ia32-msvc@15.0.0-rc.0': 330 | resolution: {integrity: sha512-/hqOmYRTvtBPToE4Dbl9n+sLYU7DPd52R+TtjIrrEzTMgFo2/d7un3sD7GKmb2OwOj/ExyGv6Bd/JzytBVxXlw==} 331 | engines: {node: '>= 10'} 332 | cpu: [ia32] 333 | os: [win32] 334 | 335 | '@next/swc-win32-x64-msvc@15.0.0-rc.0': 336 | resolution: {integrity: sha512-2Jly5nShvCUzzngP3RzdQ3JcuEcHcnIEvkvZDCXqFAK+bWks4+qOkEUO1QIAERQ99J5J9/1AN/8zFBme3Mm57A==} 337 | engines: {node: '>= 10'} 338 | cpu: [x64] 339 | os: [win32] 340 | 341 | '@nodelib/fs.scandir@2.1.5': 342 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 343 | engines: {node: '>= 8'} 344 | 345 | '@nodelib/fs.stat@2.0.5': 346 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 347 | engines: {node: '>= 8'} 348 | 349 | '@nodelib/fs.walk@1.2.8': 350 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 351 | engines: {node: '>= 8'} 352 | 353 | '@pkgjs/parseargs@0.11.0': 354 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 355 | engines: {node: '>=14'} 356 | 357 | '@rushstack/eslint-patch@1.10.3': 358 | resolution: {integrity: sha512-qC/xYId4NMebE6w/V33Fh9gWxLgURiNYgVNObbJl2LZv0GUUItCcCqC5axQSwRaAgaxl2mELq1rMzlswaQ0Zxg==} 359 | 360 | '@swc/helpers@0.5.11': 361 | resolution: {integrity: sha512-YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==} 362 | 363 | '@types/json5@0.0.29': 364 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 365 | 366 | '@types/node@20.14.4': 367 | resolution: {integrity: sha512-1ChboN+57suCT2t/f8lwtPY/k3qTpuD/qnqQuYoBg6OQOcPyaw7PiZVdGpaZYAvhDDtqrt0oAaM8+oSu1xsUGw==} 368 | 369 | '@types/prop-types@15.7.12': 370 | resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} 371 | 372 | '@types/react-dom@18.3.0': 373 | resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} 374 | 375 | '@types/react@18.3.3': 376 | resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==} 377 | 378 | '@types/ws@8.5.10': 379 | resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} 380 | 381 | '@typescript-eslint/parser@7.2.0': 382 | resolution: {integrity: sha512-5FKsVcHTk6TafQKQbuIVkXq58Fnbkd2wDL4LB7AURN7RUOu1utVP+G8+6u3ZhEroW3DF6hyo3ZEXxgKgp4KeCg==} 383 | engines: {node: ^16.0.0 || >=18.0.0} 384 | peerDependencies: 385 | eslint: ^8.56.0 386 | typescript: '*' 387 | peerDependenciesMeta: 388 | typescript: 389 | optional: true 390 | 391 | '@typescript-eslint/scope-manager@7.2.0': 392 | resolution: {integrity: sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==} 393 | engines: {node: ^16.0.0 || >=18.0.0} 394 | 395 | '@typescript-eslint/types@7.2.0': 396 | resolution: {integrity: sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==} 397 | engines: {node: ^16.0.0 || >=18.0.0} 398 | 399 | '@typescript-eslint/typescript-estree@7.2.0': 400 | resolution: {integrity: sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==} 401 | engines: {node: ^16.0.0 || >=18.0.0} 402 | peerDependencies: 403 | typescript: '*' 404 | peerDependenciesMeta: 405 | typescript: 406 | optional: true 407 | 408 | '@typescript-eslint/visitor-keys@7.2.0': 409 | resolution: {integrity: sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==} 410 | engines: {node: ^16.0.0 || >=18.0.0} 411 | 412 | '@ungap/structured-clone@1.2.0': 413 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 414 | 415 | acorn-jsx@5.3.2: 416 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 417 | peerDependencies: 418 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 419 | 420 | acorn@8.12.0: 421 | resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==} 422 | engines: {node: '>=0.4.0'} 423 | hasBin: true 424 | 425 | ajv@6.12.6: 426 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 427 | 428 | ansi-regex@5.0.1: 429 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 430 | engines: {node: '>=8'} 431 | 432 | ansi-regex@6.0.1: 433 | resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} 434 | engines: {node: '>=12'} 435 | 436 | ansi-styles@4.3.0: 437 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 438 | engines: {node: '>=8'} 439 | 440 | ansi-styles@6.2.1: 441 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 442 | engines: {node: '>=12'} 443 | 444 | any-promise@1.3.0: 445 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 446 | 447 | anymatch@3.1.3: 448 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 449 | engines: {node: '>= 8'} 450 | 451 | arg@5.0.2: 452 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 453 | 454 | argparse@2.0.1: 455 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 456 | 457 | aria-query@5.3.0: 458 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} 459 | 460 | array-buffer-byte-length@1.0.1: 461 | resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} 462 | engines: {node: '>= 0.4'} 463 | 464 | array-includes@3.1.8: 465 | resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} 466 | engines: {node: '>= 0.4'} 467 | 468 | array-union@2.1.0: 469 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 470 | engines: {node: '>=8'} 471 | 472 | array.prototype.findlast@1.2.5: 473 | resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} 474 | engines: {node: '>= 0.4'} 475 | 476 | array.prototype.findlastindex@1.2.5: 477 | resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} 478 | engines: {node: '>= 0.4'} 479 | 480 | array.prototype.flat@1.3.2: 481 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} 482 | engines: {node: '>= 0.4'} 483 | 484 | array.prototype.flatmap@1.3.2: 485 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} 486 | engines: {node: '>= 0.4'} 487 | 488 | array.prototype.toreversed@1.1.2: 489 | resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} 490 | 491 | array.prototype.tosorted@1.1.4: 492 | resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} 493 | engines: {node: '>= 0.4'} 494 | 495 | arraybuffer.prototype.slice@1.0.3: 496 | resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} 497 | engines: {node: '>= 0.4'} 498 | 499 | ast-types-flow@0.0.8: 500 | resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} 501 | 502 | available-typed-arrays@1.0.7: 503 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 504 | engines: {node: '>= 0.4'} 505 | 506 | axe-core@4.7.0: 507 | resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} 508 | engines: {node: '>=4'} 509 | 510 | axobject-query@3.2.1: 511 | resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} 512 | 513 | balanced-match@1.0.2: 514 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 515 | 516 | binary-extensions@2.3.0: 517 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 518 | engines: {node: '>=8'} 519 | 520 | brace-expansion@1.1.11: 521 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 522 | 523 | brace-expansion@2.0.1: 524 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 525 | 526 | braces@3.0.3: 527 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 528 | engines: {node: '>=8'} 529 | 530 | busboy@1.6.0: 531 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 532 | engines: {node: '>=10.16.0'} 533 | 534 | call-bind@1.0.7: 535 | resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} 536 | engines: {node: '>= 0.4'} 537 | 538 | callsites@3.1.0: 539 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 540 | engines: {node: '>=6'} 541 | 542 | camelcase-css@2.0.1: 543 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 544 | engines: {node: '>= 6'} 545 | 546 | caniuse-lite@1.0.30001636: 547 | resolution: {integrity: sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==} 548 | 549 | chalk@4.1.2: 550 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 551 | engines: {node: '>=10'} 552 | 553 | chokidar@3.6.0: 554 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 555 | engines: {node: '>= 8.10.0'} 556 | 557 | client-only@0.0.1: 558 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} 559 | 560 | color-convert@2.0.1: 561 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 562 | engines: {node: '>=7.0.0'} 563 | 564 | color-name@1.1.4: 565 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 566 | 567 | color-string@1.9.1: 568 | resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} 569 | 570 | color@4.2.3: 571 | resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} 572 | engines: {node: '>=12.5.0'} 573 | 574 | commander@4.1.1: 575 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 576 | engines: {node: '>= 6'} 577 | 578 | concat-map@0.0.1: 579 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 580 | 581 | cross-spawn@7.0.3: 582 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 583 | engines: {node: '>= 8'} 584 | 585 | cssesc@3.0.0: 586 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 587 | engines: {node: '>=4'} 588 | hasBin: true 589 | 590 | csstype@3.1.3: 591 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 592 | 593 | damerau-levenshtein@1.0.8: 594 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 595 | 596 | data-uri-to-buffer@4.0.1: 597 | resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} 598 | engines: {node: '>= 12'} 599 | 600 | data-view-buffer@1.0.1: 601 | resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} 602 | engines: {node: '>= 0.4'} 603 | 604 | data-view-byte-length@1.0.1: 605 | resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} 606 | engines: {node: '>= 0.4'} 607 | 608 | data-view-byte-offset@1.0.0: 609 | resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} 610 | engines: {node: '>= 0.4'} 611 | 612 | debug@3.2.7: 613 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 614 | peerDependencies: 615 | supports-color: '*' 616 | peerDependenciesMeta: 617 | supports-color: 618 | optional: true 619 | 620 | debug@4.3.5: 621 | resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} 622 | engines: {node: '>=6.0'} 623 | peerDependencies: 624 | supports-color: '*' 625 | peerDependenciesMeta: 626 | supports-color: 627 | optional: true 628 | 629 | deep-is@0.1.4: 630 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 631 | 632 | define-data-property@1.1.4: 633 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 634 | engines: {node: '>= 0.4'} 635 | 636 | define-properties@1.2.1: 637 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 638 | engines: {node: '>= 0.4'} 639 | 640 | dequal@2.0.3: 641 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 642 | engines: {node: '>=6'} 643 | 644 | detect-libc@2.0.2: 645 | resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==} 646 | engines: {node: '>=8'} 647 | 648 | detect-libc@2.0.3: 649 | resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} 650 | engines: {node: '>=8'} 651 | 652 | didyoumean@1.2.2: 653 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 654 | 655 | dir-glob@3.0.1: 656 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 657 | engines: {node: '>=8'} 658 | 659 | dlv@1.1.3: 660 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 661 | 662 | doctrine@2.1.0: 663 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 664 | engines: {node: '>=0.10.0'} 665 | 666 | doctrine@3.0.0: 667 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 668 | engines: {node: '>=6.0.0'} 669 | 670 | eastasianwidth@0.2.0: 671 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 672 | 673 | emoji-regex@8.0.0: 674 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 675 | 676 | emoji-regex@9.2.2: 677 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 678 | 679 | enhanced-resolve@5.17.0: 680 | resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==} 681 | engines: {node: '>=10.13.0'} 682 | 683 | es-abstract@1.23.3: 684 | resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} 685 | engines: {node: '>= 0.4'} 686 | 687 | es-define-property@1.0.0: 688 | resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} 689 | engines: {node: '>= 0.4'} 690 | 691 | es-errors@1.3.0: 692 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 693 | engines: {node: '>= 0.4'} 694 | 695 | es-iterator-helpers@1.0.19: 696 | resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==} 697 | engines: {node: '>= 0.4'} 698 | 699 | es-object-atoms@1.0.0: 700 | resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} 701 | engines: {node: '>= 0.4'} 702 | 703 | es-set-tostringtag@2.0.3: 704 | resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} 705 | engines: {node: '>= 0.4'} 706 | 707 | es-shim-unscopables@1.0.2: 708 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 709 | 710 | es-to-primitive@1.2.1: 711 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 712 | engines: {node: '>= 0.4'} 713 | 714 | escape-string-regexp@4.0.0: 715 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 716 | engines: {node: '>=10'} 717 | 718 | eslint-config-next@15.0.0-canary.36: 719 | resolution: {integrity: sha512-tSHB3+DEefRv6qVqysW0m7dplatzcyZdgpTSq+6pV5JBsFlIx3grdYxxQrRlTOxZl7+pH6G6hhhZDUMmQcQYEA==} 720 | peerDependencies: 721 | eslint: ^7.23.0 || ^8.0.0 722 | typescript: '>=3.3.1' 723 | peerDependenciesMeta: 724 | typescript: 725 | optional: true 726 | 727 | eslint-import-resolver-node@0.3.9: 728 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 729 | 730 | eslint-import-resolver-typescript@3.6.1: 731 | resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} 732 | engines: {node: ^14.18.0 || >=16.0.0} 733 | peerDependencies: 734 | eslint: '*' 735 | eslint-plugin-import: '*' 736 | 737 | eslint-module-utils@2.8.1: 738 | resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} 739 | engines: {node: '>=4'} 740 | peerDependencies: 741 | '@typescript-eslint/parser': '*' 742 | eslint: '*' 743 | eslint-import-resolver-node: '*' 744 | eslint-import-resolver-typescript: '*' 745 | eslint-import-resolver-webpack: '*' 746 | peerDependenciesMeta: 747 | '@typescript-eslint/parser': 748 | optional: true 749 | eslint: 750 | optional: true 751 | eslint-import-resolver-node: 752 | optional: true 753 | eslint-import-resolver-typescript: 754 | optional: true 755 | eslint-import-resolver-webpack: 756 | optional: true 757 | 758 | eslint-plugin-import@2.29.1: 759 | resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} 760 | engines: {node: '>=4'} 761 | peerDependencies: 762 | '@typescript-eslint/parser': '*' 763 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 764 | peerDependenciesMeta: 765 | '@typescript-eslint/parser': 766 | optional: true 767 | 768 | eslint-plugin-jsx-a11y@6.8.0: 769 | resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} 770 | engines: {node: '>=4.0'} 771 | peerDependencies: 772 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 773 | 774 | eslint-plugin-react-hooks@4.6.2: 775 | resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} 776 | engines: {node: '>=10'} 777 | peerDependencies: 778 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 779 | 780 | eslint-plugin-react@7.34.2: 781 | resolution: {integrity: sha512-2HCmrU+/JNigDN6tg55cRDKCQWicYAPB38JGSFDQt95jDm8rrvSUo7YPkOIm5l6ts1j1zCvysNcasvfTMQzUOw==} 782 | engines: {node: '>=4'} 783 | peerDependencies: 784 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 785 | 786 | eslint-scope@7.2.2: 787 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 788 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 789 | 790 | eslint-visitor-keys@3.4.3: 791 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 792 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 793 | 794 | eslint@8.57.0: 795 | resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} 796 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 797 | hasBin: true 798 | 799 | espree@9.6.1: 800 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 801 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 802 | 803 | esquery@1.5.0: 804 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 805 | engines: {node: '>=0.10'} 806 | 807 | esrecurse@4.3.0: 808 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 809 | engines: {node: '>=4.0'} 810 | 811 | estraverse@5.3.0: 812 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 813 | engines: {node: '>=4.0'} 814 | 815 | esutils@2.0.3: 816 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 817 | engines: {node: '>=0.10.0'} 818 | 819 | fast-deep-equal@3.1.3: 820 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 821 | 822 | fast-glob@3.3.2: 823 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 824 | engines: {node: '>=8.6.0'} 825 | 826 | fast-json-stable-stringify@2.1.0: 827 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 828 | 829 | fast-levenshtein@2.0.6: 830 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 831 | 832 | fastq@1.17.1: 833 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 834 | 835 | fetch-blob@3.2.0: 836 | resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} 837 | engines: {node: ^12.20 || >= 14.13} 838 | 839 | file-entry-cache@6.0.1: 840 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 841 | engines: {node: ^10.12.0 || >=12.0.0} 842 | 843 | fill-range@7.1.1: 844 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 845 | engines: {node: '>=8'} 846 | 847 | find-up@5.0.0: 848 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 849 | engines: {node: '>=10'} 850 | 851 | flat-cache@3.2.0: 852 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} 853 | engines: {node: ^10.12.0 || >=12.0.0} 854 | 855 | flatted@3.3.1: 856 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} 857 | 858 | for-each@0.3.3: 859 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 860 | 861 | foreground-child@3.2.1: 862 | resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==} 863 | engines: {node: '>=14'} 864 | 865 | formdata-polyfill@4.0.10: 866 | resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} 867 | engines: {node: '>=12.20.0'} 868 | 869 | fs.realpath@1.0.0: 870 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 871 | 872 | fsevents@2.3.3: 873 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 874 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 875 | os: [darwin] 876 | 877 | function-bind@1.1.2: 878 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 879 | 880 | function.prototype.name@1.1.6: 881 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} 882 | engines: {node: '>= 0.4'} 883 | 884 | functions-have-names@1.2.3: 885 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 886 | 887 | get-intrinsic@1.2.4: 888 | resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} 889 | engines: {node: '>= 0.4'} 890 | 891 | get-symbol-description@1.0.2: 892 | resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} 893 | engines: {node: '>= 0.4'} 894 | 895 | get-tsconfig@4.7.5: 896 | resolution: {integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==} 897 | 898 | glob-parent@5.1.2: 899 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 900 | engines: {node: '>= 6'} 901 | 902 | glob-parent@6.0.2: 903 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 904 | engines: {node: '>=10.13.0'} 905 | 906 | glob@10.3.10: 907 | resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} 908 | engines: {node: '>=16 || 14 >=14.17'} 909 | hasBin: true 910 | 911 | glob@10.4.1: 912 | resolution: {integrity: sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==} 913 | engines: {node: '>=16 || 14 >=14.18'} 914 | hasBin: true 915 | 916 | glob@7.2.3: 917 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 918 | deprecated: Glob versions prior to v9 are no longer supported 919 | 920 | globals@13.24.0: 921 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 922 | engines: {node: '>=8'} 923 | 924 | globalthis@1.0.4: 925 | resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} 926 | engines: {node: '>= 0.4'} 927 | 928 | globby@11.1.0: 929 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 930 | engines: {node: '>=10'} 931 | 932 | gopd@1.0.1: 933 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 934 | 935 | graceful-fs@4.2.11: 936 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 937 | 938 | graphemer@1.4.0: 939 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 940 | 941 | has-bigints@1.0.2: 942 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 943 | 944 | has-flag@4.0.0: 945 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 946 | engines: {node: '>=8'} 947 | 948 | has-property-descriptors@1.0.2: 949 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 950 | 951 | has-proto@1.0.3: 952 | resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} 953 | engines: {node: '>= 0.4'} 954 | 955 | has-symbols@1.0.3: 956 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 957 | engines: {node: '>= 0.4'} 958 | 959 | has-tostringtag@1.0.2: 960 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 961 | engines: {node: '>= 0.4'} 962 | 963 | hasown@2.0.2: 964 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 965 | engines: {node: '>= 0.4'} 966 | 967 | ignore@5.3.1: 968 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} 969 | engines: {node: '>= 4'} 970 | 971 | import-fresh@3.3.0: 972 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 973 | engines: {node: '>=6'} 974 | 975 | imurmurhash@0.1.4: 976 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 977 | engines: {node: '>=0.8.19'} 978 | 979 | inflight@1.0.6: 980 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 981 | deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. 982 | 983 | inherits@2.0.4: 984 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 985 | 986 | internal-slot@1.0.7: 987 | resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} 988 | engines: {node: '>= 0.4'} 989 | 990 | is-array-buffer@3.0.4: 991 | resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} 992 | engines: {node: '>= 0.4'} 993 | 994 | is-arrayish@0.3.2: 995 | resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} 996 | 997 | is-async-function@2.0.0: 998 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} 999 | engines: {node: '>= 0.4'} 1000 | 1001 | is-bigint@1.0.4: 1002 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 1003 | 1004 | is-binary-path@2.1.0: 1005 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 1006 | engines: {node: '>=8'} 1007 | 1008 | is-boolean-object@1.1.2: 1009 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 1010 | engines: {node: '>= 0.4'} 1011 | 1012 | is-callable@1.2.7: 1013 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1014 | engines: {node: '>= 0.4'} 1015 | 1016 | is-core-module@2.13.1: 1017 | resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} 1018 | 1019 | is-data-view@1.0.1: 1020 | resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} 1021 | engines: {node: '>= 0.4'} 1022 | 1023 | is-date-object@1.0.5: 1024 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 1025 | engines: {node: '>= 0.4'} 1026 | 1027 | is-extglob@2.1.1: 1028 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1029 | engines: {node: '>=0.10.0'} 1030 | 1031 | is-finalizationregistry@1.0.2: 1032 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} 1033 | 1034 | is-fullwidth-code-point@3.0.0: 1035 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1036 | engines: {node: '>=8'} 1037 | 1038 | is-generator-function@1.0.10: 1039 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} 1040 | engines: {node: '>= 0.4'} 1041 | 1042 | is-glob@4.0.3: 1043 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1044 | engines: {node: '>=0.10.0'} 1045 | 1046 | is-map@2.0.3: 1047 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 1048 | engines: {node: '>= 0.4'} 1049 | 1050 | is-negative-zero@2.0.3: 1051 | resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} 1052 | engines: {node: '>= 0.4'} 1053 | 1054 | is-number-object@1.0.7: 1055 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 1056 | engines: {node: '>= 0.4'} 1057 | 1058 | is-number@7.0.0: 1059 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1060 | engines: {node: '>=0.12.0'} 1061 | 1062 | is-path-inside@3.0.3: 1063 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 1064 | engines: {node: '>=8'} 1065 | 1066 | is-regex@1.1.4: 1067 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 1068 | engines: {node: '>= 0.4'} 1069 | 1070 | is-set@2.0.3: 1071 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} 1072 | engines: {node: '>= 0.4'} 1073 | 1074 | is-shared-array-buffer@1.0.3: 1075 | resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} 1076 | engines: {node: '>= 0.4'} 1077 | 1078 | is-string@1.0.7: 1079 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 1080 | engines: {node: '>= 0.4'} 1081 | 1082 | is-symbol@1.0.4: 1083 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 1084 | engines: {node: '>= 0.4'} 1085 | 1086 | is-typed-array@1.1.13: 1087 | resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} 1088 | engines: {node: '>= 0.4'} 1089 | 1090 | is-weakmap@2.0.2: 1091 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} 1092 | engines: {node: '>= 0.4'} 1093 | 1094 | is-weakref@1.0.2: 1095 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 1096 | 1097 | is-weakset@2.0.3: 1098 | resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} 1099 | engines: {node: '>= 0.4'} 1100 | 1101 | isarray@2.0.5: 1102 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 1103 | 1104 | isexe@2.0.0: 1105 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1106 | 1107 | iterator.prototype@1.1.2: 1108 | resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} 1109 | 1110 | jackspeak@2.3.6: 1111 | resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} 1112 | engines: {node: '>=14'} 1113 | 1114 | jackspeak@3.4.0: 1115 | resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==} 1116 | engines: {node: '>=14'} 1117 | 1118 | jiti@1.21.6: 1119 | resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} 1120 | hasBin: true 1121 | 1122 | js-base64@3.7.7: 1123 | resolution: {integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==} 1124 | 1125 | js-tokens@4.0.0: 1126 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1127 | 1128 | js-yaml@4.1.0: 1129 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1130 | hasBin: true 1131 | 1132 | json-buffer@3.0.1: 1133 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1134 | 1135 | json-schema-traverse@0.4.1: 1136 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1137 | 1138 | json-stable-stringify-without-jsonify@1.0.1: 1139 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1140 | 1141 | json5@1.0.2: 1142 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 1143 | hasBin: true 1144 | 1145 | jsx-ast-utils@3.3.5: 1146 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} 1147 | engines: {node: '>=4.0'} 1148 | 1149 | keyv@4.5.4: 1150 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1151 | 1152 | language-subtag-registry@0.3.23: 1153 | resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} 1154 | 1155 | language-tags@1.0.9: 1156 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} 1157 | engines: {node: '>=0.10'} 1158 | 1159 | levn@0.4.1: 1160 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1161 | engines: {node: '>= 0.8.0'} 1162 | 1163 | libsql@0.3.19: 1164 | resolution: {integrity: sha512-Aj5cQ5uk/6fHdmeW0TiXK42FqUlwx7ytmMLPSaUQPin5HKKKuUPD62MAbN4OEweGBBI7q1BekoEN4gPUEL6MZA==} 1165 | os: [darwin, linux, win32] 1166 | 1167 | lilconfig@2.1.0: 1168 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 1169 | engines: {node: '>=10'} 1170 | 1171 | lilconfig@3.1.2: 1172 | resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} 1173 | engines: {node: '>=14'} 1174 | 1175 | lines-and-columns@1.2.4: 1176 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1177 | 1178 | locate-path@6.0.0: 1179 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1180 | engines: {node: '>=10'} 1181 | 1182 | lodash.merge@4.6.2: 1183 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1184 | 1185 | loose-envify@1.4.0: 1186 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 1187 | hasBin: true 1188 | 1189 | lru-cache@10.2.2: 1190 | resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==} 1191 | engines: {node: 14 || >=16.14} 1192 | 1193 | merge2@1.4.1: 1194 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1195 | engines: {node: '>= 8'} 1196 | 1197 | micromatch@4.0.7: 1198 | resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} 1199 | engines: {node: '>=8.6'} 1200 | 1201 | minimatch@3.1.2: 1202 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1203 | 1204 | minimatch@9.0.3: 1205 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} 1206 | engines: {node: '>=16 || 14 >=14.17'} 1207 | 1208 | minimatch@9.0.4: 1209 | resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} 1210 | engines: {node: '>=16 || 14 >=14.17'} 1211 | 1212 | minimist@1.2.8: 1213 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1214 | 1215 | minipass@7.1.2: 1216 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 1217 | engines: {node: '>=16 || 14 >=14.17'} 1218 | 1219 | ms@2.1.2: 1220 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 1221 | 1222 | ms@2.1.3: 1223 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1224 | 1225 | mz@2.7.0: 1226 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 1227 | 1228 | nanoid@3.3.7: 1229 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 1230 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1231 | hasBin: true 1232 | 1233 | natural-compare@1.4.0: 1234 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1235 | 1236 | next@15.0.0-rc.0: 1237 | resolution: {integrity: sha512-IWcCvxUSCAuOK5gig4+9yiyt/dLKpIa+WT01Qcx4CBE4TtwJljyTDnCVVn64jDZ4qmSzsaEYXpb4DTI8qbk03A==} 1238 | engines: {node: '>=18.17.0'} 1239 | hasBin: true 1240 | peerDependencies: 1241 | '@opentelemetry/api': ^1.1.0 1242 | '@playwright/test': ^1.41.2 1243 | babel-plugin-react-compiler: '*' 1244 | react: 19.0.0-rc-f994737d14-20240522 1245 | react-dom: 19.0.0-rc-f994737d14-20240522 1246 | sass: ^1.3.0 1247 | peerDependenciesMeta: 1248 | '@opentelemetry/api': 1249 | optional: true 1250 | '@playwright/test': 1251 | optional: true 1252 | babel-plugin-react-compiler: 1253 | optional: true 1254 | sass: 1255 | optional: true 1256 | 1257 | node-domexception@1.0.0: 1258 | resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} 1259 | engines: {node: '>=10.5.0'} 1260 | 1261 | node-fetch@3.3.2: 1262 | resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} 1263 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1264 | 1265 | normalize-path@3.0.0: 1266 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1267 | engines: {node: '>=0.10.0'} 1268 | 1269 | object-assign@4.1.1: 1270 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1271 | engines: {node: '>=0.10.0'} 1272 | 1273 | object-hash@3.0.0: 1274 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 1275 | engines: {node: '>= 6'} 1276 | 1277 | object-inspect@1.13.1: 1278 | resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} 1279 | 1280 | object-keys@1.1.1: 1281 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1282 | engines: {node: '>= 0.4'} 1283 | 1284 | object.assign@4.1.5: 1285 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} 1286 | engines: {node: '>= 0.4'} 1287 | 1288 | object.entries@1.1.8: 1289 | resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} 1290 | engines: {node: '>= 0.4'} 1291 | 1292 | object.fromentries@2.0.8: 1293 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} 1294 | engines: {node: '>= 0.4'} 1295 | 1296 | object.groupby@1.0.3: 1297 | resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} 1298 | engines: {node: '>= 0.4'} 1299 | 1300 | object.hasown@1.1.4: 1301 | resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} 1302 | engines: {node: '>= 0.4'} 1303 | 1304 | object.values@1.2.0: 1305 | resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} 1306 | engines: {node: '>= 0.4'} 1307 | 1308 | once@1.4.0: 1309 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1310 | 1311 | optionator@0.9.4: 1312 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1313 | engines: {node: '>= 0.8.0'} 1314 | 1315 | p-limit@3.1.0: 1316 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1317 | engines: {node: '>=10'} 1318 | 1319 | p-locate@5.0.0: 1320 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1321 | engines: {node: '>=10'} 1322 | 1323 | parent-module@1.0.1: 1324 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1325 | engines: {node: '>=6'} 1326 | 1327 | path-exists@4.0.0: 1328 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1329 | engines: {node: '>=8'} 1330 | 1331 | path-is-absolute@1.0.1: 1332 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 1333 | engines: {node: '>=0.10.0'} 1334 | 1335 | path-key@3.1.1: 1336 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1337 | engines: {node: '>=8'} 1338 | 1339 | path-parse@1.0.7: 1340 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1341 | 1342 | path-scurry@1.11.1: 1343 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} 1344 | engines: {node: '>=16 || 14 >=14.18'} 1345 | 1346 | path-type@4.0.0: 1347 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 1348 | engines: {node: '>=8'} 1349 | 1350 | picocolors@1.0.1: 1351 | resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} 1352 | 1353 | picomatch@2.3.1: 1354 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1355 | engines: {node: '>=8.6'} 1356 | 1357 | pify@2.3.0: 1358 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 1359 | engines: {node: '>=0.10.0'} 1360 | 1361 | pirates@4.0.6: 1362 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 1363 | engines: {node: '>= 6'} 1364 | 1365 | possible-typed-array-names@1.0.0: 1366 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} 1367 | engines: {node: '>= 0.4'} 1368 | 1369 | postcss-import@15.1.0: 1370 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 1371 | engines: {node: '>=14.0.0'} 1372 | peerDependencies: 1373 | postcss: ^8.0.0 1374 | 1375 | postcss-js@4.0.1: 1376 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 1377 | engines: {node: ^12 || ^14 || >= 16} 1378 | peerDependencies: 1379 | postcss: ^8.4.21 1380 | 1381 | postcss-load-config@4.0.2: 1382 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} 1383 | engines: {node: '>= 14'} 1384 | peerDependencies: 1385 | postcss: '>=8.0.9' 1386 | ts-node: '>=9.0.0' 1387 | peerDependenciesMeta: 1388 | postcss: 1389 | optional: true 1390 | ts-node: 1391 | optional: true 1392 | 1393 | postcss-nested@6.0.1: 1394 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} 1395 | engines: {node: '>=12.0'} 1396 | peerDependencies: 1397 | postcss: ^8.2.14 1398 | 1399 | postcss-selector-parser@6.1.0: 1400 | resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==} 1401 | engines: {node: '>=4'} 1402 | 1403 | postcss-value-parser@4.2.0: 1404 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 1405 | 1406 | postcss@8.4.31: 1407 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} 1408 | engines: {node: ^10 || ^12 || >=14} 1409 | 1410 | postcss@8.4.38: 1411 | resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} 1412 | engines: {node: ^10 || ^12 || >=14} 1413 | 1414 | prelude-ls@1.2.1: 1415 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1416 | engines: {node: '>= 0.8.0'} 1417 | 1418 | prop-types@15.8.1: 1419 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 1420 | 1421 | punycode@2.3.1: 1422 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1423 | engines: {node: '>=6'} 1424 | 1425 | queue-microtask@1.2.3: 1426 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1427 | 1428 | react-dom@19.0.0-rc.0: 1429 | resolution: {integrity: sha512-MhgN2RMYFUkZekkFbsXg9ycwEGaMBzATpTNvGGvWNA9BZZEkdzIL4pv7iDuZKn48YoGARk8ydu4S+Ehd8Yrc4g==} 1430 | peerDependencies: 1431 | react: 19.0.0-rc.0 1432 | 1433 | react-is@16.13.1: 1434 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 1435 | 1436 | react@19.0.0-rc.0: 1437 | resolution: {integrity: sha512-8nrDCl5uE54FHeKqKrEO0TS+10bT4cxutJGb2okiJc0FHMQ6I3FeItaqly/1nbijlhSO3HmAVyPIexIQQWYAtQ==} 1438 | engines: {node: '>=0.10.0'} 1439 | 1440 | read-cache@1.0.0: 1441 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 1442 | 1443 | readdirp@3.6.0: 1444 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 1445 | engines: {node: '>=8.10.0'} 1446 | 1447 | reflect.getprototypeof@1.0.6: 1448 | resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} 1449 | engines: {node: '>= 0.4'} 1450 | 1451 | regenerator-runtime@0.14.1: 1452 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 1453 | 1454 | regexp.prototype.flags@1.5.2: 1455 | resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} 1456 | engines: {node: '>= 0.4'} 1457 | 1458 | resolve-from@4.0.0: 1459 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1460 | engines: {node: '>=4'} 1461 | 1462 | resolve-pkg-maps@1.0.0: 1463 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 1464 | 1465 | resolve@1.22.8: 1466 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 1467 | hasBin: true 1468 | 1469 | resolve@2.0.0-next.5: 1470 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 1471 | hasBin: true 1472 | 1473 | reusify@1.0.4: 1474 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1475 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1476 | 1477 | rimraf@3.0.2: 1478 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 1479 | deprecated: Rimraf versions prior to v4 are no longer supported 1480 | hasBin: true 1481 | 1482 | run-parallel@1.2.0: 1483 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1484 | 1485 | safe-array-concat@1.1.2: 1486 | resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} 1487 | engines: {node: '>=0.4'} 1488 | 1489 | safe-regex-test@1.0.3: 1490 | resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} 1491 | engines: {node: '>= 0.4'} 1492 | 1493 | scheduler@0.25.0-rc.0: 1494 | resolution: {integrity: sha512-B3aSqMfoRkucM94MztZD1CyNyf68W9A3dL/TT453G6uNcxMBqGQ+rhFKyxNnWH/mfRHlGBr0tF0F472JCETH4g==} 1495 | 1496 | semver@6.3.1: 1497 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 1498 | hasBin: true 1499 | 1500 | semver@7.6.2: 1501 | resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} 1502 | engines: {node: '>=10'} 1503 | hasBin: true 1504 | 1505 | set-function-length@1.2.2: 1506 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 1507 | engines: {node: '>= 0.4'} 1508 | 1509 | set-function-name@2.0.2: 1510 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 1511 | engines: {node: '>= 0.4'} 1512 | 1513 | sharp@0.33.4: 1514 | resolution: {integrity: sha512-7i/dt5kGl7qR4gwPRD2biwD2/SvBn3O04J77XKFgL2OnZtQw+AG9wnuS/csmu80nPRHLYE9E41fyEiG8nhH6/Q==} 1515 | engines: {libvips: '>=8.15.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1516 | 1517 | shebang-command@2.0.0: 1518 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1519 | engines: {node: '>=8'} 1520 | 1521 | shebang-regex@3.0.0: 1522 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1523 | engines: {node: '>=8'} 1524 | 1525 | side-channel@1.0.6: 1526 | resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} 1527 | engines: {node: '>= 0.4'} 1528 | 1529 | signal-exit@4.1.0: 1530 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 1531 | engines: {node: '>=14'} 1532 | 1533 | simple-swizzle@0.2.2: 1534 | resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} 1535 | 1536 | slash@3.0.0: 1537 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 1538 | engines: {node: '>=8'} 1539 | 1540 | source-map-js@1.2.0: 1541 | resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} 1542 | engines: {node: '>=0.10.0'} 1543 | 1544 | streamsearch@1.1.0: 1545 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 1546 | engines: {node: '>=10.0.0'} 1547 | 1548 | string-width@4.2.3: 1549 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1550 | engines: {node: '>=8'} 1551 | 1552 | string-width@5.1.2: 1553 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 1554 | engines: {node: '>=12'} 1555 | 1556 | string.prototype.matchall@4.0.11: 1557 | resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} 1558 | engines: {node: '>= 0.4'} 1559 | 1560 | string.prototype.trim@1.2.9: 1561 | resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} 1562 | engines: {node: '>= 0.4'} 1563 | 1564 | string.prototype.trimend@1.0.8: 1565 | resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} 1566 | 1567 | string.prototype.trimstart@1.0.8: 1568 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} 1569 | engines: {node: '>= 0.4'} 1570 | 1571 | strip-ansi@6.0.1: 1572 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1573 | engines: {node: '>=8'} 1574 | 1575 | strip-ansi@7.1.0: 1576 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 1577 | engines: {node: '>=12'} 1578 | 1579 | strip-bom@3.0.0: 1580 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 1581 | engines: {node: '>=4'} 1582 | 1583 | strip-json-comments@3.1.1: 1584 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1585 | engines: {node: '>=8'} 1586 | 1587 | styled-jsx@5.1.3: 1588 | resolution: {integrity: sha512-qLRShOWTE/Mf6Bvl72kFeKBl8N2Eq9WIFfoAuvbtP/6tqlnj1SCjv117n2MIjOPpa1jTorYqLJgsHKy5Y3ziww==} 1589 | engines: {node: '>= 12.0.0'} 1590 | peerDependencies: 1591 | '@babel/core': '*' 1592 | babel-plugin-macros: '*' 1593 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0' 1594 | peerDependenciesMeta: 1595 | '@babel/core': 1596 | optional: true 1597 | babel-plugin-macros: 1598 | optional: true 1599 | 1600 | sucrase@3.35.0: 1601 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} 1602 | engines: {node: '>=16 || 14 >=14.17'} 1603 | hasBin: true 1604 | 1605 | supports-color@7.2.0: 1606 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1607 | engines: {node: '>=8'} 1608 | 1609 | supports-preserve-symlinks-flag@1.0.0: 1610 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1611 | engines: {node: '>= 0.4'} 1612 | 1613 | tailwindcss@3.4.4: 1614 | resolution: {integrity: sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==} 1615 | engines: {node: '>=14.0.0'} 1616 | hasBin: true 1617 | 1618 | tapable@2.2.1: 1619 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 1620 | engines: {node: '>=6'} 1621 | 1622 | text-table@0.2.0: 1623 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 1624 | 1625 | thenify-all@1.6.0: 1626 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 1627 | engines: {node: '>=0.8'} 1628 | 1629 | thenify@3.3.1: 1630 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 1631 | 1632 | to-regex-range@5.0.1: 1633 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1634 | engines: {node: '>=8.0'} 1635 | 1636 | ts-api-utils@1.3.0: 1637 | resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} 1638 | engines: {node: '>=16'} 1639 | peerDependencies: 1640 | typescript: '>=4.2.0' 1641 | 1642 | ts-interface-checker@0.1.13: 1643 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 1644 | 1645 | tsconfig-paths@3.15.0: 1646 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} 1647 | 1648 | tslib@2.6.3: 1649 | resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} 1650 | 1651 | type-check@0.4.0: 1652 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1653 | engines: {node: '>= 0.8.0'} 1654 | 1655 | type-fest@0.20.2: 1656 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 1657 | engines: {node: '>=10'} 1658 | 1659 | typed-array-buffer@1.0.2: 1660 | resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} 1661 | engines: {node: '>= 0.4'} 1662 | 1663 | typed-array-byte-length@1.0.1: 1664 | resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} 1665 | engines: {node: '>= 0.4'} 1666 | 1667 | typed-array-byte-offset@1.0.2: 1668 | resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} 1669 | engines: {node: '>= 0.4'} 1670 | 1671 | typed-array-length@1.0.6: 1672 | resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} 1673 | engines: {node: '>= 0.4'} 1674 | 1675 | typescript@5.4.5: 1676 | resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} 1677 | engines: {node: '>=14.17'} 1678 | hasBin: true 1679 | 1680 | unbox-primitive@1.0.2: 1681 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 1682 | 1683 | undici-types@5.26.5: 1684 | resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} 1685 | 1686 | uri-js@4.4.1: 1687 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1688 | 1689 | util-deprecate@1.0.2: 1690 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1691 | 1692 | web-streams-polyfill@3.3.3: 1693 | resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} 1694 | engines: {node: '>= 8'} 1695 | 1696 | which-boxed-primitive@1.0.2: 1697 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 1698 | 1699 | which-builtin-type@1.1.3: 1700 | resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} 1701 | engines: {node: '>= 0.4'} 1702 | 1703 | which-collection@1.0.2: 1704 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} 1705 | engines: {node: '>= 0.4'} 1706 | 1707 | which-typed-array@1.1.15: 1708 | resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} 1709 | engines: {node: '>= 0.4'} 1710 | 1711 | which@2.0.2: 1712 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1713 | engines: {node: '>= 8'} 1714 | hasBin: true 1715 | 1716 | word-wrap@1.2.5: 1717 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 1718 | engines: {node: '>=0.10.0'} 1719 | 1720 | wrap-ansi@7.0.0: 1721 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 1722 | engines: {node: '>=10'} 1723 | 1724 | wrap-ansi@8.1.0: 1725 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 1726 | engines: {node: '>=12'} 1727 | 1728 | wrappy@1.0.2: 1729 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 1730 | 1731 | ws@8.17.1: 1732 | resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} 1733 | engines: {node: '>=10.0.0'} 1734 | peerDependencies: 1735 | bufferutil: ^4.0.1 1736 | utf-8-validate: '>=5.0.2' 1737 | peerDependenciesMeta: 1738 | bufferutil: 1739 | optional: true 1740 | utf-8-validate: 1741 | optional: true 1742 | 1743 | yaml@2.4.5: 1744 | resolution: {integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==} 1745 | engines: {node: '>= 14'} 1746 | hasBin: true 1747 | 1748 | yocto-queue@0.1.0: 1749 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1750 | engines: {node: '>=10'} 1751 | 1752 | snapshots: 1753 | 1754 | '@alloc/quick-lru@5.2.0': {} 1755 | 1756 | '@babel/runtime@7.24.7': 1757 | dependencies: 1758 | regenerator-runtime: 0.14.1 1759 | 1760 | '@emnapi/runtime@1.2.0': 1761 | dependencies: 1762 | tslib: 2.6.3 1763 | optional: true 1764 | 1765 | '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)': 1766 | dependencies: 1767 | eslint: 8.57.0 1768 | eslint-visitor-keys: 3.4.3 1769 | 1770 | '@eslint-community/regexpp@4.10.1': {} 1771 | 1772 | '@eslint/eslintrc@2.1.4': 1773 | dependencies: 1774 | ajv: 6.12.6 1775 | debug: 4.3.5 1776 | espree: 9.6.1 1777 | globals: 13.24.0 1778 | ignore: 5.3.1 1779 | import-fresh: 3.3.0 1780 | js-yaml: 4.1.0 1781 | minimatch: 3.1.2 1782 | strip-json-comments: 3.1.1 1783 | transitivePeerDependencies: 1784 | - supports-color 1785 | 1786 | '@eslint/js@8.57.0': {} 1787 | 1788 | '@humanwhocodes/config-array@0.11.14': 1789 | dependencies: 1790 | '@humanwhocodes/object-schema': 2.0.3 1791 | debug: 4.3.5 1792 | minimatch: 3.1.2 1793 | transitivePeerDependencies: 1794 | - supports-color 1795 | 1796 | '@humanwhocodes/module-importer@1.0.1': {} 1797 | 1798 | '@humanwhocodes/object-schema@2.0.3': {} 1799 | 1800 | '@img/sharp-darwin-arm64@0.33.4': 1801 | optionalDependencies: 1802 | '@img/sharp-libvips-darwin-arm64': 1.0.2 1803 | optional: true 1804 | 1805 | '@img/sharp-darwin-x64@0.33.4': 1806 | optionalDependencies: 1807 | '@img/sharp-libvips-darwin-x64': 1.0.2 1808 | optional: true 1809 | 1810 | '@img/sharp-libvips-darwin-arm64@1.0.2': 1811 | optional: true 1812 | 1813 | '@img/sharp-libvips-darwin-x64@1.0.2': 1814 | optional: true 1815 | 1816 | '@img/sharp-libvips-linux-arm64@1.0.2': 1817 | optional: true 1818 | 1819 | '@img/sharp-libvips-linux-arm@1.0.2': 1820 | optional: true 1821 | 1822 | '@img/sharp-libvips-linux-s390x@1.0.2': 1823 | optional: true 1824 | 1825 | '@img/sharp-libvips-linux-x64@1.0.2': 1826 | optional: true 1827 | 1828 | '@img/sharp-libvips-linuxmusl-arm64@1.0.2': 1829 | optional: true 1830 | 1831 | '@img/sharp-libvips-linuxmusl-x64@1.0.2': 1832 | optional: true 1833 | 1834 | '@img/sharp-linux-arm64@0.33.4': 1835 | optionalDependencies: 1836 | '@img/sharp-libvips-linux-arm64': 1.0.2 1837 | optional: true 1838 | 1839 | '@img/sharp-linux-arm@0.33.4': 1840 | optionalDependencies: 1841 | '@img/sharp-libvips-linux-arm': 1.0.2 1842 | optional: true 1843 | 1844 | '@img/sharp-linux-s390x@0.33.4': 1845 | optionalDependencies: 1846 | '@img/sharp-libvips-linux-s390x': 1.0.2 1847 | optional: true 1848 | 1849 | '@img/sharp-linux-x64@0.33.4': 1850 | optionalDependencies: 1851 | '@img/sharp-libvips-linux-x64': 1.0.2 1852 | optional: true 1853 | 1854 | '@img/sharp-linuxmusl-arm64@0.33.4': 1855 | optionalDependencies: 1856 | '@img/sharp-libvips-linuxmusl-arm64': 1.0.2 1857 | optional: true 1858 | 1859 | '@img/sharp-linuxmusl-x64@0.33.4': 1860 | optionalDependencies: 1861 | '@img/sharp-libvips-linuxmusl-x64': 1.0.2 1862 | optional: true 1863 | 1864 | '@img/sharp-wasm32@0.33.4': 1865 | dependencies: 1866 | '@emnapi/runtime': 1.2.0 1867 | optional: true 1868 | 1869 | '@img/sharp-win32-ia32@0.33.4': 1870 | optional: true 1871 | 1872 | '@img/sharp-win32-x64@0.33.4': 1873 | optional: true 1874 | 1875 | '@isaacs/cliui@8.0.2': 1876 | dependencies: 1877 | string-width: 5.1.2 1878 | string-width-cjs: string-width@4.2.3 1879 | strip-ansi: 7.1.0 1880 | strip-ansi-cjs: strip-ansi@6.0.1 1881 | wrap-ansi: 8.1.0 1882 | wrap-ansi-cjs: wrap-ansi@7.0.0 1883 | 1884 | '@jridgewell/gen-mapping@0.3.5': 1885 | dependencies: 1886 | '@jridgewell/set-array': 1.2.1 1887 | '@jridgewell/sourcemap-codec': 1.4.15 1888 | '@jridgewell/trace-mapping': 0.3.25 1889 | 1890 | '@jridgewell/resolve-uri@3.1.2': {} 1891 | 1892 | '@jridgewell/set-array@1.2.1': {} 1893 | 1894 | '@jridgewell/sourcemap-codec@1.4.15': {} 1895 | 1896 | '@jridgewell/trace-mapping@0.3.25': 1897 | dependencies: 1898 | '@jridgewell/resolve-uri': 3.1.2 1899 | '@jridgewell/sourcemap-codec': 1.4.15 1900 | 1901 | '@libsql/client@0.6.2': 1902 | dependencies: 1903 | '@libsql/core': 0.6.2 1904 | '@libsql/hrana-client': 0.6.2 1905 | js-base64: 3.7.7 1906 | libsql: 0.3.19 1907 | transitivePeerDependencies: 1908 | - bufferutil 1909 | - utf-8-validate 1910 | 1911 | '@libsql/core@0.6.2': 1912 | dependencies: 1913 | js-base64: 3.7.7 1914 | 1915 | '@libsql/darwin-arm64@0.3.19': 1916 | optional: true 1917 | 1918 | '@libsql/darwin-x64@0.3.19': 1919 | optional: true 1920 | 1921 | '@libsql/hrana-client@0.6.2': 1922 | dependencies: 1923 | '@libsql/isomorphic-fetch': 0.2.1 1924 | '@libsql/isomorphic-ws': 0.1.5 1925 | js-base64: 3.7.7 1926 | node-fetch: 3.3.2 1927 | transitivePeerDependencies: 1928 | - bufferutil 1929 | - utf-8-validate 1930 | 1931 | '@libsql/isomorphic-fetch@0.2.1': {} 1932 | 1933 | '@libsql/isomorphic-ws@0.1.5': 1934 | dependencies: 1935 | '@types/ws': 8.5.10 1936 | ws: 8.17.1 1937 | transitivePeerDependencies: 1938 | - bufferutil 1939 | - utf-8-validate 1940 | 1941 | '@libsql/linux-arm64-gnu@0.3.19': 1942 | optional: true 1943 | 1944 | '@libsql/linux-arm64-musl@0.3.19': 1945 | optional: true 1946 | 1947 | '@libsql/linux-x64-gnu@0.3.19': 1948 | optional: true 1949 | 1950 | '@libsql/linux-x64-musl@0.3.19': 1951 | optional: true 1952 | 1953 | '@libsql/win32-x64-msvc@0.3.19': 1954 | optional: true 1955 | 1956 | '@neon-rs/load@0.0.4': {} 1957 | 1958 | '@next/env@15.0.0-rc.0': {} 1959 | 1960 | '@next/eslint-plugin-next@15.0.0-canary.36': 1961 | dependencies: 1962 | glob: 10.3.10 1963 | 1964 | '@next/swc-darwin-arm64@15.0.0-rc.0': 1965 | optional: true 1966 | 1967 | '@next/swc-darwin-x64@15.0.0-rc.0': 1968 | optional: true 1969 | 1970 | '@next/swc-linux-arm64-gnu@15.0.0-rc.0': 1971 | optional: true 1972 | 1973 | '@next/swc-linux-arm64-musl@15.0.0-rc.0': 1974 | optional: true 1975 | 1976 | '@next/swc-linux-x64-gnu@15.0.0-rc.0': 1977 | optional: true 1978 | 1979 | '@next/swc-linux-x64-musl@15.0.0-rc.0': 1980 | optional: true 1981 | 1982 | '@next/swc-win32-arm64-msvc@15.0.0-rc.0': 1983 | optional: true 1984 | 1985 | '@next/swc-win32-ia32-msvc@15.0.0-rc.0': 1986 | optional: true 1987 | 1988 | '@next/swc-win32-x64-msvc@15.0.0-rc.0': 1989 | optional: true 1990 | 1991 | '@nodelib/fs.scandir@2.1.5': 1992 | dependencies: 1993 | '@nodelib/fs.stat': 2.0.5 1994 | run-parallel: 1.2.0 1995 | 1996 | '@nodelib/fs.stat@2.0.5': {} 1997 | 1998 | '@nodelib/fs.walk@1.2.8': 1999 | dependencies: 2000 | '@nodelib/fs.scandir': 2.1.5 2001 | fastq: 1.17.1 2002 | 2003 | '@pkgjs/parseargs@0.11.0': 2004 | optional: true 2005 | 2006 | '@rushstack/eslint-patch@1.10.3': {} 2007 | 2008 | '@swc/helpers@0.5.11': 2009 | dependencies: 2010 | tslib: 2.6.3 2011 | 2012 | '@types/json5@0.0.29': {} 2013 | 2014 | '@types/node@20.14.4': 2015 | dependencies: 2016 | undici-types: 5.26.5 2017 | 2018 | '@types/prop-types@15.7.12': {} 2019 | 2020 | '@types/react-dom@18.3.0': 2021 | dependencies: 2022 | '@types/react': 18.3.3 2023 | 2024 | '@types/react@18.3.3': 2025 | dependencies: 2026 | '@types/prop-types': 15.7.12 2027 | csstype: 3.1.3 2028 | 2029 | '@types/ws@8.5.10': 2030 | dependencies: 2031 | '@types/node': 20.14.4 2032 | 2033 | '@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5)': 2034 | dependencies: 2035 | '@typescript-eslint/scope-manager': 7.2.0 2036 | '@typescript-eslint/types': 7.2.0 2037 | '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.4.5) 2038 | '@typescript-eslint/visitor-keys': 7.2.0 2039 | debug: 4.3.5 2040 | eslint: 8.57.0 2041 | optionalDependencies: 2042 | typescript: 5.4.5 2043 | transitivePeerDependencies: 2044 | - supports-color 2045 | 2046 | '@typescript-eslint/scope-manager@7.2.0': 2047 | dependencies: 2048 | '@typescript-eslint/types': 7.2.0 2049 | '@typescript-eslint/visitor-keys': 7.2.0 2050 | 2051 | '@typescript-eslint/types@7.2.0': {} 2052 | 2053 | '@typescript-eslint/typescript-estree@7.2.0(typescript@5.4.5)': 2054 | dependencies: 2055 | '@typescript-eslint/types': 7.2.0 2056 | '@typescript-eslint/visitor-keys': 7.2.0 2057 | debug: 4.3.5 2058 | globby: 11.1.0 2059 | is-glob: 4.0.3 2060 | minimatch: 9.0.3 2061 | semver: 7.6.2 2062 | ts-api-utils: 1.3.0(typescript@5.4.5) 2063 | optionalDependencies: 2064 | typescript: 5.4.5 2065 | transitivePeerDependencies: 2066 | - supports-color 2067 | 2068 | '@typescript-eslint/visitor-keys@7.2.0': 2069 | dependencies: 2070 | '@typescript-eslint/types': 7.2.0 2071 | eslint-visitor-keys: 3.4.3 2072 | 2073 | '@ungap/structured-clone@1.2.0': {} 2074 | 2075 | acorn-jsx@5.3.2(acorn@8.12.0): 2076 | dependencies: 2077 | acorn: 8.12.0 2078 | 2079 | acorn@8.12.0: {} 2080 | 2081 | ajv@6.12.6: 2082 | dependencies: 2083 | fast-deep-equal: 3.1.3 2084 | fast-json-stable-stringify: 2.1.0 2085 | json-schema-traverse: 0.4.1 2086 | uri-js: 4.4.1 2087 | 2088 | ansi-regex@5.0.1: {} 2089 | 2090 | ansi-regex@6.0.1: {} 2091 | 2092 | ansi-styles@4.3.0: 2093 | dependencies: 2094 | color-convert: 2.0.1 2095 | 2096 | ansi-styles@6.2.1: {} 2097 | 2098 | any-promise@1.3.0: {} 2099 | 2100 | anymatch@3.1.3: 2101 | dependencies: 2102 | normalize-path: 3.0.0 2103 | picomatch: 2.3.1 2104 | 2105 | arg@5.0.2: {} 2106 | 2107 | argparse@2.0.1: {} 2108 | 2109 | aria-query@5.3.0: 2110 | dependencies: 2111 | dequal: 2.0.3 2112 | 2113 | array-buffer-byte-length@1.0.1: 2114 | dependencies: 2115 | call-bind: 1.0.7 2116 | is-array-buffer: 3.0.4 2117 | 2118 | array-includes@3.1.8: 2119 | dependencies: 2120 | call-bind: 1.0.7 2121 | define-properties: 1.2.1 2122 | es-abstract: 1.23.3 2123 | es-object-atoms: 1.0.0 2124 | get-intrinsic: 1.2.4 2125 | is-string: 1.0.7 2126 | 2127 | array-union@2.1.0: {} 2128 | 2129 | array.prototype.findlast@1.2.5: 2130 | dependencies: 2131 | call-bind: 1.0.7 2132 | define-properties: 1.2.1 2133 | es-abstract: 1.23.3 2134 | es-errors: 1.3.0 2135 | es-object-atoms: 1.0.0 2136 | es-shim-unscopables: 1.0.2 2137 | 2138 | array.prototype.findlastindex@1.2.5: 2139 | dependencies: 2140 | call-bind: 1.0.7 2141 | define-properties: 1.2.1 2142 | es-abstract: 1.23.3 2143 | es-errors: 1.3.0 2144 | es-object-atoms: 1.0.0 2145 | es-shim-unscopables: 1.0.2 2146 | 2147 | array.prototype.flat@1.3.2: 2148 | dependencies: 2149 | call-bind: 1.0.7 2150 | define-properties: 1.2.1 2151 | es-abstract: 1.23.3 2152 | es-shim-unscopables: 1.0.2 2153 | 2154 | array.prototype.flatmap@1.3.2: 2155 | dependencies: 2156 | call-bind: 1.0.7 2157 | define-properties: 1.2.1 2158 | es-abstract: 1.23.3 2159 | es-shim-unscopables: 1.0.2 2160 | 2161 | array.prototype.toreversed@1.1.2: 2162 | dependencies: 2163 | call-bind: 1.0.7 2164 | define-properties: 1.2.1 2165 | es-abstract: 1.23.3 2166 | es-shim-unscopables: 1.0.2 2167 | 2168 | array.prototype.tosorted@1.1.4: 2169 | dependencies: 2170 | call-bind: 1.0.7 2171 | define-properties: 1.2.1 2172 | es-abstract: 1.23.3 2173 | es-errors: 1.3.0 2174 | es-shim-unscopables: 1.0.2 2175 | 2176 | arraybuffer.prototype.slice@1.0.3: 2177 | dependencies: 2178 | array-buffer-byte-length: 1.0.1 2179 | call-bind: 1.0.7 2180 | define-properties: 1.2.1 2181 | es-abstract: 1.23.3 2182 | es-errors: 1.3.0 2183 | get-intrinsic: 1.2.4 2184 | is-array-buffer: 3.0.4 2185 | is-shared-array-buffer: 1.0.3 2186 | 2187 | ast-types-flow@0.0.8: {} 2188 | 2189 | available-typed-arrays@1.0.7: 2190 | dependencies: 2191 | possible-typed-array-names: 1.0.0 2192 | 2193 | axe-core@4.7.0: {} 2194 | 2195 | axobject-query@3.2.1: 2196 | dependencies: 2197 | dequal: 2.0.3 2198 | 2199 | balanced-match@1.0.2: {} 2200 | 2201 | binary-extensions@2.3.0: {} 2202 | 2203 | brace-expansion@1.1.11: 2204 | dependencies: 2205 | balanced-match: 1.0.2 2206 | concat-map: 0.0.1 2207 | 2208 | brace-expansion@2.0.1: 2209 | dependencies: 2210 | balanced-match: 1.0.2 2211 | 2212 | braces@3.0.3: 2213 | dependencies: 2214 | fill-range: 7.1.1 2215 | 2216 | busboy@1.6.0: 2217 | dependencies: 2218 | streamsearch: 1.1.0 2219 | 2220 | call-bind@1.0.7: 2221 | dependencies: 2222 | es-define-property: 1.0.0 2223 | es-errors: 1.3.0 2224 | function-bind: 1.1.2 2225 | get-intrinsic: 1.2.4 2226 | set-function-length: 1.2.2 2227 | 2228 | callsites@3.1.0: {} 2229 | 2230 | camelcase-css@2.0.1: {} 2231 | 2232 | caniuse-lite@1.0.30001636: {} 2233 | 2234 | chalk@4.1.2: 2235 | dependencies: 2236 | ansi-styles: 4.3.0 2237 | supports-color: 7.2.0 2238 | 2239 | chokidar@3.6.0: 2240 | dependencies: 2241 | anymatch: 3.1.3 2242 | braces: 3.0.3 2243 | glob-parent: 5.1.2 2244 | is-binary-path: 2.1.0 2245 | is-glob: 4.0.3 2246 | normalize-path: 3.0.0 2247 | readdirp: 3.6.0 2248 | optionalDependencies: 2249 | fsevents: 2.3.3 2250 | 2251 | client-only@0.0.1: {} 2252 | 2253 | color-convert@2.0.1: 2254 | dependencies: 2255 | color-name: 1.1.4 2256 | 2257 | color-name@1.1.4: {} 2258 | 2259 | color-string@1.9.1: 2260 | dependencies: 2261 | color-name: 1.1.4 2262 | simple-swizzle: 0.2.2 2263 | optional: true 2264 | 2265 | color@4.2.3: 2266 | dependencies: 2267 | color-convert: 2.0.1 2268 | color-string: 1.9.1 2269 | optional: true 2270 | 2271 | commander@4.1.1: {} 2272 | 2273 | concat-map@0.0.1: {} 2274 | 2275 | cross-spawn@7.0.3: 2276 | dependencies: 2277 | path-key: 3.1.1 2278 | shebang-command: 2.0.0 2279 | which: 2.0.2 2280 | 2281 | cssesc@3.0.0: {} 2282 | 2283 | csstype@3.1.3: {} 2284 | 2285 | damerau-levenshtein@1.0.8: {} 2286 | 2287 | data-uri-to-buffer@4.0.1: {} 2288 | 2289 | data-view-buffer@1.0.1: 2290 | dependencies: 2291 | call-bind: 1.0.7 2292 | es-errors: 1.3.0 2293 | is-data-view: 1.0.1 2294 | 2295 | data-view-byte-length@1.0.1: 2296 | dependencies: 2297 | call-bind: 1.0.7 2298 | es-errors: 1.3.0 2299 | is-data-view: 1.0.1 2300 | 2301 | data-view-byte-offset@1.0.0: 2302 | dependencies: 2303 | call-bind: 1.0.7 2304 | es-errors: 1.3.0 2305 | is-data-view: 1.0.1 2306 | 2307 | debug@3.2.7: 2308 | dependencies: 2309 | ms: 2.1.3 2310 | 2311 | debug@4.3.5: 2312 | dependencies: 2313 | ms: 2.1.2 2314 | 2315 | deep-is@0.1.4: {} 2316 | 2317 | define-data-property@1.1.4: 2318 | dependencies: 2319 | es-define-property: 1.0.0 2320 | es-errors: 1.3.0 2321 | gopd: 1.0.1 2322 | 2323 | define-properties@1.2.1: 2324 | dependencies: 2325 | define-data-property: 1.1.4 2326 | has-property-descriptors: 1.0.2 2327 | object-keys: 1.1.1 2328 | 2329 | dequal@2.0.3: {} 2330 | 2331 | detect-libc@2.0.2: {} 2332 | 2333 | detect-libc@2.0.3: 2334 | optional: true 2335 | 2336 | didyoumean@1.2.2: {} 2337 | 2338 | dir-glob@3.0.1: 2339 | dependencies: 2340 | path-type: 4.0.0 2341 | 2342 | dlv@1.1.3: {} 2343 | 2344 | doctrine@2.1.0: 2345 | dependencies: 2346 | esutils: 2.0.3 2347 | 2348 | doctrine@3.0.0: 2349 | dependencies: 2350 | esutils: 2.0.3 2351 | 2352 | eastasianwidth@0.2.0: {} 2353 | 2354 | emoji-regex@8.0.0: {} 2355 | 2356 | emoji-regex@9.2.2: {} 2357 | 2358 | enhanced-resolve@5.17.0: 2359 | dependencies: 2360 | graceful-fs: 4.2.11 2361 | tapable: 2.2.1 2362 | 2363 | es-abstract@1.23.3: 2364 | dependencies: 2365 | array-buffer-byte-length: 1.0.1 2366 | arraybuffer.prototype.slice: 1.0.3 2367 | available-typed-arrays: 1.0.7 2368 | call-bind: 1.0.7 2369 | data-view-buffer: 1.0.1 2370 | data-view-byte-length: 1.0.1 2371 | data-view-byte-offset: 1.0.0 2372 | es-define-property: 1.0.0 2373 | es-errors: 1.3.0 2374 | es-object-atoms: 1.0.0 2375 | es-set-tostringtag: 2.0.3 2376 | es-to-primitive: 1.2.1 2377 | function.prototype.name: 1.1.6 2378 | get-intrinsic: 1.2.4 2379 | get-symbol-description: 1.0.2 2380 | globalthis: 1.0.4 2381 | gopd: 1.0.1 2382 | has-property-descriptors: 1.0.2 2383 | has-proto: 1.0.3 2384 | has-symbols: 1.0.3 2385 | hasown: 2.0.2 2386 | internal-slot: 1.0.7 2387 | is-array-buffer: 3.0.4 2388 | is-callable: 1.2.7 2389 | is-data-view: 1.0.1 2390 | is-negative-zero: 2.0.3 2391 | is-regex: 1.1.4 2392 | is-shared-array-buffer: 1.0.3 2393 | is-string: 1.0.7 2394 | is-typed-array: 1.1.13 2395 | is-weakref: 1.0.2 2396 | object-inspect: 1.13.1 2397 | object-keys: 1.1.1 2398 | object.assign: 4.1.5 2399 | regexp.prototype.flags: 1.5.2 2400 | safe-array-concat: 1.1.2 2401 | safe-regex-test: 1.0.3 2402 | string.prototype.trim: 1.2.9 2403 | string.prototype.trimend: 1.0.8 2404 | string.prototype.trimstart: 1.0.8 2405 | typed-array-buffer: 1.0.2 2406 | typed-array-byte-length: 1.0.1 2407 | typed-array-byte-offset: 1.0.2 2408 | typed-array-length: 1.0.6 2409 | unbox-primitive: 1.0.2 2410 | which-typed-array: 1.1.15 2411 | 2412 | es-define-property@1.0.0: 2413 | dependencies: 2414 | get-intrinsic: 1.2.4 2415 | 2416 | es-errors@1.3.0: {} 2417 | 2418 | es-iterator-helpers@1.0.19: 2419 | dependencies: 2420 | call-bind: 1.0.7 2421 | define-properties: 1.2.1 2422 | es-abstract: 1.23.3 2423 | es-errors: 1.3.0 2424 | es-set-tostringtag: 2.0.3 2425 | function-bind: 1.1.2 2426 | get-intrinsic: 1.2.4 2427 | globalthis: 1.0.4 2428 | has-property-descriptors: 1.0.2 2429 | has-proto: 1.0.3 2430 | has-symbols: 1.0.3 2431 | internal-slot: 1.0.7 2432 | iterator.prototype: 1.1.2 2433 | safe-array-concat: 1.1.2 2434 | 2435 | es-object-atoms@1.0.0: 2436 | dependencies: 2437 | es-errors: 1.3.0 2438 | 2439 | es-set-tostringtag@2.0.3: 2440 | dependencies: 2441 | get-intrinsic: 1.2.4 2442 | has-tostringtag: 1.0.2 2443 | hasown: 2.0.2 2444 | 2445 | es-shim-unscopables@1.0.2: 2446 | dependencies: 2447 | hasown: 2.0.2 2448 | 2449 | es-to-primitive@1.2.1: 2450 | dependencies: 2451 | is-callable: 1.2.7 2452 | is-date-object: 1.0.5 2453 | is-symbol: 1.0.4 2454 | 2455 | escape-string-regexp@4.0.0: {} 2456 | 2457 | eslint-config-next@15.0.0-canary.36(eslint@8.57.0)(typescript@5.4.5): 2458 | dependencies: 2459 | '@next/eslint-plugin-next': 15.0.0-canary.36 2460 | '@rushstack/eslint-patch': 1.10.3 2461 | '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.4.5) 2462 | eslint: 8.57.0 2463 | eslint-import-resolver-node: 0.3.9 2464 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0) 2465 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 2466 | eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0) 2467 | eslint-plugin-react: 7.34.2(eslint@8.57.0) 2468 | eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0) 2469 | optionalDependencies: 2470 | typescript: 5.4.5 2471 | transitivePeerDependencies: 2472 | - eslint-import-resolver-webpack 2473 | - supports-color 2474 | 2475 | eslint-import-resolver-node@0.3.9: 2476 | dependencies: 2477 | debug: 3.2.7 2478 | is-core-module: 2.13.1 2479 | resolve: 1.22.8 2480 | transitivePeerDependencies: 2481 | - supports-color 2482 | 2483 | eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0): 2484 | dependencies: 2485 | debug: 4.3.5 2486 | enhanced-resolve: 5.17.0 2487 | eslint: 8.57.0 2488 | eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 2489 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 2490 | fast-glob: 3.3.2 2491 | get-tsconfig: 4.7.5 2492 | is-core-module: 2.13.1 2493 | is-glob: 4.0.3 2494 | transitivePeerDependencies: 2495 | - '@typescript-eslint/parser' 2496 | - eslint-import-resolver-node 2497 | - eslint-import-resolver-webpack 2498 | - supports-color 2499 | 2500 | eslint-module-utils@2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0): 2501 | dependencies: 2502 | debug: 3.2.7 2503 | optionalDependencies: 2504 | '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.4.5) 2505 | eslint: 8.57.0 2506 | eslint-import-resolver-node: 0.3.9 2507 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0) 2508 | transitivePeerDependencies: 2509 | - supports-color 2510 | 2511 | eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0): 2512 | dependencies: 2513 | array-includes: 3.1.8 2514 | array.prototype.findlastindex: 1.2.5 2515 | array.prototype.flat: 1.3.2 2516 | array.prototype.flatmap: 1.3.2 2517 | debug: 3.2.7 2518 | doctrine: 2.1.0 2519 | eslint: 8.57.0 2520 | eslint-import-resolver-node: 0.3.9 2521 | eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 2522 | hasown: 2.0.2 2523 | is-core-module: 2.13.1 2524 | is-glob: 4.0.3 2525 | minimatch: 3.1.2 2526 | object.fromentries: 2.0.8 2527 | object.groupby: 1.0.3 2528 | object.values: 1.2.0 2529 | semver: 6.3.1 2530 | tsconfig-paths: 3.15.0 2531 | optionalDependencies: 2532 | '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.4.5) 2533 | transitivePeerDependencies: 2534 | - eslint-import-resolver-typescript 2535 | - eslint-import-resolver-webpack 2536 | - supports-color 2537 | 2538 | eslint-plugin-jsx-a11y@6.8.0(eslint@8.57.0): 2539 | dependencies: 2540 | '@babel/runtime': 7.24.7 2541 | aria-query: 5.3.0 2542 | array-includes: 3.1.8 2543 | array.prototype.flatmap: 1.3.2 2544 | ast-types-flow: 0.0.8 2545 | axe-core: 4.7.0 2546 | axobject-query: 3.2.1 2547 | damerau-levenshtein: 1.0.8 2548 | emoji-regex: 9.2.2 2549 | es-iterator-helpers: 1.0.19 2550 | eslint: 8.57.0 2551 | hasown: 2.0.2 2552 | jsx-ast-utils: 3.3.5 2553 | language-tags: 1.0.9 2554 | minimatch: 3.1.2 2555 | object.entries: 1.1.8 2556 | object.fromentries: 2.0.8 2557 | 2558 | eslint-plugin-react-hooks@4.6.2(eslint@8.57.0): 2559 | dependencies: 2560 | eslint: 8.57.0 2561 | 2562 | eslint-plugin-react@7.34.2(eslint@8.57.0): 2563 | dependencies: 2564 | array-includes: 3.1.8 2565 | array.prototype.findlast: 1.2.5 2566 | array.prototype.flatmap: 1.3.2 2567 | array.prototype.toreversed: 1.1.2 2568 | array.prototype.tosorted: 1.1.4 2569 | doctrine: 2.1.0 2570 | es-iterator-helpers: 1.0.19 2571 | eslint: 8.57.0 2572 | estraverse: 5.3.0 2573 | jsx-ast-utils: 3.3.5 2574 | minimatch: 3.1.2 2575 | object.entries: 1.1.8 2576 | object.fromentries: 2.0.8 2577 | object.hasown: 1.1.4 2578 | object.values: 1.2.0 2579 | prop-types: 15.8.1 2580 | resolve: 2.0.0-next.5 2581 | semver: 6.3.1 2582 | string.prototype.matchall: 4.0.11 2583 | 2584 | eslint-scope@7.2.2: 2585 | dependencies: 2586 | esrecurse: 4.3.0 2587 | estraverse: 5.3.0 2588 | 2589 | eslint-visitor-keys@3.4.3: {} 2590 | 2591 | eslint@8.57.0: 2592 | dependencies: 2593 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) 2594 | '@eslint-community/regexpp': 4.10.1 2595 | '@eslint/eslintrc': 2.1.4 2596 | '@eslint/js': 8.57.0 2597 | '@humanwhocodes/config-array': 0.11.14 2598 | '@humanwhocodes/module-importer': 1.0.1 2599 | '@nodelib/fs.walk': 1.2.8 2600 | '@ungap/structured-clone': 1.2.0 2601 | ajv: 6.12.6 2602 | chalk: 4.1.2 2603 | cross-spawn: 7.0.3 2604 | debug: 4.3.5 2605 | doctrine: 3.0.0 2606 | escape-string-regexp: 4.0.0 2607 | eslint-scope: 7.2.2 2608 | eslint-visitor-keys: 3.4.3 2609 | espree: 9.6.1 2610 | esquery: 1.5.0 2611 | esutils: 2.0.3 2612 | fast-deep-equal: 3.1.3 2613 | file-entry-cache: 6.0.1 2614 | find-up: 5.0.0 2615 | glob-parent: 6.0.2 2616 | globals: 13.24.0 2617 | graphemer: 1.4.0 2618 | ignore: 5.3.1 2619 | imurmurhash: 0.1.4 2620 | is-glob: 4.0.3 2621 | is-path-inside: 3.0.3 2622 | js-yaml: 4.1.0 2623 | json-stable-stringify-without-jsonify: 1.0.1 2624 | levn: 0.4.1 2625 | lodash.merge: 4.6.2 2626 | minimatch: 3.1.2 2627 | natural-compare: 1.4.0 2628 | optionator: 0.9.4 2629 | strip-ansi: 6.0.1 2630 | text-table: 0.2.0 2631 | transitivePeerDependencies: 2632 | - supports-color 2633 | 2634 | espree@9.6.1: 2635 | dependencies: 2636 | acorn: 8.12.0 2637 | acorn-jsx: 5.3.2(acorn@8.12.0) 2638 | eslint-visitor-keys: 3.4.3 2639 | 2640 | esquery@1.5.0: 2641 | dependencies: 2642 | estraverse: 5.3.0 2643 | 2644 | esrecurse@4.3.0: 2645 | dependencies: 2646 | estraverse: 5.3.0 2647 | 2648 | estraverse@5.3.0: {} 2649 | 2650 | esutils@2.0.3: {} 2651 | 2652 | fast-deep-equal@3.1.3: {} 2653 | 2654 | fast-glob@3.3.2: 2655 | dependencies: 2656 | '@nodelib/fs.stat': 2.0.5 2657 | '@nodelib/fs.walk': 1.2.8 2658 | glob-parent: 5.1.2 2659 | merge2: 1.4.1 2660 | micromatch: 4.0.7 2661 | 2662 | fast-json-stable-stringify@2.1.0: {} 2663 | 2664 | fast-levenshtein@2.0.6: {} 2665 | 2666 | fastq@1.17.1: 2667 | dependencies: 2668 | reusify: 1.0.4 2669 | 2670 | fetch-blob@3.2.0: 2671 | dependencies: 2672 | node-domexception: 1.0.0 2673 | web-streams-polyfill: 3.3.3 2674 | 2675 | file-entry-cache@6.0.1: 2676 | dependencies: 2677 | flat-cache: 3.2.0 2678 | 2679 | fill-range@7.1.1: 2680 | dependencies: 2681 | to-regex-range: 5.0.1 2682 | 2683 | find-up@5.0.0: 2684 | dependencies: 2685 | locate-path: 6.0.0 2686 | path-exists: 4.0.0 2687 | 2688 | flat-cache@3.2.0: 2689 | dependencies: 2690 | flatted: 3.3.1 2691 | keyv: 4.5.4 2692 | rimraf: 3.0.2 2693 | 2694 | flatted@3.3.1: {} 2695 | 2696 | for-each@0.3.3: 2697 | dependencies: 2698 | is-callable: 1.2.7 2699 | 2700 | foreground-child@3.2.1: 2701 | dependencies: 2702 | cross-spawn: 7.0.3 2703 | signal-exit: 4.1.0 2704 | 2705 | formdata-polyfill@4.0.10: 2706 | dependencies: 2707 | fetch-blob: 3.2.0 2708 | 2709 | fs.realpath@1.0.0: {} 2710 | 2711 | fsevents@2.3.3: 2712 | optional: true 2713 | 2714 | function-bind@1.1.2: {} 2715 | 2716 | function.prototype.name@1.1.6: 2717 | dependencies: 2718 | call-bind: 1.0.7 2719 | define-properties: 1.2.1 2720 | es-abstract: 1.23.3 2721 | functions-have-names: 1.2.3 2722 | 2723 | functions-have-names@1.2.3: {} 2724 | 2725 | get-intrinsic@1.2.4: 2726 | dependencies: 2727 | es-errors: 1.3.0 2728 | function-bind: 1.1.2 2729 | has-proto: 1.0.3 2730 | has-symbols: 1.0.3 2731 | hasown: 2.0.2 2732 | 2733 | get-symbol-description@1.0.2: 2734 | dependencies: 2735 | call-bind: 1.0.7 2736 | es-errors: 1.3.0 2737 | get-intrinsic: 1.2.4 2738 | 2739 | get-tsconfig@4.7.5: 2740 | dependencies: 2741 | resolve-pkg-maps: 1.0.0 2742 | 2743 | glob-parent@5.1.2: 2744 | dependencies: 2745 | is-glob: 4.0.3 2746 | 2747 | glob-parent@6.0.2: 2748 | dependencies: 2749 | is-glob: 4.0.3 2750 | 2751 | glob@10.3.10: 2752 | dependencies: 2753 | foreground-child: 3.2.1 2754 | jackspeak: 2.3.6 2755 | minimatch: 9.0.4 2756 | minipass: 7.1.2 2757 | path-scurry: 1.11.1 2758 | 2759 | glob@10.4.1: 2760 | dependencies: 2761 | foreground-child: 3.2.1 2762 | jackspeak: 3.4.0 2763 | minimatch: 9.0.4 2764 | minipass: 7.1.2 2765 | path-scurry: 1.11.1 2766 | 2767 | glob@7.2.3: 2768 | dependencies: 2769 | fs.realpath: 1.0.0 2770 | inflight: 1.0.6 2771 | inherits: 2.0.4 2772 | minimatch: 3.1.2 2773 | once: 1.4.0 2774 | path-is-absolute: 1.0.1 2775 | 2776 | globals@13.24.0: 2777 | dependencies: 2778 | type-fest: 0.20.2 2779 | 2780 | globalthis@1.0.4: 2781 | dependencies: 2782 | define-properties: 1.2.1 2783 | gopd: 1.0.1 2784 | 2785 | globby@11.1.0: 2786 | dependencies: 2787 | array-union: 2.1.0 2788 | dir-glob: 3.0.1 2789 | fast-glob: 3.3.2 2790 | ignore: 5.3.1 2791 | merge2: 1.4.1 2792 | slash: 3.0.0 2793 | 2794 | gopd@1.0.1: 2795 | dependencies: 2796 | get-intrinsic: 1.2.4 2797 | 2798 | graceful-fs@4.2.11: {} 2799 | 2800 | graphemer@1.4.0: {} 2801 | 2802 | has-bigints@1.0.2: {} 2803 | 2804 | has-flag@4.0.0: {} 2805 | 2806 | has-property-descriptors@1.0.2: 2807 | dependencies: 2808 | es-define-property: 1.0.0 2809 | 2810 | has-proto@1.0.3: {} 2811 | 2812 | has-symbols@1.0.3: {} 2813 | 2814 | has-tostringtag@1.0.2: 2815 | dependencies: 2816 | has-symbols: 1.0.3 2817 | 2818 | hasown@2.0.2: 2819 | dependencies: 2820 | function-bind: 1.1.2 2821 | 2822 | ignore@5.3.1: {} 2823 | 2824 | import-fresh@3.3.0: 2825 | dependencies: 2826 | parent-module: 1.0.1 2827 | resolve-from: 4.0.0 2828 | 2829 | imurmurhash@0.1.4: {} 2830 | 2831 | inflight@1.0.6: 2832 | dependencies: 2833 | once: 1.4.0 2834 | wrappy: 1.0.2 2835 | 2836 | inherits@2.0.4: {} 2837 | 2838 | internal-slot@1.0.7: 2839 | dependencies: 2840 | es-errors: 1.3.0 2841 | hasown: 2.0.2 2842 | side-channel: 1.0.6 2843 | 2844 | is-array-buffer@3.0.4: 2845 | dependencies: 2846 | call-bind: 1.0.7 2847 | get-intrinsic: 1.2.4 2848 | 2849 | is-arrayish@0.3.2: 2850 | optional: true 2851 | 2852 | is-async-function@2.0.0: 2853 | dependencies: 2854 | has-tostringtag: 1.0.2 2855 | 2856 | is-bigint@1.0.4: 2857 | dependencies: 2858 | has-bigints: 1.0.2 2859 | 2860 | is-binary-path@2.1.0: 2861 | dependencies: 2862 | binary-extensions: 2.3.0 2863 | 2864 | is-boolean-object@1.1.2: 2865 | dependencies: 2866 | call-bind: 1.0.7 2867 | has-tostringtag: 1.0.2 2868 | 2869 | is-callable@1.2.7: {} 2870 | 2871 | is-core-module@2.13.1: 2872 | dependencies: 2873 | hasown: 2.0.2 2874 | 2875 | is-data-view@1.0.1: 2876 | dependencies: 2877 | is-typed-array: 1.1.13 2878 | 2879 | is-date-object@1.0.5: 2880 | dependencies: 2881 | has-tostringtag: 1.0.2 2882 | 2883 | is-extglob@2.1.1: {} 2884 | 2885 | is-finalizationregistry@1.0.2: 2886 | dependencies: 2887 | call-bind: 1.0.7 2888 | 2889 | is-fullwidth-code-point@3.0.0: {} 2890 | 2891 | is-generator-function@1.0.10: 2892 | dependencies: 2893 | has-tostringtag: 1.0.2 2894 | 2895 | is-glob@4.0.3: 2896 | dependencies: 2897 | is-extglob: 2.1.1 2898 | 2899 | is-map@2.0.3: {} 2900 | 2901 | is-negative-zero@2.0.3: {} 2902 | 2903 | is-number-object@1.0.7: 2904 | dependencies: 2905 | has-tostringtag: 1.0.2 2906 | 2907 | is-number@7.0.0: {} 2908 | 2909 | is-path-inside@3.0.3: {} 2910 | 2911 | is-regex@1.1.4: 2912 | dependencies: 2913 | call-bind: 1.0.7 2914 | has-tostringtag: 1.0.2 2915 | 2916 | is-set@2.0.3: {} 2917 | 2918 | is-shared-array-buffer@1.0.3: 2919 | dependencies: 2920 | call-bind: 1.0.7 2921 | 2922 | is-string@1.0.7: 2923 | dependencies: 2924 | has-tostringtag: 1.0.2 2925 | 2926 | is-symbol@1.0.4: 2927 | dependencies: 2928 | has-symbols: 1.0.3 2929 | 2930 | is-typed-array@1.1.13: 2931 | dependencies: 2932 | which-typed-array: 1.1.15 2933 | 2934 | is-weakmap@2.0.2: {} 2935 | 2936 | is-weakref@1.0.2: 2937 | dependencies: 2938 | call-bind: 1.0.7 2939 | 2940 | is-weakset@2.0.3: 2941 | dependencies: 2942 | call-bind: 1.0.7 2943 | get-intrinsic: 1.2.4 2944 | 2945 | isarray@2.0.5: {} 2946 | 2947 | isexe@2.0.0: {} 2948 | 2949 | iterator.prototype@1.1.2: 2950 | dependencies: 2951 | define-properties: 1.2.1 2952 | get-intrinsic: 1.2.4 2953 | has-symbols: 1.0.3 2954 | reflect.getprototypeof: 1.0.6 2955 | set-function-name: 2.0.2 2956 | 2957 | jackspeak@2.3.6: 2958 | dependencies: 2959 | '@isaacs/cliui': 8.0.2 2960 | optionalDependencies: 2961 | '@pkgjs/parseargs': 0.11.0 2962 | 2963 | jackspeak@3.4.0: 2964 | dependencies: 2965 | '@isaacs/cliui': 8.0.2 2966 | optionalDependencies: 2967 | '@pkgjs/parseargs': 0.11.0 2968 | 2969 | jiti@1.21.6: {} 2970 | 2971 | js-base64@3.7.7: {} 2972 | 2973 | js-tokens@4.0.0: {} 2974 | 2975 | js-yaml@4.1.0: 2976 | dependencies: 2977 | argparse: 2.0.1 2978 | 2979 | json-buffer@3.0.1: {} 2980 | 2981 | json-schema-traverse@0.4.1: {} 2982 | 2983 | json-stable-stringify-without-jsonify@1.0.1: {} 2984 | 2985 | json5@1.0.2: 2986 | dependencies: 2987 | minimist: 1.2.8 2988 | 2989 | jsx-ast-utils@3.3.5: 2990 | dependencies: 2991 | array-includes: 3.1.8 2992 | array.prototype.flat: 1.3.2 2993 | object.assign: 4.1.5 2994 | object.values: 1.2.0 2995 | 2996 | keyv@4.5.4: 2997 | dependencies: 2998 | json-buffer: 3.0.1 2999 | 3000 | language-subtag-registry@0.3.23: {} 3001 | 3002 | language-tags@1.0.9: 3003 | dependencies: 3004 | language-subtag-registry: 0.3.23 3005 | 3006 | levn@0.4.1: 3007 | dependencies: 3008 | prelude-ls: 1.2.1 3009 | type-check: 0.4.0 3010 | 3011 | libsql@0.3.19: 3012 | dependencies: 3013 | '@neon-rs/load': 0.0.4 3014 | detect-libc: 2.0.2 3015 | optionalDependencies: 3016 | '@libsql/darwin-arm64': 0.3.19 3017 | '@libsql/darwin-x64': 0.3.19 3018 | '@libsql/linux-arm64-gnu': 0.3.19 3019 | '@libsql/linux-arm64-musl': 0.3.19 3020 | '@libsql/linux-x64-gnu': 0.3.19 3021 | '@libsql/linux-x64-musl': 0.3.19 3022 | '@libsql/win32-x64-msvc': 0.3.19 3023 | 3024 | lilconfig@2.1.0: {} 3025 | 3026 | lilconfig@3.1.2: {} 3027 | 3028 | lines-and-columns@1.2.4: {} 3029 | 3030 | locate-path@6.0.0: 3031 | dependencies: 3032 | p-locate: 5.0.0 3033 | 3034 | lodash.merge@4.6.2: {} 3035 | 3036 | loose-envify@1.4.0: 3037 | dependencies: 3038 | js-tokens: 4.0.0 3039 | 3040 | lru-cache@10.2.2: {} 3041 | 3042 | merge2@1.4.1: {} 3043 | 3044 | micromatch@4.0.7: 3045 | dependencies: 3046 | braces: 3.0.3 3047 | picomatch: 2.3.1 3048 | 3049 | minimatch@3.1.2: 3050 | dependencies: 3051 | brace-expansion: 1.1.11 3052 | 3053 | minimatch@9.0.3: 3054 | dependencies: 3055 | brace-expansion: 2.0.1 3056 | 3057 | minimatch@9.0.4: 3058 | dependencies: 3059 | brace-expansion: 2.0.1 3060 | 3061 | minimist@1.2.8: {} 3062 | 3063 | minipass@7.1.2: {} 3064 | 3065 | ms@2.1.2: {} 3066 | 3067 | ms@2.1.3: {} 3068 | 3069 | mz@2.7.0: 3070 | dependencies: 3071 | any-promise: 1.3.0 3072 | object-assign: 4.1.1 3073 | thenify-all: 1.6.0 3074 | 3075 | nanoid@3.3.7: {} 3076 | 3077 | natural-compare@1.4.0: {} 3078 | 3079 | next@15.0.0-rc.0(react-dom@19.0.0-rc.0(react@19.0.0-rc.0))(react@19.0.0-rc.0): 3080 | dependencies: 3081 | '@next/env': 15.0.0-rc.0 3082 | '@swc/helpers': 0.5.11 3083 | busboy: 1.6.0 3084 | caniuse-lite: 1.0.30001636 3085 | graceful-fs: 4.2.11 3086 | postcss: 8.4.31 3087 | react: 19.0.0-rc.0 3088 | react-dom: 19.0.0-rc.0(react@19.0.0-rc.0) 3089 | styled-jsx: 5.1.3(react@19.0.0-rc.0) 3090 | optionalDependencies: 3091 | '@next/swc-darwin-arm64': 15.0.0-rc.0 3092 | '@next/swc-darwin-x64': 15.0.0-rc.0 3093 | '@next/swc-linux-arm64-gnu': 15.0.0-rc.0 3094 | '@next/swc-linux-arm64-musl': 15.0.0-rc.0 3095 | '@next/swc-linux-x64-gnu': 15.0.0-rc.0 3096 | '@next/swc-linux-x64-musl': 15.0.0-rc.0 3097 | '@next/swc-win32-arm64-msvc': 15.0.0-rc.0 3098 | '@next/swc-win32-ia32-msvc': 15.0.0-rc.0 3099 | '@next/swc-win32-x64-msvc': 15.0.0-rc.0 3100 | sharp: 0.33.4 3101 | transitivePeerDependencies: 3102 | - '@babel/core' 3103 | - babel-plugin-macros 3104 | 3105 | node-domexception@1.0.0: {} 3106 | 3107 | node-fetch@3.3.2: 3108 | dependencies: 3109 | data-uri-to-buffer: 4.0.1 3110 | fetch-blob: 3.2.0 3111 | formdata-polyfill: 4.0.10 3112 | 3113 | normalize-path@3.0.0: {} 3114 | 3115 | object-assign@4.1.1: {} 3116 | 3117 | object-hash@3.0.0: {} 3118 | 3119 | object-inspect@1.13.1: {} 3120 | 3121 | object-keys@1.1.1: {} 3122 | 3123 | object.assign@4.1.5: 3124 | dependencies: 3125 | call-bind: 1.0.7 3126 | define-properties: 1.2.1 3127 | has-symbols: 1.0.3 3128 | object-keys: 1.1.1 3129 | 3130 | object.entries@1.1.8: 3131 | dependencies: 3132 | call-bind: 1.0.7 3133 | define-properties: 1.2.1 3134 | es-object-atoms: 1.0.0 3135 | 3136 | object.fromentries@2.0.8: 3137 | dependencies: 3138 | call-bind: 1.0.7 3139 | define-properties: 1.2.1 3140 | es-abstract: 1.23.3 3141 | es-object-atoms: 1.0.0 3142 | 3143 | object.groupby@1.0.3: 3144 | dependencies: 3145 | call-bind: 1.0.7 3146 | define-properties: 1.2.1 3147 | es-abstract: 1.23.3 3148 | 3149 | object.hasown@1.1.4: 3150 | dependencies: 3151 | define-properties: 1.2.1 3152 | es-abstract: 1.23.3 3153 | es-object-atoms: 1.0.0 3154 | 3155 | object.values@1.2.0: 3156 | dependencies: 3157 | call-bind: 1.0.7 3158 | define-properties: 1.2.1 3159 | es-object-atoms: 1.0.0 3160 | 3161 | once@1.4.0: 3162 | dependencies: 3163 | wrappy: 1.0.2 3164 | 3165 | optionator@0.9.4: 3166 | dependencies: 3167 | deep-is: 0.1.4 3168 | fast-levenshtein: 2.0.6 3169 | levn: 0.4.1 3170 | prelude-ls: 1.2.1 3171 | type-check: 0.4.0 3172 | word-wrap: 1.2.5 3173 | 3174 | p-limit@3.1.0: 3175 | dependencies: 3176 | yocto-queue: 0.1.0 3177 | 3178 | p-locate@5.0.0: 3179 | dependencies: 3180 | p-limit: 3.1.0 3181 | 3182 | parent-module@1.0.1: 3183 | dependencies: 3184 | callsites: 3.1.0 3185 | 3186 | path-exists@4.0.0: {} 3187 | 3188 | path-is-absolute@1.0.1: {} 3189 | 3190 | path-key@3.1.1: {} 3191 | 3192 | path-parse@1.0.7: {} 3193 | 3194 | path-scurry@1.11.1: 3195 | dependencies: 3196 | lru-cache: 10.2.2 3197 | minipass: 7.1.2 3198 | 3199 | path-type@4.0.0: {} 3200 | 3201 | picocolors@1.0.1: {} 3202 | 3203 | picomatch@2.3.1: {} 3204 | 3205 | pify@2.3.0: {} 3206 | 3207 | pirates@4.0.6: {} 3208 | 3209 | possible-typed-array-names@1.0.0: {} 3210 | 3211 | postcss-import@15.1.0(postcss@8.4.38): 3212 | dependencies: 3213 | postcss: 8.4.38 3214 | postcss-value-parser: 4.2.0 3215 | read-cache: 1.0.0 3216 | resolve: 1.22.8 3217 | 3218 | postcss-js@4.0.1(postcss@8.4.38): 3219 | dependencies: 3220 | camelcase-css: 2.0.1 3221 | postcss: 8.4.38 3222 | 3223 | postcss-load-config@4.0.2(postcss@8.4.38): 3224 | dependencies: 3225 | lilconfig: 3.1.2 3226 | yaml: 2.4.5 3227 | optionalDependencies: 3228 | postcss: 8.4.38 3229 | 3230 | postcss-nested@6.0.1(postcss@8.4.38): 3231 | dependencies: 3232 | postcss: 8.4.38 3233 | postcss-selector-parser: 6.1.0 3234 | 3235 | postcss-selector-parser@6.1.0: 3236 | dependencies: 3237 | cssesc: 3.0.0 3238 | util-deprecate: 1.0.2 3239 | 3240 | postcss-value-parser@4.2.0: {} 3241 | 3242 | postcss@8.4.31: 3243 | dependencies: 3244 | nanoid: 3.3.7 3245 | picocolors: 1.0.1 3246 | source-map-js: 1.2.0 3247 | 3248 | postcss@8.4.38: 3249 | dependencies: 3250 | nanoid: 3.3.7 3251 | picocolors: 1.0.1 3252 | source-map-js: 1.2.0 3253 | 3254 | prelude-ls@1.2.1: {} 3255 | 3256 | prop-types@15.8.1: 3257 | dependencies: 3258 | loose-envify: 1.4.0 3259 | object-assign: 4.1.1 3260 | react-is: 16.13.1 3261 | 3262 | punycode@2.3.1: {} 3263 | 3264 | queue-microtask@1.2.3: {} 3265 | 3266 | react-dom@19.0.0-rc.0(react@19.0.0-rc.0): 3267 | dependencies: 3268 | react: 19.0.0-rc.0 3269 | scheduler: 0.25.0-rc.0 3270 | 3271 | react-is@16.13.1: {} 3272 | 3273 | react@19.0.0-rc.0: {} 3274 | 3275 | read-cache@1.0.0: 3276 | dependencies: 3277 | pify: 2.3.0 3278 | 3279 | readdirp@3.6.0: 3280 | dependencies: 3281 | picomatch: 2.3.1 3282 | 3283 | reflect.getprototypeof@1.0.6: 3284 | dependencies: 3285 | call-bind: 1.0.7 3286 | define-properties: 1.2.1 3287 | es-abstract: 1.23.3 3288 | es-errors: 1.3.0 3289 | get-intrinsic: 1.2.4 3290 | globalthis: 1.0.4 3291 | which-builtin-type: 1.1.3 3292 | 3293 | regenerator-runtime@0.14.1: {} 3294 | 3295 | regexp.prototype.flags@1.5.2: 3296 | dependencies: 3297 | call-bind: 1.0.7 3298 | define-properties: 1.2.1 3299 | es-errors: 1.3.0 3300 | set-function-name: 2.0.2 3301 | 3302 | resolve-from@4.0.0: {} 3303 | 3304 | resolve-pkg-maps@1.0.0: {} 3305 | 3306 | resolve@1.22.8: 3307 | dependencies: 3308 | is-core-module: 2.13.1 3309 | path-parse: 1.0.7 3310 | supports-preserve-symlinks-flag: 1.0.0 3311 | 3312 | resolve@2.0.0-next.5: 3313 | dependencies: 3314 | is-core-module: 2.13.1 3315 | path-parse: 1.0.7 3316 | supports-preserve-symlinks-flag: 1.0.0 3317 | 3318 | reusify@1.0.4: {} 3319 | 3320 | rimraf@3.0.2: 3321 | dependencies: 3322 | glob: 7.2.3 3323 | 3324 | run-parallel@1.2.0: 3325 | dependencies: 3326 | queue-microtask: 1.2.3 3327 | 3328 | safe-array-concat@1.1.2: 3329 | dependencies: 3330 | call-bind: 1.0.7 3331 | get-intrinsic: 1.2.4 3332 | has-symbols: 1.0.3 3333 | isarray: 2.0.5 3334 | 3335 | safe-regex-test@1.0.3: 3336 | dependencies: 3337 | call-bind: 1.0.7 3338 | es-errors: 1.3.0 3339 | is-regex: 1.1.4 3340 | 3341 | scheduler@0.25.0-rc.0: {} 3342 | 3343 | semver@6.3.1: {} 3344 | 3345 | semver@7.6.2: {} 3346 | 3347 | set-function-length@1.2.2: 3348 | dependencies: 3349 | define-data-property: 1.1.4 3350 | es-errors: 1.3.0 3351 | function-bind: 1.1.2 3352 | get-intrinsic: 1.2.4 3353 | gopd: 1.0.1 3354 | has-property-descriptors: 1.0.2 3355 | 3356 | set-function-name@2.0.2: 3357 | dependencies: 3358 | define-data-property: 1.1.4 3359 | es-errors: 1.3.0 3360 | functions-have-names: 1.2.3 3361 | has-property-descriptors: 1.0.2 3362 | 3363 | sharp@0.33.4: 3364 | dependencies: 3365 | color: 4.2.3 3366 | detect-libc: 2.0.3 3367 | semver: 7.6.2 3368 | optionalDependencies: 3369 | '@img/sharp-darwin-arm64': 0.33.4 3370 | '@img/sharp-darwin-x64': 0.33.4 3371 | '@img/sharp-libvips-darwin-arm64': 1.0.2 3372 | '@img/sharp-libvips-darwin-x64': 1.0.2 3373 | '@img/sharp-libvips-linux-arm': 1.0.2 3374 | '@img/sharp-libvips-linux-arm64': 1.0.2 3375 | '@img/sharp-libvips-linux-s390x': 1.0.2 3376 | '@img/sharp-libvips-linux-x64': 1.0.2 3377 | '@img/sharp-libvips-linuxmusl-arm64': 1.0.2 3378 | '@img/sharp-libvips-linuxmusl-x64': 1.0.2 3379 | '@img/sharp-linux-arm': 0.33.4 3380 | '@img/sharp-linux-arm64': 0.33.4 3381 | '@img/sharp-linux-s390x': 0.33.4 3382 | '@img/sharp-linux-x64': 0.33.4 3383 | '@img/sharp-linuxmusl-arm64': 0.33.4 3384 | '@img/sharp-linuxmusl-x64': 0.33.4 3385 | '@img/sharp-wasm32': 0.33.4 3386 | '@img/sharp-win32-ia32': 0.33.4 3387 | '@img/sharp-win32-x64': 0.33.4 3388 | optional: true 3389 | 3390 | shebang-command@2.0.0: 3391 | dependencies: 3392 | shebang-regex: 3.0.0 3393 | 3394 | shebang-regex@3.0.0: {} 3395 | 3396 | side-channel@1.0.6: 3397 | dependencies: 3398 | call-bind: 1.0.7 3399 | es-errors: 1.3.0 3400 | get-intrinsic: 1.2.4 3401 | object-inspect: 1.13.1 3402 | 3403 | signal-exit@4.1.0: {} 3404 | 3405 | simple-swizzle@0.2.2: 3406 | dependencies: 3407 | is-arrayish: 0.3.2 3408 | optional: true 3409 | 3410 | slash@3.0.0: {} 3411 | 3412 | source-map-js@1.2.0: {} 3413 | 3414 | streamsearch@1.1.0: {} 3415 | 3416 | string-width@4.2.3: 3417 | dependencies: 3418 | emoji-regex: 8.0.0 3419 | is-fullwidth-code-point: 3.0.0 3420 | strip-ansi: 6.0.1 3421 | 3422 | string-width@5.1.2: 3423 | dependencies: 3424 | eastasianwidth: 0.2.0 3425 | emoji-regex: 9.2.2 3426 | strip-ansi: 7.1.0 3427 | 3428 | string.prototype.matchall@4.0.11: 3429 | dependencies: 3430 | call-bind: 1.0.7 3431 | define-properties: 1.2.1 3432 | es-abstract: 1.23.3 3433 | es-errors: 1.3.0 3434 | es-object-atoms: 1.0.0 3435 | get-intrinsic: 1.2.4 3436 | gopd: 1.0.1 3437 | has-symbols: 1.0.3 3438 | internal-slot: 1.0.7 3439 | regexp.prototype.flags: 1.5.2 3440 | set-function-name: 2.0.2 3441 | side-channel: 1.0.6 3442 | 3443 | string.prototype.trim@1.2.9: 3444 | dependencies: 3445 | call-bind: 1.0.7 3446 | define-properties: 1.2.1 3447 | es-abstract: 1.23.3 3448 | es-object-atoms: 1.0.0 3449 | 3450 | string.prototype.trimend@1.0.8: 3451 | dependencies: 3452 | call-bind: 1.0.7 3453 | define-properties: 1.2.1 3454 | es-object-atoms: 1.0.0 3455 | 3456 | string.prototype.trimstart@1.0.8: 3457 | dependencies: 3458 | call-bind: 1.0.7 3459 | define-properties: 1.2.1 3460 | es-object-atoms: 1.0.0 3461 | 3462 | strip-ansi@6.0.1: 3463 | dependencies: 3464 | ansi-regex: 5.0.1 3465 | 3466 | strip-ansi@7.1.0: 3467 | dependencies: 3468 | ansi-regex: 6.0.1 3469 | 3470 | strip-bom@3.0.0: {} 3471 | 3472 | strip-json-comments@3.1.1: {} 3473 | 3474 | styled-jsx@5.1.3(react@19.0.0-rc.0): 3475 | dependencies: 3476 | client-only: 0.0.1 3477 | react: 19.0.0-rc.0 3478 | 3479 | sucrase@3.35.0: 3480 | dependencies: 3481 | '@jridgewell/gen-mapping': 0.3.5 3482 | commander: 4.1.1 3483 | glob: 10.4.1 3484 | lines-and-columns: 1.2.4 3485 | mz: 2.7.0 3486 | pirates: 4.0.6 3487 | ts-interface-checker: 0.1.13 3488 | 3489 | supports-color@7.2.0: 3490 | dependencies: 3491 | has-flag: 4.0.0 3492 | 3493 | supports-preserve-symlinks-flag@1.0.0: {} 3494 | 3495 | tailwindcss@3.4.4: 3496 | dependencies: 3497 | '@alloc/quick-lru': 5.2.0 3498 | arg: 5.0.2 3499 | chokidar: 3.6.0 3500 | didyoumean: 1.2.2 3501 | dlv: 1.1.3 3502 | fast-glob: 3.3.2 3503 | glob-parent: 6.0.2 3504 | is-glob: 4.0.3 3505 | jiti: 1.21.6 3506 | lilconfig: 2.1.0 3507 | micromatch: 4.0.7 3508 | normalize-path: 3.0.0 3509 | object-hash: 3.0.0 3510 | picocolors: 1.0.1 3511 | postcss: 8.4.38 3512 | postcss-import: 15.1.0(postcss@8.4.38) 3513 | postcss-js: 4.0.1(postcss@8.4.38) 3514 | postcss-load-config: 4.0.2(postcss@8.4.38) 3515 | postcss-nested: 6.0.1(postcss@8.4.38) 3516 | postcss-selector-parser: 6.1.0 3517 | resolve: 1.22.8 3518 | sucrase: 3.35.0 3519 | transitivePeerDependencies: 3520 | - ts-node 3521 | 3522 | tapable@2.2.1: {} 3523 | 3524 | text-table@0.2.0: {} 3525 | 3526 | thenify-all@1.6.0: 3527 | dependencies: 3528 | thenify: 3.3.1 3529 | 3530 | thenify@3.3.1: 3531 | dependencies: 3532 | any-promise: 1.3.0 3533 | 3534 | to-regex-range@5.0.1: 3535 | dependencies: 3536 | is-number: 7.0.0 3537 | 3538 | ts-api-utils@1.3.0(typescript@5.4.5): 3539 | dependencies: 3540 | typescript: 5.4.5 3541 | 3542 | ts-interface-checker@0.1.13: {} 3543 | 3544 | tsconfig-paths@3.15.0: 3545 | dependencies: 3546 | '@types/json5': 0.0.29 3547 | json5: 1.0.2 3548 | minimist: 1.2.8 3549 | strip-bom: 3.0.0 3550 | 3551 | tslib@2.6.3: {} 3552 | 3553 | type-check@0.4.0: 3554 | dependencies: 3555 | prelude-ls: 1.2.1 3556 | 3557 | type-fest@0.20.2: {} 3558 | 3559 | typed-array-buffer@1.0.2: 3560 | dependencies: 3561 | call-bind: 1.0.7 3562 | es-errors: 1.3.0 3563 | is-typed-array: 1.1.13 3564 | 3565 | typed-array-byte-length@1.0.1: 3566 | dependencies: 3567 | call-bind: 1.0.7 3568 | for-each: 0.3.3 3569 | gopd: 1.0.1 3570 | has-proto: 1.0.3 3571 | is-typed-array: 1.1.13 3572 | 3573 | typed-array-byte-offset@1.0.2: 3574 | dependencies: 3575 | available-typed-arrays: 1.0.7 3576 | call-bind: 1.0.7 3577 | for-each: 0.3.3 3578 | gopd: 1.0.1 3579 | has-proto: 1.0.3 3580 | is-typed-array: 1.1.13 3581 | 3582 | typed-array-length@1.0.6: 3583 | dependencies: 3584 | call-bind: 1.0.7 3585 | for-each: 0.3.3 3586 | gopd: 1.0.1 3587 | has-proto: 1.0.3 3588 | is-typed-array: 1.1.13 3589 | possible-typed-array-names: 1.0.0 3590 | 3591 | typescript@5.4.5: {} 3592 | 3593 | unbox-primitive@1.0.2: 3594 | dependencies: 3595 | call-bind: 1.0.7 3596 | has-bigints: 1.0.2 3597 | has-symbols: 1.0.3 3598 | which-boxed-primitive: 1.0.2 3599 | 3600 | undici-types@5.26.5: {} 3601 | 3602 | uri-js@4.4.1: 3603 | dependencies: 3604 | punycode: 2.3.1 3605 | 3606 | util-deprecate@1.0.2: {} 3607 | 3608 | web-streams-polyfill@3.3.3: {} 3609 | 3610 | which-boxed-primitive@1.0.2: 3611 | dependencies: 3612 | is-bigint: 1.0.4 3613 | is-boolean-object: 1.1.2 3614 | is-number-object: 1.0.7 3615 | is-string: 1.0.7 3616 | is-symbol: 1.0.4 3617 | 3618 | which-builtin-type@1.1.3: 3619 | dependencies: 3620 | function.prototype.name: 1.1.6 3621 | has-tostringtag: 1.0.2 3622 | is-async-function: 2.0.0 3623 | is-date-object: 1.0.5 3624 | is-finalizationregistry: 1.0.2 3625 | is-generator-function: 1.0.10 3626 | is-regex: 1.1.4 3627 | is-weakref: 1.0.2 3628 | isarray: 2.0.5 3629 | which-boxed-primitive: 1.0.2 3630 | which-collection: 1.0.2 3631 | which-typed-array: 1.1.15 3632 | 3633 | which-collection@1.0.2: 3634 | dependencies: 3635 | is-map: 2.0.3 3636 | is-set: 2.0.3 3637 | is-weakmap: 2.0.2 3638 | is-weakset: 2.0.3 3639 | 3640 | which-typed-array@1.1.15: 3641 | dependencies: 3642 | available-typed-arrays: 1.0.7 3643 | call-bind: 1.0.7 3644 | for-each: 0.3.3 3645 | gopd: 1.0.1 3646 | has-tostringtag: 1.0.2 3647 | 3648 | which@2.0.2: 3649 | dependencies: 3650 | isexe: 2.0.0 3651 | 3652 | word-wrap@1.2.5: {} 3653 | 3654 | wrap-ansi@7.0.0: 3655 | dependencies: 3656 | ansi-styles: 4.3.0 3657 | string-width: 4.2.3 3658 | strip-ansi: 6.0.1 3659 | 3660 | wrap-ansi@8.1.0: 3661 | dependencies: 3662 | ansi-styles: 6.2.1 3663 | string-width: 5.1.2 3664 | strip-ansi: 7.1.0 3665 | 3666 | wrappy@1.0.2: {} 3667 | 3668 | ws@8.17.1: {} 3669 | 3670 | yaml@2.4.5: {} 3671 | 3672 | yocto-queue@0.1.0: {} 3673 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- 1 | import type { Config } from "tailwindcss"; 2 | 3 | const config: Config = { 4 | content: [ 5 | "./pages/**/*.{js,ts,jsx,tsx,mdx}", 6 | "./components/**/*.{js,ts,jsx,tsx,mdx}", 7 | "./app/**/*.{js,ts,jsx,tsx,mdx}", 8 | ], 9 | theme: { 10 | extend: { 11 | colors: { 12 | background: "var(--background)", 13 | foreground: "var(--foreground)", 14 | }, 15 | }, 16 | }, 17 | plugins: [], 18 | }; 19 | export default config; 20 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2017", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "noEmit": true, 9 | "esModuleInterop": true, 10 | "module": "esnext", 11 | "moduleResolution": "bundler", 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "jsx": "preserve", 15 | "incremental": true, 16 | "plugins": [ 17 | { 18 | "name": "next" 19 | } 20 | ], 21 | "paths": { 22 | "@/*": ["./*"] 23 | } 24 | }, 25 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 26 | "exclude": ["node_modules"] 27 | } 28 | --------------------------------------------------------------------------------