diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index b7b4acd2bc..d8d1b93272 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -27,21 +27,21 @@ jobs: with: node-version: 26 package-manager-cache: false - - name: Setup pnpm - uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 + - name: Setup nub + uses: nubjs/setup-nub@47e5e7393d50f4e9544ddaf756aa277972afba2d # v0.4.0 - name: Install dependencies - run: pnpm install --frozen-lockfile + run: nub install --frozen-lockfile - name: Check formatting - run: node --run format:check + run: nub run format:check - name: Build packages - run: node --run build + run: nub run build - name: Lint - run: node --run lint + run: nub run lint - name: Verify rules - run: node --run check:rules + run: nub run check:rules - name: Lint MDX - run: node --run lint:mdx + run: nub run lint:mdx - name: Check website types - run: pnpm -F "./apps/website" run types:check + run: nub run --filter "./apps/website" types:check - name: Verify generated files are up to date run: git --no-pager diff --exit-code diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f5fa6f680c..005da250a3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -29,26 +29,26 @@ jobs: with: node-version: 26 package-manager-cache: false - - name: Setup pnpm - uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 + - name: Setup nub + uses: nubjs/setup-nub@47e5e7393d50f4e9544ddaf756aa277972afba2d # v0.4.0 - name: Install dependencies - run: pnpm install --frozen-lockfile --ignore-scripts + run: nub install --frozen-lockfile --ignore-scripts - name: Build packages - run: node --run build + run: nub run build - name: Publish run: | if git log -1 --pretty=%B | grep "^release: [0-9]\+\.[0-9]\+\.[0-9]\+$"; then - pnpm --filter "./packages/*" --filter "./plugins/*" publish --provenance --access public + nub --filter "./packages/*" --filter "./plugins/*" publish --provenance --access public elif git log -1 --pretty=%B | grep "^release: [0-9]\+\.[0-9]\+\.[0-9]\+-rc\.[0-9]\+$"; then - pnpm --filter "./packages/*" --filter "./plugins/*" publish --provenance --access public --tag rc --no-git-checks + nub --filter "./packages/*" --filter "./plugins/*" publish --provenance --access public --tag rc --no-git-checks elif git log -1 --pretty=%B | grep "^release: [0-9]\+\.[0-9]\+\.[0-9]\+-beta\.[0-9]\+$"; then - pnpm --filter "./packages/*" --filter "./plugins/*" publish --provenance --access public --tag beta --no-git-checks + nub --filter "./packages/*" --filter "./plugins/*" publish --provenance --access public --tag beta --no-git-checks elif git log -1 --pretty=%B | grep "^release: [0-9]\+\.[0-9]\+\.[0-9]\+-next\.[0-9]\+$"; then - pnpm --filter "./packages/*" --filter "./plugins/*" publish --provenance --access public --tag next --no-git-checks + nub --filter "./packages/*" --filter "./plugins/*" publish --provenance --access public --tag next --no-git-checks else echo "Not a release, skipping publish" fi diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 633d20ec23..c72f0f7c71 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,14 +24,14 @@ jobs: node-version: 26 package-manager-cache: false - - name: Setup pnpm - uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 + - name: Setup nub + uses: nubjs/setup-nub@47e5e7393d50f4e9544ddaf756aa277972afba2d # v0.4.0 - name: Install dependencies - run: pnpm install --frozen-lockfile --ignore-scripts + run: nub install --frozen-lockfile --ignore-scripts - name: Build - run: node --run build + run: nub run build - name: Determine release info id: release @@ -75,7 +75,7 @@ jobs: if: steps.release.outputs.is_release == 'true' run: | for dir in packages/*/ plugins/*/; do - (cd "$dir" && pnpm pack) + (cd "$dir" && nub pack) done - name: Attest packages diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9ca004e8f9..e87f2e674c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,29 +27,25 @@ jobs: with: node-version: 26 package-manager-cache: false - - name: Setup pnpm - uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 + - name: Setup nub + uses: nubjs/setup-nub@47e5e7393d50f4e9544ddaf756aa277972afba2d # v0.4.0 - name: Install dependencies - run: pnpm install --frozen-lockfile + run: nub install --frozen-lockfile - name: Build packages - run: node --run build + run: nub run build - name: Test on node@26 - run: node --run test + run: nub run test - name: Setup node@24 uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 with: node-version: 24 package-manager-cache: false - - name: Setup pnpm - uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 - name: Test on node@24 - run: node --run test + run: nub run test - name: Setup node@22 uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 with: node-version: 22 package-manager-cache: false - - name: Setup pnpm - uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 - name: Test on node@22 - run: node --run test + run: nub run test diff --git a/.pkgs/eff/package.json b/.pkgs/eff/package.json index 7d95db5e73..7089072e08 100644 --- a/.pkgs/eff/package.json +++ b/.pkgs/eff/package.json @@ -34,7 +34,7 @@ "build:docs": "typedoc", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build && node --run lint:publish" + "publish": "nub run build && nub run lint:publish" }, "devDependencies": { "@local/configs": "workspace:*", diff --git a/.pkgs/samples/package.json b/.pkgs/samples/package.json index 453f2d5d37..968de33413 100644 --- a/.pkgs/samples/package.json +++ b/.pkgs/samples/package.json @@ -33,7 +33,7 @@ "build:docs": "typedoc", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build:docs && node --run lint:publish" + "publish": "nub run build:docs && nub run lint:publish" }, "dependencies": { "@eslint-react/kit": "workspace:*", diff --git a/.pkgs/testkit/package.json b/.pkgs/testkit/package.json index 74b058b971..54529ed860 100644 --- a/.pkgs/testkit/package.json +++ b/.pkgs/testkit/package.json @@ -33,7 +33,7 @@ "build:docs": "typedoc", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build:docs && node --run lint:publish" + "publish": "nub run build:docs && nub run lint:publish" }, "dependencies": { "@typescript-eslint/parser": "^8.64.0", diff --git a/apps/website/vercel.json b/apps/website/vercel.json new file mode 100644 index 0000000000..8fede142c6 --- /dev/null +++ b/apps/website/vercel.json @@ -0,0 +1,5 @@ +{ + "$schema": "https://openapi.vercel.sh/vercel.json", + "installCommand": "cd ../.. && npm install --global --ignore-scripts=false @nubjs/nub && nub install", + "buildCommand": "nub run build" +} diff --git a/docs/rule-feature-system.md b/docs/rule-feature-system.md index 643e240304..0500505782 100644 --- a/docs/rule-feature-system.md +++ b/docs/rule-feature-system.md @@ -48,7 +48,7 @@ const RULE_FEATURES = ["EXP"]; // static-components: experimental detection ## How Features Drive Presets -Feature metadata is the source of truth for badges and categorization, but the preset files themselves are maintained manually. The `scripts/20-check-rules.ts` script (run via `node --run check:rules`) verifies config consistency—registered rules are accounted for, config keys are valid, and preset hierarchies hold—but it does not check `RULE_FEATURES` flags. Keeping `disable-type-checked` and `disable-experimental` aligned with `RULE_FEATURES` is currently a manual step. +Feature metadata is the source of truth for badges and categorization, but the preset files themselves are maintained manually. The `scripts/20-check-rules.ts` script (run via `nub run check:rules`) verifies config consistency—registered rules are accounted for, config keys are valid, and preset hierarchies hold—but it does not check `RULE_FEATURES` flags. Keeping `disable-type-checked` and `disable-experimental` aligned with `RULE_FEATURES` is currently a manual step. Rules marked `TSC` are disabled in `disable-type-checked.ts`: @@ -86,5 +86,5 @@ export const rules: Linter.RulesRecord = { 2. Remove the rule from `disable-experimental.ts`. 3. Add it to `recommended.ts` or `strict.ts`. 4. Remove experimental warnings from its `.mdx` docs. -5. Run `node --run check:rules`. +5. Run `nub run check:rules`. 6. Update `CHANGELOG.md`. diff --git a/docs/rule-rename-checklist.md b/docs/rule-rename-checklist.md index c5f0cabfa9..dd74a0ecac 100644 --- a/docs/rule-rename-checklist.md +++ b/docs/rule-rename-checklist.md @@ -56,8 +56,8 @@ Checklist for renaming or moving rules in `eslint-plugin-react-x` and `@eslint-r ### A9. Verify -- [ ] `pnpm tsc --noEmit` -- [ ] `pnpm vitest run src/rules//.spec.ts` +- [ ] `nub exec tsc --noEmit` +- [ ] `nub exec vitest run src/rules//.spec.ts` - [ ] `grep -r --exclude-dir=node_modules --exclude-dir=dist "" plugins/ packages/` — no leftover references --- @@ -67,7 +67,7 @@ Checklist for renaming or moving rules in `eslint-plugin-react-x` and `@eslint-r ### B1. Dependencies - [ ] Check if the source plugin uses dependencies not yet listed in `eslint-plugin-react-x/package.json`. -- [ ] Add any missing dependencies and run `pnpm install --filter eslint-plugin-react-x`. +- [ ] Add any missing dependencies and run `nub install --filter eslint-plugin-react-x`. ### B2. New Source Files (in `eslint-plugin-react-x`) @@ -111,8 +111,8 @@ Checklist for renaming or moving rules in `eslint-plugin-react-x` and `@eslint-r ### B8. Verify -- [ ] `pnpm tsc --noEmit` in all affected packages. -- [ ] `pnpm vitest run src/rules//.spec.ts` +- [ ] `nub exec tsc --noEmit` in all affected packages. +- [ ] `nub exec vitest run src/rules//.spec.ts` - [ ] `grep -r --exclude-dir=node_modules --exclude-dir=dist "react-/" plugins/ packages/` — no stale references --- diff --git a/nx.json b/nx.json index 52fd2f24a6..f4b7571695 100644 --- a/nx.json +++ b/nx.json @@ -3,6 +3,9 @@ "parallel": 8, "cacheDirectory": ".nx/cache", "defaultBase": "main", + "cli": { + "packageManager": "npm" + }, "namedInputs": { "default": [ "{projectRoot}/**/*", diff --git a/package.json b/package.json index 05e4775e83..6f2a438e68 100644 --- a/package.json +++ b/package.json @@ -28,32 +28,32 @@ "author": "Rel1cx", "type": "module", "scripts": { - "build": "node --run build:pkgs && node --run build:packages && node --run build:plugins", + "build": "nub run build:pkgs && nub run build:packages && nub run build:plugins", "build:docs": "nx run-many -t build:docs --parallel", "build:packages": "nx run-many -t build -p 'packages/*' --parallel", "build:pkgs": "nx run-many -t build -p '.pkgs/*' --parallel", "build:plugins": "nx run-many -t build -p 'plugins/*' --parallel", - "build:website": "node --run update:website && pnpm -F \"./apps/website\" run build", - "check:rules": "vite-node -c vitest.config.ts ./scripts/20-check-rules.ts", + "build:website": "nub run update:website && nub run --filter \"./apps/website\" build", + "check:rules": "nub ./scripts/20-check-rules.ts", "format:check": "dprint check", "format:write": "dprint fmt", - "lint": "node --run lint:publish && node --run lint:ts && node --run lint:es && node --run lint:examples && node --run lint:text", + "lint": "nub run lint:publish && nub run lint:ts && nub run lint:es && nub run lint:examples && nub run lint:text", "lint:es": "eslint . --max-warnings 100 --concurrency=auto", - "lint:examples": "pnpm m -F \"./examples/*\" run lint", + "lint:examples": "nub run --filter \"./examples/*\" lint", "lint:mdx": "mdxlint plugins/**/*.mdx apps/**/*.mdx --frail --no-stdout", "lint:mdx:write": "mdxlint plugins/**/*.mdx -o && mdxlint apps/**/*.mdx -o", "lint:publish": "nx run-many -t lint:publish --parallel", "lint:text": "textlint '**/*.md' '**/*.mdx'", "lint:ts": "nx run-many -t lint:ts --parallel", - "lint:website": "pnpm -F \"./apps/website\" run lint", - "prepare": "node --run update:all && node --run build", - "scaffold:rule": "vite-node ./scripts/90-scaffold-rule.ts", - "sort:package-json": "pnpm m exec sort-package-json -q package.json && dprint fmt", + "lint:website": "nub run --filter \"./apps/website\" lint", + "prepare": "nub run update:all && nub run build", + "scaffold:rule": "nub ./scripts/90-scaffold-rule.ts", + "sort:package-json": "nub exec sort-package-json -q \".pkgs/*/package.json\" \"apps/*/package.json\" \"packages/*/package.json\" \"plugins/*/package.json\" \"examples/*/package.json\" && dprint fmt", "test": "vitest run --logHeapUsage", - "update:all": "node --run update:version && node --run update:readme && node --run update:website", - "update:readme": "vite-node ./scripts/11-update-readme.ts", - "update:version": "vite-node ./scripts/10-update-version.ts", - "update:website": "vite-node ./scripts/12-update-website.ts" + "update:all": "nub run update:version && nub run update:readme && nub run update:website", + "update:readme": "nub ./scripts/11-update-readme.ts", + "update:version": "nub ./scripts/10-update-version.ts", + "update:website": "nub ./scripts/12-update-website.ts" }, "devDependencies": { "@effect/language-service": "^0.86.6", @@ -104,10 +104,8 @@ "typedoc-plugin-mdn-links": "^5.1.1", "typescript": "6.0.3", "typescript-eslint": "^8.64.0", - "vite-node": "^6.0.0", "vitest": "^4.1.10" }, - "packageManager": "pnpm@11.15.0", "engines": { "node": ">=22.0.0" } diff --git a/packages/ast/package.json b/packages/ast/package.json index 7c2a30be60..50b38b7598 100644 --- a/packages/ast/package.json +++ b/packages/ast/package.json @@ -33,7 +33,7 @@ "build:docs": "typedoc", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build && node --run lint:publish" + "publish": "nub run build && nub run lint:publish" }, "dependencies": { "@typescript-eslint/types": "^8.64.0", diff --git a/packages/core/package.json b/packages/core/package.json index 8d8da4f6b9..b1b438f6ad 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -33,7 +33,7 @@ "build:docs": "typedoc", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build && node --run lint:publish" + "publish": "nub run build && nub run lint:publish" }, "dependencies": { "@eslint-react/ast": "workspace:*", diff --git a/packages/eslint/package.json b/packages/eslint/package.json index 227b85d729..f333574986 100644 --- a/packages/eslint/package.json +++ b/packages/eslint/package.json @@ -33,7 +33,7 @@ "build:docs": "typedoc", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build && node --run lint:publish" + "publish": "nub run build && nub run lint:publish" }, "dependencies": { "@typescript-eslint/utils": "^8.64.0" diff --git a/packages/jsx/package.json b/packages/jsx/package.json index 5bc60f6d12..639078bee8 100644 --- a/packages/jsx/package.json +++ b/packages/jsx/package.json @@ -33,7 +33,7 @@ "build:docs": "typedoc", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build && node --run lint:publish" + "publish": "nub run build && nub run lint:publish" }, "dependencies": { "@eslint-react/ast": "workspace:*", diff --git a/packages/kit/package.json b/packages/kit/package.json index dd0ea28759..79099231e0 100644 --- a/packages/kit/package.json +++ b/packages/kit/package.json @@ -39,7 +39,7 @@ "build:docs": "typedoc", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build && node --run lint:publish" + "publish": "nub run build && nub run lint:publish" }, "dependencies": { "@eslint-react/ast": "workspace:*", diff --git a/packages/shared/package.json b/packages/shared/package.json index 4341241c7a..533d8e464e 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -33,7 +33,7 @@ "build:docs": "typedoc", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build && node --run lint:publish" + "publish": "nub run build && nub run lint:publish" }, "dependencies": { "@eslint-react/eslint": "workspace:*", diff --git a/packages/var/package.json b/packages/var/package.json index bb3adcae75..996ffdaf1f 100644 --- a/packages/var/package.json +++ b/packages/var/package.json @@ -33,7 +33,7 @@ "build:docs": "typedoc", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build && node --run lint:publish" + "publish": "nub run build && nub run lint:publish" }, "dependencies": { "@eslint-react/ast": "workspace:*", diff --git a/plugins/eslint-plugin-react-debug/package.json b/plugins/eslint-plugin-react-debug/package.json index 359a7ce5cf..8afdae0a86 100644 --- a/plugins/eslint-plugin-react-debug/package.json +++ b/plugins/eslint-plugin-react-debug/package.json @@ -40,7 +40,7 @@ "build": "tsdown", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build && node --run lint:publish" + "publish": "nub run build && nub run lint:publish" }, "dependencies": { "@eslint-react/ast": "workspace:*", diff --git a/plugins/eslint-plugin-react-dom/package.json b/plugins/eslint-plugin-react-dom/package.json index 90c18602ea..54c0e096e5 100644 --- a/plugins/eslint-plugin-react-dom/package.json +++ b/plugins/eslint-plugin-react-dom/package.json @@ -40,7 +40,7 @@ "build": "tsdown", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build && node --run lint:publish" + "publish": "nub run build && nub run lint:publish" }, "dependencies": { "@eslint-react/ast": "workspace:*", diff --git a/plugins/eslint-plugin-react-jsx/package.json b/plugins/eslint-plugin-react-jsx/package.json index fff0d75c98..de42ca622f 100644 --- a/plugins/eslint-plugin-react-jsx/package.json +++ b/plugins/eslint-plugin-react-jsx/package.json @@ -40,7 +40,7 @@ "build": "tsdown", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build && node --run lint:publish" + "publish": "nub run build && nub run lint:publish" }, "dependencies": { "@eslint-react/ast": "workspace:*", diff --git a/plugins/eslint-plugin-react-naming-convention/package.json b/plugins/eslint-plugin-react-naming-convention/package.json index 6a9eefacf7..56a2ba4fab 100644 --- a/plugins/eslint-plugin-react-naming-convention/package.json +++ b/plugins/eslint-plugin-react-naming-convention/package.json @@ -40,7 +40,7 @@ "build": "tsdown", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build && node --run lint:publish" + "publish": "nub run build && nub run lint:publish" }, "dependencies": { "@eslint-react/ast": "workspace:*", diff --git a/plugins/eslint-plugin-react-rsc/package.json b/plugins/eslint-plugin-react-rsc/package.json index cc6175faf6..7bd75609b7 100644 --- a/plugins/eslint-plugin-react-rsc/package.json +++ b/plugins/eslint-plugin-react-rsc/package.json @@ -39,7 +39,7 @@ "build": "tsdown", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build && node --run lint:publish" + "publish": "nub run build && nub run lint:publish" }, "dependencies": { "@eslint-react/ast": "workspace:*", diff --git a/plugins/eslint-plugin-react-web-api/package.json b/plugins/eslint-plugin-react-web-api/package.json index a3674defcc..dad3f090cd 100644 --- a/plugins/eslint-plugin-react-web-api/package.json +++ b/plugins/eslint-plugin-react-web-api/package.json @@ -40,7 +40,7 @@ "build": "tsdown", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build && node --run lint:publish" + "publish": "nub run build && nub run lint:publish" }, "dependencies": { "@eslint-react/ast": "workspace:*", diff --git a/plugins/eslint-plugin-react-x/package.json b/plugins/eslint-plugin-react-x/package.json index 8229f1afe5..7025aebda5 100644 --- a/plugins/eslint-plugin-react-x/package.json +++ b/plugins/eslint-plugin-react-x/package.json @@ -39,7 +39,7 @@ "build": "tsdown", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build && node --run lint:publish" + "publish": "nub run build && nub run lint:publish" }, "dependencies": { "@eslint-react/ast": "workspace:*", diff --git a/plugins/eslint-plugin/package.json b/plugins/eslint-plugin/package.json index e25eea64ca..799c6e4e96 100644 --- a/plugins/eslint-plugin/package.json +++ b/plugins/eslint-plugin/package.json @@ -45,7 +45,7 @@ "build": "tsdown", "lint:publish": "publint", "lint:ts": "tsl", - "publish": "node --run build && node --run lint:publish" + "publish": "nub run build && nub run lint:publish" }, "dependencies": { "@eslint-react/shared": "workspace:*", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e5188501e2..eb7800d6da 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -27,23 +27,23 @@ overrides: follow-redirects: ^1.16.0 form-data: ^4.0.6 js-yaml: ^4.3.0 - lodash-es: ^4.18.1 lodash: ^4.18.1 + lodash-es: ^4.18.1 mermaid: ^11.16.0 minimatch: ^10.2.5 next: ^16.2.10 path-to-regexp: ^8.4.2 postcss: ^8.5.19 - react-dom: ^19.2.7 react: ^19.2.7 + react-dom: ^19.2.7 semver: ^7.8.5 tmp: ^0.2.7 ts-api-utils: ^2.5.0 tslib: ^2.8.1 - typescript-eslint: ^8.64.0 typescript: 6.0.3 - undici-types: ^8.7.0 + typescript-eslint: ^8.64.0 undici: ^8.7.0 + undici-types: ^8.7.0 uuid: ^14.0.1 importers: @@ -64,7 +64,7 @@ importers: version: link:plugins/eslint-plugin '@eslint/compat': specifier: ^2.1.0 - version: 2.1.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0)) + version: 2.1.0(eslint@10.7.0(jiti@2.7.0)) '@local/configs': specifier: workspace:* version: link:.pkgs/configs @@ -82,7 +82,7 @@ importers: version: 2.0.2 '@textlint/textlint-plugin-markdown': specifier: ^15.7.1 - version: 15.7.1(supports-color@7.2.0) + version: 15.7.1 '@tsconfig/node24': specifier: ^24.0.4 version: 24.0.4 @@ -100,13 +100,13 @@ importers: version: 19.2.3(@types/react@19.2.17) '@typescript-eslint/parser': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) '@typescript-eslint/rule-tester': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) '@typescript-eslint/types': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 ansis: specifier: ^4.3.1 version: 4.3.1 @@ -118,7 +118,7 @@ importers: version: 1.7.2 depcheck: specifier: ^1.4.7 - version: 1.4.7(supports-color@7.2.0) + version: 1.4.7 dprint: specifier: ^0.54.0 version: 0.54.0 @@ -127,16 +127,16 @@ importers: version: 3.22.0 eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@7.2.0) + version: 10.7.0(jiti@2.7.0) eslint-plugin-package-json: specifier: ^1.6.0 - version: 1.6.0(@types/estree@1.0.9)(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0)) + version: 1.6.0(eslint@10.7.0(jiti@2.7.0)) import-integrity-lint: specifier: ^1.1.4 - version: 1.1.4(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2)(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + version: 1.2.0(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2)(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) mdxlint: specifier: ^1.0.0 - version: 1.0.0(supports-color@7.2.0) + version: 1.0.0 nx: specifier: ^23.1.0 version: 23.1.0 @@ -148,22 +148,22 @@ importers: version: 0.3.21 react: specifier: ^19.2.7 - version: 19.2.7 + version: 19.2.8 react-dom: specifier: ^19.2.7 - version: 19.2.7(react@19.2.7) + version: 19.2.8(react@19.2.8) remark-frontmatter: specifier: ^5.0.0 - version: 5.0.0(supports-color@7.2.0) + version: 5.0.0 remark-gfm: specifier: ^4.0.1 - version: 4.0.1(supports-color@7.2.0) + version: 4.0.1 sort-package-json: specifier: ^4.0.0 version: 4.0.0 textlint: specifier: ^15.7.1 - version: 15.7.1(supports-color@7.2.0) + version: 15.7.1 tinyglobby: specifier: ^0.2.17 version: 0.2.17 @@ -172,7 +172,7 @@ importers: version: 5.9.0 tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) tsl: specifier: ^1.0.30 version: 1.0.30(typescript@6.0.3) @@ -181,7 +181,7 @@ importers: version: 0.28.20(typescript@6.0.3) typedoc-plugin-file-overview: specifier: ^0.2.0 - version: 0.2.0(typedoc-plugin-markdown@4.12.0(typedoc@0.28.20(typescript@6.0.3)))(typedoc@0.28.20(typescript@6.0.3)) + version: 0.2.0(typedoc@0.28.20(typescript@6.0.3))(typedoc-plugin-markdown@4.12.0(typedoc@0.28.20(typescript@6.0.3))) typedoc-plugin-markdown: specifier: ^4.12.0 version: 4.12.0(typedoc@0.28.20(typescript@6.0.3)) @@ -193,50 +193,47 @@ importers: version: 6.0.3 typescript-eslint: specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - vite-node: - specifier: ^6.0.0 - version: 6.0.0(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) vitest: specifier: ^4.1.10 - version: 4.1.10(@types/node@26.1.1)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)) + version: 4.1.10(@types/node@26.1.1)(vite@8.1.5(@types/node@26.1.1)(jiti@2.7.0)(tsx@4.23.1)) .pkgs/configs: dependencies: '@eslint/compat': specifier: ^2.1.0 - version: 2.1.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 2.1.0(eslint@10.7.0(jiti@2.7.0)) '@stylistic/eslint-plugin': specifier: ^5.10.0 - version: 5.10.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 5.10.0(eslint@10.7.0(jiti@2.7.0)) eslint-plugin-de-morgan: specifier: ^2.1.3 - version: 2.1.3(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 2.1.3(eslint@10.7.0(jiti@2.7.0)) eslint-plugin-jsdoc: specifier: ^63.1.0 - version: 63.1.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0) + version: 63.2.0(eslint@10.7.0(jiti@2.7.0)) eslint-plugin-perfectionist: specifier: ^5.10.0 - version: 5.10.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 5.10.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) eslint-plugin-regexp: specifier: ^3.1.1 - version: 3.1.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 3.1.1(eslint@10.7.0(jiti@2.7.0)) eslint-plugin-unicorn: specifier: ^69.0.0 - version: 69.0.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 69.0.0(eslint@10.7.0(jiti@2.7.0)) typescript-eslint: specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) devDependencies: eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) tinyglobby: specifier: ^0.2.17 version: 0.2.17 tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) tsl: specifier: ^1.0.30 version: 1.0.30(typescript@6.0.3) @@ -248,7 +245,7 @@ importers: version: 0.28.20(typescript@6.0.3) typedoc-plugin-file-overview: specifier: ^0.2.0 - version: 0.2.0(typedoc-plugin-markdown@4.12.0(typedoc@0.28.20(typescript@6.0.3)))(typedoc@0.28.20(typescript@6.0.3)) + version: 0.2.0(typedoc@0.28.20(typescript@6.0.3))(typedoc-plugin-markdown@4.12.0(typedoc@0.28.20(typescript@6.0.3))) typedoc-plugin-markdown: specifier: ^4.12.0 version: 4.12.0(typedoc@0.28.20(typescript@6.0.3)) @@ -266,7 +263,7 @@ importers: version: link:../configs tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) .pkgs/samples: dependencies: @@ -275,13 +272,13 @@ importers: version: link:../../packages/kit '@typescript-eslint/types': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/typescript-estree': specifier: ^8.64.0 - version: 8.64.0(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(typescript@6.0.3) '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) ts-pattern: specifier: ^5.9.0 version: 5.9.0 @@ -306,34 +303,34 @@ importers: version: 19.2.3(@types/react@19.2.17) eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) typescript: specifier: 6.0.3 version: 6.0.3 typescript-eslint: specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) .pkgs/testkit: dependencies: '@typescript-eslint/parser': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) '@typescript-eslint/rule-tester': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) '@typescript-eslint/types': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/typescript-estree': specifier: ^8.64.0 - version: 8.64.0(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(typescript@6.0.3) '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) devDependencies: '@local/configs': specifier: workspace:* @@ -346,19 +343,19 @@ importers: version: 2.0.8 eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) expect-type: specifier: ^1.4.0 version: 1.4.0 tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) typescript: specifier: 6.0.3 version: 6.0.3 vitest: specifier: ^4.1.10 - version: 4.1.10(@types/node@26.1.1)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)) + version: 4.1.10(@types/node@26.1.1)(vite@8.1.5(@types/node@26.1.1)(jiti@2.7.0)(tsx@4.23.1)) apps/website: dependencies: @@ -379,10 +376,10 @@ importers: version: link:../../packages/shared '@eslint/compat': specifier: ^2.1.0 - version: 2.1.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 2.1.0(eslint@10.7.0(jiti@2.7.0)) '@eslint/js': specifier: ^10.0.1 - version: 10.0.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 10.0.1(eslint@10.7.0(jiti@2.7.0)) '@local/configs': specifier: workspace:* version: link:../../.pkgs/configs @@ -394,16 +391,16 @@ importers: version: link:../../.pkgs/samples '@mdx-js/mdx': specifier: ^3.1.1 - version: 3.1.1(supports-color@9.4.0) + version: 3.1.1 '@tailwindcss/postcss': specifier: ^4.3.3 version: 4.3.3 '@takumi-rs/image-response': specifier: ^1.8.7 - version: 1.8.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + version: 1.8.7(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) '@theguild/remark-mermaid': specifier: ^0.3.0 - version: 0.3.0(react@19.2.7) + version: 0.3.0(react@19.2.8) '@tsconfig/next': specifier: ^2.0.6 version: 2.0.6 @@ -430,16 +427,16 @@ importers: version: 19.2.3(@types/react@19.2.17) '@typescript-eslint/types': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) beautiful-mermaid: specifier: ^1.1.3 version: 1.1.3 bsky-react-post: specifier: ^0.1.7 - version: 0.1.7(react@19.2.7)(swr@2.4.2(react@19.2.7)) + version: 0.1.7(react@19.2.8)(swr@2.4.2(react@19.2.8)) clsx: specifier: ^2.1.1 version: 2.1.1 @@ -451,55 +448,55 @@ importers: version: 3.22.0 eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) eslint-plugin-react-hooks: specifier: ^7.1.1 - version: 7.1.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0) + version: 7.1.1(eslint@10.7.0(jiti@2.7.0)) eslint-plugin-react-refresh: specifier: ^0.5.3 - version: 0.5.3(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 0.5.3(eslint@10.7.0(jiti@2.7.0)) fumadocs-core: specifier: ^16.11.5 - version: 16.11.5(@mdx-js/mdx@3.1.1(supports-color@9.4.0))(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.7))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(supports-color@9.4.0)(zod@4.4.3) + version: 16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3) fumadocs-docgen: specifier: ^3.1.0 - version: 3.1.0(@types/estree@1.0.9)(@types/hast@3.0.5)(@types/mdast@4.0.4)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1(supports-color@9.4.0))(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.7))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(supports-color@9.4.0)(zod@4.4.3))(mdast-util-mdx@3.0.0(supports-color@9.4.0)) + version: 3.1.0(@types/estree@1.0.9)(@types/hast@3.0.5)(@types/mdast@4.0.4)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3))(mdast-util-mdx@3.0.0) fumadocs-mdx: specifier: ^15.2.0 - version: 15.2.0(@types/mdast@4.0.4)(@types/mdx@2.0.14)(@types/react@19.2.17)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1(supports-color@9.4.0))(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.7))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(supports-color@9.4.0)(zod@4.4.3))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)(rolldown@1.2.0)(supports-color@9.4.0)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)) + version: 15.2.0(@types/mdast@4.0.4)(@types/mdx@2.0.14)(@types/react@19.2.17)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(rolldown@1.2.0)(vite@8.1.5(@types/node@26.1.1)(jiti@2.7.0)(tsx@4.23.1)) fumadocs-twoslash: specifier: ^3.3.0 - version: 3.3.0(e1e233f65304a3542d6c76548a844b15) + version: 3.3.0(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3))(fumadocs-ui@16.11.5(@types/mdx@2.0.14)(@types/react@19.2.17)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(takumi-js@1.8.7))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(shiki@4.3.1)(tailwindcss@4.3.3)(typescript@6.0.3) fumadocs-typescript: specifier: ^5.3.0 - version: 5.3.0(e4fa03a9b157939d9ef4d6440a1d619b) + version: 5.3.0(@types/estree@1.0.9)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3))(fumadocs-ui@16.11.5(@types/mdx@2.0.14)(@types/react@19.2.17)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(takumi-js@1.8.7))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(tailwindcss@4.3.3) fumadocs-ui: specifier: ^16.11.5 - version: 16.11.5(@types/mdx@2.0.14)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1(supports-color@9.4.0))(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.7))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(supports-color@9.4.0)(zod@4.4.3))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(tailwindcss@4.3.3)(takumi-js@1.8.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7)) + version: 16.11.5(@types/mdx@2.0.14)(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(tailwindcss@4.3.3)(takumi-js@1.8.7) import-integrity-lint: specifier: ^1.1.4 - version: 1.1.4(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2)(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 1.2.0(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2)(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) importx: specifier: ^0.5.2 - version: 0.5.2(supports-color@9.4.0) + version: 0.5.2 lucide-react: specifier: ^1.25.0 - version: 1.25.0(react@19.2.7) + version: 1.25.0(react@19.2.8) next: specifier: ^16.2.10 - version: 16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + version: 16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) next-view-transitions: specifier: ^0.3.5 - version: 0.3.5(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + version: 0.3.5(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) postcss: specifier: ^8.5.19 - version: 8.5.19 + version: 8.5.21 react: specifier: ^19.2.7 - version: 19.2.7 + version: 19.2.8 react-dom: specifier: ^19.2.7 - version: 19.2.7(react@19.2.7) + version: 19.2.8(react@19.2.8) tailwind-merge: specifier: ^3.6.0 version: 3.6.0 @@ -517,38 +514,38 @@ importers: version: 0.13.3(tsl@1.0.30(typescript@6.0.3))(typescript@6.0.3) twoslash: specifier: ^0.3.9 - version: 0.3.9(supports-color@9.4.0)(typescript@6.0.3) + version: 0.3.9(typescript@6.0.3) typescript: specifier: 6.0.3 version: 6.0.3 typescript-eslint: specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) examples/next: dependencies: next: specifier: ^16.2.10 - version: 16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + version: 16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) react: specifier: ^19.2.7 - version: 19.2.7 + version: 19.2.8 react-dom: specifier: ^19.2.7 - version: 19.2.7(react@19.2.7) + version: 19.2.8(react@19.2.8) devDependencies: '@eslint-react/eslint-plugin': specifier: workspace:* version: link:../../plugins/eslint-plugin '@eslint/compat': specifier: ^2.1.0 - version: 2.1.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 2.1.0(eslint@10.7.0(jiti@2.7.0)) '@eslint/js': specifier: ^10.0.1 - version: 10.0.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 10.0.1(eslint@10.7.0(jiti@2.7.0)) '@next/eslint-plugin-next': specifier: ^16.2.10 - version: 16.2.10 + version: 16.2.11 '@tsconfig/next': specifier: ^2.0.6 version: 2.0.6 @@ -569,19 +566,19 @@ importers: version: 19.2.3(@types/react@19.2.17) eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) eslint-plugin-react-hooks: specifier: ^7.1.1 - version: 7.1.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0) + version: 7.1.1(eslint@10.7.0(jiti@2.7.0)) eslint-plugin-react-refresh: specifier: ^0.5.3 - version: 0.5.3(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 0.5.3(eslint@10.7.0(jiti@2.7.0)) typescript: specifier: 6.0.3 version: 6.0.3 typescript-eslint: specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) examples/preact: dependencies: @@ -594,10 +591,10 @@ importers: version: link:../../plugins/eslint-plugin '@eslint/js': specifier: ^10.0.1 - version: 10.0.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 10.0.1(eslint@10.7.0(jiti@2.7.0)) '@preact/preset-vite': specifier: ^2.10.6 - version: 2.10.6(@babel/core@7.29.7(supports-color@9.4.0))(preact@10.29.7)(supports-color@9.4.0)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)) + version: 2.10.6(@babel/core@7.29.7)(preact@10.29.7)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)) '@tsconfig/node24': specifier: ^24.0.4 version: 24.0.4 @@ -609,19 +606,19 @@ importers: version: 26.1.1 eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) eslint-plugin-react-hooks: specifier: ^7.1.1 - version: 7.1.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0) + version: 7.1.1(eslint@10.7.0(jiti@2.7.0)) eslint-plugin-react-refresh: specifier: ^0.5.3 - version: 0.5.3(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 0.5.3(eslint@10.7.0(jiti@2.7.0)) typescript: specifier: 6.0.3 version: 6.0.3 typescript-eslint: specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) vite: specifier: ^8.1.5 version: 8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0) @@ -637,10 +634,10 @@ importers: version: link:../../plugins/eslint-plugin '@eslint/js': specifier: ^10.0.1 - version: 10.0.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 10.0.1(eslint@10.7.0(jiti@2.7.0)) '@preact/preset-vite': specifier: ^2.10.6 - version: 2.10.6(@babel/core@7.29.7(supports-color@9.4.0))(preact@10.29.7)(supports-color@9.4.0)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)) + version: 2.10.6(@babel/core@7.29.7)(preact@10.29.7)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)) '@tsconfig/node24': specifier: ^24.0.4 version: 24.0.4 @@ -652,19 +649,19 @@ importers: version: 26.1.1 eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) eslint-plugin-react-hooks: specifier: ^7.1.1 - version: 7.1.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0) + version: 7.1.1(eslint@10.7.0(jiti@2.7.0)) eslint-plugin-react-refresh: specifier: ^0.5.3 - version: 0.5.3(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 0.5.3(eslint@10.7.0(jiti@2.7.0)) typescript: specifier: 6.0.3 version: 6.0.3 typescript-eslint: specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) vite: specifier: ^8.1.5 version: 8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0) @@ -673,17 +670,17 @@ importers: dependencies: react: specifier: ^19.2.7 - version: 19.2.7 + version: 19.2.8 react-dom: specifier: ^19.2.7 - version: 19.2.7(react@19.2.7) + version: 19.2.8(react@19.2.8) devDependencies: '@eslint-react/eslint-plugin': specifier: workspace:* version: link:../../plugins/eslint-plugin '@eslint/js': specifier: ^10.0.1 - version: 10.0.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 10.0.1(eslint@10.7.0(jiti@2.7.0)) '@tsconfig/node24': specifier: ^24.0.4 version: 24.0.4 @@ -704,19 +701,19 @@ importers: version: 6.0.3(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)) eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) eslint-plugin-react-hooks: specifier: ^7.1.1 - version: 7.1.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0) + version: 7.1.1(eslint@10.7.0(jiti@2.7.0)) eslint-plugin-react-refresh: specifier: ^0.5.3 - version: 0.5.3(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 0.5.3(eslint@10.7.0(jiti@2.7.0)) typescript: specifier: 6.0.3 version: 6.0.3 typescript-eslint: specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) vite: specifier: ^8.1.5 version: 8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0) @@ -725,17 +722,17 @@ importers: dependencies: react: specifier: ^19.2.7 - version: 19.2.7 + version: 19.2.8 react-dom: specifier: ^19.2.7 - version: 19.2.7(react@19.2.7) + version: 19.2.8(react@19.2.8) devDependencies: '@eslint-react/eslint-plugin': specifier: workspace:* version: link:../../plugins/eslint-plugin '@eslint/js': specifier: ^10.0.1 - version: 10.0.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 10.0.1(eslint@10.7.0(jiti@2.7.0)) '@types/react': specifier: ^19.2.17 version: 19.2.17 @@ -747,13 +744,13 @@ importers: version: 6.0.3(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)) eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) eslint-plugin-react-hooks: specifier: ^7.1.1 - version: 7.1.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0) + version: 7.1.1(eslint@10.7.0(jiti@2.7.0)) eslint-plugin-react-refresh: specifier: ^0.5.3 - version: 0.5.3(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 0.5.3(eslint@10.7.0(jiti@2.7.0)) globals: specifier: ^17.7.0 version: 17.7.0 @@ -765,10 +762,10 @@ importers: dependencies: react: specifier: ^19.2.7 - version: 19.2.7 + version: 19.2.8 react-dom: specifier: ^19.2.7 - version: 19.2.7(react@19.2.7) + version: 19.2.8(react@19.2.8) devDependencies: '@eslint-react/eslint-plugin': specifier: workspace:* @@ -778,7 +775,7 @@ importers: version: link:../../packages/kit '@eslint/js': specifier: ^10.0.1 - version: 10.0.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 10.0.1(eslint@10.7.0(jiti@2.7.0)) '@local/samples': specifier: workspace:* version: link:../../.pkgs/samples @@ -799,22 +796,22 @@ importers: version: 19.2.3(@types/react@19.2.17) '@typescript-eslint/types': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) '@vitejs/plugin-react': specifier: ^6.0.3 version: 6.0.3(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)) eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) eslint-plugin-react-hooks: specifier: ^7.1.1 - version: 7.1.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0) + version: 7.1.1(eslint@10.7.0(jiti@2.7.0)) eslint-plugin-react-refresh: specifier: ^0.5.3 - version: 0.5.3(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + version: 0.5.3(eslint@10.7.0(jiti@2.7.0)) jiti: specifier: ^2.7.0 version: 2.7.0 @@ -823,7 +820,7 @@ importers: version: 6.0.3 typescript-eslint: specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) vite: specifier: ^8.1.5 version: 8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0) @@ -832,13 +829,13 @@ importers: dependencies: '@typescript-eslint/types': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/typescript-estree': specifier: ^8.64.0 - version: 8.64.0(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(typescript@6.0.3) '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) string-ts: specifier: ^2.3.1 version: 2.3.1 @@ -854,19 +851,19 @@ importers: version: link:../../.pkgs/testkit '@typescript-eslint/parser': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) typescript: specifier: 6.0.3 version: 6.0.3 vitest: specifier: ^4.1.10 - version: 4.1.10(@types/node@26.1.1)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)) + version: 4.1.10(@types/node@26.1.1)(vite@8.1.5(@types/node@26.1.1)(jiti@2.7.0)(tsx@4.23.1)) packages/core: dependencies: @@ -884,13 +881,13 @@ importers: version: link:../var '@typescript-eslint/scope-manager': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/types': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) ts-pattern: specifier: ^5.9.0 version: 5.9.0 @@ -906,28 +903,28 @@ importers: version: link:../../.pkgs/testkit '@typescript-eslint/parser': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) '@typescript-eslint/typescript-estree': specifier: ^8.64.0 - version: 8.64.0(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(typescript@6.0.3) eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) typescript: specifier: 6.0.3 version: 6.0.3 vitest: specifier: ^4.1.10 - version: 4.1.10(@types/node@26.1.1)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)) + version: 4.1.10(@types/node@26.1.1)(vite@8.1.5(@types/node@26.1.1)(jiti@2.7.0)(tsx@4.23.1)) packages/eslint: dependencies: '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) devDependencies: '@local/configs': specifier: workspace:* @@ -940,10 +937,10 @@ importers: version: 26.1.1 eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) typescript: specifier: 6.0.3 version: 6.0.3 @@ -964,10 +961,10 @@ importers: version: link:../var '@typescript-eslint/types': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) ts-pattern: specifier: ^5.9.0 version: 5.9.0 @@ -983,10 +980,10 @@ importers: version: link:../../.pkgs/testkit eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) typescript: specifier: 6.0.3 version: 6.0.3 @@ -1004,10 +1001,10 @@ importers: version: link:../shared '@typescript-eslint/types': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) string-ts: specifier: ^2.3.1 version: 2.3.1 @@ -1020,10 +1017,10 @@ importers: version: link:../../.pkgs/configs eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) typescript: specifier: 6.0.3 version: 6.0.3 @@ -1035,7 +1032,7 @@ importers: version: link:../eslint '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) ts-pattern: specifier: ^5.9.0 version: 5.9.0 @@ -1060,10 +1057,10 @@ importers: version: 4.0.3 eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) typescript: specifier: 6.0.3 version: 6.0.3 @@ -1078,13 +1075,13 @@ importers: version: link:../eslint '@typescript-eslint/scope-manager': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/types': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) ts-pattern: specifier: ^5.9.0 version: 5.9.0 @@ -1100,22 +1097,22 @@ importers: version: link:../../.pkgs/testkit '@typescript-eslint/parser': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) '@typescript-eslint/typescript-estree': specifier: ^8.64.0 - version: 8.64.0(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(typescript@6.0.3) eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) typescript: specifier: 6.0.3 version: 6.0.3 vitest: specifier: ^4.1.10 - version: 4.1.10(@types/node@26.1.1)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)) + version: 4.1.10(@types/node@26.1.1)(vite@8.1.5(@types/node@26.1.1)(jiti@2.7.0)(tsx@4.23.1)) plugins/eslint-plugin: dependencies: @@ -1155,10 +1152,10 @@ importers: version: 19.2.3(@types/react@19.2.17) eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) typescript: specifier: 6.0.3 version: 6.0.3 @@ -1185,13 +1182,13 @@ importers: version: link:../../packages/var '@typescript-eslint/scope-manager': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/types': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) ts-pattern: specifier: ^5.9.0 version: 5.9.0 @@ -1213,10 +1210,10 @@ importers: version: 1.7.2 eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) typescript: specifier: 6.0.3 version: 6.0.3 @@ -1237,10 +1234,10 @@ importers: version: link:../../packages/shared '@typescript-eslint/types': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) compare-versions: specifier: ^6.1.1 version: 6.1.1 @@ -1262,10 +1259,10 @@ importers: version: 1.7.2 eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) typescript: specifier: 6.0.3 version: 6.0.3 @@ -1289,10 +1286,10 @@ importers: version: link:../../packages/shared '@typescript-eslint/types': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) devDependencies: '@local/configs': specifier: workspace:* @@ -1311,10 +1308,10 @@ importers: version: 1.7.2 eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) typescript: specifier: 6.0.3 version: 6.0.3 @@ -1335,10 +1332,10 @@ importers: version: link:../../packages/var '@typescript-eslint/types': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) ts-pattern: specifier: ^5.9.0 version: 5.9.0 @@ -1360,10 +1357,10 @@ importers: version: 1.7.2 eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) typescript: specifier: 6.0.3 version: 6.0.3 @@ -1387,10 +1384,10 @@ importers: version: link:../../packages/var '@typescript-eslint/types': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) devDependencies: '@local/configs': specifier: workspace:* @@ -1409,10 +1406,10 @@ importers: version: 1.7.2 eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) typescript: specifier: 6.0.3 version: 6.0.3 @@ -1436,10 +1433,10 @@ importers: version: link:../../packages/var '@typescript-eslint/types': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) birecord: specifier: ^0.1.2 version: 0.1.2 @@ -1464,10 +1461,10 @@ importers: version: 1.7.2 eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) typescript: specifier: 6.0.3 version: 6.0.3 @@ -1494,19 +1491,19 @@ importers: version: link:../../packages/var '@typescript-eslint/scope-manager': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/type-utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) '@typescript-eslint/types': specifier: ^8.64.0 - version: 8.64.0 + version: 8.65.0 '@typescript-eslint/typescript-estree': specifier: ^8.64.0 - version: 8.64.0(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(typescript@6.0.3) '@typescript-eslint/utils': specifier: ^8.64.0 - version: 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) + version: 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) compare-versions: specifier: ^6.1.1 version: 6.1.1 @@ -1537,16 +1534,16 @@ importers: version: 1.7.2 eslint: specifier: ^10.7.0 - version: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + version: 10.7.0(jiti@2.7.0) react: specifier: ^19.2.7 - version: 19.2.7 + version: 19.2.8 react-dom: specifier: ^19.2.7 - version: 19.2.7(react@19.2.7) + version: 19.2.8(react@19.2.8) tsdown: specifier: ^0.22.9 - version: 0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) + version: 0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3) tsl: specifier: ^1.0.30 version: 1.0.30(typescript@6.0.3) @@ -1677,10 +1674,10 @@ packages: engines: {node: '>=14.0.0'} peerDependencies: '@date-fns/tz': ^1.2.0 - '@types/react': ^19.2.17 + '@types/react': ^17 || ^18 || ^19 date-fns: ^4.0.0 - react: ^19.2.7 - react-dom: ^19.2.7 + react: ^17 || ^18 || ^19 + react-dom: ^17 || ^18 || ^19 peerDependenciesMeta: '@date-fns/tz': optional: true @@ -1692,9 +1689,9 @@ packages: '@base-ui/utils@0.3.1': resolution: {integrity: sha512-gFFiltORVmW/N6IILTGxizP3PBpVpysqML1ALY5Vk0mH+7faVkCknOU31goYHN5Aoek2dkjxva1XOD2Ce9WuIg==} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': ^17 || ^18 || ^19 + react: ^17 || ^18 || ^19 + react-dom: ^17 || ^18 || ^19 peerDependenciesMeta: '@types/react': optional: true @@ -1725,43 +1722,36 @@ packages: resolution: {integrity: sha512-VhM7p70VFuNqxZMdiv1e+nMboPj/hMFlTIBWrRaX7+6VThs9mJr9+94wrUeXgfnfsyaEKSbRFa/dru1PINoSNw==} cpu: [arm64] os: [linux] - libc: [glibc] '@dprint/linux-arm64-musl@0.54.0': resolution: {integrity: sha512-QS1A74Lv60/L9oemHCzbHgOLbV2smSJG5IxS5fjf8ZWetyUt918WDzIHBilz/+uiB+OlW2UVTsm952UG0YOrLw==} cpu: [arm64] os: [linux] - libc: [musl] '@dprint/linux-loong64-glibc@0.54.0': resolution: {integrity: sha512-8Myka2/0KbhuZnEKL6jagPXTgDKVpd/tfXDRa0oibUBgaqOSku6iRMzHGa/PhqHL+s14Gcp+/cIHz0zU3Tkgug==} cpu: [loong64] os: [linux] - libc: [glibc] '@dprint/linux-loong64-musl@0.54.0': resolution: {integrity: sha512-/AN3xCuMhC4PK7Pbj7/4zBuhFGr4m0OHV/5uGTfzpkKX/3+AXoyKl7PbT2VlNMGXAK0kuRThfjtx23gIwlWk7Q==} cpu: [loong64] os: [linux] - libc: [musl] '@dprint/linux-riscv64-glibc@0.54.0': resolution: {integrity: sha512-Aw2vXzzwFDpPbXh6ajsSabVCkCc66C3hCyMKprR/IxYvFtjYX80nh1ox0c7iaw6c4HacHMRLGw7FUSXvomPaEQ==} cpu: [riscv64] os: [linux] - libc: [glibc] '@dprint/linux-x64-glibc@0.54.0': resolution: {integrity: sha512-zZqj3wQELOX8n6QfT2uuWoMf64Wv0lMXNyam3btm+PKkg0P6a54TPL09Bs9XsViOdxgTcamsiQ7HlErt/LEjIA==} cpu: [x64] os: [linux] - libc: [glibc] '@dprint/linux-x64-musl@0.54.0': resolution: {integrity: sha512-it6Qdt06dyW2adbAXpOCb7/KQLxlm4i1UphUAWqWsZk4t3EYetyAza9J0g3Vu9itIWSEIo9MnccgANckQJ6+qw==} cpu: [x64] os: [linux] - libc: [musl] '@dprint/win32-arm64@0.54.0': resolution: {integrity: sha512-F5kjV/6I9YtNOTDWHUpTqM2HHHS510BPL7z4NJuU0nDnaVeks7GwNEltGr56CcsG8XQYhkiAsqZytPu6AhA2hQ==} @@ -2088,8 +2078,8 @@ packages: '@floating-ui/react-dom@2.1.9': resolution: {integrity: sha512-JDjEFGCpImxDCA7JJKviA0M9+RtmJdj0m/NVU5IMgBK+AmZouAQQ7/+2GLH0GXXY0YMw9oXPB8hKdbPYg5QLYg==} peerDependencies: - react: ^19.2.7 - react-dom: ^19.2.7 + react: '>=16.8.0' + react-dom: '>=16.8.0' '@floating-ui/utils@0.2.12': resolution: {integrity: sha512-HpCo8tmWzLVad5s2d19EhAz5zqrrQ6s69qd6moPMQvkOuSwDT1YgRfWSVuc4ennqrgv3OHppiOGMQ7oC13yIww==} @@ -2097,9 +2087,9 @@ packages: '@fuma-translate/react@1.0.2': resolution: {integrity: sha512-uOiOtBx3nRXR8Nu1GzBf1tApgF1FErDBTHxRIAQeyQdyOoZbrNRN6H4kDCWObY4qyGeGbHydG0DHzgeUgFDMIw==} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + react: ^19.2.0 + react-dom: ^19.2.0 peerDependenciesMeta: '@types/react': optional: true @@ -2177,105 +2167,89 @@ packages: resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==} cpu: [arm64] os: [linux] - libc: [glibc] '@img/sharp-libvips-linux-arm@1.2.4': resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==} cpu: [arm] os: [linux] - libc: [glibc] '@img/sharp-libvips-linux-ppc64@1.2.4': resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==} cpu: [ppc64] os: [linux] - libc: [glibc] '@img/sharp-libvips-linux-riscv64@1.2.4': resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==} cpu: [riscv64] os: [linux] - libc: [glibc] '@img/sharp-libvips-linux-s390x@1.2.4': resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==} cpu: [s390x] os: [linux] - libc: [glibc] '@img/sharp-libvips-linux-x64@1.2.4': resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==} cpu: [x64] os: [linux] - libc: [glibc] '@img/sharp-libvips-linuxmusl-arm64@1.2.4': resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==} cpu: [arm64] os: [linux] - libc: [musl] '@img/sharp-libvips-linuxmusl-x64@1.2.4': resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==} cpu: [x64] os: [linux] - libc: [musl] '@img/sharp-linux-arm64@0.34.5': resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] - libc: [glibc] '@img/sharp-linux-arm@0.34.5': resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm] os: [linux] - libc: [glibc] '@img/sharp-linux-ppc64@0.34.5': resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [ppc64] os: [linux] - libc: [glibc] '@img/sharp-linux-riscv64@0.34.5': resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [riscv64] os: [linux] - libc: [glibc] '@img/sharp-linux-s390x@0.34.5': resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [s390x] os: [linux] - libc: [glibc] '@img/sharp-linux-x64@0.34.5': resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] - libc: [glibc] '@img/sharp-linuxmusl-arm64@0.34.5': resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] - libc: [musl] '@img/sharp-linuxmusl-x64@0.34.5': resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] - libc: [musl] '@img/sharp-wasm32@0.34.5': resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==} @@ -2360,6 +2334,7 @@ packages: peerDependenciesMeta: '@cfworker/json-schema': optional: true + zod: {} '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.4': resolution: {integrity: sha512-LCkGo6JDfaBhgST7UpPWgNgLINpcpabaHfyz5OBx75nUYxBsaEPxjnyNjWpeb/xBup/682QnBfRBy2/LvPutZQ==} @@ -2403,8 +2378,8 @@ packages: '@next/env@16.2.10': resolution: {integrity: sha512-zLPxg9M0MEHmygpj5OuxjQ+vHMiy/K7cSp74G8ecYolmgUWw0RwN02tF56npup/+qaI8JB97hQgS/r2Hb6QwVA==} - '@next/eslint-plugin-next@16.2.10': - resolution: {integrity: sha512-Gs8D2m21VnJeFo9qvYIIqJH94frWerWYu41BprU1pLtRVF7PCQNLiFZZ3fG+iPuj3K83Cwv/rt+msLOy8Qgu3Q==} + '@next/eslint-plugin-next@16.2.11': + resolution: {integrity: sha512-vMEf/aXOpzFFdtIvFYOnIDPKb0xBbrXONsz83CcKdRrekfxNdL8PNkq5qHqAHSXVlIifnX68LOMaxr3z5PkeLQ==} '@next/swc-darwin-arm64@16.2.10': resolution: {integrity: sha512-v9IdJCa0H0mbo+8z5zwUpOk1Vj7RjkcI5uNYf5Ws1y6szf/p3Mzl9hLaST8SCt6L9h8NGnruZcd2+o0NTNwDhA==} @@ -2423,28 +2398,24 @@ packages: engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [glibc] '@next/swc-linux-arm64-musl@16.2.10': resolution: {integrity: sha512-zkN9MQYS7UQBro+FnISUq1itaQjXI9xqISzuQ+2bc921NcJ1x4yPCqrn77tVN6/dOOXaaWVX3k6/bR07pPwK+A==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [musl] '@next/swc-linux-x64-gnu@16.2.10': resolution: {integrity: sha512-iCVJnwvrPYECvA6WM/7+oo+OiTvedIKLxtCLAZP4xZR3nXa1zmzZyLPbYCmWvpd4CvMYF1EMTafd0ii3DygLvA==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [glibc] '@next/swc-linux-x64-musl@16.2.10': resolution: {integrity: sha512-ov2g4H0dHY9bPoOU83m91hWT7Iq5qy13bUnyyshLU3HGR1Ownn0X9QpmDPc5iIUaahTp7f7LeGAhV4DSFtackw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [musl] '@next/swc-win32-arm64-msvc@16.2.10': resolution: {integrity: sha512-DwAnhLX76HQiFFQNgWlcK+JzlnD1rZ+UK/WY0ZMI/deXpvgnesjNYrqcfo1JzBuz4Kf7o3brIBL0glI1junatA==} @@ -2518,25 +2489,21 @@ packages: resolution: {integrity: sha512-Q61stbUFVBw9TprlVLkRQmk+fuMXPlyTlvGExJ1y8KYymDTFsjs8LFk7zTnRvFpI9LVMRuhyD3osaLy2TxPU7Q==} cpu: [arm64] os: [linux] - libc: [glibc] '@nx/nx-linux-arm64-musl@23.1.0': resolution: {integrity: sha512-Lm5PC4yuBHw4gr37vcAX3kvS75prqL1VpbQkPHs4Z2Us1ri29ALxgdrEFgF6fbCXxl4w3sWmcbKGvrcMdpuvIQ==} cpu: [arm64] os: [linux] - libc: [musl] '@nx/nx-linux-x64-gnu@23.1.0': resolution: {integrity: sha512-v1ELSkVskidK6A+mm/Ynm8TWIb5UdzGWMcD7CTgmvjTzKfXIO0QY1ToDTqvoBwnetcehWR5gnhQlhQgOSH8XFA==} cpu: [x64] os: [linux] - libc: [glibc] '@nx/nx-linux-x64-musl@23.1.0': resolution: {integrity: sha512-pD/Axn0usK2/RV2bSrLX7h59YpOXGiaYHmlZynVVS+CqkKbyFzxnrvvLmRdOdMxsfM6oDXom4lCcJMg+wUYcpw==} cpu: [x64] os: [linux] - libc: [musl] '@nx/nx-win32-arm64-msvc@23.1.0': resolution: {integrity: sha512-lhnRaXPGUwqw/dqBnWl/6d6r8mRQXuZS7qnnTd+U5O1R7YPb2494BQyE7aSVEFLHcX9nXywMGxo5+OUCH84xQA==} @@ -2599,56 +2566,48 @@ packages: engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - libc: [glibc] '@oxc-parser/binding-linux-arm64-musl@0.106.0': resolution: {integrity: sha512-Bvtp8SK4MyahReapEPodracfBV9ed7+5WCHyjhSWoljrapJIU4OOLSsRyZ9zV2KhkjuD66DZq/qQv6pC73zzWQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - libc: [musl] '@oxc-parser/binding-linux-ppc64-gnu@0.106.0': resolution: {integrity: sha512-DIXyavnpbBo+F/4G04LZ4xuuGXDY4m9qHB/HWtVj9z+Frb/r+SPAuptqAZFtJ9avcwbAOe3LO+K8BWHmK6+lnw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] - libc: [glibc] '@oxc-parser/binding-linux-riscv64-gnu@0.106.0': resolution: {integrity: sha512-VdqTcLTET72nPcJkSz3xrpcxab7q2/z04d6y+Th1mUTyXs2b/9VC3BcDmaFAfmhz8GX/5FVuzUTQzda1mTsh/g==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] - libc: [glibc] '@oxc-parser/binding-linux-riscv64-musl@0.106.0': resolution: {integrity: sha512-FgHBGg9DHQ0dePOWQ9rNN+DHueJa1XWHc9u0VJCVY+XXAx3iT2ASj21xZ1wA+Rh92CyuuZ7RpQ6Y+O57fieNlg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] - libc: [musl] '@oxc-parser/binding-linux-s390x-gnu@0.106.0': resolution: {integrity: sha512-fEIx2bUggt+s1eTaRVzhy5VgdrO1B8tUKxOPpGwwdF9VSP0KnLPaAv/gA4trJPxuIjjJRRVoK42v9R4O1jkbLg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] - libc: [glibc] '@oxc-parser/binding-linux-x64-gnu@0.106.0': resolution: {integrity: sha512-DbDQkdK8ZuS/jnRx8UbESQ5ypCJpD7VpERB/RWZfSdA2+B4TbonDwNWbTU+q2VJTbh5Xq1X65eQyz4/MIfiFSQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - libc: [glibc] '@oxc-parser/binding-linux-x64-musl@0.106.0': resolution: {integrity: sha512-D0PbaLv1MyNFDmjY4UqLQFlC+0GPCvrzI/8VlAvG7ztAZx0KdFYT3pPGsHjKshUJW9+e42JK29abLd0bZ4I95w==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - libc: [musl] '@oxc-parser/binding-openharmony-arm64@0.106.0': resolution: {integrity: sha512-uXSzts/ghlqmWm1cQTctyxdAnvha5dzVW5JkEB30J4M47yj2FcCtzUGdZO/sgXxggD/QM7EANlB66cOyk/NsoA==} @@ -2735,56 +2694,48 @@ packages: engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - libc: [glibc] '@oxc-transform/binding-linux-arm64-musl@0.138.0': resolution: {integrity: sha512-9aIEbbkuxpkIoC/y1wpY2RR4E45DJAiEGjpSWeK6s8r6cccOF4raJcnSLRiCJ5tsjXMNI/1+7cdYfXORBTkFCA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - libc: [musl] '@oxc-transform/binding-linux-ppc64-gnu@0.138.0': resolution: {integrity: sha512-qqYFxGPNKE9rZVcKzT7FczlpH0NiXwe3MXxkxNBW/0CiBZif3yhT/GlMOSm/Xu/mnhVwrNnHF9xMhs3eSvFBOQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] - libc: [glibc] '@oxc-transform/binding-linux-riscv64-gnu@0.138.0': resolution: {integrity: sha512-5aeMF7aYy0MEU7ccAqr8NR1Z+fNhaRSk1KjGtI2nDsa3S77D0yA5SxUMq2yX265jNPwWhnc6FqN+mLdVOVJs2w==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] - libc: [glibc] '@oxc-transform/binding-linux-riscv64-musl@0.138.0': resolution: {integrity: sha512-hFWlJSVqwCCS33S9y8ZgeuN48YjQRnG2n/Dox994ETmgO1eEYRLIsBBqtxuQpjaTK3ozif58tlPoiOUNPHOrTw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] - libc: [musl] '@oxc-transform/binding-linux-s390x-gnu@0.138.0': resolution: {integrity: sha512-DDzZn/MdAFCdF/uaEgxmILRQXk25icDJepzXa2PKjgRsoJiIIHBb/9tirIIRPcGcD5XtIBrkErvJ38pA2Ve9Cw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] - libc: [glibc] '@oxc-transform/binding-linux-x64-gnu@0.138.0': resolution: {integrity: sha512-5EtifH5oFFIANFyA5Eev8jNAS3oOZdJolKtL7dfvdGp2dpRZj9g2Da+HDjr9rLXLsks/pIdMpMl2NBKzQYmugw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - libc: [glibc] '@oxc-transform/binding-linux-x64-musl@0.138.0': resolution: {integrity: sha512-UxX4DbJg9IwrEe1F3hx/j5qURLm2zmo8VHz8JBoEt1GrWmza3lFrxW8eiWOgg5pv792tBjGz3hWddCb4SEmz2g==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - libc: [musl] '@oxc-transform/binding-openharmony-arm64@0.138.0': resolution: {integrity: sha512-6NmNGQ9TpI9SwYM08a/rz9xdjSMeQhse8og5OkoJRmZrWmHN4wUm+IAEFzS7g5uxPK2Y9vkqvLUjg/uvsdXkFg==} @@ -2815,92 +2766,80 @@ packages: cpu: [x64] os: [win32] - '@parcel/watcher-android-arm64@2.5.6': - resolution: {integrity: sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==} + '@parcel/watcher-android-arm64@2.6.0': + resolution: {integrity: sha512-trgpLSCKRC/huFjXX/Smh+0sWe4+YtKfktIToiMl59ghz7z+qkH6kMvNnUbLyRs9N11t8l4svSCs1+5B3rOAhA==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [android] - '@parcel/watcher-darwin-arm64@2.5.6': - resolution: {integrity: sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==} + '@parcel/watcher-darwin-arm64@2.6.0': + resolution: {integrity: sha512-Y3QV0gl7Q1zbfueunkWIERICbEojQFCgpyG7YqOGNFLsckXyI1xu9mAIUpKY9QBYzBtSkN8dBPwd3yiAO9ovMw==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [darwin] - '@parcel/watcher-darwin-x64@2.5.6': - resolution: {integrity: sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==} + '@parcel/watcher-darwin-x64@2.6.0': + resolution: {integrity: sha512-Ohv6OpzhUfKYD7Beb8kDvG0jbIxORCYY1JRdZnaBtnjjkJxgD7ZVL0nw2sCYd0yTMKTvz3nnTnOF3cDifK+kvw==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [darwin] - '@parcel/watcher-freebsd-x64@2.5.6': - resolution: {integrity: sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==} + '@parcel/watcher-freebsd-x64@2.6.0': + resolution: {integrity: sha512-5HmXvDgs8VK+74jF9y9/2FE3/OnlcKmc56tjmSrEuZjpSZOGL+fvAu+HKJBdPs9uwoP2hE6TlSUpXZ/C5jUFmQ==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [freebsd] - '@parcel/watcher-linux-arm-glibc@2.5.6': - resolution: {integrity: sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==} + '@parcel/watcher-linux-arm-glibc@2.6.0': + resolution: {integrity: sha512-Ps/hui3A+vMbjdqlqAowK2ZL8+BO8dBjxeWXj6npTBs3jx4wWmbPpaLuqwrQrSqIVMCnpWo238bJ1U37GhQOYg==} engines: {node: '>= 10.0.0'} cpu: [arm] os: [linux] - libc: [glibc] - '@parcel/watcher-linux-arm-musl@2.5.6': - resolution: {integrity: sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==} + '@parcel/watcher-linux-arm-musl@2.6.0': + resolution: {integrity: sha512-9c6AUHgHoG+IY88MRIHupztQiQnrbqHYQjkM2btA+Bf/wQnQMuiD0Wfk1EVv3TlNT3x41uU71rn6E4xh/+zvkw==} engines: {node: '>= 10.0.0'} cpu: [arm] os: [linux] - libc: [musl] - '@parcel/watcher-linux-arm64-glibc@2.5.6': - resolution: {integrity: sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==} + '@parcel/watcher-linux-arm64-glibc@2.6.0': + resolution: {integrity: sha512-yHRqS2owEXe6Hic9z6Mh1ECsCd+ODVOGvZDyciqRd21+v+o+DnXMOrw50DSpIG2sb8GPEaPPmfeCAWKPJdq46g==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] - libc: [glibc] - '@parcel/watcher-linux-arm64-musl@2.5.6': - resolution: {integrity: sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==} + '@parcel/watcher-linux-arm64-musl@2.6.0': + resolution: {integrity: sha512-WhB2e/V7rqdHHWZusBSPuy5Ei8S6lSz6FE5TKKQz5h3a0O+C+mhY7vxU9b/stqvMb8beLnPY82ZrFTLKs+SrKA==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] - libc: [musl] - '@parcel/watcher-linux-x64-glibc@2.5.6': - resolution: {integrity: sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==} + '@parcel/watcher-linux-x64-glibc@2.6.0': + resolution: {integrity: sha512-ulGE6x6Oz6iAwg75T8YQSoguBWasniIbX+QWpaYPcCnDOpdWX3k+4xbEYPZVLxOuoJI+svJJPD3sEj8G7lrQ3A==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] - libc: [glibc] - '@parcel/watcher-linux-x64-musl@2.5.6': - resolution: {integrity: sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==} + '@parcel/watcher-linux-x64-musl@2.6.0': + resolution: {integrity: sha512-tkBYKt7YQrjIJWYDnto2YgO8MRkjlMTSNoRHzsXinBqbLdeOM3L32wPZJvIZxqaLMfSlS/4sUjH/6STVP/XDLw==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] - libc: [musl] - '@parcel/watcher-win32-arm64@2.5.6': - resolution: {integrity: sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==} + '@parcel/watcher-win32-arm64@2.6.0': + resolution: {integrity: sha512-gIZAP23jaHjGWasY/TY6yL7NHFClf0Ga7FN+iINvk+KN94rhm94lYZhFsbYFNcA04/onvGD9kKmiJLJB2HbNwQ==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [win32] - '@parcel/watcher-win32-ia32@2.5.6': - resolution: {integrity: sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==} - engines: {node: '>= 10.0.0'} - cpu: [ia32] - os: [win32] - - '@parcel/watcher-win32-x64@2.5.6': - resolution: {integrity: sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==} + '@parcel/watcher-win32-x64@2.6.0': + resolution: {integrity: sha512-cA+/pXV2YkfxlIcXOQ5fSWqAzzPyD78/x5qbK/I0vUkrlYHA8TIz+MXjAbGouguKVSI4bOmkTSJ1/poVSsgt+A==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [win32] - '@parcel/watcher@2.5.6': - resolution: {integrity: sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==} + '@parcel/watcher@2.6.0': + resolution: {integrity: sha512-7FNeNl8NCE7aINx7WXiKQrPYZWC/hvrTsmk6zmxbI7LTXE7hVek/n8AfVgpe2y82zl3w0HvCHN0bVKMBoJcC0w==} engines: {node: '>= 10.0.0'} '@pkgjs/parseargs@0.11.0': @@ -2940,42 +2879,42 @@ packages: '@radix-ui/number@1.1.2': resolution: {integrity: sha512-ceTwaxc4I5IOi97DgCotl3pqiyRGvffcc0oOsE2dQYaJOFIDsDt4VWG6xEbg1QePv9QWausCEIppud/tJ1wNig==} - '@radix-ui/primitive@1.1.5': - resolution: {integrity: sha512-d86WIWFYNtGA0H/d8exstrTRTp7eWJYlYJbtNofxr/3ljupZYn6EFDG/Qgu/0Kc8v7yMUxySagqJsL1+PdYjWg==} + '@radix-ui/primitive@1.1.6': + resolution: {integrity: sha512-w9hl+724uYEgCGR3bhuRepjBtrNB/6gkhCnAf58Ke+SLbHPPQqVZZB59z60roB+5H+nh3nWTcdJhQdFMEydWmw==} - '@radix-ui/react-accordion@1.2.16': - resolution: {integrity: sha512-BpZJNmetujnGgUI6OX0jEhEmlA46WPqgub8Rv09Kyquwd0cc1ndMKpiPYCjmBU6KSSRPAMtgLpEoZSG/tdNIWQ==} + '@radix-ui/react-accordion@1.2.17': + resolution: {integrity: sha512-l3Dmp+qPPc3SqT8+SPnxIgoWBEU2MMBxcQ7BsoRgak2UT75xY83SFvFcrUkUAWukOV3LFF+BQ9aBIFtZsIG8yQ==} peerDependencies: - '@types/react': ^19.2.17 - '@types/react-dom': ^19.2.3 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true '@types/react-dom': optional: true - '@radix-ui/react-arrow@1.1.11': - resolution: {integrity: sha512-Kdil9BB1rIFC/khmf4hC35bn8701AJcizTU7G7cUbEbk5XqqbjDuHW60uUfKqO5WojjZcbAW51Q7P0hRmMLw8A==} + '@radix-ui/react-arrow@1.1.12': + resolution: {integrity: sha512-ltXCE0glRomMZ9+u10d9o1Go+edqa1aLxufH59JRNNM3Yz1uvaeNWSaS1HeVh1X64agtdBG5JA1W1I6ySqWiwA==} peerDependencies: - '@types/react': ^19.2.17 - '@types/react-dom': ^19.2.3 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true '@types/react-dom': optional: true - '@radix-ui/react-collapsible@1.1.16': - resolution: {integrity: sha512-opfXRe6nnzyGmCDPx+l1Aqo/RbqWtQal2FnsBqF9hhePp6j0LsRoBaRxcMOlTv+uYTJVtWYZKg9t9wTe+BA/ZA==} + '@radix-ui/react-collapsible@1.1.17': + resolution: {integrity: sha512-DJgqGsNXa0df3ifz9PFNgvgj/bzIu5QTVWCt5nQWaUkM6y0EarUv4QG4s6mCoeQdOIyVOT/Q1osFuEGub2TDXQ==} peerDependencies: - '@types/react': ^19.2.17 - '@types/react-dom': ^19.2.3 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -2985,10 +2924,10 @@ packages: '@radix-ui/react-collection@1.1.12': resolution: {integrity: sha512-nb67INpE0IahJKN7EYPp9m9YGwYeKlnzxT3MwXVkgCskaSJia97kG4T0ywpjNUSSnoJk/uvk12V8vbrEHEj+/Q==} peerDependencies: - '@types/react': ^19.2.17 - '@types/react-dom': ^19.2.3 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -2998,8 +2937,8 @@ packages: '@radix-ui/react-compose-refs@1.1.3': resolution: {integrity: sha512-rYOP8OMnuuPMQF1uhPVlGNcCDlkokKqGFE3JcxFViIkAXP7EvFWUliJAstrapypaBLJNHbZL6jGhbVDGTwmVhA==} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -3007,19 +2946,19 @@ packages: '@radix-ui/react-context@1.2.0': resolution: {integrity: sha512-fOE+JtN9rygNZkCnHRBEP0TAvLldlhyOxMsbwFvTP4nAs+nBmfnna+o/Zski2wkmY1YMrFC0aSzsHoLY47iLrg==} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true - '@radix-ui/react-dialog@1.1.19': - resolution: {integrity: sha512-+HhbN2+YtkRgVirjZ2afMeutQRuGOrdkWR5+EFC58SJojGmtyNQwYzgi6tHBpOxvFHefMtPeHdgtjz0BOGxFQg==} + '@radix-ui/react-dialog@1.1.20': + resolution: {integrity: sha512-cngVJcvK0yMvR7wICJpv+1uW3Qw4T7QM5sdbb+oE/lxOdTdvF00oaRpWUjVgmjyXe3J+xh7eZyXZlVF3g2g59g==} peerDependencies: - '@types/react': ^19.2.17 - '@types/react-dom': ^19.2.3 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -3029,19 +2968,19 @@ packages: '@radix-ui/react-direction@1.1.2': resolution: {integrity: sha512-C3vFhbyi4SW3PmbAi6Awpu4OzJtd0MxGurvSsYtr7p7nM8RNB3VAF3CUmnp2j50knpkrRcB7+ycVXzgLgF6yNA==} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true - '@radix-ui/react-dismissable-layer@1.1.15': - resolution: {integrity: sha512-b0XaRlzn2QKuo10XyNgi2DAJDf5XC9d1nD3FJcuvCjbR7+4Ad28zmZsLsqx+hvDEzMnRuZaZxZm9gYObV6RmRA==} + '@radix-ui/react-dismissable-layer@1.1.16': + resolution: {integrity: sha512-t45h68IjFx0ccBnPJqk0X6ecv69LkCFWd6DNCFQX56mUnVEXZbNOLCH/u9fHlAjFZ1RrFdl8/m4zev7B7NyhXQ==} peerDependencies: - '@types/react': ^19.2.17 - '@types/react-dom': ^19.2.3 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -3051,19 +2990,19 @@ packages: '@radix-ui/react-focus-guards@1.1.4': resolution: {integrity: sha512-cot/aB/mOm0IYVYTTmQcEEK1M48lZWi8FlYe5nDPQQ8NYZUlXEFgncJ9p2Kzer3RKSrY7cTTpEMLZKNo9QoP5Q==} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true - '@radix-ui/react-focus-scope@1.1.12': - resolution: {integrity: sha512-jjk/lqTeNL0azUx5ZYzVrl4NgaDIrdzTNE4mABV9yBFI7FQqN7pIgzV1bTleUezP2QiTGA1BFTqY8MegDgWX9A==} + '@radix-ui/react-focus-scope@1.1.13': + resolution: {integrity: sha512-dE04aPEuP9rvKKT0d0KjSOtTEYNg6bmCYFsoSJpfC+y91Hic28ZfDCGgv6aJ+2Kw/LBXYipMZpyqVj/OD3Z8Gg==} peerDependencies: - '@types/react': ^19.2.17 - '@types/react-dom': ^19.2.3 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -3073,71 +3012,71 @@ packages: '@radix-ui/react-id@1.1.2': resolution: {integrity: sha512-orBC88futVpqCmhX1p4cvquNHsELQ+w+vBJnuj3ftETI5bJb0bZn3Tqu3SWN2IOcPycTnMGnhwoermvISt72sA==} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true - '@radix-ui/react-navigation-menu@1.2.18': - resolution: {integrity: sha512-K9HiuxZ6xCwSaHcIuUpxyhy4w5gpwzWjh9dHTSbMN3Ix4qAyVObS9RlU3zMycb0PO3v9Tpk0BXMwWvXOUbVXew==} + '@radix-ui/react-navigation-menu@1.2.19': + resolution: {integrity: sha512-58OVQUrpWx/zGVV3lxGUyAtjX4n0305Z8xIdUAq2QlFO2m2hd1eBS4x1yIVtV8bzCQJja0TJttWcwiPI6y6tmw==} peerDependencies: - '@types/react': ^19.2.17 - '@types/react-dom': ^19.2.3 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true '@types/react-dom': optional: true - '@radix-ui/react-popover@1.1.19': - resolution: {integrity: sha512-jkrTdQVxnIB8fpn0NyyxW9CTB5aCXZZelVz5z+Xmii6g5WxMqS3fInNslZ63puP39+Puu4jYohUK31y3dT87gQ==} + '@radix-ui/react-popover@1.1.20': + resolution: {integrity: sha512-/PYqbsyuDkNj+IxMcRx71qNt6GelnuNulMwdCV7AtFEhUyK6XkbwreEN6CCLydMeTiDozBV4uv5aF5d12dDH7w==} peerDependencies: - '@types/react': ^19.2.17 - '@types/react-dom': ^19.2.3 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true '@types/react-dom': optional: true - '@radix-ui/react-popper@1.3.3': - resolution: {integrity: sha512-mS7dGpyjv6b+gsDjLF7e0ia1W4Im1B1hSCy2yuXlHuvnZxHKagfDaobt/KAKt27EpZMit2pss8eJBVyVjEWM+g==} + '@radix-ui/react-popper@1.3.4': + resolution: {integrity: sha512-PXnCa3XgTQk0FegMctxgqJXtFLZe4IFJdbUkB7jKSCKEpb6utEO4S9Vog/pkyCfEPdzM331gvE4xpztmBAfMng==} peerDependencies: - '@types/react': ^19.2.17 - '@types/react-dom': ^19.2.3 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true '@types/react-dom': optional: true - '@radix-ui/react-portal@1.1.13': - resolution: {integrity: sha512-z3oXfmaHLJTF1wktbjgD6cn9jiEbq3WSondB10LIuIt2m2Ym4iJlrW04/euMwENDdWDdE7z+OuY7Qyp1YpRSwA==} + '@radix-ui/react-portal@1.1.14': + resolution: {integrity: sha512-REwjAGPMa3J9oyDE4cuWkZbwnCbbyky66NurquQklXMSDn67cl6oGFx2gO7KZhPtFNbNw9xTWNrti3VIhgluYw==} peerDependencies: - '@types/react': ^19.2.17 - '@types/react-dom': ^19.2.3 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true '@types/react-dom': optional: true - '@radix-ui/react-presence@1.1.7': - resolution: {integrity: sha512-zBZ4QM5XG3JRanDmqXYf3MD6th4AFXFmgU6KNMFzUaV6F3uw9I5/zjMUvFriSEn5ewo1nxuibvyxJdmLlDcslA==} + '@radix-ui/react-presence@1.1.8': + resolution: {integrity: sha512-0hhyrQdXMaATgq4ammLG9+iPqsXxzZkgTSIxdrJHdfLnXO4Uo5L7BoO3/Xf0AEaettadGZWGGJMw6ujzQvIpGA==} peerDependencies: - '@types/react': ^19.2.17 - '@types/react-dom': ^19.2.3 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -3147,36 +3086,36 @@ packages: '@radix-ui/react-primitive@2.1.7': resolution: {integrity: sha512-bC3NiwsprbxKjuon9l7X6BUTw7FPVzEYaL92MPEY5SCd/9hUTPXVFtVwRix7778wtRsVao+zE062gL79FZleeQ==} peerDependencies: - '@types/react': ^19.2.17 - '@types/react-dom': ^19.2.3 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true '@types/react-dom': optional: true - '@radix-ui/react-roving-focus@1.1.15': - resolution: {integrity: sha512-40svmmugfM3mUN7VUDGVE1tQGOhyi8enlGD0CNJEcMM36C1f71PKM21DFgNHUfem0XnA+d8H8oN3Z9ZpJjSslg==} + '@radix-ui/react-roving-focus@1.1.16': + resolution: {integrity: sha512-w7lLsTSd3940vFYEshKkHw+NGf7H0QDJPHYsy8NRjDCVbO6ZdKW1X/xoJSYHZtttnrdZiYqbN2O/2uHGB0zasw==} peerDependencies: - '@types/react': ^19.2.17 - '@types/react-dom': ^19.2.3 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true '@types/react-dom': optional: true - '@radix-ui/react-scroll-area@1.2.14': - resolution: {integrity: sha512-bBODCWZK7JTbQLHs0uIP4f73wIWatakK4OS33UzkR1x897wu0PuO658a3f+6P2GEGyDzGYMuHRatMVoAk9WZTw==} + '@radix-ui/react-scroll-area@1.2.15': + resolution: {integrity: sha512-JVBHNfTBbGd9hhq/xZZOgmVnBCXhLs8PJJ8vMzgwI0pLZNsKckW9pkoqHyxokUCt1hoxbwDNvF9DItEeZsG68g==} peerDependencies: - '@types/react': ^19.2.17 - '@types/react-dom': ^19.2.3 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -3186,19 +3125,19 @@ packages: '@radix-ui/react-slot@1.3.0': resolution: {integrity: sha512-MojKku4U/miO8Av4Dkb+ctMAQx7JmY96LmtDQlAarCRtd7rN52QCSzBF+XAvr5S6coSVj9HEPBgHAHKEJVk/WA==} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true - '@radix-ui/react-tabs@1.1.17': - resolution: {integrity: sha512-nRyXnrAVCwjeXcHbvEbLS6ndbTeKHG1RqCP4A8Gw5L4cemDzPXdD8rAmr6wet0v57R69wGvuIIsFjHSVkZiMzQ==} + '@radix-ui/react-tabs@1.1.18': + resolution: {integrity: sha512-1zq2XkQkK/KfbZn84edytYpOLquhNalra5LXc3NAMKhNRSGtyXqjMv6OyC9jlSuNKpqvQtsb57WKoICNk1v/sQ==} peerDependencies: - '@types/react': ^19.2.17 - '@types/react-dom': ^19.2.3 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -3208,17 +3147,17 @@ packages: '@radix-ui/react-use-callback-ref@1.1.2': resolution: {integrity: sha512-xCso9j1/u8sEgP1RNHjFrXJLApL8LiqOkI1R4ywuN00rxWdYg4oQXuwKLS3i0j5NWLromUD27/4nlxj2UFVvIw==} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true - '@radix-ui/react-use-controllable-state@1.2.3': - resolution: {integrity: sha512-PLzC90MS+ReootmjC597dvopoelpZ8Q61HJkDXZSExitIq7PL55vHNnesAHwguHK0aPfBnpdNzQtv1uliaqQrA==} + '@radix-ui/react-use-controllable-state@1.2.4': + resolution: {integrity: sha512-cx2DixxmSfjCcEoRvDvy1NLd6SWK94XFcEEOZUcharUlXbmahFQGKCfwdKZL2ub34iIwOPOEFVF80xb+yfLYiA==} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -3226,8 +3165,8 @@ packages: '@radix-ui/react-use-effect-event@0.0.3': resolution: {integrity: sha512-6c8ZqvPTWILEKnyVkP53EGRCcpnJiKTC21sS/6R1GF5xKyHJJWQEPfkqlcgUkdRQivd6tb23abUwe4ngWmY0JA==} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -3235,8 +3174,8 @@ packages: '@radix-ui/react-use-is-hydrated@0.1.1': resolution: {integrity: sha512-qwOiz4Tjo8CNnrOLAYUMXeZwDzXgXpvK4TKQPmWLECM9XoWvA6+0Z2/7Ag3A4ivjS4ovbLJPbskkxioFyBhr8A==} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -3244,8 +3183,8 @@ packages: '@radix-ui/react-use-layout-effect@1.1.2': resolution: {integrity: sha512-jrBWOxZITuGcnjRCM2t2U5ZPkCLxD+Ym6DjfssS5haTj2iiak/DOb64JeN6OdLfLgptb6/e2kKR+ZuTrGoZTPA==} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -3253,8 +3192,8 @@ packages: '@radix-ui/react-use-previous@1.1.2': resolution: {integrity: sha512-IGBQPtRFdhN6MQ8dbegVmBq1LVZluya3F1jWY+puIcQC3MHctRwTDSBWCkL/3ZcnMJLTMJ++Z+ktmvg0F89iCw==} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -3262,8 +3201,8 @@ packages: '@radix-ui/react-use-rect@1.1.2': resolution: {integrity: sha512-d8a+bBY/FxikNPlgJJoaBHZX+zKVbWHYJGTLnLvveQgFSTntkGdEKv3JDtHrMS0DNYpllz2nRsTLGLKYttbpmw==} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -3271,19 +3210,19 @@ packages: '@radix-ui/react-use-size@1.1.2': resolution: {integrity: sha512-giWQp+4mxjBPt4KZ0MmyuykFNWfbDxKt4x+fPkRYmgRFJSbCZFzUglvMb/Kjn38tm10YP4ufiQZDx3zna4LU6w==} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true - '@radix-ui/react-visually-hidden@1.2.7': - resolution: {integrity: sha512-1wNZBggTDK3GRuuQ6nP4k2yi7a6l7I5qbMPbZcRsrGsGVead/f/d5FhEzUvqFs0bcrDLx7n1zKQ3JvLR6whaaw==} + '@radix-ui/react-visually-hidden@1.2.8': + resolution: {integrity: sha512-FjsQEpkNBJJYiPSat6jh2LGKLPX2jAoDVS3AZSBNX3cOUoEGhw/f+z2FCY8Cf1NkoYIbytJ1f4mlWPQpR+MjVg==} peerDependencies: - '@types/react': ^19.2.17 - '@types/react-dom': ^19.2.3 - react: ^19.2.7 - react-dom: ^19.2.7 + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -3406,84 +3345,72 @@ packages: engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - libc: [glibc] '@rolldown/binding-linux-arm64-gnu@1.2.0': resolution: {integrity: sha512-D+TgkdgM1vu+7/Fpf8+v0ARW+RXEP9Ccazgm8zQ4JFFd9Q7SrYQ2TakU5S5ihazQDgpKyAgZDOcIFsvoHmTZ8w==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - libc: [glibc] '@rolldown/binding-linux-arm64-musl@1.1.5': resolution: {integrity: sha512-lAryqH7IteztmCXQXk0etKj4wBQ7Gx5S6LjKhsgp9zb8I5bsuvU/2llH1hDQcjsFeqIsovMVN339/8pUDDBXxA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - libc: [musl] '@rolldown/binding-linux-arm64-musl@1.2.0': resolution: {integrity: sha512-wUqdwJBbAv0APN87GecstdMUtLjjNTs0hBALpxETD73mccFxdmt/XeizXDtN5RAlBwNKmI+Tg+blect2G+8IeQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - libc: [musl] '@rolldown/binding-linux-ppc64-gnu@1.1.5': resolution: {integrity: sha512-fsK/sNBnxzBlL4O1JNrZakVQxPspqpED5dLtNsZS9oOKmtSpdNIzxH2kkol5HYTWJN47sE20ztMJPxfZ89qGOg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] - libc: [glibc] '@rolldown/binding-linux-ppc64-gnu@1.2.0': resolution: {integrity: sha512-9DtF35qR9/NrfhM4oxLplCzVVjE+KKm8Pjemi0i/sdhAWkUasjmSo8WTTubNJClhSHCfyk2yeyoXDQEDPtDAAw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] - libc: [glibc] '@rolldown/binding-linux-s390x-gnu@1.1.5': resolution: {integrity: sha512-gLYb4BIadlfTOYT5gO503n8zQjXflgzpD0FcyKh0Mzx3rqCZKnHoJWV9xe1KXUJ5lx2JfcSHr/mhzS0PC/McAA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] - libc: [glibc] '@rolldown/binding-linux-s390x-gnu@1.2.0': resolution: {integrity: sha512-RzuHrBh8X8Hntd2N4VR02QGEciq/9JhcZoTpR/Cee6otRrlILGCf3cg2ygHuih+ZebUnWmMrDX6ITI85btO6rQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] - libc: [glibc] '@rolldown/binding-linux-x64-gnu@1.1.5': resolution: {integrity: sha512-FjcpEKUyJygHgs1o50VYNvkt5+7Le/VEdYt0AkRpkL33MnyQfwr8l5mXwMmfmTbyMPr5vJLC+8/Gd9gXnwU1QQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - libc: [glibc] '@rolldown/binding-linux-x64-gnu@1.2.0': resolution: {integrity: sha512-MK7L0018jjh1jR3mh21G2j1zAVcpscJBlPo2z19pRjv2XOYGRhaV4LyiD8HO6nCDdZln9IFgCMIV5yt4E3klGQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - libc: [glibc] '@rolldown/binding-linux-x64-musl@1.1.5': resolution: {integrity: sha512-Me+PfPI2TMeOQk0gYWfLQZtTktrmzbr8cDboqX83XKc7UrgAi55gF+2dUkWdxd19n55Essp2yeca+O9N5rBxHg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - libc: [musl] '@rolldown/binding-linux-x64-musl@1.2.0': resolution: {integrity: sha512-gyrxLQ9NfGb/9LoVnC4kb9miUghw1mghnkfYvNHSnVIXriabnfgGPUP4RLcJm87q3KgYz4FYUG8IDiWUT+CpSw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - libc: [musl] '@rolldown/binding-openharmony-arm64@1.1.5': resolution: {integrity: sha512-yc5WrLzXks6zCQfn9Oxr8pORKyl/pF+QjHmW/Qx3qu0oyrrNC+y2JLTU1E2rcWYAmzlnqngWXHQjy51VzW70Vw==} @@ -3584,7 +3511,7 @@ packages: resolution: {integrity: sha512-xK8inH/gK++1V4rTxrwCwjvaNwkkJ7oDjOIpdqONVxIpAFnVC3gzqjH5KiXGTelUcxpUJ3PtOKWct1YQ0kAloA==} engines: {node: '>=20'} peerDependencies: - typescript: 6.0.3 + typescript: '>=5.5.0' '@shikijs/types@3.23.0': resolution: {integrity: sha512-3JZ5HXOZfYjsYSk0yPwBrkupyYSLpAE26Qc0HLghhZNGTZg/SKxXIIgoxOpmmeQP0RRSDJTk1/vPfw9tbw+jSQ==} @@ -3650,40 +3577,29 @@ packages: engines: {node: '>= 20'} cpu: [arm64] os: [linux] - libc: [glibc] '@tailwindcss/oxide-linux-arm64-musl@4.3.3': resolution: {integrity: sha512-Md44bD6veX/PC5iyF8cDVnw4HBIANZepRZZ7a8DQOvkfo5WUBwcp6iAuCUz23u+4SUkhJlD3eL7hNdW8ezd/kA==} engines: {node: '>= 20'} cpu: [arm64] os: [linux] - libc: [musl] '@tailwindcss/oxide-linux-x64-gnu@4.3.3': resolution: {integrity: sha512-tx7us1muwOKAKWao2v/GaafFeQboE6aj88vC6ziN2NCGcRm8gWUhwjzg+YdVB1e4boAtdtma4L43onunI6NS4w==} engines: {node: '>= 20'} cpu: [x64] os: [linux] - libc: [glibc] '@tailwindcss/oxide-linux-x64-musl@4.3.3': resolution: {integrity: sha512-SJxX60smvHgasZoBy11dX6YRjXJFovwWBoedhbQPOBzgFWBHGB+TVPWB9BxzR7TTxU8FQZAI2AyiNCMzFm8Img==} engines: {node: '>= 20'} cpu: [x64] os: [linux] - libc: [musl] '@tailwindcss/oxide-wasm32-wasi@4.3.3': resolution: {integrity: sha512-jx1+rPhY/5Ympkktd656HBWEBLxP7dH06losBLjjf5vgCODXvi9KhtftWcMIwTFIDqBr7cRnQkdLnAG+IOlGvQ==} engines: {node: '>=14.0.0'} cpu: [wasm32] - bundledDependencies: - - '@napi-rs/wasm-runtime' - - '@emnapi/core' - - '@emnapi/runtime' - - '@tybys/wasm-util' - - '@emnapi/wasi-threads' - - tslib '@tailwindcss/oxide-win32-arm64-msvc@4.3.3': resolution: {integrity: sha512-3rc292Ca2ceK6Ulcc/bAVnTs/3nDtoPhyEKlgPv+yQJQi/JS/AMJlqzxvlDacL1nekbrcf6bTqp/jV4qgnPxNQ==} @@ -3721,28 +3637,24 @@ packages: engines: {node: '>= 12.22.0 < 13 || >= 14.17.0 < 15 || >= 15.12.0 < 16 || >= 16.0.0'} cpu: [arm64] os: [linux] - libc: [glibc] '@takumi-rs/core-linux-arm64-musl@1.8.7': resolution: {integrity: sha512-akVy80ztI2as/b0n0EVCfHNKhibp+Od4ioP49PtX2rQMi6KDtqv3aoCIjaBls8oxzv+4x77/2U9fsWIO2XZQjg==} engines: {node: '>= 12.22.0 < 13 || >= 14.17.0 < 15 || >= 15.12.0 < 16 || >= 16.0.0'} cpu: [arm64] os: [linux] - libc: [musl] '@takumi-rs/core-linux-x64-gnu@1.8.7': resolution: {integrity: sha512-SV1YesGs/HfC1CMpSF5SqS6KbL4hDLvD2m54JcfB+X/0xatmo/CS2XleqoIXhSmR+95X8Of5g2vg1a4TAdpcug==} engines: {node: '>= 12.22.0 < 13 || >= 14.17.0 < 15 || >= 15.12.0 < 16 || >= 16.0.0'} cpu: [x64] os: [linux] - libc: [glibc] '@takumi-rs/core-linux-x64-musl@1.8.7': resolution: {integrity: sha512-zprYQ/ivPDmYX4tFaONiAzoDJNTANA3kqfIe7SMHZ2YhkfEhYnr3PE3XtBytgB4W/VlTc9WQLyD77SKwPnPuFw==} engines: {node: '>= 12.22.0 < 13 || >= 14.17.0 < 15 || >= 15.12.0 < 16 || >= 16.0.0'} cpu: [x64] os: [linux] - libc: [musl] '@takumi-rs/core-win32-arm64-msvc@1.8.7': resolution: {integrity: sha512-2S5YcgIj/c0E3sLzWDcxzlXoPvEjR2xC1v7yODe0CvimlRx95Df6rJ9idTS6E1KNUjDaTfqxTr8Ud4gWqYrrPg==} @@ -3763,8 +3675,8 @@ packages: '@takumi-rs/helpers@1.8.7': resolution: {integrity: sha512-5dSR9W8msQ7Asp4TCvUUB9Bt8yLgIc2ASjWtEG4Jn9xSuAVJLWFZ21Xl8HShW5GE6SV5aCCM9BL0NA9YuBWIJw==} peerDependencies: - react: ^19.2.7 - react-dom: ^19.2.7 + react: ^19.2.5 + react-dom: ^18.0.0 || ^19.0.0 peerDependenciesMeta: react: optional: true @@ -3837,7 +3749,7 @@ packages: '@theguild/remark-mermaid@0.3.0': resolution: {integrity: sha512-Fy1J4FSj8totuHsHFpaeWyWRaRSIvpzGTRoEfnNJc1JmLV9uV70sYE3zcT+Jj5Yw20Xq4iCsiT+3Ho49BBZcBQ==} peerDependencies: - react: ^19.2.7 + react: ^18.2.0 || ^19.0.0 '@ts-morph/common@0.29.0': resolution: {integrity: sha512-35oUmphHbJvQ/+UTwFNme/t2p3FoKiGJ5auTjjpNTop2dyREspirjMy82PLSC1pnDJ8ah1GU98hwpVt64YXQsg==} @@ -4019,7 +3931,7 @@ packages: '@types/react-dom@19.2.3': resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==} peerDependencies: - '@types/react': ^19.2.17 + '@types/react': ^19.2.0 '@types/react@19.2.17': resolution: {integrity: sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==} @@ -4039,76 +3951,76 @@ packages: '@types/unist@3.0.3': resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} - '@typescript-eslint/eslint-plugin@8.64.0': - resolution: {integrity: sha512-CGvQPBxN3wZLu6Rz2kFUpZeoCm78xUic92ck39KPePkO1NPOwjCqdQnm5Q87tpWw9vcBvW8XLrDXjH9PWYtJ3Q==} + '@typescript-eslint/eslint-plugin@8.65.0': + resolution: {integrity: sha512-IEgob78X12rHpUmtcwFsXhZdVGJtwTVP8FiCLZkR6GlYVrl2PcuB+KhCE5BlVC/eQpQnu8WXRtkHZuPar+gCRA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.64.0 + '@typescript-eslint/parser': ^8.65.0 eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 - typescript: 6.0.3 + typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/parser@8.64.0': - resolution: {integrity: sha512-KA0OshtlcCCXmbfqyZkM5pV3/WNraJf7DkJRLpyrmwPtud57H5BDX7C3k0LPSPxpprfRL+cJDGabF10mvNCoCw==} + '@typescript-eslint/parser@8.65.0': + resolution: {integrity: sha512-CZ4nMxWwgu1HEEFNkeaCptra9QCtkmKdgf3sWh1rl1trIhmxLilgTV4cwcbQ4wemnT4sWQN8CaKOmdYx+g2gMA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 - typescript: 6.0.3 + typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/project-service@8.64.0': - resolution: {integrity: sha512-tk4WpOJ6IEbGrVHaNmM0YRrwAD3exZlIK3iadQNAxh4YKk6jvUQ4ecq18n+v7+meh+cJ3j+D8nbk8sRKhlwLQg==} + '@typescript-eslint/project-service@8.65.0': + resolution: {integrity: sha512-SxnPhbTsGahizDgbu7oqFH/xVtzIqMd/s+WtnSxNxJZJpLbdT5IPdzg8EZxO3+PoKahXmwJLeNQOpKJb3/bi7Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: 6.0.3 + typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/rule-tester@8.64.0': - resolution: {integrity: sha512-QmEBcU+JKvSx2DagEb/Nip7331IAQkH77QlEp5KNWs9/OvbhiUXvdf09k43dZtIRtAA0ahNDesQ+bfpjN/UsMA==} + '@typescript-eslint/rule-tester@8.65.0': + resolution: {integrity: sha512-Ksf2XTK6yoO1uqVfLyqv69ZM1YO7FQHHpZqRR+CL42BfNEtD4mQ4kEPZaeyNCeLLpanFCvfntiP32h66riSLXQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 - typescript: 6.0.3 + typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/scope-manager@8.64.0': - resolution: {integrity: sha512-CXEaFdYXjSTgKhisNkwCcJwTP8Pl+fmRrEQrri4nm3vU743bALrxzLmq7fHG/7e6a5xO0lDYeURpZmBuhHk54w==} + '@typescript-eslint/scope-manager@8.65.0': + resolution: {integrity: sha512-Esbl8OSYiVxBokYgWPf7VVWg/BE798wXhimnn9ML9Pt5qoDf8bfQlgjlKXR/k98+AcNzlLKYrpCcrcuZ9DZLgg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/tsconfig-utils@8.64.0': - resolution: {integrity: sha512-2yo8rRNKuzbVWQp5kslhANqZ2uDAeROQHBRZNPu8JDsHmeFNj/XJJhX/FhNUWmkHHvoNsKa6+tHJiig87EzsQw==} + '@typescript-eslint/tsconfig-utils@8.65.0': + resolution: {integrity: sha512-j6GzGqCiRdA7Qhur2VVmKZAkBLfnHFQfx4TaJGL9RMveZqCo48jSHHO0DTgizEnGhtWnqmbtCUSrqSkdiY/0Hg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: 6.0.3 + typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/type-utils@8.64.0': - resolution: {integrity: sha512-XWG4Fmmv/6SvyS9nH8jWrKs6terwJvE8cyRt1CzYYqzp9OrPhCT4cMc/f7C6RZCwG+qMmiffJS1/qJP8G1URtg==} + '@typescript-eslint/type-utils@8.65.0': + resolution: {integrity: sha512-YjaZ7PRI5qY7ax2L3PbvX0rRyGtipAReCWs0mhhDBHjH/vl0g0BonaGXrKdKpMbIIsMIwDgbk/xzkBTyAltS5g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 - typescript: 6.0.3 + typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/types@8.64.0': - resolution: {integrity: sha512-qjhfuTfLXjA4IOzXvz0rTjT01BqEiIgPoUeMwiEjnaHKJMTNo8rH5pYW1a2L/0Dnux2fPC85AeyJoWaGa8WxTA==} + '@typescript-eslint/types@8.65.0': + resolution: {integrity: sha512-JSSwWNy+H0E/01jJEM+hrX6N0OFDzFzeIhHFSAS01tlVaevpG8cFyYRPhS5yjGOvBUx3sqQHVMjCL1CAZZMxBg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.64.0': - resolution: {integrity: sha512-Pztpsn1aCE1oWDvDEfUk31nngvvF7vUB5SwHFEaZIFpvw7WJtqUHHL4plBZDA9HfWJJjL13BdG0YrJInTUvoVA==} + '@typescript-eslint/typescript-estree@8.65.0': + resolution: {integrity: sha512-JboAE2swaYt4tb1fHhHTABE2K+OLy09XfcTbhnk4Pw96f9dd2e9iYsJ28gBggHlo5z5x1rkyWvcPoTuNTd4oGg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: 6.0.3 + typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/utils@8.64.0': - resolution: {integrity: sha512-aJUGVB3+U0htrrCjoA8qukw8cm8fNCGAxK/tVoS70k8aeb7DETKeFozRiVFIwEeN9WJLsjaP3ph8I60tY2XZoQ==} + '@typescript-eslint/utils@8.65.0': + resolution: {integrity: sha512-gXiwIHsYreboxeJucHKPvgwl7dXt50mF8s1/c00cP/WoVTyWKFdtfhRWwZiXYFU5H2O8vVoSLNrexFZjYS/SGA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 - typescript: 6.0.3 + typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/visitor-keys@8.64.0': - resolution: {integrity: sha512-mrtuL8Nsn6gi2H4mo5KMTp823M+3Q19Ew/i+Zlikq20tIMm99C3Ez0dCmkWWnxut20esQvTg8aUSEhMcAOXhEw==} + '@typescript-eslint/visitor-keys@8.65.0': + resolution: {integrity: sha512-8C71BQkGjiMmXtop7pHVJu1l2NNShFdkCyD6a2ezzs5vU/L3LRtb69EtcteFwz0mYMPzIgOw0n6OV4VBUWZd7A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@typescript/vfs@1.6.4': resolution: {integrity: sha512-PJFXFS4ZJKiJ9Qiuix6Dz/OwEIqHD7Dme1UwZhTK11vR+5dqW2ACbdndWQexBzCx+CPuMe5WBYQWCsFyGlQLlQ==} peerDependencies: - typescript: 6.0.3 + typescript: '*' '@ungap/structured-clone@1.3.3': resolution: {integrity: sha512-60YRaenCQcVjYEKOcG824+DRGGIQ3VKErcBoAEDJZz5bKIs2ZG+X/H9Nk+Q6EVkwJk5QNApxbrc5QtBSwtrXAg==} @@ -4195,37 +4107,31 @@ packages: resolution: {integrity: sha512-hm8Tq0umop3RGu6dOMF61q69tYn1bDp1CeYD5ZjuGFQJclp0moVtjzY4z0bzusicKeZ9+k5LRroR0p5HWC2hDw==} cpu: [arm] os: [linux] - libc: [glibc] '@yuku-analyzer/binding-linux-arm-musl@0.6.12': resolution: {integrity: sha512-CxtPKLddogHAB3ZHVWaUl+U8jx0pdriTSbQ1K/orlDqU0GDhg8LuIRyUscP7r2/62fGGMzkc119fE71I4Nl1Fg==} cpu: [arm] os: [linux] - libc: [musl] '@yuku-analyzer/binding-linux-arm64-gnu@0.6.12': resolution: {integrity: sha512-EOyLcpAmF5qAVDKmKvV7xt8oBGeWQ92CqFI4s7h7TRlrF6TfGRrh8PwawGn92gFploNLAYj/1Z9Q1gVvwGgG9g==} cpu: [arm64] os: [linux] - libc: [glibc] '@yuku-analyzer/binding-linux-arm64-musl@0.6.12': resolution: {integrity: sha512-T3eCYy6bMnVRMQEYAbDcpj08/XM93dBTtnn/DDocJN21RARe+KCzWKeL26J3yd3bOW3WVjVLq09BfdpAGB0buQ==} cpu: [arm64] os: [linux] - libc: [musl] '@yuku-analyzer/binding-linux-x64-gnu@0.6.12': resolution: {integrity: sha512-1Y+noIuvnDugIVsoIr5NduZqX7KuFTzICSkvG8RW3OKK9URVeTOicKK217i44ABZSSZJ7A0E7vzifapx0c9VDw==} cpu: [x64] os: [linux] - libc: [glibc] '@yuku-analyzer/binding-linux-x64-musl@0.6.12': resolution: {integrity: sha512-woN/GuG95Fd6bp+ZQfmiFrZnoA2hdu3vfVSc89A8LElnYpzFaJM81sOZp8f3tVOVUJxbt7KAUiCLwSy34MJKqA==} cpu: [x64] os: [linux] - libc: [musl] '@yuku-analyzer/binding-win32-arm64@0.6.12': resolution: {integrity: sha512-8OVFnKbK+lgsL6MqILPLpzlsa00K4KiKsdbHH94hpGcrqaz1jv+k0Y7ujSaoYTWw5Bb7Lr9GJ3L1n1hT2sXoYA==} @@ -4237,137 +4143,125 @@ packages: cpu: [x64] os: [win32] - '@yuku-codegen/binding-darwin-arm64@0.6.12': - resolution: {integrity: sha512-C9rpGA8S8MTze6+EeM9wVu63OXyfzvzhVaBW7gvvS+X36uQc3DZ3qAN5kuXkRVaVN+pJqb+maIKEjnJ0k9lwmw==} + '@yuku-codegen/binding-darwin-arm64@0.7.3': + resolution: {integrity: sha512-hbssEr7iLNCWWdUbEt8cuOjUQ9loI+U/BVmdhNQ4CV1wAFGvWDO3niK9JD2WwTC9iib7E498qgZ3L/xJnoSb3A==} cpu: [arm64] os: [darwin] - '@yuku-codegen/binding-darwin-x64@0.6.12': - resolution: {integrity: sha512-YV2jLF2hJtkRjw50szArmyl19DI2s50Y0v+UTb6vADaDTts0kCP/ZJ5bvTX8XuX/5RW7kTERZx/PI+w/9lnAKw==} + '@yuku-codegen/binding-darwin-x64@0.7.3': + resolution: {integrity: sha512-WqwST3vVcNBTd1zaT1vP6pU8NkjJlLWN37Kqomc2c6TG9eky6sbAfHIhZEjSSyqFrMqsAt3mIu0jQZAODi401g==} cpu: [x64] os: [darwin] - '@yuku-codegen/binding-freebsd-x64@0.6.12': - resolution: {integrity: sha512-hNAMOQhYuW9f3wIPwP7anyvr+sBBwtEUSTEOD7BYwcuay9f+wjAYM+UBiL2wiJ/4L/0yV0SNc1fF/N+BWEKqKw==} + '@yuku-codegen/binding-freebsd-x64@0.7.3': + resolution: {integrity: sha512-mCci4UPkZXYflXuHnPGl5sDsotBPLaBryFylDwZcqposktmumoOBIKp2gpzEmxQL/XlGdVWksmpYw9IRY43FNQ==} cpu: [x64] os: [freebsd] - '@yuku-codegen/binding-linux-arm-gnu@0.6.12': - resolution: {integrity: sha512-ClOiLpyofntNGZzQ3BxbwkNe92J911t9C2R3s6HwQ2yH0lRLS88DUey7+xQNu4az96T1PEc+pR9ZIP/GzOCHNg==} + '@yuku-codegen/binding-linux-arm-gnu@0.7.3': + resolution: {integrity: sha512-F1QIaRH5SeahrYjZVrVvIb5nHCZQMF7+YWAy6yTJh0Y2r2wLgqOQuhbOWcoKk+AyBiTOO2nAsFHNpVqRq2GjGw==} cpu: [arm] os: [linux] - libc: [glibc] - '@yuku-codegen/binding-linux-arm-musl@0.6.12': - resolution: {integrity: sha512-8LnO3kYIEpm13Gj0RDfM2hciPxagTZWJcB6RM6DZBEF+GJYsmOII90F0UulLzn/l2bLY5oVPMPgF0Rn29fY2jw==} + '@yuku-codegen/binding-linux-arm-musl@0.7.3': + resolution: {integrity: sha512-JvkWNmN8MFbboX/5grRsAldGaB8ArRFgAaUYfQoohsqcuJZee8SLtc6itvwuntPbN9MGStn4GzdWk2lmSURqbA==} cpu: [arm] os: [linux] - libc: [musl] - '@yuku-codegen/binding-linux-arm64-gnu@0.6.12': - resolution: {integrity: sha512-GdETEflvfkPtdEpzT6QBAucsMAt7wiLYMk4+w1qA34J02OAo11BsTJrxUkPaQ4z/S6KkX3IfK5Ud9rCAyelnCg==} + '@yuku-codegen/binding-linux-arm64-gnu@0.7.3': + resolution: {integrity: sha512-DUnMTE/HCA7j1BAipWclGZCYfLZ/4SV5lldmV2kDmVMIywcw4PhtQ4Rfd/tO1K82JkjhQ+4a8XApcOIksOacnQ==} cpu: [arm64] os: [linux] - libc: [glibc] - '@yuku-codegen/binding-linux-arm64-musl@0.6.12': - resolution: {integrity: sha512-ztFEUChX/sK9B0DH6//g4/QYl4dvTs3BOE+YMVt7pxg9G9fzBcV1vMZdROuXXNGWp6/hU56kTSZ8t4uW/0qpjw==} + '@yuku-codegen/binding-linux-arm64-musl@0.7.3': + resolution: {integrity: sha512-pNnXMnm9dlqd3V8C7nHaXgZnMLwP/CyM8B4mSAnkqVlhj2t3b8CMjesEV85SCbFlagzJk8FapfSghfxcXKuBow==} cpu: [arm64] os: [linux] - libc: [musl] - '@yuku-codegen/binding-linux-x64-gnu@0.6.12': - resolution: {integrity: sha512-aDZEat8bARks9upxd8Joi7LGatX2B/TwlnXIdbMCGlONK3WAEroihY1SUyGlf02niU1OyBidhlN7l3l+LByMxw==} + '@yuku-codegen/binding-linux-x64-gnu@0.7.3': + resolution: {integrity: sha512-o5GRppYvYvPl4UJbgRSZpXXDh6rOWQzX0yLB+tDzv31T7mOuLitU6zgQZxzw5rwhPJDffCt/AVKMbtizEo+UtA==} cpu: [x64] os: [linux] - libc: [glibc] - '@yuku-codegen/binding-linux-x64-musl@0.6.12': - resolution: {integrity: sha512-IEuUSS04RsAx+d3PpAMAgCmEC0PzAuk5cath2Zk/KGe/te1zwTjZGxbBJM7n+0APaHB+IhUEMgm0bcjIAweEVQ==} + '@yuku-codegen/binding-linux-x64-musl@0.7.3': + resolution: {integrity: sha512-GdiyLD1bM3lhTUeGkA9ZZLjqU+xt5uVihgPm0e6TdBjCi6DMZORWe02oDlRbn9OZaV7AZosngXAq2jLk3TrBEw==} cpu: [x64] os: [linux] - libc: [musl] - '@yuku-codegen/binding-win32-arm64@0.6.12': - resolution: {integrity: sha512-0HHfyj/TbuFN09QFyypZ4+5vqmxeOYmEdFGuDnsq0KJdxnTeH0Fbqh1Bn7ZRV89IRzi8Fm7zSkb3mMJIS8Tk4g==} + '@yuku-codegen/binding-win32-arm64@0.7.3': + resolution: {integrity: sha512-uQrxQDBQFIAUgHJIxcB/FAAUk0Wkyj3xGpHrp/C258nXnCTAH0KDaqyK5RN/TCkVYrpH+uCl+rGnwDLSGnPBkQ==} cpu: [arm64] os: [win32] - '@yuku-codegen/binding-win32-x64@0.6.12': - resolution: {integrity: sha512-ZItYULslPqB9S7b53v23IeUcPCd5NeW+5+BoMyCY5/AEsMADKdznZXd4ELO1TZxv+0oA55g3iAOC9GWgigCsZA==} + '@yuku-codegen/binding-win32-x64@0.7.3': + resolution: {integrity: sha512-UoF7tqMnVMUmIXPgDjFLhRezea6HaypwLDWNenCFxfJCzQNEa41lcHpxq1AN2Xl6GLzIDfAb+lQDi/O+zPCfyg==} cpu: [x64] os: [win32] - '@yuku-parser/binding-darwin-arm64@0.6.12': - resolution: {integrity: sha512-8nsmwwzuh2YCmJ3LT26RQp1tvS6FzGC2+XP6wFz6TNaBtQje+QgwkVdKVuECVWNHPFmuSTHonOnSzX0QirHqvQ==} + '@yuku-parser/binding-darwin-arm64@0.7.3': + resolution: {integrity: sha512-JcFQSNEnjtyHQRjXO0G5rQt5xHq5MR+9nHqh+wt5MP30XIiccUYlcMIa3s7CBmj8E8WPGZC08k7LNGrA1OISTA==} cpu: [arm64] os: [darwin] - '@yuku-parser/binding-darwin-x64@0.6.12': - resolution: {integrity: sha512-URbCSLE/B0jWnB94RpOxak2TM0GvRLUmArtfb/UmxtQfNOLed4LKK0jUv68IMAL9lOmJlvOBH9UwOyeuLEfuvA==} + '@yuku-parser/binding-darwin-x64@0.7.3': + resolution: {integrity: sha512-U0kNeI3VygP/+8sTOLTeLTjUyTYZfl9Wuq6xVKWPXHb2K7oI0sm8JXJ5xlhAbkUDQRi0N6yK5TKxS0sQT5M6UQ==} cpu: [x64] os: [darwin] - '@yuku-parser/binding-freebsd-x64@0.6.12': - resolution: {integrity: sha512-VmiuUxe6uUe2c5tmBnIdZ+/LQ++ioKIZcCP/zMB8E7tuUaQesvMEPOS8ZQrUohFY2VlrKroiATaB1l9KJw15Zw==} + '@yuku-parser/binding-freebsd-x64@0.7.3': + resolution: {integrity: sha512-Xc08FQTvxovy6pX+Co9fgv3N1H0OpLpph/ClbwnJkcdphY3kzN2GgIfir35kpPp8mOzlQgtAVQdeDyAYyjwx4w==} cpu: [x64] os: [freebsd] - '@yuku-parser/binding-linux-arm-gnu@0.6.12': - resolution: {integrity: sha512-q9WcllopGo8W9qzMz4Aahew3z/rLxiZFpmVoZQaLjwaO9EDW3sULue2zJ9agvVMf1NzRXircauTUrPZ4EZ74cQ==} + '@yuku-parser/binding-linux-arm-gnu@0.7.3': + resolution: {integrity: sha512-6bHeDiUd+0bmoJJ5wZVG+PcJkXQUdjy/AzHsOVcOSUtHtRTX2H3Z5RIHyPAh5OveLtT4RHyqaO3fEQGnHGX5/Q==} cpu: [arm] os: [linux] - libc: [glibc] - '@yuku-parser/binding-linux-arm-musl@0.6.12': - resolution: {integrity: sha512-DcEO5Ywaw4r5keOonqdvuQdKNqN+VipJrdiC+jakOwiy1NLSbseylyufheg6uafviMuGn2to1oWw1FXD6Y4ztQ==} + '@yuku-parser/binding-linux-arm-musl@0.7.3': + resolution: {integrity: sha512-trGERNLJGvXkkyvdWBKspTOBATd4lcmpPFPcy5HI5kC3rC3ZMHQDJ356OMSVUsR2NQnl++F0ZTZQucao9hrbeQ==} cpu: [arm] os: [linux] - libc: [musl] - '@yuku-parser/binding-linux-arm64-gnu@0.6.12': - resolution: {integrity: sha512-zUFJar5Y9On9eIAw6kLxCmuAirGUjC3pyLdxrHC1dYueIMzZDrBa0hyzHRC7Nybr6R7COQ2U0oVZuZcl46RboA==} + '@yuku-parser/binding-linux-arm64-gnu@0.7.3': + resolution: {integrity: sha512-p1ELmzhqAX7SFUvH/tR5zSb8NsWZQ8ulw7PqatfXNmJMy34bkivtL0z2jPpVoMJXf5o2+TwBN29Z31CLL0wvkA==} cpu: [arm64] os: [linux] - libc: [glibc] - '@yuku-parser/binding-linux-arm64-musl@0.6.12': - resolution: {integrity: sha512-nPkXLUBQ0GiU0+BQByTb5M+a9wnCfM0SSBmIHYJ2KtaRUYmOruMut4AyBOVwIE2mbPeiOYcrWpMkseeFJ7Wonw==} + '@yuku-parser/binding-linux-arm64-musl@0.7.3': + resolution: {integrity: sha512-dZ79SrJ002ZXfBDmpQ47SF+06Q5bGOjFeoSK8xO97ter/bjLBgxSO4d7i9hhf+uj4xkrTPc/OFNVaeBAF3L4dA==} cpu: [arm64] os: [linux] - libc: [musl] - '@yuku-parser/binding-linux-x64-gnu@0.6.12': - resolution: {integrity: sha512-XucJKw1k2nyfQoiBJiQJm1q3n6K8rCDvhQpF4XRoIzTQNhAV2sldEayJvCAsTS4orCHcsDqrDrBVRMRg8ExXPw==} + '@yuku-parser/binding-linux-x64-gnu@0.7.3': + resolution: {integrity: sha512-LjT64hVGWWbOmOYS+Fd8qScgyRxgUbudhFJbw8aeUVnhiNR1np36KnE0VFWrJeu7rTdNxuzVyV5o9JLqhBDTVQ==} cpu: [x64] os: [linux] - libc: [glibc] - '@yuku-parser/binding-linux-x64-musl@0.6.12': - resolution: {integrity: sha512-+p17OXn9xf4zePE3EEh1NriHv5GtfBJ8dEeaGVHUQNo5rkzDzcMH3PrMUD00RqWrWci5BfY7jMhMxgUye+NArA==} + '@yuku-parser/binding-linux-x64-musl@0.7.3': + resolution: {integrity: sha512-5Nw3v5BqYbOi0ZdV+SImgVYa0KDBVAY/ZNPilTsJJU4phqa2cqEW4+aMgyieE/4bqpojt/B931kM+7pipazP9g==} cpu: [x64] os: [linux] - libc: [musl] - '@yuku-parser/binding-win32-arm64@0.6.12': - resolution: {integrity: sha512-BF6hLXQzaKj5Rn5r1QrCu6GBqdkjOOb8qpzWoKdG18QVhr/pnMPJpFl9isMg20orlOM+Kl/mU6XfzljgmzbocQ==} + '@yuku-parser/binding-win32-arm64@0.7.3': + resolution: {integrity: sha512-lFYXgHiq8tJKa6/e1/q8Su+IJVV4/CjoXbIJ7/GdPXPp9Hx0gh/8HqmGSsrwlY2w8/ohBcar9wxjm1rQ8D16bg==} cpu: [arm64] os: [win32] - '@yuku-parser/binding-win32-x64@0.6.12': - resolution: {integrity: sha512-Qv4Lwg3pvLJrLg+JlB71Xuz3kIxEg/S402jpoLSlchvUkQKTzO+dii0+97FZfQsN67pqqssenhezg5iLNrdw1w==} + '@yuku-parser/binding-win32-x64@0.7.3': + resolution: {integrity: sha512-wy/fs4OrHBhKW8LDyZJRMyMQ3QOfbSQDp0WtMbtzWCVui/vTQEUJMGnwvRCppjchS/qIQfbWzIw/HSjogJqZFA==} cpu: [x64] os: [win32] - '@yuku-toolchain/types@0.5.43': - resolution: {integrity: sha512-kSpvPntnXw5+lYjO71ffBEnQ5ycQ74KGIYknh0TS4xeyCuBkOqxyJumxZkMhLBBUCLjDAbx2+Icnr3Zh4ftjpQ==} - '@yuku-toolchain/types@0.6.11': resolution: {integrity: sha512-i1JYFNJaKNCgyJ/nVoR8GK7wvlXF+ShYzFHBauWcvg8IoiXInK7pVziHcgNz/MWLPNr/Mb/CtmXccrJMkKqSHQ==} '@yuku-toolchain/types@0.6.8': resolution: {integrity: sha512-AbUd1775RVkOxJkh8hkldIWoU6kRMTCsZFSZq8Ny53q7GkbaVe5UCfleNZ3RWCoz/ZKE8qwfeB7Cj0xqhLWsKA==} + '@yuku-toolchain/types@0.7.3': + resolution: {integrity: sha512-ezarjq3dcl8Nx3iJ9VeAc7vhzvHyRoSvr7bLX76T+ljRq73IbZ11X2RFCblfK6YxW2DsjkzU6MPnr3JWDYqYYQ==} + '@zkochan/js-yaml@0.0.7': resolution: {integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==} hasBin: true @@ -4488,15 +4382,11 @@ packages: resolution: {integrity: sha512-1pHv8LX9CpKut1Zp4EXey7Z8OfH11ONNH6Dhi2WDUt31VVZFXZzKwXcysBgqSumFCmR+0dqjMK5v5JiFHzi0+g==} engines: {node: 20 || >=22} - balanced-match@4.0.4: - resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==} - engines: {node: 18 || 20 || >=22} - base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - baseline-browser-mapping@2.10.43: - resolution: {integrity: sha512-AjYpR78kDWAY3Efj+cDTFH9t9SCoL7OoTp1BOb0mQV7S+6CiLwnWM3FyxhJtdPufDFKzmCSFoUncKjWgJEZTCQ==} + baseline-browser-mapping@2.11.0: + resolution: {integrity: sha512-oCu2wfipvX3AePSgmOuKkIywOu+8n9psz7hXYmk56ghpu3+7KzNIBopaOs4c9BrtdnTtW30unG9GTfHo7EwERQ==} engines: {node: '>=6.0.0'} hasBin: true @@ -4523,10 +4413,6 @@ packages: resolution: {integrity: sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==} engines: {node: 18 || 20 || >=22} - brace-expansion@5.0.7: - resolution: {integrity: sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==} - engines: {node: 18 || 20 || >=22} - braces@3.0.3: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} @@ -4539,7 +4425,7 @@ packages: bsky-react-post@0.1.7: resolution: {integrity: sha512-c+M94RCQQmEHKaB93tAJ42SnrL6nKHlaI4qRRKMy0+Lqo0osksKaW+VNya5iQXihp1Mx59zM1WEVdd9OyHrteQ==} peerDependencies: - react: ^19.2.7 + react: '>= 18.0.0' swr: ^2.2.5 buffer-from@1.1.2: @@ -4556,7 +4442,7 @@ packages: resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} peerDependencies: - esbuild: ^0.28.1 + esbuild: '>=0.18' bytes@3.1.2: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} @@ -4717,7 +4603,6 @@ packages: concat-stream@2.0.0: resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} - engines: {'0': node >= 6.0} content-disposition@1.1.0: resolution: {integrity: sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==} @@ -5072,8 +4957,8 @@ packages: engines: {node: '>=0.12.18'} hasBin: true - electron-to-chromium@1.5.393: - resolution: {integrity: sha512-kiDJdIUawuEIcp9XoICKp1iTYDEbgguIPq526N1Q7jIQDeQ3CqoMx71025PI/7E48Ddtw2HuWsVjY7afEgNxmg==} + electron-to-chromium@1.5.394: + resolution: {integrity: sha512-Wmt2Gm0o8JWBuGgmc4XZ0u9s1RaCRqhxP47phplmfg04+qypTUurpeJGP45A7Fhv7jdrrVH44PLlR9qXo37cVQ==} elkjs@0.11.1: resolution: {integrity: sha512-zxxR9k+rx5ktMwT/FwyLdPCrq7xN6e4VGGHH8hA01vVYKjTFik7nHOxBnAYtrgYUB1RpAiLvA1/U2YraWxyKKg==} @@ -5098,8 +4983,8 @@ packages: end-of-stream@1.4.5: resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==} - enhanced-resolve@5.24.2: - resolution: {integrity: sha512-rpsZEGT1jFuve6QlpyRp9ckQ+kN61hvF9BzCPyMdaKTm8UJce96KBn3sorXOFXlzjPrs3Vc4T1NsSroZ3PxlFw==} + enhanced-resolve@5.24.3: + resolution: {integrity: sha512-PwKooW9JUzh5chmYfHM3IQl5OkK2u2Nm011MgeZrss3JmFraUx/fqrf78kk8GUMYoibx/14MdwTl/1WKkG7TpQ==} engines: {node: '>=10.13.0'} enquirer@2.3.6: @@ -5203,8 +5088,8 @@ packages: peerDependencies: eslint: ^8.45.0 || ^9.0.0 || ^10.0.0 - eslint-plugin-jsdoc@63.1.0: - resolution: {integrity: sha512-Vo0Mvhxi6B63gLIDI86QChkiKE79MxxM0I16gMN/HJn0rvJvMIG/nmn+KPcsx+GWYDQq6X0UfNRjRK1+97NYVg==} + eslint-plugin-jsdoc@63.2.0: + resolution: {integrity: sha512-tccz9igEV5mTKVAwo/KwXqKP7ENqa3a+LpRFuEPAP3k/+SXG4T0sOvA+c2wwTD/TLNrH9MCW4LIu4xEExkJdzg==} engines: {node: ^22.13.0 || >=24} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 @@ -5378,8 +5263,8 @@ packages: fast-levenshtein@2.0.6: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - fast-uri@3.1.3: - resolution: {integrity: sha512-i70LwGWUduXqzicKXWshooq+sWL1K3WUU5rKZNG/0i3a1OSoX3HqhH5WbWwTmqWfor4urUakGPiRQcleRZTwOg==} + fast-uri@3.1.4: + resolution: {integrity: sha512-8JnbkQ4juDyvYs4mgFGQqg4yCYtFDtUtmp2QIQq11ZZe5CFQ5wcqm1rqDgAh/QdMySuBnPzMUiJUNZG5N/AiQw==} fastq@1.20.1: resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==} @@ -5476,8 +5361,8 @@ packages: resolution: {integrity: sha512-5XY9luDiu0oHfHBjpDthFMh0ES+122w6p/papSJBweMkO8Sn+PW2QaEgRblQBpWFnuvZS5qvarpt/hO2pjGmnw==} peerDependencies: '@emotion/is-prop-valid': '*' - react: ^19.2.7 - react-dom: ^19.2.7 + react: ^18.0.0 || ^19.0.0 + react-dom: ^18.0.0 || ^19.0.0 peerDependenciesMeta: '@emotion/is-prop-valid': optional: true @@ -5509,13 +5394,13 @@ packages: '@types/estree-jsx': '*' '@types/hast': '*' '@types/mdast': '*' - '@types/react': ^19.2.17 + '@types/react': '*' algoliasearch: 5.x.x flexsearch: '*' lucide-react: '*' - next: ^16.2.10 - react: ^19.2.7 - react-dom: ^19.2.7 + next: 16.x.x + react: ^19.2.0 + react-dom: ^19.2.0 react-router: 7.x.x || 8.x.x waku: '*' zod: 4.x.x @@ -5582,11 +5467,11 @@ packages: '@fumadocs/satteri': 0.x.x '@types/mdast': '*' '@types/mdx': '*' - '@types/react': ^19.2.17 + '@types/react': '*' fumadocs-core: ^16.7.0 mdast-util-directive: '*' - next: ^16.2.10 - react: ^19.2.7 + next: ^15.3.0 || ^16.0.0 + react: ^19.2.0 rolldown: '*' satteri: ^0.9.4 vite: 7.x.x || 8.x.x @@ -5615,11 +5500,11 @@ packages: fumadocs-twoslash@3.3.0: resolution: {integrity: sha512-IR+oYbjsR59h/R7AvdeEdHEY48ygCHII3tUZGC3QnUVug5+qN1wlRNr30gAfOvrau/mdiRKwONuJCOKOWqEFbg==} peerDependencies: - '@types/react': ^19.2.17 + '@types/react': '*' fumadocs-core: ^16.7.16 fumadocs-ui: ^16.7.16 - react: ^19.2.7 - react-dom: ^19.2.7 + react: ^19.2.0 + react-dom: ^19.2.0 shiki: 4.x.x peerDependenciesMeta: '@types/react': @@ -5631,11 +5516,11 @@ packages: '@types/estree': '*' '@types/hast': '*' '@types/mdast': '*' - '@types/react': ^19.2.17 + '@types/react': '*' fumadocs-core: ^16.7.0 fumadocs-ui: ^16.7.0 - react: ^19.2.7 - react-dom: ^19.2.7 + react: ^19.2.0 + react-dom: ^19.2.0 peerDependenciesMeta: '@types/estree': optional: true @@ -5652,11 +5537,11 @@ packages: resolution: {integrity: sha512-Eda7x2Hk7E1iIjZ4uES0xxGr25Z72efRM5kP8sbgLSLhWg8TDCyWddvKAkzXIq8bupPOuJkdZa/YVvXbCktIEA==} peerDependencies: '@types/mdx': '*' - '@types/react': ^19.2.17 + '@types/react': '*' fumadocs-core: 16.11.5 - next: ^16.2.10 - react: ^19.2.7 - react-dom: ^19.2.7 + next: 16.x.x + react: ^19.2.0 + react-dom: ^19.2.0 takumi-js: '*' peerDependenciesMeta: '@types/mdx': @@ -5867,8 +5752,8 @@ packages: resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} engines: {node: '>=6'} - import-integrity-lint@1.1.4: - resolution: {integrity: sha512-rnVFKOWZz4rEe9oAK+g4DPPNxFHlKF7bEB1+GhqLbke06luZNNWB84rQPcPbjbHGJ8Pn9RJHG10rN3I2nIkblQ==} + import-integrity-lint@1.2.0: + resolution: {integrity: sha512-zmPiOCG2VEFxnENJM7dzKLtxbIZn3wxc1kCf/P6FVynfI6EetgJ+E0roGg6VoMNl+IlIiaHeXPCXwht3Nlo+oQ==} peerDependencies: eslint: '>=9.0.0' @@ -6124,57 +6009,107 @@ packages: cpu: [arm64] os: [android] + lightningcss-android-arm64@1.33.0: + resolution: {integrity: sha512-gEpRTalKdosp4Bb8qWtc2iOgE5SeIHlpS1up9bFq2wAyYhl1UdTObYiHe98zEM9SQvSoqQZ1IQD0JNpg3Ml5pg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [android] + lightningcss-darwin-arm64@1.32.0: resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [darwin] + lightningcss-darwin-arm64@1.33.0: + resolution: {integrity: sha512-Sciaz8eenNTKn9b3t7+xr0ipTp9YxKQY4npwQ3mrRuL0BAVHBLyZxofhaKBAVtzmtRZ/zTyo0/to4B1uWG/Djg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [darwin] + lightningcss-darwin-x64@1.32.0: resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [darwin] + lightningcss-darwin-x64@1.33.0: + resolution: {integrity: sha512-Z5UPAxzrjlWNNyGy6i65cJzzvgJ5D3T6wMvs+gWpY9d7qRhANrxqAp6LhxIgZhWEw18RfJTGcRxjuLIBr+m8XQ==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [darwin] + lightningcss-freebsd-x64@1.32.0: resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [freebsd] + lightningcss-freebsd-x64@1.33.0: + resolution: {integrity: sha512-QQM/Ti/hQajJwCY+RiWuCZ9sdtI/XQk7nDK5vC8kkdwixezOlDgvDx7+RT+QjK6FcFT4MpsuoBnHIo/O3StRRg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [freebsd] + lightningcss-linux-arm-gnueabihf@1.32.0: resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==} engines: {node: '>= 12.0.0'} cpu: [arm] os: [linux] + lightningcss-linux-arm-gnueabihf@1.33.0: + resolution: {integrity: sha512-N7FVBe6iS24MlM6R/4RBTxGhQheZGs7tiQ9U32UtF75NzP5Q7xWPRqLBCKxlRQRk3rY1jCIPLzx7WzOhuUIRLQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm] + os: [linux] + lightningcss-linux-arm64-gnu@1.32.0: resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] - libc: [glibc] + + lightningcss-linux-arm64-gnu@1.33.0: + resolution: {integrity: sha512-j2v/itmy4HlNxlc6voKXYgBqNi0Ng2LShg4z7GufpEgs05P+2suBVyi9I6YHq5uoVFx9ETin3eCEhLVyXGQnKg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] lightningcss-linux-arm64-musl@1.32.0: resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] - libc: [musl] + + lightningcss-linux-arm64-musl@1.33.0: + resolution: {integrity: sha512-yiO5ROMuYQgXbC60yjZU5CYSFZGKXL0HFATXt9mHJn1+zW55oCtMI9NfcVhYLMFDL7gV7oBPon/EmMMGg2OvtQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] lightningcss-linux-x64-gnu@1.32.0: resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] - libc: [glibc] + + lightningcss-linux-x64-gnu@1.33.0: + resolution: {integrity: sha512-ar+Ju7LmcN0Jo4FpL4hpFybwNG9/3A/Br5KW2n2jyODg3MEZXaDYADdemoNS+BDNfMgKvylJLj4S5tyRActuAg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] lightningcss-linux-x64-musl@1.32.0: resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] - libc: [musl] + + lightningcss-linux-x64-musl@1.33.0: + resolution: {integrity: sha512-RYiYbkokw0trfKqqzfF55lginwEPrD3OJDfTuJzFs1MK6iFnDenaz1fqLLtX4ITG3OktJQXOeTaw1awrBAlZPw==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] lightningcss-win32-arm64-msvc@1.32.0: resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==} @@ -6182,16 +6117,32 @@ packages: cpu: [arm64] os: [win32] + lightningcss-win32-arm64-msvc@1.33.0: + resolution: {integrity: sha512-1K+MPfLSFVpphzpdbfkhlWk6wBrTObBzS2T6db10PNOZgR9GoVsAWzwNyuhUYYbTp23j+4RrncfujZ4uAzXvwA==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [win32] + lightningcss-win32-x64-msvc@1.32.0: resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [win32] + lightningcss-win32-x64-msvc@1.33.0: + resolution: {integrity: sha512-OlEICDx/Xl0FqSp4bry8zFnCvGpig3Gl4gCquvYwHuqJKEC1+n9NgDniFvqHGmMv1ZkqDJrDqKKSykTDX+ehuA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [win32] + lightningcss@1.32.0: resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==} engines: {node: '>= 12.0.0'} + lightningcss@1.33.0: + resolution: {integrity: sha512-WkUDrojuJs0xkgGf2udWxa3yGBRxPtxUkB79i6aCZLRgc7PM8fZe9TosfPDcvEpQZbuFASnHYmRLBLUbmLOIIA==} + engines: {node: '>= 12.0.0'} + lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} @@ -6199,10 +6150,6 @@ packages: resolution: {integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - lines-and-columns@2.0.4: - resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - linkify-it@5.0.2: resolution: {integrity: sha512-ONTm2jCMAVZjgQa/Fy1kScXsuOoF5NPTsoFBdE1KVIZ2vAh/r9+Bqo+0jINCBYnavTPQZz38QzFTme79ENoN3Q==} @@ -6261,7 +6208,7 @@ packages: lucide-react@1.25.0: resolution: {integrity: sha512-/mdJTRbiwcLOQ1NZZK1amZF9rIZyvO18D6r9TngE6TG1NmqHgFuT4eE7Xrkm9UsXMbBJD1NlfwHVltCDWHrOTw==} peerDependencies: - react: ^19.2.7 + react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0 lunr@2.3.9: resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==} @@ -6586,8 +6533,8 @@ packages: resolution: {integrity: sha512-Atvv11yUKIid41cVrRBDVX5m8tF8kNpExRSlbpt6APClhDjtwQssgFHhQzejxw7/7YYbjHSPKBVbHo05BuJT5Q==} peerDependencies: '@emotion/is-prop-valid': '*' - react: ^19.2.7 - react-dom: ^19.2.7 + react: ^18.0.0 || ^19.0.0 + react-dom: ^18.0.0 || ^19.0.0 peerDependenciesMeta: '@emotion/is-prop-valid': optional: true @@ -6640,15 +6587,15 @@ packages: next-themes@0.4.6: resolution: {integrity: sha512-pZvgD5L0IEvX5/9GWyHMf3m8BKiVQwsCMHfoFosXtXBMnaS0ZnIJ9ST4b4NqLVKDEm8QBxoNNGNaBv2JNF6XNA==} peerDependencies: - react: ^19.2.7 - react-dom: ^19.2.7 + react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc + react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc next-view-transitions@0.3.5: resolution: {integrity: sha512-yP8OPNydLmKpmE94hLurLGEzPsUy1uyl9iSv8oxaC2JwhSXTD86SVwk1NMMQT7Ado4kMENDJ7fNBIXHy3GU/Lg==} peerDependencies: - next: ^16.2.10 - react: ^19.2.7 - react-dom: ^19.2.7 + next: '>=14.0.0' + react: '>=18.2.0 || ^19.0.0' + react-dom: '>=18.2.0 || ^19.0.0' next@16.2.10: resolution: {integrity: sha512-2som5AVXb3kE6Yjine3/mNbBayYF58eguBWIVVUdr1y/L426xyVEgYxgBG+1QC34P2x5E+tcDup6XkuOAX3dCA==} @@ -6658,8 +6605,8 @@ packages: '@opentelemetry/api': ^1.1.0 '@playwright/test': ^1.51.1 babel-plugin-react-compiler: '*' - react: ^19.2.7 - react-dom: ^19.2.7 + react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 sass: ^1.3.0 peerDependenciesMeta: '@opentelemetry/api': @@ -6718,8 +6665,8 @@ packages: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} - npm-to-yarn@3.0.1: - resolution: {integrity: sha512-tt6PvKu4WyzPwWUzy/hvPFqn+uwXO0K1ZHka8az3NnrhWJDmSqI8ncWq0fkL0k/lmmi5tAC11FXwXuh0rFbt1A==} + npm-to-yarn@3.1.0: + resolution: {integrity: sha512-9gNsO/JB3LeWOZXBX09cKMsCPwVcu1ExIf+GUuTN9G+0zZvLIK0nU9+lE9jue3MSKAxPdrh0rO072mWNvciqeQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} nth-check@2.1.1: @@ -6804,8 +6751,8 @@ packages: resolution: {integrity: sha512-eHXskJQU4aCiSfjhRfTVtCJ+22/EzLHgYgZv5Gj3teb3NJrnTMzq5BnKAWKvR+PLpknCO1PmOCImDuO+dX4Vaw==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} - package-manager-detector@1.7.0: - resolution: {integrity: sha512-xg1eHpwYL/D/HEdWw2goFZP6vV0FH7W+PZ5rFkGjdIDLtxq7EkzBUeT3m+lndYCt8wKbmofUu1MUdMCXkCk9ZQ==} + package-manager-detector@1.8.0: + resolution: {integrity: sha512-yQA4H19AmPEoMUeavPMDIe1higySl/gH/yaQrkT/s07Qp+7pp2hYz30N3z2l5BkjVkF9Ow6o0wjJamm2y7Sn0A==} parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} @@ -6915,8 +6862,8 @@ packages: points-on-path@0.2.1: resolution: {integrity: sha512-25ClnWWuw7JbWZcgqY/gJ4FQWadKxGWk+3kR/7kD0tCaDtPPMj7oHu2ToLaVhfpnHrZzYby2w6tUA0eOIuUg8g==} - postcss@8.5.19: - resolution: {integrity: sha512-Mz8SaolMd8nB+G13WkORcxQKHZ/NE4xXevtkJHVuG+guo9/wYKlIMTKAqGdEmYOXR2ijPjTYNHssizdaVSUNdQ==} + postcss@8.5.21: + resolution: {integrity: sha512-v4sDNP3fdNiWMfabO7OwOQdOX8TiQSztKyT1Wj0w+j7LDallJThJRBBBmzVGyYj0crMh7jlV4zepPkiNu9UwDQ==} engines: {node: ^10 || ^12 || >=14} preact@10.29.7: @@ -6941,11 +6888,6 @@ packages: promise-inflight@1.0.1: resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} - peerDependencies: - bluebird: '*' - peerDependenciesMeta: - bluebird: - optional: true promise-retry@2.0.1: resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} @@ -7007,17 +6949,17 @@ packages: rc-config-loader@4.1.4: resolution: {integrity: sha512-3GiwEzklkbXTDp52UR5nT8iXgYAx1V9ZG/kDZT7p60u2GCv2XTwQq4NzinMoMpNtXhmt3WkhYXcj6HH8HdwCEQ==} - react-dom@19.2.7: - resolution: {integrity: sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==} + react-dom@19.2.8: + resolution: {integrity: sha512-rVprimfGBG3DR+Tq0IQG2DT5PxKth1WIGDmj5yPmlzr4YBe7uyE+Du4oVqTDXZSHGGGXRtTJEGSSePyQCMBglQ==} peerDependencies: - react: ^19.2.7 + react: ^19.2.8 react-remove-scroll-bar@2.3.8: resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: '@types/react': optional: true @@ -7026,8 +6968,8 @@ packages: resolution: {integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -7036,14 +6978,14 @@ packages: resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true - react@19.2.7: - resolution: {integrity: sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==} + react@19.2.8: + resolution: {integrity: sha512-PWaYA1L/q9u2u7xYQi+Y3L3Yfnie7XyLeaJICV1MGD6LprsBxcAqGjYyr0eY3p+QdsA+x/Irkt4Qif8D63+Sbw==} engines: {node: '>=0.10.0'} read-package-json-fast@3.0.2: @@ -7205,14 +7147,14 @@ packages: robust-predicates@3.0.3: resolution: {integrity: sha512-NS3levdsRIUOmiJ8FZWCP7LG3QpJyrs/TE0Zpf1yvZu8cAJJ6QMW92H1c7kWpdIHo8RvmLxN/o2JXTKHp74lUA==} - rolldown-plugin-dts@0.27.11: - resolution: {integrity: sha512-DnBl4USSTV/h/sgy//QjCLHVo2JypE/52P5QugGeYaEqZmjBz/FYESOld0MhyIhul2U3Vsh41K63UWGHhJU/qQ==} + rolldown-plugin-dts@0.27.12: + resolution: {integrity: sha512-DJg5ELVEdLAVhirvtak7GS4nbNvBzLNAtYL1M8hLghDURBFKU2MwEH6ncHibYs6khq1NaRQ97iFMiHvzw+WoSw==} engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: '@typescript/native-preview': '*' '@volar/typescript': ~2.4.0 rolldown: ^1.0.0 - typescript: 6.0.3 + typescript: ^5.0.0 || ^6.0.0 || ~7.0.0 vue-tsc: ~3.2.0 || ~3.3.0 peerDependenciesMeta: '@typescript/native-preview': @@ -7442,7 +7384,7 @@ packages: peerDependencies: '@babel/core': '*' babel-plugin-macros: '*' - react: ^19.2.7 + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0' peerDependenciesMeta: '@babel/core': optional: true @@ -7467,7 +7409,7 @@ packages: swr@2.4.2: resolution: {integrity: sha512-ej644Y2bvkIajfR32KGeSSdBXQW+ScjGjkybZgSE7kFpk9eGnV44XY9FJylXi+W75pavSX1PVNB57W5EbhGIYw==} peerDependencies: - react: ^19.2.7 + react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 table@6.9.0: resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==} @@ -7554,7 +7496,7 @@ packages: resolution: {integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==} engines: {node: '>=18.12'} peerDependencies: - typescript: 6.0.3 + typescript: '>=4.8.4' ts-dedent@2.3.0: resolution: {integrity: sha512-JfJeIHke7y2egdGGgRAvpCwYFUsHlM2gPcrVOxFkznt/4uzQ7HFmvE63iFHVLBJNDuyDOQgijDK/tXH/f6Msjg==} @@ -7570,18 +7512,18 @@ packages: resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} engines: {node: '>=6'} - tsdown@0.22.9: - resolution: {integrity: sha512-/0QEjQEhOU1t1YxOIAGzFN7bIssd8P0pBpkOmNLCQi3c5UtrcMF5bvq3f30xHJNW9QCA9aUNcNAorMr2CTd6Lg==} + tsdown@0.22.12: + resolution: {integrity: sha512-IzGRfGwSsufXJWOcQ0tmECKMG/dbxhUwDOySTS7JE1AM8pkB9+bpcTPs8bTxxSNrSvGocSczrBlOh97tZObq9Q==} engines: {node: ^22.18.0 || >=24.11.0} hasBin: true peerDependencies: '@arethetypeswrong/core': ^0.18.1 - '@tsdown/css': 0.22.9 - '@tsdown/exe': 0.22.9 + '@tsdown/css': 0.22.12 + '@tsdown/exe': 0.22.12 '@vitejs/devtools': '*' publint: ^0.3.8 tsx: '*' - typescript: 6.0.3 + typescript: ^5.0.0 || ^6.0.0 || ^7.0.0 unplugin-unused: ^0.5.0 unrun: '*' peerDependenciesMeta: @@ -7608,13 +7550,13 @@ packages: resolution: {integrity: sha512-JYsgPqznWD+RWSUUfbhQMVHs6MeHgEHh4aJyMKqmSm7I1T2eKEaanq0VTH8t9DVjIagJ4yfTrwsoLF+ZION7VQ==} peerDependencies: tsl: ^1.0.30 - typescript: 6.0.3 + typescript: '*' tsl@1.0.30: resolution: {integrity: sha512-dogG67L7yjUcBdopmjAx/F45CIF+7mcMPKUlwXES3ZnTSqIsMWUZ329r0YZ9FQH8DjHp1xy4RJgKy/pQ8hYxHQ==} hasBin: true peerDependencies: - typescript: 6.0.3 + typescript: ~5.8.3 || ~5.9.2 || ~6.0.0 tslib@2.8.1: resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} @@ -7630,7 +7572,7 @@ packages: twoslash@0.3.9: resolution: {integrity: sha512-rDclk+OtzuTX+tnea7DYLCkqGQ3eP0IyfD+kzUJ7t46X/NzlaxwrhecmEBNuSCuEn3V+n1PhcjUUQQ7gUJzX5Q==} peerDependencies: - typescript: 6.0.3 + typescript: ^5.5.0 || ^6.0.0 type-check@0.4.0: resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} @@ -7674,14 +7616,14 @@ packages: engines: {node: '>= 18', pnpm: '>= 10'} hasBin: true peerDependencies: - typescript: 6.0.3 + typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x || 5.8.x || 5.9.x || 6.0.x - typescript-eslint@8.64.0: - resolution: {integrity: sha512-0qg+pDNMnqYzqH9AnNK+39tejHvsShUOUUoRUgtnTGE7QuMZhiFDnozq8nHJVq+Wae6NMLKNWLg5WmkcC/ndyQ==} + typescript-eslint@8.65.0: + resolution: {integrity: sha512-/ggrHAwyjENDusvyxbuqxAC2dTnZg/Z8F+fgQtYIz+L6n/9HfSlEZcFGV/NsMNa6CkGk0xUjUAFwC0vHOflvIA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 - typescript: 6.0.3 + typescript: '>=4.8.4 <6.1.0' typescript@6.0.3: resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==} @@ -7694,11 +7636,11 @@ packages: unconfig-core@7.5.0: resolution: {integrity: sha512-Su3FauozOGP44ZmKdHy2oE6LPjk51M/TRRjHv2HNCWiDvfvCoxC2lno6jevMA91MYAdCdwP05QnWdWpSbncX/w==} - undici-types@8.7.0: - resolution: {integrity: sha512-gbsS+hAjHg9iV+T8XWdFqnOZEk4f5xrrX3eb9Y1GDe+B5u9H68P6SzYXXUw/rkRvJHRgKIdNfAcrcVj/JvayVA==} + undici-types@8.8.0: + resolution: {integrity: sha512-nNSnIK0VcEoNWrYwxCz9DFT1W7ASyBRWX7Hju/p9RAfVDcHoH07hkMg/na9U/2S04fhkPc4pDUK5NblZoaCvwg==} - undici@8.7.0: - resolution: {integrity: sha512-N7iQtfyLhIMOFgQubvmLV26svHpO0bqKnAiWotTQCVKCmWrcGbBotPuW1x+xwYZ2VHdSTVUfPQQnlEt1/LouTQ==} + undici@8.8.0: + resolution: {integrity: sha512-ubshXMXwF3MQIMF1y/WxZdNBnjEKeSg2wF5mcGUtU55YTw34tnVVpKRlLf7ruDXZ5344KokPVX4RBx1wJm64Bw==} engines: {node: '>=22.19.0'} unicorn-magic@0.1.0: @@ -7770,8 +7712,8 @@ packages: resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -7780,8 +7722,8 @@ packages: resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^19.2.17 - react: ^19.2.7 + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc peerDependenciesMeta: '@types/react': optional: true @@ -7789,7 +7731,7 @@ packages: use-sync-external-store@1.6.0: resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==} peerDependencies: - react: ^19.2.7 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} @@ -7813,6 +7755,10 @@ packages: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} + verkit@0.1.2: + resolution: {integrity: sha512-WqkT8n3hqizuCu71W3bUzf5fjBmkbXcudsehe/NbxA8PgqoKnSOY5K0Ba2ckg1qaRaSpSz7as/n9K1R9JXjQKg==} + engines: {node: '>=18.12.0'} + vfile-location@5.0.3: resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} @@ -7837,11 +7783,6 @@ packages: vfile@6.0.3: resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} - vite-node@6.0.0: - resolution: {integrity: sha512-oj4PVrT+pDh6GYf5wfUXkcZyekYS8kKPfLPXVl8qe324Ec6l4K2DUKNadRbZ3LQl0qGcDz+PyOo7ZAh00Y+JjQ==} - engines: {node: ^20.19.0 || >=22.12.0} - hasBin: true - vite-prerender-plugin@0.5.13: resolution: {integrity: sha512-IKSpYkzDBsKAxa05naRbj7GvNVMSdww/Z/E89oO3xndz+gWnOBOKOAbEXv7qDhktY/j3vHgJmoV1pPzqU2tx9g==} peerDependencies: @@ -7854,7 +7795,7 @@ packages: peerDependencies: '@types/node': ^20.19.0 || >=22.12.0 '@vitejs/devtools': ^0.3.0 - esbuild: ^0.28.1 + esbuild: ^0.27.0 || ^0.28.0 jiti: '>=1.21.0' less: ^4.0.0 sass: ^1.70.0 @@ -7930,6 +7871,7 @@ packages: optional: true jsdom: optional: true + vite: {} walk-up-path@3.0.1: resolution: {integrity: sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA==} @@ -8030,17 +7972,17 @@ packages: yuku-analyzer@0.6.12: resolution: {integrity: sha512-0zu/gwv6nKA3wm2GMjM1iczw9rbt77ijEyR5tXpPQ8AZcXIpXlll66BXOtMHgYudLn91bJx0ybhpARoJWm5/dw==} - yuku-ast@0.1.7: - resolution: {integrity: sha512-2RiMEWv500TixY5rJy6OZd4fSy9WYZKWh6gGbIJ7y7vAGcuCugWOWwOLGaQcRZrXcPUfqtLtvpaJ3SdXtWlhKA==} - yuku-ast@0.6.11: resolution: {integrity: sha512-ZfXkFYVsDewS45+kv3WiA/qNB73CRfxFDEQwfnRMUAR4AD5zRI7PRqxmI2U3Jz/oG41GneTVW6mxDOQal0lgeA==} - yuku-codegen@0.6.12: - resolution: {integrity: sha512-5cAJedx9MdKf/ngFpMYH9B1DKaB3FVJOPncl80M+8nNS2rEvrta17N59ryEVIewuHYS81o4XDb4Hg5/5hBdF7A==} + yuku-ast@0.7.3: + resolution: {integrity: sha512-occyAXtcU4hcl5UPEclWwLqz4J1ZAV8Us4LllmTqAe1YjL5aMbh3GCpzHt6O0sOF+dwBI3BZAcFQqbyX1RiaWg==} + + yuku-codegen@0.7.3: + resolution: {integrity: sha512-hhyJW0TIEwm4kex8XVCS4CZIXHS/3TWWNUum+95Ji5/4W+iaLfUnvwSxJwyNfTzS8cxmd1np+EZ4b8ObLguKEA==} - yuku-parser@0.6.12: - resolution: {integrity: sha512-A1+KVTvdm1pQmrl/cS5JlqFvUclKpM8I5MvAOoQnYSGmmJBVDKN24HNXiZmxE8Ndsl4g3qBliZBAxq8/J4pKxA==} + yuku-parser@0.7.3: + resolution: {integrity: sha512-5kZ7HR+W+OsNpVtZ9LHruQsgmcoJl4TETrffPq2GbliThsFiy+zHzbMLmSxQJrokzyJqfJ/TPfFkdUDOodJCgA==} zimmerframe@1.1.4: resolution: {integrity: sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==} @@ -8076,7 +8018,7 @@ snapshots: '@antfu/install-pkg@1.1.0': dependencies: - package-manager-detector: 1.7.0 + package-manager-detector: 1.8.0 tinyexec: 1.2.4 '@azu/format-text@1.0.2': {} @@ -8093,20 +8035,20 @@ snapshots: '@babel/compat-data@7.29.7': {} - '@babel/core@7.29.7(supports-color@9.4.0)': + '@babel/core@7.29.7': dependencies: '@babel/code-frame': 7.29.7 '@babel/generator': 7.29.7 '@babel/helper-compilation-targets': 7.29.7 - '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7(supports-color@9.4.0))(supports-color@9.4.0) + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7) '@babel/helpers': 7.29.7 '@babel/parser': 7.29.7 '@babel/template': 7.29.7 - '@babel/traverse': 7.29.7(supports-color@9.4.0) + '@babel/traverse': 7.29.7 '@babel/types': 7.29.7 '@jridgewell/remapping': 2.3.5 convert-source-map: 2.0.0 - debug: 4.4.3(supports-color@9.4.0) + debug: 4.4.3 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 7.8.5 @@ -8135,19 +8077,19 @@ snapshots: '@babel/helper-globals@7.29.7': {} - '@babel/helper-module-imports@7.29.7(supports-color@9.4.0)': + '@babel/helper-module-imports@7.29.7': dependencies: - '@babel/traverse': 7.29.7(supports-color@9.4.0) + '@babel/traverse': 7.29.7 '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@7.29.7(@babel/core@7.29.7(supports-color@9.4.0))(supports-color@9.4.0)': + '@babel/helper-module-transforms@7.29.7(@babel/core@7.29.7)': dependencies: - '@babel/core': 7.29.7(supports-color@9.4.0) - '@babel/helper-module-imports': 7.29.7(supports-color@9.4.0) + '@babel/core': 7.29.7 + '@babel/helper-module-imports': 7.29.7 '@babel/helper-validator-identifier': 7.29.7 - '@babel/traverse': 7.29.7(supports-color@9.4.0) + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color @@ -8168,25 +8110,25 @@ snapshots: dependencies: '@babel/types': 7.29.7 - '@babel/plugin-syntax-jsx@7.29.7(@babel/core@7.29.7(supports-color@9.4.0))': + '@babel/plugin-syntax-jsx@7.29.7(@babel/core@7.29.7)': dependencies: - '@babel/core': 7.29.7(supports-color@9.4.0) + '@babel/core': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 - '@babel/plugin-transform-react-jsx-development@7.29.7(@babel/core@7.29.7(supports-color@9.4.0))(supports-color@9.4.0)': + '@babel/plugin-transform-react-jsx-development@7.29.7(@babel/core@7.29.7)': dependencies: - '@babel/core': 7.29.7(supports-color@9.4.0) - '@babel/plugin-transform-react-jsx': 7.29.7(@babel/core@7.29.7(supports-color@9.4.0))(supports-color@9.4.0) + '@babel/core': 7.29.7 + '@babel/plugin-transform-react-jsx': 7.29.7(@babel/core@7.29.7) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-react-jsx@7.29.7(@babel/core@7.29.7(supports-color@9.4.0))(supports-color@9.4.0)': + '@babel/plugin-transform-react-jsx@7.29.7(@babel/core@7.29.7)': dependencies: - '@babel/core': 7.29.7(supports-color@9.4.0) + '@babel/core': 7.29.7 '@babel/helper-annotate-as-pure': 7.29.7 - '@babel/helper-module-imports': 7.29.7(supports-color@9.4.0) + '@babel/helper-module-imports': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 - '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.7(supports-color@9.4.0)) + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.7) '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color @@ -8199,19 +8141,7 @@ snapshots: '@babel/parser': 7.29.7 '@babel/types': 7.29.7 - '@babel/traverse@7.29.7(supports-color@7.2.0)': - dependencies: - '@babel/code-frame': 7.29.7 - '@babel/generator': 7.29.7 - '@babel/helper-globals': 7.29.7 - '@babel/parser': 7.29.7 - '@babel/template': 7.29.7 - '@babel/types': 7.29.7 - debug: 4.4.3(supports-color@7.2.0) - transitivePeerDependencies: - - supports-color - - '@babel/traverse@7.29.7(supports-color@9.4.0)': + '@babel/traverse@7.29.7': dependencies: '@babel/code-frame': 7.29.7 '@babel/generator': 7.29.7 @@ -8219,7 +8149,7 @@ snapshots: '@babel/parser': 7.29.7 '@babel/template': 7.29.7 '@babel/types': 7.29.7 - debug: 4.4.3(supports-color@9.4.0) + debug: 4.4.3 transitivePeerDependencies: - supports-color @@ -8228,28 +8158,26 @@ snapshots: '@babel/helper-string-parser': 7.29.7 '@babel/helper-validator-identifier': 7.29.7 - '@base-ui/react@1.6.0(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@base-ui/react@1.6.0(@types/react@19.2.17)(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': dependencies: '@babel/runtime': 7.29.7 - '@base-ui/utils': 0.3.1(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@floating-ui/react-dom': 2.1.9(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@base-ui/utils': 0.3.1(@types/react@19.2.17)(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@floating-ui/react-dom': 2.1.9(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) '@floating-ui/utils': 0.2.12 - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - use-sync-external-store: 1.6.0(react@19.2.7) - optionalDependencies: '@types/react': 19.2.17 + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) + use-sync-external-store: 1.6.0(react@19.2.8) - '@base-ui/utils@0.3.1(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@base-ui/utils@0.3.1(@types/react@19.2.17)(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': dependencies: '@babel/runtime': 7.29.7 '@floating-ui/utils': 0.2.12 - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - reselect: 5.2.0 - use-sync-external-store: 1.6.0(react@19.2.7) - optionalDependencies: '@types/react': 19.2.17 + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) + reselect: 5.2.0 + use-sync-external-store: 1.6.0(react@19.2.8) '@braintree/sanitize-url@7.1.2': {} @@ -8323,7 +8251,7 @@ snapshots: '@effect/platform': 0.96.3(effect@3.22.0) '@effect/rpc': 0.75.1(@effect/platform@0.96.3(effect@3.22.0))(effect@3.22.0) '@effect/sql': 0.51.1(@effect/experimental@0.60.0(@effect/platform@0.96.3(effect@3.22.0))(effect@3.22.0))(@effect/platform@0.96.3(effect@3.22.0))(effect@3.22.0) - '@parcel/watcher': 2.5.6 + '@parcel/watcher': 2.6.0 effect: 3.22.0 multipasta: 0.2.8 ws: 8.21.1 @@ -8340,7 +8268,7 @@ snapshots: '@effect/sql': 0.51.1(@effect/experimental@0.60.0(@effect/platform@0.96.3(effect@3.22.0))(effect@3.22.0))(@effect/platform@0.96.3(effect@3.22.0))(effect@3.22.0) effect: 3.22.0 mime: 3.0.0 - undici: 8.7.0 + undici: 8.8.0 ws: 8.21.1 transitivePeerDependencies: - bufferutil @@ -8416,7 +8344,7 @@ snapshots: '@es-joy/jsdoccomment@0.88.0': dependencies: '@types/estree': 1.0.9 - '@typescript-eslint/types': 8.64.0 + '@typescript-eslint/types': 8.65.0 comment-parser: 1.4.7 esquery: 1.7.0 jsdoc-type-pratt-parser: 7.2.0 @@ -8501,42 +8429,22 @@ snapshots: '@esbuild/win32-x64@0.28.1': optional: true - '@eslint-community/eslint-utils@4.9.1(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))': - dependencies: - eslint: 10.7.0(jiti@2.7.0)(supports-color@7.2.0) - eslint-visitor-keys: 3.4.3 - - '@eslint-community/eslint-utils@4.9.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))': + '@eslint-community/eslint-utils@4.9.1(eslint@10.7.0(jiti@2.7.0))': dependencies: - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + eslint: 10.7.0(jiti@2.7.0) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.2': {} - '@eslint/compat@2.1.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))': - dependencies: - '@eslint/core': 1.2.1 - optionalDependencies: - eslint: 10.7.0(jiti@2.7.0)(supports-color@7.2.0) - - '@eslint/compat@2.1.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))': + '@eslint/compat@2.1.0(eslint@10.7.0(jiti@2.7.0))': dependencies: '@eslint/core': 1.2.1 - optionalDependencies: - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) - - '@eslint/config-array@0.23.5(supports-color@7.2.0)': - dependencies: - '@eslint/object-schema': 3.0.5 - debug: 4.4.3(supports-color@7.2.0) - minimatch: 10.2.5 - transitivePeerDependencies: - - supports-color + eslint: 10.7.0(jiti@2.7.0) - '@eslint/config-array@0.23.5(supports-color@9.4.0)': + '@eslint/config-array@0.23.5': dependencies: '@eslint/object-schema': 3.0.5 - debug: 4.4.3(supports-color@9.4.0) + debug: 4.4.3 minimatch: 10.2.5 transitivePeerDependencies: - supports-color @@ -8549,9 +8457,9 @@ snapshots: dependencies: '@types/json-schema': 7.0.15 - '@eslint/js@10.0.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))': - optionalDependencies: - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + '@eslint/js@10.0.1(eslint@10.7.0(jiti@2.7.0))': + dependencies: + eslint: 10.7.0(jiti@2.7.0) '@eslint/object-schema@3.0.5': {} @@ -8569,23 +8477,22 @@ snapshots: '@floating-ui/core': 1.8.0 '@floating-ui/utils': 0.2.12 - '@floating-ui/react-dom@2.1.9(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@floating-ui/react-dom@2.1.9(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': dependencies: '@floating-ui/dom': 1.8.0 - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) '@floating-ui/utils@0.2.12': {} - '@fuma-translate/react@1.0.2(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@fuma-translate/react@1.0.2(@types/react@19.2.17)(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': dependencies: - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - optionalDependencies: '@types/react': 19.2.17 + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) '@fumadocs/tailwind@0.1.1(tailwindcss@4.3.3)': - optionalDependencies: + dependencies: tailwindcss: 4.3.3 '@gerrit0/mini-shiki@3.23.0': @@ -8774,7 +8681,7 @@ snapshots: tinyglobby: 0.2.17 yaml: 2.9.0 - '@mdx-js/mdx@3.1.1(supports-color@9.4.0)': + '@mdx-js/mdx@3.1.1': dependencies: '@types/estree': 1.0.9 '@types/estree-jsx': 1.0.5 @@ -8786,14 +8693,14 @@ snapshots: estree-util-is-identifier-name: 3.0.0 estree-util-scope: 1.0.0 estree-walker: 3.0.3 - hast-util-to-jsx-runtime: 2.3.6(supports-color@9.4.0) + hast-util-to-jsx-runtime: 2.3.6 markdown-extensions: 2.0.0 recma-build-jsx: 1.0.0 recma-jsx: 1.0.1(acorn@8.17.0) recma-stringify: 1.0.0 - rehype-recma: 1.0.0(supports-color@9.4.0) - remark-mdx: 3.1.1(supports-color@9.4.0) - remark-parse: 11.0.0(supports-color@9.4.0) + rehype-recma: 1.0.0 + remark-mdx: 3.1.1 + remark-parse: 11.0.0 remark-rehype: 11.1.2 source-map: 0.7.6 unified: 11.0.5 @@ -8808,7 +8715,7 @@ snapshots: dependencies: '@chevrotain/types': 11.1.2 - '@modelcontextprotocol/sdk@1.29.0(supports-color@7.2.0)(zod@3.25.76)': + '@modelcontextprotocol/sdk@1.29.0(zod@3.25.76)': dependencies: '@hono/node-server': 1.19.14(hono@4.12.31) ajv: 8.20.0 @@ -8818,8 +8725,8 @@ snapshots: cross-spawn: 7.0.6 eventsource: 3.0.7 eventsource-parser: 3.1.0 - express: 5.2.1(supports-color@7.2.0) - express-rate-limit: 8.6.0(express@5.2.1(supports-color@7.2.0))(supports-color@7.2.0) + express: 5.2.1 + express-rate-limit: 8.6.0(express@5.2.1) hono: 4.12.31 jose: 6.2.3 json-schema-typed: 8.0.2 @@ -8870,7 +8777,7 @@ snapshots: '@next/env@16.2.10': {} - '@next/eslint-plugin-next@16.2.10': + '@next/eslint-plugin-next@16.2.11': dependencies: fast-glob: 3.3.1 @@ -8920,8 +8827,6 @@ snapshots: proc-log: 4.2.0 semver: 7.8.5 walk-up-path: 3.0.1 - transitivePeerDependencies: - - bluebird '@npmcli/git@5.0.8': dependencies: @@ -8934,8 +8839,6 @@ snapshots: promise-retry: 2.0.1 semver: 7.8.5 which: 4.0.0 - transitivePeerDependencies: - - bluebird '@npmcli/map-workspaces@3.0.6': dependencies: @@ -8955,8 +8858,6 @@ snapshots: normalize-package-data: 6.0.2 proc-log: 4.2.0 semver: 7.8.5 - transitivePeerDependencies: - - bluebird '@npmcli/promise-spawn@7.0.2': dependencies: @@ -9045,9 +8946,6 @@ snapshots: '@oxc-parser/binding-wasm32-wasi@0.106.0(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2)': dependencies: '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2) - transitivePeerDependencies: - - '@emnapi/core' - - '@emnapi/runtime' optional: true '@oxc-parser/binding-win32-arm64-msvc@0.106.0': @@ -9129,85 +9027,80 @@ snapshots: '@oxc-transform/binding-win32-x64-msvc@0.138.0': optional: true - '@parcel/watcher-android-arm64@2.5.6': - optional: true - - '@parcel/watcher-darwin-arm64@2.5.6': + '@parcel/watcher-android-arm64@2.6.0': optional: true - '@parcel/watcher-darwin-x64@2.5.6': + '@parcel/watcher-darwin-arm64@2.6.0': optional: true - '@parcel/watcher-freebsd-x64@2.5.6': + '@parcel/watcher-darwin-x64@2.6.0': optional: true - '@parcel/watcher-linux-arm-glibc@2.5.6': + '@parcel/watcher-freebsd-x64@2.6.0': optional: true - '@parcel/watcher-linux-arm-musl@2.5.6': + '@parcel/watcher-linux-arm-glibc@2.6.0': optional: true - '@parcel/watcher-linux-arm64-glibc@2.5.6': + '@parcel/watcher-linux-arm-musl@2.6.0': optional: true - '@parcel/watcher-linux-arm64-musl@2.5.6': + '@parcel/watcher-linux-arm64-glibc@2.6.0': optional: true - '@parcel/watcher-linux-x64-glibc@2.5.6': + '@parcel/watcher-linux-arm64-musl@2.6.0': optional: true - '@parcel/watcher-linux-x64-musl@2.5.6': + '@parcel/watcher-linux-x64-glibc@2.6.0': optional: true - '@parcel/watcher-win32-arm64@2.5.6': + '@parcel/watcher-linux-x64-musl@2.6.0': optional: true - '@parcel/watcher-win32-ia32@2.5.6': + '@parcel/watcher-win32-arm64@2.6.0': optional: true - '@parcel/watcher-win32-x64@2.5.6': + '@parcel/watcher-win32-x64@2.6.0': optional: true - '@parcel/watcher@2.5.6': + '@parcel/watcher@2.6.0': dependencies: detect-libc: 2.1.2 is-glob: 4.0.3 node-addon-api: 7.1.1 picomatch: 4.0.5 optionalDependencies: - '@parcel/watcher-android-arm64': 2.5.6 - '@parcel/watcher-darwin-arm64': 2.5.6 - '@parcel/watcher-darwin-x64': 2.5.6 - '@parcel/watcher-freebsd-x64': 2.5.6 - '@parcel/watcher-linux-arm-glibc': 2.5.6 - '@parcel/watcher-linux-arm-musl': 2.5.6 - '@parcel/watcher-linux-arm64-glibc': 2.5.6 - '@parcel/watcher-linux-arm64-musl': 2.5.6 - '@parcel/watcher-linux-x64-glibc': 2.5.6 - '@parcel/watcher-linux-x64-musl': 2.5.6 - '@parcel/watcher-win32-arm64': 2.5.6 - '@parcel/watcher-win32-ia32': 2.5.6 - '@parcel/watcher-win32-x64': 2.5.6 + '@parcel/watcher-android-arm64': 2.6.0 + '@parcel/watcher-darwin-arm64': 2.6.0 + '@parcel/watcher-darwin-x64': 2.6.0 + '@parcel/watcher-freebsd-x64': 2.6.0 + '@parcel/watcher-linux-arm-glibc': 2.6.0 + '@parcel/watcher-linux-arm-musl': 2.6.0 + '@parcel/watcher-linux-arm64-glibc': 2.6.0 + '@parcel/watcher-linux-arm64-musl': 2.6.0 + '@parcel/watcher-linux-x64-glibc': 2.6.0 + '@parcel/watcher-linux-x64-musl': 2.6.0 + '@parcel/watcher-win32-arm64': 2.6.0 + '@parcel/watcher-win32-x64': 2.6.0 '@pkgjs/parseargs@0.11.0': optional: true - '@preact/preset-vite@2.10.6(@babel/core@7.29.7(supports-color@9.4.0))(preact@10.29.7)(supports-color@9.4.0)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0))': + '@preact/preset-vite@2.10.6(@babel/core@7.29.7)(preact@10.29.7)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0))': dependencies: - '@babel/core': 7.29.7(supports-color@9.4.0) - '@babel/plugin-transform-react-jsx': 7.29.7(@babel/core@7.29.7(supports-color@9.4.0))(supports-color@9.4.0) - '@babel/plugin-transform-react-jsx-development': 7.29.7(@babel/core@7.29.7(supports-color@9.4.0))(supports-color@9.4.0) - '@prefresh/vite': 2.4.12(preact@10.29.7)(supports-color@9.4.0)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)) + '@babel/core': 7.29.7 + '@babel/plugin-transform-react-jsx': 7.29.7(@babel/core@7.29.7) + '@babel/plugin-transform-react-jsx-development': 7.29.7(@babel/core@7.29.7) + '@prefresh/vite': 2.4.12(preact@10.29.7)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)) '@rollup/pluginutils': 5.4.0 - babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.29.7(supports-color@9.4.0)) - debug: 4.4.3(supports-color@9.4.0) + babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.29.7) + debug: 4.4.3 magic-string: 0.30.21 picocolors: 1.1.1 vite: 8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0) vite-prerender-plugin: 0.5.13(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)) zimmerframe: 1.1.4 transitivePeerDependencies: - - preact - rollup - supports-color @@ -9219,9 +9112,9 @@ snapshots: '@prefresh/utils@1.2.1': {} - '@prefresh/vite@2.4.12(preact@10.29.7)(supports-color@9.4.0)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0))': + '@prefresh/vite@2.4.12(preact@10.29.7)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0))': dependencies: - '@babel/core': 7.29.7(supports-color@9.4.0) + '@babel/core': 7.29.7 '@prefresh/babel-plugin': 0.5.3 '@prefresh/core': 1.5.10(preact@10.29.7) '@prefresh/utils': 1.2.1 @@ -9241,350 +9134,321 @@ snapshots: '@radix-ui/number@1.1.2': {} - '@radix-ui/primitive@1.1.5': {} - - '@radix-ui/react-accordion@1.2.16(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': - dependencies: - '@radix-ui/primitive': 1.1.5 - '@radix-ui/react-collapsible': 1.1.16(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-collection': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - optionalDependencies: + '@radix-ui/primitive@1.1.6': {} + + '@radix-ui/react-accordion@1.2.17(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': + dependencies: + '@radix-ui/primitive': 1.1.6 + '@radix-ui/react-collapsible': 1.1.17(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-collection': 1.1.12(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-primitive': 2.1.7(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-use-controllable-state': 1.2.4(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 '@types/react-dom': 19.2.3(@types/react@19.2.17) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) - '@radix-ui/react-arrow@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@radix-ui/react-arrow@1.1.12(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': dependencies: - '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - optionalDependencies: + '@radix-ui/react-primitive': 2.1.7(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) '@types/react': 19.2.17 '@types/react-dom': 19.2.3(@types/react@19.2.17) - - '@radix-ui/react-collapsible@1.1.16(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': - dependencies: - '@radix-ui/primitive': 1.1.5 - '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-presence': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - optionalDependencies: + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) + + '@radix-ui/react-collapsible@1.1.17(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': + dependencies: + '@radix-ui/primitive': 1.1.6 + '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-presence': 1.1.8(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-primitive': 2.1.7(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-use-controllable-state': 1.2.4(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 '@types/react-dom': 19.2.3(@types/react@19.2.17) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) - '@radix-ui/react-collection@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@radix-ui/react-collection@1.1.12(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': dependencies: - '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - optionalDependencies: + '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-primitive': 2.1.7(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 '@types/react-dom': 19.2.3(@types/react@19.2.17) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) - '@radix-ui/react-compose-refs@1.1.3(@types/react@19.2.17)(react@19.2.7)': + '@radix-ui/react-compose-refs@1.1.3(@types/react@19.2.17)(react@19.2.8)': dependencies: - react: 19.2.7 - optionalDependencies: '@types/react': 19.2.17 + react: 19.2.8 - '@radix-ui/react-context@1.2.0(@types/react@19.2.17)(react@19.2.7)': + '@radix-ui/react-context@1.2.0(@types/react@19.2.17)(react@19.2.8)': dependencies: - react: 19.2.7 - optionalDependencies: '@types/react': 19.2.17 - - '@radix-ui/react-dialog@1.1.19(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': - dependencies: - '@radix-ui/primitive': 1.1.5 - '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-dismissable-layer': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-focus-guards': 1.1.4(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-focus-scope': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-portal': 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-presence': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7) - aria-hidden: 1.2.6 - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - react-remove-scroll: 2.7.2(@types/react@19.2.17)(react@19.2.7) - optionalDependencies: + react: 19.2.8 + + '@radix-ui/react-dialog@1.1.20(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': + dependencies: + '@radix-ui/primitive': 1.1.6 + '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-dismissable-layer': 1.1.16(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-focus-guards': 1.1.4(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-focus-scope': 1.1.13(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-portal': 1.1.14(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-presence': 1.1.8(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-primitive': 2.1.7(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-use-controllable-state': 1.2.4(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 '@types/react-dom': 19.2.3(@types/react@19.2.17) + aria-hidden: 1.2.6 + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) + react-remove-scroll: 2.7.2(@types/react@19.2.17)(react@19.2.8) - '@radix-ui/react-direction@1.1.2(@types/react@19.2.17)(react@19.2.7)': + '@radix-ui/react-direction@1.1.2(@types/react@19.2.17)(react@19.2.8)': dependencies: - react: 19.2.7 - optionalDependencies: '@types/react': 19.2.17 + react: 19.2.8 - '@radix-ui/react-dismissable-layer@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@radix-ui/react-dismissable-layer@1.1.16(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': dependencies: - '@radix-ui/primitive': 1.1.5 - '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-use-effect-event': 0.0.3(@types/react@19.2.17)(react@19.2.7) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - optionalDependencies: + '@radix-ui/primitive': 1.1.6 + '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-primitive': 2.1.7(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-use-effect-event': 0.0.3(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 '@types/react-dom': 19.2.3(@types/react@19.2.17) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) - '@radix-ui/react-focus-guards@1.1.4(@types/react@19.2.17)(react@19.2.7)': + '@radix-ui/react-focus-guards@1.1.4(@types/react@19.2.17)(react@19.2.8)': dependencies: - react: 19.2.7 - optionalDependencies: '@types/react': 19.2.17 + react: 19.2.8 - '@radix-ui/react-focus-scope@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@radix-ui/react-focus-scope@1.1.13(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': dependencies: - '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - optionalDependencies: + '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-primitive': 2.1.7(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 '@types/react-dom': 19.2.3(@types/react@19.2.17) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) - '@radix-ui/react-id@1.1.2(@types/react@19.2.17)(react@19.2.7)': + '@radix-ui/react-id@1.1.2(@types/react@19.2.17)(react@19.2.8)': dependencies: - '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7) - react: 19.2.7 - optionalDependencies: + '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 - - '@radix-ui/react-navigation-menu@1.2.18(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': - dependencies: - '@radix-ui/primitive': 1.1.5 - '@radix-ui/react-collection': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-dismissable-layer': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-presence': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-use-previous': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-visually-hidden': 1.2.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - optionalDependencies: + react: 19.2.8 + + '@radix-ui/react-navigation-menu@1.2.19(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': + dependencies: + '@radix-ui/primitive': 1.1.6 + '@radix-ui/react-collection': 1.1.12(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-dismissable-layer': 1.1.16(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-presence': 1.1.8(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-primitive': 2.1.7(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-use-controllable-state': 1.2.4(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-use-previous': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-visually-hidden': 1.2.8(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) '@types/react': 19.2.17 '@types/react-dom': 19.2.3(@types/react@19.2.17) - - '@radix-ui/react-popover@1.1.19(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': - dependencies: - '@radix-ui/primitive': 1.1.5 - '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-dismissable-layer': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-focus-guards': 1.1.4(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-focus-scope': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-popper': 1.3.3(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-portal': 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-presence': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7) - aria-hidden: 1.2.6 - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - react-remove-scroll: 2.7.2(@types/react@19.2.17)(react@19.2.7) - optionalDependencies: + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) + + '@radix-ui/react-popover@1.1.20(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': + dependencies: + '@radix-ui/primitive': 1.1.6 + '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-dismissable-layer': 1.1.16(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-focus-guards': 1.1.4(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-focus-scope': 1.1.13(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-popper': 1.3.4(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-portal': 1.1.14(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-presence': 1.1.8(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-primitive': 2.1.7(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-use-controllable-state': 1.2.4(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 '@types/react-dom': 19.2.3(@types/react@19.2.17) - - '@radix-ui/react-popper@1.3.3(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': - dependencies: - '@floating-ui/react-dom': 2.1.9(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-arrow': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-use-rect': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-use-size': 1.1.2(@types/react@19.2.17)(react@19.2.7) + aria-hidden: 1.2.6 + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) + react-remove-scroll: 2.7.2(@types/react@19.2.17)(react@19.2.8) + + '@radix-ui/react-popper@1.3.4(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': + dependencies: + '@floating-ui/react-dom': 2.1.9(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-arrow': 1.1.12(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-primitive': 2.1.7(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-use-rect': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-use-size': 1.1.2(@types/react@19.2.17)(react@19.2.8) '@radix-ui/rect': 1.1.2 - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - optionalDependencies: '@types/react': 19.2.17 '@types/react-dom': 19.2.3(@types/react@19.2.17) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) - '@radix-ui/react-portal@1.1.13(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@radix-ui/react-portal@1.1.14(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': dependencies: - '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - optionalDependencies: + '@radix-ui/react-primitive': 2.1.7(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 '@types/react-dom': 19.2.3(@types/react@19.2.17) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) - '@radix-ui/react-presence@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@radix-ui/react-presence@1.1.8(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': dependencies: - '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - optionalDependencies: + '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 '@types/react-dom': 19.2.3(@types/react@19.2.17) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) - '@radix-ui/react-primitive@2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@radix-ui/react-primitive@2.1.7(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': dependencies: - '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - optionalDependencies: + '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 '@types/react-dom': 19.2.3(@types/react@19.2.17) - - '@radix-ui/react-roving-focus@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': - dependencies: - '@radix-ui/primitive': 1.1.5 - '@radix-ui/react-collection': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-use-is-hydrated': 0.1.1(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - optionalDependencies: + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) + + '@radix-ui/react-roving-focus@1.1.16(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': + dependencies: + '@radix-ui/primitive': 1.1.6 + '@radix-ui/react-collection': 1.1.12(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-primitive': 2.1.7(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-use-controllable-state': 1.2.4(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-use-is-hydrated': 0.1.1(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 '@types/react-dom': 19.2.3(@types/react@19.2.17) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) - '@radix-ui/react-scroll-area@1.2.14(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@radix-ui/react-scroll-area@1.2.15(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': dependencies: '@radix-ui/number': 1.1.2 - '@radix-ui/primitive': 1.1.5 - '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-presence': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - optionalDependencies: + '@radix-ui/primitive': 1.1.6 + '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-presence': 1.1.8(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-primitive': 2.1.7(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 '@types/react-dom': 19.2.3(@types/react@19.2.17) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) - '@radix-ui/react-slot@1.3.0(@types/react@19.2.17)(react@19.2.7)': + '@radix-ui/react-slot@1.3.0(@types/react@19.2.17)(react@19.2.8)': dependencies: - '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7) - react: 19.2.7 - optionalDependencies: + '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 - - '@radix-ui/react-tabs@1.1.17(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': - dependencies: - '@radix-ui/primitive': 1.1.5 - '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-presence': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-roving-focus': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - optionalDependencies: + react: 19.2.8 + + '@radix-ui/react-tabs@1.1.18(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': + dependencies: + '@radix-ui/primitive': 1.1.6 + '@radix-ui/react-context': 1.2.0(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-presence': 1.1.8(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-primitive': 2.1.7(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-roving-focus': 1.1.16(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-use-controllable-state': 1.2.4(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 '@types/react-dom': 19.2.3(@types/react@19.2.17) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) - '@radix-ui/react-use-callback-ref@1.1.2(@types/react@19.2.17)(react@19.2.7)': + '@radix-ui/react-use-callback-ref@1.1.2(@types/react@19.2.17)(react@19.2.8)': dependencies: - react: 19.2.7 - optionalDependencies: '@types/react': 19.2.17 + react: 19.2.8 - '@radix-ui/react-use-controllable-state@1.2.3(@types/react@19.2.17)(react@19.2.7)': + '@radix-ui/react-use-controllable-state@1.2.4(@types/react@19.2.17)(react@19.2.8)': dependencies: - '@radix-ui/react-use-effect-event': 0.0.3(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7) - react: 19.2.7 - optionalDependencies: + '@radix-ui/primitive': 1.1.6 + '@radix-ui/react-use-effect-event': 0.0.3(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 + react: 19.2.8 - '@radix-ui/react-use-effect-event@0.0.3(@types/react@19.2.17)(react@19.2.7)': + '@radix-ui/react-use-effect-event@0.0.3(@types/react@19.2.17)(react@19.2.8)': dependencies: - '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7) - react: 19.2.7 - optionalDependencies: + '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 + react: 19.2.8 - '@radix-ui/react-use-is-hydrated@0.1.1(@types/react@19.2.17)(react@19.2.7)': + '@radix-ui/react-use-is-hydrated@0.1.1(@types/react@19.2.17)(react@19.2.8)': dependencies: - react: 19.2.7 - optionalDependencies: '@types/react': 19.2.17 + react: 19.2.8 - '@radix-ui/react-use-layout-effect@1.1.2(@types/react@19.2.17)(react@19.2.7)': + '@radix-ui/react-use-layout-effect@1.1.2(@types/react@19.2.17)(react@19.2.8)': dependencies: - react: 19.2.7 - optionalDependencies: '@types/react': 19.2.17 + react: 19.2.8 - '@radix-ui/react-use-previous@1.1.2(@types/react@19.2.17)(react@19.2.7)': + '@radix-ui/react-use-previous@1.1.2(@types/react@19.2.17)(react@19.2.8)': dependencies: - react: 19.2.7 - optionalDependencies: '@types/react': 19.2.17 + react: 19.2.8 - '@radix-ui/react-use-rect@1.1.2(@types/react@19.2.17)(react@19.2.7)': + '@radix-ui/react-use-rect@1.1.2(@types/react@19.2.17)(react@19.2.8)': dependencies: '@radix-ui/rect': 1.1.2 - react: 19.2.7 - optionalDependencies: '@types/react': 19.2.17 + react: 19.2.8 - '@radix-ui/react-use-size@1.1.2(@types/react@19.2.17)(react@19.2.7)': + '@radix-ui/react-use-size@1.1.2(@types/react@19.2.17)(react@19.2.8)': dependencies: - '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7) - react: 19.2.7 - optionalDependencies: + '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.8) '@types/react': 19.2.17 + react: 19.2.8 - '@radix-ui/react-visually-hidden@1.2.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@radix-ui/react-visually-hidden@1.2.8(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': dependencies: - '@radix-ui/react-primitive': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - optionalDependencies: + '@radix-ui/react-primitive': 2.1.7(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) '@types/react': 19.2.17 '@types/react-dom': 19.2.3(@types/react@19.2.17) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) '@radix-ui/rect@1.1.2': {} @@ -9812,11 +9676,11 @@ snapshots: dependencies: '@shikijs/types': 4.3.1 - '@shikijs/twoslash@4.3.1(supports-color@9.4.0)(typescript@6.0.3)': + '@shikijs/twoslash@4.3.1(typescript@6.0.3)': dependencies: '@shikijs/core': 4.3.1 '@shikijs/types': 4.3.1 - twoslash: 0.3.9(supports-color@9.4.0)(typescript@6.0.3) + twoslash: 0.3.9(typescript@6.0.3) typescript: 6.0.3 transitivePeerDependencies: - supports-color @@ -9837,11 +9701,11 @@ snapshots: '@standard-schema/spec@1.1.0': {} - '@stylistic/eslint-plugin@5.10.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))': + '@stylistic/eslint-plugin@5.10.0(eslint@10.7.0(jiti@2.7.0))': dependencies: - '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) - '@typescript-eslint/types': 8.64.0 - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)) + '@typescript-eslint/types': 8.65.0 + eslint: 10.7.0(jiti@2.7.0) eslint-visitor-keys: 4.2.1 espree: 10.4.0 estraverse: 5.3.0 @@ -9854,7 +9718,7 @@ snapshots: '@tailwindcss/node@4.3.3': dependencies: '@jridgewell/remapping': 2.3.5 - enhanced-resolve: 5.24.2 + enhanced-resolve: 5.24.3 jiti: 2.7.0 lightningcss: 1.32.0 magic-string: 0.30.21 @@ -9890,6 +9754,13 @@ snapshots: '@tailwindcss/oxide-wasm32-wasi@4.3.3': optional: true + bundledDependencies: + - '@emnapi/core' + - '@emnapi/runtime' + - '@emnapi/wasi-threads' + - '@napi-rs/wasm-runtime' + - '@tybys/wasm-util' + - tslib '@tailwindcss/oxide-win32-arm64-msvc@4.3.3': optional: true @@ -9917,7 +9788,7 @@ snapshots: '@alloc/quick-lru': 5.2.0 '@tailwindcss/node': 4.3.3 '@tailwindcss/oxide': 4.3.3 - postcss: 8.5.19 + postcss: 8.5.21 tailwindcss: 4.3.3 '@takumi-rs/core-darwin-arm64@1.8.7': @@ -9944,9 +9815,9 @@ snapshots: '@takumi-rs/core-win32-x64-msvc@1.8.7': optional: true - '@takumi-rs/core@1.8.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@takumi-rs/core@1.8.7(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': dependencies: - '@takumi-rs/helpers': 1.8.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@takumi-rs/helpers': 1.8.7(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) optionalDependencies: '@takumi-rs/core-darwin-arm64': 1.8.7 '@takumi-rs/core-darwin-x64': 1.8.7 @@ -9956,28 +9827,19 @@ snapshots: '@takumi-rs/core-linux-x64-musl': 1.8.7 '@takumi-rs/core-win32-arm64-msvc': 1.8.7 '@takumi-rs/core-win32-x64-msvc': 1.8.7 - transitivePeerDependencies: - - react - - react-dom - '@takumi-rs/helpers@1.8.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': - optionalDependencies: - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) + '@takumi-rs/helpers@1.8.7(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': + dependencies: + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) - '@takumi-rs/image-response@1.8.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@takumi-rs/image-response@1.8.7(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': dependencies: - takumi-js: 1.8.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - transitivePeerDependencies: - - react - - react-dom + takumi-js: 1.8.7(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) - '@takumi-rs/wasm@1.8.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + '@takumi-rs/wasm@1.8.7(react@19.2.8)(react-dom@19.2.8(react@19.2.8))': dependencies: - '@takumi-rs/helpers': 1.8.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - transitivePeerDependencies: - - react - - react-dom + '@takumi-rs/helpers': 1.8.7(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) '@textlint-rule/textlint-rule-pattern@2.0.2': dependencies: @@ -9986,10 +9848,10 @@ snapshots: '@textlint/ast-node-types@15.7.1': {} - '@textlint/ast-tester@15.7.1(supports-color@7.2.0)': + '@textlint/ast-tester@15.7.1': dependencies: '@textlint/ast-node-types': 15.7.1 - debug: 4.4.3(supports-color@7.2.0) + debug: 4.4.3 transitivePeerDependencies: - supports-color @@ -9997,27 +9859,27 @@ snapshots: dependencies: '@textlint/ast-node-types': 15.7.1 - '@textlint/config-loader@15.7.1(supports-color@7.2.0)': + '@textlint/config-loader@15.7.1': dependencies: - '@textlint/kernel': 15.7.1(supports-color@7.2.0) + '@textlint/kernel': 15.7.1 '@textlint/module-interop': 15.7.1 '@textlint/resolver': 15.7.1 '@textlint/types': 15.7.1 '@textlint/utils': 15.7.1 - debug: 4.4.3(supports-color@7.2.0) - rc-config-loader: 4.1.4(supports-color@7.2.0) + debug: 4.4.3 + rc-config-loader: 4.1.4 transitivePeerDependencies: - supports-color '@textlint/feature-flag@15.7.1': {} - '@textlint/fixer-formatter@15.7.1(supports-color@7.2.0)': + '@textlint/fixer-formatter@15.7.1': dependencies: '@textlint/module-interop': 15.7.1 '@textlint/resolver': 15.7.1 '@textlint/types': 15.7.1 chalk: 4.1.2 - debug: 4.4.3(supports-color@7.2.0) + debug: 4.4.3 diff: 8.0.4 string-width: 4.2.3 strip-ansi: 6.0.1 @@ -10025,22 +9887,22 @@ snapshots: transitivePeerDependencies: - supports-color - '@textlint/kernel@15.7.1(supports-color@7.2.0)': + '@textlint/kernel@15.7.1': dependencies: '@textlint/ast-node-types': 15.7.1 - '@textlint/ast-tester': 15.7.1(supports-color@7.2.0) + '@textlint/ast-tester': 15.7.1 '@textlint/ast-traverse': 15.7.1 '@textlint/feature-flag': 15.7.1 - '@textlint/source-code-fixer': 15.7.1(supports-color@7.2.0) + '@textlint/source-code-fixer': 15.7.1 '@textlint/types': 15.7.1 '@textlint/utils': 15.7.1 - debug: 4.4.3(supports-color@7.2.0) + debug: 4.4.3 fast-equals: 4.0.3 structured-source: 4.0.0 transitivePeerDependencies: - supports-color - '@textlint/linter-formatter@15.7.1(supports-color@7.2.0)': + '@textlint/linter-formatter@15.7.1': dependencies: '@azu/format-text': 1.0.2 '@azu/style-format': 1.0.1 @@ -10048,7 +9910,7 @@ snapshots: '@textlint/resolver': 15.7.1 '@textlint/types': 15.7.1 chalk: 4.1.2 - debug: 4.4.3(supports-color@7.2.0) + debug: 4.4.3 js-yaml: 4.3.0 lodash: 4.18.1 pluralize: 2.0.0 @@ -10059,16 +9921,16 @@ snapshots: transitivePeerDependencies: - supports-color - '@textlint/markdown-to-ast@15.7.1(supports-color@7.2.0)': + '@textlint/markdown-to-ast@15.7.1': dependencies: '@textlint/ast-node-types': 15.7.1 - debug: 4.4.3(supports-color@7.2.0) - mdast-util-gfm-autolink-literal: 0.1.3(supports-color@7.2.0) + debug: 4.4.3 + mdast-util-gfm-autolink-literal: 0.1.3 neotraverse: 0.6.18 - remark-footnotes: 3.0.0(supports-color@7.2.0) + remark-footnotes: 3.0.0 remark-frontmatter: 3.0.0 - remark-gfm: 1.0.0(supports-color@7.2.0) - remark-parse: 9.0.0(supports-color@7.2.0) + remark-gfm: 1.0.0 + remark-parse: 9.0.0 structured-source: 4.0.0 unified: 9.2.2 transitivePeerDependencies: @@ -10085,10 +9947,10 @@ snapshots: '@textlint/resolver@15.7.1': {} - '@textlint/source-code-fixer@15.7.1(supports-color@7.2.0)': + '@textlint/source-code-fixer@15.7.1': dependencies: '@textlint/types': 15.7.1 - debug: 4.4.3(supports-color@7.2.0) + debug: 4.4.3 transitivePeerDependencies: - supports-color @@ -10096,9 +9958,9 @@ snapshots: dependencies: '@textlint/ast-node-types': 15.7.1 - '@textlint/textlint-plugin-markdown@15.7.1(supports-color@7.2.0)': + '@textlint/textlint-plugin-markdown@15.7.1': dependencies: - '@textlint/markdown-to-ast': 15.7.1(supports-color@7.2.0) + '@textlint/markdown-to-ast': 15.7.1 '@textlint/types': 15.7.1 transitivePeerDependencies: - supports-color @@ -10114,10 +9976,10 @@ snapshots: '@textlint/utils@15.7.1': {} - '@theguild/remark-mermaid@0.3.0(react@19.2.7)': + '@theguild/remark-mermaid@0.3.0(react@19.2.8)': dependencies: mermaid: 11.16.0 - react: 19.2.7 + react: 19.2.8 unist-util-visit: 5.1.0 '@ts-morph/common@0.29.0': @@ -10309,11 +10171,11 @@ snapshots: '@types/node@22.20.1': dependencies: - undici-types: 8.7.0 + undici-types: 8.8.0 '@types/node@26.1.1': dependencies: - undici-types: 8.7.0 + undici-types: 8.8.0 '@types/normalize-package-data@2.4.4': {} @@ -10340,15 +10202,15 @@ snapshots: '@types/unist@3.0.3': {} - '@typescript-eslint/eslint-plugin@8.64.0(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': + '@typescript-eslint/eslint-plugin@8.65.0(@typescript-eslint/parser@8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/scope-manager': 8.64.0 - '@typescript-eslint/type-utils': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/visitor-keys': 8.64.0 - eslint: 10.7.0(jiti@2.7.0)(supports-color@7.2.0) + '@typescript-eslint/parser': 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/scope-manager': 8.65.0 + '@typescript-eslint/type-utils': 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/utils': 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/visitor-keys': 8.65.0 + eslint: 10.7.0(jiti@2.7.0) ignore: 7.0.6 natural-compare: 1.4.0 ts-api-utils: 2.5.0(typescript@6.0.3) @@ -10356,187 +10218,98 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.64.0(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3)': + '@typescript-eslint/parser@8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)': dependencies: - '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/scope-manager': 8.64.0 - '@typescript-eslint/type-utils': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) - '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) - '@typescript-eslint/visitor-keys': 8.64.0 - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) - ignore: 7.0.6 - natural-compare: 1.4.0 - ts-api-utils: 2.5.0(typescript@6.0.3) + '@typescript-eslint/scope-manager': 8.65.0 + '@typescript-eslint/types': 8.65.0 + '@typescript-eslint/typescript-estree': 8.65.0(typescript@6.0.3) + '@typescript-eslint/visitor-keys': 8.65.0 + debug: 4.4.3 + eslint: 10.7.0(jiti@2.7.0) typescript: 6.0.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': + '@typescript-eslint/project-service@8.65.0(typescript@6.0.3)': dependencies: - '@typescript-eslint/scope-manager': 8.64.0 - '@typescript-eslint/types': 8.64.0 - '@typescript-eslint/typescript-estree': 8.64.0(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/visitor-keys': 8.64.0 - debug: 4.4.3(supports-color@7.2.0) - eslint: 10.7.0(jiti@2.7.0)(supports-color@7.2.0) + '@typescript-eslint/tsconfig-utils': 8.65.0(typescript@6.0.3) + '@typescript-eslint/types': 8.65.0 + debug: 4.4.3 typescript: 6.0.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3)': + '@typescript-eslint/rule-tester@8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)': dependencies: - '@typescript-eslint/scope-manager': 8.64.0 - '@typescript-eslint/types': 8.64.0 - '@typescript-eslint/typescript-estree': 8.64.0(supports-color@9.4.0)(typescript@6.0.3) - '@typescript-eslint/visitor-keys': 8.64.0 - debug: 4.4.3(supports-color@9.4.0) - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + '@typescript-eslint/parser': 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/typescript-estree': 8.65.0(typescript@6.0.3) + '@typescript-eslint/utils': 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) + ajv: 6.15.0 + eslint: 10.7.0(jiti@2.7.0) + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + semver: 7.8.5 typescript: 6.0.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.64.0(supports-color@7.2.0)(typescript@6.0.3)': + '@typescript-eslint/scope-manager@8.65.0': + dependencies: + '@typescript-eslint/types': 8.65.0 + '@typescript-eslint/visitor-keys': 8.65.0 + + '@typescript-eslint/tsconfig-utils@8.65.0(typescript@6.0.3)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.64.0(typescript@6.0.3) - '@typescript-eslint/types': 8.64.0 - debug: 4.4.3(supports-color@7.2.0) typescript: 6.0.3 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/project-service@8.64.0(supports-color@9.4.0)(typescript@6.0.3)': + '@typescript-eslint/type-utils@8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.64.0(typescript@6.0.3) - '@typescript-eslint/types': 8.64.0 - debug: 4.4.3(supports-color@9.4.0) + '@typescript-eslint/types': 8.65.0 + '@typescript-eslint/typescript-estree': 8.65.0(typescript@6.0.3) + '@typescript-eslint/utils': 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) + debug: 4.4.3 + eslint: 10.7.0(jiti@2.7.0) + ts-api-utils: 2.5.0(typescript@6.0.3) typescript: 6.0.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/rule-tester@8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': + '@typescript-eslint/types@8.65.0': {} + + '@typescript-eslint/typescript-estree@8.65.0(typescript@6.0.3)': dependencies: - '@typescript-eslint/parser': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/typescript-estree': 8.64.0(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - ajv: 6.15.0 - eslint: 10.7.0(jiti@2.7.0)(supports-color@7.2.0) - json-stable-stringify-without-jsonify: 1.0.1 - lodash.merge: 4.6.2 + '@typescript-eslint/project-service': 8.65.0(typescript@6.0.3) + '@typescript-eslint/tsconfig-utils': 8.65.0(typescript@6.0.3) + '@typescript-eslint/types': 8.65.0 + '@typescript-eslint/visitor-keys': 8.65.0 + debug: 4.4.3 + minimatch: 10.2.5 semver: 7.8.5 + tinyglobby: 0.2.17 + ts-api-utils: 2.5.0(typescript@6.0.3) typescript: 6.0.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/rule-tester@8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3)': + '@typescript-eslint/utils@8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3)': dependencies: - '@typescript-eslint/parser': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) - '@typescript-eslint/typescript-estree': 8.64.0(supports-color@9.4.0)(typescript@6.0.3) - '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) - ajv: 6.15.0 - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) - json-stable-stringify-without-jsonify: 1.0.1 - lodash.merge: 4.6.2 - semver: 7.8.5 + '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)) + '@typescript-eslint/scope-manager': 8.65.0 + '@typescript-eslint/types': 8.65.0 + '@typescript-eslint/typescript-estree': 8.65.0(typescript@6.0.3) + eslint: 10.7.0(jiti@2.7.0) typescript: 6.0.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.64.0': - dependencies: - '@typescript-eslint/types': 8.64.0 - '@typescript-eslint/visitor-keys': 8.64.0 - - '@typescript-eslint/tsconfig-utils@8.64.0(typescript@6.0.3)': + '@typescript-eslint/visitor-keys@8.65.0': dependencies: - typescript: 6.0.3 + '@typescript-eslint/types': 8.65.0 + eslint-visitor-keys: 5.0.1 - '@typescript-eslint/type-utils@8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': + '@typescript/vfs@1.6.4(typescript@6.0.3)': dependencies: - '@typescript-eslint/types': 8.64.0 - '@typescript-eslint/typescript-estree': 8.64.0(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - debug: 4.4.3(supports-color@7.2.0) - eslint: 10.7.0(jiti@2.7.0)(supports-color@7.2.0) - ts-api-utils: 2.5.0(typescript@6.0.3) - typescript: 6.0.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/type-utils@8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3)': - dependencies: - '@typescript-eslint/types': 8.64.0 - '@typescript-eslint/typescript-estree': 8.64.0(supports-color@9.4.0)(typescript@6.0.3) - '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) - debug: 4.4.3(supports-color@9.4.0) - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) - ts-api-utils: 2.5.0(typescript@6.0.3) - typescript: 6.0.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/types@8.64.0': {} - - '@typescript-eslint/typescript-estree@8.64.0(supports-color@7.2.0)(typescript@6.0.3)': - dependencies: - '@typescript-eslint/project-service': 8.64.0(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/tsconfig-utils': 8.64.0(typescript@6.0.3) - '@typescript-eslint/types': 8.64.0 - '@typescript-eslint/visitor-keys': 8.64.0 - debug: 4.4.3(supports-color@7.2.0) - minimatch: 10.2.5 - semver: 7.8.5 - tinyglobby: 0.2.17 - ts-api-utils: 2.5.0(typescript@6.0.3) - typescript: 6.0.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/typescript-estree@8.64.0(supports-color@9.4.0)(typescript@6.0.3)': - dependencies: - '@typescript-eslint/project-service': 8.64.0(supports-color@9.4.0)(typescript@6.0.3) - '@typescript-eslint/tsconfig-utils': 8.64.0(typescript@6.0.3) - '@typescript-eslint/types': 8.64.0 - '@typescript-eslint/visitor-keys': 8.64.0 - debug: 4.4.3(supports-color@9.4.0) - minimatch: 10.2.5 - semver: 7.8.5 - tinyglobby: 0.2.17 - ts-api-utils: 2.5.0(typescript@6.0.3) - typescript: 6.0.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/utils@8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': - dependencies: - '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0)) - '@typescript-eslint/scope-manager': 8.64.0 - '@typescript-eslint/types': 8.64.0 - '@typescript-eslint/typescript-estree': 8.64.0(supports-color@7.2.0)(typescript@6.0.3) - eslint: 10.7.0(jiti@2.7.0)(supports-color@7.2.0) - typescript: 6.0.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/utils@8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3)': - dependencies: - '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) - '@typescript-eslint/scope-manager': 8.64.0 - '@typescript-eslint/types': 8.64.0 - '@typescript-eslint/typescript-estree': 8.64.0(supports-color@9.4.0)(typescript@6.0.3) - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) - typescript: 6.0.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/visitor-keys@8.64.0': - dependencies: - '@typescript-eslint/types': 8.64.0 - eslint-visitor-keys: 5.0.1 - - '@typescript/vfs@1.6.4(supports-color@9.4.0)(typescript@6.0.3)': - dependencies: - debug: 4.4.3(supports-color@9.4.0) + debug: 4.4.3 typescript: 6.0.3 transitivePeerDependencies: - supports-color @@ -10562,13 +10335,12 @@ snapshots: chai: 6.2.2 tinyrainbow: 3.1.0 - '@vitest/mocker@4.1.10(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0))': + '@vitest/mocker@4.1.10(vite@8.1.5(@types/node@26.1.1)(jiti@2.7.0)(tsx@4.23.1))': dependencies: '@vitest/spy': 4.1.10 estree-walker: 3.0.3 magic-string: 0.30.21 - optionalDependencies: - vite: 8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0) + vite: 8.1.5(@types/node@26.1.1)(jiti@2.7.0)(tsx@4.23.1) '@vitest/pretty-format@4.1.10': dependencies: @@ -10616,7 +10388,7 @@ snapshots: '@vue/shared': 3.5.40 estree-walker: 2.0.2 magic-string: 0.30.21 - postcss: 8.5.19 + postcss: 8.5.21 source-map-js: 1.2.1 '@vue/compiler-ssr@3.5.40': @@ -10661,78 +10433,78 @@ snapshots: '@yuku-analyzer/binding-win32-x64@0.6.12': optional: true - '@yuku-codegen/binding-darwin-arm64@0.6.12': + '@yuku-codegen/binding-darwin-arm64@0.7.3': optional: true - '@yuku-codegen/binding-darwin-x64@0.6.12': + '@yuku-codegen/binding-darwin-x64@0.7.3': optional: true - '@yuku-codegen/binding-freebsd-x64@0.6.12': + '@yuku-codegen/binding-freebsd-x64@0.7.3': optional: true - '@yuku-codegen/binding-linux-arm-gnu@0.6.12': + '@yuku-codegen/binding-linux-arm-gnu@0.7.3': optional: true - '@yuku-codegen/binding-linux-arm-musl@0.6.12': + '@yuku-codegen/binding-linux-arm-musl@0.7.3': optional: true - '@yuku-codegen/binding-linux-arm64-gnu@0.6.12': + '@yuku-codegen/binding-linux-arm64-gnu@0.7.3': optional: true - '@yuku-codegen/binding-linux-arm64-musl@0.6.12': + '@yuku-codegen/binding-linux-arm64-musl@0.7.3': optional: true - '@yuku-codegen/binding-linux-x64-gnu@0.6.12': + '@yuku-codegen/binding-linux-x64-gnu@0.7.3': optional: true - '@yuku-codegen/binding-linux-x64-musl@0.6.12': + '@yuku-codegen/binding-linux-x64-musl@0.7.3': optional: true - '@yuku-codegen/binding-win32-arm64@0.6.12': + '@yuku-codegen/binding-win32-arm64@0.7.3': optional: true - '@yuku-codegen/binding-win32-x64@0.6.12': + '@yuku-codegen/binding-win32-x64@0.7.3': optional: true - '@yuku-parser/binding-darwin-arm64@0.6.12': + '@yuku-parser/binding-darwin-arm64@0.7.3': optional: true - '@yuku-parser/binding-darwin-x64@0.6.12': + '@yuku-parser/binding-darwin-x64@0.7.3': optional: true - '@yuku-parser/binding-freebsd-x64@0.6.12': + '@yuku-parser/binding-freebsd-x64@0.7.3': optional: true - '@yuku-parser/binding-linux-arm-gnu@0.6.12': + '@yuku-parser/binding-linux-arm-gnu@0.7.3': optional: true - '@yuku-parser/binding-linux-arm-musl@0.6.12': + '@yuku-parser/binding-linux-arm-musl@0.7.3': optional: true - '@yuku-parser/binding-linux-arm64-gnu@0.6.12': + '@yuku-parser/binding-linux-arm64-gnu@0.7.3': optional: true - '@yuku-parser/binding-linux-arm64-musl@0.6.12': + '@yuku-parser/binding-linux-arm64-musl@0.7.3': optional: true - '@yuku-parser/binding-linux-x64-gnu@0.6.12': + '@yuku-parser/binding-linux-x64-gnu@0.7.3': optional: true - '@yuku-parser/binding-linux-x64-musl@0.6.12': + '@yuku-parser/binding-linux-x64-musl@0.7.3': optional: true - '@yuku-parser/binding-win32-arm64@0.6.12': + '@yuku-parser/binding-win32-arm64@0.7.3': optional: true - '@yuku-parser/binding-win32-x64@0.6.12': + '@yuku-parser/binding-win32-x64@0.7.3': optional: true - '@yuku-toolchain/types@0.5.43': {} - '@yuku-toolchain/types@0.6.11': {} '@yuku-toolchain/types@0.6.8': {} + '@yuku-toolchain/types@0.7.3': {} + '@zkochan/js-yaml@0.0.7': dependencies: argparse: 2.0.1 @@ -10753,11 +10525,9 @@ snapshots: agent-base@6.0.2(supports-color@7.2.0): dependencies: debug: 4.4.3(supports-color@7.2.0) - transitivePeerDependencies: - - supports-color ajv-formats@3.0.1(ajv@8.20.0): - optionalDependencies: + dependencies: ajv: 8.20.0 ajv@6.15.0: @@ -10770,7 +10540,7 @@ snapshots: ajv@8.20.0: dependencies: fast-deep-equal: 3.1.3 - fast-uri: 3.1.3 + fast-uri: 3.1.4 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 @@ -10816,13 +10586,10 @@ snapshots: form-data: 4.0.6 https-proxy-agent: 5.0.1(supports-color@7.2.0) proxy-from-env: 2.1.0 - transitivePeerDependencies: - - debug - - supports-color - babel-plugin-transform-hook-names@1.0.2(@babel/core@7.29.7(supports-color@9.4.0)): + babel-plugin-transform-hook-names@1.0.2(@babel/core@7.29.7): dependencies: - '@babel/core': 7.29.7(supports-color@9.4.0) + '@babel/core': 7.29.7 bail@1.0.5: {} @@ -10830,11 +10597,9 @@ snapshots: balanced-match@4.0.3: {} - balanced-match@4.0.4: {} - base64-js@1.5.1: {} - baseline-browser-mapping@2.10.43: {} + baseline-browser-mapping@2.11.0: {} beautiful-mermaid@1.1.3: dependencies: @@ -10849,11 +10614,11 @@ snapshots: inherits: 2.0.4 readable-stream: 3.6.2 - body-parser@2.3.0(supports-color@7.2.0): + body-parser@2.3.0: dependencies: bytes: 3.1.2 content-type: 2.0.0 - debug: 4.4.3(supports-color@7.2.0) + debug: 4.4.3 http-errors: 2.0.1 iconv-lite: 0.7.3 on-finished: 2.4.1 @@ -10871,26 +10636,22 @@ snapshots: dependencies: balanced-match: 4.0.3 - brace-expansion@5.0.7: - dependencies: - balanced-match: 4.0.4 - braces@3.0.3: dependencies: fill-range: 7.1.1 browserslist@4.28.6: dependencies: - baseline-browser-mapping: 2.10.43 + baseline-browser-mapping: 2.11.0 caniuse-lite: 1.0.30001806 - electron-to-chromium: 1.5.393 + electron-to-chromium: 1.5.394 node-releases: 2.0.51 update-browserslist-db: 1.2.3(browserslist@4.28.6) - bsky-react-post@0.1.7(react@19.2.7)(swr@2.4.2(react@19.2.7)): + bsky-react-post@0.1.7(react@19.2.8)(swr@2.4.2(react@19.2.8)): dependencies: - react: 19.2.7 - swr: 2.4.2(react@19.2.7) + react: 19.2.8 + swr: 2.4.2(react@19.2.8) buffer-from@1.1.2: {} @@ -11279,17 +11040,14 @@ snapshots: dayjs@1.11.21: {} - debug@4.4.3(supports-color@7.2.0): + debug@4.4.3: dependencies: ms: 2.1.3 - optionalDependencies: - supports-color: 7.2.0 - debug@4.4.3(supports-color@9.4.0): + debug@4.4.3(supports-color@7.2.0): dependencies: ms: 2.1.3 - optionalDependencies: - supports-color: 9.4.0 + supports-color: 7.2.0 decode-named-character-reference@1.3.0: dependencies: @@ -11313,15 +11071,15 @@ snapshots: delayed-stream@1.0.0: {} - depcheck@1.4.7(supports-color@7.2.0): + depcheck@1.4.7: dependencies: '@babel/parser': 7.29.7 - '@babel/traverse': 7.29.7(supports-color@7.2.0) + '@babel/traverse': 7.29.7 '@vue/compiler-sfc': 3.5.40 callsite: 1.0.0 camelcase: 6.3.0 cosmiconfig: 7.1.0 - debug: 4.4.3(supports-color@7.2.0) + debug: 4.4.3 deps-regex: 0.2.0 findup-sync: 5.0.0 ignore: 5.3.2 @@ -11424,7 +11182,7 @@ snapshots: ejs@5.0.1: {} - electron-to-chromium@1.5.393: {} + electron-to-chromium@1.5.394: {} elkjs@0.11.1: {} @@ -11442,7 +11200,7 @@ snapshots: dependencies: once: 1.4.0 - enhanced-resolve@5.24.2: + enhanced-resolve@5.24.3: dependencies: graceful-fs: 4.2.11 tapable: 2.3.3 @@ -11535,31 +11293,29 @@ snapshots: escape-string-regexp@5.0.0: {} - eslint-fix-utils@0.4.3(@types/estree@1.0.9)(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0)): + eslint-fix-utils@0.4.3(eslint@10.7.0(jiti@2.7.0)): dependencies: - eslint: 10.7.0(jiti@2.7.0)(supports-color@7.2.0) - optionalDependencies: - '@types/estree': 1.0.9 + eslint: 10.7.0(jiti@2.7.0) - eslint-json-compat-utils@0.2.3(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(jsonc-eslint-parser@3.1.0): + eslint-json-compat-utils@0.2.3(eslint@10.7.0(jiti@2.7.0))(jsonc-eslint-parser@3.1.0): dependencies: - eslint: 10.7.0(jiti@2.7.0)(supports-color@7.2.0) + eslint: 10.7.0(jiti@2.7.0) esquery: 1.7.0 jsonc-eslint-parser: 3.1.0 - eslint-plugin-de-morgan@2.1.3(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)): + eslint-plugin-de-morgan@2.1.3(eslint@10.7.0(jiti@2.7.0)): dependencies: - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + eslint: 10.7.0(jiti@2.7.0) - eslint-plugin-jsdoc@63.1.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0): + eslint-plugin-jsdoc@63.2.0(eslint@10.7.0(jiti@2.7.0)): dependencies: '@es-joy/jsdoccomment': 0.88.0 '@es-joy/resolve.exports': 1.2.0 are-docs-informative: 0.0.2 comment-parser: 1.4.7 - debug: 4.4.3(supports-color@9.4.0) + debug: 4.4.3 escape-string-regexp: 4.0.0 - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + eslint: 10.7.0(jiti@2.7.0) espree: 11.2.0 esquery: 1.7.0 html-entities: 2.6.0 @@ -11571,68 +11327,68 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-package-json@1.6.0(@types/estree@1.0.9)(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0)): + eslint-plugin-package-json@1.6.0(eslint@10.7.0(jiti@2.7.0)): dependencies: '@altano/repository-tools': 2.0.3 change-case: 5.4.4 detect-indent: 7.0.2 detect-newline: 4.0.1 - eslint: 10.7.0(jiti@2.7.0)(supports-color@7.2.0) - eslint-fix-utils: 0.4.3(@types/estree@1.0.9)(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0)) - eslint-json-compat-utils: 0.2.3(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(jsonc-eslint-parser@3.1.0) + eslint: 10.7.0(jiti@2.7.0) + eslint-fix-utils: 0.4.3(eslint@10.7.0(jiti@2.7.0)) + eslint-json-compat-utils: 0.2.3(eslint@10.7.0(jiti@2.7.0))(jsonc-eslint-parser@3.1.0) jsonc-eslint-parser: 3.1.0 package-json-validator: 1.5.2 semver: 7.8.5 sort-object-keys: 2.1.0 sort-package-json: 4.0.0 transitivePeerDependencies: + - '@eslint/json' - '@types/estree' - eslint-plugin-perfectionist@5.10.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3): + eslint-plugin-perfectionist@5.10.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3): dependencies: - '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + '@typescript-eslint/utils': 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) + eslint: 10.7.0(jiti@2.7.0) natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - - typescript - eslint-plugin-react-hooks@7.1.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0): + eslint-plugin-react-hooks@7.1.1(eslint@10.7.0(jiti@2.7.0)): dependencies: - '@babel/core': 7.29.7(supports-color@9.4.0) + '@babel/core': 7.29.7 '@babel/parser': 7.29.7 - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + eslint: 10.7.0(jiti@2.7.0) hermes-parser: 0.25.1 zod: 4.4.3 zod-validation-error: 4.0.2(zod@4.4.3) transitivePeerDependencies: - supports-color - eslint-plugin-react-refresh@0.5.3(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)): + eslint-plugin-react-refresh@0.5.3(eslint@10.7.0(jiti@2.7.0)): dependencies: - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + eslint: 10.7.0(jiti@2.7.0) - eslint-plugin-regexp@3.1.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)): + eslint-plugin-regexp@3.1.1(eslint@10.7.0(jiti@2.7.0)): dependencies: - '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)) '@eslint-community/regexpp': 4.12.2 comment-parser: 1.4.7 - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + eslint: 10.7.0(jiti@2.7.0) jsdoc-type-pratt-parser: 7.2.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 scslre: 0.3.0 - eslint-plugin-unicorn@69.0.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)): + eslint-plugin-unicorn@69.0.0(eslint@10.7.0(jiti@2.7.0)): dependencies: '@babel/helper-validator-identifier': 7.29.7 - '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) + '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)) browserslist: 4.28.6 change-case: 5.4.4 ci-info: 4.4.0 core-js-compat: 3.49.0 detect-indent: 7.0.2 - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + eslint: 10.7.0(jiti@2.7.0) find-up-simple: 1.0.1 globals: 17.7.0 indent-string: 5.0.0 @@ -11656,11 +11412,11 @@ snapshots: eslint-visitor-keys@5.0.1: {} - eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0): + eslint@10.7.0(jiti@2.7.0): dependencies: - '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0)) + '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)) '@eslint-community/regexpp': 4.12.2 - '@eslint/config-array': 0.23.5(supports-color@7.2.0) + '@eslint/config-array': 0.23.5 '@eslint/config-helpers': 0.6.0 '@eslint/core': 1.2.1 '@eslint/plugin-kit': 0.7.2 @@ -11670,7 +11426,7 @@ snapshots: '@types/estree': 1.0.9 ajv: 6.15.0 cross-spawn: 7.0.6 - debug: 4.4.3(supports-color@7.2.0) + debug: 4.4.3 escape-string-regexp: 4.0.0 eslint-scope: 9.1.2 eslint-visitor-keys: 5.0.1 @@ -11684,49 +11440,11 @@ snapshots: ignore: 5.3.2 imurmurhash: 0.1.4 is-glob: 4.0.3 - json-stable-stringify-without-jsonify: 1.0.1 - minimatch: 10.2.5 - natural-compare: 1.4.0 - optionator: 0.9.4 - optionalDependencies: jiti: 2.7.0 - transitivePeerDependencies: - - supports-color - - eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0): - dependencies: - '@eslint-community/eslint-utils': 4.9.1(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0)) - '@eslint-community/regexpp': 4.12.2 - '@eslint/config-array': 0.23.5(supports-color@9.4.0) - '@eslint/config-helpers': 0.6.0 - '@eslint/core': 1.2.1 - '@eslint/plugin-kit': 0.7.2 - '@humanfs/node': 0.16.8 - '@humanwhocodes/module-importer': 1.0.1 - '@humanwhocodes/retry': 0.4.3 - '@types/estree': 1.0.9 - ajv: 6.15.0 - cross-spawn: 7.0.6 - debug: 4.4.3(supports-color@9.4.0) - escape-string-regexp: 4.0.0 - eslint-scope: 9.1.2 - eslint-visitor-keys: 5.0.1 - espree: 11.2.0 - esquery: 1.7.0 - esutils: 2.0.3 - fast-deep-equal: 3.1.3 - file-entry-cache: 8.0.0 - find-up: 5.0.0 - glob-parent: 6.0.2 - ignore: 5.3.2 - imurmurhash: 0.1.4 - is-glob: 4.0.3 json-stable-stringify-without-jsonify: 1.0.1 minimatch: 10.2.5 natural-compare: 1.4.0 optionator: 0.9.4 - optionalDependencies: - jiti: 2.7.0 transitivePeerDependencies: - supports-color @@ -11807,28 +11525,28 @@ snapshots: expect-type@1.4.0: {} - express-rate-limit@8.6.0(express@5.2.1(supports-color@7.2.0))(supports-color@7.2.0): + express-rate-limit@8.6.0(express@5.2.1): dependencies: - debug: 4.4.3(supports-color@7.2.0) - express: 5.2.1(supports-color@7.2.0) + debug: 4.4.3 + express: 5.2.1 ip-address: 10.2.0 transitivePeerDependencies: - supports-color - express@5.2.1(supports-color@7.2.0): + express@5.2.1: dependencies: accepts: 2.0.0 - body-parser: 2.3.0(supports-color@7.2.0) + body-parser: 2.3.0 content-disposition: 1.1.0 content-type: 1.0.5 cookie: 0.7.2 cookie-signature: 1.2.2 - debug: 4.4.3(supports-color@7.2.0) + debug: 4.4.3 depd: 2.0.0 encodeurl: 2.0.0 escape-html: 1.0.3 etag: 1.8.1 - finalhandler: 2.1.1(supports-color@7.2.0) + finalhandler: 2.1.1 fresh: 2.0.0 http-errors: 2.0.1 merge-descriptors: 2.0.0 @@ -11839,9 +11557,9 @@ snapshots: proxy-addr: 2.0.7 qs: 6.15.3 range-parser: 1.3.0 - router: 2.2.0(supports-color@7.2.0) - send: 1.2.1(supports-color@7.2.0) - serve-static: 2.2.1(supports-color@7.2.0) + router: 2.2.0 + send: 1.2.1 + serve-static: 2.2.1 statuses: 2.0.2 type-is: 2.1.0 vary: 1.1.2 @@ -11870,7 +11588,7 @@ snapshots: fast-levenshtein@2.0.6: {} - fast-uri@3.1.3: {} + fast-uri@3.1.4: {} fastq@1.20.1: dependencies: @@ -11885,7 +11603,7 @@ snapshots: format: 0.2.2 fdir@6.5.0(picomatch@4.0.5): - optionalDependencies: + dependencies: picomatch: 4.0.5 figures@3.2.0: @@ -11904,9 +11622,9 @@ snapshots: dependencies: to-regex-range: 5.0.1 - finalhandler@2.1.1(supports-color@7.2.0): + finalhandler@2.1.1: dependencies: - debug: 4.4.3(supports-color@7.2.0) + debug: 4.4.3 encodeurl: 2.0.0 escape-html: 1.0.3 on-finished: 2.4.1 @@ -11947,7 +11665,7 @@ snapshots: flatted@3.4.2: {} follow-redirects@1.16.0(debug@4.4.3(supports-color@7.2.0)): - optionalDependencies: + dependencies: debug: 4.4.3(supports-color@7.2.0) foreground-child@3.3.1: @@ -11967,14 +11685,13 @@ snapshots: forwarded@0.2.0: {} - framer-motion@12.42.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7): + framer-motion@12.42.2(react@19.2.8)(react-dom@19.2.8(react@19.2.8)): dependencies: motion-dom: 12.42.2 motion-utils: 12.39.0 + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) tslib: 2.8.1 - optionalDependencies: - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) fresh@2.0.0: {} @@ -11983,17 +11700,26 @@ snapshots: fsevents@2.3.3: optional: true - fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1(supports-color@9.4.0))(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.7))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(supports-color@9.4.0)(zod@4.4.3): + fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3): dependencies: + '@mdx-js/mdx': 3.1.1 '@orama/orama': 3.1.18 + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.5 + '@types/mdast': 4.0.4 + '@types/react': 19.2.17 estree-util-value-to-estree: 3.5.0 github-slugger: 2.0.0 - hast-util-to-estree: 3.1.3(supports-color@9.4.0) - hast-util-to-jsx-runtime: 2.3.6(supports-color@9.4.0) - mdast-util-mdx: 3.0.0(supports-color@9.4.0) + hast-util-to-estree: 3.1.3 + hast-util-to-jsx-runtime: 2.3.6 + lucide-react: 1.25.0(react@19.2.8) + mdast-util-mdx: 3.0.0 mdast-util-to-markdown: 2.1.2 - remark: 15.0.1(supports-color@9.4.0) - remark-gfm: 4.0.1(supports-color@9.4.0) + next: 16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) + remark: 15.0.1 + remark-gfm: 4.0.1 remark-rehype: 11.1.2 scroll-into-view-if-needed: 3.1.0 shiki: 4.3.1 @@ -12002,151 +11728,133 @@ snapshots: unist-util-visit: 5.1.0 vfile: 6.0.3 yaml: 2.9.0 - optionalDependencies: - '@mdx-js/mdx': 3.1.1(supports-color@9.4.0) - '@types/estree-jsx': 1.0.5 - '@types/hast': 3.0.5 - '@types/mdast': 4.0.4 - '@types/react': 19.2.17 - lucide-react: 1.25.0(react@19.2.7) - next: 16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) zod: 4.4.3 transitivePeerDependencies: - supports-color - fumadocs-docgen@3.1.0(@types/estree@1.0.9)(@types/hast@3.0.5)(@types/mdast@4.0.4)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1(supports-color@9.4.0))(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.7))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(supports-color@9.4.0)(zod@4.4.3))(mdast-util-mdx@3.0.0(supports-color@9.4.0)): + fumadocs-docgen@3.1.0(@types/estree@1.0.9)(@types/hast@3.0.5)(@types/mdast@4.0.4)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3))(mdast-util-mdx@3.0.0): dependencies: + '@types/estree': 1.0.9 + '@types/hast': 3.0.5 + '@types/mdast': 4.0.4 estree-util-to-js: 2.0.0 estree-util-value-to-estree: 3.5.0 - fumadocs-core: 16.11.5(@mdx-js/mdx@3.1.1(supports-color@9.4.0))(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.7))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(supports-color@9.4.0)(zod@4.4.3) - npm-to-yarn: 3.0.1 + fumadocs-core: 16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3) + mdast-util-mdx: 3.0.0 + npm-to-yarn: 3.1.0 oxc-transform: 0.138.0 unified: 11.0.5 unist-util-visit: 5.1.0 vfile: 6.0.3 zod: 4.4.3 - optionalDependencies: - '@types/estree': 1.0.9 - '@types/hast': 3.0.5 - '@types/mdast': 4.0.4 - mdast-util-mdx: 3.0.0(supports-color@9.4.0) - fumadocs-mdx@15.2.0(@types/mdast@4.0.4)(@types/mdx@2.0.14)(@types/react@19.2.17)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1(supports-color@9.4.0))(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.7))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(supports-color@9.4.0)(zod@4.4.3))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)(rolldown@1.2.0)(supports-color@9.4.0)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)): + fumadocs-mdx@15.2.0(@types/mdast@4.0.4)(@types/mdx@2.0.14)(@types/react@19.2.17)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(rolldown@1.2.0)(vite@8.1.5(@types/node@26.1.1)(jiti@2.7.0)(tsx@4.23.1)): dependencies: - '@mdx-js/mdx': 3.1.1(supports-color@9.4.0) + '@mdx-js/mdx': 3.1.1 '@standard-schema/spec': 1.1.0 + '@types/mdast': 4.0.4 + '@types/mdx': 2.0.14 + '@types/react': 19.2.17 chokidar: 5.0.0 esbuild: 0.28.1 estree-util-value-to-estree: 3.5.0 - fumadocs-core: 16.11.5(@mdx-js/mdx@3.1.1(supports-color@9.4.0))(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.7))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(supports-color@9.4.0)(zod@4.4.3) + fumadocs-core: 16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3) github-slugger: 2.0.0 magic-string: 0.30.21 - mdast-util-mdx: 3.0.0(supports-color@9.4.0) + mdast-util-mdx: 3.0.0 + next: 16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) picocolors: 1.1.1 picomatch: 4.0.5 + react: 19.2.8 + rolldown: 1.2.0 tinyexec: 1.2.4 tinyglobby: 0.2.17 unified: 11.0.5 unist-util-remove-position: 5.0.0 unist-util-visit: 5.1.0 vfile: 6.0.3 + vite: 8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0) yaml: 2.9.0 yuku-analyzer: 0.6.12 zod: 4.4.3 - optionalDependencies: - '@types/mdast': 4.0.4 - '@types/mdx': 2.0.14 - '@types/react': 19.2.17 - next: 16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - react: 19.2.7 - rolldown: 1.2.0 - vite: 8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0) transitivePeerDependencies: - supports-color - fumadocs-twoslash@3.3.0(e1e233f65304a3542d6c76548a844b15): + fumadocs-twoslash@3.3.0(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3))(fumadocs-ui@16.11.5(@types/mdx@2.0.14)(@types/react@19.2.17)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(takumi-js@1.8.7))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(shiki@4.3.1)(tailwindcss@4.3.3)(typescript@6.0.3): dependencies: - '@base-ui/react': 1.6.0(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@shikijs/twoslash': 4.3.1(supports-color@9.4.0)(typescript@6.0.3) + '@base-ui/react': 1.6.0(@types/react@19.2.17)(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@shikijs/twoslash': 4.3.1(typescript@6.0.3) + '@types/react': 19.2.17 cnfast: 0.0.8 - fumadocs-core: 16.11.5(@mdx-js/mdx@3.1.1(supports-color@9.4.0))(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.7))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(supports-color@9.4.0)(zod@4.4.3) - fumadocs-ui: 16.11.5(@types/mdx@2.0.14)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1(supports-color@9.4.0))(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.7))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(supports-color@9.4.0)(zod@4.4.3))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(tailwindcss@4.3.3)(takumi-js@1.8.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7)) - mdast-util-from-markdown: 2.0.3(supports-color@9.4.0) - mdast-util-gfm: 3.1.0(supports-color@9.4.0) + fumadocs-core: 16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3) + fumadocs-ui: 16.11.5(@types/mdx@2.0.14)(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(tailwindcss@4.3.3)(takumi-js@1.8.7) + mdast-util-from-markdown: 2.0.3 + mdast-util-gfm: 3.1.0 mdast-util-to-hast: 13.2.1 - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) shiki: 4.3.1 - twoslash: 0.3.9(supports-color@9.4.0)(typescript@6.0.3) - optionalDependencies: - '@types/react': 19.2.17 + twoslash: 0.3.9(typescript@6.0.3) transitivePeerDependencies: - '@date-fns/tz' - date-fns - supports-color - - typescript - fumadocs-typescript@5.3.0(e4fa03a9b157939d9ef4d6440a1d619b): + fumadocs-typescript@5.3.0(@types/estree@1.0.9)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3))(fumadocs-ui@16.11.5(@types/mdx@2.0.14)(@types/react@19.2.17)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(takumi-js@1.8.7))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(tailwindcss@4.3.3): dependencies: + '@types/estree': 1.0.9 + '@types/hast': 3.0.5 + '@types/mdast': 4.0.4 + '@types/react': 19.2.17 estree-util-value-to-estree: 3.5.0 - fumadocs-core: 16.11.5(@mdx-js/mdx@3.1.1(supports-color@9.4.0))(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.7))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(supports-color@9.4.0)(zod@4.4.3) - hast-util-to-estree: 3.1.3(supports-color@9.4.0) - hast-util-to-jsx-runtime: 2.3.6(supports-color@9.4.0) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - remark: 15.0.1(supports-color@9.4.0) + fumadocs-core: 16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3) + fumadocs-ui: 16.11.5(@types/mdx@2.0.14)(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(tailwindcss@4.3.3)(takumi-js@1.8.7) + hast-util-to-estree: 3.1.3 + hast-util-to-jsx-runtime: 2.3.6 + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) + remark: 15.0.1 remark-rehype: 11.1.2 shiki: 4.3.1 ts-morph: 28.0.0 unified: 11.0.5 unist-util-visit: 5.1.0 - optionalDependencies: - '@types/estree': 1.0.9 - '@types/hast': 3.0.5 - '@types/mdast': 4.0.4 - '@types/react': 19.2.17 - fumadocs-ui: 16.11.5(@types/mdx@2.0.14)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1(supports-color@9.4.0))(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.7))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(supports-color@9.4.0)(zod@4.4.3))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(tailwindcss@4.3.3)(takumi-js@1.8.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7)) transitivePeerDependencies: - supports-color - fumadocs-ui@16.11.5(@types/mdx@2.0.14)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1(supports-color@9.4.0))(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.7))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(supports-color@9.4.0)(zod@4.4.3))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(tailwindcss@4.3.3)(takumi-js@1.8.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7)): + fumadocs-ui@16.11.5(@types/mdx@2.0.14)(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(tailwindcss@4.3.3)(takumi-js@1.8.7): dependencies: - '@fuma-translate/react': 1.0.2(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@fuma-translate/react': 1.0.2(@types/react@19.2.17)(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) '@fumadocs/tailwind': 0.1.1(tailwindcss@4.3.3) - '@radix-ui/react-accordion': 1.2.16(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-collapsible': 1.1.16(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-dialog': 1.1.19(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-navigation-menu': 1.2.18(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-popover': 1.1.19(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-presence': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-scroll-area': 1.2.14(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7) - '@radix-ui/react-tabs': 1.1.17(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@radix-ui/react-accordion': 1.2.17(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-collapsible': 1.1.17(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-dialog': 1.1.20(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-navigation-menu': 1.2.19(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-popover': 1.1.20(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-presence': 1.1.8(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-scroll-area': 1.2.15(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.8) + '@radix-ui/react-tabs': 1.1.18(@types/react@19.2.17)(@types/react-dom@19.2.3(@types/react@19.2.17))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@types/mdx': 2.0.14 + '@types/react': 19.2.17 class-variance-authority: 0.7.1 cnfast: 0.0.8 - fumadocs-core: 16.11.5(@mdx-js/mdx@3.1.1(supports-color@9.4.0))(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.7))(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(supports-color@9.4.0)(zod@4.4.3) - lucide-react: 1.25.0(react@19.2.7) - motion: 12.42.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - next-themes: 0.4.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - react-remove-scroll: 2.7.2(@types/react@19.2.17)(react@19.2.7) + fumadocs-core: 16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.5)(@types/mdast@4.0.4)(@types/react@19.2.17)(lucide-react@1.25.0(react@19.2.8))(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8))(zod@4.4.3) + lucide-react: 1.25.0(react@19.2.8) + motion: 12.42.2(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + next: 16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + next-themes: 0.4.6(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) + react-remove-scroll: 2.7.2(@types/react@19.2.17)(react@19.2.8) rehype-raw: 7.0.0 scroll-into-view-if-needed: 3.1.0 shiki: 4.3.1 + takumi-js: 1.8.7(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) unist-util-visit: 5.1.0 - optionalDependencies: - '@types/mdx': 2.0.14 - '@types/react': 19.2.17 - next: 16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - takumi-js: 1.8.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7) transitivePeerDependencies: - '@emotion/is-prop-valid' - - '@types/react-dom' - - tailwindcss function-bind@1.1.2: {} @@ -12274,7 +11982,7 @@ snapshots: web-namespaces: 2.0.1 zwitch: 2.0.4 - hast-util-to-estree@3.1.3(supports-color@9.4.0): + hast-util-to-estree@3.1.3: dependencies: '@types/estree': 1.0.9 '@types/estree-jsx': 1.0.5 @@ -12284,9 +11992,9 @@ snapshots: estree-util-attach-comments: 3.0.0 estree-util-is-identifier-name: 3.0.0 hast-util-whitespace: 3.0.0 - mdast-util-mdx-expression: 2.0.1(supports-color@9.4.0) - mdast-util-mdx-jsx: 3.2.0(supports-color@9.4.0) - mdast-util-mdxjs-esm: 2.0.1(supports-color@9.4.0) + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.2.0 + mdast-util-mdxjs-esm: 2.0.1 property-information: 7.2.0 space-separated-tokens: 2.0.2 style-to-js: 1.1.21 @@ -12309,7 +12017,7 @@ snapshots: stringify-entities: 4.0.4 zwitch: 2.0.4 - hast-util-to-jsx-runtime@2.3.6(supports-color@9.4.0): + hast-util-to-jsx-runtime@2.3.6: dependencies: '@types/estree': 1.0.9 '@types/hast': 3.0.5 @@ -12318,9 +12026,9 @@ snapshots: devlop: 1.1.0 estree-util-is-identifier-name: 3.0.0 hast-util-whitespace: 3.0.0 - mdast-util-mdx-expression: 2.0.1(supports-color@9.4.0) - mdast-util-mdx-jsx: 3.2.0(supports-color@9.4.0) - mdast-util-mdxjs-esm: 2.0.1(supports-color@9.4.0) + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.2.0 + mdast-util-mdxjs-esm: 2.0.1 property-information: 7.2.0 space-separated-tokens: 2.0.2 style-to-js: 1.1.21 @@ -12395,8 +12103,6 @@ snapshots: dependencies: agent-base: 6.0.2(supports-color@7.2.0) debug: 4.4.3(supports-color@7.2.0) - transitivePeerDependencies: - - supports-color iconv-lite@0.6.3: dependencies: @@ -12421,46 +12127,27 @@ snapshots: parent-module: 1.0.1 resolve-from: 4.0.0 - import-integrity-lint@1.1.4(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2)(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3): + import-integrity-lint@1.2.0(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2)(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3): dependencies: '@manypkg/get-packages': 3.1.0 - '@typescript-eslint/typescript-estree': 8.64.0(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - eslint: 10.7.0(jiti@2.7.0)(supports-color@7.2.0) + '@typescript-eslint/typescript-estree': 8.65.0(typescript@6.0.3) + '@typescript-eslint/utils': 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) + eslint: 10.7.0(jiti@2.7.0) ignore: 7.0.6 jsonc-parser: 3.3.1 oxc-parser: 0.106.0(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2) zod: 4.4.3 transitivePeerDependencies: - - '@emnapi/core' - - '@emnapi/runtime' - supports-color - - typescript - - import-integrity-lint@1.1.4(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2)(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3): - dependencies: - '@manypkg/get-packages': 3.1.0 - '@typescript-eslint/typescript-estree': 8.64.0(supports-color@9.4.0)(typescript@6.0.3) - '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) - ignore: 7.0.6 - jsonc-parser: 3.3.1 - oxc-parser: 0.106.0(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2) - zod: 4.4.3 - transitivePeerDependencies: - - '@emnapi/core' - - '@emnapi/runtime' - - supports-color - - typescript import-meta-resolve@4.2.0: {} import-without-cache@0.4.0: {} - importx@0.5.2(supports-color@9.4.0): + importx@0.5.2: dependencies: bundle-require: 5.1.0(esbuild@0.28.1) - debug: 4.4.3(supports-color@9.4.0) + debug: 4.4.3 esbuild: 0.28.1 jiti: 2.7.0 pathe: 2.0.3 @@ -12638,36 +12325,69 @@ snapshots: lightningcss-android-arm64@1.32.0: optional: true + lightningcss-android-arm64@1.33.0: + optional: true + lightningcss-darwin-arm64@1.32.0: optional: true + lightningcss-darwin-arm64@1.33.0: + optional: true + lightningcss-darwin-x64@1.32.0: optional: true + lightningcss-darwin-x64@1.33.0: + optional: true + lightningcss-freebsd-x64@1.32.0: optional: true + lightningcss-freebsd-x64@1.33.0: + optional: true + lightningcss-linux-arm-gnueabihf@1.32.0: optional: true + lightningcss-linux-arm-gnueabihf@1.33.0: + optional: true + lightningcss-linux-arm64-gnu@1.32.0: optional: true + lightningcss-linux-arm64-gnu@1.33.0: + optional: true + lightningcss-linux-arm64-musl@1.32.0: optional: true + lightningcss-linux-arm64-musl@1.33.0: + optional: true + lightningcss-linux-x64-gnu@1.32.0: optional: true + lightningcss-linux-x64-gnu@1.33.0: + optional: true + lightningcss-linux-x64-musl@1.32.0: optional: true + lightningcss-linux-x64-musl@1.33.0: + optional: true + lightningcss-win32-arm64-msvc@1.32.0: optional: true + lightningcss-win32-arm64-msvc@1.33.0: + optional: true + lightningcss-win32-x64-msvc@1.32.0: optional: true + lightningcss-win32-x64-msvc@1.33.0: + optional: true + lightningcss@1.32.0: dependencies: detect-libc: 2.1.2 @@ -12684,12 +12404,26 @@ snapshots: lightningcss-win32-arm64-msvc: 1.32.0 lightningcss-win32-x64-msvc: 1.32.0 + lightningcss@1.33.0: + dependencies: + detect-libc: 2.1.2 + optionalDependencies: + lightningcss-android-arm64: 1.33.0 + lightningcss-darwin-arm64: 1.33.0 + lightningcss-darwin-x64: 1.33.0 + lightningcss-freebsd-x64: 1.33.0 + lightningcss-linux-arm-gnueabihf: 1.33.0 + lightningcss-linux-arm64-gnu: 1.33.0 + lightningcss-linux-arm64-musl: 1.33.0 + lightningcss-linux-x64-gnu: 1.33.0 + lightningcss-linux-x64-musl: 1.33.0 + lightningcss-win32-arm64-msvc: 1.33.0 + lightningcss-win32-x64-msvc: 1.33.0 + lines-and-columns@1.2.4: {} lines-and-columns@2.0.3: {} - lines-and-columns@2.0.4: {} - linkify-it@5.0.2: dependencies: uc.micro: 2.1.0 @@ -12698,8 +12432,6 @@ snapshots: dependencies: '@npmcli/config': 8.3.4 import-meta-resolve: 4.2.0 - transitivePeerDependencies: - - bluebird load-tsconfig@0.2.5: {} @@ -12738,9 +12470,9 @@ snapshots: dependencies: yallist: 3.1.1 - lucide-react@1.25.0(react@19.2.7): + lucide-react@1.25.0(react@19.2.8): dependencies: - react: 19.2.7 + react: 19.2.8 lunr@2.3.9: {} @@ -12788,48 +12520,31 @@ snapshots: unist-util-is: 6.0.1 unist-util-visit-parents: 6.0.2 - mdast-util-footnote@0.1.7(supports-color@7.2.0): + mdast-util-footnote@0.1.7: dependencies: mdast-util-to-markdown: 0.6.5 - micromark: 2.11.4(supports-color@7.2.0) + micromark: 2.11.4 transitivePeerDependencies: - supports-color - mdast-util-from-markdown@0.8.5(supports-color@7.2.0): + mdast-util-from-markdown@0.8.5: dependencies: '@types/mdast': 3.0.15 mdast-util-to-string: 2.0.0 - micromark: 2.11.4(supports-color@7.2.0) + micromark: 2.11.4 parse-entities: 2.0.0 unist-util-stringify-position: 2.0.3 transitivePeerDependencies: - supports-color - mdast-util-from-markdown@2.0.3(supports-color@7.2.0): - dependencies: - '@types/mdast': 4.0.4 - '@types/unist': 3.0.3 - decode-named-character-reference: 1.3.0 - devlop: 1.1.0 - mdast-util-to-string: 4.0.0 - micromark: 4.0.2(supports-color@7.2.0) - micromark-util-decode-numeric-character-reference: 2.0.2 - micromark-util-decode-string: 2.0.1 - micromark-util-normalize-identifier: 2.0.1 - micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.2 - unist-util-stringify-position: 4.0.0 - transitivePeerDependencies: - - supports-color - - mdast-util-from-markdown@2.0.3(supports-color@9.4.0): + mdast-util-from-markdown@2.0.3: dependencies: '@types/mdast': 4.0.4 '@types/unist': 3.0.3 decode-named-character-reference: 1.3.0 devlop: 1.1.0 mdast-util-to-string: 4.0.0 - micromark: 4.0.2(supports-color@9.4.0) + micromark: 4.0.2 micromark-util-decode-numeric-character-reference: 2.0.2 micromark-util-decode-string: 2.0.1 micromark-util-normalize-identifier: 2.0.1 @@ -12843,22 +12558,22 @@ snapshots: dependencies: micromark-extension-frontmatter: 0.2.2 - mdast-util-frontmatter@2.0.1(supports-color@7.2.0): + mdast-util-frontmatter@2.0.1: dependencies: '@types/mdast': 4.0.4 devlop: 1.1.0 escape-string-regexp: 5.0.0 - mdast-util-from-markdown: 2.0.3(supports-color@7.2.0) + mdast-util-from-markdown: 2.0.3 mdast-util-to-markdown: 2.1.2 micromark-extension-frontmatter: 2.0.0 transitivePeerDependencies: - supports-color - mdast-util-gfm-autolink-literal@0.1.3(supports-color@7.2.0): + mdast-util-gfm-autolink-literal@0.1.3: dependencies: ccount: 1.1.0 mdast-util-find-and-replace: 1.1.1 - micromark: 2.11.4(supports-color@7.2.0) + micromark: 2.11.4 transitivePeerDependencies: - supports-color @@ -12870,21 +12585,11 @@ snapshots: mdast-util-find-and-replace: 3.0.2 micromark-util-character: 2.1.1 - mdast-util-gfm-footnote@2.1.0(supports-color@7.2.0): - dependencies: - '@types/mdast': 4.0.4 - devlop: 1.1.0 - mdast-util-from-markdown: 2.0.3(supports-color@7.2.0) - mdast-util-to-markdown: 2.1.2 - micromark-util-normalize-identifier: 2.0.1 - transitivePeerDependencies: - - supports-color - - mdast-util-gfm-footnote@2.1.0(supports-color@9.4.0): + mdast-util-gfm-footnote@2.1.0: dependencies: '@types/mdast': 4.0.4 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.3(supports-color@9.4.0) + mdast-util-from-markdown: 2.0.3 mdast-util-to-markdown: 2.1.2 micromark-util-normalize-identifier: 2.0.1 transitivePeerDependencies: @@ -12894,18 +12599,10 @@ snapshots: dependencies: mdast-util-to-markdown: 0.6.5 - mdast-util-gfm-strikethrough@2.0.0(supports-color@7.2.0): - dependencies: - '@types/mdast': 4.0.4 - mdast-util-from-markdown: 2.0.3(supports-color@7.2.0) - mdast-util-to-markdown: 2.1.2 - transitivePeerDependencies: - - supports-color - - mdast-util-gfm-strikethrough@2.0.0(supports-color@9.4.0): + mdast-util-gfm-strikethrough@2.0.0: dependencies: '@types/mdast': 4.0.4 - mdast-util-from-markdown: 2.0.3(supports-color@9.4.0) + mdast-util-from-markdown: 2.0.3 mdast-util-to-markdown: 2.1.2 transitivePeerDependencies: - supports-color @@ -12915,22 +12612,12 @@ snapshots: markdown-table: 2.0.0 mdast-util-to-markdown: 0.6.5 - mdast-util-gfm-table@2.0.0(supports-color@7.2.0): - dependencies: - '@types/mdast': 4.0.4 - devlop: 1.1.0 - markdown-table: 3.0.4 - mdast-util-from-markdown: 2.0.3(supports-color@7.2.0) - mdast-util-to-markdown: 2.1.2 - transitivePeerDependencies: - - supports-color - - mdast-util-gfm-table@2.0.0(supports-color@9.4.0): + mdast-util-gfm-table@2.0.0: dependencies: '@types/mdast': 4.0.4 devlop: 1.1.0 markdown-table: 3.0.4 - mdast-util-from-markdown: 2.0.3(supports-color@9.4.0) + mdast-util-from-markdown: 2.0.3 mdast-util-to-markdown: 2.1.2 transitivePeerDependencies: - supports-color @@ -12939,27 +12626,18 @@ snapshots: dependencies: mdast-util-to-markdown: 0.6.5 - mdast-util-gfm-task-list-item@2.0.0(supports-color@7.2.0): - dependencies: - '@types/mdast': 4.0.4 - devlop: 1.1.0 - mdast-util-from-markdown: 2.0.3(supports-color@7.2.0) - mdast-util-to-markdown: 2.1.2 - transitivePeerDependencies: - - supports-color - - mdast-util-gfm-task-list-item@2.0.0(supports-color@9.4.0): + mdast-util-gfm-task-list-item@2.0.0: dependencies: '@types/mdast': 4.0.4 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.3(supports-color@9.4.0) + mdast-util-from-markdown: 2.0.3 mdast-util-to-markdown: 2.1.2 transitivePeerDependencies: - supports-color - mdast-util-gfm@0.1.2(supports-color@7.2.0): + mdast-util-gfm@0.1.2: dependencies: - mdast-util-gfm-autolink-literal: 0.1.3(supports-color@7.2.0) + mdast-util-gfm-autolink-literal: 0.1.3 mdast-util-gfm-strikethrough: 0.2.3 mdast-util-gfm-table: 0.1.6 mdast-util-gfm-task-list-item: 0.1.6 @@ -12967,70 +12645,30 @@ snapshots: transitivePeerDependencies: - supports-color - mdast-util-gfm@3.1.0(supports-color@7.2.0): - dependencies: - mdast-util-from-markdown: 2.0.3(supports-color@7.2.0) - mdast-util-gfm-autolink-literal: 2.0.1 - mdast-util-gfm-footnote: 2.1.0(supports-color@7.2.0) - mdast-util-gfm-strikethrough: 2.0.0(supports-color@7.2.0) - mdast-util-gfm-table: 2.0.0(supports-color@7.2.0) - mdast-util-gfm-task-list-item: 2.0.0(supports-color@7.2.0) - mdast-util-to-markdown: 2.1.2 - transitivePeerDependencies: - - supports-color - - mdast-util-gfm@3.1.0(supports-color@9.4.0): + mdast-util-gfm@3.1.0: dependencies: - mdast-util-from-markdown: 2.0.3(supports-color@9.4.0) + mdast-util-from-markdown: 2.0.3 mdast-util-gfm-autolink-literal: 2.0.1 - mdast-util-gfm-footnote: 2.1.0(supports-color@9.4.0) - mdast-util-gfm-strikethrough: 2.0.0(supports-color@9.4.0) - mdast-util-gfm-table: 2.0.0(supports-color@9.4.0) - mdast-util-gfm-task-list-item: 2.0.0(supports-color@9.4.0) - mdast-util-to-markdown: 2.1.2 - transitivePeerDependencies: - - supports-color - - mdast-util-mdx-expression@2.0.1(supports-color@7.2.0): - dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 3.0.5 - '@types/mdast': 4.0.4 - devlop: 1.1.0 - mdast-util-from-markdown: 2.0.3(supports-color@7.2.0) + mdast-util-gfm-footnote: 2.1.0 + mdast-util-gfm-strikethrough: 2.0.0 + mdast-util-gfm-table: 2.0.0 + mdast-util-gfm-task-list-item: 2.0.0 mdast-util-to-markdown: 2.1.2 transitivePeerDependencies: - supports-color - mdast-util-mdx-expression@2.0.1(supports-color@9.4.0): + mdast-util-mdx-expression@2.0.1: dependencies: '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.5 '@types/mdast': 4.0.4 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.3(supports-color@9.4.0) + mdast-util-from-markdown: 2.0.3 mdast-util-to-markdown: 2.1.2 transitivePeerDependencies: - supports-color - mdast-util-mdx-jsx@3.2.0(supports-color@7.2.0): - dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 3.0.5 - '@types/mdast': 4.0.4 - '@types/unist': 3.0.3 - ccount: 2.0.1 - devlop: 1.1.0 - mdast-util-from-markdown: 2.0.3(supports-color@7.2.0) - mdast-util-to-markdown: 2.1.2 - parse-entities: 4.0.2 - stringify-entities: 4.0.4 - unist-util-stringify-position: 4.0.0 - vfile-message: 4.0.3 - transitivePeerDependencies: - - supports-color - - mdast-util-mdx-jsx@3.2.0(supports-color@9.4.0): + mdast-util-mdx-jsx@3.2.0: dependencies: '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.5 @@ -13038,7 +12676,7 @@ snapshots: '@types/unist': 3.0.3 ccount: 2.0.1 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.3(supports-color@9.4.0) + mdast-util-from-markdown: 2.0.3 mdast-util-to-markdown: 2.1.2 parse-entities: 4.0.2 stringify-entities: 4.0.4 @@ -13047,44 +12685,23 @@ snapshots: transitivePeerDependencies: - supports-color - mdast-util-mdx@3.0.0(supports-color@7.2.0): - dependencies: - mdast-util-from-markdown: 2.0.3(supports-color@7.2.0) - mdast-util-mdx-expression: 2.0.1(supports-color@7.2.0) - mdast-util-mdx-jsx: 3.2.0(supports-color@7.2.0) - mdast-util-mdxjs-esm: 2.0.1(supports-color@7.2.0) - mdast-util-to-markdown: 2.1.2 - transitivePeerDependencies: - - supports-color - - mdast-util-mdx@3.0.0(supports-color@9.4.0): - dependencies: - mdast-util-from-markdown: 2.0.3(supports-color@9.4.0) - mdast-util-mdx-expression: 2.0.1(supports-color@9.4.0) - mdast-util-mdx-jsx: 3.2.0(supports-color@9.4.0) - mdast-util-mdxjs-esm: 2.0.1(supports-color@9.4.0) - mdast-util-to-markdown: 2.1.2 - transitivePeerDependencies: - - supports-color - - mdast-util-mdxjs-esm@2.0.1(supports-color@7.2.0): + mdast-util-mdx@3.0.0: dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 3.0.5 - '@types/mdast': 4.0.4 - devlop: 1.1.0 - mdast-util-from-markdown: 2.0.3(supports-color@7.2.0) + mdast-util-from-markdown: 2.0.3 + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.2.0 + mdast-util-mdxjs-esm: 2.0.1 mdast-util-to-markdown: 2.1.2 transitivePeerDependencies: - supports-color - mdast-util-mdxjs-esm@2.0.1(supports-color@9.4.0): + mdast-util-mdxjs-esm@2.0.1: dependencies: '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.5 '@types/mdast': 4.0.4 devlop: 1.1.0 - mdast-util-from-markdown: 2.0.3(supports-color@9.4.0) + mdast-util-from-markdown: 2.0.3 mdast-util-to-markdown: 2.1.2 transitivePeerDependencies: - supports-color @@ -13135,16 +12752,15 @@ snapshots: mdurl@2.0.0: {} - mdxlint@1.0.0(supports-color@7.2.0): + mdxlint@1.0.0: dependencies: '@types/mdast': 4.0.4 - remark-mdx: 3.1.1(supports-color@7.2.0) - remark-parse: 11.0.0(supports-color@7.2.0) + remark-mdx: 3.1.1 + remark-parse: 11.0.0 remark-stringify: 11.0.0 unified: 11.0.5 - unified-args: 11.0.1(supports-color@7.2.0) + unified-args: 11.0.1 transitivePeerDependencies: - - bluebird - supports-color media-typer@1.1.0: {} @@ -13196,9 +12812,9 @@ snapshots: micromark-util-symbol: 2.0.1 micromark-util-types: 2.0.2 - micromark-extension-footnote@0.3.2(supports-color@7.2.0): + micromark-extension-footnote@0.3.2: dependencies: - micromark: 2.11.4(supports-color@7.2.0) + micromark: 2.11.4 transitivePeerDependencies: - supports-color @@ -13213,9 +12829,9 @@ snapshots: micromark-util-symbol: 2.0.1 micromark-util-types: 2.0.2 - micromark-extension-gfm-autolink-literal@0.5.7(supports-color@7.2.0): + micromark-extension-gfm-autolink-literal@0.5.7: dependencies: - micromark: 2.11.4(supports-color@7.2.0) + micromark: 2.11.4 transitivePeerDependencies: - supports-color @@ -13237,9 +12853,9 @@ snapshots: micromark-util-symbol: 2.0.1 micromark-util-types: 2.0.2 - micromark-extension-gfm-strikethrough@0.6.5(supports-color@7.2.0): + micromark-extension-gfm-strikethrough@0.6.5: dependencies: - micromark: 2.11.4(supports-color@7.2.0) + micromark: 2.11.4 transitivePeerDependencies: - supports-color @@ -13252,9 +12868,9 @@ snapshots: micromark-util-symbol: 2.0.1 micromark-util-types: 2.0.2 - micromark-extension-gfm-table@0.4.3(supports-color@7.2.0): + micromark-extension-gfm-table@0.4.3: dependencies: - micromark: 2.11.4(supports-color@7.2.0) + micromark: 2.11.4 transitivePeerDependencies: - supports-color @@ -13272,9 +12888,9 @@ snapshots: dependencies: micromark-util-types: 2.0.2 - micromark-extension-gfm-task-list-item@0.3.3(supports-color@7.2.0): + micromark-extension-gfm-task-list-item@0.3.3: dependencies: - micromark: 2.11.4(supports-color@7.2.0) + micromark: 2.11.4 transitivePeerDependencies: - supports-color @@ -13286,14 +12902,14 @@ snapshots: micromark-util-symbol: 2.0.1 micromark-util-types: 2.0.2 - micromark-extension-gfm@0.3.3(supports-color@7.2.0): + micromark-extension-gfm@0.3.3: dependencies: - micromark: 2.11.4(supports-color@7.2.0) - micromark-extension-gfm-autolink-literal: 0.5.7(supports-color@7.2.0) - micromark-extension-gfm-strikethrough: 0.6.5(supports-color@7.2.0) - micromark-extension-gfm-table: 0.4.3(supports-color@7.2.0) + micromark: 2.11.4 + micromark-extension-gfm-autolink-literal: 0.5.7 + micromark-extension-gfm-strikethrough: 0.6.5 + micromark-extension-gfm-table: 0.4.3 micromark-extension-gfm-tagfilter: 0.3.0 - micromark-extension-gfm-task-list-item: 0.3.3(supports-color@7.2.0) + micromark-extension-gfm-task-list-item: 0.3.3 transitivePeerDependencies: - supports-color @@ -13473,39 +13089,17 @@ snapshots: micromark-util-types@2.0.2: {} - micromark@2.11.4(supports-color@7.2.0): + micromark@2.11.4: dependencies: - debug: 4.4.3(supports-color@7.2.0) + debug: 4.4.3 parse-entities: 2.0.0 transitivePeerDependencies: - supports-color - micromark@4.0.2(supports-color@7.2.0): - dependencies: - '@types/debug': 4.1.13 - debug: 4.4.3(supports-color@7.2.0) - decode-named-character-reference: 1.3.0 - devlop: 1.1.0 - micromark-core-commonmark: 2.0.3 - micromark-factory-space: 2.0.1 - micromark-util-character: 2.1.1 - micromark-util-chunked: 2.0.1 - micromark-util-combine-extensions: 2.0.1 - micromark-util-decode-numeric-character-reference: 2.0.2 - micromark-util-encode: 2.0.1 - micromark-util-normalize-identifier: 2.0.1 - micromark-util-resolve-all: 2.0.1 - micromark-util-sanitize-uri: 2.0.1 - micromark-util-subtokenize: 2.1.0 - micromark-util-symbol: 2.0.1 - micromark-util-types: 2.0.2 - transitivePeerDependencies: - - supports-color - - micromark@4.0.2(supports-color@9.4.0): + micromark@4.0.2: dependencies: '@types/debug': 4.1.13 - debug: 4.4.3(supports-color@9.4.0) + debug: 4.4.3 decode-named-character-reference: 1.3.0 devlop: 1.1.0 micromark-core-commonmark: 2.0.3 @@ -13547,7 +13141,7 @@ snapshots: minimatch@10.2.5: dependencies: - brace-expansion: 5.0.7 + brace-expansion: 5.0.6 minimist@1.2.8: {} @@ -13559,13 +13153,14 @@ snapshots: motion-utils@12.39.0: {} - motion@12.42.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7): + motion@12.42.2(react@19.2.8)(react-dom@19.2.8(react@19.2.8)): dependencies: - framer-motion: 12.42.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + framer-motion: 12.42.2(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) tslib: 2.8.1 - optionalDependencies: - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) + transitivePeerDependencies: + - '@emotion/is-prop-valid' mri@1.2.0: {} @@ -13607,27 +13202,27 @@ snapshots: neotraverse@0.6.18: {} - next-themes@0.4.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7): + next-themes@0.4.6(react@19.2.8)(react-dom@19.2.8(react@19.2.8)): dependencies: - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) - next-view-transitions@0.3.5(next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react-dom@19.2.7(react@19.2.7))(react@19.2.7): + next-view-transitions@0.3.5(next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)))(react@19.2.8)(react-dom@19.2.8(react@19.2.8)): dependencies: - next: 16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) + next: 16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) - next@16.2.10(@babel/core@7.29.7(supports-color@9.4.0))(react-dom@19.2.7(react@19.2.7))(react@19.2.7): + next@16.2.10(react@19.2.8)(react-dom@19.2.8(react@19.2.8)): dependencies: '@next/env': 16.2.10 '@swc/helpers': 0.5.15 - baseline-browser-mapping: 2.10.43 + baseline-browser-mapping: 2.11.0 caniuse-lite: 1.0.30001806 - postcss: 8.5.19 - react: 19.2.7 - react-dom: 19.2.7(react@19.2.7) - styled-jsx: 5.1.6(@babel/core@7.29.7(supports-color@9.4.0))(react@19.2.7) + postcss: 8.5.21 + react: 19.2.8 + react-dom: 19.2.8(react@19.2.8) + styled-jsx: 5.1.6(react@19.2.8) optionalDependencies: '@next/swc-darwin-arm64': 16.2.10 '@next/swc-darwin-x64': 16.2.10 @@ -13697,7 +13292,7 @@ snapshots: dependencies: path-key: 3.1.1 - npm-to-yarn@3.0.1: {} + npm-to-yarn@3.1.0: {} nth-check@2.1.1: dependencies: @@ -13911,9 +13506,6 @@ snapshots: '@oxc-parser/binding-win32-arm64-msvc': 0.106.0 '@oxc-parser/binding-win32-ia32-msvc': 0.106.0 '@oxc-parser/binding-win32-x64-msvc': 0.106.0 - transitivePeerDependencies: - - '@emnapi/core' - - '@emnapi/runtime' oxc-transform@0.138.0: optionalDependencies: @@ -13955,7 +13547,7 @@ snapshots: validate-npm-package-license: 3.0.4 validate-npm-package-name: 7.0.2 - package-manager-detector@1.7.0: {} + package-manager-detector@1.8.0: {} parent-module@1.0.1: dependencies: @@ -13996,7 +13588,7 @@ snapshots: '@babel/code-frame': 7.29.7 error-ex: 1.3.4 json-parse-even-better-errors: 3.0.2 - lines-and-columns: 2.0.4 + lines-and-columns: 2.0.3 type-fest: 3.13.1 parse-json@8.3.0: @@ -14066,7 +13658,7 @@ snapshots: path-data-parser: 0.1.0 points-on-curve: 0.2.0 - postcss@8.5.19: + postcss@8.5.21: dependencies: nanoid: 3.3.16 picocolors: 1.1.1 @@ -14104,7 +13696,7 @@ snapshots: publint@0.3.21: dependencies: '@publint/pack': 0.1.5 - package-manager-detector: 1.7.0 + package-manager-detector: 1.8.0 picocolors: 1.1.1 sade: 1.8.1 @@ -14136,48 +13728,45 @@ snapshots: iconv-lite: 0.7.3 unpipe: 1.0.0 - rc-config-loader@4.1.4(supports-color@7.2.0): + rc-config-loader@4.1.4: dependencies: - debug: 4.4.3(supports-color@7.2.0) + debug: 4.4.3 js-yaml: 4.3.0 json5: 2.2.3 require-from-string: 2.0.2 transitivePeerDependencies: - supports-color - react-dom@19.2.7(react@19.2.7): + react-dom@19.2.8(react@19.2.8): dependencies: - react: 19.2.7 + react: 19.2.8 scheduler: 0.27.0 - react-remove-scroll-bar@2.3.8(@types/react@19.2.17)(react@19.2.7): + react-remove-scroll-bar@2.3.8(@types/react@19.2.17)(react@19.2.8): dependencies: - react: 19.2.7 - react-style-singleton: 2.2.3(@types/react@19.2.17)(react@19.2.7) - tslib: 2.8.1 - optionalDependencies: '@types/react': 19.2.17 + react: 19.2.8 + react-style-singleton: 2.2.3(@types/react@19.2.17)(react@19.2.8) + tslib: 2.8.1 - react-remove-scroll@2.7.2(@types/react@19.2.17)(react@19.2.7): + react-remove-scroll@2.7.2(@types/react@19.2.17)(react@19.2.8): dependencies: - react: 19.2.7 - react-remove-scroll-bar: 2.3.8(@types/react@19.2.17)(react@19.2.7) - react-style-singleton: 2.2.3(@types/react@19.2.17)(react@19.2.7) - tslib: 2.8.1 - use-callback-ref: 1.3.3(@types/react@19.2.17)(react@19.2.7) - use-sidecar: 1.1.3(@types/react@19.2.17)(react@19.2.7) - optionalDependencies: '@types/react': 19.2.17 + react: 19.2.8 + react-remove-scroll-bar: 2.3.8(@types/react@19.2.17)(react@19.2.8) + react-style-singleton: 2.2.3(@types/react@19.2.17)(react@19.2.8) + tslib: 2.8.1 + use-callback-ref: 1.3.3(@types/react@19.2.17)(react@19.2.8) + use-sidecar: 1.1.3(@types/react@19.2.17)(react@19.2.8) - react-style-singleton@2.2.3(@types/react@19.2.17)(react@19.2.7): + react-style-singleton@2.2.3(@types/react@19.2.17)(react@19.2.8): dependencies: + '@types/react': 19.2.17 get-nonce: 1.0.1 - react: 19.2.7 + react: 19.2.8 tslib: 2.8.1 - optionalDependencies: - '@types/react': 19.2.17 - react@19.2.7: {} + react@19.2.8: {} read-package-json-fast@3.0.2: dependencies: @@ -14268,18 +13857,18 @@ snapshots: hast-util-raw: 9.1.0 vfile: 6.0.3 - rehype-recma@1.0.0(supports-color@9.4.0): + rehype-recma@1.0.0: dependencies: '@types/estree': 1.0.9 '@types/hast': 3.0.5 - hast-util-to-estree: 3.1.3(supports-color@9.4.0) + hast-util-to-estree: 3.1.3 transitivePeerDependencies: - supports-color - remark-footnotes@3.0.0(supports-color@7.2.0): + remark-footnotes@3.0.0: dependencies: - mdast-util-footnote: 0.1.7(supports-color@7.2.0) - micromark-extension-footnote: 0.3.2(supports-color@7.2.0) + mdast-util-footnote: 0.1.7 + micromark-extension-footnote: 0.3.2 transitivePeerDependencies: - supports-color @@ -14288,79 +13877,52 @@ snapshots: mdast-util-frontmatter: 0.2.0 micromark-extension-frontmatter: 0.2.2 - remark-frontmatter@5.0.0(supports-color@7.2.0): + remark-frontmatter@5.0.0: dependencies: '@types/mdast': 4.0.4 - mdast-util-frontmatter: 2.0.1(supports-color@7.2.0) + mdast-util-frontmatter: 2.0.1 micromark-extension-frontmatter: 2.0.0 unified: 11.0.5 transitivePeerDependencies: - supports-color - remark-gfm@1.0.0(supports-color@7.2.0): - dependencies: - mdast-util-gfm: 0.1.2(supports-color@7.2.0) - micromark-extension-gfm: 0.3.3(supports-color@7.2.0) - transitivePeerDependencies: - - supports-color - - remark-gfm@4.0.1(supports-color@7.2.0): + remark-gfm@1.0.0: dependencies: - '@types/mdast': 4.0.4 - mdast-util-gfm: 3.1.0(supports-color@7.2.0) - micromark-extension-gfm: 3.0.0 - remark-parse: 11.0.0(supports-color@7.2.0) - remark-stringify: 11.0.0 - unified: 11.0.5 + mdast-util-gfm: 0.1.2 + micromark-extension-gfm: 0.3.3 transitivePeerDependencies: - supports-color - remark-gfm@4.0.1(supports-color@9.4.0): + remark-gfm@4.0.1: dependencies: '@types/mdast': 4.0.4 - mdast-util-gfm: 3.1.0(supports-color@9.4.0) + mdast-util-gfm: 3.1.0 micromark-extension-gfm: 3.0.0 - remark-parse: 11.0.0(supports-color@9.4.0) + remark-parse: 11.0.0 remark-stringify: 11.0.0 unified: 11.0.5 transitivePeerDependencies: - supports-color - remark-mdx@3.1.1(supports-color@7.2.0): - dependencies: - mdast-util-mdx: 3.0.0(supports-color@7.2.0) - micromark-extension-mdxjs: 3.0.0 - transitivePeerDependencies: - - supports-color - - remark-mdx@3.1.1(supports-color@9.4.0): + remark-mdx@3.1.1: dependencies: - mdast-util-mdx: 3.0.0(supports-color@9.4.0) + mdast-util-mdx: 3.0.0 micromark-extension-mdxjs: 3.0.0 transitivePeerDependencies: - supports-color - remark-parse@11.0.0(supports-color@7.2.0): - dependencies: - '@types/mdast': 4.0.4 - mdast-util-from-markdown: 2.0.3(supports-color@7.2.0) - micromark-util-types: 2.0.2 - unified: 11.0.5 - transitivePeerDependencies: - - supports-color - - remark-parse@11.0.0(supports-color@9.4.0): + remark-parse@11.0.0: dependencies: '@types/mdast': 4.0.4 - mdast-util-from-markdown: 2.0.3(supports-color@9.4.0) + mdast-util-from-markdown: 2.0.3 micromark-util-types: 2.0.2 unified: 11.0.5 transitivePeerDependencies: - supports-color - remark-parse@9.0.0(supports-color@7.2.0): + remark-parse@9.0.0: dependencies: - mdast-util-from-markdown: 0.8.5(supports-color@7.2.0) + mdast-util-from-markdown: 0.8.5 transitivePeerDependencies: - supports-color @@ -14378,10 +13940,10 @@ snapshots: mdast-util-to-markdown: 2.1.2 unified: 11.0.5 - remark@15.0.1(supports-color@9.4.0): + remark@15.0.1: dependencies: '@types/mdast': 4.0.4 - remark-parse: 11.0.0(supports-color@9.4.0) + remark-parse: 11.0.0 remark-stringify: 11.0.0 unified: 11.0.5 transitivePeerDependencies: @@ -14430,17 +13992,16 @@ snapshots: robust-predicates@3.0.3: {} - rolldown-plugin-dts@0.27.11(rolldown@1.2.0)(typescript@6.0.3): + rolldown-plugin-dts@0.27.12(rolldown@1.2.0)(typescript@6.0.3): dependencies: dts-resolver: 3.0.0 get-tsconfig: 5.0.0-beta.5 obug: 2.1.4 rolldown: 1.2.0 - yuku-ast: 0.1.7 - yuku-codegen: 0.6.12 - yuku-parser: 0.6.12 - optionalDependencies: typescript: 6.0.3 + yuku-ast: 0.7.3 + yuku-codegen: 0.7.3 + yuku-parser: 0.7.3 transitivePeerDependencies: - oxc-resolver @@ -14493,9 +14054,9 @@ snapshots: points-on-curve: 0.2.0 points-on-path: 0.2.1 - router@2.2.0(supports-color@7.2.0): + router@2.2.0: dependencies: - debug: 4.4.3(supports-color@7.2.0) + debug: 4.4.3 depd: 2.0.0 is-promise: 4.0.0 parseurl: 1.3.3 @@ -14533,9 +14094,9 @@ snapshots: semver@7.8.5: {} - send@1.2.1(supports-color@7.2.0): + send@1.2.1: dependencies: - debug: 4.4.3(supports-color@7.2.0) + debug: 4.4.3 encodeurl: 2.0.0 escape-html: 1.0.3 etag: 1.8.1 @@ -14549,12 +14110,12 @@ snapshots: transitivePeerDependencies: - supports-color - serve-static@2.2.1(supports-color@7.2.0): + serve-static@2.2.1: dependencies: encodeurl: 2.0.0 escape-html: 1.0.3 parseurl: 1.3.3 - send: 1.2.1(supports-color@7.2.0) + send: 1.2.1 transitivePeerDependencies: - supports-color @@ -14755,12 +14316,10 @@ snapshots: dependencies: inline-style-parser: 0.2.7 - styled-jsx@5.1.6(@babel/core@7.29.7(supports-color@9.4.0))(react@19.2.7): + styled-jsx@5.1.6(react@19.2.8): dependencies: client-only: 0.0.1 - react: 19.2.7 - optionalDependencies: - '@babel/core': 7.29.7(supports-color@9.4.0) + react: 19.2.8 stylis@4.4.0: {} @@ -14772,11 +14331,11 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} - swr@2.4.2(react@19.2.7): + swr@2.4.2(react@19.2.8): dependencies: dequal: 2.0.3 - react: 19.2.7 - use-sync-external-store: 1.6.0(react@19.2.7) + react: 19.2.8 + use-sync-external-store: 1.6.0(react@19.2.8) table@6.9.0: dependencies: @@ -14794,14 +14353,11 @@ snapshots: tailwindcss@4.3.3: {} - takumi-js@1.8.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7): + takumi-js@1.8.7(react@19.2.8)(react-dom@19.2.8(react@19.2.8)): dependencies: - '@takumi-rs/core': 1.8.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@takumi-rs/helpers': 1.8.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - '@takumi-rs/wasm': 1.8.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - transitivePeerDependencies: - - react - - react-dom + '@takumi-rs/core': 1.8.7(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@takumi-rs/helpers': 1.8.7(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) + '@takumi-rs/wasm': 1.8.7(react@19.2.8)(react-dom@19.2.8(react@19.2.8)) tapable@2.3.3: {} @@ -14821,29 +14377,29 @@ snapshots: structured-source: 4.0.0 unist-util-visit: 2.0.3 - textlint@15.7.1(supports-color@7.2.0): + textlint@15.7.1: dependencies: - '@modelcontextprotocol/sdk': 1.29.0(supports-color@7.2.0)(zod@3.25.76) + '@modelcontextprotocol/sdk': 1.29.0(zod@3.25.76) '@textlint/ast-node-types': 15.7.1 '@textlint/ast-traverse': 15.7.1 - '@textlint/config-loader': 15.7.1(supports-color@7.2.0) + '@textlint/config-loader': 15.7.1 '@textlint/feature-flag': 15.7.1 - '@textlint/fixer-formatter': 15.7.1(supports-color@7.2.0) - '@textlint/kernel': 15.7.1(supports-color@7.2.0) - '@textlint/linter-formatter': 15.7.1(supports-color@7.2.0) + '@textlint/fixer-formatter': 15.7.1 + '@textlint/kernel': 15.7.1 + '@textlint/linter-formatter': 15.7.1 '@textlint/module-interop': 15.7.1 '@textlint/resolver': 15.7.1 - '@textlint/textlint-plugin-markdown': 15.7.1(supports-color@7.2.0) + '@textlint/textlint-plugin-markdown': 15.7.1 '@textlint/textlint-plugin-text': 15.7.1 '@textlint/types': 15.7.1 '@textlint/utils': 15.7.1 - debug: 4.4.3(supports-color@7.2.0) + debug: 4.4.3 file-entry-cache: 10.1.4 glob: 13.0.6 md5: 2.3.0 optionator: 0.9.4 path-to-glob-pattern: 2.0.1 - rc-config-loader: 4.1.4(supports-color@7.2.0) + rc-config-loader: 4.1.4 read-package-up: 11.0.0 structured-source: 4.0.0 zod: 3.25.76 @@ -14902,7 +14458,7 @@ snapshots: minimist: 1.2.8 strip-bom: 3.0.0 - tsdown@0.22.9(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3): + tsdown@0.22.12(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.3): dependencies: ansis: 4.3.1 cac: 7.0.0 @@ -14912,17 +14468,16 @@ snapshots: import-without-cache: 0.4.0 obug: 2.1.4 picomatch: 4.0.5 + publint: 0.3.21 rolldown: 1.2.0 - rolldown-plugin-dts: 0.27.11(rolldown@1.2.0)(typescript@6.0.3) - semver: 7.8.5 + rolldown-plugin-dts: 0.27.12(rolldown@1.2.0)(typescript@6.0.3) tinyexec: 1.2.4 tinyglobby: 0.2.17 tree-kill: 1.2.2 - unconfig-core: 7.5.0 - optionalDependencies: - publint: 0.3.21 tsx: 4.23.1 typescript: 6.0.3 + unconfig-core: 7.5.0 + verkit: 0.1.2 transitivePeerDependencies: - '@typescript/native-preview' - '@volar/typescript' @@ -14951,9 +14506,9 @@ snapshots: twoslash-protocol@0.3.9: {} - twoslash@0.3.9(supports-color@9.4.0)(typescript@6.0.3): + twoslash@0.3.9(typescript@6.0.3): dependencies: - '@typescript/vfs': 1.6.4(supports-color@9.4.0)(typescript@6.0.3) + '@typescript/vfs': 1.6.4(typescript@6.0.3) twoslash-protocol: 0.3.9 typescript: 6.0.3 transitivePeerDependencies: @@ -14975,7 +14530,7 @@ snapshots: typedarray@0.0.6: {} - typedoc-plugin-file-overview@0.2.0(typedoc-plugin-markdown@4.12.0(typedoc@0.28.20(typescript@6.0.3)))(typedoc@0.28.20(typescript@6.0.3)): + typedoc-plugin-file-overview@0.2.0(typedoc@0.28.20(typescript@6.0.3))(typedoc-plugin-markdown@4.12.0(typedoc@0.28.20(typescript@6.0.3))): dependencies: prompts: 2.4.2 typedoc: 0.28.20(typescript@6.0.3) @@ -14998,24 +14553,13 @@ snapshots: typescript: 6.0.3 yaml: 2.9.0 - typescript-eslint@8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3): - dependencies: - '@typescript-eslint/eslint-plugin': 8.64.0(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/parser': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/typescript-estree': 8.64.0(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - eslint: 10.7.0(jiti@2.7.0)(supports-color@7.2.0) - typescript: 6.0.3 - transitivePeerDependencies: - - supports-color - - typescript-eslint@8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3): + typescript-eslint@8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3): dependencies: - '@typescript-eslint/eslint-plugin': 8.64.0(@typescript-eslint/parser@8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) - '@typescript-eslint/parser': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) - '@typescript-eslint/typescript-estree': 8.64.0(supports-color@9.4.0)(typescript@6.0.3) - '@typescript-eslint/utils': 8.64.0(eslint@10.7.0(jiti@2.7.0)(supports-color@9.4.0))(supports-color@9.4.0)(typescript@6.0.3) - eslint: 10.7.0(jiti@2.7.0)(supports-color@9.4.0) + '@typescript-eslint/eslint-plugin': 8.65.0(@typescript-eslint/parser@8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/parser': 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/typescript-estree': 8.65.0(typescript@6.0.3) + '@typescript-eslint/utils': 8.65.0(eslint@10.7.0(jiti@2.7.0))(typescript@6.0.3) + eslint: 10.7.0(jiti@2.7.0) typescript: 6.0.3 transitivePeerDependencies: - supports-color @@ -15029,13 +14573,13 @@ snapshots: '@quansync/fs': 1.0.0 quansync: 1.0.0 - undici-types@8.7.0: {} + undici-types@8.8.0: {} - undici@8.7.0: {} + undici@8.8.0: {} unicorn-magic@0.1.0: {} - unified-args@11.0.1(supports-color@7.2.0): + unified-args@11.0.1: dependencies: '@types/text-table': 0.2.5 chalk: 5.6.2 @@ -15045,12 +14589,11 @@ snapshots: minimist: 1.2.8 strip-ansi: 7.2.0 text-table: 0.2.0 - unified-engine: 11.2.2(supports-color@7.2.0) + unified-engine: 11.2.2 transitivePeerDependencies: - - bluebird - supports-color - unified-engine@11.2.2(supports-color@7.2.0): + unified-engine@11.2.2: dependencies: '@types/concat-stream': 2.0.3 '@types/debug': 4.1.13 @@ -15058,7 +14601,7 @@ snapshots: '@types/node': 22.20.1 '@types/unist': 3.0.3 concat-stream: 2.0.0 - debug: 4.4.3(supports-color@7.2.0) + debug: 4.4.3 extend: 3.0.2 glob: 10.5.0 ignore: 6.0.2 @@ -15074,7 +14617,6 @@ snapshots: vfile-statistics: 3.0.0 yaml: 2.9.0 transitivePeerDependencies: - - bluebird - supports-color unified@11.0.5: @@ -15089,7 +14631,6 @@ snapshots: unified@9.2.2: dependencies: - '@types/unist': 2.0.11 bail: 1.0.5 extend: 3.0.2 is-buffer: 2.0.5 @@ -15162,24 +14703,22 @@ snapshots: dependencies: punycode: 2.3.1 - use-callback-ref@1.3.3(@types/react@19.2.17)(react@19.2.7): + use-callback-ref@1.3.3(@types/react@19.2.17)(react@19.2.8): dependencies: - react: 19.2.7 - tslib: 2.8.1 - optionalDependencies: '@types/react': 19.2.17 + react: 19.2.8 + tslib: 2.8.1 - use-sidecar@1.1.3(@types/react@19.2.17)(react@19.2.7): + use-sidecar@1.1.3(@types/react@19.2.17)(react@19.2.8): dependencies: + '@types/react': 19.2.17 detect-node-es: 1.1.0 - react: 19.2.7 + react: 19.2.8 tslib: 2.8.1 - optionalDependencies: - '@types/react': 19.2.17 - use-sync-external-store@1.6.0(react@19.2.7): + use-sync-external-store@1.6.0(react@19.2.8): dependencies: - react: 19.2.7 + react: 19.2.8 util-deprecate@1.0.2: {} @@ -15196,6 +14735,8 @@ snapshots: vary@1.1.2: {} + verkit@0.1.2: {} + vfile-location@5.0.3: dependencies: '@types/unist': 3.0.3 @@ -15244,27 +14785,6 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.3 - vite-node@6.0.0(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0): - dependencies: - cac: 7.0.0 - es-module-lexer: 2.3.1 - obug: 2.1.4 - pathe: 2.0.3 - vite: 8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0) - transitivePeerDependencies: - - '@types/node' - - '@vitejs/devtools' - - esbuild - - jiti - - less - - sass - - sass-embedded - - stylus - - sugarss - - terser - - tsx - - yaml - vite-prerender-plugin@0.5.13(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)): dependencies: kolorist: 1.8.0 @@ -15277,23 +14797,37 @@ snapshots: vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0): dependencies: - lightningcss: 1.32.0 + '@types/node': 26.1.1 + esbuild: 0.28.1 + jiti: 2.7.0 + lightningcss: 1.33.0 picomatch: 4.0.5 - postcss: 8.5.19 + postcss: 8.5.21 rolldown: 1.1.5 tinyglobby: 0.2.17 + tsx: 4.23.1 + yaml: 2.9.0 optionalDependencies: - '@types/node': 26.1.1 - esbuild: 0.28.1 fsevents: 2.3.3 + + vite@8.1.5(@types/node@26.1.1)(jiti@2.7.0)(tsx@4.23.1): + dependencies: + '@types/node': 26.1.1 jiti: 2.7.0 + lightningcss: 1.33.0 + picomatch: 4.0.5 + postcss: 8.5.21 + rolldown: 1.1.5 + tinyglobby: 0.2.17 tsx: 4.23.1 - yaml: 2.9.0 + optionalDependencies: + fsevents: 2.3.3 - vitest@4.1.10(@types/node@26.1.1)(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)): + vitest@4.1.10(@types/node@26.1.1)(vite@8.1.5(@types/node@26.1.1)(jiti@2.7.0)(tsx@4.23.1)): dependencies: + '@types/node': 26.1.1 '@vitest/expect': 4.1.10 - '@vitest/mocker': 4.1.10(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0)) + '@vitest/mocker': 4.1.10(vite@8.1.5(@types/node@26.1.1)(jiti@2.7.0)(tsx@4.23.1)) '@vitest/pretty-format': 4.1.10 '@vitest/runner': 4.1.10 '@vitest/snapshot': 4.1.10 @@ -15310,10 +14844,8 @@ snapshots: tinyexec: 1.2.4 tinyglobby: 0.2.17 tinyrainbow: 3.1.0 - vite: 8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.7.0)(tsx@4.23.1)(yaml@2.9.0) + vite: 8.1.5(@types/node@26.1.1)(jiti@2.7.0)(tsx@4.23.1) why-is-node-running: 2.3.0 - optionalDependencies: - '@types/node': 26.1.1 transitivePeerDependencies: - msw @@ -15415,46 +14947,46 @@ snapshots: '@yuku-analyzer/binding-win32-arm64': 0.6.12 '@yuku-analyzer/binding-win32-x64': 0.6.12 - yuku-ast@0.1.7: - dependencies: - '@yuku-toolchain/types': 0.5.43 - yuku-ast@0.6.11: dependencies: '@yuku-toolchain/types': 0.6.8 - yuku-codegen@0.6.12: + yuku-ast@0.7.3: dependencies: - '@yuku-toolchain/types': 0.6.11 - optionalDependencies: - '@yuku-codegen/binding-darwin-arm64': 0.6.12 - '@yuku-codegen/binding-darwin-x64': 0.6.12 - '@yuku-codegen/binding-freebsd-x64': 0.6.12 - '@yuku-codegen/binding-linux-arm-gnu': 0.6.12 - '@yuku-codegen/binding-linux-arm-musl': 0.6.12 - '@yuku-codegen/binding-linux-arm64-gnu': 0.6.12 - '@yuku-codegen/binding-linux-arm64-musl': 0.6.12 - '@yuku-codegen/binding-linux-x64-gnu': 0.6.12 - '@yuku-codegen/binding-linux-x64-musl': 0.6.12 - '@yuku-codegen/binding-win32-arm64': 0.6.12 - '@yuku-codegen/binding-win32-x64': 0.6.12 - - yuku-parser@0.6.12: + '@yuku-toolchain/types': 0.7.3 + + yuku-codegen@0.7.3: dependencies: - '@yuku-toolchain/types': 0.6.11 - yuku-ast: 0.6.11 + '@yuku-toolchain/types': 0.7.3 + optionalDependencies: + '@yuku-codegen/binding-darwin-arm64': 0.7.3 + '@yuku-codegen/binding-darwin-x64': 0.7.3 + '@yuku-codegen/binding-freebsd-x64': 0.7.3 + '@yuku-codegen/binding-linux-arm-gnu': 0.7.3 + '@yuku-codegen/binding-linux-arm-musl': 0.7.3 + '@yuku-codegen/binding-linux-arm64-gnu': 0.7.3 + '@yuku-codegen/binding-linux-arm64-musl': 0.7.3 + '@yuku-codegen/binding-linux-x64-gnu': 0.7.3 + '@yuku-codegen/binding-linux-x64-musl': 0.7.3 + '@yuku-codegen/binding-win32-arm64': 0.7.3 + '@yuku-codegen/binding-win32-x64': 0.7.3 + + yuku-parser@0.7.3: + dependencies: + '@yuku-toolchain/types': 0.7.3 + yuku-ast: 0.7.3 optionalDependencies: - '@yuku-parser/binding-darwin-arm64': 0.6.12 - '@yuku-parser/binding-darwin-x64': 0.6.12 - '@yuku-parser/binding-freebsd-x64': 0.6.12 - '@yuku-parser/binding-linux-arm-gnu': 0.6.12 - '@yuku-parser/binding-linux-arm-musl': 0.6.12 - '@yuku-parser/binding-linux-arm64-gnu': 0.6.12 - '@yuku-parser/binding-linux-arm64-musl': 0.6.12 - '@yuku-parser/binding-linux-x64-gnu': 0.6.12 - '@yuku-parser/binding-linux-x64-musl': 0.6.12 - '@yuku-parser/binding-win32-arm64': 0.6.12 - '@yuku-parser/binding-win32-x64': 0.6.12 + '@yuku-parser/binding-darwin-arm64': 0.7.3 + '@yuku-parser/binding-darwin-x64': 0.7.3 + '@yuku-parser/binding-freebsd-x64': 0.7.3 + '@yuku-parser/binding-linux-arm-gnu': 0.7.3 + '@yuku-parser/binding-linux-arm-musl': 0.7.3 + '@yuku-parser/binding-linux-arm64-gnu': 0.7.3 + '@yuku-parser/binding-linux-arm64-musl': 0.7.3 + '@yuku-parser/binding-linux-x64-gnu': 0.7.3 + '@yuku-parser/binding-linux-x64-musl': 0.7.3 + '@yuku-parser/binding-win32-arm64': 0.7.3 + '@yuku-parser/binding-win32-x64': 0.7.3 zimmerframe@1.1.4: {} diff --git a/scripts/90-scaffold-rule.ts b/scripts/90-scaffold-rule.ts index 1c0ea68938..455cd1238e 100644 --- a/scripts/90-scaffold-rule.ts +++ b/scripts/90-scaffold-rule.ts @@ -222,7 +222,7 @@ const parseArgs = Effect.gen(function*() { if (args.length < 2) { yield* Effect.logError( ansis.red( - `Usage: vite-node ./scripts/90-scaffold-rule.ts [description]\n` + `Usage: nub ./scripts/90-scaffold-rule.ts [description]\n` + ` plugin: ${PLUGIN_DOMAINS.join(", ")}\n` + ` rule-name: kebab-case rule name (e.g. no-foo-bar)\n` + ` description: optional rule description`, @@ -317,7 +317,7 @@ const program = Effect.gen(function*() { yield* Effect.log(` 2. Add test cases in plugins/${pluginPkgName}/src/rules/${ruleName}/${ruleName}.spec.ts`); yield* Effect.log(` 3. Write documentation in plugins/${pluginPkgName}/src/rules/${ruleName}/${ruleName}.mdx`); yield* Effect.log(` 4. Add the rule to the appropriate preset configs if needed`); - yield* Effect.log(` 5. Run ${ansis.cyan("node --run build")} and ${ansis.cyan("node --run test")} to verify`); + yield* Effect.log(` 5. Run ${ansis.cyan("nub run build")} and ${ansis.cyan("nub run test")} to verify`); }); program.pipe(Effect.provide(NodeContext.layer), NodeRuntime.runMain);