The recipes.blue monorepo recipes.blue
recipes appview atproto
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: api init with db

+1194 -4317
+5
.dockerignore
··· 1 + node_modules 2 + .git 3 + .gitignore 4 + *.md 5 + dist
+50
Caddyfile
··· 1 + { 2 + storage file_system /data/ 3 + debug 4 + pki { 5 + ca hayden { 6 + name "Hayden" 7 + } 8 + } 9 + } 10 + 11 + api.dev.hayden.moe { 12 + tls { 13 + issuer internal { 14 + ca hayden 15 + } 16 + } 17 + 18 + reverse_proxy http://host.docker.internal:8080 19 + } 20 + 21 + cookware.dev.hayden.moe { 22 + tls { 23 + issuer internal { 24 + ca hayden 25 + } 26 + } 27 + 28 + reverse_proxy http://host.docker.internal:5173 29 + } 30 + 31 + acme.dev.hayden.moe { 32 + tls { 33 + issuer internal { 34 + ca hayden 35 + } 36 + } 37 + acme_server { 38 + ca hayden 39 + } 40 + } 41 + 42 + turso.dev.hayden.moe { 43 + tls { 44 + issuer internal { 45 + ca hayden 46 + } 47 + } 48 + 49 + reverse_proxy http://libsql:8080 50 + }
+17
Dockerfile
··· 1 + FROM node:22-slim AS base 2 + ENV PNPM_HOME="/pnpm" 3 + ENV PATH="$PNPM_HOME:$PATH" 4 + RUN corepack enable 5 + 6 + FROM base AS build 7 + COPY . /usr/src/app 8 + WORKDIR /usr/src/app 9 + RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile 10 + RUN pnpm run -r build 11 + RUN pnpm deploy --filter=@cookware/api --prod /prod/api 12 + 13 + FROM base AS api 14 + COPY --from=build /prod/api /prod/api 15 + WORKDIR /prod/api 16 + EXPOSE 8080 17 + CMD [ "node", "dist/index.js" ]
+12
apps/api/drizzle.config.ts
··· 1 + import env from './src/config/env'; 2 + import type { Config } from "drizzle-kit"; 3 + 4 + export default { 5 + schema: "./src/db/schema.ts", 6 + out: "./migrations", 7 + dialect: "turso", 8 + dbCredentials: { 9 + url: env.TURSO_CONNECTION_URL, 10 + authToken: env.TURSO_AUTH_TOKEN, 11 + }, 12 + } satisfies Config;
+13
apps/api/migrations/0000_empty_silver_fox.sql
··· 1 + CREATE TABLE `recipes` ( 2 + `id` integer PRIMARY KEY NOT NULL, 3 + `rkey` text NOT NULL, 4 + `title` text NOT NULL, 5 + `description` text, 6 + `ingredients` text NOT NULL, 7 + `steps` text NOT NULL, 8 + `created_at` text NOT NULL, 9 + `author_did` text NOT NULL 10 + ); 11 + --> statement-breakpoint 12 + CREATE UNIQUE INDEX `recipes_id_unique` ON `recipes` (`id`);--> statement-breakpoint 13 + CREATE UNIQUE INDEX `recipes_rkey_author_did_unique` ON `recipes` (`rkey`,`author_did`);
+100
apps/api/migrations/meta/0000_snapshot.json
··· 1 + { 2 + "version": "6", 3 + "dialect": "sqlite", 4 + "id": "4c6d1917-abfe-4ae1-ba3d-6017f11a8f9f", 5 + "prevId": "00000000-0000-0000-0000-000000000000", 6 + "tables": { 7 + "recipes": { 8 + "name": "recipes", 9 + "columns": { 10 + "id": { 11 + "name": "id", 12 + "type": "integer", 13 + "primaryKey": true, 14 + "notNull": true, 15 + "autoincrement": false 16 + }, 17 + "rkey": { 18 + "name": "rkey", 19 + "type": "text", 20 + "primaryKey": false, 21 + "notNull": true, 22 + "autoincrement": false 23 + }, 24 + "title": { 25 + "name": "title", 26 + "type": "text", 27 + "primaryKey": false, 28 + "notNull": true, 29 + "autoincrement": false 30 + }, 31 + "description": { 32 + "name": "description", 33 + "type": "text", 34 + "primaryKey": false, 35 + "notNull": false, 36 + "autoincrement": false 37 + }, 38 + "ingredients": { 39 + "name": "ingredients", 40 + "type": "text", 41 + "primaryKey": false, 42 + "notNull": true, 43 + "autoincrement": false 44 + }, 45 + "steps": { 46 + "name": "steps", 47 + "type": "text", 48 + "primaryKey": false, 49 + "notNull": true, 50 + "autoincrement": false 51 + }, 52 + "created_at": { 53 + "name": "created_at", 54 + "type": "text", 55 + "primaryKey": false, 56 + "notNull": true, 57 + "autoincrement": false 58 + }, 59 + "author_did": { 60 + "name": "author_did", 61 + "type": "text", 62 + "primaryKey": false, 63 + "notNull": true, 64 + "autoincrement": false 65 + } 66 + }, 67 + "indexes": { 68 + "recipes_id_unique": { 69 + "name": "recipes_id_unique", 70 + "columns": [ 71 + "id" 72 + ], 73 + "isUnique": true 74 + }, 75 + "recipes_rkey_author_did_unique": { 76 + "name": "recipes_rkey_author_did_unique", 77 + "columns": [ 78 + "rkey", 79 + "author_did" 80 + ], 81 + "isUnique": true 82 + } 83 + }, 84 + "foreignKeys": {}, 85 + "compositePrimaryKeys": {}, 86 + "uniqueConstraints": {}, 87 + "checkConstraints": {} 88 + } 89 + }, 90 + "views": {}, 91 + "enums": {}, 92 + "_meta": { 93 + "schemas": {}, 94 + "tables": {}, 95 + "columns": {} 96 + }, 97 + "internal": { 98 + "indexes": {} 99 + } 100 + }
+13
apps/api/migrations/meta/_journal.json
··· 1 + { 2 + "version": "7", 3 + "dialect": "sqlite", 4 + "entries": [ 5 + { 6 + "idx": 0, 7 + "version": "6", 8 + "when": 1733263246874, 9 + "tag": "0000_empty_silver_fox", 10 + "breakpoints": true 11 + } 12 + ] 13 + }
+19 -6
apps/api/package.json
··· 2 2 "name": "@cookware/api", 3 3 "type": "module", 4 4 "private": true, 5 - "main": "dist/index.cjs", 5 + "main": "dist/index.js", 6 6 "publishConfig": { 7 7 "access": "public" 8 8 }, 9 9 "scripts": { 10 - "dev": "tsx watch --clear-screen=false src/index.ts | pino-pretty", 10 + "dev": "NODE_OPTIONS=--use-openssl-ca tsx watch --clear-screen=false src/index.ts | pino-pretty", 11 11 "build": "tsup", 12 - "start": "node dist/index.cjs", 13 - "clean": "rimraf dist" 12 + "start": "NODE_OPTIONS=--use-openssl-ca node dist/index.cjs", 13 + "clean": "rimraf dist", 14 + "db:generate": "NODE_OPTIONS=--use-openssl-ca drizzle-kit generate", 15 + "db:migrate": "NODE_OPTIONS=--use-openssl-ca drizzle-kit migrate", 16 + "db:studio": "NODE_OPTIONS=--use-openssl-ca drizzle-kit studio" 14 17 }, 15 18 "dependencies": { 16 19 "@hono/node-server": "^1.13.7", 20 + "@libsql/client": "^0.14.0", 21 + "@skyware/jetstream": "^0.2.1", 22 + "bufferutil": "^4.0.8", 23 + "drizzle-orm": "^0.37.0", 17 24 "hono": "^4.6.12", 18 25 "jose": "^5.9.6", 19 - "pino": "^9.5.0" 26 + "pino": "^9.5.0", 27 + "ws": "^8.18.0", 28 + "zod": "^3.23.8" 20 29 }, 21 30 "devDependencies": { 22 31 "@cookware/lexicons": "workspace:*", 23 32 "@cookware/tsconfig": "workspace:*", 33 + "@swc/core": "^1.9.3", 24 34 "@types/node": "^22.10.1", 35 + "@types/ws": "^8.5.13", 36 + "drizzle-kit": "^0.29.0", 25 37 "pino-pretty": "^13.0.0", 26 38 "rimraf": "^6.0.1", 27 39 "ts-node": "^10.9.2", ··· 37 49 ], 38 50 "splitting": false, 39 51 "sourcemap": true, 40 - "clean": true 52 + "clean": true, 53 + "format": "esm" 41 54 } 42 55 }
+27
apps/api/src/config/env.ts
··· 1 + import { z } from "zod"; 2 + 3 + const envSchema = z.object({ 4 + PORT: z.coerce.number().lte(65535).default(8080), 5 + HOST: z.string().ip().default('0.0.0.0'), 6 + 7 + TURSO_CONNECTION_URL: z.string().default('https://turso.dev.hayden.moe'), 8 + TURSO_AUTH_TOKEN: z.string().nullish(), 9 + 10 + JETSTREAM_ENDPOINT: z 11 + .string() 12 + .url() 13 + .default('wss://jetstream1.us-east.bsky.network/subscribe'), 14 + PLC_DIRECTORY_URL: z.string().url().default('https://plc.directory'), 15 + 16 + ENV: z 17 + .union([ 18 + z.literal('development'), 19 + z.literal('production'), 20 + ]) 21 + .default('development'), 22 + }); 23 + 24 + const env = envSchema.parse(process.env); 25 + 26 + export default env; 27 + export type Env = z.infer<typeof envSchema>;
+11
apps/api/src/db/index.ts
··· 1 + import { drizzle } from "drizzle-orm/libsql"; 2 + import { createClient } from "@libsql/client"; 3 + import * as schema from "./schema.js"; 4 + import env from "../config/env.js"; 5 + 6 + const client = createClient({ 7 + url: env.TURSO_CONNECTION_URL, 8 + authToken: env.TURSO_AUTH_TOKEN, 9 + }); 10 + 11 + export const db = drizzle(client, { schema });
+33
apps/api/src/db/schema.ts
··· 1 + import { sql } from "drizzle-orm"; 2 + import { customType, int, sqliteTable, text, unique } from "drizzle-orm/sqlite-core"; 3 + import { DID } from "../util/did.js"; 4 + import { Ingredient, Step } from "@cookware/lexicons"; 5 + 6 + const did = customType<{ data: DID }>({ 7 + dataType() { 8 + return "text"; 9 + }, 10 + }); 11 + 12 + const nowAsIsoString = sql`(strftime('%Y-%m-%dT%H:%M:%fZ', 'now'))`; 13 + 14 + const dateIsoText = customType<{ data: Date; driverData: string }>({ 15 + dataType() { 16 + return "text"; 17 + }, 18 + toDriver: (value) => value.toISOString(), 19 + fromDriver: (value) => new Date(value), 20 + }); 21 + 22 + export const recipeTable = sqliteTable("recipes", { 23 + id: int('id').primaryKey().notNull().unique(), 24 + rkey: text('rkey').notNull(), 25 + title: text('title').notNull(), 26 + description: text('description'), 27 + ingredients: text('ingredients', { mode: 'json' }).$type<Ingredient[]>().notNull(), 28 + steps: text('steps', { mode: 'json' }).$type<Step[]>().notNull(), 29 + createdAt: dateIsoText("created_at").notNull(), 30 + authorDid: did("author_did").notNull(), 31 + }, t => ({ 32 + unique_author_rkey: unique().on(t.rkey, t.authorDid), 33 + }));
+1
apps/api/src/env.d.ts
··· 1 + /// <reference types="@cookware/lexicons" />
+10 -3
apps/api/src/index.ts
··· 1 1 import { serve } from "@hono/node-server"; 2 2 import { Hono } from "hono"; 3 3 import { rootLogger } from "./logger.js"; 4 + import { newIngester } from "./ingest.js"; 5 + import env from "./config/env.js"; 6 + import { recipeApp } from "./recipes/index.js"; 7 + import { xrpcApp } from "./xrpc/index.js"; 4 8 5 9 const app = new Hono(); 10 + app.route('/recipes', recipeApp); 11 + app.route('/xrpc', xrpcApp); 6 12 13 + newIngester().start(); 7 14 serve({ 8 15 fetch: app.fetch, 9 - hostname: '0.0.0.0', 10 - port: 8080, 16 + hostname: env.HOST, 17 + port: env.PORT, 11 18 }).on('listening', () => { 12 - rootLogger.info({ port: 8080, host: '0.0.0.0' }, 'server booted'); 19 + rootLogger.info({ port: 8080, host: '0.0.0.0' }, 'Server booted.'); 13 20 });
+38
apps/api/src/ingest.ts
··· 1 + import { Jetstream } from "@skyware/jetstream"; 2 + import { WebSocket } from "ws"; 3 + import { ingestLogger } from "./logger.js"; 4 + import env from "./config/env.js"; 5 + 6 + export const newIngester = () => { 7 + const jetstream = new Jetstream({ 8 + ws: WebSocket, 9 + endpoint: env.JETSTREAM_ENDPOINT, 10 + wantedCollections: ['moe.hayden.cookware.*'], 11 + cursor: 0, 12 + }); 13 + 14 + jetstream.onCreate("moe.hayden.cookware.recipe", event => { 15 + ingestLogger.info(`New post: ${event.commit.record.title} (${event.commit.rkey})`); 16 + }); 17 + 18 + jetstream.onUpdate("moe.hayden.cookware.recipe", event => { 19 + ingestLogger.info(`Updated post: ${event.commit.record.title} (${event.commit.rkey})`); 20 + }); 21 + 22 + jetstream.on('open', () => { 23 + ingestLogger.info({ 24 + endpoint: env.JETSTREAM_ENDPOINT, 25 + wantedCollections: ['moe.hayden.cookware.*'], 26 + }, 'Ingester connection opened.'); 27 + }); 28 + 29 + jetstream.on('close', () => { 30 + ingestLogger.error('Ingester connection closed.'); 31 + }); 32 + 33 + jetstream.on('error', err => { 34 + ingestLogger.error({ err }, 'Ingester runtime error.'); 35 + }); 36 + 37 + return jetstream; 38 + };
+3
apps/api/src/recipes/index.ts
··· 1 + import { Hono } from "hono"; 2 + 3 + export const recipeApp = new Hono();
+44
apps/api/src/util/did.ts
··· 1 + import { z } from "zod"; 2 + import env from "../config/env.js"; 3 + 4 + type Brand<K, T> = K & { __brand: T }; 5 + export type DID = Brand<string, "DID">; 6 + 7 + export function isDid(s: string): s is DID { 8 + return s.startsWith("did:"); 9 + } 10 + 11 + export function parseDid(s: string): DID | null { 12 + if (!isDid(s)) { 13 + return null; 14 + } 15 + return s; 16 + } 17 + 18 + export const getDidDoc = async (did: DID) => { 19 + const url = env.PLC_DIRECTORY_URL; 20 + const response = await fetch(`${url}/${did}`); 21 + 22 + return PlcDocument.parse(await response.json()); 23 + }; 24 + 25 + export const getPdsUrl = async (did: DID) => { 26 + const plc = await getDidDoc(did); 27 + 28 + return ( 29 + plc.service.find((s) => s.type === "AtprotoPersonalDataServer") 30 + ?.serviceEndpoint ?? null 31 + ); 32 + }; 33 + 34 + const PlcDocument = z.object({ 35 + id: z.string(), 36 + alsoKnownAs: z.array(z.string()), 37 + service: z.array( 38 + z.object({ 39 + id: z.string(), 40 + type: z.string(), 41 + serviceEndpoint: z.string(), 42 + }), 43 + ), 44 + });
+11
apps/api/src/xrpc/index.ts
··· 1 + import { Hono } from 'hono'; 2 + 3 + export const xrpcApp = new Hono(); 4 + 5 + xrpcApp.use('/:nsid', async c => { 6 + c.status(400); 7 + return c.json({ 8 + error: 'not_implemented', 9 + message: 'The XRPC server has not yet been implemented.', 10 + }); 11 + });
+2 -1
apps/api/tsconfig.json
··· 1 1 { 2 - "extends": "@cookware/tsconfig/base.json" 2 + "extends": "@cookware/tsconfig/base.json", 3 + "include": ["src", "scripts"] 3 4 }
+45
docker-compose.yaml
··· 1 + --- 2 + services: 3 + caddy: 4 + image: caddy:2 5 + restart: unless-stopped 6 + cap_add: 7 + - NET_ADMIN 8 + ports: 9 + - "80:80" 10 + - "443:443" 11 + - "443:443/udp" 12 + volumes: 13 + - ./Caddyfile:/etc/caddy/Caddyfile 14 + - caddy_data:/data 15 + - caddy_config:/config 16 + extra_hosts: 17 + - "host.docker.internal:host-gateway" 18 + 19 + libsql: 20 + image: ghcr.io/tursodatabase/libsql-server:latest 21 + environment: 22 + SQLD_NODE: primary 23 + ports: 24 + - 4001:8080 25 + volumes: 26 + - libsql:/var/lib/sqld 27 + 28 + api_tunnel: 29 + image: cloudflare/cloudflared 30 + restart: unless-stopped 31 + command: tunnel --url http://host.docker.internal:8080 32 + extra_hosts: 33 + - "host.docker.internal:host-gateway" 34 + 35 + web_tunnel: 36 + image: cloudflare/cloudflared 37 + restart: unless-stopped 38 + command: tunnel --url http://host.docker.internal:5173 39 + extra_hosts: 40 + - "host.docker.internal:host-gateway" 41 + 42 + volumes: 43 + caddy_data: {} 44 + caddy_config: {} 45 + libsql: {}
+6
libs/lexicons/package.json
··· 8 8 "access": "public" 9 9 }, 10 10 "devDependencies": { 11 + "@atcute/client": "^2.0.6", 12 + "@atcute/lex-cli": "^1.0.3", 11 13 "@cookware/tsconfig": "workspace:*", 12 14 "typescript": "^5.7.2", 15 + "zod": "^3.23.8" 16 + }, 17 + "peerDependencies": { 18 + "@atcute/client": "^2.0.6", 13 19 "zod": "^3.23.8" 14 20 } 15 21 }
+8
libs/lexicons/scripts/generate.sh
··· 1 + #!/usr/bin/env bash 2 + 3 + root="$(dirname "$(dirname "${BASH_SOURCE[0]}")")" 4 + 5 + pnpm exec lex-cli generate \ 6 + "$root"/../../lexicons/moe/hayden/cookware/*.json \ 7 + -o src/atcute.ts \ 8 + --description "Contains type declarations for Cookware lexicons"
+69
libs/lexicons/src/atcute.ts
··· 1 + /* eslint-disable */ 2 + // This file is automatically generated, do not edit! 3 + 4 + /** 5 + * @module 6 + * Contains type declarations for Cookware lexicons 7 + */ 8 + 9 + import "@atcute/client/lexicons"; 10 + 11 + declare module "@atcute/client/lexicons" { 12 + namespace MoeHaydenCookwareDefs { 13 + interface Ingredient { 14 + [Brand.Type]?: "moe.hayden.cookware.defs#ingredient"; 15 + /** How much of the ingredient is needed. */ 16 + amount?: number; 17 + /** 18 + * The name of the ingredient. \ 19 + * Maximum string length: 3000 \ 20 + * Maximum grapheme length: 300 21 + */ 22 + name?: string; 23 + /** 24 + * The unit the ingredient is measured in. \ 25 + * Maximum string length: 3000 \ 26 + * Maximum grapheme length: 300 27 + */ 28 + unit?: string; 29 + } 30 + interface Step { 31 + [Brand.Type]?: "moe.hayden.cookware.defs#step"; 32 + /** 33 + * The instruction to provide to the user. \ 34 + * Maximum string length: 5000 \ 35 + * Maximum grapheme length: 300 36 + */ 37 + text: string; 38 + } 39 + } 40 + 41 + namespace MoeHaydenCookwareRecipe { 42 + /** Record containing a Cookware recipe. */ 43 + interface Record { 44 + $type: "moe.hayden.cookware.recipe"; 45 + ingredients: MoeHaydenCookwareDefs.Ingredient[]; 46 + steps: MoeHaydenCookwareDefs.Step[]; 47 + /** 48 + * The title of the recipe. \ 49 + * Maximum string length: 3000 \ 50 + * Maximum grapheme length: 300 51 + */ 52 + title: string; 53 + /** 54 + * The description of the recipe. \ 55 + * Maximum string length: 3000 \ 56 + * Maximum grapheme length: 300 57 + */ 58 + description?: string; 59 + } 60 + } 61 + 62 + interface Records { 63 + "moe.hayden.cookware.recipe": MoeHaydenCookwareRecipe.Record; 64 + } 65 + 66 + interface Queries {} 67 + 68 + interface Procedures {} 69 + }
+3 -2
libs/lexicons/src/index.ts
··· 1 - export * from './recipe' 2 - export * from './defs' 1 + export * from './recipe.js'; 2 + export * from './defs.js'; 3 + export * from './atcute.js';
+1 -1
libs/lexicons/src/recipe.ts
··· 5 5 6 6 export const RecipeRecord = z.object({ 7 7 title: z.string().max(3000, 'Recipe titles must be under 3000 characters.'), 8 - description: z.string().max(3000, 'Recipe descriptions must be under 3000 characters.'), 8 + description: z.string().max(3000, 'Recipe descriptions must be under 3000 characters.').nullable(), 9 9 ingredients: z.array(IngredientObject), 10 10 steps: z.array(StepObject), 11 11 });
+1 -1
libs/lexicons/tsconfig.json
··· 1 1 { 2 2 "extends": "@cookware/tsconfig/base.json", 3 - "include": ["src/**/*"] 3 + "include": ["src"] 4 4 }
+652 -4303
pnpm-lock.yaml
··· 13 13 '@hono/node-server': 14 14 specifier: ^1.13.7 15 15 version: 1.13.7(hono@4.6.12) 16 + '@libsql/client': 17 + specifier: ^0.14.0 18 + version: 0.14.0(bufferutil@4.0.8) 19 + '@skyware/jetstream': 20 + specifier: ^0.2.1 21 + version: 0.2.1(@atcute/client@2.0.6) 22 + bufferutil: 23 + specifier: ^4.0.8 24 + version: 4.0.8 25 + drizzle-orm: 26 + specifier: ^0.37.0 27 + version: 0.37.0(@libsql/client@0.14.0(bufferutil@4.0.8)) 16 28 hono: 17 29 specifier: ^4.6.12 18 30 version: 4.6.12 ··· 22 34 pino: 23 35 specifier: ^9.5.0 24 36 version: 9.5.0 37 + ws: 38 + specifier: ^8.18.0 39 + version: 8.18.0(bufferutil@4.0.8) 40 + zod: 41 + specifier: ^3.23.8 42 + version: 3.23.8 25 43 devDependencies: 26 44 '@cookware/lexicons': 27 45 specifier: workspace:* ··· 29 47 '@cookware/tsconfig': 30 48 specifier: workspace:* 31 49 version: link:../../libs/tsconfig 50 + '@swc/core': 51 + specifier: ^1.9.3 52 + version: 1.9.3 32 53 '@types/node': 33 54 specifier: ^22.10.1 34 55 version: 22.10.1 56 + '@types/ws': 57 + specifier: ^8.5.13 58 + version: 8.5.13 59 + drizzle-kit: 60 + specifier: ^0.29.0 61 + version: 0.29.0 35 62 pino-pretty: 36 63 specifier: ^13.0.0 37 64 version: 13.0.0 ··· 40 67 version: 6.0.1 41 68 ts-node: 42 69 specifier: ^10.9.2 43 - version: 10.9.2(@types/node@22.10.1)(typescript@5.7.2) 70 + version: 10.9.2(@swc/core@1.9.3)(@types/node@22.10.1)(typescript@5.7.2) 44 71 tsup: 45 72 specifier: ^8.3.5 46 - version: 8.3.5(jiti@2.4.1)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) 73 + version: 8.3.5(@swc/core@1.9.3)(jiti@2.4.1)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) 47 74 tsx: 48 75 specifier: ^4.19.2 49 76 version: 4.19.2 ··· 51 78 specifier: ^5.7.2 52 79 version: 5.7.2 53 80 54 - apps/web: 55 - dependencies: 56 - '@tanstack/react-router': 57 - specifier: ^1.85.5 58 - version: 1.85.5(@tanstack/router-generator@1.85.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 59 - '@tanstack/start': 60 - specifier: ^1.85.5 61 - version: 1.85.5(@types/node@22.10.1)(ioredis@5.4.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(terser@5.36.0)(typescript@5.7.2)(vite@6.0.2(@types/node@22.10.1)(jiti@2.4.1)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) 62 - class-variance-authority: 63 - specifier: ^0.7.1 64 - version: 0.7.1 65 - clsx: 66 - specifier: ^2.1.1 67 - version: 2.1.1 68 - lucide-react: 69 - specifier: ^0.464.0 70 - version: 0.464.0(react@18.3.1) 71 - react: 72 - specifier: ^18.3.1 73 - version: 18.3.1 74 - react-dom: 75 - specifier: ^18.3.1 76 - version: 18.3.1(react@18.3.1) 77 - tailwind-merge: 78 - specifier: ^2.5.5 79 - version: 2.5.5 80 - tailwindcss-animate: 81 - specifier: ^1.0.7 82 - version: 1.0.7(tailwindcss@3.4.15) 83 - vinxi: 84 - specifier: ^0.5.0 85 - version: 0.5.0(@types/node@22.10.1)(ioredis@5.4.1)(jiti@2.4.1)(terser@5.36.0)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) 86 - devDependencies: 87 - '@cookware/tsconfig': 88 - specifier: workspace:* 89 - version: link:../../libs/tsconfig 90 - '@types/node': 91 - specifier: ^22.10.1 92 - version: 22.10.1 93 - '@types/react': 94 - specifier: ^18.3.12 95 - version: 18.3.12 96 - '@types/react-dom': 97 - specifier: ^18.3.1 98 - version: 18.3.1 99 - '@vitejs/plugin-react': 100 - specifier: ^4.3.4 101 - version: 4.3.4(vite@6.0.2(@types/node@22.10.1)(jiti@2.4.1)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) 102 - autoprefixer: 103 - specifier: ^10.4.20 104 - version: 10.4.20(postcss@8.4.49) 105 - postcss: 106 - specifier: ^8.4.49 107 - version: 8.4.49 108 - tailwindcss: 109 - specifier: ^3.4.15 110 - version: 3.4.15 111 - typescript: 112 - specifier: ^5.7.2 113 - version: 5.7.2 114 - 115 81 libs/lexicons: 116 82 devDependencies: 83 + '@atcute/client': 84 + specifier: ^2.0.6 85 + version: 2.0.6 86 + '@atcute/lex-cli': 87 + specifier: ^1.0.3 88 + version: 1.0.3 117 89 '@cookware/tsconfig': 118 90 specifier: workspace:* 119 91 version: link:../tsconfig ··· 128 100 129 101 packages: 130 102 131 - '@alloc/quick-lru@5.2.0': 132 - resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} 133 - engines: {node: '>=10'} 134 - 135 - '@ampproject/remapping@2.3.0': 136 - resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} 137 - engines: {node: '>=6.0.0'} 138 - 139 - '@babel/code-frame@7.26.2': 140 - resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} 141 - engines: {node: '>=6.9.0'} 142 - 143 - '@babel/compat-data@7.26.2': 144 - resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==} 145 - engines: {node: '>=6.9.0'} 146 - 147 - '@babel/core@7.26.0': 148 - resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} 149 - engines: {node: '>=6.9.0'} 150 - 151 - '@babel/generator@7.26.2': 152 - resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==} 153 - engines: {node: '>=6.9.0'} 154 - 155 - '@babel/helper-compilation-targets@7.25.9': 156 - resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} 157 - engines: {node: '>=6.9.0'} 158 - 159 - '@babel/helper-module-imports@7.25.9': 160 - resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} 161 - engines: {node: '>=6.9.0'} 162 - 163 - '@babel/helper-module-transforms@7.26.0': 164 - resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} 165 - engines: {node: '>=6.9.0'} 103 + '@atcute/bluesky@1.0.9': 104 + resolution: {integrity: sha512-06UbqlnREobZB5vVlstJXsJJVNBPr/RhauVVWQk9k8eIfzyiV9uxklc5olv+wULld+iBL6OQItnTEyZPv8QFLw==} 166 105 peerDependencies: 167 - '@babel/core': ^7.0.0 168 - 169 - '@babel/helper-plugin-utils@7.25.9': 170 - resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==} 171 - engines: {node: '>=6.9.0'} 172 - 173 - '@babel/helper-string-parser@7.25.9': 174 - resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} 175 - engines: {node: '>=6.9.0'} 106 + '@atcute/client': ^1.0.0 || ^2.0.0 176 107 177 - '@babel/helper-validator-identifier@7.25.9': 178 - resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} 179 - engines: {node: '>=6.9.0'} 180 - 181 - '@babel/helper-validator-option@7.25.9': 182 - resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} 183 - engines: {node: '>=6.9.0'} 184 - 185 - '@babel/helpers@7.26.0': 186 - resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} 187 - engines: {node: '>=6.9.0'} 108 + '@atcute/client@2.0.6': 109 + resolution: {integrity: sha512-mhdqEicGUx0s5HTFOLpz91rcLS9j/g63de0nmAqv7blhU3j+xBf4le54qr2YIXNfnReZI7EwLYLX/YIBez4LGA==} 188 110 189 - '@babel/parser@7.26.2': 190 - resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==} 191 - engines: {node: '>=6.0.0'} 111 + '@atcute/lex-cli@1.0.3': 112 + resolution: {integrity: sha512-o6nRrYe1Vu2C21ArSjBCaF9deujBmgx/Q3LkOJorZbc/ableFeThcS5jvePMYcW9t18EDSTlttKn13y8uuUDNQ==} 192 113 hasBin: true 193 114 194 - '@babel/plugin-syntax-jsx@7.25.9': 195 - resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==} 196 - engines: {node: '>=6.9.0'} 197 - peerDependencies: 198 - '@babel/core': ^7.0.0-0 199 - 200 - '@babel/plugin-syntax-typescript@7.25.9': 201 - resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==} 202 - engines: {node: '>=6.9.0'} 203 - peerDependencies: 204 - '@babel/core': ^7.0.0-0 205 - 206 - '@babel/plugin-transform-react-jsx-self@7.25.9': 207 - resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==} 208 - engines: {node: '>=6.9.0'} 209 - peerDependencies: 210 - '@babel/core': ^7.0.0-0 211 - 212 - '@babel/plugin-transform-react-jsx-source@7.25.9': 213 - resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==} 214 - engines: {node: '>=6.9.0'} 215 - peerDependencies: 216 - '@babel/core': ^7.0.0-0 217 - 218 - '@babel/standalone@7.26.2': 219 - resolution: {integrity: sha512-i2VbegsRfwa9yq3xmfDX3tG2yh9K0cCqwpSyVG2nPxifh0EOnucAZUeO/g4lW2Zfg03aPJNtPfxQbDHzXc7H+w==} 220 - engines: {node: '>=6.9.0'} 221 - 222 - '@babel/template@7.25.9': 223 - resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} 224 - engines: {node: '>=6.9.0'} 225 - 226 - '@babel/traverse@7.25.9': 227 - resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==} 228 - engines: {node: '>=6.9.0'} 229 - 230 - '@babel/types@7.26.0': 231 - resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==} 232 - engines: {node: '>=6.9.0'} 233 - 234 - '@cloudflare/kv-asset-handler@0.3.4': 235 - resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==} 236 - engines: {node: '>=16.13'} 115 + '@badrap/valita@0.3.16': 116 + resolution: {integrity: sha512-slP2blSd6A+xUBgGf+wW6adGd72ojBLxemU0jXQ0fXQcsZWYQ70wTLTJggs6+oxcAqN/bvYA3Ops8SqR2Imyaw==} 117 + engines: {node: '>= 16'} 237 118 238 119 '@cspotcode/source-map-support@0.8.1': 239 120 resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} 240 121 engines: {node: '>=12'} 241 122 242 - '@deno/shim-deno-test@0.5.0': 243 - resolution: {integrity: sha512-4nMhecpGlPi0cSzT67L+Tm+GOJqvuk8gqHBziqcUQOarnuIax1z96/gJHCSIz2Z0zhxE6Rzwb3IZXPtFh51j+w==} 123 + '@drizzle-team/brocli@0.10.2': 124 + resolution: {integrity: sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==} 244 125 245 - '@deno/shim-deno@0.19.2': 246 - resolution: {integrity: sha512-q3VTHl44ad8T2Tw2SpeAvghdGOjlnLPDNO2cpOxwMrBE/PVas6geWpbpIgrM+czOCH0yejp0yi8OaTuB+NU40Q==} 126 + '@esbuild-kit/core-utils@3.3.2': 127 + resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==} 128 + deprecated: 'Merged into tsx: https://tsx.is' 247 129 248 - '@esbuild/aix-ppc64@0.20.2': 249 - resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==} 250 - engines: {node: '>=12'} 251 - cpu: [ppc64] 252 - os: [aix] 130 + '@esbuild-kit/esm-loader@2.6.5': 131 + resolution: {integrity: sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==} 132 + deprecated: 'Merged into tsx: https://tsx.is' 253 133 254 - '@esbuild/aix-ppc64@0.21.5': 255 - resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} 134 + '@esbuild/aix-ppc64@0.19.12': 135 + resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==} 256 136 engines: {node: '>=12'} 257 137 cpu: [ppc64] 258 138 os: [aix] ··· 269 149 cpu: [ppc64] 270 150 os: [aix] 271 151 272 - '@esbuild/android-arm64@0.20.2': 273 - resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==} 152 + '@esbuild/android-arm64@0.18.20': 153 + resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} 274 154 engines: {node: '>=12'} 275 155 cpu: [arm64] 276 156 os: [android] 277 157 278 - '@esbuild/android-arm64@0.21.5': 279 - resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} 158 + '@esbuild/android-arm64@0.19.12': 159 + resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==} 280 160 engines: {node: '>=12'} 281 161 cpu: [arm64] 282 162 os: [android] ··· 293 173 cpu: [arm64] 294 174 os: [android] 295 175 296 - '@esbuild/android-arm@0.20.2': 297 - resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==} 176 + '@esbuild/android-arm@0.18.20': 177 + resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} 298 178 engines: {node: '>=12'} 299 179 cpu: [arm] 300 180 os: [android] 301 181 302 - '@esbuild/android-arm@0.21.5': 303 - resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 182 + '@esbuild/android-arm@0.19.12': 183 + resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==} 304 184 engines: {node: '>=12'} 305 185 cpu: [arm] 306 186 os: [android] ··· 317 197 cpu: [arm] 318 198 os: [android] 319 199 320 - '@esbuild/android-x64@0.20.2': 321 - resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==} 200 + '@esbuild/android-x64@0.18.20': 201 + resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} 322 202 engines: {node: '>=12'} 323 203 cpu: [x64] 324 204 os: [android] 325 205 326 - '@esbuild/android-x64@0.21.5': 327 - resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 206 + '@esbuild/android-x64@0.19.12': 207 + resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==} 328 208 engines: {node: '>=12'} 329 209 cpu: [x64] 330 210 os: [android] ··· 341 221 cpu: [x64] 342 222 os: [android] 343 223 344 - '@esbuild/darwin-arm64@0.20.2': 345 - resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==} 224 + '@esbuild/darwin-arm64@0.18.20': 225 + resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} 346 226 engines: {node: '>=12'} 347 227 cpu: [arm64] 348 228 os: [darwin] 349 229 350 - '@esbuild/darwin-arm64@0.21.5': 351 - resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 230 + '@esbuild/darwin-arm64@0.19.12': 231 + resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==} 352 232 engines: {node: '>=12'} 353 233 cpu: [arm64] 354 234 os: [darwin] ··· 365 245 cpu: [arm64] 366 246 os: [darwin] 367 247 368 - '@esbuild/darwin-x64@0.20.2': 369 - resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==} 248 + '@esbuild/darwin-x64@0.18.20': 249 + resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} 370 250 engines: {node: '>=12'} 371 251 cpu: [x64] 372 252 os: [darwin] 373 253 374 - '@esbuild/darwin-x64@0.21.5': 375 - resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} 254 + '@esbuild/darwin-x64@0.19.12': 255 + resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==} 376 256 engines: {node: '>=12'} 377 257 cpu: [x64] 378 258 os: [darwin] ··· 389 269 cpu: [x64] 390 270 os: [darwin] 391 271 392 - '@esbuild/freebsd-arm64@0.20.2': 393 - resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==} 272 + '@esbuild/freebsd-arm64@0.18.20': 273 + resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} 394 274 engines: {node: '>=12'} 395 275 cpu: [arm64] 396 276 os: [freebsd] 397 277 398 - '@esbuild/freebsd-arm64@0.21.5': 399 - resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 278 + '@esbuild/freebsd-arm64@0.19.12': 279 + resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==} 400 280 engines: {node: '>=12'} 401 281 cpu: [arm64] 402 282 os: [freebsd] ··· 413 293 cpu: [arm64] 414 294 os: [freebsd] 415 295 416 - '@esbuild/freebsd-x64@0.20.2': 417 - resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==} 296 + '@esbuild/freebsd-x64@0.18.20': 297 + resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} 418 298 engines: {node: '>=12'} 419 299 cpu: [x64] 420 300 os: [freebsd] 421 301 422 - '@esbuild/freebsd-x64@0.21.5': 423 - resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 302 + '@esbuild/freebsd-x64@0.19.12': 303 + resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==} 424 304 engines: {node: '>=12'} 425 305 cpu: [x64] 426 306 os: [freebsd] ··· 437 317 cpu: [x64] 438 318 os: [freebsd] 439 319 440 - '@esbuild/linux-arm64@0.20.2': 441 - resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==} 320 + '@esbuild/linux-arm64@0.18.20': 321 + resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} 442 322 engines: {node: '>=12'} 443 323 cpu: [arm64] 444 324 os: [linux] 445 325 446 - '@esbuild/linux-arm64@0.21.5': 447 - resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 326 + '@esbuild/linux-arm64@0.19.12': 327 + resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==} 448 328 engines: {node: '>=12'} 449 329 cpu: [arm64] 450 330 os: [linux] ··· 461 341 cpu: [arm64] 462 342 os: [linux] 463 343 464 - '@esbuild/linux-arm@0.20.2': 465 - resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==} 344 + '@esbuild/linux-arm@0.18.20': 345 + resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} 466 346 engines: {node: '>=12'} 467 347 cpu: [arm] 468 348 os: [linux] 469 349 470 - '@esbuild/linux-arm@0.21.5': 471 - resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} 350 + '@esbuild/linux-arm@0.19.12': 351 + resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==} 472 352 engines: {node: '>=12'} 473 353 cpu: [arm] 474 354 os: [linux] ··· 485 365 cpu: [arm] 486 366 os: [linux] 487 367 488 - '@esbuild/linux-ia32@0.20.2': 489 - resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==} 368 + '@esbuild/linux-ia32@0.18.20': 369 + resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} 490 370 engines: {node: '>=12'} 491 371 cpu: [ia32] 492 372 os: [linux] 493 373 494 - '@esbuild/linux-ia32@0.21.5': 495 - resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 374 + '@esbuild/linux-ia32@0.19.12': 375 + resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==} 496 376 engines: {node: '>=12'} 497 377 cpu: [ia32] 498 378 os: [linux] ··· 509 389 cpu: [ia32] 510 390 os: [linux] 511 391 512 - '@esbuild/linux-loong64@0.20.2': 513 - resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==} 392 + '@esbuild/linux-loong64@0.18.20': 393 + resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} 514 394 engines: {node: '>=12'} 515 395 cpu: [loong64] 516 396 os: [linux] 517 397 518 - '@esbuild/linux-loong64@0.21.5': 519 - resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 398 + '@esbuild/linux-loong64@0.19.12': 399 + resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==} 520 400 engines: {node: '>=12'} 521 401 cpu: [loong64] 522 402 os: [linux] ··· 533 413 cpu: [loong64] 534 414 os: [linux] 535 415 536 - '@esbuild/linux-mips64el@0.20.2': 537 - resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==} 416 + '@esbuild/linux-mips64el@0.18.20': 417 + resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} 538 418 engines: {node: '>=12'} 539 419 cpu: [mips64el] 540 420 os: [linux] 541 421 542 - '@esbuild/linux-mips64el@0.21.5': 543 - resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 422 + '@esbuild/linux-mips64el@0.19.12': 423 + resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==} 544 424 engines: {node: '>=12'} 545 425 cpu: [mips64el] 546 426 os: [linux] ··· 557 437 cpu: [mips64el] 558 438 os: [linux] 559 439 560 - '@esbuild/linux-ppc64@0.20.2': 561 - resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==} 440 + '@esbuild/linux-ppc64@0.18.20': 441 + resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} 562 442 engines: {node: '>=12'} 563 443 cpu: [ppc64] 564 444 os: [linux] 565 445 566 - '@esbuild/linux-ppc64@0.21.5': 567 - resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} 446 + '@esbuild/linux-ppc64@0.19.12': 447 + resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==} 568 448 engines: {node: '>=12'} 569 449 cpu: [ppc64] 570 450 os: [linux] ··· 581 461 cpu: [ppc64] 582 462 os: [linux] 583 463 584 - '@esbuild/linux-riscv64@0.20.2': 585 - resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==} 464 + '@esbuild/linux-riscv64@0.18.20': 465 + resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} 586 466 engines: {node: '>=12'} 587 467 cpu: [riscv64] 588 468 os: [linux] 589 469 590 - '@esbuild/linux-riscv64@0.21.5': 591 - resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 470 + '@esbuild/linux-riscv64@0.19.12': 471 + resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==} 592 472 engines: {node: '>=12'} 593 473 cpu: [riscv64] 594 474 os: [linux] ··· 605 485 cpu: [riscv64] 606 486 os: [linux] 607 487 608 - '@esbuild/linux-s390x@0.20.2': 609 - resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==} 488 + '@esbuild/linux-s390x@0.18.20': 489 + resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} 610 490 engines: {node: '>=12'} 611 491 cpu: [s390x] 612 492 os: [linux] 613 493 614 - '@esbuild/linux-s390x@0.21.5': 615 - resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 494 + '@esbuild/linux-s390x@0.19.12': 495 + resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==} 616 496 engines: {node: '>=12'} 617 497 cpu: [s390x] 618 498 os: [linux] ··· 629 509 cpu: [s390x] 630 510 os: [linux] 631 511 632 - '@esbuild/linux-x64@0.20.2': 633 - resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==} 512 + '@esbuild/linux-x64@0.18.20': 513 + resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} 634 514 engines: {node: '>=12'} 635 515 cpu: [x64] 636 516 os: [linux] 637 517 638 - '@esbuild/linux-x64@0.21.5': 639 - resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 518 + '@esbuild/linux-x64@0.19.12': 519 + resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==} 640 520 engines: {node: '>=12'} 641 521 cpu: [x64] 642 522 os: [linux] ··· 653 533 cpu: [x64] 654 534 os: [linux] 655 535 656 - '@esbuild/netbsd-x64@0.20.2': 657 - resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==} 536 + '@esbuild/netbsd-x64@0.18.20': 537 + resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} 658 538 engines: {node: '>=12'} 659 539 cpu: [x64] 660 540 os: [netbsd] 661 541 662 - '@esbuild/netbsd-x64@0.21.5': 663 - resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 542 + '@esbuild/netbsd-x64@0.19.12': 543 + resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==} 664 544 engines: {node: '>=12'} 665 545 cpu: [x64] 666 546 os: [netbsd] ··· 689 569 cpu: [arm64] 690 570 os: [openbsd] 691 571 692 - '@esbuild/openbsd-x64@0.20.2': 693 - resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==} 572 + '@esbuild/openbsd-x64@0.18.20': 573 + resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} 694 574 engines: {node: '>=12'} 695 575 cpu: [x64] 696 576 os: [openbsd] 697 577 698 - '@esbuild/openbsd-x64@0.21.5': 699 - resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 578 + '@esbuild/openbsd-x64@0.19.12': 579 + resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==} 700 580 engines: {node: '>=12'} 701 581 cpu: [x64] 702 582 os: [openbsd] ··· 713 593 cpu: [x64] 714 594 os: [openbsd] 715 595 716 - '@esbuild/sunos-x64@0.20.2': 717 - resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==} 596 + '@esbuild/sunos-x64@0.18.20': 597 + resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} 718 598 engines: {node: '>=12'} 719 599 cpu: [x64] 720 600 os: [sunos] 721 601 722 - '@esbuild/sunos-x64@0.21.5': 723 - resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 602 + '@esbuild/sunos-x64@0.19.12': 603 + resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==} 724 604 engines: {node: '>=12'} 725 605 cpu: [x64] 726 606 os: [sunos] ··· 737 617 cpu: [x64] 738 618 os: [sunos] 739 619 740 - '@esbuild/win32-arm64@0.20.2': 741 - resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==} 620 + '@esbuild/win32-arm64@0.18.20': 621 + resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} 742 622 engines: {node: '>=12'} 743 623 cpu: [arm64] 744 624 os: [win32] 745 625 746 - '@esbuild/win32-arm64@0.21.5': 747 - resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 626 + '@esbuild/win32-arm64@0.19.12': 627 + resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==} 748 628 engines: {node: '>=12'} 749 629 cpu: [arm64] 750 630 os: [win32] ··· 761 641 cpu: [arm64] 762 642 os: [win32] 763 643 764 - '@esbuild/win32-ia32@0.20.2': 765 - resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==} 644 + '@esbuild/win32-ia32@0.18.20': 645 + resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} 766 646 engines: {node: '>=12'} 767 647 cpu: [ia32] 768 648 os: [win32] 769 649 770 - '@esbuild/win32-ia32@0.21.5': 771 - resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 650 + '@esbuild/win32-ia32@0.19.12': 651 + resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==} 772 652 engines: {node: '>=12'} 773 653 cpu: [ia32] 774 654 os: [win32] ··· 785 665 cpu: [ia32] 786 666 os: [win32] 787 667 788 - '@esbuild/win32-x64@0.20.2': 789 - resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==} 668 + '@esbuild/win32-x64@0.18.20': 669 + resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} 790 670 engines: {node: '>=12'} 791 671 cpu: [x64] 792 672 os: [win32] 793 673 794 - '@esbuild/win32-x64@0.21.5': 795 - resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} 674 + '@esbuild/win32-x64@0.19.12': 675 + resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==} 796 676 engines: {node: '>=12'} 797 677 cpu: [x64] 798 678 os: [win32] ··· 809 689 cpu: [x64] 810 690 os: [win32] 811 691 692 + '@externdefs/collider@0.1.0': 693 + resolution: {integrity: sha512-vmFJEKHhftREiuhhK3WIMKk6bGfm7kM9c5HeVElFCbtqajXqCfwY/GR3f1G0qYWCvbtcoBhIZ2O8ia3A2/pjkw==} 694 + peerDependencies: 695 + '@badrap/valita': ^0.3.9 696 + 812 697 '@hono/node-server@1.13.7': 813 698 resolution: {integrity: sha512-kTfUMsoloVKtRA2fLiGSd9qBddmru9KadNyhJCwgKBxTiNkaAJEwkVN9KV/rS4HtmmNRtUh6P+YpmjRMl0d9vQ==} 814 699 engines: {node: '>=18.14.1'} 815 700 peerDependencies: 816 701 hono: ^4 817 702 818 - '@ioredis/commands@1.2.0': 819 - resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==} 820 - 821 703 '@isaacs/cliui@8.0.2': 822 704 resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 823 705 engines: {node: '>=12'} ··· 834 716 resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 835 717 engines: {node: '>=6.0.0'} 836 718 837 - '@jridgewell/source-map@0.3.6': 838 - resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} 839 - 840 719 '@jridgewell/sourcemap-codec@1.5.0': 841 720 resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 842 721 ··· 846 725 '@jridgewell/trace-mapping@0.3.9': 847 726 resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} 848 727 849 - '@mapbox/node-pre-gyp@1.0.11': 850 - resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==} 851 - hasBin: true 728 + '@libsql/client@0.14.0': 729 + resolution: {integrity: sha512-/9HEKfn6fwXB5aTEEoMeFh4CtG0ZzbncBb1e++OCdVpgKZ/xyMsIVYXm0w7Pv4RUel803vE6LwniB3PqD72R0Q==} 852 730 853 - '@netlify/functions@2.8.2': 854 - resolution: {integrity: sha512-DeoAQh8LuNPvBE4qsKlezjKj0PyXDryOFJfJKo3Z1qZLKzQ21sT314KQKPVjfvw6knqijj+IO+0kHXy/TJiqNA==} 855 - engines: {node: '>=14.0.0'} 731 + '@libsql/core@0.14.0': 732 + resolution: {integrity: sha512-nhbuXf7GP3PSZgdCY2Ecj8vz187ptHlZQ0VRc751oB2C1W8jQUXKKklvt7t1LJiUTQBVJuadF628eUk+3cRi4Q==} 856 733 857 - '@netlify/node-cookies@0.1.0': 858 - resolution: {integrity: sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==} 859 - engines: {node: ^14.16.0 || >=16.0.0} 860 - 861 - '@netlify/serverless-functions-api@1.26.1': 862 - resolution: {integrity: sha512-q3L9i3HoNfz0SGpTIS4zTcKBbRkxzCRpd169eyiTuk3IwcPC3/85mzLHranlKo2b+HYT0gu37YxGB45aD8A3Tw==} 863 - engines: {node: '>=18.0.0'} 864 - 865 - '@nodelib/fs.scandir@2.1.5': 866 - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 867 - engines: {node: '>= 8'} 868 - 869 - '@nodelib/fs.stat@2.0.5': 870 - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 871 - engines: {node: '>= 8'} 872 - 873 - '@nodelib/fs.walk@1.2.8': 874 - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 875 - engines: {node: '>= 8'} 876 - 877 - '@parcel/watcher-android-arm64@2.5.0': 878 - resolution: {integrity: sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==} 879 - engines: {node: '>= 10.0.0'} 880 - cpu: [arm64] 881 - os: [android] 882 - 883 - '@parcel/watcher-darwin-arm64@2.5.0': 884 - resolution: {integrity: sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==} 885 - engines: {node: '>= 10.0.0'} 734 + '@libsql/darwin-arm64@0.4.7': 735 + resolution: {integrity: sha512-yOL742IfWUlUevnI5PdnIT4fryY3LYTdLm56bnY0wXBw7dhFcnjuA7jrH3oSVz2mjZTHujxoITgAE7V6Z+eAbg==} 886 736 cpu: [arm64] 887 737 os: [darwin] 888 738 889 - '@parcel/watcher-darwin-x64@2.5.0': 890 - resolution: {integrity: sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==} 891 - engines: {node: '>= 10.0.0'} 739 + '@libsql/darwin-x64@0.4.7': 740 + resolution: {integrity: sha512-ezc7V75+eoyyH07BO9tIyJdqXXcRfZMbKcLCeF8+qWK5nP8wWuMcfOVywecsXGRbT99zc5eNra4NEx6z5PkSsA==} 892 741 cpu: [x64] 893 742 os: [darwin] 894 743 895 - '@parcel/watcher-freebsd-x64@2.5.0': 896 - resolution: {integrity: sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==} 897 - engines: {node: '>= 10.0.0'} 898 - cpu: [x64] 899 - os: [freebsd] 744 + '@libsql/hrana-client@0.7.0': 745 + resolution: {integrity: sha512-OF8fFQSkbL7vJY9rfuegK1R7sPgQ6kFMkDamiEccNUvieQ+3urzfDFI616oPl8V7T9zRmnTkSjMOImYCAVRVuw==} 900 746 901 - '@parcel/watcher-linux-arm-glibc@2.5.0': 902 - resolution: {integrity: sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==} 903 - engines: {node: '>= 10.0.0'} 904 - cpu: [arm] 905 - os: [linux] 747 + '@libsql/isomorphic-fetch@0.3.1': 748 + resolution: {integrity: sha512-6kK3SUK5Uu56zPq/Las620n5aS9xJq+jMBcNSOmjhNf/MUvdyji4vrMTqD7ptY7/4/CAVEAYDeotUz60LNQHtw==} 749 + engines: {node: '>=18.0.0'} 906 750 907 - '@parcel/watcher-linux-arm-musl@2.5.0': 908 - resolution: {integrity: sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==} 909 - engines: {node: '>= 10.0.0'} 910 - cpu: [arm] 911 - os: [linux] 751 + '@libsql/isomorphic-ws@0.1.5': 752 + resolution: {integrity: sha512-DtLWIH29onUYR00i0GlQ3UdcTRC6EP4u9w/h9LxpUZJWRMARk6dQwZ6Jkd+QdwVpuAOrdxt18v0K2uIYR3fwFg==} 912 753 913 - '@parcel/watcher-linux-arm64-glibc@2.5.0': 914 - resolution: {integrity: sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==} 915 - engines: {node: '>= 10.0.0'} 754 + '@libsql/linux-arm64-gnu@0.4.7': 755 + resolution: {integrity: sha512-WlX2VYB5diM4kFfNaYcyhw5y+UJAI3xcMkEUJZPtRDEIu85SsSFrQ+gvoKfcVh76B//ztSeEX2wl9yrjF7BBCA==} 916 756 cpu: [arm64] 917 757 os: [linux] 918 758 919 - '@parcel/watcher-linux-arm64-musl@2.5.0': 920 - resolution: {integrity: sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==} 921 - engines: {node: '>= 10.0.0'} 759 + '@libsql/linux-arm64-musl@0.4.7': 760 + resolution: {integrity: sha512-6kK9xAArVRlTCpWeqnNMCoXW1pe7WITI378n4NpvU5EJ0Ok3aNTIC2nRPRjhro90QcnmLL1jPcrVwO4WD1U0xw==} 922 761 cpu: [arm64] 923 762 os: [linux] 924 763 925 - '@parcel/watcher-linux-x64-glibc@2.5.0': 926 - resolution: {integrity: sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==} 927 - engines: {node: '>= 10.0.0'} 764 + '@libsql/linux-x64-gnu@0.4.7': 765 + resolution: {integrity: sha512-CMnNRCmlWQqqzlTw6NeaZXzLWI8bydaXDke63JTUCvu8R+fj/ENsLrVBtPDlxQ0wGsYdXGlrUCH8Qi9gJep0yQ==} 928 766 cpu: [x64] 929 767 os: [linux] 930 768 931 - '@parcel/watcher-linux-x64-musl@2.5.0': 932 - resolution: {integrity: sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==} 933 - engines: {node: '>= 10.0.0'} 769 + '@libsql/linux-x64-musl@0.4.7': 770 + resolution: {integrity: sha512-nI6tpS1t6WzGAt1Kx1n1HsvtBbZ+jHn0m7ogNNT6pQHZQj7AFFTIMeDQw/i/Nt5H38np1GVRNsFe99eSIMs9XA==} 934 771 cpu: [x64] 935 772 os: [linux] 936 773 937 - '@parcel/watcher-wasm@2.3.0': 938 - resolution: {integrity: sha512-ejBAX8H0ZGsD8lSICDNyMbSEtPMWgDL0WFCt/0z7hyf5v8Imz4rAM8xY379mBsECkq/Wdqa5WEDLqtjZ+6NxfA==} 939 - engines: {node: '>= 10.0.0'} 940 - bundledDependencies: 941 - - napi-wasm 942 - 943 - '@parcel/watcher-wasm@2.5.0': 944 - resolution: {integrity: sha512-Z4ouuR8Pfggk1EYYbTaIoxc+Yv4o7cGQnH0Xy8+pQ+HbiW+ZnwhcD2LPf/prfq1nIWpAxjOkQ8uSMFWMtBLiVQ==} 945 - engines: {node: '>= 10.0.0'} 946 - bundledDependencies: 947 - - napi-wasm 948 - 949 - '@parcel/watcher-win32-arm64@2.5.0': 950 - resolution: {integrity: sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==} 951 - engines: {node: '>= 10.0.0'} 952 - cpu: [arm64] 953 - os: [win32] 954 - 955 - '@parcel/watcher-win32-ia32@2.5.0': 956 - resolution: {integrity: sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==} 957 - engines: {node: '>= 10.0.0'} 958 - cpu: [ia32] 959 - os: [win32] 960 - 961 - '@parcel/watcher-win32-x64@2.5.0': 962 - resolution: {integrity: sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==} 963 - engines: {node: '>= 10.0.0'} 774 + '@libsql/win32-x64-msvc@0.4.7': 775 + resolution: {integrity: sha512-7pJzOWzPm6oJUxml+PCDRzYQ4A1hTMHAciTAHfFK4fkbDZX33nWPVG7Y3vqdKtslcwAzwmrNDc6sXy2nwWnbiw==} 964 776 cpu: [x64] 965 777 os: [win32] 966 778 967 - '@parcel/watcher@2.5.0': 968 - resolution: {integrity: sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==} 969 - engines: {node: '>= 10.0.0'} 779 + '@neon-rs/load@0.0.4': 780 + resolution: {integrity: sha512-kTPhdZyTQxB+2wpiRcFWrDcejc4JI6tkPuS7UZCG4l6Zvc5kU/gGQ/ozvHTh1XR5tS+UlfAfGuPajjzQjCiHCw==} 970 781 971 782 '@pkgjs/parseargs@0.11.0': 972 783 resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 973 784 engines: {node: '>=14'} 974 785 975 - '@redocly/ajv@8.11.2': 976 - resolution: {integrity: sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==} 977 - 978 - '@redocly/config@0.17.1': 979 - resolution: {integrity: sha512-CEmvaJuG7pm2ylQg53emPmtgm4nW2nxBgwXzbVEHpGas/lGnMyN8Zlkgiz6rPw0unASg6VW3wlz27SOL5XFHYQ==} 980 - 981 - '@redocly/openapi-core@1.25.15': 982 - resolution: {integrity: sha512-/dpr5zpGj2t1Bf7EIXEboRZm1hsJZBQfv3Q1pkivtdAEg3if2khv+b9gY68aquC6cM/2aQY2kMLy8LlY2tn+Og==} 983 - engines: {node: '>=14.19.0', npm: '>=7.0.0'} 984 - 985 - '@rollup/plugin-alias@5.1.1': 986 - resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==} 987 - engines: {node: '>=14.0.0'} 988 - peerDependencies: 989 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 990 - peerDependenciesMeta: 991 - rollup: 992 - optional: true 993 - 994 - '@rollup/plugin-commonjs@28.0.1': 995 - resolution: {integrity: sha512-+tNWdlWKbpB3WgBN7ijjYkq9X5uhjmcvyjEght4NmH5fAU++zfQzAJ6wumLS+dNcvwEZhKx2Z+skY8m7v0wGSA==} 996 - engines: {node: '>=16.0.0 || 14 >= 14.17'} 997 - peerDependencies: 998 - rollup: ^2.68.0||^3.0.0||^4.0.0 999 - peerDependenciesMeta: 1000 - rollup: 1001 - optional: true 1002 - 1003 - '@rollup/plugin-inject@5.0.5': 1004 - resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} 1005 - engines: {node: '>=14.0.0'} 1006 - peerDependencies: 1007 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 1008 - peerDependenciesMeta: 1009 - rollup: 1010 - optional: true 1011 - 1012 - '@rollup/plugin-json@6.1.0': 1013 - resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==} 1014 - engines: {node: '>=14.0.0'} 1015 - peerDependencies: 1016 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 1017 - peerDependenciesMeta: 1018 - rollup: 1019 - optional: true 1020 - 1021 - '@rollup/plugin-node-resolve@15.3.0': 1022 - resolution: {integrity: sha512-9eO5McEICxMzJpDW9OnMYSv4Sta3hmt7VtBFz5zR9273suNOydOyq/FrGeGy+KsTRFm8w0SLVhzig2ILFT63Ag==} 1023 - engines: {node: '>=14.0.0'} 1024 - peerDependencies: 1025 - rollup: ^2.78.0||^3.0.0||^4.0.0 1026 - peerDependenciesMeta: 1027 - rollup: 1028 - optional: true 1029 - 1030 - '@rollup/plugin-replace@6.0.1': 1031 - resolution: {integrity: sha512-2sPh9b73dj5IxuMmDAsQWVFT7mR+yoHweBaXG2W/R8vQ+IWZlnaI7BR7J6EguVQUp1hd8Z7XuozpDjEKQAAC2Q==} 1032 - engines: {node: '>=14.0.0'} 1033 - peerDependencies: 1034 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 1035 - peerDependenciesMeta: 1036 - rollup: 1037 - optional: true 1038 - 1039 - '@rollup/plugin-terser@0.4.4': 1040 - resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==} 1041 - engines: {node: '>=14.0.0'} 1042 - peerDependencies: 1043 - rollup: ^2.0.0||^3.0.0||^4.0.0 1044 - peerDependenciesMeta: 1045 - rollup: 1046 - optional: true 1047 - 1048 - '@rollup/pluginutils@5.1.3': 1049 - resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==} 1050 - engines: {node: '>=14.0.0'} 1051 - peerDependencies: 1052 - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 1053 - peerDependenciesMeta: 1054 - rollup: 1055 - optional: true 1056 - 1057 786 '@rollup/rollup-android-arm-eabi@4.28.0': 1058 787 resolution: {integrity: sha512-wLJuPLT6grGZsy34g4N1yRfYeouklTgPhH1gWXCYspenKYD0s3cR99ZevOGw5BexMNywkbV3UkjADisozBmpPQ==} 1059 788 cpu: [arm] ··· 1144 873 cpu: [x64] 1145 874 os: [win32] 1146 875 1147 - '@sindresorhus/merge-streams@2.3.0': 1148 - resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} 1149 - engines: {node: '>=18'} 876 + '@skyware/jetstream@0.2.1': 877 + resolution: {integrity: sha512-qmQkBnMYG3+XBTLUDUKTWMS0QpwCFSZh66fvQRn+xEqUQ2CXB2ELo4El0tgVvdT4+glk4nfzVG45L6Op9VURow==} 878 + 879 + '@swc/core-darwin-arm64@1.9.3': 880 + resolution: {integrity: sha512-hGfl/KTic/QY4tB9DkTbNuxy5cV4IeejpPD4zo+Lzt4iLlDWIeANL4Fkg67FiVceNJboqg48CUX+APhDHO5G1w==} 881 + engines: {node: '>=10'} 882 + cpu: [arm64] 883 + os: [darwin] 884 + 885 + '@swc/core-darwin-x64@1.9.3': 886 + resolution: {integrity: sha512-IaRq05ZLdtgF5h9CzlcgaNHyg4VXuiStnOFpfNEMuI5fm5afP2S0FHq8WdakUz5WppsbddTdplL+vpeApt/WCQ==} 887 + engines: {node: '>=10'} 888 + cpu: [x64] 889 + os: [darwin] 890 + 891 + '@swc/core-linux-arm-gnueabihf@1.9.3': 892 + resolution: {integrity: sha512-Pbwe7xYprj/nEnZrNBvZfjnTxlBIcfApAGdz2EROhjpPj+FBqBa3wOogqbsuGGBdCphf8S+KPprL1z+oDWkmSQ==} 893 + engines: {node: '>=10'} 894 + cpu: [arm] 895 + os: [linux] 896 + 897 + '@swc/core-linux-arm64-gnu@1.9.3': 898 + resolution: {integrity: sha512-AQ5JZiwNGVV/2K2TVulg0mw/3LYfqpjZO6jDPtR2evNbk9Yt57YsVzS+3vHSlUBQDRV9/jqMuZYVU3P13xrk+g==} 899 + engines: {node: '>=10'} 900 + cpu: [arm64] 901 + os: [linux] 902 + 903 + '@swc/core-linux-arm64-musl@1.9.3': 904 + resolution: {integrity: sha512-tzVH480RY6RbMl/QRgh5HK3zn1ZTFsThuxDGo6Iuk1MdwIbdFYUY034heWUTI4u3Db97ArKh0hNL0xhO3+PZdg==} 905 + engines: {node: '>=10'} 906 + cpu: [arm64] 907 + os: [linux] 1150 908 1151 - '@tanstack/history@1.85.3': 1152 - resolution: {integrity: sha512-62z1qXIILvjdkQyMTVPFQedHOc6kQgunz9GHV9jSy2z1ixsDqyI9GxNj3AWx8Ucmhjwd5/P+v3XN10bsb+FzRA==} 1153 - engines: {node: '>=12'} 909 + '@swc/core-linux-x64-gnu@1.9.3': 910 + resolution: {integrity: sha512-ivXXBRDXDc9k4cdv10R21ccBmGebVOwKXT/UdH1PhxUn9m/h8erAWjz5pcELwjiMf27WokqPgaWVfaclDbgE+w==} 911 + engines: {node: '>=10'} 912 + cpu: [x64] 913 + os: [linux] 1154 914 1155 - '@tanstack/react-cross-context@1.85.3': 1156 - resolution: {integrity: sha512-NrCuL+borzALz49tKHPqCX+C2djWFs5ljVW8sO3LoUR+aTiV5Bm75N/goEDjNM7f+7RiUTtOQRLMhPpANSUKCg==} 1157 - peerDependencies: 1158 - react: '>=18' 1159 - react-dom: '>=18' 915 + '@swc/core-linux-x64-musl@1.9.3': 916 + resolution: {integrity: sha512-ILsGMgfnOz1HwdDz+ZgEuomIwkP1PHT6maigZxaCIuC6OPEhKE8uYna22uU63XvYcLQvZYDzpR3ms47WQPuNEg==} 917 + engines: {node: '>=10'} 918 + cpu: [x64] 919 + os: [linux] 1160 920 1161 - '@tanstack/react-router@1.85.5': 1162 - resolution: {integrity: sha512-OCPka0mj+lPCUPiZmQUavRKu7NB8/HrDZIl8MHpjgzkvSOV0U+mszUl3FJxiMb1vXOJaY0/gny/96YbCzcsgdA==} 1163 - engines: {node: '>=12'} 1164 - peerDependencies: 1165 - '@tanstack/router-generator': 1.85.3 1166 - react: '>=18' 1167 - react-dom: '>=18' 1168 - peerDependenciesMeta: 1169 - '@tanstack/router-generator': 1170 - optional: true 921 + '@swc/core-win32-arm64-msvc@1.9.3': 922 + resolution: {integrity: sha512-e+XmltDVIHieUnNJHtspn6B+PCcFOMYXNJB1GqoCcyinkEIQNwC8KtWgMqUucUbEWJkPc35NHy9k8aCXRmw9Kg==} 923 + engines: {node: '>=10'} 924 + cpu: [arm64] 925 + os: [win32] 1171 926 1172 - '@tanstack/react-store@0.6.1': 1173 - resolution: {integrity: sha512-6gOopOpPp1cAXkEyTEv6tMbAywwFunvIdCKN/SpEiButUayjXU+Q5Sp5Y3hREN3VMR4OA5+RI5SPhhJoqP9e4w==} 1174 - peerDependencies: 1175 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 1176 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 927 + '@swc/core-win32-ia32-msvc@1.9.3': 928 + resolution: {integrity: sha512-rqpzNfpAooSL4UfQnHhkW8aL+oyjqJniDP0qwZfGnjDoJSbtPysHg2LpcOBEdSnEH+uIZq6J96qf0ZFD8AGfXA==} 929 + engines: {node: '>=10'} 930 + cpu: [ia32] 931 + os: [win32] 1177 932 1178 - '@tanstack/router-generator@1.85.3': 1179 - resolution: {integrity: sha512-ka3hO1EPgV4h2hhECUHi4PGyCCUoo70Masb1/idyL7zzkDX/OPZnRd7JxxyneuRGKJ+GI//YWevqjAemyYeg1A==} 1180 - engines: {node: '>=12'} 933 + '@swc/core-win32-x64-msvc@1.9.3': 934 + resolution: {integrity: sha512-3YJJLQ5suIEHEKc1GHtqVq475guiyqisKSoUnoaRtxkDaW5g1yvPt9IoSLOe2mRs7+FFhGGU693RsBUSwOXSdQ==} 935 + engines: {node: '>=10'} 936 + cpu: [x64] 937 + os: [win32] 1181 938 1182 - '@tanstack/router-plugin@1.85.3': 1183 - resolution: {integrity: sha512-se75j7NZ+I44dcbi6CayvWhfp0r/3pfqgHNYgEQ5BSSPTtXYDaZXxFm5eU6oNxej8IqkzEZS5CMSkq9iHRvaUA==} 1184 - engines: {node: '>=12'} 939 + '@swc/core@1.9.3': 940 + resolution: {integrity: sha512-oRj0AFePUhtatX+BscVhnzaAmWjpfAeySpM1TCbxA1rtBDeH/JDhi5yYzAKneDYtVtBvA7ApfeuzhMC9ye4xSg==} 941 + engines: {node: '>=10'} 1185 942 peerDependencies: 1186 - '@rsbuild/core': '>=1.0.2' 1187 - vite: '>=5.0.0' 1188 - webpack: '>=5.92.0' 943 + '@swc/helpers': '*' 1189 944 peerDependenciesMeta: 1190 - '@rsbuild/core': 1191 - optional: true 1192 - vite: 1193 - optional: true 1194 - webpack: 945 + '@swc/helpers': 1195 946 optional: true 1196 947 1197 - '@tanstack/start-vite-plugin@1.85.3': 1198 - resolution: {integrity: sha512-/hHPYW3JShufTKW9mZcTgnGWclKfsbd7GbOgbVZgVwyKg3qNwYnc8pUMC8ycBsacG/ClDBTornEOPYygtbcnWg==} 1199 - engines: {node: '>=12'} 948 + '@swc/counter@0.1.3': 949 + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} 1200 950 1201 - '@tanstack/start@1.85.5': 1202 - resolution: {integrity: sha512-1i9Po3HoSeDf7cfJk4m2ODdE8uLscmjsVcvZpdxWMMaLR5Mso0mHc6hUqlJKjNRQp2TKNM1v7gZdTkiTjkGJEg==} 1203 - engines: {node: '>=12'} 1204 - peerDependencies: 1205 - react: '>=18.0.0 || >=19.0.0' 1206 - react-dom: '>=18.0.0 || >=19.0.0' 1207 - 1208 - '@tanstack/store@0.6.0': 1209 - resolution: {integrity: sha512-+m2OBglsjXcLmmKOX6/9v8BDOCtyxhMmZLsRUDswOOSdIIR9mvv6i0XNKsmTh3AlYU8c1mRcodC8/Vyf+69VlQ==} 1210 - 1211 - '@tanstack/virtual-file-routes@1.81.9': 1212 - resolution: {integrity: sha512-jV5mWJrsh3QXHpb/by6udSqwva0qK50uYHpIXvKsLaxnlbjbLfflfPjFyRWXbMtZsnzCjSUqp5pm5/p+Wpaerg==} 1213 - engines: {node: '>=12'} 951 + '@swc/types@0.1.17': 952 + resolution: {integrity: sha512-V5gRru+aD8YVyCOMAjMpWR1Ui577DD5KSJsHP8RAxopAH22jFz6GZd/qxqjO6MJHQhcsjvjOFXyDhyLQUnMveQ==} 1214 953 1215 954 '@tsconfig/node10@1.0.11': 1216 955 resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} ··· 1224 963 '@tsconfig/node16@1.0.4': 1225 964 resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} 1226 965 1227 - '@types/babel__code-frame@7.0.6': 1228 - resolution: {integrity: sha512-Anitqkl3+KrzcW2k77lRlg/GfLZLWXBuNgbEcIOU6M92yw42vsd3xV/Z/yAHEj8m+KUjL6bWOVOFqX8PFPJ4LA==} 1229 - 1230 - '@types/babel__core@7.20.5': 1231 - resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} 1232 - 1233 - '@types/babel__generator@7.6.8': 1234 - resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} 1235 - 1236 - '@types/babel__template@7.4.4': 1237 - resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} 1238 - 1239 - '@types/babel__traverse@7.20.6': 1240 - resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} 1241 - 1242 - '@types/braces@3.0.4': 1243 - resolution: {integrity: sha512-0WR3b8eaISjEW7RpZnclONaLFDf7buaowRHdqLp4vLj54AsSAYWfh3DRbfiYJY9XDxMgx1B4sE1Afw2PGpuHOA==} 1244 - 1245 966 '@types/estree@1.0.6': 1246 967 resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 1247 968 1248 - '@types/http-proxy@1.17.15': 1249 - resolution: {integrity: sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==} 1250 - 1251 - '@types/micromatch@4.0.9': 1252 - resolution: {integrity: sha512-7V+8ncr22h4UoYRLnLXSpTxjQrNUXtWHGeMPRJt1nULXI57G9bIcpyrHlmrQ7QK24EyyuXvYcSSWAM8GA9nqCg==} 1253 - 1254 969 '@types/node@22.10.1': 1255 970 resolution: {integrity: sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==} 1256 971 1257 - '@types/prop-types@15.7.13': 1258 - resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==} 1259 - 1260 - '@types/react-dom@18.3.1': 1261 - resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==} 1262 - 1263 - '@types/react@18.3.12': 1264 - resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==} 1265 - 1266 - '@types/resolve@1.20.2': 1267 - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} 1268 - 1269 - '@vercel/nft@0.27.7': 1270 - resolution: {integrity: sha512-FG6H5YkP4bdw9Ll1qhmbxuE8KwW2E/g8fJpM183fWQLeVDGqzeywMIeJ9h2txdWZ03psgWMn6QymTxaDLmdwUg==} 1271 - engines: {node: '>=16'} 1272 - hasBin: true 1273 - 1274 - '@vinxi/listhen@1.5.6': 1275 - resolution: {integrity: sha512-WSN1z931BtasZJlgPp704zJFnQFRg7yzSjkm3MzAWQYe4uXFXlFr1hc5Ac2zae5/HDOz5x1/zDM5Cb54vTCnWw==} 1276 - hasBin: true 1277 - 1278 - '@vinxi/plugin-directives@0.4.3': 1279 - resolution: {integrity: sha512-Ey+TRIwyk8871PKhQel8NyZ9B6N0Tvhjo1QIttTyrV0d7BfUpri5GyGygmBY7fHClSE/vqaNCCZIKpTL3NJAEg==} 1280 - peerDependencies: 1281 - vinxi: ^0.4.3 1282 - 1283 - '@vinxi/react-server-dom@0.0.3': 1284 - resolution: {integrity: sha512-ZJJZtuw1TbGFOBuDZBHmM3w40yzFpNFWoPCoC2QtZBkYEQXYF9sOHHxkjTfNvk4rSn/zaUAs6KNUbVRvebq/1Q==} 1285 - engines: {node: '>=0.10.0'} 1286 - peerDependencies: 1287 - react: 0.0.0-experimental-035a41c4e-20230704 1288 - react-dom: 0.0.0-experimental-035a41c4e-20230704 1289 - vite: ^4.3.9 1290 - 1291 - '@vinxi/react@0.2.5': 1292 - resolution: {integrity: sha512-Ubjv/JfYWTxFbuaHxKOeq6hQMuSuIH6eZXRf27wb82YWM82z3VY1nwZzTHgyveHg/EPSOK0p8LUmbw9758xTlw==} 1293 - 1294 - '@vinxi/server-components@0.4.3': 1295 - resolution: {integrity: sha512-KVEnQtb+ZlXIEKaUw4r4WZl/rqFeZqSyIRklY1wFiPw7GCJUxbXzISpsJ+HwDhYi9k4n8uZJyQyLHGkoiEiolg==} 1296 - peerDependencies: 1297 - vinxi: ^0.4.3 1298 - 1299 - '@vinxi/server-functions@0.4.3': 1300 - resolution: {integrity: sha512-kVYrOrCMHwGvHRwpaeW2/PE7URcGtz4Rk/hIHa2xjt5PGopzzB/Y5GC8YgZjtqSRqo0ElAKsEik7UE6CXH3HXA==} 1301 - peerDependencies: 1302 - vinxi: ^0.4.3 1303 - 1304 - '@vitejs/plugin-react@4.3.4': 1305 - resolution: {integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==} 1306 - engines: {node: ^14.18.0 || >=16.0.0} 1307 - peerDependencies: 1308 - vite: ^4.2.0 || ^5.0.0 || ^6.0.0 1309 - 1310 - abbrev@1.1.1: 1311 - resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} 1312 - 1313 - abort-controller@3.0.0: 1314 - resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} 1315 - engines: {node: '>=6.5'} 1316 - 1317 - acorn-import-attributes@1.9.5: 1318 - resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==} 1319 - peerDependencies: 1320 - acorn: ^8 1321 - 1322 - acorn-jsx@5.3.2: 1323 - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 1324 - peerDependencies: 1325 - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 1326 - 1327 - acorn-loose@8.4.0: 1328 - resolution: {integrity: sha512-M0EUka6rb+QC4l9Z3T0nJEzNOO7JcoJlYMrBlyBCiFSXRyxjLKayd4TbQs2FDRWQU1h9FR7QVNHt+PEaoNL5rQ==} 1329 - engines: {node: '>=0.4.0'} 1330 - 1331 - acorn-typescript@1.4.13: 1332 - resolution: {integrity: sha512-xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q==} 1333 - peerDependencies: 1334 - acorn: '>=8.9.0' 972 + '@types/ws@8.5.13': 973 + resolution: {integrity: sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==} 1335 974 1336 975 acorn-walk@8.3.4: 1337 976 resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} ··· 1342 981 engines: {node: '>=0.4.0'} 1343 982 hasBin: true 1344 983 1345 - agent-base@6.0.2: 1346 - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} 1347 - engines: {node: '>= 6.0.0'} 1348 - 1349 - agent-base@7.1.1: 1350 - resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} 1351 - engines: {node: '>= 14'} 1352 - 1353 - ansi-align@3.0.1: 1354 - resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} 1355 - 1356 - ansi-colors@4.1.3: 1357 - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} 1358 - engines: {node: '>=6'} 1359 - 1360 984 ansi-regex@5.0.1: 1361 985 resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 1362 986 engines: {node: '>=8'} ··· 1376 1000 any-promise@1.3.0: 1377 1001 resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 1378 1002 1379 - anymatch@3.1.3: 1380 - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 1381 - engines: {node: '>= 8'} 1382 - 1383 - aproba@2.0.0: 1384 - resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} 1385 - 1386 - archiver-utils@5.0.2: 1387 - resolution: {integrity: sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==} 1388 - engines: {node: '>= 14'} 1389 - 1390 - archiver@7.0.1: 1391 - resolution: {integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==} 1392 - engines: {node: '>= 14'} 1393 - 1394 - are-we-there-yet@2.0.0: 1395 - resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} 1396 - engines: {node: '>=10'} 1397 - deprecated: This package is no longer supported. 1398 - 1399 1003 arg@4.1.3: 1400 1004 resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} 1401 1005 1402 - arg@5.0.2: 1403 - resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 1404 - 1405 - argparse@2.0.1: 1406 - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 1407 - 1408 - ast-types@0.16.1: 1409 - resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} 1410 - engines: {node: '>=4'} 1411 - 1412 - astring@1.9.0: 1413 - resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==} 1414 - hasBin: true 1415 - 1416 - async-sema@3.1.1: 1417 - resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==} 1418 - 1419 - async@3.2.6: 1420 - resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} 1421 - 1422 1006 atomic-sleep@1.0.0: 1423 1007 resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} 1424 1008 engines: {node: '>=8.0.0'} 1425 1009 1426 - autoprefixer@10.4.20: 1427 - resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==} 1428 - engines: {node: ^10 || ^12 || >=14} 1429 - hasBin: true 1430 - peerDependencies: 1431 - postcss: ^8.1.0 1432 - 1433 - b4a@1.6.7: 1434 - resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==} 1435 - 1436 - babel-dead-code-elimination@1.0.6: 1437 - resolution: {integrity: sha512-JxFi9qyRJpN0LjEbbjbN8g0ux71Qppn9R8Qe3k6QzHg2CaKsbUQtbn307LQGiDLGjV6JCtEFqfxzVig9MyDCHQ==} 1438 - 1439 1010 balanced-match@1.0.2: 1440 1011 resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 1441 1012 1442 - bare-events@2.5.0: 1443 - resolution: {integrity: sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==} 1444 - 1445 - base64-js@1.5.1: 1446 - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 1447 - 1448 - binary-extensions@2.3.0: 1449 - resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 1450 - engines: {node: '>=8'} 1451 - 1452 - bindings@1.5.0: 1453 - resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} 1454 - 1455 - boxen@7.1.1: 1456 - resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==} 1457 - engines: {node: '>=14.16'} 1458 - 1459 - brace-expansion@1.1.11: 1460 - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 1461 - 1462 1013 brace-expansion@2.0.1: 1463 1014 resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 1464 1015 1465 - braces@3.0.3: 1466 - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 1467 - engines: {node: '>=8'} 1468 - 1469 - browserslist@4.24.2: 1470 - resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==} 1471 - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 1472 - hasBin: true 1473 - 1474 - buffer-crc32@1.0.0: 1475 - resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==} 1476 - engines: {node: '>=8.0.0'} 1477 - 1478 1016 buffer-from@1.1.2: 1479 1017 resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} 1480 1018 1481 - buffer@6.0.3: 1482 - resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} 1019 + bufferutil@4.0.8: 1020 + resolution: {integrity: sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==} 1021 + engines: {node: '>=6.14.2'} 1483 1022 1484 1023 bundle-require@5.0.0: 1485 1024 resolution: {integrity: sha512-GuziW3fSSmopcx4KRymQEJVbZUfqlCqcq7dvs6TYwKRZiegK/2buMxQTPs6MGlNv50wms1699qYO54R8XfRX4w==} ··· 1487 1026 peerDependencies: 1488 1027 esbuild: '>=0.18' 1489 1028 1490 - c12@2.0.1: 1491 - resolution: {integrity: sha512-Z4JgsKXHG37C6PYUtIxCfLJZvo6FyhHJoClwwb9ftUkLpPSkuYqn6Tr+vnaN8hymm0kIbcg6Ey3kv/Q71k5w/A==} 1492 - peerDependencies: 1493 - magicast: ^0.3.5 1494 - peerDependenciesMeta: 1495 - magicast: 1496 - optional: true 1497 - 1498 1029 cac@6.7.14: 1499 1030 resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 1500 1031 engines: {node: '>=8'} 1501 1032 1502 - camelcase-css@2.0.1: 1503 - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 1504 - engines: {node: '>= 6'} 1505 - 1506 - camelcase@7.0.1: 1507 - resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==} 1508 - engines: {node: '>=14.16'} 1509 - 1510 - caniuse-lite@1.0.30001686: 1511 - resolution: {integrity: sha512-Y7deg0Aergpa24M3qLC5xjNklnKnhsmSyR/V89dLZ1n0ucJIFNs7PgR2Yfa/Zf6W79SbBicgtGxZr2juHkEUIA==} 1512 - 1513 - chalk@5.3.0: 1514 - resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} 1515 - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 1516 - 1517 - change-case@5.4.4: 1518 - resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==} 1519 - 1520 - chokidar@3.6.0: 1521 - resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 1522 - engines: {node: '>= 8.10.0'} 1523 - 1524 1033 chokidar@4.0.1: 1525 1034 resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==} 1526 1035 engines: {node: '>= 14.16.0'} 1527 1036 1528 - chownr@2.0.0: 1529 - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} 1530 - engines: {node: '>=10'} 1531 - 1532 - citty@0.1.6: 1533 - resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} 1534 - 1535 - class-variance-authority@0.7.1: 1536 - resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==} 1537 - 1538 - cli-boxes@3.0.0: 1539 - resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} 1540 - engines: {node: '>=10'} 1541 - 1542 - clipboardy@4.0.0: 1543 - resolution: {integrity: sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==} 1544 - engines: {node: '>=18'} 1545 - 1546 - cliui@8.0.1: 1547 - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 1548 - engines: {node: '>=12'} 1549 - 1550 - clsx@2.1.1: 1551 - resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} 1552 - engines: {node: '>=6'} 1553 - 1554 - cluster-key-slot@1.1.2: 1555 - resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==} 1556 - engines: {node: '>=0.10.0'} 1557 - 1558 1037 color-convert@2.0.1: 1559 1038 resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 1560 1039 engines: {node: '>=7.0.0'} ··· 1562 1041 color-name@1.1.4: 1563 1042 resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 1564 1043 1565 - color-support@1.1.3: 1566 - resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} 1567 - hasBin: true 1568 - 1569 - colorette@1.4.0: 1570 - resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} 1571 - 1572 1044 colorette@2.0.20: 1573 1045 resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} 1574 - 1575 - commander@2.20.3: 1576 - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} 1577 1046 1578 1047 commander@4.1.1: 1579 1048 resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 1580 1049 engines: {node: '>= 6'} 1581 1050 1582 - commondir@1.0.1: 1583 - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} 1584 - 1585 - compatx@0.1.8: 1586 - resolution: {integrity: sha512-jcbsEAR81Bt5s1qOFymBufmCbXCXbk0Ql+K5ouj6gCyx2yHlu6AgmGIi9HxfKixpUDO5bCFJUHQ5uM6ecbTebw==} 1587 - 1588 - compress-commons@6.0.2: 1589 - resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==} 1590 - engines: {node: '>= 14'} 1591 - 1592 - concat-map@0.0.1: 1593 - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 1594 - 1595 - confbox@0.1.8: 1596 - resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} 1597 - 1598 1051 consola@3.2.3: 1599 1052 resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} 1600 1053 engines: {node: ^14.18.0 || >=16.10.0} 1601 1054 1602 - console-control-strings@1.1.0: 1603 - resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} 1604 - 1605 - convert-source-map@2.0.0: 1606 - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 1607 - 1608 - cookie-es@1.2.2: 1609 - resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==} 1610 - 1611 - core-util-is@1.0.3: 1612 - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 1613 - 1614 - crc-32@1.2.2: 1615 - resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} 1616 - engines: {node: '>=0.8'} 1617 - hasBin: true 1618 - 1619 - crc32-stream@6.0.0: 1620 - resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==} 1621 - engines: {node: '>= 14'} 1622 - 1623 1055 create-require@1.1.1: 1624 1056 resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} 1625 1057 1626 - croner@9.0.0: 1627 - resolution: {integrity: sha512-onMB0OkDjkXunhdW9htFjEhqrD54+M94i6ackoUkjHKbRnXdyEyKRelp4nJ1kAz32+s27jP1FsebpJCVl0BsvA==} 1628 - engines: {node: '>=18.0'} 1629 - 1630 1058 cross-spawn@7.0.6: 1631 1059 resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 1632 1060 engines: {node: '>= 8'} 1633 1061 1634 - crossws@0.2.4: 1635 - resolution: {integrity: sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==} 1636 - peerDependencies: 1637 - uWebSockets.js: '*' 1638 - peerDependenciesMeta: 1639 - uWebSockets.js: 1640 - optional: true 1641 - 1642 - crossws@0.3.1: 1643 - resolution: {integrity: sha512-HsZgeVYaG+b5zA+9PbIPGq4+J/CJynJuearykPsXx4V/eMhyQ5EDVg3Ak2FBZtVXCiOLu/U7IiwDHTr9MA+IKw==} 1644 - 1645 - cssesc@3.0.0: 1646 - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 1647 - engines: {node: '>=4'} 1648 - hasBin: true 1649 - 1650 - csstype@3.1.3: 1651 - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 1062 + data-uri-to-buffer@4.0.1: 1063 + resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} 1064 + engines: {node: '>= 12'} 1652 1065 1653 1066 dateformat@4.6.3: 1654 1067 resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==} 1655 1068 1656 - dax-sh@0.39.2: 1657 - resolution: {integrity: sha512-gpuGEkBQM+5y6p4cWaw9+ePy5TNon+fdwFVtTI8leU3UhwhsBfPewRxMXGuQNC+M2b/MDGMlfgpqynkcd0C3FQ==} 1658 - 1659 - db0@0.2.1: 1660 - resolution: {integrity: sha512-BWSFmLaCkfyqbSEZBQINMVNjCVfrogi7GQ2RSy1tmtfK9OXlsup6lUMwLsqSD7FbAjD04eWFdXowSHHUp6SE/Q==} 1661 - peerDependencies: 1662 - '@electric-sql/pglite': '*' 1663 - '@libsql/client': '*' 1664 - better-sqlite3: '*' 1665 - drizzle-orm: '*' 1666 - mysql2: '*' 1667 - peerDependenciesMeta: 1668 - '@electric-sql/pglite': 1669 - optional: true 1670 - '@libsql/client': 1671 - optional: true 1672 - better-sqlite3: 1673 - optional: true 1674 - drizzle-orm: 1675 - optional: true 1676 - mysql2: 1677 - optional: true 1678 - 1679 - debug@2.6.9: 1680 - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} 1681 - peerDependencies: 1682 - supports-color: '*' 1683 - peerDependenciesMeta: 1684 - supports-color: 1685 - optional: true 1686 - 1687 1069 debug@4.3.7: 1688 1070 resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} 1689 1071 engines: {node: '>=6.0'} ··· 1693 1075 supports-color: 1694 1076 optional: true 1695 1077 1696 - deepmerge@4.3.1: 1697 - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} 1698 - engines: {node: '>=0.10.0'} 1699 - 1700 - define-lazy-prop@2.0.0: 1701 - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} 1078 + detect-libc@2.0.2: 1079 + resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==} 1702 1080 engines: {node: '>=8'} 1703 1081 1704 - defu@6.1.4: 1705 - resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} 1706 - 1707 - delegates@1.0.0: 1708 - resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} 1709 - 1710 - denque@2.1.0: 1711 - resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==} 1712 - engines: {node: '>=0.10'} 1713 - 1714 - depd@2.0.0: 1715 - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} 1716 - engines: {node: '>= 0.8'} 1717 - 1718 - destr@2.0.3: 1719 - resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==} 1720 - 1721 - destroy@1.2.0: 1722 - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} 1723 - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} 1724 - 1725 - detect-libc@1.0.3: 1726 - resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} 1727 - engines: {node: '>=0.10'} 1728 - hasBin: true 1729 - 1730 - detect-libc@2.0.3: 1731 - resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} 1732 - engines: {node: '>=8'} 1733 - 1734 - didyoumean@1.2.2: 1735 - resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 1736 - 1737 1082 diff@4.0.2: 1738 1083 resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} 1739 1084 engines: {node: '>=0.3.1'} 1740 1085 1741 - dlv@1.1.3: 1742 - resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 1743 - 1744 - dot-prop@9.0.0: 1745 - resolution: {integrity: sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ==} 1746 - engines: {node: '>=18'} 1086 + drizzle-kit@0.29.0: 1087 + resolution: {integrity: sha512-WjH0eC7/WKl8hucZPl/H5Df6WbUs1KJdM/vfX6bCjn1lOePrbeeroc18dzAVXdZpvgYx0ywJcFOypoC5MfYAYg==} 1088 + hasBin: true 1747 1089 1748 - dotenv@16.4.7: 1749 - resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==} 1750 - engines: {node: '>=12'} 1751 - 1752 - duplexer@0.1.2: 1753 - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} 1090 + drizzle-orm@0.37.0: 1091 + resolution: {integrity: sha512-AsCNACQ/T2CyZUkrBRUqFT2ibHJ9ZHz3+lzYJFFn3hnj7ylIeItMz5kacRG89uSE74nXYShqehr6u+6ks4JR1A==} 1092 + peerDependencies: 1093 + '@aws-sdk/client-rds-data': '>=3' 1094 + '@cloudflare/workers-types': '>=4' 1095 + '@electric-sql/pglite': '>=0.2.0' 1096 + '@libsql/client': '>=0.10.0' 1097 + '@libsql/client-wasm': '>=0.10.0' 1098 + '@neondatabase/serverless': '>=0.10.0' 1099 + '@op-engineering/op-sqlite': '>=2' 1100 + '@opentelemetry/api': ^1.4.1 1101 + '@planetscale/database': '>=1' 1102 + '@prisma/client': '*' 1103 + '@tidbcloud/serverless': '*' 1104 + '@types/better-sqlite3': '*' 1105 + '@types/pg': '*' 1106 + '@types/react': '>=18' 1107 + '@types/sql.js': '*' 1108 + '@vercel/postgres': '>=0.8.0' 1109 + '@xata.io/client': '*' 1110 + better-sqlite3: '>=7' 1111 + bun-types: '*' 1112 + expo-sqlite: '>=14.0.0' 1113 + knex: '*' 1114 + kysely: '*' 1115 + mysql2: '>=2' 1116 + pg: '>=8' 1117 + postgres: '>=3' 1118 + prisma: '*' 1119 + react: '>=18' 1120 + sql.js: '>=1' 1121 + sqlite3: '>=5' 1122 + peerDependenciesMeta: 1123 + '@aws-sdk/client-rds-data': 1124 + optional: true 1125 + '@cloudflare/workers-types': 1126 + optional: true 1127 + '@electric-sql/pglite': 1128 + optional: true 1129 + '@libsql/client': 1130 + optional: true 1131 + '@libsql/client-wasm': 1132 + optional: true 1133 + '@neondatabase/serverless': 1134 + optional: true 1135 + '@op-engineering/op-sqlite': 1136 + optional: true 1137 + '@opentelemetry/api': 1138 + optional: true 1139 + '@planetscale/database': 1140 + optional: true 1141 + '@prisma/client': 1142 + optional: true 1143 + '@tidbcloud/serverless': 1144 + optional: true 1145 + '@types/better-sqlite3': 1146 + optional: true 1147 + '@types/pg': 1148 + optional: true 1149 + '@types/react': 1150 + optional: true 1151 + '@types/sql.js': 1152 + optional: true 1153 + '@vercel/postgres': 1154 + optional: true 1155 + '@xata.io/client': 1156 + optional: true 1157 + better-sqlite3: 1158 + optional: true 1159 + bun-types: 1160 + optional: true 1161 + expo-sqlite: 1162 + optional: true 1163 + knex: 1164 + optional: true 1165 + kysely: 1166 + optional: true 1167 + mysql2: 1168 + optional: true 1169 + pg: 1170 + optional: true 1171 + postgres: 1172 + optional: true 1173 + prisma: 1174 + optional: true 1175 + react: 1176 + optional: true 1177 + sql.js: 1178 + optional: true 1179 + sqlite3: 1180 + optional: true 1754 1181 1755 1182 eastasianwidth@0.2.0: 1756 1183 resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 1757 - 1758 - ee-first@1.1.1: 1759 - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} 1760 - 1761 - electron-to-chromium@1.5.68: 1762 - resolution: {integrity: sha512-FgMdJlma0OzUYlbrtZ4AeXjKxKPk6KT8WOP8BjcqxWtlg8qyJQjRzPJzUtUn5GBg1oQ26hFs7HOOHJMYiJRnvQ==} 1763 1184 1764 1185 emoji-regex@8.0.0: 1765 1186 resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} ··· 1767 1188 emoji-regex@9.2.2: 1768 1189 resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 1769 1190 1770 - encodeurl@1.0.2: 1771 - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} 1772 - engines: {node: '>= 0.8'} 1773 - 1774 - encodeurl@2.0.0: 1775 - resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} 1776 - engines: {node: '>= 0.8'} 1777 - 1778 1191 end-of-stream@1.4.4: 1779 1192 resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} 1780 1193 1781 - es-module-lexer@1.5.4: 1782 - resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} 1194 + esbuild-register@3.6.0: 1195 + resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==} 1196 + peerDependencies: 1197 + esbuild: '>=0.12 <1' 1783 1198 1784 - esbuild@0.20.2: 1785 - resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==} 1199 + esbuild@0.18.20: 1200 + resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} 1786 1201 engines: {node: '>=12'} 1787 1202 hasBin: true 1788 1203 1789 - esbuild@0.21.5: 1790 - resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 1204 + esbuild@0.19.12: 1205 + resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==} 1791 1206 engines: {node: '>=12'} 1792 1207 hasBin: true 1793 1208 ··· 1801 1216 engines: {node: '>=18'} 1802 1217 hasBin: true 1803 1218 1804 - escalade@3.2.0: 1805 - resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 1806 - engines: {node: '>=6'} 1807 - 1808 - escape-html@1.0.3: 1809 - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} 1810 - 1811 - escape-string-regexp@5.0.0: 1812 - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} 1813 - engines: {node: '>=12'} 1814 - 1815 - esprima@4.0.1: 1816 - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 1817 - engines: {node: '>=4'} 1818 - hasBin: true 1819 - 1820 - estree-walker@2.0.2: 1821 - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 1822 - 1823 - estree-walker@3.0.3: 1824 - resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 1825 - 1826 - etag@1.8.1: 1827 - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} 1828 - engines: {node: '>= 0.6'} 1829 - 1830 - event-target-shim@5.0.1: 1831 - resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} 1832 - engines: {node: '>=6'} 1833 - 1834 - eventemitter3@4.0.7: 1835 - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} 1836 - 1837 - events@3.3.0: 1838 - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} 1839 - engines: {node: '>=0.8.x'} 1840 - 1841 - execa@8.0.1: 1842 - resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} 1843 - engines: {node: '>=16.17'} 1219 + event-target-shim@6.0.2: 1220 + resolution: {integrity: sha512-8q3LsZjRezbFZ2PN+uP+Q7pnHUMmAOziU2vA2OwoFaKIXxlxl38IylhSSgUorWu/rf4er67w0ikBqjBFk/pomA==} 1221 + engines: {node: '>=10.13.0'} 1844 1222 1845 1223 fast-copy@3.0.2: 1846 1224 resolution: {integrity: sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ==} 1847 1225 1848 - fast-deep-equal@3.1.3: 1849 - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1850 - 1851 - fast-fifo@1.3.2: 1852 - resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} 1853 - 1854 - fast-glob@3.3.2: 1855 - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 1856 - engines: {node: '>=8.6.0'} 1857 - 1858 1226 fast-redact@3.5.0: 1859 1227 resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==} 1860 1228 engines: {node: '>=6'} 1861 1229 1862 1230 fast-safe-stringify@2.1.1: 1863 1231 resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} 1864 - 1865 - fastq@1.17.1: 1866 - resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 1867 1232 1868 1233 fdir@6.4.2: 1869 1234 resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==} ··· 1873 1238 picomatch: 1874 1239 optional: true 1875 1240 1876 - file-uri-to-path@1.0.0: 1877 - resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} 1878 - 1879 - fill-range@7.1.1: 1880 - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 1881 - engines: {node: '>=8'} 1882 - 1883 - follow-redirects@1.15.9: 1884 - resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==} 1885 - engines: {node: '>=4.0'} 1886 - peerDependencies: 1887 - debug: '*' 1888 - peerDependenciesMeta: 1889 - debug: 1890 - optional: true 1241 + fetch-blob@3.2.0: 1242 + resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} 1243 + engines: {node: ^12.20 || >= 14.13} 1891 1244 1892 1245 foreground-child@3.3.0: 1893 1246 resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} 1894 1247 engines: {node: '>=14'} 1895 1248 1896 - fraction.js@4.3.7: 1897 - resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} 1898 - 1899 - fresh@0.5.2: 1900 - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} 1901 - engines: {node: '>= 0.6'} 1902 - 1903 - fs-extra@11.2.0: 1904 - resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} 1905 - engines: {node: '>=14.14'} 1906 - 1907 - fs-minipass@2.1.0: 1908 - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} 1909 - engines: {node: '>= 8'} 1910 - 1911 - fs.realpath@1.0.0: 1912 - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1249 + formdata-polyfill@4.0.10: 1250 + resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} 1251 + engines: {node: '>=12.20.0'} 1913 1252 1914 1253 fsevents@2.3.3: 1915 1254 resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1916 1255 engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1917 1256 os: [darwin] 1918 1257 1919 - function-bind@1.1.2: 1920 - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 1921 - 1922 - gauge@3.0.2: 1923 - resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} 1924 - engines: {node: '>=10'} 1925 - deprecated: This package is no longer supported. 1926 - 1927 - gensync@1.0.0-beta.2: 1928 - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 1929 - engines: {node: '>=6.9.0'} 1930 - 1931 - get-caller-file@2.0.5: 1932 - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 1933 - engines: {node: 6.* || 8.* || >= 10.*} 1934 - 1935 - get-port-please@3.1.2: 1936 - resolution: {integrity: sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==} 1937 - 1938 - get-stream@8.0.1: 1939 - resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} 1940 - engines: {node: '>=16'} 1941 - 1942 1258 get-tsconfig@4.8.1: 1943 1259 resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} 1944 1260 1945 - giget@1.2.3: 1946 - resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==} 1947 - hasBin: true 1948 - 1949 - glob-parent@5.1.2: 1950 - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1951 - engines: {node: '>= 6'} 1952 - 1953 - glob-parent@6.0.2: 1954 - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1955 - engines: {node: '>=10.13.0'} 1956 - 1957 1261 glob@10.4.5: 1958 1262 resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} 1959 1263 hasBin: true ··· 1963 1267 engines: {node: 20 || >=22} 1964 1268 hasBin: true 1965 1269 1966 - glob@7.2.3: 1967 - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1968 - deprecated: Glob versions prior to v9 are no longer supported 1969 - 1970 - globals@11.12.0: 1971 - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 1972 - engines: {node: '>=4'} 1973 - 1974 - globby@14.0.2: 1975 - resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} 1976 - engines: {node: '>=18'} 1977 - 1978 - graceful-fs@4.2.11: 1979 - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1980 - 1981 - gzip-size@7.0.0: 1982 - resolution: {integrity: sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==} 1983 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1984 - 1985 - h3@1.11.1: 1986 - resolution: {integrity: sha512-AbaH6IDnZN6nmbnJOH72y3c5Wwh9P97soSVdGSBbcDACRdkC0FEWf25pzx4f/NuOCK6quHmW18yF2Wx+G4Zi1A==} 1987 - 1988 - h3@1.13.0: 1989 - resolution: {integrity: sha512-vFEAu/yf8UMUcB4s43OaDaigcqpQd14yanmOsn+NcRX3/guSKncyE2rOYhq8RIchgJrPSs/QiIddnTTR1ddiAg==} 1990 - 1991 - has-unicode@2.0.1: 1992 - resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} 1993 - 1994 - hasown@2.0.2: 1995 - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 1996 - engines: {node: '>= 0.4'} 1997 - 1998 1270 help-me@5.0.0: 1999 1271 resolution: {integrity: sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==} 2000 1272 ··· 2002 1274 resolution: {integrity: sha512-eHtf4kSDNw6VVrdbd5IQi16r22m3s7mWPLd7xOMhg1a/Yyb1A0qpUFq8xYMX4FMuDe1nTKeMX5rTx7Nmw+a+Ag==} 2003 1275 engines: {node: '>=16.9.0'} 2004 1276 2005 - hookable@5.5.3: 2006 - resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} 2007 - 2008 - http-errors@2.0.0: 2009 - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} 2010 - engines: {node: '>= 0.8'} 2011 - 2012 - http-proxy@1.18.1: 2013 - resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} 2014 - engines: {node: '>=8.0.0'} 2015 - 2016 - http-shutdown@1.2.2: 2017 - resolution: {integrity: sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==} 2018 - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} 2019 - 2020 - https-proxy-agent@5.0.1: 2021 - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} 2022 - engines: {node: '>= 6'} 2023 - 2024 - https-proxy-agent@7.0.5: 2025 - resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==} 2026 - engines: {node: '>= 14'} 2027 - 2028 - httpxy@0.1.5: 2029 - resolution: {integrity: sha512-hqLDO+rfststuyEUTWObQK6zHEEmZ/kaIP2/zclGGZn6X8h/ESTWg+WKecQ/e5k4nPswjzZD+q2VqZIbr15CoQ==} 2030 - 2031 - human-signals@5.0.0: 2032 - resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} 2033 - engines: {node: '>=16.17.0'} 2034 - 2035 - ieee754@1.2.1: 2036 - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 2037 - 2038 - ignore@5.3.2: 2039 - resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 2040 - engines: {node: '>= 4'} 2041 - 2042 - import-meta-resolve@4.1.0: 2043 - resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} 2044 - 2045 - index-to-position@0.1.2: 2046 - resolution: {integrity: sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==} 2047 - engines: {node: '>=18'} 2048 - 2049 - inflight@1.0.6: 2050 - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 2051 - deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. 2052 - 2053 - inherits@2.0.4: 2054 - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 2055 - 2056 - ioredis@5.4.1: 2057 - resolution: {integrity: sha512-2YZsvl7jopIa1gaePkeMtd9rAcSjOOjPtpcLlOeusyO+XH2SK5ZcT+UCrElPP+WVIInh2TzeI4XW9ENaSLVVHA==} 2058 - engines: {node: '>=12.22.0'} 2059 - 2060 - iron-webcrypto@1.2.1: 2061 - resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} 2062 - 2063 - is-binary-path@2.1.0: 2064 - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 2065 - engines: {node: '>=8'} 2066 - 2067 - is-core-module@2.15.1: 2068 - resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} 2069 - engines: {node: '>= 0.4'} 2070 - 2071 - is-docker@2.2.1: 2072 - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} 2073 - engines: {node: '>=8'} 2074 - hasBin: true 2075 - 2076 - is-docker@3.0.0: 2077 - resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} 2078 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2079 - hasBin: true 2080 - 2081 - is-extglob@2.1.1: 2082 - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 2083 - engines: {node: '>=0.10.0'} 2084 - 2085 1277 is-fullwidth-code-point@3.0.0: 2086 1278 resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 2087 1279 engines: {node: '>=8'} 2088 1280 2089 - is-glob@4.0.3: 2090 - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 2091 - engines: {node: '>=0.10.0'} 2092 - 2093 - is-inside-container@1.0.0: 2094 - resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} 2095 - engines: {node: '>=14.16'} 2096 - hasBin: true 2097 - 2098 - is-module@1.0.0: 2099 - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} 2100 - 2101 - is-number@7.0.0: 2102 - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 2103 - engines: {node: '>=0.12.0'} 2104 - 2105 - is-reference@1.2.1: 2106 - resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} 2107 - 2108 - is-stream@2.0.1: 2109 - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 2110 - engines: {node: '>=8'} 2111 - 2112 - is-stream@3.0.0: 2113 - resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} 2114 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2115 - 2116 - is-wsl@2.2.0: 2117 - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} 2118 - engines: {node: '>=8'} 2119 - 2120 - is-wsl@3.1.0: 2121 - resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} 2122 - engines: {node: '>=16'} 2123 - 2124 - is64bit@2.0.0: 2125 - resolution: {integrity: sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==} 2126 - engines: {node: '>=18'} 2127 - 2128 - isarray@1.0.0: 2129 - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} 2130 - 2131 - isbot@5.1.17: 2132 - resolution: {integrity: sha512-/wch8pRKZE+aoVhRX/hYPY1C7dMCeeMyhkQLNLNlYAbGQn9bkvMB8fOUXNnk5I0m4vDYbBJ9ciVtkr9zfBJ7qA==} 2133 - engines: {node: '>=18'} 2134 - 2135 1281 isexe@2.0.0: 2136 1282 resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 2137 1283 2138 - isexe@3.1.1: 2139 - resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==} 2140 - engines: {node: '>=16'} 2141 - 2142 1284 jackspeak@3.4.3: 2143 1285 resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} 2144 1286 ··· 2146 1288 resolution: {integrity: sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==} 2147 1289 engines: {node: 20 || >=22} 2148 1290 2149 - jiti@1.21.6: 2150 - resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} 2151 - hasBin: true 2152 - 2153 1291 jiti@2.4.1: 2154 1292 resolution: {integrity: sha512-yPBThwecp1wS9DmoA4x4KR2h3QoslacnDR8ypuFM962kI4/456Iy1oHx2RAgh4jfZNdn0bctsdadceiBUgpU1g==} 2155 1293 hasBin: true ··· 2161 1299 resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} 2162 1300 engines: {node: '>=10'} 2163 1301 2164 - js-levenshtein@1.1.6: 2165 - resolution: {integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==} 2166 - engines: {node: '>=0.10.0'} 2167 - 2168 - js-tokens@4.0.0: 2169 - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 2170 - 2171 - js-tokens@9.0.1: 2172 - resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} 2173 - 2174 - js-yaml@4.1.0: 2175 - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 2176 - hasBin: true 1302 + js-base64@3.7.7: 1303 + resolution: {integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==} 2177 1304 2178 - jsesc@3.0.2: 2179 - resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} 2180 - engines: {node: '>=6'} 2181 - hasBin: true 2182 - 2183 - json-schema-traverse@1.0.0: 2184 - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} 2185 - 2186 - json5@2.2.3: 2187 - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 2188 - engines: {node: '>=6'} 2189 - hasBin: true 2190 - 2191 - jsonfile@6.1.0: 2192 - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} 2193 - 2194 - klona@2.0.6: 2195 - resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} 2196 - engines: {node: '>= 8'} 2197 - 2198 - knitwork@1.1.0: 2199 - resolution: {integrity: sha512-oHnmiBUVHz1V+URE77PNot2lv3QiYU2zQf1JjOVkMt3YDKGbu8NAFr+c4mcNOhdsGrB/VpVbRwPwhiXrPhxQbw==} 2200 - 2201 - lazystream@1.0.1: 2202 - resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} 2203 - engines: {node: '>= 0.6.3'} 2204 - 2205 - lilconfig@2.1.0: 2206 - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 2207 - engines: {node: '>=10'} 1305 + libsql@0.4.7: 1306 + resolution: {integrity: sha512-T9eIRCs6b0J1SHKYIvD8+KCJMcWZ900iZyxdnSCdqxN12Z1ijzT+jY5nrk72Jw4B0HGzms2NgpryArlJqvc3Lw==} 1307 + cpu: [x64, arm64, wasm32] 1308 + os: [darwin, linux, win32] 2208 1309 2209 1310 lilconfig@3.1.3: 2210 1311 resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} ··· 2213 1314 lines-and-columns@1.2.4: 2214 1315 resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 2215 1316 2216 - listhen@1.9.0: 2217 - resolution: {integrity: sha512-I8oW2+QL5KJo8zXNWX046M134WchxsXC7SawLPvRQpogCbkyQIaFxPE89A2HiwR7vAK2Dm2ERBAmyjTYGYEpBg==} 2218 - hasBin: true 2219 - 2220 1317 load-tsconfig@0.2.5: 2221 1318 resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==} 2222 1319 engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2223 1320 2224 - local-pkg@0.5.1: 2225 - resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==} 2226 - engines: {node: '>=14'} 2227 - 2228 - lodash.defaults@4.2.0: 2229 - resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==} 2230 - 2231 - lodash.isarguments@3.1.0: 2232 - resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==} 2233 - 2234 - lodash.isequal@4.5.0: 2235 - resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} 2236 - 2237 1321 lodash.sortby@4.7.0: 2238 1322 resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} 2239 1323 2240 - lodash@4.17.21: 2241 - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 2242 - 2243 - loose-envify@1.4.0: 2244 - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 2245 - hasBin: true 2246 - 2247 1324 lru-cache@10.4.3: 2248 1325 resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 2249 1326 ··· 2251 1328 resolution: {integrity: sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA==} 2252 1329 engines: {node: 20 || >=22} 2253 1330 2254 - lru-cache@5.1.1: 2255 - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 2256 - 2257 - lucide-react@0.464.0: 2258 - resolution: {integrity: sha512-eCx1qClbnw5qRqB2Z1AFFp71wdJXEwhPp5ii8LviyvHb7o/7eMXFiTyDHh7JpjM9BO9pC6ZUp/c7mCwwxbPIcg==} 2259 - peerDependencies: 2260 - react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc 2261 - 2262 - magic-string@0.30.14: 2263 - resolution: {integrity: sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==} 2264 - 2265 - magicast@0.2.11: 2266 - resolution: {integrity: sha512-6saXbRDA1HMkqbsvHOU6HBjCVgZT460qheRkLhJQHWAbhXoWESI3Kn/dGGXyKs15FFKR85jsUqFx2sMK0wy/5g==} 2267 - 2268 - magicast@0.3.5: 2269 - resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} 2270 - 2271 - make-dir@3.1.0: 2272 - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} 2273 - engines: {node: '>=8'} 2274 - 2275 1331 make-error@1.3.6: 2276 1332 resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} 2277 1333 2278 - merge-stream@2.0.0: 2279 - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 2280 - 2281 - merge2@1.4.1: 2282 - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 2283 - engines: {node: '>= 8'} 2284 - 2285 - micromatch@4.0.8: 2286 - resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 2287 - engines: {node: '>=8.6'} 2288 - 2289 - mime@1.6.0: 2290 - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} 2291 - engines: {node: '>=4'} 2292 - hasBin: true 2293 - 2294 - mime@3.0.0: 2295 - resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} 2296 - engines: {node: '>=10.0.0'} 2297 - hasBin: true 2298 - 2299 - mime@4.0.4: 2300 - resolution: {integrity: sha512-v8yqInVjhXyqP6+Kw4fV3ZzeMRqEW6FotRsKXjRS5VMTNIuXsdRoAvklpoRgSqXm6o9VNH4/C0mgedko9DdLsQ==} 2301 - engines: {node: '>=16'} 2302 - hasBin: true 2303 - 2304 - mimic-fn@4.0.0: 2305 - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} 2306 - engines: {node: '>=12'} 2307 - 2308 1334 minimatch@10.0.1: 2309 1335 resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==} 2310 1336 engines: {node: 20 || >=22} 2311 1337 2312 - minimatch@3.1.2: 2313 - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 2314 - 2315 - minimatch@5.1.6: 2316 - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} 2317 - engines: {node: '>=10'} 2318 - 2319 1338 minimatch@9.0.5: 2320 1339 resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 2321 1340 engines: {node: '>=16 || 14 >=14.17'} ··· 2323 1342 minimist@1.2.8: 2324 1343 resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 2325 1344 2326 - minipass@3.3.6: 2327 - resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} 2328 - engines: {node: '>=8'} 2329 - 2330 - minipass@5.0.0: 2331 - resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} 2332 - engines: {node: '>=8'} 2333 - 2334 1345 minipass@7.1.2: 2335 1346 resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 2336 1347 engines: {node: '>=16 || 14 >=14.17'} 2337 1348 2338 - minizlib@2.1.2: 2339 - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} 2340 - engines: {node: '>= 8'} 2341 - 2342 - mkdirp@1.0.4: 2343 - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} 2344 - engines: {node: '>=10'} 2345 - hasBin: true 2346 - 2347 - mlly@1.7.3: 2348 - resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==} 2349 - 2350 - mri@1.2.0: 2351 - resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} 2352 - engines: {node: '>=4'} 2353 - 2354 - ms@2.0.0: 2355 - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} 2356 - 2357 1349 ms@2.1.3: 2358 1350 resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 2359 1351 ··· 2365 1357 engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 2366 1358 hasBin: true 2367 1359 2368 - nitropack@2.10.4: 2369 - resolution: {integrity: sha512-sJiG/MIQlZCVSw2cQrFG1H6mLeSqHlYfFerRjLKz69vUfdu0EL2l0WdOxlQbzJr3mMv/l4cOlCCLzVRzjzzF/g==} 2370 - engines: {node: ^16.11.0 || >=17.0.0} 2371 - hasBin: true 2372 - peerDependencies: 2373 - xml2js: ^0.6.2 2374 - peerDependenciesMeta: 2375 - xml2js: 2376 - optional: true 1360 + node-domexception@1.0.0: 1361 + resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} 1362 + engines: {node: '>=10.5.0'} 2377 1363 2378 - node-addon-api@7.1.1: 2379 - resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} 2380 - 2381 - node-fetch-native@1.6.4: 2382 - resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} 2383 - 2384 - node-fetch@2.7.0: 2385 - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} 2386 - engines: {node: 4.x || >=6.0.0} 2387 - peerDependencies: 2388 - encoding: ^0.1.0 2389 - peerDependenciesMeta: 2390 - encoding: 2391 - optional: true 2392 - 2393 - node-forge@1.3.1: 2394 - resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} 2395 - engines: {node: '>= 6.13.0'} 1364 + node-fetch@3.3.2: 1365 + resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} 1366 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2396 1367 2397 1368 node-gyp-build@4.8.4: 2398 1369 resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==} 2399 1370 hasBin: true 2400 1371 2401 - node-releases@2.0.18: 2402 - resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} 2403 - 2404 - nopt@5.0.0: 2405 - resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} 2406 - engines: {node: '>=6'} 2407 - hasBin: true 2408 - 2409 - normalize-path@3.0.0: 2410 - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 2411 - engines: {node: '>=0.10.0'} 2412 - 2413 - normalize-range@0.1.2: 2414 - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} 2415 - engines: {node: '>=0.10.0'} 2416 - 2417 - npm-run-path@5.3.0: 2418 - resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} 2419 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2420 - 2421 - npmlog@5.0.1: 2422 - resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} 2423 - deprecated: This package is no longer supported. 2424 - 2425 - nypm@0.3.12: 2426 - resolution: {integrity: sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA==} 2427 - engines: {node: ^14.16.0 || >=16.10.0} 2428 - hasBin: true 2429 - 2430 1372 object-assign@4.1.1: 2431 1373 resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 2432 1374 engines: {node: '>=0.10.0'} 2433 1375 2434 - object-hash@3.0.0: 2435 - resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 2436 - engines: {node: '>= 6'} 2437 - 2438 - ofetch@1.4.1: 2439 - resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==} 2440 - 2441 - ohash@1.1.4: 2442 - resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==} 2443 - 2444 1376 on-exit-leak-free@2.1.2: 2445 1377 resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==} 2446 1378 engines: {node: '>=14.0.0'} 2447 1379 2448 - on-finished@2.4.1: 2449 - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} 2450 - engines: {node: '>= 0.8'} 2451 - 2452 1380 once@1.4.0: 2453 1381 resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 2454 1382 2455 - onetime@6.0.0: 2456 - resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} 2457 - engines: {node: '>=12'} 2458 - 2459 - open@8.4.2: 2460 - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} 2461 - engines: {node: '>=12'} 2462 - 2463 - openapi-typescript@7.4.4: 2464 - resolution: {integrity: sha512-7j3nktnRzlQdlHnHsrcr6Gqz8f80/RhfA2I8s1clPI+jkY0hLNmnYVKBfuUEli5EEgK1B6M+ibdS5REasPlsUw==} 2465 - hasBin: true 2466 - peerDependencies: 2467 - typescript: ^5.x 2468 - 2469 1383 package-json-from-dist@1.0.1: 2470 1384 resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} 2471 1385 2472 - parse-json@8.1.0: 2473 - resolution: {integrity: sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==} 2474 - engines: {node: '>=18'} 2475 - 2476 - parseurl@1.3.3: 2477 - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} 2478 - engines: {node: '>= 0.8'} 2479 - 2480 - path-is-absolute@1.0.1: 2481 - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 2482 - engines: {node: '>=0.10.0'} 1386 + partysocket@1.0.2: 1387 + resolution: {integrity: sha512-rAFOUKImaq+VBk2B+2RTBsWEvlnarEP53nchoUHzpVs8V6fG2/estihOTslTQUWHVuHEKDL5k8htG8K3TngyFA==} 2483 1388 2484 1389 path-key@3.1.1: 2485 1390 resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 2486 1391 engines: {node: '>=8'} 2487 1392 2488 - path-key@4.0.0: 2489 - resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} 2490 - engines: {node: '>=12'} 2491 - 2492 - path-parse@1.0.7: 2493 - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 2494 - 2495 1393 path-scurry@1.11.1: 2496 1394 resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} 2497 1395 engines: {node: '>=16 || 14 >=14.18'} ··· 2500 1398 resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==} 2501 1399 engines: {node: 20 || >=22} 2502 1400 2503 - path-to-regexp@6.3.0: 2504 - resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==} 2505 - 2506 - path-type@5.0.0: 2507 - resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} 2508 - engines: {node: '>=12'} 2509 - 2510 - pathe@1.1.2: 2511 - resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} 2512 - 2513 - perfect-debounce@1.0.0: 2514 - resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} 2515 - 2516 1401 picocolors@1.1.1: 2517 1402 resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 2518 1403 2519 - picomatch@2.3.1: 2520 - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 2521 - engines: {node: '>=8.6'} 2522 - 2523 1404 picomatch@4.0.2: 2524 1405 resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} 2525 1406 engines: {node: '>=12'} 2526 - 2527 - pify@2.3.0: 2528 - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 2529 - engines: {node: '>=0.10.0'} 2530 1407 2531 1408 pino-abstract-transport@2.0.0: 2532 1409 resolution: {integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==} ··· 2546 1423 resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 2547 1424 engines: {node: '>= 6'} 2548 1425 2549 - pkg-types@1.2.1: 2550 - resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==} 2551 - 2552 - pluralize@8.0.0: 2553 - resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} 2554 - engines: {node: '>=4'} 2555 - 2556 - postcss-import@15.1.0: 2557 - resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 2558 - engines: {node: '>=14.0.0'} 2559 - peerDependencies: 2560 - postcss: ^8.0.0 2561 - 2562 - postcss-js@4.0.1: 2563 - resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 2564 - engines: {node: ^12 || ^14 || >= 16} 2565 - peerDependencies: 2566 - postcss: ^8.4.21 2567 - 2568 - postcss-load-config@4.0.2: 2569 - resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} 2570 - engines: {node: '>= 14'} 2571 - peerDependencies: 2572 - postcss: '>=8.0.9' 2573 - ts-node: '>=9.0.0' 2574 - peerDependenciesMeta: 2575 - postcss: 2576 - optional: true 2577 - ts-node: 2578 - optional: true 2579 - 2580 1426 postcss-load-config@6.0.1: 2581 1427 resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==} 2582 1428 engines: {node: '>= 18'} ··· 2595 1441 yaml: 2596 1442 optional: true 2597 1443 2598 - postcss-nested@6.2.0: 2599 - resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} 2600 - engines: {node: '>=12.0'} 2601 - peerDependencies: 2602 - postcss: ^8.2.14 2603 - 2604 - postcss-selector-parser@6.1.2: 2605 - resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} 2606 - engines: {node: '>=4'} 2607 - 2608 - postcss-value-parser@4.2.0: 2609 - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 2610 - 2611 1444 postcss@8.4.49: 2612 1445 resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} 2613 1446 engines: {node: ^10 || ^12 || >=14} ··· 2617 1450 engines: {node: '>=14'} 2618 1451 hasBin: true 2619 1452 2620 - pretty-bytes@6.1.1: 2621 - resolution: {integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==} 2622 - engines: {node: ^14.13.1 || >=16.0.0} 2623 - 2624 - process-nextick-args@2.0.1: 2625 - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} 2626 - 2627 1453 process-warning@4.0.0: 2628 1454 resolution: {integrity: sha512-/MyYDxttz7DfGMMHiysAsFE4qF+pQYAA8ziO/3NcRVrQ5fSk+Mns4QZA/oRPFzvcqNoVJXQNWNAsdwBXLUkQKw==} 2629 1455 2630 - process@0.11.10: 2631 - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} 2632 - engines: {node: '>= 0.6.0'} 1456 + promise-limit@2.7.0: 1457 + resolution: {integrity: sha512-7nJ6v5lnJsXwGprnGXga4wx6d1POjvi5Qmf1ivTRxTjH4Z/9Czja/UCMLVmB9N93GeWOU93XaFaEt6jbuoagNw==} 2633 1458 2634 1459 pump@3.0.2: 2635 1460 resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} ··· 2637 1462 punycode@2.3.1: 2638 1463 resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 2639 1464 engines: {node: '>=6'} 2640 - 2641 - queue-microtask@1.2.3: 2642 - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 2643 - 2644 - queue-tick@1.0.1: 2645 - resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==} 2646 1465 2647 1466 quick-format-unescaped@4.0.4: 2648 1467 resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} 2649 1468 2650 - radix3@1.1.2: 2651 - resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} 2652 - 2653 - randombytes@2.1.0: 2654 - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} 2655 - 2656 - range-parser@1.2.1: 2657 - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} 2658 - engines: {node: '>= 0.6'} 2659 - 2660 - rc9@2.1.2: 2661 - resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==} 2662 - 2663 - react-dom@18.3.1: 2664 - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} 2665 - peerDependencies: 2666 - react: ^18.3.1 2667 - 2668 - react-refresh@0.14.2: 2669 - resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} 2670 - engines: {node: '>=0.10.0'} 2671 - 2672 - react@18.3.1: 2673 - resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} 2674 - engines: {node: '>=0.10.0'} 2675 - 2676 - read-cache@1.0.0: 2677 - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 2678 - 2679 - readable-stream@2.3.8: 2680 - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} 2681 - 2682 - readable-stream@3.6.2: 2683 - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 2684 - engines: {node: '>= 6'} 2685 - 2686 - readable-stream@4.5.2: 2687 - resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==} 2688 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2689 - 2690 - readdir-glob@1.1.3: 2691 - resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==} 2692 - 2693 - readdirp@3.6.0: 2694 - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 2695 - engines: {node: '>=8.10.0'} 2696 - 2697 1469 readdirp@4.0.2: 2698 1470 resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==} 2699 1471 engines: {node: '>= 14.16.0'} ··· 2702 1474 resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} 2703 1475 engines: {node: '>= 12.13.0'} 2704 1476 2705 - recast@0.23.9: 2706 - resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==} 2707 - engines: {node: '>= 4'} 2708 - 2709 - redis-errors@1.2.0: 2710 - resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==} 2711 - engines: {node: '>=4'} 2712 - 2713 - redis-parser@3.0.0: 2714 - resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==} 2715 - engines: {node: '>=4'} 2716 - 2717 - require-directory@2.1.1: 2718 - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 2719 - engines: {node: '>=0.10.0'} 2720 - 2721 - require-from-string@2.0.2: 2722 - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} 2723 - engines: {node: '>=0.10.0'} 2724 - 2725 - requires-port@1.0.0: 2726 - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} 2727 - 2728 1477 resolve-from@5.0.0: 2729 1478 resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} 2730 1479 engines: {node: '>=8'} ··· 2732 1481 resolve-pkg-maps@1.0.0: 2733 1482 resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 2734 1483 2735 - resolve@1.22.8: 2736 - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 2737 - hasBin: true 2738 - 2739 - reusify@1.0.4: 2740 - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 2741 - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 2742 - 2743 - rimraf@3.0.2: 2744 - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 2745 - deprecated: Rimraf versions prior to v4 are no longer supported 2746 - hasBin: true 2747 - 2748 1484 rimraf@6.0.1: 2749 1485 resolution: {integrity: sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==} 2750 1486 engines: {node: 20 || >=22} 2751 1487 hasBin: true 2752 1488 2753 - rollup-plugin-visualizer@5.12.0: 2754 - resolution: {integrity: sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ==} 2755 - engines: {node: '>=14'} 2756 - hasBin: true 2757 - peerDependencies: 2758 - rollup: 2.x || 3.x || 4.x 2759 - peerDependenciesMeta: 2760 - rollup: 2761 - optional: true 2762 - 2763 1489 rollup@4.28.0: 2764 1490 resolution: {integrity: sha512-G9GOrmgWHBma4YfCcX8PjH0qhXSdH8B4HDE2o4/jaxj93S4DPCIDoLcXz99eWMji4hB29UFCEd7B2gwGJDR9cQ==} 2765 1491 engines: {node: '>=18.0.0', npm: '>=8.0.0'} 2766 1492 hasBin: true 2767 1493 2768 - run-parallel@1.2.0: 2769 - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 2770 - 2771 - safe-buffer@5.1.2: 2772 - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 2773 - 2774 - safe-buffer@5.2.1: 2775 - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 2776 - 2777 1494 safe-stable-stringify@2.5.0: 2778 1495 resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} 2779 1496 engines: {node: '>=10'} 2780 1497 2781 - scheduler@0.23.2: 2782 - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} 2783 - 2784 - scule@1.3.0: 2785 - resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==} 2786 - 2787 1498 secure-json-parse@2.7.0: 2788 1499 resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==} 2789 1500 2790 - semver@6.3.1: 2791 - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 2792 - hasBin: true 2793 - 2794 - semver@7.6.3: 2795 - resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 2796 - engines: {node: '>=10'} 2797 - hasBin: true 2798 - 2799 - send@0.19.0: 2800 - resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} 2801 - engines: {node: '>= 0.8.0'} 2802 - 2803 - serialize-javascript@6.0.2: 2804 - resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} 2805 - 2806 - serve-placeholder@2.0.2: 2807 - resolution: {integrity: sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ==} 2808 - 2809 - serve-static@1.16.2: 2810 - resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==} 2811 - engines: {node: '>= 0.8.0'} 2812 - 2813 - set-blocking@2.0.0: 2814 - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} 2815 - 2816 - setprototypeof@1.2.0: 2817 - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} 2818 - 2819 1501 shebang-command@2.0.0: 2820 1502 resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 2821 1503 engines: {node: '>=8'} ··· 2824 1506 resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 2825 1507 engines: {node: '>=8'} 2826 1508 2827 - signal-exit@3.0.7: 2828 - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 2829 - 2830 1509 signal-exit@4.1.0: 2831 1510 resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 2832 1511 engines: {node: '>=14'} 2833 1512 2834 - slash@5.1.0: 2835 - resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} 2836 - engines: {node: '>=14.16'} 2837 - 2838 - smob@1.5.0: 2839 - resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==} 2840 - 2841 1513 sonic-boom@4.2.0: 2842 1514 resolution: {integrity: sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww==} 2843 1515 ··· 2851 1523 source-map@0.6.1: 2852 1524 resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 2853 1525 engines: {node: '>=0.10.0'} 2854 - 2855 - source-map@0.7.4: 2856 - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} 2857 - engines: {node: '>= 8'} 2858 1526 2859 1527 source-map@0.8.0-beta.0: 2860 1528 resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} ··· 2864 1532 resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} 2865 1533 engines: {node: '>= 10.x'} 2866 1534 2867 - standard-as-callback@2.1.0: 2868 - resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==} 2869 - 2870 - statuses@2.0.1: 2871 - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} 2872 - engines: {node: '>= 0.8'} 2873 - 2874 - std-env@3.8.0: 2875 - resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==} 2876 - 2877 - streamx@2.21.0: 2878 - resolution: {integrity: sha512-Qz6MsDZXJ6ur9u+b+4xCG18TluU7PGlRfXVAAjNiGsFrBUt/ioyLkxbFaKJygoPs+/kW4VyBj0bSj89Qu0IGyg==} 2879 - 2880 1535 string-width@4.2.3: 2881 1536 resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 2882 1537 engines: {node: '>=8'} ··· 2885 1540 resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 2886 1541 engines: {node: '>=12'} 2887 1542 2888 - string_decoder@1.1.1: 2889 - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} 2890 - 2891 - string_decoder@1.3.0: 2892 - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 2893 - 2894 1543 strip-ansi@6.0.1: 2895 1544 resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 2896 1545 engines: {node: '>=8'} ··· 2899 1548 resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 2900 1549 engines: {node: '>=12'} 2901 1550 2902 - strip-final-newline@3.0.0: 2903 - resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} 2904 - engines: {node: '>=12'} 2905 - 2906 1551 strip-json-comments@3.1.1: 2907 1552 resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 2908 1553 engines: {node: '>=8'} 2909 1554 2910 - strip-literal@2.1.1: 2911 - resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==} 2912 - 2913 1555 sucrase@3.35.0: 2914 1556 resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} 2915 1557 engines: {node: '>=16 || 14 >=14.17'} 2916 1558 hasBin: true 2917 1559 2918 - supports-color@9.4.0: 2919 - resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==} 2920 - engines: {node: '>=12'} 2921 - 2922 - supports-preserve-symlinks-flag@1.0.0: 2923 - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 2924 - engines: {node: '>= 0.4'} 2925 - 2926 - system-architecture@0.1.0: 2927 - resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==} 2928 - engines: {node: '>=18'} 2929 - 2930 - tailwind-merge@2.5.5: 2931 - resolution: {integrity: sha512-0LXunzzAZzo0tEPxV3I297ffKZPlKDrjj7NXphC8V5ak9yHC5zRmxnOe2m/Rd/7ivsOMJe3JZ2JVocoDdQTRBA==} 2932 - 2933 - tailwindcss-animate@1.0.7: 2934 - resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==} 2935 - peerDependencies: 2936 - tailwindcss: '>=3.0.0 || insiders' 2937 - 2938 - tailwindcss@3.4.15: 2939 - resolution: {integrity: sha512-r4MeXnfBmSOuKUWmXe6h2CcyfzJCEk4F0pptO5jlnYSIViUkVmsawj80N5h2lO3gwcmSb4n3PuN+e+GC1Guylw==} 2940 - engines: {node: '>=14.0.0'} 2941 - hasBin: true 2942 - 2943 - tar-stream@3.1.7: 2944 - resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} 2945 - 2946 - tar@6.2.1: 2947 - resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} 2948 - engines: {node: '>=10'} 2949 - 2950 - terser@5.36.0: 2951 - resolution: {integrity: sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==} 2952 - engines: {node: '>=10'} 2953 - hasBin: true 2954 - 2955 - text-decoder@1.2.1: 2956 - resolution: {integrity: sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ==} 2957 - 2958 1560 thenify-all@1.6.0: 2959 1561 resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 2960 1562 engines: {node: '>=0.8'} ··· 2964 1566 2965 1567 thread-stream@3.1.0: 2966 1568 resolution: {integrity: sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==} 2967 - 2968 - tiny-invariant@1.3.3: 2969 - resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} 2970 - 2971 - tiny-warning@1.0.3: 2972 - resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} 2973 1569 2974 1570 tinyexec@0.3.1: 2975 1571 resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==} ··· 2978 1574 resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==} 2979 1575 engines: {node: '>=12.0.0'} 2980 1576 2981 - to-regex-range@5.0.1: 2982 - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 2983 - engines: {node: '>=8.0'} 2984 - 2985 - toidentifier@1.0.1: 2986 - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} 2987 - engines: {node: '>=0.6'} 2988 - 2989 - tr46@0.0.3: 2990 - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} 2991 - 2992 1577 tr46@1.0.1: 2993 1578 resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} 2994 1579 ··· 3012 1597 optional: true 3013 1598 '@swc/wasm': 3014 1599 optional: true 3015 - 3016 - tslib@2.8.1: 3017 - resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 3018 1600 3019 1601 tsup@8.3.5: 3020 1602 resolution: {integrity: sha512-Tunf6r6m6tnZsG9GYWndg0z8dEV7fD733VBFzFJ5Vcm1FtlXB8xBD/rtrBi2a3YKEV7hHtxiZtW5EAVADoe1pA==} ··· 3040 1622 engines: {node: '>=18.0.0'} 3041 1623 hasBin: true 3042 1624 3043 - type-fest@2.19.0: 3044 - resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} 3045 - engines: {node: '>=12.20'} 3046 - 3047 - type-fest@4.30.0: 3048 - resolution: {integrity: sha512-G6zXWS1dLj6eagy6sVhOMQiLtJdxQBHIA9Z6HFUNLOlr6MFOgzV8wvmidtPONfPtEUv0uZsy77XJNzTAfwPDaA==} 3049 - engines: {node: '>=16'} 3050 - 3051 1625 typescript@5.7.2: 3052 1626 resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} 3053 1627 engines: {node: '>=14.17'} 3054 1628 hasBin: true 3055 1629 3056 - ufo@1.5.4: 3057 - resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} 3058 - 3059 - uncrypto@0.1.3: 3060 - resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} 3061 - 3062 - unctx@2.3.1: 3063 - resolution: {integrity: sha512-PhKke8ZYauiqh3FEMVNm7ljvzQiph0Mt3GBRve03IJm7ukfaON2OBK795tLwhbyfzknuRRkW0+Ze+CQUmzOZ+A==} 3064 - 3065 - undici-types@5.28.4: 3066 - resolution: {integrity: sha512-3OeMF5Lyowe8VW0skf5qaIE7Or3yS9LS7fvMUI0gg4YxpIBVg0L8BxCmROw2CcYhSkpR68Epz7CGc8MPj94Uww==} 3067 - 3068 1630 undici-types@6.20.0: 3069 1631 resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} 3070 1632 3071 - unenv@1.10.0: 3072 - resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==} 3073 - 3074 - unicorn-magic@0.1.0: 3075 - resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} 3076 - engines: {node: '>=18'} 3077 - 3078 - unimport@3.14.3: 3079 - resolution: {integrity: sha512-yEJps4GW7jBdoQlxEV0ElBCJsJmH8FdZtk4oog0y++8hgLh0dGnDpE4oaTc0Lfx4N5rRJiGFUWHrBqC8CyUBmQ==} 3080 - 3081 - universalify@2.0.1: 3082 - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} 3083 - engines: {node: '>= 10.0.0'} 3084 - 3085 - unplugin@1.16.0: 3086 - resolution: {integrity: sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ==} 3087 - engines: {node: '>=14.0.0'} 3088 - 3089 - unstorage@1.13.1: 3090 - resolution: {integrity: sha512-ELexQHUrG05QVIM/iUeQNdl9FXDZhqLJ4yP59fnmn2jGUh0TEulwOgov1ubOb3Gt2ZGK/VMchJwPDNVEGWQpRg==} 3091 - peerDependencies: 3092 - '@azure/app-configuration': ^1.7.0 3093 - '@azure/cosmos': ^4.1.1 3094 - '@azure/data-tables': ^13.2.2 3095 - '@azure/identity': ^4.5.0 3096 - '@azure/keyvault-secrets': ^4.9.0 3097 - '@azure/storage-blob': ^12.25.0 3098 - '@capacitor/preferences': ^6.0.2 3099 - '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 3100 - '@planetscale/database': ^1.19.0 3101 - '@upstash/redis': ^1.34.3 3102 - '@vercel/kv': ^1.0.1 3103 - idb-keyval: ^6.2.1 3104 - ioredis: ^5.4.1 3105 - peerDependenciesMeta: 3106 - '@azure/app-configuration': 3107 - optional: true 3108 - '@azure/cosmos': 3109 - optional: true 3110 - '@azure/data-tables': 3111 - optional: true 3112 - '@azure/identity': 3113 - optional: true 3114 - '@azure/keyvault-secrets': 3115 - optional: true 3116 - '@azure/storage-blob': 3117 - optional: true 3118 - '@capacitor/preferences': 3119 - optional: true 3120 - '@netlify/blobs': 3121 - optional: true 3122 - '@planetscale/database': 3123 - optional: true 3124 - '@upstash/redis': 3125 - optional: true 3126 - '@vercel/kv': 3127 - optional: true 3128 - idb-keyval: 3129 - optional: true 3130 - ioredis: 3131 - optional: true 3132 - 3133 - untun@0.1.3: 3134 - resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==} 3135 - hasBin: true 3136 - 3137 - untyped@1.5.1: 3138 - resolution: {integrity: sha512-reBOnkJBFfBZ8pCKaeHgfZLcehXtM6UTxc+vqs1JvCps0c4amLNp3fhdGBZwYp+VLyoY9n3X5KOP7lCyWBUX9A==} 3139 - hasBin: true 3140 - 3141 - unwasm@0.3.9: 3142 - resolution: {integrity: sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==} 3143 - 3144 - update-browserslist-db@1.1.1: 3145 - resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} 3146 - hasBin: true 3147 - peerDependencies: 3148 - browserslist: '>= 4.21.0' 3149 - 3150 - uqr@0.1.2: 3151 - resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==} 3152 - 3153 - uri-js-replace@1.0.1: 3154 - resolution: {integrity: sha512-W+C9NWNLFOoBI2QWDp4UT9pv65r2w5Cx+3sTYFvtMdDBxkKt1syCqsUdSFAChbEe1uK5TfS04wt/nGwmaeIQ0g==} 3155 - 3156 - urlpattern-polyfill@8.0.2: 3157 - resolution: {integrity: sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==} 3158 - 3159 - use-sync-external-store@1.2.2: 3160 - resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==} 3161 - peerDependencies: 3162 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 3163 - 3164 - util-deprecate@1.0.2: 3165 - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 3166 - 3167 1633 v8-compile-cache-lib@3.0.1: 3168 1634 resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} 3169 1635 3170 - vinxi@0.4.3: 3171 - resolution: {integrity: sha512-RgJz7RWftML5h/qfPsp3QKVc2FSlvV4+HevpE0yEY2j+PS/I2ULjoSsZDXaR8Ks2WYuFFDzQr8yrox7v8aqkng==} 3172 - hasBin: true 3173 - 3174 - vinxi@0.5.0: 3175 - resolution: {integrity: sha512-uR6GuA3ik0pDoeFjBEowzvfm0SlpTQkVl3Tk95dklfW4crC76eOwEnOXow8tIevyHtRv9aJI3SmyePJrs9INXQ==} 3176 - hasBin: true 3177 - 3178 - vite@5.4.11: 3179 - resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==} 3180 - engines: {node: ^18.0.0 || >=20.0.0} 3181 - hasBin: true 3182 - peerDependencies: 3183 - '@types/node': ^18.0.0 || >=20.0.0 3184 - less: '*' 3185 - lightningcss: ^1.21.0 3186 - sass: '*' 3187 - sass-embedded: '*' 3188 - stylus: '*' 3189 - sugarss: '*' 3190 - terser: ^5.4.0 3191 - peerDependenciesMeta: 3192 - '@types/node': 3193 - optional: true 3194 - less: 3195 - optional: true 3196 - lightningcss: 3197 - optional: true 3198 - sass: 3199 - optional: true 3200 - sass-embedded: 3201 - optional: true 3202 - stylus: 3203 - optional: true 3204 - sugarss: 3205 - optional: true 3206 - terser: 3207 - optional: true 3208 - 3209 - vite@6.0.2: 3210 - resolution: {integrity: sha512-XdQ+VsY2tJpBsKGs0wf3U/+azx8BBpYRHFAyKm5VeEZNOJZRB63q7Sc8Iup3k0TrN3KO6QgyzFf+opSbfY1y0g==} 3211 - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 3212 - hasBin: true 3213 - peerDependencies: 3214 - '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 3215 - jiti: '>=1.21.0' 3216 - less: '*' 3217 - lightningcss: ^1.21.0 3218 - sass: '*' 3219 - sass-embedded: '*' 3220 - stylus: '*' 3221 - sugarss: '*' 3222 - terser: ^5.16.0 3223 - tsx: ^4.8.1 3224 - yaml: ^2.4.2 3225 - peerDependenciesMeta: 3226 - '@types/node': 3227 - optional: true 3228 - jiti: 3229 - optional: true 3230 - less: 3231 - optional: true 3232 - lightningcss: 3233 - optional: true 3234 - sass: 3235 - optional: true 3236 - sass-embedded: 3237 - optional: true 3238 - stylus: 3239 - optional: true 3240 - sugarss: 3241 - optional: true 3242 - terser: 3243 - optional: true 3244 - tsx: 3245 - optional: true 3246 - yaml: 3247 - optional: true 3248 - 3249 - webidl-conversions@3.0.1: 3250 - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} 1636 + web-streams-polyfill@3.3.3: 1637 + resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} 1638 + engines: {node: '>= 8'} 3251 1639 3252 1640 webidl-conversions@4.0.2: 3253 1641 resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} 3254 1642 3255 - webpack-virtual-modules@0.6.2: 3256 - resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==} 3257 - 3258 - whatwg-url@5.0.0: 3259 - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} 3260 - 3261 1643 whatwg-url@7.1.0: 3262 1644 resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} 3263 1645 ··· 3266 1648 engines: {node: '>= 8'} 3267 1649 hasBin: true 3268 1650 3269 - which@4.0.0: 3270 - resolution: {integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==} 3271 - engines: {node: ^16.13.0 || >=18.0.0} 3272 - hasBin: true 3273 - 3274 - wide-align@1.1.5: 3275 - resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} 3276 - 3277 - widest-line@4.0.1: 3278 - resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==} 3279 - engines: {node: '>=12'} 3280 - 3281 1651 wrap-ansi@7.0.0: 3282 1652 resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 3283 1653 engines: {node: '>=10'} ··· 3289 1659 wrappy@1.0.2: 3290 1660 resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 3291 1661 3292 - y18n@5.0.8: 3293 - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 3294 - engines: {node: '>=10'} 3295 - 3296 - yallist@3.1.1: 3297 - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 3298 - 3299 - yallist@4.0.0: 3300 - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 3301 - 3302 - yaml-ast-parser@0.0.43: 3303 - resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==} 1662 + ws@8.18.0: 1663 + resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} 1664 + engines: {node: '>=10.0.0'} 1665 + peerDependencies: 1666 + bufferutil: ^4.0.1 1667 + utf-8-validate: '>=5.0.2' 1668 + peerDependenciesMeta: 1669 + bufferutil: 1670 + optional: true 1671 + utf-8-validate: 1672 + optional: true 3304 1673 3305 1674 yaml@2.6.1: 3306 1675 resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==} 3307 1676 engines: {node: '>= 14'} 3308 1677 hasBin: true 3309 1678 3310 - yargs-parser@21.1.1: 3311 - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 3312 - engines: {node: '>=12'} 3313 - 3314 - yargs@17.7.2: 3315 - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 3316 - engines: {node: '>=12'} 3317 - 3318 1679 yn@3.1.1: 3319 1680 resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} 3320 1681 engines: {node: '>=6'} 3321 1682 3322 - zip-stream@6.0.1: 3323 - resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==} 3324 - engines: {node: '>= 14'} 3325 - 3326 1683 zod@3.23.8: 3327 1684 resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} 3328 1685 3329 1686 snapshots: 3330 1687 3331 - '@alloc/quick-lru@5.2.0': {} 1688 + '@atcute/bluesky@1.0.9(@atcute/client@2.0.6)': 1689 + dependencies: 1690 + '@atcute/client': 2.0.6 3332 1691 3333 - '@ampproject/remapping@2.3.0': 3334 - dependencies: 3335 - '@jridgewell/gen-mapping': 0.3.5 3336 - '@jridgewell/trace-mapping': 0.3.25 1692 + '@atcute/client@2.0.6': {} 3337 1693 3338 - '@babel/code-frame@7.26.2': 1694 + '@atcute/lex-cli@1.0.3': 3339 1695 dependencies: 3340 - '@babel/helper-validator-identifier': 7.25.9 3341 - js-tokens: 4.0.0 1696 + '@badrap/valita': 0.3.16 1697 + '@externdefs/collider': 0.1.0(@badrap/valita@0.3.16) 3342 1698 picocolors: 1.1.1 3343 - 3344 - '@babel/compat-data@7.26.2': {} 3345 - 3346 - '@babel/core@7.26.0': 3347 - dependencies: 3348 - '@ampproject/remapping': 2.3.0 3349 - '@babel/code-frame': 7.26.2 3350 - '@babel/generator': 7.26.2 3351 - '@babel/helper-compilation-targets': 7.25.9 3352 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) 3353 - '@babel/helpers': 7.26.0 3354 - '@babel/parser': 7.26.2 3355 - '@babel/template': 7.25.9 3356 - '@babel/traverse': 7.25.9 3357 - '@babel/types': 7.26.0 3358 - convert-source-map: 2.0.0 3359 - debug: 4.3.7(supports-color@9.4.0) 3360 - gensync: 1.0.0-beta.2 3361 - json5: 2.2.3 3362 - semver: 6.3.1 3363 - transitivePeerDependencies: 3364 - - supports-color 1699 + prettier: 3.4.1 3365 1700 3366 - '@babel/generator@7.26.2': 3367 - dependencies: 3368 - '@babel/parser': 7.26.2 3369 - '@babel/types': 7.26.0 3370 - '@jridgewell/gen-mapping': 0.3.5 3371 - '@jridgewell/trace-mapping': 0.3.25 3372 - jsesc: 3.0.2 3373 - 3374 - '@babel/helper-compilation-targets@7.25.9': 3375 - dependencies: 3376 - '@babel/compat-data': 7.26.2 3377 - '@babel/helper-validator-option': 7.25.9 3378 - browserslist: 4.24.2 3379 - lru-cache: 5.1.1 3380 - semver: 6.3.1 3381 - 3382 - '@babel/helper-module-imports@7.25.9': 3383 - dependencies: 3384 - '@babel/traverse': 7.25.9 3385 - '@babel/types': 7.26.0 3386 - transitivePeerDependencies: 3387 - - supports-color 3388 - 3389 - '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)': 3390 - dependencies: 3391 - '@babel/core': 7.26.0 3392 - '@babel/helper-module-imports': 7.25.9 3393 - '@babel/helper-validator-identifier': 7.25.9 3394 - '@babel/traverse': 7.25.9 3395 - transitivePeerDependencies: 3396 - - supports-color 3397 - 3398 - '@babel/helper-plugin-utils@7.25.9': {} 3399 - 3400 - '@babel/helper-string-parser@7.25.9': {} 3401 - 3402 - '@babel/helper-validator-identifier@7.25.9': {} 3403 - 3404 - '@babel/helper-validator-option@7.25.9': {} 3405 - 3406 - '@babel/helpers@7.26.0': 3407 - dependencies: 3408 - '@babel/template': 7.25.9 3409 - '@babel/types': 7.26.0 3410 - 3411 - '@babel/parser@7.26.2': 3412 - dependencies: 3413 - '@babel/types': 7.26.0 3414 - 3415 - '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)': 3416 - dependencies: 3417 - '@babel/core': 7.26.0 3418 - '@babel/helper-plugin-utils': 7.25.9 3419 - 3420 - '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)': 3421 - dependencies: 3422 - '@babel/core': 7.26.0 3423 - '@babel/helper-plugin-utils': 7.25.9 3424 - 3425 - '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)': 3426 - dependencies: 3427 - '@babel/core': 7.26.0 3428 - '@babel/helper-plugin-utils': 7.25.9 3429 - 3430 - '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)': 3431 - dependencies: 3432 - '@babel/core': 7.26.0 3433 - '@babel/helper-plugin-utils': 7.25.9 3434 - 3435 - '@babel/standalone@7.26.2': {} 3436 - 3437 - '@babel/template@7.25.9': 3438 - dependencies: 3439 - '@babel/code-frame': 7.26.2 3440 - '@babel/parser': 7.26.2 3441 - '@babel/types': 7.26.0 3442 - 3443 - '@babel/traverse@7.25.9': 3444 - dependencies: 3445 - '@babel/code-frame': 7.26.2 3446 - '@babel/generator': 7.26.2 3447 - '@babel/parser': 7.26.2 3448 - '@babel/template': 7.25.9 3449 - '@babel/types': 7.26.0 3450 - debug: 4.3.7(supports-color@9.4.0) 3451 - globals: 11.12.0 3452 - transitivePeerDependencies: 3453 - - supports-color 3454 - 3455 - '@babel/types@7.26.0': 3456 - dependencies: 3457 - '@babel/helper-string-parser': 7.25.9 3458 - '@babel/helper-validator-identifier': 7.25.9 3459 - 3460 - '@cloudflare/kv-asset-handler@0.3.4': 3461 - dependencies: 3462 - mime: 3.0.0 1701 + '@badrap/valita@0.3.16': {} 3463 1702 3464 1703 '@cspotcode/source-map-support@0.8.1': 3465 1704 dependencies: 3466 1705 '@jridgewell/trace-mapping': 0.3.9 3467 1706 3468 - '@deno/shim-deno-test@0.5.0': {} 1707 + '@drizzle-team/brocli@0.10.2': {} 3469 1708 3470 - '@deno/shim-deno@0.19.2': 1709 + '@esbuild-kit/core-utils@3.3.2': 3471 1710 dependencies: 3472 - '@deno/shim-deno-test': 0.5.0 3473 - which: 4.0.0 1711 + esbuild: 0.18.20 1712 + source-map-support: 0.5.21 3474 1713 3475 - '@esbuild/aix-ppc64@0.20.2': 3476 - optional: true 1714 + '@esbuild-kit/esm-loader@2.6.5': 1715 + dependencies: 1716 + '@esbuild-kit/core-utils': 3.3.2 1717 + get-tsconfig: 4.8.1 3477 1718 3478 - '@esbuild/aix-ppc64@0.21.5': 1719 + '@esbuild/aix-ppc64@0.19.12': 3479 1720 optional: true 3480 1721 3481 1722 '@esbuild/aix-ppc64@0.23.1': ··· 3484 1725 '@esbuild/aix-ppc64@0.24.0': 3485 1726 optional: true 3486 1727 3487 - '@esbuild/android-arm64@0.20.2': 1728 + '@esbuild/android-arm64@0.18.20': 3488 1729 optional: true 3489 1730 3490 - '@esbuild/android-arm64@0.21.5': 1731 + '@esbuild/android-arm64@0.19.12': 3491 1732 optional: true 3492 1733 3493 1734 '@esbuild/android-arm64@0.23.1': ··· 3496 1737 '@esbuild/android-arm64@0.24.0': 3497 1738 optional: true 3498 1739 3499 - '@esbuild/android-arm@0.20.2': 1740 + '@esbuild/android-arm@0.18.20': 3500 1741 optional: true 3501 1742 3502 - '@esbuild/android-arm@0.21.5': 1743 + '@esbuild/android-arm@0.19.12': 3503 1744 optional: true 3504 1745 3505 1746 '@esbuild/android-arm@0.23.1': ··· 3508 1749 '@esbuild/android-arm@0.24.0': 3509 1750 optional: true 3510 1751 3511 - '@esbuild/android-x64@0.20.2': 1752 + '@esbuild/android-x64@0.18.20': 3512 1753 optional: true 3513 1754 3514 - '@esbuild/android-x64@0.21.5': 1755 + '@esbuild/android-x64@0.19.12': 3515 1756 optional: true 3516 1757 3517 1758 '@esbuild/android-x64@0.23.1': ··· 3520 1761 '@esbuild/android-x64@0.24.0': 3521 1762 optional: true 3522 1763 3523 - '@esbuild/darwin-arm64@0.20.2': 1764 + '@esbuild/darwin-arm64@0.18.20': 3524 1765 optional: true 3525 1766 3526 - '@esbuild/darwin-arm64@0.21.5': 1767 + '@esbuild/darwin-arm64@0.19.12': 3527 1768 optional: true 3528 1769 3529 1770 '@esbuild/darwin-arm64@0.23.1': ··· 3532 1773 '@esbuild/darwin-arm64@0.24.0': 3533 1774 optional: true 3534 1775 3535 - '@esbuild/darwin-x64@0.20.2': 1776 + '@esbuild/darwin-x64@0.18.20': 3536 1777 optional: true 3537 1778 3538 - '@esbuild/darwin-x64@0.21.5': 1779 + '@esbuild/darwin-x64@0.19.12': 3539 1780 optional: true 3540 1781 3541 1782 '@esbuild/darwin-x64@0.23.1': ··· 3544 1785 '@esbuild/darwin-x64@0.24.0': 3545 1786 optional: true 3546 1787 3547 - '@esbuild/freebsd-arm64@0.20.2': 1788 + '@esbuild/freebsd-arm64@0.18.20': 3548 1789 optional: true 3549 1790 3550 - '@esbuild/freebsd-arm64@0.21.5': 1791 + '@esbuild/freebsd-arm64@0.19.12': 3551 1792 optional: true 3552 1793 3553 1794 '@esbuild/freebsd-arm64@0.23.1': ··· 3556 1797 '@esbuild/freebsd-arm64@0.24.0': 3557 1798 optional: true 3558 1799 3559 - '@esbuild/freebsd-x64@0.20.2': 1800 + '@esbuild/freebsd-x64@0.18.20': 3560 1801 optional: true 3561 1802 3562 - '@esbuild/freebsd-x64@0.21.5': 1803 + '@esbuild/freebsd-x64@0.19.12': 3563 1804 optional: true 3564 1805 3565 1806 '@esbuild/freebsd-x64@0.23.1': ··· 3568 1809 '@esbuild/freebsd-x64@0.24.0': 3569 1810 optional: true 3570 1811 3571 - '@esbuild/linux-arm64@0.20.2': 1812 + '@esbuild/linux-arm64@0.18.20': 3572 1813 optional: true 3573 1814 3574 - '@esbuild/linux-arm64@0.21.5': 1815 + '@esbuild/linux-arm64@0.19.12': 3575 1816 optional: true 3576 1817 3577 1818 '@esbuild/linux-arm64@0.23.1': ··· 3580 1821 '@esbuild/linux-arm64@0.24.0': 3581 1822 optional: true 3582 1823 3583 - '@esbuild/linux-arm@0.20.2': 1824 + '@esbuild/linux-arm@0.18.20': 3584 1825 optional: true 3585 1826 3586 - '@esbuild/linux-arm@0.21.5': 1827 + '@esbuild/linux-arm@0.19.12': 3587 1828 optional: true 3588 1829 3589 1830 '@esbuild/linux-arm@0.23.1': ··· 3592 1833 '@esbuild/linux-arm@0.24.0': 3593 1834 optional: true 3594 1835 3595 - '@esbuild/linux-ia32@0.20.2': 1836 + '@esbuild/linux-ia32@0.18.20': 3596 1837 optional: true 3597 1838 3598 - '@esbuild/linux-ia32@0.21.5': 1839 + '@esbuild/linux-ia32@0.19.12': 3599 1840 optional: true 3600 1841 3601 1842 '@esbuild/linux-ia32@0.23.1': ··· 3604 1845 '@esbuild/linux-ia32@0.24.0': 3605 1846 optional: true 3606 1847 3607 - '@esbuild/linux-loong64@0.20.2': 1848 + '@esbuild/linux-loong64@0.18.20': 3608 1849 optional: true 3609 1850 3610 - '@esbuild/linux-loong64@0.21.5': 1851 + '@esbuild/linux-loong64@0.19.12': 3611 1852 optional: true 3612 1853 3613 1854 '@esbuild/linux-loong64@0.23.1': ··· 3616 1857 '@esbuild/linux-loong64@0.24.0': 3617 1858 optional: true 3618 1859 3619 - '@esbuild/linux-mips64el@0.20.2': 1860 + '@esbuild/linux-mips64el@0.18.20': 3620 1861 optional: true 3621 1862 3622 - '@esbuild/linux-mips64el@0.21.5': 1863 + '@esbuild/linux-mips64el@0.19.12': 3623 1864 optional: true 3624 1865 3625 1866 '@esbuild/linux-mips64el@0.23.1': ··· 3628 1869 '@esbuild/linux-mips64el@0.24.0': 3629 1870 optional: true 3630 1871 3631 - '@esbuild/linux-ppc64@0.20.2': 1872 + '@esbuild/linux-ppc64@0.18.20': 3632 1873 optional: true 3633 1874 3634 - '@esbuild/linux-ppc64@0.21.5': 1875 + '@esbuild/linux-ppc64@0.19.12': 3635 1876 optional: true 3636 1877 3637 1878 '@esbuild/linux-ppc64@0.23.1': ··· 3640 1881 '@esbuild/linux-ppc64@0.24.0': 3641 1882 optional: true 3642 1883 3643 - '@esbuild/linux-riscv64@0.20.2': 1884 + '@esbuild/linux-riscv64@0.18.20': 3644 1885 optional: true 3645 1886 3646 - '@esbuild/linux-riscv64@0.21.5': 1887 + '@esbuild/linux-riscv64@0.19.12': 3647 1888 optional: true 3648 1889 3649 1890 '@esbuild/linux-riscv64@0.23.1': ··· 3652 1893 '@esbuild/linux-riscv64@0.24.0': 3653 1894 optional: true 3654 1895 3655 - '@esbuild/linux-s390x@0.20.2': 1896 + '@esbuild/linux-s390x@0.18.20': 3656 1897 optional: true 3657 1898 3658 - '@esbuild/linux-s390x@0.21.5': 1899 + '@esbuild/linux-s390x@0.19.12': 3659 1900 optional: true 3660 1901 3661 1902 '@esbuild/linux-s390x@0.23.1': ··· 3664 1905 '@esbuild/linux-s390x@0.24.0': 3665 1906 optional: true 3666 1907 3667 - '@esbuild/linux-x64@0.20.2': 1908 + '@esbuild/linux-x64@0.18.20': 3668 1909 optional: true 3669 1910 3670 - '@esbuild/linux-x64@0.21.5': 1911 + '@esbuild/linux-x64@0.19.12': 3671 1912 optional: true 3672 1913 3673 1914 '@esbuild/linux-x64@0.23.1': ··· 3676 1917 '@esbuild/linux-x64@0.24.0': 3677 1918 optional: true 3678 1919 3679 - '@esbuild/netbsd-x64@0.20.2': 1920 + '@esbuild/netbsd-x64@0.18.20': 3680 1921 optional: true 3681 1922 3682 - '@esbuild/netbsd-x64@0.21.5': 1923 + '@esbuild/netbsd-x64@0.19.12': 3683 1924 optional: true 3684 1925 3685 1926 '@esbuild/netbsd-x64@0.23.1': ··· 3694 1935 '@esbuild/openbsd-arm64@0.24.0': 3695 1936 optional: true 3696 1937 3697 - '@esbuild/openbsd-x64@0.20.2': 1938 + '@esbuild/openbsd-x64@0.18.20': 3698 1939 optional: true 3699 1940 3700 - '@esbuild/openbsd-x64@0.21.5': 1941 + '@esbuild/openbsd-x64@0.19.12': 3701 1942 optional: true 3702 1943 3703 1944 '@esbuild/openbsd-x64@0.23.1': ··· 3706 1947 '@esbuild/openbsd-x64@0.24.0': 3707 1948 optional: true 3708 1949 3709 - '@esbuild/sunos-x64@0.20.2': 1950 + '@esbuild/sunos-x64@0.18.20': 3710 1951 optional: true 3711 1952 3712 - '@esbuild/sunos-x64@0.21.5': 1953 + '@esbuild/sunos-x64@0.19.12': 3713 1954 optional: true 3714 1955 3715 1956 '@esbuild/sunos-x64@0.23.1': ··· 3718 1959 '@esbuild/sunos-x64@0.24.0': 3719 1960 optional: true 3720 1961 3721 - '@esbuild/win32-arm64@0.20.2': 1962 + '@esbuild/win32-arm64@0.18.20': 3722 1963 optional: true 3723 1964 3724 - '@esbuild/win32-arm64@0.21.5': 1965 + '@esbuild/win32-arm64@0.19.12': 3725 1966 optional: true 3726 1967 3727 1968 '@esbuild/win32-arm64@0.23.1': ··· 3730 1971 '@esbuild/win32-arm64@0.24.0': 3731 1972 optional: true 3732 1973 3733 - '@esbuild/win32-ia32@0.20.2': 1974 + '@esbuild/win32-ia32@0.18.20': 3734 1975 optional: true 3735 1976 3736 - '@esbuild/win32-ia32@0.21.5': 1977 + '@esbuild/win32-ia32@0.19.12': 3737 1978 optional: true 3738 1979 3739 1980 '@esbuild/win32-ia32@0.23.1': ··· 3742 1983 '@esbuild/win32-ia32@0.24.0': 3743 1984 optional: true 3744 1985 3745 - '@esbuild/win32-x64@0.20.2': 1986 + '@esbuild/win32-x64@0.18.20': 3746 1987 optional: true 3747 1988 3748 - '@esbuild/win32-x64@0.21.5': 1989 + '@esbuild/win32-x64@0.19.12': 3749 1990 optional: true 3750 1991 3751 1992 '@esbuild/win32-x64@0.23.1': ··· 3754 1995 '@esbuild/win32-x64@0.24.0': 3755 1996 optional: true 3756 1997 1998 + '@externdefs/collider@0.1.0(@badrap/valita@0.3.16)': 1999 + dependencies: 2000 + '@badrap/valita': 0.3.16 2001 + 3757 2002 '@hono/node-server@1.13.7(hono@4.6.12)': 3758 2003 dependencies: 3759 2004 hono: 4.6.12 3760 2005 3761 - '@ioredis/commands@1.2.0': {} 3762 - 3763 2006 '@isaacs/cliui@8.0.2': 3764 2007 dependencies: 3765 2008 string-width: 5.1.2 ··· 3779 2022 3780 2023 '@jridgewell/set-array@1.2.1': {} 3781 2024 3782 - '@jridgewell/source-map@0.3.6': 3783 - dependencies: 3784 - '@jridgewell/gen-mapping': 0.3.5 3785 - '@jridgewell/trace-mapping': 0.3.25 3786 - 3787 2025 '@jridgewell/sourcemap-codec@1.5.0': {} 3788 2026 3789 2027 '@jridgewell/trace-mapping@0.3.25': ··· 3796 2034 '@jridgewell/resolve-uri': 3.1.2 3797 2035 '@jridgewell/sourcemap-codec': 1.5.0 3798 2036 3799 - '@mapbox/node-pre-gyp@1.0.11': 2037 + '@libsql/client@0.14.0(bufferutil@4.0.8)': 3800 2038 dependencies: 3801 - detect-libc: 2.0.3 3802 - https-proxy-agent: 5.0.1 3803 - make-dir: 3.1.0 3804 - node-fetch: 2.7.0 3805 - nopt: 5.0.0 3806 - npmlog: 5.0.1 3807 - rimraf: 3.0.2 3808 - semver: 7.6.3 3809 - tar: 6.2.1 2039 + '@libsql/core': 0.14.0 2040 + '@libsql/hrana-client': 0.7.0(bufferutil@4.0.8) 2041 + js-base64: 3.7.7 2042 + libsql: 0.4.7 2043 + promise-limit: 2.7.0 3810 2044 transitivePeerDependencies: 3811 - - encoding 3812 - - supports-color 2045 + - bufferutil 2046 + - utf-8-validate 3813 2047 3814 - '@netlify/functions@2.8.2': 2048 + '@libsql/core@0.14.0': 3815 2049 dependencies: 3816 - '@netlify/serverless-functions-api': 1.26.1 2050 + js-base64: 3.7.7 3817 2051 3818 - '@netlify/node-cookies@0.1.0': {} 2052 + '@libsql/darwin-arm64@0.4.7': 2053 + optional: true 3819 2054 3820 - '@netlify/serverless-functions-api@1.26.1': 3821 - dependencies: 3822 - '@netlify/node-cookies': 0.1.0 3823 - urlpattern-polyfill: 8.0.2 2055 + '@libsql/darwin-x64@0.4.7': 2056 + optional: true 3824 2057 3825 - '@nodelib/fs.scandir@2.1.5': 2058 + '@libsql/hrana-client@0.7.0(bufferutil@4.0.8)': 3826 2059 dependencies: 3827 - '@nodelib/fs.stat': 2.0.5 3828 - run-parallel: 1.2.0 2060 + '@libsql/isomorphic-fetch': 0.3.1 2061 + '@libsql/isomorphic-ws': 0.1.5(bufferutil@4.0.8) 2062 + js-base64: 3.7.7 2063 + node-fetch: 3.3.2 2064 + transitivePeerDependencies: 2065 + - bufferutil 2066 + - utf-8-validate 3829 2067 3830 - '@nodelib/fs.stat@2.0.5': {} 2068 + '@libsql/isomorphic-fetch@0.3.1': {} 3831 2069 3832 - '@nodelib/fs.walk@1.2.8': 2070 + '@libsql/isomorphic-ws@0.1.5(bufferutil@4.0.8)': 3833 2071 dependencies: 3834 - '@nodelib/fs.scandir': 2.1.5 3835 - fastq: 1.17.1 2072 + '@types/ws': 8.5.13 2073 + ws: 8.18.0(bufferutil@4.0.8) 2074 + transitivePeerDependencies: 2075 + - bufferutil 2076 + - utf-8-validate 3836 2077 3837 - '@parcel/watcher-android-arm64@2.5.0': 2078 + '@libsql/linux-arm64-gnu@0.4.7': 3838 2079 optional: true 3839 2080 3840 - '@parcel/watcher-darwin-arm64@2.5.0': 2081 + '@libsql/linux-arm64-musl@0.4.7': 3841 2082 optional: true 3842 2083 3843 - '@parcel/watcher-darwin-x64@2.5.0': 2084 + '@libsql/linux-x64-gnu@0.4.7': 3844 2085 optional: true 3845 2086 3846 - '@parcel/watcher-freebsd-x64@2.5.0': 2087 + '@libsql/linux-x64-musl@0.4.7': 3847 2088 optional: true 3848 2089 3849 - '@parcel/watcher-linux-arm-glibc@2.5.0': 3850 - optional: true 3851 - 3852 - '@parcel/watcher-linux-arm-musl@2.5.0': 2090 + '@libsql/win32-x64-msvc@0.4.7': 3853 2091 optional: true 3854 2092 3855 - '@parcel/watcher-linux-arm64-glibc@2.5.0': 3856 - optional: true 3857 - 3858 - '@parcel/watcher-linux-arm64-musl@2.5.0': 3859 - optional: true 3860 - 3861 - '@parcel/watcher-linux-x64-glibc@2.5.0': 3862 - optional: true 3863 - 3864 - '@parcel/watcher-linux-x64-musl@2.5.0': 3865 - optional: true 3866 - 3867 - '@parcel/watcher-wasm@2.3.0': 3868 - dependencies: 3869 - is-glob: 4.0.3 3870 - micromatch: 4.0.8 3871 - 3872 - '@parcel/watcher-wasm@2.5.0': 3873 - dependencies: 3874 - is-glob: 4.0.3 3875 - micromatch: 4.0.8 3876 - 3877 - '@parcel/watcher-win32-arm64@2.5.0': 3878 - optional: true 3879 - 3880 - '@parcel/watcher-win32-ia32@2.5.0': 3881 - optional: true 3882 - 3883 - '@parcel/watcher-win32-x64@2.5.0': 3884 - optional: true 3885 - 3886 - '@parcel/watcher@2.5.0': 3887 - dependencies: 3888 - detect-libc: 1.0.3 3889 - is-glob: 4.0.3 3890 - micromatch: 4.0.8 3891 - node-addon-api: 7.1.1 3892 - optionalDependencies: 3893 - '@parcel/watcher-android-arm64': 2.5.0 3894 - '@parcel/watcher-darwin-arm64': 2.5.0 3895 - '@parcel/watcher-darwin-x64': 2.5.0 3896 - '@parcel/watcher-freebsd-x64': 2.5.0 3897 - '@parcel/watcher-linux-arm-glibc': 2.5.0 3898 - '@parcel/watcher-linux-arm-musl': 2.5.0 3899 - '@parcel/watcher-linux-arm64-glibc': 2.5.0 3900 - '@parcel/watcher-linux-arm64-musl': 2.5.0 3901 - '@parcel/watcher-linux-x64-glibc': 2.5.0 3902 - '@parcel/watcher-linux-x64-musl': 2.5.0 3903 - '@parcel/watcher-win32-arm64': 2.5.0 3904 - '@parcel/watcher-win32-ia32': 2.5.0 3905 - '@parcel/watcher-win32-x64': 2.5.0 2093 + '@neon-rs/load@0.0.4': {} 3906 2094 3907 2095 '@pkgjs/parseargs@0.11.0': 3908 2096 optional: true 3909 2097 3910 - '@redocly/ajv@8.11.2': 3911 - dependencies: 3912 - fast-deep-equal: 3.1.3 3913 - json-schema-traverse: 1.0.0 3914 - require-from-string: 2.0.2 3915 - uri-js-replace: 1.0.1 3916 - 3917 - '@redocly/config@0.17.1': {} 3918 - 3919 - '@redocly/openapi-core@1.25.15(supports-color@9.4.0)': 3920 - dependencies: 3921 - '@redocly/ajv': 8.11.2 3922 - '@redocly/config': 0.17.1 3923 - colorette: 1.4.0 3924 - https-proxy-agent: 7.0.5(supports-color@9.4.0) 3925 - js-levenshtein: 1.1.6 3926 - js-yaml: 4.1.0 3927 - lodash.isequal: 4.5.0 3928 - minimatch: 5.1.6 3929 - node-fetch: 2.7.0 3930 - pluralize: 8.0.0 3931 - yaml-ast-parser: 0.0.43 3932 - transitivePeerDependencies: 3933 - - encoding 3934 - - supports-color 3935 - 3936 - '@rollup/plugin-alias@5.1.1(rollup@4.28.0)': 3937 - optionalDependencies: 3938 - rollup: 4.28.0 3939 - 3940 - '@rollup/plugin-commonjs@28.0.1(rollup@4.28.0)': 3941 - dependencies: 3942 - '@rollup/pluginutils': 5.1.3(rollup@4.28.0) 3943 - commondir: 1.0.1 3944 - estree-walker: 2.0.2 3945 - fdir: 6.4.2(picomatch@4.0.2) 3946 - is-reference: 1.2.1 3947 - magic-string: 0.30.14 3948 - picomatch: 4.0.2 3949 - optionalDependencies: 3950 - rollup: 4.28.0 3951 - 3952 - '@rollup/plugin-inject@5.0.5(rollup@4.28.0)': 3953 - dependencies: 3954 - '@rollup/pluginutils': 5.1.3(rollup@4.28.0) 3955 - estree-walker: 2.0.2 3956 - magic-string: 0.30.14 3957 - optionalDependencies: 3958 - rollup: 4.28.0 3959 - 3960 - '@rollup/plugin-json@6.1.0(rollup@4.28.0)': 3961 - dependencies: 3962 - '@rollup/pluginutils': 5.1.3(rollup@4.28.0) 3963 - optionalDependencies: 3964 - rollup: 4.28.0 3965 - 3966 - '@rollup/plugin-node-resolve@15.3.0(rollup@4.28.0)': 3967 - dependencies: 3968 - '@rollup/pluginutils': 5.1.3(rollup@4.28.0) 3969 - '@types/resolve': 1.20.2 3970 - deepmerge: 4.3.1 3971 - is-module: 1.0.0 3972 - resolve: 1.22.8 3973 - optionalDependencies: 3974 - rollup: 4.28.0 3975 - 3976 - '@rollup/plugin-replace@6.0.1(rollup@4.28.0)': 3977 - dependencies: 3978 - '@rollup/pluginutils': 5.1.3(rollup@4.28.0) 3979 - magic-string: 0.30.14 3980 - optionalDependencies: 3981 - rollup: 4.28.0 3982 - 3983 - '@rollup/plugin-terser@0.4.4(rollup@4.28.0)': 3984 - dependencies: 3985 - serialize-javascript: 6.0.2 3986 - smob: 1.5.0 3987 - terser: 5.36.0 3988 - optionalDependencies: 3989 - rollup: 4.28.0 3990 - 3991 - '@rollup/pluginutils@5.1.3(rollup@4.28.0)': 3992 - dependencies: 3993 - '@types/estree': 1.0.6 3994 - estree-walker: 2.0.2 3995 - picomatch: 4.0.2 3996 - optionalDependencies: 3997 - rollup: 4.28.0 3998 - 3999 2098 '@rollup/rollup-android-arm-eabi@4.28.0': 4000 2099 optional: true 4001 2100 ··· 4050 2149 '@rollup/rollup-win32-x64-msvc@4.28.0': 4051 2150 optional: true 4052 2151 4053 - '@sindresorhus/merge-streams@2.3.0': {} 4054 - 4055 - '@tanstack/history@1.85.3': {} 4056 - 4057 - '@tanstack/react-cross-context@1.85.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 4058 - dependencies: 4059 - react: 18.3.1 4060 - react-dom: 18.3.1(react@18.3.1) 4061 - 4062 - '@tanstack/react-router@1.85.5(@tanstack/router-generator@1.85.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2152 + '@skyware/jetstream@0.2.1(@atcute/client@2.0.6)': 4063 2153 dependencies: 4064 - '@tanstack/history': 1.85.3 4065 - '@tanstack/react-store': 0.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4066 - jsesc: 3.0.2 4067 - react: 18.3.1 4068 - react-dom: 18.3.1(react@18.3.1) 4069 - tiny-invariant: 1.3.3 4070 - tiny-warning: 1.0.3 4071 - optionalDependencies: 4072 - '@tanstack/router-generator': 1.85.3 4073 - 4074 - '@tanstack/react-store@0.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 4075 - dependencies: 4076 - '@tanstack/store': 0.6.0 4077 - react: 18.3.1 4078 - react-dom: 18.3.1(react@18.3.1) 4079 - use-sync-external-store: 1.2.2(react@18.3.1) 4080 - 4081 - '@tanstack/router-generator@1.85.3': 4082 - dependencies: 4083 - '@tanstack/virtual-file-routes': 1.81.9 4084 - prettier: 3.4.1 4085 - tsx: 4.19.2 4086 - zod: 3.23.8 4087 - 4088 - '@tanstack/router-plugin@1.85.3(vite@6.0.2(@types/node@22.10.1)(jiti@2.4.1)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))': 4089 - dependencies: 4090 - '@babel/core': 7.26.0 4091 - '@babel/generator': 7.26.2 4092 - '@babel/parser': 7.26.2 4093 - '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) 4094 - '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0) 4095 - '@babel/template': 7.25.9 4096 - '@babel/traverse': 7.25.9 4097 - '@babel/types': 7.26.0 4098 - '@tanstack/router-generator': 1.85.3 4099 - '@tanstack/virtual-file-routes': 1.81.9 4100 - '@types/babel__core': 7.20.5 4101 - '@types/babel__generator': 7.6.8 4102 - '@types/babel__template': 7.4.4 4103 - '@types/babel__traverse': 7.20.6 4104 - babel-dead-code-elimination: 1.0.6 4105 - chokidar: 3.6.0 4106 - unplugin: 1.16.0 4107 - zod: 3.23.8 4108 - optionalDependencies: 4109 - vite: 6.0.2(@types/node@22.10.1)(jiti@2.4.1)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) 2154 + '@atcute/bluesky': 1.0.9(@atcute/client@2.0.6) 2155 + partysocket: 1.0.2 4110 2156 transitivePeerDependencies: 4111 - - supports-color 2157 + - '@atcute/client' 4112 2158 4113 - '@tanstack/start-vite-plugin@1.85.3': 4114 - dependencies: 4115 - '@babel/code-frame': 7.26.2 4116 - '@babel/core': 7.26.0 4117 - '@babel/generator': 7.26.2 4118 - '@babel/parser': 7.26.2 4119 - '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) 4120 - '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0) 4121 - '@babel/template': 7.25.9 4122 - '@babel/traverse': 7.25.9 4123 - '@babel/types': 7.26.0 4124 - '@types/babel__code-frame': 7.0.6 4125 - '@types/babel__core': 7.20.5 4126 - '@types/babel__generator': 7.6.8 4127 - '@types/babel__template': 7.4.4 4128 - '@types/babel__traverse': 7.20.6 4129 - babel-dead-code-elimination: 1.0.6 4130 - tiny-invariant: 1.3.3 4131 - transitivePeerDependencies: 4132 - - supports-color 2159 + '@swc/core-darwin-arm64@1.9.3': 2160 + optional: true 4133 2161 4134 - '@tanstack/start@1.85.5(@types/node@22.10.1)(ioredis@5.4.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(terser@5.36.0)(typescript@5.7.2)(vite@6.0.2(@types/node@22.10.1)(jiti@2.4.1)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))': 4135 - dependencies: 4136 - '@tanstack/react-cross-context': 1.85.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4137 - '@tanstack/react-router': 1.85.5(@tanstack/router-generator@1.85.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4138 - '@tanstack/router-generator': 1.85.3 4139 - '@tanstack/router-plugin': 1.85.3(vite@6.0.2(@types/node@22.10.1)(jiti@2.4.1)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) 4140 - '@tanstack/start-vite-plugin': 1.85.3 4141 - '@vinxi/react': 0.2.5 4142 - '@vinxi/react-server-dom': 0.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@6.0.2(@types/node@22.10.1)(jiti@2.4.1)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) 4143 - '@vinxi/server-components': 0.4.3(vinxi@0.4.3(@types/node@22.10.1)(ioredis@5.4.1)(terser@5.36.0)(typescript@5.7.2)) 4144 - '@vinxi/server-functions': 0.4.3(vinxi@0.4.3(@types/node@22.10.1)(ioredis@5.4.1)(terser@5.36.0)(typescript@5.7.2)) 4145 - '@vitejs/plugin-react': 4.3.4(vite@6.0.2(@types/node@22.10.1)(jiti@2.4.1)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) 4146 - import-meta-resolve: 4.1.0 4147 - isbot: 5.1.17 4148 - jsesc: 3.0.2 4149 - react: 18.3.1 4150 - react-dom: 18.3.1(react@18.3.1) 4151 - tiny-invariant: 1.3.3 4152 - vinxi: 0.4.3(@types/node@22.10.1)(ioredis@5.4.1)(terser@5.36.0)(typescript@5.7.2) 4153 - zod: 3.23.8 4154 - transitivePeerDependencies: 4155 - - '@azure/app-configuration' 4156 - - '@azure/cosmos' 4157 - - '@azure/data-tables' 4158 - - '@azure/identity' 4159 - - '@azure/keyvault-secrets' 4160 - - '@azure/storage-blob' 4161 - - '@capacitor/preferences' 4162 - - '@electric-sql/pglite' 4163 - - '@libsql/client' 4164 - - '@netlify/blobs' 4165 - - '@planetscale/database' 4166 - - '@rsbuild/core' 4167 - - '@types/node' 4168 - - '@upstash/redis' 4169 - - '@vercel/kv' 4170 - - better-sqlite3 4171 - - debug 4172 - - drizzle-orm 4173 - - encoding 4174 - - idb-keyval 4175 - - ioredis 4176 - - less 4177 - - lightningcss 4178 - - mysql2 4179 - - sass 4180 - - sass-embedded 4181 - - stylus 4182 - - sugarss 4183 - - supports-color 4184 - - terser 4185 - - typescript 4186 - - uWebSockets.js 4187 - - vite 4188 - - webpack 4189 - - xml2js 2162 + '@swc/core-darwin-x64@1.9.3': 2163 + optional: true 2164 + 2165 + '@swc/core-linux-arm-gnueabihf@1.9.3': 2166 + optional: true 4190 2167 4191 - '@tanstack/store@0.6.0': {} 2168 + '@swc/core-linux-arm64-gnu@1.9.3': 2169 + optional: true 4192 2170 4193 - '@tanstack/virtual-file-routes@1.81.9': {} 2171 + '@swc/core-linux-arm64-musl@1.9.3': 2172 + optional: true 4194 2173 4195 - '@tsconfig/node10@1.0.11': {} 2174 + '@swc/core-linux-x64-gnu@1.9.3': 2175 + optional: true 4196 2176 4197 - '@tsconfig/node12@1.0.11': {} 2177 + '@swc/core-linux-x64-musl@1.9.3': 2178 + optional: true 4198 2179 4199 - '@tsconfig/node14@1.0.3': {} 2180 + '@swc/core-win32-arm64-msvc@1.9.3': 2181 + optional: true 4200 2182 4201 - '@tsconfig/node16@1.0.4': {} 2183 + '@swc/core-win32-ia32-msvc@1.9.3': 2184 + optional: true 4202 2185 4203 - '@types/babel__code-frame@7.0.6': {} 2186 + '@swc/core-win32-x64-msvc@1.9.3': 2187 + optional: true 4204 2188 4205 - '@types/babel__core@7.20.5': 2189 + '@swc/core@1.9.3': 4206 2190 dependencies: 4207 - '@babel/parser': 7.26.2 4208 - '@babel/types': 7.26.0 4209 - '@types/babel__generator': 7.6.8 4210 - '@types/babel__template': 7.4.4 4211 - '@types/babel__traverse': 7.20.6 2191 + '@swc/counter': 0.1.3 2192 + '@swc/types': 0.1.17 2193 + optionalDependencies: 2194 + '@swc/core-darwin-arm64': 1.9.3 2195 + '@swc/core-darwin-x64': 1.9.3 2196 + '@swc/core-linux-arm-gnueabihf': 1.9.3 2197 + '@swc/core-linux-arm64-gnu': 1.9.3 2198 + '@swc/core-linux-arm64-musl': 1.9.3 2199 + '@swc/core-linux-x64-gnu': 1.9.3 2200 + '@swc/core-linux-x64-musl': 1.9.3 2201 + '@swc/core-win32-arm64-msvc': 1.9.3 2202 + '@swc/core-win32-ia32-msvc': 1.9.3 2203 + '@swc/core-win32-x64-msvc': 1.9.3 4212 2204 4213 - '@types/babel__generator@7.6.8': 4214 - dependencies: 4215 - '@babel/types': 7.26.0 2205 + '@swc/counter@0.1.3': {} 4216 2206 4217 - '@types/babel__template@7.4.4': 2207 + '@swc/types@0.1.17': 4218 2208 dependencies: 4219 - '@babel/parser': 7.26.2 4220 - '@babel/types': 7.26.0 2209 + '@swc/counter': 0.1.3 4221 2210 4222 - '@types/babel__traverse@7.20.6': 4223 - dependencies: 4224 - '@babel/types': 7.26.0 2211 + '@tsconfig/node10@1.0.11': {} 4225 2212 4226 - '@types/braces@3.0.4': {} 2213 + '@tsconfig/node12@1.0.11': {} 4227 2214 4228 - '@types/estree@1.0.6': {} 2215 + '@tsconfig/node14@1.0.3': {} 4229 2216 4230 - '@types/http-proxy@1.17.15': 4231 - dependencies: 4232 - '@types/node': 22.10.1 2217 + '@tsconfig/node16@1.0.4': {} 4233 2218 4234 - '@types/micromatch@4.0.9': 4235 - dependencies: 4236 - '@types/braces': 3.0.4 2219 + '@types/estree@1.0.6': {} 4237 2220 4238 2221 '@types/node@22.10.1': 4239 2222 dependencies: 4240 2223 undici-types: 6.20.0 4241 2224 4242 - '@types/prop-types@15.7.13': {} 4243 - 4244 - '@types/react-dom@18.3.1': 2225 + '@types/ws@8.5.13': 4245 2226 dependencies: 4246 - '@types/react': 18.3.12 4247 - 4248 - '@types/react@18.3.12': 4249 - dependencies: 4250 - '@types/prop-types': 15.7.13 4251 - csstype: 3.1.3 4252 - 4253 - '@types/resolve@1.20.2': {} 4254 - 4255 - '@vercel/nft@0.27.7(rollup@4.28.0)': 4256 - dependencies: 4257 - '@mapbox/node-pre-gyp': 1.0.11 4258 - '@rollup/pluginutils': 5.1.3(rollup@4.28.0) 4259 - acorn: 8.14.0 4260 - acorn-import-attributes: 1.9.5(acorn@8.14.0) 4261 - async-sema: 3.1.1 4262 - bindings: 1.5.0 4263 - estree-walker: 2.0.2 4264 - glob: 7.2.3 4265 - graceful-fs: 4.2.11 4266 - micromatch: 4.0.8 4267 - node-gyp-build: 4.8.4 4268 - resolve-from: 5.0.0 4269 - transitivePeerDependencies: 4270 - - encoding 4271 - - rollup 4272 - - supports-color 4273 - 4274 - '@vinxi/listhen@1.5.6': 4275 - dependencies: 4276 - '@parcel/watcher': 2.5.0 4277 - '@parcel/watcher-wasm': 2.3.0 4278 - citty: 0.1.6 4279 - clipboardy: 4.0.0 4280 - consola: 3.2.3 4281 - defu: 6.1.4 4282 - get-port-please: 3.1.2 4283 - h3: 1.13.0 4284 - http-shutdown: 1.2.2 4285 - jiti: 1.21.6 4286 - mlly: 1.7.3 4287 - node-forge: 1.3.1 4288 - pathe: 1.1.2 4289 - std-env: 3.8.0 4290 - ufo: 1.5.4 4291 - untun: 0.1.3 4292 - uqr: 0.1.2 4293 - 4294 - '@vinxi/plugin-directives@0.4.3(vinxi@0.4.3(@types/node@22.10.1)(ioredis@5.4.1)(terser@5.36.0)(typescript@5.7.2))': 4295 - dependencies: 4296 - '@babel/parser': 7.26.2 4297 - acorn: 8.14.0 4298 - acorn-jsx: 5.3.2(acorn@8.14.0) 4299 - acorn-loose: 8.4.0 4300 - acorn-typescript: 1.4.13(acorn@8.14.0) 4301 - astring: 1.9.0 4302 - magicast: 0.2.11 4303 - recast: 0.23.9 4304 - tslib: 2.8.1 4305 - vinxi: 0.4.3(@types/node@22.10.1)(ioredis@5.4.1)(terser@5.36.0)(typescript@5.7.2) 4306 - 4307 - '@vinxi/react-server-dom@0.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@6.0.2(@types/node@22.10.1)(jiti@2.4.1)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))': 4308 - dependencies: 4309 - acorn-loose: 8.4.0 4310 - react: 18.3.1 4311 - react-dom: 18.3.1(react@18.3.1) 4312 - vite: 6.0.2(@types/node@22.10.1)(jiti@2.4.1)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) 4313 - 4314 - '@vinxi/react@0.2.5': {} 4315 - 4316 - '@vinxi/server-components@0.4.3(vinxi@0.4.3(@types/node@22.10.1)(ioredis@5.4.1)(terser@5.36.0)(typescript@5.7.2))': 4317 - dependencies: 4318 - '@vinxi/plugin-directives': 0.4.3(vinxi@0.4.3(@types/node@22.10.1)(ioredis@5.4.1)(terser@5.36.0)(typescript@5.7.2)) 4319 - acorn: 8.14.0 4320 - acorn-loose: 8.4.0 4321 - acorn-typescript: 1.4.13(acorn@8.14.0) 4322 - astring: 1.9.0 4323 - magicast: 0.2.11 4324 - recast: 0.23.9 4325 - vinxi: 0.4.3(@types/node@22.10.1)(ioredis@5.4.1)(terser@5.36.0)(typescript@5.7.2) 4326 - 4327 - '@vinxi/server-functions@0.4.3(vinxi@0.4.3(@types/node@22.10.1)(ioredis@5.4.1)(terser@5.36.0)(typescript@5.7.2))': 4328 - dependencies: 4329 - '@vinxi/plugin-directives': 0.4.3(vinxi@0.4.3(@types/node@22.10.1)(ioredis@5.4.1)(terser@5.36.0)(typescript@5.7.2)) 4330 - acorn: 8.14.0 4331 - acorn-loose: 8.4.0 4332 - acorn-typescript: 1.4.13(acorn@8.14.0) 4333 - astring: 1.9.0 4334 - magicast: 0.2.11 4335 - recast: 0.23.9 4336 - vinxi: 0.4.3(@types/node@22.10.1)(ioredis@5.4.1)(terser@5.36.0)(typescript@5.7.2) 4337 - 4338 - '@vitejs/plugin-react@4.3.4(vite@6.0.2(@types/node@22.10.1)(jiti@2.4.1)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))': 4339 - dependencies: 4340 - '@babel/core': 7.26.0 4341 - '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0) 4342 - '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0) 4343 - '@types/babel__core': 7.20.5 4344 - react-refresh: 0.14.2 4345 - vite: 6.0.2(@types/node@22.10.1)(jiti@2.4.1)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) 4346 - transitivePeerDependencies: 4347 - - supports-color 4348 - 4349 - abbrev@1.1.1: {} 4350 - 4351 - abort-controller@3.0.0: 4352 - dependencies: 4353 - event-target-shim: 5.0.1 4354 - 4355 - acorn-import-attributes@1.9.5(acorn@8.14.0): 4356 - dependencies: 4357 - acorn: 8.14.0 4358 - 4359 - acorn-jsx@5.3.2(acorn@8.14.0): 4360 - dependencies: 4361 - acorn: 8.14.0 4362 - 4363 - acorn-loose@8.4.0: 4364 - dependencies: 4365 - acorn: 8.14.0 4366 - 4367 - acorn-typescript@1.4.13(acorn@8.14.0): 4368 - dependencies: 4369 - acorn: 8.14.0 2227 + '@types/node': 22.10.1 4370 2228 4371 2229 acorn-walk@8.3.4: 4372 2230 dependencies: ··· 4374 2232 4375 2233 acorn@8.14.0: {} 4376 2234 4377 - agent-base@6.0.2: 4378 - dependencies: 4379 - debug: 4.3.7(supports-color@9.4.0) 4380 - transitivePeerDependencies: 4381 - - supports-color 4382 - 4383 - agent-base@7.1.1(supports-color@9.4.0): 4384 - dependencies: 4385 - debug: 4.3.7(supports-color@9.4.0) 4386 - transitivePeerDependencies: 4387 - - supports-color 4388 - 4389 - ansi-align@3.0.1: 4390 - dependencies: 4391 - string-width: 4.2.3 4392 - 4393 - ansi-colors@4.1.3: {} 4394 - 4395 2235 ansi-regex@5.0.1: {} 4396 2236 4397 2237 ansi-regex@6.1.0: {} ··· 4404 2244 4405 2245 any-promise@1.3.0: {} 4406 2246 4407 - anymatch@3.1.3: 4408 - dependencies: 4409 - normalize-path: 3.0.0 4410 - picomatch: 2.3.1 4411 - 4412 - aproba@2.0.0: {} 4413 - 4414 - archiver-utils@5.0.2: 4415 - dependencies: 4416 - glob: 10.4.5 4417 - graceful-fs: 4.2.11 4418 - is-stream: 2.0.1 4419 - lazystream: 1.0.1 4420 - lodash: 4.17.21 4421 - normalize-path: 3.0.0 4422 - readable-stream: 4.5.2 4423 - 4424 - archiver@7.0.1: 4425 - dependencies: 4426 - archiver-utils: 5.0.2 4427 - async: 3.2.6 4428 - buffer-crc32: 1.0.0 4429 - readable-stream: 4.5.2 4430 - readdir-glob: 1.1.3 4431 - tar-stream: 3.1.7 4432 - zip-stream: 6.0.1 4433 - 4434 - are-we-there-yet@2.0.0: 4435 - dependencies: 4436 - delegates: 1.0.0 4437 - readable-stream: 3.6.2 4438 - 4439 2247 arg@4.1.3: {} 4440 2248 4441 - arg@5.0.2: {} 4442 - 4443 - argparse@2.0.1: {} 4444 - 4445 - ast-types@0.16.1: 4446 - dependencies: 4447 - tslib: 2.8.1 4448 - 4449 - astring@1.9.0: {} 4450 - 4451 - async-sema@3.1.1: {} 4452 - 4453 - async@3.2.6: {} 4454 - 4455 2249 atomic-sleep@1.0.0: {} 4456 2250 4457 - autoprefixer@10.4.20(postcss@8.4.49): 4458 - dependencies: 4459 - browserslist: 4.24.2 4460 - caniuse-lite: 1.0.30001686 4461 - fraction.js: 4.3.7 4462 - normalize-range: 0.1.2 4463 - picocolors: 1.1.1 4464 - postcss: 8.4.49 4465 - postcss-value-parser: 4.2.0 4466 - 4467 - b4a@1.6.7: {} 4468 - 4469 - babel-dead-code-elimination@1.0.6: 4470 - dependencies: 4471 - '@babel/core': 7.26.0 4472 - '@babel/parser': 7.26.2 4473 - '@babel/traverse': 7.25.9 4474 - '@babel/types': 7.26.0 4475 - transitivePeerDependencies: 4476 - - supports-color 4477 - 4478 2251 balanced-match@1.0.2: {} 4479 2252 4480 - bare-events@2.5.0: 4481 - optional: true 4482 - 4483 - base64-js@1.5.1: {} 4484 - 4485 - binary-extensions@2.3.0: {} 4486 - 4487 - bindings@1.5.0: 4488 - dependencies: 4489 - file-uri-to-path: 1.0.0 4490 - 4491 - boxen@7.1.1: 4492 - dependencies: 4493 - ansi-align: 3.0.1 4494 - camelcase: 7.0.1 4495 - chalk: 5.3.0 4496 - cli-boxes: 3.0.0 4497 - string-width: 5.1.2 4498 - type-fest: 2.19.0 4499 - widest-line: 4.0.1 4500 - wrap-ansi: 8.1.0 4501 - 4502 - brace-expansion@1.1.11: 4503 - dependencies: 4504 - balanced-match: 1.0.2 4505 - concat-map: 0.0.1 4506 - 4507 2253 brace-expansion@2.0.1: 4508 2254 dependencies: 4509 2255 balanced-match: 1.0.2 4510 - 4511 - braces@3.0.3: 4512 - dependencies: 4513 - fill-range: 7.1.1 4514 - 4515 - browserslist@4.24.2: 4516 - dependencies: 4517 - caniuse-lite: 1.0.30001686 4518 - electron-to-chromium: 1.5.68 4519 - node-releases: 2.0.18 4520 - update-browserslist-db: 1.1.1(browserslist@4.24.2) 4521 - 4522 - buffer-crc32@1.0.0: {} 4523 2256 4524 2257 buffer-from@1.1.2: {} 4525 2258 4526 - buffer@6.0.3: 2259 + bufferutil@4.0.8: 4527 2260 dependencies: 4528 - base64-js: 1.5.1 4529 - ieee754: 1.2.1 2261 + node-gyp-build: 4.8.4 4530 2262 4531 2263 bundle-require@5.0.0(esbuild@0.24.0): 4532 2264 dependencies: 4533 2265 esbuild: 0.24.0 4534 2266 load-tsconfig: 0.2.5 4535 2267 4536 - c12@2.0.1(magicast@0.3.5): 4537 - dependencies: 4538 - chokidar: 4.0.1 4539 - confbox: 0.1.8 4540 - defu: 6.1.4 4541 - dotenv: 16.4.7 4542 - giget: 1.2.3 4543 - jiti: 2.4.1 4544 - mlly: 1.7.3 4545 - ohash: 1.1.4 4546 - pathe: 1.1.2 4547 - perfect-debounce: 1.0.0 4548 - pkg-types: 1.2.1 4549 - rc9: 2.1.2 4550 - optionalDependencies: 4551 - magicast: 0.3.5 4552 - 4553 2268 cac@6.7.14: {} 4554 2269 4555 - camelcase-css@2.0.1: {} 4556 - 4557 - camelcase@7.0.1: {} 4558 - 4559 - caniuse-lite@1.0.30001686: {} 4560 - 4561 - chalk@5.3.0: {} 4562 - 4563 - change-case@5.4.4: {} 4564 - 4565 - chokidar@3.6.0: 4566 - dependencies: 4567 - anymatch: 3.1.3 4568 - braces: 3.0.3 4569 - glob-parent: 5.1.2 4570 - is-binary-path: 2.1.0 4571 - is-glob: 4.0.3 4572 - normalize-path: 3.0.0 4573 - readdirp: 3.6.0 4574 - optionalDependencies: 4575 - fsevents: 2.3.3 4576 - 4577 2270 chokidar@4.0.1: 4578 2271 dependencies: 4579 2272 readdirp: 4.0.2 4580 2273 4581 - chownr@2.0.0: {} 4582 - 4583 - citty@0.1.6: 4584 - dependencies: 4585 - consola: 3.2.3 4586 - 4587 - class-variance-authority@0.7.1: 4588 - dependencies: 4589 - clsx: 2.1.1 4590 - 4591 - cli-boxes@3.0.0: {} 4592 - 4593 - clipboardy@4.0.0: 4594 - dependencies: 4595 - execa: 8.0.1 4596 - is-wsl: 3.1.0 4597 - is64bit: 2.0.0 4598 - 4599 - cliui@8.0.1: 4600 - dependencies: 4601 - string-width: 4.2.3 4602 - strip-ansi: 6.0.1 4603 - wrap-ansi: 7.0.0 4604 - 4605 - clsx@2.1.1: {} 4606 - 4607 - cluster-key-slot@1.1.2: {} 4608 - 4609 2274 color-convert@2.0.1: 4610 2275 dependencies: 4611 2276 color-name: 1.1.4 4612 2277 4613 2278 color-name@1.1.4: {} 4614 2279 4615 - color-support@1.1.3: {} 4616 - 4617 - colorette@1.4.0: {} 4618 - 4619 2280 colorette@2.0.20: {} 4620 2281 4621 - commander@2.20.3: {} 4622 - 4623 2282 commander@4.1.1: {} 4624 2283 4625 - commondir@1.0.1: {} 4626 - 4627 - compatx@0.1.8: {} 4628 - 4629 - compress-commons@6.0.2: 4630 - dependencies: 4631 - crc-32: 1.2.2 4632 - crc32-stream: 6.0.0 4633 - is-stream: 2.0.1 4634 - normalize-path: 3.0.0 4635 - readable-stream: 4.5.2 4636 - 4637 - concat-map@0.0.1: {} 4638 - 4639 - confbox@0.1.8: {} 4640 - 4641 2284 consola@3.2.3: {} 4642 2285 4643 - console-control-strings@1.1.0: {} 4644 - 4645 - convert-source-map@2.0.0: {} 4646 - 4647 - cookie-es@1.2.2: {} 4648 - 4649 - core-util-is@1.0.3: {} 4650 - 4651 - crc-32@1.2.2: {} 4652 - 4653 - crc32-stream@6.0.0: 4654 - dependencies: 4655 - crc-32: 1.2.2 4656 - readable-stream: 4.5.2 4657 - 4658 2286 create-require@1.1.1: {} 4659 - 4660 - croner@9.0.0: {} 4661 2287 4662 2288 cross-spawn@7.0.6: 4663 2289 dependencies: ··· 4665 2291 shebang-command: 2.0.0 4666 2292 which: 2.0.2 4667 2293 4668 - crossws@0.2.4: {} 4669 - 4670 - crossws@0.3.1: 4671 - dependencies: 4672 - uncrypto: 0.1.3 4673 - 4674 - cssesc@3.0.0: {} 4675 - 4676 - csstype@3.1.3: {} 2294 + data-uri-to-buffer@4.0.1: {} 4677 2295 4678 2296 dateformat@4.6.3: {} 4679 2297 4680 - dax-sh@0.39.2: 4681 - dependencies: 4682 - '@deno/shim-deno': 0.19.2 4683 - undici-types: 5.28.4 4684 - 4685 - db0@0.2.1: {} 4686 - 4687 - debug@2.6.9: 4688 - dependencies: 4689 - ms: 2.0.0 4690 - 4691 2298 debug@4.3.7: 4692 2299 dependencies: 4693 2300 ms: 2.1.3 4694 2301 4695 - debug@4.3.7(supports-color@9.4.0): 4696 - dependencies: 4697 - ms: 2.1.3 4698 - optionalDependencies: 4699 - supports-color: 9.4.0 4700 - 4701 - deepmerge@4.3.1: {} 4702 - 4703 - define-lazy-prop@2.0.0: {} 4704 - 4705 - defu@6.1.4: {} 4706 - 4707 - delegates@1.0.0: {} 4708 - 4709 - denque@2.1.0: {} 4710 - 4711 - depd@2.0.0: {} 4712 - 4713 - destr@2.0.3: {} 4714 - 4715 - destroy@1.2.0: {} 4716 - 4717 - detect-libc@1.0.3: {} 4718 - 4719 - detect-libc@2.0.3: {} 4720 - 4721 - didyoumean@1.2.2: {} 2302 + detect-libc@2.0.2: {} 4722 2303 4723 2304 diff@4.0.2: {} 4724 2305 4725 - dlv@1.1.3: {} 4726 - 4727 - dot-prop@9.0.0: 2306 + drizzle-kit@0.29.0: 4728 2307 dependencies: 4729 - type-fest: 4.30.0 2308 + '@drizzle-team/brocli': 0.10.2 2309 + '@esbuild-kit/esm-loader': 2.6.5 2310 + esbuild: 0.19.12 2311 + esbuild-register: 3.6.0(esbuild@0.19.12) 2312 + transitivePeerDependencies: 2313 + - supports-color 4730 2314 4731 - dotenv@16.4.7: {} 4732 - 4733 - duplexer@0.1.2: {} 2315 + drizzle-orm@0.37.0(@libsql/client@0.14.0(bufferutil@4.0.8)): 2316 + optionalDependencies: 2317 + '@libsql/client': 0.14.0(bufferutil@4.0.8) 4734 2318 4735 2319 eastasianwidth@0.2.0: {} 4736 2320 4737 - ee-first@1.1.1: {} 4738 - 4739 - electron-to-chromium@1.5.68: {} 4740 - 4741 2321 emoji-regex@8.0.0: {} 4742 2322 4743 2323 emoji-regex@9.2.2: {} 4744 2324 4745 - encodeurl@1.0.2: {} 4746 - 4747 - encodeurl@2.0.0: {} 4748 - 4749 2325 end-of-stream@1.4.4: 4750 2326 dependencies: 4751 2327 once: 1.4.0 4752 2328 4753 - es-module-lexer@1.5.4: {} 2329 + esbuild-register@3.6.0(esbuild@0.19.12): 2330 + dependencies: 2331 + debug: 4.3.7 2332 + esbuild: 0.19.12 2333 + transitivePeerDependencies: 2334 + - supports-color 4754 2335 4755 - esbuild@0.20.2: 2336 + esbuild@0.18.20: 4756 2337 optionalDependencies: 4757 - '@esbuild/aix-ppc64': 0.20.2 4758 - '@esbuild/android-arm': 0.20.2 4759 - '@esbuild/android-arm64': 0.20.2 4760 - '@esbuild/android-x64': 0.20.2 4761 - '@esbuild/darwin-arm64': 0.20.2 4762 - '@esbuild/darwin-x64': 0.20.2 4763 - '@esbuild/freebsd-arm64': 0.20.2 4764 - '@esbuild/freebsd-x64': 0.20.2 4765 - '@esbuild/linux-arm': 0.20.2 4766 - '@esbuild/linux-arm64': 0.20.2 4767 - '@esbuild/linux-ia32': 0.20.2 4768 - '@esbuild/linux-loong64': 0.20.2 4769 - '@esbuild/linux-mips64el': 0.20.2 4770 - '@esbuild/linux-ppc64': 0.20.2 4771 - '@esbuild/linux-riscv64': 0.20.2 4772 - '@esbuild/linux-s390x': 0.20.2 4773 - '@esbuild/linux-x64': 0.20.2 4774 - '@esbuild/netbsd-x64': 0.20.2 4775 - '@esbuild/openbsd-x64': 0.20.2 4776 - '@esbuild/sunos-x64': 0.20.2 4777 - '@esbuild/win32-arm64': 0.20.2 4778 - '@esbuild/win32-ia32': 0.20.2 4779 - '@esbuild/win32-x64': 0.20.2 2338 + '@esbuild/android-arm': 0.18.20 2339 + '@esbuild/android-arm64': 0.18.20 2340 + '@esbuild/android-x64': 0.18.20 2341 + '@esbuild/darwin-arm64': 0.18.20 2342 + '@esbuild/darwin-x64': 0.18.20 2343 + '@esbuild/freebsd-arm64': 0.18.20 2344 + '@esbuild/freebsd-x64': 0.18.20 2345 + '@esbuild/linux-arm': 0.18.20 2346 + '@esbuild/linux-arm64': 0.18.20 2347 + '@esbuild/linux-ia32': 0.18.20 2348 + '@esbuild/linux-loong64': 0.18.20 2349 + '@esbuild/linux-mips64el': 0.18.20 2350 + '@esbuild/linux-ppc64': 0.18.20 2351 + '@esbuild/linux-riscv64': 0.18.20 2352 + '@esbuild/linux-s390x': 0.18.20 2353 + '@esbuild/linux-x64': 0.18.20 2354 + '@esbuild/netbsd-x64': 0.18.20 2355 + '@esbuild/openbsd-x64': 0.18.20 2356 + '@esbuild/sunos-x64': 0.18.20 2357 + '@esbuild/win32-arm64': 0.18.20 2358 + '@esbuild/win32-ia32': 0.18.20 2359 + '@esbuild/win32-x64': 0.18.20 4780 2360 4781 - esbuild@0.21.5: 2361 + esbuild@0.19.12: 4782 2362 optionalDependencies: 4783 - '@esbuild/aix-ppc64': 0.21.5 4784 - '@esbuild/android-arm': 0.21.5 4785 - '@esbuild/android-arm64': 0.21.5 4786 - '@esbuild/android-x64': 0.21.5 4787 - '@esbuild/darwin-arm64': 0.21.5 4788 - '@esbuild/darwin-x64': 0.21.5 4789 - '@esbuild/freebsd-arm64': 0.21.5 4790 - '@esbuild/freebsd-x64': 0.21.5 4791 - '@esbuild/linux-arm': 0.21.5 4792 - '@esbuild/linux-arm64': 0.21.5 4793 - '@esbuild/linux-ia32': 0.21.5 4794 - '@esbuild/linux-loong64': 0.21.5 4795 - '@esbuild/linux-mips64el': 0.21.5 4796 - '@esbuild/linux-ppc64': 0.21.5 4797 - '@esbuild/linux-riscv64': 0.21.5 4798 - '@esbuild/linux-s390x': 0.21.5 4799 - '@esbuild/linux-x64': 0.21.5 4800 - '@esbuild/netbsd-x64': 0.21.5 4801 - '@esbuild/openbsd-x64': 0.21.5 4802 - '@esbuild/sunos-x64': 0.21.5 4803 - '@esbuild/win32-arm64': 0.21.5 4804 - '@esbuild/win32-ia32': 0.21.5 4805 - '@esbuild/win32-x64': 0.21.5 2363 + '@esbuild/aix-ppc64': 0.19.12 2364 + '@esbuild/android-arm': 0.19.12 2365 + '@esbuild/android-arm64': 0.19.12 2366 + '@esbuild/android-x64': 0.19.12 2367 + '@esbuild/darwin-arm64': 0.19.12 2368 + '@esbuild/darwin-x64': 0.19.12 2369 + '@esbuild/freebsd-arm64': 0.19.12 2370 + '@esbuild/freebsd-x64': 0.19.12 2371 + '@esbuild/linux-arm': 0.19.12 2372 + '@esbuild/linux-arm64': 0.19.12 2373 + '@esbuild/linux-ia32': 0.19.12 2374 + '@esbuild/linux-loong64': 0.19.12 2375 + '@esbuild/linux-mips64el': 0.19.12 2376 + '@esbuild/linux-ppc64': 0.19.12 2377 + '@esbuild/linux-riscv64': 0.19.12 2378 + '@esbuild/linux-s390x': 0.19.12 2379 + '@esbuild/linux-x64': 0.19.12 2380 + '@esbuild/netbsd-x64': 0.19.12 2381 + '@esbuild/openbsd-x64': 0.19.12 2382 + '@esbuild/sunos-x64': 0.19.12 2383 + '@esbuild/win32-arm64': 0.19.12 2384 + '@esbuild/win32-ia32': 0.19.12 2385 + '@esbuild/win32-x64': 0.19.12 4806 2386 4807 2387 esbuild@0.23.1: 4808 2388 optionalDependencies: ··· 4858 2438 '@esbuild/win32-ia32': 0.24.0 4859 2439 '@esbuild/win32-x64': 0.24.0 4860 2440 4861 - escalade@3.2.0: {} 4862 - 4863 - escape-html@1.0.3: {} 4864 - 4865 - escape-string-regexp@5.0.0: {} 4866 - 4867 - esprima@4.0.1: {} 4868 - 4869 - estree-walker@2.0.2: {} 4870 - 4871 - estree-walker@3.0.3: 4872 - dependencies: 4873 - '@types/estree': 1.0.6 4874 - 4875 - etag@1.8.1: {} 4876 - 4877 - event-target-shim@5.0.1: {} 4878 - 4879 - eventemitter3@4.0.7: {} 4880 - 4881 - events@3.3.0: {} 4882 - 4883 - execa@8.0.1: 4884 - dependencies: 4885 - cross-spawn: 7.0.6 4886 - get-stream: 8.0.1 4887 - human-signals: 5.0.0 4888 - is-stream: 3.0.0 4889 - merge-stream: 2.0.0 4890 - npm-run-path: 5.3.0 4891 - onetime: 6.0.0 4892 - signal-exit: 4.1.0 4893 - strip-final-newline: 3.0.0 2441 + event-target-shim@6.0.2: {} 4894 2442 4895 2443 fast-copy@3.0.2: {} 4896 2444 4897 - fast-deep-equal@3.1.3: {} 4898 - 4899 - fast-fifo@1.3.2: {} 4900 - 4901 - fast-glob@3.3.2: 4902 - dependencies: 4903 - '@nodelib/fs.stat': 2.0.5 4904 - '@nodelib/fs.walk': 1.2.8 4905 - glob-parent: 5.1.2 4906 - merge2: 1.4.1 4907 - micromatch: 4.0.8 4908 - 4909 2445 fast-redact@3.5.0: {} 4910 2446 4911 2447 fast-safe-stringify@2.1.1: {} 4912 2448 4913 - fastq@1.17.1: 4914 - dependencies: 4915 - reusify: 1.0.4 4916 - 4917 2449 fdir@6.4.2(picomatch@4.0.2): 4918 2450 optionalDependencies: 4919 2451 picomatch: 4.0.2 4920 2452 4921 - file-uri-to-path@1.0.0: {} 4922 - 4923 - fill-range@7.1.1: 2453 + fetch-blob@3.2.0: 4924 2454 dependencies: 4925 - to-regex-range: 5.0.1 4926 - 4927 - follow-redirects@1.15.9: {} 2455 + node-domexception: 1.0.0 2456 + web-streams-polyfill: 3.3.3 4928 2457 4929 2458 foreground-child@3.3.0: 4930 2459 dependencies: 4931 2460 cross-spawn: 7.0.6 4932 2461 signal-exit: 4.1.0 4933 2462 4934 - fraction.js@4.3.7: {} 4935 - 4936 - fresh@0.5.2: {} 4937 - 4938 - fs-extra@11.2.0: 2463 + formdata-polyfill@4.0.10: 4939 2464 dependencies: 4940 - graceful-fs: 4.2.11 4941 - jsonfile: 6.1.0 4942 - universalify: 2.0.1 4943 - 4944 - fs-minipass@2.1.0: 4945 - dependencies: 4946 - minipass: 3.3.6 4947 - 4948 - fs.realpath@1.0.0: {} 2465 + fetch-blob: 3.2.0 4949 2466 4950 2467 fsevents@2.3.3: 4951 2468 optional: true 4952 2469 4953 - function-bind@1.1.2: {} 4954 - 4955 - gauge@3.0.2: 4956 - dependencies: 4957 - aproba: 2.0.0 4958 - color-support: 1.1.3 4959 - console-control-strings: 1.1.0 4960 - has-unicode: 2.0.1 4961 - object-assign: 4.1.1 4962 - signal-exit: 3.0.7 4963 - string-width: 4.2.3 4964 - strip-ansi: 6.0.1 4965 - wide-align: 1.1.5 4966 - 4967 - gensync@1.0.0-beta.2: {} 4968 - 4969 - get-caller-file@2.0.5: {} 4970 - 4971 - get-port-please@3.1.2: {} 4972 - 4973 - get-stream@8.0.1: {} 4974 - 4975 2470 get-tsconfig@4.8.1: 4976 2471 dependencies: 4977 2472 resolve-pkg-maps: 1.0.0 4978 2473 4979 - giget@1.2.3: 4980 - dependencies: 4981 - citty: 0.1.6 4982 - consola: 3.2.3 4983 - defu: 6.1.4 4984 - node-fetch-native: 1.6.4 4985 - nypm: 0.3.12 4986 - ohash: 1.1.4 4987 - pathe: 1.1.2 4988 - tar: 6.2.1 4989 - 4990 - glob-parent@5.1.2: 4991 - dependencies: 4992 - is-glob: 4.0.3 4993 - 4994 - glob-parent@6.0.2: 4995 - dependencies: 4996 - is-glob: 4.0.3 4997 - 4998 2474 glob@10.4.5: 4999 2475 dependencies: 5000 2476 foreground-child: 3.3.0 ··· 5013 2489 package-json-from-dist: 1.0.1 5014 2490 path-scurry: 2.0.0 5015 2491 5016 - glob@7.2.3: 5017 - dependencies: 5018 - fs.realpath: 1.0.0 5019 - inflight: 1.0.6 5020 - inherits: 2.0.4 5021 - minimatch: 3.1.2 5022 - once: 1.4.0 5023 - path-is-absolute: 1.0.1 5024 - 5025 - globals@11.12.0: {} 5026 - 5027 - globby@14.0.2: 5028 - dependencies: 5029 - '@sindresorhus/merge-streams': 2.3.0 5030 - fast-glob: 3.3.2 5031 - ignore: 5.3.2 5032 - path-type: 5.0.0 5033 - slash: 5.1.0 5034 - unicorn-magic: 0.1.0 5035 - 5036 - graceful-fs@4.2.11: {} 5037 - 5038 - gzip-size@7.0.0: 5039 - dependencies: 5040 - duplexer: 0.1.2 5041 - 5042 - h3@1.11.1: 5043 - dependencies: 5044 - cookie-es: 1.2.2 5045 - crossws: 0.2.4 5046 - defu: 6.1.4 5047 - destr: 2.0.3 5048 - iron-webcrypto: 1.2.1 5049 - ohash: 1.1.4 5050 - radix3: 1.1.2 5051 - ufo: 1.5.4 5052 - uncrypto: 0.1.3 5053 - unenv: 1.10.0 5054 - transitivePeerDependencies: 5055 - - uWebSockets.js 5056 - 5057 - h3@1.13.0: 5058 - dependencies: 5059 - cookie-es: 1.2.2 5060 - crossws: 0.3.1 5061 - defu: 6.1.4 5062 - destr: 2.0.3 5063 - iron-webcrypto: 1.2.1 5064 - ohash: 1.1.4 5065 - radix3: 1.1.2 5066 - ufo: 1.5.4 5067 - uncrypto: 0.1.3 5068 - unenv: 1.10.0 5069 - 5070 - has-unicode@2.0.1: {} 5071 - 5072 - hasown@2.0.2: 5073 - dependencies: 5074 - function-bind: 1.1.2 5075 - 5076 2492 help-me@5.0.0: {} 5077 2493 5078 2494 hono@4.6.12: {} 5079 2495 5080 - hookable@5.5.3: {} 5081 - 5082 - http-errors@2.0.0: 5083 - dependencies: 5084 - depd: 2.0.0 5085 - inherits: 2.0.4 5086 - setprototypeof: 1.2.0 5087 - statuses: 2.0.1 5088 - toidentifier: 1.0.1 5089 - 5090 - http-proxy@1.18.1: 5091 - dependencies: 5092 - eventemitter3: 4.0.7 5093 - follow-redirects: 1.15.9 5094 - requires-port: 1.0.0 5095 - transitivePeerDependencies: 5096 - - debug 5097 - 5098 - http-shutdown@1.2.2: {} 5099 - 5100 - https-proxy-agent@5.0.1: 5101 - dependencies: 5102 - agent-base: 6.0.2 5103 - debug: 4.3.7(supports-color@9.4.0) 5104 - transitivePeerDependencies: 5105 - - supports-color 5106 - 5107 - https-proxy-agent@7.0.5(supports-color@9.4.0): 5108 - dependencies: 5109 - agent-base: 7.1.1(supports-color@9.4.0) 5110 - debug: 4.3.7(supports-color@9.4.0) 5111 - transitivePeerDependencies: 5112 - - supports-color 5113 - 5114 - httpxy@0.1.5: {} 5115 - 5116 - human-signals@5.0.0: {} 5117 - 5118 - ieee754@1.2.1: {} 5119 - 5120 - ignore@5.3.2: {} 5121 - 5122 - import-meta-resolve@4.1.0: {} 5123 - 5124 - index-to-position@0.1.2: {} 5125 - 5126 - inflight@1.0.6: 5127 - dependencies: 5128 - once: 1.4.0 5129 - wrappy: 1.0.2 5130 - 5131 - inherits@2.0.4: {} 5132 - 5133 - ioredis@5.4.1: 5134 - dependencies: 5135 - '@ioredis/commands': 1.2.0 5136 - cluster-key-slot: 1.1.2 5137 - debug: 4.3.7(supports-color@9.4.0) 5138 - denque: 2.1.0 5139 - lodash.defaults: 4.2.0 5140 - lodash.isarguments: 3.1.0 5141 - redis-errors: 1.2.0 5142 - redis-parser: 3.0.0 5143 - standard-as-callback: 2.1.0 5144 - transitivePeerDependencies: 5145 - - supports-color 5146 - 5147 - iron-webcrypto@1.2.1: {} 5148 - 5149 - is-binary-path@2.1.0: 5150 - dependencies: 5151 - binary-extensions: 2.3.0 5152 - 5153 - is-core-module@2.15.1: 5154 - dependencies: 5155 - hasown: 2.0.2 5156 - 5157 - is-docker@2.2.1: {} 5158 - 5159 - is-docker@3.0.0: {} 5160 - 5161 - is-extglob@2.1.1: {} 5162 - 5163 2496 is-fullwidth-code-point@3.0.0: {} 5164 2497 5165 - is-glob@4.0.3: 5166 - dependencies: 5167 - is-extglob: 2.1.1 5168 - 5169 - is-inside-container@1.0.0: 5170 - dependencies: 5171 - is-docker: 3.0.0 5172 - 5173 - is-module@1.0.0: {} 5174 - 5175 - is-number@7.0.0: {} 5176 - 5177 - is-reference@1.2.1: 5178 - dependencies: 5179 - '@types/estree': 1.0.6 5180 - 5181 - is-stream@2.0.1: {} 5182 - 5183 - is-stream@3.0.0: {} 5184 - 5185 - is-wsl@2.2.0: 5186 - dependencies: 5187 - is-docker: 2.2.1 5188 - 5189 - is-wsl@3.1.0: 5190 - dependencies: 5191 - is-inside-container: 1.0.0 5192 - 5193 - is64bit@2.0.0: 5194 - dependencies: 5195 - system-architecture: 0.1.0 5196 - 5197 - isarray@1.0.0: {} 5198 - 5199 - isbot@5.1.17: {} 5200 - 5201 2498 isexe@2.0.0: {} 5202 - 5203 - isexe@3.1.1: {} 5204 2499 5205 2500 jackspeak@3.4.3: 5206 2501 dependencies: ··· 5212 2507 dependencies: 5213 2508 '@isaacs/cliui': 8.0.2 5214 2509 5215 - jiti@1.21.6: {} 5216 - 5217 - jiti@2.4.1: {} 2510 + jiti@2.4.1: 2511 + optional: true 5218 2512 5219 2513 jose@5.9.6: {} 5220 2514 5221 2515 joycon@3.1.1: {} 5222 2516 5223 - js-levenshtein@1.1.6: {} 2517 + js-base64@3.7.7: {} 5224 2518 5225 - js-tokens@4.0.0: {} 5226 - 5227 - js-tokens@9.0.1: {} 5228 - 5229 - js-yaml@4.1.0: 2519 + libsql@0.4.7: 5230 2520 dependencies: 5231 - argparse: 2.0.1 5232 - 5233 - jsesc@3.0.2: {} 5234 - 5235 - json-schema-traverse@1.0.0: {} 5236 - 5237 - json5@2.2.3: {} 5238 - 5239 - jsonfile@6.1.0: 5240 - dependencies: 5241 - universalify: 2.0.1 2521 + '@neon-rs/load': 0.0.4 2522 + detect-libc: 2.0.2 5242 2523 optionalDependencies: 5243 - graceful-fs: 4.2.11 5244 - 5245 - klona@2.0.6: {} 5246 - 5247 - knitwork@1.1.0: {} 5248 - 5249 - lazystream@1.0.1: 5250 - dependencies: 5251 - readable-stream: 2.3.8 5252 - 5253 - lilconfig@2.1.0: {} 2524 + '@libsql/darwin-arm64': 0.4.7 2525 + '@libsql/darwin-x64': 0.4.7 2526 + '@libsql/linux-arm64-gnu': 0.4.7 2527 + '@libsql/linux-arm64-musl': 0.4.7 2528 + '@libsql/linux-x64-gnu': 0.4.7 2529 + '@libsql/linux-x64-musl': 0.4.7 2530 + '@libsql/win32-x64-msvc': 0.4.7 5254 2531 5255 2532 lilconfig@3.1.3: {} 5256 2533 5257 2534 lines-and-columns@1.2.4: {} 5258 2535 5259 - listhen@1.9.0: 5260 - dependencies: 5261 - '@parcel/watcher': 2.5.0 5262 - '@parcel/watcher-wasm': 2.5.0 5263 - citty: 0.1.6 5264 - clipboardy: 4.0.0 5265 - consola: 3.2.3 5266 - crossws: 0.3.1 5267 - defu: 6.1.4 5268 - get-port-please: 3.1.2 5269 - h3: 1.13.0 5270 - http-shutdown: 1.2.2 5271 - jiti: 2.4.1 5272 - mlly: 1.7.3 5273 - node-forge: 1.3.1 5274 - pathe: 1.1.2 5275 - std-env: 3.8.0 5276 - ufo: 1.5.4 5277 - untun: 0.1.3 5278 - uqr: 0.1.2 5279 - 5280 2536 load-tsconfig@0.2.5: {} 5281 2537 5282 - local-pkg@0.5.1: 5283 - dependencies: 5284 - mlly: 1.7.3 5285 - pkg-types: 1.2.1 5286 - 5287 - lodash.defaults@4.2.0: {} 5288 - 5289 - lodash.isarguments@3.1.0: {} 5290 - 5291 - lodash.isequal@4.5.0: {} 5292 - 5293 2538 lodash.sortby@4.7.0: {} 5294 2539 5295 - lodash@4.17.21: {} 5296 - 5297 - loose-envify@1.4.0: 5298 - dependencies: 5299 - js-tokens: 4.0.0 5300 - 5301 2540 lru-cache@10.4.3: {} 5302 2541 5303 2542 lru-cache@11.0.2: {} 5304 2543 5305 - lru-cache@5.1.1: 5306 - dependencies: 5307 - yallist: 3.1.1 5308 - 5309 - lucide-react@0.464.0(react@18.3.1): 5310 - dependencies: 5311 - react: 18.3.1 5312 - 5313 - magic-string@0.30.14: 5314 - dependencies: 5315 - '@jridgewell/sourcemap-codec': 1.5.0 5316 - 5317 - magicast@0.2.11: 5318 - dependencies: 5319 - '@babel/parser': 7.26.2 5320 - '@babel/types': 7.26.0 5321 - recast: 0.23.9 5322 - 5323 - magicast@0.3.5: 5324 - dependencies: 5325 - '@babel/parser': 7.26.2 5326 - '@babel/types': 7.26.0 5327 - source-map-js: 1.2.1 5328 - 5329 - make-dir@3.1.0: 5330 - dependencies: 5331 - semver: 6.3.1 5332 - 5333 2544 make-error@1.3.6: {} 5334 2545 5335 - merge-stream@2.0.0: {} 5336 - 5337 - merge2@1.4.1: {} 5338 - 5339 - micromatch@4.0.8: 5340 - dependencies: 5341 - braces: 3.0.3 5342 - picomatch: 2.3.1 5343 - 5344 - mime@1.6.0: {} 5345 - 5346 - mime@3.0.0: {} 5347 - 5348 - mime@4.0.4: {} 5349 - 5350 - mimic-fn@4.0.0: {} 5351 - 5352 2546 minimatch@10.0.1: 5353 2547 dependencies: 5354 2548 brace-expansion: 2.0.1 5355 2549 5356 - minimatch@3.1.2: 5357 - dependencies: 5358 - brace-expansion: 1.1.11 5359 - 5360 - minimatch@5.1.6: 5361 - dependencies: 5362 - brace-expansion: 2.0.1 5363 - 5364 2550 minimatch@9.0.5: 5365 2551 dependencies: 5366 2552 brace-expansion: 2.0.1 5367 2553 5368 2554 minimist@1.2.8: {} 5369 - 5370 - minipass@3.3.6: 5371 - dependencies: 5372 - yallist: 4.0.0 5373 - 5374 - minipass@5.0.0: {} 5375 2555 5376 2556 minipass@7.1.2: {} 5377 2557 5378 - minizlib@2.1.2: 5379 - dependencies: 5380 - minipass: 3.3.6 5381 - yallist: 4.0.0 5382 - 5383 - mkdirp@1.0.4: {} 5384 - 5385 - mlly@1.7.3: 5386 - dependencies: 5387 - acorn: 8.14.0 5388 - pathe: 1.1.2 5389 - pkg-types: 1.2.1 5390 - ufo: 1.5.4 5391 - 5392 - mri@1.2.0: {} 5393 - 5394 - ms@2.0.0: {} 5395 - 5396 2558 ms@2.1.3: {} 5397 2559 5398 2560 mz@2.7.0: ··· 5401 2563 object-assign: 4.1.1 5402 2564 thenify-all: 1.6.0 5403 2565 5404 - nanoid@3.3.8: {} 2566 + nanoid@3.3.8: 2567 + optional: true 5405 2568 5406 - nitropack@2.10.4(typescript@5.7.2): 5407 - dependencies: 5408 - '@cloudflare/kv-asset-handler': 0.3.4 5409 - '@netlify/functions': 2.8.2 5410 - '@rollup/plugin-alias': 5.1.1(rollup@4.28.0) 5411 - '@rollup/plugin-commonjs': 28.0.1(rollup@4.28.0) 5412 - '@rollup/plugin-inject': 5.0.5(rollup@4.28.0) 5413 - '@rollup/plugin-json': 6.1.0(rollup@4.28.0) 5414 - '@rollup/plugin-node-resolve': 15.3.0(rollup@4.28.0) 5415 - '@rollup/plugin-replace': 6.0.1(rollup@4.28.0) 5416 - '@rollup/plugin-terser': 0.4.4(rollup@4.28.0) 5417 - '@rollup/pluginutils': 5.1.3(rollup@4.28.0) 5418 - '@types/http-proxy': 1.17.15 5419 - '@vercel/nft': 0.27.7(rollup@4.28.0) 5420 - archiver: 7.0.1 5421 - c12: 2.0.1(magicast@0.3.5) 5422 - chokidar: 3.6.0 5423 - citty: 0.1.6 5424 - compatx: 0.1.8 5425 - confbox: 0.1.8 5426 - consola: 3.2.3 5427 - cookie-es: 1.2.2 5428 - croner: 9.0.0 5429 - crossws: 0.3.1 5430 - db0: 0.2.1 5431 - defu: 6.1.4 5432 - destr: 2.0.3 5433 - dot-prop: 9.0.0 5434 - esbuild: 0.24.0 5435 - escape-string-regexp: 5.0.0 5436 - etag: 1.8.1 5437 - fs-extra: 11.2.0 5438 - globby: 14.0.2 5439 - gzip-size: 7.0.0 5440 - h3: 1.13.0 5441 - hookable: 5.5.3 5442 - httpxy: 0.1.5 5443 - ioredis: 5.4.1 5444 - jiti: 2.4.1 5445 - klona: 2.0.6 5446 - knitwork: 1.1.0 5447 - listhen: 1.9.0 5448 - magic-string: 0.30.14 5449 - magicast: 0.3.5 5450 - mime: 4.0.4 5451 - mlly: 1.7.3 5452 - node-fetch-native: 1.6.4 5453 - ofetch: 1.4.1 5454 - ohash: 1.1.4 5455 - openapi-typescript: 7.4.4(typescript@5.7.2) 5456 - pathe: 1.1.2 5457 - perfect-debounce: 1.0.0 5458 - pkg-types: 1.2.1 5459 - pretty-bytes: 6.1.1 5460 - radix3: 1.1.2 5461 - rollup: 4.28.0 5462 - rollup-plugin-visualizer: 5.12.0(rollup@4.28.0) 5463 - scule: 1.3.0 5464 - semver: 7.6.3 5465 - serve-placeholder: 2.0.2 5466 - serve-static: 1.16.2 5467 - std-env: 3.8.0 5468 - ufo: 1.5.4 5469 - uncrypto: 0.1.3 5470 - unctx: 2.3.1 5471 - unenv: 1.10.0 5472 - unimport: 3.14.3(rollup@4.28.0) 5473 - unstorage: 1.13.1(ioredis@5.4.1) 5474 - untyped: 1.5.1 5475 - unwasm: 0.3.9 5476 - transitivePeerDependencies: 5477 - - '@azure/app-configuration' 5478 - - '@azure/cosmos' 5479 - - '@azure/data-tables' 5480 - - '@azure/identity' 5481 - - '@azure/keyvault-secrets' 5482 - - '@azure/storage-blob' 5483 - - '@capacitor/preferences' 5484 - - '@electric-sql/pglite' 5485 - - '@libsql/client' 5486 - - '@netlify/blobs' 5487 - - '@planetscale/database' 5488 - - '@upstash/redis' 5489 - - '@vercel/kv' 5490 - - better-sqlite3 5491 - - drizzle-orm 5492 - - encoding 5493 - - idb-keyval 5494 - - mysql2 5495 - - supports-color 5496 - - typescript 2569 + node-domexception@1.0.0: {} 5497 2570 5498 - node-addon-api@7.1.1: {} 5499 - 5500 - node-fetch-native@1.6.4: {} 5501 - 5502 - node-fetch@2.7.0: 2571 + node-fetch@3.3.2: 5503 2572 dependencies: 5504 - whatwg-url: 5.0.0 5505 - 5506 - node-forge@1.3.1: {} 2573 + data-uri-to-buffer: 4.0.1 2574 + fetch-blob: 3.2.0 2575 + formdata-polyfill: 4.0.10 5507 2576 5508 2577 node-gyp-build@4.8.4: {} 5509 2578 5510 - node-releases@2.0.18: {} 5511 - 5512 - nopt@5.0.0: 5513 - dependencies: 5514 - abbrev: 1.1.1 5515 - 5516 - normalize-path@3.0.0: {} 5517 - 5518 - normalize-range@0.1.2: {} 5519 - 5520 - npm-run-path@5.3.0: 5521 - dependencies: 5522 - path-key: 4.0.0 5523 - 5524 - npmlog@5.0.1: 5525 - dependencies: 5526 - are-we-there-yet: 2.0.0 5527 - console-control-strings: 1.1.0 5528 - gauge: 3.0.2 5529 - set-blocking: 2.0.0 5530 - 5531 - nypm@0.3.12: 5532 - dependencies: 5533 - citty: 0.1.6 5534 - consola: 3.2.3 5535 - execa: 8.0.1 5536 - pathe: 1.1.2 5537 - pkg-types: 1.2.1 5538 - ufo: 1.5.4 5539 - 5540 2579 object-assign@4.1.1: {} 5541 2580 5542 - object-hash@3.0.0: {} 5543 - 5544 - ofetch@1.4.1: 5545 - dependencies: 5546 - destr: 2.0.3 5547 - node-fetch-native: 1.6.4 5548 - ufo: 1.5.4 5549 - 5550 - ohash@1.1.4: {} 5551 - 5552 2581 on-exit-leak-free@2.1.2: {} 5553 - 5554 - on-finished@2.4.1: 5555 - dependencies: 5556 - ee-first: 1.1.1 5557 2582 5558 2583 once@1.4.0: 5559 2584 dependencies: 5560 2585 wrappy: 1.0.2 5561 2586 5562 - onetime@6.0.0: 5563 - dependencies: 5564 - mimic-fn: 4.0.0 5565 - 5566 - open@8.4.2: 5567 - dependencies: 5568 - define-lazy-prop: 2.0.0 5569 - is-docker: 2.2.1 5570 - is-wsl: 2.2.0 5571 - 5572 - openapi-typescript@7.4.4(typescript@5.7.2): 5573 - dependencies: 5574 - '@redocly/openapi-core': 1.25.15(supports-color@9.4.0) 5575 - ansi-colors: 4.1.3 5576 - change-case: 5.4.4 5577 - parse-json: 8.1.0 5578 - supports-color: 9.4.0 5579 - typescript: 5.7.2 5580 - yargs-parser: 21.1.1 5581 - transitivePeerDependencies: 5582 - - encoding 5583 - 5584 2587 package-json-from-dist@1.0.1: {} 5585 2588 5586 - parse-json@8.1.0: 2589 + partysocket@1.0.2: 5587 2590 dependencies: 5588 - '@babel/code-frame': 7.26.2 5589 - index-to-position: 0.1.2 5590 - type-fest: 4.30.0 5591 - 5592 - parseurl@1.3.3: {} 5593 - 5594 - path-is-absolute@1.0.1: {} 2591 + event-target-shim: 6.0.2 5595 2592 5596 2593 path-key@3.1.1: {} 5597 2594 5598 - path-key@4.0.0: {} 5599 - 5600 - path-parse@1.0.7: {} 5601 - 5602 2595 path-scurry@1.11.1: 5603 2596 dependencies: 5604 2597 lru-cache: 10.4.3 ··· 5609 2602 lru-cache: 11.0.2 5610 2603 minipass: 7.1.2 5611 2604 5612 - path-to-regexp@6.3.0: {} 5613 - 5614 - path-type@5.0.0: {} 5615 - 5616 - pathe@1.1.2: {} 5617 - 5618 - perfect-debounce@1.0.0: {} 5619 - 5620 2605 picocolors@1.1.1: {} 5621 2606 5622 - picomatch@2.3.1: {} 5623 - 5624 2607 picomatch@4.0.2: {} 5625 - 5626 - pify@2.3.0: {} 5627 2608 5628 2609 pino-abstract-transport@2.0.0: 5629 2610 dependencies: ··· 5663 2644 5664 2645 pirates@4.0.6: {} 5665 2646 5666 - pkg-types@1.2.1: 5667 - dependencies: 5668 - confbox: 0.1.8 5669 - mlly: 1.7.3 5670 - pathe: 1.1.2 5671 - 5672 - pluralize@8.0.0: {} 5673 - 5674 - postcss-import@15.1.0(postcss@8.4.49): 5675 - dependencies: 5676 - postcss: 8.4.49 5677 - postcss-value-parser: 4.2.0 5678 - read-cache: 1.0.0 5679 - resolve: 1.22.8 5680 - 5681 - postcss-js@4.0.1(postcss@8.4.49): 5682 - dependencies: 5683 - camelcase-css: 2.0.1 5684 - postcss: 8.4.49 5685 - 5686 - postcss-load-config@4.0.2(postcss@8.4.49): 5687 - dependencies: 5688 - lilconfig: 3.1.3 5689 - yaml: 2.6.1 5690 - optionalDependencies: 5691 - postcss: 8.4.49 5692 - 5693 2647 postcss-load-config@6.0.1(jiti@2.4.1)(postcss@8.4.49)(tsx@4.19.2)(yaml@2.6.1): 5694 2648 dependencies: 5695 2649 lilconfig: 3.1.3 ··· 5699 2653 tsx: 4.19.2 5700 2654 yaml: 2.6.1 5701 2655 5702 - postcss-nested@6.2.0(postcss@8.4.49): 5703 - dependencies: 5704 - postcss: 8.4.49 5705 - postcss-selector-parser: 6.1.2 5706 - 5707 - postcss-selector-parser@6.1.2: 5708 - dependencies: 5709 - cssesc: 3.0.0 5710 - util-deprecate: 1.0.2 5711 - 5712 - postcss-value-parser@4.2.0: {} 5713 - 5714 2656 postcss@8.4.49: 5715 2657 dependencies: 5716 2658 nanoid: 3.3.8 5717 2659 picocolors: 1.1.1 5718 2660 source-map-js: 1.2.1 2661 + optional: true 5719 2662 5720 2663 prettier@3.4.1: {} 5721 2664 5722 - pretty-bytes@6.1.1: {} 5723 - 5724 - process-nextick-args@2.0.1: {} 5725 - 5726 2665 process-warning@4.0.0: {} 5727 2666 5728 - process@0.11.10: {} 2667 + promise-limit@2.7.0: {} 5729 2668 5730 2669 pump@3.0.2: 5731 2670 dependencies: ··· 5734 2673 5735 2674 punycode@2.3.1: {} 5736 2675 5737 - queue-microtask@1.2.3: {} 5738 - 5739 - queue-tick@1.0.1: {} 5740 - 5741 2676 quick-format-unescaped@4.0.4: {} 5742 2677 5743 - radix3@1.1.2: {} 5744 - 5745 - randombytes@2.1.0: 5746 - dependencies: 5747 - safe-buffer: 5.2.1 5748 - 5749 - range-parser@1.2.1: {} 5750 - 5751 - rc9@2.1.2: 5752 - dependencies: 5753 - defu: 6.1.4 5754 - destr: 2.0.3 5755 - 5756 - react-dom@18.3.1(react@18.3.1): 5757 - dependencies: 5758 - loose-envify: 1.4.0 5759 - react: 18.3.1 5760 - scheduler: 0.23.2 5761 - 5762 - react-refresh@0.14.2: {} 5763 - 5764 - react@18.3.1: 5765 - dependencies: 5766 - loose-envify: 1.4.0 5767 - 5768 - read-cache@1.0.0: 5769 - dependencies: 5770 - pify: 2.3.0 5771 - 5772 - readable-stream@2.3.8: 5773 - dependencies: 5774 - core-util-is: 1.0.3 5775 - inherits: 2.0.4 5776 - isarray: 1.0.0 5777 - process-nextick-args: 2.0.1 5778 - safe-buffer: 5.1.2 5779 - string_decoder: 1.1.1 5780 - util-deprecate: 1.0.2 5781 - 5782 - readable-stream@3.6.2: 5783 - dependencies: 5784 - inherits: 2.0.4 5785 - string_decoder: 1.3.0 5786 - util-deprecate: 1.0.2 5787 - 5788 - readable-stream@4.5.2: 5789 - dependencies: 5790 - abort-controller: 3.0.0 5791 - buffer: 6.0.3 5792 - events: 3.3.0 5793 - process: 0.11.10 5794 - string_decoder: 1.3.0 5795 - 5796 - readdir-glob@1.1.3: 5797 - dependencies: 5798 - minimatch: 5.1.6 5799 - 5800 - readdirp@3.6.0: 5801 - dependencies: 5802 - picomatch: 2.3.1 5803 - 5804 2678 readdirp@4.0.2: {} 5805 2679 5806 2680 real-require@0.2.0: {} 5807 2681 5808 - recast@0.23.9: 5809 - dependencies: 5810 - ast-types: 0.16.1 5811 - esprima: 4.0.1 5812 - source-map: 0.6.1 5813 - tiny-invariant: 1.3.3 5814 - tslib: 2.8.1 5815 - 5816 - redis-errors@1.2.0: {} 5817 - 5818 - redis-parser@3.0.0: 5819 - dependencies: 5820 - redis-errors: 1.2.0 5821 - 5822 - require-directory@2.1.1: {} 5823 - 5824 - require-from-string@2.0.2: {} 5825 - 5826 - requires-port@1.0.0: {} 5827 - 5828 2682 resolve-from@5.0.0: {} 5829 2683 5830 2684 resolve-pkg-maps@1.0.0: {} 5831 2685 5832 - resolve@1.22.8: 5833 - dependencies: 5834 - is-core-module: 2.15.1 5835 - path-parse: 1.0.7 5836 - supports-preserve-symlinks-flag: 1.0.0 5837 - 5838 - reusify@1.0.4: {} 5839 - 5840 - rimraf@3.0.2: 5841 - dependencies: 5842 - glob: 7.2.3 5843 - 5844 2686 rimraf@6.0.1: 5845 2687 dependencies: 5846 2688 glob: 11.0.0 5847 2689 package-json-from-dist: 1.0.1 5848 - 5849 - rollup-plugin-visualizer@5.12.0(rollup@4.28.0): 5850 - dependencies: 5851 - open: 8.4.2 5852 - picomatch: 2.3.1 5853 - source-map: 0.7.4 5854 - yargs: 17.7.2 5855 - optionalDependencies: 5856 - rollup: 4.28.0 5857 2690 5858 2691 rollup@4.28.0: 5859 2692 dependencies: ··· 5878 2711 '@rollup/rollup-win32-ia32-msvc': 4.28.0 5879 2712 '@rollup/rollup-win32-x64-msvc': 4.28.0 5880 2713 fsevents: 2.3.3 5881 - 5882 - run-parallel@1.2.0: 5883 - dependencies: 5884 - queue-microtask: 1.2.3 5885 - 5886 - safe-buffer@5.1.2: {} 5887 - 5888 - safe-buffer@5.2.1: {} 5889 2714 5890 2715 safe-stable-stringify@2.5.0: {} 5891 2716 5892 - scheduler@0.23.2: 5893 - dependencies: 5894 - loose-envify: 1.4.0 5895 - 5896 - scule@1.3.0: {} 5897 - 5898 2717 secure-json-parse@2.7.0: {} 5899 2718 5900 - semver@6.3.1: {} 5901 - 5902 - semver@7.6.3: {} 5903 - 5904 - send@0.19.0: 5905 - dependencies: 5906 - debug: 2.6.9 5907 - depd: 2.0.0 5908 - destroy: 1.2.0 5909 - encodeurl: 1.0.2 5910 - escape-html: 1.0.3 5911 - etag: 1.8.1 5912 - fresh: 0.5.2 5913 - http-errors: 2.0.0 5914 - mime: 1.6.0 5915 - ms: 2.1.3 5916 - on-finished: 2.4.1 5917 - range-parser: 1.2.1 5918 - statuses: 2.0.1 5919 - transitivePeerDependencies: 5920 - - supports-color 5921 - 5922 - serialize-javascript@6.0.2: 5923 - dependencies: 5924 - randombytes: 2.1.0 5925 - 5926 - serve-placeholder@2.0.2: 5927 - dependencies: 5928 - defu: 6.1.4 5929 - 5930 - serve-static@1.16.2: 5931 - dependencies: 5932 - encodeurl: 2.0.0 5933 - escape-html: 1.0.3 5934 - parseurl: 1.3.3 5935 - send: 0.19.0 5936 - transitivePeerDependencies: 5937 - - supports-color 5938 - 5939 - set-blocking@2.0.0: {} 5940 - 5941 - setprototypeof@1.2.0: {} 5942 - 5943 2719 shebang-command@2.0.0: 5944 2720 dependencies: 5945 2721 shebang-regex: 3.0.0 5946 2722 5947 2723 shebang-regex@3.0.0: {} 5948 2724 5949 - signal-exit@3.0.7: {} 5950 - 5951 2725 signal-exit@4.1.0: {} 5952 2726 5953 - slash@5.1.0: {} 5954 - 5955 - smob@1.5.0: {} 5956 - 5957 2727 sonic-boom@4.2.0: 5958 2728 dependencies: 5959 2729 atomic-sleep: 1.0.0 5960 2730 5961 - source-map-js@1.2.1: {} 2731 + source-map-js@1.2.1: 2732 + optional: true 5962 2733 5963 2734 source-map-support@0.5.21: 5964 2735 dependencies: ··· 5967 2738 5968 2739 source-map@0.6.1: {} 5969 2740 5970 - source-map@0.7.4: {} 5971 - 5972 2741 source-map@0.8.0-beta.0: 5973 2742 dependencies: 5974 2743 whatwg-url: 7.1.0 5975 2744 5976 2745 split2@4.2.0: {} 5977 2746 5978 - standard-as-callback@2.1.0: {} 5979 - 5980 - statuses@2.0.1: {} 5981 - 5982 - std-env@3.8.0: {} 5983 - 5984 - streamx@2.21.0: 5985 - dependencies: 5986 - fast-fifo: 1.3.2 5987 - queue-tick: 1.0.1 5988 - text-decoder: 1.2.1 5989 - optionalDependencies: 5990 - bare-events: 2.5.0 5991 - 5992 2747 string-width@4.2.3: 5993 2748 dependencies: 5994 2749 emoji-regex: 8.0.0 ··· 6001 2756 emoji-regex: 9.2.2 6002 2757 strip-ansi: 7.1.0 6003 2758 6004 - string_decoder@1.1.1: 6005 - dependencies: 6006 - safe-buffer: 5.1.2 6007 - 6008 - string_decoder@1.3.0: 6009 - dependencies: 6010 - safe-buffer: 5.2.1 6011 - 6012 2759 strip-ansi@6.0.1: 6013 2760 dependencies: 6014 2761 ansi-regex: 5.0.1 ··· 6017 2764 dependencies: 6018 2765 ansi-regex: 6.1.0 6019 2766 6020 - strip-final-newline@3.0.0: {} 6021 - 6022 2767 strip-json-comments@3.1.1: {} 6023 2768 6024 - strip-literal@2.1.1: 6025 - dependencies: 6026 - js-tokens: 9.0.1 6027 - 6028 2769 sucrase@3.35.0: 6029 2770 dependencies: 6030 2771 '@jridgewell/gen-mapping': 0.3.5 ··· 6035 2776 pirates: 4.0.6 6036 2777 ts-interface-checker: 0.1.13 6037 2778 6038 - supports-color@9.4.0: {} 6039 - 6040 - supports-preserve-symlinks-flag@1.0.0: {} 6041 - 6042 - system-architecture@0.1.0: {} 6043 - 6044 - tailwind-merge@2.5.5: {} 6045 - 6046 - tailwindcss-animate@1.0.7(tailwindcss@3.4.15): 6047 - dependencies: 6048 - tailwindcss: 3.4.15 6049 - 6050 - tailwindcss@3.4.15: 6051 - dependencies: 6052 - '@alloc/quick-lru': 5.2.0 6053 - arg: 5.0.2 6054 - chokidar: 3.6.0 6055 - didyoumean: 1.2.2 6056 - dlv: 1.1.3 6057 - fast-glob: 3.3.2 6058 - glob-parent: 6.0.2 6059 - is-glob: 4.0.3 6060 - jiti: 1.21.6 6061 - lilconfig: 2.1.0 6062 - micromatch: 4.0.8 6063 - normalize-path: 3.0.0 6064 - object-hash: 3.0.0 6065 - picocolors: 1.1.1 6066 - postcss: 8.4.49 6067 - postcss-import: 15.1.0(postcss@8.4.49) 6068 - postcss-js: 4.0.1(postcss@8.4.49) 6069 - postcss-load-config: 4.0.2(postcss@8.4.49) 6070 - postcss-nested: 6.2.0(postcss@8.4.49) 6071 - postcss-selector-parser: 6.1.2 6072 - resolve: 1.22.8 6073 - sucrase: 3.35.0 6074 - transitivePeerDependencies: 6075 - - ts-node 6076 - 6077 - tar-stream@3.1.7: 6078 - dependencies: 6079 - b4a: 1.6.7 6080 - fast-fifo: 1.3.2 6081 - streamx: 2.21.0 6082 - 6083 - tar@6.2.1: 6084 - dependencies: 6085 - chownr: 2.0.0 6086 - fs-minipass: 2.1.0 6087 - minipass: 5.0.0 6088 - minizlib: 2.1.2 6089 - mkdirp: 1.0.4 6090 - yallist: 4.0.0 6091 - 6092 - terser@5.36.0: 6093 - dependencies: 6094 - '@jridgewell/source-map': 0.3.6 6095 - acorn: 8.14.0 6096 - commander: 2.20.3 6097 - source-map-support: 0.5.21 6098 - 6099 - text-decoder@1.2.1: {} 6100 - 6101 2779 thenify-all@1.6.0: 6102 2780 dependencies: 6103 2781 thenify: 3.3.1 ··· 6109 2787 thread-stream@3.1.0: 6110 2788 dependencies: 6111 2789 real-require: 0.2.0 6112 - 6113 - tiny-invariant@1.3.3: {} 6114 - 6115 - tiny-warning@1.0.3: {} 6116 2790 6117 2791 tinyexec@0.3.1: {} 6118 2792 ··· 6121 2795 fdir: 6.4.2(picomatch@4.0.2) 6122 2796 picomatch: 4.0.2 6123 2797 6124 - to-regex-range@5.0.1: 6125 - dependencies: 6126 - is-number: 7.0.0 6127 - 6128 - toidentifier@1.0.1: {} 6129 - 6130 - tr46@0.0.3: {} 6131 - 6132 2798 tr46@1.0.1: 6133 2799 dependencies: 6134 2800 punycode: 2.3.1 ··· 6137 2803 6138 2804 ts-interface-checker@0.1.13: {} 6139 2805 6140 - ts-node@10.9.2(@types/node@22.10.1)(typescript@5.7.2): 2806 + ts-node@10.9.2(@swc/core@1.9.3)(@types/node@22.10.1)(typescript@5.7.2): 6141 2807 dependencies: 6142 2808 '@cspotcode/source-map-support': 0.8.1 6143 2809 '@tsconfig/node10': 1.0.11 ··· 6154 2820 typescript: 5.7.2 6155 2821 v8-compile-cache-lib: 3.0.1 6156 2822 yn: 3.1.1 2823 + optionalDependencies: 2824 + '@swc/core': 1.9.3 6157 2825 6158 - tslib@2.8.1: {} 6159 - 6160 - tsup@8.3.5(jiti@2.4.1)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1): 2826 + tsup@8.3.5(@swc/core@1.9.3)(jiti@2.4.1)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1): 6161 2827 dependencies: 6162 2828 bundle-require: 5.0.0(esbuild@0.24.0) 6163 2829 cac: 6.7.14 ··· 6176 2842 tinyglobby: 0.2.10 6177 2843 tree-kill: 1.2.2 6178 2844 optionalDependencies: 2845 + '@swc/core': 1.9.3 6179 2846 postcss: 8.4.49 6180 2847 typescript: 5.7.2 6181 2848 transitivePeerDependencies: ··· 6191 2858 optionalDependencies: 6192 2859 fsevents: 2.3.3 6193 2860 6194 - type-fest@2.19.0: {} 6195 - 6196 - type-fest@4.30.0: {} 6197 - 6198 2861 typescript@5.7.2: {} 6199 2862 6200 - ufo@1.5.4: {} 6201 - 6202 - uncrypto@0.1.3: {} 6203 - 6204 - unctx@2.3.1: 6205 - dependencies: 6206 - acorn: 8.14.0 6207 - estree-walker: 3.0.3 6208 - magic-string: 0.30.14 6209 - unplugin: 1.16.0 6210 - 6211 - undici-types@5.28.4: {} 6212 - 6213 2863 undici-types@6.20.0: {} 6214 2864 6215 - unenv@1.10.0: 6216 - dependencies: 6217 - consola: 3.2.3 6218 - defu: 6.1.4 6219 - mime: 3.0.0 6220 - node-fetch-native: 1.6.4 6221 - pathe: 1.1.2 6222 - 6223 - unicorn-magic@0.1.0: {} 6224 - 6225 - unimport@3.14.3(rollup@4.28.0): 6226 - dependencies: 6227 - '@rollup/pluginutils': 5.1.3(rollup@4.28.0) 6228 - acorn: 8.14.0 6229 - escape-string-regexp: 5.0.0 6230 - estree-walker: 3.0.3 6231 - local-pkg: 0.5.1 6232 - magic-string: 0.30.14 6233 - mlly: 1.7.3 6234 - pathe: 1.1.2 6235 - picomatch: 4.0.2 6236 - pkg-types: 1.2.1 6237 - scule: 1.3.0 6238 - strip-literal: 2.1.1 6239 - tinyglobby: 0.2.10 6240 - unplugin: 1.16.0 6241 - transitivePeerDependencies: 6242 - - rollup 6243 - 6244 - universalify@2.0.1: {} 6245 - 6246 - unplugin@1.16.0: 6247 - dependencies: 6248 - acorn: 8.14.0 6249 - webpack-virtual-modules: 0.6.2 6250 - 6251 - unstorage@1.13.1(ioredis@5.4.1): 6252 - dependencies: 6253 - anymatch: 3.1.3 6254 - chokidar: 3.6.0 6255 - citty: 0.1.6 6256 - destr: 2.0.3 6257 - h3: 1.13.0 6258 - listhen: 1.9.0 6259 - lru-cache: 10.4.3 6260 - node-fetch-native: 1.6.4 6261 - ofetch: 1.4.1 6262 - ufo: 1.5.4 6263 - optionalDependencies: 6264 - ioredis: 5.4.1 6265 - 6266 - untun@0.1.3: 6267 - dependencies: 6268 - citty: 0.1.6 6269 - consola: 3.2.3 6270 - pathe: 1.1.2 6271 - 6272 - untyped@1.5.1: 6273 - dependencies: 6274 - '@babel/core': 7.26.0 6275 - '@babel/standalone': 7.26.2 6276 - '@babel/types': 7.26.0 6277 - defu: 6.1.4 6278 - jiti: 2.4.1 6279 - mri: 1.2.0 6280 - scule: 1.3.0 6281 - transitivePeerDependencies: 6282 - - supports-color 6283 - 6284 - unwasm@0.3.9: 6285 - dependencies: 6286 - knitwork: 1.1.0 6287 - magic-string: 0.30.14 6288 - mlly: 1.7.3 6289 - pathe: 1.1.2 6290 - pkg-types: 1.2.1 6291 - unplugin: 1.16.0 6292 - 6293 - update-browserslist-db@1.1.1(browserslist@4.24.2): 6294 - dependencies: 6295 - browserslist: 4.24.2 6296 - escalade: 3.2.0 6297 - picocolors: 1.1.1 6298 - 6299 - uqr@0.1.2: {} 6300 - 6301 - uri-js-replace@1.0.1: {} 6302 - 6303 - urlpattern-polyfill@8.0.2: {} 6304 - 6305 - use-sync-external-store@1.2.2(react@18.3.1): 6306 - dependencies: 6307 - react: 18.3.1 6308 - 6309 - util-deprecate@1.0.2: {} 6310 - 6311 2865 v8-compile-cache-lib@3.0.1: {} 6312 2866 6313 - vinxi@0.4.3(@types/node@22.10.1)(ioredis@5.4.1)(terser@5.36.0)(typescript@5.7.2): 6314 - dependencies: 6315 - '@babel/core': 7.26.0 6316 - '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) 6317 - '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0) 6318 - '@types/micromatch': 4.0.9 6319 - '@vinxi/listhen': 1.5.6 6320 - boxen: 7.1.1 6321 - chokidar: 3.6.0 6322 - citty: 0.1.6 6323 - consola: 3.2.3 6324 - crossws: 0.2.4 6325 - dax-sh: 0.39.2 6326 - defu: 6.1.4 6327 - es-module-lexer: 1.5.4 6328 - esbuild: 0.20.2 6329 - fast-glob: 3.3.2 6330 - get-port-please: 3.1.2 6331 - h3: 1.11.1 6332 - hookable: 5.5.3 6333 - http-proxy: 1.18.1 6334 - micromatch: 4.0.8 6335 - nitropack: 2.10.4(typescript@5.7.2) 6336 - node-fetch-native: 1.6.4 6337 - path-to-regexp: 6.3.0 6338 - pathe: 1.1.2 6339 - radix3: 1.1.2 6340 - resolve: 1.22.8 6341 - serve-placeholder: 2.0.2 6342 - serve-static: 1.16.2 6343 - ufo: 1.5.4 6344 - unctx: 2.3.1 6345 - unenv: 1.10.0 6346 - unstorage: 1.13.1(ioredis@5.4.1) 6347 - vite: 5.4.11(@types/node@22.10.1)(terser@5.36.0) 6348 - zod: 3.23.8 6349 - transitivePeerDependencies: 6350 - - '@azure/app-configuration' 6351 - - '@azure/cosmos' 6352 - - '@azure/data-tables' 6353 - - '@azure/identity' 6354 - - '@azure/keyvault-secrets' 6355 - - '@azure/storage-blob' 6356 - - '@capacitor/preferences' 6357 - - '@electric-sql/pglite' 6358 - - '@libsql/client' 6359 - - '@netlify/blobs' 6360 - - '@planetscale/database' 6361 - - '@types/node' 6362 - - '@upstash/redis' 6363 - - '@vercel/kv' 6364 - - better-sqlite3 6365 - - debug 6366 - - drizzle-orm 6367 - - encoding 6368 - - idb-keyval 6369 - - ioredis 6370 - - less 6371 - - lightningcss 6372 - - mysql2 6373 - - sass 6374 - - sass-embedded 6375 - - stylus 6376 - - sugarss 6377 - - supports-color 6378 - - terser 6379 - - typescript 6380 - - uWebSockets.js 6381 - - xml2js 6382 - 6383 - vinxi@0.5.0(@types/node@22.10.1)(ioredis@5.4.1)(jiti@2.4.1)(terser@5.36.0)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1): 6384 - dependencies: 6385 - '@babel/core': 7.26.0 6386 - '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) 6387 - '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0) 6388 - '@types/micromatch': 4.0.9 6389 - '@vinxi/listhen': 1.5.6 6390 - boxen: 7.1.1 6391 - chokidar: 3.6.0 6392 - citty: 0.1.6 6393 - consola: 3.2.3 6394 - crossws: 0.3.1 6395 - dax-sh: 0.39.2 6396 - defu: 6.1.4 6397 - es-module-lexer: 1.5.4 6398 - esbuild: 0.20.2 6399 - fast-glob: 3.3.2 6400 - get-port-please: 3.1.2 6401 - h3: 1.13.0 6402 - hookable: 5.5.3 6403 - http-proxy: 1.18.1 6404 - micromatch: 4.0.8 6405 - nitropack: 2.10.4(typescript@5.7.2) 6406 - node-fetch-native: 1.6.4 6407 - path-to-regexp: 6.3.0 6408 - pathe: 1.1.2 6409 - radix3: 1.1.2 6410 - resolve: 1.22.8 6411 - serve-placeholder: 2.0.2 6412 - serve-static: 1.16.2 6413 - ufo: 1.5.4 6414 - unctx: 2.3.1 6415 - unenv: 1.10.0 6416 - unstorage: 1.13.1(ioredis@5.4.1) 6417 - vite: 6.0.2(@types/node@22.10.1)(jiti@2.4.1)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) 6418 - zod: 3.23.8 6419 - transitivePeerDependencies: 6420 - - '@azure/app-configuration' 6421 - - '@azure/cosmos' 6422 - - '@azure/data-tables' 6423 - - '@azure/identity' 6424 - - '@azure/keyvault-secrets' 6425 - - '@azure/storage-blob' 6426 - - '@capacitor/preferences' 6427 - - '@electric-sql/pglite' 6428 - - '@libsql/client' 6429 - - '@netlify/blobs' 6430 - - '@planetscale/database' 6431 - - '@types/node' 6432 - - '@upstash/redis' 6433 - - '@vercel/kv' 6434 - - better-sqlite3 6435 - - debug 6436 - - drizzle-orm 6437 - - encoding 6438 - - idb-keyval 6439 - - ioredis 6440 - - jiti 6441 - - less 6442 - - lightningcss 6443 - - mysql2 6444 - - sass 6445 - - sass-embedded 6446 - - stylus 6447 - - sugarss 6448 - - supports-color 6449 - - terser 6450 - - tsx 6451 - - typescript 6452 - - xml2js 6453 - - yaml 6454 - 6455 - vite@5.4.11(@types/node@22.10.1)(terser@5.36.0): 6456 - dependencies: 6457 - esbuild: 0.21.5 6458 - postcss: 8.4.49 6459 - rollup: 4.28.0 6460 - optionalDependencies: 6461 - '@types/node': 22.10.1 6462 - fsevents: 2.3.3 6463 - terser: 5.36.0 6464 - 6465 - vite@6.0.2(@types/node@22.10.1)(jiti@2.4.1)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1): 6466 - dependencies: 6467 - esbuild: 0.24.0 6468 - postcss: 8.4.49 6469 - rollup: 4.28.0 6470 - optionalDependencies: 6471 - '@types/node': 22.10.1 6472 - fsevents: 2.3.3 6473 - jiti: 2.4.1 6474 - terser: 5.36.0 6475 - tsx: 4.19.2 6476 - yaml: 2.6.1 6477 - 6478 - webidl-conversions@3.0.1: {} 2867 + web-streams-polyfill@3.3.3: {} 6479 2868 6480 2869 webidl-conversions@4.0.2: {} 6481 2870 6482 - webpack-virtual-modules@0.6.2: {} 6483 - 6484 - whatwg-url@5.0.0: 6485 - dependencies: 6486 - tr46: 0.0.3 6487 - webidl-conversions: 3.0.1 6488 - 6489 2871 whatwg-url@7.1.0: 6490 2872 dependencies: 6491 2873 lodash.sortby: 4.7.0 ··· 6496 2878 dependencies: 6497 2879 isexe: 2.0.0 6498 2880 6499 - which@4.0.0: 6500 - dependencies: 6501 - isexe: 3.1.1 6502 - 6503 - wide-align@1.1.5: 6504 - dependencies: 6505 - string-width: 4.2.3 6506 - 6507 - widest-line@4.0.1: 6508 - dependencies: 6509 - string-width: 5.1.2 6510 - 6511 2881 wrap-ansi@7.0.0: 6512 2882 dependencies: 6513 2883 ansi-styles: 4.3.0 ··· 6522 2892 6523 2893 wrappy@1.0.2: {} 6524 2894 6525 - y18n@5.0.8: {} 6526 - 6527 - yallist@3.1.1: {} 6528 - 6529 - yallist@4.0.0: {} 6530 - 6531 - yaml-ast-parser@0.0.43: {} 6532 - 6533 - yaml@2.6.1: {} 6534 - 6535 - yargs-parser@21.1.1: {} 2895 + ws@8.18.0(bufferutil@4.0.8): 2896 + optionalDependencies: 2897 + bufferutil: 4.0.8 6536 2898 6537 - yargs@17.7.2: 6538 - dependencies: 6539 - cliui: 8.0.1 6540 - escalade: 3.2.0 6541 - get-caller-file: 2.0.5 6542 - require-directory: 2.1.1 6543 - string-width: 4.2.3 6544 - y18n: 5.0.8 6545 - yargs-parser: 21.1.1 2899 + yaml@2.6.1: 2900 + optional: true 6546 2901 6547 2902 yn@3.1.1: {} 6548 - 6549 - zip-stream@6.0.1: 6550 - dependencies: 6551 - archiver-utils: 5.0.2 6552 - compress-commons: 6.0.2 6553 - readable-stream: 4.5.2 6554 2903 6555 2904 zod@3.23.8: {}