diff --git a/.github/.nvmrc b/.github/.nvmrc index 8b0beab1..ccc4c6c7 100644 --- a/.github/.nvmrc +++ b/.github/.nvmrc @@ -1 +1 @@ -20.11.0 +20.20.2 diff --git a/.github/actions/setup-workspace/action.yaml b/.github/actions/setup-workspace/action.yaml index be56ef60..8f8d7f81 100644 --- a/.github/actions/setup-workspace/action.yaml +++ b/.github/actions/setup-workspace/action.yaml @@ -9,14 +9,14 @@ inputs: runs: using: "composite" steps: - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v4.4.0 with: node-version: ${{ inputs.node-version }} - uses: pnpm/action-setup@v2.4.0 id: pnpm-install with: - version: 8.10.2 + version: 8.15.9 run_install: false - name: Get pnpm store directory @@ -25,7 +25,7 @@ runs: run: | echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v4.4.0 with: registry-url: https://registry.npmjs.org node-version-file: .github/.nvmrc diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index fa705884..6e7df9f0 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -58,7 +58,7 @@ jobs: steps: - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.12.1 + uses: styfle/cancel-workflow-action@0.13.1 with: all_but_latest: true access_token: ${{ secrets.STORM_BOT_GITHUB_TOKEN }} @@ -76,7 +76,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v3.36.2 with: languages: ${{ matrix.language }} @@ -107,6 +107,6 @@ jobs: shell: bash - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v3.36.2 with: category: "/language:${{matrix.language}}" diff --git a/.github/workflows/git-guardian.yml b/.github/workflows/git-guardian.yml index 99eb80f0..8c896198 100644 --- a/.github/workflows/git-guardian.yml +++ b/.github/workflows/git-guardian.yml @@ -16,13 +16,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v3.6.0 with: fetch-depth: 0 persist-credentials: false - name: GitGuardian scan - uses: GitGuardian/ggshield/actions/secret@v1.39.0 + uses: GitGuardian/ggshield/actions/secret@v1.51.0 with: args: "--exclude pnpm-lock.yaml --exclude tools/config/verdaccio.yml diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index c9ebe810..b9ba15db 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -17,7 +17,7 @@ jobs: issues: write pull-requests: write steps: - - uses: actions/first-interaction@v1 + - uses: actions/first-interaction@v1.3.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} issue-message: "Thank you for your interest in this project! We will review this issue and reach out to you ASAP" diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml index d5c97688..1afa603f 100644 --- a/.github/workflows/labels.yml +++ b/.github/workflows/labels.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v4.3.1 with: fetch-depth: 0 token: ${{ secrets.STORMIE_GITHUB_TOKEN }} diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index 2819a0da..561133af 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -19,7 +19,7 @@ jobs: name: 🔒 Lock closed issues and PRs runs-on: ubuntu-latest steps: - - uses: dessant/lock-threads@v5 + - uses: dessant/lock-threads@v5.0.1 with: github-token: ${{ secrets.STORMIE_GITHUB_TOKEN }} issue-inactive-days: "30" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 915191c0..575cd52a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,7 +61,7 @@ jobs: - start steps: - name: Checkout [Pull Request] - uses: actions/checkout@v4 + uses: actions/checkout@v4.3.1 if: ${{ github.event_name == 'pull_request' }} with: # By default, PRs will be checked-out based on the Merge Commit, but we want the actual branch HEAD. @@ -72,7 +72,7 @@ jobs: persist-credentials: false - name: Checkout `main` branch - uses: actions/checkout@v4 + uses: actions/checkout@v4.3.1 if: ${{ github.event_name != 'pull_request' }} with: # We need to fetch all branches and commits so that Nx affected has a base to compare against. @@ -90,7 +90,7 @@ jobs: - name: Derive appropriate SHAs for base and head for `nx affected` commands id: setSHAs - uses: nrwl/nx-set-shas@v4 + uses: nrwl/nx-set-shas@v4.4.0 with: main-branch-name: main workflow-id: release.yml diff --git a/Cargo.toml b/Cargo.toml index 4cd3a30b..f4d437c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -110,46 +110,46 @@ acidic-server = { path = "./crates/acidic-server" } acidic-template-engine = { path = "./crates/acidic-template-engine" } # Storm Software Crates -storm-config = "0.2.8" -storm-workspace = "0.19.59" +storm-config = "=0.2.8" +storm-workspace = "=0.19.257" # Other Dependencies -indoc = "2.0.4" -itertools = "0.12.1" -indexmap = { version = "2.2.6", features = ["serde"] } -thiserror = "2.0.17" -tempfile = "3.10.1" -directories = "5.0.1" -lazy_static = "1.4.0" -handlebars = "6.3.2" -colored = "2.1.0" -cacache = "13.0.0" -backtrace = "0.3.71" -protoc-bin-vendored = "3.0.0" - -napi = { version = '2.10.2', default-features = false, features = ['napi4'] } -napi-build = '2.0.1' -napi-derive = '2.9.3' - -pest = "2.7.8" -pest_derive = "2.7.8" - -prost = "0.12.3" -prost-types = "0.12.3" - -serde = { version = "1.0.197", features = ["derive"] } -serde_derive = "1.0.197" -serde_json = "1.0.115" - -strum = "0.27.2" -strum_macros = "0.27.2" - -tonic = "0.11.0" -tonic-build = { version = "0.11.0", default-features = false, features = [ +indoc = "=2.0.5" +itertools = "=0.12.1" +indexmap = { version = "=2.2.6", features = ["serde"] } +thiserror = "=2.0.18" +tempfile = "=3.10.1" +directories = "=5.0.1" +lazy_static = "=1.4.0" +handlebars = "=6.4.1" +colored = "=2.1.0" +cacache = "=13.0.0" +backtrace = "=0.3.71" +protoc-bin-vendored = "=3.0.0" + +napi = { version = '=2.16.1', default-features = false, features = ['napi4'] } +napi-build = '=2.1.2' +napi-derive = '=2.16.1' + +pest = "=2.7.9" +pest_derive = "=2.7.9" + +prost = "=0.12.3" +prost-types = "=0.12.3" + +serde = { version = "=1.0.197", features = ["derive"] } +serde_derive = "=1.0.197" +serde_json = "=1.0.115" + +strum = "=0.27.2" +strum_macros = "=0.27.2" + +tonic = "=0.11.0" +tonic-build = { version = "=0.11.0", default-features = false, features = [ "prost", "cleanup-markdown", ] } -tonic-reflection = "0.6.0" +tonic-reflection = "=0.6.0" [profile.release] # configuration adapted from oxc diff --git a/apps/engine/Cargo.toml b/apps/engine/Cargo.toml index 6637fabf..5a8f6b6b 100644 --- a/apps/engine/Cargo.toml +++ b/apps/engine/Cargo.toml @@ -18,11 +18,11 @@ acidic-rpc = { path = "../../crates/rpc" } tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros"] } tokio-stream = "0.1.15" tokio-util = "0.7.10" -tonic = "0.11.0" -tonic-health = "0.11.0" -tonic-types = "0.11.0" -tonic-web = "0.11.0" -tower-http = "0.5.2" +tonic = "0.14.0" +tonic-health = "0.14.0" +tonic-types = "0.14.0" +tonic-web = "0.14.0" +tower-http = "0.6.0" tower-lsp-macros = "0.9.0" tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["tracing-log", "fmt"] } diff --git a/apps/vscode-extension/package.json b/apps/vscode-extension/package.json index 95b1461b..76fa74c8 100644 --- a/apps/vscode-extension/package.json +++ b/apps/vscode-extension/package.json @@ -286,15 +286,15 @@ "@storm-stack/logging": "latest", "@storm-stack/serialization": "latest", "@storm-stack/telemetry": "latest", - "@vscode/vsce": "2.21.1", + "@vscode/vsce": "2.32.0", "esbuild-plugin-pino": "^2.3.3", "eslint": "^8.57.1", "espree": "^9.6.1", "express": "^4.22.1", "langium": "^2.1.3", "pino-pretty": "^10.3.1", - "react": "18.2.0", - "react-dom": "18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "react-error-boundary": "^4.1.2", "ts-pattern": "^5.9.0", "vscode-languageclient": "^9.0.1", diff --git a/package.json b/package.json index 7845ce75..345bca5b 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "url": "https://github.com/sponsors/storm-software" }, "license": "Apache-2.0", - "packageManager": "pnpm@10.26.0", + "packageManager": "pnpm@10.34.1", "engines": { "node": ">=22.14.0", "pnpm": ">=10.22.0" }, "keywords": ["acidic", "storm-software", "storm"], "scripts": { diff --git a/packages/node-engine/package.json b/packages/node-engine/package.json index 0da8dace..bda03d2b 100644 --- a/packages/node-engine/package.json +++ b/packages/node-engine/package.json @@ -14,7 +14,7 @@ "@storm-stack/telemetry": "latest", "@storm-stack/unique-identifier": "latest", "@storm-stack/utilities": "latest", - "bentocache": "1.0.0-beta.7", + "bentocache": "1.6.1", "chalk": "^5.6.2", "chokidar": "^3.6.0", "eslint": "^8.57.1", @@ -22,7 +22,7 @@ "handlebars": "^4.7.8", "handlebars-utils": "^1.0.6", "langium": "^2.1.3", - "prettier": "^3.7.4", + "prettier": "^3.8.3", "ts-morph": "^20.0.0", "vscode-uri": "^3.1.0", "zod": "^3.25.76", diff --git a/packages/service-graph/package.json b/packages/service-graph/package.json index 671e0179..9806e9c2 100644 --- a/packages/service-graph/package.json +++ b/packages/service-graph/package.json @@ -38,8 +38,8 @@ "@types/react": "^18.3.27" }, "peerDependencies": { - "react": "18.2.0", - "react-dom": "18.2.0" + "react": "18.3.1", + "react-dom": "18.3.1" }, "publishConfig": { "access": "public" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3f14227c..865251e2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,100 +7,100 @@ settings: catalogs: default: '@monodon/rust': - specifier: ^2.3.0 + specifier: 2.3.0 version: 2.3.0 '@nx/devkit': - specifier: 22.3.1 - version: 22.3.1 + specifier: 22.7.5 + version: 22.7.5 '@nx/eslint-plugin': - specifier: 22.3.1 - version: 22.3.1 + specifier: 22.7.5 + version: 22.7.5 '@nx/jest': - specifier: 22.3.1 - version: 22.3.1 + specifier: 22.7.5 + version: 22.7.5 '@nx/js': - specifier: 22.3.1 - version: 22.3.1 + specifier: 22.7.5 + version: 22.7.5 '@nx/plugin': - specifier: 22.3.1 - version: 22.3.1 + specifier: 22.7.5 + version: 22.7.5 '@nx/react': - specifier: 22.3.1 - version: 22.3.1 + specifier: 22.7.5 + version: 22.7.5 '@nx/storybook': - specifier: 22.3.1 - version: 22.3.1 + specifier: 22.7.5 + version: 22.7.5 '@nx/vite': - specifier: 22.3.1 - version: 22.3.1 + specifier: 22.7.5 + version: 22.7.5 '@nx/web': - specifier: 22.3.1 - version: 22.3.1 + specifier: 22.7.5 + version: 22.7.5 '@nx/workspace': - specifier: 22.3.1 - version: 22.3.1 + specifier: 22.7.5 + version: 22.7.5 '@powerlines/nx': - specifier: ^0.10.68 + specifier: 0.10.68 version: 0.10.68 '@powerlines/plugin-plugin': - specifier: ^0.12.27 + specifier: 0.12.27 version: 0.12.27 '@powerlines/tsconfig': - specifier: ^0.2.43 + specifier: 0.2.43 version: 0.2.43 '@storm-software/config': - specifier: ^1.134.72 + specifier: 1.134.72 version: 1.134.72 '@storm-software/config-tools': - specifier: ^1.188.72 + specifier: 1.188.72 version: 1.188.72 '@storm-software/cspell': - specifier: ^0.45.71 + specifier: 0.45.71 version: 0.45.71 '@storm-software/eslint': - specifier: ^0.169.73 + specifier: 0.169.73 version: 0.169.73 '@storm-software/git-tools': - specifier: ^2.124.55 + specifier: 2.124.55 version: 2.124.55 '@storm-software/linting-tools': - specifier: ^1.132.72 + specifier: 1.132.72 version: 1.132.72 '@storm-software/markdownlint': - specifier: ^0.30.71 + specifier: 0.30.71 version: 0.30.71 '@storm-software/pnpm-tools': - specifier: ^0.6.74 + specifier: 0.6.74 version: 0.6.74 '@storm-software/prettier': - specifier: ^0.57.71 + specifier: 0.57.71 version: 0.57.71 '@storm-software/tsdoc': - specifier: ^0.13.71 + specifier: 0.13.71 version: 0.13.71 '@storm-software/untyped': - specifier: ^0.24.53 + specifier: 0.24.53 version: 0.24.53 '@storm-software/workspace-tools': - specifier: ^1.294.18 + specifier: 1.294.18 version: 1.294.18 '@types/node': - specifier: 20.9.0 - version: 20.9.0 + specifier: 20.19.42 + version: 20.19.42 defu: - specifier: ^6.1.4 + specifier: 6.1.4 version: 6.1.4 esbuild: specifier: ^0.24.2 version: 0.24.2 nx: - specifier: 22.3.1 - version: 22.3.1 + specifier: 22.7.5 + version: 22.7.5 powerlines: - specifier: ^0.30.13 + specifier: 0.30.13 version: 0.30.13 zx: - specifier: ^8.8.5 + specifier: 8.8.5 version: 8.8.5 overrides: @@ -122,8 +122,6 @@ overrides: '@acidic/vscode-state': workspace:* acidic: workspace:* -pnpmfileChecksum: sha256-9jniclVkiaGH66AV3xlKeLq8c5MLXyu6/dvtXFvt6HI= - importers: .: @@ -133,40 +131,40 @@ importers: version: 2.3.1 '@monodon/rust': specifier: 'catalog:' - version: 2.3.0(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(nx@22.3.1(@swc/core@1.7.26)) + version: 2.3.0(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(nx@22.7.5(@swc/core@1.7.26)) '@nx/devkit': specifier: 'catalog:' - version: 22.3.1(nx@22.3.1(@swc/core@1.7.26)) + version: 22.7.5(nx@22.7.5(@swc/core@1.7.26)) '@nx/eslint-plugin': specifier: 'catalog:' - version: 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3))(eslint-config-prettier@10.1.8(eslint@9.39.2(jiti@2.4.2)))(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + version: 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3))(eslint-config-prettier@10.1.8(eslint@9.39.2(jiti@2.4.2)))(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@nx/jest': specifier: 'catalog:' - version: 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + version: 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@nx/js': specifier: 'catalog:' - version: 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + version: 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@nx/plugin': specifier: 'catalog:' - version: 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + version: 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@nx/react': specifier: 'catalog:' - version: 22.3.1(@babel/core@7.28.5)(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/react@19.2.7)(@zkochan/js-yaml@0.0.7)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(vitest@1.0.4(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)) + version: 22.7.5(60ba4edc64ae5d29d399022d87209bee) '@nx/storybook': specifier: 'catalog:' - version: 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(storybook@10.1.4(@testing-library/dom@10.4.1)(@types/prettier@3.0.0)(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(prettier@3.7.4)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + version: 22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@nx/web@22.7.5(11da23f19552aa9d58f404d84ff0048f))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(storybook@10.1.4(@testing-library/dom@10.4.1)(prettier@3.7.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@nx/vite': specifier: 'catalog:' - version: 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(vitest@1.0.4(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1)) + version: 22.7.5(@babel/traverse@7.28.5)(@nx/eslint@22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(vitest@1.0.4(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1)) '@nx/web': specifier: 'catalog:' - version: 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + version: 22.7.5(11da23f19552aa9d58f404d84ff0048f) '@nx/workspace': specifier: 'catalog:' - version: 22.3.1(@swc/core@1.7.26) + version: 22.7.5(@swc/core@1.7.26) '@powerlines/nx': specifier: 'catalog:' - version: 0.10.68(7c89efd35b5cf5dc59e117f1b77bd767) + version: 0.10.68(d80694aadbcd0a24bcef2735b9763282) '@powerlines/tsconfig': specifier: 'catalog:' version: 0.2.43(@storm-software/tsconfig@0.47.59) @@ -181,10 +179,10 @@ importers: version: 0.45.71(cspell@8.19.4) '@storm-software/eslint': specifier: 'catalog:' - version: 0.169.73(22bc31c2865b6057f1a58606286decbc) + version: 0.169.73(4196962cc611c71ed5e0457068fc4142) '@storm-software/git-tools': specifier: 'catalog:' - version: 2.124.55(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.2.1) + version: 2.124.55(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3) '@storm-software/linting-tools': specifier: 'catalog:' version: 1.132.72(chokidar@4.0.3) @@ -193,19 +191,19 @@ importers: version: 0.30.71 '@storm-software/pnpm-tools': specifier: 'catalog:' - version: 0.6.74 + version: 0.6.74(zod@4.4.3) '@storm-software/prettier': specifier: 'catalog:' - version: 0.57.71(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4) + version: 0.57.71(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4) '@storm-software/tsdoc': specifier: 'catalog:' - version: 0.13.71(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0) + version: 0.13.71(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0) '@storm-software/untyped': specifier: 'catalog:' version: 0.24.53 '@storm-software/workspace-tools': specifier: 'catalog:' - version: 1.294.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.3.1(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.53.5)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.8.2) + version: 1.294.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.7.5(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.61.1)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.9.0) '@taplo/cli': specifier: ^0.7.0 version: 0.7.0 @@ -232,7 +230,7 @@ importers: version: 1.1.0(sass@1.97.0)(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)) nx: specifier: 'catalog:' - version: 22.3.1(@swc/core@1.7.26) + version: 22.7.5(@swc/core@1.7.26) prettier: specifier: ^3.7.4 version: 3.7.4 @@ -241,7 +239,7 @@ importers: version: 5.0.0(prettier@3.7.4) prettier-plugin-tailwindcss: specifier: ^0.5.14 - version: 0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4) + version: 0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4) rimraf: specifier: ^5.0.10 version: 5.0.10 @@ -277,19 +275,19 @@ importers: version: 5.4.54 '@storm-software/config-tools': specifier: latest - version: 1.188.72 + version: 1.190.40(zod@4.4.3) '@storm-stack/cli': specifier: latest - version: 0.28.1(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)))(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.53.5)(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.25.12)) + version: 0.28.1(@azure/identity@4.13.1)(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)))(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.61.1)(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.25.12))(zod@4.4.3) '@storm-stack/errors': specifier: latest - version: 1.40.0(a2cc6b2ce370fdbb735252ecb9aded8d) + version: 1.40.0(6e0b9c1c2e0dc2701c3a8a254c3757e8) '@storm-stack/file-system': specifier: latest - version: 1.39.0 + version: 1.39.0(zod@4.4.3) '@storm-stack/logging': specifier: latest - version: 1.40.0 + version: 1.40.0(zod@4.4.3) '@storm-stack/telemetry': specifier: latest version: 1.19.0(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(encoding@0.1.13) @@ -308,13 +306,13 @@ importers: version: 3.2.15 eslint-config-oclif: specifier: ^5.2.2 - version: 5.2.2(eslint@9.39.2(jiti@2.6.1)) + version: 5.2.2(eslint@9.39.2(jiti@2.7.0)) eslint-config-oclif-typescript: specifier: ^3.1.14 - version: 3.1.14(astro-eslint-parser@1.2.2)(eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) + version: 3.1.14(astro-eslint-parser@1.2.2)(eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2(jiti@2.7.0)))(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3) eslint-config-prettier: specifier: ^9.1.2 - version: 9.1.2(eslint@9.39.2(jiti@2.6.1)) + version: 9.1.2(eslint@9.39.2(jiti@2.7.0)) oclif: specifier: ^4.22.57 version: 4.22.57(@types/node@20.9.0) @@ -353,19 +351,19 @@ importers: version: link:../../crates/acidic-binding/npm/win32-x64-msvc '@storm-software/config-tools': specifier: latest - version: 1.188.72 + version: 1.190.40(zod@4.4.3) '@storm-stack/cli': specifier: latest - version: 0.28.1(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)))(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@25.0.3)(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.53.5)(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)) + version: 0.28.1(@azure/identity@4.13.1)(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)))(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@25.0.3)(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.61.1)(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))(zod@4.4.3) '@storm-stack/errors': specifier: latest - version: 1.40.0(8e935c0504da5b02797b8ad8adf62bac) + version: 1.40.0(e709a89c307e8770ca4c2dfc7ec4f03a) '@storm-stack/file-system': specifier: latest - version: 1.39.0 + version: 1.39.0(zod@4.4.3) '@storm-stack/logging': specifier: latest - version: 1.40.0 + version: 1.40.0(zod@4.4.3) '@storm-stack/telemetry': specifier: latest version: 1.19.0(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(encoding@0.1.13) @@ -383,31 +381,25 @@ importers: version: 0.2.19(esbuild@0.27.1) '@storm-software/config-tools': specifier: latest - version: 1.188.72 + version: 1.190.40(zod@4.4.3) '@storm-stack/errors': specifier: latest - version: 1.40.0(a325610cb056de07f5338302125644c4) + version: 1.40.0(5c18db0e5ed879f383cff3a0038dd991) '@storm-stack/file-system': specifier: latest - version: 1.39.0 + version: 1.39.0(zod@4.4.3) '@storm-stack/logging': specifier: latest - version: 1.40.0 + version: 1.40.0(zod@4.4.3) '@storm-stack/serialization': specifier: latest version: 1.46.0 '@storm-stack/telemetry': specifier: latest version: 1.19.0(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(encoding@0.1.13) - '@types/react': - specifier: ^18.3.27 - version: 18.3.27 - '@types/react-dom': - specifier: ^18.3.7 - version: 18.3.7(@types/react@18.3.27) '@vscode/vsce': - specifier: 2.21.1 - version: 2.21.1 + specifier: 2.32.0 + version: 2.32.0 esbuild-plugin-pino: specifier: ^2.3.3 version: 2.3.3(esbuild@0.27.1)(pino-pretty@10.3.1)(pino@9.4.0)(thread-stream@3.1.0) @@ -427,14 +419,14 @@ importers: specifier: ^10.3.1 version: 10.3.1 react: - specifier: 18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 react-dom: - specifier: 18.2.0 - version: 18.2.0(react@18.2.0) + specifier: 18.3.1 + version: 18.3.1(react@18.3.1) react-error-boundary: specifier: ^4.1.2 - version: 4.1.2(react@18.2.0) + version: 4.1.2(react@18.3.1) ts-pattern: specifier: ^5.9.0 version: 5.9.0 @@ -447,13 +439,19 @@ importers: devDependencies: '@storm-software/testing-tools': specifier: latest - version: 1.119.71(@nx/jest@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)) + version: 1.119.193(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/node@20.9.0)(babel-plugin-macros@3.1.0)) '@storm-software/workspace-tools': specifier: latest - version: 1.294.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.3.1(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.2.2))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.53.5)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.2.2))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.8.2) + version: 1.296.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.7.5(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.8.3)(typescript@5.2.2))(prettier-plugin-packagejson@3.0.2(prettier@3.8.3))(prettier-plugin-prisma@5.0.0(prettier@3.8.3))(prettier-plugin-sh@0.15.0(prettier@3.8.3))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.8.3))(prettier@3.8.3)(rollup@4.61.1)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.2.2))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.9.0) '@types/node': specifier: 20.9.0 version: 20.9.0 + '@types/react': + specifier: ^18.3.27 + version: 18.3.27 + '@types/react-dom': + specifier: ^18.3.7 + version: 18.3.7(@types/react@18.3.27) '@types/vscode': specifier: ^1.107.0 version: 1.107.0 @@ -499,7 +497,7 @@ importers: dependencies: '@storm-stack/errors': specifier: latest - version: 1.40.0(a2cc6b2ce370fdbb735252ecb9aded8d) + version: 1.40.0(6e0b9c1c2e0dc2701c3a8a254c3757e8) '@storm-stack/serialization': specifier: latest version: 1.46.0 @@ -508,7 +506,7 @@ importers: version: 1.39.0 typia: specifier: ^5.3.9 - version: 5.5.10(@types/node@20.9.0)(typescript@5.9.3) + version: 5.5.10(@types/node@20.9.0)(typescript@5.3.3) devDependencies: '@types/node': specifier: 20.9.0 @@ -524,7 +522,7 @@ importers: version: 1.39.0 typia: specifier: ^5.3.9 - version: 5.5.10(@types/node@20.9.0)(typescript@5.9.3) + version: 5.5.10(@types/node@20.9.0)(typescript@5.3.3) packages/native-installer: dependencies: @@ -554,19 +552,19 @@ importers: dependencies: '@storm-software/config-tools': specifier: latest - version: 1.188.72 + version: 1.190.40(zod@3.25.76) '@storm-stack/date-time': specifier: latest version: 1.46.0 '@storm-stack/errors': specifier: latest - version: 1.40.0(07e7efebf889dd1e53802be2a9efc199) + version: 1.40.0(30cfd12e2adea78a56075f876a54f7d2) '@storm-stack/file-system': specifier: latest - version: 1.39.0 + version: 1.39.0(zod@3.25.76) '@storm-stack/logging': specifier: latest - version: 1.40.0 + version: 1.40.0(zod@3.25.76) '@storm-stack/plugin-system': specifier: latest version: 1.23.0 @@ -582,12 +580,9 @@ importers: '@storm-stack/utilities': specifier: latest version: 1.39.0 - '@types/prettier': - specifier: ^3.0.0 - version: 3.0.0 bentocache: - specifier: 1.0.0-beta.7 - version: 1.0.0-beta.7(tslib@2.8.1) + specifier: 1.6.1 + version: 1.6.1 chalk: specifier: ^5.6.2 version: 5.6.2 @@ -610,8 +605,8 @@ importers: specifier: ^2.1.3 version: 2.1.3 prettier: - specifier: ^3.7.4 - version: 3.7.4 + specifier: ^3.8.3 + version: 3.8.3 ts-morph: specifier: ^20.0.0 version: 20.0.0 @@ -627,10 +622,13 @@ importers: devDependencies: '@storm-software/testing-tools': specifier: latest - version: 1.119.71(@nx/jest@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@25.0.3)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@25.0.3)(babel-plugin-macros@3.1.0)) + version: 1.119.193(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@25.0.3)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/node@25.0.3)(babel-plugin-macros@3.1.0)) '@storm-software/workspace-tools': specifier: latest - version: 1.294.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@25.0.3)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@25.0.3)(markdownlint-cli2@0.17.2)(nx@22.3.1(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.9.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.53.5)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.8.2) + version: 1.296.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@25.0.3)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@25.0.3)(markdownlint-cli2@0.17.2)(nx@22.7.5(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.8.3)(typescript@5.3.3))(prettier-plugin-packagejson@3.0.2(prettier@3.8.3))(prettier-plugin-prisma@5.0.0(prettier@3.8.3))(prettier-plugin-sh@0.15.0(prettier@3.8.3))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.8.3))(prettier@3.8.3)(rollup@4.61.1)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.9.0) + '@types/prettier': + specifier: ^3.0.0 + version: 3.0.0 packages/plugin: {} @@ -641,7 +639,7 @@ importers: version: 1.1.8 '@storm-stack/jotai': specifier: latest - version: 1.16.2(jotai@2.16.0(@babel/core@7.28.5)(@babel/template@7.27.2)(@types/react@18.3.27)(react@18.2.0))(react@18.2.0) + version: 1.16.2(jotai@2.16.0(@babel/core@7.28.5)(@babel/template@7.27.2)(@types/react@18.3.27)(react@18.3.1))(react@18.3.1) '@storm-stack/serialization': specifier: latest version: 1.46.0 @@ -665,16 +663,16 @@ importers: version: 1.11.13 jotai: specifier: ^2.16.0 - version: 2.16.0(@babel/core@7.28.5)(@babel/template@7.27.2)(@types/react@18.3.27)(react@18.2.0) + version: 2.16.0(@babel/core@7.28.5)(@babel/template@7.27.2)(@types/react@18.3.27)(react@18.3.1) react: - specifier: 18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 react-dom: - specifier: 18.2.0 - version: 18.2.0(react@18.2.0) + specifier: 18.3.1 + version: 18.3.1(react@18.3.1) reactflow: specifier: ^11.11.4 - version: 11.11.4(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 11.11.4(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) tailwind-merge: specifier: ^2.6.0 version: 2.6.0 @@ -689,28 +687,25 @@ importers: dependencies: '@storm-software/config-tools': specifier: latest - version: 1.188.72 + version: 1.190.40(zod@4.4.3) '@storm-stack/file-system': specifier: latest - version: 1.39.0 + version: 1.39.0(zod@4.4.3) '@storm-stack/logging': specifier: latest - version: 1.40.0 + version: 1.40.0(zod@4.4.3) '@storm-stack/telemetry': specifier: latest version: 1.19.0(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(encoding@0.1.13) '@storm-stack/utilities': specifier: latest version: 1.39.0 - '@types/vscode': - specifier: ^1.107.0 - version: 1.107.0 glob: specifier: ^10.5.0 version: 10.5.0 jotai: specifier: ^2.16.0 - version: 2.16.0(@babel/core@7.28.5)(@babel/template@7.27.2)(@types/react@19.2.7)(react@18.2.0) + version: 2.16.0(@babel/core@7.28.5)(@babel/template@7.27.2)(@types/react@19.2.7)(react@18.3.1) pino-pretty: specifier: ^10.3.1 version: 10.3.1 @@ -727,12 +722,15 @@ importers: '@types/node': specifier: 20.9.0 version: 20.9.0 + '@types/vscode': + specifier: ^1.107.0 + version: 1.107.0 plugins/drizzle: dependencies: '@storm-stack/errors': specifier: latest - version: 1.40.0(8e935c0504da5b02797b8ad8adf62bac) + version: 1.40.0(e709a89c307e8770ca4c2dfc7ec4f03a) plugins/valibot: {} @@ -744,20 +742,20 @@ importers: dependencies: '@powerlines/plugin-plugin': specifier: 'catalog:' - version: 0.12.27(@babel/core@7.28.5)(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.6.1))(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.52)(rollup@4.53.5)(sass@1.97.0)(synckit@0.11.11)(tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2))(typescript@5.9.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.9.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)) + version: 0.12.27(@babel/core@7.28.5)(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.19.42)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.7.0))(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.52)(rollup@4.61.1)(sass@1.97.0)(synckit@0.11.11)(tsup@8.4.0(@microsoft/api-extractor@7.58.7(@types/node@20.19.42))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0))(typescript@5.3.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.3.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))(zod@4.4.3) defu: specifier: 'catalog:' version: 6.1.4 powerlines: specifier: 'catalog:' - version: 0.30.13(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.6.1))(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.52)(rollup@4.53.5)(sass@1.97.0)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3))(tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2))(typescript@5.9.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.9.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)) + version: 0.30.13(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.19.42)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.7.0))(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.52)(rollup@4.61.1)(sass@1.97.0)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(tsup@8.4.0(@microsoft/api-extractor@7.58.7(@types/node@20.19.42))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0))(typescript@5.3.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.3.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))(zod@4.4.3) devDependencies: '@powerlines/nx': specifier: 'catalog:' - version: 0.10.68(0a7569ec5918bf340d10e0c868c7782d) + version: 0.10.68(121c82f9d2ad787512bd273f242aa869) '@types/node': specifier: 'catalog:' - version: 20.9.0 + version: 20.19.42 tools/readme-templates: {} @@ -772,10 +770,22 @@ importers: devDependencies: '@types/node': specifier: 'catalog:' - version: 20.9.0 + version: 20.19.42 packages: + '@actions/core@3.0.1': + resolution: {integrity: sha512-a6d/Nwahm9fliVGRhdhofo40HjHQasUPusmc7vBfyky+7Z+P2A1J68zyFVaNcEclc/Se+eO595oAr5nwEIoIUA==} + + '@actions/exec@3.0.0': + resolution: {integrity: sha512-6xH/puSoNBXb72VPlZVm7vQ+svQpFyA96qdDBvhB8eNZOE8LtPf9L4oAsfzK/crCL8YZ+19fKYVnM63Sl+Xzlw==} + + '@actions/http-client@4.0.1': + resolution: {integrity: sha512-+Nvd1ImaOZBSoPbsUtEhv+1z99H12xzncCkz0a3RuehINE81FZSe2QTj3uvAPTcJX/SCzUQHQ0D1GrPMbrPitg==} + + '@actions/io@3.0.2': + resolution: {integrity: sha512-nRBchcMM+QK1pdjO7/idu86rbJI5YHUKCvKs0KxnSYbVe3F51UfGxuZX4Qy/fWlp6l7gWFwIkrOzN+oUK03kfw==} + '@adobe/css-tools@4.4.4': resolution: {integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==} @@ -999,6 +1009,50 @@ packages: resolution: {integrity: sha512-C0NBLsIqzDIae8HFw9YIrIBsbc0xTiOtt7fAukGPnqQ/+zZNaq+4jhuccltK0QuWHBnNm/a6kLIRA6GFiM10eg==} engines: {node: '>=18.0.0'} + '@azure/abort-controller@2.1.2': + resolution: {integrity: sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==} + engines: {node: '>=18.0.0'} + + '@azure/core-auth@1.10.1': + resolution: {integrity: sha512-ykRMW8PjVAn+RS6ww5cmK9U2CyH9p4Q88YJwvUslfuMmN98w/2rdGRLPqJYObapBCdzBVeDgYWdJnFPFb7qzpg==} + engines: {node: '>=20.0.0'} + + '@azure/core-client@1.10.2': + resolution: {integrity: sha512-1D2LpsU7y9xrqKjdIbsB7PlrRePw0xsVV8p+AKTlzITrWmscajryfJCdDJB/oGwvDI5HmRo04eMMADB67uwAwQ==} + engines: {node: '>=20.0.0'} + + '@azure/core-rest-pipeline@1.24.0': + resolution: {integrity: sha512-PpLsoDQ3AMmKZ0VU+0GrmqMxgp/sExjlVm4R+nLWngeoEGAzOIPVifaxKGU5gMv+nWELUoHfvrolWD+ZS/nFJg==} + engines: {node: '>=20.0.0'} + + '@azure/core-tracing@1.3.1': + resolution: {integrity: sha512-9MWKevR7Hz8kNzzPLfX4EAtGM2b8mr50HPDBvio96bURP/9C+HjdH3sBlLSNNrvRAr5/k/svoH457gB5IKpmwQ==} + engines: {node: '>=20.0.0'} + + '@azure/core-util@1.13.1': + resolution: {integrity: sha512-XPArKLzsvl0Hf0CaGyKHUyVgF7oDnhKoP85Xv6M4StF/1AhfORhZudHtOyf2s+FcbuQ9dPRAjB8J2KvRRMUK2A==} + engines: {node: '>=20.0.0'} + + '@azure/identity@4.13.1': + resolution: {integrity: sha512-5C/2WD5Vb1lHnZS16dNQRPMjN6oV/Upba+C9nBIs15PmOi6A3ZGs4Lr2u60zw4S04gi+u3cEXiqTVP7M4Pz3kw==} + engines: {node: '>=20.0.0'} + + '@azure/logger@1.3.0': + resolution: {integrity: sha512-fCqPIfOcLE+CGqGPd66c8bZpwAji98tZ4JI9i/mlTNTlsIWslCfpg48s/ypyLxZTump5sypjrKn2/kY7q8oAbA==} + engines: {node: '>=20.0.0'} + + '@azure/msal-browser@5.12.0': + resolution: {integrity: sha512-eNf2aqx1C6I0yT1GEu5ukblFrmaBXGfe1bivpmlfqvK7giPZvoXLa404C8EfeHVsy6EIryfQuPRzuW1fPxWlHg==} + engines: {node: '>=0.8.0'} + + '@azure/msal-common@16.7.0': + resolution: {integrity: sha512-Jb8Y7pX6KM42SIT7KWP6YbY3+vLbwB5b5m+tpiiOzMU1QeyelQzs9lO8jv1e7/Uj9r7tg7VjPvW4T0KB1jF3UQ==} + engines: {node: '>=0.8.0'} + + '@azure/msal-node@5.2.3': + resolution: {integrity: sha512-YYX4TchEVddVBiybKvKhV9QO/q22jgewP+BVxKG7Uh115voPcviGlypbKERDsqQdAiSTJrwi80gcWFjYKdo8+Q==} + engines: {node: '>=20'} + '@babel/code-frame@7.12.11': resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} @@ -1672,6 +1726,15 @@ packages: '@bcoe/v8-coverage@0.2.3': resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + '@boringnode/bus@0.9.0': + resolution: {integrity: sha512-X7lGyI6x1ObulCmH+0vyJ3/T6RyTBlp1hunRXjsenlkafJMIvneAx8B2V7OGLgZAxdsAbKaySjqZRj6GlX84Qw==} + engines: {node: '>=20.6'} + peerDependencies: + ioredis: ^5.0.0 + peerDependenciesMeta: + ioredis: + optional: true + '@cacheable/memory@2.0.6': resolution: {integrity: sha512-7e8SScMocHxcAb8YhtkbMhGG+EKLRIficb1F5sjvhSYsWTZGxvg4KIDp8kgxnV2PUJ3ddPe6J9QESjKvBWRDkg==} @@ -1981,12 +2044,21 @@ packages: peerDependencies: '@noble/ciphers': ^1.0.0 + '@emnapi/core@1.4.5': + resolution: {integrity: sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q==} + '@emnapi/core@1.7.1': resolution: {integrity: sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==} + '@emnapi/runtime@1.4.5': + resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==} + '@emnapi/runtime@1.7.1': resolution: {integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==} + '@emnapi/wasi-threads@1.0.4': + resolution: {integrity: sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g==} + '@emnapi/wasi-threads@1.1.0': resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==} @@ -3298,7 +3370,6 @@ packages: resolution: {integrity: sha512-mafft7VBX4jzED1FwGC1o/9QUM2xebzavImZMeqnsklgcyxBto8mV4HzNSzUrryJ+8R9MFOM3HgYuDradWR+4g==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: - '@types/node-notifier': '*' node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: @@ -3308,7 +3379,6 @@ packages: resolution: {integrity: sha512-DRyW6baWPqKMa9CzeiBjHwjd8XeAyco2Vt8XbcLFjiwCOEKOvy82GJ8QQnJE9ofsxCMPjH4MfH8fCWIHHDKpAQ==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: - '@types/node-notifier': '*' node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: @@ -3392,6 +3462,9 @@ packages: resolution: {integrity: sha512-2X6bvghJ/JAoZO52lbgyAPFj8uCflhTo2g7nkFzEQdXd/D8rEeD4HtmTEpmtGCva260fcd66YNXBOYdnmHqSOg==} engines: {node: '>=12'} + '@julr/utils@1.9.0': + resolution: {integrity: sha512-hKKa29qRusABvUDt5QnJydG9aigplMJMaOrGwu11DAbZyxjqiytfOku6KbrdA1z0yUSvnFU8fSeJMXroYt+bwA==} + '@keyv/bigmap@1.3.0': resolution: {integrity: sha512-KT01GjzV6AQD5+IYrcpoYLkCu1Jod3nau1Z7EsEuViO3TZGRacSbO9MfHmbJ1WaOXFtWLxPVj169cn2WNKPkIg==} engines: {node: '>= 18'} @@ -3436,6 +3509,10 @@ packages: '@ltd/j-toml@1.38.0': resolution: {integrity: sha512-lYtBcmvHustHQtg4X7TXUu1Xa/tbLC3p2wLvgQI+fWVySguVZJF60Snxijw5EiohumxZbR10kWYFFebh1zotiw==} + '@lukeed/ms@2.0.2': + resolution: {integrity: sha512-9I2Zn6+NJLfaGoz9jN3lpwDgAYvfGeNYdbAIjJOqzs4Tpc+VU3Jqq4IofSUBKajiDS8k9fZIg18/z13mpk1bsA==} + engines: {node: '>=8'} + '@material-ui/core@4.12.4': resolution: {integrity: sha512-tr7xekNlM9LjA6pagJmL8QCgZXaubWUwkJnoYcMKd4gw/t4XiyvnTkjdGrUVicyB2BsdaAv1tvow45bPM4sSwQ==} engines: {node: '>=8.0.0'} @@ -3514,16 +3591,26 @@ packages: '@microsoft/api-extractor-model@7.32.2': resolution: {integrity: sha512-Ussc25rAalc+4JJs9HNQE7TuO9y6jpYQX9nWD1DhqUzYPBr3Lr7O9intf+ZY8kD5HnIqeIRJX7ccCT0QyBy2Ww==} + '@microsoft/api-extractor-model@7.33.8': + resolution: {integrity: sha512-aIcoQggPyer3B6Ze3usz0YWC/oBwUHfRH5ETUsr+oT2BRA6SfTJl7IKPcPZkX4UR+PohowzW4uMxsvjrn8vm+w==} + '@microsoft/api-extractor@7.55.2': resolution: {integrity: sha512-1jlWO4qmgqYoVUcyh+oXYRztZde/pAi7cSVzBz/rc+S7CoVzDasy8QE13dx6sLG4VRo8SfkkLbFORR6tBw4uGQ==} hasBin: true + '@microsoft/api-extractor@7.58.7': + resolution: {integrity: sha512-yK6OycD46gIzLRpj6ueVUWPk1ACSpkN1LBo05gY1qPTylbWyUCanXfH7+VgkI5LJrJoRSQR5F04XuCffCXLOBw==} + hasBin: true + '@microsoft/tsdoc-config@0.17.1': resolution: {integrity: sha512-UtjIFe0C6oYgTnad4q1QP4qXwLhe6tIpNTRStJ2RZEPIkqQPREAwE5spzVxsdn9UaEMUqhh0AqSx3X4nWAKXWw==} '@microsoft/tsdoc-config@0.18.0': resolution: {integrity: sha512-8N/vClYyfOH+l4fLkkr9+myAoR6M7akc8ntBJ4DJdWH2b09uVfr71+LTMpNyG19fNqWDg8KEDZhx5wxuqHyGjw==} + '@microsoft/tsdoc-config@0.18.1': + resolution: {integrity: sha512-9brPoVdfN9k9g0dcWkFeA7IH9bbcttzDJlXvkf8b2OBzd5MueR1V2wkKBL0abn0otvmkHJC6aapBOTJDDeMCZg==} + '@microsoft/tsdoc@0.15.1': resolution: {integrity: sha512-4aErSrCR/On/e5G2hDP0wjooqDdauzEbIq8hIkIe5pXV0rtWJZvdCEKL0ykZxex+IxIwBp0eGeV48hQN07dXtw==} @@ -3533,15 +3620,22 @@ packages: '@module-federation/bridge-react-webpack-plugin@0.21.6': resolution: {integrity: sha512-lJMmdhD4VKVkeg8RHb+Jwe6Ou9zKVgjtb1inEURDG/sSS2ksdZA8pVKLYbRPRbdmjr193Y8gJfqFbI2dqoyc/g==} + '@module-federation/bridge-react-webpack-plugin@2.5.1': + resolution: {integrity: sha512-bMRKo1ac6dYUhvPWH6ElFRfR+yWjbCse2mwu9fEzjemeaAqqse0K7XBIrW+4HcU7k/A6fu4Dk8o137ol6ZFXvw==} + '@module-federation/cli@0.21.6': resolution: {integrity: sha512-qNojnlc8pTyKtK7ww3i/ujLrgWwgXqnD5DcDPsjADVIpu7STaoaVQ0G5GJ7WWS/ajXw6EyIAAGW/AMFh4XUxsQ==} engines: {node: '>=16.0.0'} hasBin: true + '@module-federation/cli@2.5.1': + resolution: {integrity: sha512-Y5dQrcPoph91KAzg6XXQ40faqFQ4iPwq3JuvFbsawyKwhQ/+aHkaH7cfclNbNr9pHGiiozkdxb22zK3oJRI3rw==} + engines: {node: '>=16.0.0'} + hasBin: true + '@module-federation/data-prefetch@0.21.6': resolution: {integrity: sha512-8HD7ZhtWZ9vl6i3wA7M8cEeCRdtvxt09SbMTfqIPm+5eb/V4ijb8zGTYSRhNDb5RCB+BAixaPiZOWKXJ63/rVw==} peerDependencies: - '@types/react': '*' react: '>=16.9.0' react-dom: '>=16.9.0' @@ -3554,6 +3648,15 @@ packages: vue-tsc: optional: true + '@module-federation/dts-plugin@2.5.1': + resolution: {integrity: sha512-XylIL02As+VXk4DzFb8qYQs1YYoY0MZOpIqhf06LMkZBjPdOE0wJ1GOBvhFP9kM/cfuK7QV//mNdrWlZgvEkRA==} + peerDependencies: + typescript: ^4.9.0 || ^5.0.0 + vue-tsc: '>=1.0.24' + peerDependenciesMeta: + vue-tsc: + optional: true + '@module-federation/enhanced@0.21.6': resolution: {integrity: sha512-8PFQxtmXc6ukBC4CqGIoc96M2Ly9WVwCPu4Ffvt+K/SB6rGbeFeZoYAwREV1zGNMJ5v5ly6+AHIEOBxNuSnzSg==} hasBin: true @@ -3569,20 +3672,49 @@ packages: webpack: optional: true + '@module-federation/enhanced@2.5.1': + resolution: {integrity: sha512-uddrS58NxOW2lsLfXLHenzfX37QMuZ0g03nG9SVhqfo3tMdP9877SLaMKRpoOvy7YQRfrXVAGF//9U9QtEWr7A==} + hasBin: true + peerDependencies: + typescript: ^4.9.0 || ^5.0.0 + vue-tsc: '>=1.0.24' + webpack: ^5.0.0 + peerDependenciesMeta: + typescript: + optional: true + vue-tsc: + optional: true + webpack: + optional: true + '@module-federation/error-codes@0.21.6': resolution: {integrity: sha512-MLJUCQ05KnoVl8xd6xs9a5g2/8U+eWmVxg7xiBMeR0+7OjdWUbHwcwgVFatRIwSZvFgKHfWEiI7wsU1q1XbTRQ==} + '@module-federation/error-codes@2.5.1': + resolution: {integrity: sha512-3KIR8XbEW0Y+Fn8IAnxzDWMvXQWiS40Z1TE/Fft9aTeXP9dDAM7AiVhjTh5yF2csAwHSt/1LJVZbiCmS13mE8A==} + '@module-federation/inject-external-runtime-core-plugin@0.21.6': resolution: {integrity: sha512-DJQne7NQ988AVi3QB8byn12FkNb+C2lBeU1NRf8/WbL0gmHsr6kW8hiEJCm8LYaURwtsQqtsEV7i+8+51qjSmQ==} peerDependencies: '@module-federation/runtime-tools': 0.21.6 + '@module-federation/inject-external-runtime-core-plugin@2.5.1': + resolution: {integrity: sha512-cCFCQ0j0xObXwVwBq/ZiU+MMdJrE2OVwdPUR7l6NHKKwKAOmkagM+AE5wNEkzVht6m+Dh6x6/5UTqqa/vbDrjQ==} + peerDependencies: + '@module-federation/runtime-tools': 2.5.1 + '@module-federation/managers@0.21.6': resolution: {integrity: sha512-BeV6m2/7kF5MDVz9JJI5T8h8lMosnXkH2bOxxFewcra7ZjvDOgQu7WIio0mgk5l1zjNPvnEVKhnhrenEdcCiWg==} + '@module-federation/managers@2.5.1': + resolution: {integrity: sha512-AWbkH/U76FJDbdwBOodQ1An40WOdrDGAgqUMc8RD62+Ec/ocPfda0NhFcJbPxlUIvSFPTvBv6DwTnygmNC7GPA==} + '@module-federation/manifest@0.21.6': resolution: {integrity: sha512-yg93+I1qjRs5B5hOSvjbjmIoI2z3th8/yst9sfwvx4UDOG1acsE3HHMyPN0GdoIGwplC/KAnU5NmUz4tREUTGQ==} + '@module-federation/manifest@2.5.1': + resolution: {integrity: sha512-z44Fita44rpLufoEW71tWw+eWGMVLVQzT2OjrzOHH8JLPOX3czT0INPwVbRp9v8puzWiU6Kz5W6PqelqutpJKA==} + '@module-federation/node@2.7.25': resolution: {integrity: sha512-/u4f+GYRZfHpSvdt5n40lMCS9Cmve7N3JlDreaFXz8xrWDNOp2wvMgiVGpndo5J4iQdtLjpavWStahGQ05B2cQ==} peerDependencies: @@ -3610,24 +3742,59 @@ packages: vue-tsc: optional: true + '@module-federation/rspack@2.5.1': + resolution: {integrity: sha512-9Qu4Q7P4VHUhMQLHKA95x3L85WKPtk2Lz0VPpUprIwlKhKgZbuy5ou2PjlWiaPIffWo1JsVfoBi+P9dtpOeEsw==} + peerDependencies: + '@rspack/core': ^0.7.0 || ^1.0.0 || ^2.0.0-0 + typescript: ^4.9.0 || ^5.0.0 + vue-tsc: '>=1.0.24' + peerDependenciesMeta: + typescript: + optional: true + vue-tsc: + optional: true + '@module-federation/runtime-core@0.21.6': resolution: {integrity: sha512-5Hd1Y5qp5lU/aTiK66lidMlM/4ji2gr3EXAtJdreJzkY+bKcI5+21GRcliZ4RAkICmvdxQU5PHPL71XmNc7Lsw==} + '@module-federation/runtime-core@2.5.1': + resolution: {integrity: sha512-UMuMsWHXeMrm8Isl8YD6/s1jmTVau3SQhp9RO4Ln+eD2lrjM4hQSwOX2xPtfT1C1I4/E6hgyZQV1K1Q/3Zpr0Q==} + '@module-federation/runtime-tools@0.21.6': resolution: {integrity: sha512-fnP+ZOZTFeBGiTAnxve+axGmiYn2D60h86nUISXjXClK3LUY1krUfPgf6MaD4YDJ4i51OGXZWPekeMe16pkd8Q==} + '@module-federation/runtime-tools@2.5.1': + resolution: {integrity: sha512-pYUNvaQQBEwP66TLrjmmfkDIrTmPnX0kK86HgClkWLQKkX/oCgnqDxEgNbjeCc75dwUvZP6fW2d0pZ5++XILTw==} + '@module-federation/runtime@0.21.6': resolution: {integrity: sha512-+caXwaQqwTNh+CQqyb4mZmXq7iEemRDrTZQGD+zyeH454JAYnJ3s/3oDFizdH6245pk+NiqDyOOkHzzFQorKhQ==} + '@module-federation/runtime@2.5.1': + resolution: {integrity: sha512-Tf33FIpnQMn8FjIUAQMtSTYQgGibfh5vEvJihFO3q/hG9LiWwLMErZvOz/+wcPsE81gzHjYPxQgMKGSP3BuG8g==} + '@module-federation/sdk@0.21.6': resolution: {integrity: sha512-x6hARETb8iqHVhEsQBysuWpznNZViUh84qV2yE7AD+g7uIzHKiYdoWqj10posbo5XKf/147qgWDzKZoKoEP2dw==} + '@module-federation/sdk@2.5.1': + resolution: {integrity: sha512-FDhCx81ZCxX1oT/fyt/bW+gpPt287GR156E/Thv1yhb9XyNHGNkqe8zqJOipOMfb07E22OMzSzOulCBvAOgn3g==} + peerDependencies: + node-fetch: ^2.7.0 || ^3.3.2 + peerDependenciesMeta: + node-fetch: + optional: true + '@module-federation/third-party-dts-extractor@0.21.6': resolution: {integrity: sha512-Il6x4hLsvCgZNk1DFwuMBNeoxD1BsZ5AW2BI/nUgu0k5FiAvfcz1OFawRFEHtaM/kVrCsymMOW7pCao90DaX3A==} + '@module-federation/third-party-dts-extractor@2.5.1': + resolution: {integrity: sha512-/jD/o2IivDgg6jGUgdb9NZtlJWeoz1uKcblGL2BxYVzzlKT+1YS7Y2idTl1tqp4hNdFnDlPpQv6WLdKiLoOPNw==} + '@module-federation/webpack-bundler-runtime@0.21.6': resolution: {integrity: sha512-7zIp3LrcWbhGuFDTUMLJ2FJvcwjlddqhWGxi/MW3ur1a+HaO8v5tF2nl+vElKmbG1DFLU/52l3PElVcWf/YcsQ==} + '@module-federation/webpack-bundler-runtime@2.5.1': + resolution: {integrity: sha512-0pUsP9aaWIUcfWUXqax/iSwozngORwf4RK0R1qTOYYC13qx+p4p1Ck28Rz6Tzj/6zpzJgcMQXR7nW4sL+ztaww==} + '@monodon/rust@2.3.0': resolution: {integrity: sha512-iMnMnO/UF84Cod+J0DHaSTJLTlxT5eWXuTFeFlge5AeKNlzhnfCa733M2LiZjD9WVfIGK5yy4go63S3bshB0mg==} peerDependencies: @@ -3719,42 +3886,49 @@ packages: engines: {node: '>= 10'} cpu: [arm64] os: [linux] + libc: [glibc] '@napi-rs/lzma-linux-arm64-musl@1.4.5': resolution: {integrity: sha512-yWjcPDgJ2nIL3KNvi4536dlT/CcCWO0DUyEOlBs/SacG7BeD6IjGh6yYzd3/X1Y3JItCbZoDoLUH8iB1lTXo3w==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] + libc: [musl] '@napi-rs/lzma-linux-ppc64-gnu@1.4.5': resolution: {integrity: sha512-0XRhKuIU/9ZjT4WDIG/qnX7Xz7mSQHYZo9Gb3MP2gcvBgr6BA4zywQ9k3gmQaPn9ECE+CZg2V7DV7kT+x2pUMQ==} engines: {node: '>= 10'} cpu: [ppc64] os: [linux] + libc: [glibc] '@napi-rs/lzma-linux-riscv64-gnu@1.4.5': resolution: {integrity: sha512-QrqDIPEUUB23GCpyQj/QFyMlr8SGxxyExeZz9OWFnHfb70kXdTLWrHS/hEI1Ru+lSbQ/6xRqeoGyQ4Aqdg+/RA==} engines: {node: '>= 10'} cpu: [riscv64] os: [linux] + libc: [glibc] '@napi-rs/lzma-linux-s390x-gnu@1.4.5': resolution: {integrity: sha512-k8RVM5aMhW86E9H0QXdquwojew4H3SwPxbRVbl49/COJQWCUjGi79X6mYruMnMPEznZinUiT1jgKbFo2A00NdA==} engines: {node: '>= 10'} cpu: [s390x] os: [linux] + libc: [glibc] '@napi-rs/lzma-linux-x64-gnu@1.4.5': resolution: {integrity: sha512-6rMtBgnIq2Wcl1rQdZsnM+rtCcVCbws1nF8S2NzaUsVaZv8bjrPiAa0lwg4Eqnn1d9lgwqT+cZgm5m+//K08Kw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + libc: [glibc] '@napi-rs/lzma-linux-x64-musl@1.4.5': resolution: {integrity: sha512-eiadGBKi7Vd0bCArBUOO/qqRYPHt/VQVvGyYvDFt6C2ZSIjlD+HuOl+2oS1sjf4CFjK4eDIog6EdXnL0NE6iyQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + libc: [musl] '@napi-rs/lzma-wasm32-wasi@1.4.5': resolution: {integrity: sha512-+VyHHlr68dvey6fXc2hehw9gHVFIW3TtGF1XkcbAu65qVXsA9D/T+uuoRVqhE+JCyFHFrO0ixRbZDRK1XJt1sA==} @@ -3824,36 +3998,42 @@ packages: engines: {node: '>= 10'} cpu: [arm64] os: [linux] + libc: [glibc] '@napi-rs/tar-linux-arm64-musl@1.1.0': resolution: {integrity: sha512-L/y1/26q9L/uBqiW/JdOb/Dc94egFvNALUZV2WCGKQXc6UByPBMgdiEyW2dtoYxYYYYc+AKD+jr+wQPcvX2vrQ==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] + libc: [musl] '@napi-rs/tar-linux-ppc64-gnu@1.1.0': resolution: {integrity: sha512-EPE1K/80RQvPbLRJDJs1QmCIcH+7WRi0F73+oTe1582y9RtfGRuzAkzeBuAGRXAQEjRQw/RjtNqr6UTJ+8UuWQ==} engines: {node: '>= 10'} cpu: [ppc64] os: [linux] + libc: [glibc] '@napi-rs/tar-linux-s390x-gnu@1.1.0': resolution: {integrity: sha512-B2jhWiB1ffw1nQBqLUP1h4+J1ovAxBOoe5N2IqDMOc63fsPZKNqF1PvO/dIem8z7LL4U4bsfmhy3gBfu547oNQ==} engines: {node: '>= 10'} cpu: [s390x] os: [linux] + libc: [glibc] '@napi-rs/tar-linux-x64-gnu@1.1.0': resolution: {integrity: sha512-tbZDHnb9617lTnsDMGo/eAMZxnsQFnaRe+MszRqHguKfMwkisc9CCJnks/r1o84u5fECI+J/HOrKXgczq/3Oww==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + libc: [glibc] '@napi-rs/tar-linux-x64-musl@1.1.0': resolution: {integrity: sha512-dV6cODlzbO8u6Anmv2N/ilQHq/AWz0xyltuXoLU3yUyXbZcnWYZuB2rL8OBGPmqNcD+x9NdScBNXh7vWN0naSQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + libc: [musl] '@napi-rs/tar-wasm32-wasi@1.1.0': resolution: {integrity: sha512-jIa9nb2HzOrfH0F8QQ9g3WE4aMH5vSI5/1NYVNm9ysCmNjCCtMXCAhlI3WKCdm/DwHf0zLqdrrtDFXODcNaqMw==} @@ -3929,24 +4109,28 @@ packages: engines: {node: '>= 10'} cpu: [arm64] os: [linux] + libc: [glibc] '@napi-rs/wasm-tools-linux-arm64-musl@1.0.1': resolution: {integrity: sha512-jAasbIvjZXCgX0TCuEFQr+4D6Lla/3AAVx2LmDuMjgG4xoIXzjKWl7c4chuaD+TI+prWT0X6LJcdzFT+ROKGHQ==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] + libc: [musl] '@napi-rs/wasm-tools-linux-x64-gnu@1.0.1': resolution: {integrity: sha512-Plgk5rPqqK2nocBGajkMVbGm010Z7dnUgq0wtnYRZbzWWxwWcXfZMPa8EYxrK4eE8SzpI7VlZP1tdVsdjgGwMw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + libc: [glibc] '@napi-rs/wasm-tools-linux-x64-musl@1.0.1': resolution: {integrity: sha512-GW7AzGuWxtQkyHknHWYFdR0CHmW6is8rG2Rf4V6GNmMpmwtXt/ItWYWtBe4zqJWycMNazpfZKSw/BpT7/MVCXQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + libc: [musl] '@napi-rs/wasm-tools-wasm32-wasi@1.0.1': resolution: {integrity: sha512-/nQVSTrqSsn7YdAc2R7Ips/tnw5SPUcl3D7QrXCNGPqjbatIspnaexvaOYNyKMU6xPu+pc0BTnKVmqhlJJCPLA==} @@ -4018,6 +4202,10 @@ packages: resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==} engines: {node: ^14.21.3 || >=16} + '@noble/hashes@2.2.0': + resolution: {integrity: sha512-IYqDGiTXab6FniAgnSdZwgWbomxpy9FtYvLKs7wCUs2a8RkITG+DFGO1DM9cr+E3/RgADRpFjrKVaJ1z6sjtEg==} + engines: {node: '>= 20.19.0'} + '@nodelib/fs.scandir@2.1.5': resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -4058,8 +4246,8 @@ packages: resolution: {integrity: sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==} engines: {node: ^16.14.0 || >=18.0.0} - '@nx/cypress@22.3.1': - resolution: {integrity: sha512-ofQ6b9nXVQvpLaNisC8EWhTZiAoJXctjhx0w4U+l+IHeJFDcdP5PvPkbIl9uggeld0KSDJJXuPNAFUN4CJ/Xpg==} + '@nx/cypress@22.7.5': + resolution: {integrity: sha512-R7vlStn1ukKL9WL/dtfESKeqC38LyDvapPdSbxlBiDISCMgJAzntLcoBM22LfR3z7xy4kDk21fDMwglO3Bj30A==} peerDependencies: cypress: '>= 13 < 16' peerDependenciesMeta: @@ -4071,13 +4259,13 @@ packages: peerDependencies: nx: '>= 19 <= 21' - '@nx/devkit@22.3.1': - resolution: {integrity: sha512-bbpoU9pgVdUdGdpRqBH2sKMqrtppQMNM0yfJaCdt9gUl+N8ZTO10K8jGpOQUOoG9dJ02TYFlMh6XiOEy4rkigQ==} + '@nx/devkit@22.7.5': + resolution: {integrity: sha512-/63ziS7kdHXYTLLhwWBu9hFwoFFT8xf+PkcQjsNdPqc5JmkYkSew0cE/vp5ORgBpGLWWnFPJgmfqjbJoO2C7jA==} peerDependencies: nx: '>= 21 <= 23 || ^22.0.0-0' - '@nx/eslint-plugin@22.3.1': - resolution: {integrity: sha512-VDzKpJNSDop6J5j3Nsgly0o76lbKLhh22+HtPqiPwN/q8SzcmXkdOUzdYgsaTa7bRailqvXSzbmVJMrvQBcldQ==} + '@nx/eslint-plugin@22.7.5': + resolution: {integrity: sha512-C9mLUAZjcAKvkAifLNxNBWzvX9RFc/fg+GbO0d50596Lw3Yoz5tRCm4mgpUbVI3mkMIQumjoe8hu9bFx85bXnw==} peerDependencies: '@typescript-eslint/parser': ^6.13.2 || ^7.0.0 || ^8.0.0 eslint-config-prettier: ^10.0.0 @@ -4085,115 +4273,149 @@ packages: eslint-config-prettier: optional: true - '@nx/eslint@22.3.1': - resolution: {integrity: sha512-z7hzBxwpO8J/MdtO3hxe0nhXLJCIQlihhWWPY+/pUqA+BAeev4GKcd7cP5qI5X3pnwG/tTNP0lv8psUd4N4HYw==} + '@nx/eslint@22.7.5': + resolution: {integrity: sha512-D/85AvnF07ng/fLcSvAE8bxFQKvejUc/MP4pX6aFZgRGrpduo7mTwFMlM/UtOtTTPRRRQVLmM9u7jn4JKROBRw==} peerDependencies: + '@nx/jest': 22.7.5 '@zkochan/js-yaml': 0.0.7 - eslint: ^8.0.0 || ^9.0.0 + eslint: ^8.0.0 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: + '@nx/jest': + optional: true '@zkochan/js-yaml': optional: true - '@nx/jest@22.3.1': - resolution: {integrity: sha512-wotp70CjDLfMMOKNQRfU0U2fm5b0dFBP3plJkBiDYkVHxuVLkYhUpk3Z2MQ4CSPLRzlCA+uoSDpojC21NCmHIw==} + '@nx/jest@22.7.5': + resolution: {integrity: sha512-+WlVdtDlVM1dyJKQg/gKiMMs6B4cR8Qh3NT9J2WFPbKdD89DTR771j+WZE572MLijJmqzOE7uNH189kV1qEj0A==} - '@nx/js@22.3.1': - resolution: {integrity: sha512-yZcvotqLkjqyT52A9Rt49s0mGNWXhVwFi6wd5WoNh4DttxDh4iZ02AxZQxEpft6fAbcS0LOP+Ty0BN4aY2cYog==} + '@nx/js@22.7.5': + resolution: {integrity: sha512-2nJdlNPwYRldsdmUz+p/O8kF7eVjINaycTO4o1FXn8DL09wLvhxb1kFAaJrGA3Ig6znAnmRVGitccFt1QTPCIg==} peerDependencies: verdaccio: ^6.0.5 peerDependenciesMeta: verdaccio: optional: true - '@nx/module-federation@22.3.1': - resolution: {integrity: sha512-8beUbefthC+FcRO31mnwNroGLfd+NseveOKQRlXP+29HwGk2RMRvrEj9zey7Bl2hYNo4xDa0aO9+xBJsnvLCqA==} + '@nx/module-federation@22.7.5': + resolution: {integrity: sha512-tb2j891NYZvl2jMFWbTgF2aLGOGDjhJrMbUKIml2/xIT6DNF89+ly8+wjMS5Nh7JAK3XSQtlERlFVBCcTD+bQA==} - '@nx/nx-darwin-arm64@22.3.1': - resolution: {integrity: sha512-hi6waBIYVrm9Q03sce41tdi4IDeyEmcmr5cP/MROFxO4rjPy2sBaRuXfm7UxsZ/VefNmS8XMRtYNxjwx4a7ZHA==} + '@nx/nx-darwin-arm64@22.7.5': + resolution: {integrity: sha512-eoPtwx0qZqvRUD+VVOHm150AlSYwYoPxkDHBBGqKCn5nzPspb0lLWw8q83crM/L1M928YgK0WmGf3C++7eqsTA==} cpu: [arm64] os: [darwin] - '@nx/nx-darwin-x64@22.3.1': - resolution: {integrity: sha512-V6cho6hj3jYAAvsviN2bGrChg29RBdksS58A76OviJwPGSKpN/m5BV3GFAe0LxoMXd+AmgGvygm07/7E9Jymcw==} + '@nx/nx-darwin-x64@22.7.5': + resolution: {integrity: sha512-VLOn/ZoEn3HfjSj+yIHLCM56/el79r+9I28CkZNHaSXJQWZ3edSkcgcfYjVxCurpN2VEwDQHLBeFCH8M+lQ7wQ==} cpu: [x64] os: [darwin] - '@nx/nx-freebsd-x64@22.3.1': - resolution: {integrity: sha512-NpFr0E5vD0kAv5ual2Hfa80yEa6dUT3KhmzT3Jgn+9CdOCOzwAx/4Z4gz/Uz8yNtJ3xNvb+sNQpsrpdYwv4xAQ==} + '@nx/nx-freebsd-x64@22.7.5': + resolution: {integrity: sha512-LEVer/E2xfGvK9Go+imMQoEninOoq/38Z2bhV1SD3AThXrp1xaLFVkW5jQ6juebeVkAeztEoMLFlr576egS0vw==} cpu: [x64] os: [freebsd] - '@nx/nx-linux-arm-gnueabihf@22.3.1': - resolution: {integrity: sha512-S6nTMscgHug0HXufufQheXmU40F2APTdDMVzNaDIYRAfCEEvW5SNcNSsV98fBX2Zabm46Rk3ckpLi8TjbCaGhw==} + '@nx/nx-linux-arm-gnueabihf@22.7.5': + resolution: {integrity: sha512-NP27EFGpmFJM6RL1Ey/AFJ7gA2xuqtIHaw6jjSNGvfrnZRUNaway30GrVaGGeODf0DsvAty/unqoBMPy6kDHbw==} cpu: [arm] os: [linux] - '@nx/nx-linux-arm64-gnu@22.3.1': - resolution: {integrity: sha512-ct4meC411qZXeKZfM0Z10lsoOgpgpE49bE/J6kSGxW8nMbQhM6V5eNvWaAqH3uhTIscj2/OfhlNP0YcNKJME+A==} + '@nx/nx-linux-arm64-gnu@22.7.5': + resolution: {integrity: sha512-QLnkJl3HkHsPfpLiNiAiMfpfAeFpic0U1diAxF8RqChOkCpQ7ulvyBVgE1UrQxvhd+gFQ3ed5RNDxtCRw8nTiw==} cpu: [arm64] os: [linux] + libc: [glibc] - '@nx/nx-linux-arm64-musl@22.3.1': - resolution: {integrity: sha512-l2IEo2Rp0voLm0VNGXgYCd2l1F68V7ETG1vlXK8yW0EBRjroXJF0J0n9r9MkpogC2HDAtBks/57uSRKFFyOgZQ==} + '@nx/nx-linux-arm64-musl@22.7.5': + resolution: {integrity: sha512-cEP6KmwBgnb38+jTTaibWCjwXcHmigqhTfy0tN1be7WZr6bHxbqNLsXqKRN70PSNA3HouZcxw1cdRL8tqbPBBA==} cpu: [arm64] os: [linux] + libc: [musl] - '@nx/nx-linux-x64-gnu@22.3.1': - resolution: {integrity: sha512-zRC6Ea/odkq+NaVGFmJNcHvBggGt+h0LfiBSmhpDGJKR914niz2xU7WBDbqcFOCU8lfzQvYYzvEm3KOGkxmdLA==} + '@nx/nx-linux-x64-gnu@22.7.5': + resolution: {integrity: sha512-tbaX1tZCSpGifDNBfDdEZAMxVF3Yg4bhFP/bm1needc0diqb+Zflc0u5tM5/6BWDMITQDwenJVsNiQ8ZdtJURA==} cpu: [x64] os: [linux] + libc: [glibc] - '@nx/nx-linux-x64-musl@22.3.1': - resolution: {integrity: sha512-9YTmlFwN1vL+mZv7CACSDpoP5WC0PYFsOknRyuKnas6VJxSGRNbE1+qyo+xYbU8q1qeYGwNaPR3cdfWzE5cEnw==} + '@nx/nx-linux-x64-musl@22.7.5': + resolution: {integrity: sha512-H0M7csOZIgPT822LqjxSXzf4MXRND15vIkAQe3F3Jlr3Si8LC3tzbL52aVcRfgb8MF/xOB5U47mSwxWt1M2bPQ==} cpu: [x64] os: [linux] + libc: [musl] - '@nx/nx-win32-arm64-msvc@22.3.1': - resolution: {integrity: sha512-7+JSFUsmJs+4x7tVczbeJfJ4v/J7bywlxlHy9zreVqjw0D5zdFLGjJEQixDNohGr9S7iBbmHTqzgrokyfqWH0g==} + '@nx/nx-win32-arm64-msvc@22.7.5': + resolution: {integrity: sha512-JTcZch9YAnDL1gbhqePz3DZ4x7iYemLn1yJzrjbbXAmXju2eiiJiZvJJHbV06+SP9HKXDT8RjTKuAWTdVxnHug==} cpu: [arm64] os: [win32] - '@nx/nx-win32-x64-msvc@22.3.1': - resolution: {integrity: sha512-Wm+6qBFlviUFSYDp8VFPQCXaZzCLgL6QAf62c1YYTUqx95SCrWv/1uH/ZQpNtTV5D0r4N0JA+h9nd2hK2YJzgQ==} + '@nx/nx-win32-x64-msvc@22.7.5': + resolution: {integrity: sha512-ngcMyHdBJ9FSz2nHdbZ7gtJlFq0O2b05sPAsVMkZ18CKzdaA1qrBDJfsMO49hPCny505eiT766+CkKdaCDl5kA==} cpu: [x64] os: [win32] - '@nx/plugin@22.3.1': - resolution: {integrity: sha512-vNT7R1dMzW3R/ht4ufzWdtmSRNan5zr5No8nGfEPnm5NsyKUe67nCdFouP3Y5lfbmru34l9IgYXatHHjwt4k3Q==} + '@nx/plugin@22.7.5': + resolution: {integrity: sha512-g+dpE0u7KsMoVhWb2zQrqGNCa5zk6jXtLkKyLzGtTI7y3LLoVcd3GAg0EqrgaA+HOIc4zxeKb19P3VvlGOo5pw==} - '@nx/react@22.3.1': - resolution: {integrity: sha512-VxWLQa7TODvhRAFlkABbVQH03ztAzaim7v+938QEMs2ryk8sViKKBz1arW+fmhguY+OjQzCNkDbdx0ArsxUgPQ==} + '@nx/react@22.7.5': + resolution: {integrity: sha512-Xgrq3iEJVM+SvZYEIYgBrfSRJ2hx7Bpc/p3w7A9gJYyXeAJgAfPzK4jtESkMqLxW5mBCpQVgJEbIrR5IAcBpbA==} - '@nx/rollup@22.3.1': - resolution: {integrity: sha512-LyowAr5MN3oORDzVvQxIYJwGQn+Y046x7JUHbaPdiOJfa9uqMKifPH6SsgnUZUhHB3T3YdCEdG4SXA/x9bMgiQ==} + '@nx/rollup@22.7.5': + resolution: {integrity: sha512-36bLP+XZR7Qiejw1sGc+0R3r2/N4FNPgV8Q1IW8Y+6QpkTCk3jStX1HXyJBW0EwPcIkgQ/PwSkhHeg9ATZei2A==} - '@nx/storybook@22.3.1': - resolution: {integrity: sha512-omUvI+po4dC9GpKtOI7Cg8elAeMfv41OwJYu64tmh4vI9/JkQhcCe4f9T8x2clpBT7p/GiRqMTyupHfLGM49Bw==} + '@nx/storybook@22.7.5': + resolution: {integrity: sha512-ZA86Gdhbq93oQjbav+RyrzUzA0nEydQKLu1oY+L6LYXE+IK3Rrjr584VJW5KySAHmu4dgCNcvnS+lyZKXK5SXQ==} peerDependencies: + '@nx/web': 22.7.5 storybook: '>=7.0.0 <11.0.0' + peerDependenciesMeta: + '@nx/web': + optional: true - '@nx/vite@22.3.1': - resolution: {integrity: sha512-SUMPvA6Az6nUr4tvS205zJpF9SefmDQC8+KscqHbT+hyvG4sQJAIg9ihw6ZwoIz+NjVsM7Q3yLDqoxy46J+nGA==} + '@nx/vite@22.7.5': + resolution: {integrity: sha512-udKstx9fDT+Z/SacxVBJWdqDhaxee9/rA+F6nyg97PTH4JAGVuj+LZIFPakqiSg623GXMAGmK0gzAswAuWrYIQ==} peerDependencies: - vite: ^5.0.0 || ^6.0.0 || ^7.0.0 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 vitest: ^1.3.1 || ^2.0.0 || ^3.0.0 || ^4.0.0 - '@nx/vitest@22.3.1': - resolution: {integrity: sha512-DVHm4xgGC5gZf6RBeqmgZ0t2lm68cN8Lwg3dO06Ghc5/Tl8HvwJ8x1j++1kyth5PsSlTGBnGEAnlfO+Aa1iFrg==} + '@nx/vitest@22.7.5': + resolution: {integrity: sha512-+E/IOIpzKbIfnTugx5vk9nDRw9tJEPIdNguYusSrzyZ6UNxiLBO9ipamNKiXw/4lPCtGH2TGx6M9nBQDUg/ciQ==} peerDependencies: - vite: ^5.0.0 || ^6.0.0 || ^7.0.0 + '@nx/eslint': 22.7.5 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 vitest: ^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 peerDependenciesMeta: + '@nx/eslint': + optional: true vite: optional: true vitest: optional: true - '@nx/web@22.3.1': - resolution: {integrity: sha512-UoqGbNtyh47fmJDuvMwcneeRzfLyZVFdbALWgJIMm1jCl6RktRCeJ0fyT9JgjwKplFmRXpdpgoTIVnVoSVFaIg==} + '@nx/web@22.7.5': + resolution: {integrity: sha512-mJOx3BknJhdr2T7UD4b4LuWyTa+MyXXJvYymBjHvBuCmWC5o68wuDm2y5kXrZ1WxHJYlqoLZ2281QPVyB+SZ7A==} + peerDependencies: + '@nx/cypress': 22.7.5 + '@nx/eslint': 22.7.5 + '@nx/jest': 22.7.5 + '@nx/playwright': 22.7.5 + '@nx/vite': 22.7.5 + '@nx/webpack': 22.7.5 + peerDependenciesMeta: + '@nx/cypress': + optional: true + '@nx/eslint': + optional: true + '@nx/jest': + optional: true + '@nx/playwright': + optional: true + '@nx/vite': + optional: true + '@nx/webpack': + optional: true - '@nx/workspace@22.3.1': - resolution: {integrity: sha512-gR6P4mGfMQvayzOfmMuO41pMMOgIALZyU/O/34gsaUvLuU0DpH3DFYUVT075s9ox7aDVA0rYxN8pWjfbdaofqw==} + '@nx/workspace@22.7.5': + resolution: {integrity: sha512-f3zx8EAOl0ANd2UXZIniBoHfDvNvi2Uy65R9Rp6emdcx7rxsuTU5Eaidryleo9wIQ5cZAcMx7Wvzp5Srj8diKA==} '@oclif/core@3.27.0': resolution: {integrity: sha512-Fg93aNFvXzBq5L7ztVHFP2nYwWU1oTCq48G0TjF/qC1UN36KWa2H5Hsm72kERd5x/sjy2M2Tn4kDEorUlpXOlw==} @@ -5121,36 +5343,42 @@ packages: engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] + libc: [glibc] '@oxc-parser/binding-linux-arm64-musl@0.99.0': resolution: {integrity: sha512-qhftDo2D37SqCEl3ZTa367NqWSZNb1Ddp34CTmShLKFrnKdNiUn55RdokLnHtf1AL5ssaQlYDwBECX7XiBWOhw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] + libc: [musl] '@oxc-parser/binding-linux-riscv64-gnu@0.99.0': resolution: {integrity: sha512-zxn/xkf519f12FKkpL5XwJipsylfSSnm36h6c1zBDTz4fbIDMGyIhHfWfwM7uUmHo9Aqw1pLxFpY39Etv398+Q==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] + libc: [glibc] '@oxc-parser/binding-linux-s390x-gnu@0.99.0': resolution: {integrity: sha512-Y1eSDKDS5E4IVC7Oxw+NbYAKRmJPMJTIjW+9xOWwteDHkFqpocKe0USxog+Q1uhzalD9M0p9eXWEWdGQCMDBMQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] + libc: [glibc] '@oxc-parser/binding-linux-x64-gnu@0.99.0': resolution: {integrity: sha512-YVJMfk5cFWB8i2/nIrbk6n15bFkMHqWnMIWkVx7r2KwpTxHyFMfu2IpeVKo1ITDSmt5nBrGdLHD36QRlu2nDLg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] + libc: [glibc] '@oxc-parser/binding-linux-x64-musl@0.99.0': resolution: {integrity: sha512-2+SDPrie5f90A1b9EirtVggOgsqtsYU5raZwkDYKyS1uvJzjqHCDhG/f4TwQxHmIc5YkczdQfwvN91lwmjsKYQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] + libc: [musl] '@oxc-parser/binding-wasm32-wasi@0.99.0': resolution: {integrity: sha512-DKA4j0QerUWSMADziLM5sAyM7V53Fj95CV9SjP77bPfEfT7MnvFKnneaRMqPK1cpzjAGiQF52OBUIKyk0dwOQA==} @@ -5175,8 +5403,9 @@ packages: '@oxc-project/types@0.99.0': resolution: {integrity: sha512-LLDEhXB7g1m5J+woRSgfKsFPS3LhR9xRhTeIoEBm5WrkwMxn6eZ0Ld0c0K5eHB57ChZX6I3uSmmLjZ8pcjlRcw==} - '@paralleldrive/cuid2@2.3.1': - resolution: {integrity: sha512-XO7cAxhnTZl0Yggq6jOgjiOHhbgcO4NqFqwSmQpjK3b6TEE6Uj/jfSk6wzYyemh3+I0sHirKSetjQwn5cZktFw==} + '@paralleldrive/cuid2@3.3.0': + resolution: {integrity: sha512-OqiFvSOF0dBSesELYY2CAMa4YINvlLpvKOz/rv6NeZEqiyttlHgv98Juwv4Ch+GrEV7IZ8jfI2VcEoYUjXXCjw==} + hasBin: true '@parcel/watcher-android-arm64@2.5.1': resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==} @@ -5207,36 +5436,42 @@ packages: engines: {node: '>= 10.0.0'} cpu: [arm] os: [linux] + libc: [glibc] '@parcel/watcher-linux-arm-musl@2.5.1': resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==} engines: {node: '>= 10.0.0'} cpu: [arm] os: [linux] + libc: [musl] '@parcel/watcher-linux-arm64-glibc@2.5.1': resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] + libc: [glibc] '@parcel/watcher-linux-arm64-musl@2.5.1': resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] + libc: [musl] '@parcel/watcher-linux-x64-glibc@2.5.1': resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] + libc: [glibc] '@parcel/watcher-linux-x64-musl@2.5.1': resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] + libc: [musl] '@parcel/watcher-win32-arm64@2.5.1': resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==} @@ -5260,10 +5495,10 @@ packages: resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==} engines: {node: '>= 10.0.0'} - '@phenomnomnominal/tsquery@5.0.1': - resolution: {integrity: sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==} + '@phenomnomnominal/tsquery@6.2.0': + resolution: {integrity: sha512-Vo9nkhfZxDB/sBiqIY3pjDC4mOSyure+AFlEW5hcy/tRE82MqCXjRN4InnVNMldinRt0dLYqg4HAU2XPq5e1LA==} peerDependencies: - typescript: ^3 || ^4 || ^5 + typescript: '>3.0.0' '@pkgjs/parseargs@0.11.0': resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} @@ -5485,69 +5720,81 @@ packages: resolution: {integrity: sha512-xkGD+YLH+vQZiqxKEsXe8xS/owQXkyARaNB9NfFrAacLoNIRZM5UEZGNKxXyRWd1kSEkYkJ3/WiqvGGCcqUg1A==} cpu: [arm64] os: [linux] + libc: [glibc] '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.52': resolution: {integrity: sha512-V48oDR84feRU2KRuzpALp594Uqlx27+zFsT6+BgTcXOtu7dWy350J1G28ydoCwKB+oxwsRPx2e7aeQnmd3YJbQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] + libc: [glibc] '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.55': resolution: {integrity: sha512-2x6ffiVLZrQv7Xii9+JdtyT1U3bQhKj59K3eRnYlrXsKyjkjfmiDUVx2n+zSyijisUqD62fcegmx2oLLfeTkCA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] + libc: [glibc] '@rolldown/binding-linux-arm64-musl@1.0.0-beta.1': resolution: {integrity: sha512-Ey2UxKFL74JuWpdNl9stpV0kxHZIgCWCEUnDnpQ1hcBwO9KwDM5qicLtXfsjozD6vt+xzbrL2D/uTrziYZ7IDQ==} cpu: [arm64] os: [linux] + libc: [musl] '@rolldown/binding-linux-arm64-musl@1.0.0-beta.52': resolution: {integrity: sha512-ENLmSQCWqSA/+YN45V2FqTIemg7QspaiTjlm327eUAMeOLdqmSOVVyrQexJGNTQ5M8sDYCgVAig2Kk01Ggmqaw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] + libc: [musl] '@rolldown/binding-linux-arm64-musl@1.0.0-beta.55': resolution: {integrity: sha512-QbNncvqAXziya5wleI+OJvmceEE15vE4yn4qfbI/hwT/+8ZcqxyfRZOOh62KjisXxp4D0h3JZspycXYejxAU3w==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] + libc: [musl] '@rolldown/binding-linux-x64-gnu@1.0.0-beta.1': resolution: {integrity: sha512-a8QP35x/3mggWqCpFtaF3/PbWl5P9QKpP/muk3iMPgzrXto8zPsEl3imsP3EBh4KwanBVHIf8pEkBQ+/7iMTgQ==} cpu: [x64] os: [linux] + libc: [glibc] '@rolldown/binding-linux-x64-gnu@1.0.0-beta.52': resolution: {integrity: sha512-klahlb2EIFltSUubn/VLjuc3qxp1E7th8ukayPfdkcKvvYcQ5rJztgx8JsJSuAKVzKtNTqUGOhy4On71BuyV8g==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] + libc: [glibc] '@rolldown/binding-linux-x64-gnu@1.0.0-beta.55': resolution: {integrity: sha512-YZCTZZM+rujxwVc6A+QZaNMJXVtmabmFYLG2VGQTKaBfYGvBKUgtbMEttnp/oZ88BMi2DzadBVhOmfQV8SuHhw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] + libc: [glibc] '@rolldown/binding-linux-x64-musl@1.0.0-beta.1': resolution: {integrity: sha512-uIqKwnkZjTY8FmqGMaSjwtWlCdV88LV9bjdkv+mb7I+BBw+9cJlIQy0P8YnGEOEcnDPis/SiraCpkJ/eHYaSZw==} cpu: [x64] os: [linux] + libc: [musl] '@rolldown/binding-linux-x64-musl@1.0.0-beta.52': resolution: {integrity: sha512-UuA+JqQIgqtkgGN2c/AQ5wi8M6mJHrahz/wciENPTeI6zEIbbLGoth5XN+sQe2pJDejEVofN9aOAp0kaazwnVg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] + libc: [musl] '@rolldown/binding-linux-x64-musl@1.0.0-beta.55': resolution: {integrity: sha512-28q9OQ/DDpFh2keS4BVAlc3N65/wiqKbk5K1pgLdu/uWbKa8hgUJofhXxqO+a+Ya2HVTUuYHneWsI2u+eu3N5Q==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] + libc: [musl] '@rolldown/binding-openharmony-arm64@1.0.0-beta.52': resolution: {integrity: sha512-1BNQW8u4ro8bsN1+tgKENJiqmvc+WfuaUhXzMImOVSMw28pkBKdfZtX2qJPADV3terx+vNJtlsgSGeb3+W6Jiw==} @@ -5761,111 +6008,260 @@ packages: cpu: [arm] os: [android] + '@rollup/rollup-android-arm-eabi@4.61.1': + resolution: {integrity: sha512-JnBB8MdXj45cajvTuO5FmPlvFVJRQgvrz1uSEl3NwqFnReAPGwb8EanbGi4z2nRaqLzjJSv5/JmycoTKlRZxHA==} + cpu: [arm] + os: [android] + '@rollup/rollup-android-arm64@4.53.5': resolution: {integrity: sha512-wrSAViWvZHBMMlWk6EJhvg8/rjxzyEhEdgfMMjREHEq11EtJ6IP6yfcCH57YAEca2Oe3FNCE9DSTgU70EIGmVw==} cpu: [arm64] os: [android] + '@rollup/rollup-android-arm64@4.61.1': + resolution: {integrity: sha512-Jx2g7iSjw4AOT0HDPHM9RV3GNjRXwybWtSFZiZAYUTjUwjVrYIwq3kBf+LnhqJlzXFAqTAh2F7IGI+O568exPw==} + cpu: [arm64] + os: [android] + '@rollup/rollup-darwin-arm64@4.53.5': resolution: {integrity: sha512-S87zZPBmRO6u1YXQLwpveZm4JfPpAa6oHBX7/ghSiGH3rz/KDgAu1rKdGutV+WUI6tKDMbaBJomhnT30Y2t4VQ==} cpu: [arm64] os: [darwin] + '@rollup/rollup-darwin-arm64@4.61.1': + resolution: {integrity: sha512-0F1L/Z3Eqv8mT2n3dCpeO8GcTvHvVqkP5/t6DMsn0KzhYVcg+s7Ncl5DS8qjKYEeio6Az0Gt6nyBORay5qIlCA==} + cpu: [arm64] + os: [darwin] + '@rollup/rollup-darwin-x64@4.53.5': resolution: {integrity: sha512-YTbnsAaHo6VrAczISxgpTva8EkfQus0VPEVJCEaboHtZRIb6h6j0BNxRBOwnDciFTZLDPW5r+ZBmhL/+YpTZgA==} cpu: [x64] os: [darwin] + '@rollup/rollup-darwin-x64@4.61.1': + resolution: {integrity: sha512-qLttcH871ujY4YcVfUSShhOw+CsoTatYz8gRbHO7Bb92QH059/P0y5do1KMs41fY0BpD2x4AJH/gID0zFiqVKQ==} + cpu: [x64] + os: [darwin] + '@rollup/rollup-freebsd-arm64@4.53.5': resolution: {integrity: sha512-1T8eY2J8rKJWzaznV7zedfdhD1BqVs1iqILhmHDq/bqCUZsrMt+j8VCTHhP0vdfbHK3e1IQ7VYx3jlKqwlf+vw==} cpu: [arm64] os: [freebsd] + '@rollup/rollup-freebsd-arm64@4.61.1': + resolution: {integrity: sha512-fUI4RapGE0Oh3mb8mgfvC1O2nU1RpDZUKnDQm3xB1Ipg7C2wTs5Kstz7G2uWK99a8S2yTMq8/P4uycwNa0nJyw==} + cpu: [arm64] + os: [freebsd] + '@rollup/rollup-freebsd-x64@4.53.5': resolution: {integrity: sha512-sHTiuXyBJApxRn+VFMaw1U+Qsz4kcNlxQ742snICYPrY+DDL8/ZbaC4DVIB7vgZmp3jiDaKA0WpBdP0aqPJoBQ==} cpu: [x64] os: [freebsd] + '@rollup/rollup-freebsd-x64@4.61.1': + resolution: {integrity: sha512-H5YrdvJaDtI/U9/emrD4b++xkvp3y/JvOe4rizHbxvkyMfRS/CiRYdji+Pl8D0brEaNFWUh1drQxgAGIl6Xudw==} + cpu: [x64] + os: [freebsd] + '@rollup/rollup-linux-arm-gnueabihf@4.53.5': resolution: {integrity: sha512-dV3T9MyAf0w8zPVLVBptVlzaXxka6xg1f16VAQmjg+4KMSTWDvhimI/Y6mp8oHwNrmnmVl9XxJ/w/mO4uIQONA==} cpu: [arm] os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-arm-gnueabihf@4.61.1': + resolution: {integrity: sha512-Q8CBCCQtDFrYtXoeUXSrnFXKOnyUhx6bz+SkL6A0E7V8kAiCJ5pamq1WtbfpVGhR5TSpXY6ak3avmDc5fHTyJA==} + cpu: [arm] + os: [linux] + libc: [glibc] '@rollup/rollup-linux-arm-musleabihf@4.53.5': resolution: {integrity: sha512-wIGYC1x/hyjP+KAu9+ewDI+fi5XSNiUi9Bvg6KGAh2TsNMA3tSEs+Sh6jJ/r4BV/bx/CyWu2ue9kDnIdRyafcQ==} cpu: [arm] os: [linux] + libc: [musl] + + '@rollup/rollup-linux-arm-musleabihf@4.61.1': + resolution: {integrity: sha512-nwnhk1581l0FBVellGcVCAT0Oi06onEA3WB53sf01VO3I0UPBkMH9sXONYME2K0ovXcNayJfNtHfm6mpJElatQ==} + cpu: [arm] + os: [linux] + libc: [musl] '@rollup/rollup-linux-arm64-gnu@4.53.5': resolution: {integrity: sha512-Y+qVA0D9d0y2FRNiG9oM3Hut/DgODZbU9I8pLLPwAsU0tUKZ49cyV1tzmB/qRbSzGvY8lpgGkJuMyuhH7Ma+Vg==} cpu: [arm64] os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-arm64-gnu@4.61.1': + resolution: {integrity: sha512-x5Xr49hwt3hdW75UOZm3395YwwzPyauktslv29KpWL/T+vVAzoT3azLcTWv0eMciBNrx+DYjH4paehHoLpPvpg==} + cpu: [arm64] + os: [linux] + libc: [glibc] '@rollup/rollup-linux-arm64-musl@4.53.5': resolution: {integrity: sha512-juaC4bEgJsyFVfqhtGLz8mbopaWD+WeSOYr5E16y+1of6KQjc0BpwZLuxkClqY1i8sco+MdyoXPNiCkQou09+g==} cpu: [arm64] os: [linux] + libc: [musl] + + '@rollup/rollup-linux-arm64-musl@4.61.1': + resolution: {integrity: sha512-unMS3H73DpaoPyyEVPjGKleM/s0mkmsauTENpw4INQY8y4+IuLNjkueQ5QCtC0D3N38Y38yhAU8OoZ20S2Tm6w==} + cpu: [arm64] + os: [linux] + libc: [musl] '@rollup/rollup-linux-loong64-gnu@4.53.5': resolution: {integrity: sha512-rIEC0hZ17A42iXtHX+EPJVL/CakHo+tT7W0pbzdAGuWOt2jxDFh7A/lRhsNHBcqL4T36+UiAgwO8pbmn3dE8wA==} cpu: [loong64] os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-loong64-gnu@4.61.1': + resolution: {integrity: sha512-zNZzGRnAhwjFEYmvphJRV5XaQGjs62cCmeYYHUT//NbvEnHauw+I85nGG+SiVg5ld4GX8D1IbKIX+ozITQnhMQ==} + cpu: [loong64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-loong64-musl@4.61.1': + resolution: {integrity: sha512-LdpWGL8X209B2SIvWjqlc8VZgM6PKfontSerGepuldQmHYrAOtnMCXeJkxXGbC+PPZVOuu5czJo7fNV6aeW8rQ==} + cpu: [loong64] + os: [linux] + libc: [musl] '@rollup/rollup-linux-ppc64-gnu@4.53.5': resolution: {integrity: sha512-T7l409NhUE552RcAOcmJHj3xyZ2h7vMWzcwQI0hvn5tqHh3oSoclf9WgTl+0QqffWFG8MEVZZP1/OBglKZx52Q==} cpu: [ppc64] os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-ppc64-gnu@4.61.1': + resolution: {integrity: sha512-EC5kTtNaNGOmbMGqar8dvJy6y/hg99GAwjfBz++pxZhQATXGcRjd6c5en5wcbru0vkRmiMGsQKdMJOOf6sza4g==} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-ppc64-musl@4.61.1': + resolution: {integrity: sha512-8hiwp6D4acEcNK78I4rP0/XtS1sknWIAMJBPdR4l6zUtyTm5KiTDr5bXmWt4foY7nAN7AThDHgkLIEZOWKbzWw==} + cpu: [ppc64] + os: [linux] + libc: [musl] '@rollup/rollup-linux-riscv64-gnu@4.53.5': resolution: {integrity: sha512-7OK5/GhxbnrMcxIFoYfhV/TkknarkYC1hqUw1wU2xUN3TVRLNT5FmBv4KkheSG2xZ6IEbRAhTooTV2+R5Tk0lQ==} cpu: [riscv64] os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-riscv64-gnu@4.61.1': + resolution: {integrity: sha512-10dh/h/BqA7DuMPWSxkR8uks18FRwnwOEqr5zOTEl+NOwP/OMzKX8OFR/Of9xxDA7D5qef1Nzar5WDD2kCCr1g==} + cpu: [riscv64] + os: [linux] + libc: [glibc] '@rollup/rollup-linux-riscv64-musl@4.53.5': resolution: {integrity: sha512-GwuDBE/PsXaTa76lO5eLJTyr2k8QkPipAyOrs4V/KJufHCZBJ495VCGJol35grx9xryk4V+2zd3Ri+3v7NPh+w==} cpu: [riscv64] os: [linux] + libc: [musl] + + '@rollup/rollup-linux-riscv64-musl@4.61.1': + resolution: {integrity: sha512-YKJ5lg35DP17gcAOggnihe+APw9HLyj1Xn7gsmGumBJAUDa6NGXNixJzmkWLhcK9TOuuyQjdamzvJefkO7qHZQ==} + cpu: [riscv64] + os: [linux] + libc: [musl] '@rollup/rollup-linux-s390x-gnu@4.53.5': resolution: {integrity: sha512-IAE1Ziyr1qNfnmiQLHBURAD+eh/zH1pIeJjeShleII7Vj8kyEm2PF77o+lf3WTHDpNJcu4IXJxNO0Zluro8bOw==} cpu: [s390x] os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-s390x-gnu@4.61.1': + resolution: {integrity: sha512-Mlil5G2Jj6a7B3LWGctg+XPL9vdXYuzCtNXfxOQ0nPjc2m6ueUktocPGH9bnAM0bNRKb/bAWTujUU7IJQdQA+g==} + cpu: [s390x] + os: [linux] + libc: [glibc] '@rollup/rollup-linux-x64-gnu@4.53.5': resolution: {integrity: sha512-Pg6E+oP7GvZ4XwgRJBuSXZjcqpIW3yCBhK4BcsANvb47qMvAbCjR6E+1a/U2WXz1JJxp9/4Dno3/iSJLcm5auw==} cpu: [x64] os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-x64-gnu@4.61.1': + resolution: {integrity: sha512-bVWIOIk6pV01p4CdUbPP7CJ/434z+OooYjDuFcR+44N35YvKUC66G8MGnvcWx5mWKW3g61J+t74l3Kj15Kwn2Q==} + cpu: [x64] + os: [linux] + libc: [glibc] '@rollup/rollup-linux-x64-musl@4.53.5': resolution: {integrity: sha512-txGtluxDKTxaMDzUduGP0wdfng24y1rygUMnmlUJ88fzCCULCLn7oE5kb2+tRB+MWq1QDZT6ObT5RrR8HFRKqg==} cpu: [x64] os: [linux] + libc: [musl] + + '@rollup/rollup-linux-x64-musl@4.61.1': + resolution: {integrity: sha512-qy5pBvZbqNFheBz61R1rzsezjm0J7O2oNGoWtGoY89SZYLUfxAJTBAqDChqAIdB4rCiIbi9nF7yZ83GnNiLwSw==} + cpu: [x64] + os: [linux] + libc: [musl] + + '@rollup/rollup-openbsd-x64@4.61.1': + resolution: {integrity: sha512-E83TXjI4zm0+5f2qO+UOudaCYIhYwpJ5jq6YCZNIZ+6CbfhKrkAGezeiASBL9ElxAxFsRS9ZhESv8mfnj6TKeg==} + cpu: [x64] + os: [openbsd] '@rollup/rollup-openharmony-arm64@4.53.5': resolution: {integrity: sha512-3DFiLPnTxiOQV993fMc+KO8zXHTcIjgaInrqlG8zDp1TlhYl6WgrOHuJkJQ6M8zHEcntSJsUp1XFZSY8C1DYbg==} cpu: [arm64] os: [openharmony] + '@rollup/rollup-openharmony-arm64@4.61.1': + resolution: {integrity: sha512-fbWnKqVkjrJN38vNe3ahkbk6iejS/3b0Nt7EEtPpE6RBacZcGXNKbzfHN3GUUlXOPghUg0j6XUGrtjX9z1sIvA==} + cpu: [arm64] + os: [openharmony] + '@rollup/rollup-win32-arm64-msvc@4.53.5': resolution: {integrity: sha512-nggc/wPpNTgjGg75hu+Q/3i32R00Lq1B6N1DO7MCU340MRKL3WZJMjA9U4K4gzy3dkZPXm9E1Nc81FItBVGRlA==} cpu: [arm64] os: [win32] + '@rollup/rollup-win32-arm64-msvc@4.61.1': + resolution: {integrity: sha512-ArMl38iVAbk0New1ogihQNY6iphLi4ZaRsa037gUzv5yeKPY8TD3Dmy4x2RNC1VztU/uqm+G+/RwFrSka3Oy2g==} + cpu: [arm64] + os: [win32] + '@rollup/rollup-win32-ia32-msvc@4.53.5': resolution: {integrity: sha512-U/54pTbdQpPLBdEzCT6NBCFAfSZMvmjr0twhnD9f4EIvlm9wy3jjQ38yQj1AGznrNO65EWQMgm/QUjuIVrYF9w==} cpu: [ia32] os: [win32] + '@rollup/rollup-win32-ia32-msvc@4.61.1': + resolution: {integrity: sha512-0mYtjHS9ucAbcATycCNK9IGBk/cCe/ma7EmSLGZdsxnOA8cjRIyU04wDpVAD9NiOfLUR9KTxdiO53uOkherqjQ==} + cpu: [ia32] + os: [win32] + '@rollup/rollup-win32-x64-gnu@4.53.5': resolution: {integrity: sha512-2NqKgZSuLH9SXBBV2dWNRCZmocgSOx8OJSdpRaEcRlIfX8YrKxUT6z0F1NpvDVhOsl190UFTRh2F2WDWWCYp3A==} cpu: [x64] os: [win32] + '@rollup/rollup-win32-x64-gnu@4.61.1': + resolution: {integrity: sha512-gK1iCEPfpoSG9wfBihXxvBMi8ZfcWffYkEsC/Eih+iFENTaewvNcrEQ69lIOWYO5pePHKLHHO7nq5AILGO/HQQ==} + cpu: [x64] + os: [win32] + '@rollup/rollup-win32-x64-msvc@4.53.5': resolution: {integrity: sha512-JRpZUhCfhZ4keB5v0fe02gQJy05GqboPOaxvjugW04RLSYYoB/9t2lx2u/tMs/Na/1NXfY8QYjgRljRpN+MjTQ==} cpu: [x64] os: [win32] + '@rollup/rollup-win32-x64-msvc@4.61.1': + resolution: {integrity: sha512-X+zaP2x+j4RXGfbp/seSoRHWnPxzApilDszisZxbYH5C/jTxFhCtDNdPGZb9lJyYPs24wGxruPF7Y+sIXt9Gzw==} + cpu: [x64] + os: [win32] + '@rspack/binding-darwin-arm64@1.6.8': resolution: {integrity: sha512-e8CTQtzaeGnf+BIzR7wRMUwKfIg0jd/sxMRc1Vd0bCMHBhSN9EsGoMuJJaKeRrSmy2nwMCNWHIG+TvT1CEKg+A==} cpu: [arm64] @@ -5880,21 +6276,25 @@ packages: resolution: {integrity: sha512-fvZX6xZPvBT8qipSpvkKMX5M7yd2BSpZNCZXcefw6gA3uC7LI3gu+er0LrDXY1PtPzVuHTyDx+abwWpagV3PiQ==} cpu: [arm64] os: [linux] + libc: [glibc] '@rspack/binding-linux-arm64-musl@1.6.8': resolution: {integrity: sha512-++XMKcMNrt59HcFBLnRaJcn70k3X0GwkAegZBVpel8xYIAgvoXT5+L8P1ExId/yTFxqedaz8DbcxQnNmMozviw==} cpu: [arm64] os: [linux] + libc: [musl] '@rspack/binding-linux-x64-gnu@1.6.8': resolution: {integrity: sha512-tv3BWkTE1TndfX+DsE1rSTg8fBevCxujNZ3MlfZ22Wfy9x1FMXTJlWG8VIOXmaaJ1wUHzv8S7cE2YUUJ2LuiCg==} cpu: [x64] os: [linux] + libc: [glibc] '@rspack/binding-linux-x64-musl@1.6.8': resolution: {integrity: sha512-DCGgZ5/in1O3FjHWqXnDsncRy+48cMhfuUAAUyl0yDj1NpsZu9pP+xfGLvGcQTiYrVl7IH9Aojf1eShP/77WGA==} cpu: [x64] os: [linux] + libc: [musl] '@rspack/binding-wasm32-wasi@1.6.8': resolution: {integrity: sha512-VUwdhl/lI4m6o1OGCZ9JwtMjTV/yLY5VZTQdEPKb40JMTlmZ5MBlr5xk7ByaXXYHr6I+qnqEm73iMKQvg6iknw==} @@ -5941,6 +6341,14 @@ packages: '@types/node': optional: true + '@rushstack/node-core-library@5.23.1': + resolution: {integrity: sha512-wlKmIKIYCKuCASbITvOxLZXepPbwXvrv7S6ig6XNWFchSyhL/E2txmVXspHY49Wu2dzf7nI27a2k/yV5BA3EiA==} + peerDependencies: + '@types/node': '*' + peerDependenciesMeta: + '@types/node': + optional: true + '@rushstack/problem-matcher@0.1.1': resolution: {integrity: sha512-Fm5XtS7+G8HLcJHCWpES5VmeMyjAKaWeyZU5qPzZC+22mPlJzAsOxymHiWIfuirtPckX3aptWws+K2d0BzniJA==} peerDependencies: @@ -5949,9 +6357,20 @@ packages: '@types/node': optional: true + '@rushstack/problem-matcher@0.2.1': + resolution: {integrity: sha512-gulfhBs6n+I5b7DvjKRfhMGyUejtSgOHTclF/eONr8hcgF1APEDjhxIsfdUYYMzC3rvLwGluqLjbwCFZ8nxrog==} + peerDependencies: + '@types/node': '*' + peerDependenciesMeta: + '@types/node': + optional: true + '@rushstack/rig-package@0.6.0': resolution: {integrity: sha512-ZQmfzsLE2+Y91GF15c65L/slMRVhF6Hycq04D4TwtdGaUAbIXXg9c5pKA5KFU7M4QMaihoobp9JJYpYcaY3zOw==} + '@rushstack/rig-package@0.7.3': + resolution: {integrity: sha512-aAA518n6wxxjCfnTAOjQnm7ngNE0FVHxHAw2pxKlIhxrMn0XQjGcXKF0oKWpjBgJOmsaJpVob/v+zr3zxgPWuA==} + '@rushstack/terminal@0.19.5': resolution: {integrity: sha512-6k5tpdB88G0K7QrH/3yfKO84HK9ggftfUZ51p7fePyCE7+RLLHkWZbID9OFWbXuna+eeCFE7AkKnRMHMxNbz7Q==} peerDependencies: @@ -5960,9 +6379,20 @@ packages: '@types/node': optional: true + '@rushstack/terminal@0.24.0': + resolution: {integrity: sha512-8ZQS4MMaGsv27EXCBiH7WMPkRZrffeDoIevs6z9TM5dzqiY6+Hn4evfK/G+gvgBTjfvfkHIZPQQmalmI2sM4TQ==} + peerDependencies: + '@types/node': '*' + peerDependenciesMeta: + '@types/node': + optional: true + '@rushstack/ts-command-line@5.1.5': resolution: {integrity: sha512-YmrFTFUdHXblYSa+Xc9OO9FsL/XFcckZy0ycQ6q7VSBsVs5P0uD9vcges5Q9vctGlVdu27w+Ct6IuJ458V0cTQ==} + '@rushstack/ts-command-line@5.3.9': + resolution: {integrity: sha512-GIHqU+sRGQ3LGWAZu1O+9Yh++qwtyNIIGuNbcWHJjBTm2qRez0cwINUHZ+pQLR8UuzZDcMajrDaNbUYoaL/XtQ==} + '@samchon/openapi@2.5.3': resolution: {integrity: sha512-gLcGqPGsr/V43yNrhC+5E8ZR8y1JdLZDgkC6ULg+B03uvmdS2C7qIXpIWUe19MUPvXt5SCpjhvOykomEspinaw==} @@ -6037,10 +6467,6 @@ packages: '@sinclair/typebox@0.34.41': resolution: {integrity: sha512-6gS8pZzSXdyRHTIqoqSVknxolr1kzfy4/CeDnrzsVz8TTIWUbOBr6gnzOmTYJ3eXQNh4IYHIGi5aIL7sOZ2G/g==} - '@sindresorhus/chunkify@1.0.0': - resolution: {integrity: sha512-YJOcVaEasXWcttXetXn0jd6Gtm9wFHQ1gViTPcxhESwkMCOoA4kwFsNr9EGcmsARGx7jXQZWmOR4zQotRcI9hw==} - engines: {node: '>=18'} - '@sindresorhus/is@5.6.0': resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==} engines: {node: '>=14.16'} @@ -6070,6 +6496,9 @@ packages: '@sinonjs/text-encoding@0.7.3': resolution: {integrity: sha512-DE427ROAphMQzU4ENbliGYrBSYPXF+TtLg9S8vzeA+OF4ZKzoDdzfL8sxuMUGS/lgRhM6j1URSk9ghf7Xo1tyA==} + deprecated: |- + Deprecated: no longer maintained and no longer used by Sinon packages. See + https://github.com/sinonjs/nise/issues/243 for replacement details. '@size-limit/esbuild-why@11.1.4': resolution: {integrity: sha512-bcT68pnfhqSZmNYGRMyer0c3FT33AVBsBHJhXzWGxxOzzQ6v1/Ke4bSr8iri4NZTFIZqLSV+/QB/5TKDy3v4Dg==} @@ -6077,18 +6506,36 @@ packages: peerDependencies: size-limit: 11.1.4 + '@size-limit/esbuild-why@11.2.0': + resolution: {integrity: sha512-VtoQbbkvFbF314LWEaEp1+IjG0DH+9w6nP//D6Gd48SEAPLoBgqk287mjYTF9WYxg9N5lo8KjpXxEFk4gOXNpw==} + engines: {node: ^18.0.0 || >=20.0.0} + peerDependencies: + size-limit: 11.2.0 + '@size-limit/esbuild@11.1.4': resolution: {integrity: sha512-Nxh+Fw4Z7sFjRLeT7GDZIy297VXyJrMvG20UDSWP31QgglriEBDkW9U77T7W6js5FaEr89bYVrGzpHfmE1CLFw==} engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: size-limit: 11.1.4 + '@size-limit/esbuild@11.2.0': + resolution: {integrity: sha512-vSg9H0WxGQPRzDnBzeDyD9XT0Zdq0L+AI3+77/JhxznbSCMJMMr8ndaWVQRhOsixl97N0oD4pRFw2+R1Lcvi6A==} + engines: {node: ^18.0.0 || >=20.0.0} + peerDependencies: + size-limit: 11.2.0 + '@size-limit/file@11.1.4': resolution: {integrity: sha512-QxnGj9cxhCEuqMAV01gqonXIKcc+caZqFHZpV51oL2ZJNGSPP9Q/yyf+7HbVe00faOFd1dZZwMwzZmX7HQ9LbA==} engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: size-limit: 11.1.4 + '@size-limit/file@11.2.0': + resolution: {integrity: sha512-OZHE3putEkQ/fgzz3Tp/0hSmfVo3wyTpOJSRNm6AmcwX4Nm9YtTfbQQ/hZRwbBFR23S7x2Sd9EbqYzngKwbRoA==} + engines: {node: ^18.0.0 || >=20.0.0} + peerDependencies: + size-limit: 11.2.0 + '@smithy/abort-controller@4.2.7': resolution: {integrity: sha512-rzMY6CaKx2qxrbYbqjXWS0plqEy7LOdKHS0bg4ixJ6aoGDPNUcLWk/FRNuCILh7GKLG9TFUXYYeQQldMBBwuyw==} engines: {node: '>=18.0.0'} @@ -6305,6 +6752,14 @@ packages: resolution: {integrity: sha512-4aUIteuyxtBUhVdiQqcDhKFitwfd9hqoSDYY2KRXiWtgoWJ9Bmise+KfEPDiVHWeJepvF8xJO9/9+WDIciMFFw==} engines: {node: '>=18.0.0'} + '@storm-software/build-tools@0.158.200': + resolution: {integrity: sha512-nOnv1NTiEDPM4wLTd/Sh/881ZUChmyNpEHOKCVnk2d6WSlh6XLntEdp74L9Xk5ooRPa1MP2lbebeWzqbfcDtxw==} + peerDependencies: + '@nx/devkit': ^22.7.5 + '@nx/js': 22.7.5 + nx: 22.7.5 + typescript: ^5.9.2 + '@storm-software/build-tools@0.158.72': resolution: {integrity: sha512-nq9gFy9UIDo/5Zb8T4uOVm4IhazKyV1IVIJZNYuveb4YviACCTgQMSryW10YWW078BSB1Kq4iBhYzy/0eZfKlA==} peerDependencies: @@ -6317,15 +6772,30 @@ packages: resolution: {integrity: sha512-SpOv1oF5uGM6sA17zihEBDzbWv5e9lQkR4tuWshanytJsaL8/5YUNXc8NnBTv0UoHP8mBwmXGWoLvFSF2Jcq5g==} hasBin: true + '@storm-software/config-tools@1.190.40': + resolution: {integrity: sha512-o6Whl88zEjUqbcW3vnSXOFsqTOXpak77TRh9fa+C5IZoANOSNk8xgu4Ypt9PnDveNU1F9a8pS24/gUjBXhDn3w==} + hasBin: true + peerDependencies: + zod: ^3.25.0 || ^4.0.0 + '@storm-software/config@1.134.72': resolution: {integrity: sha512-0+dXhfXSA0ZUgyQrdVxTGxqGmiHb60mvXNMwbwc7XGmt7vaxyubSi1MBSRhd6mpcRmOYzVPLsQEB8qrKiEQ7uA==} + '@storm-software/config@1.137.72': + resolution: {integrity: sha512-vroAPg3Znq2dqG83NKQJnrUa4zbWUlr1x0EanbiPyyi52S8xdmjB5WHt1dJmbORlCIdWSqdpu48vD5N6wRqZqA==} + peerDependencies: + zod: ^3.25.0 || ^4.0.0 + '@storm-software/cspell@0.45.71': resolution: {integrity: sha512-jxPzm4QswVoMCtBAYTyNTtPVrm8cyL/pZp3FdMMGANE9speDJ4fLTGQlY/bCTHhkFevkwq/Z/sggniaMKj+4Kg==} engines: {node: '>=22.4.0', pnpm: '>=10.3.0'} peerDependencies: cspell: ^8.19.4 + '@storm-software/esbuild@0.53.201': + resolution: {integrity: sha512-Zys+P+8mBcv9qxy6pSRYspmilSUQNHpzFEreTk0F0pVwNZCQCgtt1lovsgPh9JnbQOztPhNx17ewjt/SOaL6+g==} + hasBin: true + '@storm-software/esbuild@0.53.72': resolution: {integrity: sha512-4Wfls2dCqKjBiuF8Yx5jbEwrQfX1F9rAGLCEUYPzGsXniBU3AXZXSXNWBKklCc1S294BKXJn9YrgHqegZpVKUw==} engines: {node: '>=22.4.0', pnpm: '>=10.3.0'} @@ -6372,13 +6842,23 @@ packages: resolution: {integrity: sha512-mUHVpapW/4RIDxPIAbPXSvETIA7gmfMBhr0a7LlF8vzsJTnjHjq4Ikc9OySKRU7LMukBjBSrfehYJLdWA27RtQ==} engines: {node: '>=22.4.0', pnpm: '>=10.3.0'} + '@storm-software/npm-tools@0.6.158': + resolution: {integrity: sha512-6oorCcjZdPXVwBNoHsVUGkMo0Yqg3vw8rQcMW7F6TvA7JxMrdDdyHrvSJFGyQ6ELWfBv6XLruE7wO7zb2vsh7w==} + '@storm-software/npm-tools@0.6.29': resolution: {integrity: sha512-w93i5dReoJg4gurD7yKmYMIwE5N9n1XidmiCrD6FO5rypfBBwtw/SQeANs7LIv4myOQWCH+KJVuDXtWQg9Z/AA==} + '@storm-software/package-constants@0.1.53': + resolution: {integrity: sha512-Ae0oDv7IzQf4iox1aFQZEPUtOPRnDHTwHgcXepKm6BT/OwEKCUGp8PUj8X6woxtoVA+WoI6JaJlipdNlJHJcqA==} + '@storm-software/pnpm-tools@0.6.74': resolution: {integrity: sha512-nTjn4V/Jfram7JfEWfiiIJ5FbyxYFk2OeikVoM/m9f+ph+hACZRN+C/WwBPNSlnWS6I8oo2Kx2ejN56IaCGiag==} hasBin: true + '@storm-software/pnpm-tools@0.7.51': + resolution: {integrity: sha512-RZV2poi5frwe1hulj0fZ+HD+PwfV7uCAWD82RwUeLgcEtTS8euC2JtMiX9cdvglviKnu8ooJIOQ1uhblGaQcTw==} + hasBin: true + '@storm-software/prettier@0.57.71': resolution: {integrity: sha512-+t1Xy1w9Qgx4y3taeEGv6PY25e9O2GnYEN8U9I7U/TKFiSyEyqFqYYEt9IltbwbN9xCFvUIPT0zDK4aKgiyUNQ==} peerDependencies: @@ -6399,10 +6879,30 @@ packages: prettier-plugin-tailwindcss: optional: true - '@storm-software/testing-tools@1.119.71': - resolution: {integrity: sha512-14FZt/jKX8TNVl8APtxI8A75VWFCDNR+cqy586Rp6dEV3d+eUZ/Sfcy5jY0qXuwzNrAztmDU4t2LrXhG7Hy99g==} + '@storm-software/prettier@0.59.92': + resolution: {integrity: sha512-4cgM3cTkh1PmZZ6UncR4WYQ70pL1hN2vQARCKD/7M6BYJkbaumD0+iSy5G9xVV+MFEjPzMIa5xO49urUtvvjmA==} peerDependencies: - '@nx/jest': ^22.2.3 + prettier: ^3.8.3 + prettier-plugin-astro: ^0.14.1 + prettier-plugin-organize-imports: ^4.0.0 + prettier-plugin-packagejson: ^3.0.0 + prettier-plugin-prisma: ^5.0.0 + prettier-plugin-sh: ^0.15.0 + prettier-plugin-solidity: 1.3.1 + prettier-plugin-tailwindcss: 0.6.5 + prettier-plugin-toml: ^2.0.4 + peerDependenciesMeta: + prettier-plugin-astro: + optional: true + prettier-plugin-solidity: + optional: true + prettier-plugin-tailwindcss: + optional: true + + '@storm-software/testing-tools@1.119.193': + resolution: {integrity: sha512-AvY/7RgiWL3v17MIi7zAA3BqwA3jYbETN5KJ0ReQu+4PWCCO1Lc14VYxlw69kiJ7PgHi+9iqf+vUHmS3BT0pFw==} + peerDependencies: + '@nx/jest': 22.7.5 jest: 30.0.5 '@storm-software/tsconfig@0.47.59': @@ -6422,6 +6922,19 @@ packages: '@microsoft/tsdoc-config': optional: true + '@storm-software/tsdown@0.45.201': + resolution: {integrity: sha512-6BAqDvOVKrpd1IC2ARwhU4H+9UET8vfQaLvz8upmxoczcJJDyr6K1BG9AqA7mvHP1lpjlWEvsFgYxPMMrHEp9w==} + hasBin: true + peerDependencies: + spdx-exceptions: ^2.5.0 + spdx-license-ids: ^3.0.20 + tsdown: '>=0.15.4' + peerDependenciesMeta: + spdx-exceptions: + optional: true + spdx-license-ids: + optional: true + '@storm-software/tsdown@0.45.72': resolution: {integrity: sha512-Bm2mco6ZNiabIOCduJ5hP18egikC7uSlButGim/BpERkofLxRTVV1eo4sizyP8ggHZbafb1lKPxt0NUPImp4tQ==} hasBin: true @@ -6438,9 +6951,28 @@ packages: spdx-license-ids: optional: true + '@storm-software/tsup@0.2.198': + resolution: {integrity: sha512-hD8zEn5bNdMjhEsJ8iCtdeNlWdMV+9drCf35RD/NgrtAPXKlGgif/EAI4eo36Qm2c1tfCk282hUM+TcQ24408w==} + '@storm-software/tsup@0.2.70': resolution: {integrity: sha512-ti9O+e3PMaeJTW+uABOMr9rZC2xUf8ldfaFfQpOMTxAQJKCcj6kntAACpXs1WVe1RroqDbZETVu6ROTVkVgXVQ==} + '@storm-software/unbuild@0.57.201': + resolution: {integrity: sha512-87+cCelaVHe/Co3MItC2+YAEB6bL99LuDQ71POMd+rLvQXy7W62S71c0C2uJecsCF+epetpPnUQDFDYv1FPxTQ==} + hasBin: true + peerDependencies: + '@nx/devkit': ^22.7.5 + '@nx/js': 22.7.5 + '@swc/core': 1.7.26 + nx: 22.7.5 + rollup: ^4.60.4 + typescript: ^5.9.2 + peerDependenciesMeta: + '@swc/core': + optional: true + nx: + optional: true + '@storm-software/unbuild@0.57.72': resolution: {integrity: sha512-xM2e6TP12HQQM+ZeHmKQM6c09V5GMu7K0HlpWXx7gkjXg6dw5JQqqmOt2lX4DX8TlxKMs/mnyo4G+5qfemBmTA==} hasBin: true @@ -6473,6 +7005,17 @@ packages: '@napi-rs/cli': optional: true + '@storm-software/workspace-tools@1.296.18': + resolution: {integrity: sha512-cYvhf1q4VQVIjK9unKbnE5oen8QHB68nihdtmXBQ6/QvROep3136i84/ZNCT2PcImPneipg5hWXrsfBhfvzeYQ==} + peerDependencies: + '@napi-rs/cli': ^3.4.1 + markdownlint-cli2: ^0.17.2 + nx: '>=22.7.1' + prettier: '>=3.8.3' + peerDependenciesMeta: + '@napi-rs/cli': + optional: true + '@storm-stack/cli@0.28.1': resolution: {integrity: sha512-edKkzcrHB117GT0W4A/aA+t4TZ3Hw4VV2fBvR/FQ9BEY9YfhkZ9t2NEBJpt4k8ppCoT5MZgUYUdQLGwrWhlhJg==} hasBin: true @@ -6567,8 +7110,6 @@ packages: '@storybook/icons@2.0.1': resolution: {integrity: sha512-/smVjw88yK3CKsiuR71vNgWQ9+NuY2L+e8X7IMrFjexjm6ZR8ULrV2DRkTA61aV6ryefslzHEGDInGpnNeIocg==} peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 @@ -6775,24 +7316,28 @@ packages: engines: {node: '>=10'} cpu: [arm64] os: [linux] + libc: [glibc] '@swc/core-linux-arm64-musl@1.7.26': resolution: {integrity: sha512-3w8iZICMkQQON0uIcvz7+Q1MPOW6hJ4O5ETjA0LSP/tuKqx30hIniCGOgPDnv3UTMruLUnQbtBwVCZTBKR3Rkg==} engines: {node: '>=10'} cpu: [arm64] os: [linux] + libc: [musl] '@swc/core-linux-x64-gnu@1.7.26': resolution: {integrity: sha512-c+pp9Zkk2lqb06bNGkR2Looxrs7FtGDMA4/aHjZcCqATgp348hOKH5WPvNLBl+yPrISuWjbKDVn3NgAvfvpH4w==} engines: {node: '>=10'} cpu: [x64] os: [linux] + libc: [glibc] '@swc/core-linux-x64-musl@1.7.26': resolution: {integrity: sha512-PgtyfHBF6xG87dUSSdTJHwZ3/8vWZfNIXQV2GlwEpslrOkGqy+WaiiyE7Of7z9AvDILfBBBcJvJ/r8u980wAfQ==} engines: {node: '>=10'} cpu: [x64] os: [linux] + libc: [musl] '@swc/core-win32-arm64-msvc@1.7.26': resolution: {integrity: sha512-9TNXPIJqFynlAOrRD6tUQjMq7KApSklK3R/tXgIxc7Qx+lWu8hlDQ/kVPLpU7PWvMMwC/3hKBW+p5f+Tms1hmA==} @@ -6890,9 +7435,6 @@ packages: '@tybys/wasm-util@0.9.0': resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==} - '@types/accepts@1.3.7': - resolution: {integrity: sha512-Pay9fq2lM2wXPWbteBsRAGiWH2hig4ZE2asK+mm7kUzlxRTfL961rj89I6zV/E3PcIkDqyuBEcMxFT7rccugeQ==} - '@types/argparse@1.0.38': resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==} @@ -6902,15 +7444,6 @@ packages: '@types/aws-lambda@8.10.143': resolution: {integrity: sha512-u5vzlcR14ge/4pMTTMDQr3MF0wEe38B2F9o84uC4F43vN5DGTy63npRrB6jQhyt+C0lGv4ZfiRcRkqJoZuPnmg==} - '@types/babel-generator@6.25.8': - resolution: {integrity: sha512-f5l89J0UpYhTE6TFCxy3X+8pJVru1eig1fcvF9qHmOk9h1VxZimd+++tu5GShntCOdhE/MoZZ0SlpGTyh4XrKg==} - - '@types/babel-plugin-macros@3.1.3': - resolution: {integrity: sha512-JU+MgpsHK3taY18mBETy5XlwY6LVngte7QXYzUuXEaaX0CN8dBqbjXtADe+gJmkSQE1FJHufzPj++OWZlhRmGw==} - - '@types/babel-types@7.0.16': - resolution: {integrity: sha512-5QXs9GBFTNTmilLlWBhnsprqpjfrotyrnzUdwDrywEL/DA4LuCWQT300BTOXA3Y9ngT9F2uvmCoIxI6z8DlJEA==} - '@types/babel__core@7.20.5': resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} @@ -6923,40 +7456,15 @@ packages: '@types/babel__traverse@7.28.0': resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==} - '@types/body-parser@1.19.6': - resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==} - - '@types/boolbase@1.0.3': - resolution: {integrity: sha512-82A4AP0cokcm2I9YO1a0TudbJkE6SUjfJjQhxiHer5ZYOzD82YBHCK9ORvKYf4hrYf5479/CUpT2RcspAwJ7OQ==} - - '@types/brace-expansion@1.1.2': - resolution: {integrity: sha512-+YDjlWHMm/zoiQSKhEhL/0HdfYxCVuGlP5tQLm5hoHtxGPAMqyHjGpLqm58YDw7vG+RafAahp7HKXeNIwBP3kQ==} - - '@types/braces@3.0.5': - resolution: {integrity: sha512-SQFof9H+LXeWNz8wDe7oN5zu7ket0qwMu5vZubW4GCJ8Kkeh6nBWUz87+KTz/G3Kqsrp0j/W253XJb3KMEeg3w==} - - '@types/btoa@1.2.5': - resolution: {integrity: sha512-BItINdjZRlcGdI2efwK4bwxY5vEAT0SnIVfMOZVT18wp4900F1Lurqk/9PNdF9hMP1zgFmWbjVEtAsQKVcbqxA==} - '@types/bunyan@1.8.9': resolution: {integrity: sha512-ZqS9JGpBxVOvsawzmVt30sP++gSQMTejCkIAQ3VdadOcRE8izTyW66hufvwLeH+YEGP6Js2AW7Gz+RMyvrEbmw==} - '@types/caniuse-api@3.0.6': - resolution: {integrity: sha512-yMGwHJaqwIEXc3x7EyY3CeS73QG9WeC00w2nZ0/inoRv9DiLIhfvrY6vmXMSKlpRLFxrLcAWJh3JTwYNPl3ihg==} - '@types/chai@5.2.3': resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} - '@types/chardet@1.0.0': - resolution: {integrity: sha512-LweaRCQXungyIWHGNtu8iWdztipE2A8HgUKdqjYcrbyNfafM1D9QcVEsrceH4ELC3VlS1NRirlWieY08AAjuZw==} - deprecated: This is a stub types definition. chardet provides its own type definitions, so you do not need this installed. - '@types/cli-progress@3.11.6': resolution: {integrity: sha512-cE3+jb9WRlu+uOSAugewNpITJDt1VF8dHOopPO4IABFc3SXYL5WE/+PTz/FCdZRRfIujiWW3n3aMbv1eIGVRWA==} - '@types/co@4.6.6': - resolution: {integrity: sha512-m46q2/3TSimTBeA710v73YosbYlEHbuF1mdIg0SGFtqb/lk1bgqF05dhg0KHUyhUQV2Z9vMnSa3MCw/utYHqPg==} - '@types/concat-stream@2.0.3': resolution: {integrity: sha512-3qe4oQAPNwVNwK4C9c8u+VJqv9kez+2MR4qJpoPFfXtgxxif1QbFusvXzK0/Wra2VX07smostI2VMmJNSpZjuQ==} @@ -6966,30 +7474,9 @@ packages: '@types/connect@3.4.38': resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} - '@types/content-disposition@0.5.9': - resolution: {integrity: sha512-8uYXI3Gw35MhiVYhG3s295oihrxRyytcRHjSjqnqZVDDy/xcGBRny7+Xj1Wgfhv5QzRtN2hB2dVRBUX9XW3UcQ==} - '@types/conventional-commits-parser@5.0.2': resolution: {integrity: sha512-BgT2szDXnVypgpNxOK8aL5SGjUdaQbC++WZNjF1Qge3Og2+zhHj+RWhmehLhYyvQwqAmvezruVfOf8+3m74W+g==} - '@types/convert-source-map@2.0.3': - resolution: {integrity: sha512-ag0BfJLZf6CQz8VIuRIEYQ5Ggwk/82uvTQf27RcpyDNbY0Vw49LIPqAxk5tqYfrCs9xDaIMvl4aj7ZopnYL8bA==} - - '@types/cookies@0.9.2': - resolution: {integrity: sha512-1AvkDdZM2dbyFybL4fxpuNCaWyv//0AwsuUk2DWeXyM1/5ZKm6W3z6mQi24RZ4l2ucY+bkSHzbDVpySqPGuV8A==} - - '@types/css-tree@1.0.7': - resolution: {integrity: sha512-Pz+DfVODpQTAV6PwPBK6kzyy7+f6EyPbr1+mYkc1YolJfl2NAJ4wbg0TC/AJPBsqn9jWfyiO19A/sgpvFLfqnw==} - - '@types/css-tree@2.3.11': - resolution: {integrity: sha512-aEokibJOI77uIlqoBOkVbaQGC9zII0A+JH1kcTNKW2CwyYWD8KM6qdo+4c77wD3wZOQfJuNWAr9M4hdk+YhDIg==} - - '@types/csso@4.2.0': - resolution: {integrity: sha512-tGMZcJGgeIA67qbbm/ZKUi7ZyiTETEL0X4opRpFzULbIE1Kyt6EfOVSctw4N/WrEJZwmKw0J+1i/OApm6/CAOQ==} - - '@types/csso@5.0.4': - resolution: {integrity: sha512-W/FsRkm/9c04x9ON+bj+HQ0cSgNkG1LvcfuBCpkP7cpikM7+RkrNFLGtiofb++xBG6KGMUycLoDbi9/K621ZCw==} - '@types/d3-array@3.2.2': resolution: {integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==} @@ -7092,15 +7579,11 @@ packages: '@types/eslint-scope@3.7.7': resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} - '@types/eslint-visitor-keys@3.3.2': - resolution: {integrity: sha512-Jv7Ga0rieI+HtsG18BwW7FJZbxtm5XZxPRbQN9mSyek6Dt29YEkeWGxnUvwwzQ76j8BrS5nhfLF2tch+9vesuQ==} - deprecated: This is a stub types definition. eslint-visitor-keys provides its own type definitions, so you do not need this installed. - '@types/eslint@9.6.1': resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==} - '@types/esprima@4.0.3': - resolution: {integrity: sha512-jo14dIWVVtF0iMsKkYek6++4cWJjwpvog+rchLulwgFJGTXqIeTdCOvY0B3yMLTaIwMcKCdJ6mQbSR6wYHy98A==} + '@types/esquery@1.5.4': + resolution: {integrity: sha512-yYO4Q8H+KJHKW1rEeSzHxcZi90durqYgWVfnh5K6ZADVBjBv2e1NEveYX5yT2bffgN7RqzH3k9930m+i2yBoMA==} '@types/estree-jsx@1.0.5': resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} @@ -7108,75 +7591,33 @@ packages: '@types/estree@1.0.8': resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} - '@types/express-serve-static-core@5.1.0': - resolution: {integrity: sha512-jnHMsrd0Mwa9Cf4IdOzbz543y4XJepXrbia2T4b6+spXC2We3t1y6K44D3mR8XMFSXMCf3/l7rCgddfx7UNVBA==} - - '@types/express@5.0.6': - resolution: {integrity: sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==} - - '@types/fb-watchman@2.0.6': - resolution: {integrity: sha512-1uLrko2lamBq7v5gZQOEnHa+GzK7wkPeGndFijhhK5kjqqXLVfzfeL6bVLiKCqVNaM5BVVcKRQ2Z57AzH4HcyA==} - - '@types/file-entry-cache@5.0.4': - resolution: {integrity: sha512-Fa2gRWMSgbVEJ6GeDkFfBEDK/wpFBHkfeRt7oaeOjuPMdPr8KtA3y+onRuZNxgPOwyABD1chCzmE7pz10ouNog==} - - '@types/fs-extra@9.0.6': - resolution: {integrity: sha512-ecNRHw4clCkowNOBJH1e77nvbPxHYnWIXMv1IAoG/9+MYGkgoyr3Ppxr7XYFNL41V422EDhyV4/4SSK8L2mlig==} + '@types/estree@1.0.9': + resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==} '@types/geojson@7946.0.16': resolution: {integrity: sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==} - '@types/glob-parent@5.1.3': - resolution: {integrity: sha512-p+NciRH8TRvrgISOCQ55CP+lktMmDpOXsp4spULIIz0L4aJ6G9zFX+N0UZ2xulmJRgaQLRxXIp4xHdL6YOQjDg==} - - '@types/glob-to-regexp@0.4.4': - resolution: {integrity: sha512-nDKoaKJYbnn1MZxUY0cA1bPmmgZbg0cTq7Rh13d0KWYNOiKbqoR+2d89SnRPszGh7ROzSwZ/GOjZ4jPbmmZ6Eg==} - - '@types/graceful-fs@4.1.9': - resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} - '@types/hast@3.0.4': resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} - '@types/http-assert@1.5.6': - resolution: {integrity: sha512-TTEwmtjgVbYAzZYWyeHPrrtWnfVkm8tQkP8P21uQifPgMRgjrow3XDEYqucuC8SKZJT7pUnhU/JymvjggxO9vw==} - '@types/http-cache-semantics@4.0.4': resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} - '@types/http-errors@2.0.5': - resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==} - '@types/http-proxy@1.17.17': resolution: {integrity: sha512-ED6LB+Z1AVylNTu7hdzuBqOgMnvG/ld6wGCG8wFnAzKX5uyW2K3WD52v0gnLCTK/VLpXtKckgWuyScYK6cSPaw==} '@types/is-empty@1.2.3': resolution: {integrity: sha512-4J1l5d79hoIvsrKh5VUKVRA1aIdsOb10Hu5j3J2VfP/msDnfTdGPmNp2E1Wg+vs97Bktzo+MZePFFXSGoykYJw==} - '@types/is-glob@4.0.4': - resolution: {integrity: sha512-3mFBtIPQ0TQetKRDe94g8YrxJZxdMillMGegyv6zRBXvq4peRRhf2wLZ/Dl53emtTsC29dQQBwYvovS20yXpiQ==} - '@types/istanbul-lib-coverage@2.0.6': resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} - '@types/istanbul-lib-instrument@1.7.8': - resolution: {integrity: sha512-y8t6GUkn5bTXry7Zu/2HjTakxLNtvKbIQnAiGR2M3orrdZF+zp1J9ZAKfj3VM1k3sJodkjEcWfdCJ0bEAKp6CA==} - '@types/istanbul-lib-report@3.0.3': resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} - '@types/istanbul-lib-source-maps@4.0.4': - resolution: {integrity: sha512-p+nSH0hBMLvuqgnT0rbBnDcfO3IuOZrLU+Yf4x0BhGVmXynB+gm9D35gAvWeMuk+riik5Rj12NBQm8rnzIPH3g==} - '@types/istanbul-reports@3.0.4': resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} - '@types/js-yaml@3.12.10': - resolution: {integrity: sha512-/Mtaq/wf+HxXpvhzFYzrzCqNRcA958sW++7JOFC8nPrZcvfi/TrzOaaGbvt27ltJB2NQbHVAg5a1wUCsyMH7NA==} - - '@types/js-yaml@4.0.9': - resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==} - '@types/json-schema@7.0.15': resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} @@ -7186,15 +7627,6 @@ packages: '@types/katex@0.16.7': resolution: {integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==} - '@types/keygrip@1.0.6': - resolution: {integrity: sha512-lZuNAY9xeJt7Bx4t4dx0rYCDqGPW8RXhQZK1td7d4H6E9zYbLoOtjBvfwdTKpsyxQI/2jv+armjX/RW+ZNpXOQ==} - - '@types/koa-compose@3.2.9': - resolution: {integrity: sha512-BroAZ9FTvPiCy0Pi8tjD1OfJ7bgU1gQf0eR6e1Vm+JJATy9eKOG3hQMFtMciMawiSOVnLMdmUOC46s7HBhSTsA==} - - '@types/koa@2.15.0': - resolution: {integrity: sha512-7QFsywoE5URbuVnG3loe03QXuGajrnotr3gQkXcEBShORai23MePfFYdhz90FEtBBpkyIYQbVD+evKtloCgX3g==} - '@types/less@3.0.8': resolution: {integrity: sha512-Gjm4+H9noDJgu5EdT3rUw5MhPBag46fiOy27BefvWkNL8mlZnKnCaVVVTLKj6RYXed9b62CPKnPav9govyQDzA==} @@ -7210,21 +7642,6 @@ packages: '@types/memcached@2.2.10': resolution: {integrity: sha512-AM9smvZN55Gzs2wRrqeMHVP7KE8KWgCJO/XL5yCly2xF6EKa4YlbpK+cLSAH4NG/Ah64HrlegmGqW8kYws7Vxg==} - '@types/merge-stream@1.1.5': - resolution: {integrity: sha512-z2DPerX+vlR3C88ec2jqJCO1/yVOGYaVL0JaB2/ri/NJqU8sNnT9NRpDZgJAJAO3Ve72CHIcnSqjU8HWjlHxJg==} - - '@types/merge2@1.4.4': - resolution: {integrity: sha512-WZLSif3sHKMlq6vW22R9ub5f+/CEFFlSCY8actv9WBU/8RMJes5zHog9+8oEVLTkaIPaM8fp8XpLaHZggPWN9Q==} - - '@types/micromatch@4.0.10': - resolution: {integrity: sha512-5jOhFDElqr4DKTrTEbnW8DZ4Hz5LRUEmyrGpCMrD/NphYv3nUnaF08xmSLx1rGGnyEs/kFnhiw6dCgcDqMr5PQ==} - - '@types/micromatch@4.0.9': - resolution: {integrity: sha512-7V+8ncr22h4UoYRLnLXSpTxjQrNUXtWHGeMPRJt1nULXI57G9bIcpyrHlmrQ7QK24EyyuXvYcSSWAM8GA9nqCg==} - - '@types/mime-types@2.1.4': - resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==} - '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} @@ -7234,18 +7651,12 @@ packages: '@types/mysql@2.15.26': resolution: {integrity: sha512-DSLCOXhkvfS5WNNPbfn2KdICAmk8lLc+/PNvnPnF7gOdMZCxopXduqv0OQ13y/yA/zXTSikZZqVgybUxOEg6YQ==} - '@types/natural-compare@1.4.3': - resolution: {integrity: sha512-XCAxy+Gg6+S6VagwzcknnvCKujj/bVv1q+GFuCrFEelqaZPqJoC+FeXLwc2dp+oLP7qDZQ4ZfQiTJQ9sIUmlLw==} - - '@types/node-notifier@8.0.5': - resolution: {integrity: sha512-LX7+8MtTsv6szumAp6WOy87nqMEdGhhry/Qfprjm1Ma6REjVzeF7SCyvPtp5RaF6IkXCS9V4ra8g5fwvf2ZAYg==} - - '@types/node-schedule@2.1.7': - resolution: {integrity: sha512-G7Z3R9H7r3TowoH6D2pkzUHPhcJrDF4Jz1JOQ80AX0K2DWTHoN9VC94XzFAPNMdbW9TBzMZ3LjpFi7RYdbxtXA==} - '@types/node@15.14.9': resolution: {integrity: sha512-qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==} + '@types/node@20.19.42': + resolution: {integrity: sha512-5L7SUaFC1RyDraj2yRhyBzHTobyXHmohD100CChNtyPyleoq37Mqab5Gn8XEKI04dfN/oqPdpHk38MgcQWHbZg==} + '@types/node@20.9.0': resolution: {integrity: sha512-nekiGu2NDb1BcVofVcEKMIwzlx4NjHlcjhoxxKBNLtz15Y1z7MYf549DFvkHSId02Ax6kGwWntIBPC3l/JZcmw==} @@ -7267,15 +7678,9 @@ packages: '@types/pg@8.6.1': resolution: {integrity: sha512-1Kc4oAGzAl7uqUStZCDvaLFqZrW9qWSjXOmBfdgyBP5La7Us6Mg4GBvRlSoaZMhQF/zSj1C8CtKMBkoiT8eL8w==} - '@types/picomatch@4.0.2': - resolution: {integrity: sha512-qHHxQ+P9PysNEGbALT8f8YOSHW0KJu6l2xU8DYY0fu/EmGxXdVnuTLvFUvBgPJMSqXq29SYHveejeAha+4AYgA==} - '@types/pluralize@0.0.33': resolution: {integrity: sha512-JOqsl+ZoCpP4e8TDke9W79FDcSgPAR0l6pixx2JHkhnRjvShyYiAYw2LVsnA7K08Y6DeOnaU6ujmENO4os/cYg==} - '@types/prettier-linter-helpers@1.0.4': - resolution: {integrity: sha512-ZGhi9aiUREt6bUsqdArRElJFay8b+C1IjbF0ETRFVBJd/g6bAiwzRIgqyepZo+LiESL2d2tdTXOPWIrcj+AMpw==} - '@types/prettier@3.0.0': resolution: {integrity: sha512-mFMBfMOz8QxhYVbuINtswBp9VL2b4Y0QqYHwqLz3YbgtfAcat2Dl6Y1o4e22S/OVE6Ebl9m7wWiMT2lSbAs1wA==} deprecated: This is a stub types definition. prettier provides its own type definitions, so you do not need this installed. @@ -7283,12 +7688,6 @@ packages: '@types/prop-types@15.7.15': resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==} - '@types/qs@6.14.0': - resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==} - - '@types/range-parser@1.2.7': - resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - '@types/react-dom@18.3.7': resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==} peerDependencies: @@ -7299,12 +7698,6 @@ packages: peerDependencies: '@types/react': ^19.2.0 - '@types/react-is@17.0.7': - resolution: {integrity: sha512-WrTEiT+c6rgq36QApoy0063uAOdltCrhF0QMXLIgYPaTvIdQhAB8hPb5oGGqX18xToElNILS9UprwU6GyINcJg==} - - '@types/react-is@18.3.1': - resolution: {integrity: sha512-zts4lhQn5ia0cF/y2+3V6Riu0MAfez9/LJYavdM8TvcVl+S91A/7VWxyBT8hbRuWspmuCaiGI0F41OJYGrKhRA==} - '@types/react-transition-group@4.4.12': resolution: {integrity: sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==} peerDependencies: @@ -7313,24 +7706,15 @@ packages: '@types/react@17.0.4': resolution: {integrity: sha512-onz2BqScSFMoTRdJUZUDD/7xrusM8hBA2Fktk2qgaTYPCgPvWnDEgkrOs8hhPUf2jfcIXkJ5yK6VfYormJS3Jw==} - '@types/react@17.0.90': - resolution: {integrity: sha512-P9beVR/x06U9rCJzSxtENnOr4BrbJ6VrsrDTc+73TtHv9XHhryXKbjGRB+6oooB2r0G/pQkD/S4dHo/7jUfwFw==} - '@types/react@18.3.27': resolution: {integrity: sha512-cisd7gxkzjBKU2GgdYrTdtQx1SORymWyaAFhaxQPK9bYO9ot3Y5OikQRvY0VYQtvwjeQnizCINJAenh/V7MK2w==} '@types/react@19.2.7': resolution: {integrity: sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==} - '@types/require-from-string@1.2.3': - resolution: {integrity: sha512-kxLU5xvefySGpp1Z7VCt4m5AhQJUZ8HjW8ADdeS7GieqFPHLAde007fd9bxeXEsFXyaA0LeWIoQXyXP17mGpIg==} - '@types/resolve@1.20.2': resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} - '@types/resolve@1.20.6': - resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} - '@types/retry@0.12.2': resolution: {integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==} @@ -7338,12 +7722,6 @@ packages: resolution: {integrity: sha512-jn7qwGFmJHwUSphV8zZneO3GmtlgLsmhs/LQyVvQbIIa+fzGMUiHI4HXJZL3FT8MJmgXWbLGiVVY7ElvHq6vDA==} deprecated: This is a stub types definition. sass provides its own type definitions, so you do not need this installed. - '@types/sax@1.2.7': - resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==} - - '@types/scheduler@0.16.8': - resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} - '@types/scheduler@0.26.0': resolution: {integrity: sha512-WFHp9YUJQ6CKshqoC37iOlHnQSmxNc795UhB26CyBBttrN9svdIrUjl/NjnNmfcwtncN0h/0PPAFWv9ovP8mLA==} @@ -7353,15 +7731,6 @@ packages: '@types/semver@7.7.1': resolution: {integrity: sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==} - '@types/send@1.2.1': - resolution: {integrity: sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==} - - '@types/serialize-javascript@5.0.4': - resolution: {integrity: sha512-Z2R7UKFuNWCP8eoa2o9e5rkD3hmWxx/1L0CYz0k2BZzGh0PhEVMp9kfGiqEml/0IglwNERXZ2hwNzIrSz/KHTA==} - - '@types/serve-static@2.2.0': - resolution: {integrity: sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==} - '@types/shimmer@1.2.0': resolution: {integrity: sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==} @@ -7371,9 +7740,6 @@ packages: '@types/sinonjs__fake-timers@15.0.1': resolution: {integrity: sha512-Ko2tjWJq8oozHzHV+reuvS5KYIRAokHnGbDwGh/J64LntgpbuylF74ipEL24HCyRjf9FOlBiBHWBR1RlVKsI1w==} - '@types/source-map-support@0.5.10': - resolution: {integrity: sha512-tgVP2H469x9zq34Z0m/fgPewGhg/MLClalNOiPIzQlXrSS2YrKu/xCdSCKnEDwkFha51VKEKB6A9wW26/ZNwzA==} - '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -7383,12 +7749,6 @@ packages: '@types/supports-color@8.1.3': resolution: {integrity: sha512-Hy6UMpxhE3j1tLpl27exp1XqHD7n8chAiNPzWfz16LPZoMMoSc4dzLl6w9qijkEb/r5O1ozdu1CWGA2L83ZeZg==} - '@types/svg-parser@2.0.6': - resolution: {integrity: sha512-xrXwOltwMcLrKy79rv4MoalnD82oYLyXAVeeSyrkvR7XdCH4i7YqLNQWxyZ8KPpawtQShiKOse+pmtLeSLtCfQ==} - - '@types/svgo@2.6.4': - resolution: {integrity: sha512-l4cmyPEckf8moNYHdJ+4wkHvFxjyW6ulm9l4YGaOxeyBWPhBOT0gvni1InpFPdzx1dKf/2s62qGITwxNWnPQng==} - '@types/tedious@4.0.14': resolution: {integrity: sha512-KHPsfX/FoVbUGbyYvk1q9MMQHLPeRZhRJZdO45Q4YjvFkv4hMNghCWTvy7rdKessBsmtz4euWCWAB6/tVpI1Iw==} @@ -7404,15 +7764,9 @@ packages: '@types/wrap-ansi@3.0.0': resolution: {integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==} - '@types/write-file-atomic@4.0.3': - resolution: {integrity: sha512-qdo+vZRchyJIHNeuI1nrpsLw+hnkgqP/8mlaN6Wle/NKhydHmUN9l4p3ZE8yP90AJNJW4uB8HQhedb4f1vNayQ==} - '@types/ws@8.18.1': resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==} - '@types/ws@8.5.12': - resolution: {integrity: sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==} - '@types/yargs-parser@21.0.3': resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} @@ -7563,8 +7917,13 @@ packages: resolution: {integrity: sha512-Xzmnb58+Db78gT/CCj/PVCvK+zxbnsw6F+O1oheYszJbBSdEjVhQi3C/Xttzxgi/GLmpvOggRs1RFpiJ8+c34Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typespec/ts-http-runtime@0.3.6': + resolution: {integrity: sha512-jIXhD0eWQ1JA6ln/5Dltyx22UxWNrw0hZmhy2rlv6m6KgF7kplHx3g0fzi09lNmTJQRR91OlemYp3xFnvDK9og==} + engines: {node: '>=20.0.0'} + '@ungap/structured-clone@1.3.0': resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} + deprecated: Potential CWE-502 - Update to 1.3.1 or higher '@unocss/config@66.5.10': resolution: {integrity: sha512-udBhfMe+2MU70ZdjnRLnwLQ+0EHYJ4f5JjjvHsfmQ0If4KeYmSStWBuX+/LHNQidhl487JiwW1lBDQ8pKHmbiw==} @@ -7620,41 +7979,49 @@ packages: resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==} cpu: [arm64] os: [linux] + libc: [glibc] '@unrs/resolver-binding-linux-arm64-musl@1.11.1': resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==} cpu: [arm64] os: [linux] + libc: [musl] '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1': resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==} cpu: [ppc64] os: [linux] + libc: [glibc] '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1': resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==} cpu: [riscv64] os: [linux] + libc: [glibc] '@unrs/resolver-binding-linux-riscv64-musl@1.11.1': resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==} cpu: [riscv64] os: [linux] + libc: [musl] '@unrs/resolver-binding-linux-s390x-gnu@1.11.1': resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==} cpu: [s390x] os: [linux] + libc: [glibc] '@unrs/resolver-binding-linux-x64-gnu@1.11.1': resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==} cpu: [x64] os: [linux] + libc: [glibc] '@unrs/resolver-binding-linux-x64-musl@1.11.1': resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==} cpu: [x64] os: [linux] + libc: [musl] '@unrs/resolver-binding-wasm32-wasi@1.11.1': resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==} @@ -7683,6 +8050,7 @@ packages: '@verdaccio/commons-api@10.2.0': resolution: {integrity: sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==} engines: {node: '>=8'} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. '@verdaccio/config@8.0.0-next-8.1': resolution: {integrity: sha512-goDVOH4e8xMUxjHybJpi5HwIecVFqzJ9jeNFrRUgtUUn0PtFuNMHgxOeqDKRVboZhc5HK90yed8URK/1O6VsUw==} @@ -7711,6 +8079,7 @@ packages: '@verdaccio/logger-7@8.0.0-next-8.1': resolution: {integrity: sha512-V+/B1Wnct3IZ90q6HkI1a3dqbS0ds7s/5WPrS5cmBeLEw78/OGgF76XkhI2+lett7Un1CjVow7mcebOWcZ/Sqw==} engines: {node: '>=12'} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. '@verdaccio/logger-commons@8.0.0-next-8.1': resolution: {integrity: sha512-jCge//RT4uaK7MarhpzcJeJ5Uvtu/DbJ1wvJQyGiFe+9AvxDGm3EUFXvawLFZ0lzYhmLt1nvm7kevcc3vOm2ZQ==} @@ -7795,9 +8164,57 @@ packages: '@vitest/utils@3.2.4': resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} - '@vscode/vsce@2.21.1': - resolution: {integrity: sha512-f45/aT+HTubfCU2oC7IaWnH9NjOWp668ML002QiFObFRVUCoLtcwepp9mmql/ArFUy+HCHp54Xrq4koTcOD6TA==} - engines: {node: '>= 14'} + '@vscode/vsce-sign-alpine-arm64@2.0.6': + resolution: {integrity: sha512-wKkJBsvKF+f0GfsUuGT0tSW0kZL87QggEiqNqK6/8hvqsXvpx8OsTEc3mnE1kejkh5r+qUyQ7PtF8jZYN0mo8Q==} + cpu: [arm64] + os: [alpine] + + '@vscode/vsce-sign-alpine-x64@2.0.6': + resolution: {integrity: sha512-YoAGlmdK39vKi9jA18i4ufBbd95OqGJxRvF3n6ZbCyziwy3O+JgOpIUPxv5tjeO6gQfx29qBivQ8ZZTUF2Ba0w==} + cpu: [x64] + os: [alpine] + + '@vscode/vsce-sign-darwin-arm64@2.0.6': + resolution: {integrity: sha512-5HMHaJRIQuozm/XQIiJiA0W9uhdblwwl2ZNDSSAeXGO9YhB9MH5C4KIHOmvyjUnKy4UCuiP43VKpIxW1VWP4tQ==} + cpu: [arm64] + os: [darwin] + + '@vscode/vsce-sign-darwin-x64@2.0.6': + resolution: {integrity: sha512-25GsUbTAiNfHSuRItoQafXOIpxlYj+IXb4/qarrXu7kmbH94jlm5sdWSCKrrREs8+GsXF1b+l3OB7VJy5jsykw==} + cpu: [x64] + os: [darwin] + + '@vscode/vsce-sign-linux-arm64@2.0.6': + resolution: {integrity: sha512-cfb1qK7lygtMa4NUl2582nP7aliLYuDEVpAbXJMkDq1qE+olIw/es+C8j1LJwvcRq1I2yWGtSn3EkDp9Dq5FdA==} + cpu: [arm64] + os: [linux] + + '@vscode/vsce-sign-linux-arm@2.0.6': + resolution: {integrity: sha512-UndEc2Xlq4HsuMPnwu7420uqceXjs4yb5W8E2/UkaHBB9OWCwMd3/bRe/1eLe3D8kPpxzcaeTyXiK3RdzS/1CA==} + cpu: [arm] + os: [linux] + + '@vscode/vsce-sign-linux-x64@2.0.6': + resolution: {integrity: sha512-/olerl1A4sOqdP+hjvJ1sbQjKN07Y3DVnxO4gnbn/ahtQvFrdhUi0G1VsZXDNjfqmXw57DmPi5ASnj/8PGZhAA==} + cpu: [x64] + os: [linux] + + '@vscode/vsce-sign-win32-arm64@2.0.6': + resolution: {integrity: sha512-ivM/MiGIY0PJNZBoGtlRBM/xDpwbdlCWomUWuLmIxbi1Cxe/1nooYrEQoaHD8ojVRgzdQEUzMsRbyF5cJJgYOg==} + cpu: [arm64] + os: [win32] + + '@vscode/vsce-sign-win32-x64@2.0.6': + resolution: {integrity: sha512-mgth9Kvze+u8CruYMmhHw6Zgy3GRX2S+Ed5oSokDEK5vPEwGGKnmuXua9tmFhomeAnhgJnL4DCna3TiNuGrBTQ==} + cpu: [x64] + os: [win32] + + '@vscode/vsce-sign@2.0.9': + resolution: {integrity: sha512-8IvaRvtFyzUnGGl3f5+1Cnor3LqaUWvhaUjAYO8Y39OUYlOf3cRd+dowuQYLpZcP3uwSG+mURwjEBOSq4SOJ0g==} + + '@vscode/vsce@2.32.0': + resolution: {integrity: sha512-3EFJfsgrSftIqt3EtdRcAygy/OJ3hstyI1cDmIgkU9CFZW5C+3djr6mfosndCUqcVYuyjmxOK1xmFp/Bq7+NIg==} + engines: {node: '>= 16'} hasBin: true '@vue/reactivity@3.5.26': @@ -7879,10 +8296,6 @@ packages: '@yarnpkg/lockfile@1.1.0': resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} - '@yarnpkg/parsers@3.0.2': - resolution: {integrity: sha512-/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA==} - engines: {node: '>=18.12.0'} - '@zkochan/js-yaml@0.0.7': resolution: {integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==} hasBin: true @@ -7940,9 +8353,18 @@ packages: engines: {node: '>=0.4.0'} hasBin: true - address@1.2.2: - resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} - engines: {node: '>= 10.0.0'} + acorn@8.16.0: + resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==} + engines: {node: '>=0.4.0'} + hasBin: true + + address@2.0.3: + resolution: {integrity: sha512-XNAb/a6TCqou+TufU8/u11HCu9x1gYvOoxLwtlXgIqmkrYQADVv6ljyW2zwiPhHz9R1gItAWpuDrdJMmrOBFEA==} + engines: {node: '>= 16.0.0'} + + adm-zip@0.5.10: + resolution: {integrity: sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==} + engines: {node: '>=6.0'} adm-zip@0.5.16: resolution: {integrity: sha512-TGw5yVi4saajsSEgz25grObGHEUaDrniwvA2qwSC060KfqGPdglhvPMA2lPIoxs3PQIItj2iag35fONcQqgUaQ==} @@ -7987,11 +8409,6 @@ packages: ajv: optional: true - ajv-keywords@3.5.2: - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} - peerDependencies: - ajv: ^6.9.1 - ajv-keywords@5.1.0: resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} peerDependencies: @@ -8009,6 +8426,9 @@ packages: ajv@8.17.1: resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} + ajv@8.18.0: + resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==} + anafanafo@2.0.0: resolution: {integrity: sha512-Nlfq7NC4AOkTJerWRIZcOAiMNtIDVIGWGvQ98O7Jl6Kr2Dk0dX5u4MqN778kSRTy5KRqchpLdF2RtLFEz9FVkQ==} @@ -8198,8 +8618,8 @@ packages: resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} engines: {node: '>= 0.4'} - async-mutex@0.4.1: - resolution: {integrity: sha512-WfoBo4E/TbCX1G95XTjbWTE3X2XLG0m1Xbv2cwOtuPdyH9CZvnaA5nCt1ucjaKEgW2A5IF71hxrRhr83Je5xjA==} + async-mutex@0.5.0: + resolution: {integrity: sha512-1A94B18jkJ3DYq284ohPxoXbfTA5HsQ7/Mf4DEhcyLx3Bz27Rh59iScbB6EPiP+B+joue6YCxcMXSbFC1tZKwA==} async-retry@1.3.3: resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==} @@ -8249,6 +8669,9 @@ packages: axios@1.13.2: resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==} + axios@1.16.0: + resolution: {integrity: sha512-6hp5CwvTPlN2A31g5dxnwAX0orzM7pmCRDLnZSX772mv8WDqICwFjowHuPs04Mc8deIld1+ejhtaMn5vp6b+1w==} + axios@1.8.2: resolution: {integrity: sha512-ls4GYBm5aig9vWx8AWDSGLpnpDQRtWAfrjU+EuytuODrFBkqesN2RkOQCBzrA1RQNHw1SmRMSDDDSwzNAYQ6Rg==} @@ -8256,8 +8679,8 @@ packages: resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} engines: {node: '>= 0.4'} - azure-devops-node-api@11.2.0: - resolution: {integrity: sha512-XdiGPhrpaT5J8wdERRKs5g8E0Zy1pvOYTli7z9E8nmOn3YGp4FhtjhrOyFmX/8veWCwdI69mCHKJw6l+4J/bHA==} + azure-devops-node-api@12.5.0: + resolution: {integrity: sha512-R5eFskGvOm3U/GzeAuxRkUsAl0hrAwGgWn6zAd2KrZmrEhWZVqLew4OOupbQlXUuojUzpGtq62SmdhJ06N88og==} b4a@1.7.3: resolution: {integrity: sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==} @@ -8370,6 +8793,10 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + balanced-match@4.0.3: + resolution: {integrity: sha512-1pHv8LX9CpKut1Zp4EXey7Z8OfH11ONNH6Dhi2WDUt31VVZFXZzKwXcysBgqSumFCmR+0dqjMK5v5JiFHzi0+g==} + engines: {node: 20 || >=22} + bare-events@2.8.2: resolution: {integrity: sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==} peerDependencies: @@ -8406,12 +8833,14 @@ packages: before-after-hook@4.0.0: resolution: {integrity: sha512-q6tR3RPqIB1pMiTRMFcZwuG5T8vwp+vUvEG0vuI6B+Rikh5BfPp2fQ82c925FOs+b0lcFQ8CFrL+KbilfZFhOQ==} - bentocache@1.0.0-beta.7: - resolution: {integrity: sha512-oEJttxwvzX9zAU2r7ONvmSmYJuLv/+ihRu+FQ0A5Z2UrXeYlA3pSnXTK0vMyp3YA1Tn14oiVoriRjMlOmlDdng==} + bentocache@1.6.1: + resolution: {integrity: sha512-UuWL3k9A62ygI1/ws6x4r6lFkM/jTu24zTTuhtYa4jpd26BF5O4Y64KxWXJbcmpXo1swLQdBlA+sWGDuuIbKaw==} peerDependencies: '@aws-sdk/client-dynamodb': ^3.438.0 ioredis: ^5.3.2 knex: ^3.0.1 + kysely: ^0.27.3 + orchid-orm: ^1.24.0 peerDependenciesMeta: '@aws-sdk/client-dynamodb': optional: true @@ -8419,6 +8848,10 @@ packages: optional: true knex: optional: true + kysely: + optional: true + orchid-orm: + optional: true big-integer@1.6.52: resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} @@ -8484,6 +8917,10 @@ packages: brace-expansion@2.0.2: resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} + brace-expansion@5.0.6: + resolution: {integrity: sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==} + engines: {node: 18 || 20 || >=22} + braces@3.0.3: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} @@ -8928,6 +9365,10 @@ packages: resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + cockatiel@3.2.1: + resolution: {integrity: sha512-gfrHV6ZPkquExvMh9IOkKsBzNDk6sDuZ6DdBGUBkvFnTCqCxzpuq48RySgP0AnaqQkw2zynOFj9yly6T1Q2G5Q==} + engines: {node: '>=16'} + code-block-writer@12.0.0: resolution: {integrity: sha512-q4dMFMlXtKR3XNBHyMHt/3pwYNA69EDk00lloMOaaUMKPUXBw6lpXtbu3MMVG6/uOihGnRDOlkyqsONEUj60+w==} @@ -9270,12 +9711,6 @@ packages: css-color-converter@2.0.0: resolution: {integrity: sha512-oLIG2soZz3wcC3aAl/7Us5RS8Hvvc6I8G8LniF/qfMmrm7fIKQ8RIDDRZeKyGL2SrWfNqYspuLShbnjBMVWm8g==} - css-declaration-sorter@6.4.1: - resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} - engines: {node: ^10 || ^12 || >=14} - peerDependencies: - postcss: ^8.0.9 - css-declaration-sorter@7.3.0: resolution: {integrity: sha512-LQF6N/3vkAMYF4xoHLJfG718HRJh34Z8BnNhd6bosOMIVjMlhuZK5++oZa3uYAgrI5+7x2o27gUqTR2U/KjUOQ==} engines: {node: ^14 || ^16 || >=18} @@ -9285,16 +9720,9 @@ packages: css-select@1.2.0: resolution: {integrity: sha512-dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA==} - css-select@4.3.0: - resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} - css-select@5.2.2: resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==} - css-tree@1.1.3: - resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} - engines: {node: '>=8.0.0'} - css-tree@2.2.1: resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} @@ -9328,12 +9756,6 @@ packages: engines: {node: '>=4'} hasBin: true - cssnano-preset-default@5.2.14: - resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - cssnano-preset-default@7.0.10: resolution: {integrity: sha512-6ZBjW0Lf1K1Z+0OKUAUpEN62tSXmYChXWi2NAA0afxEVsj9a+MbcB1l5qel6BHJHmULai2fCGRthCeKSFbScpA==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} @@ -9350,34 +9772,18 @@ packages: peerDependencies: postcss: ^8.2.2 - cssnano-utils@3.1.0: - resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - cssnano-utils@5.0.1: resolution: {integrity: sha512-ZIP71eQgG9JwjVZsTPSqhc6GHgEr53uJ7tK5///VfyWj6Xp2DBmixWHqJgPno+PqATzn48pL42ww9x5SSGmhZg==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - cssnano@5.1.15: - resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - cssnano@7.1.2: resolution: {integrity: sha512-HYOPBsNvoiFeR1eghKD5C3ASm64v9YVyJB4Ivnl2gqKoQYvjjN/G0rztvKQq8OxocUtC6sjqY8jwYngIB4AByA==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - csso@4.2.0: - resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} - engines: {node: '>=8.0.0'} - csso@5.0.5: resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} @@ -9462,6 +9868,9 @@ packages: date-fns@4.1.0: resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==} + date-fns@4.4.0: + resolution: {integrity: sha512-+1UMbeh68lH1SegH83CGWwpb6OHHbpSgr3+s5Eww5M4CAgswBpoWS0AjTOfEJ33HiYKz1hdj/KTFprzXHmq/6w==} + date-format@4.0.14: resolution: {integrity: sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==} engines: {node: '>=4.0'} @@ -9546,7 +9955,6 @@ packages: dedent@1.7.1: resolution: {integrity: sha512-9JmrhGZpOlEgOLdQgSm0zxFaYoQon408V1v49aqTWuXENVlnCuY9JBZcXZiCsZQWDjTm5Qf/nIvAy77mXDAjEg==} peerDependencies: - '@types/babel-plugin-macros': '*' babel-plugin-macros: ^3.1.0 peerDependenciesMeta: babel-plugin-macros: @@ -9611,6 +10019,9 @@ packages: defu@6.1.4: resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} + defu@6.1.7: + resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==} + delayed-stream@1.0.0: resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} @@ -9661,9 +10072,9 @@ packages: resolution: {integrity: sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - detect-port@1.6.1: - resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==} - engines: {node: '>= 4.0.0'} + detect-port@2.1.0: + resolution: {integrity: sha512-epZuWb/6Q62L+nDHJc/hQAqf8pylsqgk3BpZXVBx1CDnr3nkrVNn73Uu1rXcFzkNcc+hkP3whuOg7JZYaQB65Q==} + engines: {node: '>= 16.0.0'} hasBin: true detective@5.2.1: @@ -9730,9 +10141,6 @@ packages: dom-serializer@0.1.1: resolution: {integrity: sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==} - dom-serializer@1.4.1: - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} - dom-serializer@2.0.0: resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} @@ -9753,10 +10161,6 @@ packages: domhandler@2.4.2: resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==} - domhandler@4.3.1: - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} - engines: {node: '>= 4'} - domhandler@5.0.3: resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} engines: {node: '>= 4'} @@ -9767,9 +10171,6 @@ packages: domutils@1.7.0: resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} - domutils@2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} - domutils@3.2.2: resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} @@ -9780,8 +10181,8 @@ packages: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} engines: {node: '>=8'} - dotenv-expand@11.0.7: - resolution: {integrity: sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==} + dotenv-expand@12.0.3: + resolution: {integrity: sha512-uc47g4b+4k/M/SeaW1y4OApx+mtLWl92l5LMPP0GNXctZqELk+YGgOPIIC5elYmUH4OuoK3JLhuRUYegeySiFA==} engines: {node: '>=12'} dotenv@16.4.7: @@ -9850,6 +10251,11 @@ packages: engines: {node: '>=0.10.0'} hasBin: true + ejs@5.0.1: + resolution: {integrity: sha512-COqBPFMxuPTPspXl2DkVYaDS3HtrD1GpzOGkNTJ1IYkifq/r9h8SVEFrjA3D9/VJGOEoMQcrlhpntcSUrM8k6A==} + engines: {node: '>=0.12.18'} + hasBin: true + electron-to-chromium@1.5.267: resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==} @@ -9884,10 +10290,6 @@ packages: resolution: {integrity: sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng==} engines: {node: '>= 0.10'} - emojis-list@3.0.0: - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} - engines: {node: '>= 4'} - empathic@2.0.0: resolution: {integrity: sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==} engines: {node: '>=14'} @@ -9933,9 +10335,6 @@ packages: entities@2.1.0: resolution: {integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==} - entities@2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} - entities@4.5.0: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} @@ -9956,6 +10355,9 @@ packages: err-code@2.0.3: resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} + error-causes@3.0.2: + resolution: {integrity: sha512-i0B8zq1dHL6mM85FGoxaJnVtx6LD5nL2v0hlpGdntg5FOSyzQ46c9lmz5qx0xRS2+PWHGOHcYxGIBC5Le2dRMw==} + error-ex@1.3.4: resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==} @@ -9993,6 +10395,9 @@ packages: es-toolkit@1.43.0: resolution: {integrity: sha512-SKCT8AsWvYzBBuUqMk4NPwFlSdqLpJwmy6AP322ERn8W2YLIB6JBXnwMI2Qsh2gfphT3q7EKAxKb23cvFHFwKA==} + es-toolkit@1.47.0: + resolution: {integrity: sha512-n1GuoD0WEQZMBk5tttoZSqwgyLx01oqa5XsBmCHwPyNe1S9jPBEmtR2pSgp2kJuWE3ciFZ6yRHmY4pM4C3OOkw==} + es6-object-assign@1.1.0: resolution: {integrity: sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==} @@ -10023,6 +10428,11 @@ packages: engines: {node: '>=18'} hasBin: true + esbuild-visualizer@0.7.0: + resolution: {integrity: sha512-Vz22k+G2WT7GuCo7rbhaQwGbZ26lEhwzsctkEdQlu2SVrshoM4hzQeRpu/3DP596a9+9K2JyYsinuC6AC896Og==} + engines: {node: '>=18'} + hasBin: true + esbuild@0.21.5: resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} engines: {node: '>=12'} @@ -10122,7 +10532,6 @@ packages: eslint-formatting-reporter@0.0.0: resolution: {integrity: sha512-k9RdyTqxqN/wNYVaTk/ds5B5rA8lgoAmvceYN7bcZMBwU7TuXx5ntewJv81eF3pIL/CiJE+pJZm36llG8yhyyw==} peerDependencies: - '@types/eslint': '*' eslint: '>=8.40.0' eslint-import-context@0.1.9: @@ -10221,7 +10630,6 @@ packages: eslint-plugin-format@1.1.0: resolution: {integrity: sha512-zjGPZcftddkO9GydBwvTKBV4ICN6a++XK0zIPi3HZHlU8W9EaftTA3XAanJvGAXQUYEqAADtgQi08SX+afbPrg==} peerDependencies: - '@types/eslint': '*' eslint: ^8.40.0 || ^9.0.0 eslint-plugin-import-x@4.16.1: @@ -10241,7 +10649,6 @@ packages: resolution: {integrity: sha512-L730PghjZLrg6nwAKPtQ7smOIOxE0A/KbnCN7ywIkIWy8HJ9CDdMQyxjyyMcX1tzFJtF6/raLR/pMJD3tx0yYA==} engines: {node: '>=20'} peerDependencies: - '@types/eslint': '*' '@typescript-eslint/utils': ^8.35.1 eslint: '>=9' @@ -10374,7 +10781,6 @@ packages: resolution: {integrity: sha512-LstAv6tKgZylMmJniWxQL9TOY9kwRddLnvBsoTbRsgUDROL5bsg0k5XHMaNJLyX8cxh4iafQ/WxAw5shNUf3GQ==} engines: {node: ^14.17.0 || ^16.0.0 || >= 18.0.0} peerDependencies: - '@types/eslint': '*' eslint: '>=7' eslint-plugin-react-debug@1.53.1: @@ -10411,7 +10817,6 @@ packages: resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==} engines: {node: '>=10'} peerDependencies: - '@types/eslint': '*' eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 eslint-plugin-react-naming-convention@1.53.1: @@ -10473,7 +10878,6 @@ packages: resolution: {integrity: sha512-3WodYD6Bs9ACqnB+TP2TuLh774c/nacAjxSKOP9bHJ2c8rf+nrhocxjjeAWNmO9IPkFIzTKlcl0vNXI2yYpVOw==} engines: {node: '>= 18'} peerDependencies: - '@types/eslint': '*' eslint: '>=8' eslint-plugin-toml@0.12.0: @@ -10583,6 +10987,10 @@ packages: resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} engines: {node: '>=0.10'} + esquery@1.7.0: + resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==} + engines: {node: '>=0.10'} + esrecurse@4.3.0: resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} engines: {node: '>=4.0'} @@ -10601,9 +11009,6 @@ packages: estree-util-visit@2.0.0: resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==} - estree-walker@0.6.1: - resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} - estree-walker@2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} @@ -10807,12 +11212,6 @@ packages: resolution: {integrity: sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg==} engines: {node: '>=18'} - file-loader@6.2.0: - resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} - engines: {node: '>= 10.13.0'} - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 - filelist@1.0.4: resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} @@ -10901,6 +11300,15 @@ packages: debug: optional: true + follow-redirects@1.16.0: + resolution: {integrity: sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + for-each@0.3.5: resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} engines: {node: '>= 0.4'} @@ -10942,9 +11350,6 @@ packages: resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} engines: {node: '>= 0.6'} - front-matter@4.0.2: - resolution: {integrity: sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==} - fs-constants@1.0.0: resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} @@ -11096,6 +11501,9 @@ packages: git-hooks-list@3.2.0: resolution: {integrity: sha512-ZHG9a1gEhUMX1TvGrLdyWb9kDopCBbTnI8z4JgRMYxsijWipgjSEYoPWqBuIB0DnRnvqlQSEeVmzpeuPm7NdFQ==} + git-hooks-list@4.2.1: + resolution: {integrity: sha512-WNvqJjOxxs/8ZP9+DWdwWJ7cDsd60NHf39XnD82pDVrKO5q7xfPqpkK6hwEAmBa/ZSEE4IOoR75EzbbIuwGlMw==} + git-up@4.0.5: resolution: {integrity: sha512-YUvVDg/vX3d0syBsk/CKUTib0srcQME0JyHkL5BaYdwLsiCslPWmDSi8PUMo9pXYjrryMcmsCoCgsTpSCJEQaA==} @@ -11121,29 +11529,31 @@ packages: glob@10.5.0: resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==} + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me hasBin: true glob@11.1.0: resolution: {integrity: sha512-vuNwKSaKiqm7g0THUBu2x7ckSs3XJLXE+2ssL7/MfTGPLLcrJQ/4Uq1CjPTtO5cCIiRxqvN6Twy1qOwhL0Xjcw==} engines: {node: 20 || >=22} + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me hasBin: true glob@6.0.4: resolution: {integrity: sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==} - deprecated: Glob versions prior to v9 are no longer supported + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me glob@7.1.2: resolution: {integrity: sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==} - deprecated: Glob versions prior to v9 are no longer supported + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - deprecated: Glob versions prior to v9 are no longer supported + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me glob@8.1.0: resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} engines: {node: '>=12'} - deprecated: Glob versions prior to v9 are no longer supported + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me global-directory@4.0.1: resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==} @@ -11173,6 +11583,10 @@ packages: resolution: {integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==} engines: {node: '>=18'} + globals@17.6.0: + resolution: {integrity: sha512-sepffkT8stwnIYbsMBpoCHJuJM5l98FUF2AnE07hfvE0m/qp3R586hw4jF4uadbhvg1ooIdzuu7CsfD2jzCaNA==} + engines: {node: '>=18'} + globalthis@1.0.4: resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} engines: {node: '>= 0.4'} @@ -11237,7 +11651,6 @@ packages: engines: {node: '>=20'} peerDependencies: '@fastify/websocket': ^10 || ^11 - '@types/ws': '*' crossws: ~0.3 graphql: ^15.10.1 || ^16 uWebSockets.js: ^20 @@ -11362,10 +11775,6 @@ packages: hex2dec@1.1.2: resolution: {integrity: sha512-Yu+q/XWr2fFQ11tHxPq4p4EiNkb2y+lAacJNhAdRXVfRIcDH6gi7htWFnnlIzvqHMHoWeIsfXlNAjZInpAOJDA==} - hexoid@1.0.0: - resolution: {integrity: sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==} - engines: {node: '>=8'} - highlight.js@10.7.3: resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} @@ -11531,9 +11940,6 @@ packages: resolution: {integrity: sha512-2Tth85cXwGFHfvRgZWszZSvdo+0Xsqmw8k8ZwxScfcBneNUraK+dxRxRm24nszx80Y0TVio8kKLt5sLE7ZCLlw==} engines: {node: '>=0.10.0'} - icss-replace-symbols@1.1.0: - resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} - icss-utils@5.1.0: resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} @@ -11562,18 +11968,10 @@ packages: immutable@5.1.4: resolution: {integrity: sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==} - import-cwd@3.0.0: - resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} - engines: {node: '>=8'} - import-fresh@3.3.1: resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} engines: {node: '>=6'} - import-from@3.0.0: - resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} - engines: {node: '>=8'} - import-in-the-middle@1.15.0: resolution: {integrity: sha512-bpQy+CrsRmYmoPMAE/0G33iwRqwW4ouqdRg8jgbH3aKuCtOc8lxgmYXg2dMM92CRiGP660EtBcymH/eVUpCSaA==} @@ -12228,6 +12626,10 @@ packages: resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==} hasBin: true + jiti@2.7.0: + resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==} + hasBin: true + jju@1.4.0: resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} @@ -12424,7 +12826,6 @@ packages: keygrip@1.1.0: resolution: {integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==} engines: {node: '>= 0.6'} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. keytar@7.9.0: resolution: {integrity: sha512-VPD8mtVtm5JNtA2AErl6Chp06JBfy7diFQ7TQQhdpWOl6MrCRB+eRbvAZUsbGQS9kiMq0coJsy0W0vHpDCkWsQ==} @@ -12584,10 +12985,6 @@ packages: resolution: {integrity: sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==} engines: {node: '>=4.0.0'} - loader-utils@2.0.4: - resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} - engines: {node: '>=8.9.0'} - loader-utils@3.3.1: resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} engines: {node: '>= 12.13.0'} @@ -12913,9 +13310,6 @@ packages: mdast-util-to-string@4.0.0: resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} - mdn-data@2.0.14: - resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} - mdn-data@2.0.28: resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} @@ -13196,6 +13590,14 @@ packages: resolution: {integrity: sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==} engines: {node: 20 || >=22} + minimatch@10.2.3: + resolution: {integrity: sha512-Rwi3pnapEqirPSbWbrZaa6N3nmqq4Xer/2XooiOKyV3q12ML06f7MOuc5DVH8ONZIFhwIYQ3yzPH4nt7iWHaTg==} + engines: {node: 18 || 20 || >=22} + + minimatch@10.2.5: + resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==} + engines: {node: 18 || 20 || >=22} + minimatch@3.0.4: resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==} @@ -13289,6 +13691,9 @@ packages: mlly@1.8.0: resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==} + mlly@1.8.2: + resolution: {integrity: sha512-d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA==} + mocha@5.2.0: resolution: {integrity: sha512-2IUgKDhc3J7Uug+FxMXuqIyYzH7gJjXECKe/w43IGgQHTSj3InJi+yAA7T24L9bQMRKiUEHxEX37G5JpVUGLcQ==} engines: {node: '>= 4.0.0'} @@ -13492,9 +13897,6 @@ packages: node-libs-browser@2.2.1: resolution: {integrity: sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==} - node-machine-id@1.1.12: - resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} - node-mock-http@1.0.4: resolution: {integrity: sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==} @@ -13644,12 +14046,12 @@ packages: nth-check@2.1.1: resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} - nx@22.3.1: - resolution: {integrity: sha512-F15BEAsKIkJktsqdsC/TEC8c7cBaTvQ/a2t27aFPAdRYSkZfsuAWN4RANhTRs6809qH9m8YlD1eJ/ITG9RF6wQ==} + nx@22.7.5: + resolution: {integrity: sha512-zoxsJabb33jl1QYnalDn0bicryrEBgSzdKp90d7VGGv/jDgzKrcLg/hw2ZxeYiOjWPIT/o8QNT9G9vTs4dv3AQ==} hasBin: true peerDependencies: - '@swc-node/register': ^1.8.0 - '@swc/core': ^1.3.85 + '@swc-node/register': ^1.11.1 + '@swc/core': ^1.15.8 peerDependenciesMeta: '@swc-node/register': optional: true @@ -13797,10 +14199,6 @@ packages: resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==} engines: {node: '>=12.20'} - p-finally@1.0.0: - resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} - engines: {node: '>=4'} - p-limit@2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} @@ -13821,21 +14219,13 @@ packages: resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} engines: {node: '>=10'} - p-queue@6.6.2: - resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} - engines: {node: '>=8'} - p-retry@6.2.1: resolution: {integrity: sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==} engines: {node: '>=16.17'} - p-timeout@3.2.0: - resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} - engines: {node: '>=8'} - - p-timeout@6.1.4: - resolution: {integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==} - engines: {node: '>=14.16'} + p-timeout@7.0.1: + resolution: {integrity: sha512-AxTM2wDGORHGEkPCt8yqxOTMgpfbEHqF51f/5fJCmwFC3C/zNcGT63SymH2ttOAaiIws2zVg4+izQCjrakcwHg==} + engines: {node: '>=20'} p-try@2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} @@ -14067,6 +14457,10 @@ packages: resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} engines: {node: '>=12'} + picomatch@4.0.4: + resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==} + engines: {node: '>=12'} + pify@2.3.0: resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} engines: {node: '>=0.10.0'} @@ -14075,10 +14469,6 @@ packages: resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} engines: {node: '>=4'} - pify@5.0.0: - resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} - engines: {node: '>=10'} - pino-abstract-transport@0.5.0: resolution: {integrity: sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==} @@ -14173,77 +14563,36 @@ packages: peerDependencies: postcss: ^8.4.38 - postcss-calc@8.2.4: - resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} - peerDependencies: - postcss: ^8.2.2 - - postcss-colormin@5.3.1: - resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-colormin@7.0.5: resolution: {integrity: sha512-ekIBP/nwzRWhEMmIxHHbXHcMdzd1HIUzBECaj5KEdLz9DVP2HzT065sEhvOx1dkLjYW7jyD0CngThx6bpFi2fA==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-convert-values@5.1.3: - resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-convert-values@7.0.8: resolution: {integrity: sha512-+XNKuPfkHTCEo499VzLMYn94TiL3r9YqRE3Ty+jP7UX4qjewUONey1t7CG21lrlTLN07GtGM8MqFVp86D4uKJg==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-discard-comments@5.1.2: - resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-discard-comments@7.0.5: resolution: {integrity: sha512-IR2Eja8WfYgN5n32vEGSctVQ1+JARfu4UH8M7bgGh1bC+xI/obsPJXaBpQF7MAByvgwZinhpHpdrmXtvVVlKcQ==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-discard-duplicates@5.1.0: - resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-discard-duplicates@7.0.2: resolution: {integrity: sha512-eTonaQvPZ/3i1ASDHOKkYwAybiM45zFIc7KXils4mQmHLqIswXD9XNOKEVxtTFnsmwYzF66u4LMgSr0abDlh5w==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-discard-empty@5.1.1: - resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-discard-empty@7.0.1: resolution: {integrity: sha512-cFrJKZvcg/uxB6Ijr4l6qmn3pXQBna9zyrPC+sK0zjbkDUZew+6xDltSF7OeB7rAtzaaMVYSdbod+sZOCWnMOg==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-discard-overridden@5.1.0: - resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-discard-overridden@7.0.1: resolution: {integrity: sha512-7c3MMjjSZ/qYrx3uc1940GSOzN1Iqjtlqe8uoSg+qdVPYyRb0TILSqqmtlSFuE4mTDECwsm397Ya7iXGzfF7lg==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} @@ -14292,72 +14641,36 @@ packages: yaml: optional: true - postcss-merge-longhand@5.1.7: - resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-merge-longhand@7.0.5: resolution: {integrity: sha512-Kpu5v4Ys6QI59FxmxtNB/iHUVDn9Y9sYw66D6+SZoIk4QTz1prC4aYkhIESu+ieG1iylod1f8MILMs1Em3mmIw==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-merge-rules@5.1.4: - resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-merge-rules@7.0.7: resolution: {integrity: sha512-njWJrd/Ms6XViwowaaCc+/vqhPG3SmXn725AGrnl+BgTuRPEacjiLEaGq16J6XirMJbtKkTwnt67SS+e2WGoew==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-minify-font-values@5.1.0: - resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-minify-font-values@7.0.1: resolution: {integrity: sha512-2m1uiuJeTplll+tq4ENOQSzB8LRnSUChBv7oSyFLsJRtUgAAJGP6LLz0/8lkinTgxrmJSPOEhgY1bMXOQ4ZXhQ==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-minify-gradients@5.1.1: - resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-minify-gradients@7.0.1: resolution: {integrity: sha512-X9JjaysZJwlqNkJbUDgOclyG3jZEpAMOfof6PUZjPnPrePnPG62pS17CjdM32uT1Uq1jFvNSff9l7kNbmMSL2A==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-minify-params@5.1.4: - resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-minify-params@7.0.5: resolution: {integrity: sha512-FGK9ky02h6Ighn3UihsyeAH5XmLEE2MSGH5Tc4tXMFtEDx7B+zTG6hD/+/cT+fbF7PbYojsmmWjyTwFwW1JKQQ==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-minify-selectors@5.2.1: - resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-minify-selectors@7.0.5: resolution: {integrity: sha512-x2/IvofHcdIrAm9Q+p06ZD1h6FPcQ32WtCRVodJLDR+WMn8EVHI1kvLxZuGKz/9EY5nAmI6lIQIrpo4tBy5+ug==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} @@ -14388,11 +14701,6 @@ packages: peerDependencies: postcss: ^8.1.0 - postcss-modules@4.3.1: - resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==} - peerDependencies: - postcss: ^8.0.0 - postcss-modules@6.0.1: resolution: {integrity: sha512-zyo2sAkVvuZFFy0gc2+4O+xar5dYlaVy/ebO24KT0ftk/iJevSNyPyQellsBLlnccwh7f6V6Y4GvuKRYToNgpQ==} peerDependencies: @@ -14410,144 +14718,72 @@ packages: peerDependencies: postcss: ^8.2.14 - postcss-normalize-charset@5.1.0: - resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-normalize-charset@7.0.1: resolution: {integrity: sha512-sn413ofhSQHlZFae//m9FTOfkmiZ+YQXsbosqOWRiVQncU2BA3daX3n0VF3cG6rGLSFVc5Di/yns0dFfh8NFgQ==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-normalize-display-values@5.1.0: - resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-normalize-display-values@7.0.1: resolution: {integrity: sha512-E5nnB26XjSYz/mGITm6JgiDpAbVuAkzXwLzRZtts19jHDUBFxZ0BkXAehy0uimrOjYJbocby4FVswA/5noOxrQ==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-normalize-positions@5.1.1: - resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-normalize-positions@7.0.1: resolution: {integrity: sha512-pB/SzrIP2l50ZIYu+yQZyMNmnAcwyYb9R1fVWPRxm4zcUFCY2ign7rcntGFuMXDdd9L2pPNUgoODDk91PzRZuQ==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-normalize-repeat-style@5.1.1: - resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-normalize-repeat-style@7.0.1: resolution: {integrity: sha512-NsSQJ8zj8TIDiF0ig44Byo3Jk9e4gNt9x2VIlJudnQQ5DhWAHJPF4Tr1ITwyHio2BUi/I6Iv0HRO7beHYOloYQ==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-normalize-string@5.1.0: - resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-normalize-string@7.0.1: resolution: {integrity: sha512-QByrI7hAhsoze992kpbMlJSbZ8FuCEc1OT9EFbZ6HldXNpsdpZr+YXC5di3UEv0+jeZlHbZcoCADgb7a+lPmmQ==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-normalize-timing-functions@5.1.0: - resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-normalize-timing-functions@7.0.1: resolution: {integrity: sha512-bHifyuuSNdKKsnNJ0s8fmfLMlvsQwYVxIoUBnowIVl2ZAdrkYQNGVB4RxjfpvkMjipqvbz0u7feBZybkl/6NJg==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-normalize-unicode@5.1.1: - resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-normalize-unicode@7.0.5: resolution: {integrity: sha512-X6BBwiRxVaFHrb2WyBMddIeB5HBjJcAaUHyhLrM2FsxSq5TFqcHSsK7Zu1otag+o0ZphQGJewGH1tAyrD0zX1Q==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-normalize-url@5.1.0: - resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-normalize-url@7.0.1: resolution: {integrity: sha512-sUcD2cWtyK1AOL/82Fwy1aIVm/wwj5SdZkgZ3QiUzSzQQofrbq15jWJ3BA7Z+yVRwamCjJgZJN0I9IS7c6tgeQ==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-normalize-whitespace@5.1.1: - resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-normalize-whitespace@7.0.1: resolution: {integrity: sha512-vsbgFHMFQrJBJKrUFJNZ2pgBeBkC2IvvoHjz1to0/0Xk7sII24T0qFOiJzG6Fu3zJoq/0yI4rKWi7WhApW+EFA==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-ordered-values@5.1.3: - resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-ordered-values@7.0.2: resolution: {integrity: sha512-AMJjt1ECBffF7CEON/Y0rekRLS6KsePU6PRP08UqYW4UGFRnTXNrByUzYK1h8AC7UWTZdQ9O3Oq9kFIhm0SFEw==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-reduce-initial@5.1.2: - resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-reduce-initial@7.0.5: resolution: {integrity: sha512-RHagHLidG8hTZcnr4FpyMB2jtgd/OcyAazjMhoy5qmWJOx1uxKh4ntk0Pb46ajKM0rkf32lRH4C8c9qQiPR6IA==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.4.32 - postcss-reduce-transforms@5.1.0: - resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-reduce-transforms@7.0.1: resolution: {integrity: sha512-MhyEbfrm+Mlp/36hvZ9mT9DaO7dbncU0CvWI8V93LRkY6IYlu38OPg3FObnuKTUxJ4qA8HpurdQOo5CyqqO76g==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} @@ -14562,24 +14798,12 @@ packages: resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==} engines: {node: '>=4'} - postcss-svgo@5.1.0: - resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-svgo@7.1.0: resolution: {integrity: sha512-KnAlfmhtoLz6IuU3Sij2ycusNs4jPW+QoFE5kuuUOK8awR6tMxZQrs5Ey3BUz7nFCzT3eqyFgqkyrHiaU2xx3w==} engines: {node: ^18.12.0 || ^20.9.0 || >= 18} peerDependencies: postcss: ^8.4.32 - postcss-unique-selectors@5.1.1: - resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - postcss-unique-selectors@7.0.4: resolution: {integrity: sha512-pmlZjsmEAG7cHd7uK3ZiNSW6otSZ13RHuZ/4cDN/bVglS5EpF2r2oxY99SuOHa8m7AWoBCelTS3JPpzsIs8skQ==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} @@ -14787,6 +15011,7 @@ packages: prebuild-install@7.1.3: resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==} engines: {node: '>=10'} + deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available. hasBin: true prelude-ls@1.2.1: @@ -14807,6 +15032,12 @@ packages: peerDependencies: prettier: ^3.0.0 + prettier-plugin-jsdoc@1.8.1: + resolution: {integrity: sha512-XuMqBWTc3b/8eCOe+OlZlFy9Z413a7WOmF4i5hDGtjbtIFOdvRrVtGjXR2Feye3TrLWhkkkHheNXPTyYKxw3nA==} + engines: {node: '>=14.13.1 || >=16.0.0'} + peerDependencies: + prettier: ^3.0.0 + prettier-plugin-organize-imports@4.3.0: resolution: {integrity: sha512-FxFz0qFhyBsGdIsb697f/EkvHzi5SZOhWAjxcx2dLt+Q532bAlhswcXGYB1yzjZ69kW8UoadFBw7TyNwlq96Iw==} peerDependencies: @@ -14817,6 +15048,14 @@ packages: vue-tsc: optional: true + prettier-plugin-packagejson@3.0.2: + resolution: {integrity: sha512-kmoj3hEynXwoHDo8ZhmWAIjRBoQWCDUVackiWfSDWdgD0rS3LGB61T9zoVbume/cotYdCoadUh4sqViAmXvpBQ==} + peerDependencies: + prettier: ^3 + peerDependenciesMeta: + prettier: + optional: true + prettier-plugin-pkg@0.18.1: resolution: {integrity: sha512-FuUxvsYZR/8rsLH8s/jbPQmgYvv0yxW8LoIHCy6+Q7p4FBjjdP3DNKx8fMTOsc0SlEB1skB4o1LcahRceIh87A==} engines: {node: ^14.18.0 || >=16.0.0} @@ -14898,6 +15137,11 @@ packages: engines: {node: '>=14'} hasBin: true + prettier@3.8.3: + resolution: {integrity: sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==} + engines: {node: '>=14'} + hasBin: true + pretty-bytes@7.1.0: resolution: {integrity: sha512-nODzvTiYVRGRqAOvE84Vk5JDPyyxsVk0/fbA/bq7RqlnhksGpset09XTxbpvLTIjoaF7K8Z8DG8yHtKGTPSYRw==} engines: {node: '>=20'} @@ -14954,10 +15198,6 @@ packages: resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} engines: {node: '>=10'} - promise.series@0.2.0: - resolution: {integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==} - engines: {node: '>=0.12'} - prop-types@15.7.2: resolution: {integrity: sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==} @@ -14988,6 +15228,10 @@ packages: proxy-from-env@1.1.0: resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + proxy-from-env@2.1.0: + resolution: {integrity: sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==} + engines: {node: '>=10'} + public-encrypt@4.0.3: resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==} @@ -15105,10 +15349,10 @@ packages: peerDependencies: react: 17.0.2 - react-dom@18.2.0: - resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} + react-dom@18.3.1: + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} peerDependencies: - react: ^18.2.0 + react: ^18.3.1 react-error-boundary@4.1.2: resolution: {integrity: sha512-GQDxZ5Jd+Aq/qUxbCm1UtzmL/s++V7zKgE8yMktJiCQXCCFZnMZh9ng+6/Ne6PjNSXH0L9CjeOEREfRnq6Duag==} @@ -15143,8 +15387,8 @@ packages: resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==} engines: {node: '>=0.10.0'} - react@18.2.0: - resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} + react@18.3.1: + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} engines: {node: '>=0.10.0'} reactflow@11.11.4: @@ -15465,26 +15709,22 @@ packages: rollup: ^3.29.4 || ^4 typescript: ^4.5 || ^5.0 - rollup-plugin-postcss@4.0.2: - resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==} - engines: {node: '>=10'} - peerDependencies: - postcss: 8.x - rollup-plugin-typescript2@0.36.0: resolution: {integrity: sha512-NB2CSQDxSe9+Oe2ahZbf+B4bh7pHwjV5L+RSYpCu7Q5ROuN94F9b6ioWwKfz3ueL3KTtmX4o2MUH2cgHDIEUsw==} peerDependencies: rollup: '>=1.26.3' typescript: '>=2.4.0' - rollup-pluginutils@2.8.2: - resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} - rollup@4.53.5: resolution: {integrity: sha512-iTNAbFSlRpcHeeWu73ywU/8KuU/LZmNCSxp6fjQkJBD3ivUb8tpDrXhIxEzA05HlYMEwmtaUnb3RP+YNv162OQ==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true + rollup@4.61.1: + resolution: {integrity: sha512-I4KW6iuRpuu2uHBLraZ1wNZe0DP7lnRha+VJ9tNaYVaVgKhW0aI3h4RYnoRPeql0flHm/Co55b7snEDcOfOJrA==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + run-applescript@7.1.0: resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==} engines: {node: '>=18'} @@ -15523,9 +15763,6 @@ packages: safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - safe-identifier@0.4.2: - resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==} - safe-push-apply@1.0.0: resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} engines: {node: '>= 0.4'} @@ -15558,8 +15795,8 @@ packages: scheduler@0.23.2: resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} - schema-utils@3.3.0: - resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} + schema-utils@4.3.0: + resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==} engines: {node: '>= 10.13.0'} schema-utils@4.3.3: @@ -15615,6 +15852,16 @@ packages: engines: {node: '>=10'} hasBin: true + semver@7.7.4: + resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==} + engines: {node: '>=10'} + hasBin: true + + semver@7.8.2: + resolution: {integrity: sha512-c8jsqUZm3omBOI66G90z1Dyw5z622G8oLG+omfsHBJf3CWQTlOcwOjvOG6wtiNfW6anKm/eA39LMwMtMez2TiQ==} + engines: {node: '>=10'} + hasBin: true + send@0.19.0: resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} engines: {node: '>= 0.8.0'} @@ -15741,6 +15988,11 @@ packages: engines: {node: ^18.0.0 || >=20.0.0} hasBin: true + size-limit@11.2.0: + resolution: {integrity: sha512-2kpQq2DD/pRpx3Tal/qRW1SYwcIeQ0iq8li5CJHQgOC+FtPn2BVmuDtzUCgNnpCrbgtfEHqh+iWzxK+Tq6C+RQ==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + slash@3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} @@ -15757,6 +16009,10 @@ packages: resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==} engines: {node: '>=8.0.0'} + smol-toml@1.6.1: + resolution: {integrity: sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==} + engines: {node: '>= 18'} + snake-case@3.0.4: resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} @@ -15791,10 +16047,18 @@ packages: sort-object-keys@1.1.3: resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==} + sort-object-keys@2.1.0: + resolution: {integrity: sha512-SOiEnthkJKPv2L6ec6HMwhUcN0/lppkeYuN1x63PbyPRrgSPIuBJCiYxYyvWRTtjMlOi14vQUCGUJqS6PLVm8g==} + sort-package-json@2.15.1: resolution: {integrity: sha512-9x9+o8krTT2saA9liI4BljNjwAbvUnWf11Wq+i/iZt8nl2UGYnf3TH5uBydE7VALmP7AGwlfszuEeL8BDyb0YA==} hasBin: true + sort-package-json@3.7.1: + resolution: {integrity: sha512-ssk1HG7whF8N/T1IsNAQrtHG5Cbdi0rAgRJZXYBr9hF5xaHnBNzUx/W6LcthEW7FhOwvZssbESZuO+GxssqAyA==} + engines: {node: '>=20'} + hasBin: true + sorted-array-functions@1.3.0: resolution: {integrity: sha512-2sqgzeFlid6N4Z2fUQ1cvFmTOLRi/sEDzSQ0OKYchqgoPmQBVyM3959qYx3fpS6Esef80KjmpgPeEr028dP3OA==} @@ -15869,10 +16133,6 @@ packages: stable-hash@0.0.5: resolution: {integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==} - stable@0.1.8: - resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} - deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' - stack-utils@2.0.6: resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} engines: {node: '>=10'} @@ -15914,7 +16174,6 @@ packages: resolution: {integrity: sha512-FrBjm8I8O+pYEOPHcdW9xWwgXSZxte7lza9q2lN3jFN4vuW79m5j0OnTQeR8z9MmIbBTvkIpp3yMBebl53Yt5Q==} hasBin: true peerDependencies: - '@types/prettier': '*' prettier: ^2 || ^3 peerDependenciesMeta: prettier: @@ -16064,20 +16323,11 @@ packages: strnum@2.1.2: resolution: {integrity: sha512-l63NF9y/cLROq/yqKXSLtcMeeyOfnSQlfMSlzFt/K73oIaD8DGaQWd7Z34X9GPiKqP5rbSh84Hl4bOlLcjiSrQ==} - style-inject@0.3.0: - resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==} - styled-jsx@3.3.2: resolution: {integrity: sha512-daAkGd5mqhbBhLd6jYAjYBa9LpxYCzsgo/f6qzPdFxVB8yoGbhxvzQgkC0pfmCVvW3JuAEBn0UzFLBfkHVZG1g==} peerDependencies: react: 15.x.x || 16.x.x || 17.x.x - stylehacks@5.1.1: - resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - stylehacks@7.0.7: resolution: {integrity: sha512-bJkD0JkEtbRrMFtwgpJyBbFIwfDDONQ1Ov3sDLZQP8HuJ73kBOyx66H4bOcAbVWmnfLdvQ0AJwXxOMkpujcO6g==} engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} @@ -16139,11 +16389,6 @@ packages: svg-parser@2.0.4: resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} - svgo@2.8.0: - resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} - engines: {node: '>=10.13.0'} - hasBin: true - svgo@3.3.2: resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} engines: {node: '>=14.0.0'} @@ -16189,6 +16434,7 @@ packages: tar@6.2.1: resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} engines: {node: '>=10'} + deprecated: Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me temp-dir@3.0.0: resolution: {integrity: sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==} @@ -16317,6 +16563,10 @@ packages: resolution: {integrity: sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==} engines: {node: '>=14.14'} + tmp@0.2.6: + resolution: {integrity: sha512-5sJPdPjfI5Kx+qbrDesxkglRBxW//g7hCsqspEjwkewGvBMGIKMOTKzLt1hFVJzyadba3lDUN20O9qhvbQUSTA==} + engines: {node: '>=14.14'} + tmpl@1.0.5: resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} @@ -16601,11 +16851,6 @@ packages: resolution: {integrity: sha512-Vn42zdX3FhmUrzEmitX3iYyLb+Umwpmv8fkZRIknYh84lmdrwqZA5xYaoKiIj2Rc5i/5wcDrpUmZcbk1U51vTw==} engines: {node: '>=4'} - typescript-log@2.0.0: - resolution: {integrity: sha512-TyW8lmURJSo0yjBovEhESpah3haDYBgsnQRocBF4MQSDJSYs/DOmhjo2cpSrGyvD9OaX++dbbonq9TkIQeA+Bw==} - peerDependencies: - tslib: ^2.0.0 - typescript@4.9.5: resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} engines: {node: '>=4.2.0'} @@ -16653,6 +16898,9 @@ packages: ufo@1.6.1: resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} + ufo@1.6.4: + resolution: {integrity: sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==} + uglify-js@3.19.3: resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} engines: {node: '>=0.8.0'} @@ -16692,10 +16940,18 @@ packages: undici-types@7.16.0: resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==} + undici@6.26.0: + resolution: {integrity: sha512-4yqz8a3n5HmGTlsbADNtr/dJlhkh/55Rq798G6ibiULcXbDtaLpTl1pvdqcbFfeoj3iSi52lePFM7h9H21cw/A==} + engines: {node: '>=18.17'} + undici@7.16.0: resolution: {integrity: sha512-QEg3HPMll0o3t2ourKwOeUAZ159Kn9mx5pnzHRQO8+Wixmh88YdZRiIwat0iNzNNXn0yoEtXJqFpyW7eM8BV7g==} engines: {node: '>=20.18.1'} + undici@7.24.7: + resolution: {integrity: sha512-H/nlJ/h0ggGC+uRL3ovD+G0i4bqhvsDOpbDv7At5eFLlj2b41L8QliGbnl2H7SnDiYhENphh1tQFJZf+MyfLsQ==} + engines: {node: '>=20.18.1'} + unicode-canonical-property-names-ecmascript@2.0.1: resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} engines: {node: '>=4'} @@ -16955,10 +17211,12 @@ packages: uuid@8.3.2: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028). hasBin: true uuid@9.0.1: resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} + deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028). hasBin: true uvu@0.5.6: @@ -17198,10 +17456,12 @@ packages: whatwg-encoding@2.0.0: resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} engines: {node: '>=12'} + deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation whatwg-encoding@3.1.1: resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} engines: {node: '>=18'} + deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation whatwg-mimetype@4.0.0: resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} @@ -17318,6 +17578,18 @@ packages: utf-8-validate: optional: true + ws@8.21.0: + resolution: {integrity: sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + wsl-utils@0.1.0: resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==} engines: {node: '>=18'} @@ -17365,6 +17637,11 @@ packages: engines: {node: '>= 14.6'} hasBin: true + yaml@2.9.0: + resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==} + engines: {node: '>= 14.6'} + hasBin: true + yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} @@ -17421,6 +17698,9 @@ packages: zod@4.2.1: resolution: {integrity: sha512-0wZ1IRqGGhMP76gLqz8EyfBXKk0J2qo2+H3fi4mcUP/KtTocoX08nmIAHl1Z2kJIZbZee8KOpBCSNPRgauucjw==} + zod@4.4.3: + resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==} + zustand@4.5.7: resolution: {integrity: sha512-CHOUy7mu3lbD6o6LJLfllpjkzhHXSBlX8B9+qPddUsIfeF5S/UZ5q0kmCsnRqT1UHFQZchNFDDzMbQsuesHWlw==} engines: {node: '>=12.7.0'} @@ -17449,6 +17729,22 @@ packages: snapshots: + '@actions/core@3.0.1': + dependencies: + '@actions/exec': 3.0.0 + '@actions/http-client': 4.0.1 + + '@actions/exec@3.0.0': + dependencies: + '@actions/io': 3.0.2 + + '@actions/http-client@4.0.1': + dependencies: + tunnel: 0.0.6 + undici: 6.26.0 + + '@actions/io@3.0.2': {} + '@adobe/css-tools@4.4.4': {} '@alloy-js/babel-plugin-jsx-dom-expressions@0.39.1(@babel/core@7.28.5)': @@ -17486,7 +17782,7 @@ snapshots: cli-table3: 0.6.5 pathe: 2.0.3 picocolors: 1.1.1 - prettier: 3.7.4 + prettier: 3.8.3 '@alloy-js/json@0.21.0': dependencies: @@ -17498,11 +17794,11 @@ snapshots: '@alloy-js/core': 0.21.0 yaml: 2.8.2 - '@alloy-js/rollup-plugin@0.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.53.5)': + '@alloy-js/rollup-plugin@0.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.61.1)': dependencies: '@alloy-js/babel-preset': 0.2.1(@babel/core@7.28.5) '@babel/preset-typescript': 7.28.5(@babel/core@7.28.5) - '@rollup/plugin-babel': 6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.53.5) + '@rollup/plugin-babel': 6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.61.1) transitivePeerDependencies: - '@babel/core' - '@types/babel__core' @@ -18071,6 +18367,88 @@ snapshots: '@aws/lambda-invoke-store@0.2.2': {} + '@azure/abort-controller@2.1.2': + dependencies: + tslib: 2.8.1 + + '@azure/core-auth@1.10.1': + dependencies: + '@azure/abort-controller': 2.1.2 + '@azure/core-util': 1.13.1 + tslib: 2.8.1 + transitivePeerDependencies: + - supports-color + + '@azure/core-client@1.10.2': + dependencies: + '@azure/abort-controller': 2.1.2 + '@azure/core-auth': 1.10.1 + '@azure/core-rest-pipeline': 1.24.0 + '@azure/core-tracing': 1.3.1 + '@azure/core-util': 1.13.1 + '@azure/logger': 1.3.0 + tslib: 2.8.1 + transitivePeerDependencies: + - supports-color + + '@azure/core-rest-pipeline@1.24.0': + dependencies: + '@azure/abort-controller': 2.1.2 + '@azure/core-auth': 1.10.1 + '@azure/core-tracing': 1.3.1 + '@azure/core-util': 1.13.1 + '@azure/logger': 1.3.0 + '@typespec/ts-http-runtime': 0.3.6 + tslib: 2.8.1 + transitivePeerDependencies: + - supports-color + + '@azure/core-tracing@1.3.1': + dependencies: + tslib: 2.8.1 + + '@azure/core-util@1.13.1': + dependencies: + '@azure/abort-controller': 2.1.2 + '@typespec/ts-http-runtime': 0.3.6 + tslib: 2.8.1 + transitivePeerDependencies: + - supports-color + + '@azure/identity@4.13.1': + dependencies: + '@azure/abort-controller': 2.1.2 + '@azure/core-auth': 1.10.1 + '@azure/core-client': 1.10.2 + '@azure/core-rest-pipeline': 1.24.0 + '@azure/core-tracing': 1.3.1 + '@azure/core-util': 1.13.1 + '@azure/logger': 1.3.0 + '@azure/msal-browser': 5.12.0 + '@azure/msal-node': 5.2.3 + open: 10.2.0 + tslib: 2.8.1 + transitivePeerDependencies: + - supports-color + + '@azure/logger@1.3.0': + dependencies: + '@typespec/ts-http-runtime': 0.3.6 + tslib: 2.8.1 + transitivePeerDependencies: + - supports-color + + '@azure/msal-browser@5.12.0': + dependencies: + '@azure/msal-common': 16.7.0 + + '@azure/msal-common@16.7.0': {} + + '@azure/msal-node@5.2.3': + dependencies: + '@azure/msal-common': 16.7.0 + jsonwebtoken: 9.0.2 + '@babel/code-frame@7.12.11': dependencies: '@babel/highlight': 7.25.9 @@ -18937,6 +19315,12 @@ snapshots: '@bcoe/v8-coverage@0.2.3': {} + '@boringnode/bus@0.9.0': + dependencies: + '@paralleldrive/cuid2': 3.3.0 + '@poppinss/utils': 6.10.1 + object-hash: 3.0.0 + '@cacheable/memory@2.0.6': dependencies: '@cacheable/utils': 2.3.2 @@ -19275,15 +19659,28 @@ snapshots: dependencies: '@noble/ciphers': 1.3.0 + '@emnapi/core@1.4.5': + dependencies: + '@emnapi/wasi-threads': 1.0.4 + tslib: 2.8.1 + '@emnapi/core@1.7.1': dependencies: '@emnapi/wasi-threads': 1.1.0 tslib: 2.8.1 + '@emnapi/runtime@1.4.5': + dependencies: + tslib: 2.8.1 + '@emnapi/runtime@1.7.1': dependencies: tslib: 2.8.1 + '@emnapi/wasi-threads@1.0.4': + dependencies: + tslib: 2.8.1 + '@emnapi/wasi-threads@1.1.0': dependencies: tslib: 2.8.1 @@ -19625,9 +20022,9 @@ snapshots: eslint: 9.39.2(jiti@2.4.2) eslint-visitor-keys: 3.4.3 - '@eslint-community/eslint-utils@4.9.0(eslint@9.39.2(jiti@2.6.1))': + '@eslint-community/eslint-utils@4.9.0(eslint@9.39.2(jiti@2.7.0))': dependencies: - eslint: 9.39.2(jiti@2.6.1) + eslint: 9.39.2(jiti@2.7.0) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.2': {} @@ -19692,7 +20089,7 @@ snapshots: '@eslint-react/eff': 1.53.1 '@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3) ts-pattern: 5.9.0 - zod: 4.2.1 + zod: 4.4.3 transitivePeerDependencies: - eslint - supports-color @@ -19704,7 +20101,7 @@ snapshots: '@eslint-react/kit': 1.53.1(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3) '@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3) ts-pattern: 5.9.0 - zod: 4.2.1 + zod: 4.4.3 transitivePeerDependencies: - eslint - supports-color @@ -19888,10 +20285,9 @@ snapshots: dependencies: '@graphql-tools/executor-common': 0.0.6(graphql@16.12.0) '@graphql-tools/utils': 10.11.0(graphql@16.12.0) - '@types/ws': 8.18.1 '@whatwg-node/disposablestack': 0.0.6 graphql: 16.12.0 - graphql-ws: 6.0.6(@types/ws@8.18.1)(crossws@0.3.5)(graphql@16.12.0)(ws@8.18.3) + graphql-ws: 6.0.6(crossws@0.3.5)(graphql@16.12.0)(ws@8.18.3) isomorphic-ws: 5.0.0(ws@8.18.3) tslib: 2.8.1 ws: 8.18.3 @@ -20108,6 +20504,16 @@ snapshots: optionalDependencies: '@types/node': 20.9.0 + '@inquirer/checkbox@5.0.3(@types/node@20.19.42)': + dependencies: + '@inquirer/ansi': 2.0.2 + '@inquirer/core': 11.1.0(@types/node@20.19.42) + '@inquirer/figures': 2.0.2 + '@inquirer/type': 4.0.2(@types/node@20.19.42) + optionalDependencies: + '@types/node': 20.19.42 + optional: true + '@inquirer/checkbox@5.0.3(@types/node@20.9.0)': dependencies: '@inquirer/ansi': 2.0.2 @@ -20139,6 +20545,14 @@ snapshots: optionalDependencies: '@types/node': 20.9.0 + '@inquirer/confirm@6.0.3(@types/node@20.19.42)': + dependencies: + '@inquirer/core': 11.1.0(@types/node@20.19.42) + '@inquirer/type': 4.0.2(@types/node@20.19.42) + optionalDependencies: + '@types/node': 20.19.42 + optional: true + '@inquirer/confirm@6.0.3(@types/node@20.9.0)': dependencies: '@inquirer/core': 11.1.0(@types/node@20.9.0) @@ -20167,12 +20581,24 @@ snapshots: optionalDependencies: '@types/node': 20.9.0 + '@inquirer/core@11.1.0(@types/node@20.19.42)': + dependencies: + '@inquirer/ansi': 2.0.2 + '@inquirer/figures': 2.0.2 + '@inquirer/type': 4.0.2(@types/node@20.19.42) + cli-width: 4.1.0 + mute-stream: 3.0.0 + signal-exit: 4.1.0 + wrap-ansi: 9.0.2 + optionalDependencies: + '@types/node': 20.19.42 + optional: true + '@inquirer/core@11.1.0(@types/node@20.9.0)': dependencies: '@inquirer/ansi': 2.0.2 '@inquirer/figures': 2.0.2 '@inquirer/type': 4.0.2(@types/node@20.9.0) - '@types/mute-stream': 0.0.4 cli-width: 4.1.0 mute-stream: 3.0.0 signal-exit: 4.1.0 @@ -20185,7 +20611,6 @@ snapshots: '@inquirer/ansi': 2.0.2 '@inquirer/figures': 2.0.2 '@inquirer/type': 4.0.2(@types/node@25.0.3) - '@types/mute-stream': 0.0.4 cli-width: 4.1.0 mute-stream: 3.0.0 signal-exit: 4.1.0 @@ -20217,6 +20642,15 @@ snapshots: optionalDependencies: '@types/node': 20.9.0 + '@inquirer/editor@5.0.3(@types/node@20.19.42)': + dependencies: + '@inquirer/core': 11.1.0(@types/node@20.19.42) + '@inquirer/external-editor': 2.0.2(@types/node@20.19.42) + '@inquirer/type': 4.0.2(@types/node@20.19.42) + optionalDependencies: + '@types/node': 20.19.42 + optional: true + '@inquirer/editor@5.0.3(@types/node@20.9.0)': dependencies: '@inquirer/core': 11.1.0(@types/node@20.9.0) @@ -20242,6 +20676,14 @@ snapshots: optionalDependencies: '@types/node': 20.9.0 + '@inquirer/expand@5.0.3(@types/node@20.19.42)': + dependencies: + '@inquirer/core': 11.1.0(@types/node@20.19.42) + '@inquirer/type': 4.0.2(@types/node@20.19.42) + optionalDependencies: + '@types/node': 20.19.42 + optional: true + '@inquirer/expand@5.0.3(@types/node@20.9.0)': dependencies: '@inquirer/core': 11.1.0(@types/node@20.9.0) @@ -20257,6 +20699,13 @@ snapshots: '@types/node': 25.0.3 optional: true + '@inquirer/external-editor@1.0.3(@types/node@20.19.42)': + dependencies: + chardet: 2.1.1 + iconv-lite: 0.7.1 + optionalDependencies: + '@types/node': 20.19.42 + '@inquirer/external-editor@1.0.3(@types/node@20.9.0)': dependencies: chardet: 2.1.1 @@ -20271,9 +20720,16 @@ snapshots: optionalDependencies: '@types/node': 25.0.3 + '@inquirer/external-editor@2.0.2(@types/node@20.19.42)': + dependencies: + chardet: 2.1.1 + iconv-lite: 0.7.1 + optionalDependencies: + '@types/node': 20.19.42 + optional: true + '@inquirer/external-editor@2.0.2(@types/node@20.9.0)': dependencies: - '@types/chardet': 1.0.0 chardet: 2.1.1 iconv-lite: 0.7.1 optionalDependencies: @@ -20281,7 +20737,6 @@ snapshots: '@inquirer/external-editor@2.0.2(@types/node@25.0.3)': dependencies: - '@types/chardet': 1.0.0 chardet: 2.1.1 iconv-lite: 0.7.1 optionalDependencies: @@ -20304,6 +20759,14 @@ snapshots: optionalDependencies: '@types/node': 20.9.0 + '@inquirer/input@5.0.3(@types/node@20.19.42)': + dependencies: + '@inquirer/core': 11.1.0(@types/node@20.19.42) + '@inquirer/type': 4.0.2(@types/node@20.19.42) + optionalDependencies: + '@types/node': 20.19.42 + optional: true + '@inquirer/input@5.0.3(@types/node@20.9.0)': dependencies: '@inquirer/core': 11.1.0(@types/node@20.9.0) @@ -20326,6 +20789,14 @@ snapshots: optionalDependencies: '@types/node': 20.9.0 + '@inquirer/number@4.0.3(@types/node@20.19.42)': + dependencies: + '@inquirer/core': 11.1.0(@types/node@20.19.42) + '@inquirer/type': 4.0.2(@types/node@20.19.42) + optionalDependencies: + '@types/node': 20.19.42 + optional: true + '@inquirer/number@4.0.3(@types/node@20.9.0)': dependencies: '@inquirer/core': 11.1.0(@types/node@20.9.0) @@ -20349,6 +20820,15 @@ snapshots: optionalDependencies: '@types/node': 20.9.0 + '@inquirer/password@5.0.3(@types/node@20.19.42)': + dependencies: + '@inquirer/ansi': 2.0.2 + '@inquirer/core': 11.1.0(@types/node@20.19.42) + '@inquirer/type': 4.0.2(@types/node@20.19.42) + optionalDependencies: + '@types/node': 20.19.42 + optional: true + '@inquirer/password@5.0.3(@types/node@20.9.0)': dependencies: '@inquirer/ansi': 2.0.2 @@ -20395,6 +20875,22 @@ snapshots: '@inquirer/select': 4.4.2(@types/node@20.9.0) '@types/node': 20.9.0 + '@inquirer/prompts@8.1.0(@types/node@20.19.42)': + dependencies: + '@inquirer/checkbox': 5.0.3(@types/node@20.19.42) + '@inquirer/confirm': 6.0.3(@types/node@20.19.42) + '@inquirer/editor': 5.0.3(@types/node@20.19.42) + '@inquirer/expand': 5.0.3(@types/node@20.19.42) + '@inquirer/input': 5.0.3(@types/node@20.19.42) + '@inquirer/number': 4.0.3(@types/node@20.19.42) + '@inquirer/password': 5.0.3(@types/node@20.19.42) + '@inquirer/rawlist': 5.1.0(@types/node@20.19.42) + '@inquirer/search': 4.0.3(@types/node@20.19.42) + '@inquirer/select': 5.0.3(@types/node@20.19.42) + optionalDependencies: + '@types/node': 20.19.42 + optional: true + '@inquirer/prompts@8.1.0(@types/node@20.9.0)': dependencies: '@inquirer/checkbox': 5.0.3(@types/node@20.9.0) @@ -20434,6 +20930,14 @@ snapshots: optionalDependencies: '@types/node': 20.9.0 + '@inquirer/rawlist@5.1.0(@types/node@20.19.42)': + dependencies: + '@inquirer/core': 11.1.0(@types/node@20.19.42) + '@inquirer/type': 4.0.2(@types/node@20.19.42) + optionalDependencies: + '@types/node': 20.19.42 + optional: true + '@inquirer/rawlist@5.1.0(@types/node@20.9.0)': dependencies: '@inquirer/core': 11.1.0(@types/node@20.9.0) @@ -20458,6 +20962,15 @@ snapshots: optionalDependencies: '@types/node': 20.9.0 + '@inquirer/search@4.0.3(@types/node@20.19.42)': + dependencies: + '@inquirer/core': 11.1.0(@types/node@20.19.42) + '@inquirer/figures': 2.0.2 + '@inquirer/type': 4.0.2(@types/node@20.19.42) + optionalDependencies: + '@types/node': 20.19.42 + optional: true + '@inquirer/search@4.0.3(@types/node@20.9.0)': dependencies: '@inquirer/core': 11.1.0(@types/node@20.9.0) @@ -20493,6 +21006,16 @@ snapshots: optionalDependencies: '@types/node': 20.9.0 + '@inquirer/select@5.0.3(@types/node@20.19.42)': + dependencies: + '@inquirer/ansi': 2.0.2 + '@inquirer/core': 11.1.0(@types/node@20.19.42) + '@inquirer/figures': 2.0.2 + '@inquirer/type': 4.0.2(@types/node@20.19.42) + optionalDependencies: + '@types/node': 20.19.42 + optional: true + '@inquirer/select@5.0.3(@types/node@20.9.0)': dependencies: '@inquirer/ansi': 2.0.2 @@ -20524,6 +21047,11 @@ snapshots: optionalDependencies: '@types/node': 20.9.0 + '@inquirer/type@4.0.2(@types/node@20.19.42)': + optionalDependencies: + '@types/node': 20.19.42 + optional: true + '@inquirer/type@4.0.2(@types/node@20.9.0)': optionalDependencies: '@types/node': 20.9.0 @@ -20576,16 +21104,14 @@ snapshots: jest-util: 30.2.0 slash: 3.0.0 - '@jest/core@30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(babel-plugin-macros@3.1.0)': + '@jest/core@30.0.5(babel-plugin-macros@3.1.0)': dependencies: '@jest/console': 30.0.5 '@jest/pattern': 30.0.1 - '@jest/reporters': 30.0.5(@types/node-notifier@8.0.5) + '@jest/reporters': 30.0.5 '@jest/test-result': 30.0.5 '@jest/transform': 30.0.5 '@jest/types': 30.0.5 - '@types/graceful-fs': 4.1.9 - '@types/micromatch': 4.0.10 '@types/node': 20.9.0 ansi-escapes: 4.3.2 chalk: 4.1.2 @@ -20593,7 +21119,7 @@ snapshots: exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.0.5 - jest-config: 30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node@20.9.0)(babel-plugin-macros@3.1.0) + jest-config: 30.0.5(@types/node@20.9.0)(babel-plugin-macros@3.1.0) jest-haste-map: 30.0.5 jest-message-util: 30.0.5 jest-regex-util: 30.0.1 @@ -20609,8 +21135,6 @@ snapshots: pretty-format: 30.0.5 slash: 3.0.0 transitivePeerDependencies: - - '@types/babel-plugin-macros' - - '@types/node-notifier' - babel-plugin-macros - esbuild-register - supports-color @@ -20699,7 +21223,7 @@ snapshots: '@types/node': 20.9.0 jest-regex-util: 30.0.1 - '@jest/reporters@30.0.5(@types/node-notifier@8.0.5)': + '@jest/reporters@30.0.5': dependencies: '@bcoe/v8-coverage': 0.2.3 '@jest/console': 30.0.5 @@ -20707,14 +21231,7 @@ snapshots: '@jest/transform': 30.0.5 '@jest/types': 30.0.5 '@jridgewell/trace-mapping': 0.3.31 - '@types/graceful-fs': 4.1.9 - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-lib-instrument': 1.7.8 - '@types/istanbul-lib-report': 3.0.3 - '@types/istanbul-lib-source-maps': 4.0.4 - '@types/istanbul-reports': 3.0.4 '@types/node': 20.9.0 - '@types/node-notifier': 8.0.5 chalk: 4.1.2 collect-v8-coverage: 1.0.3 exit-x: 0.2.2 @@ -20734,7 +21251,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@jest/reporters@30.2.0(@types/node-notifier@8.0.5)': + '@jest/reporters@30.2.0': dependencies: '@bcoe/v8-coverage': 0.2.3 '@jest/console': 30.2.0 @@ -20742,14 +21259,7 @@ snapshots: '@jest/transform': 30.2.0 '@jest/types': 30.2.0 '@jridgewell/trace-mapping': 0.3.31 - '@types/graceful-fs': 4.1.9 - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-lib-instrument': 1.7.8 - '@types/istanbul-lib-report': 3.0.3 - '@types/istanbul-lib-source-maps': 4.0.4 - '@types/istanbul-reports': 3.0.4 '@types/node': 20.9.0 - '@types/node-notifier': 8.0.5 chalk: 4.1.2 collect-v8-coverage: 1.0.3 exit-x: 0.2.2 @@ -20780,8 +21290,6 @@ snapshots: '@jest/snapshot-utils@30.0.5': dependencies: '@jest/types': 30.0.5 - '@types/graceful-fs': 4.1.9 - '@types/natural-compare': 1.4.3 chalk: 4.1.2 graceful-fs: 4.2.11 natural-compare: 1.4.0 @@ -20789,8 +21297,6 @@ snapshots: '@jest/snapshot-utils@30.2.0': dependencies: '@jest/types': 30.2.0 - '@types/graceful-fs': 4.1.9 - '@types/natural-compare': 1.4.3 chalk: 4.1.2 graceful-fs: 4.2.11 natural-compare: 1.4.0 @@ -20798,7 +21304,6 @@ snapshots: '@jest/source-map@30.0.1': dependencies: '@jridgewell/trace-mapping': 0.3.31 - '@types/graceful-fs': 4.1.9 callsites: 3.1.0 graceful-fs: 4.2.11 @@ -20819,7 +21324,6 @@ snapshots: '@jest/test-sequencer@30.0.5': dependencies: '@jest/test-result': 30.0.5 - '@types/graceful-fs': 4.1.9 graceful-fs: 4.2.11 jest-haste-map: 30.0.5 slash: 3.0.0 @@ -20827,7 +21331,6 @@ snapshots: '@jest/test-sequencer@30.2.0': dependencies: '@jest/test-result': 30.2.0 - '@types/graceful-fs': 4.1.9 graceful-fs: 4.2.11 jest-haste-map: 30.2.0 slash: 3.0.0 @@ -20837,10 +21340,6 @@ snapshots: '@babel/core': 7.28.5 '@jest/types': 30.0.5 '@jridgewell/trace-mapping': 0.3.31 - '@types/convert-source-map': 2.0.3 - '@types/graceful-fs': 4.1.9 - '@types/micromatch': 4.0.10 - '@types/write-file-atomic': 4.0.3 babel-plugin-istanbul: 7.0.1 chalk: 4.1.2 convert-source-map: 2.0.0 @@ -20861,10 +21360,6 @@ snapshots: '@babel/core': 7.28.5 '@jest/types': 30.2.0 '@jridgewell/trace-mapping': 0.3.31 - '@types/convert-source-map': 2.0.3 - '@types/graceful-fs': 4.1.9 - '@types/micromatch': 4.0.10 - '@types/write-file-atomic': 4.0.3 babel-plugin-istanbul: 7.0.1 chalk: 4.1.2 convert-source-map: 2.0.0 @@ -20886,7 +21381,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 25.0.3 + '@types/node': 20.9.0 '@types/yargs': 17.0.35 chalk: 4.1.2 @@ -20931,6 +21426,11 @@ snapshots: jsbi: 4.3.2 tslib: 2.8.1 + '@julr/utils@1.9.0': + dependencies: + '@lukeed/ms': 2.0.2 + bytes: 3.1.2 + '@keyv/bigmap@1.3.0(keyv@5.5.5)': dependencies: hashery: 1.3.0 @@ -21002,7 +21502,7 @@ snapshots: dependencies: '@log4brains/cli-common': 1.1.0 '@log4brains/core': 1.1.0 - '@material-ui/core': 4.12.4(@types/react@19.2.7)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@material-ui/core': 4.12.4(@types/react@19.2.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@material-ui/icons': 4.11.3(@material-ui/core@4.12.4(@types/react@17.0.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@types/react@17.0.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@material-ui/lab': 4.0.0-alpha.61(@material-ui/core@4.12.4(@types/react@17.0.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@types/react@17.0.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@next/bundle-analyzer': 10.2.3 @@ -21041,7 +21541,9 @@ snapshots: '@ltd/j-toml@1.38.0': {} - '@material-ui/core@4.12.4(@types/react@19.2.7)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@lukeed/ms@2.0.2': {} + + '@material-ui/core@4.12.4(@types/react@19.2.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.28.4 '@material-ui/styles': 4.11.5(@types/react@17.0.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -21053,8 +21555,8 @@ snapshots: hoist-non-react-statics: 3.3.2 popper.js: 1.16.1-lts prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-is: 17.0.2 react-transition-group: 4.4.5(react-dom@17.0.2(react@17.0.2))(react@17.0.2) optionalDependencies: @@ -21063,7 +21565,7 @@ snapshots: '@material-ui/icons@4.11.3(@material-ui/core@4.12.4(@types/react@17.0.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@types/react@17.0.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.28.4 - '@material-ui/core': 4.12.4(@types/react@19.2.7)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@material-ui/core': 4.12.4(@types/react@19.2.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) optionalDependencies: @@ -21072,7 +21574,7 @@ snapshots: '@material-ui/lab@4.0.0-alpha.61(@material-ui/core@4.12.4(@types/react@17.0.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@types/react@17.0.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.28.4 - '@material-ui/core': 4.12.4(@types/react@19.2.7)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@material-ui/core': 4.12.4(@types/react@19.2.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@material-ui/utils': 4.11.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) clsx: 1.2.1 prop-types: 15.8.1 @@ -21128,6 +21630,14 @@ snapshots: react-dom: 17.0.2(react@17.0.2) react-is: 17.0.2 + '@microsoft/api-extractor-model@7.32.2(@types/node@20.19.42)': + dependencies: + '@microsoft/tsdoc': 0.16.0 + '@microsoft/tsdoc-config': 0.18.0 + '@rushstack/node-core-library': 5.19.1(@types/node@20.19.42) + transitivePeerDependencies: + - '@types/node' + '@microsoft/api-extractor-model@7.32.2(@types/node@20.9.0)': dependencies: '@microsoft/tsdoc': 0.16.0 @@ -21144,6 +21654,49 @@ snapshots: transitivePeerDependencies: - '@types/node' + '@microsoft/api-extractor-model@7.33.8(@types/node@20.19.42)': + dependencies: + '@microsoft/tsdoc': 0.16.0 + '@microsoft/tsdoc-config': 0.18.1 + '@rushstack/node-core-library': 5.23.1(@types/node@20.19.42) + transitivePeerDependencies: + - '@types/node' + + '@microsoft/api-extractor-model@7.33.8(@types/node@20.9.0)': + dependencies: + '@microsoft/tsdoc': 0.16.0 + '@microsoft/tsdoc-config': 0.18.1 + '@rushstack/node-core-library': 5.23.1(@types/node@20.9.0) + transitivePeerDependencies: + - '@types/node' + + '@microsoft/api-extractor-model@7.33.8(@types/node@25.0.3)': + dependencies: + '@microsoft/tsdoc': 0.16.0 + '@microsoft/tsdoc-config': 0.18.1 + '@rushstack/node-core-library': 5.23.1(@types/node@25.0.3) + transitivePeerDependencies: + - '@types/node' + + '@microsoft/api-extractor@7.55.2(@types/node@20.19.42)': + dependencies: + '@microsoft/api-extractor-model': 7.32.2(@types/node@20.19.42) + '@microsoft/tsdoc': 0.16.0 + '@microsoft/tsdoc-config': 0.18.0 + '@rushstack/node-core-library': 5.19.1(@types/node@20.19.42) + '@rushstack/rig-package': 0.6.0 + '@rushstack/terminal': 0.19.5(@types/node@20.19.42) + '@rushstack/ts-command-line': 5.1.5(@types/node@20.19.42) + diff: 8.0.2 + lodash: 4.17.21 + minimatch: 10.0.3 + resolve: 1.22.11 + semver: 7.5.4 + source-map: 0.6.1 + typescript: 5.8.2 + transitivePeerDependencies: + - '@types/node' + '@microsoft/api-extractor@7.55.2(@types/node@20.9.0)': dependencies: '@microsoft/api-extractor-model': 7.32.2(@types/node@20.9.0) @@ -21182,6 +21735,60 @@ snapshots: transitivePeerDependencies: - '@types/node' + '@microsoft/api-extractor@7.58.7(@types/node@20.19.42)': + dependencies: + '@microsoft/api-extractor-model': 7.33.8(@types/node@20.19.42) + '@microsoft/tsdoc': 0.16.0 + '@microsoft/tsdoc-config': 0.18.1 + '@rushstack/node-core-library': 5.23.1(@types/node@20.19.42) + '@rushstack/rig-package': 0.7.3 + '@rushstack/terminal': 0.24.0(@types/node@20.19.42) + '@rushstack/ts-command-line': 5.3.9(@types/node@20.19.42) + diff: 8.0.2 + minimatch: 10.2.3 + resolve: 1.22.11 + semver: 7.7.4 + source-map: 0.6.1 + typescript: 5.9.3 + transitivePeerDependencies: + - '@types/node' + + '@microsoft/api-extractor@7.58.7(@types/node@20.9.0)': + dependencies: + '@microsoft/api-extractor-model': 7.33.8(@types/node@20.9.0) + '@microsoft/tsdoc': 0.16.0 + '@microsoft/tsdoc-config': 0.18.1 + '@rushstack/node-core-library': 5.23.1(@types/node@20.9.0) + '@rushstack/rig-package': 0.7.3 + '@rushstack/terminal': 0.24.0(@types/node@20.9.0) + '@rushstack/ts-command-line': 5.3.9(@types/node@20.9.0) + diff: 8.0.2 + minimatch: 10.2.3 + resolve: 1.22.11 + semver: 7.7.4 + source-map: 0.6.1 + typescript: 5.9.3 + transitivePeerDependencies: + - '@types/node' + + '@microsoft/api-extractor@7.58.7(@types/node@25.0.3)': + dependencies: + '@microsoft/api-extractor-model': 7.33.8(@types/node@25.0.3) + '@microsoft/tsdoc': 0.16.0 + '@microsoft/tsdoc-config': 0.18.1 + '@rushstack/node-core-library': 5.23.1(@types/node@25.0.3) + '@rushstack/rig-package': 0.7.3 + '@rushstack/terminal': 0.24.0(@types/node@25.0.3) + '@rushstack/ts-command-line': 5.3.9(@types/node@25.0.3) + diff: 8.0.2 + minimatch: 10.2.3 + resolve: 1.22.11 + semver: 7.7.4 + source-map: 0.6.1 + typescript: 5.9.3 + transitivePeerDependencies: + - '@types/node' + '@microsoft/tsdoc-config@0.17.1': dependencies: '@microsoft/tsdoc': 0.15.1 @@ -21196,6 +21803,13 @@ snapshots: jju: 1.4.0 resolve: 1.22.11 + '@microsoft/tsdoc-config@0.18.1': + dependencies: + '@microsoft/tsdoc': 0.16.0 + ajv: 8.18.0 + jju: 1.4.0 + resolve: 1.22.11 + '@microsoft/tsdoc@0.15.1': {} '@microsoft/tsdoc@0.16.0': {} @@ -21206,6 +21820,14 @@ snapshots: '@types/semver': 7.5.8 semver: 7.6.3 + '@module-federation/bridge-react-webpack-plugin@2.5.1(node-fetch@3.3.2)': + dependencies: + '@module-federation/sdk': 2.5.1(node-fetch@3.3.2) + '@types/semver': 7.5.8 + semver: 7.6.3 + transitivePeerDependencies: + - node-fetch + '@module-federation/cli@0.21.6(typescript@5.3.3)': dependencies: '@module-federation/dts-plugin': 0.21.6(typescript@5.3.3) @@ -21221,15 +21843,26 @@ snapshots: - utf-8-validate - vue-tsc - '@module-federation/data-prefetch@0.21.6(@types/react@19.2.7)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@module-federation/cli@2.5.1(node-fetch@3.3.2)(typescript@5.3.3)': + dependencies: + '@module-federation/dts-plugin': 2.5.1(node-fetch@3.3.2)(typescript@5.3.3) + '@module-federation/sdk': 2.5.1(node-fetch@3.3.2) + commander: 11.1.0 + jiti: 2.4.2 + transitivePeerDependencies: + - bufferutil + - node-fetch + - typescript + - utf-8-validate + - vue-tsc + + '@module-federation/data-prefetch@0.21.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@module-federation/runtime': 0.21.6 '@module-federation/sdk': 0.21.6 - '@types/fs-extra': 9.0.6 - '@types/react': 19.2.7 fs-extra: 9.1.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@module-federation/dts-plugin@0.21.6(typescript@5.3.3)': dependencies: @@ -21237,9 +21870,6 @@ snapshots: '@module-federation/managers': 0.21.6 '@module-federation/sdk': 0.21.6 '@module-federation/third-party-dts-extractor': 0.21.6 - '@types/koa': 2.15.0 - '@types/node-schedule': 2.1.7 - '@types/ws': 8.5.12 adm-zip: 0.5.16 ansi-colors: 4.1.3 axios: 1.13.2 @@ -21259,11 +21889,29 @@ snapshots: - supports-color - utf-8-validate - '@module-federation/enhanced@0.21.6(@rspack/core@1.6.8)(@types/react@19.2.7)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3)(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))': + '@module-federation/dts-plugin@2.5.1(node-fetch@3.3.2)(typescript@5.3.3)': + dependencies: + '@module-federation/error-codes': 2.5.1 + '@module-federation/managers': 2.5.1(node-fetch@3.3.2) + '@module-federation/sdk': 2.5.1(node-fetch@3.3.2) + '@module-federation/third-party-dts-extractor': 2.5.1 + adm-zip: 0.5.10 + ansi-colors: 4.1.3 + isomorphic-ws: 5.0.0(ws@8.21.0) + node-schedule: 2.1.1 + typescript: 5.3.3 + undici: 7.24.7 + ws: 8.21.0 + transitivePeerDependencies: + - bufferutil + - node-fetch + - utf-8-validate + + '@module-federation/enhanced@0.21.6(@rspack/core@1.6.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))': dependencies: '@module-federation/bridge-react-webpack-plugin': 0.21.6 '@module-federation/cli': 0.21.6(typescript@5.3.3) - '@module-federation/data-prefetch': 0.21.6(@types/react@19.2.7)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@module-federation/data-prefetch': 0.21.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@module-federation/dts-plugin': 0.21.6(typescript@5.3.3) '@module-federation/error-codes': 0.21.6 '@module-federation/inject-external-runtime-core-plugin': 0.21.6(@module-federation/runtime-tools@0.21.6) @@ -21272,7 +21920,6 @@ snapshots: '@module-federation/rspack': 0.21.6(@rspack/core@1.6.8)(typescript@5.3.3) '@module-federation/runtime-tools': 0.21.6 '@module-federation/sdk': 0.21.6 - '@types/btoa': 1.2.5 btoa: 1.2.1 schema-utils: 4.3.3 upath: 2.0.1 @@ -21281,7 +21928,6 @@ snapshots: webpack: 5.104.1(@swc/core@1.7.26)(esbuild@0.27.1) transitivePeerDependencies: - '@rspack/core' - - '@types/react' - bufferutil - debug - react @@ -21289,18 +21935,56 @@ snapshots: - supports-color - utf-8-validate + '@module-federation/enhanced@2.5.1(@rspack/core@1.6.8)(node-fetch@3.3.2)(typescript@5.3.3)(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))': + dependencies: + '@module-federation/bridge-react-webpack-plugin': 2.5.1(node-fetch@3.3.2) + '@module-federation/cli': 2.5.1(node-fetch@3.3.2)(typescript@5.3.3) + '@module-federation/dts-plugin': 2.5.1(node-fetch@3.3.2)(typescript@5.3.3) + '@module-federation/error-codes': 2.5.1 + '@module-federation/inject-external-runtime-core-plugin': 2.5.1(@module-federation/runtime-tools@2.5.1(node-fetch@3.3.2)) + '@module-federation/managers': 2.5.1(node-fetch@3.3.2) + '@module-federation/manifest': 2.5.1(node-fetch@3.3.2)(typescript@5.3.3) + '@module-federation/rspack': 2.5.1(@rspack/core@1.6.8)(node-fetch@3.3.2)(typescript@5.3.3) + '@module-federation/runtime-tools': 2.5.1(node-fetch@3.3.2) + '@module-federation/sdk': 2.5.1(node-fetch@3.3.2) + '@module-federation/webpack-bundler-runtime': 2.5.1(node-fetch@3.3.2) + schema-utils: 4.3.0 + tapable: 2.3.0 + upath: 2.0.1 + optionalDependencies: + typescript: 5.3.3 + webpack: 5.104.1(@swc/core@1.7.26)(esbuild@0.27.1) + transitivePeerDependencies: + - '@rspack/core' + - bufferutil + - node-fetch + - utf-8-validate + '@module-federation/error-codes@0.21.6': {} + '@module-federation/error-codes@2.5.1': {} + '@module-federation/inject-external-runtime-core-plugin@0.21.6(@module-federation/runtime-tools@0.21.6)': dependencies: '@module-federation/runtime-tools': 0.21.6 + '@module-federation/inject-external-runtime-core-plugin@2.5.1(@module-federation/runtime-tools@2.5.1(node-fetch@3.3.2))': + dependencies: + '@module-federation/runtime-tools': 2.5.1(node-fetch@3.3.2) + '@module-federation/managers@0.21.6': dependencies: '@module-federation/sdk': 0.21.6 find-pkg: 2.0.0 fs-extra: 9.1.0 + '@module-federation/managers@2.5.1(node-fetch@3.3.2)': + dependencies: + '@module-federation/sdk': 2.5.1(node-fetch@3.3.2) + find-pkg: 2.0.0 + transitivePeerDependencies: + - node-fetch + '@module-federation/manifest@0.21.6(typescript@5.3.3)': dependencies: '@module-federation/dts-plugin': 0.21.6(typescript@5.3.3) @@ -21316,9 +22000,22 @@ snapshots: - utf-8-validate - vue-tsc - '@module-federation/node@2.7.25(@rspack/core@1.6.8)(@types/react@19.2.7)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3)(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))': + '@module-federation/manifest@2.5.1(node-fetch@3.3.2)(typescript@5.3.3)': + dependencies: + '@module-federation/dts-plugin': 2.5.1(node-fetch@3.3.2)(typescript@5.3.3) + '@module-federation/managers': 2.5.1(node-fetch@3.3.2) + '@module-federation/sdk': 2.5.1(node-fetch@3.3.2) + find-pkg: 2.0.0 + transitivePeerDependencies: + - bufferutil + - node-fetch + - typescript + - utf-8-validate + - vue-tsc + + '@module-federation/node@2.7.25(@rspack/core@1.6.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))': dependencies: - '@module-federation/enhanced': 0.21.6(@rspack/core@1.6.8)(@types/react@19.2.7)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3)(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)) + '@module-federation/enhanced': 0.21.6(@rspack/core@1.6.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)) '@module-federation/runtime': 0.21.6 '@module-federation/sdk': 0.21.6 btoa: 1.2.1 @@ -21326,11 +22023,10 @@ snapshots: node-fetch: 2.7.0(encoding@0.1.13) webpack: 5.104.1(@swc/core@1.7.26)(esbuild@0.27.1) optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@rspack/core' - - '@types/react' - bufferutil - debug - supports-color @@ -21357,40 +22053,96 @@ snapshots: - supports-color - utf-8-validate + '@module-federation/rspack@2.5.1(@rspack/core@1.6.8)(node-fetch@3.3.2)(typescript@5.3.3)': + dependencies: + '@module-federation/bridge-react-webpack-plugin': 2.5.1(node-fetch@3.3.2) + '@module-federation/dts-plugin': 2.5.1(node-fetch@3.3.2)(typescript@5.3.3) + '@module-federation/inject-external-runtime-core-plugin': 2.5.1(@module-federation/runtime-tools@2.5.1(node-fetch@3.3.2)) + '@module-federation/managers': 2.5.1(node-fetch@3.3.2) + '@module-federation/manifest': 2.5.1(node-fetch@3.3.2)(typescript@5.3.3) + '@module-federation/runtime-tools': 2.5.1(node-fetch@3.3.2) + '@module-federation/sdk': 2.5.1(node-fetch@3.3.2) + '@rspack/core': 1.6.8 + optionalDependencies: + typescript: 5.3.3 + transitivePeerDependencies: + - bufferutil + - node-fetch + - utf-8-validate + '@module-federation/runtime-core@0.21.6': dependencies: '@module-federation/error-codes': 0.21.6 '@module-federation/sdk': 0.21.6 + '@module-federation/runtime-core@2.5.1(node-fetch@3.3.2)': + dependencies: + '@module-federation/error-codes': 2.5.1 + '@module-federation/sdk': 2.5.1(node-fetch@3.3.2) + transitivePeerDependencies: + - node-fetch + '@module-federation/runtime-tools@0.21.6': dependencies: '@module-federation/runtime': 0.21.6 '@module-federation/webpack-bundler-runtime': 0.21.6 + '@module-federation/runtime-tools@2.5.1(node-fetch@3.3.2)': + dependencies: + '@module-federation/runtime': 2.5.1(node-fetch@3.3.2) + '@module-federation/webpack-bundler-runtime': 2.5.1(node-fetch@3.3.2) + transitivePeerDependencies: + - node-fetch + '@module-federation/runtime@0.21.6': dependencies: '@module-federation/error-codes': 0.21.6 '@module-federation/runtime-core': 0.21.6 '@module-federation/sdk': 0.21.6 + '@module-federation/runtime@2.5.1(node-fetch@3.3.2)': + dependencies: + '@module-federation/error-codes': 2.5.1 + '@module-federation/runtime-core': 2.5.1(node-fetch@3.3.2) + '@module-federation/sdk': 2.5.1(node-fetch@3.3.2) + transitivePeerDependencies: + - node-fetch + '@module-federation/sdk@0.21.6': {} + '@module-federation/sdk@2.5.1(node-fetch@3.3.2)': + optionalDependencies: + node-fetch: 3.3.2 + '@module-federation/third-party-dts-extractor@0.21.6': dependencies: find-pkg: 2.0.0 fs-extra: 9.1.0 resolve: 1.22.8 + '@module-federation/third-party-dts-extractor@2.5.1': + dependencies: + find-pkg: 2.0.0 + resolve: 1.22.8 + '@module-federation/webpack-bundler-runtime@0.21.6': dependencies: '@module-federation/runtime': 0.21.6 '@module-federation/sdk': 0.21.6 - '@monodon/rust@2.3.0(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(nx@22.3.1(@swc/core@1.7.26))': + '@module-federation/webpack-bundler-runtime@2.5.1(node-fetch@3.3.2)': + dependencies: + '@module-federation/error-codes': 2.5.1 + '@module-federation/runtime': 2.5.1(node-fetch@3.3.2) + '@module-federation/sdk': 2.5.1(node-fetch@3.3.2) + transitivePeerDependencies: + - node-fetch + + '@monodon/rust@2.3.0(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(nx@22.7.5(@swc/core@1.7.26))': dependencies: '@ltd/j-toml': 1.38.0 '@napi-rs/cli': 3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1) - '@nx/devkit': 20.8.3(nx@22.3.1(@swc/core@1.7.26)) + '@nx/devkit': 20.8.3(nx@22.7.5(@swc/core@1.7.26)) chalk: 4.1.2 npm-run-path: 4.0.1 semver: 7.5.4 @@ -21398,14 +22150,44 @@ snapshots: transitivePeerDependencies: - nx + '@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.19.42)(node-addon-api@7.1.1)': + dependencies: + '@inquirer/prompts': 8.1.0(@types/node@20.19.42) + '@napi-rs/cross-toolchain': 1.0.3 + '@napi-rs/wasm-tools': 1.0.1 + '@octokit/rest': 22.0.1 + clipanion: 4.0.0-rc.4(typanion@3.14.0) + colorette: 2.0.20 + emnapi: 1.7.1(node-addon-api@7.1.1) + es-toolkit: 1.43.0 + js-yaml: 4.1.1 + obug: 2.1.1 + semver: 7.7.3 + typanion: 3.14.0 + optionalDependencies: + '@emnapi/runtime': 1.7.1 + transitivePeerDependencies: + - '@napi-rs/cross-toolchain-arm64-target-aarch64' + - '@napi-rs/cross-toolchain-arm64-target-armv7' + - '@napi-rs/cross-toolchain-arm64-target-ppc64le' + - '@napi-rs/cross-toolchain-arm64-target-s390x' + - '@napi-rs/cross-toolchain-arm64-target-x86_64' + - '@napi-rs/cross-toolchain-x64-target-aarch64' + - '@napi-rs/cross-toolchain-x64-target-armv7' + - '@napi-rs/cross-toolchain-x64-target-ppc64le' + - '@napi-rs/cross-toolchain-x64-target-s390x' + - '@napi-rs/cross-toolchain-x64-target-x86_64' + - '@types/node' + - node-addon-api + - supports-color + optional: true + '@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1)': dependencies: '@inquirer/prompts': 8.1.0(@types/node@20.9.0) '@napi-rs/cross-toolchain': 1.0.3 '@napi-rs/wasm-tools': 1.0.1 '@octokit/rest': 22.0.1 - '@types/js-yaml': 4.0.9 - '@types/semver': 7.7.1 clipanion: 4.0.0-rc.4(typanion@3.14.0) colorette: 2.0.20 emnapi: 1.7.1(node-addon-api@7.1.1) @@ -21437,8 +22219,6 @@ snapshots: '@napi-rs/cross-toolchain': 1.0.3 '@napi-rs/wasm-tools': 1.0.1 '@octokit/rest': 22.0.1 - '@types/js-yaml': 4.0.9 - '@types/semver': 7.7.1 clipanion: 4.0.0-rc.4(typanion@3.14.0) colorette: 2.0.20 emnapi: 1.7.1(node-addon-api@7.1.1) @@ -21746,6 +22526,8 @@ snapshots: '@noble/hashes@1.8.0': {} + '@noble/hashes@2.2.0': {} + '@nodelib/fs.scandir@2.1.5': dependencies: '@nodelib/fs.stat': 2.0.5 @@ -21812,18 +22594,19 @@ snapshots: dependencies: which: 4.0.0 - '@nx/cypress@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': + '@nx/cypress@22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/eslint': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.3.3) - detect-port: 1.6.1 + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/eslint': 22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@phenomnomnominal/tsquery': 6.2.0(typescript@5.3.3) + detect-port: 2.1.0 semver: 7.7.3 tree-kill: 1.2.2 tslib: 2.8.1 transitivePeerDependencies: - '@babel/traverse' + - '@nx/jest' - '@swc-node/register' - '@swc/core' - '@zkochan/js-yaml' @@ -21834,40 +22617,40 @@ snapshots: - typescript - verdaccio - '@nx/devkit@20.8.3(nx@22.3.1(@swc/core@1.7.26))': + '@nx/devkit@20.8.3(nx@22.7.5(@swc/core@1.7.26))': dependencies: ejs: 3.1.10 enquirer: 2.3.6 ignore: 5.3.2 minimatch: 9.0.3 - nx: 22.3.1(@swc/core@1.7.26) + nx: 22.7.5(@swc/core@1.7.26) semver: 7.7.3 tmp: 0.2.5 tslib: 2.8.1 yargs-parser: 21.1.1 - '@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26))': + '@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26))': dependencies: '@zkochan/js-yaml': 0.0.7 - ejs: 3.1.10 + ejs: 5.0.1 enquirer: 2.3.6 - minimatch: 9.0.3 - nx: 22.3.1(@swc/core@1.7.26) + minimatch: 10.2.5 + nx: 22.7.5(@swc/core@1.7.26) semver: 7.7.3 tslib: 2.8.1 yargs-parser: 21.1.1 - '@nx/eslint-plugin@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3))(eslint-config-prettier@10.1.8(eslint@9.39.2(jiti@2.4.2)))(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': + '@nx/eslint-plugin@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3))(eslint-config-prettier@10.1.8(eslint@9.39.2(jiti@2.4.2)))(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.3.3) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@phenomnomnominal/tsquery': 6.2.0(typescript@5.3.3) '@typescript-eslint/parser': 8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3) '@typescript-eslint/type-utils': 8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3) '@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3) chalk: 4.1.2 confusing-browser-globals: 1.0.11 - globals: 15.15.0 + globals: 17.6.0 jsonc-eslint-parser: 2.4.2 semver: 7.7.3 tslib: 2.8.1 @@ -21884,15 +22667,16 @@ snapshots: - typescript - verdaccio - '@nx/eslint@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': + '@nx/eslint@22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) eslint: 9.39.2(jiti@2.4.2) semver: 7.7.3 tslib: 2.8.1 typescript: 5.9.3 optionalDependencies: + '@nx/jest': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@zkochan/js-yaml': 0.0.7 transitivePeerDependencies: - '@babel/traverse' @@ -21903,18 +22687,18 @@ snapshots: - supports-color - verdaccio - '@nx/jest@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': + '@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': dependencies: - '@jest/reporters': 30.2.0(@types/node-notifier@8.0.5) + '@jest/reporters': 30.2.0 '@jest/test-result': 30.2.0 - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@phenomnomnominal/tsquery': 6.2.0(typescript@5.2.2) identity-obj-proxy: 3.0.0 - jest-config: 30.2.0(@types/babel-plugin-macros@3.1.3)(@types/node@20.9.0)(babel-plugin-macros@3.1.0) + jest-config: 30.2.0(@types/node@20.9.0)(babel-plugin-macros@3.1.0) jest-resolve: 30.2.0 jest-util: 30.2.0 - minimatch: 9.0.3 + minimatch: 10.2.5 picocolors: 1.1.1 resolve.exports: 2.0.3 semver: 7.7.3 @@ -21924,9 +22708,7 @@ snapshots: - '@babel/traverse' - '@swc-node/register' - '@swc/core' - - '@types/babel-plugin-macros' - '@types/node' - - '@types/node-notifier' - babel-plugin-macros - debug - esbuild-register @@ -21937,18 +22719,18 @@ snapshots: - typescript - verdaccio - '@nx/jest@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': + '@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': dependencies: - '@jest/reporters': 30.2.0(@types/node-notifier@8.0.5) + '@jest/reporters': 30.2.0 '@jest/test-result': 30.2.0 - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.3.3) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@phenomnomnominal/tsquery': 6.2.0(typescript@5.3.3) identity-obj-proxy: 3.0.0 - jest-config: 30.2.0(@types/babel-plugin-macros@3.1.3)(@types/node@20.9.0)(babel-plugin-macros@3.1.0) + jest-config: 30.2.0(@types/node@20.9.0)(babel-plugin-macros@3.1.0) jest-resolve: 30.2.0 jest-util: 30.2.0 - minimatch: 9.0.3 + minimatch: 10.2.5 picocolors: 1.1.1 resolve.exports: 2.0.3 semver: 7.7.3 @@ -21958,9 +22740,7 @@ snapshots: - '@babel/traverse' - '@swc-node/register' - '@swc/core' - - '@types/babel-plugin-macros' - '@types/node' - - '@types/node-notifier' - babel-plugin-macros - debug - esbuild-register @@ -21971,18 +22751,18 @@ snapshots: - typescript - verdaccio - '@nx/jest@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': + '@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@25.0.3)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': dependencies: - '@jest/reporters': 30.2.0(@types/node-notifier@8.0.5) + '@jest/reporters': 30.2.0 '@jest/test-result': 30.2.0 - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.9.3) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@phenomnomnominal/tsquery': 6.2.0(typescript@5.3.3) identity-obj-proxy: 3.0.0 - jest-config: 30.2.0(@types/babel-plugin-macros@3.1.3)(@types/node@20.9.0)(babel-plugin-macros@3.1.0) + jest-config: 30.2.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0) jest-resolve: 30.2.0 jest-util: 30.2.0 - minimatch: 9.0.3 + minimatch: 10.2.5 picocolors: 1.1.1 resolve.exports: 2.0.3 semver: 7.7.3 @@ -21992,9 +22772,7 @@ snapshots: - '@babel/traverse' - '@swc-node/register' - '@swc/core' - - '@types/babel-plugin-macros' - '@types/node' - - '@types/node-notifier' - babel-plugin-macros - debug - esbuild-register @@ -22005,41 +22783,7 @@ snapshots: - typescript - verdaccio - '@nx/jest@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@25.0.3)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': - dependencies: - '@jest/reporters': 30.2.0(@types/node-notifier@8.0.5) - '@jest/test-result': 30.2.0 - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.9.3) - identity-obj-proxy: 3.0.0 - jest-config: 30.2.0(@types/babel-plugin-macros@3.1.3)(@types/node@25.0.3)(babel-plugin-macros@3.1.0) - jest-resolve: 30.2.0 - jest-util: 30.2.0 - minimatch: 9.0.3 - picocolors: 1.1.1 - resolve.exports: 2.0.3 - semver: 7.7.3 - tslib: 2.8.1 - yargs-parser: 21.1.1 - transitivePeerDependencies: - - '@babel/traverse' - - '@swc-node/register' - - '@swc/core' - - '@types/babel-plugin-macros' - - '@types/node' - - '@types/node-notifier' - - babel-plugin-macros - - debug - - esbuild-register - - node-notifier - - nx - - supports-color - - ts-node - - typescript - - verdaccio - - '@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': + '@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': dependencies: '@babel/core': 7.28.5 '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.5) @@ -22048,21 +22792,21 @@ snapshots: '@babel/preset-env': 7.28.5(@babel/core@7.28.5) '@babel/preset-typescript': 7.28.5(@babel/core@7.28.5) '@babel/runtime': 7.28.4 - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/workspace': 22.3.1(@swc/core@1.7.26) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/workspace': 22.7.5(@swc/core@1.7.26) '@zkochan/js-yaml': 0.0.7 babel-plugin-const-enum: 1.2.0(@babel/core@7.28.5) babel-plugin-macros: 3.1.0 babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.28.5)(@babel/traverse@7.28.5) chalk: 4.1.2 columnify: 1.6.0 - detect-port: 1.6.1 - ignore: 5.3.2 + detect-port: 2.1.0 + ignore: 7.0.5 js-tokens: 4.0.0 jsonc-parser: 3.2.0 npm-run-path: 4.0.1 picocolors: 1.1.1 - picomatch: 4.0.2 + picomatch: 4.0.4 semver: 7.7.3 source-map-support: 0.5.19 tinyglobby: 0.2.15 @@ -22077,14 +22821,14 @@ snapshots: - nx - supports-color - '@nx/module-federation@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/react@19.2.7)(esbuild@0.27.1)(nx@22.3.1(@swc/core@1.7.26))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': + '@nx/module-federation@22.7.5(ef10624b9b104d60072240612a019f8c)': dependencies: - '@module-federation/enhanced': 0.21.6(@rspack/core@1.6.8)(@types/react@19.2.7)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3)(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)) - '@module-federation/node': 2.7.25(@rspack/core@1.6.8)(@types/react@19.2.7)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3)(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)) - '@module-federation/sdk': 0.21.6 - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@nx/web': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@module-federation/enhanced': 2.5.1(@rspack/core@1.6.8)(node-fetch@3.3.2)(typescript@5.3.3)(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)) + '@module-federation/node': 2.7.25(@rspack/core@1.6.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.3)(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)) + '@module-federation/sdk': 2.5.1(node-fetch@3.3.2) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/web': 22.7.5(11da23f19552aa9d58f404d84ff0048f) '@rspack/core': 1.6.8 express: 4.22.1 http-proxy-middleware: 3.0.5 @@ -22093,14 +22837,20 @@ snapshots: webpack: 5.104.1(@swc/core@1.7.26)(esbuild@0.27.1) transitivePeerDependencies: - '@babel/traverse' + - '@nx/cypress' + - '@nx/eslint' + - '@nx/jest' + - '@nx/playwright' + - '@nx/vite' + - '@nx/webpack' - '@swc-node/register' - '@swc/core' - '@swc/helpers' - - '@types/react' - bufferutil - debug - esbuild - next + - node-fetch - nx - react - react-dom @@ -22112,50 +22862,48 @@ snapshots: - vue-tsc - webpack-cli - '@nx/nx-darwin-arm64@22.3.1': + '@nx/nx-darwin-arm64@22.7.5': optional: true - '@nx/nx-darwin-x64@22.3.1': + '@nx/nx-darwin-x64@22.7.5': optional: true - '@nx/nx-freebsd-x64@22.3.1': + '@nx/nx-freebsd-x64@22.7.5': optional: true - '@nx/nx-linux-arm-gnueabihf@22.3.1': + '@nx/nx-linux-arm-gnueabihf@22.7.5': optional: true - '@nx/nx-linux-arm64-gnu@22.3.1': + '@nx/nx-linux-arm64-gnu@22.7.5': optional: true - '@nx/nx-linux-arm64-musl@22.3.1': + '@nx/nx-linux-arm64-musl@22.7.5': optional: true - '@nx/nx-linux-x64-gnu@22.3.1': + '@nx/nx-linux-x64-gnu@22.7.5': optional: true - '@nx/nx-linux-x64-musl@22.3.1': + '@nx/nx-linux-x64-musl@22.7.5': optional: true - '@nx/nx-win32-arm64-msvc@22.3.1': + '@nx/nx-win32-arm64-msvc@22.7.5': optional: true - '@nx/nx-win32-x64-msvc@22.3.1': + '@nx/nx-win32-x64-msvc@22.7.5': optional: true - '@nx/plugin@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': + '@nx/plugin@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(@zkochan/js-yaml@0.0.7)(babel-plugin-macros@3.1.0)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/eslint': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@nx/jest': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/eslint': 22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/jest': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) tslib: 2.8.1 transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' - '@swc/core' - - '@types/babel-plugin-macros' - '@types/node' - - '@types/node-notifier' - '@zkochan/js-yaml' - babel-plugin-macros - debug @@ -22168,44 +22916,46 @@ snapshots: - typescript - verdaccio - '@nx/react@22.3.1(@babel/core@7.28.5)(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/react@19.2.7)(@zkochan/js-yaml@0.0.7)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(vitest@1.0.4(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))': + '@nx/react@22.7.5(60ba4edc64ae5d29d399022d87209bee)': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/eslint': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@nx/module-federation': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/react@19.2.7)(esbuild@0.27.1)(nx@22.3.1(@swc/core@1.7.26))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@nx/rollup': 22.3.1(@babel/core@7.28.5)(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@nx/web': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.3.3) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/eslint': 22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/module-federation': 22.7.5(ef10624b9b104d60072240612a019f8c) + '@nx/rollup': 22.7.5(@babel/core@7.28.5)(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/web': 22.7.5(11da23f19552aa9d58f404d84ff0048f) + '@phenomnomnominal/tsquery': 6.2.0(typescript@5.3.3) '@svgr/webpack': 8.1.0(typescript@5.3.3) express: 4.22.1 - file-loader: 6.2.0(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)) http-proxy-middleware: 3.0.5 - minimatch: 9.0.3 + minimatch: 10.2.5 picocolors: 1.1.1 semver: 7.7.3 tslib: 2.8.1 optionalDependencies: - '@nx/vite': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(vitest@1.0.4(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1)) + '@nx/vite': 22.7.5(@babel/traverse@7.28.5)(@nx/eslint@22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(vitest@1.0.4(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1)) transitivePeerDependencies: - '@babel/core' - '@babel/traverse' + - '@nx/cypress' + - '@nx/jest' + - '@nx/playwright' + - '@nx/webpack' - '@swc-node/register' - '@swc/core' - '@swc/helpers' - '@types/babel__core' - - '@types/react' - '@zkochan/js-yaml' - bufferutil - debug - esbuild - eslint - next + - node-fetch - nx - react - react-dom - supports-color - - ts-node - typescript - uglify-js - utf-8-validate @@ -22213,13 +22963,12 @@ snapshots: - vite - vitest - vue-tsc - - webpack - webpack-cli - '@nx/rollup@22.3.1(@babel/core@7.28.5)(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': + '@nx/rollup@22.7.5(@babel/core@7.28.5)(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@rollup/plugin-babel': 6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.53.5) '@rollup/plugin-commonjs': 25.0.8(rollup@4.53.5) '@rollup/plugin-image': 3.0.3(rollup@4.53.5) @@ -22227,11 +22976,12 @@ snapshots: '@rollup/plugin-node-resolve': 15.3.1(rollup@4.53.5) '@rollup/plugin-typescript': 12.3.0(rollup@4.53.5)(tslib@2.8.1)(typescript@5.3.3) autoprefixer: 10.4.23(postcss@8.5.6) + concat-with-sourcemaps: 1.1.0 picocolors: 1.1.1 - picomatch: 4.0.2 + picomatch: 4.0.4 postcss: 8.5.6 + postcss-modules: 6.0.1(postcss@8.5.6) rollup: 4.53.5 - rollup-plugin-postcss: 4.0.2(postcss@8.5.6) rollup-plugin-typescript2: 0.36.0(rollup@4.53.5)(typescript@5.3.3) tslib: 2.8.1 transitivePeerDependencies: @@ -22243,22 +22993,24 @@ snapshots: - debug - nx - supports-color - - ts-node - typescript - verdaccio - '@nx/storybook@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(storybook@10.1.4(@testing-library/dom@10.4.1)(@types/prettier@3.0.0)(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(prettier@3.7.4)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': + '@nx/storybook@22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@nx/web@22.7.5(11da23f19552aa9d58f404d84ff0048f))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(storybook@10.1.4(@testing-library/dom@10.4.1)(prettier@3.7.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': dependencies: - '@nx/cypress': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/eslint': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.3.3) + '@nx/cypress': 22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/eslint': 22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@phenomnomnominal/tsquery': 6.2.0(typescript@5.3.3) semver: 7.7.3 - storybook: 10.1.4(@testing-library/dom@10.4.1)(@types/prettier@3.0.0)(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(prettier@3.7.4)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + storybook: 10.1.4(@testing-library/dom@10.4.1)(prettier@3.7.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) tslib: 2.8.1 + optionalDependencies: + '@nx/web': 22.7.5(11da23f19552aa9d58f404d84ff0048f) transitivePeerDependencies: - '@babel/traverse' + - '@nx/jest' - '@swc-node/register' - '@swc/core' - '@zkochan/js-yaml' @@ -22270,15 +23022,15 @@ snapshots: - typescript - verdaccio - '@nx/vite@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(vitest@1.0.4(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))': + '@nx/vite@22.7.5(@babel/traverse@7.28.5)(@nx/eslint@22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(vitest@1.0.4(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@nx/vitest': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(vitest@1.0.4(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1)) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.3.3) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/vitest': 22.7.5(@babel/traverse@7.28.5)(@nx/eslint@22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(vitest@1.0.4(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1)) + '@phenomnomnominal/tsquery': 6.2.0(typescript@5.3.3) ajv: 8.17.1 enquirer: 2.3.6 - picomatch: 4.0.2 + picomatch: 4.0.4 semver: 7.7.3 tsconfig-paths: 4.2.0 tslib: 2.8.1 @@ -22286,6 +23038,7 @@ snapshots: vitest: 1.0.4(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1) transitivePeerDependencies: - '@babel/traverse' + - '@nx/eslint' - '@swc-node/register' - '@swc/core' - debug @@ -22294,14 +23047,15 @@ snapshots: - typescript - verdaccio - '@nx/vitest@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(vitest@1.0.4(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))': + '@nx/vitest@22.7.5(@babel/traverse@7.28.5)(@nx/eslint@22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(vitest@1.0.4(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.3.3) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@phenomnomnominal/tsquery': 6.2.0(typescript@5.3.3) semver: 7.7.3 tslib: 2.8.1 optionalDependencies: + '@nx/eslint': 22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) vite: 5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1) vitest: 1.0.4(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1) transitivePeerDependencies: @@ -22314,14 +23068,19 @@ snapshots: - typescript - verdaccio - '@nx/web@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': + '@nx/web@22.7.5(11da23f19552aa9d58f404d84ff0048f)': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - detect-port: 1.6.1 + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + detect-port: 2.1.0 http-server: 14.1.1 picocolors: 1.1.1 tslib: 2.8.1 + optionalDependencies: + '@nx/cypress': 22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/eslint': 22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/jest': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/vite': 22.7.5(@babel/traverse@7.28.5)(@nx/eslint@22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(vitest@1.0.4(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1)) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -22331,14 +23090,14 @@ snapshots: - supports-color - verdaccio - '@nx/workspace@22.3.1(@swc/core@1.7.26)': + '@nx/workspace@22.7.5(@swc/core@1.7.26)': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) '@zkochan/js-yaml': 0.0.7 chalk: 4.1.2 enquirer: 2.3.6 - nx: 22.3.1(@swc/core@1.7.26) - picomatch: 4.0.2 + nx: 22.7.5(@swc/core@1.7.26) + picomatch: 4.0.4 semver: 7.7.3 tslib: 2.8.1 yargs-parser: 21.1.1 @@ -23701,9 +24460,11 @@ snapshots: '@oxc-project/types@0.99.0': {} - '@paralleldrive/cuid2@2.3.1': + '@paralleldrive/cuid2@3.3.0': dependencies: - '@noble/hashes': 1.8.0 + '@noble/hashes': 2.2.0 + bignumber.js: 9.3.1 + error-causes: 3.0.2 '@parcel/watcher-android-arm64@2.5.1': optional: true @@ -23766,21 +24527,18 @@ snapshots: '@parcel/watcher-win32-x64': 2.5.1 optional: true - '@phenomnomnominal/tsquery@5.0.1(typescript@5.2.2)': + '@phenomnomnominal/tsquery@6.2.0(typescript@5.2.2)': dependencies: - esquery: 1.6.0 + '@types/esquery': 1.5.4 + esquery: 1.7.0 typescript: 5.2.2 - '@phenomnomnominal/tsquery@5.0.1(typescript@5.3.3)': + '@phenomnomnominal/tsquery@6.2.0(typescript@5.3.3)': dependencies: - esquery: 1.6.0 + '@types/esquery': 1.5.4 + esquery: 1.7.0 typescript: 5.3.3 - '@phenomnomnominal/tsquery@5.0.1(typescript@5.9.3)': - dependencies: - esquery: 1.6.0 - typescript: 5.9.3 - '@pkgjs/parseargs@0.11.0': optional: true @@ -23820,24 +24578,24 @@ snapshots: safe-stable-stringify: 2.5.0 secure-json-parse: 4.1.0 - '@powerlines/nx@0.10.68(0a7569ec5918bf340d10e0c868c7782d)': + '@powerlines/nx@0.10.68(121c82f9d2ad787512bd273f242aa869)': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@storm-software/build-tools': 0.158.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 - '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/unbuild': 0.57.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(rollup@4.53.5)(sass@1.97.0)(typescript@5.9.3) - '@storm-software/workspace-tools': 1.294.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.3.1(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.53.5)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.8.2) - '@stryke/fs': 0.33.24(nx@22.3.1(@swc/core@1.7.26)) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3) + '@storm-software/unbuild': 0.57.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(rollup@4.61.1)(sass@1.97.0)(typescript@5.3.3)(zod@4.4.3) + '@storm-software/workspace-tools': 1.296.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.19.42)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.19.42)(markdownlint-cli2@0.17.2)(nx@22.7.5(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.8.3)(rollup@4.61.1)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.9.0) + '@stryke/fs': 0.33.24(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) '@stryke/hash': 0.12.30 '@stryke/path': 0.22.13 '@stryke/string-format': 0.12.28 '@stryke/type-checks': 0.5.13 defu: 6.1.4 jiti: 2.6.1 - nx: 22.3.1(@swc/core@1.7.26) - powerlines: 0.31.6(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.6.1))(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.52)(rollup@4.53.5)(sass@1.97.0)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3))(tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2))(typescript@5.9.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.9.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)) + nx: 22.7.5(@swc/core@1.7.26) + powerlines: 0.31.6(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.19.42)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.7.0))(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.52)(rollup@4.61.1)(sass@1.97.0)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(tsup@8.4.0(@microsoft/api-extractor@7.58.7(@types/node@20.19.42))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0))(typescript@5.3.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.3.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))(zod@4.4.3) transitivePeerDependencies: - '@babel/runtime' - '@babel/traverse' @@ -23865,7 +24623,7 @@ snapshots: - prettier - prettier-plugin-astro - prettier-plugin-organize-imports - - prettier-plugin-pkg + - prettier-plugin-packagejson - prettier-plugin-prisma - prettier-plugin-sh - prettier-plugin-solidity @@ -23891,25 +24649,26 @@ snapshots: - webpack - webpack-cli - yaml + - zod - '@powerlines/nx@0.10.68(7c89efd35b5cf5dc59e117f1b77bd767)': + '@powerlines/nx@0.10.68(d80694aadbcd0a24bcef2735b9763282)': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@storm-software/build-tools': 0.158.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 - '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/unbuild': 0.57.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(rollup@4.53.5)(sass@1.97.0)(typescript@5.3.3) - '@storm-software/workspace-tools': 1.294.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.3.1(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.53.5)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.8.2) - '@stryke/fs': 0.33.24(nx@22.3.1(@swc/core@1.7.26)) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3) + '@storm-software/unbuild': 0.57.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(rollup@4.61.1)(sass@1.97.0)(typescript@5.3.3)(zod@4.4.3) + '@storm-software/workspace-tools': 1.296.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.7.5(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.61.1)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.9.0) + '@stryke/fs': 0.33.24(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) '@stryke/hash': 0.12.30 '@stryke/path': 0.22.13 '@stryke/string-format': 0.12.28 '@stryke/type-checks': 0.5.13 defu: 6.1.4 jiti: 2.6.1 - nx: 22.3.1(@swc/core@1.7.26) - powerlines: 0.31.6(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.53.5)(sass@1.97.0)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.8.2))(typescript@5.3.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.3.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)) + nx: 22.7.5(@swc/core@1.7.26) + powerlines: 0.31.6(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.61.1)(sass@1.97.0)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0))(typescript@5.3.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.3.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))(zod@4.4.3) transitivePeerDependencies: - '@babel/runtime' - '@babel/traverse' @@ -23937,7 +24696,7 @@ snapshots: - prettier - prettier-plugin-astro - prettier-plugin-organize-imports - - prettier-plugin-pkg + - prettier-plugin-packagejson - prettier-plugin-prisma - prettier-plugin-sh - prettier-plugin-solidity @@ -23963,16 +24722,17 @@ snapshots: - webpack - webpack-cli - yaml + - zod - '@powerlines/plugin-plugin@0.12.27(@babel/core@7.28.5)(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.6.1))(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.52)(rollup@4.53.5)(sass@1.97.0)(synckit@0.11.11)(tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2))(typescript@5.9.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.9.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))': + '@powerlines/plugin-plugin@0.12.27(@babel/core@7.28.5)(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.19.42)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.7.0))(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.52)(rollup@4.61.1)(sass@1.97.0)(synckit@0.11.11)(tsup@8.4.0(@microsoft/api-extractor@7.58.7(@types/node@20.19.42))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0))(typescript@5.3.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.3.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))(zod@4.4.3)': dependencies: '@alloy-js/core': 0.21.0 '@alloy-js/json': 0.21.0 '@alloy-js/markdown': 0.21.0 - '@alloy-js/rollup-plugin': 0.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.53.5) + '@alloy-js/rollup-plugin': 0.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.61.1) '@alloy-js/typescript': 0.21.0 '@stryke/convert': 0.6.28 - '@stryke/fs': 0.33.24(nx@22.3.1(@swc/core@1.7.26)) + '@stryke/fs': 0.33.24(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) '@stryke/json': 0.9.31 '@stryke/path': 0.22.13 '@stryke/string-format': 0.12.28 @@ -23980,8 +24740,8 @@ snapshots: '@stryke/types': 0.10.27 defu: 6.1.4 jiti: 2.6.1 - powerlines: 0.32.5(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.6.1))(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.52)(rollup@4.53.5)(sass@1.97.0)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3))(tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2))(typescript@5.9.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.9.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)) - tsdown: 0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3) + powerlines: 0.32.5(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.19.42)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.7.0))(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.52)(rollup@4.61.1)(sass@1.97.0)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(tsup@8.4.0(@microsoft/api-extractor@7.58.7(@types/node@20.19.42))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0))(typescript@5.3.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.3.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))(zod@4.4.3) + tsdown: 0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3) unplugin: 3.0.0-beta.3 transitivePeerDependencies: - '@arethetypeswrong/core' @@ -24029,6 +24789,7 @@ snapshots: - vue-tsc - webpack - webpack-cli + - zod '@powerlines/tsconfig@0.2.43(@storm-software/tsconfig@0.47.59)': dependencies: @@ -24083,29 +24844,29 @@ snapshots: dependencies: quansync: 1.0.0 - '@reactflow/background@11.3.14(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@reactflow/background@11.3.14(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@reactflow/core': 11.11.4(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@reactflow/core': 11.11.4(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classcat: 5.0.5 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - zustand: 4.5.7(@types/react@18.3.27)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + zustand: 4.5.7(@types/react@18.3.27)(react@18.3.1) transitivePeerDependencies: - '@types/react' - immer - '@reactflow/controls@11.2.14(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@reactflow/controls@11.2.14(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@reactflow/core': 11.11.4(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@reactflow/core': 11.11.4(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classcat: 5.0.5 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - zustand: 4.5.7(@types/react@18.3.27)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + zustand: 4.5.7(@types/react@18.3.27)(react@18.3.1) transitivePeerDependencies: - '@types/react' - immer - '@reactflow/core@11.11.4(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@reactflow/core@11.11.4(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@types/d3': 7.4.3 '@types/d3-drag': 3.0.7 @@ -24115,48 +24876,48 @@ snapshots: d3-drag: 3.0.0 d3-selection: 3.0.0 d3-zoom: 3.0.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - zustand: 4.5.7(@types/react@18.3.27)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + zustand: 4.5.7(@types/react@18.3.27)(react@18.3.1) transitivePeerDependencies: - '@types/react' - immer - '@reactflow/minimap@11.7.14(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@reactflow/minimap@11.7.14(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@reactflow/core': 11.11.4(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@reactflow/core': 11.11.4(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/d3-selection': 3.0.11 '@types/d3-zoom': 3.0.8 classcat: 5.0.5 d3-selection: 3.0.0 d3-zoom: 3.0.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - zustand: 4.5.7(@types/react@18.3.27)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + zustand: 4.5.7(@types/react@18.3.27)(react@18.3.1) transitivePeerDependencies: - '@types/react' - immer - '@reactflow/node-resizer@2.2.14(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@reactflow/node-resizer@2.2.14(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@reactflow/core': 11.11.4(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@reactflow/core': 11.11.4(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classcat: 5.0.5 d3-drag: 3.0.0 d3-selection: 3.0.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - zustand: 4.5.7(@types/react@18.3.27)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + zustand: 4.5.7(@types/react@18.3.27)(react@18.3.1) transitivePeerDependencies: - '@types/react' - immer - '@reactflow/node-toolbar@1.3.14(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@reactflow/node-toolbar@1.3.14(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@reactflow/core': 11.11.4(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@reactflow/core': 11.11.4(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classcat: 5.0.5 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - zustand: 4.5.7(@types/react@18.3.27)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + zustand: 4.5.7(@types/react@18.3.27)(react@18.3.1) transitivePeerDependencies: - '@types/react' - immer @@ -24294,9 +25055,13 @@ snapshots: optionalDependencies: rollup: 4.53.5 - '@rollup/plugin-alias@6.0.0(rollup@4.53.5)': + '@rollup/plugin-alias@5.1.1(rollup@4.61.1)': optionalDependencies: - rollup: 4.53.5 + rollup: 4.61.1 + + '@rollup/plugin-alias@6.0.0(rollup@4.61.1)': + optionalDependencies: + rollup: 4.61.1 '@rollup/plugin-babel@6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.53.5)': dependencies: @@ -24309,6 +25074,17 @@ snapshots: transitivePeerDependencies: - supports-color + '@rollup/plugin-babel@6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.61.1)': + dependencies: + '@babel/core': 7.28.5 + '@babel/helper-module-imports': 7.27.1 + '@rollup/pluginutils': 5.3.0(rollup@4.61.1) + optionalDependencies: + '@types/babel__core': 7.20.5 + rollup: 4.61.1 + transitivePeerDependencies: + - supports-color + '@rollup/plugin-commonjs@25.0.8(rollup@4.53.5)': dependencies: '@rollup/pluginutils': 5.3.0(rollup@4.53.5) @@ -24339,13 +25115,13 @@ snapshots: optionalDependencies: rollup: 4.53.5 - '@rollup/plugin-inject@5.0.5(rollup@4.53.5)': + '@rollup/plugin-inject@5.0.5(rollup@4.61.1)': dependencies: - '@rollup/pluginutils': 5.3.0(rollup@4.53.5) + '@rollup/pluginutils': 5.3.0(rollup@4.61.1) estree-walker: 2.0.2 magic-string: 0.30.21 optionalDependencies: - rollup: 4.53.5 + rollup: 4.61.1 '@rollup/plugin-json@6.1.0(rollup@4.53.5)': dependencies: @@ -24373,6 +25149,16 @@ snapshots: optionalDependencies: rollup: 4.53.5 + '@rollup/plugin-node-resolve@16.0.3(rollup@4.61.1)': + dependencies: + '@rollup/pluginutils': 5.3.0(rollup@4.61.1) + '@types/resolve': 1.20.2 + deepmerge: 4.3.1 + is-module: 1.0.0 + resolve: 1.22.11 + optionalDependencies: + rollup: 4.61.1 + '@rollup/plugin-replace@6.0.3(rollup@4.53.5)': dependencies: '@rollup/pluginutils': 5.3.0(rollup@4.53.5) @@ -24380,10 +25166,16 @@ snapshots: optionalDependencies: rollup: 4.53.5 + '@rollup/plugin-replace@6.0.3(rollup@4.61.1)': + dependencies: + '@rollup/pluginutils': 5.3.0(rollup@4.61.1) + magic-string: 0.30.21 + optionalDependencies: + rollup: 4.61.1 + '@rollup/plugin-typescript@12.3.0(rollup@4.53.5)(tslib@2.8.1)(typescript@5.3.3)': dependencies: '@rollup/pluginutils': 5.3.0(rollup@4.53.5) - '@types/resolve': 1.20.6 resolve: 1.22.11 typescript: 5.3.3 optionalDependencies: @@ -24403,72 +25195,155 @@ snapshots: optionalDependencies: rollup: 4.53.5 + '@rollup/pluginutils@5.3.0(rollup@4.61.1)': + dependencies: + '@types/estree': 1.0.8 + estree-walker: 2.0.2 + picomatch: 4.0.3 + optionalDependencies: + rollup: 4.61.1 + '@rollup/rollup-android-arm-eabi@4.53.5': optional: true + '@rollup/rollup-android-arm-eabi@4.61.1': + optional: true + '@rollup/rollup-android-arm64@4.53.5': optional: true + '@rollup/rollup-android-arm64@4.61.1': + optional: true + '@rollup/rollup-darwin-arm64@4.53.5': optional: true + '@rollup/rollup-darwin-arm64@4.61.1': + optional: true + '@rollup/rollup-darwin-x64@4.53.5': optional: true + '@rollup/rollup-darwin-x64@4.61.1': + optional: true + '@rollup/rollup-freebsd-arm64@4.53.5': optional: true + '@rollup/rollup-freebsd-arm64@4.61.1': + optional: true + '@rollup/rollup-freebsd-x64@4.53.5': optional: true + '@rollup/rollup-freebsd-x64@4.61.1': + optional: true + '@rollup/rollup-linux-arm-gnueabihf@4.53.5': optional: true + '@rollup/rollup-linux-arm-gnueabihf@4.61.1': + optional: true + '@rollup/rollup-linux-arm-musleabihf@4.53.5': optional: true + '@rollup/rollup-linux-arm-musleabihf@4.61.1': + optional: true + '@rollup/rollup-linux-arm64-gnu@4.53.5': optional: true + '@rollup/rollup-linux-arm64-gnu@4.61.1': + optional: true + '@rollup/rollup-linux-arm64-musl@4.53.5': optional: true + '@rollup/rollup-linux-arm64-musl@4.61.1': + optional: true + '@rollup/rollup-linux-loong64-gnu@4.53.5': optional: true + '@rollup/rollup-linux-loong64-gnu@4.61.1': + optional: true + + '@rollup/rollup-linux-loong64-musl@4.61.1': + optional: true + '@rollup/rollup-linux-ppc64-gnu@4.53.5': optional: true + '@rollup/rollup-linux-ppc64-gnu@4.61.1': + optional: true + + '@rollup/rollup-linux-ppc64-musl@4.61.1': + optional: true + '@rollup/rollup-linux-riscv64-gnu@4.53.5': optional: true + '@rollup/rollup-linux-riscv64-gnu@4.61.1': + optional: true + '@rollup/rollup-linux-riscv64-musl@4.53.5': optional: true + '@rollup/rollup-linux-riscv64-musl@4.61.1': + optional: true + '@rollup/rollup-linux-s390x-gnu@4.53.5': optional: true + '@rollup/rollup-linux-s390x-gnu@4.61.1': + optional: true + '@rollup/rollup-linux-x64-gnu@4.53.5': optional: true + '@rollup/rollup-linux-x64-gnu@4.61.1': + optional: true + '@rollup/rollup-linux-x64-musl@4.53.5': optional: true + '@rollup/rollup-linux-x64-musl@4.61.1': + optional: true + + '@rollup/rollup-openbsd-x64@4.61.1': + optional: true + '@rollup/rollup-openharmony-arm64@4.53.5': optional: true + '@rollup/rollup-openharmony-arm64@4.61.1': + optional: true + '@rollup/rollup-win32-arm64-msvc@4.53.5': optional: true + '@rollup/rollup-win32-arm64-msvc@4.61.1': + optional: true + '@rollup/rollup-win32-ia32-msvc@4.53.5': optional: true + '@rollup/rollup-win32-ia32-msvc@4.61.1': + optional: true + '@rollup/rollup-win32-x64-gnu@4.53.5': optional: true + '@rollup/rollup-win32-x64-gnu@4.61.1': + optional: true + '@rollup/rollup-win32-x64-msvc@4.53.5': optional: true + '@rollup/rollup-win32-x64-msvc@4.61.1': + optional: true + '@rspack/binding-darwin-arm64@1.6.8': optional: true @@ -24524,6 +25399,19 @@ snapshots: '@rtsao/scc@1.1.0': {} + '@rushstack/node-core-library@5.19.1(@types/node@20.19.42)': + dependencies: + ajv: 8.13.0 + ajv-draft-04: 1.0.0(ajv@8.13.0) + ajv-formats: 3.0.1(ajv@8.13.0) + fs-extra: 11.3.3 + import-lazy: 4.0.0 + jju: 1.4.0 + resolve: 1.22.11 + semver: 7.5.4 + optionalDependencies: + '@types/node': 20.19.42 + '@rushstack/node-core-library@5.19.1(@types/node@20.9.0)': dependencies: ajv: 8.13.0 @@ -24550,6 +25438,49 @@ snapshots: optionalDependencies: '@types/node': 25.0.3 + '@rushstack/node-core-library@5.23.1(@types/node@20.19.42)': + dependencies: + ajv: 8.18.0 + ajv-draft-04: 1.0.0(ajv@8.18.0) + ajv-formats: 3.0.1(ajv@8.18.0) + fs-extra: 11.3.3 + import-lazy: 4.0.0 + jju: 1.4.0 + resolve: 1.22.11 + semver: 7.7.4 + optionalDependencies: + '@types/node': 20.19.42 + + '@rushstack/node-core-library@5.23.1(@types/node@20.9.0)': + dependencies: + ajv: 8.18.0 + ajv-draft-04: 1.0.0(ajv@8.18.0) + ajv-formats: 3.0.1(ajv@8.18.0) + fs-extra: 11.3.3 + import-lazy: 4.0.0 + jju: 1.4.0 + resolve: 1.22.11 + semver: 7.7.4 + optionalDependencies: + '@types/node': 20.9.0 + + '@rushstack/node-core-library@5.23.1(@types/node@25.0.3)': + dependencies: + ajv: 8.18.0 + ajv-draft-04: 1.0.0(ajv@8.18.0) + ajv-formats: 3.0.1(ajv@8.18.0) + fs-extra: 11.3.3 + import-lazy: 4.0.0 + jju: 1.4.0 + resolve: 1.22.11 + semver: 7.7.4 + optionalDependencies: + '@types/node': 25.0.3 + + '@rushstack/problem-matcher@0.1.1(@types/node@20.19.42)': + optionalDependencies: + '@types/node': 20.19.42 + '@rushstack/problem-matcher@0.1.1(@types/node@20.9.0)': optionalDependencies: '@types/node': 20.9.0 @@ -24558,11 +25489,36 @@ snapshots: optionalDependencies: '@types/node': 25.0.3 + '@rushstack/problem-matcher@0.2.1(@types/node@20.19.42)': + optionalDependencies: + '@types/node': 20.19.42 + + '@rushstack/problem-matcher@0.2.1(@types/node@20.9.0)': + optionalDependencies: + '@types/node': 20.9.0 + + '@rushstack/problem-matcher@0.2.1(@types/node@25.0.3)': + optionalDependencies: + '@types/node': 25.0.3 + '@rushstack/rig-package@0.6.0': dependencies: resolve: 1.22.11 strip-json-comments: 3.1.1 + '@rushstack/rig-package@0.7.3': + dependencies: + jju: 1.4.0 + resolve: 1.22.11 + + '@rushstack/terminal@0.19.5(@types/node@20.19.42)': + dependencies: + '@rushstack/node-core-library': 5.19.1(@types/node@20.19.42) + '@rushstack/problem-matcher': 0.1.1(@types/node@20.19.42) + supports-color: 8.1.1 + optionalDependencies: + '@types/node': 20.19.42 + '@rushstack/terminal@0.19.5(@types/node@20.9.0)': dependencies: '@rushstack/node-core-library': 5.19.1(@types/node@20.9.0) @@ -24579,6 +25535,39 @@ snapshots: optionalDependencies: '@types/node': 25.0.3 + '@rushstack/terminal@0.24.0(@types/node@20.19.42)': + dependencies: + '@rushstack/node-core-library': 5.23.1(@types/node@20.19.42) + '@rushstack/problem-matcher': 0.2.1(@types/node@20.19.42) + supports-color: 8.1.1 + optionalDependencies: + '@types/node': 20.19.42 + + '@rushstack/terminal@0.24.0(@types/node@20.9.0)': + dependencies: + '@rushstack/node-core-library': 5.23.1(@types/node@20.9.0) + '@rushstack/problem-matcher': 0.2.1(@types/node@20.9.0) + supports-color: 8.1.1 + optionalDependencies: + '@types/node': 20.9.0 + + '@rushstack/terminal@0.24.0(@types/node@25.0.3)': + dependencies: + '@rushstack/node-core-library': 5.23.1(@types/node@25.0.3) + '@rushstack/problem-matcher': 0.2.1(@types/node@25.0.3) + supports-color: 8.1.1 + optionalDependencies: + '@types/node': 25.0.3 + + '@rushstack/ts-command-line@5.1.5(@types/node@20.19.42)': + dependencies: + '@rushstack/terminal': 0.19.5(@types/node@20.19.42) + '@types/argparse': 1.0.38 + argparse: 1.0.10 + string-argv: 0.3.2 + transitivePeerDependencies: + - '@types/node' + '@rushstack/ts-command-line@5.1.5(@types/node@20.9.0)': dependencies: '@rushstack/terminal': 0.19.5(@types/node@20.9.0) @@ -24597,6 +25586,33 @@ snapshots: transitivePeerDependencies: - '@types/node' + '@rushstack/ts-command-line@5.3.9(@types/node@20.19.42)': + dependencies: + '@rushstack/terminal': 0.24.0(@types/node@20.19.42) + '@types/argparse': 1.0.38 + argparse: 1.0.10 + string-argv: 0.3.2 + transitivePeerDependencies: + - '@types/node' + + '@rushstack/ts-command-line@5.3.9(@types/node@20.9.0)': + dependencies: + '@rushstack/terminal': 0.24.0(@types/node@20.9.0) + '@types/argparse': 1.0.38 + argparse: 1.0.10 + string-argv: 0.3.2 + transitivePeerDependencies: + - '@types/node' + + '@rushstack/ts-command-line@5.3.9(@types/node@25.0.3)': + dependencies: + '@rushstack/terminal': 0.24.0(@types/node@25.0.3) + '@types/argparse': 1.0.38 + argparse: 1.0.10 + string-argv: 0.3.2 + transitivePeerDependencies: + - '@types/node' + '@samchon/openapi@2.5.3': {} '@sec-ant/readable-stream@0.4.1': {} @@ -24733,8 +25749,6 @@ snapshots: '@sinclair/typebox@0.34.41': {} - '@sindresorhus/chunkify@1.0.0': {} - '@sindresorhus/is@5.6.0': {} '@sindresorhus/merge-streams@2.3.0': {} @@ -24770,16 +25784,32 @@ snapshots: open: 10.2.0 size-limit: 11.1.4 + '@size-limit/esbuild-why@11.2.0(size-limit@11.2.0)': + dependencies: + esbuild-visualizer: 0.7.0 + open: 10.2.0 + size-limit: 11.2.0 + '@size-limit/esbuild@11.1.4(size-limit@11.1.4)': dependencies: esbuild: 0.21.5 nanoid: 5.1.6 size-limit: 11.1.4 + '@size-limit/esbuild@11.2.0(size-limit@11.2.0)': + dependencies: + esbuild: 0.25.12 + nanoid: 5.1.6 + size-limit: 11.2.0 + '@size-limit/file@11.1.4(size-limit@11.1.4)': dependencies: size-limit: 11.1.4 + '@size-limit/file@11.2.0(size-limit@11.2.0)': + dependencies: + size-limit: 11.2.0 + '@smithy/abort-controller@4.2.7': dependencies: '@smithy/types': 4.11.0 @@ -25118,45 +26148,45 @@ snapshots: dependencies: tslib: 2.8.1 - '@storm-software/build-tools@0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.2.2)': + '@storm-software/build-tools@0.158.200(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.2.2)': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@swc/core': 1.7.26 glob: 11.1.0 - nx: 22.3.1(@swc/core@1.7.26) + nx: 22.7.5(@swc/core@1.7.26) resolve: 1.22.8 resolve-from: 5.0.0 - rollup: 4.53.5 + rollup: 4.61.1 typescript: 5.2.2 transitivePeerDependencies: - '@swc/helpers' - '@storm-software/build-tools@0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)': + '@storm-software/build-tools@0.158.200(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@swc/core': 1.7.26 glob: 11.1.0 - nx: 22.3.1(@swc/core@1.7.26) + nx: 22.7.5(@swc/core@1.7.26) resolve: 1.22.8 resolve-from: 5.0.0 - rollup: 4.53.5 + rollup: 4.61.1 typescript: 5.3.3 transitivePeerDependencies: - '@swc/helpers' - '@storm-software/build-tools@0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)': + '@storm-software/build-tools@0.158.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@swc/core': 1.7.26 glob: 11.1.0 - nx: 22.3.1(@swc/core@1.7.26) + nx: 22.7.5(@swc/core@1.7.26) resolve: 1.22.8 resolve-from: 5.0.0 rollup: 4.53.5 - typescript: 5.9.3 + typescript: 5.3.3 transitivePeerDependencies: - '@swc/helpers' @@ -25176,26 +26206,113 @@ snapshots: transitivePeerDependencies: - magicast + '@storm-software/config-tools@1.190.40(zod@3.25.76)': + dependencies: + '@ltd/j-toml': 1.38.0 + '@storm-software/config': 1.137.72(zod@3.25.76) + c12: 2.0.4 + chalk: 4.1.2 + commander: 12.1.0 + date-fns: 4.4.0 + defu: 6.1.7 + giget: 1.2.5 + jiti: 2.7.0 + sqlite: 5.1.1 + zod: 3.25.76 + transitivePeerDependencies: + - magicast + + '@storm-software/config-tools@1.190.40(zod@4.2.1)': + dependencies: + '@ltd/j-toml': 1.38.0 + '@storm-software/config': 1.137.72(zod@4.2.1) + c12: 2.0.4 + chalk: 4.1.2 + commander: 12.1.0 + date-fns: 4.4.0 + defu: 6.1.7 + giget: 1.2.5 + jiti: 2.7.0 + sqlite: 5.1.1 + zod: 4.2.1 + transitivePeerDependencies: + - magicast + + '@storm-software/config-tools@1.190.40(zod@4.4.3)': + dependencies: + '@ltd/j-toml': 1.38.0 + '@storm-software/config': 1.137.72(zod@4.4.3) + c12: 2.0.4 + chalk: 4.1.2 + commander: 12.1.0 + date-fns: 4.4.0 + defu: 6.1.7 + giget: 1.2.5 + jiti: 2.7.0 + sqlite: 5.1.1 + zod: 4.4.3 + transitivePeerDependencies: + - magicast + '@storm-software/config@1.134.72': dependencies: zod: 4.2.1 + '@storm-software/config@1.137.72(zod@3.25.76)': + dependencies: + zod: 3.25.76 + + '@storm-software/config@1.137.72(zod@4.2.1)': + dependencies: + zod: 4.2.1 + + '@storm-software/config@1.137.72(zod@4.4.3)': + dependencies: + zod: 4.4.3 + '@storm-software/cspell@0.45.71(cspell@8.19.4)': dependencies: cspell: 8.19.4 - '@storm-software/esbuild@0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': + '@storm-software/esbuild@0.53.201(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3)': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.2.2) - '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 - '@storm-software/tsup': 0.2.70(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.2.2) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@storm-software/build-tools': 0.158.200(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.2.2) + '@storm-software/config': 1.137.72(zod@4.4.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/tsup': 0.2.198(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.2.2)(zod@4.4.3) chokidar: 4.0.3 commander: 12.1.0 - defu: 6.1.4 - es-toolkit: 1.43.0 + defu: 6.1.7 + es-toolkit: 1.47.0 + esbuild: 0.25.12 + globby: 14.1.0 + transitivePeerDependencies: + - '@babel/traverse' + - '@swc-node/register' + - '@swc/core' + - '@swc/helpers' + - debug + - magicast + - nx + - supports-color + - typescript + - verdaccio + - zod + + '@storm-software/esbuild@0.53.201(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3)': + dependencies: + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@storm-software/build-tools': 0.158.200(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) + '@storm-software/config': 1.137.72(zod@4.4.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/tsup': 0.2.198(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.4.3) + chokidar: 4.0.3 + commander: 12.1.0 + defu: 6.1.7 + es-toolkit: 1.47.0 esbuild: 0.25.12 globby: 14.1.0 transitivePeerDependencies: @@ -25209,15 +26326,16 @@ snapshots: - supports-color - typescript - verdaccio + - zod - '@storm-software/esbuild@0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': + '@storm-software/esbuild@0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.2.1)': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@storm-software/build-tools': 0.158.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 - '@storm-software/tsup': 0.2.70(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3) + '@storm-software/config-tools': 1.190.40(zod@4.2.1) + '@storm-software/tsup': 0.2.70(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.2.1) chokidar: 4.0.3 commander: 12.1.0 defu: 6.1.4 @@ -25235,15 +26353,16 @@ snapshots: - supports-color - typescript - verdaccio + - zod - '@storm-software/esbuild@0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))': + '@storm-software/esbuild@0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3)': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@storm-software/build-tools': 0.158.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 - '@storm-software/tsup': 0.2.70(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/tsup': 0.2.70(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.4.3) chokidar: 4.0.3 commander: 12.1.0 defu: 6.1.4 @@ -25261,8 +26380,9 @@ snapshots: - supports-color - typescript - verdaccio + - zod - '@storm-software/eslint@0.169.73(22bc31c2865b6057f1a58606286decbc)': + '@storm-software/eslint@0.169.73(4196962cc611c71ed5e0457068fc4142)': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.10.1 @@ -25272,12 +26392,12 @@ snapshots: '@eslint/markdown': 6.6.0 '@graphql-eslint/eslint-plugin': 4.4.0(@types/node@20.9.0)(crossws@0.3.5)(eslint@9.39.2(jiti@2.4.2))(graphql@16.12.0)(typescript@5.3.3) '@next/eslint-plugin-next': 15.5.7 - '@nx/eslint': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@nx/eslint-plugin': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3))(eslint-config-prettier@10.1.8(eslint@9.39.2(jiti@2.4.2)))(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/eslint': 22.7.5(@babel/traverse@7.28.5)(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(@zkochan/js-yaml@0.0.7)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/eslint-plugin': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3))(eslint-config-prettier@10.1.8(eslint@9.39.2(jiti@2.4.2)))(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@prettier/plugin-xml': 3.4.2(prettier@3.7.4) '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 - '@storm-software/tsdoc': 0.13.71(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0) + '@storm-software/config-tools': 1.190.40(zod@4.2.1) + '@storm-software/tsdoc': 0.13.71(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0) '@stylistic/eslint-plugin': 4.4.1(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3) '@typescript-eslint/eslint-plugin': 8.50.0(@typescript-eslint/parser@8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3))(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3) '@typescript-eslint/parser': 8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3) @@ -25293,9 +26413,9 @@ snapshots: eslint-flat-config-utils: 2.1.4 eslint-merge-processors: 2.0.0(eslint@9.39.2(jiti@2.4.2)) eslint-plugin-astro: 1.5.0(eslint@9.39.2(jiti@2.4.2)) - eslint-plugin-format: 1.1.0(@types/eslint@9.6.1)(eslint@9.39.2(jiti@2.4.2)) + eslint-plugin-format: 1.1.0(eslint@9.39.2(jiti@2.4.2)) eslint-plugin-import-x: 4.16.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2(jiti@2.4.2)) - eslint-plugin-import-zod: 1.2.1(@types/eslint@9.6.1)(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3))(eslint@9.39.2(jiti@2.4.2)) + eslint-plugin-import-zod: 1.2.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3))(eslint@9.39.2(jiti@2.4.2)) eslint-plugin-jsdoc: 50.8.0(eslint@9.39.2(jiti@2.4.2)) eslint-plugin-json: 4.0.1 eslint-plugin-jsonc: 2.21.0(eslint@9.39.2(jiti@2.4.2)) @@ -25310,13 +26430,13 @@ snapshots: eslint-plugin-perfectionist: 4.15.1(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3) eslint-plugin-pnpm: 0.3.0(eslint@9.39.2(jiti@2.4.2)) eslint-plugin-prettier: 5.5.4(@types/eslint@9.6.1)(eslint-config-prettier@10.1.8(eslint@9.39.2(jiti@2.4.2)))(eslint@9.39.2(jiti@2.4.2))(prettier@3.7.4) - eslint-plugin-react-compiler: 19.0.0-beta-21e868a-20250216(@types/eslint@9.6.1)(eslint@9.39.2(jiti@2.4.2)) - eslint-plugin-react-hooks: 5.2.0(@types/eslint@9.6.1)(eslint@9.39.2(jiti@2.4.2)) + eslint-plugin-react-compiler: 19.0.0-beta-21e868a-20250216(eslint@9.39.2(jiti@2.4.2)) + eslint-plugin-react-hooks: 5.2.0(eslint@9.39.2(jiti@2.4.2)) eslint-plugin-react-native: 5.0.0(eslint@9.39.2(jiti@2.4.2)) eslint-plugin-react-refresh: 0.4.24(eslint@9.39.2(jiti@2.4.2)) eslint-plugin-regexp: 2.10.0(eslint@9.39.2(jiti@2.4.2)) eslint-plugin-relay: 1.8.3 - eslint-plugin-storybook: 0.11.6(@types/eslint@9.6.1)(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3) + eslint-plugin-storybook: 0.11.6(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3) eslint-plugin-toml: 0.12.0(eslint@9.39.2(jiti@2.4.2)) eslint-plugin-tsdoc: 0.4.0 eslint-plugin-unicorn: 57.0.0(eslint@9.39.2(jiti@2.4.2)) @@ -25349,15 +26469,15 @@ snapshots: - verdaccio - vitest - '@storm-software/git-tools@2.124.55(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.2.1)': + '@storm-software/git-tools@2.124.55(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3)': dependencies: '@commitlint/ensure': 19.8.1 '@commitlint/rules': 19.8.1 '@inquirer/prompts': 7.2.1(@types/node@20.9.0) - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 + '@storm-software/config-tools': 1.190.40(zod@4.4.3) '@textlint/ast-node-types': 14.4.2 '@textlint/markdown-to-ast': 14.4.2 anchor-markdown-header: 0.7.0 @@ -25366,17 +26486,17 @@ snapshots: chalk: 4.1.2 chalk-template: 1.1.0 conventional-changelog-conventionalcommits: 9.1.0 - conventional-changelog-storm-software: 0.3.72 + conventional-changelog-storm-software: 0.3.72(zod@4.4.3) htmlparser2: 10.0.0 jsonc-parser: 3.2.1 - nx: 22.3.1(@swc/core@1.7.26) - prettier: 3.7.4 + nx: 22.7.5(@swc/core@1.7.26) + prettier: 3.8.3 tsconfig-paths: 4.2.0 underscore: 1.13.7 update-section: 0.3.3 word-wrap: 1.2.5 yaml: 2.8.2 - zod: 4.2.1 + zod: 4.4.3 transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -25401,129 +26521,215 @@ snapshots: transitivePeerDependencies: - supports-color - '@storm-software/npm-tools@0.6.29': + '@storm-software/npm-tools@0.6.158(zod@4.4.3)': + dependencies: + '@storm-software/config': 1.137.72(zod@4.4.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + transitivePeerDependencies: + - magicast + - zod + + '@storm-software/npm-tools@0.6.29(zod@4.2.1)': dependencies: '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 + '@storm-software/config-tools': 1.190.40(zod@4.2.1) transitivePeerDependencies: - magicast + - zod - '@storm-software/pnpm-tools@0.6.74': + '@storm-software/npm-tools@0.6.29(zod@4.4.3)': + dependencies: + '@storm-software/config': 1.134.72 + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + transitivePeerDependencies: + - magicast + - zod + + '@storm-software/package-constants@0.1.53': {} + + '@storm-software/pnpm-tools@0.6.74(zod@4.2.1)': dependencies: '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 - '@storm-software/npm-tools': 0.6.29 + '@storm-software/config-tools': 1.190.40(zod@4.2.1) + '@storm-software/npm-tools': 0.6.29(zod@4.2.1) commander: 12.1.0 defu: 6.1.4 - prettier: 3.7.4 - prettier-plugin-pkg: 0.18.1(prettier@3.7.4) + prettier: 3.8.3 + prettier-plugin-pkg: 0.18.1(prettier@3.8.3) + semver: 7.6.2 + yaml: 2.8.2 + transitivePeerDependencies: + - magicast + - zod + + '@storm-software/pnpm-tools@0.6.74(zod@4.4.3)': + dependencies: + '@storm-software/config': 1.134.72 + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/npm-tools': 0.6.29(zod@4.4.3) + commander: 12.1.0 + defu: 6.1.4 + prettier: 3.8.3 + prettier-plugin-pkg: 0.18.1(prettier@3.8.3) semver: 7.6.2 yaml: 2.8.2 transitivePeerDependencies: - magicast + - zod + + '@storm-software/pnpm-tools@0.7.51(zod@4.4.3)': + dependencies: + '@storm-software/config': 1.137.72(zod@4.4.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/npm-tools': 0.6.158(zod@4.4.3) + '@storm-software/package-constants': 0.1.53 + chalk: 4.1.2 + commander: 12.1.0 + defu: 6.1.7 + prettier: 3.8.3 + prettier-plugin-packagejson: 3.0.2(prettier@3.8.3) + semver: 7.8.2 + yaml: 2.9.0 + transitivePeerDependencies: + - magicast + - zod - '@storm-software/prettier@0.57.71(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.2.2))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)': + '@storm-software/prettier@0.57.71(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)': dependencies: prettier: 3.7.4 prettier-plugin-jsdoc: 1.8.0(prettier@3.7.4) - prettier-plugin-organize-imports: 4.3.0(prettier@3.7.4)(typescript@5.2.2) + prettier-plugin-organize-imports: 4.3.0(prettier@3.7.4)(typescript@5.3.3) prettier-plugin-pkg: 0.18.1(prettier@3.7.4) prettier-plugin-prisma: 5.0.0(prettier@3.7.4) prettier-plugin-sh: 0.15.0(prettier@3.7.4) prettier-plugin-toml: 2.0.6(prettier@3.7.4) optionalDependencies: prettier-plugin-astro: 0.14.1 - prettier-plugin-tailwindcss: 0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4) + prettier-plugin-tailwindcss: 0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4) transitivePeerDependencies: - supports-color - '@storm-software/prettier@0.57.71(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)': + '@storm-software/prettier@0.59.92(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)': dependencies: prettier: 3.7.4 - prettier-plugin-jsdoc: 1.8.0(prettier@3.7.4) + prettier-plugin-jsdoc: 1.8.1(prettier@3.7.4) prettier-plugin-organize-imports: 4.3.0(prettier@3.7.4)(typescript@5.3.3) - prettier-plugin-pkg: 0.18.1(prettier@3.7.4) prettier-plugin-prisma: 5.0.0(prettier@3.7.4) prettier-plugin-sh: 0.15.0(prettier@3.7.4) prettier-plugin-toml: 2.0.6(prettier@3.7.4) optionalDependencies: prettier-plugin-astro: 0.14.1 - prettier-plugin-tailwindcss: 0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4) + prettier-plugin-tailwindcss: 0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4) transitivePeerDependencies: - supports-color - '@storm-software/prettier@0.57.71(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.9.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)': + '@storm-software/prettier@0.59.92(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.8.3)': dependencies: - prettier: 3.7.4 - prettier-plugin-jsdoc: 1.8.0(prettier@3.7.4) - prettier-plugin-organize-imports: 4.3.0(prettier@3.7.4)(typescript@5.9.3) - prettier-plugin-pkg: 0.18.1(prettier@3.7.4) + prettier: 3.8.3 + prettier-plugin-jsdoc: 1.8.1(prettier@3.8.3) + prettier-plugin-organize-imports: 4.3.0(prettier@3.7.4)(typescript@5.3.3) prettier-plugin-prisma: 5.0.0(prettier@3.7.4) prettier-plugin-sh: 0.15.0(prettier@3.7.4) prettier-plugin-toml: 2.0.6(prettier@3.7.4) optionalDependencies: prettier-plugin-astro: 0.14.1 - prettier-plugin-tailwindcss: 0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4) + prettier-plugin-tailwindcss: 0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4) transitivePeerDependencies: - supports-color - '@storm-software/testing-tools@1.119.71(@nx/jest@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0))': + '@storm-software/prettier@0.59.92(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.8.3)(typescript@5.2.2))(prettier-plugin-packagejson@3.0.2(prettier@3.8.3))(prettier-plugin-prisma@5.0.0(prettier@3.8.3))(prettier-plugin-sh@0.15.0(prettier@3.8.3))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.8.3))(prettier@3.8.3)': dependencies: - '@nx/jest': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - defu: 6.1.4 - jest: 30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0) - mlly: 1.8.0 + prettier: 3.8.3 + prettier-plugin-jsdoc: 1.8.1(prettier@3.8.3) + prettier-plugin-organize-imports: 4.3.0(prettier@3.8.3)(typescript@5.2.2) + prettier-plugin-packagejson: 3.0.2(prettier@3.8.3) + prettier-plugin-prisma: 5.0.0(prettier@3.8.3) + prettier-plugin-sh: 0.15.0(prettier@3.8.3) + prettier-plugin-toml: 2.0.6(prettier@3.8.3) + optionalDependencies: + prettier-plugin-astro: 0.14.1 + prettier-plugin-tailwindcss: 0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4) + transitivePeerDependencies: + - supports-color - '@storm-software/testing-tools@1.119.71(@nx/jest@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0))': + '@storm-software/prettier@0.59.92(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.8.3)(typescript@5.3.3))(prettier-plugin-packagejson@3.0.2(prettier@3.8.3))(prettier-plugin-prisma@5.0.0(prettier@3.8.3))(prettier-plugin-sh@0.15.0(prettier@3.8.3))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.8.3))(prettier@3.8.3)': dependencies: - '@nx/jest': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - defu: 6.1.4 - jest: 30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0) - mlly: 1.8.0 + prettier: 3.8.3 + prettier-plugin-jsdoc: 1.8.1(prettier@3.8.3) + prettier-plugin-organize-imports: 4.3.0(prettier@3.8.3)(typescript@5.3.3) + prettier-plugin-packagejson: 3.0.2(prettier@3.8.3) + prettier-plugin-prisma: 5.0.0(prettier@3.8.3) + prettier-plugin-sh: 0.15.0(prettier@3.8.3) + prettier-plugin-toml: 2.0.6(prettier@3.8.3) + optionalDependencies: + prettier-plugin-astro: 0.14.1 + prettier-plugin-tailwindcss: 0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4) + transitivePeerDependencies: + - supports-color - '@storm-software/testing-tools@1.119.71(@nx/jest@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@25.0.3)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@25.0.3)(babel-plugin-macros@3.1.0))': + '@storm-software/testing-tools@1.119.193(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/node@20.9.0)(babel-plugin-macros@3.1.0))': dependencies: - '@nx/jest': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@25.0.3)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - defu: 6.1.4 - jest: 30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@25.0.3)(babel-plugin-macros@3.1.0) - mlly: 1.8.0 + '@nx/jest': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + defu: 6.1.7 + jest: 30.0.5(@types/node@20.9.0)(babel-plugin-macros@3.1.0) + mlly: 1.8.2 + + '@storm-software/testing-tools@1.119.193(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/node@20.9.0)(babel-plugin-macros@3.1.0))': + dependencies: + '@nx/jest': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + defu: 6.1.7 + jest: 30.0.5(@types/node@20.9.0)(babel-plugin-macros@3.1.0) + mlly: 1.8.2 + + '@storm-software/testing-tools@1.119.193(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@25.0.3)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/node@25.0.3)(babel-plugin-macros@3.1.0))': + dependencies: + '@nx/jest': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@25.0.3)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + defu: 6.1.7 + jest: 30.0.5(@types/node@25.0.3)(babel-plugin-macros@3.1.0) + mlly: 1.8.2 '@storm-software/tsconfig@0.47.59': dependencies: '@total-typescript/ts-reset': 0.5.1 - '@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)': + '@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)': optionalDependencies: '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) '@microsoft/tsdoc': 0.16.0 - '@microsoft/tsdoc-config': 0.18.0 + '@microsoft/tsdoc-config': 0.18.1 - '@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)': + '@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)': optionalDependencies: - '@microsoft/api-extractor': 7.55.2(@types/node@25.0.3) + '@microsoft/api-extractor': 7.58.7(@types/node@20.9.0) '@microsoft/tsdoc': 0.16.0 - '@microsoft/tsdoc-config': 0.18.0 + '@microsoft/tsdoc-config': 0.18.1 - '@storm-software/tsdown@0.45.72(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.2.2))(typescript@5.2.2)(yaml@2.8.2)': + '@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)': + optionalDependencies: + '@microsoft/api-extractor': 7.58.7(@types/node@25.0.3) + '@microsoft/tsdoc': 0.16.0 + '@microsoft/tsdoc-config': 0.18.1 + + '@storm-software/tsdown@0.45.201(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.58.7(@types/node@20.19.42))(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(yaml@2.9.0)(zod@4.4.3)': dependencies: - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.2.2) - '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 + '@storm-software/build-tools': 0.158.200(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) + '@storm-software/config': 1.137.72(zod@4.4.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) chokidar: 4.0.3 commander: 12.1.0 - es-toolkit: 1.43.0 + es-toolkit: 1.47.0 globby: 14.1.0 - nx: 22.3.1(@swc/core@1.7.26) + nx: 22.7.5(@swc/core@1.7.26) rolldown: 1.0.0-beta.1(@babel/runtime@7.28.4) source-map: 0.7.4 - tsdown: 0.17.0-beta.5(synckit@0.11.11)(typescript@5.2.2) - tsup: 8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(typescript@5.2.2)(yaml@2.8.2) + tsdown: 0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3) + tsup: 8.4.0(@microsoft/api-extractor@7.58.7(@types/node@20.19.42))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0) optionalDependencies: - '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) spdx-exceptions: 2.5.0 spdx-license-ids: 3.0.22 transitivePeerDependencies: - '@babel/runtime' + - '@microsoft/api-extractor' - '@nx/devkit' - '@nx/js' - '@swc-node/register' @@ -25537,27 +26743,28 @@ snapshots: - tsx - typescript - yaml + - zod - '@storm-software/tsdown@0.45.72(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(yaml@2.8.2)': + '@storm-software/tsdown@0.45.201(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.2.2))(typescript@5.2.2)(yaml@2.9.0)(zod@4.4.3)': dependencies: - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3) - '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 + '@storm-software/build-tools': 0.158.200(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.2.2) + '@storm-software/config': 1.137.72(zod@4.4.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) chokidar: 4.0.3 commander: 12.1.0 - es-toolkit: 1.43.0 + es-toolkit: 1.47.0 globby: 14.1.0 - nx: 22.3.1(@swc/core@1.7.26) + nx: 22.7.5(@swc/core@1.7.26) rolldown: 1.0.0-beta.1(@babel/runtime@7.28.4) source-map: 0.7.4 - tsdown: 0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3) - tsup: 8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.8.2) + tsdown: 0.17.0-beta.5(synckit@0.11.11)(typescript@5.2.2) + tsup: 8.4.0(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.2.2)(yaml@2.9.0) optionalDependencies: - '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) spdx-exceptions: 2.5.0 spdx-license-ids: 3.0.22 transitivePeerDependencies: - '@babel/runtime' + - '@microsoft/api-extractor' - '@nx/devkit' - '@nx/js' - '@swc-node/register' @@ -25571,27 +26778,28 @@ snapshots: - tsx - typescript - yaml + - zod - '@storm-software/tsdown@0.45.72(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.9.3)(yaml@2.8.2)': + '@storm-software/tsdown@0.45.201(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(yaml@2.9.0)(zod@4.4.3)': dependencies: - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) - '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 + '@storm-software/build-tools': 0.158.200(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) + '@storm-software/config': 1.137.72(zod@4.4.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) chokidar: 4.0.3 commander: 12.1.0 - es-toolkit: 1.43.0 + es-toolkit: 1.47.0 globby: 14.1.0 - nx: 22.3.1(@swc/core@1.7.26) + nx: 22.7.5(@swc/core@1.7.26) rolldown: 1.0.0-beta.1(@babel/runtime@7.28.4) source-map: 0.7.4 tsdown: 0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3) - tsup: 8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2) + tsup: 8.4.0(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0) optionalDependencies: - '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) spdx-exceptions: 2.5.0 spdx-license-ids: 3.0.22 transitivePeerDependencies: - '@babel/runtime' + - '@microsoft/api-extractor' - '@nx/devkit' - '@nx/js' - '@swc-node/register' @@ -25605,27 +26813,28 @@ snapshots: - tsx - typescript - yaml + - zod - '@storm-software/tsdown@0.45.72(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3))(typescript@5.9.3)(yaml@2.8.2)': + '@storm-software/tsdown@0.45.201(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(yaml@2.9.0)(zod@4.4.3)': dependencies: - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) - '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 + '@storm-software/build-tools': 0.158.200(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) + '@storm-software/config': 1.137.72(zod@4.4.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) chokidar: 4.0.3 commander: 12.1.0 - es-toolkit: 1.43.0 + es-toolkit: 1.47.0 globby: 14.1.0 - nx: 22.3.1(@swc/core@1.7.26) + nx: 22.7.5(@swc/core@1.7.26) rolldown: 1.0.0-beta.1(@babel/runtime@7.28.4) source-map: 0.7.4 - tsdown: 0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3) - tsup: 8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2) + tsdown: 0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3) + tsup: 8.4.0(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0) optionalDependencies: - '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) spdx-exceptions: 2.5.0 spdx-license-ids: 3.0.22 transitivePeerDependencies: - '@babel/runtime' + - '@microsoft/api-extractor' - '@nx/devkit' - '@nx/js' - '@swc-node/register' @@ -25639,23 +26848,24 @@ snapshots: - tsx - typescript - yaml + - zod - '@storm-software/tsdown@0.45.72(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.9.3)(yaml@2.8.2)': + '@storm-software/tsdown@0.45.72(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(yaml@2.9.0)(zod@4.2.1)': dependencies: - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) + '@storm-software/build-tools': 0.158.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 + '@storm-software/config-tools': 1.190.40(zod@4.2.1) chokidar: 4.0.3 commander: 12.1.0 es-toolkit: 1.43.0 globby: 14.1.0 - nx: 22.3.1(@swc/core@1.7.26) + nx: 22.7.5(@swc/core@1.7.26) rolldown: 1.0.0-beta.1(@babel/runtime@7.28.4) source-map: 0.7.4 tsdown: 0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3) - tsup: 8.4.0(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2) + tsup: 8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0) optionalDependencies: - '@microsoft/api-extractor': 7.55.2(@types/node@25.0.3) + '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) spdx-exceptions: 2.5.0 spdx-license-ids: 3.0.22 transitivePeerDependencies: @@ -25673,11 +26883,12 @@ snapshots: - tsx - typescript - yaml + - zod - '@storm-software/tsup@0.2.70(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.2.2)': + '@storm-software/tsup@0.2.198(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.2.2)(zod@4.4.3)': dependencies: - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.2.2) - '@storm-software/config-tools': 1.188.72 + '@storm-software/build-tools': 0.158.200(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.2.2) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) transitivePeerDependencies: - '@nx/devkit' - '@nx/js' @@ -25685,11 +26896,12 @@ snapshots: - magicast - nx - typescript + - zod - '@storm-software/tsup@0.2.70(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)': + '@storm-software/tsup@0.2.198(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.4.3)': dependencies: - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3) - '@storm-software/config-tools': 1.188.72 + '@storm-software/build-tools': 0.158.200(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) transitivePeerDependencies: - '@nx/devkit' - '@nx/js' @@ -25697,11 +26909,12 @@ snapshots: - magicast - nx - typescript + - zod - '@storm-software/tsup@0.2.70(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)': + '@storm-software/tsup@0.2.70(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.2.1)': dependencies: - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) - '@storm-software/config-tools': 1.188.72 + '@storm-software/build-tools': 0.158.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) + '@storm-software/config-tools': 1.190.40(zod@4.2.1) transitivePeerDependencies: - '@nx/devkit' - '@nx/js' @@ -25709,28 +26922,42 @@ snapshots: - magicast - nx - typescript + - zod - '@storm-software/unbuild@0.57.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(rollup@4.53.5)(sass@1.97.0)(typescript@5.2.2)': + '@storm-software/tsup@0.2.70(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.4.3)': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.2.2) - '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 + '@storm-software/build-tools': 0.158.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + transitivePeerDependencies: + - '@nx/devkit' + - '@nx/js' + - '@swc/helpers' + - magicast + - nx + - typescript + - zod + + '@storm-software/unbuild@0.57.201(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(rollup@4.61.1)(sass@1.97.0)(typescript@5.2.2)(zod@4.4.3)': + dependencies: + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@storm-software/build-tools': 0.158.200(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.2.2) + '@storm-software/config': 1.137.72(zod@4.4.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) commander: 12.1.0 - defu: 6.1.4 + defu: 6.1.7 esbuild: 0.25.12 glob: 11.1.0 - jiti: 2.4.2 + jiti: 2.7.0 mkdist: 2.4.1(sass@1.97.0)(typescript@5.2.2) pkg-types: 1.3.1 - rollup: 4.53.5 - rollup-plugin-typescript2: 0.36.0(rollup@4.53.5)(typescript@5.2.2) + rollup: 4.61.1 + rollup-plugin-typescript2: 0.36.0(rollup@4.61.1)(typescript@5.2.2) typescript: 5.2.2 unbuild: 3.6.1(sass@1.97.0)(typescript@5.2.2) optionalDependencies: '@swc/core': 1.7.26 - nx: 22.3.1(@swc/core@1.7.26) + nx: 22.7.5(@swc/core@1.7.26) transitivePeerDependencies: - '@swc/helpers' - magicast @@ -25738,14 +26965,45 @@ snapshots: - vue - vue-sfc-transformer - vue-tsc + - zod - '@storm-software/unbuild@0.57.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(rollup@4.53.5)(sass@1.97.0)(typescript@5.3.3)': + '@storm-software/unbuild@0.57.201(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(rollup@4.61.1)(sass@1.97.0)(typescript@5.3.3)(zod@4.4.3)': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@storm-software/build-tools': 0.158.200(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) + '@storm-software/config': 1.137.72(zod@4.4.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + commander: 12.1.0 + defu: 6.1.7 + esbuild: 0.25.12 + glob: 11.1.0 + jiti: 2.7.0 + mkdist: 2.4.1(sass@1.97.0)(typescript@5.3.3) + pkg-types: 1.3.1 + rollup: 4.61.1 + rollup-plugin-typescript2: 0.36.0(rollup@4.61.1)(typescript@5.3.3) + typescript: 5.3.3 + unbuild: 3.6.1(sass@1.97.0)(typescript@5.3.3) + optionalDependencies: + '@swc/core': 1.7.26 + nx: 22.7.5(@swc/core@1.7.26) + transitivePeerDependencies: + - '@swc/helpers' + - magicast + - sass + - vue + - vue-sfc-transformer + - vue-tsc + - zod + + '@storm-software/unbuild@0.57.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(rollup@4.61.1)(sass@1.97.0)(typescript@5.3.3)(zod@4.2.1)': + dependencies: + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@storm-software/build-tools': 0.158.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 + '@storm-software/config-tools': 1.190.40(zod@4.2.1) commander: 12.1.0 defu: 6.1.4 esbuild: 0.25.12 @@ -25753,13 +27011,13 @@ snapshots: jiti: 2.4.2 mkdist: 2.4.1(sass@1.97.0)(typescript@5.3.3) pkg-types: 1.3.1 - rollup: 4.53.5 - rollup-plugin-typescript2: 0.36.0(rollup@4.53.5)(typescript@5.3.3) + rollup: 4.61.1 + rollup-plugin-typescript2: 0.36.0(rollup@4.61.1)(typescript@5.3.3) typescript: 5.3.3 unbuild: 3.6.1(sass@1.97.0)(typescript@5.3.3) optionalDependencies: '@swc/core': 1.7.26 - nx: 22.3.1(@swc/core@1.7.26) + nx: 22.7.5(@swc/core@1.7.26) transitivePeerDependencies: - '@swc/helpers' - magicast @@ -25767,28 +27025,29 @@ snapshots: - vue - vue-sfc-transformer - vue-tsc + - zod - '@storm-software/unbuild@0.57.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(rollup@4.53.5)(sass@1.97.0)(typescript@5.9.3)': + '@storm-software/unbuild@0.57.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(rollup@4.61.1)(sass@1.97.0)(typescript@5.3.3)(zod@4.4.3)': dependencies: - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@storm-software/build-tools': 0.158.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 + '@storm-software/config-tools': 1.190.40(zod@4.4.3) commander: 12.1.0 defu: 6.1.4 esbuild: 0.25.12 glob: 11.1.0 jiti: 2.4.2 - mkdist: 2.4.1(sass@1.97.0)(typescript@5.9.3) + mkdist: 2.4.1(sass@1.97.0)(typescript@5.3.3) pkg-types: 1.3.1 - rollup: 4.53.5 - rollup-plugin-typescript2: 0.36.0(rollup@4.53.5)(typescript@5.9.3) - typescript: 5.9.3 - unbuild: 3.6.1(sass@1.97.0)(typescript@5.9.3) + rollup: 4.61.1 + rollup-plugin-typescript2: 0.36.0(rollup@4.61.1)(typescript@5.3.3) + typescript: 5.3.3 + unbuild: 3.6.1(sass@1.97.0)(typescript@5.3.3) optionalDependencies: '@swc/core': 1.7.26 - nx: 22.3.1(@swc/core@1.7.26) + nx: 22.7.5(@swc/core@1.7.26) transitivePeerDependencies: - '@swc/helpers' - magicast @@ -25796,6 +27055,7 @@ snapshots: - vue - vue-sfc-transformer - vue-tsc + - zod '@storm-software/untyped@0.24.53': dependencies: @@ -25804,33 +27064,33 @@ snapshots: jiti: 2.4.2 knitwork: 1.3.0 - '@storm-software/workspace-tools@1.294.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.3.1(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.2.2))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.53.5)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.2.2))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.8.2)': + '@storm-software/workspace-tools@1.294.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.7.5(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.61.1)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.9.0)': dependencies: '@ltd/j-toml': 1.38.0 '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@samchon/openapi': 2.5.3 '@size-limit/esbuild': 11.1.4(size-limit@11.1.4) '@size-limit/esbuild-why': 11.1.4(size-limit@11.1.4) '@size-limit/file': 11.1.4(size-limit@11.1.4) - '@storm-software/config-tools': 1.188.72 - '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/npm-tools': 0.6.29 - '@storm-software/pnpm-tools': 0.6.74 - '@storm-software/prettier': 0.57.71(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.2.2))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4) - '@storm-software/tsdown': 0.45.72(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.2.2))(typescript@5.2.2)(yaml@2.8.2) - '@storm-software/unbuild': 0.57.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(rollup@4.53.5)(sass@1.97.0)(typescript@5.2.2) + '@storm-software/config-tools': 1.190.40(zod@4.2.1) + '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.2.1) + '@storm-software/npm-tools': 0.6.29(zod@4.2.1) + '@storm-software/pnpm-tools': 0.6.74(zod@4.2.1) + '@storm-software/prettier': 0.57.71(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4) + '@storm-software/tsdown': 0.45.72(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(yaml@2.9.0)(zod@4.2.1) + '@storm-software/unbuild': 0.57.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(rollup@4.61.1)(sass@1.97.0)(typescript@5.3.3)(zod@4.2.1) fs-extra: 11.2.0 glob: 11.1.0 jiti: 2.4.2 markdownlint-cli2: 0.17.2 micromatch: 4.0.8 - nx: 22.3.1(@swc/core@1.7.26) + nx: 22.7.5(@swc/core@1.7.26) prettier: 3.7.4 semver: 7.6.2 size-limit: 11.1.4 - typia: 7.6.4(@samchon/openapi@2.5.3)(@types/node@20.9.0)(typescript@5.2.2) + typia: 7.6.4(@samchon/openapi@2.5.3)(@types/node@20.9.0)(typescript@5.3.3) untyped: 2.0.0 zod: 4.2.1 optionalDependencies: @@ -25867,35 +27127,100 @@ snapshots: - vue-tsc - yaml - '@storm-software/workspace-tools@1.294.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.3.1(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.53.5)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.8.2)': + '@storm-software/workspace-tools@1.296.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.19.42)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.19.42)(markdownlint-cli2@0.17.2)(nx@22.7.5(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.8.3)(rollup@4.61.1)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.9.0)': dependencies: + '@actions/core': 3.0.1 '@ltd/j-toml': 1.38.0 - '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@microsoft/api-extractor': 7.58.7(@types/node@20.19.42) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@samchon/openapi': 2.5.3 - '@size-limit/esbuild': 11.1.4(size-limit@11.1.4) - '@size-limit/esbuild-why': 11.1.4(size-limit@11.1.4) - '@size-limit/file': 11.1.4(size-limit@11.1.4) - '@storm-software/config-tools': 1.188.72 - '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/npm-tools': 0.6.29 - '@storm-software/pnpm-tools': 0.6.74 - '@storm-software/prettier': 0.57.71(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4) - '@storm-software/tsdown': 0.45.72(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(yaml@2.8.2) - '@storm-software/unbuild': 0.57.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(rollup@4.53.5)(sass@1.97.0)(typescript@5.3.3) + '@size-limit/esbuild': 11.2.0(size-limit@11.2.0) + '@size-limit/esbuild-why': 11.2.0(size-limit@11.2.0) + '@size-limit/file': 11.2.0(size-limit@11.2.0) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/esbuild': 0.53.201(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3) + '@storm-software/npm-tools': 0.6.158(zod@4.4.3) + '@storm-software/pnpm-tools': 0.7.51(zod@4.4.3) + '@storm-software/prettier': 0.59.92(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.8.3) + '@storm-software/tsdown': 0.45.201(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.58.7(@types/node@20.19.42))(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(yaml@2.9.0)(zod@4.4.3) + '@storm-software/unbuild': 0.57.201(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(rollup@4.61.1)(sass@1.97.0)(typescript@5.3.3)(zod@4.4.3) fs-extra: 11.2.0 glob: 11.1.0 - jiti: 2.4.2 + jiti: 2.7.0 + markdownlint-cli2: 0.17.2 + micromatch: 4.0.8 + nx: 22.7.5(@swc/core@1.7.26) + prettier: 3.8.3 + semver: 7.8.2 + size-limit: 11.2.0 + typia: 7.6.4(@samchon/openapi@2.5.3)(@types/node@20.19.42)(typescript@5.3.3) + untyped: 2.0.0 + zod: 4.4.3 + optionalDependencies: + '@napi-rs/cli': 3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.19.42)(node-addon-api@7.1.1) + transitivePeerDependencies: + - '@babel/runtime' + - '@babel/traverse' + - '@swc-node/register' + - '@swc/core' + - '@swc/helpers' + - '@types/node' + - debug + - magicast + - postcss + - prettier-plugin-astro + - prettier-plugin-organize-imports + - prettier-plugin-packagejson + - prettier-plugin-prisma + - prettier-plugin-sh + - prettier-plugin-solidity + - prettier-plugin-tailwindcss + - prettier-plugin-toml + - rollup + - sass + - spdx-exceptions + - spdx-license-ids + - supports-color + - tsdown + - tsx + - typescript + - verdaccio + - vue + - vue-sfc-transformer + - vue-tsc + - yaml + + '@storm-software/workspace-tools@1.296.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.7.5(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.61.1)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.9.0)': + dependencies: + '@actions/core': 3.0.1 + '@ltd/j-toml': 1.38.0 + '@microsoft/api-extractor': 7.58.7(@types/node@20.9.0) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@samchon/openapi': 2.5.3 + '@size-limit/esbuild': 11.2.0(size-limit@11.2.0) + '@size-limit/esbuild-why': 11.2.0(size-limit@11.2.0) + '@size-limit/file': 11.2.0(size-limit@11.2.0) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/esbuild': 0.53.201(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3) + '@storm-software/npm-tools': 0.6.158(zod@4.4.3) + '@storm-software/pnpm-tools': 0.7.51(zod@4.4.3) + '@storm-software/prettier': 0.59.92(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4) + '@storm-software/tsdown': 0.45.201(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(yaml@2.9.0)(zod@4.4.3) + '@storm-software/unbuild': 0.57.201(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(rollup@4.61.1)(sass@1.97.0)(typescript@5.3.3)(zod@4.4.3) + fs-extra: 11.2.0 + glob: 11.1.0 + jiti: 2.7.0 markdownlint-cli2: 0.17.2 micromatch: 4.0.8 - nx: 22.3.1(@swc/core@1.7.26) + nx: 22.7.5(@swc/core@1.7.26) prettier: 3.7.4 - semver: 7.6.2 - size-limit: 11.1.4 + semver: 7.8.2 + size-limit: 11.2.0 typia: 7.6.4(@samchon/openapi@2.5.3)(@types/node@20.9.0)(typescript@5.3.3) untyped: 2.0.0 - zod: 4.2.1 + zod: 4.4.3 optionalDependencies: '@napi-rs/cli': 3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1) transitivePeerDependencies: @@ -25910,7 +27235,7 @@ snapshots: - postcss - prettier-plugin-astro - prettier-plugin-organize-imports - - prettier-plugin-pkg + - prettier-plugin-packagejson - prettier-plugin-prisma - prettier-plugin-sh - prettier-plugin-solidity @@ -25930,35 +27255,36 @@ snapshots: - vue-tsc - yaml - '@storm-software/workspace-tools@1.294.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.3.1(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.53.5)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.8.2)': + '@storm-software/workspace-tools@1.296.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.7.5(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.8.3)(rollup@4.61.1)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.9.0)': dependencies: + '@actions/core': 3.0.1 '@ltd/j-toml': 1.38.0 - '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@microsoft/api-extractor': 7.58.7(@types/node@20.9.0) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@samchon/openapi': 2.5.3 - '@size-limit/esbuild': 11.1.4(size-limit@11.1.4) - '@size-limit/esbuild-why': 11.1.4(size-limit@11.1.4) - '@size-limit/file': 11.1.4(size-limit@11.1.4) - '@storm-software/config-tools': 1.188.72 - '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/npm-tools': 0.6.29 - '@storm-software/pnpm-tools': 0.6.74 - '@storm-software/prettier': 0.57.71(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4) - '@storm-software/tsdown': 0.45.72(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.9.3)(yaml@2.8.2) - '@storm-software/unbuild': 0.57.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(rollup@4.53.5)(sass@1.97.0)(typescript@5.9.3) + '@size-limit/esbuild': 11.2.0(size-limit@11.2.0) + '@size-limit/esbuild-why': 11.2.0(size-limit@11.2.0) + '@size-limit/file': 11.2.0(size-limit@11.2.0) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/esbuild': 0.53.201(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3) + '@storm-software/npm-tools': 0.6.158(zod@4.4.3) + '@storm-software/pnpm-tools': 0.7.51(zod@4.4.3) + '@storm-software/prettier': 0.59.92(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.8.3) + '@storm-software/tsdown': 0.45.201(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(yaml@2.9.0)(zod@4.4.3) + '@storm-software/unbuild': 0.57.201(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(rollup@4.61.1)(sass@1.97.0)(typescript@5.3.3)(zod@4.4.3) fs-extra: 11.2.0 glob: 11.1.0 - jiti: 2.4.2 + jiti: 2.7.0 markdownlint-cli2: 0.17.2 micromatch: 4.0.8 - nx: 22.3.1(@swc/core@1.7.26) - prettier: 3.7.4 - semver: 7.6.2 - size-limit: 11.1.4 - typia: 7.6.4(@samchon/openapi@2.5.3)(@types/node@20.9.0)(typescript@5.9.3) + nx: 22.7.5(@swc/core@1.7.26) + prettier: 3.8.3 + semver: 7.8.2 + size-limit: 11.2.0 + typia: 7.6.4(@samchon/openapi@2.5.3)(@types/node@20.9.0)(typescript@5.3.3) untyped: 2.0.0 - zod: 4.2.1 + zod: 4.4.3 optionalDependencies: '@napi-rs/cli': 3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1) transitivePeerDependencies: @@ -25973,7 +27299,7 @@ snapshots: - postcss - prettier-plugin-astro - prettier-plugin-organize-imports - - prettier-plugin-pkg + - prettier-plugin-packagejson - prettier-plugin-prisma - prettier-plugin-sh - prettier-plugin-solidity @@ -25993,35 +27319,36 @@ snapshots: - vue-tsc - yaml - '@storm-software/workspace-tools@1.294.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.3.1(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.53.5)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.8.2)': + '@storm-software/workspace-tools@1.296.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.7.5(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.8.3)(typescript@5.2.2))(prettier-plugin-packagejson@3.0.2(prettier@3.8.3))(prettier-plugin-prisma@5.0.0(prettier@3.8.3))(prettier-plugin-sh@0.15.0(prettier@3.8.3))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.8.3))(prettier@3.8.3)(rollup@4.61.1)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.2.2))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.9.0)': dependencies: + '@actions/core': 3.0.1 '@ltd/j-toml': 1.38.0 - '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@microsoft/api-extractor': 7.58.7(@types/node@20.9.0) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@samchon/openapi': 2.5.3 - '@size-limit/esbuild': 11.1.4(size-limit@11.1.4) - '@size-limit/esbuild-why': 11.1.4(size-limit@11.1.4) - '@size-limit/file': 11.1.4(size-limit@11.1.4) - '@storm-software/config-tools': 1.188.72 - '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/npm-tools': 0.6.29 - '@storm-software/pnpm-tools': 0.6.74 - '@storm-software/prettier': 0.57.71(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4) - '@storm-software/tsdown': 0.45.72(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3))(typescript@5.9.3)(yaml@2.8.2) - '@storm-software/unbuild': 0.57.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(rollup@4.53.5)(sass@1.97.0)(typescript@5.9.3) + '@size-limit/esbuild': 11.2.0(size-limit@11.2.0) + '@size-limit/esbuild-why': 11.2.0(size-limit@11.2.0) + '@size-limit/file': 11.2.0(size-limit@11.2.0) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/esbuild': 0.53.201(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3) + '@storm-software/npm-tools': 0.6.158(zod@4.4.3) + '@storm-software/pnpm-tools': 0.7.51(zod@4.4.3) + '@storm-software/prettier': 0.59.92(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.8.3)(typescript@5.2.2))(prettier-plugin-packagejson@3.0.2(prettier@3.8.3))(prettier-plugin-prisma@5.0.0(prettier@3.8.3))(prettier-plugin-sh@0.15.0(prettier@3.8.3))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.8.3))(prettier@3.8.3) + '@storm-software/tsdown': 0.45.201(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.2.2))(typescript@5.2.2)(yaml@2.9.0)(zod@4.4.3) + '@storm-software/unbuild': 0.57.201(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(rollup@4.61.1)(sass@1.97.0)(typescript@5.2.2)(zod@4.4.3) fs-extra: 11.2.0 glob: 11.1.0 - jiti: 2.4.2 + jiti: 2.7.0 markdownlint-cli2: 0.17.2 micromatch: 4.0.8 - nx: 22.3.1(@swc/core@1.7.26) - prettier: 3.7.4 - semver: 7.6.2 - size-limit: 11.1.4 - typia: 7.6.4(@samchon/openapi@2.5.3)(@types/node@20.9.0)(typescript@5.9.3) + nx: 22.7.5(@swc/core@1.7.26) + prettier: 3.8.3 + semver: 7.8.2 + size-limit: 11.2.0 + typia: 7.6.4(@samchon/openapi@2.5.3)(@types/node@20.9.0)(typescript@5.2.2) untyped: 2.0.0 - zod: 4.2.1 + zod: 4.4.3 optionalDependencies: '@napi-rs/cli': 3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1) transitivePeerDependencies: @@ -26036,7 +27363,7 @@ snapshots: - postcss - prettier-plugin-astro - prettier-plugin-organize-imports - - prettier-plugin-pkg + - prettier-plugin-packagejson - prettier-plugin-prisma - prettier-plugin-sh - prettier-plugin-solidity @@ -26056,35 +27383,36 @@ snapshots: - vue-tsc - yaml - '@storm-software/workspace-tools@1.294.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@25.0.3)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@25.0.3)(markdownlint-cli2@0.17.2)(nx@22.3.1(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.53.5)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.8.2)': + '@storm-software/workspace-tools@1.296.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@25.0.3)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@25.0.3)(markdownlint-cli2@0.17.2)(nx@22.7.5(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.8.3)(rollup@4.61.1)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.9.0)': dependencies: + '@actions/core': 3.0.1 '@ltd/j-toml': 1.38.0 - '@microsoft/api-extractor': 7.55.2(@types/node@25.0.3) - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@microsoft/api-extractor': 7.58.7(@types/node@25.0.3) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@samchon/openapi': 2.5.3 - '@size-limit/esbuild': 11.1.4(size-limit@11.1.4) - '@size-limit/esbuild-why': 11.1.4(size-limit@11.1.4) - '@size-limit/file': 11.1.4(size-limit@11.1.4) - '@storm-software/config-tools': 1.188.72 - '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/npm-tools': 0.6.29 - '@storm-software/pnpm-tools': 0.6.74 - '@storm-software/prettier': 0.57.71(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4) - '@storm-software/tsdown': 0.45.72(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.9.3)(yaml@2.8.2) - '@storm-software/unbuild': 0.57.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(rollup@4.53.5)(sass@1.97.0)(typescript@5.9.3) + '@size-limit/esbuild': 11.2.0(size-limit@11.2.0) + '@size-limit/esbuild-why': 11.2.0(size-limit@11.2.0) + '@size-limit/file': 11.2.0(size-limit@11.2.0) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/esbuild': 0.53.201(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3) + '@storm-software/npm-tools': 0.6.158(zod@4.4.3) + '@storm-software/pnpm-tools': 0.7.51(zod@4.4.3) + '@storm-software/prettier': 0.59.92(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.8.3) + '@storm-software/tsdown': 0.45.201(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(yaml@2.9.0)(zod@4.4.3) + '@storm-software/unbuild': 0.57.201(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(rollup@4.61.1)(sass@1.97.0)(typescript@5.3.3)(zod@4.4.3) fs-extra: 11.2.0 glob: 11.1.0 - jiti: 2.4.2 + jiti: 2.7.0 markdownlint-cli2: 0.17.2 micromatch: 4.0.8 - nx: 22.3.1(@swc/core@1.7.26) - prettier: 3.7.4 - semver: 7.6.2 - size-limit: 11.1.4 - typia: 7.6.4(@samchon/openapi@2.5.3)(@types/node@25.0.3)(typescript@5.9.3) + nx: 22.7.5(@swc/core@1.7.26) + prettier: 3.8.3 + semver: 7.8.2 + size-limit: 11.2.0 + typia: 7.6.4(@samchon/openapi@2.5.3)(@types/node@25.0.3)(typescript@5.3.3) untyped: 2.0.0 - zod: 4.2.1 + zod: 4.4.3 optionalDependencies: '@napi-rs/cli': 3.5.0(@emnapi/runtime@1.7.1)(@types/node@25.0.3)(node-addon-api@7.1.1) transitivePeerDependencies: @@ -26099,7 +27427,7 @@ snapshots: - postcss - prettier-plugin-astro - prettier-plugin-organize-imports - - prettier-plugin-pkg + - prettier-plugin-packagejson - prettier-plugin-prisma - prettier-plugin-sh - prettier-plugin-solidity @@ -26119,35 +27447,36 @@ snapshots: - vue-tsc - yaml - '@storm-software/workspace-tools@1.294.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@25.0.3)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@25.0.3)(markdownlint-cli2@0.17.2)(nx@22.3.1(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.9.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.53.5)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.8.2)': + '@storm-software/workspace-tools@1.296.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@25.0.3)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@25.0.3)(markdownlint-cli2@0.17.2)(nx@22.7.5(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.8.3)(typescript@5.3.3))(prettier-plugin-packagejson@3.0.2(prettier@3.8.3))(prettier-plugin-prisma@5.0.0(prettier@3.8.3))(prettier-plugin-sh@0.15.0(prettier@3.8.3))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.8.3))(prettier@3.8.3)(rollup@4.61.1)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.9.0)': dependencies: + '@actions/core': 3.0.1 '@ltd/j-toml': 1.38.0 - '@microsoft/api-extractor': 7.55.2(@types/node@25.0.3) - '@nx/devkit': 22.3.1(nx@22.3.1(@swc/core@1.7.26)) - '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) + '@microsoft/api-extractor': 7.58.7(@types/node@25.0.3) + '@nx/devkit': 22.7.5(nx@22.7.5(@swc/core@1.7.26)) + '@nx/js': 22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) '@samchon/openapi': 2.5.3 - '@size-limit/esbuild': 11.1.4(size-limit@11.1.4) - '@size-limit/esbuild-why': 11.1.4(size-limit@11.1.4) - '@size-limit/file': 11.1.4(size-limit@11.1.4) - '@storm-software/config-tools': 1.188.72 - '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/npm-tools': 0.6.29 - '@storm-software/pnpm-tools': 0.6.74 - '@storm-software/prettier': 0.57.71(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.9.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4) - '@storm-software/tsdown': 0.45.72(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3))(typescript@5.9.3)(yaml@2.8.2) - '@storm-software/unbuild': 0.57.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(rollup@4.53.5)(sass@1.97.0)(typescript@5.9.3) + '@size-limit/esbuild': 11.2.0(size-limit@11.2.0) + '@size-limit/esbuild-why': 11.2.0(size-limit@11.2.0) + '@size-limit/file': 11.2.0(size-limit@11.2.0) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/esbuild': 0.53.201(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3) + '@storm-software/npm-tools': 0.6.158(zod@4.4.3) + '@storm-software/pnpm-tools': 0.7.51(zod@4.4.3) + '@storm-software/prettier': 0.59.92(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.8.3)(typescript@5.3.3))(prettier-plugin-packagejson@3.0.2(prettier@3.8.3))(prettier-plugin-prisma@5.0.0(prettier@3.8.3))(prettier-plugin-sh@0.15.0(prettier@3.8.3))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.8.3))(prettier@3.8.3) + '@storm-software/tsdown': 0.45.201(@babel/runtime@7.28.4)(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(yaml@2.9.0)(zod@4.4.3) + '@storm-software/unbuild': 0.57.201(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(rollup@4.61.1)(sass@1.97.0)(typescript@5.3.3)(zod@4.4.3) fs-extra: 11.2.0 glob: 11.1.0 - jiti: 2.4.2 + jiti: 2.7.0 markdownlint-cli2: 0.17.2 micromatch: 4.0.8 - nx: 22.3.1(@swc/core@1.7.26) - prettier: 3.7.4 - semver: 7.6.2 - size-limit: 11.1.4 - typia: 7.6.4(@samchon/openapi@2.5.3)(@types/node@25.0.3)(typescript@5.9.3) + nx: 22.7.5(@swc/core@1.7.26) + prettier: 3.8.3 + semver: 7.8.2 + size-limit: 11.2.0 + typia: 7.6.4(@samchon/openapi@2.5.3)(@types/node@25.0.3)(typescript@5.3.3) untyped: 2.0.0 - zod: 4.2.1 + zod: 4.4.3 optionalDependencies: '@napi-rs/cli': 3.5.0(@emnapi/runtime@1.7.1)(@types/node@25.0.3)(node-addon-api@7.1.1) transitivePeerDependencies: @@ -26162,7 +27491,7 @@ snapshots: - postcss - prettier-plugin-astro - prettier-plugin-organize-imports - - prettier-plugin-pkg + - prettier-plugin-packagejson - prettier-plugin-prisma - prettier-plugin-sh - prettier-plugin-solidity @@ -26182,18 +27511,18 @@ snapshots: - vue-tsc - yaml - '@storm-stack/cli@0.28.1(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)))(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.53.5)(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.25.12))': + '@storm-stack/cli@0.28.1(@azure/identity@4.13.1)(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)))(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.61.1)(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.25.12))(zod@4.4.3)': dependencies: '@clack/prompts': 0.10.1 '@sentry/core': 9.47.1 '@sentry/node': 9.47.1 - '@storm-software/config-tools': 1.188.72 - '@storm-stack/core': 0.48.0(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)))(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.53.5)(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.25.12)) - '@stryke/fs': 0.28.7(nx@22.3.1(@swc/core@1.7.26)) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-stack/core': 0.48.0(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)))(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.61.1)(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.25.12))(zod@4.4.3) + '@stryke/fs': 0.28.7(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) date-fns: 4.1.0 defu: 6.1.4 minimatch: 10.1.1 - unstorage: 1.17.3 + unstorage: 1.17.3(@azure/identity@4.13.1) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -26237,19 +27566,20 @@ snapshots: - verdaccio - vite - webpack + - zod - '@storm-stack/cli@0.28.1(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)))(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@25.0.3)(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.53.5)(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))': + '@storm-stack/cli@0.28.1(@azure/identity@4.13.1)(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)))(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@25.0.3)(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.61.1)(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))(zod@4.4.3)': dependencies: '@clack/prompts': 0.10.1 '@sentry/core': 9.47.1 '@sentry/node': 9.47.1 - '@storm-software/config-tools': 1.188.72 - '@storm-stack/core': 0.48.0(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)))(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@25.0.3)(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.53.5)(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)) - '@stryke/fs': 0.28.7(nx@22.3.1(@swc/core@1.7.26)) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-stack/core': 0.48.0(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)))(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@25.0.3)(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.61.1)(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))(zod@4.4.3) + '@stryke/fs': 0.28.7(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) date-fns: 4.1.0 defu: 6.1.4 minimatch: 10.1.1 - unstorage: 1.17.3 + unstorage: 1.17.3(@azure/identity@4.13.1) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -26293,8 +27623,9 @@ snapshots: - verdaccio - vite - webpack + - zod - '@storm-stack/core@0.48.0(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)))(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.53.5)(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.25.12))': + '@storm-stack/core@0.48.0(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)))(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.61.1)(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.25.12))(zod@4.4.3)': dependencies: '@alloy-js/babel-plugin': 0.2.1(@babel/core@7.28.5) '@alloy-js/babel-plugin-jsx-dom-expressions': 0.39.1(@babel/core@7.28.5) @@ -26321,18 +27652,18 @@ snapshots: '@donedeal0/superdiff': 3.1.2 '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) '@microsoft/tsdoc-config': 0.17.1 - '@rollup/plugin-alias': 5.1.1(rollup@4.53.5) - '@rollup/plugin-babel': 6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.53.5) - '@rollup/plugin-node-resolve': 16.0.3(rollup@4.53.5) - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) - '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 - '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-stack/tsdoc': 0.5.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)) - '@stryke/capnp': 0.11.24(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) + '@rollup/plugin-alias': 5.1.1(rollup@4.61.1) + '@rollup/plugin-babel': 6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.61.1) + '@rollup/plugin-node-resolve': 16.0.3(rollup@4.61.1) + '@storm-software/build-tools': 0.158.200(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) + '@storm-software/config': 1.137.72(zod@4.4.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/esbuild': 0.53.201(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3) + '@storm-stack/tsdoc': 0.5.0(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)) + '@stryke/capnp': 0.11.24(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.4.3) '@stryke/convert': 0.6.28 - '@stryke/env': 0.18.13(nx@22.3.1(@swc/core@1.7.26)) - '@stryke/fs': 0.28.7(nx@22.3.1(@swc/core@1.7.26)) + '@stryke/env': 0.18.13(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) + '@stryke/fs': 0.28.7(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) '@stryke/hash': 0.12.30 '@stryke/helpers': 0.9.30 '@stryke/json': 0.9.31 @@ -26354,18 +27685,18 @@ snapshots: jiti: 2.6.1 magic-string: 0.30.21 nanotar: 0.2.0 - prettier: 3.7.4 - rollup-plugin-typescript2: 0.36.0(rollup@4.53.5)(typescript@5.9.3) - typedoc: 0.25.12(typescript@5.9.3) - typedoc-plugin-frontmatter: 1.3.1(typedoc-plugin-markdown@4.0.0-next.20(typedoc@0.25.12(typescript@5.9.3))) - typedoc-plugin-markdown: 4.0.0-next.20(typedoc@0.25.12(typescript@5.9.3)) + prettier: 3.8.3 + rollup-plugin-typescript2: 0.36.0(rollup@4.61.1)(typescript@5.3.3) + typedoc: 0.25.12(typescript@5.3.3) + typedoc-plugin-frontmatter: 1.3.1(typedoc-plugin-markdown@4.0.0-next.20(typedoc@0.25.12(typescript@5.3.3))) + typedoc-plugin-markdown: 4.0.0-next.20(typedoc@0.25.12(typescript@5.3.3)) unimport: 4.2.0 unionfs: 4.6.0 unplugin: 2.3.11 optionalDependencies: '@rspack/core': 1.6.8 rolldown: 1.0.0-beta.55 - rollup: 4.53.5 + rollup: 4.61.1 vite: 5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1) webpack: 5.104.1(@swc/core@1.7.26)(esbuild@0.25.12) transitivePeerDependencies: @@ -26382,8 +27713,9 @@ snapshots: - supports-color - typescript - verdaccio + - zod - '@storm-stack/core@0.48.0(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)))(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@25.0.3)(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.53.5)(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))': + '@storm-stack/core@0.48.0(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)))(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@25.0.3)(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.61.1)(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))(zod@4.4.3)': dependencies: '@alloy-js/babel-plugin': 0.2.1(@babel/core@7.28.5) '@alloy-js/babel-plugin-jsx-dom-expressions': 0.39.1(@babel/core@7.28.5) @@ -26410,18 +27742,18 @@ snapshots: '@donedeal0/superdiff': 3.1.2 '@microsoft/api-extractor': 7.55.2(@types/node@25.0.3) '@microsoft/tsdoc-config': 0.17.1 - '@rollup/plugin-alias': 5.1.1(rollup@4.53.5) - '@rollup/plugin-babel': 6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.53.5) - '@rollup/plugin-node-resolve': 16.0.3(rollup@4.53.5) - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) - '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 - '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-stack/tsdoc': 0.5.0(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)) - '@stryke/capnp': 0.11.24(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) + '@rollup/plugin-alias': 5.1.1(rollup@4.61.1) + '@rollup/plugin-babel': 6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.61.1) + '@rollup/plugin-node-resolve': 16.0.3(rollup@4.61.1) + '@storm-software/build-tools': 0.158.200(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) + '@storm-software/config': 1.137.72(zod@4.4.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/esbuild': 0.53.201(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3) + '@storm-stack/tsdoc': 0.5.0(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)) + '@stryke/capnp': 0.11.24(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.4.3) '@stryke/convert': 0.6.28 - '@stryke/env': 0.18.13(nx@22.3.1(@swc/core@1.7.26)) - '@stryke/fs': 0.28.7(nx@22.3.1(@swc/core@1.7.26)) + '@stryke/env': 0.18.13(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) + '@stryke/fs': 0.28.7(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) '@stryke/hash': 0.12.30 '@stryke/helpers': 0.9.30 '@stryke/json': 0.9.31 @@ -26443,18 +27775,18 @@ snapshots: jiti: 2.6.1 magic-string: 0.30.21 nanotar: 0.2.0 - prettier: 3.7.4 - rollup-plugin-typescript2: 0.36.0(rollup@4.53.5)(typescript@5.9.3) - typedoc: 0.25.12(typescript@5.9.3) - typedoc-plugin-frontmatter: 1.3.1(typedoc-plugin-markdown@4.0.0-next.20(typedoc@0.25.12(typescript@5.9.3))) - typedoc-plugin-markdown: 4.0.0-next.20(typedoc@0.25.12(typescript@5.9.3)) + prettier: 3.8.3 + rollup-plugin-typescript2: 0.36.0(rollup@4.61.1)(typescript@5.3.3) + typedoc: 0.25.12(typescript@5.3.3) + typedoc-plugin-frontmatter: 1.3.1(typedoc-plugin-markdown@4.0.0-next.20(typedoc@0.25.12(typescript@5.3.3))) + typedoc-plugin-markdown: 4.0.0-next.20(typedoc@0.25.12(typescript@5.3.3)) unimport: 4.2.0 unionfs: 4.6.0 unplugin: 2.3.11 optionalDependencies: '@rspack/core': 1.6.8 rolldown: 1.0.0-beta.55 - rollup: 4.53.5 + rollup: 4.61.1 vite: 5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1) webpack: 5.104.1(@swc/core@1.7.26)(esbuild@0.27.1) transitivePeerDependencies: @@ -26471,16 +27803,17 @@ snapshots: - supports-color - typescript - verdaccio + - zod '@storm-stack/date-time@1.46.0': dependencies: '@formkit/tempo': 0.1.2 '@js-temporal/polyfill': 0.4.4 - '@storm-stack/errors@1.40.0(07e7efebf889dd1e53802be2a9efc199)': + '@storm-stack/errors@1.40.0(30cfd12e2adea78a56075f876a54f7d2)': dependencies: - '@storm-software/testing-tools': 1.119.71(@nx/jest@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@25.0.3)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@25.0.3)(babel-plugin-macros@3.1.0)) - '@storm-software/workspace-tools': 1.294.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@25.0.3)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@25.0.3)(markdownlint-cli2@0.17.2)(nx@22.3.1(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.9.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.53.5)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.8.2) + '@storm-software/testing-tools': 1.119.193(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@25.0.3)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/node@25.0.3)(babel-plugin-macros@3.1.0)) + '@storm-software/workspace-tools': 1.296.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@25.0.3)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@25.0.3)(markdownlint-cli2@0.17.2)(nx@22.7.5(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.8.3)(typescript@5.3.3))(prettier-plugin-packagejson@3.0.2(prettier@3.8.3))(prettier-plugin-prisma@5.0.0(prettier@3.8.3))(prettier-plugin-sh@0.15.0(prettier@3.8.3))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.8.3))(prettier@3.8.3)(rollup@4.61.1)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.9.0) transitivePeerDependencies: - '@babel/runtime' - '@babel/traverse' @@ -26499,7 +27832,7 @@ snapshots: - prettier - prettier-plugin-astro - prettier-plugin-organize-imports - - prettier-plugin-pkg + - prettier-plugin-packagejson - prettier-plugin-prisma - prettier-plugin-sh - prettier-plugin-solidity @@ -26519,10 +27852,10 @@ snapshots: - vue-tsc - yaml - '@storm-stack/errors@1.40.0(8e935c0504da5b02797b8ad8adf62bac)': + '@storm-stack/errors@1.40.0(5c18db0e5ed879f383cff3a0038dd991)': dependencies: - '@storm-software/testing-tools': 1.119.71(@nx/jest@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@25.0.3)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@25.0.3)(babel-plugin-macros@3.1.0)) - '@storm-software/workspace-tools': 1.294.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@25.0.3)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@25.0.3)(markdownlint-cli2@0.17.2)(nx@22.3.1(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.53.5)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.8.2) + '@storm-software/testing-tools': 1.119.193(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/node@20.9.0)(babel-plugin-macros@3.1.0)) + '@storm-software/workspace-tools': 1.296.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.7.5(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.8.3)(typescript@5.2.2))(prettier-plugin-packagejson@3.0.2(prettier@3.8.3))(prettier-plugin-prisma@5.0.0(prettier@3.8.3))(prettier-plugin-sh@0.15.0(prettier@3.8.3))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.8.3))(prettier@3.8.3)(rollup@4.61.1)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.2.2))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.9.0) transitivePeerDependencies: - '@babel/runtime' - '@babel/traverse' @@ -26541,7 +27874,7 @@ snapshots: - prettier - prettier-plugin-astro - prettier-plugin-organize-imports - - prettier-plugin-pkg + - prettier-plugin-packagejson - prettier-plugin-prisma - prettier-plugin-sh - prettier-plugin-solidity @@ -26561,10 +27894,10 @@ snapshots: - vue-tsc - yaml - '@storm-stack/errors@1.40.0(a2cc6b2ce370fdbb735252ecb9aded8d)': + '@storm-stack/errors@1.40.0(6e0b9c1c2e0dc2701c3a8a254c3757e8)': dependencies: - '@storm-software/testing-tools': 1.119.71(@nx/jest@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)) - '@storm-software/workspace-tools': 1.294.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.3.1(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.53.5)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.8.2) + '@storm-software/testing-tools': 1.119.193(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/node@20.9.0)(babel-plugin-macros@3.1.0)) + '@storm-software/workspace-tools': 1.296.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.7.5(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.8.3)(rollup@4.61.1)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.9.0) transitivePeerDependencies: - '@babel/runtime' - '@babel/traverse' @@ -26583,7 +27916,7 @@ snapshots: - prettier - prettier-plugin-astro - prettier-plugin-organize-imports - - prettier-plugin-pkg + - prettier-plugin-packagejson - prettier-plugin-prisma - prettier-plugin-sh - prettier-plugin-solidity @@ -26603,10 +27936,10 @@ snapshots: - vue-tsc - yaml - '@storm-stack/errors@1.40.0(a325610cb056de07f5338302125644c4)': + '@storm-stack/errors@1.40.0(e709a89c307e8770ca4c2dfc7ec4f03a)': dependencies: - '@storm-software/testing-tools': 1.119.71(@nx/jest@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0)) - '@storm-software/workspace-tools': 1.294.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@20.9.0)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@20.9.0)(markdownlint-cli2@0.17.2)(nx@22.3.1(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.2.2))(prettier-plugin-pkg@0.18.1(prettier@3.7.4))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.7.4)(rollup@4.53.5)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.2.2))(typescript@5.2.2)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.8.2) + '@storm-software/testing-tools': 1.119.193(@nx/jest@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(@types/node@25.0.3)(babel-plugin-macros@3.1.0)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(jest@30.0.5(@types/node@25.0.3)(babel-plugin-macros@3.1.0)) + '@storm-software/workspace-tools': 1.296.18(@babel/runtime@7.28.4)(@babel/traverse@7.28.5)(@napi-rs/cli@3.5.0(@emnapi/runtime@1.7.1)(@types/node@25.0.3)(node-addon-api@7.1.1))(@swc/core@1.7.26)(@types/node@25.0.3)(markdownlint-cli2@0.17.2)(nx@22.7.5(@swc/core@1.7.26))(postcss@8.5.6)(prettier-plugin-astro@0.14.1)(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier-plugin-prisma@5.0.0(prettier@3.7.4))(prettier-plugin-sh@0.15.0(prettier@3.7.4))(prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4))(prettier-plugin-toml@2.0.6(prettier@3.7.4))(prettier@3.8.3)(rollup@4.61.1)(sass@1.97.0)(spdx-exceptions@2.5.0)(spdx-license-ids@3.0.22)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(yaml@2.9.0) transitivePeerDependencies: - '@babel/runtime' - '@babel/traverse' @@ -26625,7 +27958,7 @@ snapshots: - prettier - prettier-plugin-astro - prettier-plugin-organize-imports - - prettier-plugin-pkg + - prettier-plugin-packagejson - prettier-plugin-prisma - prettier-plugin-sh - prettier-plugin-solidity @@ -26645,24 +27978,44 @@ snapshots: - vue-tsc - yaml - '@storm-stack/file-system@1.39.0': + '@storm-stack/file-system@1.39.0(zod@3.25.76)': dependencies: - '@storm-software/config-tools': 1.188.72 + '@storm-software/config-tools': 1.190.40(zod@3.25.76) semver: 7.6.3 transitivePeerDependencies: - magicast + - zod - '@storm-stack/jotai@1.16.2(jotai@2.16.0(@babel/core@7.28.5)(@babel/template@7.27.2)(@types/react@18.3.27)(react@18.2.0))(react@18.2.0)': + '@storm-stack/file-system@1.39.0(zod@4.4.3)': dependencies: - jotai: 2.16.0(@babel/core@7.28.5)(@babel/template@7.27.2)(@types/react@18.3.27)(react@18.2.0) - react: 18.2.0 + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + semver: 7.6.3 + transitivePeerDependencies: + - magicast + - zod - '@storm-stack/logging@1.40.0': + '@storm-stack/jotai@1.16.2(jotai@2.16.0(@babel/core@7.28.5)(@babel/template@7.27.2)(@types/react@18.3.27)(react@18.3.1))(react@18.3.1)': dependencies: - '@storm-software/config': 1.134.72 + jotai: 2.16.0(@babel/core@7.28.5)(@babel/template@7.27.2)(@types/react@18.3.27)(react@18.3.1) + react: 18.3.1 + + '@storm-stack/logging@1.40.0(zod@3.25.76)': + dependencies: + '@storm-software/config': 1.137.72(zod@3.25.76) chalk: 5.3.0 pino: 9.4.0 pino-std-serializers: 7.0.0 + transitivePeerDependencies: + - zod + + '@storm-stack/logging@1.40.0(zod@4.4.3)': + dependencies: + '@storm-software/config': 1.137.72(zod@4.4.3) + chalk: 5.3.0 + pino: 9.4.0 + pino-std-serializers: 7.0.0 + transitivePeerDependencies: + - zod '@storm-stack/plugin-system@1.23.0': dependencies: @@ -26698,8 +28051,8 @@ snapshots: '@sentry/node': 8.55.0 '@sentry/opentelemetry': 8.55.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.38.0) '@sentry/types': 8.55.0 - '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 + '@storm-software/config': 1.137.72(zod@3.25.76) + '@storm-software/config-tools': 1.190.40(zod@3.25.76) pino: 9.4.0 pino-loki: 2.3.1 pino-pretty: 11.2.2 @@ -26711,21 +28064,21 @@ snapshots: - magicast - supports-color - '@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0))': + '@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0))': dependencies: - '@storm-software/tsdoc': 0.13.71(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0) + '@storm-software/tsdoc': 0.13.71(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0) optionalDependencies: - '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) + '@microsoft/api-extractor': 7.58.7(@types/node@20.9.0) '@microsoft/tsdoc': 0.16.0 - '@microsoft/tsdoc-config': 0.18.0 + '@microsoft/tsdoc-config': 0.18.1 - '@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0))': + '@storm-stack/tsdoc@0.5.0(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0)(@storm-software/tsdoc@0.13.71(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0))': dependencies: - '@storm-software/tsdoc': 0.13.71(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.0)(@microsoft/tsdoc@0.16.0) + '@storm-software/tsdoc': 0.13.71(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@microsoft/tsdoc-config@0.18.1)(@microsoft/tsdoc@0.16.0) optionalDependencies: - '@microsoft/api-extractor': 7.55.2(@types/node@25.0.3) + '@microsoft/api-extractor': 7.58.7(@types/node@25.0.3) '@microsoft/tsdoc': 0.16.0 - '@microsoft/tsdoc-config': 0.18.0 + '@microsoft/tsdoc-config': 0.18.1 '@storm-stack/unique-identifier@1.33.0': dependencies: @@ -26741,80 +28094,70 @@ snapshots: '@storybook/global@5.0.0': {} - '@storybook/icons@2.0.1(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/icons@2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@types/react': 19.2.7 - '@types/react-dom': 19.2.3(@types/react@19.2.7) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@stryke/capnp@0.11.24(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)': + '@stryke/capnp@0.11.24(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.4.3)': dependencies: - '@stryke/fs': 0.31.4(nx@22.3.1(@swc/core@1.7.26)) + '@stryke/fs': 0.31.4(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) '@stryke/path': 0.15.5 defu: 6.1.4 hex2dec: 1.1.2 nanotar: 0.2.0 - typescript: 5.9.3 - transitivePeerDependencies: - - magicast - - nx - - '@stryke/capnp@0.12.49(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)': - dependencies: - '@stryke/fs': 0.33.24(nx@22.3.1(@swc/core@1.7.26)) - '@stryke/path': 0.23.1 - defu: 6.1.4 - hex2dec: 1.1.2 - nanotar: 0.2.0 typescript: 5.3.3 transitivePeerDependencies: - magicast - nx + - zod - '@stryke/capnp@0.12.49(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)': + '@stryke/capnp@0.12.49(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.4.3)': dependencies: - '@stryke/fs': 0.33.24(nx@22.3.1(@swc/core@1.7.26)) + '@stryke/fs': 0.33.24(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) '@stryke/path': 0.23.1 defu: 6.1.4 hex2dec: 1.1.2 nanotar: 0.2.0 - typescript: 5.9.3 + typescript: 5.3.3 transitivePeerDependencies: - magicast - nx + - zod '@stryke/convert@0.6.28': {} - '@stryke/env@0.18.13(nx@22.3.1(@swc/core@1.7.26))': + '@stryke/env@0.18.13(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3)': dependencies: '@dotenvx/dotenvx': 1.35.0 '@stryke/convert': 0.6.28 - '@stryke/fs': 0.28.7(nx@22.3.1(@swc/core@1.7.26)) + '@stryke/fs': 0.28.7(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) '@stryke/path': 0.15.5 '@stryke/string-format': 0.11.0 defu: 6.1.4 transitivePeerDependencies: - magicast - nx + - zod - '@stryke/env@0.20.41(nx@22.3.1(@swc/core@1.7.26))': + '@stryke/env@0.20.41(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3)': dependencies: '@dotenvx/dotenvx': 1.35.0 '@stryke/convert': 0.6.28 - '@stryke/fs': 0.33.24(nx@22.3.1(@swc/core@1.7.26)) + '@stryke/fs': 0.33.24(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) '@stryke/path': 0.23.1 '@stryke/string-format': 0.12.28 defu: 6.1.4 transitivePeerDependencies: - magicast - nx + - zod - '@stryke/fs@0.28.7(nx@22.3.1(@swc/core@1.7.26))': + '@stryke/fs@0.28.7(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3)': dependencies: '@antfu/install-pkg': 1.1.0 '@ltd/j-toml': 1.38.0 - '@storm-software/config-tools': 1.188.72 + '@storm-software/config-tools': 1.190.40(zod@4.4.3) '@stryke/convert': 0.6.28 '@stryke/json': 0.9.31 '@stryke/path': 0.15.5 @@ -26829,15 +28172,16 @@ snapshots: semver: 7.7.1 yaml: 2.8.2 optionalDependencies: - nx: 22.3.1(@swc/core@1.7.26) + nx: 22.7.5(@swc/core@1.7.26) transitivePeerDependencies: - magicast + - zod - '@stryke/fs@0.31.4(nx@22.3.1(@swc/core@1.7.26))': + '@stryke/fs@0.31.4(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3)': dependencies: '@antfu/install-pkg': 1.1.0 '@ltd/j-toml': 1.38.0 - '@storm-software/config-tools': 1.188.72 + '@storm-software/config-tools': 1.190.40(zod@4.4.3) '@stryke/convert': 0.6.28 '@stryke/json': 0.9.31 '@stryke/path': 0.15.5 @@ -26852,15 +28196,16 @@ snapshots: semver: 7.7.1 yaml: 2.8.2 optionalDependencies: - nx: 22.3.1(@swc/core@1.7.26) + nx: 22.7.5(@swc/core@1.7.26) transitivePeerDependencies: - magicast + - zod - '@stryke/fs@0.33.24(nx@22.3.1(@swc/core@1.7.26))': + '@stryke/fs@0.33.24(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3)': dependencies: '@antfu/install-pkg': 1.1.0 '@ltd/j-toml': 1.38.0 - '@storm-software/config-tools': 1.188.72 + '@storm-software/config-tools': 1.190.40(zod@4.4.3) '@stryke/convert': 0.6.28 '@stryke/helpers': 0.9.30 '@stryke/path': 0.23.1 @@ -26873,9 +28218,10 @@ snapshots: semver: 7.7.1 yaml: 2.8.2 optionalDependencies: - nx: 22.3.1(@swc/core@1.7.26) + nx: 22.7.5(@swc/core@1.7.26) transitivePeerDependencies: - magicast + - zod '@stryke/hash@0.12.30': dependencies: @@ -27012,7 +28358,6 @@ snapshots: '@svgr/babel-preset': 8.1.0(@babel/core@7.28.5) '@svgr/core': 8.1.0(typescript@5.3.3) '@svgr/hast-util-to-babel-ast': 8.0.0 - '@types/svg-parser': 2.0.6 svg-parser: 2.0.4 transitivePeerDependencies: - supports-color @@ -27182,26 +28527,12 @@ snapshots: dependencies: tslib: 2.8.1 - '@types/accepts@1.3.7': - dependencies: - '@types/node': 20.9.0 - '@types/argparse@1.0.38': {} '@types/aria-query@5.0.4': {} '@types/aws-lambda@8.10.143': {} - '@types/babel-generator@6.25.8': - dependencies: - '@types/babel-types': 7.0.16 - - '@types/babel-plugin-macros@3.1.3': - dependencies: - '@types/babel__core': 7.20.5 - - '@types/babel-types@7.0.16': {} - '@types/babel__core@7.20.5': dependencies: '@babel/parser': 7.28.5 @@ -27223,81 +28554,35 @@ snapshots: dependencies: '@babel/types': 7.28.5 - '@types/body-parser@1.19.6': - dependencies: - '@types/connect': 3.4.38 - '@types/node': 20.9.0 - - '@types/boolbase@1.0.3': {} - - '@types/brace-expansion@1.1.2': {} - - '@types/braces@3.0.5': {} - - '@types/btoa@1.2.5': - dependencies: - '@types/node': 20.9.0 - '@types/bunyan@1.8.9': dependencies: - '@types/node': 25.0.3 - - '@types/caniuse-api@3.0.6': {} + '@types/node': 20.9.0 '@types/chai@5.2.3': dependencies: '@types/deep-eql': 4.0.2 assertion-error: 2.0.1 - '@types/chardet@1.0.0': - dependencies: - chardet: 2.1.1 - '@types/cli-progress@3.11.6': dependencies: - '@types/node': 25.0.3 - - '@types/co@4.6.6': {} + '@types/node': 20.9.0 '@types/concat-stream@2.0.3': dependencies: - '@types/node': 22.19.3 + '@types/node': 20.9.0 '@types/connect@3.4.36': dependencies: - '@types/node': 25.0.3 + '@types/node': 20.9.0 '@types/connect@3.4.38': dependencies: '@types/node': 20.9.0 - '@types/content-disposition@0.5.9': {} - '@types/conventional-commits-parser@5.0.2': dependencies: '@types/node': 20.9.0 - '@types/convert-source-map@2.0.3': {} - - '@types/cookies@0.9.2': - dependencies: - '@types/connect': 3.4.38 - '@types/express': 5.0.6 - '@types/keygrip': 1.0.6 - '@types/node': 20.9.0 - - '@types/css-tree@1.0.7': {} - - '@types/css-tree@2.3.11': {} - - '@types/csso@4.2.0': - dependencies: - '@types/css-tree': 2.3.11 - - '@types/csso@5.0.4': - dependencies: - '@types/css-tree': 2.3.11 - '@types/d3-array@3.2.2': {} '@types/d3-axis@3.0.6': @@ -27426,16 +28711,12 @@ snapshots: '@types/eslint': 9.6.1 '@types/estree': 1.0.8 - '@types/eslint-visitor-keys@3.3.2': - dependencies: - eslint-visitor-keys: 4.2.1 - '@types/eslint@9.6.1': dependencies: '@types/estree': 1.0.8 '@types/json-schema': 7.0.15 - '@types/esprima@4.0.3': + '@types/esquery@1.5.4': dependencies: '@types/estree': 1.0.8 @@ -27445,108 +28726,38 @@ snapshots: '@types/estree@1.0.8': {} - '@types/express-serve-static-core@5.1.0': - dependencies: - '@types/node': 20.9.0 - '@types/qs': 6.14.0 - '@types/range-parser': 1.2.7 - '@types/send': 1.2.1 - - '@types/express@5.0.6': - dependencies: - '@types/body-parser': 1.19.6 - '@types/express-serve-static-core': 5.1.0 - '@types/serve-static': 2.2.0 - - '@types/fb-watchman@2.0.6': - dependencies: - '@types/node': 20.9.0 - - '@types/file-entry-cache@5.0.4': - dependencies: - '@types/node': 20.9.0 - - '@types/fs-extra@9.0.6': - dependencies: - '@types/node': 20.9.0 + '@types/estree@1.0.9': {} '@types/geojson@7946.0.16': {} - '@types/glob-parent@5.1.3': {} - - '@types/glob-to-regexp@0.4.4': {} - - '@types/graceful-fs@4.1.9': - dependencies: - '@types/node': 20.9.0 - '@types/hast@3.0.4': dependencies: '@types/unist': 3.0.3 - '@types/http-assert@1.5.6': {} - '@types/http-cache-semantics@4.0.4': {} - '@types/http-errors@2.0.5': {} - '@types/http-proxy@1.17.17': dependencies: '@types/node': 20.9.0 '@types/is-empty@1.2.3': {} - '@types/is-glob@4.0.4': {} - '@types/istanbul-lib-coverage@2.0.6': {} - '@types/istanbul-lib-instrument@1.7.8': - dependencies: - '@types/babel-generator': 6.25.8 - '@types/babel-types': 7.0.16 - '@types/istanbul-lib-coverage': 2.0.6 - source-map: 0.6.1 - '@types/istanbul-lib-report@3.0.3': dependencies: '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-lib-source-maps@4.0.4': - dependencies: - '@types/istanbul-lib-coverage': 2.0.6 - source-map: 0.6.1 - '@types/istanbul-reports@3.0.4': dependencies: '@types/istanbul-lib-report': 3.0.3 - '@types/js-yaml@3.12.10': {} - - '@types/js-yaml@4.0.9': {} - '@types/json-schema@7.0.15': {} '@types/json5@0.0.29': {} '@types/katex@0.16.7': {} - '@types/keygrip@1.0.6': {} - - '@types/koa-compose@3.2.9': - dependencies: - '@types/koa': 2.15.0 - - '@types/koa@2.15.0': - dependencies: - '@types/accepts': 1.3.7 - '@types/content-disposition': 0.5.9 - '@types/cookies': 0.9.2 - '@types/http-assert': 1.5.6 - '@types/http-errors': 2.0.5 - '@types/keygrip': 1.0.6 - '@types/koa-compose': 3.2.9 - '@types/node': 20.9.0 - '@types/less@3.0.8': {} '@types/lodash@4.17.21': {} @@ -27560,49 +28771,25 @@ snapshots: '@types/unist': 3.0.3 '@types/memcached@2.2.10': - dependencies: - '@types/node': 25.0.3 - - '@types/merge-stream@1.1.5': dependencies: '@types/node': 20.9.0 - '@types/merge2@1.4.4': - dependencies: - '@types/node': 20.9.0 - - '@types/micromatch@4.0.10': - dependencies: - '@types/braces': 3.0.5 - - '@types/micromatch@4.0.9': - dependencies: - '@types/braces': 3.0.5 - - '@types/mime-types@2.1.4': {} - '@types/ms@2.1.0': {} '@types/mute-stream@0.0.4': - dependencies: - '@types/node': 22.19.3 - - '@types/mysql@2.15.26': - dependencies: - '@types/node': 25.0.3 - - '@types/natural-compare@1.4.3': {} - - '@types/node-notifier@8.0.5': dependencies: '@types/node': 20.9.0 - '@types/node-schedule@2.1.7': + '@types/mysql@2.15.26': dependencies: '@types/node': 20.9.0 '@types/node@15.14.9': {} + '@types/node@20.19.42': + dependencies: + undici-types: 6.21.0 + '@types/node@20.9.0': dependencies: undici-types: 5.26.5 @@ -27614,6 +28801,7 @@ snapshots: '@types/node@25.0.3': dependencies: undici-types: 7.16.0 + optional: true '@types/normalize-package-data@2.4.4': {} @@ -27625,26 +28813,18 @@ snapshots: '@types/pg@8.6.1': dependencies: - '@types/node': 25.0.3 + '@types/node': 20.9.0 pg-protocol: 1.10.3 pg-types: 2.2.0 - '@types/picomatch@4.0.2': {} - '@types/pluralize@0.0.33': {} - '@types/prettier-linter-helpers@1.0.4': {} - '@types/prettier@3.0.0': dependencies: - prettier: 3.7.4 + prettier: 3.8.3 '@types/prop-types@15.7.15': {} - '@types/qs@6.14.0': {} - - '@types/range-parser@1.2.7': {} - '@types/react-dom@18.3.7(@types/react@18.3.27)': dependencies: '@types/react': 18.3.27 @@ -27653,14 +28833,6 @@ snapshots: dependencies: '@types/react': 19.2.7 - '@types/react-is@17.0.7': - dependencies: - '@types/react': 17.0.90 - - '@types/react-is@18.3.1': - dependencies: - '@types/react': 18.3.27 - '@types/react-transition-group@4.4.12(@types/react@17.0.4)': dependencies: '@types/react': 17.0.4 @@ -27671,12 +28843,6 @@ snapshots: '@types/scheduler': 0.26.0 csstype: 3.2.3 - '@types/react@17.0.90': - dependencies: - '@types/prop-types': 15.7.15 - '@types/scheduler': 0.16.8 - csstype: 3.2.3 - '@types/react@18.3.27': dependencies: '@types/prop-types': 15.7.15 @@ -27686,41 +28852,20 @@ snapshots: dependencies: csstype: 3.2.3 - '@types/require-from-string@1.2.3': {} - '@types/resolve@1.20.2': {} - '@types/resolve@1.20.6': {} - '@types/retry@0.12.2': {} '@types/sass@1.45.0': dependencies: sass: 1.97.0 - '@types/sax@1.2.7': - dependencies: - '@types/node': 20.9.0 - - '@types/scheduler@0.16.8': {} - '@types/scheduler@0.26.0': {} '@types/semver@7.5.8': {} '@types/semver@7.7.1': {} - '@types/send@1.2.1': - dependencies: - '@types/node': 20.9.0 - - '@types/serialize-javascript@5.0.4': {} - - '@types/serve-static@2.2.0': - dependencies: - '@types/http-errors': 2.0.5 - '@types/node': 20.9.0 - '@types/shimmer@1.2.0': {} '@types/sinon@21.0.0': @@ -27729,10 +28874,6 @@ snapshots: '@types/sinonjs__fake-timers@15.0.1': {} - '@types/source-map-support@0.5.10': - dependencies: - source-map: 0.6.1 - '@types/stack-utils@2.0.3': {} '@types/stylus@0.48.43': @@ -27741,15 +28882,9 @@ snapshots: '@types/supports-color@8.1.3': {} - '@types/svg-parser@2.0.6': {} - - '@types/svgo@2.6.4': - dependencies: - '@types/node': 20.9.0 - '@types/tedious@4.0.14': dependencies: - '@types/node': 25.0.3 + '@types/node': 20.9.0 '@types/unist@2.0.11': {} @@ -27759,41 +28894,33 @@ snapshots: '@types/wrap-ansi@3.0.0': {} - '@types/write-file-atomic@4.0.3': - dependencies: - '@types/node': 20.9.0 - '@types/ws@8.18.1': dependencies: '@types/node': 20.9.0 - '@types/ws@8.5.12': - dependencies: - '@types/node': 20.9.0 - '@types/yargs-parser@21.0.3': {} '@types/yargs@17.0.35': dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)': + '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3))(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 6.21.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/parser': 6.21.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3) '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/type-utils': 6.21.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) - '@typescript-eslint/utils': 6.21.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/type-utils': 6.21.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3) + '@typescript-eslint/utils': 6.21.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3) '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.4.3(supports-color@8.1.1) - eslint: 9.39.2(jiti@2.6.1) + eslint: 9.39.2(jiti@2.7.0) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 semver: 7.7.3 - ts-api-utils: 1.4.3(typescript@5.9.3) + ts-api-utils: 1.4.3(typescript@5.3.3) optionalDependencies: - typescript: 5.9.3 + typescript: 5.3.3 transitivePeerDependencies: - supports-color @@ -27813,16 +28940,16 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@6.21.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)': + '@typescript-eslint/parser@6.21.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3)': dependencies: '@typescript-eslint/scope-manager': 6.21.0 '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.3) + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.3.3) '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.4.3(supports-color@8.1.1) - eslint: 9.39.2(jiti@2.6.1) + eslint: 9.39.2(jiti@2.7.0) optionalDependencies: - typescript: 5.9.3 + typescript: 5.3.3 transitivePeerDependencies: - supports-color @@ -27847,15 +28974,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.50.0(typescript@5.9.3)': - dependencies: - '@typescript-eslint/tsconfig-utils': 8.50.0(typescript@5.9.3) - '@typescript-eslint/types': 8.50.0 - debug: 4.4.3(supports-color@8.1.1) - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/scope-manager@6.21.0': dependencies: '@typescript-eslint/types': 6.21.0 @@ -27875,19 +28993,15 @@ snapshots: dependencies: typescript: 5.3.3 - '@typescript-eslint/tsconfig-utils@8.50.0(typescript@5.9.3)': - dependencies: - typescript: 5.9.3 - - '@typescript-eslint/type-utils@6.21.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)': + '@typescript-eslint/type-utils@6.21.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3)': dependencies: - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.3) - '@typescript-eslint/utils': 6.21.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.3.3) + '@typescript-eslint/utils': 6.21.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3) debug: 4.4.3(supports-color@8.1.1) - eslint: 9.39.2(jiti@2.6.1) - ts-api-utils: 1.4.3(typescript@5.9.3) + eslint: 9.39.2(jiti@2.7.0) + ts-api-utils: 1.4.3(typescript@5.3.3) optionalDependencies: - typescript: 5.9.3 + typescript: 5.3.3 transitivePeerDependencies: - supports-color @@ -27909,7 +29023,7 @@ snapshots: '@typescript-eslint/types@8.50.0': {} - '@typescript-eslint/typescript-estree@6.21.0(typescript@5.9.3)': + '@typescript-eslint/typescript-estree@6.21.0(typescript@5.3.3)': dependencies: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/visitor-keys': 6.21.0 @@ -27918,13 +29032,13 @@ snapshots: is-glob: 4.0.3 minimatch: 9.0.3 semver: 7.7.3 - ts-api-utils: 1.4.3(typescript@5.9.3) + ts-api-utils: 1.4.3(typescript@5.3.3) optionalDependencies: - typescript: 5.9.3 + typescript: 5.3.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@7.18.0(typescript@5.9.3)': + '@typescript-eslint/typescript-estree@7.18.0(typescript@5.3.3)': dependencies: '@typescript-eslint/types': 7.18.0 '@typescript-eslint/visitor-keys': 7.18.0 @@ -27933,9 +29047,9 @@ snapshots: is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.7.3 - ts-api-utils: 1.4.3(typescript@5.9.3) + ts-api-utils: 1.4.3(typescript@5.3.3) optionalDependencies: - typescript: 5.9.3 + typescript: 5.3.3 transitivePeerDependencies: - supports-color @@ -27954,42 +29068,27 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.50.0(typescript@5.9.3)': - dependencies: - '@typescript-eslint/project-service': 8.50.0(typescript@5.9.3) - '@typescript-eslint/tsconfig-utils': 8.50.0(typescript@5.9.3) - '@typescript-eslint/types': 8.50.0 - '@typescript-eslint/visitor-keys': 8.50.0 - debug: 4.4.3(supports-color@8.1.1) - minimatch: 9.0.5 - semver: 7.7.3 - tinyglobby: 0.2.15 - ts-api-utils: 2.1.0(typescript@5.9.3) - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/utils@6.21.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)': + '@typescript-eslint/utils@6.21.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3)': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2(jiti@2.6.1)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2(jiti@2.7.0)) '@types/json-schema': 7.0.15 '@types/semver': 7.7.1 '@typescript-eslint/scope-manager': 6.21.0 '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.3) - eslint: 9.39.2(jiti@2.6.1) + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.3.3) + eslint: 9.39.2(jiti@2.7.0) semver: 7.7.3 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@7.18.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)': + '@typescript-eslint/utils@7.18.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3)': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2(jiti@2.6.1)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2(jiti@2.7.0)) '@typescript-eslint/scope-manager': 7.18.0 '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.3) - eslint: 9.39.2(jiti@2.6.1) + '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.3.3) + eslint: 9.39.2(jiti@2.7.0) transitivePeerDependencies: - supports-color - typescript @@ -28005,14 +29104,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)': + '@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3)': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2(jiti@2.6.1)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2(jiti@2.7.0)) '@typescript-eslint/scope-manager': 8.50.0 '@typescript-eslint/types': 8.50.0 - '@typescript-eslint/typescript-estree': 8.50.0(typescript@5.9.3) - eslint: 9.39.2(jiti@2.6.1) - typescript: 5.9.3 + '@typescript-eslint/typescript-estree': 8.50.0(typescript@5.3.3) + eslint: 9.39.2(jiti@2.7.0) + typescript: 5.3.3 transitivePeerDependencies: - supports-color @@ -28031,6 +29130,14 @@ snapshots: '@typescript-eslint/types': 8.50.0 eslint-visitor-keys: 4.2.1 + '@typespec/ts-http-runtime@0.3.6': + dependencies: + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.6 + tslib: 2.8.1 + transitivePeerDependencies: + - supports-color + '@ungap/structured-clone@1.3.0': {} '@unocss/config@66.5.10': @@ -28335,12 +29442,55 @@ snapshots: loupe: 3.2.1 tinyrainbow: 2.0.0 - '@vscode/vsce@2.21.1': - dependencies: - azure-devops-node-api: 11.2.0 + '@vscode/vsce-sign-alpine-arm64@2.0.6': + optional: true + + '@vscode/vsce-sign-alpine-x64@2.0.6': + optional: true + + '@vscode/vsce-sign-darwin-arm64@2.0.6': + optional: true + + '@vscode/vsce-sign-darwin-x64@2.0.6': + optional: true + + '@vscode/vsce-sign-linux-arm64@2.0.6': + optional: true + + '@vscode/vsce-sign-linux-arm@2.0.6': + optional: true + + '@vscode/vsce-sign-linux-x64@2.0.6': + optional: true + + '@vscode/vsce-sign-win32-arm64@2.0.6': + optional: true + + '@vscode/vsce-sign-win32-x64@2.0.6': + optional: true + + '@vscode/vsce-sign@2.0.9': + optionalDependencies: + '@vscode/vsce-sign-alpine-arm64': 2.0.6 + '@vscode/vsce-sign-alpine-x64': 2.0.6 + '@vscode/vsce-sign-darwin-arm64': 2.0.6 + '@vscode/vsce-sign-darwin-x64': 2.0.6 + '@vscode/vsce-sign-linux-arm': 2.0.6 + '@vscode/vsce-sign-linux-arm64': 2.0.6 + '@vscode/vsce-sign-linux-x64': 2.0.6 + '@vscode/vsce-sign-win32-arm64': 2.0.6 + '@vscode/vsce-sign-win32-x64': 2.0.6 + + '@vscode/vsce@2.32.0': + dependencies: + '@azure/identity': 4.13.1 + '@vscode/vsce-sign': 2.0.9 + azure-devops-node-api: 12.5.0 chalk: 2.4.2 cheerio: 1.1.2 + cockatiel: 3.2.1 commander: 6.2.1 + form-data: 4.0.5 glob: 7.2.3 hosted-git-info: 4.1.0 jsonc-parser: 3.3.1 @@ -28359,6 +29509,8 @@ snapshots: yazl: 2.5.1 optionalDependencies: keytar: 7.9.0 + transitivePeerDependencies: + - supports-color '@vue/reactivity@3.5.26': dependencies: @@ -28473,12 +29625,6 @@ snapshots: '@yarnpkg/lockfile@1.1.0': {} - '@yarnpkg/parsers@3.0.2': - dependencies: - '@types/js-yaml': 3.12.10 - js-yaml: 3.14.2 - tslib: 2.8.1 - '@zkochan/js-yaml@0.0.7': dependencies: argparse: 2.0.1 @@ -28527,7 +29673,11 @@ snapshots: acorn@8.15.0: {} - address@1.2.2: {} + acorn@8.16.0: {} + + address@2.0.3: {} + + adm-zip@0.5.10: {} adm-zip@0.5.16: {} @@ -28549,6 +29699,10 @@ snapshots: optionalDependencies: ajv: 8.13.0 + ajv-draft-04@1.0.0(ajv@8.18.0): + optionalDependencies: + ajv: 8.18.0 + ajv-formats@2.1.1(ajv@8.17.1): optionalDependencies: ajv: 8.17.1 @@ -28561,9 +29715,9 @@ snapshots: optionalDependencies: ajv: 8.17.1 - ajv-keywords@3.5.2(ajv@6.12.6): - dependencies: - ajv: 6.12.6 + ajv-formats@3.0.1(ajv@8.18.0): + optionalDependencies: + ajv: 8.18.0 ajv-keywords@5.1.0(ajv@8.17.1): dependencies: @@ -28586,7 +29740,6 @@ snapshots: ajv@8.13.0: dependencies: - '@types/require-from-string': 1.2.3 fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 @@ -28599,6 +29752,13 @@ snapshots: json-schema-traverse: 1.0.0 require-from-string: 2.0.2 + ajv@8.18.0: + dependencies: + fast-deep-equal: 3.1.3 + fast-uri: 3.1.0 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + anafanafo@2.0.0: dependencies: char-width-table-consumer: 1.0.0 @@ -28775,11 +29935,6 @@ snapshots: astro-eslint-parser@1.2.2: dependencies: '@astrojs/compiler': 2.13.0 - '@types/debug': 4.1.12 - '@types/eslint-scope': 3.7.7 - '@types/eslint-visitor-keys': 3.3.2 - '@types/is-glob': 4.0.4 - '@types/semver': 7.7.1 '@typescript-eslint/scope-manager': 8.50.0 '@typescript-eslint/types': 8.50.0 astrojs-compiler-sync: 1.1.1(@astrojs/compiler@2.13.0) @@ -28801,7 +29956,7 @@ snapshots: async-function@1.0.0: {} - async-mutex@0.4.1: + async-mutex@0.5.0: dependencies: tslib: 2.8.1 @@ -28851,6 +30006,14 @@ snapshots: transitivePeerDependencies: - debug + axios@1.16.0: + dependencies: + follow-redirects: 1.16.0 + form-data: 4.0.5 + proxy-from-env: 2.1.0 + transitivePeerDependencies: + - debug + axios@1.8.2: dependencies: follow-redirects: 1.15.11(debug@4.4.3) @@ -28861,7 +30024,7 @@ snapshots: axobject-query@4.1.0: {} - azure-devops-node-api@11.2.0: + azure-devops-node-api@12.5.0: dependencies: tunnel: 0.0.6 typed-rest-client: 1.8.11 @@ -28882,7 +30045,6 @@ snapshots: '@babel/core': 7.28.5 '@jest/transform': 30.0.5 '@types/babel__core': 7.20.5 - '@types/graceful-fs': 4.1.9 babel-plugin-istanbul: 7.0.1 babel-preset-jest: 30.0.1(@babel/core@7.28.5) chalk: 4.1.2 @@ -28896,7 +30058,6 @@ snapshots: '@babel/core': 7.28.5 '@jest/transform': 30.2.0 '@types/babel__core': 7.20.5 - '@types/graceful-fs': 4.1.9 babel-plugin-istanbul: 7.0.1 babel-preset-jest: 30.2.0(@babel/core@7.28.5) chalk: 4.1.2 @@ -29025,6 +30186,8 @@ snapshots: balanced-match@1.0.2: {} + balanced-match@4.0.3: {} + bare-events@2.8.2: {} base64-arraybuffer@0.1.4: {} @@ -29047,18 +30210,14 @@ snapshots: before-after-hook@4.0.0: {} - bentocache@1.0.0-beta.7(tslib@2.8.1): + bentocache@1.6.1: dependencies: - '@paralleldrive/cuid2': 2.3.1 - '@poppinss/utils': 6.10.1 - '@sindresorhus/chunkify': 1.0.0 - async-mutex: 0.4.1 - hexoid: 1.0.0 - lru-cache: 10.4.3 - p-timeout: 6.1.4 - typescript-log: 2.0.0(tslib@2.8.1) - transitivePeerDependencies: - - tslib + '@boringnode/bus': 0.9.0 + '@julr/utils': 1.9.0 + '@poppinss/exception': 1.2.3 + async-mutex: 0.5.0 + lru-cache: 11.2.4 + p-timeout: 7.0.1 big-integer@1.6.52: {} @@ -29142,6 +30301,10 @@ snapshots: dependencies: balanced-match: 1.0.2 + brace-expansion@5.0.6: + dependencies: + balanced-match: 4.0.3 + braces@3.0.3: dependencies: fill-range: 7.1.1 @@ -29290,7 +30453,7 @@ snapshots: defu: 6.1.4 dotenv: 16.6.1 giget: 1.2.5 - jiti: 2.4.2 + jiti: 2.6.1 mlly: 1.8.0 ohash: 2.0.11 pathe: 2.0.3 @@ -29665,6 +30828,8 @@ snapshots: co@4.6.0: {} + cockatiel@3.2.1: {} + code-block-writer@12.0.0: {} code-block-writer@13.0.3: {} @@ -29819,16 +30984,17 @@ snapshots: dependencies: compare-func: 2.0.0 - conventional-changelog-storm-software@0.3.72: + conventional-changelog-storm-software@0.3.72(zod@4.4.3): dependencies: '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 + '@storm-software/config-tools': 1.190.40(zod@4.4.3) compare-func: 2.0.0 conventional-changelog-conventionalcommits: 9.1.0 conventional-changelog-writer: 8.2.0 defu: 6.1.4 transitivePeerDependencies: - magicast + - zod conventional-changelog-writer@8.2.0: dependencies: @@ -29899,8 +31065,6 @@ snapshots: cosmiconfig@8.3.6(typescript@5.3.3): dependencies: - '@types/js-yaml': 4.0.9 - '@types/parse-json': 4.0.2 import-fresh: 3.3.1 js-yaml: 4.1.1 parse-json: 5.2.0 @@ -30042,8 +31206,6 @@ snapshots: '@cspell/cspell-types': 8.19.4 '@cspell/dynamic-import': 8.19.4 '@cspell/url': 8.19.4 - '@types/file-entry-cache': 5.0.4 - '@types/semver': 7.7.1 chalk: 5.6.2 chalk-template: 1.1.2 commander: 13.1.0 @@ -30063,10 +31225,6 @@ snapshots: color-name: 1.1.4 css-unit-converter: 1.1.2 - css-declaration-sorter@6.4.1(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - css-declaration-sorter@7.3.0(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -30078,15 +31236,6 @@ snapshots: domutils: 1.5.1 nth-check: 1.0.2 - css-select@4.3.0: - dependencies: - '@types/boolbase': 1.0.3 - boolbase: 1.0.0 - css-what: 6.2.2 - domhandler: 4.3.1 - domutils: 2.8.0 - nth-check: 2.1.1 - css-select@5.2.2: dependencies: boolbase: 1.0.0 @@ -30095,11 +31244,6 @@ snapshots: domutils: 3.2.2 nth-check: 2.1.1 - css-tree@1.1.3: - dependencies: - mdn-data: 2.0.14 - source-map: 0.6.1 - css-tree@2.2.1: dependencies: mdn-data: 2.0.28 @@ -30130,39 +31274,6 @@ snapshots: cssesc@3.0.0: {} - cssnano-preset-default@5.2.14(postcss@8.5.6): - dependencies: - css-declaration-sorter: 6.4.1(postcss@8.5.6) - cssnano-utils: 3.1.0(postcss@8.5.6) - postcss: 8.5.6 - postcss-calc: 8.2.4(postcss@8.5.6) - postcss-colormin: 5.3.1(postcss@8.5.6) - postcss-convert-values: 5.1.3(postcss@8.5.6) - postcss-discard-comments: 5.1.2(postcss@8.5.6) - postcss-discard-duplicates: 5.1.0(postcss@8.5.6) - postcss-discard-empty: 5.1.1(postcss@8.5.6) - postcss-discard-overridden: 5.1.0(postcss@8.5.6) - postcss-merge-longhand: 5.1.7(postcss@8.5.6) - postcss-merge-rules: 5.1.4(postcss@8.5.6) - postcss-minify-font-values: 5.1.0(postcss@8.5.6) - postcss-minify-gradients: 5.1.1(postcss@8.5.6) - postcss-minify-params: 5.1.4(postcss@8.5.6) - postcss-minify-selectors: 5.2.1(postcss@8.5.6) - postcss-normalize-charset: 5.1.0(postcss@8.5.6) - postcss-normalize-display-values: 5.1.0(postcss@8.5.6) - postcss-normalize-positions: 5.1.1(postcss@8.5.6) - postcss-normalize-repeat-style: 5.1.1(postcss@8.5.6) - postcss-normalize-string: 5.1.0(postcss@8.5.6) - postcss-normalize-timing-functions: 5.1.0(postcss@8.5.6) - postcss-normalize-unicode: 5.1.1(postcss@8.5.6) - postcss-normalize-url: 5.1.0(postcss@8.5.6) - postcss-normalize-whitespace: 5.1.1(postcss@8.5.6) - postcss-ordered-values: 5.1.3(postcss@8.5.6) - postcss-reduce-initial: 5.1.2(postcss@8.5.6) - postcss-reduce-transforms: 5.1.0(postcss@8.5.6) - postcss-svgo: 5.1.0(postcss@8.5.6) - postcss-unique-selectors: 5.1.1(postcss@8.5.6) - cssnano-preset-default@7.0.10(postcss@8.5.6): dependencies: browserslist: 4.28.1 @@ -30207,31 +31318,16 @@ snapshots: cssnano-preset-simple: 2.0.0(postcss@8.2.13) postcss: 8.2.13 - cssnano-utils@3.1.0(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - cssnano-utils@5.0.1(postcss@8.5.6): dependencies: postcss: 8.5.6 - cssnano@5.1.15(postcss@8.5.6): - dependencies: - cssnano-preset-default: 5.2.14(postcss@8.5.6) - lilconfig: 2.1.0 - postcss: 8.5.6 - yaml: 1.10.2 - cssnano@7.1.2(postcss@8.5.6): dependencies: cssnano-preset-default: 7.0.10(postcss@8.5.6) lilconfig: 3.1.3 postcss: 8.5.6 - csso@4.2.0: - dependencies: - css-tree: 1.1.3 - csso@5.0.5: dependencies: css-tree: 2.2.1 @@ -30313,6 +31409,8 @@ snapshots: date-fns@4.1.0: {} + date-fns@4.4.0: {} + date-format@4.0.14: {} dateformat@4.6.3: {} @@ -30361,9 +31459,7 @@ snapshots: dependencies: mimic-response: 3.1.0 - dedent@1.7.1(@types/babel-plugin-macros@3.1.3)(babel-plugin-macros@3.1.0): - dependencies: - '@types/babel-plugin-macros': 3.1.3 + dedent@1.7.1(babel-plugin-macros@3.1.0): optionalDependencies: babel-plugin-macros: 3.1.0 @@ -30415,6 +31511,8 @@ snapshots: defu@6.1.4: {} + defu@6.1.7: {} + delayed-stream@1.0.0: {} delegates@1.0.0: {} @@ -30446,12 +31544,9 @@ snapshots: detect-newline@4.0.1: {} - detect-port@1.6.1: + detect-port@2.1.0: dependencies: - address: 1.2.2 - debug: 4.4.3(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color + address: 2.0.3 detective@5.2.1: dependencies: @@ -30511,12 +31606,6 @@ snapshots: domelementtype: 1.3.1 entities: 1.1.2 - dom-serializer@1.4.1: - dependencies: - domelementtype: 2.3.0 - domhandler: 4.3.1 - entities: 2.2.0 - dom-serializer@2.0.0: dependencies: domelementtype: 2.3.0 @@ -30535,10 +31624,6 @@ snapshots: dependencies: domelementtype: 1.3.1 - domhandler@4.3.1: - dependencies: - domelementtype: 2.3.0 - domhandler@5.0.3: dependencies: domelementtype: 2.3.0 @@ -30553,12 +31638,6 @@ snapshots: dom-serializer: 0.1.1 domelementtype: 1.3.1 - domutils@2.8.0: - dependencies: - dom-serializer: 1.4.1 - domelementtype: 2.3.0 - domhandler: 4.3.1 - domutils@3.2.2: dependencies: dom-serializer: 2.0.0 @@ -30574,7 +31653,7 @@ snapshots: dependencies: is-obj: 2.0.0 - dotenv-expand@11.0.7: + dotenv-expand@12.0.3: dependencies: dotenv: 16.6.1 @@ -30640,6 +31719,8 @@ snapshots: dependencies: jake: 10.9.4 + ejs@5.0.1: {} + electron-to-chromium@1.5.267: {} elliptic@6.6.1: @@ -30668,8 +31749,6 @@ snapshots: emojis-list@2.1.0: {} - emojis-list@3.0.0: {} - empathic@2.0.0: {} encodeurl@1.0.2: {} @@ -30741,8 +31820,6 @@ snapshots: entities@2.1.0: {} - entities@2.2.0: {} - entities@4.5.0: {} entities@6.0.1: {} @@ -30753,6 +31830,8 @@ snapshots: err-code@2.0.3: {} + error-causes@3.0.2: {} + error-ex@1.3.4: dependencies: is-arrayish: 0.2.1 @@ -30843,6 +31922,8 @@ snapshots: es-toolkit@1.43.0: {} + es-toolkit@1.47.0: {} + es6-object-assign@1.1.0: {} es6-promise@4.2.8: {} @@ -30874,6 +31955,12 @@ snapshots: picomatch: 2.3.1 yargs: 17.7.2 + esbuild-visualizer@0.7.0: + dependencies: + open: 8.4.2 + picomatch: 4.0.3 + yargs: 17.7.2 + esbuild@0.21.5: optionalDependencies: '@esbuild/aix-ppc64': 0.21.5 @@ -31013,16 +32100,16 @@ snapshots: '@eslint/compat': 1.4.1(eslint@9.39.2(jiti@2.4.2)) eslint: 9.39.2(jiti@2.4.2) - eslint-config-oclif-typescript@3.1.14(astro-eslint-parser@1.2.2)(eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2(jiti@2.6.1)))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3): + eslint-config-oclif-typescript@3.1.14(astro-eslint-parser@1.2.2)(eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2(jiti@2.7.0)))(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3): dependencies: - '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) - '@typescript-eslint/parser': 6.21.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) - eslint-config-xo-space: 0.35.0(eslint@9.39.2(jiti@2.6.1)) - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2(jiti@2.6.1)))(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1)) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)) - eslint-plugin-mocha: 10.5.0(eslint@9.39.2(jiti@2.6.1)) - eslint-plugin-n: 15.7.0(eslint@9.39.2(jiti@2.6.1)) - eslint-plugin-perfectionist: 2.11.0(astro-eslint-parser@1.2.2)(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3))(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3) + '@typescript-eslint/parser': 6.21.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3) + eslint-config-xo-space: 0.35.0(eslint@9.39.2(jiti@2.7.0)) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2(jiti@2.7.0)))(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.7.0)) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.7.0)) + eslint-plugin-mocha: 10.5.0(eslint@9.39.2(jiti@2.7.0)) + eslint-plugin-n: 15.7.0(eslint@9.39.2(jiti@2.7.0)) + eslint-plugin-perfectionist: 2.11.0(astro-eslint-parser@1.2.2)(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3) transitivePeerDependencies: - astro-eslint-parser - eslint @@ -31034,12 +32121,12 @@ snapshots: - typescript - vue-eslint-parser - eslint-config-oclif@5.2.2(eslint@9.39.2(jiti@2.6.1)): + eslint-config-oclif@5.2.2(eslint@9.39.2(jiti@2.7.0)): dependencies: - eslint-config-xo-space: 0.35.0(eslint@9.39.2(jiti@2.6.1)) - eslint-plugin-mocha: 10.5.0(eslint@9.39.2(jiti@2.6.1)) - eslint-plugin-n: 15.7.0(eslint@9.39.2(jiti@2.6.1)) - eslint-plugin-unicorn: 48.0.1(eslint@9.39.2(jiti@2.6.1)) + eslint-config-xo-space: 0.35.0(eslint@9.39.2(jiti@2.7.0)) + eslint-plugin-mocha: 10.5.0(eslint@9.39.2(jiti@2.7.0)) + eslint-plugin-n: 15.7.0(eslint@9.39.2(jiti@2.7.0)) + eslint-plugin-unicorn: 48.0.1(eslint@9.39.2(jiti@2.7.0)) transitivePeerDependencies: - eslint @@ -31047,28 +32134,26 @@ snapshots: dependencies: eslint: 9.39.2(jiti@2.4.2) - eslint-config-prettier@9.1.2(eslint@9.39.2(jiti@2.6.1)): + eslint-config-prettier@9.1.2(eslint@9.39.2(jiti@2.7.0)): dependencies: - eslint: 9.39.2(jiti@2.6.1) + eslint: 9.39.2(jiti@2.7.0) - eslint-config-xo-space@0.35.0(eslint@9.39.2(jiti@2.6.1)): + eslint-config-xo-space@0.35.0(eslint@9.39.2(jiti@2.7.0)): dependencies: - eslint: 9.39.2(jiti@2.6.1) - eslint-config-xo: 0.44.0(eslint@9.39.2(jiti@2.6.1)) + eslint: 9.39.2(jiti@2.7.0) + eslint-config-xo: 0.44.0(eslint@9.39.2(jiti@2.7.0)) - eslint-config-xo@0.44.0(eslint@9.39.2(jiti@2.6.1)): + eslint-config-xo@0.44.0(eslint@9.39.2(jiti@2.7.0)): dependencies: confusing-browser-globals: 1.0.11 - eslint: 9.39.2(jiti@2.6.1) + eslint: 9.39.2(jiti@2.7.0) eslint-flat-config-utils@2.1.4: dependencies: pathe: 2.0.3 - eslint-formatting-reporter@0.0.0(@types/eslint@9.6.1)(eslint@9.39.2(jiti@2.4.2)): + eslint-formatting-reporter@0.0.0(eslint@9.39.2(jiti@2.4.2)): dependencies: - '@types/eslint': 9.6.1 - '@types/prettier-linter-helpers': 1.0.4 eslint: 9.39.2(jiti@2.4.2) prettier-linter-helpers: 1.0.0 @@ -31087,19 +32172,19 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.10.1(eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2(jiti@2.6.1)))(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1)): + eslint-import-resolver-typescript@3.10.1(eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2(jiti@2.7.0)))(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.7.0)): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.4.3(supports-color@8.1.1) - eslint: 9.39.2(jiti@2.6.1) + eslint: 9.39.2(jiti@2.7.0) get-tsconfig: 4.13.0 is-bun-module: 2.0.0 stable-hash: 0.0.5 tinyglobby: 0.2.15 unrs-resolver: 1.11.1 optionalDependencies: - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)) - eslint-plugin-import-x: 4.16.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2(jiti@2.6.1)) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.7.0)) + eslint-plugin-import-x: 4.16.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2(jiti@2.7.0)) transitivePeerDependencies: - supports-color @@ -31114,7 +32199,7 @@ snapshots: acorn: 8.15.0 acorn-jsx: 5.3.2(acorn@8.15.0) eslint: 9.39.2(jiti@2.4.2) - espree: 10.4.0 + espree: 9.6.1 estree-util-visit: 2.0.0 remark-mdx: 3.1.1 remark-parse: 11.0.0 @@ -31133,14 +32218,14 @@ snapshots: dependencies: eslint: 9.39.2(jiti@2.4.2) - eslint-module-utils@2.12.1(@typescript-eslint/parser@6.21.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)): + eslint-module-utils@2.12.1(@typescript-eslint/parser@6.21.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.7.0)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) - eslint: 9.39.2(jiti@2.6.1) + '@typescript-eslint/parser': 6.21.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3) + eslint: 9.39.2(jiti@2.7.0) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2(jiti@2.6.1)))(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1)) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2(jiti@2.7.0)))(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.7.0)) transitivePeerDependencies: - supports-color @@ -31167,22 +32252,21 @@ snapshots: eslint: 9.39.2(jiti@2.4.2) eslint-compat-utils: 0.5.1(eslint@9.39.2(jiti@2.4.2)) - eslint-plugin-es@4.1.0(eslint@9.39.2(jiti@2.6.1)): + eslint-plugin-es@4.1.0(eslint@9.39.2(jiti@2.7.0)): dependencies: - eslint: 9.39.2(jiti@2.6.1) + eslint: 9.39.2(jiti@2.7.0) eslint-utils: 2.1.0 regexpp: 3.2.0 - eslint-plugin-format@1.1.0(@types/eslint@9.6.1)(eslint@9.39.2(jiti@2.4.2)): + eslint-plugin-format@1.1.0(eslint@9.39.2(jiti@2.4.2)): dependencies: '@dprint/formatter': 0.3.0 '@dprint/markdown': 0.17.8 '@dprint/toml': 0.6.4 - '@types/eslint': 9.6.1 eslint: 9.39.2(jiti@2.4.2) - eslint-formatting-reporter: 0.0.0(@types/eslint@9.6.1)(eslint@9.39.2(jiti@2.4.2)) + eslint-formatting-reporter: 0.0.0(eslint@9.39.2(jiti@2.4.2)) eslint-parser-plain: 0.1.1 - prettier: 3.7.4 + prettier: 3.8.3 synckit: 0.11.11 eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2(jiti@2.4.2)): @@ -31203,12 +32287,12 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2(jiti@2.6.1)): + eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.2(jiti@2.7.0)): dependencies: '@typescript-eslint/types': 8.50.0 comment-parser: 1.4.1 debug: 4.4.3(supports-color@8.1.1) - eslint: 9.39.2(jiti@2.6.1) + eslint: 9.39.2(jiti@2.7.0) eslint-import-context: 0.1.9(unrs-resolver@1.11.1) is-glob: 4.0.3 minimatch: 10.1.1 @@ -31216,19 +32300,18 @@ snapshots: stable-hash-x: 0.2.0 unrs-resolver: 1.11.1 optionalDependencies: - '@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3) eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color optional: true - eslint-plugin-import-zod@1.2.1(@types/eslint@9.6.1)(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3))(eslint@9.39.2(jiti@2.4.2)): + eslint-plugin-import-zod@1.2.1(@typescript-eslint/utils@8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3))(eslint@9.39.2(jiti@2.4.2)): dependencies: - '@types/eslint': 9.6.1 '@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3) eslint: 9.39.2(jiti@2.4.2) - eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.7.0)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -31237,9 +32320,9 @@ snapshots: array.prototype.flatmap: 1.3.3 debug: 3.2.7 doctrine: 2.1.0 - eslint: 9.39.2(jiti@2.6.1) + eslint: 9.39.2(jiti@2.7.0) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.1(@typescript-eslint/parser@6.21.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.6.1)) + eslint-module-utils: 2.12.1(@typescript-eslint/parser@6.21.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.2(jiti@2.7.0)) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -31251,7 +32334,7 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/parser': 6.21.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -31285,7 +32368,7 @@ snapshots: eslint: 9.39.2(jiti@2.4.2) eslint-compat-utils: 0.6.5(eslint@9.39.2(jiti@2.4.2)) eslint-json-compat-utils: 0.2.1(eslint@9.39.2(jiti@2.4.2))(jsonc-eslint-parser@2.4.2) - espree: 10.4.0 + espree: 9.6.1 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.2 natural-compare: 1.4.0 @@ -31342,19 +32425,19 @@ snapshots: - remark-lint-file-extension - supports-color - eslint-plugin-mocha@10.5.0(eslint@9.39.2(jiti@2.6.1)): + eslint-plugin-mocha@10.5.0(eslint@9.39.2(jiti@2.7.0)): dependencies: - eslint: 9.39.2(jiti@2.6.1) - eslint-utils: 3.0.0(eslint@9.39.2(jiti@2.6.1)) + eslint: 9.39.2(jiti@2.7.0) + eslint-utils: 3.0.0(eslint@9.39.2(jiti@2.7.0)) globals: 13.24.0 rambda: 7.5.0 - eslint-plugin-n@15.7.0(eslint@9.39.2(jiti@2.6.1)): + eslint-plugin-n@15.7.0(eslint@9.39.2(jiti@2.7.0)): dependencies: builtins: 5.1.0 - eslint: 9.39.2(jiti@2.6.1) - eslint-plugin-es: 4.1.0(eslint@9.39.2(jiti@2.6.1)) - eslint-utils: 3.0.0(eslint@9.39.2(jiti@2.6.1)) + eslint: 9.39.2(jiti@2.7.0) + eslint-plugin-es: 4.1.0(eslint@9.39.2(jiti@2.7.0)) + eslint-utils: 3.0.0(eslint@9.39.2(jiti@2.7.0)) ignore: 5.3.2 is-core-module: 2.16.1 minimatch: 3.1.2 @@ -31386,10 +32469,10 @@ snapshots: dependencies: comment-json: 4.5.0 - eslint-plugin-perfectionist@2.11.0(astro-eslint-parser@1.2.2)(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3): + eslint-plugin-perfectionist@2.11.0(astro-eslint-parser@1.2.2)(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3): dependencies: - '@typescript-eslint/utils': 7.18.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) - eslint: 9.39.2(jiti@2.6.1) + '@typescript-eslint/utils': 7.18.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3) + eslint: 9.39.2(jiti@2.7.0) minimatch: 9.0.5 natural-compare-lite: 1.4.0 optionalDependencies: @@ -31428,12 +32511,11 @@ snapshots: '@types/eslint': 9.6.1 eslint-config-prettier: 10.1.8(eslint@9.39.2(jiti@2.4.2)) - eslint-plugin-react-compiler@19.0.0-beta-21e868a-20250216(@types/eslint@9.6.1)(eslint@9.39.2(jiti@2.4.2)): + eslint-plugin-react-compiler@19.0.0-beta-21e868a-20250216(eslint@9.39.2(jiti@2.4.2)): dependencies: '@babel/core': 7.28.5 '@babel/parser': 7.28.5 '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.28.5) - '@types/eslint': 9.6.1 eslint: 9.39.2(jiti@2.4.2) hermes-parser: 0.25.1 zod: 3.25.76 @@ -31501,9 +32583,8 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-react-hooks@5.2.0(@types/eslint@9.6.1)(eslint@9.39.2(jiti@2.4.2)): + eslint-plugin-react-hooks@5.2.0(eslint@9.39.2(jiti@2.4.2)): dependencies: - '@types/eslint': 9.6.1 eslint: 9.39.2(jiti@2.4.2) eslint-plugin-react-naming-convention@1.53.1(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3): @@ -31594,10 +32675,9 @@ snapshots: dependencies: graphql: 15.10.1 - eslint-plugin-storybook@0.11.6(@types/eslint@9.6.1)(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3): + eslint-plugin-storybook@0.11.6(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3): dependencies: '@storybook/csf': 0.1.13 - '@types/eslint': 9.6.1 '@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3) eslint: 9.39.2(jiti@2.4.2) ts-dedent: 2.2.0 @@ -31620,13 +32700,13 @@ snapshots: '@microsoft/tsdoc': 0.15.1 '@microsoft/tsdoc-config': 0.17.1 - eslint-plugin-unicorn@48.0.1(eslint@9.39.2(jiti@2.6.1)): + eslint-plugin-unicorn@48.0.1(eslint@9.39.2(jiti@2.7.0)): dependencies: '@babel/helper-validator-identifier': 7.28.5 - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2(jiti@2.6.1)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2(jiti@2.7.0)) ci-info: 3.9.0 clean-regexp: 1.0.0 - eslint: 9.39.2(jiti@2.6.1) + eslint: 9.39.2(jiti@2.7.0) esquery: 1.6.0 indent-string: 4.0.0 is-builtin-module: 3.2.1 @@ -31696,9 +32776,9 @@ snapshots: dependencies: eslint-visitor-keys: 1.3.0 - eslint-utils@3.0.0(eslint@9.39.2(jiti@2.6.1)): + eslint-utils@3.0.0(eslint@9.39.2(jiti@2.7.0)): dependencies: - eslint: 9.39.2(jiti@2.6.1) + eslint: 9.39.2(jiti@2.7.0) eslint-visitor-keys: 2.1.0 eslint-visitor-keys@1.3.0: {} @@ -31793,9 +32873,9 @@ snapshots: transitivePeerDependencies: - supports-color - eslint@9.39.2(jiti@2.6.1): + eslint@9.39.2(jiti@2.7.0): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2(jiti@2.6.1)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.2(jiti@2.7.0)) '@eslint-community/regexpp': 4.12.2 '@eslint/config-array': 0.21.1 '@eslint/config-helpers': 0.4.2 @@ -31830,7 +32910,7 @@ snapshots: natural-compare: 1.4.0 optionator: 0.9.4 optionalDependencies: - jiti: 2.6.1 + jiti: 2.7.0 transitivePeerDependencies: - supports-color @@ -31852,6 +32932,10 @@ snapshots: dependencies: estraverse: 5.3.0 + esquery@1.7.0: + dependencies: + estraverse: 5.3.0 + esrecurse@4.3.0: dependencies: estraverse: 5.3.0 @@ -31867,8 +32951,6 @@ snapshots: '@types/estree-jsx': 1.0.5 '@types/unist': 3.0.3 - estree-walker@0.6.1: {} - estree-walker@2.0.2: {} estree-walker@3.0.3: @@ -32100,7 +33182,7 @@ snapshots: dependencies: '@types/chai': 5.2.3 '@types/lodash': 4.17.21 - '@types/node': 25.0.3 + '@types/node': 20.9.0 '@types/sinon': 21.0.0 lodash: 4.17.21 mock-stdin: 1.0.0 @@ -32126,9 +33208,6 @@ snapshots: dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 - '@types/glob-parent': 5.1.3 - '@types/merge2': 1.4.4 - '@types/micromatch': 4.0.10 glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.8 @@ -32185,6 +33264,10 @@ snapshots: optionalDependencies: picomatch: 4.0.3 + fdir@6.5.0(picomatch@4.0.4): + optionalDependencies: + picomatch: 4.0.4 + fetch-blob@3.2.0: dependencies: node-domexception: 1.0.0 @@ -32210,12 +33293,6 @@ snapshots: dependencies: flat-cache: 5.0.0 - file-loader@6.2.0(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)): - dependencies: - loader-utils: 2.0.4 - schema-utils: 3.3.0 - webpack: 5.104.1(@swc/core@1.7.26)(esbuild@0.27.1) - filelist@1.0.4: dependencies: minimatch: 5.1.6 @@ -32324,6 +33401,8 @@ snapshots: optionalDependencies: debug: 4.4.3(supports-color@8.1.1) + follow-redirects@1.16.0: {} + for-each@0.3.5: dependencies: is-callable: 1.2.7 @@ -32359,10 +33438,6 @@ snapshots: fresh@0.5.2: {} - front-matter@4.0.2: - dependencies: - js-yaml: 3.14.2 - fs-constants@1.0.0: {} fs-extra@10.1.0: @@ -32547,6 +33622,8 @@ snapshots: git-hooks-list@3.2.0: {} + git-hooks-list@4.2.1: {} + git-up@4.0.5: dependencies: is-ssh: 1.4.1 @@ -32602,7 +33679,7 @@ snapshots: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.0.4 + minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 @@ -32651,6 +33728,8 @@ snapshots: globals@16.5.0: {} + globals@17.6.0: {} + globalthis@1.0.4: dependencies: define-properties: 1.2.1 @@ -32742,9 +33821,8 @@ snapshots: arrify: 1.0.1 graphql: 16.12.0 - graphql-ws@6.0.6(@types/ws@8.18.1)(crossws@0.3.5)(graphql@16.12.0)(ws@8.18.3): + graphql-ws@6.0.6(crossws@0.3.5)(graphql@16.12.0)(ws@8.18.3): dependencies: - '@types/ws': 8.18.1 graphql: 16.12.0 optionalDependencies: crossws: 0.3.5 @@ -32867,8 +33945,6 @@ snapshots: hex2dec@1.1.2: {} - hexoid@1.0.0: {} - highlight.js@10.7.3: {} hmac-drbg@1.0.1: @@ -32999,10 +34075,7 @@ snapshots: http-proxy-middleware@3.0.5: dependencies: - '@types/debug': 4.1.12 '@types/http-proxy': 1.17.17 - '@types/is-glob': 4.0.4 - '@types/micromatch': 4.0.9 debug: 4.4.3(supports-color@8.1.1) http-proxy: 1.18.1(debug@4.4.3) is-glob: 4.0.3 @@ -33100,8 +34173,6 @@ snapshots: dependencies: safer-buffer: 2.1.2 - icss-replace-symbols@1.1.0: {} - icss-utils@5.1.0(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -33120,19 +34191,11 @@ snapshots: immutable@5.1.4: {} - import-cwd@3.0.0: - dependencies: - import-from: 3.0.0 - import-fresh@3.3.1: dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 - import-from@3.0.0: - dependencies: - resolve-from: 5.0.0 - import-in-the-middle@1.15.0: dependencies: acorn: 8.15.0 @@ -33192,6 +34255,26 @@ snapshots: strip-ansi: 6.0.1 through: 2.3.8 + inquirer@8.2.7(@types/node@20.19.42): + dependencies: + '@inquirer/external-editor': 1.0.3(@types/node@20.19.42) + ansi-escapes: 4.3.2 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-width: 3.0.0 + figures: 3.2.0 + lodash: 4.17.21 + mute-stream: 0.0.8 + ora: 5.4.1 + run-async: 2.4.1 + rxjs: 7.8.2 + string-width: 4.2.3 + strip-ansi: 6.0.1 + through: 2.3.8 + wrap-ansi: 6.2.0 + transitivePeerDependencies: + - '@types/node' + inquirer@8.2.7(@types/node@20.9.0): dependencies: '@inquirer/external-editor': 1.0.3(@types/node@20.9.0) @@ -33506,6 +34589,10 @@ snapshots: dependencies: ws: 8.18.3 + isomorphic-ws@5.0.0(ws@8.21.0): + dependencies: + ws: 8.21.0 + isstream@0.1.2: {} istanbul-lib-coverage@3.2.2: {} @@ -33561,18 +34648,16 @@ snapshots: jest-util: 30.0.5 p-limit: 3.1.0 - jest-circus@30.0.5(@types/babel-plugin-macros@3.1.3)(babel-plugin-macros@3.1.0): + jest-circus@30.0.5(babel-plugin-macros@3.1.0): dependencies: '@jest/environment': 30.0.5 '@jest/expect': 30.0.5 '@jest/test-result': 30.0.5 '@jest/types': 30.0.5 - '@types/co': 4.6.6 '@types/node': 20.9.0 - '@types/stack-utils': 2.0.3 chalk: 4.1.2 co: 4.6.0 - dedent: 1.7.1(@types/babel-plugin-macros@3.1.3)(babel-plugin-macros@3.1.0) + dedent: 1.7.1(babel-plugin-macros@3.1.0) is-generator-fn: 2.1.0 jest-each: 30.0.5 jest-matcher-utils: 30.0.5 @@ -33586,22 +34671,19 @@ snapshots: slash: 3.0.0 stack-utils: 2.0.6 transitivePeerDependencies: - - '@types/babel-plugin-macros' - babel-plugin-macros - supports-color - jest-circus@30.2.0(@types/babel-plugin-macros@3.1.3)(babel-plugin-macros@3.1.0): + jest-circus@30.2.0(babel-plugin-macros@3.1.0): dependencies: '@jest/environment': 30.2.0 '@jest/expect': 30.2.0 '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/co': 4.6.6 '@types/node': 20.9.0 - '@types/stack-utils': 2.0.3 chalk: 4.1.2 co: 4.6.0 - dedent: 1.7.1(@types/babel-plugin-macros@3.1.3)(babel-plugin-macros@3.1.0) + dedent: 1.7.1(babel-plugin-macros@3.1.0) is-generator-fn: 2.1.0 jest-each: 30.2.0 jest-matcher-utils: 30.2.0 @@ -33615,71 +34697,61 @@ snapshots: slash: 3.0.0 stack-utils: 2.0.6 transitivePeerDependencies: - - '@types/babel-plugin-macros' - babel-plugin-macros - supports-color - jest-cli@30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0): + jest-cli@30.0.5(@types/node@20.9.0)(babel-plugin-macros@3.1.0): dependencies: - '@jest/core': 30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(babel-plugin-macros@3.1.0) + '@jest/core': 30.0.5(babel-plugin-macros@3.1.0) '@jest/test-result': 30.0.5 '@jest/types': 30.0.5 - '@types/yargs': 17.0.35 chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node@20.9.0)(babel-plugin-macros@3.1.0) + jest-config: 30.0.5(@types/node@20.9.0)(babel-plugin-macros@3.1.0) jest-util: 30.0.5 jest-validate: 30.0.5 yargs: 17.7.2 transitivePeerDependencies: - - '@types/babel-plugin-macros' - '@types/node' - - '@types/node-notifier' - babel-plugin-macros - esbuild-register - supports-color - ts-node - jest-cli@30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@25.0.3)(babel-plugin-macros@3.1.0): + jest-cli@30.0.5(@types/node@25.0.3)(babel-plugin-macros@3.1.0): dependencies: - '@jest/core': 30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(babel-plugin-macros@3.1.0) + '@jest/core': 30.0.5(babel-plugin-macros@3.1.0) '@jest/test-result': 30.0.5 '@jest/types': 30.0.5 - '@types/yargs': 17.0.35 chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node@25.0.3)(babel-plugin-macros@3.1.0) + jest-config: 30.0.5(@types/node@25.0.3)(babel-plugin-macros@3.1.0) jest-util: 30.0.5 jest-validate: 30.0.5 yargs: 17.7.2 transitivePeerDependencies: - - '@types/babel-plugin-macros' - '@types/node' - - '@types/node-notifier' - babel-plugin-macros - esbuild-register - supports-color - ts-node - jest-config@30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node@20.9.0)(babel-plugin-macros@3.1.0): + jest-config@30.0.5(@types/node@20.9.0)(babel-plugin-macros@3.1.0): dependencies: '@babel/core': 7.28.5 '@jest/get-type': 30.0.1 '@jest/pattern': 30.0.1 '@jest/test-sequencer': 30.0.5 '@jest/types': 30.0.5 - '@types/graceful-fs': 4.1.9 - '@types/micromatch': 4.0.10 - '@types/parse-json': 4.0.2 babel-jest: 30.0.5(@babel/core@7.28.5) chalk: 4.1.2 ci-info: 4.3.1 deepmerge: 4.3.1 glob: 10.5.0 graceful-fs: 4.2.11 - jest-circus: 30.0.5(@types/babel-plugin-macros@3.1.3)(babel-plugin-macros@3.1.0) + jest-circus: 30.0.5(babel-plugin-macros@3.1.0) jest-docblock: 30.0.1 jest-environment-node: 30.0.5 jest-regex-util: 30.0.1 @@ -33695,27 +34767,23 @@ snapshots: optionalDependencies: '@types/node': 20.9.0 transitivePeerDependencies: - - '@types/babel-plugin-macros' - babel-plugin-macros - supports-color - jest-config@30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node@25.0.3)(babel-plugin-macros@3.1.0): + jest-config@30.0.5(@types/node@25.0.3)(babel-plugin-macros@3.1.0): dependencies: '@babel/core': 7.28.5 '@jest/get-type': 30.0.1 '@jest/pattern': 30.0.1 '@jest/test-sequencer': 30.0.5 '@jest/types': 30.0.5 - '@types/graceful-fs': 4.1.9 - '@types/micromatch': 4.0.10 - '@types/parse-json': 4.0.2 babel-jest: 30.0.5(@babel/core@7.28.5) chalk: 4.1.2 ci-info: 4.3.1 deepmerge: 4.3.1 glob: 10.5.0 graceful-fs: 4.2.11 - jest-circus: 30.0.5(@types/babel-plugin-macros@3.1.3)(babel-plugin-macros@3.1.0) + jest-circus: 30.0.5(babel-plugin-macros@3.1.0) jest-docblock: 30.0.1 jest-environment-node: 30.0.5 jest-regex-util: 30.0.1 @@ -33731,27 +34799,23 @@ snapshots: optionalDependencies: '@types/node': 25.0.3 transitivePeerDependencies: - - '@types/babel-plugin-macros' - babel-plugin-macros - supports-color - jest-config@30.2.0(@types/babel-plugin-macros@3.1.3)(@types/node@20.9.0)(babel-plugin-macros@3.1.0): + jest-config@30.2.0(@types/node@20.9.0)(babel-plugin-macros@3.1.0): dependencies: '@babel/core': 7.28.5 '@jest/get-type': 30.1.0 '@jest/pattern': 30.0.1 '@jest/test-sequencer': 30.2.0 '@jest/types': 30.2.0 - '@types/graceful-fs': 4.1.9 - '@types/micromatch': 4.0.10 - '@types/parse-json': 4.0.2 babel-jest: 30.2.0(@babel/core@7.28.5) chalk: 4.1.2 ci-info: 4.3.1 deepmerge: 4.3.1 glob: 10.5.0 graceful-fs: 4.2.11 - jest-circus: 30.2.0(@types/babel-plugin-macros@3.1.3)(babel-plugin-macros@3.1.0) + jest-circus: 30.2.0(babel-plugin-macros@3.1.0) jest-docblock: 30.2.0 jest-environment-node: 30.2.0 jest-regex-util: 30.0.1 @@ -33767,27 +34831,23 @@ snapshots: optionalDependencies: '@types/node': 20.9.0 transitivePeerDependencies: - - '@types/babel-plugin-macros' - babel-plugin-macros - supports-color - jest-config@30.2.0(@types/babel-plugin-macros@3.1.3)(@types/node@25.0.3)(babel-plugin-macros@3.1.0): + jest-config@30.2.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0): dependencies: '@babel/core': 7.28.5 '@jest/get-type': 30.1.0 '@jest/pattern': 30.0.1 '@jest/test-sequencer': 30.2.0 '@jest/types': 30.2.0 - '@types/graceful-fs': 4.1.9 - '@types/micromatch': 4.0.10 - '@types/parse-json': 4.0.2 babel-jest: 30.2.0(@babel/core@7.28.5) chalk: 4.1.2 ci-info: 4.3.1 deepmerge: 4.3.1 glob: 10.5.0 graceful-fs: 4.2.11 - jest-circus: 30.2.0(@types/babel-plugin-macros@3.1.3)(babel-plugin-macros@3.1.0) + jest-circus: 30.2.0(babel-plugin-macros@3.1.0) jest-docblock: 30.2.0 jest-environment-node: 30.2.0 jest-regex-util: 30.0.1 @@ -33803,7 +34863,6 @@ snapshots: optionalDependencies: '@types/node': 25.0.3 transitivePeerDependencies: - - '@types/babel-plugin-macros' - babel-plugin-macros - supports-color @@ -33868,9 +34927,6 @@ snapshots: jest-haste-map@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/fb-watchman': 2.0.6 - '@types/graceful-fs': 4.1.9 - '@types/micromatch': 4.0.10 '@types/node': 20.9.0 anymatch: 3.1.3 fb-watchman: 2.0.2 @@ -33886,9 +34942,6 @@ snapshots: jest-haste-map@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/fb-watchman': 2.0.6 - '@types/graceful-fs': 4.1.9 - '@types/micromatch': 4.0.10 '@types/node': 20.9.0 anymatch: 3.1.3 fb-watchman: 2.0.2 @@ -33929,8 +34982,6 @@ snapshots: dependencies: '@babel/code-frame': 7.27.1 '@jest/types': 30.0.5 - '@types/graceful-fs': 4.1.9 - '@types/micromatch': 4.0.10 '@types/stack-utils': 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 @@ -33943,8 +34994,6 @@ snapshots: dependencies: '@babel/code-frame': 7.27.1 '@jest/types': 30.2.0 - '@types/graceful-fs': 4.1.9 - '@types/micromatch': 4.0.10 '@types/stack-utils': 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 @@ -33984,7 +35033,6 @@ snapshots: jest-resolve@30.0.5: dependencies: - '@types/graceful-fs': 4.1.9 chalk: 4.1.2 graceful-fs: 4.2.11 jest-haste-map: 30.0.5 @@ -33996,7 +35044,6 @@ snapshots: jest-resolve@30.2.0: dependencies: - '@types/graceful-fs': 4.1.9 chalk: 4.1.2 graceful-fs: 4.2.11 jest-haste-map: 30.2.0 @@ -34013,9 +35060,7 @@ snapshots: '@jest/test-result': 30.0.5 '@jest/transform': 30.0.5 '@jest/types': 30.0.5 - '@types/graceful-fs': 4.1.9 '@types/node': 20.9.0 - '@types/source-map-support': 0.5.10 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -34042,9 +35087,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/graceful-fs': 4.1.9 '@types/node': 20.9.0 - '@types/source-map-support': 0.5.10 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -34073,7 +35116,6 @@ snapshots: '@jest/test-result': 30.0.5 '@jest/transform': 30.0.5 '@jest/types': 30.0.5 - '@types/graceful-fs': 4.1.9 '@types/node': 20.9.0 chalk: 4.1.2 cjs-module-lexer: 2.1.1 @@ -34101,7 +35143,6 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/graceful-fs': 4.1.9 '@types/node': 20.9.0 chalk: 4.1.2 cjs-module-lexer: 2.1.1 @@ -34132,8 +35173,6 @@ snapshots: '@jest/snapshot-utils': 30.0.5 '@jest/transform': 30.0.5 '@jest/types': 30.0.5 - '@types/graceful-fs': 4.1.9 - '@types/semver': 7.7.1 babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.5) chalk: 4.1.2 expect: 30.0.5 @@ -34160,8 +35199,6 @@ snapshots: '@jest/snapshot-utils': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/graceful-fs': 4.1.9 - '@types/semver': 7.7.1 babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.5) chalk: 4.1.2 expect: 30.2.0 @@ -34179,9 +35216,7 @@ snapshots: jest-util@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/graceful-fs': 4.1.9 - '@types/node': 25.0.3 - '@types/picomatch': 4.0.2 + '@types/node': 20.9.0 chalk: 4.1.2 ci-info: 4.3.1 graceful-fs: 4.2.11 @@ -34244,15 +35279,13 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/merge-stream': 1.1.5 '@types/node': 20.9.0 - '@types/supports-color': 8.1.3 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@30.0.5: dependencies: - '@types/node': 25.0.3 + '@types/node': 20.9.0 '@ungap/structured-clone': 1.3.0 jest-util: 30.0.5 merge-stream: 2.0.0 @@ -34260,37 +35293,33 @@ snapshots: jest-worker@30.2.0: dependencies: - '@types/node': 20.9.0 + '@types/node': 20.19.42 '@ungap/structured-clone': 1.3.0 jest-util: 30.2.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0): + jest@30.0.5(@types/node@20.9.0)(babel-plugin-macros@3.1.0): dependencies: - '@jest/core': 30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(babel-plugin-macros@3.1.0) + '@jest/core': 30.0.5(babel-plugin-macros@3.1.0) '@jest/types': 30.0.5 import-local: 3.2.0 - jest-cli: 30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@20.9.0)(babel-plugin-macros@3.1.0) + jest-cli: 30.0.5(@types/node@20.9.0)(babel-plugin-macros@3.1.0) transitivePeerDependencies: - - '@types/babel-plugin-macros' - '@types/node' - - '@types/node-notifier' - babel-plugin-macros - esbuild-register - supports-color - ts-node - jest@30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@25.0.3)(babel-plugin-macros@3.1.0): + jest@30.0.5(@types/node@25.0.3)(babel-plugin-macros@3.1.0): dependencies: - '@jest/core': 30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(babel-plugin-macros@3.1.0) + '@jest/core': 30.0.5(babel-plugin-macros@3.1.0) '@jest/types': 30.0.5 import-local: 3.2.0 - jest-cli: 30.0.5(@types/babel-plugin-macros@3.1.3)(@types/node-notifier@8.0.5)(@types/node@25.0.3)(babel-plugin-macros@3.1.0) + jest-cli: 30.0.5(@types/node@25.0.3)(babel-plugin-macros@3.1.0) transitivePeerDependencies: - - '@types/babel-plugin-macros' - '@types/node' - - '@types/node-notifier' - babel-plugin-macros - esbuild-register - supports-color @@ -34302,6 +35331,8 @@ snapshots: jiti@2.6.1: {} + jiti@2.7.0: {} + jju@1.4.0: {} joi@17.13.3: @@ -34312,19 +35343,19 @@ snapshots: '@sideway/formula': 3.0.1 '@sideway/pinpoint': 2.0.0 - jotai@2.16.0(@babel/core@7.28.5)(@babel/template@7.27.2)(@types/react@18.3.27)(react@18.2.0): + jotai@2.16.0(@babel/core@7.28.5)(@babel/template@7.27.2)(@types/react@18.3.27)(react@18.3.1): optionalDependencies: '@babel/core': 7.28.5 '@babel/template': 7.27.2 '@types/react': 18.3.27 - react: 18.2.0 + react: 18.3.1 - jotai@2.16.0(@babel/core@7.28.5)(@babel/template@7.27.2)(@types/react@19.2.7)(react@18.2.0): + jotai@2.16.0(@babel/core@7.28.5)(@babel/template@7.27.2)(@types/react@19.2.7)(react@18.3.1): optionalDependencies: '@babel/core': 7.28.5 '@babel/template': 7.27.2 '@types/react': 19.2.7 - react: 18.2.0 + react: 18.3.1 joycon@3.1.1: {} @@ -34427,7 +35458,7 @@ snapshots: lodash.isstring: 4.0.1 lodash.once: 4.1.1 ms: 2.1.3 - semver: 7.6.3 + semver: 7.7.3 jsprim@2.0.2: dependencies: @@ -34678,12 +35709,6 @@ snapshots: emojis-list: 2.1.0 json5: 1.0.2 - loader-utils@2.0.4: - dependencies: - big.js: 5.2.2 - emojis-list: 3.0.0 - json5: 2.2.3 - loader-utils@3.3.1: {} local-pkg@0.5.1: @@ -35171,8 +36196,6 @@ snapshots: dependencies: '@types/mdast': 4.0.4 - mdn-data@2.0.14: {} - mdn-data@2.0.28: {} mdn-data@2.0.30: {} @@ -35218,7 +36241,7 @@ snapshots: micromark-util-resolve-all: 2.0.1 micromark-util-subtokenize: 2.1.0 micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 + micromark-util-types: 2.0.2 micromark-core-commonmark@2.0.3: dependencies: @@ -35246,7 +36269,7 @@ snapshots: micromark-factory-whitespace: 2.0.1 micromark-util-character: 2.1.1 micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 + micromark-util-types: 2.0.2 parse-entities: 4.0.2 micromark-extension-footnote@0.3.2: @@ -35277,18 +36300,18 @@ snapshots: micromark-util-character: 2.1.1 micromark-util-sanitize-uri: 2.0.1 micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 + micromark-util-types: 2.0.2 micromark-extension-gfm-footnote@2.1.0: dependencies: devlop: 1.1.0 - micromark-core-commonmark: 2.0.2 + micromark-core-commonmark: 2.0.3 micromark-factory-space: 2.0.1 micromark-util-character: 2.1.1 micromark-util-normalize-identifier: 2.0.1 micromark-util-sanitize-uri: 2.0.1 micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 + micromark-util-types: 2.0.2 micromark-extension-gfm-strikethrough@0.6.5: dependencies: @@ -35317,7 +36340,7 @@ snapshots: micromark-factory-space: 2.0.1 micromark-util-character: 2.1.1 micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 + micromark-util-types: 2.0.2 micromark-extension-gfm-table@2.1.1: dependencies: @@ -35377,7 +36400,7 @@ snapshots: micromark-factory-space: 2.0.1 micromark-util-character: 2.1.1 micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 + micromark-util-types: 2.0.2 micromark-extension-mdx-expression@3.0.1: dependencies: @@ -35434,14 +36457,14 @@ snapshots: dependencies: micromark-util-character: 2.1.1 micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 + micromark-util-types: 2.0.2 micromark-factory-label@2.0.1: dependencies: devlop: 1.1.0 micromark-util-character: 2.1.1 micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 + micromark-util-types: 2.0.2 micromark-factory-mdx-expression@2.0.3: dependencies: @@ -35458,21 +36481,21 @@ snapshots: micromark-factory-space@2.0.1: dependencies: micromark-util-character: 2.1.1 - micromark-util-types: 2.0.1 + micromark-util-types: 2.0.2 micromark-factory-title@2.0.1: dependencies: micromark-factory-space: 2.0.1 micromark-util-character: 2.1.1 micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 + micromark-util-types: 2.0.2 micromark-factory-whitespace@2.0.1: dependencies: micromark-factory-space: 2.0.1 micromark-util-character: 2.1.1 micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 + micromark-util-types: 2.0.2 micromark-util-character@2.1.1: dependencies: @@ -35487,7 +36510,7 @@ snapshots: dependencies: micromark-util-character: 2.1.1 micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 + micromark-util-types: 2.0.2 micromark-util-combine-extensions@2.0.1: dependencies: @@ -35525,7 +36548,7 @@ snapshots: micromark-util-resolve-all@2.0.1: dependencies: - micromark-util-types: 2.0.1 + micromark-util-types: 2.0.2 micromark-util-sanitize-uri@2.0.1: dependencies: @@ -35538,7 +36561,7 @@ snapshots: devlop: 1.1.0 micromark-util-chunked: 2.0.1 micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 + micromark-util-types: 2.0.2 micromark-util-symbol@2.0.1: {} @@ -35559,7 +36582,7 @@ snapshots: debug: 4.4.3(supports-color@8.1.1) decode-named-character-reference: 1.2.0 devlop: 1.1.0 - micromark-core-commonmark: 2.0.2 + micromark-core-commonmark: 2.0.3 micromark-factory-space: 2.0.1 micromark-util-character: 2.1.1 micromark-util-chunked: 2.0.1 @@ -35571,7 +36594,7 @@ snapshots: micromark-util-sanitize-uri: 2.0.1 micromark-util-subtokenize: 2.1.0 micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.1 + micromark-util-types: 2.0.2 transitivePeerDependencies: - supports-color @@ -35649,6 +36672,14 @@ snapshots: dependencies: '@isaacs/brace-expansion': 5.0.0 + minimatch@10.2.3: + dependencies: + brace-expansion: 5.0.6 + + minimatch@10.2.5: + dependencies: + brace-expansion: 5.0.6 + minimatch@3.0.4: dependencies: brace-expansion: 1.1.12 @@ -35667,7 +36698,6 @@ snapshots: minimatch@9.0.3: dependencies: - '@types/brace-expansion': 1.1.2 brace-expansion: 2.0.2 minimatch@9.0.5: @@ -35744,25 +36774,6 @@ snapshots: sass: 1.97.0 typescript: 5.3.3 - mkdist@2.4.1(sass@1.97.0)(typescript@5.9.3): - dependencies: - autoprefixer: 10.4.23(postcss@8.5.6) - citty: 0.1.6 - cssnano: 7.1.2(postcss@8.5.6) - defu: 6.1.4 - esbuild: 0.25.12 - jiti: 1.21.7 - mlly: 1.8.0 - pathe: 2.0.3 - pkg-types: 2.3.0 - postcss: 8.5.6 - postcss-nested: 7.0.2(postcss@8.5.6) - semver: 7.7.3 - tinyglobby: 0.2.15 - optionalDependencies: - sass: 1.97.0 - typescript: 5.9.3 - mlly@1.7.4: dependencies: acorn: 8.15.0 @@ -35777,6 +36788,13 @@ snapshots: pkg-types: 1.3.1 ufo: 1.6.1 + mlly@1.8.2: + dependencies: + acorn: 8.16.0 + pathe: 2.0.3 + pkg-types: 1.3.1 + ufo: 1.6.4 + mocha@5.2.0: dependencies: browser-stdout: 1.3.1 @@ -36021,8 +37039,6 @@ snapshots: util: 0.11.1 vm-browserify: 1.1.2 - node-machine-id@1.1.12: {} - node-mock-http@1.0.4: {} node-releases@1.1.77: {} @@ -36105,54 +37121,129 @@ snapshots: dependencies: boolbase: 1.0.0 - nx@22.3.1(@swc/core@1.7.26): + nx@22.7.5(@swc/core@1.7.26): dependencies: + '@emnapi/core': 1.4.5 + '@emnapi/runtime': 1.4.5 + '@emnapi/wasi-threads': 1.0.4 + '@jest/diff-sequences': 30.0.1 '@napi-rs/wasm-runtime': 0.2.4 + '@tybys/wasm-util': 0.9.0 '@yarnpkg/lockfile': 1.1.0 - '@yarnpkg/parsers': 3.0.2 '@zkochan/js-yaml': 0.0.7 - axios: 1.13.2 + ansi-colors: 4.1.3 + ansi-regex: 5.0.1 + ansi-styles: 4.3.0 + argparse: 2.0.1 + asynckit: 0.4.0 + axios: 1.16.0 + balanced-match: 4.0.3 + base64-js: 1.5.1 + bl: 4.1.0 + brace-expansion: 5.0.6 + buffer: 5.7.1 + call-bind-apply-helpers: 1.0.2 chalk: 4.1.2 cli-cursor: 3.1.0 cli-spinners: 2.6.1 cliui: 8.0.1 + clone: 1.0.4 + color-convert: 2.0.1 + color-name: 1.1.4 + combined-stream: 1.0.8 + defaults: 1.0.4 + define-lazy-prop: 2.0.0 + delayed-stream: 1.0.0 dotenv: 16.4.7 - dotenv-expand: 11.0.7 + dotenv-expand: 12.0.3 + dunder-proto: 1.0.1 + ejs: 5.0.1 + emoji-regex: 8.0.0 + end-of-stream: 1.4.5 enquirer: 2.3.6 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-set-tostringtag: 2.1.0 + escalade: 3.2.0 + escape-string-regexp: 1.0.5 figures: 3.2.0 flat: 5.0.2 - front-matter: 4.0.2 + follow-redirects: 1.16.0 + form-data: 4.0.5 + fs-constants: 1.0.0 + function-bind: 1.1.2 + get-caller-file: 2.0.5 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + gopd: 1.2.0 + has-flag: 4.0.0 + has-symbols: 1.1.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + ieee754: 1.2.1 ignore: 7.0.5 - jest-diff: 30.2.0 + inherits: 2.0.4 + is-docker: 2.2.1 + is-fullwidth-code-point: 3.0.0 + is-interactive: 1.0.0 + is-unicode-supported: 0.1.0 + is-wsl: 2.2.0 + json5: 2.2.3 jsonc-parser: 3.2.0 lines-and-columns: 2.0.3 - minimatch: 9.0.3 - node-machine-id: 1.1.12 + log-symbols: 4.1.0 + math-intrinsics: 1.1.0 + mime-db: 1.52.0 + mime-types: 2.1.35 + mimic-fn: 2.1.0 + minimatch: 10.2.5 + minimist: 1.2.8 npm-run-path: 4.0.1 + once: 1.4.0 + onetime: 5.1.2 open: 8.4.2 ora: 5.3.0 + path-key: 3.1.1 + picocolors: 1.1.1 + proxy-from-env: 2.1.0 + readable-stream: 3.6.2 + require-directory: 2.1.1 resolve.exports: 2.0.3 - semver: 7.7.3 + restore-cursor: 3.1.0 + safe-buffer: 5.2.1 + semver: 7.7.4 + signal-exit: 3.0.7 + smol-toml: 1.6.1 string-width: 4.2.3 + string_decoder: 1.3.0 + strip-ansi: 6.0.1 + strip-bom: 3.0.0 + supports-color: 7.2.0 tar-stream: 2.2.0 - tmp: 0.2.5 + tmp: 0.2.6 tree-kill: 1.2.2 tsconfig-paths: 4.2.0 tslib: 2.8.1 - yaml: 2.8.2 + util-deprecate: 1.0.2 + wcwidth: 1.0.1 + wrap-ansi: 7.0.0 + wrappy: 1.0.2 + y18n: 5.0.8 + yaml: 2.9.0 yargs: 17.7.2 yargs-parser: 21.1.1 optionalDependencies: - '@nx/nx-darwin-arm64': 22.3.1 - '@nx/nx-darwin-x64': 22.3.1 - '@nx/nx-freebsd-x64': 22.3.1 - '@nx/nx-linux-arm-gnueabihf': 22.3.1 - '@nx/nx-linux-arm64-gnu': 22.3.1 - '@nx/nx-linux-arm64-musl': 22.3.1 - '@nx/nx-linux-x64-gnu': 22.3.1 - '@nx/nx-linux-x64-musl': 22.3.1 - '@nx/nx-win32-arm64-msvc': 22.3.1 - '@nx/nx-win32-x64-msvc': 22.3.1 + '@nx/nx-darwin-arm64': 22.7.5 + '@nx/nx-darwin-x64': 22.7.5 + '@nx/nx-freebsd-x64': 22.7.5 + '@nx/nx-linux-arm-gnueabihf': 22.7.5 + '@nx/nx-linux-arm64-gnu': 22.7.5 + '@nx/nx-linux-arm64-musl': 22.7.5 + '@nx/nx-linux-x64-gnu': 22.7.5 + '@nx/nx-linux-x64-musl': 22.7.5 + '@nx/nx-win32-arm64-msvc': 22.7.5 + '@nx/nx-win32-x64-msvc': 22.7.5 '@swc/core': 1.7.26 transitivePeerDependencies: - debug @@ -36367,8 +37458,6 @@ snapshots: p-cancelable@3.0.0: {} - p-finally@1.0.0: {} - p-limit@2.3.0: dependencies: p-try: 2.2.0 @@ -36389,22 +37478,13 @@ snapshots: dependencies: p-limit: 3.1.0 - p-queue@6.6.2: - dependencies: - eventemitter3: 4.0.7 - p-timeout: 3.2.0 - p-retry@6.2.1: dependencies: '@types/retry': 0.12.2 is-network-error: 1.3.0 retry: 0.13.1 - p-timeout@3.2.0: - dependencies: - p-finally: 1.0.0 - - p-timeout@6.1.4: {} + p-timeout@7.0.1: {} p-try@2.2.0: {} @@ -36646,12 +37726,12 @@ snapshots: picomatch@4.0.3: {} + picomatch@4.0.4: {} + pify@2.3.0: {} pify@3.0.0: {} - pify@5.0.0: {} - pino-abstract-transport@0.5.0: dependencies: duplexify: 4.1.3 @@ -36808,21 +37888,6 @@ snapshots: postcss-selector-parser: 7.1.1 postcss-value-parser: 4.2.0 - postcss-calc@8.2.4(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - postcss-selector-parser: 6.1.2 - postcss-value-parser: 4.2.0 - - postcss-colormin@5.3.1(postcss@8.5.6): - dependencies: - '@types/caniuse-api': 3.0.6 - browserslist: 4.28.1 - caniuse-api: 3.0.0 - colord: 2.9.3 - postcss: 8.5.6 - postcss-value-parser: 4.2.0 - postcss-colormin@7.0.5(postcss@8.5.6): dependencies: browserslist: 4.28.1 @@ -36831,47 +37896,25 @@ snapshots: postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-convert-values@5.1.3(postcss@8.5.6): - dependencies: - browserslist: 4.28.1 - postcss: 8.5.6 - postcss-value-parser: 4.2.0 - postcss-convert-values@7.0.8(postcss@8.5.6): dependencies: browserslist: 4.28.1 postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-discard-comments@5.1.2(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - postcss-discard-comments@7.0.5(postcss@8.5.6): dependencies: postcss: 8.5.6 postcss-selector-parser: 7.1.1 - postcss-discard-duplicates@5.1.0(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - postcss-discard-duplicates@7.0.2(postcss@8.5.6): dependencies: postcss: 8.5.6 - postcss-discard-empty@5.1.1(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - postcss-discard-empty@7.0.1(postcss@8.5.6): dependencies: postcss: 8.5.6 - postcss-discard-overridden@5.1.0(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - postcss-discard-overridden@7.0.1(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -36895,28 +37938,21 @@ snapshots: optionalDependencies: postcss: 8.5.6 - postcss-load-config@6.0.1(jiti@2.4.2)(postcss@8.5.6)(yaml@2.8.2): + postcss-load-config@6.0.1(jiti@2.4.2)(postcss@8.5.6)(yaml@2.9.0): dependencies: lilconfig: 3.1.3 optionalDependencies: jiti: 2.4.2 postcss: 8.5.6 - yaml: 2.8.2 + yaml: 2.9.0 - postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.2): + postcss-load-config@6.0.1(jiti@2.7.0)(postcss@8.5.6)(yaml@2.9.0): dependencies: lilconfig: 3.1.3 optionalDependencies: - jiti: 2.6.1 - postcss: 8.5.6 - yaml: 2.8.2 - optional: true - - postcss-merge-longhand@5.1.7(postcss@8.5.6): - dependencies: + jiti: 2.7.0 postcss: 8.5.6 - postcss-value-parser: 4.2.0 - stylehacks: 5.1.1(postcss@8.5.6) + yaml: 2.9.0 postcss-merge-longhand@7.0.5(postcss@8.5.6): dependencies: @@ -36924,15 +37960,6 @@ snapshots: postcss-value-parser: 4.2.0 stylehacks: 7.0.7(postcss@8.5.6) - postcss-merge-rules@5.1.4(postcss@8.5.6): - dependencies: - '@types/caniuse-api': 3.0.6 - browserslist: 4.28.1 - caniuse-api: 3.0.0 - cssnano-utils: 3.1.0(postcss@8.5.6) - postcss: 8.5.6 - postcss-selector-parser: 6.1.2 - postcss-merge-rules@7.0.7(postcss@8.5.6): dependencies: browserslist: 4.28.1 @@ -36941,23 +37968,11 @@ snapshots: postcss: 8.5.6 postcss-selector-parser: 7.1.1 - postcss-minify-font-values@5.1.0(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - postcss-value-parser: 4.2.0 - postcss-minify-font-values@7.0.1(postcss@8.5.6): dependencies: postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-minify-gradients@5.1.1(postcss@8.5.6): - dependencies: - colord: 2.9.3 - cssnano-utils: 3.1.0(postcss@8.5.6) - postcss: 8.5.6 - postcss-value-parser: 4.2.0 - postcss-minify-gradients@7.0.1(postcss@8.5.6): dependencies: colord: 2.9.3 @@ -36965,13 +37980,6 @@ snapshots: postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-minify-params@5.1.4(postcss@8.5.6): - dependencies: - browserslist: 4.28.1 - cssnano-utils: 3.1.0(postcss@8.5.6) - postcss: 8.5.6 - postcss-value-parser: 4.2.0 - postcss-minify-params@7.0.5(postcss@8.5.6): dependencies: browserslist: 4.28.1 @@ -36979,11 +37987,6 @@ snapshots: postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-minify-selectors@5.2.1(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - postcss-selector-parser: 6.1.2 - postcss-minify-selectors@7.0.5(postcss@8.5.6): dependencies: cssesc: 3.0.0 @@ -37011,18 +38014,6 @@ snapshots: icss-utils: 5.1.0(postcss@8.5.6) postcss: 8.5.6 - postcss-modules@4.3.1(postcss@8.5.6): - dependencies: - generic-names: 4.0.0 - icss-replace-symbols: 1.1.0 - lodash.camelcase: 4.3.0 - postcss: 8.5.6 - postcss-modules-extract-imports: 3.1.0(postcss@8.5.6) - postcss-modules-local-by-default: 4.2.0(postcss@8.5.6) - postcss-modules-scope: 3.2.1(postcss@8.5.6) - postcss-modules-values: 4.0.0(postcss@8.5.6) - string-hash: 1.1.3 - postcss-modules@6.0.1(postcss@8.5.6): dependencies: generic-names: 4.0.0 @@ -37045,127 +38036,63 @@ snapshots: postcss: 8.5.6 postcss-selector-parser: 7.1.1 - postcss-normalize-charset@5.1.0(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - postcss-normalize-charset@7.0.1(postcss@8.5.6): dependencies: postcss: 8.5.6 - postcss-normalize-display-values@5.1.0(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - postcss-value-parser: 4.2.0 - postcss-normalize-display-values@7.0.1(postcss@8.5.6): dependencies: postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-normalize-positions@5.1.1(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - postcss-value-parser: 4.2.0 - postcss-normalize-positions@7.0.1(postcss@8.5.6): dependencies: postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@5.1.1(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@7.0.1(postcss@8.5.6): dependencies: postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-normalize-string@5.1.0(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - postcss-value-parser: 4.2.0 - postcss-normalize-string@7.0.1(postcss@8.5.6): dependencies: postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@5.1.0(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@7.0.1(postcss@8.5.6): dependencies: postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-normalize-unicode@5.1.1(postcss@8.5.6): - dependencies: - browserslist: 4.28.1 - postcss: 8.5.6 - postcss-value-parser: 4.2.0 - postcss-normalize-unicode@7.0.5(postcss@8.5.6): dependencies: browserslist: 4.28.1 postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-normalize-url@5.1.0(postcss@8.5.6): - dependencies: - normalize-url: 6.1.0 - postcss: 8.5.6 - postcss-value-parser: 4.2.0 - postcss-normalize-url@7.0.1(postcss@8.5.6): dependencies: postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@5.1.1(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@7.0.1(postcss@8.5.6): dependencies: postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-ordered-values@5.1.3(postcss@8.5.6): - dependencies: - cssnano-utils: 3.1.0(postcss@8.5.6) - postcss: 8.5.6 - postcss-value-parser: 4.2.0 - postcss-ordered-values@7.0.2(postcss@8.5.6): dependencies: cssnano-utils: 5.0.1(postcss@8.5.6) postcss: 8.5.6 postcss-value-parser: 4.2.0 - postcss-reduce-initial@5.1.2(postcss@8.5.6): - dependencies: - '@types/caniuse-api': 3.0.6 - browserslist: 4.28.1 - caniuse-api: 3.0.0 - postcss: 8.5.6 - postcss-reduce-initial@7.0.5(postcss@8.5.6): dependencies: browserslist: 4.28.1 caniuse-api: 3.0.0 postcss: 8.5.6 - postcss-reduce-transforms@5.1.0(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - postcss-value-parser: 4.2.0 - postcss-reduce-transforms@7.0.1(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -37181,24 +38108,12 @@ snapshots: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-svgo@5.1.0(postcss@8.5.6): - dependencies: - '@types/svgo': 2.6.4 - postcss: 8.5.6 - postcss-value-parser: 4.2.0 - svgo: 2.8.0 - postcss-svgo@7.1.0(postcss@8.5.6): dependencies: postcss: 8.5.6 postcss-value-parser: 4.2.0 svgo: 4.0.0 - postcss-unique-selectors@5.1.1(postcss@8.5.6): - dependencies: - postcss: 8.5.6 - postcss-selector-parser: 6.1.2 - postcss-unique-selectors@7.0.4(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -37228,7 +38143,7 @@ snapshots: dependencies: xtend: 4.0.2 - powerlines@0.30.13(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.6.1))(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.52)(rollup@4.53.5)(sass@1.97.0)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3))(tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2))(typescript@5.9.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.9.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)): + powerlines@0.30.13(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.19.42)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.7.0))(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.52)(rollup@4.61.1)(sass@1.97.0)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(tsup@8.4.0(@microsoft/api-extractor@7.58.7(@types/node@20.19.42))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0))(typescript@5.3.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.3.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))(zod@4.4.3): dependencies: '@alloy-js/babel-plugin': 0.2.1(@babel/core@7.28.5) '@alloy-js/babel-plugin-jsx-dom-expressions': 0.39.1(@babel/core@7.28.5) @@ -37254,23 +38169,23 @@ snapshots: '@babel/types': 7.28.5 '@cacheable/memory': 2.0.6 '@donedeal0/superdiff': 3.1.2 - '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) + '@microsoft/api-extractor': 7.55.2(@types/node@20.19.42) '@microsoft/tsdoc-config': 0.17.1 - '@rollup/plugin-alias': 6.0.0(rollup@4.53.5) - '@rollup/plugin-babel': 6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.53.5) - '@rollup/plugin-inject': 5.0.5(rollup@4.53.5) - '@rollup/plugin-node-resolve': 16.0.3(rollup@4.53.5) - '@rollup/plugin-replace': 6.0.3(rollup@4.53.5) - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) + '@rollup/plugin-alias': 6.0.0(rollup@4.61.1) + '@rollup/plugin-babel': 6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.61.1) + '@rollup/plugin-inject': 5.0.5(rollup@4.61.1) + '@rollup/plugin-node-resolve': 16.0.3(rollup@4.61.1) + '@rollup/plugin-replace': 6.0.3(rollup@4.61.1) + '@storm-software/build-tools': 0.158.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 - '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/tsup': 0.2.70(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) - '@storm-software/unbuild': 0.57.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(rollup@4.53.5)(sass@1.97.0)(typescript@5.9.3) - '@stryke/capnp': 0.12.49(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3) + '@storm-software/tsup': 0.2.70(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.4.3) + '@storm-software/unbuild': 0.57.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(rollup@4.61.1)(sass@1.97.0)(typescript@5.3.3)(zod@4.4.3) + '@stryke/capnp': 0.12.49(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.4.3) '@stryke/convert': 0.6.28 - '@stryke/env': 0.20.41(nx@22.3.1(@swc/core@1.7.26)) - '@stryke/fs': 0.33.24(nx@22.3.1(@swc/core@1.7.26)) + '@stryke/env': 0.20.41(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) + '@stryke/fs': 0.33.24(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) '@stryke/hash': 0.12.30 '@stryke/helpers': 0.9.30 '@stryke/http': 0.12.18 @@ -37279,7 +38194,7 @@ snapshots: '@stryke/string-format': 0.12.28 '@stryke/type-checks': 0.5.13 '@stryke/unique-id': 0.3.35 - '@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3) babel-dead-code-elimination: 1.0.11 babel-plugin-parameter-decorator: 1.0.16 bundle-require: 5.1.0(esbuild@0.27.1) @@ -37294,19 +38209,19 @@ snapshots: jiti: 2.6.1 magic-string: 0.30.21 oxc-parser: 0.99.0 - prettier: 3.7.4 - rollup-plugin-typescript2: 0.36.0(rollup@4.53.5)(typescript@5.9.3) + prettier: 3.8.3 + rollup-plugin-typescript2: 0.36.0(rollup@4.61.1)(typescript@5.3.3) ts-morph: 27.0.2 - tsdown: 0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3) + tsdown: 0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3) unimport: 5.6.0 unplugin: 3.0.0-beta.3 optionalDependencies: '@rspack/core': 1.6.8 esbuild: 0.27.1 rolldown: 1.0.0-beta.52 - rollup: 4.53.5 - tsup: 8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2) - unbuild: 3.6.1(sass@1.97.0)(typescript@5.9.3) + rollup: 4.61.1 + tsup: 8.4.0(@microsoft/api-extractor@7.58.7(@types/node@20.19.42))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0) + unbuild: 3.6.1(sass@1.97.0)(typescript@5.3.3) vite: 5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1) webpack: 5.104.1(@swc/core@1.7.26)(esbuild@0.27.1) transitivePeerDependencies: @@ -37328,8 +38243,9 @@ snapshots: - vue - vue-sfc-transformer - vue-tsc + - zod - powerlines@0.31.6(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.4.2))(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.53.5)(sass@1.97.0)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.8.2))(typescript@5.3.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.3.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)): + powerlines@0.31.6(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.19.42)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.7.0))(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.52)(rollup@4.61.1)(sass@1.97.0)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(tsup@8.4.0(@microsoft/api-extractor@7.58.7(@types/node@20.19.42))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0))(typescript@5.3.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.3.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))(zod@4.4.3): dependencies: '@alloy-js/babel-plugin': 0.2.1(@babel/core@7.28.5) '@alloy-js/babel-plugin-jsx-dom-expressions': 0.39.1(@babel/core@7.28.5) @@ -37355,23 +38271,23 @@ snapshots: '@babel/types': 7.28.5 '@cacheable/memory': 2.0.6 '@donedeal0/superdiff': 3.1.2 - '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) + '@microsoft/api-extractor': 7.55.2(@types/node@20.19.42) '@microsoft/tsdoc-config': 0.17.1 - '@rollup/plugin-alias': 6.0.0(rollup@4.53.5) - '@rollup/plugin-babel': 6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.53.5) - '@rollup/plugin-inject': 5.0.5(rollup@4.53.5) - '@rollup/plugin-node-resolve': 16.0.3(rollup@4.53.5) - '@rollup/plugin-replace': 6.0.3(rollup@4.53.5) - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3) + '@rollup/plugin-alias': 6.0.0(rollup@4.61.1) + '@rollup/plugin-babel': 6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.61.1) + '@rollup/plugin-inject': 5.0.5(rollup@4.61.1) + '@rollup/plugin-node-resolve': 16.0.3(rollup@4.61.1) + '@rollup/plugin-replace': 6.0.3(rollup@4.61.1) + '@storm-software/build-tools': 0.158.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 - '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/tsup': 0.2.70(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3) - '@storm-software/unbuild': 0.57.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(rollup@4.53.5)(sass@1.97.0)(typescript@5.3.3) - '@stryke/capnp': 0.12.49(nx@22.3.1(@swc/core@1.7.26))(typescript@5.3.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3) + '@storm-software/tsup': 0.2.70(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.4.3) + '@storm-software/unbuild': 0.57.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(rollup@4.61.1)(sass@1.97.0)(typescript@5.3.3)(zod@4.4.3) + '@stryke/capnp': 0.12.49(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.4.3) '@stryke/convert': 0.6.28 - '@stryke/env': 0.20.41(nx@22.3.1(@swc/core@1.7.26)) - '@stryke/fs': 0.33.24(nx@22.3.1(@swc/core@1.7.26)) + '@stryke/env': 0.20.41(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) + '@stryke/fs': 0.33.24(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) '@stryke/hash': 0.12.30 '@stryke/helpers': 0.9.30 '@stryke/http': 0.12.18 @@ -37380,7 +38296,7 @@ snapshots: '@stryke/string-format': 0.12.28 '@stryke/type-checks': 0.5.13 '@stryke/unique-id': 0.3.35 - '@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3) + '@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3) babel-dead-code-elimination: 1.0.11 babel-plugin-parameter-decorator: 1.0.16 bundle-require: 5.1.0(esbuild@0.27.1) @@ -37395,8 +38311,8 @@ snapshots: jiti: 2.6.1 magic-string: 0.30.21 oxc-parser: 0.99.0 - prettier: 3.7.4 - rollup-plugin-typescript2: 0.36.0(rollup@4.53.5)(typescript@5.3.3) + prettier: 3.8.3 + rollup-plugin-typescript2: 0.36.0(rollup@4.61.1)(typescript@5.3.3) ts-morph: 27.0.2 tsdown: 0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3) unimport: 5.6.0 @@ -37404,9 +38320,9 @@ snapshots: optionalDependencies: '@rspack/core': 1.6.8 esbuild: 0.27.1 - rolldown: 1.0.0-beta.55 - rollup: 4.53.5 - tsup: 8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.8.2) + rolldown: 1.0.0-beta.52 + rollup: 4.61.1 + tsup: 8.4.0(@microsoft/api-extractor@7.58.7(@types/node@20.19.42))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0) unbuild: 3.6.1(sass@1.97.0)(typescript@5.3.3) vite: 5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1) webpack: 5.104.1(@swc/core@1.7.26)(esbuild@0.27.1) @@ -37429,8 +38345,9 @@ snapshots: - vue - vue-sfc-transformer - vue-tsc + - zod - powerlines@0.31.6(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.6.1))(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.52)(rollup@4.53.5)(sass@1.97.0)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3))(tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2))(typescript@5.9.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.9.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)): + powerlines@0.31.6(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.4.2))(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.55)(rollup@4.61.1)(sass@1.97.0)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0))(typescript@5.3.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.3.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))(zod@4.4.3): dependencies: '@alloy-js/babel-plugin': 0.2.1(@babel/core@7.28.5) '@alloy-js/babel-plugin-jsx-dom-expressions': 0.39.1(@babel/core@7.28.5) @@ -37458,21 +38375,21 @@ snapshots: '@donedeal0/superdiff': 3.1.2 '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) '@microsoft/tsdoc-config': 0.17.1 - '@rollup/plugin-alias': 6.0.0(rollup@4.53.5) - '@rollup/plugin-babel': 6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.53.5) - '@rollup/plugin-inject': 5.0.5(rollup@4.53.5) - '@rollup/plugin-node-resolve': 16.0.3(rollup@4.53.5) - '@rollup/plugin-replace': 6.0.3(rollup@4.53.5) - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) + '@rollup/plugin-alias': 6.0.0(rollup@4.61.1) + '@rollup/plugin-babel': 6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.61.1) + '@rollup/plugin-inject': 5.0.5(rollup@4.61.1) + '@rollup/plugin-node-resolve': 16.0.3(rollup@4.61.1) + '@rollup/plugin-replace': 6.0.3(rollup@4.61.1) + '@storm-software/build-tools': 0.158.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 - '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/tsup': 0.2.70(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) - '@storm-software/unbuild': 0.57.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(rollup@4.53.5)(sass@1.97.0)(typescript@5.9.3) - '@stryke/capnp': 0.12.49(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3) + '@storm-software/tsup': 0.2.70(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.4.3) + '@storm-software/unbuild': 0.57.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(rollup@4.61.1)(sass@1.97.0)(typescript@5.3.3)(zod@4.4.3) + '@stryke/capnp': 0.12.49(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.4.3) '@stryke/convert': 0.6.28 - '@stryke/env': 0.20.41(nx@22.3.1(@swc/core@1.7.26)) - '@stryke/fs': 0.33.24(nx@22.3.1(@swc/core@1.7.26)) + '@stryke/env': 0.20.41(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) + '@stryke/fs': 0.33.24(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) '@stryke/hash': 0.12.30 '@stryke/helpers': 0.9.30 '@stryke/http': 0.12.18 @@ -37481,7 +38398,7 @@ snapshots: '@stryke/string-format': 0.12.28 '@stryke/type-checks': 0.5.13 '@stryke/unique-id': 0.3.35 - '@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.4.2))(typescript@5.3.3) babel-dead-code-elimination: 1.0.11 babel-plugin-parameter-decorator: 1.0.16 bundle-require: 5.1.0(esbuild@0.27.1) @@ -37496,19 +38413,19 @@ snapshots: jiti: 2.6.1 magic-string: 0.30.21 oxc-parser: 0.99.0 - prettier: 3.7.4 - rollup-plugin-typescript2: 0.36.0(rollup@4.53.5)(typescript@5.9.3) + prettier: 3.8.3 + rollup-plugin-typescript2: 0.36.0(rollup@4.61.1)(typescript@5.3.3) ts-morph: 27.0.2 - tsdown: 0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3) + tsdown: 0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3) unimport: 5.6.0 unplugin: 3.0.0-beta.3 optionalDependencies: '@rspack/core': 1.6.8 esbuild: 0.27.1 - rolldown: 1.0.0-beta.52 - rollup: 4.53.5 - tsup: 8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2) - unbuild: 3.6.1(sass@1.97.0)(typescript@5.9.3) + rolldown: 1.0.0-beta.55 + rollup: 4.61.1 + tsup: 8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0) + unbuild: 3.6.1(sass@1.97.0)(typescript@5.3.3) vite: 5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1) webpack: 5.104.1(@swc/core@1.7.26)(esbuild@0.27.1) transitivePeerDependencies: @@ -37530,8 +38447,9 @@ snapshots: - vue - vue-sfc-transformer - vue-tsc + - zod - powerlines@0.32.5(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.9.0)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.6.1))(nx@22.3.1(@swc/core@1.7.26))(rolldown@1.0.0-beta.52)(rollup@4.53.5)(sass@1.97.0)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3))(tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2))(typescript@5.9.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.9.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)): + powerlines@0.32.5(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@rspack/core@1.6.8)(@swc/core@1.7.26)(@types/babel__core@7.20.5)(@types/node@20.19.42)(esbuild@0.27.1)(eslint@9.39.2(jiti@2.7.0))(nx@22.7.5(@swc/core@1.7.26))(rolldown@1.0.0-beta.52)(rollup@4.61.1)(sass@1.97.0)(tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3))(tsup@8.4.0(@microsoft/api-extractor@7.58.7(@types/node@20.19.42))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0))(typescript@5.3.3)(unbuild@3.6.1(sass@1.97.0)(typescript@5.3.3))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(vite@5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1))(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1))(zod@4.4.3): dependencies: '@alloy-js/babel-plugin': 0.2.1(@babel/core@7.28.5) '@alloy-js/babel-plugin-jsx-dom-expressions': 0.39.1(@babel/core@7.28.5) @@ -37557,23 +38475,23 @@ snapshots: '@babel/types': 7.28.5 '@cacheable/memory': 2.0.6 '@donedeal0/superdiff': 3.1.2 - '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) + '@microsoft/api-extractor': 7.55.2(@types/node@20.19.42) '@microsoft/tsdoc-config': 0.17.1 - '@rollup/plugin-alias': 6.0.0(rollup@4.53.5) - '@rollup/plugin-babel': 6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.53.5) - '@rollup/plugin-inject': 5.0.5(rollup@4.53.5) - '@rollup/plugin-node-resolve': 16.0.3(rollup@4.53.5) - '@rollup/plugin-replace': 6.0.3(rollup@4.53.5) - '@storm-software/build-tools': 0.158.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) + '@rollup/plugin-alias': 6.0.0(rollup@4.61.1) + '@rollup/plugin-babel': 6.1.0(@babel/core@7.28.5)(@types/babel__core@7.20.5)(rollup@4.61.1) + '@rollup/plugin-inject': 5.0.5(rollup@4.61.1) + '@rollup/plugin-node-resolve': 16.0.3(rollup@4.61.1) + '@rollup/plugin-replace': 6.0.3(rollup@4.61.1) + '@storm-software/build-tools': 0.158.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3) '@storm-software/config': 1.134.72 - '@storm-software/config-tools': 1.188.72 - '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)) - '@storm-software/tsup': 0.2.70(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) - '@storm-software/unbuild': 0.57.72(@nx/devkit@22.3.1(nx@22.3.1(@swc/core@1.7.26)))(@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.3.1(@swc/core@1.7.26))(rollup@4.53.5)(sass@1.97.0)(typescript@5.9.3) - '@stryke/capnp': 0.12.49(nx@22.3.1(@swc/core@1.7.26))(typescript@5.9.3) + '@storm-software/config-tools': 1.190.40(zod@4.4.3) + '@storm-software/esbuild': 0.53.72(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0))(zod@4.4.3) + '@storm-software/tsup': 0.2.70(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.4.3) + '@storm-software/unbuild': 0.57.72(@nx/devkit@22.7.5(nx@22.7.5(@swc/core@1.7.26)))(@nx/js@22.7.5(@babel/traverse@7.28.5)(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(verdaccio@5.33.0(encoding@0.1.13)(typanion@3.14.0)))(@swc/core@1.7.26)(nx@22.7.5(@swc/core@1.7.26))(rollup@4.61.1)(sass@1.97.0)(typescript@5.3.3)(zod@4.4.3) + '@stryke/capnp': 0.12.49(nx@22.7.5(@swc/core@1.7.26))(typescript@5.3.3)(zod@4.4.3) '@stryke/convert': 0.6.28 - '@stryke/env': 0.20.41(nx@22.3.1(@swc/core@1.7.26)) - '@stryke/fs': 0.33.24(nx@22.3.1(@swc/core@1.7.26)) + '@stryke/env': 0.20.41(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) + '@stryke/fs': 0.33.24(nx@22.7.5(@swc/core@1.7.26))(zod@4.4.3) '@stryke/hash': 0.12.30 '@stryke/helpers': 0.9.30 '@stryke/http': 0.12.18 @@ -37582,7 +38500,7 @@ snapshots: '@stryke/string-format': 0.12.28 '@stryke/type-checks': 0.5.13 '@stryke/unique-id': 0.3.35 - '@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/utils': 8.50.0(eslint@9.39.2(jiti@2.7.0))(typescript@5.3.3) babel-dead-code-elimination: 1.0.11 babel-plugin-parameter-decorator: 1.0.16 bundle-require: 5.1.0(esbuild@0.27.1) @@ -37597,19 +38515,19 @@ snapshots: jiti: 2.6.1 magic-string: 0.30.21 oxc-parser: 0.99.0 - prettier: 3.7.4 - rollup-plugin-typescript2: 0.36.0(rollup@4.53.5)(typescript@5.9.3) + prettier: 3.8.3 + rollup-plugin-typescript2: 0.36.0(rollup@4.61.1)(typescript@5.3.3) ts-morph: 27.0.2 - tsdown: 0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3) + tsdown: 0.17.0-beta.5(synckit@0.11.11)(typescript@5.3.3) unimport: 5.6.0 unplugin: 3.0.0-beta.3 optionalDependencies: '@rspack/core': 1.6.8 esbuild: 0.27.1 rolldown: 1.0.0-beta.52 - rollup: 4.53.5 - tsup: 8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2) - unbuild: 3.6.1(sass@1.97.0)(typescript@5.9.3) + rollup: 4.61.1 + tsup: 8.4.0(@microsoft/api-extractor@7.58.7(@types/node@20.19.42))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0) + unbuild: 3.6.1(sass@1.97.0)(typescript@5.3.3) vite: 5.4.21(@types/node@20.9.0)(sass@1.97.0)(terser@5.44.1) webpack: 5.104.1(@swc/core@1.7.26)(esbuild@0.27.1) transitivePeerDependencies: @@ -37631,6 +38549,7 @@ snapshots: - vue - vue-sfc-transformer - vue-tsc + - zod prebuild-install@7.1.3: dependencies: @@ -37657,7 +38576,7 @@ snapshots: prettier-plugin-astro@0.14.1: dependencies: '@astrojs/compiler': 2.13.0 - prettier: 3.7.4 + prettier: 3.8.3 sass-formatter: 0.7.9 prettier-plugin-jsdoc@1.8.0(prettier@3.7.4): @@ -37669,42 +38588,81 @@ snapshots: transitivePeerDependencies: - supports-color - prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.2.2): + prettier-plugin-jsdoc@1.8.1(prettier@3.7.4): dependencies: + binary-searching: 2.0.5 + comment-parser: 1.4.1 + mdast-util-from-markdown: 2.0.2 prettier: 3.7.4 - typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + prettier-plugin-jsdoc@1.8.1(prettier@3.8.3): + dependencies: + binary-searching: 2.0.5 + comment-parser: 1.4.1 + mdast-util-from-markdown: 2.0.2 + prettier: 3.8.3 + transitivePeerDependencies: + - supports-color prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3): dependencies: prettier: 3.7.4 typescript: 5.3.3 - prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.9.3): + prettier-plugin-organize-imports@4.3.0(prettier@3.8.3)(typescript@5.2.2): dependencies: - prettier: 3.7.4 - typescript: 5.9.3 + prettier: 3.8.3 + typescript: 5.2.2 + + prettier-plugin-organize-imports@4.3.0(prettier@3.8.3)(typescript@5.3.3): + dependencies: + prettier: 3.8.3 + typescript: 5.3.3 + + prettier-plugin-packagejson@3.0.2(prettier@3.8.3): + dependencies: + sort-package-json: 3.7.1 + optionalDependencies: + prettier: 3.8.3 prettier-plugin-pkg@0.18.1(prettier@3.7.4): dependencies: prettier: 3.7.4 + prettier-plugin-pkg@0.18.1(prettier@3.8.3): + dependencies: + prettier: 3.8.3 + prettier-plugin-prisma@5.0.0(prettier@3.7.4): dependencies: '@prisma/prisma-schema-wasm': 4.17.0-26.6b0aef69b7cdfc787f822ecd7cdc76d5f1991584 prettier: 3.7.4 + prettier-plugin-prisma@5.0.0(prettier@3.8.3): + dependencies: + '@prisma/prisma-schema-wasm': 4.17.0-26.6b0aef69b7cdfc787f822ecd7cdc76d5f1991584 + prettier: 3.8.3 + prettier-plugin-sh@0.15.0(prettier@3.7.4): dependencies: mvdan-sh: 0.10.1 prettier: 3.7.4 sh-syntax: 0.4.2 - prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.0(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4): + prettier-plugin-sh@0.15.0(prettier@3.8.3): + dependencies: + mvdan-sh: 0.10.1 + prettier: 3.8.3 + sh-syntax: 0.4.2 + + prettier-plugin-tailwindcss@0.5.14(prettier-plugin-astro@0.14.1)(prettier-plugin-jsdoc@1.8.1(prettier@3.7.4))(prettier-plugin-organize-imports@4.3.0(prettier@3.7.4)(typescript@5.3.3))(prettier@3.7.4): dependencies: prettier: 3.7.4 optionalDependencies: prettier-plugin-astro: 0.14.1 - prettier-plugin-jsdoc: 1.8.0(prettier@3.7.4) + prettier-plugin-jsdoc: 1.8.1(prettier@3.7.4) prettier-plugin-organize-imports: 4.3.0(prettier@3.7.4)(typescript@5.3.3) prettier-plugin-toml@2.0.6(prettier@3.7.4): @@ -37712,13 +38670,19 @@ snapshots: '@taplo/lib': 0.5.0 prettier: 3.7.4 + prettier-plugin-toml@2.0.6(prettier@3.8.3): + dependencies: + '@taplo/lib': 0.5.0 + prettier: 3.8.3 + prettier@3.7.4: {} + prettier@3.8.3: {} + pretty-bytes@7.1.0: {} pretty-format@27.5.1: dependencies: - '@types/react-is': 17.0.7 ansi-regex: 5.0.1 ansi-styles: 5.2.0 react-is: 17.0.2 @@ -37732,14 +38696,12 @@ snapshots: pretty-format@30.0.5: dependencies: '@jest/schemas': 30.0.5 - '@types/react-is': 18.3.1 ansi-styles: 5.2.0 react-is: 18.3.1 pretty-format@30.2.0: dependencies: '@jest/schemas': 30.0.5 - '@types/react-is': 18.3.1 ansi-styles: 5.2.0 react-is: 18.3.1 @@ -37766,8 +38728,6 @@ snapshots: err-code: 2.0.3 retry: 0.12.0 - promise.series@0.2.0: {} - prop-types@15.7.2: dependencies: loose-envify: 1.4.0 @@ -37796,7 +38756,7 @@ snapshots: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 25.0.3 + '@types/node': 20.9.0 long: 5.3.2 protocols@1.4.8: {} @@ -37810,6 +38770,8 @@ snapshots: proxy-from-env@1.1.0: {} + proxy-from-env@2.1.0: {} + public-encrypt@4.0.3: dependencies: bn.js: 4.12.2 @@ -37941,16 +38903,16 @@ snapshots: react: 17.0.2 scheduler: 0.20.2 - react-dom@18.2.0(react@18.2.0): + react-dom@18.3.1(react@18.3.1): dependencies: loose-envify: 1.4.0 - react: 18.2.0 + react: 18.3.1 scheduler: 0.23.2 - react-error-boundary@4.1.2(react@18.2.0): + react-error-boundary@4.1.2(react@18.3.1): dependencies: '@babel/runtime': 7.28.4 - react: 18.2.0 + react: 18.3.1 react-icons@3.11.0(react@17.0.2): dependencies: @@ -37979,20 +38941,20 @@ snapshots: loose-envify: 1.4.0 object-assign: 4.1.1 - react@18.2.0: + react@18.3.1: dependencies: loose-envify: 1.4.0 - reactflow@11.11.4(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + reactflow@11.11.4(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@reactflow/background': 11.3.14(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@reactflow/controls': 11.2.14(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@reactflow/core': 11.11.4(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@reactflow/minimap': 11.7.14(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@reactflow/node-resizer': 2.2.14(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@reactflow/node-toolbar': 1.3.14(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@reactflow/background': 11.3.14(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/controls': 11.2.14(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/core': 11.11.4(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/minimap': 11.7.14(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/node-resizer': 2.2.14(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reactflow/node-toolbar': 1.3.14(@types/react@18.3.27)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - immer @@ -38079,7 +39041,6 @@ snapshots: recast@0.23.11: dependencies: - '@types/esprima': 4.0.3 ast-types: 0.16.1 esprima: 4.0.1 source-map: 0.6.1 @@ -38339,23 +39300,6 @@ snapshots: transitivePeerDependencies: - oxc-resolver - rolldown-plugin-dts@0.18.4(rolldown@1.0.0-beta.52)(typescript@5.9.3): - dependencies: - '@babel/generator': 7.28.5 - '@babel/parser': 7.28.5 - '@babel/types': 7.28.5 - ast-kit: 2.2.0 - birpc: 4.0.0 - dts-resolver: 2.1.3 - get-tsconfig: 4.13.0 - magic-string: 0.30.21 - obug: 2.1.1 - rolldown: 1.0.0-beta.52 - optionalDependencies: - typescript: 5.9.3 - transitivePeerDependencies: - - oxc-resolver - rolldown@1.0.0-beta.1(@babel/runtime@7.28.4): dependencies: zod: 3.25.76 @@ -38429,34 +39373,7 @@ snapshots: optionalDependencies: '@babel/code-frame': 7.27.1 - rollup-plugin-dts@6.3.0(rollup@4.53.5)(typescript@5.9.3): - dependencies: - magic-string: 0.30.21 - rollup: 4.53.5 - typescript: 5.9.3 - optionalDependencies: - '@babel/code-frame': 7.27.1 - - rollup-plugin-postcss@4.0.2(postcss@8.5.6): - dependencies: - chalk: 4.1.2 - concat-with-sourcemaps: 1.1.0 - cssnano: 5.1.15(postcss@8.5.6) - import-cwd: 3.0.0 - p-queue: 6.6.2 - pify: 5.0.0 - postcss: 8.5.6 - postcss-load-config: 3.1.4(postcss@8.5.6) - postcss-modules: 4.3.1(postcss@8.5.6) - promise.series: 0.2.0 - resolve: 1.22.11 - rollup-pluginutils: 2.8.2 - safe-identifier: 0.4.2 - style-inject: 0.3.0 - transitivePeerDependencies: - - ts-node - - rollup-plugin-typescript2@0.36.0(rollup@4.53.5)(typescript@5.2.2): + rollup-plugin-typescript2@0.36.0(rollup@4.53.5)(typescript@5.3.3): dependencies: '@rollup/pluginutils': 4.2.1 find-cache-dir: 3.3.2 @@ -38464,31 +39381,27 @@ snapshots: rollup: 4.53.5 semver: 7.7.3 tslib: 2.8.1 - typescript: 5.2.2 + typescript: 5.3.3 - rollup-plugin-typescript2@0.36.0(rollup@4.53.5)(typescript@5.3.3): + rollup-plugin-typescript2@0.36.0(rollup@4.61.1)(typescript@5.2.2): dependencies: '@rollup/pluginutils': 4.2.1 find-cache-dir: 3.3.2 fs-extra: 10.1.0 - rollup: 4.53.5 + rollup: 4.61.1 semver: 7.7.3 tslib: 2.8.1 - typescript: 5.3.3 + typescript: 5.2.2 - rollup-plugin-typescript2@0.36.0(rollup@4.53.5)(typescript@5.9.3): + rollup-plugin-typescript2@0.36.0(rollup@4.61.1)(typescript@5.3.3): dependencies: '@rollup/pluginutils': 4.2.1 find-cache-dir: 3.3.2 fs-extra: 10.1.0 - rollup: 4.53.5 + rollup: 4.61.1 semver: 7.7.3 tslib: 2.8.1 - typescript: 5.9.3 - - rollup-pluginutils@2.8.2: - dependencies: - estree-walker: 0.6.1 + typescript: 5.3.3 rollup@4.53.5: dependencies: @@ -38518,6 +39431,37 @@ snapshots: '@rollup/rollup-win32-x64-msvc': 4.53.5 fsevents: 2.3.3 + rollup@4.61.1: + dependencies: + '@types/estree': 1.0.9 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.61.1 + '@rollup/rollup-android-arm64': 4.61.1 + '@rollup/rollup-darwin-arm64': 4.61.1 + '@rollup/rollup-darwin-x64': 4.61.1 + '@rollup/rollup-freebsd-arm64': 4.61.1 + '@rollup/rollup-freebsd-x64': 4.61.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.61.1 + '@rollup/rollup-linux-arm-musleabihf': 4.61.1 + '@rollup/rollup-linux-arm64-gnu': 4.61.1 + '@rollup/rollup-linux-arm64-musl': 4.61.1 + '@rollup/rollup-linux-loong64-gnu': 4.61.1 + '@rollup/rollup-linux-loong64-musl': 4.61.1 + '@rollup/rollup-linux-ppc64-gnu': 4.61.1 + '@rollup/rollup-linux-ppc64-musl': 4.61.1 + '@rollup/rollup-linux-riscv64-gnu': 4.61.1 + '@rollup/rollup-linux-riscv64-musl': 4.61.1 + '@rollup/rollup-linux-s390x-gnu': 4.61.1 + '@rollup/rollup-linux-x64-gnu': 4.61.1 + '@rollup/rollup-linux-x64-musl': 4.61.1 + '@rollup/rollup-openbsd-x64': 4.61.1 + '@rollup/rollup-openharmony-arm64': 4.61.1 + '@rollup/rollup-win32-arm64-msvc': 4.61.1 + '@rollup/rollup-win32-ia32-msvc': 4.61.1 + '@rollup/rollup-win32-x64-gnu': 4.61.1 + '@rollup/rollup-win32-x64-msvc': 4.61.1 + fsevents: 2.3.3 + run-applescript@7.1.0: {} run-async@2.4.1: {} @@ -38556,8 +39500,6 @@ snapshots: safe-buffer@5.2.1: {} - safe-identifier@0.4.2: {} - safe-push-apply@1.0.0: dependencies: es-errors: 1.3.0 @@ -38596,11 +39538,12 @@ snapshots: dependencies: loose-envify: 1.4.0 - schema-utils@3.3.0: + schema-utils@4.3.0: dependencies: '@types/json-schema': 7.0.15 - ajv: 6.12.6 - ajv-keywords: 3.5.2(ajv@6.12.6) + ajv: 8.17.1 + ajv-formats: 2.1.1(ajv@8.17.1) + ajv-keywords: 5.1.0(ajv@8.17.1) schema-utils@4.3.3: dependencies: @@ -38639,6 +39582,10 @@ snapshots: semver@7.7.3: {} + semver@7.7.4: {} + + semver@7.8.2: {} + send@0.19.0: dependencies: debug: 2.6.9 @@ -38843,6 +39790,16 @@ snapshots: nanospinner: 1.2.2 picocolors: 1.1.1 + size-limit@11.2.0: + dependencies: + bytes-iec: 3.1.1 + chokidar: 4.0.3 + jiti: 2.7.0 + lilconfig: 3.1.3 + nanospinner: 1.2.2 + picocolors: 1.1.1 + tinyglobby: 0.2.15 + slash@3.0.0: {} slash@5.1.0: {} @@ -38855,6 +39812,8 @@ snapshots: slugify@1.6.6: {} + smol-toml@1.6.1: {} + snake-case@3.0.4: dependencies: dot-case: 3.0.4 @@ -38927,6 +39886,8 @@ snapshots: sort-object-keys@1.1.3: {} + sort-object-keys@2.1.0: {} + sort-package-json@2.15.1: dependencies: detect-indent: 7.0.2 @@ -38938,6 +39899,16 @@ snapshots: sort-object-keys: 1.1.3 tinyglobby: 0.2.15 + sort-package-json@3.7.1: + dependencies: + detect-indent: 7.0.2 + detect-newline: 4.0.1 + git-hooks-list: 4.2.1 + is-plain-obj: 4.1.0 + semver: 7.8.2 + sort-object-keys: 2.1.0 + tinyglobby: 0.2.15 + sorted-array-functions@1.3.0: {} source-map-js@1.2.1: {} @@ -39010,8 +39981,6 @@ snapshots: stable-hash@0.0.5: {} - stable@0.1.8: {} - stack-utils@2.0.6: dependencies: escape-string-regexp: 2.0.0 @@ -39046,28 +40015,23 @@ snapshots: es-errors: 1.3.0 internal-slot: 1.1.0 - storybook@10.1.4(@testing-library/dom@10.4.1)(@types/prettier@3.0.0)(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(prettier@3.7.4)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + storybook@10.1.4(@testing-library/dom@10.4.1)(prettier@3.7.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@storybook/global': 5.0.0 - '@storybook/icons': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/icons': 2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/jest-dom': 6.9.1 '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1) - '@types/prettier': 3.0.0 - '@types/semver': 7.7.1 - '@types/ws': 8.18.1 '@vitest/expect': 3.2.4 '@vitest/spy': 3.2.4 esbuild: 0.27.1 recast: 0.23.11 semver: 7.7.3 - use-sync-external-store: 1.6.0(react@18.2.0) + use-sync-external-store: 1.6.0(react@18.3.1) ws: 8.18.3 optionalDependencies: prettier: 3.7.4 transitivePeerDependencies: - '@testing-library/dom' - - '@types/react' - - '@types/react-dom' - bufferutil - react - react-dom @@ -39247,8 +40211,6 @@ snapshots: strnum@2.1.2: {} - style-inject@0.3.0: {} - styled-jsx@3.3.2(react@17.0.2): dependencies: '@babel/types': 7.8.3 @@ -39261,12 +40223,6 @@ snapshots: stylis: 3.5.4 stylis-rule-sheet: 0.0.10(stylis@3.5.4) - stylehacks@5.1.1(postcss@8.5.6): - dependencies: - browserslist: 4.28.1 - postcss: 8.5.6 - postcss-selector-parser: 6.1.2 - stylehacks@7.0.7(postcss@8.5.6): dependencies: browserslist: 4.28.1 @@ -39328,23 +40284,9 @@ snapshots: svg-parser@2.0.4: {} - svgo@2.8.0: - dependencies: - '@trysound/sax': 0.2.0 - '@types/css-tree': 1.0.7 - '@types/csso': 4.2.0 - commander: 7.2.0 - css-select: 4.3.0 - css-tree: 1.1.3 - csso: 4.2.0 - picocolors: 1.1.1 - stable: 0.1.8 - svgo@3.3.2: dependencies: '@trysound/sax': 0.2.0 - '@types/css-tree': 2.3.11 - '@types/csso': 5.0.4 commander: 7.2.0 css-select: 5.2.2 css-tree: 2.3.1 @@ -39354,9 +40296,6 @@ snapshots: svgo@4.0.0: dependencies: - '@types/css-tree': 2.3.11 - '@types/csso': 5.0.4 - '@types/sax': 1.2.7 commander: 11.1.0 css-select: 5.2.2 css-tree: 3.1.0 @@ -39458,7 +40397,6 @@ snapshots: terser-webpack-plugin@5.3.16(@swc/core@1.7.26)(esbuild@0.25.12)(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.25.12)): dependencies: '@jridgewell/trace-mapping': 0.3.31 - '@types/serialize-javascript': 5.0.4 jest-worker: 27.5.1 schema-utils: 4.3.3 serialize-javascript: 6.0.2 @@ -39472,7 +40410,6 @@ snapshots: terser-webpack-plugin@5.3.16(@swc/core@1.7.26)(esbuild@0.27.1)(webpack@5.104.1(@swc/core@1.7.26)(esbuild@0.27.1)): dependencies: '@jridgewell/trace-mapping': 0.3.31 - '@types/serialize-javascript': 5.0.4 jest-worker: 27.5.1 schema-utils: 4.3.3 serialize-javascript: 6.0.2 @@ -39550,8 +40487,8 @@ snapshots: tinyglobby@0.2.15: dependencies: - fdir: 6.5.0(picomatch@4.0.3) - picomatch: 4.0.3 + fdir: 6.5.0(picomatch@4.0.4) + picomatch: 4.0.4 tinypool@0.8.4: {} @@ -39573,6 +40510,8 @@ snapshots: tmp@0.2.5: {} + tmp@0.2.6: {} + tmpl@1.0.5: {} to-array@0.1.4: {} @@ -39621,18 +40560,14 @@ snapshots: trough@2.2.0: {} - ts-api-utils@1.4.3(typescript@5.9.3): + ts-api-utils@1.4.3(typescript@5.3.3): dependencies: - typescript: 5.9.3 + typescript: 5.3.3 ts-api-utils@2.1.0(typescript@5.3.3): dependencies: typescript: 5.3.3 - ts-api-utils@2.1.0(typescript@5.9.3): - dependencies: - typescript: 5.9.3 - ts-declaration-location@1.0.7(typescript@5.3.3): dependencies: picomatch: 4.0.3 @@ -39721,38 +40656,13 @@ snapshots: - synckit - vue-tsc - tsdown@0.17.0-beta.5(synckit@0.11.11)(typescript@5.9.3): - dependencies: - ansis: 4.2.0 - cac: 6.7.14 - empathic: 2.0.0 - hookable: 5.5.3 - import-without-cache: 0.2.4 - obug: 2.1.1 - rolldown: 1.0.0-beta.52 - rolldown-plugin-dts: 0.18.4(rolldown@1.0.0-beta.52)(typescript@5.9.3) - semver: 7.7.3 - tinyexec: 1.0.2 - tinyglobby: 0.2.15 - tree-kill: 1.2.2 - unconfig-core: 7.4.2 - unrun: 0.2.20(synckit@0.11.11) - optionalDependencies: - typescript: 5.9.3 - transitivePeerDependencies: - - '@ts-macro/tsc' - - '@typescript/native-preview' - - oxc-resolver - - synckit - - vue-tsc - tslib@1.14.1: {} tslib@2.8.1: {} tsscmp@1.0.6: {} - tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(typescript@5.2.2)(yaml@2.8.2): + tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0): dependencies: bundle-require: 5.1.0(esbuild@0.25.12) cac: 6.7.14 @@ -39762,7 +40672,7 @@ snapshots: esbuild: 0.25.12 joycon: 3.1.1 picocolors: 1.1.1 - postcss-load-config: 6.0.1(jiti@2.4.2)(postcss@8.5.6)(yaml@2.8.2) + postcss-load-config: 6.0.1(jiti@2.4.2)(postcss@8.5.6)(yaml@2.9.0) resolve-from: 5.0.0 rollup: 4.53.5 source-map: 0.8.0-beta.0 @@ -39774,14 +40684,14 @@ snapshots: '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) '@swc/core': 1.7.26 postcss: 8.5.6 - typescript: 5.2.2 + typescript: 5.3.3 transitivePeerDependencies: - jiti - supports-color - tsx - yaml - tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.8.2): + tsup@8.4.0(@microsoft/api-extractor@7.58.7(@types/node@20.19.42))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0): dependencies: bundle-require: 5.1.0(esbuild@0.25.12) cac: 6.7.14 @@ -39791,7 +40701,7 @@ snapshots: esbuild: 0.25.12 joycon: 3.1.1 picocolors: 1.1.1 - postcss-load-config: 6.0.1(jiti@2.4.2)(postcss@8.5.6)(yaml@2.8.2) + postcss-load-config: 6.0.1(jiti@2.7.0)(postcss@8.5.6)(yaml@2.9.0) resolve-from: 5.0.0 rollup: 4.53.5 source-map: 0.8.0-beta.0 @@ -39800,7 +40710,7 @@ snapshots: tinyglobby: 0.2.15 tree-kill: 1.2.2 optionalDependencies: - '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) + '@microsoft/api-extractor': 7.58.7(@types/node@20.19.42) '@swc/core': 1.7.26 postcss: 8.5.6 typescript: 5.3.3 @@ -39810,7 +40720,7 @@ snapshots: - tsx - yaml - tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2): + tsup@8.4.0(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.2.2)(yaml@2.9.0): dependencies: bundle-require: 5.1.0(esbuild@0.25.12) cac: 6.7.14 @@ -39820,7 +40730,7 @@ snapshots: esbuild: 0.25.12 joycon: 3.1.1 picocolors: 1.1.1 - postcss-load-config: 6.0.1(jiti@2.4.2)(postcss@8.5.6)(yaml@2.8.2) + postcss-load-config: 6.0.1(jiti@2.7.0)(postcss@8.5.6)(yaml@2.9.0) resolve-from: 5.0.0 rollup: 4.53.5 source-map: 0.8.0-beta.0 @@ -39829,17 +40739,17 @@ snapshots: tinyglobby: 0.2.15 tree-kill: 1.2.2 optionalDependencies: - '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) + '@microsoft/api-extractor': 7.58.7(@types/node@20.9.0) '@swc/core': 1.7.26 postcss: 8.5.6 - typescript: 5.9.3 + typescript: 5.2.2 transitivePeerDependencies: - jiti - supports-color - tsx - yaml - tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2): + tsup@8.4.0(@microsoft/api-extractor@7.58.7(@types/node@20.9.0))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0): dependencies: bundle-require: 5.1.0(esbuild@0.25.12) cac: 6.7.14 @@ -39849,7 +40759,7 @@ snapshots: esbuild: 0.25.12 joycon: 3.1.1 picocolors: 1.1.1 - postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.2) + postcss-load-config: 6.0.1(jiti@2.7.0)(postcss@8.5.6)(yaml@2.9.0) resolve-from: 5.0.0 rollup: 4.53.5 source-map: 0.8.0-beta.0 @@ -39858,18 +40768,17 @@ snapshots: tinyglobby: 0.2.15 tree-kill: 1.2.2 optionalDependencies: - '@microsoft/api-extractor': 7.55.2(@types/node@20.9.0) + '@microsoft/api-extractor': 7.58.7(@types/node@20.9.0) '@swc/core': 1.7.26 postcss: 8.5.6 - typescript: 5.9.3 + typescript: 5.3.3 transitivePeerDependencies: - jiti - supports-color - tsx - yaml - optional: true - tsup@8.4.0(@microsoft/api-extractor@7.55.2(@types/node@25.0.3))(@swc/core@1.7.26)(jiti@2.4.2)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2): + tsup@8.4.0(@microsoft/api-extractor@7.58.7(@types/node@25.0.3))(@swc/core@1.7.26)(jiti@2.7.0)(postcss@8.5.6)(typescript@5.3.3)(yaml@2.9.0): dependencies: bundle-require: 5.1.0(esbuild@0.25.12) cac: 6.7.14 @@ -39879,7 +40788,7 @@ snapshots: esbuild: 0.25.12 joycon: 3.1.1 picocolors: 1.1.1 - postcss-load-config: 6.0.1(jiti@2.4.2)(postcss@8.5.6)(yaml@2.8.2) + postcss-load-config: 6.0.1(jiti@2.7.0)(postcss@8.5.6)(yaml@2.9.0) resolve-from: 5.0.0 rollup: 4.53.5 source-map: 0.8.0-beta.0 @@ -39888,10 +40797,10 @@ snapshots: tinyglobby: 0.2.15 tree-kill: 1.2.2 optionalDependencies: - '@microsoft/api-extractor': 7.55.2(@types/node@25.0.3) + '@microsoft/api-extractor': 7.58.7(@types/node@25.0.3) '@swc/core': 1.7.26 postcss: 8.5.6 - typescript: 5.9.3 + typescript: 5.3.3 transitivePeerDependencies: - jiti - supports-color @@ -39990,31 +40899,27 @@ snapshots: typedarray@0.0.6: {} - typedoc-plugin-frontmatter@1.3.1(typedoc-plugin-markdown@4.0.0-next.20(typedoc@0.25.12(typescript@5.9.3))): + typedoc-plugin-frontmatter@1.3.1(typedoc-plugin-markdown@4.0.0-next.20(typedoc@0.25.12(typescript@5.3.3))): dependencies: - typedoc-plugin-markdown: 4.0.0-next.20(typedoc@0.25.12(typescript@5.9.3)) + typedoc-plugin-markdown: 4.0.0-next.20(typedoc@0.25.12(typescript@5.3.3)) yaml: 2.8.2 - typedoc-plugin-markdown@4.0.0-next.20(typedoc@0.25.12(typescript@5.9.3)): + typedoc-plugin-markdown@4.0.0-next.20(typedoc@0.25.12(typescript@5.3.3)): dependencies: - typedoc: 0.25.12(typescript@5.9.3) + typedoc: 0.25.12(typescript@5.3.3) - typedoc@0.25.12(typescript@5.9.3): + typedoc@0.25.12(typescript@5.3.3): dependencies: lunr: 2.3.9 marked: 4.3.0 minimatch: 9.0.5 shiki: 0.14.7 - typescript: 5.9.3 + typescript: 5.3.3 typeof-article@0.1.1: dependencies: kind-of: 3.2.2 - typescript-log@2.0.0(tslib@2.8.1): - dependencies: - tslib: 2.8.1 - typescript@4.9.5: {} typescript@5.2.2: {} @@ -40025,29 +40930,29 @@ snapshots: typescript@5.9.3: {} - typia@5.5.10(@types/node@20.9.0)(typescript@5.9.3): + typia@5.5.10(@types/node@20.9.0)(typescript@5.3.3): dependencies: commander: 10.0.1 comment-json: 4.5.0 inquirer: 8.2.7(@types/node@20.9.0) randexp: 0.5.3 - typescript: 5.9.3 + typescript: 5.3.3 transitivePeerDependencies: - '@types/node' - typia@7.6.4(@samchon/openapi@2.5.3)(@types/node@20.9.0)(typescript@5.2.2): + typia@7.6.4(@samchon/openapi@2.5.3)(@types/node@20.19.42)(typescript@5.3.3): dependencies: '@samchon/openapi': 2.5.3 commander: 10.0.1 comment-json: 4.5.0 - inquirer: 8.2.7(@types/node@20.9.0) + inquirer: 8.2.7(@types/node@20.19.42) package-manager-detector: 0.2.11 randexp: 0.5.3 - typescript: 5.2.2 + typescript: 5.3.3 transitivePeerDependencies: - '@types/node' - typia@7.6.4(@samchon/openapi@2.5.3)(@types/node@20.9.0)(typescript@5.3.3): + typia@7.6.4(@samchon/openapi@2.5.3)(@types/node@20.9.0)(typescript@5.2.2): dependencies: '@samchon/openapi': 2.5.3 commander: 10.0.1 @@ -40055,11 +40960,11 @@ snapshots: inquirer: 8.2.7(@types/node@20.9.0) package-manager-detector: 0.2.11 randexp: 0.5.3 - typescript: 5.3.3 + typescript: 5.2.2 transitivePeerDependencies: - '@types/node' - typia@7.6.4(@samchon/openapi@2.5.3)(@types/node@20.9.0)(typescript@5.9.3): + typia@7.6.4(@samchon/openapi@2.5.3)(@types/node@20.9.0)(typescript@5.3.3): dependencies: '@samchon/openapi': 2.5.3 commander: 10.0.1 @@ -40067,11 +40972,11 @@ snapshots: inquirer: 8.2.7(@types/node@20.9.0) package-manager-detector: 0.2.11 randexp: 0.5.3 - typescript: 5.9.3 + typescript: 5.3.3 transitivePeerDependencies: - '@types/node' - typia@7.6.4(@samchon/openapi@2.5.3)(@types/node@25.0.3)(typescript@5.9.3): + typia@7.6.4(@samchon/openapi@2.5.3)(@types/node@25.0.3)(typescript@5.3.3): dependencies: '@samchon/openapi': 2.5.3 commander: 10.0.1 @@ -40079,7 +40984,7 @@ snapshots: inquirer: 8.2.7(@types/node@25.0.3) package-manager-detector: 0.2.11 randexp: 0.5.3 - typescript: 5.9.3 + typescript: 5.3.3 transitivePeerDependencies: - '@types/node' @@ -40089,6 +40994,8 @@ snapshots: ufo@1.6.1: {} + ufo@1.6.4: {} + uglify-js@3.19.3: optional: true @@ -40167,40 +41074,6 @@ snapshots: - vue-sfc-transformer - vue-tsc - unbuild@3.6.1(sass@1.97.0)(typescript@5.9.3): - dependencies: - '@rollup/plugin-alias': 5.1.1(rollup@4.53.5) - '@rollup/plugin-commonjs': 28.0.9(rollup@4.53.5) - '@rollup/plugin-json': 6.1.0(rollup@4.53.5) - '@rollup/plugin-node-resolve': 16.0.3(rollup@4.53.5) - '@rollup/plugin-replace': 6.0.3(rollup@4.53.5) - '@rollup/pluginutils': 5.3.0(rollup@4.53.5) - citty: 0.1.6 - consola: 3.4.2 - defu: 6.1.4 - esbuild: 0.25.12 - fix-dts-default-cjs-exports: 1.0.1 - hookable: 5.5.3 - jiti: 2.6.1 - magic-string: 0.30.21 - mkdist: 2.4.1(sass@1.97.0)(typescript@5.9.3) - mlly: 1.8.0 - pathe: 2.0.3 - pkg-types: 2.3.0 - pretty-bytes: 7.1.0 - rollup: 4.53.5 - rollup-plugin-dts: 6.3.0(rollup@4.53.5)(typescript@5.9.3) - scule: 1.3.0 - tinyglobby: 0.2.15 - untyped: 2.0.0 - optionalDependencies: - typescript: 5.9.3 - transitivePeerDependencies: - - sass - - vue - - vue-sfc-transformer - - vue-tsc - unconfig-core@7.4.2: dependencies: '@quansync/fs': 1.0.0 @@ -40222,10 +41095,15 @@ snapshots: undici-types@6.21.0: {} - undici-types@7.16.0: {} + undici-types@7.16.0: + optional: true + + undici@6.26.0: {} undici@7.16.0: {} + undici@7.24.7: {} + unicode-canonical-property-names-ecmascript@2.0.1: {} unicode-match-property-ecmascript@2.0.0: @@ -40439,7 +41317,7 @@ snapshots: optionalDependencies: synckit: 0.11.11 - unstorage@1.17.3: + unstorage@1.17.3(@azure/identity@4.13.1): dependencies: anymatch: 3.1.3 chokidar: 4.0.3 @@ -40449,12 +41327,14 @@ snapshots: node-fetch-native: 1.6.7 ofetch: 1.5.1 ufo: 1.6.1 + optionalDependencies: + '@azure/identity': 4.13.1 untyped@2.0.0: dependencies: citty: 0.1.6 defu: 6.1.4 - jiti: 2.4.2 + jiti: 2.6.1 knitwork: 1.3.0 scule: 1.3.0 @@ -40507,9 +41387,9 @@ snapshots: object-assign: 4.1.1 react: 17.0.2 - use-sync-external-store@1.6.0(react@18.2.0): + use-sync-external-store@1.6.0(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 util-deprecate@1.0.2: {} @@ -40864,10 +41744,7 @@ snapshots: dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.8 - '@types/glob-to-regexp': 0.4.4 - '@types/graceful-fs': 4.1.9 '@types/json-schema': 7.0.15 - '@types/mime-types': 2.1.4 '@webassemblyjs/ast': 1.14.1 '@webassemblyjs/wasm-edit': 1.14.1 '@webassemblyjs/wasm-parser': 1.14.1 @@ -40900,10 +41777,7 @@ snapshots: dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.8 - '@types/glob-to-regexp': 0.4.4 - '@types/graceful-fs': 4.1.9 '@types/json-schema': 7.0.15 - '@types/mime-types': 2.1.4 '@webassemblyjs/ast': 1.14.1 '@webassemblyjs/wasm-edit': 1.14.1 '@webassemblyjs/wasm-parser': 1.14.1 @@ -41055,6 +41929,8 @@ snapshots: ws@8.18.3: {} + ws@8.21.0: {} + wsl-utils@0.1.0: dependencies: is-wsl: 3.1.0 @@ -41087,6 +41963,8 @@ snapshots: yaml@2.8.2: {} + yaml@2.9.0: {} + yargs-parser@21.1.1: {} yargs@17.7.2: @@ -41132,12 +42010,14 @@ snapshots: zod@4.2.1: {} - zustand@4.5.7(@types/react@18.3.27)(react@18.2.0): + zod@4.4.3: {} + + zustand@4.5.7(@types/react@18.3.27)(react@18.3.1): dependencies: - use-sync-external-store: 1.6.0(react@18.2.0) + use-sync-external-store: 1.6.0(react@18.3.1) optionalDependencies: '@types/react': 18.3.27 - react: 18.2.0 + react: 18.3.1 zwitch@1.0.5: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 9165e826..79161107 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -6,104 +6,104 @@ packages: - "apps/**" - "docs/**" catalog: - "@ls-lint/ls-lint": "^2.3.1" - "@monodon/rust": "^2.3.0" - "@napi-rs/cli": "^3.5.0" - "@napi-rs/wasm-runtime": "^1.1.0" - "@nx/devkit": "22.3.1" - "@nx/eslint-plugin": "22.3.1" - "@nx/jest": "22.3.1" - "@nx/js": "22.3.1" - "@nx/plugin": "22.3.1" - "@nx/react": "22.3.1" - "@nx/storybook": "22.3.1" - "@nx/vite": "22.3.1" - "@nx/web": "22.3.1" - "@nx/workspace": "22.3.1" - "@oxc-project/runtime": "^0.97.0" - "@powerlines/nx": "^0.10.68" - "@powerlines/plugin-env": "^0.13.64" - "@powerlines/plugin-plugin": "^0.12.27" - "@powerlines/plugin-react": "^0.1.58" - "@powerlines/plugin-tsup": "^0.12.67" - "@powerlines/plugin-untyped": "^0.2.8" - "@powerlines/plugin-vite": "^0.14.58" - "@powerlines/tsconfig": "^0.2.43" - "@storm-software/config": "^1.134.72" - "@storm-software/config-tools": "^1.188.72" - "@storm-software/cspell": "^0.45.71" - "@storm-software/esbuild": "^0.53.60" - "@storm-software/eslint": "^0.169.73" - "@storm-software/git-tools": "^2.124.55" - "@storm-software/linting-tools": "^1.132.72" - "@storm-software/markdownlint": "^0.30.71" - "@storm-software/pnpm-tools": "^0.6.74" - "@storm-software/prettier": "^0.57.71" - "@storm-software/testing-tools": "^1.119.60" - "@storm-software/tsdoc": "^0.13.71" - "@storm-software/unbuild": "^0.57.60" - "@storm-software/untyped": "^0.24.53" - "@storm-software/workspace-tools": "^1.294.18" - "@stryke/convert": "^0.6.23" - "@stryke/crypto": "^0.5.24" - "@stryke/fs": "^0.33.19" - "@stryke/helpers": "^0.9.25" - "@stryke/path": "^0.22.10" - "@stryke/type-checks": "^0.5.8" - "@stryke/types": "^0.10.22" - "@stryke/url": "^0.3.14" - "@swc-node/register": "^1.11.1" - "@swc/core": "^1.15.3" - "@swc/helpers": "^0.5.17" - "@taplo/cli": "^0.7.0" - "@types/estree": "^1.0.8" - "@types/jest": "^30.0.0" - "@types/node": "20.9.0" - "@types/react": "^19.2.7" - "@types/react-dom": "^19.2.3" - "@vitest/ui": "^3.2.4" - copyfiles: "^2.4.1" - defu: "^6.1.4" - es-module-lexer: "^1.7.0" + "@ls-lint/ls-lint": "2.3.1" + "@monodon/rust": "2.3.0" + "@napi-rs/cli": "3.7.0" + "@napi-rs/wasm-runtime": "1.1.4" + "@nx/devkit": "22.7.5" + "@nx/eslint-plugin": "22.7.5" + "@nx/jest": "22.7.5" + "@nx/js": "22.7.5" + "@nx/plugin": "22.7.5" + "@nx/react": "22.7.5" + "@nx/storybook": "22.7.5" + "@nx/vite": "22.7.5" + "@nx/web": "22.7.5" + "@nx/workspace": "22.7.5" + "@oxc-project/runtime": "0.97.0" + "@powerlines/nx": "0.10.68" + "@powerlines/plugin-env": "0.13.106" + "@powerlines/plugin-plugin": "0.12.27" + "@powerlines/plugin-react": "0.1.666" + "@powerlines/plugin-tsup": "0.12.584" + "@powerlines/plugin-untyped": "0.2.542" + "@powerlines/plugin-vite": "0.14.581" + "@powerlines/tsconfig": "0.2.43" + "@storm-software/config": "1.134.72" + "@storm-software/config-tools": "1.188.72" + "@storm-software/cspell": "0.45.71" + "@storm-software/esbuild": "0.53.201" + "@storm-software/eslint": "0.169.73" + "@storm-software/git-tools": "2.124.55" + "@storm-software/linting-tools": "1.132.72" + "@storm-software/markdownlint": "0.30.71" + "@storm-software/pnpm-tools": "0.6.74" + "@storm-software/prettier": "0.57.71" + "@storm-software/testing-tools": "1.119.193" + "@storm-software/tsdoc": "0.13.71" + "@storm-software/unbuild": "0.57.201" + "@storm-software/untyped": "0.24.53" + "@storm-software/workspace-tools": "1.294.18" + "@stryke/convert": "0.6.58" + "@stryke/crypto": "0.5.44" + "@stryke/fs": "0.33.85" + "@stryke/helpers": "0.9.51" + "@stryke/path": "0.22.13" + "@stryke/type-checks": "0.5.41" + "@stryke/types": "0.10.53" + "@stryke/url": "0.3.39" + "@swc-node/register": "1.11.1" + "@swc/core": "1.15.40" + "@swc/helpers": "0.5.23" + "@taplo/cli": "0.7.0" + "@types/estree": "1.0.9" + "@types/jest": "30.0.0" + "@types/node": "20.19.42" + "@types/react": "19.2.17" + "@types/react-dom": "19.2.3" + "@vitest/ui": "3.2.6" + copyfiles: "2.4.1" + defu: "6.1.4" + es-module-lexer: "1.7.0" esbuild: "^0.24.2" - eslint: "^9.39.1" - eslint-flat-config-utils: "^2.1.4" - estree-walker: "^3.0.3" - jest: "^30.2.0" - jest-environment-jsdom: "^30.2.0" - jest-environment-node: "^30.2.0" - jest-util: "^30.2.0" - jiti: "^2.6.1" - jsonc-eslint-parser: "^2.4.1" - langium: "^2.1.3" - lefthook: "^1.13.6" - log4brains: "^1.1.0" - magic-string: "^0.30.21" - nx: "22.3.1" - periscopic: "^4.0.2" - powerlines: "^0.30.13" - prettier: "^3.7.4" - prettier-plugin-prisma: "^5.0.0" - prettier-plugin-tailwindcss: "^0.5.14" - react: "^19.2.1" - react-dom: "^19.2.1" - rimraf: "^5.0.10" - rsc-html-stream: "^0.0.7" - sherif: "^1.9.0" - signal-exit: "^4.1.0" - tailwindcss: "3.2.7" + eslint: "9.39.4" + eslint-flat-config-utils: "2.1.4" + estree-walker: "3.0.3" + jest: "30.4.2" + jest-environment-jsdom: "30.4.1" + jest-environment-node: "30.4.1" + jest-util: "30.4.1" + jiti: "2.7.0" + jsonc-eslint-parser: "2.4.2" + langium: "2.1.3" + lefthook: "1.13.6" + log4brains: "1.1.0" + magic-string: "0.30.21" + nx: "22.7.5" + periscopic: "4.0.3" + powerlines: "0.30.13" + prettier: "3.8.3" + prettier-plugin-prisma: "5.0.0" + prettier-plugin-tailwindcss: "0.5.14" + react: "19.2.7" + react-dom: "19.2.7" + rimraf: "5.0.10" + rsc-html-stream: "0.0.7" + sherif: "1.11.1" + signal-exit: "4.1.0" + tailwindcss: "3.4.19" ts-jest: "29.4.1" - ts-node: "^10.9.2" - tslib: "^2.8.1" - tsup: "8.4.0" - tsx: "^4.21.0" - turbo-stream: "^3.1.0" - typescript: "^5.9.3" - verdaccio: "^5.33.0" - vite: "^5.4.21" - vite-plugin-dts: "~4.5.4" + ts-node: "10.9.2" + tslib: "2.8.1" + tsup: "8.5.1" + tsx: "4.22.4" + turbo-stream: "3.2.0" + typescript: "5.9.3" + verdaccio: "5.33.0" + vite: "5.4.21" + vite-plugin-dts: "4.5.4" vitest: "1.0.4" - zx: "^8.8.5" + zx: "8.8.5" configDependencies: pnpm-plugin-storm-software: "0.1.4+sha512-Hegfb70ijqCc65CZwy8aLYhxrYQv3Wo+MZXqSfNAfcge7iSGYm2J3ydU5zkmf89JSvMOJy8J6lo/TMynBGvgtA==" fetchTimeout: 240000 diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 7e3acb6a..6d4fac20 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "1.91.1" +channel = "1.96.0" components = [ "rustc", "cargo",