diff --git a/eslint.config.js b/eslint.config.js index 50f55dc3d..624102f6e 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -63,9 +63,13 @@ export default [ ...eslintPluginN.configs["flat/recommended-module"].rules, // Unicorn plugin recommended rules ...eslintPluginUnicorn.configs.recommended.rules, + // Explicitly configure to work around eslint-plugin-unicorn v68 bug where defaultOptions: [null] + // fails ESLint 10.3.0's stricter schema validation (null is not "always" or "never") + "unicorn/logical-assignment-operators": ["error", "always"], // Disable noisy stylistic rules for now "unicorn/no-null": "off", - "unicorn/no-array-for-each": "off", + "unicorn/no-array-for-each": "off", // old name (pre-v66), kept for clarity + "unicorn/no-for-each": "off", // renamed from no-array-for-each in unicorn v66 "unicorn/no-for-loop": "off", "unicorn/prefer-string-raw": "off", "unicorn/no-object-as-default-parameter": "off", @@ -73,6 +77,61 @@ export default [ "unicorn/prefer-ternary": "off", // Rules from .eslintrc.json "unicorn/no-process-exit": "off", + // New rules added in unicorn v65 (not enforced yet): + "unicorn/prefer-split-limit": "off", + "unicorn/prefer-includes-over-repeated-comparisons": "off", + "unicorn/prefer-string-repeat": "off", + "unicorn/no-this-outside-of-class": "off", + "unicorn/no-unnecessary-nested-ternary": "off", + "unicorn/prefer-iterator-to-array": "off", // v65/v66; requires Iterator Helpers (Node 22+) + // New rules added in unicorn v66 (not enforced yet): + "unicorn/no-unnecessary-global-this": "off", + "unicorn/no-top-level-side-effects": "off", + "unicorn/consistent-class-member-order": "off", + "unicorn/prefer-early-return": "off", + "unicorn/prefer-await": "off", + "unicorn/prefer-unicode-code-point-escapes": "off", + "unicorn/no-global-object-property-assignment": "off", + "unicorn/no-useless-template-literals": "off", + "unicorn/no-computed-property-existence-check": "off", + "unicorn/max-nested-calls": "off", + "unicorn/no-useless-else": "off", + "unicorn/no-break-in-nested-loop": "off", + "unicorn/require-array-sort-compare": "off", + "unicorn/prefer-number-coercion": "off", + "unicorn/prefer-smaller-scope": "off", + "unicorn/no-declarations-before-early-exit": "off", + "unicorn/prefer-minimal-ternary": "off", + "unicorn/prefer-uint8array-base64": "off", + "unicorn/prefer-object-define-properties": "off", + "unicorn/prefer-number-is-safe-integer": "off", + "unicorn/prefer-direct-iteration": "off", + "unicorn/no-unsafe-string-replacement": "off", + "unicorn/no-return-array-push": "off", + "unicorn/no-negated-array-predicate": "off", + "unicorn/class-reference-in-static-methods": "off", + "unicorn/prefer-url-href": "off", + // New rules added in unicorn v67 (not enforced yet): + "unicorn/consistent-boolean-name": "off", + "unicorn/no-top-level-assignment-in-function": "off", + "unicorn/no-non-function-verb-prefix": "off", + "unicorn/no-unreadable-for-of-expression": "off", + "unicorn/no-useless-coercion": "off", + "unicorn/prefer-else-if": "off", + "unicorn/operator-assignment": "off", + // New rules added in unicorn v68 (not enforced yet): + "unicorn/name-replacements": "off", // renamed from prevent-abbreviations in v68 + "unicorn/consistent-conditional-object-spread": "off", + "unicorn/no-nonstandard-builtin-properties": "off", + "unicorn/no-useless-logical-operand": "off", + "unicorn/no-duplicate-if-branches": "off", + "unicorn/prefer-promise-with-resolvers": "off", + "unicorn/prefer-hoisting-branch-code": "off", + "unicorn/prefer-array-from-async": "off", + "unicorn/prefer-continue": "off", + "unicorn/prefer-boolean-return": "off", + "unicorn/no-unnecessary-boolean-comparison": "off", + "unicorn/default-export-style": "off", "n/no-process-exit": "off", "n/no-unsupported-features/node-builtins": "off", // Prettier @@ -113,7 +172,8 @@ export default [ "@typescript-eslint/return-await": "error", // Add other TS specific rules or overrides here "unicorn/prefer-module": "off", - "unicorn/prevent-abbreviations": "off", + "unicorn/prevent-abbreviations": "off", // old name (pre-v68), kept for clarity + "unicorn/name-replacements": "off", // renamed from prevent-abbreviations in unicorn v68 "unicorn/numeric-separators-style": "off", }, }, @@ -282,6 +342,13 @@ export default [ "@typescript-eslint/unbound-method": "off", }, }, + { + // oclif hook directories use underscores in their names (e.g. command_not_found) — exempt from filename-case + files: ["src/hooks/**/*.ts", "test/hooks/**/*.ts"], + rules: { + "unicorn/filename-case": "off", + }, + }, { // Playwright browser E2E tests – allow browser globals and silence node-specific rules files: ["test/e2e/**/*.ts"], diff --git a/package.json b/package.json index 83d7c4756..be60a1d4c 100644 --- a/package.json +++ b/package.json @@ -147,7 +147,7 @@ "@types/fs-extra": "^11.0.4", "@types/inquirer": "^9.0.9", "@types/jsonwebtoken": "^9.0.10", - "@types/node": "^25.6.2", + "@types/node": "^26.0.0", "@types/node-fetch": "^2.6.13", "@types/react": "^19.2.14", "@types/react-dom": "^19.2.3", @@ -160,10 +160,10 @@ "dotenv": "^17.4.2", "eslint": "^10.3.0", "eslint-config-prettier": "^10.1.8", - "eslint-plugin-n": "^17.24.0", + "eslint-plugin-n": "^18.1.0", "eslint-plugin-prettier": "^5.5.5", "eslint-plugin-react-hooks": "^7.1.1", - "eslint-plugin-unicorn": "^64.0.0", + "eslint-plugin-unicorn": "^68.0.0", "execa": "^9.6.1", "fs-extra": "^11.3.5", "get-port": "^7.2.0", diff --git a/packages/react-web-cli/src/AblyCliTerminal.tsx b/packages/react-web-cli/src/AblyCliTerminal.tsx index 5b1c379f4..26311370b 100644 --- a/packages/react-web-cli/src/AblyCliTerminal.tsx +++ b/packages/react-web-cli/src/AblyCliTerminal.tsx @@ -401,9 +401,7 @@ const AblyCliTerminalInner = ( secondaryRootReference.current.querySelector(".xterm"); if (xtermElement) { // Clear the primary container - while (rootReference.current.firstChild) { - rootReference.current.firstChild.remove(); - } + rootReference.current.replaceChildren(); // Move the xterm element to the primary container rootReference.current.append(xtermElement); diff --git a/packages/react-web-cli/src/use-terminal-visibility.ts b/packages/react-web-cli/src/use-terminal-visibility.ts index 7b6b94dd9..e00681ff6 100644 --- a/packages/react-web-cli/src/use-terminal-visibility.ts +++ b/packages/react-web-cli/src/use-terminal-visibility.ts @@ -18,8 +18,7 @@ export function useTerminalVisibility( useEffect(() => { function recompute(intersecting: boolean | null = null) { - const isIntersecting = - intersecting == null ? lastIntersectionRef.current : intersecting; + const isIntersecting = intersecting ?? lastIntersectionRef.current; const pageVisible = typeof document === "undefined" ? true diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b521c18ed..46e24ab5e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -41,7 +41,7 @@ importers: version: 0.5.2(ably@2.21.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@inquirer/prompts': specifier: ^8.4.2 - version: 8.4.2(@types/node@25.6.2) + version: 8.4.2(@types/node@26.0.0) '@oclif/core': specifier: ^4.11.1 version: 4.11.1 @@ -77,7 +77,7 @@ importers: version: 3.0.0 inquirer: specifier: ^9.3.8 - version: 9.3.8(@types/node@25.6.2) + version: 9.3.8(@types/node@26.0.0) jsonwebtoken: specifier: ^9.0.3 version: 9.0.3 @@ -137,8 +137,8 @@ importers: specifier: ^9.0.10 version: 9.0.10 '@types/node': - specifier: ^25.6.2 - version: 25.6.2 + specifier: ^26.0.0 + version: 26.0.0 '@types/node-fetch': specifier: ^2.6.13 version: 2.6.13 @@ -176,8 +176,8 @@ importers: specifier: ^10.1.8 version: 10.1.8(eslint@10.3.0(jiti@2.6.1)) eslint-plugin-n: - specifier: ^17.24.0 - version: 17.24.0(eslint@10.3.0(jiti@2.6.1))(typescript@5.9.3) + specifier: ^18.1.0 + version: 18.1.0(eslint@10.3.0(jiti@2.6.1))(ts-declaration-location@1.0.7(typescript@5.9.3))(typescript@5.9.3) eslint-plugin-prettier: specifier: ^5.5.5 version: 5.5.5(eslint-config-prettier@10.1.8(eslint@10.3.0(jiti@2.6.1)))(eslint@10.3.0(jiti@2.6.1))(prettier@3.8.3) @@ -185,8 +185,8 @@ importers: specifier: ^7.1.1 version: 7.1.1(eslint@10.3.0(jiti@2.6.1)) eslint-plugin-unicorn: - specifier: ^64.0.0 - version: 64.0.0(eslint@10.3.0(jiti@2.6.1)) + specifier: ^68.0.0 + version: 68.0.0(eslint@10.3.0(jiti@2.6.1)) execa: specifier: ^9.6.1 version: 9.6.1 @@ -210,7 +210,7 @@ importers: version: 1.1.0 oclif: specifier: ^4.22.98 - version: 4.23.0(@types/node@25.6.2) + version: 4.23.0(@types/node@26.0.0) playwright: specifier: ^1.59.1 version: 1.59.1 @@ -228,13 +228,13 @@ importers: version: 7.2.0 ts-node: specifier: 11.0.0-beta.1 - version: 11.0.0-beta.1(@types/node@25.6.2)(typescript@5.9.3) + version: 11.0.0-beta.1(@types/node@26.0.0)(typescript@5.9.3) typescript: specifier: ^5.9.3 version: 5.9.3 vitest: specifier: ^4.1.5 - version: 4.1.5(@edge-runtime/vm@3.2.0)(@types/node@25.6.2)(@vitest/coverage-v8@4.1.5)(@vitest/ui@4.1.5)(jsdom@26.1.0)(vite@8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) + version: 4.1.5(@edge-runtime/vm@3.2.0)(@types/node@26.0.0)(@vitest/coverage-v8@4.1.5)(@vitest/ui@4.1.5)(jsdom@26.1.0)(vite@8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) examples/web-cli: dependencies: @@ -265,7 +265,7 @@ importers: version: 4.2.4 '@tailwindcss/vite': specifier: ^4.2.4 - version: 4.2.4(vite@8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) + version: 4.2.4(vite@8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) '@types/react': specifier: ^19.2.14 version: 19.2.14 @@ -277,7 +277,7 @@ importers: version: 5.7.15(rollup@4.59.0) '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) + version: 6.0.1(vite@8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) autoprefixer: specifier: ^10.5.0 version: 10.5.0(postcss@8.5.14) @@ -307,10 +307,10 @@ importers: version: 8.59.2(eslint@10.3.0(jiti@2.6.1))(typescript@5.9.3) vite: specifier: ^8.0.11 - version: 8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) + version: 8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) vite-tsconfig-paths: specifier: ^6.1.1 - version: 6.1.1(typescript@5.9.3)(vite@8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) + version: 6.1.1(typescript@5.9.3)(vite@8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) packages/react-web-cli: dependencies: @@ -347,13 +347,13 @@ importers: version: 19.2.3(@types/react@19.2.14) '@vitejs/plugin-react': specifier: ^6.0.1 - version: 6.0.1(vite@8.0.10(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) + version: 6.0.1(vite@8.0.10(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) '@vitest/ui': specifier: ^4.1.6 version: 4.1.6(vitest@4.1.6) eslint-plugin-react: specifier: ^7.37.5 - version: 7.37.5(eslint@10.3.0(jiti@2.6.1)) + version: 7.37.5(eslint@10.6.0(jiti@2.6.1)) lucide-react: specifier: ^1.14.0 version: 1.14.0(react@19.2.6) @@ -371,10 +371,10 @@ importers: version: 5.9.3 vite: specifier: 8.0.10 - version: 8.0.10(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) + version: 8.0.10(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) vitest: specifier: ^4.1.6 - version: 4.1.6(@edge-runtime/vm@3.2.0)(@types/node@25.6.2)(@vitest/coverage-v8@4.1.5)(@vitest/ui@4.1.6)(jsdom@26.1.0)(vite@8.0.10(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) + version: 4.1.6(@edge-runtime/vm@3.2.0)(@types/node@26.0.0)(@vitest/coverage-v8@4.1.5)(@vitest/ui@4.1.6)(jsdom@26.1.0)(vite@8.0.10(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) packages: @@ -583,6 +583,10 @@ packages: resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==} engines: {node: '>=6.9.0'} + '@babel/code-frame@7.29.7': + resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==} + engines: {node: '>=6.9.0'} + '@babel/compat-data@7.29.3': resolution: {integrity: sha512-LIVqM46zQWZhj17qA8wb4nW/ixr2y1Nw+r1etiAWgRM6U1IqP+LNhL1yg440jYZR72jCWcWbLWzIosH+uP1fqg==} engines: {node: '>=6.9.0'} @@ -617,8 +621,8 @@ packages: resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.28.5': - resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} + '@babel/helper-validator-identifier@7.29.7': + resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==} engines: {node: '>=6.9.0'} '@babel/helper-validator-option@7.27.1': @@ -638,6 +642,10 @@ packages: resolution: {integrity: sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==} engines: {node: '>=6.9.0'} + '@babel/runtime@7.29.7': + resolution: {integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==} + engines: {node: '>=6.9.0'} + '@babel/template@7.28.6': resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==} engines: {node: '>=6.9.0'} @@ -1061,6 +1069,10 @@ packages: resolution: {integrity: sha512-eIJYKTCECbP/nsKaaruF6LW967mtbQbsw4JTtSVkUQc9MneSkbrgPJAbKl9nWr0ZeowV8BfsarBmPpBzGelA2w==} engines: {node: ^20.19.0 || ^22.13.0 || >=24} + '@eslint/config-helpers@0.6.0': + resolution: {integrity: sha512-ii6Bw9jJ2zi2cWA2Z+9/QZ/+3DX6kwaV5Q986D/CdP3Lap3w/pgQZ373FV7byY/i7L4IRH/G43I5dz1ClsCbpA==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} + '@eslint/core@1.2.1': resolution: {integrity: sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==} engines: {node: ^20.19.0 || ^22.13.0 || >=24} @@ -1082,6 +1094,10 @@ packages: resolution: {integrity: sha512-rZAP3aVgB9ds9KOeUSL+zZ21hPmo8dh6fnIFwRQj5EAZl9gzR7wxYbYXYysAM8CTqGmUGyp2S4kUdV17MnGuWQ==} engines: {node: ^20.19.0 || ^22.13.0 || >=24} + '@eslint/plugin-kit@0.7.2': + resolution: {integrity: sha512-+CNAzxglkrpNf/kKywqQfk74QjtceuOE7Qm+AF8miRvPF/wmmK5+OJOgVh3AVTT3RP2mH3+FOaxlE5v72owk0A==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} + '@gar/promise-retry@1.0.3': resolution: {integrity: sha512-GmzA9ckNokPypTg10pgpeHNQe7ph+iIKKmhKu3Ob9ANkswreCx7R3cKmY781K8QK3AqVL3xVh9A42JvIAbkkSA==} engines: {node: ^20.17.0 || >=22.9.0} @@ -1613,84 +1629,72 @@ packages: engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - libc: [glibc] '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.18': resolution: {integrity: sha512-SOrT/cT4ukTmgnrEz/Hg3m7LBnuCLW9psDeMKrimRWY4I8DmnO7Lco8W2vtqPmMkbVu8iJ+g4GFLVLLOVjJ9DQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - libc: [glibc] '@rolldown/binding-linux-arm64-musl@1.0.0-rc.17': resolution: {integrity: sha512-b/CgbwAJpmrRLp02RPfhbudf5tZnN9nsPWK82znefso832etkem8H7FSZwxrOI9djcdTP7U6YfNhbRnh7djErg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - libc: [musl] '@rolldown/binding-linux-arm64-musl@1.0.0-rc.18': resolution: {integrity: sha512-QWjdxN1HJCpBTAcZ5N5F7wju3gVPzRzSpmGzx7na0c/1qpN9CFil+xt+l9lV/1M6/gqHSNXCiqPfwhVJPeLnug==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - libc: [musl] '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.17': resolution: {integrity: sha512-4EII1iNGRUN5WwGbF/kOh/EIkoDN9HsupgLQoXfY+D1oyJm7/F4t5PYU5n8SWZgG0FEwakyM8pGgwcBYruGTlA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] - libc: [glibc] '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.18': resolution: {integrity: sha512-ugCOyj7a4d9h3q9B+wXmf6g3a68UsjGh6dob5DHevHGMwDUbhsYNbSPxJsENcIttJZ9jv7qGM2UesLw5jqIhdg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] - libc: [glibc] '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.17': resolution: {integrity: sha512-AH8oq3XqQo4IibpVXvPeLDI5pzkpYn0WiZAfT05kFzoJ6tQNzwRdDYQ45M8I/gslbodRZwW8uxLhbSBbkv96rA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] - libc: [glibc] '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.18': resolution: {integrity: sha512-kKWRhbsotpXkGbcd5dllUWg5gEXcDAa8u5YnP9AV5DYNbvJHGzzuwv7dpmhc8NqKMJldl0a+x76IHbspEpEmdA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] - libc: [glibc] '@rolldown/binding-linux-x64-gnu@1.0.0-rc.17': resolution: {integrity: sha512-cLnjV3xfo7KslbU41Z7z8BH/E1y5mzUYzAqih1d1MDaIGZRCMqTijqLv76/P7fyHuvUcfGsIpqCdddbxLLK9rA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - libc: [glibc] '@rolldown/binding-linux-x64-gnu@1.0.0-rc.18': resolution: {integrity: sha512-uCo8ElcCIAMyYAZyuIZ81oFkhTSIllNvUCHCAlbhlN4ji3uC28h7IIdlXyIvGO7HsuqnV9p3rD/bpH7XhIyhRw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - libc: [glibc] '@rolldown/binding-linux-x64-musl@1.0.0-rc.17': resolution: {integrity: sha512-0phclDw1spsL7dUB37sIARuis2tAgomCJXAHZlpt8PXZ4Ba0dRP1e+66lsRqrfhISeN9bEGNjQs+T/Fbd7oYGw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - libc: [musl] '@rolldown/binding-linux-x64-musl@1.0.0-rc.18': resolution: {integrity: sha512-XNOQZtuE6yUIvx4rwGemwh8kpL1xvU41FXy/s9K7T/3JVcqGzo3NfKM2HrbrGgfPYGFW42f07Wk++aOC6B9NWA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - libc: [musl] '@rolldown/binding-openharmony-arm64@1.0.0-rc.17': resolution: {integrity: sha512-0ag/hEgXOwgw4t8QyQvUCxvEg+V0KBcA6YuOx9g0r02MprutRF5dyljgm3EmR02O292UX7UeS6HzWHAl6KgyhA==} @@ -1795,85 +1799,71 @@ packages: resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==} cpu: [arm] os: [linux] - libc: [glibc] '@rollup/rollup-linux-arm-musleabihf@4.59.0': resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==} cpu: [arm] os: [linux] - libc: [musl] '@rollup/rollup-linux-arm64-gnu@4.59.0': resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==} cpu: [arm64] os: [linux] - libc: [glibc] '@rollup/rollup-linux-arm64-musl@4.59.0': resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==} cpu: [arm64] os: [linux] - libc: [musl] '@rollup/rollup-linux-loong64-gnu@4.59.0': resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==} cpu: [loong64] os: [linux] - libc: [glibc] '@rollup/rollup-linux-loong64-musl@4.59.0': resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==} cpu: [loong64] os: [linux] - libc: [musl] '@rollup/rollup-linux-ppc64-gnu@4.59.0': resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==} cpu: [ppc64] os: [linux] - libc: [glibc] '@rollup/rollup-linux-ppc64-musl@4.59.0': resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==} cpu: [ppc64] os: [linux] - libc: [musl] '@rollup/rollup-linux-riscv64-gnu@4.59.0': resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==} cpu: [riscv64] os: [linux] - libc: [glibc] '@rollup/rollup-linux-riscv64-musl@4.59.0': resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==} cpu: [riscv64] os: [linux] - libc: [musl] '@rollup/rollup-linux-s390x-gnu@4.59.0': resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==} cpu: [s390x] os: [linux] - libc: [glibc] '@rollup/rollup-linux-x64-gnu@4.40.2': resolution: {integrity: sha512-lG7Xa+BmBNwpjmVUbmyKxdQJ3Q6whHjMjzQplOs5Z+Gj7mxPtWakGHqzMqNER68G67kmCX9qX57aRsW5V0VOng==} cpu: [x64] os: [linux] - libc: [glibc] '@rollup/rollup-linux-x64-gnu@4.59.0': resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==} cpu: [x64] os: [linux] - libc: [glibc] '@rollup/rollup-linux-x64-musl@4.59.0': resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==} cpu: [x64] os: [linux] - libc: [musl] '@rollup/rollup-openbsd-x64@4.59.0': resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==} @@ -2209,28 +2199,24 @@ packages: engines: {node: '>= 20'} cpu: [arm64] os: [linux] - libc: [glibc] '@tailwindcss/oxide-linux-arm64-musl@4.2.4': resolution: {integrity: sha512-bBADEGAbo4ASnppIziaQJelekCxdMaxisrk+fB7Thit72IBnALp9K6ffA2G4ruj90G9XRS2VQ6q2bCKbfFV82g==} engines: {node: '>= 20'} cpu: [arm64] os: [linux] - libc: [musl] '@tailwindcss/oxide-linux-x64-gnu@4.2.4': resolution: {integrity: sha512-7Mx25E4WTfnht0TVRTyC00j3i0M+EeFe7wguMDTlX4mRxafznw0CA8WJkFjWYH5BlgELd1kSjuU2JiPnNZbJDA==} engines: {node: '>= 20'} cpu: [x64] os: [linux] - libc: [glibc] '@tailwindcss/oxide-linux-x64-musl@4.2.4': resolution: {integrity: sha512-2wwJRF7nyhOR0hhHoChc04xngV3iS+akccHTGtz965FwF0up4b2lOdo6kI1EbDaEXKgvcrFBYcYQQ/rrnWFVfA==} engines: {node: '>= 20'} cpu: [x64] os: [linux] - libc: [musl] '@tailwindcss/oxide-wasm32-wasi@4.2.4': resolution: {integrity: sha512-FQsqApeor8Fo6gUEklzmaa9994orJZZDBAlQpK2Mq+DslRKFJeD6AjHpBQ0kZFQohVr8o85PPh8eOy86VlSCmw==} @@ -2374,11 +2360,11 @@ packages: '@types/node@20.11.0': resolution: {integrity: sha512-o9bjXmDNcF7GbM4CNQpmi+TutCgap/K3w1JyKgxAjqx41zp9qlIAVFi0IhCNsJcXolEqLWhbFbEeL0PvYm4pcQ==} - '@types/node@22.19.18': - resolution: {integrity: sha512-9v00a+dn2yWVsYDEunWC4g/TcRKVq3r8N5FuZp7u0SGrPvdN9c2yXI9bBuf5Fl0hNCb+QTIePTn5pJs2pwBOQQ==} + '@types/node@22.20.0': + resolution: {integrity: sha512-QWlFW2wf3nTjC13/DqRnBpR4ZO36VJH/JVBkA/vcnmbTBNQIlnObqyqZE1tUR7+Ni23Lda8R1BxMfbXRpCUx5g==} - '@types/node@25.6.2': - resolution: {integrity: sha512-sokuT28dxf9JT5Kady1fsXOvI4HVpjZa95NKT5y9PNTIrs2AsobR4GFAA90ZG8M+nxVRLysCXsVj6eGC7Vbrlw==} + '@types/node@26.0.0': + resolution: {integrity: sha512-vf2YFi1iY9lHGwNJMs01biZFbKJkrZR1T6/MlzjhJLPdntOHLhTrDSnSVcdtvjihi4VQNlrFRIxLsDBlQpAipA==} '@types/react-dom@19.2.3': resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==} @@ -2801,6 +2787,11 @@ packages: engines: {node: '>=6.0.0'} hasBin: true + baseline-browser-mapping@2.10.40: + resolution: {integrity: sha512-BSSLZ9/Cjjv7Gtj5B68ZzXcXUg8iOf3fme+FCuh8rC/Go+Kmh8cox7M3A8dolou16s64QjLPOSdngh7GxXvkSw==} + engines: {node: '>=6.0.0'} + hasBin: true + basic-auth@2.0.1: resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} engines: {node: '>= 0.8'} @@ -2840,14 +2831,19 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true + browserslist@4.28.4: + resolution: {integrity: sha512-MTc8i/x9jBQd1iMw2CFGS+rwMa07eYjLR0CCTLDACl9xhxy+nIs3KeML/biicXtk9JrZ6dnnTatmc7ErPXIxqw==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + buffer-equal-constant-time@1.0.1: resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} buffer@5.7.1: resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} - builtin-modules@5.0.0: - resolution: {integrity: sha512-bkXY9WsVpY7CvMhKSR6pZilZu9Ln5WDrKVBUXf2S443etkmEO4V58heTecXcUIsNsi4Rx8JUO4NfX1IcQl4deg==} + builtin-modules@5.3.0: + resolution: {integrity: sha512-hMQUl2bUFG339QygPM97E+mc8OY1IAchORZxm4a/frcYwKzozMzRVDBwHW0NjOqGElLm2O37AVQE8ikxlZHrMQ==} engines: {node: '>=18.20'} bundle-name@4.1.0: @@ -2914,6 +2910,9 @@ packages: caniuse-lite@1.0.30001787: resolution: {integrity: sha512-mNcrMN9KeI68u7muanUpEejSLghOKlVhRqS/Za2IeyGllJ9I9otGpR9g3nsw7n4W378TE/LyIteA0+/FOZm4Kg==} + caniuse-lite@1.0.30001799: + resolution: {integrity: sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==} + capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -2961,10 +2960,6 @@ packages: cjs-module-lexer@1.2.3: resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==} - clean-regexp@1.0.0: - resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==} - engines: {node: '>=4'} - clean-stack@3.0.1: resolution: {integrity: sha512-lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg==} engines: {node: '>=10'} @@ -3184,8 +3179,8 @@ packages: resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} engines: {node: '>=6'} - detect-indent@7.0.1: - resolution: {integrity: sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==} + detect-indent@7.0.2: + resolution: {integrity: sha512-y+8xyqdGLL+6sh0tVeHcfP/QDd8gUgbasolJJpY7NgeQGSZ739bDtSiaiDgtoicy+mtYB81dKLxO9xRhCyIB3A==} engines: {node: '>=12.20'} detect-libc@2.1.2: @@ -3240,6 +3235,9 @@ packages: electron-to-chromium@1.5.334: resolution: {integrity: sha512-mgjZAz7Jyx1SRCwEpy9wefDS7GvNPazLthHg8eQMJ76wBdGQQDW33TCrUTvQ4wzpmOrv2zrFoD3oNufMdyMpog==} + electron-to-chromium@1.5.380: + resolution: {integrity: sha512-W6d5AbuEoRayO447cqrg6lKJIlscgRnnxOZl/08kfV71BQDoEBC7Wwis68z87LjyK6f4kWyTaubuDbhHKrZkbA==} + emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -3249,12 +3247,8 @@ packages: end-of-stream@1.4.4: resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} - enhanced-resolve@5.18.1: - resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==} - engines: {node: '>=10.13.0'} - - enhanced-resolve@5.20.1: - resolution: {integrity: sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==} + enhanced-resolve@5.24.1: + resolution: {integrity: sha512-7DdUaTjmNwMcH2gLr1qycesKII3BK4RLy/mdAb7x10Lq7bR4aNKHt1BR1ZALSv0rPM/hF5wYF0PhGop/rJm8vw==} engines: {node: '>=10.13.0'} entities@6.0.1: @@ -3319,10 +3313,6 @@ packages: resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} engines: {node: '>=6'} - escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} - escape-string-regexp@4.0.0: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} @@ -3345,11 +3335,18 @@ packages: peerDependencies: eslint: '>=8' - eslint-plugin-n@17.24.0: - resolution: {integrity: sha512-/gC7/KAYmfNnPNOb3eu8vw+TdVnV0zhdQwexsw6FLXbhzroVj20vRn2qL8lDWDGnAQ2J8DhdfvXxX9EoxvERvw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + eslint-plugin-n@18.1.0: + resolution: {integrity: sha512-hkUm9EtnFV2h2fE16jNVUfCVUqvPzI7fGLsFdun5lFt/pbmf2kCgDx6ymi9rx+NCUSggBmurJCZOfG20JBs/kg==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} peerDependencies: - eslint: '>=8.23.0' + eslint: '>=8.57.1' + ts-declaration-location: ^1.0.6 + typescript: '>=5.0.0' + peerDependenciesMeta: + ts-declaration-location: + optional: true + typescript: + optional: true eslint-plugin-prettier@5.5.5: resolution: {integrity: sha512-hscXkbqUZ2sPithAuLm5MXL+Wph+U7wHngPBv9OMWwlP8iaflyxpjTYZkmdgB4/vPIhemRlBEoLrH7UC1n7aUw==} @@ -3382,11 +3379,11 @@ packages: peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 - eslint-plugin-unicorn@64.0.0: - resolution: {integrity: sha512-rNZwalHh8i0UfPlhNwg5BTUO1CMdKNmjqe+TgzOTZnpKoi8VBgsW7u9qCHIdpxEzZ1uwrJrPF0uRb7l//K38gA==} - engines: {node: ^20.10.0 || >=21.0.0} + eslint-plugin-unicorn@68.0.0: + resolution: {integrity: sha512-mHYWvX948Q4H3bGc39bsNMxD/leOuNI+Iws9NVsoSz5VA7EGP86wnz7mZ/SPSvRhefT8L4hd8DHfDuGC+lIoCQ==} + engines: {node: '>=22'} peerDependencies: - eslint: '>=9.38.0' + eslint: '>=10.4' eslint-scope@9.1.2: resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==} @@ -3410,6 +3407,16 @@ packages: jiti: optional: true + eslint@10.6.0: + resolution: {integrity: sha512-6lVbcqSodALYo+4ELD0heG6lFiFxnLMuLkiMi2qV8LMp54N8tE8FT1GMH+ev4Ti00nFjNze2+Su6DsV5OQW3Dg==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + espree@11.2.0: resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==} engines: {node: ^20.19.0 || ^22.13.0 || >=24} @@ -3678,9 +3685,6 @@ packages: resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} engines: {node: '>= 0.4'} - get-tsconfig@4.13.7: - resolution: {integrity: sha512-7tN6rFgBlMgpBML5j8typ92BKFi2sFQvIdpAqLA2beia5avZDrMs0FLZiM5etShWq5irVyGcGMEA1jcDaK7A/Q==} - get-tsconfig@4.14.0: resolution: {integrity: sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==} @@ -4218,28 +4222,24 @@ packages: engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] - libc: [glibc] 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-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-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-win32-arm64-msvc@1.32.0: resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==} @@ -4573,6 +4573,10 @@ packages: node-releases@2.0.37: resolution: {integrity: sha512-1h5gKZCF+pO/o3Iqt5Jp7wc9rH3eJJ0+nh/CIoiRwjRxde/hAHyLPXYN4V3CqKAbiZPSeJFSWHmJsbkicta0Eg==} + node-releases@2.0.50: + resolution: {integrity: sha512-J6l92tKHX6w8Jy5nO1Vuc01NoIiRGi/d6qBKVxh+IQ8Cr3b6HbVNfKiF8ZpFKufTwpwxMmce2W3iQZ861ZRyTg==} + engines: {node: '>=18'} + nopt@8.1.0: resolution: {integrity: sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==} engines: {node: ^18.17.0 || >=20.5.0} @@ -4602,8 +4606,8 @@ packages: resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==} engines: {node: '>=18'} - nwsapi@2.2.23: - resolution: {integrity: sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==} + nwsapi@2.2.24: + resolution: {integrity: sha512-7YRhZ3jS45LwmSCT4b2sVFHt/WuovaktDU07QrtOBY2PXskss5a9jfmR9jptyumwXST+rFjrmppMY1KT/yn35A==} object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} @@ -4955,10 +4959,6 @@ packages: resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} engines: {node: '>= 0.4'} - regexp-tree@0.1.27: - resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==} - hasBin: true - regexp.prototype.flags@1.5.4: resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} engines: {node: '>= 0.4'} @@ -4974,8 +4974,8 @@ packages: resolution: {integrity: sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==} engines: {node: '>=0.10.0'} - regjsparser@0.13.1: - resolution: {integrity: sha512-dLsljMd9sqwRkby8zhO1gSg3PnJIBFid8f4CQj/sXx+7cKx+E7u0PKhZ+U4wmhx7EfmtvnA318oVaIkAB1lRJw==} + regjsparser@0.13.2: + resolution: {integrity: sha512-NgRBy2Nx/bE+9F27nVHnqcN5HjyLmecqsqx2PJHu3/IEtADD4WuxuXIVExD5PoSDFVrl78dOonfcOe5O+5nbzQ==} hasBin: true require-from-string@2.0.2: @@ -5113,6 +5113,11 @@ packages: engines: {node: '>=10'} hasBin: true + semver@7.8.5: + resolution: {integrity: sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==} + engines: {node: '>=10'} + hasBin: true + sentence-case@3.0.4: resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} @@ -5366,8 +5371,8 @@ packages: tailwindcss@4.2.4: resolution: {integrity: sha512-HhKppgO81FQof5m6TEnuBWCZGgfRAWbaeOaGT00KOy/Pf/j6oUihdvBpA7ltCeAvZpFhW3j0PTclkxsd4IXYDA==} - tapable@2.3.2: - resolution: {integrity: sha512-1MOpMXuhGzGL5TTCZFItxCc0AARf1EZFQkGqMm7ERKj8+Hgr5oLvJOVFcC+lRmR8hCe2S3jC4T5D7Vg/d7/fhA==} + tapable@2.3.3: + resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==} engines: {node: '>=6'} tar@7.5.11: @@ -5484,6 +5489,7 @@ packages: tsconfck@3.1.6: resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==} engines: {node: ^18 || >=20} + deprecated: unmaintained hasBin: true peerDependencies: typescript: ^5.0.0 @@ -5582,8 +5588,8 @@ packages: undici-types@6.21.0: resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} - undici-types@7.19.2: - resolution: {integrity: sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==} + undici-types@8.3.0: + resolution: {integrity: sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ==} undici@6.24.0: resolution: {integrity: sha512-lVLNosgqo5EkGqh5XUDhGfsMSoO8K0BAN0TyJLvwNRSl4xWGZlCVYsAIpa/OpA3TvmnM01GWcoKmc3ZWo5wKKA==} @@ -5927,6 +5933,18 @@ packages: utf-8-validate: optional: true + ws@8.21.0: + resolution: {integrity: sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + wsl-utils@0.3.1: resolution: {integrity: sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==} engines: {node: '>=20'} @@ -6514,7 +6532,13 @@ snapshots: '@babel/code-frame@7.29.0': dependencies: - '@babel/helper-validator-identifier': 7.28.5 + '@babel/helper-validator-identifier': 7.29.7 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/code-frame@7.29.7': + dependencies: + '@babel/helper-validator-identifier': 7.29.7 js-tokens: 4.0.0 picocolors: 1.1.1 @@ -6552,7 +6576,7 @@ snapshots: dependencies: '@babel/compat-data': 7.29.3 '@babel/helper-validator-option': 7.27.1 - browserslist: 4.28.2 + browserslist: 4.28.4 lru-cache: 5.1.1 semver: 6.3.1 @@ -6569,14 +6593,14 @@ snapshots: dependencies: '@babel/core': 7.29.0 '@babel/helper-module-imports': 7.28.6 - '@babel/helper-validator-identifier': 7.28.5 + '@babel/helper-validator-identifier': 7.29.7 '@babel/traverse': 7.29.0 transitivePeerDependencies: - supports-color '@babel/helper-string-parser@7.27.1': {} - '@babel/helper-validator-identifier@7.28.5': {} + '@babel/helper-validator-identifier@7.29.7': {} '@babel/helper-validator-option@7.27.1': {} @@ -6591,6 +6615,8 @@ snapshots: '@babel/runtime@7.29.2': {} + '@babel/runtime@7.29.7': {} + '@babel/template@7.28.6': dependencies: '@babel/code-frame': 7.29.0 @@ -6612,7 +6638,7 @@ snapshots: '@babel/types@7.29.0': dependencies: '@babel/helper-string-parser': 7.27.1 - '@babel/helper-validator-identifier': 7.28.5 + '@babel/helper-validator-identifier': 7.29.7 '@bcoe/v8-coverage@1.0.2': {} @@ -6839,6 +6865,11 @@ snapshots: eslint: 10.3.0(jiti@2.6.1) eslint-visitor-keys: 3.4.3 + '@eslint-community/eslint-utils@4.9.1(eslint@10.6.0(jiti@2.6.1))': + dependencies: + eslint: 10.6.0(jiti@2.6.1) + eslint-visitor-keys: 3.4.3 + '@eslint-community/regexpp@4.12.2': {} '@eslint/compat@2.1.0(eslint@10.3.0(jiti@2.6.1))': @@ -6859,6 +6890,10 @@ snapshots: dependencies: '@eslint/core': 1.2.1 + '@eslint/config-helpers@0.6.0': + dependencies: + '@eslint/core': 1.2.1 + '@eslint/core@1.2.1': dependencies: '@types/json-schema': 7.0.15 @@ -6874,6 +6909,11 @@ snapshots: '@eslint/core': 1.2.1 levn: 0.4.1 + '@eslint/plugin-kit@0.7.2': + dependencies: + '@eslint/core': 1.2.1 + levn: 0.4.1 + '@gar/promise-retry@1.0.3': {} '@humanfs/core@0.19.2': @@ -6896,75 +6936,75 @@ snapshots: '@inquirer/ansi@2.0.5': {} - '@inquirer/checkbox@4.3.2(@types/node@25.6.2)': + '@inquirer/checkbox@4.3.2(@types/node@26.0.0)': dependencies: '@inquirer/ansi': 1.0.2 - '@inquirer/core': 10.3.2(@types/node@25.6.2) + '@inquirer/core': 10.3.2(@types/node@26.0.0) '@inquirer/figures': 1.0.15 - '@inquirer/type': 3.0.10(@types/node@25.6.2) + '@inquirer/type': 3.0.10(@types/node@26.0.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/checkbox@5.1.4(@types/node@25.6.2)': + '@inquirer/checkbox@5.1.4(@types/node@26.0.0)': dependencies: '@inquirer/ansi': 2.0.5 - '@inquirer/core': 11.1.9(@types/node@25.6.2) + '@inquirer/core': 11.1.9(@types/node@26.0.0) '@inquirer/figures': 2.0.5 - '@inquirer/type': 4.0.5(@types/node@25.6.2) + '@inquirer/type': 4.0.5(@types/node@26.0.0) optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 '@inquirer/confirm@3.2.0': dependencies: '@inquirer/core': 9.2.1 '@inquirer/type': 1.5.5 - '@inquirer/confirm@5.1.21(@types/node@25.6.2)': + '@inquirer/confirm@5.1.21(@types/node@26.0.0)': dependencies: - '@inquirer/core': 10.3.2(@types/node@25.6.2) - '@inquirer/type': 3.0.10(@types/node@25.6.2) + '@inquirer/core': 10.3.2(@types/node@26.0.0) + '@inquirer/type': 3.0.10(@types/node@26.0.0) optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/confirm@6.0.12(@types/node@25.6.2)': + '@inquirer/confirm@6.0.12(@types/node@26.0.0)': dependencies: - '@inquirer/core': 11.1.9(@types/node@25.6.2) - '@inquirer/type': 4.0.5(@types/node@25.6.2) + '@inquirer/core': 11.1.9(@types/node@26.0.0) + '@inquirer/type': 4.0.5(@types/node@26.0.0) optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/core@10.3.2(@types/node@25.6.2)': + '@inquirer/core@10.3.2(@types/node@26.0.0)': dependencies: '@inquirer/ansi': 1.0.2 '@inquirer/figures': 1.0.15 - '@inquirer/type': 3.0.10(@types/node@25.6.2) + '@inquirer/type': 3.0.10(@types/node@26.0.0) cli-width: 4.1.0 mute-stream: 2.0.0 signal-exit: 4.1.0 wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/core@11.1.9(@types/node@25.6.2)': + '@inquirer/core@11.1.9(@types/node@26.0.0)': dependencies: '@inquirer/ansi': 2.0.5 '@inquirer/figures': 2.0.5 - '@inquirer/type': 4.0.5(@types/node@25.6.2) + '@inquirer/type': 4.0.5(@types/node@26.0.0) cli-width: 4.1.0 fast-wrap-ansi: 0.2.0 mute-stream: 3.0.0 signal-exit: 4.1.0 optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 '@inquirer/core@9.2.1': dependencies: '@inquirer/figures': 1.0.15 '@inquirer/type': 2.0.0 '@types/mute-stream': 0.0.4 - '@types/node': 22.19.18 + '@types/node': 22.20.0 '@types/wrap-ansi': 3.0.0 ansi-escapes: 4.3.2 cli-width: 4.1.0 @@ -6974,50 +7014,50 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.2 - '@inquirer/editor@4.2.23(@types/node@25.6.2)': + '@inquirer/editor@4.2.23(@types/node@26.0.0)': dependencies: - '@inquirer/core': 10.3.2(@types/node@25.6.2) - '@inquirer/external-editor': 1.0.3(@types/node@25.6.2) - '@inquirer/type': 3.0.10(@types/node@25.6.2) + '@inquirer/core': 10.3.2(@types/node@26.0.0) + '@inquirer/external-editor': 1.0.3(@types/node@26.0.0) + '@inquirer/type': 3.0.10(@types/node@26.0.0) optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/editor@5.1.1(@types/node@25.6.2)': + '@inquirer/editor@5.1.1(@types/node@26.0.0)': dependencies: - '@inquirer/core': 11.1.9(@types/node@25.6.2) - '@inquirer/external-editor': 3.0.0(@types/node@25.6.2) - '@inquirer/type': 4.0.5(@types/node@25.6.2) + '@inquirer/core': 11.1.9(@types/node@26.0.0) + '@inquirer/external-editor': 3.0.0(@types/node@26.0.0) + '@inquirer/type': 4.0.5(@types/node@26.0.0) optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/expand@4.0.23(@types/node@25.6.2)': + '@inquirer/expand@4.0.23(@types/node@26.0.0)': dependencies: - '@inquirer/core': 10.3.2(@types/node@25.6.2) - '@inquirer/type': 3.0.10(@types/node@25.6.2) + '@inquirer/core': 10.3.2(@types/node@26.0.0) + '@inquirer/type': 3.0.10(@types/node@26.0.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/expand@5.0.13(@types/node@25.6.2)': + '@inquirer/expand@5.0.13(@types/node@26.0.0)': dependencies: - '@inquirer/core': 11.1.9(@types/node@25.6.2) - '@inquirer/type': 4.0.5(@types/node@25.6.2) + '@inquirer/core': 11.1.9(@types/node@26.0.0) + '@inquirer/type': 4.0.5(@types/node@26.0.0) optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/external-editor@1.0.3(@types/node@25.6.2)': + '@inquirer/external-editor@1.0.3(@types/node@26.0.0)': dependencies: chardet: 2.1.1 iconv-lite: 0.7.2 optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/external-editor@3.0.0(@types/node@25.6.2)': + '@inquirer/external-editor@3.0.0(@types/node@26.0.0)': dependencies: chardet: 2.1.1 iconv-lite: 0.7.2 optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 '@inquirer/figures@1.0.11': {} @@ -7030,111 +7070,111 @@ snapshots: '@inquirer/core': 9.2.1 '@inquirer/type': 1.5.5 - '@inquirer/input@4.3.1(@types/node@25.6.2)': + '@inquirer/input@4.3.1(@types/node@26.0.0)': dependencies: - '@inquirer/core': 10.3.2(@types/node@25.6.2) - '@inquirer/type': 3.0.10(@types/node@25.6.2) + '@inquirer/core': 10.3.2(@types/node@26.0.0) + '@inquirer/type': 3.0.10(@types/node@26.0.0) optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/input@5.0.12(@types/node@25.6.2)': + '@inquirer/input@5.0.12(@types/node@26.0.0)': dependencies: - '@inquirer/core': 11.1.9(@types/node@25.6.2) - '@inquirer/type': 4.0.5(@types/node@25.6.2) + '@inquirer/core': 11.1.9(@types/node@26.0.0) + '@inquirer/type': 4.0.5(@types/node@26.0.0) optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/number@3.0.23(@types/node@25.6.2)': + '@inquirer/number@3.0.23(@types/node@26.0.0)': dependencies: - '@inquirer/core': 10.3.2(@types/node@25.6.2) - '@inquirer/type': 3.0.10(@types/node@25.6.2) + '@inquirer/core': 10.3.2(@types/node@26.0.0) + '@inquirer/type': 3.0.10(@types/node@26.0.0) optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/number@4.0.12(@types/node@25.6.2)': + '@inquirer/number@4.0.12(@types/node@26.0.0)': dependencies: - '@inquirer/core': 11.1.9(@types/node@25.6.2) - '@inquirer/type': 4.0.5(@types/node@25.6.2) + '@inquirer/core': 11.1.9(@types/node@26.0.0) + '@inquirer/type': 4.0.5(@types/node@26.0.0) optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/password@4.0.23(@types/node@25.6.2)': + '@inquirer/password@4.0.23(@types/node@26.0.0)': dependencies: '@inquirer/ansi': 1.0.2 - '@inquirer/core': 10.3.2(@types/node@25.6.2) - '@inquirer/type': 3.0.10(@types/node@25.6.2) + '@inquirer/core': 10.3.2(@types/node@26.0.0) + '@inquirer/type': 3.0.10(@types/node@26.0.0) optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/password@5.0.12(@types/node@25.6.2)': + '@inquirer/password@5.0.12(@types/node@26.0.0)': dependencies: '@inquirer/ansi': 2.0.5 - '@inquirer/core': 11.1.9(@types/node@25.6.2) - '@inquirer/type': 4.0.5(@types/node@25.6.2) + '@inquirer/core': 11.1.9(@types/node@26.0.0) + '@inquirer/type': 4.0.5(@types/node@26.0.0) optionalDependencies: - '@types/node': 25.6.2 - - '@inquirer/prompts@7.10.1(@types/node@25.6.2)': - dependencies: - '@inquirer/checkbox': 4.3.2(@types/node@25.6.2) - '@inquirer/confirm': 5.1.21(@types/node@25.6.2) - '@inquirer/editor': 4.2.23(@types/node@25.6.2) - '@inquirer/expand': 4.0.23(@types/node@25.6.2) - '@inquirer/input': 4.3.1(@types/node@25.6.2) - '@inquirer/number': 3.0.23(@types/node@25.6.2) - '@inquirer/password': 4.0.23(@types/node@25.6.2) - '@inquirer/rawlist': 4.1.11(@types/node@25.6.2) - '@inquirer/search': 3.2.2(@types/node@25.6.2) - '@inquirer/select': 4.4.2(@types/node@25.6.2) + '@types/node': 26.0.0 + + '@inquirer/prompts@7.10.1(@types/node@26.0.0)': + dependencies: + '@inquirer/checkbox': 4.3.2(@types/node@26.0.0) + '@inquirer/confirm': 5.1.21(@types/node@26.0.0) + '@inquirer/editor': 4.2.23(@types/node@26.0.0) + '@inquirer/expand': 4.0.23(@types/node@26.0.0) + '@inquirer/input': 4.3.1(@types/node@26.0.0) + '@inquirer/number': 3.0.23(@types/node@26.0.0) + '@inquirer/password': 4.0.23(@types/node@26.0.0) + '@inquirer/rawlist': 4.1.11(@types/node@26.0.0) + '@inquirer/search': 3.2.2(@types/node@26.0.0) + '@inquirer/select': 4.4.2(@types/node@26.0.0) optionalDependencies: - '@types/node': 25.6.2 - - '@inquirer/prompts@8.4.2(@types/node@25.6.2)': - dependencies: - '@inquirer/checkbox': 5.1.4(@types/node@25.6.2) - '@inquirer/confirm': 6.0.12(@types/node@25.6.2) - '@inquirer/editor': 5.1.1(@types/node@25.6.2) - '@inquirer/expand': 5.0.13(@types/node@25.6.2) - '@inquirer/input': 5.0.12(@types/node@25.6.2) - '@inquirer/number': 4.0.12(@types/node@25.6.2) - '@inquirer/password': 5.0.12(@types/node@25.6.2) - '@inquirer/rawlist': 5.2.8(@types/node@25.6.2) - '@inquirer/search': 4.1.8(@types/node@25.6.2) - '@inquirer/select': 5.1.4(@types/node@25.6.2) + '@types/node': 26.0.0 + + '@inquirer/prompts@8.4.2(@types/node@26.0.0)': + dependencies: + '@inquirer/checkbox': 5.1.4(@types/node@26.0.0) + '@inquirer/confirm': 6.0.12(@types/node@26.0.0) + '@inquirer/editor': 5.1.1(@types/node@26.0.0) + '@inquirer/expand': 5.0.13(@types/node@26.0.0) + '@inquirer/input': 5.0.12(@types/node@26.0.0) + '@inquirer/number': 4.0.12(@types/node@26.0.0) + '@inquirer/password': 5.0.12(@types/node@26.0.0) + '@inquirer/rawlist': 5.2.8(@types/node@26.0.0) + '@inquirer/search': 4.1.8(@types/node@26.0.0) + '@inquirer/select': 5.1.4(@types/node@26.0.0) optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/rawlist@4.1.11(@types/node@25.6.2)': + '@inquirer/rawlist@4.1.11(@types/node@26.0.0)': dependencies: - '@inquirer/core': 10.3.2(@types/node@25.6.2) - '@inquirer/type': 3.0.10(@types/node@25.6.2) + '@inquirer/core': 10.3.2(@types/node@26.0.0) + '@inquirer/type': 3.0.10(@types/node@26.0.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/rawlist@5.2.8(@types/node@25.6.2)': + '@inquirer/rawlist@5.2.8(@types/node@26.0.0)': dependencies: - '@inquirer/core': 11.1.9(@types/node@25.6.2) - '@inquirer/type': 4.0.5(@types/node@25.6.2) + '@inquirer/core': 11.1.9(@types/node@26.0.0) + '@inquirer/type': 4.0.5(@types/node@26.0.0) optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/search@3.2.2(@types/node@25.6.2)': + '@inquirer/search@3.2.2(@types/node@26.0.0)': dependencies: - '@inquirer/core': 10.3.2(@types/node@25.6.2) + '@inquirer/core': 10.3.2(@types/node@26.0.0) '@inquirer/figures': 1.0.15 - '@inquirer/type': 3.0.10(@types/node@25.6.2) + '@inquirer/type': 3.0.10(@types/node@26.0.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/search@4.1.8(@types/node@25.6.2)': + '@inquirer/search@4.1.8(@types/node@26.0.0)': dependencies: - '@inquirer/core': 11.1.9(@types/node@25.6.2) + '@inquirer/core': 11.1.9(@types/node@26.0.0) '@inquirer/figures': 2.0.5 - '@inquirer/type': 4.0.5(@types/node@25.6.2) + '@inquirer/type': 4.0.5(@types/node@26.0.0) optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 '@inquirer/select@2.5.0': dependencies: @@ -7144,24 +7184,24 @@ snapshots: ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.2 - '@inquirer/select@4.4.2(@types/node@25.6.2)': + '@inquirer/select@4.4.2(@types/node@26.0.0)': dependencies: '@inquirer/ansi': 1.0.2 - '@inquirer/core': 10.3.2(@types/node@25.6.2) + '@inquirer/core': 10.3.2(@types/node@26.0.0) '@inquirer/figures': 1.0.15 - '@inquirer/type': 3.0.10(@types/node@25.6.2) + '@inquirer/type': 3.0.10(@types/node@26.0.0) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/select@5.1.4(@types/node@25.6.2)': + '@inquirer/select@5.1.4(@types/node@26.0.0)': dependencies: '@inquirer/ansi': 2.0.5 - '@inquirer/core': 11.1.9(@types/node@25.6.2) + '@inquirer/core': 11.1.9(@types/node@26.0.0) '@inquirer/figures': 2.0.5 - '@inquirer/type': 4.0.5(@types/node@25.6.2) + '@inquirer/type': 4.0.5(@types/node@26.0.0) optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 '@inquirer/type@1.5.5': dependencies: @@ -7171,13 +7211,13 @@ snapshots: dependencies: mute-stream: 1.0.0 - '@inquirer/type@3.0.10(@types/node@25.6.2)': + '@inquirer/type@3.0.10(@types/node@26.0.0)': optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 - '@inquirer/type@4.0.5(@types/node@25.6.2)': + '@inquirer/type@4.0.5(@types/node@26.0.0)': optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 '@isaacs/cliui@8.0.2': dependencies: @@ -7231,7 +7271,7 @@ snapshots: https-proxy-agent: 7.0.6 node-fetch: 2.6.9 nopt: 8.1.0 - semver: 7.8.0 + semver: 7.8.5 tar: 7.5.11 transitivePeerDependencies: - encoding @@ -7277,7 +7317,7 @@ snapshots: '@npmcli/fs@5.0.0': dependencies: - semver: 7.8.0 + semver: 7.8.5 '@npmcli/redact@4.0.0': {} @@ -7336,9 +7376,9 @@ snapshots: dependencies: '@oclif/core': 4.11.1 - '@oclif/plugin-not-found@3.2.77(@types/node@25.6.2)': + '@oclif/plugin-not-found@3.2.77(@types/node@26.0.0)': dependencies: - '@inquirer/prompts': 7.10.1(@types/node@25.6.2) + '@inquirer/prompts': 7.10.1(@types/node@26.0.0) '@oclif/core': 4.11.1 ansis: 3.17.0 fast-levenshtein: 3.0.0 @@ -7983,7 +8023,7 @@ snapshots: '@tailwindcss/node@4.2.4': dependencies: '@jridgewell/remapping': 2.3.5 - enhanced-resolve: 5.20.1 + enhanced-resolve: 5.24.1 jiti: 2.6.1 lightningcss: 1.32.0 magic-string: 0.30.21 @@ -8049,17 +8089,17 @@ snapshots: postcss: 8.5.14 tailwindcss: 4.2.4 - '@tailwindcss/vite@4.2.4(vite@8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0))': + '@tailwindcss/vite@4.2.4(vite@8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0))': dependencies: '@tailwindcss/node': 4.2.4 '@tailwindcss/oxide': 4.2.4 tailwindcss: 4.2.4 - vite: 8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) + vite: 8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) '@testing-library/dom@10.4.0': dependencies: - '@babel/code-frame': 7.29.0 - '@babel/runtime': 7.29.2 + '@babel/code-frame': 7.29.7 + '@babel/runtime': 7.29.7 '@types/aria-query': 5.0.4 aria-query: 5.3.0 chalk: 4.1.2 @@ -8119,7 +8159,7 @@ snapshots: dependencies: '@types/http-cache-semantics': 4.0.4 '@types/keyv': 3.1.4 - '@types/node': 25.6.2 + '@types/node': 26.0.0 '@types/responselike': 1.0.3 '@types/chai@5.2.3': @@ -8140,7 +8180,7 @@ snapshots: '@types/fs-extra@11.0.4': dependencies: '@types/jsonfile': 6.1.4 - '@types/node': 25.6.2 + '@types/node': 26.0.0 '@types/http-cache-semantics@4.0.4': {} @@ -8153,39 +8193,39 @@ snapshots: '@types/jsonfile@6.1.4': dependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 '@types/jsonwebtoken@9.0.10': dependencies: '@types/ms': 2.1.0 - '@types/node': 25.6.2 + '@types/node': 26.0.0 '@types/keyv@3.1.4': dependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 '@types/ms@2.1.0': {} '@types/mute-stream@0.0.4': dependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 '@types/node-fetch@2.6.13': dependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 form-data: 4.0.4 '@types/node@20.11.0': dependencies: undici-types: 5.26.5 - '@types/node@22.19.18': + '@types/node@22.20.0': dependencies: undici-types: 6.21.0 - '@types/node@25.6.2': + '@types/node@26.0.0': dependencies: - undici-types: 7.19.2 + undici-types: 8.3.0 '@types/react-dom@19.2.3(@types/react@19.2.14)': dependencies: @@ -8197,17 +8237,17 @@ snapshots: '@types/responselike@1.0.3': dependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 '@types/through@0.0.33': dependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 '@types/wrap-ansi@3.0.0': {} '@types/ws@8.18.1': dependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 '@typescript-eslint/eslint-plugin@8.59.2(@typescript-eslint/parser@8.59.2(eslint@10.3.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.3.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: @@ -8277,7 +8317,7 @@ snapshots: '@typescript-eslint/visitor-keys': 8.59.2 debug: 4.4.3(supports-color@8.1.1) minimatch: 10.2.3 - semver: 7.8.0 + semver: 7.8.5 tinyglobby: 0.2.16 ts-api-utils: 2.5.0(typescript@5.9.3) typescript: 5.9.3 @@ -8372,15 +8412,15 @@ snapshots: json-schema-to-ts: 1.6.4 ts-morph: 12.0.0 - '@vitejs/plugin-react@6.0.1(vite@8.0.10(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0))': + '@vitejs/plugin-react@6.0.1(vite@8.0.10(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0))': dependencies: '@rolldown/pluginutils': 1.0.0-rc.7 - vite: 8.0.10(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) + vite: 8.0.10(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) - '@vitejs/plugin-react@6.0.1(vite@8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0))': + '@vitejs/plugin-react@6.0.1(vite@8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0))': dependencies: '@rolldown/pluginutils': 1.0.0-rc.7 - vite: 8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) + vite: 8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) '@vitest/coverage-v8@4.1.5(vitest@4.1.5)': dependencies: @@ -8394,7 +8434,7 @@ snapshots: obug: 2.1.1 std-env: 4.1.0 tinyrainbow: 3.1.0 - vitest: 4.1.5(@edge-runtime/vm@3.2.0)(@types/node@25.6.2)(@vitest/coverage-v8@4.1.5)(@vitest/ui@4.1.5)(jsdom@26.1.0)(vite@8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) + vitest: 4.1.5(@edge-runtime/vm@3.2.0)(@types/node@26.0.0)(@vitest/coverage-v8@4.1.5)(@vitest/ui@4.1.5)(jsdom@26.1.0)(vite@8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) '@vitest/eslint-plugin@1.6.17(@typescript-eslint/eslint-plugin@8.59.2(@typescript-eslint/parser@8.59.2(eslint@10.3.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.3.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.3.0(jiti@2.6.1))(typescript@5.9.3)(vitest@4.1.5)': dependencies: @@ -8404,7 +8444,7 @@ snapshots: optionalDependencies: '@typescript-eslint/eslint-plugin': 8.59.2(@typescript-eslint/parser@8.59.2(eslint@10.3.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.3.0(jiti@2.6.1))(typescript@5.9.3) typescript: 5.9.3 - vitest: 4.1.5(@edge-runtime/vm@3.2.0)(@types/node@25.6.2)(@vitest/coverage-v8@4.1.5)(@vitest/ui@4.1.5)(jsdom@26.1.0)(vite@8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) + vitest: 4.1.5(@edge-runtime/vm@3.2.0)(@types/node@26.0.0)(@vitest/coverage-v8@4.1.5)(@vitest/ui@4.1.5)(jsdom@26.1.0)(vite@8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) transitivePeerDependencies: - supports-color @@ -8426,21 +8466,21 @@ snapshots: chai: 6.2.2 tinyrainbow: 3.1.0 - '@vitest/mocker@4.1.5(vite@8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0))': + '@vitest/mocker@4.1.5(vite@8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0))': dependencies: '@vitest/spy': 4.1.5 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) + vite: 8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) - '@vitest/mocker@4.1.6(vite@8.0.10(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0))': + '@vitest/mocker@4.1.6(vite@8.0.10(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0))': dependencies: '@vitest/spy': 4.1.6 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 8.0.10(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) + vite: 8.0.10(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) '@vitest/pretty-format@4.1.5': dependencies: @@ -8487,7 +8527,7 @@ snapshots: sirv: 3.0.2 tinyglobby: 0.2.16 tinyrainbow: 3.1.0 - vitest: 4.1.5(@edge-runtime/vm@3.2.0)(@types/node@25.6.2)(@vitest/coverage-v8@4.1.5)(@vitest/ui@4.1.5)(jsdom@26.1.0)(vite@8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) + vitest: 4.1.5(@edge-runtime/vm@3.2.0)(@types/node@26.0.0)(@vitest/coverage-v8@4.1.5)(@vitest/ui@4.1.5)(jsdom@26.1.0)(vite@8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) '@vitest/ui@4.1.6(vitest@4.1.6)': dependencies: @@ -8498,7 +8538,7 @@ snapshots: sirv: 3.0.2 tinyglobby: 0.2.16 tinyrainbow: 3.1.0 - vitest: 4.1.6(@edge-runtime/vm@3.2.0)(@types/node@25.6.2)(@vitest/coverage-v8@4.1.5)(@vitest/ui@4.1.6)(jsdom@26.1.0)(vite@8.0.10(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) + vitest: 4.1.6(@edge-runtime/vm@3.2.0)(@types/node@26.0.0)(@vitest/coverage-v8@4.1.5)(@vitest/ui@4.1.6)(jsdom@26.1.0)(vite@8.0.10(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) '@vitest/utils@4.1.5': dependencies: @@ -8719,6 +8759,8 @@ snapshots: baseline-browser-mapping@2.10.16: {} + baseline-browser-mapping@2.10.40: {} + basic-auth@2.0.1: dependencies: safe-buffer: 5.1.2 @@ -8776,6 +8818,14 @@ snapshots: node-releases: 2.0.37 update-browserslist-db: 1.2.3(browserslist@4.28.2) + browserslist@4.28.4: + dependencies: + baseline-browser-mapping: 2.10.40 + caniuse-lite: 1.0.30001799 + electron-to-chromium: 1.5.380 + node-releases: 2.0.50 + update-browserslist-db: 1.2.3(browserslist@4.28.4) + buffer-equal-constant-time@1.0.1: {} buffer@5.7.1: @@ -8783,7 +8833,7 @@ snapshots: base64-js: 1.5.1 ieee754: 1.2.1 - builtin-modules@5.0.0: {} + builtin-modules@5.3.0: {} bundle-name@4.1.0: dependencies: @@ -8863,6 +8913,8 @@ snapshots: caniuse-lite@1.0.30001787: {} + caniuse-lite@1.0.30001799: {} + capital-case@1.0.4: dependencies: no-case: 3.0.4 @@ -8913,10 +8965,6 @@ snapshots: cjs-module-lexer@1.2.3: {} - clean-regexp@1.0.0: - dependencies: - escape-string-regexp: 1.0.5 - clean-stack@3.0.1: dependencies: escape-string-regexp: 4.0.0 @@ -9016,7 +9064,7 @@ snapshots: core-js-compat@3.49.0: dependencies: - browserslist: 4.28.2 + browserslist: 4.28.4 corser@2.0.1: {} @@ -9122,7 +9170,7 @@ snapshots: dequal@2.0.3: {} - detect-indent@7.0.1: {} + detect-indent@7.0.2: {} detect-libc@2.1.2: {} @@ -9175,6 +9223,8 @@ snapshots: electron-to-chromium@1.5.334: {} + electron-to-chromium@1.5.380: {} + emoji-regex@8.0.0: {} emoji-regex@9.2.2: {} @@ -9183,15 +9233,10 @@ snapshots: dependencies: once: 1.4.0 - enhanced-resolve@5.18.1: - dependencies: - graceful-fs: 4.2.11 - tapable: 2.3.2 - - enhanced-resolve@5.20.1: + enhanced-resolve@5.24.1: dependencies: graceful-fs: 4.2.11 - tapable: 2.3.2 + tapable: 2.3.3 entities@6.0.1: optional: true @@ -9364,14 +9409,12 @@ snapshots: escalade@3.2.0: {} - escape-string-regexp@1.0.5: {} - escape-string-regexp@4.0.0: {} eslint-compat-utils@0.5.1(eslint@10.3.0(jiti@2.6.1)): dependencies: eslint: 10.3.0(jiti@2.6.1) - semver: 7.7.4 + semver: 7.8.5 eslint-config-prettier@10.1.8(eslint@10.3.0(jiti@2.6.1)): dependencies: @@ -9384,20 +9427,20 @@ snapshots: eslint: 10.3.0(jiti@2.6.1) eslint-compat-utils: 0.5.1(eslint@10.3.0(jiti@2.6.1)) - eslint-plugin-n@17.24.0(eslint@10.3.0(jiti@2.6.1))(typescript@5.9.3): + eslint-plugin-n@18.1.0(eslint@10.3.0(jiti@2.6.1))(ts-declaration-location@1.0.7(typescript@5.9.3))(typescript@5.9.3): dependencies: '@eslint-community/eslint-utils': 4.9.1(eslint@10.3.0(jiti@2.6.1)) - enhanced-resolve: 5.18.1 + enhanced-resolve: 5.24.1 eslint: 10.3.0(jiti@2.6.1) eslint-plugin-es-x: 7.8.0(eslint@10.3.0(jiti@2.6.1)) - get-tsconfig: 4.13.7 + get-tsconfig: 4.14.0 globals: 15.15.0 globrex: 0.1.2 ignore: 5.3.2 - semver: 7.7.4 + semver: 7.8.5 + optionalDependencies: ts-declaration-location: 1.0.7(typescript@5.9.3) - transitivePeerDependencies: - - typescript + typescript: 5.9.3 eslint-plugin-prettier@5.5.5(eslint-config-prettier@10.1.8(eslint@10.3.0(jiti@2.6.1)))(eslint@10.3.0(jiti@2.6.1))(prettier@3.8.3): dependencies: @@ -9423,7 +9466,7 @@ snapshots: dependencies: eslint: 10.3.0(jiti@2.6.1) - eslint-plugin-react@7.37.5(eslint@10.3.0(jiti@2.6.1)): + eslint-plugin-react@7.37.5(eslint@10.6.0(jiti@2.6.1)): dependencies: array-includes: 3.1.8 array.prototype.findlast: 1.2.5 @@ -9431,7 +9474,7 @@ snapshots: array.prototype.tosorted: 1.1.4 doctrine: 2.1.0 es-iterator-helpers: 1.2.1 - eslint: 10.3.0(jiti@2.6.1) + eslint: 10.6.0(jiti@2.6.1) estraverse: 5.3.0 hasown: 2.0.2 jsx-ast-utils: 3.3.5 @@ -9445,14 +9488,15 @@ snapshots: string.prototype.matchall: 4.0.12 string.prototype.repeat: 1.0.0 - eslint-plugin-unicorn@64.0.0(eslint@10.3.0(jiti@2.6.1)): + eslint-plugin-unicorn@68.0.0(eslint@10.3.0(jiti@2.6.1)): dependencies: - '@babel/helper-validator-identifier': 7.28.5 + '@babel/helper-validator-identifier': 7.29.7 '@eslint-community/eslint-utils': 4.9.1(eslint@10.3.0(jiti@2.6.1)) + browserslist: 4.28.4 change-case: 5.4.4 ci-info: 4.4.0 - clean-regexp: 1.0.0 core-js-compat: 3.49.0 + detect-indent: 7.0.2 eslint: 10.3.0(jiti@2.6.1) find-up-simple: 1.0.1 globals: 17.6.0 @@ -9460,9 +9504,8 @@ snapshots: is-builtin-module: 5.0.0 jsesc: 3.1.0 pluralize: 8.0.0 - regexp-tree: 0.1.27 - regjsparser: 0.13.1 - semver: 7.7.4 + regjsparser: 0.13.2 + semver: 7.8.5 strip-indent: 4.1.1 eslint-scope@9.1.2: @@ -9513,6 +9556,43 @@ snapshots: transitivePeerDependencies: - supports-color + eslint@10.6.0(jiti@2.6.1): + dependencies: + '@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.6.1)) + '@eslint-community/regexpp': 4.12.2 + '@eslint/config-array': 0.23.5 + '@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@8.1.1) + 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.6.1 + transitivePeerDependencies: + - supports-color + espree@11.2.0: dependencies: acorn: 8.16.0 @@ -9800,10 +9880,6 @@ snapshots: es-errors: 1.3.0 get-intrinsic: 1.3.0 - get-tsconfig@4.13.7: - dependencies: - resolve-pkg-maps: 1.0.0 - get-tsconfig@4.14.0: dependencies: resolve-pkg-maps: 1.0.0 @@ -10022,9 +10098,9 @@ snapshots: ini@1.3.8: {} - inquirer@9.3.8(@types/node@25.6.2): + inquirer@9.3.8(@types/node@26.0.0): dependencies: - '@inquirer/external-editor': 1.0.3(@types/node@25.6.2) + '@inquirer/external-editor': 1.0.3(@types/node@26.0.0) '@inquirer/figures': 1.0.15 ansi-escapes: 4.3.2 cli-width: 4.1.0 @@ -10076,7 +10152,7 @@ snapshots: is-builtin-module@5.0.0: dependencies: - builtin-modules: 5.0.0 + builtin-modules: 5.3.0 is-callable@1.2.7: {} @@ -10264,7 +10340,7 @@ snapshots: http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.23 + nwsapi: 2.2.24 parse5: 7.3.0 rrweb-cssom: 0.8.0 saxes: 6.0.0 @@ -10275,7 +10351,7 @@ snapshots: whatwg-encoding: 3.1.1 whatwg-mimetype: 4.0.0 whatwg-url: 14.2.0 - ws: 8.20.0 + ws: 8.21.0 xml-name-validator: 5.0.0 transitivePeerDependencies: - bufferutil @@ -10479,7 +10555,7 @@ snapshots: make-dir@4.0.0: dependencies: - semver: 7.8.0 + semver: 7.8.5 make-error@1.3.6: {} @@ -10671,6 +10747,8 @@ snapshots: node-releases@2.0.37: {} + node-releases@2.0.50: {} + nopt@8.1.0: dependencies: abbrev: 3.0.1 @@ -10698,7 +10776,7 @@ snapshots: path-key: 4.0.0 unicorn-magic: 0.3.0 - nwsapi@2.2.23: + nwsapi@2.2.24: optional: true object-assign@4.1.1: {} @@ -10739,7 +10817,7 @@ snapshots: obug@2.1.1: {} - oclif@4.23.0(@types/node@25.6.2): + oclif@4.23.0(@types/node@26.0.0): dependencies: '@aws-sdk/client-cloudfront': 3.1009.0 '@aws-sdk/client-s3': 3.1014.0 @@ -10748,7 +10826,7 @@ snapshots: '@inquirer/select': 2.5.0 '@oclif/core': 4.9.0 '@oclif/plugin-help': 6.2.40 - '@oclif/plugin-not-found': 3.2.77(@types/node@25.6.2) + '@oclif/plugin-not-found': 3.2.77(@types/node@26.0.0) '@oclif/plugin-warn-if-update-available': 3.1.63 ansis: 3.17.0 async-retry: 1.3.3 @@ -11066,8 +11144,6 @@ snapshots: get-proto: 1.0.1 which-builtin-type: 1.2.1 - regexp-tree@0.1.27: {} - regexp.prototype.flags@1.5.4: dependencies: call-bind: 1.0.8 @@ -11090,7 +11166,7 @@ snapshots: dependencies: rc: 1.2.8 - regjsparser@0.13.1: + regjsparser@0.13.2: dependencies: jsesc: 3.1.0 @@ -11270,6 +11346,8 @@ snapshots: semver@7.8.0: {} + semver@7.8.5: {} + sentence-case@3.0.4: dependencies: no-case: 3.0.4 @@ -11429,7 +11507,7 @@ snapshots: sort-package-json@2.15.1: dependencies: - detect-indent: 7.0.1 + detect-indent: 7.0.2 detect-newline: 4.0.1 get-stdin: 9.0.0 git-hooks-list: 3.2.0 @@ -11588,7 +11666,7 @@ snapshots: tailwindcss@4.2.4: {} - tapable@2.3.2: {} + tapable@2.3.3: {} tar@7.5.11: dependencies: @@ -11676,6 +11754,7 @@ snapshots: dependencies: picomatch: 4.0.4 typescript: 5.9.3 + optional: true ts-interface-checker@0.1.13: {} @@ -11684,14 +11763,14 @@ snapshots: '@ts-morph/common': 0.11.1 code-block-writer: 10.1.1 - ts-node@11.0.0-beta.1(@types/node@25.6.2)(typescript@5.9.3): + ts-node@11.0.0-beta.1(@types/node@26.0.0)(typescript@5.9.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 '@tsconfig/node18': 18.2.4 '@tsconfig/node20': 20.1.5 - '@types/node': 25.6.2 + '@types/node': 26.0.0 acorn: 8.14.1 acorn-walk: 8.3.4 arg: 4.1.3 @@ -11824,7 +11903,7 @@ snapshots: undici-types@6.21.0: {} - undici-types@7.19.2: {} + undici-types@8.3.0: {} undici@6.24.0: {} @@ -11844,6 +11923,12 @@ snapshots: escalade: 3.2.0 picocolors: 1.1.1 + update-browserslist-db@1.2.3(browserslist@4.28.4): + dependencies: + browserslist: 4.28.4 + escalade: 3.2.0 + picocolors: 1.1.1 + update-check@1.5.4: dependencies: registry-auth-token: 3.3.2 @@ -11876,17 +11961,17 @@ snapshots: vary@1.1.2: {} - vite-tsconfig-paths@6.1.1(typescript@5.9.3)(vite@8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)): + vite-tsconfig-paths@6.1.1(typescript@5.9.3)(vite@8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)): dependencies: debug: 4.4.3(supports-color@8.1.1) globrex: 0.1.2 tsconfck: 3.1.6(typescript@5.9.3) - vite: 8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) + vite: 8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) transitivePeerDependencies: - supports-color - typescript - vite@8.0.10(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0): + vite@8.0.10(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0): dependencies: lightningcss: 1.32.0 picomatch: 4.0.4 @@ -11894,13 +11979,13 @@ snapshots: rolldown: 1.0.0-rc.17 tinyglobby: 0.2.16 optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 esbuild: 0.27.7 fsevents: 2.3.3 jiti: 2.6.1 tsx: 4.21.0 - vite@8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0): + vite@8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0): dependencies: lightningcss: 1.32.0 picomatch: 4.0.4 @@ -11908,16 +11993,16 @@ snapshots: rolldown: 1.0.0-rc.18 tinyglobby: 0.2.16 optionalDependencies: - '@types/node': 25.6.2 + '@types/node': 26.0.0 esbuild: 0.27.7 fsevents: 2.3.3 jiti: 2.6.1 tsx: 4.21.0 - vitest@4.1.5(@edge-runtime/vm@3.2.0)(@types/node@25.6.2)(@vitest/coverage-v8@4.1.5)(@vitest/ui@4.1.5)(jsdom@26.1.0)(vite@8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)): + vitest@4.1.5(@edge-runtime/vm@3.2.0)(@types/node@26.0.0)(@vitest/coverage-v8@4.1.5)(@vitest/ui@4.1.5)(jsdom@26.1.0)(vite@8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)): dependencies: '@vitest/expect': 4.1.5 - '@vitest/mocker': 4.1.5(vite@8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) + '@vitest/mocker': 4.1.5(vite@8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) '@vitest/pretty-format': 4.1.5 '@vitest/runner': 4.1.5 '@vitest/snapshot': 4.1.5 @@ -11934,21 +12019,21 @@ snapshots: tinyexec: 1.1.2 tinyglobby: 0.2.16 tinyrainbow: 3.1.0 - vite: 8.0.11(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) + vite: 8.0.11(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) why-is-node-running: 2.3.0 optionalDependencies: '@edge-runtime/vm': 3.2.0 - '@types/node': 25.6.2 + '@types/node': 26.0.0 '@vitest/coverage-v8': 4.1.5(vitest@4.1.5) '@vitest/ui': 4.1.5(vitest@4.1.5) jsdom: 26.1.0 transitivePeerDependencies: - msw - vitest@4.1.6(@edge-runtime/vm@3.2.0)(@types/node@25.6.2)(@vitest/coverage-v8@4.1.5)(@vitest/ui@4.1.6)(jsdom@26.1.0)(vite@8.0.10(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)): + vitest@4.1.6(@edge-runtime/vm@3.2.0)(@types/node@26.0.0)(@vitest/coverage-v8@4.1.5)(@vitest/ui@4.1.6)(jsdom@26.1.0)(vite@8.0.10(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)): dependencies: '@vitest/expect': 4.1.6 - '@vitest/mocker': 4.1.6(vite@8.0.10(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) + '@vitest/mocker': 4.1.6(vite@8.0.10(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0)) '@vitest/pretty-format': 4.1.6 '@vitest/runner': 4.1.6 '@vitest/snapshot': 4.1.6 @@ -11965,11 +12050,11 @@ snapshots: tinyexec: 1.1.2 tinyglobby: 0.2.16 tinyrainbow: 3.1.0 - vite: 8.0.10(@types/node@25.6.2)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) + vite: 8.0.10(@types/node@26.0.0)(esbuild@0.27.7)(jiti@2.6.1)(tsx@4.21.0) why-is-node-running: 2.3.0 optionalDependencies: '@edge-runtime/vm': 3.2.0 - '@types/node': 25.6.2 + '@types/node': 26.0.0 '@vitest/coverage-v8': 4.1.5(vitest@4.1.5) '@vitest/ui': 4.1.6(vitest@4.1.6) jsdom: 26.1.0 @@ -12103,6 +12188,9 @@ snapshots: ws@8.20.0: {} + ws@8.21.0: + optional: true + wsl-utils@0.3.1: dependencies: is-wsl: 3.1.1 diff --git a/src/commands/channels/presence/enter.ts b/src/commands/channels/presence/enter.ts index 6a6f5763f..4df0367a6 100644 --- a/src/commands/channels/presence/enter.ts +++ b/src/commands/channels/presence/enter.ts @@ -67,7 +67,7 @@ export default class ChannelsPresenceEnter extends AblyBaseCommand { const { channelName } = args; // Parse data if provided - let data: unknown = undefined; + let data: unknown; if (flags.data) { data = this.parseJsonFlag(flags.data, "data", flags); } diff --git a/test/helpers/e2e-mutable-messages.ts b/test/helpers/e2e-mutable-messages.ts index 1438c867c..41097fdbe 100644 --- a/test/helpers/e2e-mutable-messages.ts +++ b/test/helpers/e2e-mutable-messages.ts @@ -62,11 +62,11 @@ export async function setupMutableMessagesRule(): Promise { id?: string; mutableMessages?: boolean; }>; - const existing = rules.find( - (r) => r.id === MUTABLE_NAMESPACE && r.mutableMessages === true, - ); - - if (existing) { + if ( + rules.some( + (r) => r.id === MUTABLE_NAMESPACE && r.mutableMessages === true, + ) + ) { ruleCreated = true; } else { throw new Error( diff --git a/test/hooks/command_not_found/did-you-mean.test.ts b/test/hooks/command_not_found/did-you-mean.test.ts index 1eb1f26b4..55c72586f 100644 --- a/test/hooks/command_not_found/did-you-mean.test.ts +++ b/test/hooks/command_not_found/did-you-mean.test.ts @@ -382,8 +382,8 @@ describe("Command Not Found Hook", () => { for (let i = 0; i < ctx.stubs.log.mock.calls.length; i++) { const callArg = ctx.stubs.log.mock.calls[i][0]; if (typeof callArg === "string") { - usageCall = usageCall || callArg === "\nUSAGE"; - helpCall = helpCall || callArg.includes("See more help with:"); + usageCall ||= callArg === "\nUSAGE"; + helpCall ||= callArg.includes("See more help with:"); } }