From c4085fbe6211c0aedeff956fc5e71ae874750bad Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 18 Mar 2026 14:50:33 +0000 Subject: [PATCH 1/2] chore: migrate tooling to template-typescript-monorepo v2 + add tsup for CLI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump the monorepo template to the modernized version from mrsimpson/template-typescript-monorepo PR#1, and introduce tsup as the CLI build tool so the binary is properly built and executable. The previous tsc-only build had never been run end-to-end; the CLI dist was missing entirely. tsup replaces tsc for the CLI package and confirms the binary works. - pnpm upgraded to v10; pnpm-workspace.yaml gets a catalog section for shared dependency versions (typescript, oxlint, prettier, vitest, tsx, tsup, rimraf) - ESLint + typescript-eslint replaced by oxlint (faster, simpler config); all per-package eslint.config.mjs files removed, root .oxlintrc.json added - nodemon replaced by `tsx watch` in dev scripts; nodemon.json files removed - commitlint added (commitlint.config.js) with conventional-commits preset - knip and changesets added to root devDependencies and scripts - All per-package devDependencies migrated to catalog: references - packages/core and packages/harnesses gain files/exports fields - packages/cli build script switches from `tsc` to `tsup`; tsup.config.ts bundles src/index.ts as ESM targeting Node 22, keeping external deps external so npm resolves them on install All consumers of the workspace packages are unaffected — public APIs and dist shapes are unchanged. The pnpm lockfile is regenerated for pnpm v10. https://claude.ai/code/session_013WVNnTozRKrc3SoP9oLC4N --- .lintstagedrc.js | 2 +- .oxlintrc.json | 19 + commitlint.config.js | 3 + package.json | 57 +- packages/cli/eslint.config.mjs | 40 - packages/cli/nodemon.json | 7 - packages/cli/package.json | 26 +- packages/cli/tsup.config.ts | 10 + packages/core/eslint.config.mjs | 40 - packages/core/nodemon.json | 7 - packages/core/package.json | 34 +- packages/harnesses/eslint.config.mjs | 40 - packages/harnesses/package.json | 30 +- pnpm-lock.yaml | 4659 ++++++++++++++++++-------- pnpm-workspace.yaml | 17 + 15 files changed, 3371 insertions(+), 1620 deletions(-) create mode 100644 .oxlintrc.json create mode 100644 commitlint.config.js delete mode 100644 packages/cli/eslint.config.mjs delete mode 100644 packages/cli/nodemon.json create mode 100644 packages/cli/tsup.config.ts delete mode 100644 packages/core/eslint.config.mjs delete mode 100644 packages/core/nodemon.json delete mode 100644 packages/harnesses/eslint.config.mjs diff --git a/.lintstagedrc.js b/.lintstagedrc.js index 3a8942d..b3280c5 100644 --- a/.lintstagedrc.js +++ b/.lintstagedrc.js @@ -1,4 +1,4 @@ export default { "*": "prettier --write --ignore-unknown", - "*.js,*.ts": "eslint --fix" + "*.{js,ts,mjs,mts,cjs,cts}": "oxlint --fix" }; diff --git a/.oxlintrc.json b/.oxlintrc.json new file mode 100644 index 0000000..bdbc07c --- /dev/null +++ b/.oxlintrc.json @@ -0,0 +1,19 @@ +{ + "$schema": "https://raw.githubusercontent.com/oxc-project/oxc/main/npm/oxlint/configuration_schema.json", + "plugins": ["typescript"], + "env": { + "es2022": true, + "node": true + }, + "rules": { + "no-unused-vars": "off", + "@typescript-eslint/no-unused-vars": "error", + "@typescript-eslint/no-explicit-any": "error" + }, + "ignorePatterns": [ + "dist/", + "node_modules/", + "docs/.vitepress/cache/", + "pnpm-lock.yaml" + ] +} diff --git a/commitlint.config.js b/commitlint.config.js new file mode 100644 index 0000000..b781f6a --- /dev/null +++ b/commitlint.config.js @@ -0,0 +1,3 @@ +export default { + extends: ["@commitlint/config-conventional"] +}; diff --git a/package.json b/package.json index b7536ff..fa556be 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ }, "engines": { "node": ">=22", - "pnpm": ">=9.0.0" + "pnpm": ">=10.0.0" }, "type": "module", "bin": { @@ -27,54 +27,57 @@ }, "scripts": { "build": "turbo run build", - "build:clean": "turbo run clean:build", + "clean": "turbo run clean:build", "dev": "turbo run dev", "docs:dev": "vitepress dev docs", "docs:build": "vitepress build docs", "docs:preview": "vitepress preview docs", - "test": "turbo run --parallel test", - "test:watch": "turbo run --parallel test:watch", + "test": "vitest --run", + "test:watch": "vitest", "lint:all": "turbo run --parallel lint", "lint:fix:all": "turbo run --parallel lint:fix", "format:check:all": "turbo run --parallel format", "format:all": "turbo run --parallel format:fix", "typecheck:all": "turbo run --parallel typecheck", - "lint": "eslint", - "lint:fix": "eslint --fix", + "lint": "oxlint .", + "lint:fix": "oxlint --fix .", "format": "prettier --check .", "format:fix": "prettier --write .", + "knip": "knip", + "changeset": "changeset", + "version": "changeset version", + "release": "pnpm build && changeset publish", "prepare": "husky" }, "devDependencies": { - "@braintree/sanitize-url": "7.1.1", - "@eslint/js": "9.18.0", - "@swc/core": "^1.10.9", - "@tsconfig/node22": "22.0.0", - "@tsconfig/strictest": "2.0.5", - "@types/eslint-config-prettier": "6.11.3", - "@types/node": "^22.10.7", - "@typescript-eslint/eslint-plugin": "^8.21.0", - "@typescript-eslint/parser": "^8.21.0", - "@vitest/coverage-v8": "^3.0.3", + "@changesets/cli": "^2.30.0", + "@commitlint/cli": "^19.6.0", + "@commitlint/config-conventional": "^19.6.0", + "@tsconfig/node22": "catalog:", + "@turbo/gen": "^2.8.17", + "@types/node": "catalog:", + "@vitest/coverage-v8": "catalog:", "cytoscape": "3.31.0", "cytoscape-cose-bilkent": "4.1.0", "dayjs": "1.11.13", "debug": "4.4.0", - "eslint": "^9.18.0", - "eslint-config-prettier": "^10.0.1", "husky": "^9.1.7", - "lint-staged": "^15.4.1", - "nodemon": "^3.1.9", - "prettier": "^3.4.2", - "rimraf": "^6.0.1", - "turbo": "^2.3.3", - "typescript": "^5.7.3", - "typescript-eslint": "8.21.0", + "knip": "^5.86.0", + "lint-staged": "^16.0.0", + "oxlint": "catalog:", + "prettier": "catalog:", + "turbo": "^2.8.17", + "typescript": "catalog:", "vitepress": "1.6.2", "vitepress-plugin-mermaid": "2.0.17", - "vitest": "^3.0.3" + "vitest": "catalog:" + }, + "packageManager": "pnpm@10.32.1", + "pnpm": { + "onlyBuiltDependencies": [ + "esbuild" + ] }, - "packageManager": "pnpm@9.14.2", "dependencies": { "yaml": "^2.8.2" } diff --git a/packages/cli/eslint.config.mjs b/packages/cli/eslint.config.mjs deleted file mode 100644 index 1483555..0000000 --- a/packages/cli/eslint.config.mjs +++ /dev/null @@ -1,40 +0,0 @@ -import js from "@eslint/js"; -import { parser, configs } from "typescript-eslint"; -import prettier from "eslint-config-prettier"; - -export default [ - js.configs.recommended, - ...configs.recommended, - prettier, - { - // Config for TypeScript files - files: ["**/*.{ts,tsx}"], - languageOptions: { - parser, - parserOptions: { - project: ["./tsconfig.json", "./tsconfig.vitest.json"] - } - } - }, - { - // Config for JavaScript files - no TypeScript parsing - files: ["**/*.{js,jsx}"], - ...js.configs.recommended - }, - { - // Relaxed rules for test files - files: ["**/*.test.ts", "**/*.spec.ts"], - rules: { - "@typescript-eslint/no-explicit-any": "off", - "@typescript-eslint/no-unused-vars": "off" - } - }, - { - ignores: [ - "**/node_modules/**", - "**/dist/**", - ".pnpm-store/**", - "pnpm-lock.yaml" - ] - } -]; diff --git a/packages/cli/nodemon.json b/packages/cli/nodemon.json deleted file mode 100644 index e5d466d..0000000 --- a/packages/cli/nodemon.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/nodemon.json", - "watch": ["./src/**", "./node_modules/@mme/**/dist/**"], - "ignoreRoot": [], - "ext": "ts,js", - "exec": "pnpm typecheck && pnpm build" -} diff --git a/packages/cli/package.json b/packages/cli/package.json index 14411c2..ebd457c 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -6,20 +6,23 @@ "bin": { "ade": "dist/index.js" }, + "files": [ + "dist" + ], "publishConfig": { "access": "public" }, "scripts": { - "build": "tsc -p tsconfig.build.json", + "build": "tsup", "clean:build": "rimraf ./dist", - "dev": "nodemon", - "lint": "eslint .", - "lint:fix": "eslint --fix .", + "dev": "tsup --watch", + "lint": "oxlint .", + "lint:fix": "oxlint --fix .", "format": "prettier --check .", "format:fix": "prettier --write .", "test": "vitest --run", "test:watch": "vitest", - "typecheck": "tsc" + "typecheck": "tsc --noEmit" }, "dependencies": { "@codemcp/ade-core": "workspace:*", @@ -28,13 +31,12 @@ }, "devDependencies": { "@codemcp/knowledge": "2.1.0", - "@typescript-eslint/eslint-plugin": "^8.21.0", - "@typescript-eslint/parser": "^8.21.0", - "eslint": "^9.18.0", - "eslint-config-prettier": "^10.0.1", - "prettier": "^3.4.2", - "rimraf": "^6.0.1", - "typescript": "^5.7.3" + "oxlint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tsup": "catalog:", + "typescript": "catalog:", + "vitest": "catalog:" }, "version": "0.2.0" } diff --git a/packages/cli/tsup.config.ts b/packages/cli/tsup.config.ts new file mode 100644 index 0000000..5779ad3 --- /dev/null +++ b/packages/cli/tsup.config.ts @@ -0,0 +1,10 @@ +import { defineConfig } from "tsup"; + +export default defineConfig({ + entry: ["src/index.ts"], + format: ["esm"], + dts: true, + tsconfig: "tsconfig.build.json", + target: "node22", + clean: true +}); diff --git a/packages/core/eslint.config.mjs b/packages/core/eslint.config.mjs deleted file mode 100644 index 1483555..0000000 --- a/packages/core/eslint.config.mjs +++ /dev/null @@ -1,40 +0,0 @@ -import js from "@eslint/js"; -import { parser, configs } from "typescript-eslint"; -import prettier from "eslint-config-prettier"; - -export default [ - js.configs.recommended, - ...configs.recommended, - prettier, - { - // Config for TypeScript files - files: ["**/*.{ts,tsx}"], - languageOptions: { - parser, - parserOptions: { - project: ["./tsconfig.json", "./tsconfig.vitest.json"] - } - } - }, - { - // Config for JavaScript files - no TypeScript parsing - files: ["**/*.{js,jsx}"], - ...js.configs.recommended - }, - { - // Relaxed rules for test files - files: ["**/*.test.ts", "**/*.spec.ts"], - rules: { - "@typescript-eslint/no-explicit-any": "off", - "@typescript-eslint/no-unused-vars": "off" - } - }, - { - ignores: [ - "**/node_modules/**", - "**/dist/**", - ".pnpm-store/**", - "pnpm-lock.yaml" - ] - } -]; diff --git a/packages/core/nodemon.json b/packages/core/nodemon.json deleted file mode 100644 index e5d466d..0000000 --- a/packages/core/nodemon.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/nodemon.json", - "watch": ["./src/**", "./node_modules/@mme/**/dist/**"], - "ignoreRoot": [], - "ext": "ts,js", - "exec": "pnpm typecheck && pnpm build" -} diff --git a/packages/core/package.json b/packages/core/package.json index 0d57797..b16a303 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -3,32 +3,40 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", + "files": [ + "dist" + ], + "exports": { + ".": { + "import": "./dist/index.js", + "types": "./dist/index.d.ts" + } + }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsc -p tsconfig.build.json", "clean:build": "rimraf ./dist", - "dev": "nodemon", - "lint": "eslint .", - "lint:fix": "eslint --fix .", + "dev": "tsx watch src/index.ts", + "lint": "oxlint .", + "lint:fix": "oxlint --fix .", "format": "prettier --check .", "format:fix": "prettier --write .", "test": "vitest --run", "test:watch": "vitest", - "typecheck": "tsc" - }, - "devDependencies": { - "@typescript-eslint/eslint-plugin": "^8.21.0", - "@typescript-eslint/parser": "^8.21.0", - "eslint": "^9.18.0", - "eslint-config-prettier": "^10.0.1", - "prettier": "^3.4.2", - "rimraf": "^6.0.1", - "typescript": "^5.7.3" + "typecheck": "tsc --noEmit" }, "dependencies": { "yaml": "^2.8.2" }, + "devDependencies": { + "oxlint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tsx": "catalog:", + "typescript": "catalog:", + "vitest": "catalog:" + }, "version": "0.2.0" } diff --git a/packages/harnesses/eslint.config.mjs b/packages/harnesses/eslint.config.mjs deleted file mode 100644 index 1483555..0000000 --- a/packages/harnesses/eslint.config.mjs +++ /dev/null @@ -1,40 +0,0 @@ -import js from "@eslint/js"; -import { parser, configs } from "typescript-eslint"; -import prettier from "eslint-config-prettier"; - -export default [ - js.configs.recommended, - ...configs.recommended, - prettier, - { - // Config for TypeScript files - files: ["**/*.{ts,tsx}"], - languageOptions: { - parser, - parserOptions: { - project: ["./tsconfig.json", "./tsconfig.vitest.json"] - } - } - }, - { - // Config for JavaScript files - no TypeScript parsing - files: ["**/*.{js,jsx}"], - ...js.configs.recommended - }, - { - // Relaxed rules for test files - files: ["**/*.test.ts", "**/*.spec.ts"], - rules: { - "@typescript-eslint/no-explicit-any": "off", - "@typescript-eslint/no-unused-vars": "off" - } - }, - { - ignores: [ - "**/node_modules/**", - "**/dist/**", - ".pnpm-store/**", - "pnpm-lock.yaml" - ] - } -]; diff --git a/packages/harnesses/package.json b/packages/harnesses/package.json index b543294..760f58c 100644 --- a/packages/harnesses/package.json +++ b/packages/harnesses/package.json @@ -3,33 +3,41 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", + "files": [ + "dist" + ], + "exports": { + ".": { + "import": "./dist/index.js", + "types": "./dist/index.d.ts" + } + }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsc -p tsconfig.build.json", "clean:build": "rimraf ./dist", - "dev": "nodemon", - "lint": "eslint .", - "lint:fix": "eslint --fix .", + "dev": "tsx watch src/index.ts", + "lint": "oxlint .", + "lint:fix": "oxlint --fix .", "format": "prettier --check .", "format:fix": "prettier --write .", "test": "vitest --run", "test:watch": "vitest", - "typecheck": "tsc" + "typecheck": "tsc --noEmit" }, "dependencies": { "@codemcp/ade-core": "workspace:*", "@codemcp/skills": "^2.3.0" }, "devDependencies": { - "@typescript-eslint/eslint-plugin": "^8.21.0", - "@typescript-eslint/parser": "^8.21.0", - "eslint": "^9.18.0", - "eslint-config-prettier": "^10.0.1", - "prettier": "^3.4.2", - "rimraf": "^6.0.1", - "typescript": "^5.7.3" + "oxlint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tsx": "catalog:", + "typescript": "catalog:", + "vitest": "catalog:" }, "version": "0.2.0" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ae75ad6..332537a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4,6 +4,39 @@ settings: autoInstallPeers: true excludeLinksFromLockfile: false +catalogs: + default: + "@tsconfig/node22": + specifier: ^22.0.5 + version: 22.0.5 + "@types/node": + specifier: ^22.10.7 + version: 22.19.11 + "@vitest/coverage-v8": + specifier: ^3.2.4 + version: 3.2.4 + oxlint: + specifier: ^1.0.0 + version: 1.56.0 + prettier: + specifier: ^3.4.2 + version: 3.8.1 + rimraf: + specifier: ^6.1.3 + version: 6.1.3 + tsup: + specifier: ^8.3.0 + version: 8.5.1 + tsx: + specifier: ^4.19.0 + version: 4.21.0 + typescript: + specifier: ^5.9.3 + version: 5.9.3 + vitest: + specifier: ^3.2.4 + version: 3.2.4 + importers: .: dependencies: @@ -11,36 +44,27 @@ importers: specifier: ^2.8.2 version: 2.8.2 devDependencies: - "@braintree/sanitize-url": - specifier: 7.1.1 - version: 7.1.1 - "@eslint/js": - specifier: 9.18.0 - version: 9.18.0 - "@swc/core": - specifier: ^1.10.9 - version: 1.15.11 + "@changesets/cli": + specifier: ^2.30.0 + version: 2.30.0(@types/node@22.19.11) + "@commitlint/cli": + specifier: ^19.6.0 + version: 19.8.1(@types/node@22.19.11)(typescript@5.9.3) + "@commitlint/config-conventional": + specifier: ^19.6.0 + version: 19.8.1 "@tsconfig/node22": - specifier: 22.0.0 - version: 22.0.0 - "@tsconfig/strictest": - specifier: 2.0.5 - version: 2.0.5 - "@types/eslint-config-prettier": - specifier: 6.11.3 - version: 6.11.3 + specifier: "catalog:" + version: 22.0.5 + "@turbo/gen": + specifier: ^2.8.17 + version: 2.8.17(@types/node@22.19.11) "@types/node": - specifier: ^22.10.7 + specifier: "catalog:" version: 22.19.11 - "@typescript-eslint/eslint-plugin": - specifier: ^8.21.0 - version: 8.56.0(@typescript-eslint/parser@8.56.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3) - "@typescript-eslint/parser": - specifier: ^8.21.0 - version: 8.56.0(eslint@9.39.2)(typescript@5.9.3) "@vitest/coverage-v8": - specifier: ^3.0.3 - version: 3.2.4(vitest@3.2.4(@types/node@22.19.11)(yaml@2.8.2)) + specifier: "catalog:" + version: 3.2.4(vitest@3.2.4(@types/node@22.19.11)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2)) cytoscape: specifier: 3.31.0 version: 3.31.0 @@ -52,37 +76,28 @@ importers: version: 1.11.13 debug: specifier: 4.4.0 - version: 4.4.0(supports-color@5.5.0) - eslint: - specifier: ^9.18.0 - version: 9.39.2 - eslint-config-prettier: - specifier: ^10.0.1 - version: 10.1.8(eslint@9.39.2) + version: 4.4.0 husky: specifier: ^9.1.7 version: 9.1.7 + knip: + specifier: ^5.86.0 + version: 5.88.0(@types/node@22.19.11)(typescript@5.9.3) lint-staged: - specifier: ^15.4.1 - version: 15.5.2 - nodemon: - specifier: ^3.1.9 - version: 3.1.11 + specifier: ^16.0.0 + version: 16.4.0 + oxlint: + specifier: "catalog:" + version: 1.56.0 prettier: - specifier: ^3.4.2 + specifier: "catalog:" version: 3.8.1 - rimraf: - specifier: ^6.0.1 - version: 6.1.3 turbo: - specifier: ^2.3.3 - version: 2.8.10 + specifier: ^2.8.17 + version: 2.8.17 typescript: - specifier: ^5.7.3 + specifier: "catalog:" version: 5.9.3 - typescript-eslint: - specifier: 8.21.0 - version: 8.21.0(eslint@9.39.2)(typescript@5.9.3) vitepress: specifier: 1.6.2 version: 1.6.2(@algolia/client-search@5.49.0)(@types/node@22.19.11)(postcss@8.5.6)(search-insights@2.17.3)(typescript@5.9.3) @@ -90,8 +105,8 @@ importers: specifier: 2.0.17 version: 2.0.17(mermaid@11.4.1)(vitepress@1.6.2(@algolia/client-search@5.49.0)(@types/node@22.19.11)(postcss@8.5.6)(search-insights@2.17.3)(typescript@5.9.3)) vitest: - specifier: ^3.0.3 - version: 3.2.4(@types/node@22.19.11)(yaml@2.8.2) + specifier: "catalog:" + version: 3.2.4(@types/node@22.19.11)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) packages/cli: dependencies: @@ -108,27 +123,24 @@ importers: "@codemcp/knowledge": specifier: 2.1.0 version: 2.1.0(zod@4.3.6) - "@typescript-eslint/eslint-plugin": - specifier: ^8.21.0 - version: 8.56.0(@typescript-eslint/parser@8.56.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3) - "@typescript-eslint/parser": - specifier: ^8.21.0 - version: 8.56.0(eslint@9.39.2)(typescript@5.9.3) - eslint: - specifier: ^9.18.0 - version: 9.39.2 - eslint-config-prettier: - specifier: ^10.0.1 - version: 10.1.8(eslint@9.39.2) + oxlint: + specifier: "catalog:" + version: 1.56.0 prettier: - specifier: ^3.4.2 + specifier: "catalog:" version: 3.8.1 rimraf: - specifier: ^6.0.1 + specifier: "catalog:" version: 6.1.3 + tsup: + specifier: "catalog:" + version: 8.5.1(@swc/core@1.15.11)(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) typescript: - specifier: ^5.7.3 + specifier: "catalog:" version: 5.9.3 + vitest: + specifier: "catalog:" + version: 3.2.4(@types/node@22.19.11)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) packages/core: dependencies: @@ -136,27 +148,24 @@ importers: specifier: ^2.8.2 version: 2.8.2 devDependencies: - "@typescript-eslint/eslint-plugin": - specifier: ^8.21.0 - version: 8.56.0(@typescript-eslint/parser@8.56.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3) - "@typescript-eslint/parser": - specifier: ^8.21.0 - version: 8.56.0(eslint@9.39.2)(typescript@5.9.3) - eslint: - specifier: ^9.18.0 - version: 9.39.2 - eslint-config-prettier: - specifier: ^10.0.1 - version: 10.1.8(eslint@9.39.2) + oxlint: + specifier: "catalog:" + version: 1.56.0 prettier: - specifier: ^3.4.2 + specifier: "catalog:" version: 3.8.1 rimraf: - specifier: ^6.0.1 + specifier: "catalog:" version: 6.1.3 + tsx: + specifier: "catalog:" + version: 4.21.0 typescript: - specifier: ^5.7.3 + specifier: "catalog:" version: 5.9.3 + vitest: + specifier: "catalog:" + version: 3.2.4(@types/node@22.19.11)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) packages/harnesses: dependencies: @@ -167,27 +176,24 @@ importers: specifier: ^2.3.0 version: 2.3.0 devDependencies: - "@typescript-eslint/eslint-plugin": - specifier: ^8.21.0 - version: 8.56.0(@typescript-eslint/parser@8.56.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3) - "@typescript-eslint/parser": - specifier: ^8.21.0 - version: 8.56.0(eslint@9.39.2)(typescript@5.9.3) - eslint: - specifier: ^9.18.0 - version: 9.39.2 - eslint-config-prettier: - specifier: ^10.0.1 - version: 10.1.8(eslint@9.39.2) + oxlint: + specifier: "catalog:" + version: 1.56.0 prettier: - specifier: ^3.4.2 + specifier: "catalog:" version: 3.8.1 rimraf: - specifier: ^6.0.1 + specifier: "catalog:" version: 6.1.3 + tsx: + specifier: "catalog:" + version: 4.21.0 typescript: - specifier: ^5.7.3 + specifier: "catalog:" version: 5.9.3 + vitest: + specifier: "catalog:" + version: 3.2.4(@types/node@22.19.11)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) packages: "@algolia/abtesting@1.15.0": @@ -339,6 +345,13 @@ packages: integrity: sha512-Mex9nXf9vR6AhcXmMrlz/HVgYYZpVGJ6YlPgwl7UnaFpnshXs6EK/oa5Gpf3CzENMjkvEx2tQtntGnb7UtSTOQ== } + "@babel/code-frame@7.29.0": + resolution: + { + integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw== + } + engines: { node: ">=6.9.0" } + "@babel/helper-string-parser@7.27.1": resolution: { @@ -361,6 +374,13 @@ packages: engines: { node: ">=6.0.0" } hasBin: true + "@babel/runtime@7.29.2": + resolution: + { + integrity: sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g== + } + engines: { node: ">=6.9.0" } + "@babel/types@7.29.0": resolution: { @@ -387,6 +407,115 @@ packages: integrity: sha512-i1L7noDNxtFyL5DmZafWy1wRVhGehQmzZaz1HiN5e7iylJMSZR7ekOV7NsIqa5qBldlLrsKv4HbgFUVlQrz8Mw== } + "@changesets/apply-release-plan@7.1.0": + resolution: + { + integrity: sha512-yq8ML3YS7koKQ/9bk1PqO0HMzApIFNwjlwCnwFEXMzNe8NpzeeYYKCmnhWJGkN8g7E51MnWaSbqRcTcdIxUgnQ== + } + + "@changesets/assemble-release-plan@6.0.9": + resolution: + { + integrity: sha512-tPgeeqCHIwNo8sypKlS3gOPmsS3wP0zHt67JDuL20P4QcXiw/O4Hl7oXiuLnP9yg+rXLQ2sScdV1Kkzde61iSQ== + } + + "@changesets/changelog-git@0.2.1": + resolution: + { + integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q== + } + + "@changesets/cli@2.30.0": + resolution: + { + integrity: sha512-5D3Nk2JPqMI1wK25pEymeWRSlSMdo5QOGlyfrKg0AOufrUcjEE3RQgaCpHoBiM31CSNrtSgdJ0U6zL1rLDDfBA== + } + hasBin: true + + "@changesets/config@3.1.3": + resolution: + { + integrity: sha512-vnXjcey8YgBn2L1OPWd3ORs0bGC4LoYcK/ubpgvzNVr53JXV5GiTVj7fWdMRsoKUH7hhhMAQnsJUqLr21EncNw== + } + + "@changesets/errors@0.2.0": + resolution: + { + integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow== + } + + "@changesets/get-dependents-graph@2.1.3": + resolution: + { + integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ== + } + + "@changesets/get-release-plan@4.0.15": + resolution: + { + integrity: sha512-Q04ZaRPuEVZtA+auOYgFaVQQSA98dXiVe/yFaZfY7hoSmQICHGvP0TF4u3EDNHWmmCS4ekA/XSpKlSM2PyTS2g== + } + + "@changesets/get-version-range-type@0.4.0": + resolution: + { + integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ== + } + + "@changesets/git@3.0.4": + resolution: + { + integrity: sha512-BXANzRFkX+XcC1q/d27NKvlJ1yf7PSAgi8JG6dt8EfbHFHi4neau7mufcSca5zRhwOL8j9s6EqsxmT+s+/E6Sw== + } + + "@changesets/logger@0.1.1": + resolution: + { + integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg== + } + + "@changesets/parse@0.4.3": + resolution: + { + integrity: sha512-ZDmNc53+dXdWEv7fqIUSgRQOLYoUom5Z40gmLgmATmYR9NbL6FJJHwakcCpzaeCy+1D0m0n7mT4jj2B/MQPl7A== + } + + "@changesets/pre@2.0.2": + resolution: + { + integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug== + } + + "@changesets/read@0.6.7": + resolution: + { + integrity: sha512-D1G4AUYGrBEk8vj8MGwf75k9GpN6XL3wg8i42P2jZZwFLXnlr2Pn7r9yuQNbaMCarP7ZQWNJbV6XLeysAIMhTA== + } + + "@changesets/should-skip-package@0.1.2": + resolution: + { + integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw== + } + + "@changesets/types@4.1.0": + resolution: + { + integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw== + } + + "@changesets/types@6.1.0": + resolution: + { + integrity: sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA== + } + + "@changesets/write@0.4.0": + resolution: + { + integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q== + } + "@chevrotain/cst-dts-gen@11.0.3": resolution: { @@ -445,6 +574,126 @@ packages: engines: { node: ">=18" } hasBin: true + "@commitlint/cli@19.8.1": + resolution: + { + integrity: sha512-LXUdNIkspyxrlV6VDHWBmCZRtkEVRpBKxi2Gtw3J54cGWhLCTouVD/Q6ZSaSvd2YaDObWK8mDjrz3TIKtaQMAA== + } + engines: { node: ">=v18" } + hasBin: true + + "@commitlint/config-conventional@19.8.1": + resolution: + { + integrity: sha512-/AZHJL6F6B/G959CsMAzrPKKZjeEiAVifRyEwXxcT6qtqbPwGw+iQxmNS+Bu+i09OCtdNRW6pNpBvgPrtMr9EQ== + } + engines: { node: ">=v18" } + + "@commitlint/config-validator@19.8.1": + resolution: + { + integrity: sha512-0jvJ4u+eqGPBIzzSdqKNX1rvdbSU1lPNYlfQQRIFnBgLy26BtC0cFnr7c/AyuzExMxWsMOte6MkTi9I3SQ3iGQ== + } + engines: { node: ">=v18" } + + "@commitlint/ensure@19.8.1": + resolution: + { + integrity: sha512-mXDnlJdvDzSObafjYrOSvZBwkD01cqB4gbnnFuVyNpGUM5ijwU/r/6uqUmBXAAOKRfyEjpkGVZxaDsCVnHAgyw== + } + engines: { node: ">=v18" } + + "@commitlint/execute-rule@19.8.1": + resolution: + { + integrity: sha512-YfJyIqIKWI64Mgvn/sE7FXvVMQER/Cd+s3hZke6cI1xgNT/f6ZAz5heND0QtffH+KbcqAwXDEE1/5niYayYaQA== + } + engines: { node: ">=v18" } + + "@commitlint/format@19.8.1": + resolution: + { + integrity: sha512-kSJj34Rp10ItP+Eh9oCItiuN/HwGQMXBnIRk69jdOwEW9llW9FlyqcWYbHPSGofmjsqeoxa38UaEA5tsbm2JWw== + } + engines: { node: ">=v18" } + + "@commitlint/is-ignored@19.8.1": + resolution: + { + integrity: sha512-AceOhEhekBUQ5dzrVhDDsbMaY5LqtN8s1mqSnT2Kz1ERvVZkNihrs3Sfk1Je/rxRNbXYFzKZSHaPsEJJDJV8dg== + } + engines: { node: ">=v18" } + + "@commitlint/lint@19.8.1": + resolution: + { + integrity: sha512-52PFbsl+1EvMuokZXLRlOsdcLHf10isTPlWwoY1FQIidTsTvjKXVXYb7AvtpWkDzRO2ZsqIgPK7bI98x8LRUEw== + } + engines: { node: ">=v18" } + + "@commitlint/load@19.8.1": + resolution: + { + integrity: sha512-9V99EKG3u7z+FEoe4ikgq7YGRCSukAcvmKQuTtUyiYPnOd9a2/H9Ak1J9nJA1HChRQp9OA/sIKPugGS+FK/k1A== + } + engines: { node: ">=v18" } + + "@commitlint/message@19.8.1": + resolution: + { + integrity: sha512-+PMLQvjRXiU+Ae0Wc+p99EoGEutzSXFVwQfa3jRNUZLNW5odZAyseb92OSBTKCu+9gGZiJASt76Cj3dLTtcTdg== + } + engines: { node: ">=v18" } + + "@commitlint/parse@19.8.1": + resolution: + { + integrity: sha512-mmAHYcMBmAgJDKWdkjIGq50X4yB0pSGpxyOODwYmoexxxiUCy5JJT99t1+PEMK7KtsCtzuWYIAXYAiKR+k+/Jw== + } + engines: { node: ">=v18" } + + "@commitlint/read@19.8.1": + resolution: + { + integrity: sha512-03Jbjb1MqluaVXKHKRuGhcKWtSgh3Jizqy2lJCRbRrnWpcM06MYm8th59Xcns8EqBYvo0Xqb+2DoZFlga97uXQ== + } + engines: { node: ">=v18" } + + "@commitlint/resolve-extends@19.8.1": + resolution: + { + integrity: sha512-GM0mAhFk49I+T/5UCYns5ayGStkTt4XFFrjjf0L4S26xoMTSkdCf9ZRO8en1kuopC4isDFuEm7ZOm/WRVeElVg== + } + engines: { node: ">=v18" } + + "@commitlint/rules@19.8.1": + resolution: + { + integrity: sha512-Hnlhd9DyvGiGwjfjfToMi1dsnw1EXKGJNLTcsuGORHz6SS9swRgkBsou33MQ2n51/boIDrbsg4tIBbRpEWK2kw== + } + engines: { node: ">=v18" } + + "@commitlint/to-lines@19.8.1": + resolution: + { + integrity: sha512-98Mm5inzbWTKuZQr2aW4SReY6WUukdWXuZhrqf1QdKPZBCCsXuG87c+iP0bwtD6DBnmVVQjgp4whoHRVixyPBg== + } + engines: { node: ">=v18" } + + "@commitlint/top-level@19.8.1": + resolution: + { + integrity: sha512-Ph8IN1IOHPSDhURCSXBz44+CIu+60duFwRsg6HqaISFHQHbmBtxVw4ZrFNIYUzEP7WwrNPxa2/5qJ//NK1FGcw== + } + engines: { node: ">=v18" } + + "@commitlint/types@19.8.1": + resolution: + { + integrity: sha512-/yCrWGCoA1SVKOks25EGadP9Pnj0oAIHGpl2wH2M2Y46dPM2ueb8wyCVOD7O3WCTkaJ0IkKvzhl1JY7+uCT2Dw== + } + engines: { node: ">=v18" } + "@docsearch/css@3.9.0": resolution: { @@ -477,6 +726,24 @@ packages: search-insights: optional: true + "@emnapi/core@1.9.0": + resolution: + { + integrity: sha512-0DQ98G9ZQZOxfUcQn1waV2yS8aWdZ6kJMbYCJB3oUBecjWYO1fqJ+a1DRfPF3O5JEkwqwP1A9QEN/9mYm2Yd0w== + } + + "@emnapi/runtime@1.9.0": + resolution: + { + integrity: sha512-QN75eB0IH2ywSpRpNddCRfQIhmJYBCJ1x5Lb3IscKAL8bMnVAKnRg8dCoXbHzVLLH7P38N2Z3mtulB7W0J0FKw== + } + + "@emnapi/wasi-threads@1.2.0": + resolution: + { + integrity: sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg== + } + "@esbuild/aix-ppc64@0.21.5": resolution: { @@ -486,6 +753,15 @@ packages: cpu: [ppc64] os: [aix] + "@esbuild/aix-ppc64@0.25.12": + resolution: + { + integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA== + } + engines: { node: ">=18" } + cpu: [ppc64] + os: [aix] + "@esbuild/aix-ppc64@0.27.3": resolution: { @@ -504,6 +780,15 @@ packages: cpu: [arm64] os: [android] + "@esbuild/android-arm64@0.25.12": + resolution: + { + integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg== + } + engines: { node: ">=18" } + cpu: [arm64] + os: [android] + "@esbuild/android-arm64@0.27.3": resolution: { @@ -522,6 +807,15 @@ packages: cpu: [arm] os: [android] + "@esbuild/android-arm@0.25.12": + resolution: + { + integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg== + } + engines: { node: ">=18" } + cpu: [arm] + os: [android] + "@esbuild/android-arm@0.27.3": resolution: { @@ -540,6 +834,15 @@ packages: cpu: [x64] os: [android] + "@esbuild/android-x64@0.25.12": + resolution: + { + integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg== + } + engines: { node: ">=18" } + cpu: [x64] + os: [android] + "@esbuild/android-x64@0.27.3": resolution: { @@ -558,6 +861,15 @@ packages: cpu: [arm64] os: [darwin] + "@esbuild/darwin-arm64@0.25.12": + resolution: + { + integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg== + } + engines: { node: ">=18" } + cpu: [arm64] + os: [darwin] + "@esbuild/darwin-arm64@0.27.3": resolution: { @@ -576,6 +888,15 @@ packages: cpu: [x64] os: [darwin] + "@esbuild/darwin-x64@0.25.12": + resolution: + { + integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA== + } + engines: { node: ">=18" } + cpu: [x64] + os: [darwin] + "@esbuild/darwin-x64@0.27.3": resolution: { @@ -594,6 +915,15 @@ packages: cpu: [arm64] os: [freebsd] + "@esbuild/freebsd-arm64@0.25.12": + resolution: + { + integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg== + } + engines: { node: ">=18" } + cpu: [arm64] + os: [freebsd] + "@esbuild/freebsd-arm64@0.27.3": resolution: { @@ -612,6 +942,15 @@ packages: cpu: [x64] os: [freebsd] + "@esbuild/freebsd-x64@0.25.12": + resolution: + { + integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ== + } + engines: { node: ">=18" } + cpu: [x64] + os: [freebsd] + "@esbuild/freebsd-x64@0.27.3": resolution: { @@ -630,6 +969,15 @@ packages: cpu: [arm64] os: [linux] + "@esbuild/linux-arm64@0.25.12": + resolution: + { + integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ== + } + engines: { node: ">=18" } + cpu: [arm64] + os: [linux] + "@esbuild/linux-arm64@0.27.3": resolution: { @@ -648,6 +996,15 @@ packages: cpu: [arm] os: [linux] + "@esbuild/linux-arm@0.25.12": + resolution: + { + integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw== + } + engines: { node: ">=18" } + cpu: [arm] + os: [linux] + "@esbuild/linux-arm@0.27.3": resolution: { @@ -666,6 +1023,15 @@ packages: cpu: [ia32] os: [linux] + "@esbuild/linux-ia32@0.25.12": + resolution: + { + integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA== + } + engines: { node: ">=18" } + cpu: [ia32] + os: [linux] + "@esbuild/linux-ia32@0.27.3": resolution: { @@ -684,24 +1050,42 @@ packages: cpu: [loong64] os: [linux] - "@esbuild/linux-loong64@0.27.3": + "@esbuild/linux-loong64@0.25.12": resolution: { - integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA== + integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng== } engines: { node: ">=18" } cpu: [loong64] os: [linux] - "@esbuild/linux-mips64el@0.21.5": + "@esbuild/linux-loong64@0.27.3": resolution: { - integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== + integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA== + } + engines: { node: ">=18" } + cpu: [loong64] + os: [linux] + + "@esbuild/linux-mips64el@0.21.5": + resolution: + { + integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== } engines: { node: ">=12" } cpu: [mips64el] os: [linux] + "@esbuild/linux-mips64el@0.25.12": + resolution: + { + integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw== + } + engines: { node: ">=18" } + cpu: [mips64el] + os: [linux] + "@esbuild/linux-mips64el@0.27.3": resolution: { @@ -720,6 +1104,15 @@ packages: cpu: [ppc64] os: [linux] + "@esbuild/linux-ppc64@0.25.12": + resolution: + { + integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA== + } + engines: { node: ">=18" } + cpu: [ppc64] + os: [linux] + "@esbuild/linux-ppc64@0.27.3": resolution: { @@ -738,6 +1131,15 @@ packages: cpu: [riscv64] os: [linux] + "@esbuild/linux-riscv64@0.25.12": + resolution: + { + integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w== + } + engines: { node: ">=18" } + cpu: [riscv64] + os: [linux] + "@esbuild/linux-riscv64@0.27.3": resolution: { @@ -756,6 +1158,15 @@ packages: cpu: [s390x] os: [linux] + "@esbuild/linux-s390x@0.25.12": + resolution: + { + integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg== + } + engines: { node: ">=18" } + cpu: [s390x] + os: [linux] + "@esbuild/linux-s390x@0.27.3": resolution: { @@ -774,6 +1185,15 @@ packages: cpu: [x64] os: [linux] + "@esbuild/linux-x64@0.25.12": + resolution: + { + integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw== + } + engines: { node: ">=18" } + cpu: [x64] + os: [linux] + "@esbuild/linux-x64@0.27.3": resolution: { @@ -783,6 +1203,15 @@ packages: cpu: [x64] os: [linux] + "@esbuild/netbsd-arm64@0.25.12": + resolution: + { + integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg== + } + engines: { node: ">=18" } + cpu: [arm64] + os: [netbsd] + "@esbuild/netbsd-arm64@0.27.3": resolution: { @@ -801,6 +1230,15 @@ packages: cpu: [x64] os: [netbsd] + "@esbuild/netbsd-x64@0.25.12": + resolution: + { + integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ== + } + engines: { node: ">=18" } + cpu: [x64] + os: [netbsd] + "@esbuild/netbsd-x64@0.27.3": resolution: { @@ -810,6 +1248,15 @@ packages: cpu: [x64] os: [netbsd] + "@esbuild/openbsd-arm64@0.25.12": + resolution: + { + integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A== + } + engines: { node: ">=18" } + cpu: [arm64] + os: [openbsd] + "@esbuild/openbsd-arm64@0.27.3": resolution: { @@ -828,6 +1275,15 @@ packages: cpu: [x64] os: [openbsd] + "@esbuild/openbsd-x64@0.25.12": + resolution: + { + integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw== + } + engines: { node: ">=18" } + cpu: [x64] + os: [openbsd] + "@esbuild/openbsd-x64@0.27.3": resolution: { @@ -837,6 +1293,15 @@ packages: cpu: [x64] os: [openbsd] + "@esbuild/openharmony-arm64@0.25.12": + resolution: + { + integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg== + } + engines: { node: ">=18" } + cpu: [arm64] + os: [openharmony] + "@esbuild/openharmony-arm64@0.27.3": resolution: { @@ -855,6 +1320,15 @@ packages: cpu: [x64] os: [sunos] + "@esbuild/sunos-x64@0.25.12": + resolution: + { + integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w== + } + engines: { node: ">=18" } + cpu: [x64] + os: [sunos] + "@esbuild/sunos-x64@0.27.3": resolution: { @@ -873,6 +1347,15 @@ packages: cpu: [arm64] os: [win32] + "@esbuild/win32-arm64@0.25.12": + resolution: + { + integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg== + } + engines: { node: ">=18" } + cpu: [arm64] + os: [win32] + "@esbuild/win32-arm64@0.27.3": resolution: { @@ -891,6 +1374,15 @@ packages: cpu: [ia32] os: [win32] + "@esbuild/win32-ia32@0.25.12": + resolution: + { + integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ== + } + engines: { node: ">=18" } + cpu: [ia32] + os: [win32] + "@esbuild/win32-ia32@0.27.3": resolution: { @@ -909,6 +1401,15 @@ packages: cpu: [x64] os: [win32] + "@esbuild/win32-x64@0.25.12": + resolution: + { + integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA== + } + engines: { node: ">=18" } + cpu: [x64] + os: [win32] + "@esbuild/win32-x64@0.27.3": resolution: { @@ -918,139 +1419,221 @@ packages: cpu: [x64] os: [win32] - "@eslint-community/eslint-utils@4.9.1": + "@gar/promise-retry@1.0.2": resolution: { - integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ== + integrity: sha512-Lm/ZLhDZcBECta3TmCQSngiQykFdfw+QtI1/GYMsZd4l3nG+P8WLB16XuS7WaBGLQ+9E+cOcWQsth9cayuGt8g== } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + engines: { node: ^20.17.0 || >=22.9.0 } + + "@hono/node-server@1.19.11": + resolution: + { + integrity: sha512-dr8/3zEaB+p0D2n/IUrlPF1HZm586qgJNXK1a9fhg/PzdtkK7Ksd5l312tJX2yBuALqDYBlG20QEbayqPyxn+g== + } + engines: { node: ">=18.14.1" } peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + hono: ^4 - "@eslint-community/regexpp@4.12.2": + "@iconify-json/simple-icons@1.2.71": resolution: { - integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew== + integrity: sha512-rNoDFbq1fAYiEexBvrw613/xiUOPEu5MKVV/X8lI64AgdTzLQUUemr9f9fplxUMPoxCBP2rWzlhOEeTHk/Sf0Q== } - engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } - "@eslint/config-array@0.21.1": + "@iconify/types@2.0.0": resolution: { - integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA== + integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - "@eslint/config-helpers@0.4.2": + "@iconify/utils@2.3.0": resolution: { - integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw== + integrity: sha512-GmQ78prtwYW6EtzXRU1rY+KwOKfz32PD7iJh6Iyqw68GiKuoZ2A6pRtzWONz5VQJbp50mEjXh/7NkumtrAgRKA== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - "@eslint/core@0.17.0": + "@inquirer/ansi@1.0.2": resolution: { - integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ== + integrity: sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + engines: { node: ">=18" } - "@eslint/eslintrc@3.3.3": + "@inquirer/checkbox@4.3.2": resolution: { - integrity: sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ== + integrity: sha512-VXukHf0RR1doGe6Sm4F0Em7SWYLTHSsbGfJdS9Ja2bX5/D5uwVOEjr07cncLROdBvmnvCATYEWlHqYmXv2IlQA== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + engines: { node: ">=18" } + peerDependencies: + "@types/node": ">=18" + peerDependenciesMeta: + "@types/node": + optional: true - "@eslint/js@9.18.0": + "@inquirer/confirm@5.1.21": resolution: { - integrity: sha512-fK6L7rxcq6/z+AaQMtiFTkvbHkBLNlwyRxHpKawP0x3u9+NC6MQTnFW+AdpwC6gfHTW0051cokQgtTN2FqlxQA== + integrity: sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + engines: { node: ">=18" } + peerDependencies: + "@types/node": ">=18" + peerDependenciesMeta: + "@types/node": + optional: true - "@eslint/js@9.39.2": + "@inquirer/core@10.3.2": resolution: { - integrity: sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA== + integrity: sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + engines: { node: ">=18" } + peerDependencies: + "@types/node": ">=18" + peerDependenciesMeta: + "@types/node": + optional: true - "@eslint/object-schema@2.1.7": + "@inquirer/editor@4.2.23": resolution: { - integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA== + integrity: sha512-aLSROkEwirotxZ1pBaP8tugXRFCxW94gwrQLxXfrZsKkfjOYC1aRvAZuhpJOb5cu4IBTJdsCigUlf2iCOu4ZDQ== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + engines: { node: ">=18" } + peerDependencies: + "@types/node": ">=18" + peerDependenciesMeta: + "@types/node": + optional: true - "@eslint/plugin-kit@0.4.1": + "@inquirer/expand@4.0.23": resolution: { - integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA== + integrity: sha512-nRzdOyFYnpeYTTR2qFwEVmIWypzdAx/sIkCMeTNTcflFOovfqUk+HcFhQQVBftAh9gmGrpFj6QcGEqrDMDOiew== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + engines: { node: ">=18" } + peerDependencies: + "@types/node": ">=18" + peerDependenciesMeta: + "@types/node": + optional: true - "@gar/promise-retry@1.0.2": + "@inquirer/external-editor@1.0.3": resolution: { - integrity: sha512-Lm/ZLhDZcBECta3TmCQSngiQykFdfw+QtI1/GYMsZd4l3nG+P8WLB16XuS7WaBGLQ+9E+cOcWQsth9cayuGt8g== + integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA== } - engines: { node: ^20.17.0 || >=22.9.0 } + engines: { node: ">=18" } + peerDependencies: + "@types/node": ">=18" + peerDependenciesMeta: + "@types/node": + optional: true - "@hono/node-server@1.19.11": + "@inquirer/figures@1.0.15": resolution: { - integrity: sha512-dr8/3zEaB+p0D2n/IUrlPF1HZm586qgJNXK1a9fhg/PzdtkK7Ksd5l312tJX2yBuALqDYBlG20QEbayqPyxn+g== + integrity: sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g== } - engines: { node: ">=18.14.1" } + engines: { node: ">=18" } + + "@inquirer/input@4.3.1": + resolution: + { + integrity: sha512-kN0pAM4yPrLjJ1XJBjDxyfDduXOuQHrBB8aLDMueuwUGn+vNpF7Gq7TvyVxx8u4SHlFFj4trmj+a2cbpG4Jn1g== + } + engines: { node: ">=18" } peerDependencies: - hono: ^4 + "@types/node": ">=18" + peerDependenciesMeta: + "@types/node": + optional: true - "@humanfs/core@0.19.1": + "@inquirer/number@3.0.23": resolution: { - integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA== + integrity: sha512-5Smv0OK7K0KUzUfYUXDXQc9jrf8OHo4ktlEayFlelCjwMXz0299Y8OrI+lj7i4gCBY15UObk76q0QtxjzFcFcg== } - engines: { node: ">=18.18.0" } + engines: { node: ">=18" } + peerDependencies: + "@types/node": ">=18" + peerDependenciesMeta: + "@types/node": + optional: true - "@humanfs/node@0.16.7": + "@inquirer/password@4.0.23": resolution: { - integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ== + integrity: sha512-zREJHjhT5vJBMZX/IUbyI9zVtVfOLiTO66MrF/3GFZYZ7T4YILW5MSkEYHceSii/KtRk+4i3RE7E1CUXA2jHcA== } - engines: { node: ">=18.18.0" } + engines: { node: ">=18" } + peerDependencies: + "@types/node": ">=18" + peerDependenciesMeta: + "@types/node": + optional: true - "@humanwhocodes/module-importer@1.0.1": + "@inquirer/prompts@7.10.1": resolution: { - integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== + integrity: sha512-Dx/y9bCQcXLI5ooQ5KyvA4FTgeo2jYj/7plWfV5Ak5wDPKQZgudKez2ixyfz7tKXzcJciTxqLeK7R9HItwiByg== } - engines: { node: ">=12.22" } + engines: { node: ">=18" } + peerDependencies: + "@types/node": ">=18" + peerDependenciesMeta: + "@types/node": + optional: true - "@humanwhocodes/retry@0.4.3": + "@inquirer/rawlist@4.1.11": resolution: { - integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ== + integrity: sha512-+LLQB8XGr3I5LZN/GuAHo+GpDJegQwuPARLChlMICNdwW7OwV2izlCSCxN6cqpL0sMXmbKbFcItJgdQq5EBXTw== } - engines: { node: ">=18.18" } + engines: { node: ">=18" } + peerDependencies: + "@types/node": ">=18" + peerDependenciesMeta: + "@types/node": + optional: true - "@iconify-json/simple-icons@1.2.71": + "@inquirer/search@3.2.2": resolution: { - integrity: sha512-rNoDFbq1fAYiEexBvrw613/xiUOPEu5MKVV/X8lI64AgdTzLQUUemr9f9fplxUMPoxCBP2rWzlhOEeTHk/Sf0Q== + integrity: sha512-p2bvRfENXCZdWF/U2BXvnSI9h+tuA8iNqtUKb9UWbmLYCRQxd8WkvwWvYn+3NgYaNwdUkHytJMGG4MMLucI1kA== } + engines: { node: ">=18" } + peerDependencies: + "@types/node": ">=18" + peerDependenciesMeta: + "@types/node": + optional: true - "@iconify/types@2.0.0": + "@inquirer/select@4.4.2": resolution: { - integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg== + integrity: sha512-l4xMuJo55MAe+N7Qr4rX90vypFwCajSakx59qe/tMaC1aEHWLyw68wF4o0A4SLAY4E0nd+Vt+EyskeDIqu1M6w== } + engines: { node: ">=18" } + peerDependencies: + "@types/node": ">=18" + peerDependenciesMeta: + "@types/node": + optional: true - "@iconify/utils@2.3.0": + "@inquirer/type@3.0.10": resolution: { - integrity: sha512-GmQ78prtwYW6EtzXRU1rY+KwOKfz32PD7iJh6Iyqw68GiKuoZ2A6pRtzWONz5VQJbp50mEjXh/7NkumtrAgRKA== + integrity: sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA== } + engines: { node: ">=18" } + peerDependencies: + "@types/node": ">=18" + peerDependenciesMeta: + "@types/node": + optional: true "@isaacs/cliui@8.0.2": resolution: @@ -1066,159 +1649,524 @@ packages: } engines: { node: ">=18.0.0" } - "@istanbuljs/schema@0.1.3": + "@istanbuljs/schema@0.1.3": + resolution: + { + integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== + } + engines: { node: ">=8" } + + "@jridgewell/gen-mapping@0.3.13": + resolution: + { + integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA== + } + + "@jridgewell/resolve-uri@3.1.2": + resolution: + { + integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== + } + engines: { node: ">=6.0.0" } + + "@jridgewell/sourcemap-codec@1.5.5": + resolution: + { + integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og== + } + + "@jridgewell/trace-mapping@0.3.31": + resolution: + { + integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw== + } + + "@kwsites/file-exists@1.1.1": + resolution: + { + integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw== + } + + "@kwsites/promise-deferred@1.1.1": + resolution: + { + integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw== + } + + "@manypkg/find-root@1.1.0": + resolution: + { + integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA== + } + + "@manypkg/get-packages@1.1.3": + resolution: + { + integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A== + } + + "@mermaid-js/mermaid-mindmap@9.3.0": + resolution: + { + integrity: sha512-IhtYSVBBRYviH1Ehu8gk69pMDF8DSRqXBRDMWrEfHoaMruHeaP2DXA3PBnuwsMaCdPQhlUUcy/7DBLAEIXvCAw== + } + + "@mermaid-js/parser@0.3.0": + resolution: + { + integrity: sha512-HsvL6zgE5sUPGgkIDlmAWR1HTNHz2Iy11BAWPTa4Jjabkpguy4Ze2gzfLrg6pdRuBvFwgUYyxiaNqZwrEEXepA== + } + + "@modelcontextprotocol/sdk@1.27.1": + resolution: + { + integrity: sha512-sr6GbP+4edBwFndLbM60gf07z0FQ79gaExpnsjMGePXqFcSSb7t6iscpjk9DhFhwd+mTEQrzNafGP8/iGGFYaA== + } + engines: { node: ">=18" } + peerDependencies: + "@cfworker/json-schema": ^4.1.1 + zod: ^3.25 || ^4.0 + peerDependenciesMeta: + "@cfworker/json-schema": + optional: true + + "@napi-rs/wasm-runtime@1.1.1": + resolution: + { + integrity: sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A== + } + + "@nodelib/fs.scandir@2.1.5": + resolution: + { + integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + } + engines: { node: ">= 8" } + + "@nodelib/fs.stat@2.0.5": + resolution: + { + integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + } + engines: { node: ">= 8" } + + "@nodelib/fs.walk@1.2.8": + resolution: + { + integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + } + engines: { node: ">= 8" } + + "@npmcli/agent@4.0.0": + resolution: + { + integrity: sha512-kAQTcEN9E8ERLVg5AsGwLNoFb+oEG6engbqAU2P43gD4JEIkNGMHdVQ096FsOAAYpZPB0RSt0zgInKIAS1l5QA== + } + engines: { node: ^20.17.0 || >=22.9.0 } + + "@npmcli/fs@5.0.0": + resolution: + { + integrity: sha512-7OsC1gNORBEawOa5+j2pXN9vsicaIOH5cPXxoR6fJOmH6/EXpJB2CajXOu1fPRFun2m1lktEFX11+P89hqO/og== + } + engines: { node: ^20.17.0 || >=22.9.0 } + + "@npmcli/git@7.0.2": + resolution: + { + integrity: sha512-oeolHDjExNAJAnlYP2qzNjMX/Xi9bmu78C9dIGr4xjobrSKbuMYCph8lTzn4vnW3NjIqVmw/f8BCfouqyJXlRg== + } + engines: { node: ^20.17.0 || >=22.9.0 } + + "@npmcli/installed-package-contents@4.0.0": + resolution: + { + integrity: sha512-yNyAdkBxB72gtZ4GrwXCM0ZUedo9nIbOMKfGjt6Cu6DXf0p8y1PViZAKDC8q8kv/fufx0WTjRBdSlyrvnP7hmA== + } + engines: { node: ^20.17.0 || >=22.9.0 } + hasBin: true + + "@npmcli/node-gyp@5.0.0": + resolution: + { + integrity: sha512-uuG5HZFXLfyFKqg8QypsmgLQW7smiRjVc45bqD/ofZZcR/uxEjgQU8qDPv0s9TEeMUiAAU/GC5bR6++UdTirIQ== + } + engines: { node: ^20.17.0 || >=22.9.0 } + + "@npmcli/package-json@7.0.5": + resolution: + { + integrity: sha512-iVuTlG3ORq2iaVa1IWUxAO/jIp77tUKBhoMjuzYW2kL4MLN1bi/ofqkZ7D7OOwh8coAx1/S2ge0rMdGv8sLSOQ== + } + engines: { node: ^20.17.0 || >=22.9.0 } + + "@npmcli/promise-spawn@9.0.1": + resolution: + { + integrity: sha512-OLUaoqBuyxeTqUvjA3FZFiXUfYC1alp3Sa99gW3EUDz3tZ3CbXDdcZ7qWKBzicrJleIgucoWamWH1saAmH/l2Q== + } + engines: { node: ^20.17.0 || >=22.9.0 } + + "@npmcli/redact@4.0.0": + resolution: + { + integrity: sha512-gOBg5YHMfZy+TfHArfVogwgfBeQnKbbGo3pSUyK/gSI0AVu+pEiDVcKlQb0D8Mg1LNRZILZ6XG8I5dJ4KuAd9Q== + } + engines: { node: ^20.17.0 || >=22.9.0 } + + "@npmcli/run-script@10.0.4": + resolution: + { + integrity: sha512-mGUWr1uMnf0le2TwfOZY4SFxZGXGfm4Jtay/nwAa2FLNAKXUoUwaGwBMNH36UHPtinWfTSJ3nqFQr0091CxVGg== + } + engines: { node: ^20.17.0 || >=22.9.0 } + + "@oxc-resolver/binding-android-arm-eabi@11.19.1": + resolution: + { + integrity: sha512-aUs47y+xyXHUKlbhqHUjBABjvycq6YSD7bpxSW7vplUmdzAlJ93yXY6ZR0c1o1x5A/QKbENCvs3+NlY8IpIVzg== + } + cpu: [arm] + os: [android] + + "@oxc-resolver/binding-android-arm64@11.19.1": + resolution: + { + integrity: sha512-oolbkRX+m7Pq2LNjr/kKgYeC7bRDMVTWPgxBGMjSpZi/+UskVo4jsMU3MLheZV55jL6c3rNelPl4oD60ggYmqA== + } + cpu: [arm64] + os: [android] + + "@oxc-resolver/binding-darwin-arm64@11.19.1": + resolution: + { + integrity: sha512-nUC6d2i3R5B12sUW4O646qD5cnMXf2oBGPLIIeaRfU9doJRORAbE2SGv4eW6rMqhD+G7nf2Y8TTJTLiiO3Q/dQ== + } + cpu: [arm64] + os: [darwin] + + "@oxc-resolver/binding-darwin-x64@11.19.1": + resolution: + { + integrity: sha512-cV50vE5+uAgNcFa3QY1JOeKDSkM/9ReIcc/9wn4TavhW/itkDGrXhw9jaKnkQnGbjJ198Yh5nbX/Gr2mr4Z5jQ== + } + cpu: [x64] + os: [darwin] + + "@oxc-resolver/binding-freebsd-x64@11.19.1": + resolution: + { + integrity: sha512-xZOQiYGFxtk48PBKff+Zwoym7ScPAIVp4c14lfLxizO2LTTTJe5sx9vQNGrBymrf/vatSPNMD4FgsaaRigPkqw== + } + cpu: [x64] + os: [freebsd] + + "@oxc-resolver/binding-linux-arm-gnueabihf@11.19.1": + resolution: + { + integrity: sha512-lXZYWAC6kaGe/ky2su94e9jN9t6M0/6c+GrSlCqL//XO1cxi5lpAhnJYdyrKfm0ZEr/c7RNyAx3P7FSBcBd5+A== + } + cpu: [arm] + os: [linux] + + "@oxc-resolver/binding-linux-arm-musleabihf@11.19.1": + resolution: + { + integrity: sha512-veG1kKsuK5+t2IsO9q0DErYVSw2azvCVvWHnfTOS73WE0STdLLB7Q1bB9WR+yHPQM76ASkFyRbogWo1GR1+WbQ== + } + cpu: [arm] + os: [linux] + + "@oxc-resolver/binding-linux-arm64-gnu@11.19.1": + resolution: + { + integrity: sha512-heV2+jmXyYnUrpUXSPugqWDRpnsQcDm2AX4wzTuvgdlZfoNYO0O3W2AVpJYaDn9AG4JdM6Kxom8+foE7/BcSig== + } + cpu: [arm64] + os: [linux] + libc: [glibc] + + "@oxc-resolver/binding-linux-arm64-musl@11.19.1": + resolution: + { + integrity: sha512-jvo2Pjs1c9KPxMuMPIeQsgu0mOJF9rEb3y3TdpsrqwxRM+AN6/nDDwv45n5ZrUnQMsdBy5gIabioMKnQfWo9ew== + } + cpu: [arm64] + os: [linux] + libc: [musl] + + "@oxc-resolver/binding-linux-ppc64-gnu@11.19.1": + resolution: + { + integrity: sha512-vLmdNxWCdN7Uo5suays6A/+ywBby2PWBBPXctWPg5V0+eVuzsJxgAn6MMB4mPlshskYbppjpN2Zg83ArHze9gQ== + } + cpu: [ppc64] + os: [linux] + libc: [glibc] + + "@oxc-resolver/binding-linux-riscv64-gnu@11.19.1": + resolution: + { + integrity: sha512-/b+WgR+VTSBxzgOhDO7TlMXC1ufPIMR6Vj1zN+/x+MnyXGW7prTLzU9eW85Aj7Th7CCEG9ArCbTeqxCzFWdg2w== + } + cpu: [riscv64] + os: [linux] + libc: [glibc] + + "@oxc-resolver/binding-linux-riscv64-musl@11.19.1": + resolution: + { + integrity: sha512-YlRdeWb9j42p29ROh+h4eg/OQ3dTJlpHSa+84pUM9+p6i3djtPz1q55yLJhgW9XfDch7FN1pQ/Vd6YP+xfRIuw== + } + cpu: [riscv64] + os: [linux] + libc: [musl] + + "@oxc-resolver/binding-linux-s390x-gnu@11.19.1": + resolution: + { + integrity: sha512-EDpafVOQWF8/MJynsjOGFThcqhRHy417sRyLfQmeiamJ8qVhSKAn2Dn2VVKUGCjVB9C46VGjhNo7nOPUi1x6uA== + } + cpu: [s390x] + os: [linux] + libc: [glibc] + + "@oxc-resolver/binding-linux-x64-gnu@11.19.1": + resolution: + { + integrity: sha512-NxjZe+rqWhr+RT8/Ik+5ptA3oz7tUw361Wa5RWQXKnfqwSSHdHyrw6IdcTfYuml9dM856AlKWZIUXDmA9kkiBQ== + } + cpu: [x64] + os: [linux] + libc: [glibc] + + "@oxc-resolver/binding-linux-x64-musl@11.19.1": + resolution: + { + integrity: sha512-cM/hQwsO3ReJg5kR+SpI69DMfvNCp+A/eVR4b4YClE5bVZwz8rh2Nh05InhwI5HR/9cArbEkzMjcKgTHS6UaNw== + } + cpu: [x64] + os: [linux] + libc: [musl] + + "@oxc-resolver/binding-openharmony-arm64@11.19.1": + resolution: + { + integrity: sha512-QF080IowFB0+9Rh6RcD19bdgh49BpQHUW5TajG1qvWHvmrQznTZZjYlgE2ltLXyKY+qs4F/v5xuX1XS7Is+3qA== + } + cpu: [arm64] + os: [openharmony] + + "@oxc-resolver/binding-wasm32-wasi@11.19.1": + resolution: + { + integrity: sha512-w8UCKhX826cP/ZLokXDS6+milN8y4X7zidsAttEdWlVoamTNf6lhBJldaWr3ukTDiye7s4HRcuPEPOXNC432Vg== + } + engines: { node: ">=14.0.0" } + cpu: [wasm32] + + "@oxc-resolver/binding-win32-arm64-msvc@11.19.1": resolution: { - integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== + integrity: sha512-nJ4AsUVZrVKwnU/QRdzPCCrO0TrabBqgJ8pJhXITdZGYOV28TIYystV1VFLbQ7DtAcaBHpocT5/ZJnF78YJPtQ== } - engines: { node: ">=8" } + cpu: [arm64] + os: [win32] - "@jridgewell/gen-mapping@0.3.13": + "@oxc-resolver/binding-win32-ia32-msvc@11.19.1": resolution: { - integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA== + integrity: sha512-EW+ND5q2Tl+a3pH81l1QbfgbF3HmqgwLfDfVithRFheac8OTcnbXt/JxqD2GbDkb7xYEqy1zNaVFRr3oeG8npA== } + cpu: [ia32] + os: [win32] - "@jridgewell/resolve-uri@3.1.2": + "@oxc-resolver/binding-win32-x64-msvc@11.19.1": resolution: { - integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== + integrity: sha512-6hIU3RQu45B+VNTY4Ru8ppFwjVS/S5qwYyGhBotmjxfEKk41I2DlGtRfGJndZ5+6lneE2pwloqunlOyZuX/XAw== } - engines: { node: ">=6.0.0" } + cpu: [x64] + os: [win32] - "@jridgewell/sourcemap-codec@1.5.5": + "@oxlint/binding-android-arm-eabi@1.56.0": resolution: { - integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og== + integrity: sha512-IyfYPthZyiSKwAv/dLjeO18SaK8MxLI9Yss2JrRDyweQAkuL3LhEy7pwIwI7uA3KQc1Vdn20kdmj3q0oUIQL6A== } + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [arm] + os: [android] - "@jridgewell/trace-mapping@0.3.31": + "@oxlint/binding-android-arm64@1.56.0": resolution: { - integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw== + integrity: sha512-Ga5zYrzH6vc/VFxhn6MmyUnYEfy9vRpwTIks99mY3j6Nz30yYpIkWryI0QKPCgvGUtDSXVLEaMum5nA+WrNOSg== } + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [arm64] + os: [android] - "@kwsites/file-exists@1.1.1": + "@oxlint/binding-darwin-arm64@1.56.0": resolution: { - integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw== + integrity: sha512-ogmbdJysnw/D4bDcpf1sPLpFThZ48lYp4aKYm10Z/6Nh1SON6NtnNhTNOlhEY296tDFItsZUz+2tgcSYqh8Eyw== } + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [arm64] + os: [darwin] - "@kwsites/promise-deferred@1.1.1": + "@oxlint/binding-darwin-x64@1.56.0": resolution: { - integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw== + integrity: sha512-x8QE1h+RAtQ2g+3KPsP6Fk/tdz6zJQUv5c7fTrJxXV3GHOo+Ry5p/PsogU4U+iUZg0rj6hS+E4xi+mnwwlDCWQ== } + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [x64] + os: [darwin] - "@mermaid-js/mermaid-mindmap@9.3.0": + "@oxlint/binding-freebsd-x64@1.56.0": resolution: { - integrity: sha512-IhtYSVBBRYviH1Ehu8gk69pMDF8DSRqXBRDMWrEfHoaMruHeaP2DXA3PBnuwsMaCdPQhlUUcy/7DBLAEIXvCAw== + integrity: sha512-6G+WMZvwJpMvY7my+/SHEjb7BTk/PFbePqLpmVmUJRIsJMy/UlyYqjpuh0RCgYYkPLcnXm1rUM04kbTk8yS1Yg== } + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [x64] + os: [freebsd] - "@mermaid-js/parser@0.3.0": + "@oxlint/binding-linux-arm-gnueabihf@1.56.0": resolution: { - integrity: sha512-HsvL6zgE5sUPGgkIDlmAWR1HTNHz2Iy11BAWPTa4Jjabkpguy4Ze2gzfLrg6pdRuBvFwgUYyxiaNqZwrEEXepA== + integrity: sha512-YYHBsk/sl7fYwQOok+6W5lBPeUEvisznV/HZD2IfZmF3Bns6cPC3Z0vCtSEOaAWTjYWN3jVsdu55jMxKlsdlhg== } + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [arm] + os: [linux] - "@modelcontextprotocol/sdk@1.27.1": + "@oxlint/binding-linux-arm-musleabihf@1.56.0": resolution: { - integrity: sha512-sr6GbP+4edBwFndLbM60gf07z0FQ79gaExpnsjMGePXqFcSSb7t6iscpjk9DhFhwd+mTEQrzNafGP8/iGGFYaA== + integrity: sha512-+AZK8rOUr78y8WT6XkDb04IbMRqauNV+vgT6f8ZLOH8wnpQ9i7Nol0XLxAu+Cq7Sb+J9wC0j6Km5hG8rj47/yQ== } - engines: { node: ">=18" } - peerDependencies: - "@cfworker/json-schema": ^4.1.1 - zod: ^3.25 || ^4.0 - peerDependenciesMeta: - "@cfworker/json-schema": - optional: true + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [arm] + os: [linux] - "@nodelib/fs.scandir@2.1.5": + "@oxlint/binding-linux-arm64-gnu@1.56.0": resolution: { - integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + integrity: sha512-urse2SnugwJRojUkGSSeH2LPMaje5Q50yQtvtL9HFckiyeqXzoFwOAZqD5TR29R2lq7UHidfFDM9EGcchcbb8A== } - engines: { node: ">= 8" } + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [arm64] + os: [linux] + libc: [glibc] - "@nodelib/fs.stat@2.0.5": + "@oxlint/binding-linux-arm64-musl@1.56.0": resolution: { - integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + integrity: sha512-rkTZkBfJ4TYLjansjSzL6mgZOdN5IvUnSq3oNJSLwBcNvy3dlgQtpHPrRxrCEbbcp7oQ6If0tkNaqfOsphYZ9g== } - engines: { node: ">= 8" } + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [arm64] + os: [linux] + libc: [musl] - "@nodelib/fs.walk@1.2.8": + "@oxlint/binding-linux-ppc64-gnu@1.56.0": resolution: { - integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + integrity: sha512-uqL1kMH3u69/e1CH2EJhP3CP28jw2ExLsku4o8RVAZ7fySo9zOyI2fy9pVlTAp4voBLVgzndXi3SgtdyCTa2aA== } - engines: { node: ">= 8" } + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [ppc64] + os: [linux] + libc: [glibc] - "@npmcli/agent@4.0.0": + "@oxlint/binding-linux-riscv64-gnu@1.56.0": resolution: { - integrity: sha512-kAQTcEN9E8ERLVg5AsGwLNoFb+oEG6engbqAU2P43gD4JEIkNGMHdVQ096FsOAAYpZPB0RSt0zgInKIAS1l5QA== + integrity: sha512-j0CcMBOgV6KsRaBdsebIeiy7hCjEvq2KdEsiULf2LZqAq0v1M1lWjelhCV57LxsqaIGChXFuFJ0RiFrSRHPhSg== } - engines: { node: ^20.17.0 || >=22.9.0 } + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [riscv64] + os: [linux] + libc: [glibc] - "@npmcli/fs@5.0.0": + "@oxlint/binding-linux-riscv64-musl@1.56.0": resolution: { - integrity: sha512-7OsC1gNORBEawOa5+j2pXN9vsicaIOH5cPXxoR6fJOmH6/EXpJB2CajXOu1fPRFun2m1lktEFX11+P89hqO/og== + integrity: sha512-7VDOiL8cDG3DQ/CY3yKjbV1c4YPvc4vH8qW09Vv+5ukq3l/Kcyr6XGCd5NvxUmxqDb2vjMpM+eW/4JrEEsUetA== } - engines: { node: ^20.17.0 || >=22.9.0 } + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [riscv64] + os: [linux] + libc: [musl] - "@npmcli/git@7.0.2": + "@oxlint/binding-linux-s390x-gnu@1.56.0": resolution: { - integrity: sha512-oeolHDjExNAJAnlYP2qzNjMX/Xi9bmu78C9dIGr4xjobrSKbuMYCph8lTzn4vnW3NjIqVmw/f8BCfouqyJXlRg== + integrity: sha512-JGRpX0M+ikD3WpwJ7vKcHKV6Kg0dT52BW2Eu2BupXotYeqGXBrbY+QPkAyKO6MNgKozyTNaRh3r7g+VWgyAQYQ== } - engines: { node: ^20.17.0 || >=22.9.0 } + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [s390x] + os: [linux] + libc: [glibc] - "@npmcli/installed-package-contents@4.0.0": + "@oxlint/binding-linux-x64-gnu@1.56.0": resolution: { - integrity: sha512-yNyAdkBxB72gtZ4GrwXCM0ZUedo9nIbOMKfGjt6Cu6DXf0p8y1PViZAKDC8q8kv/fufx0WTjRBdSlyrvnP7hmA== + integrity: sha512-dNaICPvtmuxFP/VbqdofrLqdS3bM/AKJN3LMJD52si44ea7Be1cBk6NpfIahaysG9Uo+L98QKddU9CD5L8UHnQ== } - engines: { node: ^20.17.0 || >=22.9.0 } - hasBin: true + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [x64] + os: [linux] + libc: [glibc] - "@npmcli/node-gyp@5.0.0": + "@oxlint/binding-linux-x64-musl@1.56.0": resolution: { - integrity: sha512-uuG5HZFXLfyFKqg8QypsmgLQW7smiRjVc45bqD/ofZZcR/uxEjgQU8qDPv0s9TEeMUiAAU/GC5bR6++UdTirIQ== + integrity: sha512-pF1vOtM+GuXmbklM1hV8WMsn6tCNPvkUzklj/Ej98JhlanbmA2RB1BILgOpwSuCTRTIYx2MXssmEyQQ90QF5aA== } - engines: { node: ^20.17.0 || >=22.9.0 } + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [x64] + os: [linux] + libc: [musl] - "@npmcli/package-json@7.0.5": + "@oxlint/binding-openharmony-arm64@1.56.0": resolution: { - integrity: sha512-iVuTlG3ORq2iaVa1IWUxAO/jIp77tUKBhoMjuzYW2kL4MLN1bi/ofqkZ7D7OOwh8coAx1/S2ge0rMdGv8sLSOQ== + integrity: sha512-bp8NQ4RE6fDIFLa4bdBiOA+TAvkNkg+rslR+AvvjlLTYXLy9/uKAYLQudaQouWihLD/hgkrXIKKzXi5IXOewwg== } - engines: { node: ^20.17.0 || >=22.9.0 } + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [arm64] + os: [openharmony] - "@npmcli/promise-spawn@9.0.1": + "@oxlint/binding-win32-arm64-msvc@1.56.0": resolution: { - integrity: sha512-OLUaoqBuyxeTqUvjA3FZFiXUfYC1alp3Sa99gW3EUDz3tZ3CbXDdcZ7qWKBzicrJleIgucoWamWH1saAmH/l2Q== + integrity: sha512-PxT4OJDfMOQBzo3OlzFb9gkoSD+n8qSBxyVq2wQSZIHFQYGEqIRTo9M0ZStvZm5fdhMqaVYpOnJvH2hUMEDk/g== } - engines: { node: ^20.17.0 || >=22.9.0 } + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [arm64] + os: [win32] - "@npmcli/redact@4.0.0": + "@oxlint/binding-win32-ia32-msvc@1.56.0": resolution: { - integrity: sha512-gOBg5YHMfZy+TfHArfVogwgfBeQnKbbGo3pSUyK/gSI0AVu+pEiDVcKlQb0D8Mg1LNRZILZ6XG8I5dJ4KuAd9Q== + integrity: sha512-PTRy6sIEPqy2x8PTP1baBNReN/BNEFmde0L+mYeHmjXE1Vlcc9+I5nsqENsB2yAm5wLkzPoTNCMY/7AnabT4/A== } - engines: { node: ^20.17.0 || >=22.9.0 } + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [ia32] + os: [win32] - "@npmcli/run-script@10.0.4": + "@oxlint/binding-win32-x64-msvc@1.56.0": resolution: { - integrity: sha512-mGUWr1uMnf0le2TwfOZY4SFxZGXGfm4Jtay/nwAa2FLNAKXUoUwaGwBMNH36UHPtinWfTSJ3nqFQr0091CxVGg== + integrity: sha512-ZHa0clocjLmIDr+1LwoWtxRcoYniAvERotvwKUYKhH41NVfl0Y4LNbyQkwMZzwDvKklKGvGZ5+DAG58/Ik47tQ== } - engines: { node: ^20.17.0 || >=22.9.0 } + engines: { node: ^20.19.0 || >=22.12.0 } + cpu: [x64] + os: [win32] "@pkgjs/parseargs@0.11.0": resolution: @@ -1282,6 +2230,7 @@ packages: } cpu: [arm] os: [linux] + libc: [glibc] "@rollup/rollup-linux-arm-musleabihf@4.57.1": resolution: @@ -1290,6 +2239,7 @@ packages: } cpu: [arm] os: [linux] + libc: [musl] "@rollup/rollup-linux-arm64-gnu@4.57.1": resolution: @@ -1298,6 +2248,7 @@ packages: } cpu: [arm64] os: [linux] + libc: [glibc] "@rollup/rollup-linux-arm64-musl@4.57.1": resolution: @@ -1306,6 +2257,7 @@ packages: } cpu: [arm64] os: [linux] + libc: [musl] "@rollup/rollup-linux-loong64-gnu@4.57.1": resolution: @@ -1314,6 +2266,7 @@ packages: } cpu: [loong64] os: [linux] + libc: [glibc] "@rollup/rollup-linux-loong64-musl@4.57.1": resolution: @@ -1322,6 +2275,7 @@ packages: } cpu: [loong64] os: [linux] + libc: [musl] "@rollup/rollup-linux-ppc64-gnu@4.57.1": resolution: @@ -1330,6 +2284,7 @@ packages: } cpu: [ppc64] os: [linux] + libc: [glibc] "@rollup/rollup-linux-ppc64-musl@4.57.1": resolution: @@ -1338,6 +2293,7 @@ packages: } cpu: [ppc64] os: [linux] + libc: [musl] "@rollup/rollup-linux-riscv64-gnu@4.57.1": resolution: @@ -1346,6 +2302,7 @@ packages: } cpu: [riscv64] os: [linux] + libc: [glibc] "@rollup/rollup-linux-riscv64-musl@4.57.1": resolution: @@ -1354,6 +2311,7 @@ packages: } cpu: [riscv64] os: [linux] + libc: [musl] "@rollup/rollup-linux-s390x-gnu@4.57.1": resolution: @@ -1362,6 +2320,7 @@ packages: } cpu: [s390x] os: [linux] + libc: [glibc] "@rollup/rollup-linux-x64-gnu@4.57.1": resolution: @@ -1370,6 +2329,7 @@ packages: } cpu: [x64] os: [linux] + libc: [glibc] "@rollup/rollup-linux-x64-musl@4.57.1": resolution: @@ -1378,6 +2338,7 @@ packages: } cpu: [x64] os: [linux] + libc: [musl] "@rollup/rollup-openbsd-x64@4.57.1": resolution: @@ -1552,6 +2513,7 @@ packages: engines: { node: ">=10" } cpu: [arm64] os: [linux] + libc: [glibc] "@swc/core-linux-arm64-musl@1.15.11": resolution: @@ -1561,6 +2523,7 @@ packages: engines: { node: ">=10" } cpu: [arm64] os: [linux] + libc: [musl] "@swc/core-linux-x64-gnu@1.15.11": resolution: @@ -1570,6 +2533,7 @@ packages: engines: { node: ">=10" } cpu: [x64] os: [linux] + libc: [glibc] "@swc/core-linux-x64-musl@1.15.11": resolution: @@ -1579,6 +2543,7 @@ packages: engines: { node: ">=10" } cpu: [x64] os: [linux] + libc: [musl] "@swc/core-win32-arm64-msvc@1.15.11": resolution: @@ -1631,16 +2596,10 @@ packages: integrity: sha512-iAoY/qRhNH8a/hBvm3zKj9qQ4oc2+3w1unPJa2XvTK3XjeLXtzcCingVPw/9e5mn1+0yPqxcBGp9Jf0pkfMb1g== } - "@tsconfig/node22@22.0.0": - resolution: - { - integrity: sha512-twLQ77zevtxobBOD4ToAtVmuYrpeYUh3qh+TEp+08IWhpsrIflVHqQ1F1CiPxQGL7doCdBIOOCF+1Tm833faNg== - } - - "@tsconfig/strictest@2.0.5": + "@tsconfig/node22@22.0.5": resolution: { - integrity: sha512-ec4tjL2Rr0pkZ5hww65c+EEPYwxOi4Ryv+0MtjeaSQRJyq322Q27eOQiFbuNgw2hpL4hB1/W/HBGk3VKS43osg== + integrity: sha512-hLf2ld+sYN/BtOJjHUWOk568dvjFQkHnLNa6zce25GIH+vxKfvTgm3qpaH6ToF5tu/NN0IH66s+Bb5wElHrLcw== } "@tufjs/canonical-json@2.0.0": @@ -1657,12 +2616,31 @@ packages: } engines: { node: ^20.17.0 || >=22.9.0 } + "@turbo/gen@2.8.17": + resolution: + { + integrity: sha512-VMVaPhhc8vDTXZ1Ndkca0vRFjvoQvS8lqRXbFkuTVUkDbwX6UwqzTyySJErReWnS/VbHxAPnbJSqtsxGDurzMQ== + } + hasBin: true + + "@tybys/wasm-util@0.10.1": + resolution: + { + integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg== + } + "@types/chai@5.2.3": resolution: { integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA== } + "@types/conventional-commits-parser@5.0.2": + resolution: + { + integrity: sha512-BgT2szDXnVypgpNxOK8aL5SGjUdaQbC++WZNjF1Qge3Og2+zhHj+RWhmehLhYyvQwqAmvezruVfOf8+3m74W+g== + } + "@types/d3-array@3.2.2": resolution: { @@ -1777,321 +2755,155 @@ packages: integrity: sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA== } - "@types/d3-quadtree@3.0.6": - resolution: - { - integrity: sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg== - } - - "@types/d3-random@3.0.3": - resolution: - { - integrity: sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ== - } - - "@types/d3-scale-chromatic@3.1.0": - resolution: - { - integrity: sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ== - } - - "@types/d3-scale@4.0.9": - resolution: - { - integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw== - } - - "@types/d3-selection@3.0.11": - resolution: - { - integrity: sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w== - } - - "@types/d3-shape@3.1.8": - resolution: - { - integrity: sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w== - } - - "@types/d3-time-format@4.0.3": - resolution: - { - integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg== - } - - "@types/d3-time@3.0.4": - resolution: - { - integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g== - } - - "@types/d3-timer@3.0.2": - resolution: - { - integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw== - } - - "@types/d3-transition@3.0.9": - resolution: - { - integrity: sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg== - } - - "@types/d3-zoom@3.0.8": - resolution: - { - integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw== - } - - "@types/d3@7.4.3": - resolution: - { - integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww== - } - - "@types/deep-eql@4.0.2": - resolution: - { - integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw== - } - - "@types/eslint-config-prettier@6.11.3": - resolution: - { - integrity: sha512-3wXCiM8croUnhg9LdtZUJQwNcQYGWxxdOWDjPe1ykCqJFPVpzAKfs/2dgSoCtAvdPeaponcWPI7mPcGGp9dkKQ== - } - - "@types/estree@1.0.8": - resolution: - { - integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w== - } - - "@types/geojson@7946.0.16": - resolution: - { - integrity: sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg== - } - - "@types/hast@3.0.4": - resolution: - { - integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ== - } - - "@types/json-schema@7.0.15": - resolution: - { - integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== - } - - "@types/linkify-it@5.0.0": - resolution: - { - integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q== - } - - "@types/markdown-it@14.1.2": + "@types/d3-quadtree@3.0.6": resolution: { - integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog== + integrity: sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg== } - "@types/mdast@4.0.4": + "@types/d3-random@3.0.3": resolution: { - integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA== + integrity: sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ== } - "@types/mdurl@2.0.0": + "@types/d3-scale-chromatic@3.1.0": resolution: { - integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg== + integrity: sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ== } - "@types/node@22.19.11": + "@types/d3-scale@4.0.9": resolution: { - integrity: sha512-BH7YwL6rA93ReqeQS1c4bsPpcfOmJasG+Fkr6Y59q83f9M1WcBRHR2vM+P9eOisYRcN3ujQoiZY8uk5W+1WL8w== + integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw== } - "@types/trusted-types@2.0.7": + "@types/d3-selection@3.0.11": resolution: { - integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw== + integrity: sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w== } - "@types/unist@3.0.3": + "@types/d3-shape@3.1.8": resolution: { - integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q== + integrity: sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w== } - "@types/web-bluetooth@0.0.21": + "@types/d3-time-format@4.0.3": resolution: { - integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA== + integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg== } - "@typescript-eslint/eslint-plugin@8.21.0": + "@types/d3-time@3.0.4": resolution: { - integrity: sha512-eTH+UOR4I7WbdQnG4Z48ebIA6Bgi7WO8HvFEneeYBxG8qCOYgTOFPSg6ek9ITIDvGjDQzWHcoWHCDO2biByNzA== + integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - peerDependencies: - "@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0 - eslint: ^8.57.0 || ^9.0.0 - typescript: ">=4.8.4 <5.8.0" - "@typescript-eslint/eslint-plugin@8.56.0": + "@types/d3-timer@3.0.2": resolution: { - integrity: sha512-lRyPDLzNCuae71A3t9NEINBiTn7swyOhvUj3MyUOxb8x6g6vPEFoOU+ZRmGMusNC3X3YMhqMIX7i8ShqhT74Pw== + integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - peerDependencies: - "@typescript-eslint/parser": ^8.56.0 - eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 - typescript: ">=4.8.4 <6.0.0" - "@typescript-eslint/parser@8.21.0": + "@types/d3-transition@3.0.9": resolution: { - integrity: sha512-Wy+/sdEH9kI3w9civgACwabHbKl+qIOu0uFZ9IMKzX3Jpv9og0ZBJrZExGrPpFAY7rWsXuxs5e7CPPP17A4eYA== + integrity: sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: ">=4.8.4 <5.8.0" - "@typescript-eslint/parser@8.56.0": + "@types/d3-zoom@3.0.8": resolution: { - integrity: sha512-IgSWvLobTDOjnaxAfDTIHaECbkNlAlKv2j5SjpB2v7QHKv1FIfjwMy8FsDbVfDX/KjmCmYICcw7uGaXLhtsLNg== + integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 - typescript: ">=4.8.4 <6.0.0" - "@typescript-eslint/project-service@8.56.0": + "@types/d3@7.4.3": resolution: { - integrity: sha512-M3rnyL1vIQOMeWxTWIW096/TtVP+8W3p/XnaFflhmcFp+U4zlxUxWj4XwNs6HbDeTtN4yun0GNTTDBw/SvufKg== + integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - peerDependencies: - typescript: ">=4.8.4 <6.0.0" - "@typescript-eslint/scope-manager@8.21.0": + "@types/deep-eql@4.0.2": resolution: { - integrity: sha512-G3IBKz0/0IPfdeGRMbp+4rbjfSSdnGkXsM/pFZA8zM9t9klXDnB/YnKOBQ0GoPmoROa4bCq2NeHgJa5ydsQ4mA== + integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - "@typescript-eslint/scope-manager@8.56.0": + "@types/estree@1.0.8": resolution: { - integrity: sha512-7UiO/XwMHquH+ZzfVCfUNkIXlp/yQjjnlYUyYz7pfvlK3/EyyN6BK+emDmGNyQLBtLGaYrTAI6KOw8tFucWL2w== + integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - "@typescript-eslint/tsconfig-utils@8.56.0": + "@types/geojson@7946.0.16": resolution: { - integrity: sha512-bSJoIIt4o3lKXD3xmDh9chZcjCz5Lk8xS7Rxn+6l5/pKrDpkCwtQNQQwZ2qRPk7TkUYhrq3WPIHXOXlbXP0itg== + integrity: sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - peerDependencies: - typescript: ">=4.8.4 <6.0.0" - "@typescript-eslint/type-utils@8.21.0": + "@types/hast@3.0.4": resolution: { - integrity: sha512-95OsL6J2BtzoBxHicoXHxgk3z+9P3BEcQTpBKriqiYzLKnM2DeSqs+sndMKdamU8FosiadQFT3D+BSL9EKnAJQ== + integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: ">=4.8.4 <5.8.0" - "@typescript-eslint/type-utils@8.56.0": + "@types/linkify-it@5.0.0": resolution: { - integrity: sha512-qX2L3HWOU2nuDs6GzglBeuFXviDODreS58tLY/BALPC7iu3Fa+J7EOTwnX9PdNBxUI7Uh0ntP0YWGnxCkXzmfA== + integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 - typescript: ">=4.8.4 <6.0.0" - "@typescript-eslint/types@8.21.0": + "@types/markdown-it@14.1.2": resolution: { - integrity: sha512-PAL6LUuQwotLW2a8VsySDBwYMm129vFm4tMVlylzdoTybTHaAi0oBp7Ac6LhSrHHOdLM3efH+nAR6hAWoMF89A== + integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - "@typescript-eslint/types@8.56.0": + "@types/mdast@4.0.4": resolution: { - integrity: sha512-DBsLPs3GsWhX5HylbP9HNG15U0bnwut55Lx12bHB9MpXxQ+R5GC8MwQe+N1UFXxAeQDvEsEDY6ZYwX03K7Z6HQ== + integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - "@typescript-eslint/typescript-estree@8.21.0": + "@types/mdurl@2.0.0": resolution: { - integrity: sha512-x+aeKh/AjAArSauz0GiQZsjT8ciadNMHdkUSwBB9Z6PrKc/4knM4g3UfHml6oDJmKC88a6//cdxnO/+P2LkMcg== + integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - peerDependencies: - typescript: ">=4.8.4 <5.8.0" - "@typescript-eslint/typescript-estree@8.56.0": + "@types/node@12.20.55": resolution: { - integrity: sha512-ex1nTUMWrseMltXUHmR2GAQ4d+WjkZCT4f+4bVsps8QEdh0vlBsaCokKTPlnqBFqqGaxilDNJG7b8dolW2m43Q== + integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - peerDependencies: - typescript: ">=4.8.4 <6.0.0" - "@typescript-eslint/utils@8.21.0": + "@types/node@22.19.11": resolution: { - integrity: sha512-xcXBfcq0Kaxgj7dwejMbFyq7IOHgpNMtVuDveK7w3ZGwG9owKzhALVwKpTF2yrZmEwl9SWdetf3fxNzJQaVuxw== + integrity: sha512-BH7YwL6rA93ReqeQS1c4bsPpcfOmJasG+Fkr6Y59q83f9M1WcBRHR2vM+P9eOisYRcN3ujQoiZY8uk5W+1WL8w== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: ">=4.8.4 <5.8.0" - "@typescript-eslint/utils@8.56.0": + "@types/trusted-types@2.0.7": resolution: { - integrity: sha512-RZ3Qsmi2nFGsS+n+kjLAYDPVlrzf7UhTffrDIKr+h2yzAlYP/y5ZulU0yeDEPItos2Ph46JAL5P/On3pe7kDIQ== + integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 - typescript: ">=4.8.4 <6.0.0" - "@typescript-eslint/visitor-keys@8.21.0": + "@types/unist@3.0.3": resolution: { - integrity: sha512-BkLMNpdV6prozk8LlyK/SOoWLmUFi+ZD+pcqti9ILCbVvHGk1ui1g4jJOc2WDLaeExz2qWwojxlPce5PljcT3w== + integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - "@typescript-eslint/visitor-keys@8.56.0": + "@types/web-bluetooth@0.0.21": resolution: { - integrity: sha512-q+SL+b+05Ud6LbEE35qe4A99P+htKTKVbyiNEe45eCbJFyh/HVK9QXwlrbz+Q4L8SOW4roxSVwXYj4DMBT7Ieg== + integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } "@ungap/structured-clone@1.3.0": resolution: @@ -2307,6 +3119,13 @@ packages: integrity: sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w== } + JSONStream@1.3.5: + resolution: + { + integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + } + hasBin: true + abbrev@4.0.0: resolution: { @@ -2321,14 +3140,6 @@ packages: } engines: { node: ">= 0.6" } - acorn-jsx@5.3.2: - resolution: - { - integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== - } - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - acorn@8.16.0: resolution: { @@ -2362,12 +3173,6 @@ packages: ajv: optional: true - ajv@6.12.6: - resolution: - { - integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== - } - ajv@8.18.0: resolution: { @@ -2381,6 +3186,13 @@ packages: } engines: { node: ">= 14.0.0" } + ansi-colors@4.1.3: + resolution: + { + integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== + } + engines: { node: ">=6" } + ansi-escapes@7.3.0: resolution: { @@ -2416,12 +3228,11 @@ packages: } engines: { node: ">=12" } - anymatch@3.1.3: + any-promise@1.3.0: resolution: { - integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== } - engines: { node: ">= 8" } argparse@1.0.10: resolution: @@ -2435,6 +3246,19 @@ packages: integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== } + array-ify@1.0.0: + resolution: + { + integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== + } + + array-union@2.1.0: + resolution: + { + integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + } + engines: { node: ">=8" } + assertion-error@2.0.1: resolution: { @@ -2461,12 +3285,12 @@ packages: } engines: { node: 20 || >=22 } - binary-extensions@2.3.0: + better-path-resolve@1.0.0: resolution: { - integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== + integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g== } - engines: { node: ">=8" } + engines: { node: ">=4" } birpc@2.9.0: resolution: @@ -2481,12 +3305,6 @@ packages: } engines: { node: ">=18" } - brace-expansion@1.1.12: - resolution: - { - integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg== - } - brace-expansion@2.0.2: resolution: { @@ -2507,6 +3325,15 @@ packages: } engines: { node: ">=8" } + bundle-require@5.1.0: + resolution: + { + integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA== + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + peerDependencies: + esbuild: ">=0.18" + bytes@3.1.2: resolution: { @@ -2562,13 +3389,6 @@ packages: } engines: { node: ">=18" } - chalk@4.1.2: - resolution: - { - integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== - } - engines: { node: ">=10" } - chalk@5.6.2: resolution: { @@ -2588,6 +3408,12 @@ packages: integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ== } + chardet@2.1.1: + resolution: + { + integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ== + } + check-error@2.1.3: resolution: { @@ -2609,12 +3435,12 @@ packages: integrity: sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw== } - chokidar@3.6.0: + chokidar@4.0.3: resolution: { - integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== + integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA== } - engines: { node: ">= 8.10.0" } + engines: { node: ">= 14.16.0" } chownr@3.0.0: resolution: @@ -2630,12 +3456,26 @@ packages: } engines: { node: ">=18" } - cli-truncate@4.0.0: + cli-truncate@5.2.0: resolution: { - integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA== + integrity: sha512-xRwvIOMGrfOAnM1JYtqQImuaNtDEv9v6oIYAs4LIHwTiKee8uwvIi363igssOC0O5U04i4AlENs79LQLu9tEMw== } - engines: { node: ">=18" } + engines: { node: ">=20" } + + cli-width@4.1.0: + resolution: + { + integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ== + } + engines: { node: ">= 12" } + + cliui@8.0.1: + resolution: + { + integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== + } + engines: { node: ">=12" } color-convert@2.0.1: resolution: @@ -2669,12 +3509,19 @@ packages: } engines: { node: ">=18" } - commander@13.1.0: + commander@14.0.3: resolution: { - integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw== + integrity: sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw== } - engines: { node: ">=18" } + engines: { node: ">=20" } + + commander@4.1.1: + resolution: + { + integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + } + engines: { node: ">= 6" } commander@7.2.0: resolution: @@ -2690,10 +3537,10 @@ packages: } engines: { node: ">= 12" } - concat-map@0.0.1: + compare-func@2.0.0: resolution: { - integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA== } confbox@0.1.8: @@ -2708,6 +3555,13 @@ packages: integrity: sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ== } + consola@3.4.2: + resolution: + { + integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA== + } + engines: { node: ^14.18.0 || >=16.10.0 } + content-disposition@1.0.1: resolution: { @@ -2722,6 +3576,28 @@ packages: } engines: { node: ">= 0.6" } + conventional-changelog-angular@7.0.0: + resolution: + { + integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ== + } + engines: { node: ">=16" } + + conventional-changelog-conventionalcommits@7.0.2: + resolution: + { + integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w== + } + engines: { node: ">=16" } + + conventional-commits-parser@5.0.0: + resolution: + { + integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA== + } + engines: { node: ">=16" } + hasBin: true + cookie-signature@1.2.2: resolution: { @@ -2762,6 +3638,29 @@ packages: integrity: sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g== } + cosmiconfig-typescript-loader@6.2.0: + resolution: + { + integrity: sha512-GEN39v7TgdxgIoNcdkRE3uiAzQt3UXLyHbRHD6YoL048XAeOomyxaP+Hh/+2C6C2wYjxJ2onhJcsQp+L4YEkVQ== + } + engines: { node: ">=v18" } + peerDependencies: + "@types/node": "*" + cosmiconfig: ">=9" + typescript: ">=5" + + cosmiconfig@9.0.1: + resolution: + { + integrity: sha512-hr4ihw+DBqcvrsEDioRO31Z17x71pUYoNe/4h6Z0wB72p7MU7/9gH8Q3s12NFhHPfYBBOV3qyfUxmr/Yn3shnQ== + } + engines: { node: ">=14" } + peerDependencies: + typescript: ">=4.9.5" + peerDependenciesMeta: + typescript: + optional: true + cross-spawn@7.0.6: resolution: { @@ -3048,6 +3947,13 @@ packages: integrity: sha512-tvlJLyQf834SylNKax8Wkzco/1ias1OPw8DcUMDE7oUIoSEW25riQVuiu/0OWEFqT0cxHT3Pa9/D82Jr47IONw== } + dargs@8.1.0: + resolution: + { + integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw== + } + engines: { node: ">=12" } + dayjs@1.11.13: resolution: { @@ -3085,12 +3991,6 @@ packages: } engines: { node: ">=6" } - deep-is@0.1.4: - resolution: - { - integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== - } - delaunator@5.0.1: resolution: { @@ -3111,18 +4011,39 @@ packages: } engines: { node: ">=6" } + detect-indent@6.1.0: + resolution: + { + integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== + } + engines: { node: ">=8" } + devlop@1.1.0: resolution: { integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA== } + dir-glob@3.0.1: + resolution: + { + integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + } + engines: { node: ">=8" } + dompurify@3.3.1: resolution: { integrity: sha512-qkdCKzLNtrgPFP1Vo+98FRzJnBRGe4ffyCea9IwHB1fyxPOeNTHpLKYGd4Uk9xvNoH0ZoOjwZxNptyMwqrId1Q== } + dot-prop@5.3.0: + resolution: + { + integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== + } + engines: { node: ">=8" } + dunder-proto@1.0.1: resolution: { @@ -3173,6 +4094,13 @@ packages: } engines: { node: ">= 0.8" } + enquirer@2.4.1: + resolution: + { + integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ== + } + engines: { node: ">=8.6" } + entities@7.0.1: resolution: { @@ -3200,6 +4128,12 @@ packages: integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== } + error-ex@1.3.4: + resolution: + { + integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ== + } + es-define-property@1.0.1: resolution: { @@ -3235,112 +4169,42 @@ packages: engines: { node: ">=12" } hasBin: true - esbuild@0.27.3: - resolution: - { - integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg== - } - engines: { node: ">=18" } - hasBin: true - - escape-html@1.0.3: - resolution: - { - integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== - } - - escape-string-regexp@4.0.0: - resolution: - { - integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== - } - engines: { node: ">=10" } - - eslint-config-prettier@10.1.8: - resolution: - { - integrity: sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w== - } - hasBin: true - peerDependencies: - eslint: ">=7.0.0" - - eslint-scope@8.4.0: - resolution: - { - integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg== - } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - - eslint-visitor-keys@3.4.3: - resolution: - { - integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - - eslint-visitor-keys@4.2.1: - resolution: - { - integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ== - } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - - eslint-visitor-keys@5.0.0: - resolution: - { - integrity: sha512-A0XeIi7CXU7nPlfHS9loMYEKxUaONu/hTEzHTGba9Huu94Cq1hPivf+DE5erJozZOky0LfvXAyrV/tcswpLI0Q== - } - engines: { node: ^20.19.0 || ^22.13.0 || >=24 } - - eslint@9.39.2: - resolution: - { - integrity: sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw== - } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - hasBin: true - peerDependencies: - jiti: "*" - peerDependenciesMeta: - jiti: - optional: true - - espree@10.4.0: + esbuild@0.25.12: resolution: { - integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ== + integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + engines: { node: ">=18" } + hasBin: true - esprima@4.0.1: + esbuild@0.27.3: resolution: { - integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg== } - engines: { node: ">=4" } + engines: { node: ">=18" } hasBin: true - esquery@1.7.0: + escalade@3.2.0: resolution: { - integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g== + integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== } - engines: { node: ">=0.10" } + engines: { node: ">=6" } - esrecurse@4.3.0: + escape-html@1.0.3: resolution: { - integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== } - engines: { node: ">=4.0" } - estraverse@5.3.0: + esprima@4.0.1: resolution: { - integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== } - engines: { node: ">=4.0" } + engines: { node: ">=4" } + hasBin: true estree-walker@2.0.2: resolution: @@ -3354,13 +4218,6 @@ packages: integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g== } - esutils@2.0.3: - resolution: - { - integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - } - engines: { node: ">=0.10.0" } - etag@1.8.1: resolution: { @@ -3388,13 +4245,6 @@ packages: } engines: { node: ">=18.0.0" } - execa@8.0.1: - resolution: - { - integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg== - } - engines: { node: ">=16.17" } - expect-type@1.3.0: resolution: { @@ -3437,6 +4287,12 @@ packages: } engines: { node: ">=0.10.0" } + extendable-error@0.1.7: + resolution: + { + integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg== + } + fast-deep-equal@3.1.3: resolution: { @@ -3450,18 +4306,6 @@ packages: } engines: { node: ">=8.6.0" } - fast-json-stable-stringify@2.1.0: - resolution: - { - integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - } - - fast-levenshtein@2.0.6: - resolution: - { - integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== - } - fast-uri@3.1.0: resolution: { @@ -3474,6 +4318,12 @@ packages: integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw== } + fd-package-json@2.0.0: + resolution: + { + integrity: sha512-jKmm9YtsNXN789RS/0mSzOC1NUq9mkVd65vbSSVsKdjGvYXBuE4oWe2QOEoFeRmJg+lPuZxpmrfFclNhoRMneQ== + } + fdir@6.5.0: resolution: { @@ -3486,13 +4336,6 @@ packages: picomatch: optional: true - file-entry-cache@8.0.0: - resolution: - { - integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ== - } - engines: { node: ">=16.0.0" } - fill-range@7.1.1: resolution: { @@ -3507,24 +4350,24 @@ packages: } engines: { node: ">= 18.0.0" } - find-up@5.0.0: + find-up@4.1.0: resolution: { - integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== } - engines: { node: ">=10" } + engines: { node: ">=8" } - flat-cache@4.0.1: + find-up@7.0.0: resolution: { - integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw== + integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g== } - engines: { node: ">=16" } + engines: { node: ">=18" } - flatted@3.3.3: + fix-dts-default-cjs-exports@1.0.1: resolution: { - integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg== + integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg== } focus-trap@7.8.0: @@ -3540,6 +4383,14 @@ packages: } engines: { node: ">=14" } + formatly@0.3.0: + resolution: + { + integrity: sha512-9XNj/o4wrRFyhSMJOvsuyMwy8aUfBaZ1VrqHVfohyXf0Sw0e+yfKG+xZaY3arGCOMdwFsqObtzVOc1gU9KiT9w== + } + engines: { node: ">=18.3.0" } + hasBin: true + forwarded@0.2.0: resolution: { @@ -3554,6 +4405,20 @@ packages: } engines: { node: ">= 0.8" } + fs-extra@7.0.1: + resolution: + { + integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== + } + engines: { node: ">=6 <7 || >=8" } + + fs-extra@8.1.0: + resolution: + { + integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== + } + engines: { node: ">=6 <7 || >=8" } + fs-minipass@3.0.3: resolution: { @@ -3575,6 +4440,13 @@ packages: integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== } + get-caller-file@2.0.5: + resolution: + { + integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + } + engines: { node: 6.* || 8.* || >= 10.* } + get-east-asian-width@1.5.0: resolution: { @@ -3596,26 +4468,27 @@ packages: } engines: { node: ">= 0.4" } - get-stream@8.0.1: + get-tsconfig@4.13.6: resolution: { - integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA== + integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw== } - engines: { node: ">=16" } - glob-parent@5.1.2: + git-raw-commits@4.0.0: resolution: { - integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ== } - engines: { node: ">= 6" } + engines: { node: ">=16" } + deprecated: This package is no longer maintained. For the JavaScript API, please use @conventional-changelog/git-client instead. + hasBin: true - glob-parent@6.0.2: + glob-parent@5.1.2: resolution: { - integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== } - engines: { node: ">=10.13.0" } + engines: { node: ">= 6" } glob@10.5.0: resolution: @@ -3632,10 +4505,10 @@ packages: } engines: { node: 20 || >=22 } - globals@14.0.0: + global-directory@4.0.1: resolution: { - integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ== + integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q== } engines: { node: ">=18" } @@ -3646,6 +4519,13 @@ packages: } engines: { node: ">=18" } + globby@11.1.0: + resolution: + { + integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + } + engines: { node: ">=10" } + gopd@1.2.0: resolution: { @@ -3659,12 +4539,6 @@ packages: integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== } - graphemer@1.4.0: - resolution: - { - integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== - } - gray-matter@4.0.3: resolution: { @@ -3678,13 +4552,6 @@ packages: integrity: sha512-3GKBOn+m2LX9iq+JC1064cSFprJY4jL1jCXTcpnfER5HYE2l/4EfWSGzkPa/ZDBmYI0ZOEj5VHV/eKnPGkHuOg== } - has-flag@3.0.0: - resolution: - { - integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== - } - engines: { node: ">=4" } - has-flag@4.0.0: resolution: { @@ -3777,12 +4644,12 @@ packages: } engines: { node: ">= 14" } - human-signals@5.0.0: + human-id@4.1.3: resolution: { - integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ== + integrity: sha512-tsYlhAYpjCKa//8rXZ9DqKEawhPoSytweBC2eNvcaDK+57RZLHGqNs3PZTQO6yekLFSuvA6AlnAfrw1uBvtb+Q== } - engines: { node: ">=16.17.0" } + hasBin: true husky@9.1.7: resolution: @@ -3806,12 +4673,6 @@ packages: } engines: { node: ">=0.10.0" } - ignore-by-default@1.0.1: - resolution: - { - integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA== - } - ignore-walk@8.0.0: resolution: { @@ -3826,19 +4687,18 @@ packages: } engines: { node: ">= 4" } - ignore@7.0.5: + import-fresh@3.3.1: resolution: { - integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg== + integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ== } - engines: { node: ">= 4" } + engines: { node: ">=6" } - import-fresh@3.3.1: + import-meta-resolve@4.2.0: resolution: { - integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ== + integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg== } - engines: { node: ">=6" } imurmurhash@0.1.4: resolution: @@ -3853,6 +4713,13 @@ packages: integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== } + ini@4.1.1: + resolution: + { + integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g== + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + ini@6.0.0: resolution: { @@ -3887,12 +4754,11 @@ packages: } engines: { node: ">= 0.10" } - is-binary-path@2.1.0: + is-arrayish@0.2.1: resolution: { - integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== } - engines: { node: ">=8" } is-extendable@0.1.1: resolution: @@ -3915,13 +4781,6 @@ packages: } engines: { node: ">=8" } - is-fullwidth-code-point@4.0.0: - resolution: - { - integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== - } - engines: { node: ">=12" } - is-fullwidth-code-point@5.1.0: resolution: { @@ -3943,18 +4802,32 @@ packages: } engines: { node: ">=0.12.0" } + is-obj@2.0.0: + resolution: + { + integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== + } + engines: { node: ">=8" } + is-promise@4.0.0: resolution: { integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ== } - is-stream@3.0.0: + is-subdir@1.2.0: resolution: { - integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== + integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + engines: { node: ">=4" } + + is-text-path@2.0.0: + resolution: + { + integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw== + } + engines: { node: ">=8" } is-what@5.5.0: resolution: @@ -3963,6 +4836,13 @@ packages: } engines: { node: ">=18" } + is-windows@1.0.2: + resolution: + { + integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + } + engines: { node: ">=0.10.0" } + isexe@2.0.0: resolution: { @@ -4010,18 +4890,38 @@ packages: integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw== } + jiti@2.6.1: + resolution: + { + integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ== + } + hasBin: true + jose@6.2.1: resolution: { integrity: sha512-jUaKr1yrbfaImV7R2TN/b3IcZzsw38/chqMpo2XJ7i2F8AfM/lA4G1goC3JVEwg0H7UldTmSt3P68nt31W7/mw== } + joycon@3.1.1: + resolution: + { + integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw== + } + engines: { node: ">=10" } + js-tokens@10.0.0: resolution: { integrity: sha512-lM/UBzQmfJRo9ABXbPWemivdCW8V2G8FHaHdypQaIy523snUjog0W71ayWXTjiR+ixeMyVHN2XcpnTd/liPg/Q== } + js-tokens@4.0.0: + resolution: + { + integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + } + js-tokens@9.0.1: resolution: { @@ -4042,10 +4942,10 @@ packages: } hasBin: true - json-buffer@3.0.1: + json-parse-even-better-errors@2.3.1: resolution: { - integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== } json-parse-even-better-errors@5.0.0: @@ -4055,12 +4955,6 @@ packages: } engines: { node: ^20.17.0 || >=22.9.0 } - json-schema-traverse@0.4.1: - resolution: - { - integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - } - json-schema-traverse@1.0.0: resolution: { @@ -4073,10 +4967,10 @@ packages: integrity: sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA== } - json-stable-stringify-without-jsonify@1.0.1: + jsonfile@4.0.0: resolution: { - integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== } jsonparse@1.3.1: @@ -4093,12 +4987,6 @@ packages: } hasBin: true - keyv@4.5.4: - resolution: - { - integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== - } - khroma@2.1.0: resolution: { @@ -4112,6 +5000,17 @@ packages: } engines: { node: ">=0.10.0" } + knip@5.88.0: + resolution: + { + integrity: sha512-FZjQYLYwUbVrtC3C1cKyEMMqR4K2ZlkQLZszJgF5cfDo4GUSBZAdAV0P3eyzZrkssRoghLJQA9HTQUW7G+Tc8Q== + } + engines: { node: ">=18.18.0" } + hasBin: true + peerDependencies: + "@types/node": ">=18" + typescript: ">=5.0.4 <7" + kolorist@1.8.0: resolution: { @@ -4137,34 +5036,40 @@ packages: integrity: sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg== } - levn@0.4.1: + lilconfig@3.1.3: resolution: { - integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw== } - engines: { node: ">= 0.8.0" } + engines: { node: ">=14" } - lilconfig@3.1.3: + lines-and-columns@1.2.4: resolution: { - integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw== + integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== } - engines: { node: ">=14" } - lint-staged@15.5.2: + lint-staged@16.4.0: resolution: { - integrity: sha512-YUSOLq9VeRNAo/CTaVmhGDKG+LBtA8KF1X4K5+ykMSwWST1vDxJRB2kv2COgLb1fvpCo+A/y9A0G0znNVmdx4w== + integrity: sha512-lBWt8hujh/Cjysw5GYVmZpFHXDCgZzhrOm8vbcUdobADZNOK/bRshr2kM3DfgrrtR1DQhfupW9gnIXOfiFi+bw== } - engines: { node: ">=18.12.0" } + engines: { node: ">=20.17" } hasBin: true - listr2@8.3.3: + listr2@9.0.5: resolution: { - integrity: sha512-LWzX2KsqcB1wqQ4AHgYb4RsDXauQiqhjLk+6hjbaeHG4zpjjVAB6wC/gz6X0l+Du1cN3pUB5ZlrvTbhGSNnUQQ== + integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g== } - engines: { node: ">=18.0.0" } + engines: { node: ">=20.0.0" } + + load-tsconfig@0.2.5: + resolution: + { + integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg== + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } local-pkg@1.1.2: resolution: @@ -4173,12 +5078,19 @@ packages: } engines: { node: ">=14" } - locate-path@6.0.0: + locate-path@5.0.0: resolution: { - integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== } - engines: { node: ">=10" } + engines: { node: ">=8" } + + locate-path@7.2.0: + resolution: + { + integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA== + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } lodash-es@4.17.21: resolution: @@ -4192,12 +5104,60 @@ packages: integrity: sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg== } + lodash.camelcase@4.3.0: + resolution: + { + integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== + } + + lodash.isplainobject@4.0.6: + resolution: + { + integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA== + } + + lodash.kebabcase@4.1.1: + resolution: + { + integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g== + } + lodash.merge@4.6.2: resolution: { integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== } + lodash.mergewith@4.6.2: + resolution: + { + integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ== + } + + lodash.snakecase@4.1.1: + resolution: + { + integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw== + } + + lodash.startcase@4.4.0: + resolution: + { + integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg== + } + + lodash.uniq@4.5.0: + resolution: + { + integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== + } + + lodash.upperfirst@4.3.1: + resolution: + { + integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg== + } + log-update@6.1.0: resolution: { @@ -4284,18 +5244,19 @@ packages: } engines: { node: ">= 0.8" } - merge-descriptors@2.0.0: + meow@12.1.1: resolution: { - integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g== + integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw== } - engines: { node: ">=18" } + engines: { node: ">=16.10" } - merge-stream@2.0.0: + merge-descriptors@2.0.0: resolution: { - integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g== } + engines: { node: ">=18" } merge2@1.4.1: resolution: @@ -4361,13 +5322,6 @@ packages: } engines: { node: ">=18" } - mimic-fn@4.0.0: - resolution: - { - integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== - } - engines: { node: ">=12" } - mimic-function@5.0.1: resolution: { @@ -4382,18 +5336,18 @@ packages: } engines: { node: 20 || >=22 } - minimatch@3.1.2: + minimatch@9.0.5: resolution: { - integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== } + engines: { node: ">=16 || 14 >=14.17" } - minimatch@9.0.5: + minimist@1.2.8: resolution: { - integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== + integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== } - engines: { node: ">=16 || 14 >=14.17" } minipass-collect@2.0.1: resolution: @@ -4469,25 +5423,39 @@ packages: integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g== } + mri@1.2.0: + resolution: + { + integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== + } + engines: { node: ">=4" } + ms@2.1.3: resolution: { integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== } - nanoid@3.3.11: + mute-stream@2.0.0: resolution: { - integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w== + integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA== + } + engines: { node: ^18.17.0 || >=20.5.0 } + + mz@2.7.0: + resolution: + { + integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== } - engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } - hasBin: true - natural-compare@1.4.0: + nanoid@3.3.11: resolution: { - integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w== } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } + hasBin: true negotiator@1.0.0: resolution: @@ -4501,15 +5469,7 @@ packages: { integrity: sha512-q23WdzrQv48KozXlr0U1v9dwO/k59NHeSzn6loGcasyf0UnSrtzs8kRxM+mfwJSf0DkX0s43hcqgnSO4/VNthQ== } - engines: { node: ^20.17.0 || >=22.9.0 } - hasBin: true - - nodemon@3.1.11: - resolution: - { - integrity: sha512-is96t8F/1//UHAjNPHpbsNY46ELPpftGUoSVNXwUfMk/qdjSylYrWSu1XavVTBOn526kFiOR733ATgNBCQyH0g== - } - engines: { node: ">=10" } + engines: { node: ^20.17.0 || >=22.9.0 } hasBin: true non-layered-tidy-tree-layout@2.0.2: @@ -4526,13 +5486,6 @@ packages: engines: { node: ^20.17.0 || >=22.9.0 } hasBin: true - normalize-path@3.0.0: - resolution: - { - integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - } - engines: { node: ">=0.10.0" } - npm-bundled@5.0.0: resolution: { @@ -4582,13 +5535,6 @@ packages: } engines: { node: ^20.17.0 || >=22.9.0 } - npm-run-path@5.3.0: - resolution: - { - integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ== - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - object-assign@4.1.1: resolution: { @@ -4616,13 +5562,6 @@ packages: integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== } - onetime@6.0.0: - resolution: - { - integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== - } - engines: { node: ">=12" } - onetime@7.0.0: resolution: { @@ -4636,26 +5575,72 @@ packages: integrity: sha512-bUH8SDvPkH3ho3dvwJwfonjlQ4R80vjyvrU8YpxuROddv55vAEJrTuCuCVUhhsHbtlD9tGGbaNApGQckXhS8iQ== } - optionator@0.9.4: + outdent@0.5.0: resolution: { - integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== + integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q== } - engines: { node: ">= 0.8.0" } - p-limit@3.1.0: + oxc-resolver@11.19.1: resolution: { - integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + integrity: sha512-qE/CIg/spwrTBFt5aKmwe3ifeDdLfA2NESN30E42X/lII5ClF8V7Wt6WIJhcGZjp0/Q+nQ+9vgxGk//xZNX2hg== } - engines: { node: ">=10" } - p-locate@5.0.0: + oxlint@1.56.0: resolution: { - integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + integrity: sha512-Q+5Mj5PVaH/R6/fhMMFzw4dT+KPB+kQW4kaL8FOIq7tfhlnEVp6+3lcWqFruuTNlUo9srZUW3qH7Id4pskeR6g== } - engines: { node: ">=10" } + engines: { node: ^20.19.0 || >=22.12.0 } + hasBin: true + peerDependencies: + oxlint-tsgolint: ">=0.15.0" + peerDependenciesMeta: + oxlint-tsgolint: + optional: true + + p-filter@2.1.0: + resolution: + { + integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw== + } + engines: { node: ">=8" } + + p-limit@2.3.0: + resolution: + { + integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + } + engines: { node: ">=6" } + + p-limit@4.0.0: + resolution: + { + integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + + p-locate@4.1.0: + resolution: + { + integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + } + engines: { node: ">=8" } + + p-locate@6.0.0: + resolution: + { + integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw== + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + + p-map@2.1.0: + resolution: + { + integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== + } + engines: { node: ">=6" } p-map@7.0.4: resolution: @@ -4664,12 +5649,25 @@ packages: } engines: { node: ">=18" } + p-try@2.2.0: + resolution: + { + integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + } + engines: { node: ">=6" } + package-json-from-dist@1.0.1: resolution: { integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== } + package-manager-detector@0.2.11: + resolution: + { + integrity: sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ== + } + package-manager-detector@1.6.0: resolution: { @@ -4691,6 +5689,13 @@ packages: } engines: { node: ">=6" } + parse-json@5.2.0: + resolution: + { + integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + } + engines: { node: ">=8" } + parseurl@1.3.3: resolution: { @@ -4711,19 +5716,19 @@ packages: } engines: { node: ">=8" } - path-key@3.1.1: + path-exists@5.0.0: resolution: { - integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ== } - engines: { node: ">=8" } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - path-key@4.0.0: + path-key@3.1.1: resolution: { - integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== + integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== } - engines: { node: ">=12" } + engines: { node: ">=8" } path-scurry@1.11.1: resolution: @@ -4745,6 +5750,13 @@ packages: integrity: sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA== } + path-type@4.0.0: + resolution: + { + integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + } + engines: { node: ">=8" } + pathe@2.0.3: resolution: { @@ -4784,13 +5796,19 @@ packages: } engines: { node: ">=12" } - pidtree@0.6.0: + pify@4.0.1: resolution: { - integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g== + integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== } - engines: { node: ">=0.10" } - hasBin: true + engines: { node: ">=6" } + + pirates@4.0.7: + resolution: + { + integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA== + } + engines: { node: ">= 6" } pkce-challenge@5.0.1: resolution: @@ -4823,6 +5841,27 @@ packages: integrity: sha512-25ClnWWuw7JbWZcgqY/gJ4FQWadKxGWk+3kR/7kD0tCaDtPPMj7oHu2ToLaVhfpnHrZzYby2w6tUA0eOIuUg8g== } + postcss-load-config@6.0.1: + resolution: + { + integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g== + } + engines: { node: ">= 18" } + peerDependencies: + jiti: ">=1.21.0" + postcss: ">=8.0.9" + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + jiti: + optional: true + postcss: + optional: true + tsx: + optional: true + yaml: + optional: true + postcss@8.5.6: resolution: { @@ -4836,12 +5875,13 @@ packages: integrity: sha512-uKFfOHWuSNpRFVTnljsCluEFq57OKT+0QdOiQo8XWnQ/pSvg7OpX5eNOejELXJMWy+BwM2nobz0FkvzmnpCNsQ== } - prelude-ls@1.2.1: + prettier@2.8.8: resolution: { - integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== } - engines: { node: ">= 0.8.0" } + engines: { node: ">=10.13.0" } + hasBin: true prettier@3.8.1: resolution: @@ -4878,19 +5918,6 @@ packages: } engines: { node: ">= 0.10" } - pstree.remy@1.1.8: - resolution: - { - integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w== - } - - punycode@2.3.1: - resolution: - { - integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== - } - engines: { node: ">=6" } - qs@6.15.0: resolution: { @@ -4924,12 +5951,19 @@ packages: } engines: { node: ">= 0.10" } - readdirp@3.6.0: + read-yaml-file@1.1.0: + resolution: + { + integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA== + } + engines: { node: ">=6" } + + readdirp@4.1.2: resolution: { - integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg== } - engines: { node: ">=8.10.0" } + engines: { node: ">= 14.18.0" } regex-recursion@6.0.2: resolution: @@ -4949,6 +5983,13 @@ packages: integrity: sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg== } + require-directory@2.1.1: + resolution: + { + integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + } + engines: { node: ">=0.10.0" } + require-from-string@2.0.2: resolution: { @@ -4963,6 +6004,19 @@ packages: } engines: { node: ">=4" } + resolve-from@5.0.0: + resolution: + { + integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + } + engines: { node: ">=8" } + + resolve-pkg-maps@1.0.0: + resolution: + { + integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw== + } + restore-cursor@5.1.0: resolution: { @@ -5165,25 +6219,18 @@ packages: integrity: sha512-D4V/tGC2sjsoNhoMybKyGoE+v8A60hRawKQ1iFRA1zwuDgGZCBJ4ByOzZ5J8joBbi4Oam0qiPH+GhzmSBwbJng== } - simple-update-notifier@2.0.0: - resolution: - { - integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w== - } - engines: { node: ">=10" } - sisteransi@1.0.5: resolution: { integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== } - slice-ansi@5.0.0: + slash@3.0.0: resolution: { - integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ== + integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== } - engines: { node: ">=12" } + engines: { node: ">=8" } slice-ansi@7.1.2: resolution: @@ -5192,6 +6239,13 @@ packages: } engines: { node: ">=18" } + slice-ansi@8.0.0: + resolution: + { + integrity: sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg== + } + engines: { node: ">=20" } + smart-buffer@4.2.0: resolution: { @@ -5199,6 +6253,13 @@ packages: } engines: { node: ">= 6.0.0", npm: ">= 3.0.0" } + smol-toml@1.6.0: + resolution: + { + integrity: sha512-4zemZi0HvTnYwLfrpk/CF9LOd9Lt87kAt50GnqhMpyF9U3poDAP2+iukq2bZsO/ufegbYehBkqINbsWxj4l4cw== + } + engines: { node: ">= 18" } + socks-proxy-agent@8.0.5: resolution: { @@ -5220,12 +6281,25 @@ packages: } engines: { node: ">=0.10.0" } + source-map@0.7.6: + resolution: + { + integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ== + } + engines: { node: ">= 12" } + space-separated-tokens@2.0.2: resolution: { integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q== } + spawndamnit@3.0.1: + resolution: + { + integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg== + } + spdx-exceptions@2.5.0: resolution: { @@ -5251,6 +6325,13 @@ packages: } engines: { node: ">=0.10.0" } + split2@4.2.0: + resolution: + { + integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg== + } + engines: { node: ">= 10.x" } + sprintf-js@1.0.3: resolution: { @@ -5311,6 +6392,13 @@ packages: } engines: { node: ">=18" } + string-width@8.2.0: + resolution: + { + integrity: sha512-6hJPQ8N0V0P3SNmP6h2J99RLuzrWz2gvT7VnK5tKvrNqJoyS9W4/Fb8mo31UiPvy00z7DQXkP2hnKBVav76thw== + } + engines: { node: ">=20" } + stringify-entities@4.0.4: resolution: { @@ -5338,19 +6426,19 @@ packages: } engines: { node: ">=0.10.0" } - strip-final-newline@3.0.0: + strip-bom@3.0.0: resolution: { - integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== + integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== } - engines: { node: ">=12" } + engines: { node: ">=4" } - strip-json-comments@3.1.1: + strip-json-comments@5.0.3: resolution: { - integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + integrity: sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw== } - engines: { node: ">=8" } + engines: { node: ">=14.16" } strip-literal@3.1.0: resolution: @@ -5364,19 +6452,20 @@ packages: integrity: sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ== } - superjson@2.2.6: + sucrase@3.35.1: resolution: { - integrity: sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA== + integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw== } - engines: { node: ">=16" } + engines: { node: ">=16 || 14 >=14.17" } + hasBin: true - supports-color@5.5.0: + superjson@2.2.6: resolution: { - integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + integrity: sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA== } - engines: { node: ">=4" } + engines: { node: ">=16" } supports-color@7.2.0: resolution: @@ -5398,6 +6487,13 @@ packages: } engines: { node: ">=18" } + term-size@2.2.1: + resolution: + { + integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg== + } + engines: { node: ">=8" } + test-exclude@7.0.1: resolution: { @@ -5405,6 +6501,32 @@ packages: } engines: { node: ">=18" } + text-extensions@2.4.0: + resolution: + { + integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g== + } + engines: { node: ">=8" } + + thenify-all@1.6.0: + resolution: + { + integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + } + engines: { node: ">=0.8" } + + thenify@3.3.1: + resolution: + { + integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + } + + through@2.3.8: + resolution: + { + integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + } + tinybench@2.9.0: resolution: { @@ -5424,6 +6546,13 @@ packages: } engines: { node: ">=18" } + tinyexec@1.0.4: + resolution: + { + integrity: sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw== + } + engines: { node: ">=18" } + tinyglobby@0.2.15: resolution: { @@ -5466,10 +6595,10 @@ packages: } engines: { node: ">=0.6" } - touch@3.1.1: + tree-kill@1.2.2: resolution: { - integrity: sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA== + integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A== } hasBin: true @@ -5479,21 +6608,54 @@ packages: integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg== } - ts-api-utils@2.4.0: + ts-dedent@2.2.0: + resolution: + { + integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ== + } + engines: { node: ">=6.10" } + + ts-interface-checker@0.1.13: + resolution: + { + integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== + } + + tslib@2.8.1: + resolution: + { + integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== + } + + tsup@8.5.1: resolution: { - integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA== + integrity: sha512-xtgkqwdhpKWr3tKPmCkvYmS9xnQK3m3XgxZHwSUjvfTjp7YfXe5tT3GgWi0F2N+ZSMsOeWeZFh7ZZFg5iPhing== } - engines: { node: ">=18.12" } + engines: { node: ">=18" } + hasBin: true peerDependencies: - typescript: ">=4.8.4" + "@microsoft/api-extractor": ^7.36.0 + "@swc/core": ^1 + postcss: ^8.4.12 + typescript: ">=4.5.0" + peerDependenciesMeta: + "@microsoft/api-extractor": + optional: true + "@swc/core": + optional: true + postcss: + optional: true + typescript: + optional: true - ts-dedent@2.2.0: + tsx@4.21.0: resolution: { - integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ== + integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw== } - engines: { node: ">=6.10" } + engines: { node: ">=18.0.0" } + hasBin: true tuf-js@4.1.0: resolution: @@ -5502,68 +6664,61 @@ packages: } engines: { node: ^20.17.0 || >=22.9.0 } - turbo-darwin-64@2.8.10: + turbo-darwin-64@2.8.17: resolution: { - integrity: sha512-A03fXh+B7S8mL3PbdhTd+0UsaGrhfyPkODvzBDpKRY7bbeac4MDFpJ7I+Slf2oSkCEeSvHKR7Z4U71uKRUfX7g== + integrity: sha512-ZFkv2hv7zHpAPEXBF6ouRRXshllOavYc+jjcrYyVHvxVTTwJWsBZwJ/gpPzmOKGvkSjsEyDO5V6aqqtZzwVF+Q== } cpu: [x64] os: [darwin] - turbo-darwin-arm64@2.8.10: + turbo-darwin-arm64@2.8.17: resolution: { - integrity: sha512-sidzowgWL3s5xCHLeqwC9M3s9M0i16W1nuQF3Mc7fPHpZ+YPohvcbVFBB2uoRRHYZg6yBnwD4gyUHKTeXfwtXA== + integrity: sha512-5DXqhQUt24ycEryXDfMNKEkW5TBHs+QmU23a2qxXwwFDaJsWcPo2obEhBxxdEPOv7qmotjad+09RGeWCcJ9JDw== } cpu: [arm64] os: [darwin] - turbo-linux-64@2.8.10: + turbo-linux-64@2.8.17: resolution: { - integrity: sha512-YK9vcpL3TVtqonB021XwgaQhY9hJJbKKUhLv16osxV0HkcQASQWUqR56yMge7puh6nxU67rQlTq1b7ksR1T3KA== + integrity: sha512-KLUbz6w7F73D/Ihh51hVagrKR0/CTsPEbRkvXLXvoND014XJ4BCrQUqSxlQ4/hu+nqp1v5WlM85/h3ldeyujuA== } cpu: [x64] os: [linux] - turbo-linux-arm64@2.8.10: + turbo-linux-arm64@2.8.17: resolution: { - integrity: sha512-3+j2tL0sG95iBJTm+6J8/45JsETQABPqtFyYjVjBbi6eVGdtNTiBmHNKrbvXRlQ3ZbUG75bKLaSSDHSEEN+btQ== + integrity: sha512-pJK67XcNJH40lTAjFu7s/rUlobgVXyB3A3lDoq+/JccB3hf+SysmkpR4Itlc93s8LEaFAI4mamhFuTV17Z6wOg== } cpu: [arm64] os: [linux] - turbo-windows-64@2.8.10: + turbo-windows-64@2.8.17: resolution: { - integrity: sha512-hdeF5qmVY/NFgiucf8FW0CWJWtyT2QPm5mIsX0W1DXAVzqKVXGq+Zf+dg4EUngAFKjDzoBeN6ec2Fhajwfztkw== + integrity: sha512-EijeQ6zszDMmGZLP2vT2RXTs/GVi9rM0zv2/G4rNu2SSRSGFapgZdxgW4b5zUYLVaSkzmkpWlGfPfj76SW9yUg== } cpu: [x64] os: [win32] - turbo-windows-arm64@2.8.10: + turbo-windows-arm64@2.8.17: resolution: { - integrity: sha512-QGdr/Q8LWmj+ITMkSvfiz2glf0d7JG0oXVzGL3jxkGqiBI1zXFj20oqVY0qWi+112LO9SVrYdpHS0E/oGFrMbQ== + integrity: sha512-crpfeMPkfECd4V1PQ/hMoiyVcOy04+bWedu/if89S15WhOalHZ2BYUi6DOJhZrszY+mTT99OwpOsj4wNfb/GHQ== } cpu: [arm64] os: [win32] - turbo@2.8.10: + turbo@2.8.17: resolution: { - integrity: sha512-OxbzDES66+x7nnKGg2MwBA1ypVsZoDTLHpeaP4giyiHSixbsiTaMyeJqbEyvBdp5Cm28fc+8GG6RdQtic0ijwQ== + integrity: sha512-YwPsNSqU2f/RXU/+Kcb7cPkPZARxom4+me7LKEdN5jsvy2tpfze3zDZ4EiGrJnvOm9Avu9rK0aaYsP7qZ3iz7A== } hasBin: true - type-check@0.4.0: - resolution: - { - integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== - } - engines: { node: ">= 0.8.0" } - type-is@2.0.1: resolution: { @@ -5571,16 +6726,6 @@ packages: } engines: { node: ">= 0.6" } - typescript-eslint@8.21.0: - resolution: - { - integrity: sha512-txEKYY4XMKwPXxNkN8+AxAdX6iIJAPiJbHE/FpQccs/sxw8Lf26kqwC3cn0xkHlW8kEbLhkhCsjWuMveaY9Rxw== - } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: ">=4.8.4 <5.8.0" - typescript@5.9.3: resolution: { @@ -5595,11 +6740,12 @@ packages: integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q== } - undefsafe@2.0.5: + unbash@2.2.0: resolution: { - integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA== + integrity: sha512-X2wH19RAPZE3+ldGicOkoj/SIA83OIxcJ6Cuaw23hf8Xc6fQpvZXY0SftE2JgS0QhYLUG4uwodSI3R53keyh7w== } + engines: { node: ">=14" } undici-types@6.21.0: resolution: @@ -5607,6 +6753,13 @@ packages: integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ== } + unicorn-magic@0.1.0: + resolution: + { + integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ== + } + engines: { node: ">=18" } + unique-filename@5.0.0: resolution: { @@ -5651,18 +6804,19 @@ packages: integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg== } - unpipe@1.0.0: + universalify@0.1.2: resolution: { - integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== + integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== } - engines: { node: ">= 0.8" } + engines: { node: ">= 4.0.0" } - uri-js@4.4.1: + unpipe@1.0.0: resolution: { - integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== } + engines: { node: ">= 0.8" } uuid@9.0.1: resolution: @@ -5886,6 +7040,13 @@ packages: typescript: optional: true + walk-up-path@4.0.0: + resolution: + { + integrity: sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A== + } + engines: { node: 20 || >=22 } + which@2.0.2: resolution: { @@ -5910,12 +7071,12 @@ packages: engines: { node: ">=8" } hasBin: true - word-wrap@1.2.5: + wrap-ansi@6.2.0: resolution: { - integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== + integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== } - engines: { node: ">=0.10.0" } + engines: { node: ">=8" } wrap-ansi@7.0.0: resolution: @@ -5944,6 +7105,13 @@ packages: integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== } + y18n@5.0.8: + resolution: + { + integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + } + engines: { node: ">=10" } + yallist@4.0.0: resolution: { @@ -5965,12 +7133,33 @@ packages: engines: { node: ">= 14.6" } hasBin: true - yocto-queue@0.1.0: + yargs-parser@21.1.1: resolution: { - integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== } - engines: { node: ">=10" } + engines: { node: ">=12" } + + yargs@17.7.2: + resolution: + { + integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== + } + engines: { node: ">=12" } + + yocto-queue@1.2.2: + resolution: + { + integrity: sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ== + } + engines: { node: ">=12.20" } + + yoctocolors-cjs@2.1.3: + resolution: + { + integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw== + } + engines: { node: ">=18" } zod-to-json-schema@3.25.1: resolution: @@ -6117,6 +7306,12 @@ snapshots: "@antfu/utils@8.1.1": {} + "@babel/code-frame@7.29.0": + dependencies: + "@babel/helper-validator-identifier": 7.28.5 + js-tokens: 4.0.0 + picocolors: 1.1.1 + "@babel/helper-string-parser@7.27.1": {} "@babel/helper-validator-identifier@7.28.5": {} @@ -6125,6 +7320,8 @@ snapshots: dependencies: "@babel/types": 7.29.0 + "@babel/runtime@7.29.2": {} + "@babel/types@7.29.0": dependencies: "@babel/helper-string-parser": 7.27.1 @@ -6137,6 +7334,149 @@ snapshots: "@braintree/sanitize-url@7.1.1": {} + "@changesets/apply-release-plan@7.1.0": + dependencies: + "@changesets/config": 3.1.3 + "@changesets/get-version-range-type": 0.4.0 + "@changesets/git": 3.0.4 + "@changesets/should-skip-package": 0.1.2 + "@changesets/types": 6.1.0 + "@manypkg/get-packages": 1.1.3 + detect-indent: 6.1.0 + fs-extra: 7.0.1 + lodash.startcase: 4.4.0 + outdent: 0.5.0 + prettier: 2.8.8 + resolve-from: 5.0.0 + semver: 7.7.4 + + "@changesets/assemble-release-plan@6.0.9": + dependencies: + "@changesets/errors": 0.2.0 + "@changesets/get-dependents-graph": 2.1.3 + "@changesets/should-skip-package": 0.1.2 + "@changesets/types": 6.1.0 + "@manypkg/get-packages": 1.1.3 + semver: 7.7.4 + + "@changesets/changelog-git@0.2.1": + dependencies: + "@changesets/types": 6.1.0 + + "@changesets/cli@2.30.0(@types/node@22.19.11)": + dependencies: + "@changesets/apply-release-plan": 7.1.0 + "@changesets/assemble-release-plan": 6.0.9 + "@changesets/changelog-git": 0.2.1 + "@changesets/config": 3.1.3 + "@changesets/errors": 0.2.0 + "@changesets/get-dependents-graph": 2.1.3 + "@changesets/get-release-plan": 4.0.15 + "@changesets/git": 3.0.4 + "@changesets/logger": 0.1.1 + "@changesets/pre": 2.0.2 + "@changesets/read": 0.6.7 + "@changesets/should-skip-package": 0.1.2 + "@changesets/types": 6.1.0 + "@changesets/write": 0.4.0 + "@inquirer/external-editor": 1.0.3(@types/node@22.19.11) + "@manypkg/get-packages": 1.1.3 + ansi-colors: 4.1.3 + enquirer: 2.4.1 + fs-extra: 7.0.1 + mri: 1.2.0 + package-manager-detector: 0.2.11 + picocolors: 1.1.1 + resolve-from: 5.0.0 + semver: 7.7.4 + spawndamnit: 3.0.1 + term-size: 2.2.1 + transitivePeerDependencies: + - "@types/node" + + "@changesets/config@3.1.3": + dependencies: + "@changesets/errors": 0.2.0 + "@changesets/get-dependents-graph": 2.1.3 + "@changesets/logger": 0.1.1 + "@changesets/should-skip-package": 0.1.2 + "@changesets/types": 6.1.0 + "@manypkg/get-packages": 1.1.3 + fs-extra: 7.0.1 + micromatch: 4.0.8 + + "@changesets/errors@0.2.0": + dependencies: + extendable-error: 0.1.7 + + "@changesets/get-dependents-graph@2.1.3": + dependencies: + "@changesets/types": 6.1.0 + "@manypkg/get-packages": 1.1.3 + picocolors: 1.1.1 + semver: 7.7.4 + + "@changesets/get-release-plan@4.0.15": + dependencies: + "@changesets/assemble-release-plan": 6.0.9 + "@changesets/config": 3.1.3 + "@changesets/pre": 2.0.2 + "@changesets/read": 0.6.7 + "@changesets/types": 6.1.0 + "@manypkg/get-packages": 1.1.3 + + "@changesets/get-version-range-type@0.4.0": {} + + "@changesets/git@3.0.4": + dependencies: + "@changesets/errors": 0.2.0 + "@manypkg/get-packages": 1.1.3 + is-subdir: 1.2.0 + micromatch: 4.0.8 + spawndamnit: 3.0.1 + + "@changesets/logger@0.1.1": + dependencies: + picocolors: 1.1.1 + + "@changesets/parse@0.4.3": + dependencies: + "@changesets/types": 6.1.0 + js-yaml: 4.1.1 + + "@changesets/pre@2.0.2": + dependencies: + "@changesets/errors": 0.2.0 + "@changesets/types": 6.1.0 + "@manypkg/get-packages": 1.1.3 + fs-extra: 7.0.1 + + "@changesets/read@0.6.7": + dependencies: + "@changesets/git": 3.0.4 + "@changesets/logger": 0.1.1 + "@changesets/parse": 0.4.3 + "@changesets/types": 6.1.0 + fs-extra: 7.0.1 + p-filter: 2.1.0 + picocolors: 1.1.1 + + "@changesets/should-skip-package@0.1.2": + dependencies: + "@changesets/types": 6.1.0 + "@manypkg/get-packages": 1.1.3 + + "@changesets/types@4.1.0": {} + + "@changesets/types@6.1.0": {} + + "@changesets/write@0.4.0": + dependencies: + "@changesets/types": 6.1.0 + fs-extra: 7.0.1 + human-id: 4.1.3 + prettier: 2.8.8 + "@chevrotain/cst-dts-gen@11.0.3": dependencies: "@chevrotain/gast": 11.0.3 @@ -6183,6 +7523,116 @@ snapshots: transitivePeerDependencies: - supports-color + "@commitlint/cli@19.8.1(@types/node@22.19.11)(typescript@5.9.3)": + dependencies: + "@commitlint/format": 19.8.1 + "@commitlint/lint": 19.8.1 + "@commitlint/load": 19.8.1(@types/node@22.19.11)(typescript@5.9.3) + "@commitlint/read": 19.8.1 + "@commitlint/types": 19.8.1 + tinyexec: 1.0.2 + yargs: 17.7.2 + transitivePeerDependencies: + - "@types/node" + - typescript + + "@commitlint/config-conventional@19.8.1": + dependencies: + "@commitlint/types": 19.8.1 + conventional-changelog-conventionalcommits: 7.0.2 + + "@commitlint/config-validator@19.8.1": + dependencies: + "@commitlint/types": 19.8.1 + ajv: 8.18.0 + + "@commitlint/ensure@19.8.1": + dependencies: + "@commitlint/types": 19.8.1 + lodash.camelcase: 4.3.0 + lodash.kebabcase: 4.1.1 + lodash.snakecase: 4.1.1 + lodash.startcase: 4.4.0 + lodash.upperfirst: 4.3.1 + + "@commitlint/execute-rule@19.8.1": {} + + "@commitlint/format@19.8.1": + dependencies: + "@commitlint/types": 19.8.1 + chalk: 5.6.2 + + "@commitlint/is-ignored@19.8.1": + dependencies: + "@commitlint/types": 19.8.1 + semver: 7.7.4 + + "@commitlint/lint@19.8.1": + dependencies: + "@commitlint/is-ignored": 19.8.1 + "@commitlint/parse": 19.8.1 + "@commitlint/rules": 19.8.1 + "@commitlint/types": 19.8.1 + + "@commitlint/load@19.8.1(@types/node@22.19.11)(typescript@5.9.3)": + dependencies: + "@commitlint/config-validator": 19.8.1 + "@commitlint/execute-rule": 19.8.1 + "@commitlint/resolve-extends": 19.8.1 + "@commitlint/types": 19.8.1 + chalk: 5.6.2 + cosmiconfig: 9.0.1(typescript@5.9.3) + cosmiconfig-typescript-loader: 6.2.0(@types/node@22.19.11)(cosmiconfig@9.0.1(typescript@5.9.3))(typescript@5.9.3) + lodash.isplainobject: 4.0.6 + lodash.merge: 4.6.2 + lodash.uniq: 4.5.0 + transitivePeerDependencies: + - "@types/node" + - typescript + + "@commitlint/message@19.8.1": {} + + "@commitlint/parse@19.8.1": + dependencies: + "@commitlint/types": 19.8.1 + conventional-changelog-angular: 7.0.0 + conventional-commits-parser: 5.0.0 + + "@commitlint/read@19.8.1": + dependencies: + "@commitlint/top-level": 19.8.1 + "@commitlint/types": 19.8.1 + git-raw-commits: 4.0.0 + minimist: 1.2.8 + tinyexec: 1.0.2 + + "@commitlint/resolve-extends@19.8.1": + dependencies: + "@commitlint/config-validator": 19.8.1 + "@commitlint/types": 19.8.1 + global-directory: 4.0.1 + import-meta-resolve: 4.2.0 + lodash.mergewith: 4.6.2 + resolve-from: 5.0.0 + + "@commitlint/rules@19.8.1": + dependencies: + "@commitlint/ensure": 19.8.1 + "@commitlint/message": 19.8.1 + "@commitlint/to-lines": 19.8.1 + "@commitlint/types": 19.8.1 + + "@commitlint/to-lines@19.8.1": {} + + "@commitlint/top-level@19.8.1": + dependencies: + find-up: 7.0.0 + + "@commitlint/types@19.8.1": + dependencies: + "@types/conventional-commits-parser": 5.0.2 + chalk: 5.6.2 + "@docsearch/css@3.9.0": {} "@docsearch/js@3.9.0(@algolia/client-search@5.49.0)(search-insights@2.17.3)": @@ -6207,238 +7657,398 @@ snapshots: transitivePeerDependencies: - "@algolia/client-search" + "@emnapi/core@1.9.0": + dependencies: + "@emnapi/wasi-threads": 1.2.0 + tslib: 2.8.1 + optional: true + + "@emnapi/runtime@1.9.0": + dependencies: + tslib: 2.8.1 + optional: true + + "@emnapi/wasi-threads@1.2.0": + dependencies: + tslib: 2.8.1 + optional: true + "@esbuild/aix-ppc64@0.21.5": optional: true + "@esbuild/aix-ppc64@0.25.12": + optional: true + "@esbuild/aix-ppc64@0.27.3": optional: true "@esbuild/android-arm64@0.21.5": optional: true + "@esbuild/android-arm64@0.25.12": + optional: true + "@esbuild/android-arm64@0.27.3": optional: true "@esbuild/android-arm@0.21.5": optional: true + "@esbuild/android-arm@0.25.12": + optional: true + "@esbuild/android-arm@0.27.3": optional: true "@esbuild/android-x64@0.21.5": optional: true + "@esbuild/android-x64@0.25.12": + optional: true + "@esbuild/android-x64@0.27.3": optional: true "@esbuild/darwin-arm64@0.21.5": optional: true + "@esbuild/darwin-arm64@0.25.12": + optional: true + "@esbuild/darwin-arm64@0.27.3": optional: true "@esbuild/darwin-x64@0.21.5": optional: true + "@esbuild/darwin-x64@0.25.12": + optional: true + "@esbuild/darwin-x64@0.27.3": optional: true "@esbuild/freebsd-arm64@0.21.5": optional: true + "@esbuild/freebsd-arm64@0.25.12": + optional: true + "@esbuild/freebsd-arm64@0.27.3": optional: true "@esbuild/freebsd-x64@0.21.5": optional: true + "@esbuild/freebsd-x64@0.25.12": + optional: true + "@esbuild/freebsd-x64@0.27.3": optional: true "@esbuild/linux-arm64@0.21.5": optional: true + "@esbuild/linux-arm64@0.25.12": + optional: true + "@esbuild/linux-arm64@0.27.3": optional: true "@esbuild/linux-arm@0.21.5": optional: true + "@esbuild/linux-arm@0.25.12": + optional: true + "@esbuild/linux-arm@0.27.3": optional: true "@esbuild/linux-ia32@0.21.5": optional: true + "@esbuild/linux-ia32@0.25.12": + optional: true + "@esbuild/linux-ia32@0.27.3": optional: true "@esbuild/linux-loong64@0.21.5": optional: true + "@esbuild/linux-loong64@0.25.12": + optional: true + "@esbuild/linux-loong64@0.27.3": optional: true "@esbuild/linux-mips64el@0.21.5": optional: true + "@esbuild/linux-mips64el@0.25.12": + optional: true + "@esbuild/linux-mips64el@0.27.3": optional: true "@esbuild/linux-ppc64@0.21.5": optional: true + "@esbuild/linux-ppc64@0.25.12": + optional: true + "@esbuild/linux-ppc64@0.27.3": optional: true "@esbuild/linux-riscv64@0.21.5": optional: true + "@esbuild/linux-riscv64@0.25.12": + optional: true + "@esbuild/linux-riscv64@0.27.3": optional: true "@esbuild/linux-s390x@0.21.5": optional: true + "@esbuild/linux-s390x@0.25.12": + optional: true + "@esbuild/linux-s390x@0.27.3": optional: true "@esbuild/linux-x64@0.21.5": optional: true + "@esbuild/linux-x64@0.25.12": + optional: true + "@esbuild/linux-x64@0.27.3": optional: true + "@esbuild/netbsd-arm64@0.25.12": + optional: true + "@esbuild/netbsd-arm64@0.27.3": optional: true "@esbuild/netbsd-x64@0.21.5": optional: true + "@esbuild/netbsd-x64@0.25.12": + optional: true + "@esbuild/netbsd-x64@0.27.3": optional: true + "@esbuild/openbsd-arm64@0.25.12": + optional: true + "@esbuild/openbsd-arm64@0.27.3": optional: true "@esbuild/openbsd-x64@0.21.5": optional: true + "@esbuild/openbsd-x64@0.25.12": + optional: true + "@esbuild/openbsd-x64@0.27.3": optional: true + "@esbuild/openharmony-arm64@0.25.12": + optional: true + "@esbuild/openharmony-arm64@0.27.3": optional: true "@esbuild/sunos-x64@0.21.5": optional: true + "@esbuild/sunos-x64@0.25.12": + optional: true + "@esbuild/sunos-x64@0.27.3": optional: true "@esbuild/win32-arm64@0.21.5": optional: true + "@esbuild/win32-arm64@0.25.12": + optional: true + "@esbuild/win32-arm64@0.27.3": optional: true "@esbuild/win32-ia32@0.21.5": optional: true + "@esbuild/win32-ia32@0.25.12": + optional: true + "@esbuild/win32-ia32@0.27.3": optional: true "@esbuild/win32-x64@0.21.5": optional: true + "@esbuild/win32-x64@0.25.12": + optional: true + "@esbuild/win32-x64@0.27.3": optional: true - "@eslint-community/eslint-utils@4.9.1(eslint@9.39.2)": + "@gar/promise-retry@1.0.2": dependencies: - eslint: 9.39.2 - eslint-visitor-keys: 3.4.3 - - "@eslint-community/regexpp@4.12.2": {} + retry: 0.13.1 - "@eslint/config-array@0.21.1": + "@hono/node-server@1.19.11(hono@4.12.8)": dependencies: - "@eslint/object-schema": 2.1.7 - debug: 4.4.0(supports-color@5.5.0) - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color + hono: 4.12.8 - "@eslint/config-helpers@0.4.2": + "@iconify-json/simple-icons@1.2.71": dependencies: - "@eslint/core": 0.17.0 + "@iconify/types": 2.0.0 - "@eslint/core@0.17.0": - dependencies: - "@types/json-schema": 7.0.15 + "@iconify/types@2.0.0": {} - "@eslint/eslintrc@3.3.3": + "@iconify/utils@2.3.0": dependencies: - ajv: 6.12.6 - debug: 4.4.0(supports-color@5.5.0) - espree: 10.4.0 - globals: 14.0.0 - ignore: 5.3.2 - import-fresh: 3.3.1 - js-yaml: 4.1.1 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 + "@antfu/install-pkg": 1.1.0 + "@antfu/utils": 8.1.1 + "@iconify/types": 2.0.0 + debug: 4.4.0 + globals: 15.15.0 + kolorist: 1.8.0 + local-pkg: 1.1.2 + mlly: 1.8.0 transitivePeerDependencies: - supports-color - "@eslint/js@9.18.0": {} - - "@eslint/js@9.39.2": {} + "@inquirer/ansi@1.0.2": {} - "@eslint/object-schema@2.1.7": {} + "@inquirer/checkbox@4.3.2(@types/node@22.19.11)": + dependencies: + "@inquirer/ansi": 1.0.2 + "@inquirer/core": 10.3.2(@types/node@22.19.11) + "@inquirer/figures": 1.0.15 + "@inquirer/type": 3.0.10(@types/node@22.19.11) + yoctocolors-cjs: 2.1.3 + optionalDependencies: + "@types/node": 22.19.11 - "@eslint/plugin-kit@0.4.1": + "@inquirer/confirm@5.1.21(@types/node@22.19.11)": dependencies: - "@eslint/core": 0.17.0 - levn: 0.4.1 + "@inquirer/core": 10.3.2(@types/node@22.19.11) + "@inquirer/type": 3.0.10(@types/node@22.19.11) + optionalDependencies: + "@types/node": 22.19.11 - "@gar/promise-retry@1.0.2": + "@inquirer/core@10.3.2(@types/node@22.19.11)": dependencies: - retry: 0.13.1 + "@inquirer/ansi": 1.0.2 + "@inquirer/figures": 1.0.15 + "@inquirer/type": 3.0.10(@types/node@22.19.11) + 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": 22.19.11 - "@hono/node-server@1.19.11(hono@4.12.8)": + "@inquirer/editor@4.2.23(@types/node@22.19.11)": dependencies: - hono: 4.12.8 + "@inquirer/core": 10.3.2(@types/node@22.19.11) + "@inquirer/external-editor": 1.0.3(@types/node@22.19.11) + "@inquirer/type": 3.0.10(@types/node@22.19.11) + optionalDependencies: + "@types/node": 22.19.11 - "@humanfs/core@0.19.1": {} + "@inquirer/expand@4.0.23(@types/node@22.19.11)": + dependencies: + "@inquirer/core": 10.3.2(@types/node@22.19.11) + "@inquirer/type": 3.0.10(@types/node@22.19.11) + yoctocolors-cjs: 2.1.3 + optionalDependencies: + "@types/node": 22.19.11 - "@humanfs/node@0.16.7": + "@inquirer/external-editor@1.0.3(@types/node@22.19.11)": dependencies: - "@humanfs/core": 0.19.1 - "@humanwhocodes/retry": 0.4.3 + chardet: 2.1.1 + iconv-lite: 0.7.2 + optionalDependencies: + "@types/node": 22.19.11 - "@humanwhocodes/module-importer@1.0.1": {} + "@inquirer/figures@1.0.15": {} - "@humanwhocodes/retry@0.4.3": {} + "@inquirer/input@4.3.1(@types/node@22.19.11)": + dependencies: + "@inquirer/core": 10.3.2(@types/node@22.19.11) + "@inquirer/type": 3.0.10(@types/node@22.19.11) + optionalDependencies: + "@types/node": 22.19.11 - "@iconify-json/simple-icons@1.2.71": + "@inquirer/number@3.0.23(@types/node@22.19.11)": dependencies: - "@iconify/types": 2.0.0 + "@inquirer/core": 10.3.2(@types/node@22.19.11) + "@inquirer/type": 3.0.10(@types/node@22.19.11) + optionalDependencies: + "@types/node": 22.19.11 - "@iconify/types@2.0.0": {} + "@inquirer/password@4.0.23(@types/node@22.19.11)": + dependencies: + "@inquirer/ansi": 1.0.2 + "@inquirer/core": 10.3.2(@types/node@22.19.11) + "@inquirer/type": 3.0.10(@types/node@22.19.11) + optionalDependencies: + "@types/node": 22.19.11 - "@iconify/utils@2.3.0": + "@inquirer/prompts@7.10.1(@types/node@22.19.11)": + dependencies: + "@inquirer/checkbox": 4.3.2(@types/node@22.19.11) + "@inquirer/confirm": 5.1.21(@types/node@22.19.11) + "@inquirer/editor": 4.2.23(@types/node@22.19.11) + "@inquirer/expand": 4.0.23(@types/node@22.19.11) + "@inquirer/input": 4.3.1(@types/node@22.19.11) + "@inquirer/number": 3.0.23(@types/node@22.19.11) + "@inquirer/password": 4.0.23(@types/node@22.19.11) + "@inquirer/rawlist": 4.1.11(@types/node@22.19.11) + "@inquirer/search": 3.2.2(@types/node@22.19.11) + "@inquirer/select": 4.4.2(@types/node@22.19.11) + optionalDependencies: + "@types/node": 22.19.11 + + "@inquirer/rawlist@4.1.11(@types/node@22.19.11)": dependencies: - "@antfu/install-pkg": 1.1.0 - "@antfu/utils": 8.1.1 - "@iconify/types": 2.0.0 - debug: 4.4.0(supports-color@5.5.0) - globals: 15.15.0 - kolorist: 1.8.0 - local-pkg: 1.1.2 - mlly: 1.8.0 - transitivePeerDependencies: - - supports-color + "@inquirer/core": 10.3.2(@types/node@22.19.11) + "@inquirer/type": 3.0.10(@types/node@22.19.11) + yoctocolors-cjs: 2.1.3 + optionalDependencies: + "@types/node": 22.19.11 + + "@inquirer/search@3.2.2(@types/node@22.19.11)": + dependencies: + "@inquirer/core": 10.3.2(@types/node@22.19.11) + "@inquirer/figures": 1.0.15 + "@inquirer/type": 3.0.10(@types/node@22.19.11) + yoctocolors-cjs: 2.1.3 + optionalDependencies: + "@types/node": 22.19.11 + + "@inquirer/select@4.4.2(@types/node@22.19.11)": + dependencies: + "@inquirer/ansi": 1.0.2 + "@inquirer/core": 10.3.2(@types/node@22.19.11) + "@inquirer/figures": 1.0.15 + "@inquirer/type": 3.0.10(@types/node@22.19.11) + yoctocolors-cjs: 2.1.3 + optionalDependencies: + "@types/node": 22.19.11 + + "@inquirer/type@3.0.10(@types/node@22.19.11)": + optionalDependencies: + "@types/node": 22.19.11 "@isaacs/cliui@8.0.2": dependencies: @@ -6471,12 +8081,28 @@ snapshots: "@kwsites/file-exists@1.1.1": dependencies: - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0 transitivePeerDependencies: - supports-color "@kwsites/promise-deferred@1.1.1": {} + "@manypkg/find-root@1.1.0": + dependencies: + "@babel/runtime": 7.29.2 + "@types/node": 12.20.55 + find-up: 4.1.0 + fs-extra: 8.1.0 + + "@manypkg/get-packages@1.1.3": + dependencies: + "@babel/runtime": 7.29.2 + "@changesets/types": 4.1.0 + "@manypkg/find-root": 1.1.0 + fs-extra: 8.1.0 + globby: 11.1.0 + read-yaml-file: 1.1.0 + "@mermaid-js/mermaid-mindmap@9.3.0": dependencies: "@braintree/sanitize-url": 6.0.4 @@ -6514,6 +8140,13 @@ snapshots: transitivePeerDependencies: - supports-color + "@napi-rs/wasm-runtime@1.1.1": + dependencies: + "@emnapi/core": 1.9.0 + "@emnapi/runtime": 1.9.0 + "@tybys/wasm-util": 0.10.1 + optional: true + "@nodelib/fs.scandir@2.1.5": dependencies: "@nodelib/fs.stat": 2.0.5 @@ -6584,6 +8217,125 @@ snapshots: transitivePeerDependencies: - supports-color + "@oxc-resolver/binding-android-arm-eabi@11.19.1": + optional: true + + "@oxc-resolver/binding-android-arm64@11.19.1": + optional: true + + "@oxc-resolver/binding-darwin-arm64@11.19.1": + optional: true + + "@oxc-resolver/binding-darwin-x64@11.19.1": + optional: true + + "@oxc-resolver/binding-freebsd-x64@11.19.1": + optional: true + + "@oxc-resolver/binding-linux-arm-gnueabihf@11.19.1": + optional: true + + "@oxc-resolver/binding-linux-arm-musleabihf@11.19.1": + optional: true + + "@oxc-resolver/binding-linux-arm64-gnu@11.19.1": + optional: true + + "@oxc-resolver/binding-linux-arm64-musl@11.19.1": + optional: true + + "@oxc-resolver/binding-linux-ppc64-gnu@11.19.1": + optional: true + + "@oxc-resolver/binding-linux-riscv64-gnu@11.19.1": + optional: true + + "@oxc-resolver/binding-linux-riscv64-musl@11.19.1": + optional: true + + "@oxc-resolver/binding-linux-s390x-gnu@11.19.1": + optional: true + + "@oxc-resolver/binding-linux-x64-gnu@11.19.1": + optional: true + + "@oxc-resolver/binding-linux-x64-musl@11.19.1": + optional: true + + "@oxc-resolver/binding-openharmony-arm64@11.19.1": + optional: true + + "@oxc-resolver/binding-wasm32-wasi@11.19.1": + dependencies: + "@napi-rs/wasm-runtime": 1.1.1 + optional: true + + "@oxc-resolver/binding-win32-arm64-msvc@11.19.1": + optional: true + + "@oxc-resolver/binding-win32-ia32-msvc@11.19.1": + optional: true + + "@oxc-resolver/binding-win32-x64-msvc@11.19.1": + optional: true + + "@oxlint/binding-android-arm-eabi@1.56.0": + optional: true + + "@oxlint/binding-android-arm64@1.56.0": + optional: true + + "@oxlint/binding-darwin-arm64@1.56.0": + optional: true + + "@oxlint/binding-darwin-x64@1.56.0": + optional: true + + "@oxlint/binding-freebsd-x64@1.56.0": + optional: true + + "@oxlint/binding-linux-arm-gnueabihf@1.56.0": + optional: true + + "@oxlint/binding-linux-arm-musleabihf@1.56.0": + optional: true + + "@oxlint/binding-linux-arm64-gnu@1.56.0": + optional: true + + "@oxlint/binding-linux-arm64-musl@1.56.0": + optional: true + + "@oxlint/binding-linux-ppc64-gnu@1.56.0": + optional: true + + "@oxlint/binding-linux-riscv64-gnu@1.56.0": + optional: true + + "@oxlint/binding-linux-riscv64-musl@1.56.0": + optional: true + + "@oxlint/binding-linux-s390x-gnu@1.56.0": + optional: true + + "@oxlint/binding-linux-x64-gnu@1.56.0": + optional: true + + "@oxlint/binding-linux-x64-musl@1.56.0": + optional: true + + "@oxlint/binding-openharmony-arm64@1.56.0": + optional: true + + "@oxlint/binding-win32-arm64-msvc@1.56.0": + optional: true + + "@oxlint/binding-win32-ia32-msvc@1.56.0": + optional: true + + "@oxlint/binding-win32-x64-msvc@1.56.0": + optional: true + "@pkgjs/parseargs@0.11.0": optional: true @@ -6779,16 +8531,17 @@ snapshots: "@swc/core-win32-arm64-msvc": 1.15.11 "@swc/core-win32-ia32-msvc": 1.15.11 "@swc/core-win32-x64-msvc": 1.15.11 + optional: true - "@swc/counter@0.1.3": {} + "@swc/counter@0.1.3": + optional: true "@swc/types@0.1.25": dependencies: "@swc/counter": 0.1.3 + optional: true - "@tsconfig/node22@22.0.0": {} - - "@tsconfig/strictest@2.0.5": {} + "@tsconfig/node22@22.0.5": {} "@tufjs/canonical-json@2.0.0": {} @@ -6797,11 +8550,27 @@ snapshots: "@tufjs/canonical-json": 2.0.0 minimatch: 10.2.1 + "@turbo/gen@2.8.17(@types/node@22.19.11)": + dependencies: + "@inquirer/prompts": 7.10.1(@types/node@22.19.11) + esbuild: 0.25.12 + transitivePeerDependencies: + - "@types/node" + + "@tybys/wasm-util@0.10.1": + dependencies: + tslib: 2.8.1 + optional: true + "@types/chai@5.2.3": dependencies: "@types/deep-eql": 4.0.2 assertion-error: 2.0.1 + "@types/conventional-commits-parser@5.0.2": + dependencies: + "@types/node": 22.19.11 + "@types/d3-array@3.2.2": {} "@types/d3-axis@3.0.6": @@ -6921,8 +8690,6 @@ snapshots: "@types/deep-eql@4.0.2": {} - "@types/eslint-config-prettier@6.11.3": {} - "@types/estree@1.0.8": {} "@types/geojson@7946.0.16": {} @@ -6931,8 +8698,6 @@ snapshots: dependencies: "@types/unist": 3.0.3 - "@types/json-schema@7.0.15": {} - "@types/linkify-it@5.0.0": {} "@types/markdown-it@14.1.2": @@ -6946,6 +8711,8 @@ snapshots: "@types/mdurl@2.0.0": {} + "@types/node@12.20.55": {} + "@types/node@22.19.11": dependencies: undici-types: 6.21.0 @@ -6957,174 +8724,6 @@ snapshots: "@types/web-bluetooth@0.0.21": {} - "@typescript-eslint/eslint-plugin@8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3)": - dependencies: - "@eslint-community/regexpp": 4.12.2 - "@typescript-eslint/parser": 8.21.0(eslint@9.39.2)(typescript@5.9.3) - "@typescript-eslint/scope-manager": 8.21.0 - "@typescript-eslint/type-utils": 8.21.0(eslint@9.39.2)(typescript@5.9.3) - "@typescript-eslint/utils": 8.21.0(eslint@9.39.2)(typescript@5.9.3) - "@typescript-eslint/visitor-keys": 8.21.0 - eslint: 9.39.2 - graphemer: 1.4.0 - ignore: 5.3.2 - natural-compare: 1.4.0 - ts-api-utils: 2.4.0(typescript@5.9.3) - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color - - "@typescript-eslint/eslint-plugin@8.56.0(@typescript-eslint/parser@8.56.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3)": - dependencies: - "@eslint-community/regexpp": 4.12.2 - "@typescript-eslint/parser": 8.56.0(eslint@9.39.2)(typescript@5.9.3) - "@typescript-eslint/scope-manager": 8.56.0 - "@typescript-eslint/type-utils": 8.56.0(eslint@9.39.2)(typescript@5.9.3) - "@typescript-eslint/utils": 8.56.0(eslint@9.39.2)(typescript@5.9.3) - "@typescript-eslint/visitor-keys": 8.56.0 - eslint: 9.39.2 - ignore: 7.0.5 - natural-compare: 1.4.0 - ts-api-utils: 2.4.0(typescript@5.9.3) - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color - - "@typescript-eslint/parser@8.21.0(eslint@9.39.2)(typescript@5.9.3)": - dependencies: - "@typescript-eslint/scope-manager": 8.21.0 - "@typescript-eslint/types": 8.21.0 - "@typescript-eslint/typescript-estree": 8.21.0(typescript@5.9.3) - "@typescript-eslint/visitor-keys": 8.21.0 - debug: 4.4.0(supports-color@5.5.0) - eslint: 9.39.2 - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color - - "@typescript-eslint/parser@8.56.0(eslint@9.39.2)(typescript@5.9.3)": - dependencies: - "@typescript-eslint/scope-manager": 8.56.0 - "@typescript-eslint/types": 8.56.0 - "@typescript-eslint/typescript-estree": 8.56.0(typescript@5.9.3) - "@typescript-eslint/visitor-keys": 8.56.0 - debug: 4.4.3 - eslint: 9.39.2 - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color - - "@typescript-eslint/project-service@8.56.0(typescript@5.9.3)": - dependencies: - "@typescript-eslint/tsconfig-utils": 8.56.0(typescript@5.9.3) - "@typescript-eslint/types": 8.56.0 - debug: 4.4.3 - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color - - "@typescript-eslint/scope-manager@8.21.0": - dependencies: - "@typescript-eslint/types": 8.21.0 - "@typescript-eslint/visitor-keys": 8.21.0 - - "@typescript-eslint/scope-manager@8.56.0": - dependencies: - "@typescript-eslint/types": 8.56.0 - "@typescript-eslint/visitor-keys": 8.56.0 - - "@typescript-eslint/tsconfig-utils@8.56.0(typescript@5.9.3)": - dependencies: - typescript: 5.9.3 - - "@typescript-eslint/type-utils@8.21.0(eslint@9.39.2)(typescript@5.9.3)": - dependencies: - "@typescript-eslint/typescript-estree": 8.21.0(typescript@5.9.3) - "@typescript-eslint/utils": 8.21.0(eslint@9.39.2)(typescript@5.9.3) - debug: 4.4.0(supports-color@5.5.0) - eslint: 9.39.2 - ts-api-utils: 2.4.0(typescript@5.9.3) - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color - - "@typescript-eslint/type-utils@8.56.0(eslint@9.39.2)(typescript@5.9.3)": - dependencies: - "@typescript-eslint/types": 8.56.0 - "@typescript-eslint/typescript-estree": 8.56.0(typescript@5.9.3) - "@typescript-eslint/utils": 8.56.0(eslint@9.39.2)(typescript@5.9.3) - debug: 4.4.3 - eslint: 9.39.2 - ts-api-utils: 2.4.0(typescript@5.9.3) - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color - - "@typescript-eslint/types@8.21.0": {} - - "@typescript-eslint/types@8.56.0": {} - - "@typescript-eslint/typescript-estree@8.21.0(typescript@5.9.3)": - dependencies: - "@typescript-eslint/types": 8.21.0 - "@typescript-eslint/visitor-keys": 8.21.0 - debug: 4.4.0(supports-color@5.5.0) - fast-glob: 3.3.3 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.7.4 - ts-api-utils: 2.4.0(typescript@5.9.3) - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color - - "@typescript-eslint/typescript-estree@8.56.0(typescript@5.9.3)": - dependencies: - "@typescript-eslint/project-service": 8.56.0(typescript@5.9.3) - "@typescript-eslint/tsconfig-utils": 8.56.0(typescript@5.9.3) - "@typescript-eslint/types": 8.56.0 - "@typescript-eslint/visitor-keys": 8.56.0 - debug: 4.4.3 - minimatch: 9.0.5 - semver: 7.7.4 - tinyglobby: 0.2.15 - ts-api-utils: 2.4.0(typescript@5.9.3) - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color - - "@typescript-eslint/utils@8.21.0(eslint@9.39.2)(typescript@5.9.3)": - dependencies: - "@eslint-community/eslint-utils": 4.9.1(eslint@9.39.2) - "@typescript-eslint/scope-manager": 8.21.0 - "@typescript-eslint/types": 8.21.0 - "@typescript-eslint/typescript-estree": 8.21.0(typescript@5.9.3) - eslint: 9.39.2 - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color - - "@typescript-eslint/utils@8.56.0(eslint@9.39.2)(typescript@5.9.3)": - dependencies: - "@eslint-community/eslint-utils": 4.9.1(eslint@9.39.2) - "@typescript-eslint/scope-manager": 8.56.0 - "@typescript-eslint/types": 8.56.0 - "@typescript-eslint/typescript-estree": 8.56.0(typescript@5.9.3) - eslint: 9.39.2 - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color - - "@typescript-eslint/visitor-keys@8.21.0": - dependencies: - "@typescript-eslint/types": 8.21.0 - eslint-visitor-keys: 4.2.1 - - "@typescript-eslint/visitor-keys@8.56.0": - dependencies: - "@typescript-eslint/types": 8.56.0 - eslint-visitor-keys: 5.0.0 - "@ungap/structured-clone@1.3.0": {} "@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@22.19.11))(vue@3.5.28(typescript@5.9.3))": @@ -7132,7 +8731,7 @@ snapshots: vite: 5.4.21(@types/node@22.19.11) vue: 3.5.28(typescript@5.9.3) - "@vitest/coverage-v8@3.2.4(vitest@3.2.4(@types/node@22.19.11)(yaml@2.8.2))": + "@vitest/coverage-v8@3.2.4(vitest@3.2.4(@types/node@22.19.11)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2))": dependencies: "@ampproject/remapping": 2.3.0 "@bcoe/v8-coverage": 1.0.2 @@ -7147,7 +8746,7 @@ snapshots: std-env: 3.10.0 test-exclude: 7.0.1 tinyrainbow: 2.0.0 - vitest: 3.2.4(@types/node@22.19.11)(yaml@2.8.2) + vitest: 3.2.4(@types/node@22.19.11)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) transitivePeerDependencies: - supports-color @@ -7159,13 +8758,13 @@ snapshots: chai: 5.3.3 tinyrainbow: 2.0.0 - "@vitest/mocker@3.2.4(vite@7.3.1(@types/node@22.19.11)(yaml@2.8.2))": + "@vitest/mocker@3.2.4(vite@7.3.1(@types/node@22.19.11)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2))": dependencies: "@vitest/spy": 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 7.3.1(@types/node@22.19.11)(yaml@2.8.2) + vite: 7.3.1(@types/node@22.19.11)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) "@vitest/pretty-format@3.2.4": dependencies: @@ -7292,6 +8891,11 @@ snapshots: transitivePeerDependencies: - typescript + JSONStream@1.3.5: + dependencies: + jsonparse: 1.3.1 + through: 2.3.8 + abbrev@4.0.0: {} accepts@2.0.0: @@ -7299,10 +8903,6 @@ snapshots: mime-types: 3.0.2 negotiator: 1.0.0 - acorn-jsx@5.3.2(acorn@8.16.0): - dependencies: - acorn: 8.16.0 - acorn@8.16.0: {} adm-zip@0.5.16: {} @@ -7313,13 +8913,6 @@ snapshots: optionalDependencies: ajv: 8.18.0 - ajv@6.12.6: - dependencies: - fast-deep-equal: 3.1.3 - fast-json-stable-stringify: 2.1.0 - json-schema-traverse: 0.4.1 - uri-js: 4.4.1 - ajv@8.18.0: dependencies: fast-deep-equal: 3.1.3 @@ -7344,6 +8937,8 @@ snapshots: "@algolia/requester-fetch": 5.49.0 "@algolia/requester-node-http": 5.49.0 + ansi-colors@4.1.3: {} + ansi-escapes@7.3.0: dependencies: environment: 1.1.0 @@ -7358,10 +8953,7 @@ snapshots: ansi-styles@6.2.3: {} - anymatch@3.1.3: - dependencies: - normalize-path: 3.0.0 - picomatch: 2.3.1 + any-promise@1.3.0: {} argparse@1.0.10: dependencies: @@ -7369,6 +8961,10 @@ snapshots: argparse@2.0.1: {} + array-ify@1.0.0: {} + + array-union@2.1.0: {} + assertion-error@2.0.1: {} ast-v8-to-istanbul@0.3.11: @@ -7381,7 +8977,9 @@ snapshots: balanced-match@4.0.3: {} - binary-extensions@2.3.0: {} + better-path-resolve@1.0.0: + dependencies: + is-windows: 1.0.2 birpc@2.9.0: {} @@ -7399,11 +8997,6 @@ snapshots: transitivePeerDependencies: - supports-color - brace-expansion@1.1.12: - dependencies: - balanced-match: 1.0.2 - concat-map: 0.0.1 - brace-expansion@2.0.2: dependencies: balanced-match: 1.0.2 @@ -7416,6 +9009,11 @@ snapshots: dependencies: fill-range: 7.1.1 + bundle-require@5.1.0(esbuild@0.27.3): + dependencies: + esbuild: 0.27.3 + load-tsconfig: 0.2.5 + bytes@3.1.2: {} cac@6.7.14: {} @@ -7456,17 +9054,14 @@ snapshots: loupe: 3.2.1 pathval: 2.0.1 - chalk@4.1.2: - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - chalk@5.6.2: {} character-entities-html4@2.1.0: {} character-entities-legacy@3.0.0: {} + chardet@2.1.1: {} + check-error@2.1.3: {} chevrotain-allstar@0.3.1(chevrotain@11.0.3): @@ -7483,17 +9078,9 @@ snapshots: "@chevrotain/utils": 11.0.3 lodash-es: 4.17.21 - chokidar@3.6.0: + chokidar@4.0.3: dependencies: - anymatch: 3.1.3 - braces: 3.0.3 - glob-parent: 5.1.2 - is-binary-path: 2.1.0 - is-glob: 4.0.3 - normalize-path: 3.0.0 - readdirp: 3.6.0 - optionalDependencies: - fsevents: 2.3.3 + readdirp: 4.1.2 chownr@3.0.0: {} @@ -7501,10 +9088,18 @@ snapshots: dependencies: restore-cursor: 5.1.0 - cli-truncate@4.0.0: + cli-truncate@5.2.0: dependencies: - slice-ansi: 5.0.0 - string-width: 7.2.0 + slice-ansi: 8.0.0 + string-width: 8.2.0 + + cli-width@4.1.0: {} + + cliui@8.0.1: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 color-convert@2.0.1: dependencies: @@ -7518,22 +9113,44 @@ snapshots: commander@12.1.0: {} - commander@13.1.0: {} + commander@14.0.3: {} + + commander@4.1.1: {} commander@7.2.0: {} commander@8.3.0: {} - concat-map@0.0.1: {} + compare-func@2.0.0: + dependencies: + array-ify: 1.0.0 + dot-prop: 5.3.0 confbox@0.1.8: {} confbox@0.2.4: {} + consola@3.4.2: {} + content-disposition@1.0.1: {} content-type@1.0.5: {} + conventional-changelog-angular@7.0.0: + dependencies: + compare-func: 2.0.0 + + conventional-changelog-conventionalcommits@7.0.2: + dependencies: + compare-func: 2.0.0 + + conventional-commits-parser@5.0.0: + dependencies: + JSONStream: 1.3.5 + is-text-path: 2.0.0 + meow: 12.1.1 + split2: 4.2.0 + cookie-signature@1.2.2: {} cookie@0.7.2: {} @@ -7555,6 +9172,22 @@ snapshots: dependencies: layout-base: 2.0.1 + cosmiconfig-typescript-loader@6.2.0(@types/node@22.19.11)(cosmiconfig@9.0.1(typescript@5.9.3))(typescript@5.9.3): + dependencies: + "@types/node": 22.19.11 + cosmiconfig: 9.0.1(typescript@5.9.3) + jiti: 2.6.1 + typescript: 5.9.3 + + cosmiconfig@9.0.1(typescript@5.9.3): + dependencies: + env-paths: 2.2.1 + import-fresh: 3.3.1 + js-yaml: 4.1.1 + parse-json: 5.2.0 + optionalDependencies: + typescript: 5.9.3 + cross-spawn@7.0.6: dependencies: path-key: 3.1.1 @@ -7747,13 +9380,13 @@ snapshots: d3: 7.9.0 lodash-es: 4.17.23 + dargs@8.1.0: {} + dayjs@1.11.13: {} - debug@4.4.0(supports-color@5.5.0): + debug@4.4.0: dependencies: ms: 2.1.3 - optionalDependencies: - supports-color: 5.5.0 debug@4.4.3: dependencies: @@ -7761,8 +9394,6 @@ snapshots: deep-eql@5.0.2: {} - deep-is@0.1.4: {} - delaunator@5.0.1: dependencies: robust-predicates: 3.0.2 @@ -7771,14 +9402,24 @@ snapshots: dequal@2.0.3: {} + detect-indent@6.1.0: {} + devlop@1.1.0: dependencies: dequal: 2.0.3 + dir-glob@3.0.1: + dependencies: + path-type: 4.0.0 + dompurify@3.3.1: optionalDependencies: "@types/trusted-types": 2.0.7 + dot-prop@5.3.0: + dependencies: + is-obj: 2.0.0 + dunder-proto@1.0.1: dependencies: call-bind-apply-helpers: 1.0.2 @@ -7799,6 +9440,11 @@ snapshots: encodeurl@2.0.0: {} + enquirer@2.4.1: + dependencies: + ansi-colors: 4.1.3 + strip-ansi: 6.0.1 + entities@7.0.1: {} env-paths@2.2.1: {} @@ -7807,6 +9453,10 @@ snapshots: err-code@2.0.3: {} + error-ex@1.3.4: + dependencies: + is-arrayish: 0.2.1 + es-define-property@1.0.1: {} es-errors@1.3.0: {} @@ -7843,6 +9493,35 @@ snapshots: "@esbuild/win32-ia32": 0.21.5 "@esbuild/win32-x64": 0.21.5 + esbuild@0.25.12: + optionalDependencies: + "@esbuild/aix-ppc64": 0.25.12 + "@esbuild/android-arm": 0.25.12 + "@esbuild/android-arm64": 0.25.12 + "@esbuild/android-x64": 0.25.12 + "@esbuild/darwin-arm64": 0.25.12 + "@esbuild/darwin-x64": 0.25.12 + "@esbuild/freebsd-arm64": 0.25.12 + "@esbuild/freebsd-x64": 0.25.12 + "@esbuild/linux-arm": 0.25.12 + "@esbuild/linux-arm64": 0.25.12 + "@esbuild/linux-ia32": 0.25.12 + "@esbuild/linux-loong64": 0.25.12 + "@esbuild/linux-mips64el": 0.25.12 + "@esbuild/linux-ppc64": 0.25.12 + "@esbuild/linux-riscv64": 0.25.12 + "@esbuild/linux-s390x": 0.25.12 + "@esbuild/linux-x64": 0.25.12 + "@esbuild/netbsd-arm64": 0.25.12 + "@esbuild/netbsd-x64": 0.25.12 + "@esbuild/openbsd-arm64": 0.25.12 + "@esbuild/openbsd-x64": 0.25.12 + "@esbuild/openharmony-arm64": 0.25.12 + "@esbuild/sunos-x64": 0.25.12 + "@esbuild/win32-arm64": 0.25.12 + "@esbuild/win32-ia32": 0.25.12 + "@esbuild/win32-x64": 0.25.12 + esbuild@0.27.3: optionalDependencies: "@esbuild/aix-ppc64": 0.27.3 @@ -7872,90 +9551,18 @@ snapshots: "@esbuild/win32-ia32": 0.27.3 "@esbuild/win32-x64": 0.27.3 - escape-html@1.0.3: {} - - escape-string-regexp@4.0.0: {} - - eslint-config-prettier@10.1.8(eslint@9.39.2): - dependencies: - eslint: 9.39.2 - - eslint-scope@8.4.0: - dependencies: - esrecurse: 4.3.0 - estraverse: 5.3.0 - - eslint-visitor-keys@3.4.3: {} - - eslint-visitor-keys@4.2.1: {} - - eslint-visitor-keys@5.0.0: {} - - eslint@9.39.2: - dependencies: - "@eslint-community/eslint-utils": 4.9.1(eslint@9.39.2) - "@eslint-community/regexpp": 4.12.2 - "@eslint/config-array": 0.21.1 - "@eslint/config-helpers": 0.4.2 - "@eslint/core": 0.17.0 - "@eslint/eslintrc": 3.3.3 - "@eslint/js": 9.39.2 - "@eslint/plugin-kit": 0.4.1 - "@humanfs/node": 0.16.7 - "@humanwhocodes/module-importer": 1.0.1 - "@humanwhocodes/retry": 0.4.3 - "@types/estree": 1.0.8 - ajv: 6.12.6 - chalk: 4.1.2 - cross-spawn: 7.0.6 - debug: 4.4.0(supports-color@5.5.0) - escape-string-regexp: 4.0.0 - eslint-scope: 8.4.0 - eslint-visitor-keys: 4.2.1 - espree: 10.4.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 - lodash.merge: 4.6.2 - minimatch: 3.1.2 - natural-compare: 1.4.0 - optionator: 0.9.4 - transitivePeerDependencies: - - supports-color + escalade@3.2.0: {} - espree@10.4.0: - dependencies: - acorn: 8.16.0 - acorn-jsx: 5.3.2(acorn@8.16.0) - eslint-visitor-keys: 4.2.1 + escape-html@1.0.3: {} esprima@4.0.1: {} - esquery@1.7.0: - dependencies: - estraverse: 5.3.0 - - esrecurse@4.3.0: - dependencies: - estraverse: 5.3.0 - - estraverse@5.3.0: {} - estree-walker@2.0.2: {} estree-walker@3.0.3: dependencies: "@types/estree": 1.0.8 - esutils@2.0.3: {} - etag@1.8.1: {} eventemitter3@5.0.4: {} @@ -7966,18 +9573,6 @@ snapshots: dependencies: eventsource-parser: 3.0.6 - execa@8.0.1: - dependencies: - cross-spawn: 7.0.6 - get-stream: 8.0.1 - human-signals: 5.0.0 - is-stream: 3.0.0 - merge-stream: 2.0.0 - npm-run-path: 5.3.0 - onetime: 6.0.0 - signal-exit: 4.1.0 - strip-final-newline: 3.0.0 - expect-type@1.3.0: {} exponential-backoff@3.1.3: {} @@ -7995,7 +9590,7 @@ snapshots: content-type: 1.0.5 cookie: 0.7.2 cookie-signature: 1.2.2 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0 depd: 2.0.0 encodeurl: 2.0.0 escape-html: 1.0.3 @@ -8026,6 +9621,8 @@ snapshots: dependencies: is-extendable: 0.1.1 + extendable-error@0.1.7: {} + fast-deep-equal@3.1.3: {} fast-glob@3.3.3: @@ -8036,31 +9633,27 @@ snapshots: merge2: 1.4.1 micromatch: 4.0.8 - fast-json-stable-stringify@2.1.0: {} - - fast-levenshtein@2.0.6: {} - fast-uri@3.1.0: {} fastq@1.20.1: dependencies: reusify: 1.1.0 + fd-package-json@2.0.0: + dependencies: + walk-up-path: 4.0.0 + fdir@6.5.0(picomatch@4.0.3): optionalDependencies: picomatch: 4.0.3 - file-entry-cache@8.0.0: - dependencies: - flat-cache: 4.0.1 - fill-range@7.1.1: dependencies: to-regex-range: 5.0.1 finalhandler@2.1.1: dependencies: - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0 encodeurl: 2.0.0 escape-html: 1.0.3 on-finished: 2.4.1 @@ -8069,17 +9662,22 @@ snapshots: transitivePeerDependencies: - supports-color - find-up@5.0.0: + find-up@4.1.0: dependencies: - locate-path: 6.0.0 + locate-path: 5.0.0 path-exists: 4.0.0 - flat-cache@4.0.1: + find-up@7.0.0: dependencies: - flatted: 3.3.3 - keyv: 4.5.4 + locate-path: 7.2.0 + path-exists: 5.0.0 + unicorn-magic: 0.1.0 - flatted@3.3.3: {} + fix-dts-default-cjs-exports@1.0.1: + dependencies: + magic-string: 0.30.21 + mlly: 1.8.0 + rollup: 4.57.1 focus-trap@7.8.0: dependencies: @@ -8090,10 +9688,26 @@ snapshots: cross-spawn: 7.0.6 signal-exit: 4.1.0 + formatly@0.3.0: + dependencies: + fd-package-json: 2.0.0 + forwarded@0.2.0: {} fresh@2.0.0: {} + fs-extra@7.0.1: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 4.0.0 + universalify: 0.1.2 + + fs-extra@8.1.0: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 4.0.0 + universalify: 0.1.2 + fs-minipass@3.0.3: dependencies: minipass: 7.1.3 @@ -8103,6 +9717,8 @@ snapshots: function-bind@1.1.2: {} + get-caller-file@2.0.5: {} + get-east-asian-width@1.5.0: {} get-intrinsic@1.3.0: @@ -8123,13 +9739,17 @@ snapshots: dunder-proto: 1.0.1 es-object-atoms: 1.1.1 - get-stream@8.0.1: {} + get-tsconfig@4.13.6: + dependencies: + resolve-pkg-maps: 1.0.0 - glob-parent@5.1.2: + git-raw-commits@4.0.0: dependencies: - is-glob: 4.0.3 + dargs: 8.1.0 + meow: 12.1.1 + split2: 4.2.0 - glob-parent@6.0.2: + glob-parent@5.1.2: dependencies: is-glob: 4.0.3 @@ -8148,16 +9768,25 @@ snapshots: minipass: 7.1.3 path-scurry: 2.0.1 - globals@14.0.0: {} + global-directory@4.0.1: + dependencies: + ini: 4.1.1 globals@15.15.0: {} + globby@11.1.0: + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.3 + ignore: 5.3.2 + merge2: 1.4.1 + slash: 3.0.0 + gopd@1.2.0: {} graceful-fs@4.2.11: {} - graphemer@1.4.0: {} - gray-matter@4.0.3: dependencies: js-yaml: 3.14.2 @@ -8167,8 +9796,6 @@ snapshots: hachure-fill@0.5.2: {} - has-flag@3.0.0: {} - has-flag@4.0.0: {} has-symbols@1.1.0: {} @@ -8220,18 +9847,18 @@ snapshots: http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.4 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0 transitivePeerDependencies: - supports-color https-proxy-agent@7.0.6: dependencies: agent-base: 7.1.4 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0 transitivePeerDependencies: - supports-color - human-signals@5.0.0: {} + human-id@4.1.3: {} husky@9.1.7: {} @@ -8243,25 +9870,25 @@ snapshots: dependencies: safer-buffer: 2.1.2 - ignore-by-default@1.0.1: {} - ignore-walk@8.0.0: dependencies: minimatch: 10.2.1 ignore@5.3.2: {} - ignore@7.0.5: {} - import-fresh@3.3.1: dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 + import-meta-resolve@4.2.0: {} + imurmurhash@0.1.4: {} inherits@2.0.4: {} + ini@4.1.1: {} + ini@6.0.0: {} internmap@1.0.1: {} @@ -8272,9 +9899,7 @@ snapshots: ipaddr.js@1.9.1: {} - is-binary-path@2.1.0: - dependencies: - binary-extensions: 2.3.0 + is-arrayish@0.2.1: {} is-extendable@0.1.1: {} @@ -8282,8 +9907,6 @@ snapshots: is-fullwidth-code-point@3.0.0: {} - is-fullwidth-code-point@4.0.0: {} - is-fullwidth-code-point@5.1.0: dependencies: get-east-asian-width: 1.5.0 @@ -8294,12 +9917,22 @@ snapshots: is-number@7.0.0: {} + is-obj@2.0.0: {} + is-promise@4.0.0: {} - is-stream@3.0.0: {} + is-subdir@1.2.0: + dependencies: + better-path-resolve: 1.0.0 + + is-text-path@2.0.0: + dependencies: + text-extensions: 2.4.0 is-what@5.5.0: {} + is-windows@1.0.2: {} + isexe@2.0.0: {} isexe@4.0.0: {} @@ -8315,7 +9948,7 @@ snapshots: istanbul-lib-source-maps@5.0.6: dependencies: "@jridgewell/trace-mapping": 0.3.31 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0 istanbul-lib-coverage: 3.2.2 transitivePeerDependencies: - supports-color @@ -8331,10 +9964,16 @@ snapshots: optionalDependencies: "@pkgjs/parseargs": 0.11.0 + jiti@2.6.1: {} + jose@6.2.1: {} + joycon@3.1.1: {} + js-tokens@10.0.0: {} + js-tokens@4.0.0: {} + js-tokens@9.0.1: {} js-yaml@3.14.2: @@ -8346,17 +9985,17 @@ snapshots: dependencies: argparse: 2.0.1 - json-buffer@3.0.1: {} + json-parse-even-better-errors@2.3.1: {} json-parse-even-better-errors@5.0.0: {} - json-schema-traverse@0.4.1: {} - json-schema-traverse@1.0.0: {} json-schema-typed@8.0.2: {} - json-stable-stringify-without-jsonify@1.0.1: {} + jsonfile@4.0.0: + optionalDependencies: + graceful-fs: 4.2.11 jsonparse@1.3.1: {} @@ -8364,14 +10003,28 @@ snapshots: dependencies: commander: 8.3.0 - keyv@4.5.4: - dependencies: - json-buffer: 3.0.1 - khroma@2.1.0: {} kind-of@6.0.3: {} + knip@5.88.0(@types/node@22.19.11)(typescript@5.9.3): + dependencies: + "@nodelib/fs.walk": 1.2.8 + "@types/node": 22.19.11 + fast-glob: 3.3.3 + formatly: 0.3.0 + jiti: 2.6.1 + minimist: 1.2.8 + oxc-resolver: 11.19.1 + picocolors: 1.1.1 + picomatch: 4.0.3 + smol-toml: 1.6.0 + strip-json-comments: 5.0.3 + typescript: 5.9.3 + unbash: 2.2.0 + yaml: 2.8.2 + zod: 4.3.6 + kolorist@1.8.0: {} langium@3.0.0: @@ -8386,53 +10039,66 @@ snapshots: layout-base@2.0.1: {} - levn@0.4.1: - dependencies: - prelude-ls: 1.2.1 - type-check: 0.4.0 - lilconfig@3.1.3: {} - lint-staged@15.5.2: + lines-and-columns@1.2.4: {} + + lint-staged@16.4.0: dependencies: - chalk: 5.6.2 - commander: 13.1.0 - debug: 4.4.0(supports-color@5.5.0) - execa: 8.0.1 - lilconfig: 3.1.3 - listr2: 8.3.3 - micromatch: 4.0.8 - pidtree: 0.6.0 + commander: 14.0.3 + listr2: 9.0.5 + picomatch: 4.0.3 string-argv: 0.3.2 + tinyexec: 1.0.4 yaml: 2.8.2 - transitivePeerDependencies: - - supports-color - listr2@8.3.3: + listr2@9.0.5: dependencies: - cli-truncate: 4.0.0 + cli-truncate: 5.2.0 colorette: 2.0.20 eventemitter3: 5.0.4 log-update: 6.1.0 rfdc: 1.4.1 wrap-ansi: 9.0.2 + load-tsconfig@0.2.5: {} + local-pkg@1.1.2: dependencies: mlly: 1.8.0 pkg-types: 2.3.0 quansync: 0.2.11 - locate-path@6.0.0: + locate-path@5.0.0: + dependencies: + p-locate: 4.1.0 + + locate-path@7.2.0: dependencies: - p-locate: 5.0.0 + p-locate: 6.0.0 lodash-es@4.17.21: {} lodash-es@4.17.23: {} + lodash.camelcase@4.3.0: {} + + lodash.isplainobject@4.0.6: {} + + lodash.kebabcase@4.1.1: {} + lodash.merge@4.6.2: {} + lodash.mergewith@4.6.2: {} + + lodash.snakecase@4.1.1: {} + + lodash.startcase@4.4.0: {} + + lodash.uniq@4.5.0: {} + + lodash.upperfirst@4.3.1: {} + log-update@6.1.0: dependencies: ansi-escapes: 7.3.0 @@ -8497,9 +10163,9 @@ snapshots: media-typer@1.1.0: {} - merge-descriptors@2.0.0: {} + meow@12.1.1: {} - merge-stream@2.0.0: {} + merge-descriptors@2.0.0: {} merge2@1.4.1: {} @@ -8556,22 +10222,18 @@ snapshots: dependencies: mime-db: 1.54.0 - mimic-fn@4.0.0: {} - mimic-function@5.0.1: {} minimatch@10.2.1: dependencies: brace-expansion: 5.0.2 - minimatch@3.1.2: - dependencies: - brace-expansion: 1.1.12 - minimatch@9.0.5: dependencies: brace-expansion: 2.0.2 + minimist@1.2.8: {} + minipass-collect@2.0.1: dependencies: minipass: 7.1.3 @@ -8617,11 +10279,19 @@ snapshots: pkg-types: 1.3.1 ufo: 1.6.3 + mri@1.2.0: {} + ms@2.1.3: {} - nanoid@3.3.11: {} + mute-stream@2.0.0: {} + + mz@2.7.0: + dependencies: + any-promise: 1.3.0 + object-assign: 4.1.1 + thenify-all: 1.6.0 - natural-compare@1.4.0: {} + nanoid@3.3.11: {} negotiator@1.0.0: {} @@ -8640,19 +10310,6 @@ snapshots: transitivePeerDependencies: - supports-color - nodemon@3.1.11: - dependencies: - chokidar: 3.6.0 - debug: 4.4.0(supports-color@5.5.0) - ignore-by-default: 1.0.1 - minimatch: 3.1.2 - pstree.remy: 1.1.8 - semver: 7.7.4 - simple-update-notifier: 2.0.0 - supports-color: 5.5.0 - touch: 3.1.1 - undefsafe: 2.0.5 - non-layered-tidy-tree-layout@2.0.2: optional: true @@ -8660,8 +10317,6 @@ snapshots: dependencies: abbrev: 4.0.0 - normalize-path@3.0.0: {} - npm-bundled@5.0.0: dependencies: npm-normalize-package-bin: 5.0.0 @@ -8704,10 +10359,6 @@ snapshots: transitivePeerDependencies: - supports-color - npm-run-path@5.3.0: - dependencies: - path-key: 4.0.0 - object-assign@4.1.1: {} object-inspect@1.13.4: {} @@ -8720,10 +10371,6 @@ snapshots: dependencies: wrappy: 1.0.2 - onetime@6.0.0: - dependencies: - mimic-fn: 4.0.0 - onetime@7.0.0: dependencies: mimic-function: 5.0.1 @@ -8734,27 +10381,85 @@ snapshots: regex: 6.1.0 regex-recursion: 6.0.2 - optionator@0.9.4: + outdent@0.5.0: {} + + oxc-resolver@11.19.1: + optionalDependencies: + "@oxc-resolver/binding-android-arm-eabi": 11.19.1 + "@oxc-resolver/binding-android-arm64": 11.19.1 + "@oxc-resolver/binding-darwin-arm64": 11.19.1 + "@oxc-resolver/binding-darwin-x64": 11.19.1 + "@oxc-resolver/binding-freebsd-x64": 11.19.1 + "@oxc-resolver/binding-linux-arm-gnueabihf": 11.19.1 + "@oxc-resolver/binding-linux-arm-musleabihf": 11.19.1 + "@oxc-resolver/binding-linux-arm64-gnu": 11.19.1 + "@oxc-resolver/binding-linux-arm64-musl": 11.19.1 + "@oxc-resolver/binding-linux-ppc64-gnu": 11.19.1 + "@oxc-resolver/binding-linux-riscv64-gnu": 11.19.1 + "@oxc-resolver/binding-linux-riscv64-musl": 11.19.1 + "@oxc-resolver/binding-linux-s390x-gnu": 11.19.1 + "@oxc-resolver/binding-linux-x64-gnu": 11.19.1 + "@oxc-resolver/binding-linux-x64-musl": 11.19.1 + "@oxc-resolver/binding-openharmony-arm64": 11.19.1 + "@oxc-resolver/binding-wasm32-wasi": 11.19.1 + "@oxc-resolver/binding-win32-arm64-msvc": 11.19.1 + "@oxc-resolver/binding-win32-ia32-msvc": 11.19.1 + "@oxc-resolver/binding-win32-x64-msvc": 11.19.1 + + oxlint@1.56.0: + optionalDependencies: + "@oxlint/binding-android-arm-eabi": 1.56.0 + "@oxlint/binding-android-arm64": 1.56.0 + "@oxlint/binding-darwin-arm64": 1.56.0 + "@oxlint/binding-darwin-x64": 1.56.0 + "@oxlint/binding-freebsd-x64": 1.56.0 + "@oxlint/binding-linux-arm-gnueabihf": 1.56.0 + "@oxlint/binding-linux-arm-musleabihf": 1.56.0 + "@oxlint/binding-linux-arm64-gnu": 1.56.0 + "@oxlint/binding-linux-arm64-musl": 1.56.0 + "@oxlint/binding-linux-ppc64-gnu": 1.56.0 + "@oxlint/binding-linux-riscv64-gnu": 1.56.0 + "@oxlint/binding-linux-riscv64-musl": 1.56.0 + "@oxlint/binding-linux-s390x-gnu": 1.56.0 + "@oxlint/binding-linux-x64-gnu": 1.56.0 + "@oxlint/binding-linux-x64-musl": 1.56.0 + "@oxlint/binding-openharmony-arm64": 1.56.0 + "@oxlint/binding-win32-arm64-msvc": 1.56.0 + "@oxlint/binding-win32-ia32-msvc": 1.56.0 + "@oxlint/binding-win32-x64-msvc": 1.56.0 + + p-filter@2.1.0: + dependencies: + p-map: 2.1.0 + + p-limit@2.3.0: + dependencies: + p-try: 2.2.0 + + p-limit@4.0.0: dependencies: - deep-is: 0.1.4 - fast-levenshtein: 2.0.6 - levn: 0.4.1 - prelude-ls: 1.2.1 - type-check: 0.4.0 - word-wrap: 1.2.5 + yocto-queue: 1.2.2 - p-limit@3.1.0: + p-locate@4.1.0: dependencies: - yocto-queue: 0.1.0 + p-limit: 2.3.0 - p-locate@5.0.0: + p-locate@6.0.0: dependencies: - p-limit: 3.1.0 + p-limit: 4.0.0 + + p-map@2.1.0: {} p-map@7.0.4: {} + p-try@2.2.0: {} + package-json-from-dist@1.0.1: {} + package-manager-detector@0.2.11: + dependencies: + quansync: 0.2.11 + package-manager-detector@1.6.0: {} pacote@21.3.1: @@ -8783,15 +10488,22 @@ snapshots: dependencies: callsites: 3.1.0 + parse-json@5.2.0: + dependencies: + "@babel/code-frame": 7.29.0 + error-ex: 1.3.4 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + parseurl@1.3.3: {} path-data-parser@0.1.0: {} path-exists@4.0.0: {} - path-key@3.1.1: {} + path-exists@5.0.0: {} - path-key@4.0.0: {} + path-key@3.1.1: {} path-scurry@1.11.1: dependencies: @@ -8805,6 +10517,8 @@ snapshots: path-to-regexp@8.3.0: {} + path-type@4.0.0: {} + pathe@2.0.3: {} pathval@2.0.1: {} @@ -8817,7 +10531,9 @@ snapshots: picomatch@4.0.3: {} - pidtree@0.6.0: {} + pify@4.0.1: {} + + pirates@4.0.7: {} pkce-challenge@5.0.1: {} @@ -8840,6 +10556,15 @@ snapshots: path-data-parser: 0.1.0 points-on-curve: 0.2.0 + postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(yaml@2.8.2): + dependencies: + lilconfig: 3.1.3 + optionalDependencies: + jiti: 2.6.1 + postcss: 8.5.6 + tsx: 4.21.0 + yaml: 2.8.2 + postcss@8.5.6: dependencies: nanoid: 3.3.11 @@ -8848,7 +10573,7 @@ snapshots: preact@10.28.4: {} - prelude-ls@1.2.1: {} + prettier@2.8.8: {} prettier@3.8.1: {} @@ -8866,10 +10591,6 @@ snapshots: forwarded: 0.2.0 ipaddr.js: 1.9.1 - pstree.remy@1.1.8: {} - - punycode@2.3.1: {} - qs@6.15.0: dependencies: side-channel: 1.1.0 @@ -8887,9 +10608,14 @@ snapshots: iconv-lite: 0.7.2 unpipe: 1.0.0 - readdirp@3.6.0: + read-yaml-file@1.1.0: dependencies: - picomatch: 2.3.1 + graceful-fs: 4.2.11 + js-yaml: 3.14.2 + pify: 4.0.1 + strip-bom: 3.0.0 + + readdirp@4.1.2: {} regex-recursion@6.0.2: dependencies: @@ -8901,10 +10627,16 @@ snapshots: dependencies: regex-utilities: 2.3.0 + require-directory@2.1.1: {} + require-from-string@2.0.2: {} resolve-from@4.0.0: {} + resolve-from@5.0.0: {} + + resolve-pkg-maps@1.0.0: {} + restore-cursor@5.1.0: dependencies: onetime: 7.0.0 @@ -8965,7 +10697,7 @@ snapshots: router@2.2.0: dependencies: - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0 depd: 2.0.0 is-promise: 4.0.0 parseurl: 1.3.3 @@ -9081,32 +10813,32 @@ snapshots: dependencies: "@kwsites/file-exists": 1.1.1 "@kwsites/promise-deferred": 1.1.1 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0 transitivePeerDependencies: - supports-color - simple-update-notifier@2.0.0: - dependencies: - semver: 7.7.4 - sisteransi@1.0.5: {} - slice-ansi@5.0.0: + slash@3.0.0: {} + + slice-ansi@7.1.2: dependencies: ansi-styles: 6.2.3 - is-fullwidth-code-point: 4.0.0 + is-fullwidth-code-point: 5.1.0 - slice-ansi@7.1.2: + slice-ansi@8.0.0: dependencies: ansi-styles: 6.2.3 is-fullwidth-code-point: 5.1.0 smart-buffer@4.2.0: {} + smol-toml@1.6.0: {} + socks-proxy-agent@8.0.5: dependencies: agent-base: 7.1.4 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0 socks: 2.8.7 transitivePeerDependencies: - supports-color @@ -9118,8 +10850,15 @@ snapshots: source-map-js@1.2.1: {} + source-map@0.7.6: {} + space-separated-tokens@2.0.2: {} + spawndamnit@3.0.1: + dependencies: + cross-spawn: 7.0.6 + signal-exit: 4.1.0 + spdx-exceptions@2.5.0: {} spdx-expression-parse@4.0.0: @@ -9131,6 +10870,8 @@ snapshots: speakingurl@14.0.1: {} + split2@4.2.0: {} + sprintf-js@1.0.3: {} ssri@13.0.1: @@ -9163,6 +10904,11 @@ snapshots: get-east-asian-width: 1.5.0 strip-ansi: 7.1.2 + string-width@8.2.0: + dependencies: + get-east-asian-width: 1.5.0 + strip-ansi: 7.1.2 + stringify-entities@4.0.4: dependencies: character-entities-html4: 2.1.0 @@ -9178,9 +10924,9 @@ snapshots: strip-bom-string@1.0.0: {} - strip-final-newline@3.0.0: {} + strip-bom@3.0.0: {} - strip-json-comments@3.1.1: {} + strip-json-comments@5.0.3: {} strip-literal@3.1.0: dependencies: @@ -9188,13 +10934,19 @@ snapshots: stylis@4.3.6: {} - superjson@2.2.6: + sucrase@3.35.1: dependencies: - copy-anything: 4.0.5 + "@jridgewell/gen-mapping": 0.3.13 + commander: 4.1.1 + lines-and-columns: 1.2.4 + mz: 2.7.0 + pirates: 4.0.7 + tinyglobby: 0.2.15 + ts-interface-checker: 0.1.13 - supports-color@5.5.0: + superjson@2.2.6: dependencies: - has-flag: 3.0.0 + copy-anything: 4.0.5 supports-color@7.2.0: dependencies: @@ -9210,18 +10962,34 @@ snapshots: minizlib: 3.1.0 yallist: 5.0.0 + term-size@2.2.1: {} + test-exclude@7.0.1: dependencies: "@istanbuljs/schema": 0.1.3 glob: 10.5.0 minimatch: 9.0.5 + text-extensions@2.4.0: {} + + thenify-all@1.6.0: + dependencies: + thenify: 3.3.1 + + thenify@3.3.1: + dependencies: + any-promise: 1.3.0 + + through@2.3.8: {} + tinybench@2.9.0: {} tinyexec@0.3.2: {} tinyexec@1.0.2: {} + tinyexec@1.0.4: {} + tinyglobby@0.2.15: dependencies: fdir: 6.5.0(picomatch@4.0.3) @@ -9239,15 +11007,52 @@ snapshots: toidentifier@1.0.1: {} - touch@3.1.1: {} + tree-kill@1.2.2: {} trim-lines@3.0.1: {} - ts-api-utils@2.4.0(typescript@5.9.3): + ts-dedent@2.2.0: {} + + ts-interface-checker@0.1.13: {} + + tslib@2.8.1: + optional: true + + tsup@8.5.1(@swc/core@1.15.11)(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2): dependencies: + bundle-require: 5.1.0(esbuild@0.27.3) + cac: 6.7.14 + chokidar: 4.0.3 + consola: 3.4.2 + debug: 4.4.0 + esbuild: 0.27.3 + fix-dts-default-cjs-exports: 1.0.1 + joycon: 3.1.1 + picocolors: 1.1.1 + postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.6)(tsx@4.21.0)(yaml@2.8.2) + resolve-from: 5.0.0 + rollup: 4.57.1 + source-map: 0.7.6 + sucrase: 3.35.1 + tinyexec: 0.3.2 + tinyglobby: 0.2.15 + tree-kill: 1.2.2 + optionalDependencies: + "@swc/core": 1.15.11 + postcss: 8.5.6 typescript: 5.9.3 + transitivePeerDependencies: + - jiti + - supports-color + - tsx + - yaml - ts-dedent@2.2.0: {} + tsx@4.21.0: + dependencies: + esbuild: 0.27.3 + get-tsconfig: 4.13.6 + optionalDependencies: + fsevents: 2.3.3 tuf-js@4.1.0: dependencies: @@ -9257,36 +11062,32 @@ snapshots: transitivePeerDependencies: - supports-color - turbo-darwin-64@2.8.10: + turbo-darwin-64@2.8.17: optional: true - turbo-darwin-arm64@2.8.10: + turbo-darwin-arm64@2.8.17: optional: true - turbo-linux-64@2.8.10: + turbo-linux-64@2.8.17: optional: true - turbo-linux-arm64@2.8.10: + turbo-linux-arm64@2.8.17: optional: true - turbo-windows-64@2.8.10: + turbo-windows-64@2.8.17: optional: true - turbo-windows-arm64@2.8.10: + turbo-windows-arm64@2.8.17: optional: true - turbo@2.8.10: + turbo@2.8.17: optionalDependencies: - turbo-darwin-64: 2.8.10 - turbo-darwin-arm64: 2.8.10 - turbo-linux-64: 2.8.10 - turbo-linux-arm64: 2.8.10 - turbo-windows-64: 2.8.10 - turbo-windows-arm64: 2.8.10 - - type-check@0.4.0: - dependencies: - prelude-ls: 1.2.1 + turbo-darwin-64: 2.8.17 + turbo-darwin-arm64: 2.8.17 + turbo-linux-64: 2.8.17 + turbo-linux-arm64: 2.8.17 + turbo-windows-64: 2.8.17 + turbo-windows-arm64: 2.8.17 type-is@2.0.1: dependencies: @@ -9294,24 +11095,16 @@ snapshots: media-typer: 1.1.0 mime-types: 3.0.2 - typescript-eslint@8.21.0(eslint@9.39.2)(typescript@5.9.3): - dependencies: - "@typescript-eslint/eslint-plugin": 8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.39.2)(typescript@5.9.3))(eslint@9.39.2)(typescript@5.9.3) - "@typescript-eslint/parser": 8.21.0(eslint@9.39.2)(typescript@5.9.3) - "@typescript-eslint/utils": 8.21.0(eslint@9.39.2)(typescript@5.9.3) - eslint: 9.39.2 - typescript: 5.9.3 - transitivePeerDependencies: - - supports-color - typescript@5.9.3: {} ufo@1.6.3: {} - undefsafe@2.0.5: {} + unbash@2.2.0: {} undici-types@6.21.0: {} + unicorn-magic@0.1.0: {} + unique-filename@5.0.0: dependencies: unique-slug: 6.0.0 @@ -9343,11 +11136,9 @@ snapshots: unist-util-is: 6.0.1 unist-util-visit-parents: 6.0.2 - unpipe@1.0.0: {} + universalify@0.1.2: {} - uri-js@4.4.1: - dependencies: - punycode: 2.3.1 + unpipe@1.0.0: {} uuid@9.0.1: {} @@ -9365,13 +11156,13 @@ snapshots: "@types/unist": 3.0.3 vfile-message: 4.0.3 - vite-node@3.2.4(@types/node@22.19.11)(yaml@2.8.2): + vite-node@3.2.4(@types/node@22.19.11)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2): dependencies: cac: 6.7.14 debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 7.3.1(@types/node@22.19.11)(yaml@2.8.2) + vite: 7.3.1(@types/node@22.19.11)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) transitivePeerDependencies: - "@types/node" - jiti @@ -9395,7 +11186,7 @@ snapshots: "@types/node": 22.19.11 fsevents: 2.3.3 - vite@7.3.1(@types/node@22.19.11)(yaml@2.8.2): + vite@7.3.1(@types/node@22.19.11)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2): dependencies: esbuild: 0.27.3 fdir: 6.5.0(picomatch@4.0.3) @@ -9406,6 +11197,8 @@ snapshots: optionalDependencies: "@types/node": 22.19.11 fsevents: 2.3.3 + jiti: 2.6.1 + tsx: 4.21.0 yaml: 2.8.2 vitepress-plugin-mermaid@2.0.17(mermaid@11.4.1)(vitepress@1.6.2(@algolia/client-search@5.49.0)(@types/node@22.19.11)(postcss@8.5.6)(search-insights@2.17.3)(typescript@5.9.3)): @@ -9464,11 +11257,11 @@ snapshots: - typescript - universal-cookie - vitest@3.2.4(@types/node@22.19.11)(yaml@2.8.2): + vitest@3.2.4(@types/node@22.19.11)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2): dependencies: "@types/chai": 5.2.3 "@vitest/expect": 3.2.4 - "@vitest/mocker": 3.2.4(vite@7.3.1(@types/node@22.19.11)(yaml@2.8.2)) + "@vitest/mocker": 3.2.4(vite@7.3.1(@types/node@22.19.11)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2)) "@vitest/pretty-format": 3.2.4 "@vitest/runner": 3.2.4 "@vitest/snapshot": 3.2.4 @@ -9486,8 +11279,8 @@ snapshots: tinyglobby: 0.2.15 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 7.3.1(@types/node@22.19.11)(yaml@2.8.2) - vite-node: 3.2.4(@types/node@22.19.11)(yaml@2.8.2) + vite: 7.3.1(@types/node@22.19.11)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) + vite-node: 3.2.4(@types/node@22.19.11)(jiti@2.6.1)(tsx@4.21.0)(yaml@2.8.2) why-is-node-running: 2.3.0 optionalDependencies: "@types/node": 22.19.11 @@ -9532,6 +11325,8 @@ snapshots: optionalDependencies: typescript: 5.9.3 + walk-up-path@4.0.0: {} + which@2.0.2: dependencies: isexe: 2.0.0 @@ -9545,7 +11340,11 @@ snapshots: siginfo: 2.0.0 stackback: 0.0.2 - word-wrap@1.2.5: {} + wrap-ansi@6.2.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 wrap-ansi@7.0.0: dependencies: @@ -9567,13 +11366,29 @@ snapshots: wrappy@1.0.2: {} + y18n@5.0.8: {} + yallist@4.0.0: {} yallist@5.0.0: {} yaml@2.8.2: {} - yocto-queue@0.1.0: {} + yargs-parser@21.1.1: {} + + yargs@17.7.2: + dependencies: + cliui: 8.0.1 + escalade: 3.2.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + + yocto-queue@1.2.2: {} + + yoctocolors-cjs@2.1.3: {} zod-to-json-schema@3.25.1(zod@4.3.6): dependencies: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index dee51e9..d494226 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,2 +1,19 @@ packages: - "packages/*" + +catalog: + # TypeScript + typescript: "^5.9.3" + "@tsconfig/node22": "^22.0.5" + "@types/node": "^22.10.7" + # Linting — oxlint replaces ESLint + typescript-eslint + eslint-config-prettier + oxlint: "^1.0.0" + # Formatting + prettier: "^3.4.2" + # Testing — pinned to 3.x; vitest 4+ requires vite 6 which vitepress 1.x doesn't support yet + vitest: "^3.2.4" + "@vitest/coverage-v8": "^3.2.4" + # Build / Dev + rimraf: "^6.1.3" + tsx: "^4.19.0" + tsup: "^8.3.0" From 4683bbd2220d11ca727a758641e3a82fa654b188 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 18 Mar 2026 14:51:27 +0000 Subject: [PATCH 2/2] chore: ignore .claude dir in prettier https://claude.ai/code/session_013WVNnTozRKrc3SoP9oLC4N --- .prettierignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.prettierignore b/.prettierignore index b121864..194d09b 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,2 +1,3 @@ dist .knowledge/docsets +.claude