Openstatus www.openstatus.dev

fix: resolve type errors in auth adapter by properly formatting user … (#1328)

* fix: resolve type errors in auth adapter by properly formatting user data

* chore: update dependencies and remove unused packages across workspace

* fix: add ts-ignore comments to suppress type errors in DrizzleAdapter config

* fix: similar fix for web as well

* lock file fix

* just to force update

* maybe def maybe

* use ts-expect-error

---------

Co-authored-by: Thibault Le Ouay <thibaultleouay@gmail.com>

authored by

Anonymus2000
Thibault Le Ouay
and committed by
GitHub
3eea0edf ed7f2630

+167 -705
+1 -1
apps/dashboard/package.json
··· 20 20 "@dnd-kit/utilities": "3.2.2", 21 21 "@hookform/devtools": "4.4.0", 22 22 "@hookform/resolvers": "3.9.1", 23 - "@libsql/client": "0.15.9", 23 + "@libsql/client": "0.15.14", 24 24 "@openpanel/nextjs": "1.0.8", 25 25 "@openstatus/analytics": "workspace:*", 26 26 "@openstatus/api": "workspace:*",
+16 -5
apps/dashboard/src/lib/auth/adapter.ts
··· 12 12 import { createUser, getUser } from "./helpers"; 13 13 14 14 export const adapter: Adapter = { 15 - // @ts-expect-error some issues with types 16 15 ...DrizzleAdapter(db, { 16 + // @ts-expect-error: problem with type 17 17 usersTable: user, 18 + // @ts-expect-error: problem with type 18 19 accountsTable: account, 20 + // @ts-expect-error: problem with type 19 21 sessionsTable: session, 20 22 verificationTokensTable: verificationToken, 21 23 }), 22 - // @ts-expect-error some issues with types 23 24 createUser: async (data) => { 24 - return await createUser(data); 25 + const user = await createUser(data); 26 + return { 27 + ...user, 28 + id: user.id.toString(), 29 + email: user.email || "", 30 + }; 25 31 }, 26 - // @ts-expect-error some issues with types 27 32 getUser: async (id) => { 28 - return await getUser(id); 33 + const user = await getUser(id); 34 + if (!user) return null; 35 + return { 36 + ...user, 37 + id: user.id.toString(), 38 + email: user.email || "", 39 + }; 29 40 }, 30 41 };
+2 -12
apps/dashboard/src/lib/auth/helpers.ts
··· 14 14 firstName: data.firstName, 15 15 lastName: data.lastName, 16 16 }) 17 - .returning({ 18 - id: user.id, 19 - email: user.email, 20 - emailVerified: user.emailVerified, 21 - }) 17 + .returning() 22 18 .get(); 23 19 24 20 let slug: string | undefined = undefined; ··· 58 54 59 55 export async function getUser(id: string) { 60 56 const _user = await db 61 - .select({ 62 - id: user.id, 63 - email: user.email, 64 - firstName: user.firstName, 65 - lastName: user.lastName, 66 - photoUrl: user.photoUrl, 67 - }) 57 + .select() 68 58 .from(user) 69 59 .where(eq(user.id, Number(id))) 70 60 .get();
-2
apps/screenshot-service/package.json
··· 8 8 "dependencies": { 9 9 "@aws-sdk/client-s3": "3.550.0", 10 10 "@hono/zod-validator": "0.2.1", 11 - "@libsql/client": "0.14.0", 12 11 "@openstatus/db": "workspace:*", 13 12 "@openstatus/utils": "workspace:^", 14 13 "@t3-oss/env-core": "0.7.1", 15 14 "@upstash/qstash": "2.6.2", 16 - "drizzle-orm": "0.35.3", 17 15 "hono": "4.5.3", 18 16 "playwright": "1.46.0", 19 17 "zod": "3.24.1"
+4 -4
apps/web/package.json
··· 11 11 "tsc": "tsc --noEmit" 12 12 }, 13 13 "dependencies": { 14 - "@auth/core": "0.34.1", 15 - "@auth/drizzle-adapter": "1.9.1", 14 + "@auth/core": "0.40.0", 15 + "@auth/drizzle-adapter": "1.10.0", 16 16 "@google-cloud/tasks": "4.0.1", 17 17 "@hookform/resolvers": "3.9.1", 18 - "@libsql/client": "0.14.0", 19 - "@openpanel/nextjs": "^1.0.8", 18 + "@libsql/client": "0.15.14", 19 + "@openpanel/nextjs": "1.0.8", 20 20 "@openstatus/analytics": "workspace:*", 21 21 "@openstatus/api": "workspace:*", 22 22 "@openstatus/assertions": "workspace:*",
+17 -5
apps/web/src/lib/auth/adapter.ts
··· 12 12 import { createUser, getUser } from "./helpers"; 13 13 14 14 export const adapter: Adapter = { 15 - // @ts-expect-error some issues with types 16 15 ...DrizzleAdapter(db, { 16 + // @ts-ignore 17 17 usersTable: user, 18 + // @ts-ignore 18 19 accountsTable: account, 20 + // @ts-ignore 19 21 sessionsTable: session, 22 + // @ts-ignore 20 23 verificationTokensTable: verificationToken, 21 24 }), 22 - // @ts-expect-error some issues with types 23 25 createUser: async (data) => { 24 - return await createUser(data); 26 + const user = await createUser(data); 27 + return { 28 + ...user, 29 + id: user.id.toString(), 30 + email: user.email || "", 31 + }; 25 32 }, 26 - // @ts-expect-error some issues with types 27 33 getUser: async (id) => { 28 - return await getUser(id); 34 + const user = await getUser(id); 35 + if (!user) return null; 36 + return { 37 + ...user, 38 + id: user.id.toString(), 39 + email: user.email || "", 40 + }; 29 41 }, 30 42 };
+2 -12
apps/web/src/lib/auth/helpers.ts
··· 16 16 firstName: rest.firstName, 17 17 lastName: rest.lastName, 18 18 }) 19 - .returning({ 20 - id: user.id, 21 - email: user.email, 22 - emailVerified: user.emailVerified, 23 - }) 19 + .returning() 24 20 .get(); 25 21 26 22 let slug: string | undefined = undefined; ··· 60 56 61 57 export async function getUser(id: string) { 62 58 const _user = await db 63 - .select({ 64 - id: user.id, 65 - email: user.email, 66 - firstName: user.firstName, 67 - lastName: user.lastName, 68 - photoUrl: user.photoUrl, 69 - }) 59 + .select() 70 60 .from(user) 71 61 .where(eq(user.id, Number(id))) 72 62 .get();
+4 -8
packages/db/package.json
··· 13 13 "dev": "turso dev --db-file ../../openstatus-dev.db" 14 14 }, 15 15 "dependencies": { 16 - "@libsql/client": "0.14.0", 16 + "@libsql/client": "0.15.14", 17 17 "@t3-oss/env-core": "0.7.1", 18 - "drizzle-orm": "0.35.3", 18 + "drizzle-orm": "0.44.4", 19 19 "drizzle-zod": "0.5.1", 20 20 "zod": "3.24.1" 21 21 }, ··· 23 23 "@openstatus/assertions": "workspace:*", 24 24 "@openstatus/tsconfig": "workspace:*", 25 25 "@types/node": "22.10.2", 26 - "better-sqlite3": "11.4.0", 27 - "bufferutil": "4.0.8", 28 - "drizzle-kit": "0.26.2", 29 - "encoding": "0.1.13", 26 + "drizzle-kit": "0.31.4", 30 27 "next-auth": "5.0.0-beta.29", 31 - "typescript": "5.7.2", 32 - "utf-8-validate": "6.0.3" 28 + "typescript": "5.7.2" 33 29 }, 34 30 "author": "OpenStatus" 35 31 }
+121 -656
pnpm-lock.yaml
··· 60 60 specifier: 3.9.1 61 61 version: 3.9.1(react-hook-form@7.54.1(react@19.1.1)) 62 62 '@libsql/client': 63 - specifier: 0.15.9 64 - version: 0.15.9(bufferutil@4.0.8)(utf-8-validate@6.0.5) 63 + specifier: 0.15.14 64 + version: 0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5) 65 65 '@openpanel/nextjs': 66 66 specifier: 1.0.8 67 67 version: 1.0.8(next@15.4.7(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1) ··· 370 370 '@hono/zod-validator': 371 371 specifier: 0.2.1 372 372 version: 0.2.1(hono@4.5.3)(zod@3.24.1) 373 - '@libsql/client': 374 - specifier: 0.14.0 375 - version: 0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.5) 376 373 '@openstatus/db': 377 374 specifier: workspace:* 378 375 version: link:../../packages/db ··· 385 382 '@upstash/qstash': 386 383 specifier: 2.6.2 387 384 version: 2.6.2 388 - drizzle-orm: 389 - specifier: 0.35.3 390 - version: 0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.1.10)(better-sqlite3@11.7.0)(bun-types@1.2.20(@types/react@19.1.10))(react@19.1.1) 391 385 hono: 392 386 specifier: 4.5.3 393 387 version: 4.5.3 ··· 770 764 apps/web: 771 765 dependencies: 772 766 '@auth/core': 773 - specifier: 0.34.1 774 - version: 0.34.1 767 + specifier: 0.40.0 768 + version: 0.40.0 775 769 '@auth/drizzle-adapter': 776 - specifier: 1.9.1 777 - version: 1.9.1 770 + specifier: 1.10.0 771 + version: 1.10.0 778 772 '@google-cloud/tasks': 779 773 specifier: 4.0.1 780 774 version: 4.0.1(encoding@0.1.13) ··· 782 776 specifier: 3.9.1 783 777 version: 3.9.1(react-hook-form@7.54.1(react@19.1.1)) 784 778 '@libsql/client': 785 - specifier: 0.14.0 786 - version: 0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.5) 779 + specifier: 0.15.14 780 + version: 0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5) 787 781 '@openpanel/nextjs': 788 - specifier: ^1.0.8 782 + specifier: 1.0.8 789 783 version: 1.0.8(next@15.4.7(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1) 790 784 '@openstatus/analytics': 791 785 specifier: workspace:* ··· 1237 1231 packages/db: 1238 1232 dependencies: 1239 1233 '@libsql/client': 1240 - specifier: 0.14.0 1241 - version: 0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) 1234 + specifier: 0.15.14 1235 + version: 0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5) 1242 1236 '@t3-oss/env-core': 1243 1237 specifier: 0.7.1 1244 1238 version: 0.7.1(typescript@5.7.2)(zod@3.24.1) 1245 1239 drizzle-orm: 1246 - specifier: 0.35.3 1247 - version: 0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.1.10)(better-sqlite3@11.4.0)(bun-types@1.2.20(@types/react@19.1.10))(react@19.1.1) 1240 + specifier: 0.44.4 1241 + version: 0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(better-sqlite3@11.7.0)(bun-types@1.2.20(@types/react@19.1.10)) 1248 1242 drizzle-zod: 1249 1243 specifier: 0.5.1 1250 - version: 0.5.1(drizzle-orm@0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.1.10)(better-sqlite3@11.4.0)(bun-types@1.2.20(@types/react@19.1.10))(react@19.1.1))(zod@3.24.1) 1244 + version: 0.5.1(drizzle-orm@0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(better-sqlite3@11.7.0)(bun-types@1.2.20(@types/react@19.1.10)))(zod@3.24.1) 1251 1245 zod: 1252 1246 specifier: 3.24.1 1253 1247 version: 3.24.1 ··· 1261 1255 '@types/node': 1262 1256 specifier: 22.10.2 1263 1257 version: 22.10.2 1264 - better-sqlite3: 1265 - specifier: 11.4.0 1266 - version: 11.4.0 1267 - bufferutil: 1268 - specifier: 4.0.8 1269 - version: 4.0.8 1270 1258 drizzle-kit: 1271 - specifier: 0.26.2 1272 - version: 0.26.2 1273 - encoding: 1274 - specifier: 0.1.13 1275 - version: 0.1.13 1259 + specifier: 0.31.4 1260 + version: 0.31.4 1276 1261 next-auth: 1277 1262 specifier: 5.0.0-beta.29 1278 1263 version: 5.0.0-beta.29(next@15.4.7(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1))(react@19.1.1) 1279 1264 typescript: 1280 1265 specifier: 5.7.2 1281 1266 version: 5.7.2 1282 - utf-8-validate: 1283 - specifier: 6.0.3 1284 - version: 6.0.3 1285 1267 1286 1268 packages/emails: 1287 1269 dependencies: ··· 1954 1936 '@astrojs/yaml2ts@0.2.2': 1955 1937 resolution: {integrity: sha512-GOfvSr5Nqy2z5XiwqTouBBpy5FyI6DEe+/g/Mk5am9SjILN1S5fOEvYK0GuWHg98yS/dobP4m8qyqw/URW35fQ==} 1956 1938 1957 - '@auth/core@0.34.1': 1958 - resolution: {integrity: sha512-tuYU2VIbI8rFbkSwP710LmybB2FXJsPN7j3sjRVfN9SXVQBK2ej6LdewQaofpBGp4Mk+cC2UeiGNH0or4tgaeA==} 1959 - peerDependencies: 1960 - '@simplewebauthn/browser': ^9.0.1 1961 - '@simplewebauthn/server': ^9.0.2 1962 - nodemailer: ^6.8.0 1963 - peerDependenciesMeta: 1964 - '@simplewebauthn/browser': 1965 - optional: true 1966 - '@simplewebauthn/server': 1967 - optional: true 1968 - nodemailer: 1969 - optional: true 1970 - 1971 - '@auth/core@0.39.1': 1972 - resolution: {integrity: sha512-McD8slui0oOA1pjR5sPjLPl5Zm//nLP/8T3kr8hxIsvNLvsiudYvPHhDFPjh1KcZ2nFxCkZmP6bRxaaPd/AnLA==} 1973 - peerDependencies: 1974 - '@simplewebauthn/browser': ^9.0.1 1975 - '@simplewebauthn/server': ^9.0.2 1976 - nodemailer: ^6.8.0 1977 - peerDependenciesMeta: 1978 - '@simplewebauthn/browser': 1979 - optional: true 1980 - '@simplewebauthn/server': 1981 - optional: true 1982 - nodemailer: 1983 - optional: true 1984 - 1985 1939 '@auth/core@0.40.0': 1986 1940 resolution: {integrity: sha512-n53uJE0RH5SqZ7N1xZoMKekbHfQgjd0sAEyUbE+IYJnmuQkbvuZnXItCU7d+i7Fj8VGOgqvNO7Mw4YfBTlZeQw==} 1987 1941 peerDependencies: ··· 1998 1952 1999 1953 '@auth/drizzle-adapter@1.10.0': 2000 1954 resolution: {integrity: sha512-3MKsdAINTfvV4QKev8PFMNG93HJEUHh9sggDXnmUmriFogRf8qLvgqnPsTlfUyWcLwTzzrrYjeu8CGM+4IxHwQ==} 2001 - 2002 - '@auth/drizzle-adapter@1.9.1': 2003 - resolution: {integrity: sha512-WQ4vtDxpo3jAPfSLJbrjFx++/lMO1HJbV7ZwzCUBEkhqYMTrqQBJhLb+vcusDu95wiekVOUCPe1y6QSNbMeeYA==} 2004 1955 2005 1956 '@aws-crypto/crc32@3.0.0': 2006 1957 resolution: {integrity: sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==} ··· 2506 2457 peerDependencies: 2507 2458 react: '>=16.8.0' 2508 2459 2509 - '@drizzle-team/brocli@0.10.1': 2510 - resolution: {integrity: sha512-AHy0vjc+n/4w/8Mif+w86qpppHuF3AyXbcWW+R/W7GNA3F5/p2nuhlkCJaTXSLZheB4l1rtHzOfr9A7NwoR/Zg==} 2460 + '@drizzle-team/brocli@0.10.2': 2461 + resolution: {integrity: sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==} 2511 2462 2512 2463 '@emmetio/abbreviation@2.3.3': 2513 2464 resolution: {integrity: sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA==} ··· 2607 2558 peerDependencies: 2608 2559 esbuild: '*' 2609 2560 2610 - '@esbuild/aix-ppc64@0.19.12': 2611 - resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==} 2612 - engines: {node: '>=12'} 2613 - cpu: [ppc64] 2614 - os: [aix] 2615 - 2616 2561 '@esbuild/aix-ppc64@0.21.5': 2617 2562 resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} 2618 2563 engines: {node: '>=12'} ··· 2637 2582 cpu: [arm64] 2638 2583 os: [android] 2639 2584 2640 - '@esbuild/android-arm64@0.19.12': 2641 - resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==} 2642 - engines: {node: '>=12'} 2643 - cpu: [arm64] 2644 - os: [android] 2645 - 2646 2585 '@esbuild/android-arm64@0.21.5': 2647 2586 resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} 2648 2587 engines: {node: '>=12'} ··· 2667 2606 cpu: [arm] 2668 2607 os: [android] 2669 2608 2670 - '@esbuild/android-arm@0.19.12': 2671 - resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==} 2672 - engines: {node: '>=12'} 2673 - cpu: [arm] 2674 - os: [android] 2675 - 2676 2609 '@esbuild/android-arm@0.21.5': 2677 2610 resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 2678 2611 engines: {node: '>=12'} ··· 2697 2630 cpu: [x64] 2698 2631 os: [android] 2699 2632 2700 - '@esbuild/android-x64@0.19.12': 2701 - resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==} 2702 - engines: {node: '>=12'} 2703 - cpu: [x64] 2704 - os: [android] 2705 - 2706 2633 '@esbuild/android-x64@0.21.5': 2707 2634 resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 2708 2635 engines: {node: '>=12'} ··· 2727 2654 cpu: [arm64] 2728 2655 os: [darwin] 2729 2656 2730 - '@esbuild/darwin-arm64@0.19.12': 2731 - resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==} 2732 - engines: {node: '>=12'} 2733 - cpu: [arm64] 2734 - os: [darwin] 2735 - 2736 2657 '@esbuild/darwin-arm64@0.21.5': 2737 2658 resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 2738 2659 engines: {node: '>=12'} ··· 2757 2678 cpu: [x64] 2758 2679 os: [darwin] 2759 2680 2760 - '@esbuild/darwin-x64@0.19.12': 2761 - resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==} 2762 - engines: {node: '>=12'} 2763 - cpu: [x64] 2764 - os: [darwin] 2765 - 2766 2681 '@esbuild/darwin-x64@0.21.5': 2767 2682 resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} 2768 2683 engines: {node: '>=12'} ··· 2787 2702 cpu: [arm64] 2788 2703 os: [freebsd] 2789 2704 2790 - '@esbuild/freebsd-arm64@0.19.12': 2791 - resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==} 2792 - engines: {node: '>=12'} 2793 - cpu: [arm64] 2794 - os: [freebsd] 2795 - 2796 2705 '@esbuild/freebsd-arm64@0.21.5': 2797 2706 resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 2798 2707 engines: {node: '>=12'} ··· 2817 2726 cpu: [x64] 2818 2727 os: [freebsd] 2819 2728 2820 - '@esbuild/freebsd-x64@0.19.12': 2821 - resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==} 2822 - engines: {node: '>=12'} 2823 - cpu: [x64] 2824 - os: [freebsd] 2825 - 2826 2729 '@esbuild/freebsd-x64@0.21.5': 2827 2730 resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 2828 2731 engines: {node: '>=12'} ··· 2847 2750 cpu: [arm64] 2848 2751 os: [linux] 2849 2752 2850 - '@esbuild/linux-arm64@0.19.12': 2851 - resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==} 2852 - engines: {node: '>=12'} 2853 - cpu: [arm64] 2854 - os: [linux] 2855 - 2856 2753 '@esbuild/linux-arm64@0.21.5': 2857 2754 resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 2858 2755 engines: {node: '>=12'} ··· 2877 2774 cpu: [arm] 2878 2775 os: [linux] 2879 2776 2880 - '@esbuild/linux-arm@0.19.12': 2881 - resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==} 2882 - engines: {node: '>=12'} 2883 - cpu: [arm] 2884 - os: [linux] 2885 - 2886 2777 '@esbuild/linux-arm@0.21.5': 2887 2778 resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} 2888 2779 engines: {node: '>=12'} ··· 2907 2798 cpu: [ia32] 2908 2799 os: [linux] 2909 2800 2910 - '@esbuild/linux-ia32@0.19.12': 2911 - resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==} 2912 - engines: {node: '>=12'} 2913 - cpu: [ia32] 2914 - os: [linux] 2915 - 2916 2801 '@esbuild/linux-ia32@0.21.5': 2917 2802 resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 2918 2803 engines: {node: '>=12'} ··· 2937 2822 cpu: [loong64] 2938 2823 os: [linux] 2939 2824 2940 - '@esbuild/linux-loong64@0.19.12': 2941 - resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==} 2942 - engines: {node: '>=12'} 2943 - cpu: [loong64] 2944 - os: [linux] 2945 - 2946 2825 '@esbuild/linux-loong64@0.21.5': 2947 2826 resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 2948 2827 engines: {node: '>=12'} ··· 2967 2846 cpu: [mips64el] 2968 2847 os: [linux] 2969 2848 2970 - '@esbuild/linux-mips64el@0.19.12': 2971 - resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==} 2972 - engines: {node: '>=12'} 2973 - cpu: [mips64el] 2974 - os: [linux] 2975 - 2976 2849 '@esbuild/linux-mips64el@0.21.5': 2977 2850 resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 2978 2851 engines: {node: '>=12'} ··· 2997 2870 cpu: [ppc64] 2998 2871 os: [linux] 2999 2872 3000 - '@esbuild/linux-ppc64@0.19.12': 3001 - resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==} 3002 - engines: {node: '>=12'} 3003 - cpu: [ppc64] 3004 - os: [linux] 3005 - 3006 2873 '@esbuild/linux-ppc64@0.21.5': 3007 2874 resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} 3008 2875 engines: {node: '>=12'} ··· 3027 2894 cpu: [riscv64] 3028 2895 os: [linux] 3029 2896 3030 - '@esbuild/linux-riscv64@0.19.12': 3031 - resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==} 3032 - engines: {node: '>=12'} 3033 - cpu: [riscv64] 3034 - os: [linux] 3035 - 3036 2897 '@esbuild/linux-riscv64@0.21.5': 3037 2898 resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 3038 2899 engines: {node: '>=12'} ··· 3057 2918 cpu: [s390x] 3058 2919 os: [linux] 3059 2920 3060 - '@esbuild/linux-s390x@0.19.12': 3061 - resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==} 3062 - engines: {node: '>=12'} 3063 - cpu: [s390x] 3064 - os: [linux] 3065 - 3066 2921 '@esbuild/linux-s390x@0.21.5': 3067 2922 resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 3068 2923 engines: {node: '>=12'} ··· 3087 2942 cpu: [x64] 3088 2943 os: [linux] 3089 2944 3090 - '@esbuild/linux-x64@0.19.12': 3091 - resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==} 3092 - engines: {node: '>=12'} 3093 - cpu: [x64] 3094 - os: [linux] 3095 - 3096 2945 '@esbuild/linux-x64@0.21.5': 3097 2946 resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 3098 2947 engines: {node: '>=12'} ··· 3129 2978 cpu: [x64] 3130 2979 os: [netbsd] 3131 2980 3132 - '@esbuild/netbsd-x64@0.19.12': 3133 - resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==} 3134 - engines: {node: '>=12'} 3135 - cpu: [x64] 3136 - os: [netbsd] 3137 - 3138 2981 '@esbuild/netbsd-x64@0.21.5': 3139 2982 resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 3140 2983 engines: {node: '>=12'} ··· 3171 3014 cpu: [x64] 3172 3015 os: [openbsd] 3173 3016 3174 - '@esbuild/openbsd-x64@0.19.12': 3175 - resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==} 3176 - engines: {node: '>=12'} 3177 - cpu: [x64] 3178 - os: [openbsd] 3179 - 3180 3017 '@esbuild/openbsd-x64@0.21.5': 3181 3018 resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 3182 3019 engines: {node: '>=12'} ··· 3201 3038 cpu: [x64] 3202 3039 os: [sunos] 3203 3040 3204 - '@esbuild/sunos-x64@0.19.12': 3205 - resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==} 3206 - engines: {node: '>=12'} 3207 - cpu: [x64] 3208 - os: [sunos] 3209 - 3210 3041 '@esbuild/sunos-x64@0.21.5': 3211 3042 resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 3212 3043 engines: {node: '>=12'} ··· 3231 3062 cpu: [arm64] 3232 3063 os: [win32] 3233 3064 3234 - '@esbuild/win32-arm64@0.19.12': 3235 - resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==} 3236 - engines: {node: '>=12'} 3237 - cpu: [arm64] 3238 - os: [win32] 3239 - 3240 3065 '@esbuild/win32-arm64@0.21.5': 3241 3066 resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 3242 3067 engines: {node: '>=12'} ··· 3261 3086 cpu: [ia32] 3262 3087 os: [win32] 3263 3088 3264 - '@esbuild/win32-ia32@0.19.12': 3265 - resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==} 3266 - engines: {node: '>=12'} 3267 - cpu: [ia32] 3268 - os: [win32] 3269 - 3270 3089 '@esbuild/win32-ia32@0.21.5': 3271 3090 resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 3272 3091 engines: {node: '>=12'} ··· 3287 3106 3288 3107 '@esbuild/win32-x64@0.18.20': 3289 3108 resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} 3290 - engines: {node: '>=12'} 3291 - cpu: [x64] 3292 - os: [win32] 3293 - 3294 - '@esbuild/win32-x64@0.19.12': 3295 - resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==} 3296 3109 engines: {node: '>=12'} 3297 3110 cpu: [x64] 3298 3111 os: [win32] ··· 3745 3558 bundledDependencies: 3746 3559 - '@libsql/libsql-wasm-experimental' 3747 3560 3748 - '@libsql/client@0.14.0': 3749 - resolution: {integrity: sha512-/9HEKfn6fwXB5aTEEoMeFh4CtG0ZzbncBb1e++OCdVpgKZ/xyMsIVYXm0w7Pv4RUel803vE6LwniB3PqD72R0Q==} 3750 - 3751 - '@libsql/client@0.15.9': 3752 - resolution: {integrity: sha512-VT3do0a0vwYVaNcp/y05ikkKS3OrFR5UeEf5SUuYZVgKVl1Nc1k9ajoYSsOid8AD/vlhLDB5yFQaV4HmT/OB9w==} 3561 + '@libsql/client@0.15.14': 3562 + resolution: {integrity: sha512-oXeFYcSyAsYWvpWVmynrwNwb+NHNHtMfSIVdfQTF1B9RsgDXQE5YCDP3SS0i1FA8nuLWy2trFDVwP1b2LNdNPQ==} 3753 3563 3754 3564 '@libsql/core@0.14.0': 3755 3565 resolution: {integrity: sha512-nhbuXf7GP3PSZgdCY2Ecj8vz187ptHlZQ0VRc751oB2C1W8jQUXKKklvt7t1LJiUTQBVJuadF628eUk+3cRi4Q==} 3756 3566 3757 - '@libsql/core@0.15.9': 3758 - resolution: {integrity: sha512-4OVdeAmuaCUq5hYT8NNn0nxlO9AcA/eTjXfUZ+QK8MT3Dz7Z76m73x7KxjU6I64WyXX98dauVH2b9XM+d84npw==} 3567 + '@libsql/core@0.15.14': 3568 + resolution: {integrity: sha512-b2eVQma78Ss+edIIFi7LnhhyUy5hAJjYvrSAD5RFdO/YKP2rEvNAT1pIn2Li7NrqcsMmoEQWlpUWH4fWMdXtpQ==} 3759 3569 3760 - '@libsql/darwin-arm64@0.4.5': 3761 - resolution: {integrity: sha512-xLdnn0NrgSk6OMi716FFs/27Hs33jtSd2fkKi/72Ey/qBtPWcB1BMurDQekzi0yAcfQTjGqIz7tpOibyjiEPyQ==} 3570 + '@libsql/darwin-arm64@0.5.20': 3571 + resolution: {integrity: sha512-faHM2FX26xruO4w76YkW+lA28yKcTIzNiGvK9Q8+8sCuC7cn3KdMO6KJ84c6fJQwtwG+F4hxIoy95U5FYge3bg==} 3762 3572 cpu: [arm64] 3763 3573 os: [darwin] 3764 3574 3765 - '@libsql/darwin-arm64@0.5.13': 3766 - resolution: {integrity: sha512-ASz/EAMLDLx3oq9PVvZ4zBXXHbz2TxtxUwX2xpTRFR4V4uSHAN07+jpLu3aK5HUBLuv58z7+GjaL5w/cyjR28Q==} 3767 - cpu: [arm64] 3768 - os: [darwin] 3769 - 3770 - '@libsql/darwin-x64@0.4.5': 3771 - resolution: {integrity: sha512-rZsEWj0H7oCqd5Y2pe0RzKmuQXC2OB1RbnFy4CvjeAjT6MP6mFp+Vx9mTCAUuJMhuoSVMsFPUJRpAQznl9E3Tg==} 3772 - cpu: [x64] 3773 - os: [darwin] 3774 - 3775 - '@libsql/darwin-x64@0.5.13': 3776 - resolution: {integrity: sha512-kzglniv1difkq8opusSXM7u9H0WoEPeKxw0ixIfcGfvlCVMJ+t9UNtXmyNHW68ljdllje6a4C6c94iPmIYafYA==} 3575 + '@libsql/darwin-x64@0.5.20': 3576 + resolution: {integrity: sha512-19l0oEW/r2kZxDJg+w53C0kq7eFFKpeKDEjV/FAAkBfQwJoGqS4sep9u1fK1X3KzOF5rB8cVyIrQGk+6ibzUeQ==} 3777 3577 cpu: [x64] 3778 3578 os: [darwin] 3779 3579 ··· 3787 3587 '@libsql/isomorphic-ws@0.1.5': 3788 3588 resolution: {integrity: sha512-DtLWIH29onUYR00i0GlQ3UdcTRC6EP4u9w/h9LxpUZJWRMARk6dQwZ6Jkd+QdwVpuAOrdxt18v0K2uIYR3fwFg==} 3789 3589 3790 - '@libsql/linux-arm-gnueabihf@0.5.13': 3791 - resolution: {integrity: sha512-UEW+VZN2r0mFkfztKOS7cqfS8IemuekbjUXbXCwULHtusww2QNCXvM5KU9eJCNE419SZCb0qaEWYytcfka8qeA==} 3590 + '@libsql/linux-arm-gnueabihf@0.5.20': 3591 + resolution: {integrity: sha512-vfw5/R00ysWG0iMLxqV8I5mVnHwjofxuLAL9i6wwdexIIXusG1ExSIOP8/W6xvjPXetgzEVRo4A7zr1S6SGBBg==} 3792 3592 cpu: [arm] 3793 3593 os: [linux] 3794 3594 3795 - '@libsql/linux-arm-musleabihf@0.5.13': 3796 - resolution: {integrity: sha512-NMDgLqryYBv4Sr3WoO/m++XDjR5KLlw9r/JK4Ym6A1XBv2bxQQNhH0Lxx3bjLW8qqhBD4+0xfms4d2cOlexPyA==} 3595 + '@libsql/linux-arm-musleabihf@0.5.20': 3596 + resolution: {integrity: sha512-VGqyvg0k3bg0JMMHCR0XrqBseFU9syWRxEbC0Aluipkw5Xsb+DSr9cNvMtGUbGDg2pEfkY/DDa9hTlst6K7P5w==} 3797 3597 cpu: [arm] 3798 3598 os: [linux] 3799 3599 3800 - '@libsql/linux-arm64-gnu@0.4.5': 3801 - resolution: {integrity: sha512-VR09iu6KWGJ6fauCn59u/jJ9OA+/A2yQ0dr2HDN2zkRueLC6D2oGYt4gPfLZPFKf+WJpVMtIhNfd+Ru9MMaFkA==} 3600 + '@libsql/linux-arm64-gnu@0.5.20': 3601 + resolution: {integrity: sha512-Wq6oF4goWp20G/LBmI6rdFY716bb81VCzyglkkAwqMwdJeIsaC0DRvD62nx1OSbSZmZMRDobqoe2ZP8BvMvXyQ==} 3802 3602 cpu: [arm64] 3803 3603 os: [linux] 3804 3604 3805 - '@libsql/linux-arm64-gnu@0.5.13': 3806 - resolution: {integrity: sha512-/wCxVdrwl1ee6D6LEjwl+w4SxuLm5UL9Kb1LD5n0bBGs0q+49ChdPPh7tp175iRgkcrTgl23emymvt1yj3KxVQ==} 3807 - cpu: [arm64] 3808 - os: [linux] 3809 - 3810 - '@libsql/linux-arm64-musl@0.4.5': 3811 - resolution: {integrity: sha512-74hvD5ej4rBshhxFGNYU16a3m8B/NjIPvhlZ/flG1Oeydfo6AuUXSSNFi+H5+zi9/uWuzyz5TLVeQcraoUV10A==} 3812 - cpu: [arm64] 3813 - os: [linux] 3814 - 3815 - '@libsql/linux-arm64-musl@0.5.13': 3816 - resolution: {integrity: sha512-xnVAbZIanUgX57XqeI5sNaDnVilp0Di5syCLSEo+bRyBobe/1IAeehNZpyVbCy91U2N6rH1C/mZU7jicVI9x+A==} 3605 + '@libsql/linux-arm64-musl@0.5.20': 3606 + resolution: {integrity: sha512-Xb112/q3/Z6lKKhwJgR2QVRYtRQblEB69VbStIVjKKw5RZv+r77ZSOHfsR3RHL+R66VN431+DLJBV0+B+AImQw==} 3817 3607 cpu: [arm64] 3818 3608 os: [linux] 3819 3609 3820 - '@libsql/linux-x64-gnu@0.4.5': 3821 - resolution: {integrity: sha512-gb5WObGO3+rbuG8h9font1N02iF+zgYAgY0wNa8BNiZ5A9UolZKFxiqGFS7eHaAYfemHJKKTT+aAt3X2p5TibA==} 3822 - cpu: [x64] 3823 - os: [linux] 3824 - 3825 - '@libsql/linux-x64-gnu@0.5.13': 3826 - resolution: {integrity: sha512-/mfMRxcQAI9f8t7tU3QZyh25lXgXKzgin9B9TOSnchD73PWtsVhlyfA6qOCfjQl5kr4sHscdXD5Yb3KIoUgrpQ==} 3827 - cpu: [x64] 3828 - os: [linux] 3829 - 3830 - '@libsql/linux-x64-musl@0.4.5': 3831 - resolution: {integrity: sha512-JfyE6OVC5X4Nr4cFF77VhB1o+hBRxAqYT9YdeqnWdAQSYc/ASi5HnRALLAQEsGacFPZZ32pixfraQmPE3iJFfw==} 3610 + '@libsql/linux-x64-gnu@0.5.20': 3611 + resolution: {integrity: sha512-fHUaOYx7cVqbqPLqOIArfPsuWnu+jk9ETR0gt/8rH1J6pW5qhdDWn3B35Hk/ZmzNacBFSWZnHxxhWnZMWYVnVA==} 3832 3612 cpu: [x64] 3833 3613 os: [linux] 3834 3614 3835 - '@libsql/linux-x64-musl@0.5.13': 3836 - resolution: {integrity: sha512-rdefPTpQCVwUjIQYbDLMv3qpd5MdrT0IeD0UZPGqhT9AWU8nJSQoj2lfyIDAWEz7PPOVCY4jHuEn7FS2sw9kRA==} 3615 + '@libsql/linux-x64-musl@0.5.20': 3616 + resolution: {integrity: sha512-EpT1Va1L/y2w0Sj75lxRmaTyX/MD32eKpZiz++3mrE2zRTYAURo9GEbglvSC6Y5aRnLcHPx6XmR25wigRb8WZg==} 3837 3617 cpu: [x64] 3838 3618 os: [linux] 3839 3619 3840 - '@libsql/win32-x64-msvc@0.4.5': 3841 - resolution: {integrity: sha512-57GGurNJhOhq3XIopLdGnCoQ4kQAcmbmzzFoC4tpvDE/KSbwZ/13zqJWhQA41nMGk/PKM1XKfKmbIybKx1+eqA==} 3842 - cpu: [x64] 3843 - os: [win32] 3844 - 3845 - '@libsql/win32-x64-msvc@0.5.13': 3846 - resolution: {integrity: sha512-aNcmDrD1Ws+dNZIv9ECbxBQumqB9MlSVEykwfXJpqv/593nABb8Ttg5nAGUPtnADyaGDTrGvPPP81d/KsKho4Q==} 3620 + '@libsql/win32-x64-msvc@0.5.20': 3621 + resolution: {integrity: sha512-3/G5/SZWXmOCaNwEwDdiXEpjeY7NGx1khPjON1yi3BViKrb2TJiiHHn6zpCN7+ZWNibQFZylkETSTURRlealNA==} 3847 3622 cpu: [x64] 3848 3623 os: [win32] 3849 3624 ··· 7180 6955 bcp-47@2.1.0: 7181 6956 resolution: {integrity: sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w==} 7182 6957 7183 - better-sqlite3@11.4.0: 7184 - resolution: {integrity: sha512-B7C9y2aSvtTwDJIz34iUxMjQWmbAYFmpq0Rwf9weYTtx6jUYsUKVt5ePPYlGyLVBoySppPa41PBrzl1ipMhG7A==} 7185 - 7186 6958 better-sqlite3@11.7.0: 7187 6959 resolution: {integrity: sha512-mXpa5jnIKKHeoGzBrUJrc65cXFKcILGZpU3FXR0pradUEm9MA7UZz02qfEejaMcm9iXrSOCenwwYMJ/tZ1y5Ig==} 7188 6960 ··· 7551 7323 resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==} 7552 7324 engines: {node: '>=6.6.0'} 7553 7325 7554 - cookie@0.6.0: 7555 - resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} 7556 - engines: {node: '>= 0.6'} 7557 - 7558 7326 cookie@0.7.2: 7559 7327 resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} 7560 7328 engines: {node: '>= 0.6'} ··· 7864 7632 resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} 7865 7633 engines: {node: '>=12'} 7866 7634 7867 - drizzle-kit@0.26.2: 7868 - resolution: {integrity: sha512-cMq8omEKywjIy5KcqUo6LvEFxkl8/zYHsgYjFVXjmPWWtuW4blcz+YW9+oIhoaALgs2ebRjzXwsJgN9i6P49Dw==} 7635 + drizzle-kit@0.31.4: 7636 + resolution: {integrity: sha512-tCPWVZWZqWVx2XUsVpJRnH9Mx0ClVOf5YUHerZ5so1OKSlqww4zy1R5ksEdGRcO3tM3zj0PYN6V48TbQCL1RfA==} 7869 7637 hasBin: true 7870 7638 7871 - drizzle-orm@0.35.3: 7872 - resolution: {integrity: sha512-Uv6N+b36x4BaZlxc96e+ag7RnMapBLGhc4SSi2F7RDwqYJipWjaU/P68RUp1FbW9r+mxoDp8nMz2Eece8PJxfA==} 7639 + drizzle-orm@0.44.4: 7640 + resolution: {integrity: sha512-ZyzKFpTC/Ut3fIqc2c0dPZ6nhchQXriTsqTNs4ayRgl6sZcFlMs9QZKPSHXK4bdOf41GHGWf+FrpcDDYwW+W6Q==} 7873 7641 peerDependencies: 7874 7642 '@aws-sdk/client-rds-data': '>=3' 7875 - '@cloudflare/workers-types': '>=3' 7876 - '@electric-sql/pglite': '>=0.1.1' 7643 + '@cloudflare/workers-types': '>=4' 7644 + '@electric-sql/pglite': '>=0.2.0' 7877 7645 '@libsql/client': '>=0.10.0' 7878 7646 '@libsql/client-wasm': '>=0.10.0' 7879 - '@neondatabase/serverless': '>=0.1' 7647 + '@neondatabase/serverless': '>=0.10.0' 7880 7648 '@op-engineering/op-sqlite': '>=2' 7881 7649 '@opentelemetry/api': ^1.4.1 7882 - '@planetscale/database': '>=1' 7650 + '@planetscale/database': '>=1.13' 7883 7651 '@prisma/client': '*' 7884 7652 '@tidbcloud/serverless': '*' 7885 7653 '@types/better-sqlite3': '*' 7886 7654 '@types/pg': '*' 7887 - '@types/react': '>=18' 7888 7655 '@types/sql.js': '*' 7656 + '@upstash/redis': '>=1.34.7' 7889 7657 '@vercel/postgres': '>=0.8.0' 7890 7658 '@xata.io/client': '*' 7891 7659 better-sqlite3: '>=7' 7892 7660 bun-types: '*' 7893 - expo-sqlite: '>=13.2.0' 7661 + expo-sqlite: '>=14.0.0' 7662 + gel: '>=2' 7894 7663 knex: '*' 7895 7664 kysely: '*' 7896 7665 mysql2: '>=2' 7897 7666 pg: '>=8' 7898 7667 postgres: '>=3' 7899 7668 prisma: '*' 7900 - react: '>=18' 7901 7669 sql.js: '>=1' 7902 7670 sqlite3: '>=5' 7903 7671 peerDependenciesMeta: ··· 7909 7677 optional: true 7910 7678 '@libsql/client': 7911 7679 optional: true 7680 + '@libsql/client-wasm': 7681 + optional: true 7912 7682 '@neondatabase/serverless': 7913 7683 optional: true 7914 7684 '@op-engineering/op-sqlite': ··· 7925 7695 optional: true 7926 7696 '@types/pg': 7927 7697 optional: true 7928 - '@types/react': 7929 - optional: true 7930 7698 '@types/sql.js': 7699 + optional: true 7700 + '@upstash/redis': 7931 7701 optional: true 7932 7702 '@vercel/postgres': 7933 7703 optional: true ··· 7939 7709 optional: true 7940 7710 expo-sqlite: 7941 7711 optional: true 7712 + gel: 7713 + optional: true 7942 7714 knex: 7943 7715 optional: true 7944 7716 kysely: ··· 7950 7722 postgres: 7951 7723 optional: true 7952 7724 prisma: 7953 - optional: true 7954 - react: 7955 7725 optional: true 7956 7726 sql.js: 7957 7727 optional: true ··· 8074 7844 engines: {node: '>=12'} 8075 7845 hasBin: true 8076 7846 8077 - esbuild@0.19.12: 8078 - resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==} 8079 - engines: {node: '>=12'} 8080 - hasBin: true 8081 - 8082 7847 esbuild@0.21.5: 8083 7848 resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 8084 7849 engines: {node: '>=12'} ··· 9071 8836 leac@0.6.0: 9072 8837 resolution: {integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==} 9073 8838 9074 - libsql@0.4.5: 9075 - resolution: {integrity: sha512-sorTJV6PNt94Wap27Sai5gtVLIea4Otb2LUiAUyr3p6BPOScGMKGt5F1b5X/XgkNtcsDKeX5qfeBDj+PdShclQ==} 9076 - cpu: [x64, arm64, wasm32] 9077 - os: [darwin, linux, win32] 9078 - 9079 - libsql@0.5.13: 9080 - resolution: {integrity: sha512-5Bwoa/CqzgkTwySgqHA5TsaUDRrdLIbdM4egdPcaAnqO3aC+qAgS6BwdzuZwARA5digXwiskogZ8H7Yy4XfdOg==} 8839 + libsql@0.5.20: 8840 + resolution: {integrity: sha512-hkWCsiwTbNsrKeWqPh91ZZEcLDo0+WUnFv2QzITD33F7Er9KOlr7N2SGfNjAbnkciN+iPJ7g108Jkno1JFmzTw==} 9081 8841 cpu: [x64, arm64, wasm32, arm] 9082 8842 os: [darwin, linux, win32] 9083 8843 ··· 9797 9557 engines: {node: ^18 || >=20} 9798 9558 hasBin: true 9799 9559 9800 - napi-build-utils@1.0.2: 9801 - resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} 9802 - 9803 9560 napi-build-utils@2.0.0: 9804 9561 resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==} 9805 9562 ··· 9885 9642 no-case@2.3.2: 9886 9643 resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==} 9887 9644 9888 - node-abi@3.54.0: 9889 - resolution: {integrity: sha512-p7eGEiQil0YUV3ItH4/tBb781L5impVmmx2E9FRKF7d18XXzp4PGT2tdYMFY6wQqgxD0IwNZOiSJ0/K0fSi/OA==} 9890 - engines: {node: '>=10'} 9891 - 9892 9645 node-abi@3.75.0: 9893 9646 resolution: {integrity: sha512-OhYaY5sDsIka7H7AtijtI9jwGYLyl29eQn/W623DiN/MIv5sUqc4g7BIDThX+gb7di9f6xK02nkp8sdfFWZLTg==} 9894 9647 engines: {node: '>=10'} ··· 9917 9670 resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} 9918 9671 engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 9919 9672 9920 - node-gyp-build@4.6.1: 9921 - resolution: {integrity: sha512-24vnklJmyRS8ViBNI8KbtK/r/DmXQMRiOMXTNz2nrTnAYUwjmEEbnnpB/+kt+yWRv73bPsSPRFddrcIbAxSiMQ==} 9922 - hasBin: true 9923 - 9924 9673 node-gyp-build@4.8.4: 9925 9674 resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==} 9926 9675 hasBin: true ··· 9987 9736 optional: true 9988 9737 react-router-dom: 9989 9738 optional: true 9990 - 9991 - oauth4webapi@2.10.4: 9992 - resolution: {integrity: sha512-DSoj8QoChzOCQlJkRmYxAJCIpnXFW32R0Uq7avyghIeB6iJq0XAblOD7pcq3mx4WEBDwMuKr0Y1qveCBleG2Xw==} 9993 9739 9994 9740 oauth4webapi@3.5.3: 9995 9741 resolution: {integrity: sha512-2bnHosmBLAQpXNBLOvaJMyMkr4Yya5ohE5Q9jqyxiN+aa7GFCzvDN1RRRMrp0NkfqRR2MTaQNkcSUCCjILD9oQ==} ··· 10359 10105 postgres-range@1.1.4: 10360 10106 resolution: {integrity: sha512-i/hbxIE9803Alj/6ytL7UHQxRvZkI9O4Sy+J3HGc4F4oo/2eQAjTSNJ0bfxyse3bH0nuVesCk+3IRLaMtG3H6w==} 10361 10107 10362 - preact-render-to-string@5.2.3: 10363 - resolution: {integrity: sha512-aPDxUn5o3GhWdtJtW0svRC2SS/l8D9MAgo2+AWml+BhDImb27ALf04Q2d+AHqUUOc6RdSXFIBVa2gxzgMKgtZA==} 10364 - peerDependencies: 10365 - preact: '>=10' 10366 - 10367 10108 preact-render-to-string@6.5.11: 10368 10109 resolution: {integrity: sha512-ubnauqoGczeGISiOh6RjX0/cdaF8v/oDXIjO85XALCQjwQP+SB4RDXXtvZ6yTYSjG+PC1QRP2AhPgCEsM2EvUw==} 10369 10110 peerDependencies: 10370 10111 preact: '>=10' 10371 - 10372 - preact@10.11.3: 10373 - resolution: {integrity: sha512-eY93IVpod/zG3uMF22Unl8h9KkrcKIRs2EGar8hwLZZDU1lkjph303V9HZBwufh2s736U6VXuhD109LYqPoffg==} 10374 10112 10375 10113 preact@10.24.3: 10376 10114 resolution: {integrity: sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==} 10377 10115 10378 - prebuild-install@7.1.1: 10379 - resolution: {integrity: sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==} 10380 - engines: {node: '>=10'} 10381 - hasBin: true 10382 - 10383 10116 prebuild-install@7.1.3: 10384 10117 resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==} 10385 10118 engines: {node: '>=10'} ··· 10399 10132 resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==} 10400 10133 engines: {node: '>=14'} 10401 10134 hasBin: true 10402 - 10403 - pretty-format@3.8.0: 10404 - resolution: {integrity: sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew==} 10405 10135 10406 10136 pretty-ms@9.0.0: 10407 10137 resolution: {integrity: sha512-E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng==} ··· 10459 10189 psl@1.15.0: 10460 10190 resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==} 10461 10191 10462 - pump@3.0.0: 10463 - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} 10464 - 10465 10192 pump@3.0.3: 10466 10193 resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==} 10467 10194 ··· 11336 11063 resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==} 11337 11064 engines: {node: '>=6'} 11338 11065 11339 - tar-fs@2.1.1: 11340 - resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} 11341 - 11342 11066 tar-fs@2.1.3: 11343 11067 resolution: {integrity: sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==} 11344 11068 ··· 11872 11596 peerDependencies: 11873 11597 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 11874 11598 11875 - utf-8-validate@6.0.3: 11876 - resolution: {integrity: sha512-uIuGf9TWQ/y+0Lp+KGZCMuJWc3N9BHA+l/UmHd/oUHwJJDeysyTRxNQVkbzsIWfGFbRe3OcgML/i0mvVRPOyDA==} 11877 - engines: {node: '>=6.14.2'} 11878 - 11879 11599 utf-8-validate@6.0.5: 11880 11600 resolution: {integrity: sha512-EYZR+OpIXp9Y1eG1iueg8KRsY8TuT8VNgnanZ0uA3STqhHQTLwbl+WX76/9X5OY12yQubymBpaBSmMPkSTQcKA==} 11881 11601 engines: {node: '>=6.14.2'} ··· 12584 12304 dependencies: 12585 12305 yaml: 2.6.1 12586 12306 12587 - '@auth/core@0.34.1': 12588 - dependencies: 12589 - '@panva/hkdf': 1.2.1 12590 - '@types/cookie': 0.6.0 12591 - cookie: 0.6.0 12592 - jose: 5.9.4 12593 - oauth4webapi: 2.10.4 12594 - preact: 10.11.3 12595 - preact-render-to-string: 5.2.3(preact@10.11.3) 12596 - 12597 - '@auth/core@0.39.1': 12598 - dependencies: 12599 - '@panva/hkdf': 1.2.1 12600 - jose: 6.0.11 12601 - oauth4webapi: 3.5.3 12602 - preact: 10.24.3 12603 - preact-render-to-string: 6.5.11(preact@10.24.3) 12604 - 12605 12307 '@auth/core@0.40.0': 12606 12308 dependencies: 12607 12309 '@panva/hkdf': 1.2.1 ··· 12613 12315 '@auth/drizzle-adapter@1.10.0': 12614 12316 dependencies: 12615 12317 '@auth/core': 0.40.0 12616 - transitivePeerDependencies: 12617 - - '@simplewebauthn/browser' 12618 - - '@simplewebauthn/server' 12619 - - nodemailer 12620 - 12621 - '@auth/drizzle-adapter@1.9.1': 12622 - dependencies: 12623 - '@auth/core': 0.39.1 12624 12318 transitivePeerDependencies: 12625 12319 - '@simplewebauthn/browser' 12626 12320 - '@simplewebauthn/server' ··· 13502 13196 react: 19.1.1 13503 13197 tslib: 2.8.1 13504 13198 13505 - '@drizzle-team/brocli@0.10.1': {} 13199 + '@drizzle-team/brocli@0.10.2': {} 13506 13200 13507 13201 '@emmetio/abbreviation@2.3.3': 13508 13202 dependencies: ··· 13662 13356 transitivePeerDependencies: 13663 13357 - supports-color 13664 13358 13665 - '@esbuild/aix-ppc64@0.19.12': 13666 - optional: true 13667 - 13668 13359 '@esbuild/aix-ppc64@0.21.5': 13669 13360 optional: true 13670 13361 ··· 13675 13366 optional: true 13676 13367 13677 13368 '@esbuild/android-arm64@0.18.20': 13678 - optional: true 13679 - 13680 - '@esbuild/android-arm64@0.19.12': 13681 13369 optional: true 13682 13370 13683 13371 '@esbuild/android-arm64@0.21.5': ··· 13692 13380 '@esbuild/android-arm@0.18.20': 13693 13381 optional: true 13694 13382 13695 - '@esbuild/android-arm@0.19.12': 13696 - optional: true 13697 - 13698 13383 '@esbuild/android-arm@0.21.5': 13699 13384 optional: true 13700 13385 ··· 13705 13390 optional: true 13706 13391 13707 13392 '@esbuild/android-x64@0.18.20': 13708 - optional: true 13709 - 13710 - '@esbuild/android-x64@0.19.12': 13711 13393 optional: true 13712 13394 13713 13395 '@esbuild/android-x64@0.21.5': ··· 13722 13404 '@esbuild/darwin-arm64@0.18.20': 13723 13405 optional: true 13724 13406 13725 - '@esbuild/darwin-arm64@0.19.12': 13726 - optional: true 13727 - 13728 13407 '@esbuild/darwin-arm64@0.21.5': 13729 13408 optional: true 13730 13409 ··· 13735 13414 optional: true 13736 13415 13737 13416 '@esbuild/darwin-x64@0.18.20': 13738 - optional: true 13739 - 13740 - '@esbuild/darwin-x64@0.19.12': 13741 13417 optional: true 13742 13418 13743 13419 '@esbuild/darwin-x64@0.21.5': ··· 13752 13428 '@esbuild/freebsd-arm64@0.18.20': 13753 13429 optional: true 13754 13430 13755 - '@esbuild/freebsd-arm64@0.19.12': 13756 - optional: true 13757 - 13758 13431 '@esbuild/freebsd-arm64@0.21.5': 13759 13432 optional: true 13760 13433 ··· 13765 13438 optional: true 13766 13439 13767 13440 '@esbuild/freebsd-x64@0.18.20': 13768 - optional: true 13769 - 13770 - '@esbuild/freebsd-x64@0.19.12': 13771 13441 optional: true 13772 13442 13773 13443 '@esbuild/freebsd-x64@0.21.5': ··· 13782 13452 '@esbuild/linux-arm64@0.18.20': 13783 13453 optional: true 13784 13454 13785 - '@esbuild/linux-arm64@0.19.12': 13786 - optional: true 13787 - 13788 13455 '@esbuild/linux-arm64@0.21.5': 13789 13456 optional: true 13790 13457 ··· 13795 13462 optional: true 13796 13463 13797 13464 '@esbuild/linux-arm@0.18.20': 13798 - optional: true 13799 - 13800 - '@esbuild/linux-arm@0.19.12': 13801 13465 optional: true 13802 13466 13803 13467 '@esbuild/linux-arm@0.21.5': ··· 13812 13476 '@esbuild/linux-ia32@0.18.20': 13813 13477 optional: true 13814 13478 13815 - '@esbuild/linux-ia32@0.19.12': 13816 - optional: true 13817 - 13818 13479 '@esbuild/linux-ia32@0.21.5': 13819 13480 optional: true 13820 13481 ··· 13825 13486 optional: true 13826 13487 13827 13488 '@esbuild/linux-loong64@0.18.20': 13828 - optional: true 13829 - 13830 - '@esbuild/linux-loong64@0.19.12': 13831 13489 optional: true 13832 13490 13833 13491 '@esbuild/linux-loong64@0.21.5': ··· 13842 13500 '@esbuild/linux-mips64el@0.18.20': 13843 13501 optional: true 13844 13502 13845 - '@esbuild/linux-mips64el@0.19.12': 13846 - optional: true 13847 - 13848 13503 '@esbuild/linux-mips64el@0.21.5': 13849 13504 optional: true 13850 13505 ··· 13855 13510 optional: true 13856 13511 13857 13512 '@esbuild/linux-ppc64@0.18.20': 13858 - optional: true 13859 - 13860 - '@esbuild/linux-ppc64@0.19.12': 13861 13513 optional: true 13862 13514 13863 13515 '@esbuild/linux-ppc64@0.21.5': ··· 13872 13524 '@esbuild/linux-riscv64@0.18.20': 13873 13525 optional: true 13874 13526 13875 - '@esbuild/linux-riscv64@0.19.12': 13876 - optional: true 13877 - 13878 13527 '@esbuild/linux-riscv64@0.21.5': 13879 13528 optional: true 13880 13529 ··· 13885 13534 optional: true 13886 13535 13887 13536 '@esbuild/linux-s390x@0.18.20': 13888 - optional: true 13889 - 13890 - '@esbuild/linux-s390x@0.19.12': 13891 13537 optional: true 13892 13538 13893 13539 '@esbuild/linux-s390x@0.21.5': ··· 13902 13548 '@esbuild/linux-x64@0.18.20': 13903 13549 optional: true 13904 13550 13905 - '@esbuild/linux-x64@0.19.12': 13906 - optional: true 13907 - 13908 13551 '@esbuild/linux-x64@0.21.5': 13909 13552 optional: true 13910 13553 ··· 13921 13564 optional: true 13922 13565 13923 13566 '@esbuild/netbsd-x64@0.18.20': 13924 - optional: true 13925 - 13926 - '@esbuild/netbsd-x64@0.19.12': 13927 13567 optional: true 13928 13568 13929 13569 '@esbuild/netbsd-x64@0.21.5': ··· 13944 13584 '@esbuild/openbsd-x64@0.18.20': 13945 13585 optional: true 13946 13586 13947 - '@esbuild/openbsd-x64@0.19.12': 13948 - optional: true 13949 - 13950 13587 '@esbuild/openbsd-x64@0.21.5': 13951 13588 optional: true 13952 13589 ··· 13957 13594 optional: true 13958 13595 13959 13596 '@esbuild/sunos-x64@0.18.20': 13960 - optional: true 13961 - 13962 - '@esbuild/sunos-x64@0.19.12': 13963 13597 optional: true 13964 13598 13965 13599 '@esbuild/sunos-x64@0.21.5': ··· 13974 13608 '@esbuild/win32-arm64@0.18.20': 13975 13609 optional: true 13976 13610 13977 - '@esbuild/win32-arm64@0.19.12': 13978 - optional: true 13979 - 13980 13611 '@esbuild/win32-arm64@0.21.5': 13981 13612 optional: true 13982 13613 ··· 13989 13620 '@esbuild/win32-ia32@0.18.20': 13990 13621 optional: true 13991 13622 13992 - '@esbuild/win32-ia32@0.19.12': 13993 - optional: true 13994 - 13995 13623 '@esbuild/win32-ia32@0.21.5': 13996 13624 optional: true 13997 13625 ··· 14002 13630 optional: true 14003 13631 14004 13632 '@esbuild/win32-x64@0.18.20': 14005 - optional: true 14006 - 14007 - '@esbuild/win32-x64@0.19.12': 14008 13633 optional: true 14009 13634 14010 13635 '@esbuild/win32-x64@0.21.5': ··· 14417 14042 dependencies: 14418 14043 '@libsql/core': 0.14.0 14419 14044 js-base64: 3.7.7 14420 - 14421 - '@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)': 14422 - dependencies: 14423 - '@libsql/core': 0.14.0 14424 - '@libsql/hrana-client': 0.7.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) 14425 - js-base64: 3.7.7 14426 - libsql: 0.4.5 14427 - promise-limit: 2.7.0 14428 - transitivePeerDependencies: 14429 - - bufferutil 14430 - - utf-8-validate 14431 - 14432 - '@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.5)': 14433 - dependencies: 14434 - '@libsql/core': 0.14.0 14435 - '@libsql/hrana-client': 0.7.0(bufferutil@4.0.8)(utf-8-validate@6.0.5) 14436 - js-base64: 3.7.7 14437 - libsql: 0.4.5 14438 - promise-limit: 2.7.0 14439 - transitivePeerDependencies: 14440 - - bufferutil 14441 - - utf-8-validate 14045 + optional: true 14442 14046 14443 - '@libsql/client@0.15.9(bufferutil@4.0.8)(utf-8-validate@6.0.5)': 14047 + '@libsql/client@0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5)': 14444 14048 dependencies: 14445 - '@libsql/core': 0.15.9 14049 + '@libsql/core': 0.15.14 14446 14050 '@libsql/hrana-client': 0.7.0(bufferutil@4.0.8)(utf-8-validate@6.0.5) 14447 14051 js-base64: 3.7.7 14448 - libsql: 0.5.13 14052 + libsql: 0.5.20 14449 14053 promise-limit: 2.7.0 14450 14054 transitivePeerDependencies: 14451 14055 - bufferutil ··· 14454 14058 '@libsql/core@0.14.0': 14455 14059 dependencies: 14456 14060 js-base64: 3.7.7 14061 + optional: true 14457 14062 14458 - '@libsql/core@0.15.9': 14063 + '@libsql/core@0.15.14': 14459 14064 dependencies: 14460 14065 js-base64: 3.7.7 14461 14066 14462 - '@libsql/darwin-arm64@0.4.5': 14463 - optional: true 14464 - 14465 - '@libsql/darwin-arm64@0.5.13': 14067 + '@libsql/darwin-arm64@0.5.20': 14466 14068 optional: true 14467 14069 14468 - '@libsql/darwin-x64@0.4.5': 14070 + '@libsql/darwin-x64@0.5.20': 14469 14071 optional: true 14470 14072 14471 - '@libsql/darwin-x64@0.5.13': 14472 - optional: true 14473 - 14474 - '@libsql/hrana-client@0.7.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)': 14475 - dependencies: 14476 - '@libsql/isomorphic-fetch': 0.3.1 14477 - '@libsql/isomorphic-ws': 0.1.5(bufferutil@4.0.8)(utf-8-validate@6.0.3) 14478 - js-base64: 3.7.7 14479 - node-fetch: 3.3.2 14480 - transitivePeerDependencies: 14481 - - bufferutil 14482 - - utf-8-validate 14483 - 14484 14073 '@libsql/hrana-client@0.7.0(bufferutil@4.0.8)(utf-8-validate@6.0.5)': 14485 14074 dependencies: 14486 14075 '@libsql/isomorphic-fetch': 0.3.1 ··· 14493 14082 14494 14083 '@libsql/isomorphic-fetch@0.3.1': {} 14495 14084 14496 - '@libsql/isomorphic-ws@0.1.5(bufferutil@4.0.8)(utf-8-validate@6.0.3)': 14497 - dependencies: 14498 - '@types/ws': 8.18.1 14499 - ws: 8.18.3(bufferutil@4.0.8)(utf-8-validate@6.0.3) 14500 - transitivePeerDependencies: 14501 - - bufferutil 14502 - - utf-8-validate 14503 - 14504 14085 '@libsql/isomorphic-ws@0.1.5(bufferutil@4.0.8)(utf-8-validate@6.0.5)': 14505 14086 dependencies: 14506 14087 '@types/ws': 8.18.1 ··· 14509 14090 - bufferutil 14510 14091 - utf-8-validate 14511 14092 14512 - '@libsql/linux-arm-gnueabihf@0.5.13': 14513 - optional: true 14514 - 14515 - '@libsql/linux-arm-musleabihf@0.5.13': 14516 - optional: true 14517 - 14518 - '@libsql/linux-arm64-gnu@0.4.5': 14519 - optional: true 14520 - 14521 - '@libsql/linux-arm64-gnu@0.5.13': 14522 - optional: true 14523 - 14524 - '@libsql/linux-arm64-musl@0.4.5': 14525 - optional: true 14526 - 14527 - '@libsql/linux-arm64-musl@0.5.13': 14093 + '@libsql/linux-arm-gnueabihf@0.5.20': 14528 14094 optional: true 14529 14095 14530 - '@libsql/linux-x64-gnu@0.4.5': 14096 + '@libsql/linux-arm-musleabihf@0.5.20': 14531 14097 optional: true 14532 14098 14533 - '@libsql/linux-x64-gnu@0.5.13': 14099 + '@libsql/linux-arm64-gnu@0.5.20': 14534 14100 optional: true 14535 14101 14536 - '@libsql/linux-x64-musl@0.4.5': 14102 + '@libsql/linux-arm64-musl@0.5.20': 14537 14103 optional: true 14538 14104 14539 - '@libsql/linux-x64-musl@0.5.13': 14105 + '@libsql/linux-x64-gnu@0.5.20': 14540 14106 optional: true 14541 14107 14542 - '@libsql/win32-x64-msvc@0.4.5': 14108 + '@libsql/linux-x64-musl@0.5.20': 14543 14109 optional: true 14544 14110 14545 - '@libsql/win32-x64-msvc@0.5.13': 14111 + '@libsql/win32-x64-msvc@0.5.20': 14546 14112 optional: true 14547 14113 14548 14114 '@mapbox/hast-util-table-cell-style@0.2.0': ··· 18326 17892 is-alphanumerical: 2.0.1 18327 17893 is-decimal: 2.0.1 18328 17894 18329 - better-sqlite3@11.4.0: 18330 - dependencies: 18331 - bindings: 1.5.0 18332 - prebuild-install: 7.1.1 18333 - 18334 17895 better-sqlite3@11.7.0: 18335 17896 dependencies: 18336 17897 bindings: 1.5.0 ··· 18344 17905 bindings@1.5.0: 18345 17906 dependencies: 18346 17907 file-uri-to-path: 1.0.0 17908 + optional: true 18347 17909 18348 17910 bl@4.1.0: 18349 17911 dependencies: ··· 18437 17999 bufferutil@4.0.8: 18438 18000 dependencies: 18439 18001 node-gyp-build: 4.8.4 18002 + optional: true 18440 18003 18441 18004 builtins@5.0.1: 18442 18005 dependencies: ··· 18564 18127 dependencies: 18565 18128 readdirp: 4.1.2 18566 18129 18567 - chownr@1.1.4: {} 18130 + chownr@1.1.4: 18131 + optional: true 18568 18132 18569 18133 chownr@3.0.0: {} 18570 18134 ··· 18725 18289 cookie-es@1.2.2: {} 18726 18290 18727 18291 cookie-signature@1.2.2: {} 18728 - 18729 - cookie@0.6.0: {} 18730 18292 18731 18293 cookie@0.7.2: {} 18732 18294 ··· 18892 18454 decompress-response@6.0.0: 18893 18455 dependencies: 18894 18456 mimic-response: 3.1.0 18457 + optional: true 18895 18458 18896 18459 deep-extend@0.6.0: {} 18897 18460 ··· 18993 18556 18994 18557 dotenv@16.3.1: {} 18995 18558 18996 - drizzle-kit@0.26.2: 18559 + drizzle-kit@0.31.4: 18997 18560 dependencies: 18998 - '@drizzle-team/brocli': 0.10.1 18561 + '@drizzle-team/brocli': 0.10.2 18999 18562 '@esbuild-kit/esm-loader': 2.6.5 19000 - esbuild: 0.19.12 19001 - esbuild-register: 3.5.0(esbuild@0.19.12) 18563 + esbuild: 0.25.5 18564 + esbuild-register: 3.5.0(esbuild@0.25.5) 19002 18565 transitivePeerDependencies: 19003 18566 - supports-color 19004 18567 19005 - drizzle-orm@0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.1.10)(better-sqlite3@11.4.0)(bun-types@1.2.20(@types/react@19.1.10))(react@19.1.1): 19006 - dependencies: 19007 - '@libsql/client-wasm': 0.14.0 18568 + drizzle-orm@0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(better-sqlite3@11.7.0)(bun-types@1.2.20(@types/react@19.1.10)): 19008 18569 optionalDependencies: 19009 18570 '@cloudflare/workers-types': 4.20250303.0 19010 - '@libsql/client': 0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) 19011 - '@opentelemetry/api': 1.9.0 19012 - '@types/pg': 8.11.10 19013 - '@types/react': 19.1.10 19014 - better-sqlite3: 11.4.0 19015 - bun-types: 1.2.20(@types/react@19.1.10) 19016 - react: 19.1.1 19017 - 19018 - drizzle-orm@0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.1.10)(better-sqlite3@11.7.0)(bun-types@1.2.20(@types/react@19.1.10))(react@19.1.1): 19019 - dependencies: 18571 + '@libsql/client': 0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5) 19020 18572 '@libsql/client-wasm': 0.14.0 19021 - optionalDependencies: 19022 - '@cloudflare/workers-types': 4.20250303.0 19023 - '@libsql/client': 0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.5) 19024 18573 '@opentelemetry/api': 1.9.0 19025 18574 '@types/pg': 8.11.10 19026 - '@types/react': 19.1.10 19027 18575 better-sqlite3: 11.7.0 19028 18576 bun-types: 1.2.20(@types/react@19.1.10) 19029 - react: 19.1.1 19030 18577 19031 - drizzle-zod@0.5.1(drizzle-orm@0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.1.10)(better-sqlite3@11.4.0)(bun-types@1.2.20(@types/react@19.1.10))(react@19.1.1))(zod@3.24.1): 18578 + drizzle-zod@0.5.1(drizzle-orm@0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(better-sqlite3@11.7.0)(bun-types@1.2.20(@types/react@19.1.10)))(zod@3.24.1): 19032 18579 dependencies: 19033 - drizzle-orm: 0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.1.10)(better-sqlite3@11.4.0)(bun-types@1.2.20(@types/react@19.1.10))(react@19.1.1) 18580 + drizzle-orm: 0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.14(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(better-sqlite3@11.7.0)(bun-types@1.2.20(@types/react@19.1.10)) 19034 18581 zod: 3.24.1 19035 18582 19036 18583 dset@3.1.4: {} ··· 19087 18634 encoding@0.1.13: 19088 18635 dependencies: 19089 18636 iconv-lite: 0.6.3 18637 + optional: true 19090 18638 19091 18639 end-of-stream@1.4.4: 19092 18640 dependencies: ··· 19155 18703 esast-util-from-estree: 2.0.0 19156 18704 vfile-message: 4.0.2 19157 18705 19158 - esbuild-register@3.5.0(esbuild@0.19.12): 18706 + esbuild-register@3.5.0(esbuild@0.25.5): 19159 18707 dependencies: 19160 18708 debug: 4.4.1 19161 - esbuild: 0.19.12 18709 + esbuild: 0.25.5 19162 18710 transitivePeerDependencies: 19163 18711 - supports-color 19164 18712 ··· 19187 18735 '@esbuild/win32-ia32': 0.18.20 19188 18736 '@esbuild/win32-x64': 0.18.20 19189 18737 19190 - esbuild@0.19.12: 19191 - optionalDependencies: 19192 - '@esbuild/aix-ppc64': 0.19.12 19193 - '@esbuild/android-arm': 0.19.12 19194 - '@esbuild/android-arm64': 0.19.12 19195 - '@esbuild/android-x64': 0.19.12 19196 - '@esbuild/darwin-arm64': 0.19.12 19197 - '@esbuild/darwin-x64': 0.19.12 19198 - '@esbuild/freebsd-arm64': 0.19.12 19199 - '@esbuild/freebsd-x64': 0.19.12 19200 - '@esbuild/linux-arm': 0.19.12 19201 - '@esbuild/linux-arm64': 0.19.12 19202 - '@esbuild/linux-ia32': 0.19.12 19203 - '@esbuild/linux-loong64': 0.19.12 19204 - '@esbuild/linux-mips64el': 0.19.12 19205 - '@esbuild/linux-ppc64': 0.19.12 19206 - '@esbuild/linux-riscv64': 0.19.12 19207 - '@esbuild/linux-s390x': 0.19.12 19208 - '@esbuild/linux-x64': 0.19.12 19209 - '@esbuild/netbsd-x64': 0.19.12 19210 - '@esbuild/openbsd-x64': 0.19.12 19211 - '@esbuild/sunos-x64': 0.19.12 19212 - '@esbuild/win32-arm64': 0.19.12 19213 - '@esbuild/win32-ia32': 0.19.12 19214 - '@esbuild/win32-x64': 0.19.12 19215 - 19216 18738 esbuild@0.21.5: 19217 18739 optionalDependencies: 19218 18740 '@esbuild/aix-ppc64': 0.21.5 ··· 19411 18933 signal-exit: 3.0.7 19412 18934 strip-final-newline: 3.0.0 19413 18935 19414 - expand-template@2.0.3: {} 18936 + expand-template@2.0.3: 18937 + optional: true 19415 18938 19416 18939 express-rate-limit@7.5.0(express@5.1.0): 19417 18940 dependencies: ··· 19531 19054 dependencies: 19532 19055 flat-cache: 4.0.1 19533 19056 19534 - file-uri-to-path@1.0.0: {} 19057 + file-uri-to-path@1.0.0: 19058 + optional: true 19535 19059 19536 19060 fill-range@7.1.1: 19537 19061 dependencies: ··· 19613 19137 19614 19138 fresh@2.0.0: {} 19615 19139 19616 - fs-constants@1.0.0: {} 19140 + fs-constants@1.0.0: 19141 + optional: true 19617 19142 19618 19143 fs-extra@10.1.0: 19619 19144 dependencies: ··· 19704 19229 transitivePeerDependencies: 19705 19230 - supports-color 19706 19231 19707 - github-from-package@0.0.0: {} 19232 + github-from-package@0.0.0: 19233 + optional: true 19708 19234 19709 19235 github-slugger@2.0.0: {} 19710 19236 ··· 20512 20038 20513 20039 leac@0.6.0: {} 20514 20040 20515 - libsql@0.4.5: 20516 - dependencies: 20517 - '@neon-rs/load': 0.0.4 20518 - detect-libc: 2.0.2 20519 - optionalDependencies: 20520 - '@libsql/darwin-arm64': 0.4.5 20521 - '@libsql/darwin-x64': 0.4.5 20522 - '@libsql/linux-arm64-gnu': 0.4.5 20523 - '@libsql/linux-arm64-musl': 0.4.5 20524 - '@libsql/linux-x64-gnu': 0.4.5 20525 - '@libsql/linux-x64-musl': 0.4.5 20526 - '@libsql/win32-x64-msvc': 0.4.5 20527 - 20528 - libsql@0.5.13: 20041 + libsql@0.5.20: 20529 20042 dependencies: 20530 20043 '@neon-rs/load': 0.0.4 20531 20044 detect-libc: 2.0.2 20532 20045 optionalDependencies: 20533 - '@libsql/darwin-arm64': 0.5.13 20534 - '@libsql/darwin-x64': 0.5.13 20535 - '@libsql/linux-arm-gnueabihf': 0.5.13 20536 - '@libsql/linux-arm-musleabihf': 0.5.13 20537 - '@libsql/linux-arm64-gnu': 0.5.13 20538 - '@libsql/linux-arm64-musl': 0.5.13 20539 - '@libsql/linux-x64-gnu': 0.5.13 20540 - '@libsql/linux-x64-musl': 0.5.13 20541 - '@libsql/win32-x64-msvc': 0.5.13 20046 + '@libsql/darwin-arm64': 0.5.20 20047 + '@libsql/darwin-x64': 0.5.20 20048 + '@libsql/linux-arm-gnueabihf': 0.5.20 20049 + '@libsql/linux-arm-musleabihf': 0.5.20 20050 + '@libsql/linux-arm64-gnu': 0.5.20 20051 + '@libsql/linux-arm64-musl': 0.5.20 20052 + '@libsql/linux-x64-gnu': 0.5.20 20053 + '@libsql/linux-x64-musl': 0.5.20 20054 + '@libsql/win32-x64-msvc': 0.5.20 20542 20055 20543 20056 lightningcss-darwin-arm64@1.30.1: 20544 20057 optional: true ··· 21537 21050 21538 21051 mimic-function@5.0.1: {} 21539 21052 21540 - mimic-response@3.1.0: {} 21053 + mimic-response@3.1.0: 21054 + optional: true 21541 21055 21542 21056 minimatch@10.0.3: 21543 21057 dependencies: ··· 21575 21089 21576 21090 mitt@3.0.1: {} 21577 21091 21578 - mkdirp-classic@0.5.3: {} 21092 + mkdirp-classic@0.5.3: 21093 + optional: true 21579 21094 21580 21095 mkdirp@0.5.6: 21581 21096 dependencies: ··· 21656 21171 21657 21172 nanoid@5.1.5: {} 21658 21173 21659 - napi-build-utils@1.0.2: {} 21660 - 21661 21174 napi-build-utils@2.0.0: 21662 21175 optional: true 21663 21176 ··· 21726 21239 dependencies: 21727 21240 lower-case: 1.1.4 21728 21241 21729 - node-abi@3.54.0: 21730 - dependencies: 21731 - semver: 7.7.2 21732 - 21733 21242 node-abi@3.75.0: 21734 21243 dependencies: 21735 21244 semver: 7.7.2 ··· 21753 21262 fetch-blob: 3.2.0 21754 21263 formdata-polyfill: 4.0.10 21755 21264 21756 - node-gyp-build@4.6.1: {} 21757 - 21758 - node-gyp-build@4.8.4: {} 21265 + node-gyp-build@4.8.4: 21266 + optional: true 21759 21267 21760 21268 node-mock-http@1.0.0: {} 21761 21269 ··· 21806 21314 react: 19.1.1 21807 21315 optionalDependencies: 21808 21316 next: 15.4.7(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1) 21809 - 21810 - oauth4webapi@2.10.4: {} 21811 21317 21812 21318 oauth4webapi@3.5.3: {} 21813 21319 ··· 22200 21706 postgres-interval@3.0.0: {} 22201 21707 22202 21708 postgres-range@1.1.4: {} 22203 - 22204 - preact-render-to-string@5.2.3(preact@10.11.3): 22205 - dependencies: 22206 - preact: 10.11.3 22207 - pretty-format: 3.8.0 22208 21709 22209 21710 preact-render-to-string@6.5.11(preact@10.24.3): 22210 21711 dependencies: 22211 21712 preact: 10.24.3 22212 21713 22213 - preact@10.11.3: {} 22214 - 22215 21714 preact@10.24.3: {} 22216 - 22217 - prebuild-install@7.1.1: 22218 - dependencies: 22219 - detect-libc: 2.0.2 22220 - expand-template: 2.0.3 22221 - github-from-package: 0.0.0 22222 - minimist: 1.2.8 22223 - mkdirp-classic: 0.5.3 22224 - napi-build-utils: 1.0.2 22225 - node-abi: 3.54.0 22226 - pump: 3.0.0 22227 - rc: 1.2.8 22228 - simple-get: 4.0.1 22229 - tar-fs: 2.1.1 22230 - tunnel-agent: 0.6.0 22231 21715 22232 21716 prebuild-install@7.1.3: 22233 21717 dependencies: ··· 22251 21735 prettier@3.5.3: {} 22252 21736 22253 21737 prettier@3.6.2: {} 22254 - 22255 - pretty-format@3.8.0: {} 22256 21738 22257 21739 pretty-ms@9.0.0: 22258 21740 dependencies: ··· 22325 21807 psl@1.15.0: 22326 21808 dependencies: 22327 21809 punycode: 2.3.1 22328 - 22329 - pump@3.0.0: 22330 - dependencies: 22331 - end-of-stream: 1.4.4 22332 - once: 1.4.0 22333 21810 22334 21811 pump@3.0.3: 22335 21812 dependencies: ··· 23225 22702 23226 22703 signal-exit@4.1.0: {} 23227 22704 23228 - simple-concat@1.0.1: {} 22705 + simple-concat@1.0.1: 22706 + optional: true 23229 22707 23230 22708 simple-get@4.0.1: 23231 22709 dependencies: 23232 22710 decompress-response: 6.0.0 23233 22711 once: 1.4.0 23234 22712 simple-concat: 1.0.1 22713 + optional: true 23235 22714 23236 22715 simple-swizzle@0.2.2: 23237 22716 dependencies: ··· 23544 23023 23545 23024 tapable@2.2.2: {} 23546 23025 23547 - tar-fs@2.1.1: 23548 - dependencies: 23549 - chownr: 1.1.4 23550 - mkdirp-classic: 0.5.3 23551 - pump: 3.0.0 23552 - tar-stream: 2.2.0 23553 - 23554 23026 tar-fs@2.1.3: 23555 23027 dependencies: 23556 23028 chownr: 1.1.4 ··· 23562 23034 tar-stream@2.2.0: 23563 23035 dependencies: 23564 23036 bl: 4.1.0 23565 - end-of-stream: 1.4.4 23037 + end-of-stream: 1.4.5 23566 23038 fs-constants: 1.0.0 23567 23039 inherits: 2.0.4 23568 23040 readable-stream: 3.6.2 23041 + optional: true 23569 23042 23570 23043 tar@7.4.3: 23571 23044 dependencies: ··· 23812 23285 tunnel-agent@0.6.0: 23813 23286 dependencies: 23814 23287 safe-buffer: 5.2.1 23288 + optional: true 23815 23289 23816 23290 turbo-darwin-64@2.3.2: 23817 23291 optional: true ··· 24115 23589 dependencies: 24116 23590 react: 19.1.1 24117 23591 24118 - utf-8-validate@6.0.3: 24119 - dependencies: 24120 - node-gyp-build: 4.6.1 24121 - 24122 23592 utf-8-validate@6.0.5: 24123 23593 dependencies: 24124 23594 node-gyp-build: 4.8.4 ··· 24478 23948 optionalDependencies: 24479 23949 bufferutil: 4.0.8 24480 23950 utf-8-validate: 6.0.5 24481 - 24482 - ws@8.18.3(bufferutil@4.0.8)(utf-8-validate@6.0.3): 24483 - optionalDependencies: 24484 - bufferutil: 4.0.8 24485 - utf-8-validate: 6.0.3 24486 23951 24487 23952 ws@8.18.3(bufferutil@4.0.8)(utf-8-validate@6.0.5): 24488 23953 optionalDependencies: