diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md new file mode 100644 index 0000000..416d019 --- /dev/null +++ b/.github/copilot-instructions.md @@ -0,0 +1,230 @@ +# Copilot Instructions for toolkit-dev/api + +## Repository Overview + +**Toolkit** is a TypeScript library that provides everything needed to build end-to-end typesafe APIs. The slogan is "define once, and ship with confidence." It's a monorepo containing multiple packages for JSON:API and OpenAPI support, along with React Query integrations and examples. + +**Key Details:** + +- **Language:** TypeScript/JavaScript (ESM modules only) +- **Package Manager:** pnpm with workspaces +- **Build System:** TypeScript compiler, Nix flake for environment +- **Primary Tools:** Hono (HTTP server), Zod (validation), React Query +- **Repository Size:** ~15 packages across JSON:API, OpenAPI, React Query, and examples +- **Target Runtime:** Node.js 22 + +## Environment Setup + +### Prerequisites + +This repository requires Nix for development environment management. **If you are an AI coding agent, see [AGENTS.md](AGENTS.md) for critical requirements about command execution.** + +**All commands must be prefixed with `nix develop --command`** to access the development environment. This prefix provides Node.js 22, pnpm 10, and all development tools. + +**Pattern:** `nix develop --command ` + +In command examples below, this prefix is shown explicitly. + +### Initial Setup + +1. **Start development environment:** + + ```bash + nix develop --command bash + ``` + + - Takes 30-90 seconds on first run to download and configure environment + - Provides all development tools + +2. **Install dependencies:** + + ```bash + nix develop --command pnpm install + ``` + + - Takes ~30-60 seconds on first run + - Creates node_modules and sets up husky git hooks + +3. **Compile TypeScript** (required before running most commands): + ```bash + nix develop --command pnpm -r run compile + ``` + - Compiles all packages in dependency order + +## Build & Development + +### Common Commands + +**Development server:** + +```bash +nix develop --command pnpm run dev +``` + +- Runs turbowatch for file watching and auto-compilation +- Starts example backend server on http://localhost:3000 +- Rebuilds on TypeScript config changes + +**Lint code:** + +```bash +nix develop --command pnpm run lint +``` + +- Uses ESLint with neostandard config +- Must pass before commits (enforced by husky pre-commit hooks) + +**Format code:** + +```bash +nix develop --command pnpm run format +``` + +- Uses Prettier for code formatting +- Applied automatically on git commit via lint-staged + +**Clean build artifacts:** + +```bash +nix develop --command pnpm run clean # Clean all +nix develop --command pnpm run clean:cache # Clean dist folders only +nix develop --command pnpm run clean:deps # Clean node_modules only +``` + +**Run specific package commands:** + +```bash +nix develop --command pnpm --filter @toolkit-dev/examples-backend run start +``` + +**Test specific packages:** + +```bash +nix develop --command pnpm --filter @toolkit-dev/examples-backend run test +``` + +### Development Workflow + +1. Make changes to code +2. Compile if needed: `nix develop --command pnpm -r run compile` +3. Lint frequently: `nix develop --command pnpm run lint` +4. Test individual packages: `nix develop --command pnpm --filter run test` +5. Run example server: `nix develop --command pnpm --filter @toolkit-dev/examples-backend run start` +6. Commit (pre-commit hooks will run Prettier and ESLint automatically) + +### Common Development Patterns + +**Working with specific packages:** +```bash +# Navigate to specific package (optional, commands work from root) +cd packages/jsonapi/jsonapi-types + +# Compile single package +nix develop --command pnpm --filter @jsonapi/types run compile + +# Lint single package +nix develop --command pnpm --filter @jsonapi/types run lint +``` + +**Multi-package workflows:** +```bash +# Compile all packages in dependency order +nix develop --command pnpm -r run compile + +# Clean and rebuild everything +nix develop --command pnpm run clean && nix develop --command pnpm install && nix develop --command pnpm -r run compile +``` + +## Project Architecture + +### Package Structure + +View current packages: + +```bash +nix develop --command find packages -name "package.json" -exec dirname {} \; +``` + +**Package Categories:** +- **jsonapi/**: JSON:API implementation packages (types, parser, serializer, zod integration) +- **openapi/**: OpenAPI implementation packages (core, client, server, document validation) +- **react-query/**: React Query integrations for both JSON:API and fetch-based APIs +- **runtime/**: Core runtime utilities (error handling, etc.) +- **examples/**: Example applications (backend server, frontend client) + +**Workspace dependencies:** Packages use `workspace:*` for internal dependencies + +### Key Configuration Files + +- `flake.nix`: Nix development environment (Node.js 22, pnpm 10) +- `pnpm-workspace.yaml`: pnpm workspace configuration +- `tsconfig.json`: TypeScript project references and build config +- `tsconfig.options.json`: Shared TypeScript compiler options +- `eslint.config.js`: ESLint configuration using neostandard +- `lint-staged.config.js`: Pre-commit formatting and linting +- `turbowatch.ts`: File watching and development server configuration +- `.envrc`: direnv integration (loads Nix automatically) + +### Development Tools + +- **DevContainer:** Available at `.devcontainer/devcontainer.json` using Nix container +- **VSCode:** Settings in `.vscode/` configure Nix formatter and format-on-save +- **Pre-commit Hooks:** Husky runs lint-staged (prettier + eslint) on commits + +### CI/CD Pipeline + +- **GitHub Actions:** `.github/workflows/run_test.yml` (uses shared workflow) +- **Copilot Setup:** `.github/workflows/copilot-setup-steps.yml` installs Nix and dependencies +- **Renovate:** Automated dependency updates via `.github/renovate.json5` + +## Troubleshooting + +### Validation Commands + +If you encounter issues, verify the environment with these commands: + +**Check linting:** + +```bash +nix develop --command pnpm run lint +``` + +**Check TypeScript compilation:** + +```bash +nix develop --command pnpm -r run compile +``` + +**Verify example server:** + +```bash +nix develop --command pnpm --filter @toolkit-dev/examples-backend run start +``` + +Server should start on port 3000. + +**Test specific package functionality:** + +```bash +nix develop --command pnpm --filter @toolkit-dev/examples-backend run test +``` + +### Common Issues + +- **Command not found errors:** Ensure you're using the `nix develop --command` prefix +- **Husky pre-commit failures:** Git hooks require the Nix environment; ensure the prefix is used +- **Missing dependencies:** Run `nix develop --command pnpm install` + +## For AI Coding Agents + +**See [AGENTS.md](../AGENTS.md) for critical requirements about working with the Nix environment.** + +Key points: + +- Every command must use `nix develop --command` prefix +- This applies to all operations: pnpm, git, node, npm, etc. +- No exceptions to this requirement + + +You have the capability to call multiple tools in a single response. For maximum efficiency, whenever you need to perform multiple independent operations, ALWAYS invoke all relevant tools simultaneously rather than sequentially. Especially when exploring repository, reading files, viewing directories, validating changes or replying to comments. + diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..e0f15b3 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,144 @@ +# Agent Development Guidelines + +This document provides critical environment requirements for AI coding agents (GitHub Copilot, Cursor, Aider, Cody, etc.) working with this repository. + +**For complete operational guidance** on working with this codebase (build commands, architecture, workflows), see [copilot-instructions.md](copilot-instructions.md). + +## Critical Requirement: Nix Environment + +This repository uses Nix for development environment management. All development tools (Node.js, pnpm, git hooks) are provided through Nix. + +### Command Execution Requirement + +**EVERY bash command you execute must use the `nix develop --command` prefix.** + +This is not optional. It applies to: + +- Package management: `pnpm install`, `pnpm run`, `npm` +- Version control: `git add`, `git commit`, `git status` +- Node.js: `node`, `npm`, `npx` +- Build tools: `tsc`, custom scripts +- File operations when they interact with the environment +- **Everything** - no exceptions + +### Command Pattern + +```bash +nix develop --command +``` + +### Examples + +```bash +# Package management +nix develop --command pnpm install +nix develop --command pnpm run dev +nix develop --command pnpm run lint + +# Version control +nix develop --command git status +nix develop --command git add . +nix develop --command git commit -m "implement feature" + +# TypeScript compilation +nix develop --command pnpm -r run compile + +# Running specific packages +nix develop --command pnpm --filter @toolkit-dev/examples-backend run start +``` + +## Why This Approach Is Required + +1. **Environment Isolation:** Node.js 22 and pnpm 10 are only available inside the Nix environment +2. **Git Hooks:** Husky pre-commit hooks need pnpm to run lint-staged. Without the prefix, git commits will fail +3. **Consistent Tooling:** Ensures all agents use the exact same tool versions +4. **No System Dependencies:** The host system may not have Node.js or pnpm installed + +### What Happens Without the Prefix + +```bash +# WRONG - Will fail - pnpm not found +pnpm install + +# WRONG - Will fail - git hooks can't find pnpm +git commit -m "changes" + +# CORRECT - Will succeed +nix develop --command pnpm install +nix develop --command git commit -m "changes" +``` + +## Environment Verification + +If you encounter issues, verify the environment is working correctly: + +```bash +# Check tool versions +nix develop --command node --version # Should show v22.x.x +nix develop --command pnpm --version # Should show 10.x.x +nix develop --command git --version # Should work + +# Test git hooks work correctly +nix develop --command bash -c "echo 'test' > test.txt" +nix develop --command git add test.txt +nix develop --command git commit -m "test commit" # Should trigger husky hooks +nix develop --command git reset --soft HEAD~1 # Undo test commit +nix develop --command git reset HEAD test.txt # Unstage +nix develop --command rm test.txt # Clean up +``` + +## Important Notes for AI Agents + +### Do Not Install Nix + +The hosting environment (GitHub Codespaces, local devcontainer, etc.) provides Nix. Never attempt to install Nix yourself. + +### Remember This Pattern + +Your agent must consistently remember and apply the `nix develop --command` prefix. This is the single most important requirement for working with this repository. + +### Error Recovery + +If you see errors like: + +- "command not found: pnpm" +- "command not found: node" +- Git commit hooks failing + +The solution is always: ensure you're using the `nix develop --command` prefix. + +### Shell Context + +You may need to enter a persistent Nix shell for interactive work: + +```bash +nix develop --command bash +# Now inside Nix shell, commands work without prefix +pnpm install +git status +exit # Leave Nix shell +``` + +However, for individual commands in automated workflows, always use the prefix pattern. + +## Integration with Repository Workflows + +The [copilot-instructions.md](./.github/copilot-instructions.md) file contains all workflow details: + +- Complete build and development commands +- Package structure and architecture +- Linting and formatting requirements +- CI/CD pipeline information +- Troubleshooting guidance + +This file focuses solely on the Nix environment constraint. Refer to copilot-instructions.md for everything else. + +## Quick Reference + +**Every command pattern:** + +```bash +nix develop --command +``` + +**No exceptions. Always use the prefix.** diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a18c132..a309056 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,10 +10,16 @@ importers: devDependencies: '@commitlint/cli': specifier: 19.4.0 - version: 19.4.0(@types/node@20.14.8)(typescript@5.7.3) + version: 19.4.0(@types/node@24.1.0)(typescript@5.7.3) '@commitlint/config-conventional': specifier: 19.2.2 version: 19.2.2 + '@toolkit-dev/eslintconfig': + specifier: workspace:* + version: link:packages/configs/eslintconfig + '@types/node': + specifier: 24.1.0 + version: 24.1.0 eslint: specifier: 8.57.0 version: 8.57.0 @@ -23,9 +29,6 @@ importers: lint-staged: specifier: 15.2.9 version: 15.2.9 - neostandard: - specifier: 0.12.1 - version: 0.12.1(eslint@8.57.0)(typescript@5.7.3) prettier: specifier: 3.3.3 version: 3.3.3 @@ -35,6 +38,71 @@ importers: typescript: specifier: 5.7.3 version: 5.7.3 + vitest: + specifier: 3.0.5 + version: 3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + + packages/configs/eslintconfig: + dependencies: + eslint: + specifier: ^8.57.0 + version: 8.57.0 + neostandard: + specifier: ^0.12.1 + version: 0.12.1(eslint@8.57.0)(typescript@5.7.3) + devDependencies: + '@toolkit-dev/eslintconfig': + specifier: workspace:* + version: 'link:' + '@toolkit-dev/tsconfig': + specifier: workspace:* + version: link:../tsconfig + '@types/eslint': + specifier: 8.56.10 + version: 8.56.10 + '@types/node': + specifier: 24.1.0 + version: 24.1.0 + prettier: + specifier: 3.3.3 + version: 3.3.3 + typescript: + specifier: 5.7.3 + version: 5.7.3 + vitest: + specifier: 3.0.5 + version: 3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + + packages/configs/tsconfig: + devDependencies: + prettier: + specifier: 3.3.3 + version: 3.3.3 + typescript: + specifier: 5.7.3 + version: 5.7.3 + + packages/configs/viteconfig: + dependencies: + vite: + specifier: 6.2.0 + version: 6.2.0(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + vitest: + specifier: 3.0.5 + version: 3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + devDependencies: + '@toolkit-dev/tsconfig': + specifier: workspace:* + version: link:../tsconfig + '@types/node': + specifier: 24.1.0 + version: 24.1.0 + prettier: + specifier: 3.3.3 + version: 3.3.3 + typescript: + specifier: 5.7.3 + version: 5.7.3 packages/examples/backend: dependencies: @@ -93,15 +161,18 @@ importers: specifier: 4.2.3 version: 4.2.3(zod@3.24.2) devDependencies: + '@toolkit-dev/viteconfig': + specifier: workspace:* + version: link:../../configs/viteconfig '@types/node': - specifier: 20.14.8 - version: 20.14.8 + specifier: 24.1.0 + version: 24.1.0 typescript: specifier: 5.7.3 version: 5.7.3 vitest: specifier: 3.0.5 - version: 3.0.5(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + version: 3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) packages/examples/frontend: dependencies: @@ -165,7 +236,10 @@ importers: version: 1.112.0(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(csstype@3.1.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@tanstack/router-plugin': specifier: 1.112.0 - version: 1.112.0(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(vite@6.2.0(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0)) + version: 1.112.0(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(vite@6.2.0(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0)) + '@toolkit-dev/viteconfig': + specifier: workspace:* + version: link:../../configs/viteconfig '@types/react': specifier: 19.0.10 version: 19.0.10 @@ -174,7 +248,7 @@ importers: version: 19.0.4(@types/react@19.0.10) '@vitejs/plugin-react': specifier: 4.3.4 - version: 4.3.4(vite@6.2.0(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0)) + version: 4.3.4(vite@6.2.0(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0)) globals: specifier: 15.15.0 version: 15.15.0 @@ -183,13 +257,13 @@ importers: version: 5.7.3 vite: specifier: 6.2.0 - version: 6.2.0(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + version: 6.2.0(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) vite-plugin-checker: specifier: 0.9.0 - version: 0.9.0(eslint@8.57.0)(optionator@0.9.4)(typescript@5.7.3)(vite@6.2.0(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0)) + version: 0.9.0(eslint@8.57.0)(optionator@0.9.4)(typescript@5.7.3)(vite@6.2.0(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0)) vitest: specifier: 3.0.5 - version: 3.0.5(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + version: 3.0.5(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) packages/jsonapi/jsonapi-parser: dependencies: @@ -197,15 +271,18 @@ importers: specifier: workspace:* version: link:../jsonapi-types devDependencies: + '@toolkit-dev/viteconfig': + specifier: workspace:* + version: link:../../configs/viteconfig '@types/node': - specifier: 20.14.8 - version: 20.14.8 + specifier: 24.1.0 + version: 24.1.0 typescript: specifier: 5.7.3 version: 5.7.3 vitest: specifier: 3.0.5 - version: 3.0.5(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + version: 3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) packages/jsonapi/jsonapi-serializer: dependencies: @@ -219,12 +296,24 @@ importers: specifier: 5.0.0 version: 5.0.0 devDependencies: + '@electric-sql/pglite': + specifier: 0.3.8 + version: 0.3.8 + '@toolkit-dev/viteconfig': + specifier: workspace:* + version: link:../../configs/viteconfig '@types/lodash': specifier: 4.14.191 version: 4.14.191 '@types/node': - specifier: 20.14.8 - version: 20.14.8 + specifier: 24.1.0 + version: 24.1.0 + drizzle-kit: + specifier: 0.31.4 + version: 0.31.4 + drizzle-orm: + specifier: 0.44.5 + version: 0.44.5(@electric-sql/pglite@0.3.8)(knex@3.1.0(sqlite3@5.1.4(encoding@0.1.13)))(sqlite3@5.1.4(encoding@0.1.13)) knex: specifier: 3.1.0 version: 3.1.0(sqlite3@5.1.4(encoding@0.1.13)) @@ -234,9 +323,6 @@ importers: objection: specifier: 3.0.1 version: 3.0.1(knex@3.1.0(sqlite3@5.1.4(encoding@0.1.13))) - sqlite3: - specifier: 5.1.4 - version: 5.1.4(encoding@0.1.13) type-fest: specifier: 4.35.0 version: 4.35.0 @@ -245,16 +331,22 @@ importers: version: 5.7.3 vitest: specifier: 3.0.5 - version: 3.0.5(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + version: 3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) zod: specifier: 3.24.2 version: 3.24.2 packages/jsonapi/jsonapi-types: devDependencies: + '@toolkit-dev/viteconfig': + specifier: workspace:* + version: link:../../configs/viteconfig typescript: specifier: 5.7.3 version: 5.7.3 + vitest: + specifier: 3.0.5 + version: 3.0.5(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) packages/jsonapi/jsonapi-zod: dependencies: @@ -265,15 +357,18 @@ importers: specifier: 4.35.0 version: 4.35.0 devDependencies: + '@toolkit-dev/viteconfig': + specifier: workspace:* + version: link:../../configs/viteconfig '@types/node': - specifier: 20.14.8 - version: 20.14.8 + specifier: 24.1.0 + version: 24.1.0 typescript: specifier: 5.7.3 version: 5.7.3 vitest: specifier: 3.0.5 - version: 3.0.5(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + version: 3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) zod: specifier: 3.24.2 version: 3.24.2 @@ -290,21 +385,27 @@ importers: specifier: 4.35.0 version: 4.35.0 devDependencies: + '@toolkit-dev/viteconfig': + specifier: workspace:* + version: link:../../configs/viteconfig '@types/node': - specifier: 20.14.8 - version: 20.14.8 + specifier: 24.1.0 + version: 24.1.0 typescript: specifier: 5.7.3 version: 5.7.3 vitest: specifier: 3.0.5 - version: 3.0.5(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + version: 3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) packages/openapi/openapi-core: dependencies: '@standard-schema/spec': specifier: 1.0.0 version: 1.0.0 + '@toolkit-dev/viteconfig': + specifier: workspace:* + version: link:../../configs/viteconfig hono: specifier: 4.7.0 version: 4.7.0 @@ -322,14 +423,14 @@ importers: version: 4.2.3(zod@3.24.2) devDependencies: '@types/node': - specifier: 20.14.8 - version: 20.14.8 + specifier: 24.1.0 + version: 24.1.0 typescript: specifier: 5.7.3 version: 5.7.3 vitest: specifier: 3.0.5 - version: 3.0.5(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + version: 3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) packages/openapi/openapi-document-zod: dependencies: @@ -349,15 +450,18 @@ importers: specifier: 4.2.3 version: 4.2.3(zod@3.24.2) devDependencies: + '@toolkit-dev/viteconfig': + specifier: workspace:* + version: link:../../configs/viteconfig '@types/node': - specifier: 20.14.8 - version: 20.14.8 + specifier: 24.1.0 + version: 24.1.0 typescript: specifier: 5.7.3 version: 5.7.3 vitest: specifier: 3.0.5 - version: 3.0.5(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + version: 3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) packages/openapi/openapi-server-hono: dependencies: @@ -380,15 +484,18 @@ importers: '@toolkit-dev/openapi-document-zod': specifier: workspace:* version: link:../openapi-document-zod + '@toolkit-dev/viteconfig': + specifier: workspace:* + version: link:../../configs/viteconfig '@types/node': - specifier: 20.14.8 - version: 20.14.8 + specifier: 24.1.0 + version: 24.1.0 typescript: specifier: 5.7.3 version: 5.7.3 vitest: specifier: 3.0.5 - version: 3.0.5(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + version: 3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) zod: specifier: 3.24.2 version: 3.24.2 @@ -399,15 +506,18 @@ importers: specifier: 1.0.0 version: 1.0.0 devDependencies: + '@toolkit-dev/viteconfig': + specifier: workspace:* + version: link:../../configs/viteconfig '@types/node': - specifier: 20.14.8 - version: 20.14.8 + specifier: 24.1.0 + version: 24.1.0 typescript: specifier: 5.7.3 version: 5.7.3 vitest: specifier: 3.0.5 - version: 3.0.5(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + version: 3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) packages/react-query/react-query-fetch: dependencies: @@ -424,15 +534,18 @@ importers: specifier: 4.35.0 version: 4.35.0 devDependencies: + '@toolkit-dev/viteconfig': + specifier: workspace:* + version: link:../../configs/viteconfig '@types/node': - specifier: 20.14.8 - version: 20.14.8 + specifier: 24.1.0 + version: 24.1.0 typescript: specifier: 5.7.3 version: 5.7.3 vitest: specifier: 3.0.5 - version: 3.0.5(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + version: 3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) packages/react-query/react-query-jsonapi: dependencies: @@ -452,27 +565,33 @@ importers: specifier: 4.35.0 version: 4.35.0 devDependencies: + '@toolkit-dev/viteconfig': + specifier: workspace:* + version: link:../../configs/viteconfig '@types/node': - specifier: 20.14.8 - version: 20.14.8 + specifier: 24.1.0 + version: 24.1.0 typescript: specifier: 5.7.3 version: 5.7.3 vitest: specifier: 3.0.5 - version: 3.0.5(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + version: 3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) packages/runtime/errors: devDependencies: + '@toolkit-dev/viteconfig': + specifier: workspace:* + version: link:../../configs/viteconfig '@types/node': - specifier: 20.14.8 - version: 20.14.8 + specifier: 24.1.0 + version: 24.1.0 typescript: specifier: 5.7.3 version: 5.7.3 vitest: specifier: 3.0.5 - version: 3.0.5(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + version: 3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) packages: @@ -644,6 +763,12 @@ packages: resolution: {integrity: sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==} engines: {node: '>=v18'} + '@drizzle-team/brocli@0.10.2': + resolution: {integrity: sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==} + + '@electric-sql/pglite@0.3.8': + resolution: {integrity: sha512-VlAz/R7mktifp9IHzNvjxWJM8p3fPH2lHpustYuRSOXOpXiAMTlA5qqxcufPaDnfee6CZCE9qrT1MHDT7riSHg==} + '@emotion/babel-plugin@11.13.5': resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==} @@ -698,156 +823,452 @@ packages: '@emotion/weak-memoize@0.4.0': resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==} + '@esbuild-kit/core-utils@3.3.2': + resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==} + deprecated: 'Merged into tsx: https://tsx.is' + + '@esbuild-kit/esm-loader@2.6.5': + resolution: {integrity: sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==} + deprecated: 'Merged into tsx: https://tsx.is' + '@esbuild/aix-ppc64@0.25.0': resolution: {integrity: sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==} engines: {node: '>=18'} cpu: [ppc64] os: [aix] + '@esbuild/aix-ppc64@0.25.10': + resolution: {integrity: sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.18.20': + resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + '@esbuild/android-arm64@0.25.0': resolution: {integrity: sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==} engines: {node: '>=18'} cpu: [arm64] os: [android] + '@esbuild/android-arm64@0.25.10': + resolution: {integrity: sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.18.20': + resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + '@esbuild/android-arm@0.25.0': resolution: {integrity: sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==} engines: {node: '>=18'} cpu: [arm] os: [android] + '@esbuild/android-arm@0.25.10': + resolution: {integrity: sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.18.20': + resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + '@esbuild/android-x64@0.25.0': resolution: {integrity: sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==} engines: {node: '>=18'} cpu: [x64] os: [android] + '@esbuild/android-x64@0.25.10': + resolution: {integrity: sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.18.20': + resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + '@esbuild/darwin-arm64@0.25.0': resolution: {integrity: sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==} engines: {node: '>=18'} cpu: [arm64] os: [darwin] + '@esbuild/darwin-arm64@0.25.10': + resolution: {integrity: sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.18.20': + resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + '@esbuild/darwin-x64@0.25.0': resolution: {integrity: sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==} engines: {node: '>=18'} cpu: [x64] os: [darwin] + '@esbuild/darwin-x64@0.25.10': + resolution: {integrity: sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.18.20': + resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + '@esbuild/freebsd-arm64@0.25.0': resolution: {integrity: sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==} engines: {node: '>=18'} cpu: [arm64] os: [freebsd] + '@esbuild/freebsd-arm64@0.25.10': + resolution: {integrity: sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.18.20': + resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + '@esbuild/freebsd-x64@0.25.0': resolution: {integrity: sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==} engines: {node: '>=18'} cpu: [x64] os: [freebsd] + '@esbuild/freebsd-x64@0.25.10': + resolution: {integrity: sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.18.20': + resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + '@esbuild/linux-arm64@0.25.0': resolution: {integrity: sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==} engines: {node: '>=18'} cpu: [arm64] os: [linux] + '@esbuild/linux-arm64@0.25.10': + resolution: {integrity: sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.18.20': + resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + '@esbuild/linux-arm@0.25.0': resolution: {integrity: sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==} engines: {node: '>=18'} cpu: [arm] os: [linux] + '@esbuild/linux-arm@0.25.10': + resolution: {integrity: sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.18.20': + resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + '@esbuild/linux-ia32@0.25.0': resolution: {integrity: sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==} engines: {node: '>=18'} cpu: [ia32] os: [linux] + '@esbuild/linux-ia32@0.25.10': + resolution: {integrity: sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.18.20': + resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + '@esbuild/linux-loong64@0.25.0': resolution: {integrity: sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==} engines: {node: '>=18'} cpu: [loong64] os: [linux] + '@esbuild/linux-loong64@0.25.10': + resolution: {integrity: sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.18.20': + resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + '@esbuild/linux-mips64el@0.25.0': resolution: {integrity: sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==} engines: {node: '>=18'} cpu: [mips64el] os: [linux] + '@esbuild/linux-mips64el@0.25.10': + resolution: {integrity: sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.18.20': + resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + '@esbuild/linux-ppc64@0.25.0': resolution: {integrity: sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==} engines: {node: '>=18'} cpu: [ppc64] os: [linux] + '@esbuild/linux-ppc64@0.25.10': + resolution: {integrity: sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.18.20': + resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + '@esbuild/linux-riscv64@0.25.0': resolution: {integrity: sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==} engines: {node: '>=18'} cpu: [riscv64] os: [linux] + '@esbuild/linux-riscv64@0.25.10': + resolution: {integrity: sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.18.20': + resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + '@esbuild/linux-s390x@0.25.0': resolution: {integrity: sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==} engines: {node: '>=18'} cpu: [s390x] os: [linux] + '@esbuild/linux-s390x@0.25.10': + resolution: {integrity: sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.18.20': + resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + '@esbuild/linux-x64@0.25.0': resolution: {integrity: sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==} engines: {node: '>=18'} cpu: [x64] os: [linux] + '@esbuild/linux-x64@0.25.10': + resolution: {integrity: sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + '@esbuild/netbsd-arm64@0.25.0': resolution: {integrity: sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==} engines: {node: '>=18'} cpu: [arm64] os: [netbsd] + '@esbuild/netbsd-arm64@0.25.10': + resolution: {integrity: sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.18.20': + resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + '@esbuild/netbsd-x64@0.25.0': resolution: {integrity: sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==} engines: {node: '>=18'} cpu: [x64] os: [netbsd] + '@esbuild/netbsd-x64@0.25.10': + resolution: {integrity: sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + '@esbuild/openbsd-arm64@0.25.0': resolution: {integrity: sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] + '@esbuild/openbsd-arm64@0.25.10': + resolution: {integrity: sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.18.20': + resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + '@esbuild/openbsd-x64@0.25.0': resolution: {integrity: sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==} engines: {node: '>=18'} cpu: [x64] os: [openbsd] + '@esbuild/openbsd-x64@0.25.10': + resolution: {integrity: sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openharmony-arm64@0.25.10': + resolution: {integrity: sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.18.20': + resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + '@esbuild/sunos-x64@0.25.0': resolution: {integrity: sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==} engines: {node: '>=18'} cpu: [x64] os: [sunos] + '@esbuild/sunos-x64@0.25.10': + resolution: {integrity: sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.18.20': + resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + '@esbuild/win32-arm64@0.25.0': resolution: {integrity: sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==} engines: {node: '>=18'} cpu: [arm64] os: [win32] + '@esbuild/win32-arm64@0.25.10': + resolution: {integrity: sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.18.20': + resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + '@esbuild/win32-ia32@0.25.0': resolution: {integrity: sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==} engines: {node: '>=18'} cpu: [ia32] os: [win32] + '@esbuild/win32-ia32@0.25.10': + resolution: {integrity: sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.18.20': + resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + '@esbuild/win32-x64@0.25.0': resolution: {integrity: sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==} engines: {node: '>=18'} cpu: [x64] os: [win32] + '@esbuild/win32-x64@0.25.10': + resolution: {integrity: sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + '@eslint-community/eslint-utils@4.4.1': resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -1270,12 +1691,18 @@ packages: '@types/doctrine@0.0.9': resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} + '@types/eslint@8.56.10': + resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==} + '@types/estree@1.0.6': resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} '@types/fs-extra@11.0.4': resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==} + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + '@types/jsonfile@6.1.4': resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==} @@ -1288,8 +1715,11 @@ packages: '@types/node@18.19.76': resolution: {integrity: sha512-yvR7Q9LdPz2vGpmpJX5LolrgRdWvB67MJKDPSgIIzpFbaf9a1j/f5DnLp5VDyHGMR0QZHlTr1afsD87QCXFHKw==} - '@types/node@20.14.8': - resolution: {integrity: sha512-DO+2/jZinXfROG7j7WKFn/3C6nFwxy2lLpgLjEXJz+0XKphZlTLJ14mo8Vfg8X5BWN6XjyESXq+LcYdT7tR3bA==} + '@types/node@24.1.0': + resolution: {integrity: sha512-ut5FthK5moxFKH2T1CUOC6ctR67rQRvvHdFLCD2Ql6KXmMuCrjsSsRI9UsLCm9M18BMwClv4pn327UvB7eeO1w==} + + '@types/node@24.3.1': + resolution: {integrity: sha512-3vXmQDXy+woz+gnrTvuvNrPzekOi+Ds0ReMxw0LzBiK3a+1k0kQn9f2NWk+lgD4rJehFUmYy2gMhJ2ZI+7YP9g==} '@types/parse-json@4.0.2': resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} @@ -1474,8 +1904,8 @@ packages: resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} engines: {node: '>= 8'} - aproba@2.0.0: - resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} + aproba@2.1.0: + resolution: {integrity: sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew==} are-we-there-yet@2.0.0: resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} @@ -1565,6 +1995,9 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + cac@6.7.14: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} @@ -1832,6 +2265,102 @@ packages: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} engines: {node: '>=8'} + drizzle-kit@0.31.4: + resolution: {integrity: sha512-tCPWVZWZqWVx2XUsVpJRnH9Mx0ClVOf5YUHerZ5so1OKSlqww4zy1R5ksEdGRcO3tM3zj0PYN6V48TbQCL1RfA==} + hasBin: true + + drizzle-orm@0.44.5: + resolution: {integrity: sha512-jBe37K7d8ZSKptdKfakQFdeljtu3P2Cbo7tJoJSVZADzIKOBo9IAJPOmMsH2bZl90bZgh8FQlD8BjxXA/zuBkQ==} + peerDependencies: + '@aws-sdk/client-rds-data': '>=3' + '@cloudflare/workers-types': '>=4' + '@electric-sql/pglite': '>=0.2.0' + '@libsql/client': '>=0.10.0' + '@libsql/client-wasm': '>=0.10.0' + '@neondatabase/serverless': '>=0.10.0' + '@op-engineering/op-sqlite': '>=2' + '@opentelemetry/api': ^1.4.1 + '@planetscale/database': '>=1.13' + '@prisma/client': '*' + '@tidbcloud/serverless': '*' + '@types/better-sqlite3': '*' + '@types/pg': '*' + '@types/sql.js': '*' + '@upstash/redis': '>=1.34.7' + '@vercel/postgres': '>=0.8.0' + '@xata.io/client': '*' + better-sqlite3: '>=7' + bun-types: '*' + expo-sqlite: '>=14.0.0' + gel: '>=2' + knex: '*' + kysely: '*' + mysql2: '>=2' + pg: '>=8' + postgres: '>=3' + prisma: '*' + sql.js: '>=1' + sqlite3: '>=5' + peerDependenciesMeta: + '@aws-sdk/client-rds-data': + optional: true + '@cloudflare/workers-types': + optional: true + '@electric-sql/pglite': + optional: true + '@libsql/client': + optional: true + '@libsql/client-wasm': + optional: true + '@neondatabase/serverless': + optional: true + '@op-engineering/op-sqlite': + optional: true + '@opentelemetry/api': + optional: true + '@planetscale/database': + optional: true + '@prisma/client': + optional: true + '@tidbcloud/serverless': + optional: true + '@types/better-sqlite3': + optional: true + '@types/pg': + optional: true + '@types/sql.js': + optional: true + '@upstash/redis': + optional: true + '@vercel/postgres': + optional: true + '@xata.io/client': + optional: true + better-sqlite3: + optional: true + bun-types: + optional: true + expo-sqlite: + optional: true + gel: + optional: true + knex: + optional: true + kysely: + optional: true + mysql2: + optional: true + pg: + optional: true + postgres: + optional: true + prisma: + optional: true + sql.js: + optional: true + sqlite3: + optional: true + dunder-proto@1.0.1: resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} engines: {node: '>= 0.4'} @@ -1904,11 +2433,26 @@ packages: resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} engines: {node: '>= 0.4'} + esbuild-register@3.6.0: + resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==} + peerDependencies: + esbuild: '>=0.12 <1' + + esbuild@0.18.20: + resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} + engines: {node: '>=12'} + hasBin: true + esbuild@0.25.0: resolution: {integrity: sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==} engines: {node: '>=18'} hasBin: true + esbuild@0.25.10: + resolution: {integrity: sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==} + engines: {node: '>=18'} + hasBin: true + escalade@3.2.0: resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} engines: {node: '>=6'} @@ -2290,8 +2834,8 @@ packages: hookable@5.5.3: resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} - http-cache-semantics@4.1.1: - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + http-cache-semantics@4.2.0: + resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} http-proxy-agent@4.0.1: resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} @@ -2362,8 +2906,8 @@ packages: resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} engines: {node: '>= 0.10'} - ip-address@9.0.5: - resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} + ip-address@10.0.1: + resolution: {integrity: sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==} engines: {node: '>= 12'} is-array-buffer@3.0.5: @@ -2531,9 +3075,6 @@ packages: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true - jsbn@1.1.0: - resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} - jsesc@3.1.0: resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} engines: {node: '>=6'} @@ -3307,18 +3848,25 @@ packages: resolution: {integrity: sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==} engines: {node: '>= 10'} - socks@2.8.4: - resolution: {integrity: sha512-D3YaD0aRxR3mEcqnidIs7ReYJFVzWdd6fXJYUM8ixcQcJRGTka/b3saV0KflYhyVJXKhb947GndU35SxYNResQ==} + socks@2.8.7: + resolution: {integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==} engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} source-map-js@1.2.1: resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} engines: {node: '>=0.10.0'} + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + source-map@0.5.7: resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} engines: {node: '>=0.10.0'} + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + split2@4.2.0: resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} engines: {node: '>= 10.x'} @@ -3326,9 +3874,6 @@ packages: split@0.3.3: resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==} - sprintf-js@1.1.3: - resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} - sqlite3@5.1.4: resolution: {integrity: sha512-i0UlWAzPlzX3B5XP2cYuhWQJsTtlMD6obOa1PgeEQ4DHEXUuyJkgv50I3isqZAP5oFc2T8OFvakmDh2W6I+YpA==} @@ -3548,6 +4093,12 @@ packages: undici-types@5.26.5: resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + undici-types@7.10.0: + resolution: {integrity: sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==} + + undici-types@7.8.0: + resolution: {integrity: sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==} + unicorn-magic@0.1.0: resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} engines: {node: '>=18'} @@ -3951,11 +4502,11 @@ snapshots: '@babel/helper-string-parser': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 - '@commitlint/cli@19.4.0(@types/node@20.14.8)(typescript@5.7.3)': + '@commitlint/cli@19.4.0(@types/node@24.1.0)(typescript@5.7.3)': dependencies: '@commitlint/format': 19.5.0 '@commitlint/lint': 19.7.1 - '@commitlint/load': 19.6.1(@types/node@20.14.8)(typescript@5.7.3) + '@commitlint/load': 19.6.1(@types/node@24.1.0)(typescript@5.7.3) '@commitlint/read': 19.5.0 '@commitlint/types': 19.5.0 execa: 8.0.1 @@ -4002,7 +4553,7 @@ snapshots: '@commitlint/rules': 19.6.0 '@commitlint/types': 19.5.0 - '@commitlint/load@19.6.1(@types/node@20.14.8)(typescript@5.7.3)': + '@commitlint/load@19.6.1(@types/node@24.1.0)(typescript@5.7.3)': dependencies: '@commitlint/config-validator': 19.5.0 '@commitlint/execute-rule': 19.5.0 @@ -4010,7 +4561,7 @@ snapshots: '@commitlint/types': 19.5.0 chalk: 5.4.1 cosmiconfig: 9.0.0(typescript@5.7.3) - cosmiconfig-typescript-loader: 6.1.0(@types/node@20.14.8)(cosmiconfig@9.0.0(typescript@5.7.3))(typescript@5.7.3) + cosmiconfig-typescript-loader: 6.1.0(@types/node@24.1.0)(cosmiconfig@9.0.0(typescript@5.7.3))(typescript@5.7.3) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -4061,6 +4612,10 @@ snapshots: '@types/conventional-commits-parser': 5.0.1 chalk: 5.4.1 + '@drizzle-team/brocli@0.10.2': {} + + '@electric-sql/pglite@0.3.8': {} + '@emotion/babel-plugin@11.13.5': dependencies: '@babel/helper-module-imports': 7.25.9 @@ -4140,85 +4695,239 @@ snapshots: dependencies: react: 19.0.0 - '@emotion/utils@1.4.2': {} + '@emotion/utils@1.4.2': {} + + '@emotion/weak-memoize@0.4.0': {} + + '@esbuild-kit/core-utils@3.3.2': + dependencies: + esbuild: 0.18.20 + source-map-support: 0.5.21 + + '@esbuild-kit/esm-loader@2.6.5': + dependencies: + '@esbuild-kit/core-utils': 3.3.2 + get-tsconfig: 4.10.0 + + '@esbuild/aix-ppc64@0.25.0': + optional: true - '@emotion/weak-memoize@0.4.0': {} + '@esbuild/aix-ppc64@0.25.10': + optional: true - '@esbuild/aix-ppc64@0.25.0': + '@esbuild/android-arm64@0.18.20': optional: true '@esbuild/android-arm64@0.25.0': optional: true + '@esbuild/android-arm64@0.25.10': + optional: true + + '@esbuild/android-arm@0.18.20': + optional: true + '@esbuild/android-arm@0.25.0': optional: true + '@esbuild/android-arm@0.25.10': + optional: true + + '@esbuild/android-x64@0.18.20': + optional: true + '@esbuild/android-x64@0.25.0': optional: true + '@esbuild/android-x64@0.25.10': + optional: true + + '@esbuild/darwin-arm64@0.18.20': + optional: true + '@esbuild/darwin-arm64@0.25.0': optional: true + '@esbuild/darwin-arm64@0.25.10': + optional: true + + '@esbuild/darwin-x64@0.18.20': + optional: true + '@esbuild/darwin-x64@0.25.0': optional: true + '@esbuild/darwin-x64@0.25.10': + optional: true + + '@esbuild/freebsd-arm64@0.18.20': + optional: true + '@esbuild/freebsd-arm64@0.25.0': optional: true + '@esbuild/freebsd-arm64@0.25.10': + optional: true + + '@esbuild/freebsd-x64@0.18.20': + optional: true + '@esbuild/freebsd-x64@0.25.0': optional: true + '@esbuild/freebsd-x64@0.25.10': + optional: true + + '@esbuild/linux-arm64@0.18.20': + optional: true + '@esbuild/linux-arm64@0.25.0': optional: true + '@esbuild/linux-arm64@0.25.10': + optional: true + + '@esbuild/linux-arm@0.18.20': + optional: true + '@esbuild/linux-arm@0.25.0': optional: true + '@esbuild/linux-arm@0.25.10': + optional: true + + '@esbuild/linux-ia32@0.18.20': + optional: true + '@esbuild/linux-ia32@0.25.0': optional: true + '@esbuild/linux-ia32@0.25.10': + optional: true + + '@esbuild/linux-loong64@0.18.20': + optional: true + '@esbuild/linux-loong64@0.25.0': optional: true + '@esbuild/linux-loong64@0.25.10': + optional: true + + '@esbuild/linux-mips64el@0.18.20': + optional: true + '@esbuild/linux-mips64el@0.25.0': optional: true + '@esbuild/linux-mips64el@0.25.10': + optional: true + + '@esbuild/linux-ppc64@0.18.20': + optional: true + '@esbuild/linux-ppc64@0.25.0': optional: true + '@esbuild/linux-ppc64@0.25.10': + optional: true + + '@esbuild/linux-riscv64@0.18.20': + optional: true + '@esbuild/linux-riscv64@0.25.0': optional: true + '@esbuild/linux-riscv64@0.25.10': + optional: true + + '@esbuild/linux-s390x@0.18.20': + optional: true + '@esbuild/linux-s390x@0.25.0': optional: true + '@esbuild/linux-s390x@0.25.10': + optional: true + + '@esbuild/linux-x64@0.18.20': + optional: true + '@esbuild/linux-x64@0.25.0': optional: true + '@esbuild/linux-x64@0.25.10': + optional: true + '@esbuild/netbsd-arm64@0.25.0': optional: true + '@esbuild/netbsd-arm64@0.25.10': + optional: true + + '@esbuild/netbsd-x64@0.18.20': + optional: true + '@esbuild/netbsd-x64@0.25.0': optional: true + '@esbuild/netbsd-x64@0.25.10': + optional: true + '@esbuild/openbsd-arm64@0.25.0': optional: true + '@esbuild/openbsd-arm64@0.25.10': + optional: true + + '@esbuild/openbsd-x64@0.18.20': + optional: true + '@esbuild/openbsd-x64@0.25.0': optional: true + '@esbuild/openbsd-x64@0.25.10': + optional: true + + '@esbuild/openharmony-arm64@0.25.10': + optional: true + + '@esbuild/sunos-x64@0.18.20': + optional: true + '@esbuild/sunos-x64@0.25.0': optional: true + '@esbuild/sunos-x64@0.25.10': + optional: true + + '@esbuild/win32-arm64@0.18.20': + optional: true + '@esbuild/win32-arm64@0.25.0': optional: true + '@esbuild/win32-arm64@0.25.10': + optional: true + + '@esbuild/win32-ia32@0.18.20': + optional: true + '@esbuild/win32-ia32@0.25.0': optional: true + '@esbuild/win32-ia32@0.25.10': + optional: true + + '@esbuild/win32-x64@0.18.20': + optional: true + '@esbuild/win32-x64@0.25.0': optional: true + '@esbuild/win32-x64@0.25.10': + optional: true + '@eslint-community/eslint-utils@4.4.1(eslint@8.57.0)': dependencies: eslint: 8.57.0 @@ -4299,6 +5008,7 @@ snapshots: transitivePeerDependencies: - encoding - supports-color + optional: true '@mui/core-downloads-tracker@6.4.6': {} @@ -4557,7 +5267,7 @@ snapshots: optionalDependencies: '@tanstack/react-router': 1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tanstack/router-plugin@1.112.0(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(vite@6.2.0(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0))': + '@tanstack/router-plugin@1.112.0(@tanstack/react-router@1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(vite@6.2.0(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0))': dependencies: '@babel/core': 7.26.9 '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.9) @@ -4578,7 +5288,7 @@ snapshots: zod: 3.24.2 optionalDependencies: '@tanstack/react-router': 1.112.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - vite: 6.2.0(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + vite: 6.2.0(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) transitivePeerDependencies: - supports-color @@ -4619,20 +5329,27 @@ snapshots: '@types/conventional-commits-parser@5.0.1': dependencies: - '@types/node': 20.14.8 + '@types/node': 24.1.0 '@types/doctrine@0.0.9': {} + '@types/eslint@8.56.10': + dependencies: + '@types/estree': 1.0.6 + '@types/json-schema': 7.0.15 + '@types/estree@1.0.6': {} '@types/fs-extra@11.0.4': dependencies: '@types/jsonfile': 6.1.4 - '@types/node': 20.14.8 + '@types/node': 24.1.0 + + '@types/json-schema@7.0.15': {} '@types/jsonfile@6.1.4': dependencies: - '@types/node': 20.14.8 + '@types/node': 24.1.0 '@types/lodash@4.14.191': {} @@ -4642,9 +5359,14 @@ snapshots: dependencies: undici-types: 5.26.5 - '@types/node@20.14.8': + '@types/node@24.1.0': dependencies: - undici-types: 5.26.5 + undici-types: 7.8.0 + + '@types/node@24.3.1': + dependencies: + undici-types: 7.10.0 + optional: true '@types/parse-json@4.0.2': {} @@ -4750,14 +5472,14 @@ snapshots: hookable: 5.5.3 zhead: 2.2.4 - '@vitejs/plugin-react@4.3.4(vite@6.2.0(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0))': + '@vitejs/plugin-react@4.3.4(vite@6.2.0(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0))': dependencies: '@babel/core': 7.26.9 '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.9) '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.9) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 - vite: 6.2.0(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + vite: 6.2.0(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) transitivePeerDependencies: - supports-color @@ -4768,13 +5490,21 @@ snapshots: chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.0.5(vite@6.2.0(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0))': + '@vitest/mocker@3.0.5(vite@6.2.0(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0))': + dependencies: + '@vitest/spy': 3.0.5 + estree-walker: 3.0.3 + magic-string: 0.30.17 + optionalDependencies: + vite: 6.2.0(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + + '@vitest/mocker@3.0.5(vite@6.2.0(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0))': dependencies: '@vitest/spy': 3.0.5 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.2.0(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + vite: 6.2.0(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) '@vitest/pretty-format@3.0.5': dependencies: @@ -4810,7 +5540,8 @@ snapshots: jsonparse: 1.3.1 through: 2.3.8 - abbrev@1.1.1: {} + abbrev@1.1.1: + optional: true acorn-jsx@5.3.2(acorn@8.14.0): dependencies: @@ -4823,6 +5554,7 @@ snapshots: debug: 4.4.0 transitivePeerDependencies: - supports-color + optional: true agentkeepalive@4.6.0: dependencies: @@ -4875,12 +5607,14 @@ snapshots: normalize-path: 3.0.0 picomatch: 2.3.1 - aproba@2.0.0: {} + aproba@2.1.0: + optional: true are-we-there-yet@2.0.0: dependencies: delegates: 1.0.0 readable-stream: 3.6.2 + optional: true are-we-there-yet@3.0.1: dependencies: @@ -4998,6 +5732,8 @@ snapshots: node-releases: 2.0.19 update-browserslist-db: 1.1.3(browserslist@4.24.4) + buffer-from@1.1.2: {} + cac@6.7.14: {} cacache@15.3.0: @@ -5080,7 +5816,8 @@ snapshots: dependencies: readdirp: 4.1.2 - chownr@2.0.0: {} + chownr@2.0.0: + optional: true clean-stack@2.2.0: optional: true @@ -5112,7 +5849,8 @@ snapshots: color-name@1.1.4: {} - color-support@1.1.3: {} + color-support@1.1.3: + optional: true colorette@2.0.19: {} @@ -5129,7 +5867,8 @@ snapshots: concat-map@0.0.1: {} - console-control-strings@1.1.0: {} + console-control-strings@1.1.0: + optional: true conventional-changelog-angular@7.0.0: dependencies: @@ -5150,9 +5889,9 @@ snapshots: convert-source-map@2.0.0: {} - cosmiconfig-typescript-loader@6.1.0(@types/node@20.14.8)(cosmiconfig@9.0.0(typescript@5.7.3))(typescript@5.7.3): + cosmiconfig-typescript-loader@6.1.0(@types/node@24.1.0)(cosmiconfig@9.0.0(typescript@5.7.3))(typescript@5.7.3): dependencies: - '@types/node': 20.14.8 + '@types/node': 24.1.0 cosmiconfig: 9.0.0(typescript@5.7.3) jiti: 2.4.2 typescript: 5.7.3 @@ -5238,9 +5977,11 @@ snapshots: has-property-descriptors: 1.0.2 object-keys: 1.1.1 - delegates@1.0.0: {} + delegates@1.0.0: + optional: true - detect-libc@2.0.3: {} + detect-libc@2.0.3: + optional: true diff@7.0.0: {} @@ -5265,6 +6006,21 @@ snapshots: dependencies: is-obj: 2.0.0 + drizzle-kit@0.31.4: + dependencies: + '@drizzle-team/brocli': 0.10.2 + '@esbuild-kit/esm-loader': 2.6.5 + esbuild: 0.25.10 + esbuild-register: 3.6.0(esbuild@0.25.10) + transitivePeerDependencies: + - supports-color + + drizzle-orm@0.44.5(@electric-sql/pglite@0.3.8)(knex@3.1.0(sqlite3@5.1.4(encoding@0.1.13)))(sqlite3@5.1.4(encoding@0.1.13)): + optionalDependencies: + '@electric-sql/pglite': 0.3.8 + knex: 3.1.0(sqlite3@5.1.4(encoding@0.1.13)) + sqlite3: 5.1.4(encoding@0.1.13) + dunder-proto@1.0.1: dependencies: call-bind-apply-helpers: 1.0.2 @@ -5400,6 +6156,38 @@ snapshots: is-date-object: 1.1.0 is-symbol: 1.1.1 + esbuild-register@3.6.0(esbuild@0.25.10): + dependencies: + debug: 4.4.0 + esbuild: 0.25.10 + transitivePeerDependencies: + - supports-color + + esbuild@0.18.20: + optionalDependencies: + '@esbuild/android-arm': 0.18.20 + '@esbuild/android-arm64': 0.18.20 + '@esbuild/android-x64': 0.18.20 + '@esbuild/darwin-arm64': 0.18.20 + '@esbuild/darwin-x64': 0.18.20 + '@esbuild/freebsd-arm64': 0.18.20 + '@esbuild/freebsd-x64': 0.18.20 + '@esbuild/linux-arm': 0.18.20 + '@esbuild/linux-arm64': 0.18.20 + '@esbuild/linux-ia32': 0.18.20 + '@esbuild/linux-loong64': 0.18.20 + '@esbuild/linux-mips64el': 0.18.20 + '@esbuild/linux-ppc64': 0.18.20 + '@esbuild/linux-riscv64': 0.18.20 + '@esbuild/linux-s390x': 0.18.20 + '@esbuild/linux-x64': 0.18.20 + '@esbuild/netbsd-x64': 0.18.20 + '@esbuild/openbsd-x64': 0.18.20 + '@esbuild/sunos-x64': 0.18.20 + '@esbuild/win32-arm64': 0.18.20 + '@esbuild/win32-ia32': 0.18.20 + '@esbuild/win32-x64': 0.18.20 + esbuild@0.25.0: optionalDependencies: '@esbuild/aix-ppc64': 0.25.0 @@ -5428,6 +6216,35 @@ snapshots: '@esbuild/win32-ia32': 0.25.0 '@esbuild/win32-x64': 0.25.0 + esbuild@0.25.10: + optionalDependencies: + '@esbuild/aix-ppc64': 0.25.10 + '@esbuild/android-arm': 0.25.10 + '@esbuild/android-arm64': 0.25.10 + '@esbuild/android-x64': 0.25.10 + '@esbuild/darwin-arm64': 0.25.10 + '@esbuild/darwin-x64': 0.25.10 + '@esbuild/freebsd-arm64': 0.25.10 + '@esbuild/freebsd-x64': 0.25.10 + '@esbuild/linux-arm': 0.25.10 + '@esbuild/linux-arm64': 0.25.10 + '@esbuild/linux-ia32': 0.25.10 + '@esbuild/linux-loong64': 0.25.10 + '@esbuild/linux-mips64el': 0.25.10 + '@esbuild/linux-ppc64': 0.25.10 + '@esbuild/linux-riscv64': 0.25.10 + '@esbuild/linux-s390x': 0.25.10 + '@esbuild/linux-x64': 0.25.10 + '@esbuild/netbsd-arm64': 0.25.10 + '@esbuild/netbsd-x64': 0.25.10 + '@esbuild/openbsd-arm64': 0.25.10 + '@esbuild/openbsd-x64': 0.25.10 + '@esbuild/openharmony-arm64': 0.25.10 + '@esbuild/sunos-x64': 0.25.10 + '@esbuild/win32-arm64': 0.25.10 + '@esbuild/win32-ia32': 0.25.10 + '@esbuild/win32-x64': 0.25.10 + escalade@3.2.0: {} escape-string-regexp@4.0.0: {} @@ -5721,6 +6538,7 @@ snapshots: fs-minipass@2.1.0: dependencies: minipass: 3.3.6 + optional: true fs.realpath@1.0.0: {} @@ -5744,7 +6562,7 @@ snapshots: gauge@3.0.2: dependencies: - aproba: 2.0.0 + aproba: 2.1.0 color-support: 1.1.3 console-control-strings: 1.1.0 has-unicode: 2.0.1 @@ -5753,10 +6571,11 @@ snapshots: string-width: 4.2.3 strip-ansi: 6.0.1 wide-align: 1.1.5 + optional: true gauge@4.0.4: dependencies: - aproba: 2.0.0 + aproba: 2.1.0 color-support: 1.1.3 console-control-strings: 1.1.0 has-unicode: 2.0.1 @@ -5889,7 +6708,8 @@ snapshots: dependencies: has-symbols: 1.1.0 - has-unicode@2.0.1: {} + has-unicode@2.0.1: + optional: true hasown@2.0.2: dependencies: @@ -5903,7 +6723,7 @@ snapshots: hookable@5.5.3: {} - http-cache-semantics@4.1.1: + http-cache-semantics@4.2.0: optional: true http-proxy-agent@4.0.1: @@ -5921,6 +6741,7 @@ snapshots: debug: 4.4.0 transitivePeerDependencies: - supports-color + optional: true human-signals@5.0.0: {} @@ -5972,10 +6793,7 @@ snapshots: interpret@2.2.0: {} - ip-address@9.0.5: - dependencies: - jsbn: 1.1.0 - sprintf-js: 1.1.3 + ip-address@10.0.1: optional: true is-array-buffer@3.0.5: @@ -6139,9 +6957,6 @@ snapshots: dependencies: argparse: 2.0.1 - jsbn@1.1.0: - optional: true - jsesc@3.1.0: {} json-buffer@3.0.1: {} @@ -6291,12 +7106,13 @@ snapshots: make-dir@3.1.0: dependencies: semver: 6.3.1 + optional: true make-fetch-happen@9.1.0: dependencies: agentkeepalive: 4.6.0 cacache: 15.3.0 - http-cache-semantics: 4.1.1 + http-cache-semantics: 4.2.0 http-proxy-agent: 4.0.1 https-proxy-agent: 5.0.1 is-lambda: 1.0.1 @@ -6380,10 +7196,12 @@ snapshots: minipass@3.3.6: dependencies: yallist: 4.0.0 + optional: true minipass@4.2.8: {} - minipass@5.0.0: {} + minipass@5.0.0: + optional: true minipass@7.1.2: {} @@ -6391,12 +7209,14 @@ snapshots: dependencies: minipass: 3.3.6 yallist: 4.0.0 + optional: true mkdirp@0.5.6: dependencies: minimist: 1.2.8 - mkdirp@1.0.4: {} + mkdirp@1.0.4: + optional: true ms@2.1.2: {} @@ -6428,7 +7248,8 @@ snapshots: - supports-color - typescript - node-addon-api@4.3.0: {} + node-addon-api@4.3.0: + optional: true node-domexception@1.0.0: {} @@ -6437,6 +7258,7 @@ snapshots: whatwg-url: 5.0.0 optionalDependencies: encoding: 0.1.13 + optional: true node-fetch@3.3.1: dependencies: @@ -6466,6 +7288,7 @@ snapshots: nopt@5.0.0: dependencies: abbrev: 1.1.1 + optional: true normalize-path@3.0.0: {} @@ -6484,6 +7307,7 @@ snapshots: console-control-strings: 1.1.0 gauge: 3.0.2 set-blocking: 2.0.0 + optional: true npmlog@6.0.2: dependencies: @@ -6722,6 +7546,7 @@ snapshots: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 + optional: true readdirp@3.6.0: dependencies: @@ -6836,7 +7661,8 @@ snapshots: has-symbols: 1.1.0 isarray: 2.0.5 - safe-buffer@5.2.1: {} + safe-buffer@5.2.1: + optional: true safe-push-apply@1.0.0: dependencies: @@ -6866,7 +7692,8 @@ snapshots: dependencies: type-fest: 2.19.0 - set-blocking@2.0.0: {} + set-blocking@2.0.0: + optional: true set-function-length@1.2.2: dependencies: @@ -6926,7 +7753,8 @@ snapshots: siginfo@2.0.0: {} - signal-exit@3.0.7: {} + signal-exit@3.0.7: + optional: true signal-exit@4.1.0: {} @@ -6949,30 +7777,34 @@ snapshots: dependencies: agent-base: 6.0.2 debug: 4.4.0 - socks: 2.8.4 + socks: 2.8.7 transitivePeerDependencies: - supports-color optional: true - socks@2.8.4: + socks@2.8.7: dependencies: - ip-address: 9.0.5 + ip-address: 10.0.1 smart-buffer: 4.2.0 optional: true source-map-js@1.2.1: {} + source-map-support@0.5.21: + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + source-map@0.5.7: {} + source-map@0.6.1: {} + split2@4.2.0: {} split@0.3.3: dependencies: through: 2.3.8 - sprintf-js@1.1.3: - optional: true - sqlite3@5.1.4(encoding@0.1.13): dependencies: '@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13) @@ -6984,6 +7816,7 @@ snapshots: - bluebird - encoding - supports-color + optional: true ssri@8.0.1: dependencies: @@ -7061,6 +7894,7 @@ snapshots: string_decoder@1.3.0: dependencies: safe-buffer: 5.2.1 + optional: true strip-ansi@6.0.1: dependencies: @@ -7092,6 +7926,7 @@ snapshots: minizlib: 2.1.2 mkdirp: 1.0.4 yallist: 4.0.0 + optional: true tarn@3.0.2: {} @@ -7128,7 +7963,8 @@ snapshots: dependencies: is-number: 7.0.0 - tr46@0.0.3: {} + tr46@0.0.3: + optional: true ts-api-utils@2.0.1(typescript@5.7.3): dependencies: @@ -7227,6 +8063,11 @@ snapshots: undici-types@5.26.5: {} + undici-types@7.10.0: + optional: true + + undici-types@7.8.0: {} + unicorn-magic@0.1.0: {} unicorn-magic@0.3.0: {} @@ -7262,15 +8103,37 @@ snapshots: dependencies: react: 19.0.0 - util-deprecate@1.0.2: {} + util-deprecate@1.0.2: + optional: true + + vite-node@3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0): + dependencies: + cac: 6.7.14 + debug: 4.4.0 + es-module-lexer: 1.6.0 + pathe: 2.0.3 + vite: 6.2.0(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + transitivePeerDependencies: + - '@types/node' + - jiti + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml - vite-node@3.0.5(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0): + vite-node@3.0.5(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0): dependencies: cac: 6.7.14 debug: 4.4.0 es-module-lexer: 1.6.0 pathe: 2.0.3 - vite: 6.2.0(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + vite: 6.2.0(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) transitivePeerDependencies: - '@types/node' - jiti @@ -7285,7 +8148,7 @@ snapshots: - tsx - yaml - vite-plugin-checker@0.9.0(eslint@8.57.0)(optionator@0.9.4)(typescript@5.7.3)(vite@6.2.0(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0)): + vite-plugin-checker@0.9.0(eslint@8.57.0)(optionator@0.9.4)(typescript@5.7.3)(vite@6.2.0(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0)): dependencies: '@babel/code-frame': 7.26.2 chokidar: 4.0.3 @@ -7295,29 +8158,79 @@ snapshots: strip-ansi: 7.1.0 tiny-invariant: 1.3.3 tinyglobby: 0.2.12 - vite: 6.2.0(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + vite: 6.2.0(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) vscode-uri: 3.1.0 optionalDependencies: eslint: 8.57.0 optionator: 0.9.4 typescript: 5.7.3 - vite@6.2.0(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0): + vite@6.2.0(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0): + dependencies: + esbuild: 0.25.0 + postcss: 8.5.3 + rollup: 4.34.8 + optionalDependencies: + '@types/node': 24.1.0 + fsevents: 2.3.3 + jiti: 2.4.2 + tsx: 4.19.3 + yaml: 2.7.0 + + vite@6.2.0(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0): dependencies: esbuild: 0.25.0 postcss: 8.5.3 rollup: 4.34.8 optionalDependencies: - '@types/node': 20.14.8 + '@types/node': 24.3.1 fsevents: 2.3.3 jiti: 2.4.2 tsx: 4.19.3 yaml: 2.7.0 - vitest@3.0.5(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0): + vitest@3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0): + dependencies: + '@vitest/expect': 3.0.5 + '@vitest/mocker': 3.0.5(vite@6.2.0(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0)) + '@vitest/pretty-format': 3.0.7 + '@vitest/runner': 3.0.5 + '@vitest/snapshot': 3.0.5 + '@vitest/spy': 3.0.5 + '@vitest/utils': 3.0.5 + chai: 5.2.0 + debug: 4.4.0 + expect-type: 1.1.0 + magic-string: 0.30.17 + pathe: 2.0.3 + std-env: 3.8.0 + tinybench: 2.9.0 + tinyexec: 0.3.2 + tinypool: 1.0.2 + tinyrainbow: 2.0.0 + vite: 6.2.0(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + vite-node: 3.0.5(@types/node@24.1.0)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + why-is-node-running: 2.3.0 + optionalDependencies: + '@types/node': 24.1.0 + transitivePeerDependencies: + - jiti + - less + - lightningcss + - msw + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + + vitest@3.0.5(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0): dependencies: '@vitest/expect': 3.0.5 - '@vitest/mocker': 3.0.5(vite@6.2.0(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0)) + '@vitest/mocker': 3.0.5(vite@6.2.0(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0)) '@vitest/pretty-format': 3.0.7 '@vitest/runner': 3.0.5 '@vitest/snapshot': 3.0.5 @@ -7333,11 +8246,11 @@ snapshots: tinyexec: 0.3.2 tinypool: 1.0.2 tinyrainbow: 2.0.0 - vite: 6.2.0(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) - vite-node: 3.0.5(@types/node@20.14.8)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + vite: 6.2.0(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) + vite-node: 3.0.5(@types/node@24.3.1)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 20.14.8 + '@types/node': 24.3.1 transitivePeerDependencies: - jiti - less @@ -7356,7 +8269,8 @@ snapshots: web-streams-polyfill@3.3.3: {} - webidl-conversions@3.0.1: {} + webidl-conversions@3.0.1: + optional: true webpack-virtual-modules@0.6.2: {} @@ -7366,6 +8280,7 @@ snapshots: dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 + optional: true which-boxed-primitive@1.1.1: dependencies: @@ -7423,6 +8338,7 @@ snapshots: wide-align@1.1.5: dependencies: string-width: 4.2.3 + optional: true word-wrap@1.2.5: {} @@ -7444,7 +8360,8 @@ snapshots: yallist@3.1.1: {} - yallist@4.0.0: {} + yallist@4.0.0: + optional: true yaml@1.10.2: {}