AT-based link agregator. Mirror of https://github.com/likeandscribe/frontpage

Upgrade to next 15.1.0 (#218)

* Upgrade to next 15.1.0

* Fix unravel build errors

* Fix type

authored by tom.sherman.is and committed by

GitHub e7ebef8c 8332324f

+503 -1003
+6 -1
package.json
··· 1 1 { 2 2 "name": "monorepo", 3 3 "private": true, 4 - "packageManager": "pnpm@9.1.0", 4 + "packageManager": "pnpm@10.3.0", 5 5 "devDependencies": { 6 6 "prettier": "^3.3.0", 7 7 "turbo": "2.1.2" 8 + }, 9 + "pnpm": { 10 + "onlyBuiltDependencies": [ 11 + "@vercel/speed-insights" 12 + ] 8 13 } 9 14 }
+3 -3
packages/atproto-browser/package.json
··· 17 17 "@atproto/syntax": "^0.3.1", 18 18 "hls.js": "^1.5.15", 19 19 "http-link-header": "^1.1.3", 20 - "next": "15.0.3", 20 + "next": "catalog:", 21 21 "node-html-parser": "^6.1.13", 22 22 "parse-hls": "^1.0.7", 23 - "react": "19.0.0-rc-f994737d14-20240522", 24 - "react-dom": "19.0.0-rc-f994737d14-20240522", 23 + "react": "catalog:", 24 + "react-dom": "catalog:", 25 25 "react-error-boundary": "^4.0.13", 26 26 "server-only": "^0.0.1", 27 27 "swr": "2.2.6-beta.4",
+3 -3
packages/frontpage/package.json
··· 44 44 "drizzle-orm": "^0.34.1", 45 45 "import-in-the-middle": "1.11.2", 46 46 "jose": "^5.4.0", 47 - "next": "15.0.0", 47 + "next": "catalog:", 48 48 "next-themes": "^0.3.0", 49 49 "oauth4webapi": "^2.12.1", 50 - "react": "19.0.0-rc-f994737d14-20240522", 51 - "react-dom": "19.0.0-rc-f994737d14-20240522", 50 + "react": "catalog:", 51 + "react-dom": "catalog:", 52 52 "react-error-boundary": "^4.0.13", 53 53 "react-intersection-observer": "^9.13.1", 54 54 "server-only": "^0.0.1",
+3 -2
packages/unravel/app/blog/[slug]/page.tsx
··· 3 3 import { notFound } from "next/navigation"; 4 4 5 5 interface Props { 6 - params: { slug: string }; 6 + params: Promise<{ slug: string }>; 7 7 } 8 8 9 - export default async function BlogPost({ params: { slug } }: Props) { 9 + export default async function BlogPost(props: Props) { 10 + const { slug } = await props.params; 10 11 const rkey = slug.split("-")[0]; 11 12 if (!rkey) notFound(); 12 13 const blog = await getBlog(rkey);
+3 -3
packages/unravel/app/unravel-unicorn/[hash]/route.ts
··· 17 17 return [{ hash: HASH }]; 18 18 } 19 19 20 - export function GET(_: Request, { params }: { params: Params }) { 21 - console.log(params); 22 - if (params.hash !== HASH) notFound(); 20 + export async function GET(_: Request, { params }: { params: Promise<Params> }) { 21 + const { hash } = await params; 22 + if (hash !== HASH) notFound(); 23 23 return Response.json(unicorn, { 24 24 headers: { 25 25 "Cache-Control": "public, max-age=31536000, immutable",
+3 -3
packages/unravel/package.json
··· 12 12 "dependencies": { 13 13 "@markdoc/markdoc": "^0.4.0", 14 14 "clsx": "^2.1.1", 15 - "next": "15.0.0-rc.0", 15 + "next": "catalog:", 16 16 "next-themes": "^0.3.0", 17 - "react": "19.0.0-rc-3563387fe3-20240621", 18 - "react-dom": "19.0.0-rc-3563387fe3-20240621", 17 + "react": "catalog:", 18 + "react-dom": "catalog:", 19 19 "server-only": "^0.0.1", 20 20 "slugify": "^1.6.6", 21 21 "tailwind-merge": "^2.3.0",
+477 -988
pnpm-lock.yaml
··· 4 4 autoInstallPeers: true 5 5 excludeLinksFromLockfile: false 6 6 7 + catalogs: 8 + default: 9 + next: 10 + specifier: ^15.1.0 11 + version: 15.1.7 12 + react: 13 + specifier: ^19.0.0 14 + version: 19.0.0 15 + react-dom: 16 + specifier: ^19.0.0 17 + version: 19.0.0 18 + 7 19 importers: 8 20 9 21 .: ··· 36 48 specifier: ^1.1.3 37 49 version: 1.1.3 38 50 next: 39 - specifier: 15.0.3 40 - version: 15.0.3(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 51 + specifier: 'catalog:' 52 + version: 15.1.7(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 41 53 node-html-parser: 42 54 specifier: ^6.1.13 43 55 version: 6.1.13 ··· 45 57 specifier: ^1.0.7 46 58 version: 1.0.7 47 59 react: 48 - specifier: 19.0.0-rc-f994737d14-20240522 49 - version: 19.0.0-rc-f994737d14-20240522 60 + specifier: 'catalog:' 61 + version: 19.0.0 50 62 react-dom: 51 - specifier: 19.0.0-rc-f994737d14-20240522 52 - version: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 63 + specifier: 'catalog:' 64 + version: 19.0.0(react@19.0.0) 53 65 react-error-boundary: 54 66 specifier: ^4.0.13 55 - version: 4.0.13(react@19.0.0-rc-f994737d14-20240522) 67 + version: 4.0.13(react@19.0.0) 56 68 server-only: 57 69 specifier: ^0.0.1 58 70 version: 0.0.1 59 71 swr: 60 72 specifier: 2.2.6-beta.4 61 - version: 2.2.6-beta.4(react@19.0.0-rc-f994737d14-20240522) 73 + version: 2.2.6-beta.4(react@19.0.0) 62 74 zod: 63 75 specifier: ^3.23.8 64 76 version: 3.23.8 ··· 110 122 version: 7.14.1(eslint@8.57.0)(typescript@5.5.2) 111 123 '@vercel/style-guide': 112 124 specifier: ^6.0.0 113 - version: 6.0.0(@next/eslint-plugin-next@14.2.3)(eslint@8.57.0)(prettier@3.3.0)(typescript@5.5.2)(vitest@2.0.4) 125 + version: 6.0.0(@next/eslint-plugin-next@14.2.3)(eslint@8.57.0)(prettier@3.3.0)(typescript@5.5.2)(vitest@2.0.4(@types/node@20.13.0)(jsdom@24.1.1(bufferutil@4.0.8)(utf-8-validate@6.0.3))(terser@5.34.1)) 114 126 eslint-config-turbo: 115 127 specifier: ^2.0.5 116 128 version: 2.0.5(eslint@8.57.0) ··· 140 152 version: 14.2.4 141 153 '@radix-ui/react-alert-dialog': 142 154 specifier: ^1.1.1 143 - version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 155 + version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 144 156 '@radix-ui/react-avatar': 145 157 specifier: ^1.1.0 146 - version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 158 + version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 147 159 '@radix-ui/react-dialog': 148 160 specifier: ^1.1.1 149 - version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 161 + version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 150 162 '@radix-ui/react-dropdown-menu': 151 163 specifier: ^2.1.1 152 - version: 2.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 164 + version: 2.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 153 165 '@radix-ui/react-hover-card': 154 166 specifier: ^1.1.1 155 - version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 167 + version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 156 168 '@radix-ui/react-icons': 157 169 specifier: ^1.3.0 158 - version: 1.3.0(react@19.0.0-rc-f994737d14-20240522) 170 + version: 1.3.0(react@19.0.0) 159 171 '@radix-ui/react-label': 160 172 specifier: ^2.1.0 161 - version: 2.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 173 + version: 2.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 162 174 '@radix-ui/react-popover': 163 175 specifier: ^1.1.1 164 - version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 176 + version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 165 177 '@radix-ui/react-select': 166 178 specifier: ^2.1.1 167 - version: 2.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 179 + version: 2.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 168 180 '@radix-ui/react-separator': 169 181 specifier: ^1.1.0 170 - version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 182 + version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 171 183 '@radix-ui/react-slot': 172 184 specifier: ^1.1.0 173 - version: 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 185 + version: 1.1.0(@types/react@18.3.10)(react@19.0.0) 174 186 '@radix-ui/react-tabs': 175 187 specifier: ^1.1.0 176 - version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 188 + version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 177 189 '@radix-ui/react-toast': 178 190 specifier: ^1.2.1 179 - version: 1.2.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 191 + version: 1.2.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 180 192 '@radix-ui/react-tooltip': 181 193 specifier: ^1.1.1 182 - version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 194 + version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 183 195 '@sentry/nextjs': 184 196 specifier: ^8.35.0 185 - version: 8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(next@15.0.0(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)(webpack@5.95.0(esbuild@0.19.12)) 197 + version: 8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(next@15.1.7(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(webpack@5.95.0(esbuild@0.19.12)) 186 198 '@vercel/analytics': 187 199 specifier: ^1.3.1 188 - version: 1.3.1(next@15.0.0(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 200 + version: 1.3.1(next@15.1.7(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) 189 201 '@vercel/speed-insights': 190 202 specifier: ^1.0.12 191 - version: 1.0.12(next@15.0.0(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 203 + version: 1.0.12(next@15.1.7(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) 192 204 class-variance-authority: 193 205 specifier: ^0.7.0 194 206 version: 0.7.0 ··· 200 212 version: 3.6.0 201 213 drizzle-orm: 202 214 specifier: ^0.34.1 203 - version: 0.34.1(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@neondatabase/serverless@0.7.2)(@opentelemetry/api@1.9.0)(@types/better-sqlite3@7.6.10)(@types/pg@8.6.6)(@types/react@18.3.10)(@vercel/postgres@0.8.0)(better-sqlite3@11.0.0)(kysely@0.22.0)(react@19.0.0-rc-f994737d14-20240522) 215 + version: 0.34.1(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@neondatabase/serverless@0.7.2)(@opentelemetry/api@1.9.0)(@types/better-sqlite3@7.6.10)(@types/pg@8.6.6)(@types/react@18.3.10)(@vercel/postgres@0.8.0)(better-sqlite3@11.0.0)(kysely@0.22.0)(react@19.0.0) 204 216 import-in-the-middle: 205 217 specifier: 1.11.2 206 218 version: 1.11.2 ··· 208 220 specifier: ^5.4.0 209 221 version: 5.4.0 210 222 next: 211 - specifier: 15.0.0 212 - version: 15.0.0(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 223 + specifier: 'catalog:' 224 + version: 15.1.7(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 213 225 next-themes: 214 226 specifier: ^0.3.0 215 - version: 0.3.0(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 227 + version: 0.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 216 228 oauth4webapi: 217 229 specifier: ^2.12.1 218 230 version: 2.12.1 219 231 react: 220 - specifier: 19.0.0-rc-f994737d14-20240522 221 - version: 19.0.0-rc-f994737d14-20240522 232 + specifier: 'catalog:' 233 + version: 19.0.0 222 234 react-dom: 223 - specifier: 19.0.0-rc-f994737d14-20240522 224 - version: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 235 + specifier: 'catalog:' 236 + version: 19.0.0(react@19.0.0) 225 237 react-error-boundary: 226 238 specifier: ^4.0.13 227 - version: 4.0.13(react@19.0.0-rc-f994737d14-20240522) 239 + version: 4.0.13(react@19.0.0) 228 240 react-intersection-observer: 229 241 specifier: ^9.13.1 230 - version: 9.13.1(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 242 + version: 9.13.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 231 243 server-only: 232 244 specifier: ^0.0.1 233 245 version: 0.0.1 234 246 swr: 235 247 specifier: 2.2.6-beta.4 236 - version: 2.2.6-beta.4(react@19.0.0-rc-f994737d14-20240522) 248 + version: 2.2.6-beta.4(react@19.0.0) 237 249 tailwind-merge: 238 250 specifier: ^2.3.0 239 251 version: 2.3.0 ··· 252 264 version: link:../typescript-config 253 265 '@testing-library/react': 254 266 specifier: ^16.0.0 255 - version: 16.0.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 267 + version: 16.0.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 256 268 '@types/node': 257 269 specifier: ^20 258 270 version: 20.13.0 ··· 339 351 dependencies: 340 352 '@markdoc/markdoc': 341 353 specifier: ^0.4.0 342 - version: 0.4.0(@types/react@18.3.10)(react@19.0.0-rc-3563387fe3-20240621) 354 + version: 0.4.0(@types/react@18.3.10)(react@19.0.0) 343 355 clsx: 344 356 specifier: ^2.1.1 345 357 version: 2.1.1 346 358 next: 347 - specifier: 15.0.0-rc.0 348 - version: 15.0.0-rc.0(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-3563387fe3-20240621(react@19.0.0-rc-3563387fe3-20240621))(react@19.0.0-rc-3563387fe3-20240621) 359 + specifier: 'catalog:' 360 + version: 15.1.7(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 349 361 next-themes: 350 362 specifier: ^0.3.0 351 - version: 0.3.0(react-dom@19.0.0-rc-3563387fe3-20240621(react@19.0.0-rc-3563387fe3-20240621))(react@19.0.0-rc-3563387fe3-20240621) 363 + version: 0.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 352 364 react: 353 - specifier: 19.0.0-rc-3563387fe3-20240621 354 - version: 19.0.0-rc-3563387fe3-20240621 365 + specifier: 'catalog:' 366 + version: 19.0.0 355 367 react-dom: 356 - specifier: 19.0.0-rc-3563387fe3-20240621 357 - version: 19.0.0-rc-3563387fe3-20240621(react@19.0.0-rc-3563387fe3-20240621) 368 + specifier: 'catalog:' 369 + version: 19.0.0(react@19.0.0) 358 370 server-only: 359 371 specifier: ^0.0.1 360 372 version: 0.0.1 ··· 1103 1115 '@humanwhocodes/object-schema@2.0.3': 1104 1116 resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} 1105 1117 1106 - '@img/sharp-darwin-arm64@0.33.4': 1107 - resolution: {integrity: sha512-p0suNqXufJs9t3RqLBO6vvrgr5OhgbWp76s5gTRvdmxmuv9E1rcaqGUsl3l4mKVmXPkTkTErXediAui4x+8PSA==} 1108 - 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'} 1109 - cpu: [arm64] 1110 - os: [darwin] 1111 - 1112 1118 '@img/sharp-darwin-arm64@0.33.5': 1113 1119 resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} 1114 1120 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1115 1121 cpu: [arm64] 1116 1122 os: [darwin] 1117 1123 1118 - '@img/sharp-darwin-x64@0.33.4': 1119 - resolution: {integrity: sha512-0l7yRObwtTi82Z6ebVI2PnHT8EB2NxBgpK2MiKJZJ7cz32R4lxd001ecMhzzsZig3Yv9oclvqqdV93jo9hy+Dw==} 1120 - 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'} 1121 - cpu: [x64] 1122 - os: [darwin] 1123 - 1124 1124 '@img/sharp-darwin-x64@0.33.5': 1125 1125 resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} 1126 1126 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1127 1127 cpu: [x64] 1128 1128 os: [darwin] 1129 1129 1130 - '@img/sharp-libvips-darwin-arm64@1.0.2': 1131 - resolution: {integrity: sha512-tcK/41Rq8IKlSaKRCCAuuY3lDJjQnYIW1UXU1kxcEKrfL8WR7N6+rzNoOxoQRJWTAECuKwgAHnPvqXGN8XfkHA==} 1132 - engines: {macos: '>=11', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 1133 - cpu: [arm64] 1134 - os: [darwin] 1135 - 1136 1130 '@img/sharp-libvips-darwin-arm64@1.0.4': 1137 1131 resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} 1138 1132 cpu: [arm64] 1139 1133 os: [darwin] 1140 1134 1141 - '@img/sharp-libvips-darwin-x64@1.0.2': 1142 - resolution: {integrity: sha512-Ofw+7oaWa0HiiMiKWqqaZbaYV3/UGL2wAPeLuJTx+9cXpCRdvQhCLG0IH8YGwM0yGWGLpsF4Su9vM1o6aer+Fw==} 1143 - engines: {macos: '>=10.13', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 1144 - cpu: [x64] 1145 - os: [darwin] 1146 - 1147 1135 '@img/sharp-libvips-darwin-x64@1.0.4': 1148 1136 resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} 1149 1137 cpu: [x64] 1150 1138 os: [darwin] 1151 - 1152 - '@img/sharp-libvips-linux-arm64@1.0.2': 1153 - resolution: {integrity: sha512-x7kCt3N00ofFmmkkdshwj3vGPCnmiDh7Gwnd4nUwZln2YjqPxV1NlTyZOvoDWdKQVDL911487HOueBvrpflagw==} 1154 - engines: {glibc: '>=2.26', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 1155 - cpu: [arm64] 1156 - os: [linux] 1157 1139 1158 1140 '@img/sharp-libvips-linux-arm64@1.0.4': 1159 1141 resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} 1160 1142 cpu: [arm64] 1161 1143 os: [linux] 1162 1144 1163 - '@img/sharp-libvips-linux-arm@1.0.2': 1164 - resolution: {integrity: sha512-iLWCvrKgeFoglQxdEwzu1eQV04o8YeYGFXtfWU26Zr2wWT3q3MTzC+QTCO3ZQfWd3doKHT4Pm2kRmLbupT+sZw==} 1165 - engines: {glibc: '>=2.28', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 1166 - cpu: [arm] 1167 - os: [linux] 1168 - 1169 1145 '@img/sharp-libvips-linux-arm@1.0.5': 1170 1146 resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} 1171 1147 cpu: [arm] 1172 1148 os: [linux] 1173 1149 1174 - '@img/sharp-libvips-linux-s390x@1.0.2': 1175 - resolution: {integrity: sha512-cmhQ1J4qVhfmS6szYW7RT+gLJq9dH2i4maq+qyXayUSn9/3iY2ZeWpbAgSpSVbV2E1JUL2Gg7pwnYQ1h8rQIog==} 1176 - engines: {glibc: '>=2.28', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 1177 - cpu: [s390x] 1178 - os: [linux] 1179 - 1180 1150 '@img/sharp-libvips-linux-s390x@1.0.4': 1181 1151 resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} 1182 1152 cpu: [s390x] 1183 1153 os: [linux] 1184 1154 1185 - '@img/sharp-libvips-linux-x64@1.0.2': 1186 - resolution: {integrity: sha512-E441q4Qdb+7yuyiADVi5J+44x8ctlrqn8XgkDTwr4qPJzWkaHwD489iZ4nGDgcuya4iMN3ULV6NwbhRZJ9Z7SQ==} 1187 - engines: {glibc: '>=2.26', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 1188 - cpu: [x64] 1189 - os: [linux] 1190 - 1191 1155 '@img/sharp-libvips-linux-x64@1.0.4': 1192 1156 resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} 1193 1157 cpu: [x64] 1194 1158 os: [linux] 1195 1159 1196 - '@img/sharp-libvips-linuxmusl-arm64@1.0.2': 1197 - resolution: {integrity: sha512-3CAkndNpYUrlDqkCM5qhksfE+qSIREVpyoeHIU6jd48SJZViAmznoQQLAv4hVXF7xyUB9zf+G++e2v1ABjCbEQ==} 1198 - engines: {musl: '>=1.2.2', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 1199 - cpu: [arm64] 1200 - os: [linux] 1201 - 1202 1160 '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 1203 1161 resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} 1204 1162 cpu: [arm64] 1205 - os: [linux] 1206 - 1207 - '@img/sharp-libvips-linuxmusl-x64@1.0.2': 1208 - resolution: {integrity: sha512-VI94Q6khIHqHWNOh6LLdm9s2Ry4zdjWJwH56WoiJU7NTeDwyApdZZ8c+SADC8OH98KWNQXnE01UdJ9CSfZvwZw==} 1209 - engines: {musl: '>=1.2.2', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 1210 - cpu: [x64] 1211 1163 os: [linux] 1212 1164 1213 1165 '@img/sharp-libvips-linuxmusl-x64@1.0.4': ··· 1215 1167 cpu: [x64] 1216 1168 os: [linux] 1217 1169 1218 - '@img/sharp-linux-arm64@0.33.4': 1219 - resolution: {integrity: sha512-2800clwVg1ZQtxwSoTlHvtm9ObgAax7V6MTAB/hDT945Tfyy3hVkmiHpeLPCKYqYR1Gcmv1uDZ3a4OFwkdBL7Q==} 1220 - 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'} 1221 - cpu: [arm64] 1222 - os: [linux] 1223 - 1224 1170 '@img/sharp-linux-arm64@0.33.5': 1225 1171 resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} 1226 1172 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1227 1173 cpu: [arm64] 1228 1174 os: [linux] 1229 1175 1230 - '@img/sharp-linux-arm@0.33.4': 1231 - resolution: {integrity: sha512-RUgBD1c0+gCYZGCCe6mMdTiOFS0Zc/XrN0fYd6hISIKcDUbAW5NtSQW9g/powkrXYm6Vzwd6y+fqmExDuCdHNQ==} 1232 - 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'} 1233 - cpu: [arm] 1234 - os: [linux] 1235 - 1236 1176 '@img/sharp-linux-arm@0.33.5': 1237 1177 resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} 1238 1178 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1239 1179 cpu: [arm] 1240 1180 os: [linux] 1241 1181 1242 - '@img/sharp-linux-s390x@0.33.4': 1243 - resolution: {integrity: sha512-h3RAL3siQoyzSoH36tUeS0PDmb5wINKGYzcLB5C6DIiAn2F3udeFAum+gj8IbA/82+8RGCTn7XW8WTFnqag4tQ==} 1244 - 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'} 1245 - cpu: [s390x] 1246 - os: [linux] 1247 - 1248 1182 '@img/sharp-linux-s390x@0.33.5': 1249 1183 resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} 1250 1184 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1251 1185 cpu: [s390x] 1252 1186 os: [linux] 1253 1187 1254 - '@img/sharp-linux-x64@0.33.4': 1255 - resolution: {integrity: sha512-GoR++s0XW9DGVi8SUGQ/U4AeIzLdNjHka6jidVwapQ/JebGVQIpi52OdyxCNVRE++n1FCLzjDovJNozif7w/Aw==} 1256 - 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'} 1257 - cpu: [x64] 1258 - os: [linux] 1259 - 1260 1188 '@img/sharp-linux-x64@0.33.5': 1261 1189 resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} 1262 1190 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1263 1191 cpu: [x64] 1264 1192 os: [linux] 1265 1193 1266 - '@img/sharp-linuxmusl-arm64@0.33.4': 1267 - resolution: {integrity: sha512-nhr1yC3BlVrKDTl6cO12gTpXMl4ITBUZieehFvMntlCXFzH2bvKG76tBL2Y/OqhupZt81pR7R+Q5YhJxW0rGgQ==} 1268 - 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'} 1269 - cpu: [arm64] 1270 - os: [linux] 1271 - 1272 1194 '@img/sharp-linuxmusl-arm64@0.33.5': 1273 1195 resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} 1274 1196 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1275 1197 cpu: [arm64] 1276 1198 os: [linux] 1277 1199 1278 - '@img/sharp-linuxmusl-x64@0.33.4': 1279 - resolution: {integrity: sha512-uCPTku0zwqDmZEOi4ILyGdmW76tH7dm8kKlOIV1XC5cLyJ71ENAAqarOHQh0RLfpIpbV5KOpXzdU6XkJtS0daw==} 1280 - 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'} 1281 - cpu: [x64] 1282 - os: [linux] 1283 - 1284 1200 '@img/sharp-linuxmusl-x64@0.33.5': 1285 1201 resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} 1286 1202 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1287 1203 cpu: [x64] 1288 1204 os: [linux] 1289 1205 1290 - '@img/sharp-wasm32@0.33.4': 1291 - resolution: {integrity: sha512-Bmmauh4sXUsUqkleQahpdNXKvo+wa1V9KhT2pDA4VJGKwnKMJXiSTGphn0gnJrlooda0QxCtXc6RX1XAU6hMnQ==} 1292 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 1293 - cpu: [wasm32] 1294 - 1295 1206 '@img/sharp-wasm32@0.33.5': 1296 1207 resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} 1297 1208 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1298 1209 cpu: [wasm32] 1299 1210 1300 - '@img/sharp-win32-ia32@0.33.4': 1301 - resolution: {integrity: sha512-99SJ91XzUhYHbx7uhK3+9Lf7+LjwMGQZMDlO/E/YVJ7Nc3lyDFZPGhjwiYdctoH2BOzW9+TnfqcaMKt0jHLdqw==} 1302 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 1303 - cpu: [ia32] 1304 - os: [win32] 1305 - 1306 1211 '@img/sharp-win32-ia32@0.33.5': 1307 1212 resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} 1308 1213 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1309 1214 cpu: [ia32] 1310 - os: [win32] 1311 - 1312 - '@img/sharp-win32-x64@0.33.4': 1313 - resolution: {integrity: sha512-3QLocdTRVIrFNye5YocZl+KKpYKP+fksi1QhmOArgx7GyhIbQp/WrJRu176jm8IxromS7RIkzMiMINVdBtC8Aw==} 1314 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} 1315 - cpu: [x64] 1316 1215 os: [win32] 1317 1216 1318 1217 '@img/sharp-win32-x64@0.33.5': ··· 1434 1333 '@next/env@14.2.4': 1435 1334 resolution: {integrity: sha512-3EtkY5VDkuV2+lNmKlbkibIJxcO4oIHEhBWne6PaAp+76J9KoSsGvNikp6ivzAT8dhhBMYrm6op2pS1ApG0Hzg==} 1436 1335 1437 - '@next/env@15.0.0': 1438 - resolution: {integrity: sha512-Mcv8ZVmEgTO3bePiH/eJ7zHqQEs2gCqZ0UId2RxHmDDc7Pw6ngfSrOFlxG8XDpaex+n2G+TKPsQAf28MO+88Gw==} 1439 - 1440 - '@next/env@15.0.0-rc.0': 1441 - resolution: {integrity: sha512-6W0ndQvHR9sXcqcKeR/inD2UTRCs9+VkSK3lfaGmEuZs7EjwwXMO2BPYjz9oBrtfPL3xuTjtXsHKSsalYQ5l1Q==} 1442 - 1443 - '@next/env@15.0.3': 1444 - resolution: {integrity: sha512-t9Xy32pjNOvVn2AS+Utt6VmyrshbpfUMhIjFO60gI58deSo/KgLOp31XZ4O+kY/Is8WAGYwA5gR7kOb1eORDBA==} 1336 + '@next/env@15.1.7': 1337 + resolution: {integrity: sha512-d9jnRrkuOH7Mhi+LHav2XW91HOgTAWHxjMPkXMGBc9B2b7614P7kjt8tAplRvJpbSt4nbO1lugcT/kAaWzjlLQ==} 1445 1338 1446 1339 '@next/eslint-plugin-next@14.2.3': 1447 1340 resolution: {integrity: sha512-L3oDricIIjgj1AVnRdRor21gI7mShlSwU/1ZGHmqM3LzHhXXhdkrfeNY5zif25Bi5Dd7fiJHsbhoZCHfXYvlAw==} ··· 1452 1345 '@next/eslint-plugin-next@15.0.3': 1453 1346 resolution: {integrity: sha512-3Ln/nHq2V+v8uIaxCR6YfYo7ceRgZNXfTd3yW1ukTaFbO+/I8jNakrjYWODvG9BuR2v5kgVtH/C8r0i11quOgw==} 1454 1347 1455 - '@next/swc-darwin-arm64@15.0.0': 1456 - resolution: {integrity: sha512-Gjgs3N7cFa40a9QT9AEHnuGKq69/bvIOn0SLGDV+ordq07QOP4k1GDOVedMHEjVeqy1HBLkL8rXnNTuMZIv79A==} 1348 + '@next/swc-darwin-arm64@15.1.7': 1349 + resolution: {integrity: sha512-hPFwzPJDpA8FGj7IKV3Yf1web3oz2YsR8du4amKw8d+jAOHfYHYFpMkoF6vgSY4W6vB29RtZEklK9ayinGiCmQ==} 1457 1350 engines: {node: '>= 10'} 1458 1351 cpu: [arm64] 1459 1352 os: [darwin] 1460 1353 1461 - '@next/swc-darwin-arm64@15.0.0-rc.0': 1462 - resolution: {integrity: sha512-4OpTXvAWcSabXA5d688zdUwa3sfT9QrLnHMdpv4q2UDnnuqmOI0xLb6lrOxwpi+vHJNkneuNLqyc5HGBhkqL6A==} 1463 - engines: {node: '>= 10'} 1464 - cpu: [arm64] 1465 - os: [darwin] 1466 - 1467 - '@next/swc-darwin-arm64@15.0.3': 1468 - resolution: {integrity: sha512-s3Q/NOorCsLYdCKvQlWU+a+GeAd3C8Rb3L1YnetsgwXzhc3UTWrtQpB/3eCjFOdGUj5QmXfRak12uocd1ZiiQw==} 1469 - engines: {node: '>= 10'} 1470 - cpu: [arm64] 1471 - os: [darwin] 1472 - 1473 - '@next/swc-darwin-x64@15.0.0': 1474 - resolution: {integrity: sha512-BUtTvY5u9s5berAuOEydAUlVMjnl6ZjXS+xVrMt317mglYZ2XXjY8YRDCaz9vYMjBNPXH8Gh75Cew5CMdVbWTw==} 1475 - engines: {node: '>= 10'} 1476 - cpu: [x64] 1477 - os: [darwin] 1478 - 1479 - '@next/swc-darwin-x64@15.0.0-rc.0': 1480 - resolution: {integrity: sha512-/TD8M9DT244uhtFA8P/0DUbM7ftg2zio6yOo6ajV16vNjkcug9Kt9//Wa4SrJjWcsGZpViLctOlwn3/6JFAuAA==} 1354 + '@next/swc-darwin-x64@15.1.7': 1355 + resolution: {integrity: sha512-2qoas+fO3OQKkU0PBUfwTiw/EYpN+kdAx62cePRyY1LqKtP09Vp5UcUntfZYajop5fDFTjSxCHfZVRxzi+9FYQ==} 1481 1356 engines: {node: '>= 10'} 1482 1357 cpu: [x64] 1483 1358 os: [darwin] 1484 1359 1485 - '@next/swc-darwin-x64@15.0.3': 1486 - resolution: {integrity: sha512-Zxl/TwyXVZPCFSf0u2BNj5sE0F2uR6iSKxWpq4Wlk/Sv9Ob6YCKByQTkV2y6BCic+fkabp9190hyrDdPA/dNrw==} 1487 - engines: {node: '>= 10'} 1488 - cpu: [x64] 1489 - os: [darwin] 1490 - 1491 - '@next/swc-linux-arm64-gnu@15.0.0': 1492 - resolution: {integrity: sha512-sbCoEpuWUBpYoLSgYrk0CkBv8RFv4ZlPxbwqRHr/BWDBJppTBtF53EvsntlfzQJ9fosYX12xnS6ltxYYwsMBjg==} 1360 + '@next/swc-linux-arm64-gnu@15.1.7': 1361 + resolution: {integrity: sha512-sKLLwDX709mPdzxMnRIXLIT9zaX2w0GUlkLYQnKGoXeWUhcvpCrK+yevcwCJPdTdxZEUA0mOXGLdPsGkudGdnA==} 1493 1362 engines: {node: '>= 10'} 1494 1363 cpu: [arm64] 1495 1364 os: [linux] 1496 1365 1497 - '@next/swc-linux-arm64-gnu@15.0.0-rc.0': 1498 - resolution: {integrity: sha512-3VTO32938AcqOlOI/U61/MIpeYrblP22VU1GrgmMQJozsAXEJgLCgf3wxZtn61/FG4Yc0tp7rPZE2t1fIGe0+w==} 1366 + '@next/swc-linux-arm64-musl@15.1.7': 1367 + resolution: {integrity: sha512-zblK1OQbQWdC8fxdX4fpsHDw+VSpBPGEUX4PhSE9hkaWPrWoeIJn+baX53vbsbDRaDKd7bBNcXRovY1hEhFd7w==} 1499 1368 engines: {node: '>= 10'} 1500 1369 cpu: [arm64] 1501 1370 os: [linux] 1502 1371 1503 - '@next/swc-linux-arm64-gnu@15.0.3': 1504 - resolution: {integrity: sha512-T5+gg2EwpsY3OoaLxUIofmMb7ohAUlcNZW0fPQ6YAutaWJaxt1Z1h+8zdl4FRIOr5ABAAhXtBcpkZNwUcKI2fw==} 1505 - engines: {node: '>= 10'} 1506 - cpu: [arm64] 1507 - os: [linux] 1508 - 1509 - '@next/swc-linux-arm64-musl@15.0.0': 1510 - resolution: {integrity: sha512-JAw84qfL81aQCirXKP4VkgmhiDpXJupGjt8ITUkHrOVlBd+3h5kjfPva5M0tH2F9KKSgJQHEo3F5S5tDH9h2ww==} 1511 - engines: {node: '>= 10'} 1512 - cpu: [arm64] 1513 - os: [linux] 1514 - 1515 - '@next/swc-linux-arm64-musl@15.0.0-rc.0': 1516 - resolution: {integrity: sha512-0kDnxM3AfrrHFJ/wTkjkv7cVHIaGwv+CzDg9lL2BoLEM4kMQhH20DTsBOMqpTpo1K2KCg67LuTGd3QOITT5uFQ==} 1517 - engines: {node: '>= 10'} 1518 - cpu: [arm64] 1519 - os: [linux] 1520 - 1521 - '@next/swc-linux-arm64-musl@15.0.3': 1522 - resolution: {integrity: sha512-WkAk6R60mwDjH4lG/JBpb2xHl2/0Vj0ZRu1TIzWuOYfQ9tt9NFsIinI1Epma77JVgy81F32X/AeD+B2cBu/YQA==} 1523 - engines: {node: '>= 10'} 1524 - cpu: [arm64] 1525 - os: [linux] 1526 - 1527 - '@next/swc-linux-x64-gnu@15.0.0': 1528 - resolution: {integrity: sha512-r5Smd03PfxrGKMewdRf2RVNA1CU5l2rRlvZLQYZSv7FUsXD5bKEcOZ/6/98aqRwL7diXOwD8TCWJk1NbhATQHg==} 1372 + '@next/swc-linux-x64-gnu@15.1.7': 1373 + resolution: {integrity: sha512-GOzXutxuLvLHFDAPsMP2zDBMl1vfUHHpdNpFGhxu90jEzH6nNIgmtw/s1MDwpTOiM+MT5V8+I1hmVFeAUhkbgQ==} 1529 1374 engines: {node: '>= 10'} 1530 1375 cpu: [x64] 1531 1376 os: [linux] 1532 1377 1533 - '@next/swc-linux-x64-gnu@15.0.0-rc.0': 1534 - resolution: {integrity: sha512-fPMNahzqYFjm5h0ncJ5+F3NrShmWhpusM+zrQl01MMU0Ed5xsL4pJJDSuXV4wPkNUSjCP3XstTjxR5kBdO4juQ==} 1535 - engines: {node: '>= 10'} 1536 - cpu: [x64] 1537 - os: [linux] 1538 - 1539 - '@next/swc-linux-x64-gnu@15.0.3': 1540 - resolution: {integrity: sha512-gWL/Cta1aPVqIGgDb6nxkqy06DkwJ9gAnKORdHWX1QBbSZZB+biFYPFti8aKIQL7otCE1pjyPaXpFzGeG2OS2w==} 1541 - engines: {node: '>= 10'} 1542 - cpu: [x64] 1543 - os: [linux] 1544 - 1545 - '@next/swc-linux-x64-musl@15.0.0': 1546 - resolution: {integrity: sha512-fM6qocafz4Xjhh79CuoQNeGPhDHGBBUbdVtgNFJOUM8Ih5ZpaDZlTvqvqsh5IoO06CGomxurEGqGz/4eR/FaMQ==} 1547 - engines: {node: '>= 10'} 1548 - cpu: [x64] 1549 - os: [linux] 1550 - 1551 - '@next/swc-linux-x64-musl@15.0.0-rc.0': 1552 - resolution: {integrity: sha512-7/FLgOqrrQAxOVQrxfr3bGgZ83pSCmc2S3TXBILnHw0S8qLxmFjhSjH5ogaDmjrES/PSYMaX1FsP5Af88hp7Gw==} 1553 - engines: {node: '>= 10'} 1554 - cpu: [x64] 1555 - os: [linux] 1556 - 1557 - '@next/swc-linux-x64-musl@15.0.3': 1558 - resolution: {integrity: sha512-QQEMwFd8r7C0GxQS62Zcdy6GKx999I/rTO2ubdXEe+MlZk9ZiinsrjwoiBL5/57tfyjikgh6GOU2WRQVUej3UA==} 1378 + '@next/swc-linux-x64-musl@15.1.7': 1379 + resolution: {integrity: sha512-WrZ7jBhR7ATW1z5iEQ0ZJfE2twCNSXbpCSaAunF3BKcVeHFADSI/AW1y5Xt3DzTqPF1FzQlwQTewqetAABhZRQ==} 1559 1380 engines: {node: '>= 10'} 1560 1381 cpu: [x64] 1561 1382 os: [linux] 1562 1383 1563 - '@next/swc-win32-arm64-msvc@15.0.0': 1564 - resolution: {integrity: sha512-ZOd7c/Lz1lv7qP/KzR513XEa7QzW5/P0AH3A5eR1+Z/KmDOvMucht0AozccPc0TqhdV1xaXmC0Fdx0hoNzk6ng==} 1565 - engines: {node: '>= 10'} 1566 - cpu: [arm64] 1567 - os: [win32] 1568 - 1569 - '@next/swc-win32-arm64-msvc@15.0.0-rc.0': 1570 - resolution: {integrity: sha512-5wcqoYHh7hbdghjH6Xs3i5/f0ov+i1Xw2E3O+BzZNESYVLgCM1q7KJu5gdGFoXA2gz5XaKF/VBcYHikLzyjgmA==} 1571 - engines: {node: '>= 10'} 1572 - cpu: [arm64] 1573 - os: [win32] 1574 - 1575 - '@next/swc-win32-arm64-msvc@15.0.3': 1576 - resolution: {integrity: sha512-9TEp47AAd/ms9fPNgtgnT7F3M1Hf7koIYYWCMQ9neOwjbVWJsHZxrFbI3iEDJ8rf1TDGpmHbKxXf2IFpAvheIQ==} 1384 + '@next/swc-win32-arm64-msvc@15.1.7': 1385 + resolution: {integrity: sha512-LDnj1f3OVbou1BqvvXVqouJZKcwq++mV2F+oFHptToZtScIEnhNRJAhJzqAtTE2dB31qDYL45xJwrc+bLeKM2Q==} 1577 1386 engines: {node: '>= 10'} 1578 1387 cpu: [arm64] 1579 1388 os: [win32] 1580 1389 1581 - '@next/swc-win32-ia32-msvc@15.0.0-rc.0': 1582 - resolution: {integrity: sha512-/hqOmYRTvtBPToE4Dbl9n+sLYU7DPd52R+TtjIrrEzTMgFo2/d7un3sD7GKmb2OwOj/ExyGv6Bd/JzytBVxXlw==} 1583 - engines: {node: '>= 10'} 1584 - cpu: [ia32] 1585 - os: [win32] 1586 - 1587 - '@next/swc-win32-x64-msvc@15.0.0': 1588 - resolution: {integrity: sha512-2RVWcLtsqg4LtaoJ3j7RoKpnWHgcrz5XvuUGE7vBYU2i6M2XeD9Y8RlLaF770LEIScrrl8MdWsp6odtC6sZccg==} 1589 - engines: {node: '>= 10'} 1590 - cpu: [x64] 1591 - os: [win32] 1592 - 1593 - '@next/swc-win32-x64-msvc@15.0.0-rc.0': 1594 - resolution: {integrity: sha512-2Jly5nShvCUzzngP3RzdQ3JcuEcHcnIEvkvZDCXqFAK+bWks4+qOkEUO1QIAERQ99J5J9/1AN/8zFBme3Mm57A==} 1595 - engines: {node: '>= 10'} 1596 - cpu: [x64] 1597 - os: [win32] 1598 - 1599 - '@next/swc-win32-x64-msvc@15.0.3': 1600 - resolution: {integrity: sha512-VNAz+HN4OGgvZs6MOoVfnn41kBzT+M+tB+OK4cww6DNyWS6wKaDpaAm/qLeOUbnMh0oVx1+mg0uoYARF69dJyA==} 1390 + '@next/swc-win32-x64-msvc@15.1.7': 1391 + resolution: {integrity: sha512-dC01f1quuf97viOfW05/K8XYv2iuBgAxJZl7mbCKEjMgdQl5JjAKJ0D2qMKZCgPWDeFbFT0Q0nYWwytEW0DWTQ==} 1601 1392 engines: {node: '>= 10'} 1602 1393 cpu: [x64] 1603 1394 os: [win32] ··· 2499 2290 '@swc/counter@0.1.3': 2500 2291 resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} 2501 2292 2502 - '@swc/helpers@0.5.11': 2503 - resolution: {integrity: sha512-YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==} 2504 - 2505 - '@swc/helpers@0.5.13': 2506 - resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==} 2293 + '@swc/helpers@0.5.15': 2294 + resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} 2507 2295 2508 2296 '@testing-library/dom@10.4.0': 2509 2297 resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==} ··· 3505 3293 end-of-stream@1.4.4: 3506 3294 resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} 3507 3295 3508 - enhanced-resolve@5.16.1: 3509 - resolution: {integrity: sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==} 3510 - engines: {node: '>=10.13.0'} 3511 - 3512 3296 enhanced-resolve@5.17.1: 3513 3297 resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} 3514 3298 engines: {node: '>=10.13.0'} ··· 4432 4216 4433 4217 libsql@0.4.6: 4434 4218 resolution: {integrity: sha512-F5M+ltteK6dCcpjMahrkgT96uFJvVI8aQ4r9f2AzHQjC7BkAYtvfMSTWGvRBezRgMUIU2h1Sy0pF9nOGOD5iyA==} 4435 - cpu: [x64, arm64, wasm32] 4436 4219 os: [darwin, linux, win32] 4437 4220 4438 4221 lilconfig@2.1.0: ··· 4596 4379 react: ^16.8 || ^17 || ^18 4597 4380 react-dom: ^16.8 || ^17 || ^18 4598 4381 4599 - next@15.0.0: 4600 - resolution: {integrity: sha512-/ivqF6gCShXpKwY9hfrIQYh8YMge8L3W+w1oRLv/POmK4MOQnh+FscZ8a0fRFTSQWE+2z9ctNYvELD9vP2FV+A==} 4601 - engines: {node: '>=18.18.0'} 4602 - hasBin: true 4603 - peerDependencies: 4604 - '@opentelemetry/api': ^1.1.0 4605 - '@playwright/test': ^1.41.2 4606 - babel-plugin-react-compiler: '*' 4607 - react: ^18.2.0 || 19.0.0-rc-65a56d0e-20241020 4608 - react-dom: ^18.2.0 || 19.0.0-rc-65a56d0e-20241020 4609 - sass: ^1.3.0 4610 - peerDependenciesMeta: 4611 - '@opentelemetry/api': 4612 - optional: true 4613 - '@playwright/test': 4614 - optional: true 4615 - babel-plugin-react-compiler: 4616 - optional: true 4617 - sass: 4618 - optional: true 4619 - 4620 - next@15.0.0-rc.0: 4621 - resolution: {integrity: sha512-IWcCvxUSCAuOK5gig4+9yiyt/dLKpIa+WT01Qcx4CBE4TtwJljyTDnCVVn64jDZ4qmSzsaEYXpb4DTI8qbk03A==} 4622 - engines: {node: '>=18.17.0'} 4623 - hasBin: true 4624 - peerDependencies: 4625 - '@opentelemetry/api': ^1.1.0 4626 - '@playwright/test': ^1.41.2 4627 - babel-plugin-react-compiler: '*' 4628 - react: 19.0.0-rc-f994737d14-20240522 4629 - react-dom: 19.0.0-rc-f994737d14-20240522 4630 - sass: ^1.3.0 4631 - peerDependenciesMeta: 4632 - '@opentelemetry/api': 4633 - optional: true 4634 - '@playwright/test': 4635 - optional: true 4636 - babel-plugin-react-compiler: 4637 - optional: true 4638 - sass: 4639 - optional: true 4640 - 4641 - next@15.0.3: 4642 - resolution: {integrity: sha512-ontCbCRKJUIoivAdGB34yCaOcPgYXr9AAkV/IwqFfWWTXEPUgLYkSkqBhIk9KK7gGmgjc64B+RdoeIDM13Irnw==} 4382 + next@15.1.7: 4383 + resolution: {integrity: sha512-GNeINPGS9c6OZKCvKypbL8GTsT5GhWPp4DM0fzkXJuXMilOO2EeFxuAY6JZbtk6XIl6Ws10ag3xRINDjSO5+wg==} 4643 4384 engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} 4644 4385 hasBin: true 4645 4386 peerDependencies: 4646 4387 '@opentelemetry/api': ^1.1.0 4647 4388 '@playwright/test': ^1.41.2 4648 4389 babel-plugin-react-compiler: '*' 4649 - react: ^18.2.0 || 19.0.0-rc-66855b96-20241106 4650 - react-dom: ^18.2.0 || 19.0.0-rc-66855b96-20241106 4390 + react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 4391 + react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 4651 4392 sass: ^1.3.0 4652 4393 peerDependenciesMeta: 4653 4394 '@opentelemetry/api': ··· 5024 4765 resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} 5025 4766 hasBin: true 5026 4767 5027 - react-dom@19.0.0-rc-3563387fe3-20240621: 5028 - resolution: {integrity: sha512-nKVSxUP1sfPYfCxpJWKiVq0xlLRNKZTVDUA4Wnk6h1fq02IiBTZwU3BA7HJEivjsm0QzBsMctL2kl1jAleWZ5g==} 4768 + react-dom@19.0.0: 4769 + resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==} 5029 4770 peerDependencies: 5030 - react: 19.0.0-rc-3563387fe3-20240621 5031 - 5032 - react-dom@19.0.0-rc-f994737d14-20240522: 5033 - resolution: {integrity: sha512-J4CsfTSptPKkhaPbaR6n/KohQiHZTrRZ8GL4H8rbAqN/Qpy69g2MIoLBr5/PUX21ye6JxC1ZRWJFna7Xdg1pdA==} 5034 - peerDependencies: 5035 - react: 19.0.0-rc-f994737d14-20240522 4771 + react: ^19.0.0 5036 4772 5037 4773 react-error-boundary@4.0.13: 5038 4774 resolution: {integrity: sha512-b6PwbdSv8XeOSYvjt8LpgpKrZ0yGdtZokYwkwV2wlcZbxgopHX/hgPl5VgpnoVOWd868n1hktM8Qm4b+02MiLQ==} ··· 5088 4824 '@types/react': 5089 4825 optional: true 5090 4826 5091 - react@19.0.0-rc-3563387fe3-20240621: 5092 - resolution: {integrity: sha512-euYgnMufgCGN0vAuIiSDAXB8Uog8LAJKQPhDtccHpY9vvu4+Uz43NCF5/tGRd7y0TXN48LRUbBfnU5+0dWfoiA==} 5093 - engines: {node: '>=0.10.0'} 5094 - 5095 - react@19.0.0-rc-f994737d14-20240522: 5096 - resolution: {integrity: sha512-SeU2v5Xy6FotVhKz0pMS2gvYP7HlkF0qgTskj3JzA1vlxcb3dQjxlm9t0ZlJqcgoyI3VFAw7bomuDMdgy1nBuw==} 4827 + react@19.0.0: 4828 + resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==} 5097 4829 engines: {node: '>=0.10.0'} 5098 4830 5099 4831 read-cache@1.0.0: ··· 5217 4949 resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} 5218 4950 engines: {node: '>=v12.22.7'} 5219 4951 5220 - scheduler@0.25.0-rc-3563387fe3-20240621: 5221 - resolution: {integrity: sha512-BZfteLABepXgAsOrP1H+33NjBb+Xz1kDPstBlb0zQ0V+PHgyGCPaF8rF38i+TnnB84d0fQ2Lb+MhBUMqpZMhsw==} 5222 - 5223 - scheduler@0.25.0-rc-f994737d14-20240522: 5224 - resolution: {integrity: sha512-qS+xGFF7AljP2APO2iJe8zESNsK20k25MACz+WGOXPybUsRdi1ssvaoF93im2nSX2q/XT3wKkjdz6RQfbmaxdw==} 4952 + scheduler@0.25.0: 4953 + resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} 5225 4954 5226 4955 schema-utils@3.3.0: 5227 4956 resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} ··· 5258 4987 set-function-name@2.0.2: 5259 4988 resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 5260 4989 engines: {node: '>= 0.4'} 5261 - 5262 - sharp@0.33.4: 5263 - resolution: {integrity: sha512-7i/dt5kGl7qR4gwPRD2biwD2/SvBn3O04J77XKFgL2OnZtQw+AG9wnuS/csmu80nPRHLYE9E41fyEiG8nhH6/Q==} 5264 - engines: {libvips: '>=8.15.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0} 5265 4990 5266 4991 sharp@0.33.5: 5267 4992 resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} ··· 5426 5151 resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 5427 5152 engines: {node: '>=8'} 5428 5153 5429 - styled-jsx@5.1.3: 5430 - resolution: {integrity: sha512-qLRShOWTE/Mf6Bvl72kFeKBl8N2Eq9WIFfoAuvbtP/6tqlnj1SCjv117n2MIjOPpa1jTorYqLJgsHKy5Y3ziww==} 5431 - engines: {node: '>= 12.0.0'} 5432 - peerDependencies: 5433 - '@babel/core': '*' 5434 - babel-plugin-macros: '*' 5435 - react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0' 5436 - peerDependenciesMeta: 5437 - '@babel/core': 5438 - optional: true 5439 - babel-plugin-macros: 5440 - optional: true 5441 - 5442 5154 styled-jsx@5.1.6: 5443 5155 resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==} 5444 5156 engines: {node: '>= 12.0.0'} ··· 5611 5323 5612 5324 tslib@2.6.2: 5613 5325 resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} 5326 + 5327 + tslib@2.8.1: 5328 + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 5614 5329 5615 5330 tsutils@3.21.0: 5616 5331 resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} ··· 6603 6318 '@floating-ui/core': 1.6.2 6604 6319 '@floating-ui/utils': 0.2.2 6605 6320 6606 - '@floating-ui/react-dom@2.1.0(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 6321 + '@floating-ui/react-dom@2.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6607 6322 dependencies: 6608 6323 '@floating-ui/dom': 1.6.5 6609 - react: 19.0.0-rc-f994737d14-20240522 6610 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 6324 + react: 19.0.0 6325 + react-dom: 19.0.0(react@19.0.0) 6611 6326 6612 6327 '@floating-ui/utils@0.2.2': {} 6613 6328 ··· 6622 6337 '@humanwhocodes/module-importer@1.0.1': {} 6623 6338 6624 6339 '@humanwhocodes/object-schema@2.0.3': {} 6625 - 6626 - '@img/sharp-darwin-arm64@0.33.4': 6627 - optionalDependencies: 6628 - '@img/sharp-libvips-darwin-arm64': 1.0.2 6629 - optional: true 6630 6340 6631 6341 '@img/sharp-darwin-arm64@0.33.5': 6632 6342 optionalDependencies: 6633 6343 '@img/sharp-libvips-darwin-arm64': 1.0.4 6634 6344 optional: true 6635 6345 6636 - '@img/sharp-darwin-x64@0.33.4': 6637 - optionalDependencies: 6638 - '@img/sharp-libvips-darwin-x64': 1.0.2 6639 - optional: true 6640 - 6641 6346 '@img/sharp-darwin-x64@0.33.5': 6642 6347 optionalDependencies: 6643 6348 '@img/sharp-libvips-darwin-x64': 1.0.4 6644 6349 optional: true 6645 6350 6646 - '@img/sharp-libvips-darwin-arm64@1.0.2': 6647 - optional: true 6648 - 6649 6351 '@img/sharp-libvips-darwin-arm64@1.0.4': 6650 6352 optional: true 6651 6353 6652 - '@img/sharp-libvips-darwin-x64@1.0.2': 6653 - optional: true 6654 - 6655 6354 '@img/sharp-libvips-darwin-x64@1.0.4': 6656 6355 optional: true 6657 6356 6658 - '@img/sharp-libvips-linux-arm64@1.0.2': 6659 - optional: true 6660 - 6661 6357 '@img/sharp-libvips-linux-arm64@1.0.4': 6662 6358 optional: true 6663 6359 6664 - '@img/sharp-libvips-linux-arm@1.0.2': 6665 - optional: true 6666 - 6667 6360 '@img/sharp-libvips-linux-arm@1.0.5': 6668 - optional: true 6669 - 6670 - '@img/sharp-libvips-linux-s390x@1.0.2': 6671 6361 optional: true 6672 6362 6673 6363 '@img/sharp-libvips-linux-s390x@1.0.4': 6674 6364 optional: true 6675 6365 6676 - '@img/sharp-libvips-linux-x64@1.0.2': 6677 - optional: true 6678 - 6679 6366 '@img/sharp-libvips-linux-x64@1.0.4': 6680 6367 optional: true 6681 6368 6682 - '@img/sharp-libvips-linuxmusl-arm64@1.0.2': 6683 - optional: true 6684 - 6685 6369 '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 6686 6370 optional: true 6687 6371 6688 - '@img/sharp-libvips-linuxmusl-x64@1.0.2': 6689 - optional: true 6690 - 6691 6372 '@img/sharp-libvips-linuxmusl-x64@1.0.4': 6692 6373 optional: true 6693 6374 6694 - '@img/sharp-linux-arm64@0.33.4': 6695 - optionalDependencies: 6696 - '@img/sharp-libvips-linux-arm64': 1.0.2 6697 - optional: true 6698 - 6699 6375 '@img/sharp-linux-arm64@0.33.5': 6700 6376 optionalDependencies: 6701 6377 '@img/sharp-libvips-linux-arm64': 1.0.4 6702 6378 optional: true 6703 6379 6704 - '@img/sharp-linux-arm@0.33.4': 6705 - optionalDependencies: 6706 - '@img/sharp-libvips-linux-arm': 1.0.2 6707 - optional: true 6708 - 6709 6380 '@img/sharp-linux-arm@0.33.5': 6710 6381 optionalDependencies: 6711 6382 '@img/sharp-libvips-linux-arm': 1.0.5 6712 6383 optional: true 6713 6384 6714 - '@img/sharp-linux-s390x@0.33.4': 6715 - optionalDependencies: 6716 - '@img/sharp-libvips-linux-s390x': 1.0.2 6717 - optional: true 6718 - 6719 6385 '@img/sharp-linux-s390x@0.33.5': 6720 6386 optionalDependencies: 6721 6387 '@img/sharp-libvips-linux-s390x': 1.0.4 6722 6388 optional: true 6723 6389 6724 - '@img/sharp-linux-x64@0.33.4': 6725 - optionalDependencies: 6726 - '@img/sharp-libvips-linux-x64': 1.0.2 6727 - optional: true 6728 - 6729 6390 '@img/sharp-linux-x64@0.33.5': 6730 6391 optionalDependencies: 6731 6392 '@img/sharp-libvips-linux-x64': 1.0.4 6732 6393 optional: true 6733 6394 6734 - '@img/sharp-linuxmusl-arm64@0.33.4': 6735 - optionalDependencies: 6736 - '@img/sharp-libvips-linuxmusl-arm64': 1.0.2 6737 - optional: true 6738 - 6739 6395 '@img/sharp-linuxmusl-arm64@0.33.5': 6740 6396 optionalDependencies: 6741 6397 '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 6742 6398 optional: true 6743 6399 6744 - '@img/sharp-linuxmusl-x64@0.33.4': 6745 - optionalDependencies: 6746 - '@img/sharp-libvips-linuxmusl-x64': 1.0.2 6747 - optional: true 6748 - 6749 6400 '@img/sharp-linuxmusl-x64@0.33.5': 6750 6401 optionalDependencies: 6751 6402 '@img/sharp-libvips-linuxmusl-x64': 1.0.4 6752 6403 optional: true 6753 6404 6754 - '@img/sharp-wasm32@0.33.4': 6755 - dependencies: 6756 - '@emnapi/runtime': 1.2.0 6757 - optional: true 6758 - 6759 6405 '@img/sharp-wasm32@0.33.5': 6760 6406 dependencies: 6761 6407 '@emnapi/runtime': 1.2.0 6762 6408 optional: true 6763 6409 6764 - '@img/sharp-win32-ia32@0.33.4': 6765 - optional: true 6766 - 6767 6410 '@img/sharp-win32-ia32@0.33.5': 6768 - optional: true 6769 - 6770 - '@img/sharp-win32-x64@0.33.4': 6771 6411 optional: true 6772 6412 6773 6413 '@img/sharp-win32-x64@0.33.5': ··· 6877 6517 '@libsql/win32-x64-msvc@0.4.6': 6878 6518 optional: true 6879 6519 6880 - '@markdoc/markdoc@0.4.0(@types/react@18.3.10)(react@19.0.0-rc-3563387fe3-20240621)': 6520 + '@markdoc/markdoc@0.4.0(@types/react@18.3.10)(react@19.0.0)': 6881 6521 optionalDependencies: 6882 6522 '@types/markdown-it': 12.2.3 6883 6523 '@types/react': 18.3.10 6884 - react: 19.0.0-rc-3563387fe3-20240621 6524 + react: 19.0.0 6885 6525 6886 6526 '@microsoft/tsdoc-config@0.16.2': 6887 6527 dependencies: ··· 6901 6541 6902 6542 '@next/env@14.2.4': {} 6903 6543 6904 - '@next/env@15.0.0': {} 6905 - 6906 - '@next/env@15.0.0-rc.0': {} 6907 - 6908 - '@next/env@15.0.3': {} 6544 + '@next/env@15.1.7': {} 6909 6545 6910 6546 '@next/eslint-plugin-next@14.2.3': 6911 6547 dependencies: ··· 6919 6555 dependencies: 6920 6556 fast-glob: 3.3.1 6921 6557 6922 - '@next/swc-darwin-arm64@15.0.0': 6558 + '@next/swc-darwin-arm64@15.1.7': 6923 6559 optional: true 6924 6560 6925 - '@next/swc-darwin-arm64@15.0.0-rc.0': 6561 + '@next/swc-darwin-x64@15.1.7': 6926 6562 optional: true 6927 6563 6928 - '@next/swc-darwin-arm64@15.0.3': 6564 + '@next/swc-linux-arm64-gnu@15.1.7': 6929 6565 optional: true 6930 6566 6931 - '@next/swc-darwin-x64@15.0.0': 6567 + '@next/swc-linux-arm64-musl@15.1.7': 6932 6568 optional: true 6933 6569 6934 - '@next/swc-darwin-x64@15.0.0-rc.0': 6570 + '@next/swc-linux-x64-gnu@15.1.7': 6935 6571 optional: true 6936 6572 6937 - '@next/swc-darwin-x64@15.0.3': 6938 - optional: true 6939 - 6940 - '@next/swc-linux-arm64-gnu@15.0.0': 6573 + '@next/swc-linux-x64-musl@15.1.7': 6941 6574 optional: true 6942 6575 6943 - '@next/swc-linux-arm64-gnu@15.0.0-rc.0': 6576 + '@next/swc-win32-arm64-msvc@15.1.7': 6944 6577 optional: true 6945 6578 6946 - '@next/swc-linux-arm64-gnu@15.0.3': 6947 - optional: true 6948 - 6949 - '@next/swc-linux-arm64-musl@15.0.0': 6950 - optional: true 6951 - 6952 - '@next/swc-linux-arm64-musl@15.0.0-rc.0': 6953 - optional: true 6954 - 6955 - '@next/swc-linux-arm64-musl@15.0.3': 6956 - optional: true 6957 - 6958 - '@next/swc-linux-x64-gnu@15.0.0': 6959 - optional: true 6960 - 6961 - '@next/swc-linux-x64-gnu@15.0.0-rc.0': 6962 - optional: true 6963 - 6964 - '@next/swc-linux-x64-gnu@15.0.3': 6965 - optional: true 6966 - 6967 - '@next/swc-linux-x64-musl@15.0.0': 6968 - optional: true 6969 - 6970 - '@next/swc-linux-x64-musl@15.0.0-rc.0': 6971 - optional: true 6972 - 6973 - '@next/swc-linux-x64-musl@15.0.3': 6974 - optional: true 6975 - 6976 - '@next/swc-win32-arm64-msvc@15.0.0': 6977 - optional: true 6978 - 6979 - '@next/swc-win32-arm64-msvc@15.0.0-rc.0': 6980 - optional: true 6981 - 6982 - '@next/swc-win32-arm64-msvc@15.0.3': 6983 - optional: true 6984 - 6985 - '@next/swc-win32-ia32-msvc@15.0.0-rc.0': 6986 - optional: true 6987 - 6988 - '@next/swc-win32-x64-msvc@15.0.0': 6989 - optional: true 6990 - 6991 - '@next/swc-win32-x64-msvc@15.0.0-rc.0': 6992 - optional: true 6993 - 6994 - '@next/swc-win32-x64-msvc@15.0.3': 6579 + '@next/swc-win32-x64-msvc@15.1.7': 6995 6580 optional: true 6996 6581 6997 6582 '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': ··· 7294 6879 7295 6880 '@radix-ui/primitive@1.1.0': {} 7296 6881 7297 - '@radix-ui/react-alert-dialog@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 6882 + '@radix-ui/react-alert-dialog@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7298 6883 dependencies: 7299 6884 '@radix-ui/primitive': 1.1.0 7300 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7301 - '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7302 - '@radix-ui/react-dialog': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7303 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7304 - '@radix-ui/react-slot': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7305 - react: 19.0.0-rc-f994737d14-20240522 7306 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 6885 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6886 + '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6887 + '@radix-ui/react-dialog': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6888 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6889 + '@radix-ui/react-slot': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6890 + react: 19.0.0 6891 + react-dom: 19.0.0(react@19.0.0) 7307 6892 optionalDependencies: 7308 6893 '@types/react': 18.3.10 7309 6894 '@types/react-dom': 18.3.0 7310 6895 7311 - '@radix-ui/react-arrow@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 6896 + '@radix-ui/react-arrow@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7312 6897 dependencies: 7313 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7314 - react: 19.0.0-rc-f994737d14-20240522 7315 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 6898 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6899 + react: 19.0.0 6900 + react-dom: 19.0.0(react@19.0.0) 7316 6901 optionalDependencies: 7317 6902 '@types/react': 18.3.10 7318 6903 '@types/react-dom': 18.3.0 7319 6904 7320 - '@radix-ui/react-avatar@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 6905 + '@radix-ui/react-avatar@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7321 6906 dependencies: 7322 - '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7323 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7324 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7325 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7326 - react: 19.0.0-rc-f994737d14-20240522 7327 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 6907 + '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6908 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6909 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6910 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6911 + react: 19.0.0 6912 + react-dom: 19.0.0(react@19.0.0) 7328 6913 optionalDependencies: 7329 6914 '@types/react': 18.3.10 7330 6915 '@types/react-dom': 18.3.0 7331 6916 7332 - '@radix-ui/react-collection@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 6917 + '@radix-ui/react-collection@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7333 6918 dependencies: 7334 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7335 - '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7336 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7337 - '@radix-ui/react-slot': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7338 - react: 19.0.0-rc-f994737d14-20240522 7339 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 6919 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6920 + '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6921 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6922 + '@radix-ui/react-slot': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6923 + react: 19.0.0 6924 + react-dom: 19.0.0(react@19.0.0) 7340 6925 optionalDependencies: 7341 6926 '@types/react': 18.3.10 7342 6927 '@types/react-dom': 18.3.0 7343 6928 7344 - '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522)': 6929 + '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.10)(react@19.0.0)': 7345 6930 dependencies: 7346 - react: 19.0.0-rc-f994737d14-20240522 6931 + react: 19.0.0 7347 6932 optionalDependencies: 7348 6933 '@types/react': 18.3.10 7349 6934 7350 - '@radix-ui/react-context@1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522)': 6935 + '@radix-ui/react-context@1.1.0(@types/react@18.3.10)(react@19.0.0)': 7351 6936 dependencies: 7352 - react: 19.0.0-rc-f994737d14-20240522 6937 + react: 19.0.0 7353 6938 optionalDependencies: 7354 6939 '@types/react': 18.3.10 7355 6940 7356 - '@radix-ui/react-dialog@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 6941 + '@radix-ui/react-dialog@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7357 6942 dependencies: 7358 6943 '@radix-ui/primitive': 1.1.0 7359 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7360 - '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7361 - '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7362 - '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7363 - '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7364 - '@radix-ui/react-id': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7365 - '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7366 - '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7367 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7368 - '@radix-ui/react-slot': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7369 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 6944 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6945 + '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6946 + '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6947 + '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6948 + '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6949 + '@radix-ui/react-id': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6950 + '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6951 + '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6952 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6953 + '@radix-ui/react-slot': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6954 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7370 6955 aria-hidden: 1.2.4 7371 - react: 19.0.0-rc-f994737d14-20240522 7372 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7373 - react-remove-scroll: 2.5.7(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 6956 + react: 19.0.0 6957 + react-dom: 19.0.0(react@19.0.0) 6958 + react-remove-scroll: 2.5.7(@types/react@18.3.10)(react@19.0.0) 7374 6959 optionalDependencies: 7375 6960 '@types/react': 18.3.10 7376 6961 '@types/react-dom': 18.3.0 7377 6962 7378 - '@radix-ui/react-direction@1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522)': 6963 + '@radix-ui/react-direction@1.1.0(@types/react@18.3.10)(react@19.0.0)': 7379 6964 dependencies: 7380 - react: 19.0.0-rc-f994737d14-20240522 6965 + react: 19.0.0 7381 6966 optionalDependencies: 7382 6967 '@types/react': 18.3.10 7383 6968 7384 - '@radix-ui/react-dismissable-layer@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 6969 + '@radix-ui/react-dismissable-layer@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7385 6970 dependencies: 7386 6971 '@radix-ui/primitive': 1.1.0 7387 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7388 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7389 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7390 - '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7391 - react: 19.0.0-rc-f994737d14-20240522 7392 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 6972 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6973 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6974 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6975 + '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6976 + react: 19.0.0 6977 + react-dom: 19.0.0(react@19.0.0) 7393 6978 optionalDependencies: 7394 6979 '@types/react': 18.3.10 7395 6980 '@types/react-dom': 18.3.0 7396 6981 7397 - '@radix-ui/react-dropdown-menu@2.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 6982 + '@radix-ui/react-dropdown-menu@2.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7398 6983 dependencies: 7399 6984 '@radix-ui/primitive': 1.1.0 7400 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7401 - '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7402 - '@radix-ui/react-id': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7403 - '@radix-ui/react-menu': 2.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7404 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7405 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7406 - react: 19.0.0-rc-f994737d14-20240522 7407 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 6985 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6986 + '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6987 + '@radix-ui/react-id': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6988 + '@radix-ui/react-menu': 2.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6989 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6990 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0) 6991 + react: 19.0.0 6992 + react-dom: 19.0.0(react@19.0.0) 7408 6993 optionalDependencies: 7409 6994 '@types/react': 18.3.10 7410 6995 '@types/react-dom': 18.3.0 7411 6996 7412 - '@radix-ui/react-focus-guards@1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522)': 6997 + '@radix-ui/react-focus-guards@1.1.0(@types/react@18.3.10)(react@19.0.0)': 7413 6998 dependencies: 7414 - react: 19.0.0-rc-f994737d14-20240522 6999 + react: 19.0.0 7415 7000 optionalDependencies: 7416 7001 '@types/react': 18.3.10 7417 7002 7418 - '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7003 + '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7419 7004 dependencies: 7420 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7421 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7422 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7423 - react: 19.0.0-rc-f994737d14-20240522 7424 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7005 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7006 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7007 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7008 + react: 19.0.0 7009 + react-dom: 19.0.0(react@19.0.0) 7425 7010 optionalDependencies: 7426 7011 '@types/react': 18.3.10 7427 7012 '@types/react-dom': 18.3.0 7428 7013 7429 - '@radix-ui/react-hover-card@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7014 + '@radix-ui/react-hover-card@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7430 7015 dependencies: 7431 7016 '@radix-ui/primitive': 1.1.0 7432 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7433 - '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7434 - '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7435 - '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7436 - '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7437 - '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7438 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7439 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7440 - react: 19.0.0-rc-f994737d14-20240522 7441 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7017 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7018 + '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7019 + '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7020 + '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7021 + '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7022 + '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7023 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7024 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7025 + react: 19.0.0 7026 + react-dom: 19.0.0(react@19.0.0) 7442 7027 optionalDependencies: 7443 7028 '@types/react': 18.3.10 7444 7029 '@types/react-dom': 18.3.0 7445 7030 7446 - '@radix-ui/react-icons@1.3.0(react@19.0.0-rc-f994737d14-20240522)': 7031 + '@radix-ui/react-icons@1.3.0(react@19.0.0)': 7447 7032 dependencies: 7448 - react: 19.0.0-rc-f994737d14-20240522 7033 + react: 19.0.0 7449 7034 7450 - '@radix-ui/react-id@1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522)': 7035 + '@radix-ui/react-id@1.1.0(@types/react@18.3.10)(react@19.0.0)': 7451 7036 dependencies: 7452 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7453 - react: 19.0.0-rc-f994737d14-20240522 7037 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7038 + react: 19.0.0 7454 7039 optionalDependencies: 7455 7040 '@types/react': 18.3.10 7456 7041 7457 - '@radix-ui/react-label@2.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7042 + '@radix-ui/react-label@2.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7458 7043 dependencies: 7459 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7460 - react: 19.0.0-rc-f994737d14-20240522 7461 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7044 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7045 + react: 19.0.0 7046 + react-dom: 19.0.0(react@19.0.0) 7462 7047 optionalDependencies: 7463 7048 '@types/react': 18.3.10 7464 7049 '@types/react-dom': 18.3.0 7465 7050 7466 - '@radix-ui/react-menu@2.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7051 + '@radix-ui/react-menu@2.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7467 7052 dependencies: 7468 7053 '@radix-ui/primitive': 1.1.0 7469 - '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7470 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7471 - '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7472 - '@radix-ui/react-direction': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7473 - '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7474 - '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7475 - '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7476 - '@radix-ui/react-id': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7477 - '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7478 - '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7479 - '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7480 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7481 - '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7482 - '@radix-ui/react-slot': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7483 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7054 + '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7055 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7056 + '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7057 + '@radix-ui/react-direction': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7058 + '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7059 + '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7060 + '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7061 + '@radix-ui/react-id': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7062 + '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7063 + '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7064 + '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7065 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7066 + '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7067 + '@radix-ui/react-slot': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7068 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7484 7069 aria-hidden: 1.2.4 7485 - react: 19.0.0-rc-f994737d14-20240522 7486 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7487 - react-remove-scroll: 2.5.7(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7070 + react: 19.0.0 7071 + react-dom: 19.0.0(react@19.0.0) 7072 + react-remove-scroll: 2.5.7(@types/react@18.3.10)(react@19.0.0) 7488 7073 optionalDependencies: 7489 7074 '@types/react': 18.3.10 7490 7075 '@types/react-dom': 18.3.0 7491 7076 7492 - '@radix-ui/react-popover@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7077 + '@radix-ui/react-popover@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7493 7078 dependencies: 7494 7079 '@radix-ui/primitive': 1.1.0 7495 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7496 - '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7497 - '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7498 - '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7499 - '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7500 - '@radix-ui/react-id': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7501 - '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7502 - '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7503 - '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7504 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7505 - '@radix-ui/react-slot': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7506 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7080 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7081 + '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7082 + '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7083 + '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7084 + '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7085 + '@radix-ui/react-id': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7086 + '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7087 + '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7088 + '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7089 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7090 + '@radix-ui/react-slot': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7091 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7507 7092 aria-hidden: 1.2.4 7508 - react: 19.0.0-rc-f994737d14-20240522 7509 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7510 - react-remove-scroll: 2.5.7(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7093 + react: 19.0.0 7094 + react-dom: 19.0.0(react@19.0.0) 7095 + react-remove-scroll: 2.5.7(@types/react@18.3.10)(react@19.0.0) 7511 7096 optionalDependencies: 7512 7097 '@types/react': 18.3.10 7513 7098 '@types/react-dom': 18.3.0 7514 7099 7515 - '@radix-ui/react-popper@1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7100 + '@radix-ui/react-popper@1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7516 7101 dependencies: 7517 - '@floating-ui/react-dom': 2.1.0(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7518 - '@radix-ui/react-arrow': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7519 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7520 - '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7521 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7522 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7523 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7524 - '@radix-ui/react-use-rect': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7525 - '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7102 + '@floating-ui/react-dom': 2.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7103 + '@radix-ui/react-arrow': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7104 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7105 + '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7106 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7107 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7108 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7109 + '@radix-ui/react-use-rect': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7110 + '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7526 7111 '@radix-ui/rect': 1.1.0 7527 - react: 19.0.0-rc-f994737d14-20240522 7528 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7112 + react: 19.0.0 7113 + react-dom: 19.0.0(react@19.0.0) 7529 7114 optionalDependencies: 7530 7115 '@types/react': 18.3.10 7531 7116 '@types/react-dom': 18.3.0 7532 7117 7533 - '@radix-ui/react-portal@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7118 + '@radix-ui/react-portal@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7534 7119 dependencies: 7535 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7536 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7537 - react: 19.0.0-rc-f994737d14-20240522 7538 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7120 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7121 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7122 + react: 19.0.0 7123 + react-dom: 19.0.0(react@19.0.0) 7539 7124 optionalDependencies: 7540 7125 '@types/react': 18.3.10 7541 7126 '@types/react-dom': 18.3.0 7542 7127 7543 - '@radix-ui/react-presence@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7128 + '@radix-ui/react-presence@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7544 7129 dependencies: 7545 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7546 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7547 - react: 19.0.0-rc-f994737d14-20240522 7548 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7130 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7131 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7132 + react: 19.0.0 7133 + react-dom: 19.0.0(react@19.0.0) 7549 7134 optionalDependencies: 7550 7135 '@types/react': 18.3.10 7551 7136 '@types/react-dom': 18.3.0 7552 7137 7553 - '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7138 + '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7554 7139 dependencies: 7555 - '@radix-ui/react-slot': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7556 - react: 19.0.0-rc-f994737d14-20240522 7557 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7140 + '@radix-ui/react-slot': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7141 + react: 19.0.0 7142 + react-dom: 19.0.0(react@19.0.0) 7558 7143 optionalDependencies: 7559 7144 '@types/react': 18.3.10 7560 7145 '@types/react-dom': 18.3.0 7561 7146 7562 - '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7147 + '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7563 7148 dependencies: 7564 7149 '@radix-ui/primitive': 1.1.0 7565 - '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7566 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7567 - '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7568 - '@radix-ui/react-direction': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7569 - '@radix-ui/react-id': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7570 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7571 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7572 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7573 - react: 19.0.0-rc-f994737d14-20240522 7574 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7150 + '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7151 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7152 + '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7153 + '@radix-ui/react-direction': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7154 + '@radix-ui/react-id': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7155 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7156 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7157 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7158 + react: 19.0.0 7159 + react-dom: 19.0.0(react@19.0.0) 7575 7160 optionalDependencies: 7576 7161 '@types/react': 18.3.10 7577 7162 '@types/react-dom': 18.3.0 7578 7163 7579 - '@radix-ui/react-select@2.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7164 + '@radix-ui/react-select@2.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7580 7165 dependencies: 7581 7166 '@radix-ui/number': 1.1.0 7582 7167 '@radix-ui/primitive': 1.1.0 7583 - '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7584 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7585 - '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7586 - '@radix-ui/react-direction': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7587 - '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7588 - '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7589 - '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7590 - '@radix-ui/react-id': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7591 - '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7592 - '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7593 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7594 - '@radix-ui/react-slot': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7595 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7596 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7597 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7598 - '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7599 - '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7168 + '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7169 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7170 + '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7171 + '@radix-ui/react-direction': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7172 + '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7173 + '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7174 + '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7175 + '@radix-ui/react-id': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7176 + '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7177 + '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7178 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7179 + '@radix-ui/react-slot': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7180 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7181 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7182 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7183 + '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7184 + '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7600 7185 aria-hidden: 1.2.4 7601 - react: 19.0.0-rc-f994737d14-20240522 7602 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7603 - react-remove-scroll: 2.5.7(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7186 + react: 19.0.0 7187 + react-dom: 19.0.0(react@19.0.0) 7188 + react-remove-scroll: 2.5.7(@types/react@18.3.10)(react@19.0.0) 7604 7189 optionalDependencies: 7605 7190 '@types/react': 18.3.10 7606 7191 '@types/react-dom': 18.3.0 7607 7192 7608 - '@radix-ui/react-separator@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7193 + '@radix-ui/react-separator@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7609 7194 dependencies: 7610 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7611 - react: 19.0.0-rc-f994737d14-20240522 7612 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7195 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7196 + react: 19.0.0 7197 + react-dom: 19.0.0(react@19.0.0) 7613 7198 optionalDependencies: 7614 7199 '@types/react': 18.3.10 7615 7200 '@types/react-dom': 18.3.0 7616 7201 7617 - '@radix-ui/react-slot@1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522)': 7202 + '@radix-ui/react-slot@1.1.0(@types/react@18.3.10)(react@19.0.0)': 7618 7203 dependencies: 7619 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7620 - react: 19.0.0-rc-f994737d14-20240522 7204 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7205 + react: 19.0.0 7621 7206 optionalDependencies: 7622 7207 '@types/react': 18.3.10 7623 7208 7624 - '@radix-ui/react-tabs@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7209 + '@radix-ui/react-tabs@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7625 7210 dependencies: 7626 7211 '@radix-ui/primitive': 1.1.0 7627 - '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7628 - '@radix-ui/react-direction': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7629 - '@radix-ui/react-id': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7630 - '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7631 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7632 - '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7633 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7634 - react: 19.0.0-rc-f994737d14-20240522 7635 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7212 + '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7213 + '@radix-ui/react-direction': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7214 + '@radix-ui/react-id': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7215 + '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7216 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7217 + '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7218 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7219 + react: 19.0.0 7220 + react-dom: 19.0.0(react@19.0.0) 7636 7221 optionalDependencies: 7637 7222 '@types/react': 18.3.10 7638 7223 '@types/react-dom': 18.3.0 7639 7224 7640 - '@radix-ui/react-toast@1.2.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7225 + '@radix-ui/react-toast@1.2.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7641 7226 dependencies: 7642 7227 '@radix-ui/primitive': 1.1.0 7643 - '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7644 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7645 - '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7646 - '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7647 - '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7648 - '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7649 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7650 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7651 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7652 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7653 - '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7654 - react: 19.0.0-rc-f994737d14-20240522 7655 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7228 + '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7229 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7230 + '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7231 + '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7232 + '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7233 + '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7234 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7235 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7236 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7237 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7238 + '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7239 + react: 19.0.0 7240 + react-dom: 19.0.0(react@19.0.0) 7656 7241 optionalDependencies: 7657 7242 '@types/react': 18.3.10 7658 7243 '@types/react-dom': 18.3.0 7659 7244 7660 - '@radix-ui/react-tooltip@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7245 + '@radix-ui/react-tooltip@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7661 7246 dependencies: 7662 7247 '@radix-ui/primitive': 1.1.0 7663 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7664 - '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7665 - '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7666 - '@radix-ui/react-id': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7667 - '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7668 - '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7669 - '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7670 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7671 - '@radix-ui/react-slot': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7672 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7673 - '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7674 - react: 19.0.0-rc-f994737d14-20240522 7675 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7248 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7249 + '@radix-ui/react-context': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7250 + '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7251 + '@radix-ui/react-id': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7252 + '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7253 + '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7254 + '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7255 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7256 + '@radix-ui/react-slot': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7257 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7258 + '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7259 + react: 19.0.0 7260 + react-dom: 19.0.0(react@19.0.0) 7676 7261 optionalDependencies: 7677 7262 '@types/react': 18.3.10 7678 7263 '@types/react-dom': 18.3.0 7679 7264 7680 - '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522)': 7265 + '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.10)(react@19.0.0)': 7681 7266 dependencies: 7682 - react: 19.0.0-rc-f994737d14-20240522 7267 + react: 19.0.0 7683 7268 optionalDependencies: 7684 7269 '@types/react': 18.3.10 7685 7270 7686 - '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522)': 7271 + '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.10)(react@19.0.0)': 7687 7272 dependencies: 7688 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7689 - react: 19.0.0-rc-f994737d14-20240522 7273 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7274 + react: 19.0.0 7690 7275 optionalDependencies: 7691 7276 '@types/react': 18.3.10 7692 7277 7693 - '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522)': 7278 + '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.10)(react@19.0.0)': 7694 7279 dependencies: 7695 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7696 - react: 19.0.0-rc-f994737d14-20240522 7280 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7281 + react: 19.0.0 7697 7282 optionalDependencies: 7698 7283 '@types/react': 18.3.10 7699 7284 7700 - '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522)': 7285 + '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.10)(react@19.0.0)': 7701 7286 dependencies: 7702 - react: 19.0.0-rc-f994737d14-20240522 7287 + react: 19.0.0 7703 7288 optionalDependencies: 7704 7289 '@types/react': 18.3.10 7705 7290 7706 - '@radix-ui/react-use-previous@1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522)': 7291 + '@radix-ui/react-use-previous@1.1.0(@types/react@18.3.10)(react@19.0.0)': 7707 7292 dependencies: 7708 - react: 19.0.0-rc-f994737d14-20240522 7293 + react: 19.0.0 7709 7294 optionalDependencies: 7710 7295 '@types/react': 18.3.10 7711 7296 7712 - '@radix-ui/react-use-rect@1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522)': 7297 + '@radix-ui/react-use-rect@1.1.0(@types/react@18.3.10)(react@19.0.0)': 7713 7298 dependencies: 7714 7299 '@radix-ui/rect': 1.1.0 7715 - react: 19.0.0-rc-f994737d14-20240522 7300 + react: 19.0.0 7716 7301 optionalDependencies: 7717 7302 '@types/react': 18.3.10 7718 7303 7719 - '@radix-ui/react-use-size@1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522)': 7304 + '@radix-ui/react-use-size@1.1.0(@types/react@18.3.10)(react@19.0.0)': 7720 7305 dependencies: 7721 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 7722 - react: 19.0.0-rc-f994737d14-20240522 7306 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.10)(react@19.0.0) 7307 + react: 19.0.0 7723 7308 optionalDependencies: 7724 7309 '@types/react': 18.3.10 7725 7310 7726 - '@radix-ui/react-visually-hidden@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7311 + '@radix-ui/react-visually-hidden@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7727 7312 dependencies: 7728 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7729 - react: 19.0.0-rc-f994737d14-20240522 7730 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7313 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7314 + react: 19.0.0 7315 + react-dom: 19.0.0(react@19.0.0) 7731 7316 optionalDependencies: 7732 7317 '@types/react': 18.3.10 7733 7318 '@types/react-dom': 18.3.0 ··· 7902 7487 '@sentry/types': 8.35.0 7903 7488 '@sentry/utils': 8.35.0 7904 7489 7905 - '@sentry/nextjs@8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(next@15.0.0(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)(webpack@5.95.0(esbuild@0.19.12))': 7490 + '@sentry/nextjs@8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(next@15.1.7(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(webpack@5.95.0(esbuild@0.19.12))': 7906 7491 dependencies: 7907 7492 '@opentelemetry/instrumentation-http': 0.53.0(@opentelemetry/api@1.9.0) 7908 7493 '@opentelemetry/semantic-conventions': 1.27.0 ··· 7911 7496 '@sentry/core': 8.35.0 7912 7497 '@sentry/node': 8.35.0 7913 7498 '@sentry/opentelemetry': 8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.27.0) 7914 - '@sentry/react': 8.35.0(react@19.0.0-rc-f994737d14-20240522) 7499 + '@sentry/react': 8.35.0(react@19.0.0) 7915 7500 '@sentry/types': 8.35.0 7916 7501 '@sentry/utils': 8.35.0 7917 7502 '@sentry/vercel-edge': 8.35.0 7918 7503 '@sentry/webpack-plugin': 2.22.3(webpack@5.95.0(esbuild@0.19.12)) 7919 7504 chalk: 3.0.0 7920 - next: 15.0.0(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 7505 + next: 15.1.7(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7921 7506 resolve: 1.22.8 7922 7507 rollup: 3.29.5 7923 7508 stacktrace-parser: 0.1.10 ··· 7983 7568 '@sentry/types': 8.35.0 7984 7569 '@sentry/utils': 8.35.0 7985 7570 7986 - '@sentry/react@8.35.0(react@19.0.0-rc-f994737d14-20240522)': 7571 + '@sentry/react@8.35.0(react@19.0.0)': 7987 7572 dependencies: 7988 7573 '@sentry/browser': 8.35.0 7989 7574 '@sentry/core': 8.35.0 7990 7575 '@sentry/types': 8.35.0 7991 7576 '@sentry/utils': 8.35.0 7992 7577 hoist-non-react-statics: 3.3.2 7993 - react: 19.0.0-rc-f994737d14-20240522 7578 + react: 19.0.0 7994 7579 7995 7580 '@sentry/types@8.35.0': {} 7996 7581 ··· 8016 7601 8017 7602 '@swc/counter@0.1.3': {} 8018 7603 8019 - '@swc/helpers@0.5.11': 8020 - dependencies: 8021 - tslib: 2.6.2 8022 - 8023 - '@swc/helpers@0.5.13': 7604 + '@swc/helpers@0.5.15': 8024 7605 dependencies: 8025 - tslib: 2.6.2 7606 + tslib: 2.8.1 8026 7607 8027 7608 '@testing-library/dom@10.4.0': 8028 7609 dependencies: ··· 8035 7616 lz-string: 1.5.0 8036 7617 pretty-format: 27.5.1 8037 7618 8038 - '@testing-library/react@16.0.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7619 + '@testing-library/react@16.0.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 8039 7620 dependencies: 8040 7621 '@babel/runtime': 7.24.6 8041 7622 '@testing-library/dom': 10.4.0 8042 - react: 19.0.0-rc-f994737d14-20240522 8043 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 7623 + react: 19.0.0 7624 + react-dom: 19.0.0(react@19.0.0) 8044 7625 optionalDependencies: 8045 7626 '@types/react': 18.3.10 8046 7627 '@types/react-dom': 18.3.0 ··· 8405 7986 8406 7987 '@ungap/structured-clone@1.2.0': {} 8407 7988 8408 - '@vercel/analytics@1.3.1(next@15.0.0(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 7989 + '@vercel/analytics@1.3.1(next@15.1.7(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)': 8409 7990 dependencies: 8410 7991 server-only: 0.0.1 8411 7992 optionalDependencies: 8412 - next: 15.0.0(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 8413 - react: 19.0.0-rc-f994737d14-20240522 7993 + next: 15.1.7(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 7994 + react: 19.0.0 8414 7995 8415 7996 '@vercel/postgres@0.8.0': 8416 7997 dependencies: ··· 8420 8001 ws: 8.14.2(bufferutil@4.0.8)(utf-8-validate@6.0.3) 8421 8002 optional: true 8422 8003 8423 - '@vercel/speed-insights@1.0.12(next@15.0.0(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522)': 8004 + '@vercel/speed-insights@1.0.12(next@15.1.7(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)': 8424 8005 optionalDependencies: 8425 - next: 15.0.0(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522) 8426 - react: 19.0.0-rc-f994737d14-20240522 8006 + next: 15.1.7(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 8007 + react: 19.0.0 8427 8008 8428 - '@vercel/style-guide@6.0.0(@next/eslint-plugin-next@14.2.3)(eslint@8.57.0)(prettier@3.3.0)(typescript@5.5.2)(vitest@2.0.4)': 8009 + '@vercel/style-guide@6.0.0(@next/eslint-plugin-next@14.2.3)(eslint@8.57.0)(prettier@3.3.0)(typescript@5.5.2)(vitest@2.0.4(@types/node@20.13.0)(jsdom@24.1.1(bufferutil@4.0.8)(utf-8-validate@6.0.3))(terser@5.34.1))': 8429 8010 dependencies: 8430 8011 '@babel/core': 7.24.7 8431 8012 '@babel/eslint-parser': 7.24.7(@babel/core@7.24.7)(eslint@8.57.0) ··· 8433 8014 '@typescript-eslint/eslint-plugin': 7.14.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2) 8434 8015 '@typescript-eslint/parser': 7.14.1(eslint@8.57.0)(typescript@5.5.2) 8435 8016 eslint-config-prettier: 9.1.0(eslint@8.57.0) 8436 - eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)) 8017 + eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.29.1) 8437 8018 eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-plugin-import@2.29.1)(eslint@8.57.0) 8438 8019 eslint-plugin-eslint-comments: 3.2.0(eslint@8.57.0) 8439 8020 eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) ··· 8445 8026 eslint-plugin-testing-library: 6.2.2(eslint@8.57.0)(typescript@5.5.2) 8446 8027 eslint-plugin-tsdoc: 0.2.17 8447 8028 eslint-plugin-unicorn: 51.0.1(eslint@8.57.0) 8448 - eslint-plugin-vitest: 0.3.26(@typescript-eslint/eslint-plugin@7.14.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2)(vitest@2.0.4) 8029 + eslint-plugin-vitest: 0.3.26(@typescript-eslint/eslint-plugin@7.14.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2)(vitest@2.0.4(@types/node@20.13.0)(jsdom@24.1.1(bufferutil@4.0.8)(utf-8-validate@6.0.3))(terser@5.34.1)) 8449 8030 prettier-plugin-packagejson: 2.5.0(prettier@3.3.0) 8450 8031 optionalDependencies: 8451 8032 '@next/eslint-plugin-next': 14.2.3 ··· 9137 8718 transitivePeerDependencies: 9138 8719 - supports-color 9139 8720 9140 - drizzle-orm@0.34.1(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@neondatabase/serverless@0.7.2)(@opentelemetry/api@1.9.0)(@types/better-sqlite3@7.6.10)(@types/pg@8.6.6)(@types/react@18.3.10)(@vercel/postgres@0.8.0)(better-sqlite3@11.0.0)(kysely@0.22.0)(react@19.0.0-rc-f994737d14-20240522): 8721 + drizzle-orm@0.34.1(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@neondatabase/serverless@0.7.2)(@opentelemetry/api@1.9.0)(@types/better-sqlite3@7.6.10)(@types/pg@8.6.6)(@types/react@18.3.10)(@vercel/postgres@0.8.0)(better-sqlite3@11.0.0)(kysely@0.22.0)(react@19.0.0): 9141 8722 optionalDependencies: 9142 8723 '@libsql/client': 0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) 9143 8724 '@neondatabase/serverless': 0.7.2 ··· 9148 8729 '@vercel/postgres': 0.8.0 9149 8730 better-sqlite3: 11.0.0 9150 8731 kysely: 0.22.0 9151 - react: 19.0.0-rc-f994737d14-20240522 8732 + react: 19.0.0 9152 8733 9153 8734 eastasianwidth@0.2.0: {} 9154 8735 ··· 9162 8743 dependencies: 9163 8744 once: 1.4.0 9164 8745 optional: true 9165 - 9166 - enhanced-resolve@5.16.1: 9167 - dependencies: 9168 - graceful-fs: 4.2.11 9169 - tapable: 2.2.1 9170 8746 9171 8747 enhanced-resolve@5.17.1: 9172 8748 dependencies: ··· 9387 8963 '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.4.5) 9388 8964 eslint: 8.57.0 9389 8965 eslint-import-resolver-node: 0.3.9 9390 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) 8966 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0) 9391 8967 eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 9392 8968 eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0) 9393 8969 eslint-plugin-react: 7.34.2(eslint@8.57.0) ··· 9406 8982 '@typescript-eslint/parser': 7.14.1(eslint@8.57.0)(typescript@5.4.5) 9407 8983 eslint: 8.57.0 9408 8984 eslint-import-resolver-node: 0.3.9 9409 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0) 9410 - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 8985 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0))(eslint@8.57.0) 8986 + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 9411 8987 eslint-plugin-jsx-a11y: 6.10.1(eslint@8.57.0) 9412 8988 eslint-plugin-react: 7.37.1(eslint@8.57.0) 9413 8989 eslint-plugin-react-hooks: 5.0.0(eslint@8.57.0) ··· 9425 9001 '@typescript-eslint/parser': 7.14.1(eslint@8.57.0)(typescript@5.5.2) 9426 9002 eslint: 8.57.0 9427 9003 eslint-import-resolver-node: 0.3.9 9428 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0) 9429 - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 9004 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0))(eslint@8.57.0) 9005 + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 9430 9006 eslint-plugin-jsx-a11y: 6.10.1(eslint@8.57.0) 9431 9007 eslint-plugin-react: 7.37.1(eslint@8.57.0) 9432 9008 eslint-plugin-react-hooks: 5.0.0(eslint@8.57.0) ··· 9445 9021 eslint: 8.57.0 9446 9022 eslint-plugin-turbo: 2.0.5(eslint@8.57.0) 9447 9023 9448 - eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)): 9024 + eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.29.1): 9449 9025 dependencies: 9450 9026 eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 9451 9027 ··· 9457 9033 transitivePeerDependencies: 9458 9034 - supports-color 9459 9035 9460 - eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0): 9036 + eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0))(eslint@8.57.0): 9461 9037 dependencies: 9462 9038 debug: 4.3.5 9463 - enhanced-resolve: 5.16.1 9039 + enhanced-resolve: 5.17.1 9464 9040 eslint: 8.57.0 9465 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0))(eslint@8.57.0) 9466 - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 9041 + eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 9042 + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 9467 9043 fast-glob: 3.3.2 9468 9044 get-tsconfig: 4.7.5 9469 - is-core-module: 2.13.1 9045 + is-core-module: 2.15.1 9470 9046 is-glob: 4.0.3 9471 9047 transitivePeerDependencies: 9472 9048 - '@typescript-eslint/parser' ··· 9474 9050 - eslint-import-resolver-webpack 9475 9051 - supports-color 9476 9052 9477 - eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0): 9053 + eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0))(eslint@8.57.0): 9478 9054 dependencies: 9479 9055 debug: 4.3.5 9480 9056 enhanced-resolve: 5.17.1 9481 9057 eslint: 8.57.0 9482 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0))(eslint@8.57.0) 9483 - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 9058 + eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 9059 + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 9484 9060 fast-glob: 3.3.2 9485 9061 get-tsconfig: 4.7.5 9486 9062 is-core-module: 2.15.1 ··· 9494 9070 eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-plugin-import@2.29.1)(eslint@8.57.0): 9495 9071 dependencies: 9496 9072 debug: 4.3.5 9497 - enhanced-resolve: 5.16.1 9073 + enhanced-resolve: 5.17.1 9498 9074 eslint: 8.57.0 9499 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0) 9075 + eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 9500 9076 eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 9501 9077 fast-glob: 3.3.2 9502 9078 get-tsconfig: 4.7.5 9503 - is-core-module: 2.13.1 9079 + is-core-module: 2.15.1 9504 9080 is-glob: 4.0.3 9505 9081 transitivePeerDependencies: 9506 9082 - '@typescript-eslint/parser' ··· 9508 9084 - eslint-import-resolver-webpack 9509 9085 - supports-color 9510 9086 9511 - eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0): 9087 + eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0): 9512 9088 dependencies: 9513 9089 debug: 4.3.5 9514 - enhanced-resolve: 5.16.1 9090 + enhanced-resolve: 5.17.1 9515 9091 eslint: 8.57.0 9516 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0) 9092 + eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 9517 9093 eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 9518 9094 fast-glob: 3.3.2 9519 9095 get-tsconfig: 4.7.5 9520 - is-core-module: 2.13.1 9096 + is-core-module: 2.15.1 9521 9097 is-glob: 4.0.3 9522 9098 transitivePeerDependencies: 9523 9099 - '@typescript-eslint/parser' ··· 9525 9101 - eslint-import-resolver-webpack 9526 9102 - supports-color 9527 9103 9528 - eslint-module-utils@2.12.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0))(eslint@8.57.0): 9104 + eslint-module-utils@2.12.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0): 9529 9105 dependencies: 9530 9106 debug: 3.2.7 9531 9107 optionalDependencies: 9532 9108 '@typescript-eslint/parser': 7.14.1(eslint@8.57.0)(typescript@5.4.5) 9533 9109 eslint: 8.57.0 9534 9110 eslint-import-resolver-node: 0.3.9 9535 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0) 9111 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0))(eslint@8.57.0) 9536 9112 transitivePeerDependencies: 9537 9113 - supports-color 9538 9114 9539 - eslint-module-utils@2.12.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0))(eslint@8.57.0): 9115 + eslint-module-utils@2.12.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0): 9540 9116 dependencies: 9541 9117 debug: 3.2.7 9542 9118 optionalDependencies: 9543 9119 '@typescript-eslint/parser': 7.14.1(eslint@8.57.0)(typescript@5.5.2) 9544 9120 eslint: 8.57.0 9545 9121 eslint-import-resolver-node: 0.3.9 9546 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0) 9122 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0))(eslint@8.57.0) 9123 + transitivePeerDependencies: 9124 + - supports-color 9125 + 9126 + eslint-module-utils@2.12.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): 9127 + dependencies: 9128 + debug: 3.2.7 9129 + optionalDependencies: 9130 + '@typescript-eslint/parser': 7.14.1(eslint@8.57.0)(typescript@5.5.2) 9131 + eslint: 8.57.0 9132 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-plugin-import@2.29.1)(eslint@8.57.0) 9547 9133 transitivePeerDependencies: 9548 9134 - supports-color 9549 9135 9550 - eslint-module-utils@2.8.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0))(eslint@8.57.0): 9136 + eslint-module-utils@2.12.0(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): 9551 9137 dependencies: 9552 9138 debug: 3.2.7 9553 9139 optionalDependencies: 9554 - '@typescript-eslint/parser': 7.14.1(eslint@8.57.0)(typescript@5.4.5) 9140 + '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.4.5) 9555 9141 eslint: 8.57.0 9556 9142 eslint-import-resolver-node: 0.3.9 9557 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0) 9143 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0) 9558 9144 transitivePeerDependencies: 9559 9145 - supports-color 9560 9146 9561 - eslint-module-utils@2.8.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0): 9147 + eslint-module-utils@2.8.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): 9562 9148 dependencies: 9563 9149 debug: 3.2.7 9564 9150 optionalDependencies: ··· 9569 9155 transitivePeerDependencies: 9570 9156 - supports-color 9571 9157 9572 - eslint-module-utils@2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0): 9158 + eslint-module-utils@2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): 9573 9159 dependencies: 9574 9160 debug: 3.2.7 9575 9161 optionalDependencies: 9576 9162 '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.4.5) 9577 9163 eslint: 8.57.0 9578 9164 eslint-import-resolver-node: 0.3.9 9579 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) 9165 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.57.0))(eslint@8.57.0) 9580 9166 transitivePeerDependencies: 9581 9167 - supports-color 9582 9168 ··· 9596 9182 doctrine: 2.1.0 9597 9183 eslint: 8.57.0 9598 9184 eslint-import-resolver-node: 0.3.9 9599 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0) 9185 + eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 9600 9186 hasown: 2.0.2 9601 9187 is-core-module: 2.13.1 9602 9188 is-glob: 4.0.3 ··· 9623 9209 doctrine: 2.1.0 9624 9210 eslint: 8.57.0 9625 9211 eslint-import-resolver-node: 0.3.9 9626 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0) 9212 + eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 9627 9213 hasown: 2.0.2 9628 9214 is-core-module: 2.13.1 9629 9215 is-glob: 4.0.3 ··· 9640 9226 - eslint-import-resolver-webpack 9641 9227 - supports-color 9642 9228 9643 - eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): 9229 + eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0): 9644 9230 dependencies: 9645 9231 '@rtsao/scc': 1.1.0 9646 9232 array-includes: 3.1.8 ··· 9651 9237 doctrine: 2.1.0 9652 9238 eslint: 8.57.0 9653 9239 eslint-import-resolver-node: 0.3.9 9654 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0))(eslint@8.57.0) 9240 + eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 9655 9241 hasown: 2.0.2 9656 9242 is-core-module: 2.15.1 9657 9243 is-glob: 4.0.3 ··· 9669 9255 - eslint-import-resolver-webpack 9670 9256 - supports-color 9671 9257 9672 - eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): 9258 + eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0): 9673 9259 dependencies: 9674 9260 '@rtsao/scc': 1.1.0 9675 9261 array-includes: 3.1.8 ··· 9680 9266 doctrine: 2.1.0 9681 9267 eslint: 8.57.0 9682 9268 eslint-import-resolver-node: 0.3.9 9683 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0))(eslint@8.57.0) 9269 + eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0))(eslint@8.57.0))(eslint@8.57.0) 9684 9270 hasown: 2.0.2 9685 9271 is-core-module: 2.15.1 9686 9272 is-glob: 4.0.3 ··· 9854 9440 read-pkg-up: 7.0.1 9855 9441 regexp-tree: 0.1.27 9856 9442 regjsparser: 0.10.0 9857 - semver: 7.6.2 9443 + semver: 7.6.3 9858 9444 strip-indent: 3.0.0 9859 9445 transitivePeerDependencies: 9860 9446 - supports-color 9861 9447 9862 - eslint-plugin-vitest@0.3.26(@typescript-eslint/eslint-plugin@7.14.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2)(vitest@2.0.4): 9448 + eslint-plugin-vitest@0.3.26(@typescript-eslint/eslint-plugin@7.14.1(@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2)(vitest@2.0.4(@types/node@20.13.0)(jsdom@24.1.1(bufferutil@4.0.8)(utf-8-validate@6.0.3))(terser@5.34.1)): 9863 9449 dependencies: 9864 9450 '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.5.2) 9865 9451 eslint: 8.57.0 ··· 10679 10265 10680 10266 neo-async@2.6.2: {} 10681 10267 10682 - next-themes@0.3.0(react-dom@19.0.0-rc-3563387fe3-20240621(react@19.0.0-rc-3563387fe3-20240621))(react@19.0.0-rc-3563387fe3-20240621): 10683 - dependencies: 10684 - react: 19.0.0-rc-3563387fe3-20240621 10685 - react-dom: 19.0.0-rc-3563387fe3-20240621(react@19.0.0-rc-3563387fe3-20240621) 10686 - 10687 - next-themes@0.3.0(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522): 10268 + next-themes@0.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 10688 10269 dependencies: 10689 - react: 19.0.0-rc-f994737d14-20240522 10690 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 10270 + react: 19.0.0 10271 + react-dom: 19.0.0(react@19.0.0) 10691 10272 10692 - next@15.0.0(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522): 10273 + next@15.1.7(@babel/core@7.24.7)(@opentelemetry/api@1.9.0)(babel-plugin-react-compiler@19.0.0-beta-8a03594-20241020)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 10693 10274 dependencies: 10694 - '@next/env': 15.0.0 10275 + '@next/env': 15.1.7 10695 10276 '@swc/counter': 0.1.3 10696 - '@swc/helpers': 0.5.13 10277 + '@swc/helpers': 0.5.15 10697 10278 busboy: 1.6.0 10698 10279 caniuse-lite: 1.0.30001637 10699 10280 postcss: 8.4.31 10700 - react: 19.0.0-rc-f994737d14-20240522 10701 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 10702 - styled-jsx: 5.1.6(@babel/core@7.24.7)(react@19.0.0-rc-f994737d14-20240522) 10281 + react: 19.0.0 10282 + react-dom: 19.0.0(react@19.0.0) 10283 + styled-jsx: 5.1.6(@babel/core@7.24.7)(react@19.0.0) 10703 10284 optionalDependencies: 10704 - '@next/swc-darwin-arm64': 15.0.0 10705 - '@next/swc-darwin-x64': 15.0.0 10706 - '@next/swc-linux-arm64-gnu': 15.0.0 10707 - '@next/swc-linux-arm64-musl': 15.0.0 10708 - '@next/swc-linux-x64-gnu': 15.0.0 10709 - '@next/swc-linux-x64-musl': 15.0.0 10710 - '@next/swc-win32-arm64-msvc': 15.0.0 10711 - '@next/swc-win32-x64-msvc': 15.0.0 10285 + '@next/swc-darwin-arm64': 15.1.7 10286 + '@next/swc-darwin-x64': 15.1.7 10287 + '@next/swc-linux-arm64-gnu': 15.1.7 10288 + '@next/swc-linux-arm64-musl': 15.1.7 10289 + '@next/swc-linux-x64-gnu': 15.1.7 10290 + '@next/swc-linux-x64-musl': 15.1.7 10291 + '@next/swc-win32-arm64-msvc': 15.1.7 10292 + '@next/swc-win32-x64-msvc': 15.1.7 10712 10293 '@opentelemetry/api': 1.9.0 10713 10294 babel-plugin-react-compiler: 19.0.0-beta-8a03594-20241020 10714 - sharp: 0.33.5 10715 - transitivePeerDependencies: 10716 - - '@babel/core' 10717 - - babel-plugin-macros 10718 - 10719 - next@15.0.0-rc.0(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-3563387fe3-20240621(react@19.0.0-rc-3563387fe3-20240621))(react@19.0.0-rc-3563387fe3-20240621): 10720 - dependencies: 10721 - '@next/env': 15.0.0-rc.0 10722 - '@swc/helpers': 0.5.11 10723 - busboy: 1.6.0 10724 - caniuse-lite: 1.0.30001637 10725 - graceful-fs: 4.2.11 10726 - postcss: 8.4.31 10727 - react: 19.0.0-rc-3563387fe3-20240621 10728 - react-dom: 19.0.0-rc-3563387fe3-20240621(react@19.0.0-rc-3563387fe3-20240621) 10729 - styled-jsx: 5.1.3(react@19.0.0-rc-3563387fe3-20240621) 10730 - optionalDependencies: 10731 - '@next/swc-darwin-arm64': 15.0.0-rc.0 10732 - '@next/swc-darwin-x64': 15.0.0-rc.0 10733 - '@next/swc-linux-arm64-gnu': 15.0.0-rc.0 10734 - '@next/swc-linux-arm64-musl': 15.0.0-rc.0 10735 - '@next/swc-linux-x64-gnu': 15.0.0-rc.0 10736 - '@next/swc-linux-x64-musl': 15.0.0-rc.0 10737 - '@next/swc-win32-arm64-msvc': 15.0.0-rc.0 10738 - '@next/swc-win32-ia32-msvc': 15.0.0-rc.0 10739 - '@next/swc-win32-x64-msvc': 15.0.0-rc.0 10740 - '@opentelemetry/api': 1.9.0 10741 - sharp: 0.33.4 10742 - transitivePeerDependencies: 10743 - - '@babel/core' 10744 - - babel-plugin-macros 10745 - 10746 - next@15.0.3(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522): 10747 - dependencies: 10748 - '@next/env': 15.0.3 10749 - '@swc/counter': 0.1.3 10750 - '@swc/helpers': 0.5.13 10751 - busboy: 1.6.0 10752 - caniuse-lite: 1.0.30001637 10753 - postcss: 8.4.31 10754 - react: 19.0.0-rc-f994737d14-20240522 10755 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 10756 - styled-jsx: 5.1.6(@babel/core@7.24.7)(react@19.0.0-rc-f994737d14-20240522) 10757 - optionalDependencies: 10758 - '@next/swc-darwin-arm64': 15.0.3 10759 - '@next/swc-darwin-x64': 15.0.3 10760 - '@next/swc-linux-arm64-gnu': 15.0.3 10761 - '@next/swc-linux-arm64-musl': 15.0.3 10762 - '@next/swc-linux-x64-gnu': 15.0.3 10763 - '@next/swc-linux-x64-musl': 15.0.3 10764 - '@next/swc-win32-arm64-msvc': 15.0.3 10765 - '@next/swc-win32-x64-msvc': 15.0.3 10766 - '@opentelemetry/api': 1.9.0 10767 10295 sharp: 0.33.5 10768 10296 transitivePeerDependencies: 10769 10297 - '@babel/core' ··· 11133 10661 strip-json-comments: 2.0.1 11134 10662 optional: true 11135 10663 11136 - react-dom@19.0.0-rc-3563387fe3-20240621(react@19.0.0-rc-3563387fe3-20240621): 11137 - dependencies: 11138 - react: 19.0.0-rc-3563387fe3-20240621 11139 - scheduler: 0.25.0-rc-3563387fe3-20240621 11140 - 11141 - react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522): 10664 + react-dom@19.0.0(react@19.0.0): 11142 10665 dependencies: 11143 - react: 19.0.0-rc-f994737d14-20240522 11144 - scheduler: 0.25.0-rc-f994737d14-20240522 10666 + react: 19.0.0 10667 + scheduler: 0.25.0 11145 10668 11146 - react-error-boundary@4.0.13(react@19.0.0-rc-f994737d14-20240522): 10669 + react-error-boundary@4.0.13(react@19.0.0): 11147 10670 dependencies: 11148 10671 '@babel/runtime': 7.24.6 11149 - react: 19.0.0-rc-f994737d14-20240522 10672 + react: 19.0.0 11150 10673 11151 - react-intersection-observer@9.13.1(react-dom@19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522))(react@19.0.0-rc-f994737d14-20240522): 10674 + react-intersection-observer@9.13.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 11152 10675 dependencies: 11153 - react: 19.0.0-rc-f994737d14-20240522 10676 + react: 19.0.0 11154 10677 optionalDependencies: 11155 - react-dom: 19.0.0-rc-f994737d14-20240522(react@19.0.0-rc-f994737d14-20240522) 10678 + react-dom: 19.0.0(react@19.0.0) 11156 10679 11157 10680 react-is@16.13.1: {} 11158 10681 ··· 11160 10683 11161 10684 react-refresh@0.14.2: {} 11162 10685 11163 - react-remove-scroll-bar@2.3.6(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522): 10686 + react-remove-scroll-bar@2.3.6(@types/react@18.3.10)(react@19.0.0): 11164 10687 dependencies: 11165 - react: 19.0.0-rc-f994737d14-20240522 11166 - react-style-singleton: 2.2.1(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 10688 + react: 19.0.0 10689 + react-style-singleton: 2.2.1(@types/react@18.3.10)(react@19.0.0) 11167 10690 tslib: 2.6.2 11168 10691 optionalDependencies: 11169 10692 '@types/react': 18.3.10 11170 10693 11171 - react-remove-scroll@2.5.7(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522): 10694 + react-remove-scroll@2.5.7(@types/react@18.3.10)(react@19.0.0): 11172 10695 dependencies: 11173 - react: 19.0.0-rc-f994737d14-20240522 11174 - react-remove-scroll-bar: 2.3.6(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 11175 - react-style-singleton: 2.2.1(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 10696 + react: 19.0.0 10697 + react-remove-scroll-bar: 2.3.6(@types/react@18.3.10)(react@19.0.0) 10698 + react-style-singleton: 2.2.1(@types/react@18.3.10)(react@19.0.0) 11176 10699 tslib: 2.6.2 11177 - use-callback-ref: 1.3.2(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 11178 - use-sidecar: 1.1.2(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522) 10700 + use-callback-ref: 1.3.2(@types/react@18.3.10)(react@19.0.0) 10701 + use-sidecar: 1.1.2(@types/react@18.3.10)(react@19.0.0) 11179 10702 optionalDependencies: 11180 10703 '@types/react': 18.3.10 11181 10704 11182 - react-style-singleton@2.2.1(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522): 10705 + react-style-singleton@2.2.1(@types/react@18.3.10)(react@19.0.0): 11183 10706 dependencies: 11184 10707 get-nonce: 1.0.1 11185 10708 invariant: 2.2.4 11186 - react: 19.0.0-rc-f994737d14-20240522 10709 + react: 19.0.0 11187 10710 tslib: 2.6.2 11188 10711 optionalDependencies: 11189 10712 '@types/react': 18.3.10 11190 10713 11191 - react@19.0.0-rc-3563387fe3-20240621: {} 11192 - 11193 - react@19.0.0-rc-f994737d14-20240522: {} 10714 + react@19.0.0: {} 11194 10715 11195 10716 read-cache@1.0.0: 11196 10717 dependencies: ··· 11349 10870 dependencies: 11350 10871 xmlchars: 2.2.0 11351 10872 11352 - scheduler@0.25.0-rc-3563387fe3-20240621: {} 11353 - 11354 - scheduler@0.25.0-rc-f994737d14-20240522: {} 10873 + scheduler@0.25.0: {} 11355 10874 11356 10875 schema-utils@3.3.0: 11357 10876 dependencies: ··· 11389 10908 functions-have-names: 1.2.3 11390 10909 has-property-descriptors: 1.0.2 11391 10910 11392 - sharp@0.33.4: 11393 - dependencies: 11394 - color: 4.2.3 11395 - detect-libc: 2.0.3 11396 - semver: 7.6.2 11397 - optionalDependencies: 11398 - '@img/sharp-darwin-arm64': 0.33.4 11399 - '@img/sharp-darwin-x64': 0.33.4 11400 - '@img/sharp-libvips-darwin-arm64': 1.0.2 11401 - '@img/sharp-libvips-darwin-x64': 1.0.2 11402 - '@img/sharp-libvips-linux-arm': 1.0.2 11403 - '@img/sharp-libvips-linux-arm64': 1.0.2 11404 - '@img/sharp-libvips-linux-s390x': 1.0.2 11405 - '@img/sharp-libvips-linux-x64': 1.0.2 11406 - '@img/sharp-libvips-linuxmusl-arm64': 1.0.2 11407 - '@img/sharp-libvips-linuxmusl-x64': 1.0.2 11408 - '@img/sharp-linux-arm': 0.33.4 11409 - '@img/sharp-linux-arm64': 0.33.4 11410 - '@img/sharp-linux-s390x': 0.33.4 11411 - '@img/sharp-linux-x64': 0.33.4 11412 - '@img/sharp-linuxmusl-arm64': 0.33.4 11413 - '@img/sharp-linuxmusl-x64': 0.33.4 11414 - '@img/sharp-wasm32': 0.33.4 11415 - '@img/sharp-win32-ia32': 0.33.4 11416 - '@img/sharp-win32-x64': 0.33.4 11417 - optional: true 11418 - 11419 10911 sharp@0.33.5: 11420 10912 dependencies: 11421 10913 color: 4.2.3 ··· 11619 11111 11620 11112 strip-json-comments@3.1.1: {} 11621 11113 11622 - styled-jsx@5.1.3(react@19.0.0-rc-3563387fe3-20240621): 11114 + styled-jsx@5.1.6(@babel/core@7.24.7)(react@19.0.0): 11623 11115 dependencies: 11624 11116 client-only: 0.0.1 11625 - react: 19.0.0-rc-3563387fe3-20240621 11626 - 11627 - styled-jsx@5.1.6(@babel/core@7.24.7)(react@19.0.0-rc-f994737d14-20240522): 11628 - dependencies: 11629 - client-only: 0.0.1 11630 - react: 19.0.0-rc-f994737d14-20240522 11117 + react: 19.0.0 11631 11118 optionalDependencies: 11632 11119 '@babel/core': 7.24.7 11633 11120 ··· 11655 11142 11656 11143 supports-preserve-symlinks-flag@1.0.0: {} 11657 11144 11658 - swr@2.2.6-beta.4(react@19.0.0-rc-f994737d14-20240522): 11145 + swr@2.2.6-beta.4(react@19.0.0): 11659 11146 dependencies: 11660 11147 dequal: 2.0.3 11661 - react: 19.0.0-rc-f994737d14-20240522 11662 - use-sync-external-store: 1.2.2(react@19.0.0-rc-f994737d14-20240522) 11148 + react: 19.0.0 11149 + use-sync-external-store: 1.2.2(react@19.0.0) 11663 11150 11664 11151 symbol-tree@3.2.4: {} 11665 11152 ··· 11817 11304 11818 11305 tslib@2.6.2: {} 11819 11306 11307 + tslib@2.8.1: {} 11308 + 11820 11309 tsutils@3.21.0(typescript@5.5.2): 11821 11310 dependencies: 11822 11311 tslib: 1.14.1 ··· 11957 11446 querystringify: 2.2.0 11958 11447 requires-port: 1.0.0 11959 11448 11960 - use-callback-ref@1.3.2(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522): 11449 + use-callback-ref@1.3.2(@types/react@18.3.10)(react@19.0.0): 11961 11450 dependencies: 11962 - react: 19.0.0-rc-f994737d14-20240522 11451 + react: 19.0.0 11963 11452 tslib: 2.6.2 11964 11453 optionalDependencies: 11965 11454 '@types/react': 18.3.10 11966 11455 11967 - use-sidecar@1.1.2(@types/react@18.3.10)(react@19.0.0-rc-f994737d14-20240522): 11456 + use-sidecar@1.1.2(@types/react@18.3.10)(react@19.0.0): 11968 11457 dependencies: 11969 11458 detect-node-es: 1.1.0 11970 - react: 19.0.0-rc-f994737d14-20240522 11459 + react: 19.0.0 11971 11460 tslib: 2.6.2 11972 11461 optionalDependencies: 11973 11462 '@types/react': 18.3.10 11974 11463 11975 - use-sync-external-store@1.2.2(react@19.0.0-rc-f994737d14-20240522): 11464 + use-sync-external-store@1.2.2(react@19.0.0): 11976 11465 dependencies: 11977 - react: 19.0.0-rc-f994737d14-20240522 11466 + react: 19.0.0 11978 11467 11979 11468 utf-8-validate@6.0.3: 11980 11469 dependencies:
+5
pnpm-workspace.yaml
··· 1 1 packages: 2 2 - "packages/*" 3 + 4 + catalog: 5 + next: ^15.1.0 6 + react: ^19.0.0 7 + react-dom: ^19.0.0