├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── actions.ts ├── db.ts ├── favicon.ico ├── globals.css ├── layout.tsx ├── opengraph-image.png └── page.tsx ├── drizzle.config.ts ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── tailwind.config.ts ├── tsconfig.json └── vercel.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | .yarn/install-state.gz 8 | 9 | # testing 10 | /coverage 11 | 12 | # next.js 13 | /.next/ 14 | /out/ 15 | 16 | # production 17 | /build 18 | 19 | # misc 20 | .DS_Store 21 | *.pem 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | # local env files 29 | .env*.local 30 | .env 31 | 32 | # vercel 33 | .vercel 34 | 35 | # typescript 36 | *.tsbuildinfo 37 | next-env.d.ts 38 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # emojis-todo 2 | 3 | A simple app to demonstate the ease of fetching and mutating data with Next.js App Router, RSC, and Server Actions. 4 | 5 | ## Deploying 6 | 7 | - Import this repo 8 | - Create a Postgres (Neon) db and attach it to your Vercel project 9 | 10 | ## Developing 11 | 12 | - Run `vc link` - make sure your Vercel project has a Postgres db attached 13 | - Run `vc env pull` to populate `.env` 14 | - Run `drizzle-kit push` to create the db schema 15 | - Run `pnpm dev` 16 | -------------------------------------------------------------------------------- /app/actions.ts: -------------------------------------------------------------------------------- 1 | "use server"; 2 | 3 | import { db, todosTable } from "./db"; 4 | import { redirect } from "next/navigation"; 5 | 6 | export async function submit(form: FormData) { 7 | const text = form.get("text") + ""; 8 | if (!/^[\p{Emoji}]+$/u.test(text)) return; 9 | await db.insert(todosTable).values({ text }); 10 | redirect("/"); 11 | } 12 | -------------------------------------------------------------------------------- /app/db.ts: -------------------------------------------------------------------------------- 1 | import { neon } from "@neondatabase/serverless"; 2 | import { drizzle } from "drizzle-orm/neon-http"; 3 | import { pgTable, serial, varchar } from "drizzle-orm/pg-core"; 4 | 5 | const sql = neon(process.env.POSTGRES_URL!); 6 | export const db = drizzle(sql); 7 | 8 | export const todosTable = pgTable("todos", { 9 | id: serial("id").primaryKey(), 10 | text: varchar("text", { length: 10 }), 11 | }); 12 | -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauchg/emoji-todo/6569130c42055cd56b1418776287569330fa8c8b/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | /* 6 | * Note: I'd never use tailwind like this, 7 | * but I'm trying to keep the example simple 8 | * and the code screenshot focused on data fetching 9 | * rather than styling 10 | */ 11 | 12 | main { 13 | @apply flex flex-col; 14 | @apply h-dvh max-w-xl m-auto; 15 | } 16 | 17 | h1 { 18 | @apply flex justify-between items-center; 19 | @apply text-xl font-bold; 20 | @apply p-4; 21 | } 22 | 23 | h1 a { 24 | @apply text-xs text-blue-600; 25 | @apply font-normal; 26 | } 27 | 28 | ul { 29 | @apply flex-grow overflow-auto; 30 | @apply p-4 py-0; 31 | } 32 | 33 | ul li { 34 | @apply bg-gray-100 p-2 my-2; 35 | } 36 | 37 | input[type="text"] { 38 | @apply border border-gray-400 rounded-xl p-2 px-4; 39 | @apply w-full; 40 | @apply text-base; 41 | } 42 | 43 | button { 44 | @apply bg-blue-500 text-white font-bold py-2 px-4 rounded-xl; 45 | } 46 | 47 | form { 48 | @apply flex gap-3; 49 | @apply p-4; 50 | } 51 | -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- 1 | import type { Metadata } from "next"; 2 | import { Inter } from "next/font/google"; 3 | import "./globals.css"; 4 | 5 | const inter = Inter({ subsets: ["latin"] }); 6 | 7 | export const metadata: Metadata = { 8 | title: "Next.js TODO", 9 | metadataBase: new URL("https://emoji-todo.vercel.app"), 10 | openGraph: { 11 | title: "Emoji TODO", 12 | url: "https://emoji-todo.vercel.app", 13 | siteName: "Emoji TODO", 14 | }, 15 | twitter: { 16 | title: "Emoji TODO", 17 | card: "summary_large_image", 18 | site: "@rauchg", 19 | creator: "@rauchg", 20 | }, 21 | description: "A simple app to demonstate the ease of fetching and mutating data with Next.js App Router, RSC, and Server Actions." 22 | }; 23 | 24 | export default function RootLayout({ 25 | children, 26 | }: Readonly<{ 27 | children: React.ReactNode; 28 | }>) { 29 | return ( 30 | 31 | {children} 32 | 33 | ); 34 | } 35 | -------------------------------------------------------------------------------- /app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauchg/emoji-todo/6569130c42055cd56b1418776287569330fa8c8b/app/opengraph-image.png -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- 1 | import { db, todosTable } from "./db"; 2 | import { submit } from "./actions"; 3 | import { sql } from "drizzle-orm"; 4 | 5 | export default async function Home({ 6 | searchParams, 7 | }: { 8 | searchParams: { asc: string }; 9 | }) { 10 | const todos = await db 11 | .select() 12 | .from(todosTable) 13 | .limit(20) 14 | .orderBy( 15 | searchParams.asc ? sql`${todosTable.id} ASC` : sql`${todosTable.id} DESC` 16 | ); 17 | 18 | return ( 19 |
20 |

21 | Emoji TODO{" "} 22 | 23 | source 24 | 25 |

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