diff --git a/.meta-updater/catalog/package.json b/.meta-updater/catalog/package.json new file mode 100644 index 000000000..494272bf9 --- /dev/null +++ b/.meta-updater/catalog/package.json @@ -0,0 +1,5 @@ +{ + "devDependencies": { + "rollup": "^4.34.8" + } +} diff --git a/.meta-updater/main.mjs b/.meta-updater/main.mjs index 6663311bb..e29ae004f 100644 --- a/.meta-updater/main.mjs +++ b/.meta-updater/main.mjs @@ -3,6 +3,7 @@ import { createUpdateOptions } from '@pnpm/meta-updater'; import repo, { getPackageInfo, WORKSPACE_ROOT } from '@glimmer-workspace/repo-metadata'; import { json, packageJson } from './formats/json.mjs'; import { code } from './formats/code.mjs'; +import catalog from './catalog/package.json' with { type: 'json' }; /** * @import { PackageInfo } from '@glimmer-workspace/repo-metadata'; @@ -67,11 +68,17 @@ export default () => update(scripts, 'test:publint', 'publint'); + const devDependencies = /** @type { JsonObject } */ (actual.devDependencies ??= {}); + + for (const [name, version] of Object.entries(catalog.devDependencies)) { + if (name in devDependencies) { + update(devDependencies, name, version); + } + } + // Packages are built if they're published and have at least one `.ts` entry point that is // not a `.d.ts` file **or** if they are explicitly marked as built via `repo-meta.built`. if (pkg['repo-meta']?.built) { - const devDependencies = /** @type { JsonObject } */ (actual.devDependencies ??= {}); - update(devDependencies, '@glimmer-workspace/env', 'workspace:*'); update(scripts, 'prepack', 'rollup -c rollup.config.mjs'); @@ -124,6 +131,7 @@ export default () => } cleanup(actual, 'publishConfig'); + cleanup(actual, 'devDependencies'); return actual; }, diff --git a/.meta-updater/package.json b/.meta-updater/package.json index 0a1036c0c..94ac00d3a 100644 --- a/.meta-updater/package.json +++ b/.meta-updater/package.json @@ -8,23 +8,23 @@ ], "scripts": {}, "dependencies": { - "@pnpm/find-workspace-dir": "^1000.0.1", + "@pnpm/find-workspace-dir": "^1000.0.2", "@pnpm/meta-updater": "^2.0.3", - "@pnpm/read-package-json": "^1000.0.2", - "globby": "^14.0.2", + "@pnpm/read-package-json": "^1000.0.3", + "globby": "^14.1.0", "load-json-file": "^7.0.1", "minimatch": "^10.0.1", "ramda": "^0.30.1", "write-json-file": "^6.0.0", - "zx": "^8.3.0" + "zx": "^8.3.2" }, "devDependencies": { "@glimmer-workspace/env": "workspace:*", "@glimmer-workspace/repo-metadata": "workspace:*", - "@pnpm/types": "^1000.0.0", - "@pnpm/workspace.find-packages": "^1000.0.1", - "@types/node": "catalog:", + "@pnpm/types": "^1000.1.1", + "@pnpm/workspace.find-packages": "^1000.0.10", + "@types/node": "^22.13.4", "@types/ramda": "^0.30.2", - "type-fest": "^4.32.0" + "type-fest": "^4.35.0" } } diff --git a/.prototools b/.prototools index 340acc1d0..3d8d6e01e 100644 --- a/.prototools +++ b/.prototools @@ -1,2 +1,2 @@ -node = "22" +node = "lts" pnpm = "latest-10" diff --git a/bin/package.json b/bin/package.json index 78409b28e..d1611f820 100644 --- a/bin/package.json +++ b/bin/package.json @@ -16,17 +16,17 @@ "scripts": {}, "dependencies": { "@glimmer-workspace/repo-metadata": "workspace:*", - "@pnpm/workspace.find-packages": "^1000.0.5", + "@pnpm/workspace.find-packages": "^1000.0.10", "@types/glob": "^8.1.0", "@types/js-yaml": "^4.0.9", - "@types/node": "^20.9.4", + "@types/node": "^22.13.4", "@types/puppeteer-chromium-resolver": "workspace:*", - "@types/tar": "^6.1.10", - "chalk": "^5.2.0", + "@types/tar": "^6.1.13", + "chalk": "^5.4.1", "execa": "^7.1.1", - "fs-extra": "^11.2.0", + "fs-extra": "^11.3.0", "glob": "^10.2.3", - "globby": "^14.0.2", + "globby": "^14.1.0", "js-yaml": "^4.1.0", "mkdirp": "^3.0.1", "p-map": "^7.0.3", @@ -36,14 +36,14 @@ "spex": "^3.4.0", "tar": "^6.2.0", "which": "^5.0.0", - "zx": "^8.3.0" + "zx": "^8.3.2" }, "devDependencies": { - "@pnpm/types": "^1000.1.0", + "@pnpm/types": "^1000.1.1", "@types/fs-extra": "^11.0.4", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "esno": "^0.16.3", - "type-fest": "^4.32.0" + "type-fest": "^4.35.0" }, "engines": { "node": ">=18.0.0" diff --git a/package.json b/package.json index 638730ce5..fc4dc229a 100644 --- a/package.json +++ b/package.json @@ -46,15 +46,15 @@ "devDependencies": { "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-transform-modules-commonjs": "^7.26.3", - "@babel/plugin-transform-runtime": "^7.25.9", - "@babel/preset-env": "^7.26.0", + "@babel/plugin-transform-runtime": "^7.26.9", + "@babel/preset-env": "^7.26.9", "@babel/preset-typescript": "^7.26.0", - "@babel/runtime": "^7.26.0", - "@babel/traverse": "^7.26.4", - "@babel/types": "^7.26.3", + "@babel/runtime": "^7.26.9", + "@babel/traverse": "^7.26.9", + "@babel/types": "^7.26.9", "@eslint-community/eslint-plugin-eslint-comments": "^4.4.1", - "@eslint/config-inspector": "^0.7.1", - "@eslint/js": "9.17.0", + "@eslint/config-inspector": "^1.0.0", + "@eslint/js": "9.20.0", "@glimmer-workspace/benchmark-env": "workspace:*", "@glimmer-workspace/build-support": "workspace:*", "@glimmer-workspace/eslint-plugin": "workspace:*", @@ -63,7 +63,7 @@ "@glimmer-workspace/repo-metadata": "workspace:*", "@glimmer/env": "0.1.7", "@pnpm/meta-updater": "^2.0.3", - "@pnpm/workspace.find-packages": "^1000.0.3", + "@pnpm/workspace.find-packages": "^1000.0.10", "@rollup/plugin-sucrase": "^5.0.2", "@rollup/plugin-terser": "^0.4.4", "@tsconfig/strictest": "^2.0.5", @@ -74,11 +74,11 @@ "@types/eslint-community__eslint-plugin-eslint-comments": "workspace:*", "@types/eslint-plugin-qunit": "workspace:*", "@types/eslint__eslintrc": "^2.1.2", - "@types/node": "^20.17.10", + "@types/node": "^22.13.4", "@types/preval.macro": "^3.0.2", "@types/qunit": "^2.19.12", - "@typescript-eslint/parser": "^8.20.0", - "@typescript-eslint/utils": "^8.20.0", + "@typescript-eslint/parser": "^8.24.1", + "@typescript-eslint/utils": "^8.24.1", "amd-name-resolver": "^1.3.1", "auto-dist-tag": "^2.1.1", "babel-plugin-macros": "^3.1.0", @@ -89,14 +89,14 @@ "ember-cli": "~4.12.3", "ember-cli-browserstack": "^2.1.0", "ensure-posix-path": "^1.1.1", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "eslint-config-flat-gitignore": "^1.0.0", "eslint-config-prettier": "10.0.1", - "eslint-import-resolver-typescript": "^3.7.0", + "eslint-import-resolver-typescript": "^3.8.2", "eslint-interactive": "^11.1.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-import-x": "^4.6.1", - "eslint-plugin-jsonc": "^2.18.2", + "eslint-plugin-jsonc": "^2.19.1", "eslint-plugin-n": "17.15.1", "eslint-plugin-qunit": "^8.1.2", "eslint-plugin-regexp": "^2.7.0", @@ -104,33 +104,33 @@ "eslint-plugin-unused-imports": "4.1.4", "esyes": "^1.0.3", "execa": "^7.2.0", - "fast-glob": "^3.3.2", + "fast-glob": "^3.3.3", "glob": "^10.4.5", - "globals": "^15.14.0", + "globals": "^15.15.0", "js-yaml": "^4.1.0", - "knip": "^5.41.1", + "knip": "^5.44.4", "loader.js": "^4.7.0", "mkdirp": "^3.0.1", "npm-run-all": "^4.1.5", - "prettier": "^3.4.2", + "prettier": "^3.5.1", "preval.macro": "^5.0.0", "puppeteer": "23.11.1", "puppeteer-chromium-resolver": "^23.0.0", - "qunit": "^2.23.1", + "qunit": "^2.24.1", "release-plan": "0.11.0", "rimraf": "^5.0.10", - "rollup": "^4.31.0-0", - "semver": "^7.6.3", + "rollup": "^4.34.8", + "semver": "^7.7.1", "testem-failure-only-reporter": "^1.0.0", "toml": "^3.0.0", "tracerbench": "^8.0.1", "ts-node": "^10.9.2", - "turbo": "^2.3.3", + "turbo": "^2.4.2", "typescript": "^5.7.3", - "typescript-eslint": "^8.19.0", - "vite": "^6.0.10", - "vitest": "^3.0.4", - "zx": "^8.3.0" + "typescript-eslint": "^8.24.1", + "vite": "^6.1.1", + "vitest": "^3.0.6", + "zx": "^8.3.2" }, "changelog": { "repo": "glimmerjs/glimmer-vm", @@ -148,7 +148,7 @@ "packageManager": "pnpm@10.0.0", "pnpm": { "notes": { - "override:@glimemr/syntax": "when we run prettier, we want to use our local copy of prettier, not the one it declared in its package.json. This ensures that we don't accidentally break prettier as we make changes to @glimmer/syntax" + "override:@glimmer/syntax": "when we run prettier, we want to use our local copy of prettier, not the one it declared in its package.json. This ensures that we don't accidentally break prettier as we make changes to @glimmer/syntax" }, "overrides": { "@glimmer/syntax": "workspace:*", diff --git a/packages/@glimmer-workspace/benchmark-env/package.json b/packages/@glimmer-workspace/benchmark-env/package.json index fa76149ce..aef82b88c 100644 --- a/packages/@glimmer-workspace/benchmark-env/package.json +++ b/packages/@glimmer-workspace/benchmark-env/package.json @@ -44,10 +44,10 @@ "@glimmer-workspace/env": "workspace:*", "@glimmer/debug-util": "workspace:*", "@glimmer/interfaces": "workspace:*", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "typescript": "^5.7.3" }, "engines": { "node": ">=20.9.0" diff --git a/packages/@glimmer-workspace/build/package.json b/packages/@glimmer-workspace/build/package.json index c815a5d4d..12d5f4630 100644 --- a/packages/@glimmer-workspace/build/package.json +++ b/packages/@glimmer-workspace/build/package.json @@ -17,28 +17,28 @@ "scripts": {}, "dependencies": { "@glimmer/local-debug-babel-plugin": "workspace:*", - "@rollup/plugin-commonjs": "^25.0.7", - "@rollup/plugin-node-resolve": "^15.2.3", - "@rollup/plugin-replace": "^5.0.5", + "@rollup/plugin-commonjs": "^28.0.2", + "@rollup/plugin-node-resolve": "^16.0.0", + "@rollup/plugin-replace": "^6.0.2", "@rollup/plugin-swc": "^0.4.0", "@rollup/plugin-terser": "^0.4.4", - "@rollup/plugin-typescript": "^12.1.1", + "@rollup/plugin-typescript": "^12.1.2", "magic-string": "^0.30.0", - "postcss": "^8.4.31", - "rollup": "^4.31.0-0", + "postcss": "^8.5.3", + "rollup": "^4.34.8", "rollup-plugin-dts": "^6.1.1", "rollup-plugin-insert": "^1.3.2", "rollup-plugin-polyfill-node": "^0.13.0", "rollup-plugin-postcss": "^4.0.2", "tslib": "^2.8.1", - "unplugin-fonts": "^1.0.3", - "vite": "^5.4.10", - "zx": "^8.2.2" + "unplugin-fonts": "^1.3.1", + "vite": "^6.1.1", + "zx": "^8.3.2" }, "devDependencies": { - "@types/node": "^20.9.4", - "eslint": "^9.18.0", - "typescript": "*" + "@types/node": "^22.13.4", + "eslint": "^9.20.1", + "typescript": "^5.7.3" }, "engines": { "node": ">=20.9.0" diff --git a/packages/@glimmer-workspace/eslint-plugin/package.json b/packages/@glimmer-workspace/eslint-plugin/package.json index e6e99e9b1..aa6cc2d14 100644 --- a/packages/@glimmer-workspace/eslint-plugin/package.json +++ b/packages/@glimmer-workspace/eslint-plugin/package.json @@ -7,20 +7,20 @@ "scripts": {}, "dependencies": { "@eslint/eslintrc": "^3.2.0", - "@eslint/js": "^9.18.0", + "@eslint/js": "^9.20.0", "@glimmer-workspace/repo-metadata": "workspace:*", - "@pnpm/workspace.find-packages": "^1000.0.5", - "@typescript-eslint/parser": "^8.20.0", + "@pnpm/workspace.find-packages": "^1000.0.10", + "@typescript-eslint/parser": "^8.24.1", "eslint-config-prettier": "10.0.1", "eslint-plugin-import-x": "^4.6.1", - "eslint-plugin-jsonc": "^2.18.2", + "eslint-plugin-jsonc": "^2.19.1", "eslint-plugin-n": "^17.15.1", "eslint-plugin-qunit": "^8.1.2", "eslint-plugin-regexp": "^2.7.0", "eslint-plugin-simple-import-sort": "^12.1.1", "eslint-plugin-unused-imports": "^4.1.4", "eslint-utils": "^3.0.0", - "typescript-eslint": "^8.20.0" + "typescript-eslint": "^8.24.1" }, "peerDependencies": { "eslint": ">=9.18.0" @@ -28,7 +28,7 @@ "devDependencies": { "@types/eslint": "9.6.1", "@types/eslint-utils": "^3.0.5", - "@types/node": "22.10.2", - "eslint": "^9.18.0" + "@types/node": "^22.13.4", + "eslint": "^9.20.1" } } diff --git a/packages/@glimmer-workspace/integration-node-tests/package.json b/packages/@glimmer-workspace/integration-node-tests/package.json index 65744ce04..918dd5b98 100644 --- a/packages/@glimmer-workspace/integration-node-tests/package.json +++ b/packages/@glimmer-workspace/integration-node-tests/package.json @@ -12,10 +12,10 @@ "dependencies": { "@glimmer/syntax": "workspace:*", "execa": "^9.5.2", - "prettier": "^3.4.2" + "prettier": "^3.5.1" }, "devDependencies": { "@glimmer-workspace/repo-metadata": "workspace:*", - "vitest": "^3.0.4" + "vitest": "^3.0.6" } } diff --git a/packages/@glimmer-workspace/integration-tests/package.json b/packages/@glimmer-workspace/integration-tests/package.json index 776715935..ca95e9a89 100644 --- a/packages/@glimmer-workspace/integration-tests/package.json +++ b/packages/@glimmer-workspace/integration-tests/package.json @@ -35,7 +35,7 @@ "@simple-dom/serializer": "^1.4.0", "@simple-dom/void-map": "^1.4.0", "js-reporters": "^2.1.0", - "qunit": "^2.19.4", + "qunit": "^2.24.1", "simple-html-tokenizer": "^0.5.11" }, "devDependencies": { @@ -43,7 +43,7 @@ "@glimmer/debug-util": "workspace:*", "@glimmer/local-debug-flags": "workspace:*", "@types/js-reporters": "workspace:*", - "@types/qunit": "^2.19.9", + "@types/qunit": "^2.19.12", "dom-types": "^1.1.2" } } diff --git a/packages/@glimmer-workspace/test-utils/package.json b/packages/@glimmer-workspace/test-utils/package.json index aaba44b30..1c3862453 100644 --- a/packages/@glimmer-workspace/test-utils/package.json +++ b/packages/@glimmer-workspace/test-utils/package.json @@ -11,6 +11,6 @@ }, "devDependencies": { "@glimmer/debug-util": "workspace:*", - "eslint": "^9.18.0" + "eslint": "^9.20.1" } } diff --git a/packages/@glimmer/compiler/lib/compiler.ts b/packages/@glimmer/compiler/lib/compiler.ts index c75b33d0b..8c0a08154 100644 --- a/packages/@glimmer/compiler/lib/compiler.ts +++ b/packages/@glimmer/compiler/lib/compiler.ts @@ -30,7 +30,8 @@ interface Crypto { export const defaultId: TemplateIdFn = (() => { const req = ( typeof module === 'object' && typeof module.require === 'function' - ? module.require + ? // eslint-disable-next-line @typescript-eslint/unbound-method + module.require : globalThis.require ) as typeof require | undefined; diff --git a/packages/@glimmer/compiler/package.json b/packages/@glimmer/compiler/package.json index ffdbda52d..4fc10107d 100644 --- a/packages/@glimmer/compiler/package.json +++ b/packages/@glimmer/compiler/package.json @@ -50,11 +50,11 @@ "@glimmer/debug": "workspace:*", "@glimmer/debug-util": "workspace:*", "@glimmer/local-debug-flags": "workspace:*", - "@types/node": "^20.9.4", - "eslint": "^9.18.0", + "@types/node": "^22.13.4", + "eslint": "^9.20.1", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "typescript": "^5.7.3" }, "engines": { "node": ">= 18.0.0" diff --git a/packages/@glimmer/constants/package.json b/packages/@glimmer/constants/package.json index 045025870..7bad358a8 100644 --- a/packages/@glimmer/constants/package.json +++ b/packages/@glimmer/constants/package.json @@ -14,8 +14,8 @@ "devDependencies": { "@glimmer/debug-util": "workspace:*", "@glimmer/local-debug-flags": "workspace:*", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "publint": "^0.3.2", - "typescript": "*" + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/constants/test/package.json b/packages/@glimmer/constants/test/package.json index 1affb8757..e7a008aea 100644 --- a/packages/@glimmer/constants/test/package.json +++ b/packages/@glimmer/constants/test/package.json @@ -10,6 +10,6 @@ "devDependencies": { "@glimmer/constants": "workspace:*", "@glimmer/debug-util": "workspace:*", - "vite": "^5.4.10" + "vite": "^6.1.1" } } diff --git a/packages/@glimmer/debug-util/package.json b/packages/@glimmer/debug-util/package.json index a54e81086..2533dab02 100644 --- a/packages/@glimmer/debug-util/package.json +++ b/packages/@glimmer/debug-util/package.json @@ -12,7 +12,7 @@ }, "devDependencies": { "@glimmer/local-debug-flags": "workspace:*", - "eslint": "^9.18.0", - "typescript": "*" + "eslint": "^9.20.1", + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/debug-util/test/package.json b/packages/@glimmer/debug-util/test/package.json index 8673ef400..649221ff5 100644 --- a/packages/@glimmer/debug-util/test/package.json +++ b/packages/@glimmer/debug-util/test/package.json @@ -9,6 +9,6 @@ }, "devDependencies": { "@glimmer/debug-util": "workspace:*", - "vite": "^5.4.10" + "vite": "^6.1.1" } } diff --git a/packages/@glimmer/debug/package.json b/packages/@glimmer/debug/package.json index dba565477..ae9a349a3 100644 --- a/packages/@glimmer/debug/package.json +++ b/packages/@glimmer/debug/package.json @@ -18,7 +18,7 @@ "@glimmer/constants": "workspace:*", "@glimmer/debug-util": "workspace:*", "@glimmer/local-debug-flags": "workspace:*", - "eslint": "^9.18.0", - "typescript": "*" + "eslint": "^9.20.1", + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/destroyable/package.json b/packages/@glimmer/destroyable/package.json index 03bbd26a5..dc3b0d5db 100644 --- a/packages/@glimmer/destroyable/package.json +++ b/packages/@glimmer/destroyable/package.json @@ -40,9 +40,9 @@ "@glimmer-workspace/build-support": "workspace:*", "@glimmer-workspace/env": "workspace:*", "@glimmer/debug-util": "workspace:*", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/encoder/package.json b/packages/@glimmer/encoder/package.json index be298065a..d5a29e841 100644 --- a/packages/@glimmer/encoder/package.json +++ b/packages/@glimmer/encoder/package.json @@ -38,9 +38,9 @@ "devDependencies": { "@glimmer-workspace/build-support": "workspace:*", "@glimmer-workspace/env": "workspace:*", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/global-context/package.json b/packages/@glimmer/global-context/package.json index 6bb7b4131..38afd7a66 100644 --- a/packages/@glimmer/global-context/package.json +++ b/packages/@glimmer/global-context/package.json @@ -34,9 +34,9 @@ "devDependencies": { "@glimmer-workspace/build-support": "workspace:*", "@glimmer-workspace/env": "workspace:*", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/interfaces/package.json b/packages/@glimmer/interfaces/package.json index 808fc0f08..c4328a758 100644 --- a/packages/@glimmer/interfaces/package.json +++ b/packages/@glimmer/interfaces/package.json @@ -22,11 +22,12 @@ "test:publint": "publint" }, "dependencies": { - "@simple-dom/interface": "^1.4.0" + "@simple-dom/interface": "^1.4.0", + "type-fest": "^4.35.0" }, "devDependencies": { - "eslint": "^9.18.0", + "eslint": "^9.20.1", "publint": "^0.3.2", - "typescript": "*" + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/local-debug-flags/package.json b/packages/@glimmer/local-debug-flags/package.json index 5b2d8a847..2ab25e74b 100644 --- a/packages/@glimmer/local-debug-flags/package.json +++ b/packages/@glimmer/local-debug-flags/package.json @@ -8,6 +8,6 @@ "exports": "./index.ts", "scripts": {}, "devDependencies": { - "eslint": "^9.18.0" + "eslint": "^9.20.1" } } diff --git a/packages/@glimmer/manager/package.json b/packages/@glimmer/manager/package.json index 5cd6bb884..dc8f97580 100644 --- a/packages/@glimmer/manager/package.json +++ b/packages/@glimmer/manager/package.json @@ -45,9 +45,9 @@ "@glimmer-workspace/env": "workspace:*", "@glimmer/debug": "workspace:*", "@glimmer/debug-util": "workspace:*", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/node/package.json b/packages/@glimmer/node/package.json index 9f24ae615..927d4f056 100644 --- a/packages/@glimmer/node/package.json +++ b/packages/@glimmer/node/package.json @@ -41,10 +41,10 @@ "@glimmer-workspace/build-support": "workspace:*", "@glimmer-workspace/env": "workspace:*", "@glimmer/compiler": "workspace:*", - "@types/qunit": "^2.19.9", - "eslint": "^9.18.0", + "@types/qunit": "^2.19.12", + "eslint": "^9.20.1", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/opcode-compiler/package.json b/packages/@glimmer/opcode-compiler/package.json index fb4d0440c..b6ed22b49 100644 --- a/packages/@glimmer/opcode-compiler/package.json +++ b/packages/@glimmer/opcode-compiler/package.json @@ -46,9 +46,10 @@ "@glimmer/debug": "workspace:*", "@glimmer/debug-util": "workspace:*", "@glimmer/local-debug-flags": "workspace:*", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "type-fest": "^4.35.0", + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/owner/package.json b/packages/@glimmer/owner/package.json index 9ae7fd59d..6d673481f 100644 --- a/packages/@glimmer/owner/package.json +++ b/packages/@glimmer/owner/package.json @@ -35,9 +35,9 @@ "devDependencies": { "@glimmer-workspace/build-support": "workspace:*", "@glimmer-workspace/env": "workspace:*", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/program/package.json b/packages/@glimmer/program/package.json index 0db79c6c2..2fb5547ac 100644 --- a/packages/@glimmer/program/package.json +++ b/packages/@glimmer/program/package.json @@ -45,9 +45,9 @@ "@glimmer/constants": "workspace:*", "@glimmer/debug-util": "workspace:*", "@glimmer/local-debug-flags": "workspace:*", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/reference/package.json b/packages/@glimmer/reference/package.json index 84af5c72d..b7c4b24b4 100644 --- a/packages/@glimmer/reference/package.json +++ b/packages/@glimmer/reference/package.json @@ -42,9 +42,9 @@ "@glimmer-workspace/build-support": "workspace:*", "@glimmer-workspace/env": "workspace:*", "@glimmer/debug-util": "workspace:*", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/runtime/package.json b/packages/@glimmer/runtime/package.json index 883025cff..b0b938d55 100644 --- a/packages/@glimmer/runtime/package.json +++ b/packages/@glimmer/runtime/package.json @@ -51,9 +51,9 @@ "@glimmer/debug": "workspace:*", "@glimmer/debug-util": "workspace:*", "@glimmer/local-debug-flags": "workspace:*", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/syntax/package.json b/packages/@glimmer/syntax/package.json index 70465210d..672420775 100644 --- a/packages/@glimmer/syntax/package.json +++ b/packages/@glimmer/syntax/package.json @@ -41,7 +41,7 @@ "@glimmer/interfaces": "workspace:*", "@glimmer/util": "workspace:*", "@glimmer/wire-format": "workspace:*", - "@handlebars/parser": "~2.0.0", + "@handlebars/parser": "~2.1.0", "simple-html-tokenizer": "^0.5.11" }, "devDependencies": { @@ -49,9 +49,9 @@ "@glimmer-workspace/env": "workspace:*", "@glimmer/debug-util": "workspace:*", "@glimmer/local-debug-flags": "workspace:*", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/util/package.json b/packages/@glimmer/util/package.json index c66c53a39..11df7c6d8 100644 --- a/packages/@glimmer/util/package.json +++ b/packages/@glimmer/util/package.json @@ -40,10 +40,10 @@ "@glimmer-workspace/env": "workspace:*", "@glimmer/debug-util": "workspace:*", "@glimmer/local-debug-flags": "workspace:*", - "@types/qunit": "^2.19.9", - "eslint": "^9.18.0", + "@types/qunit": "^2.19.12", + "eslint": "^9.20.1", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/validator/package.json b/packages/@glimmer/validator/package.json index 749fb8c94..2ba33fc28 100644 --- a/packages/@glimmer/validator/package.json +++ b/packages/@glimmer/validator/package.json @@ -40,9 +40,9 @@ "@glimmer-workspace/build-support": "workspace:*", "@glimmer-workspace/env": "workspace:*", "@glimmer/debug-util": "workspace:*", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/vm-babel-plugins/package.json b/packages/@glimmer/vm-babel-plugins/package.json index 4accbd8da..e5ec6cfcb 100644 --- a/packages/@glimmer/vm-babel-plugins/package.json +++ b/packages/@glimmer/vm-babel-plugins/package.json @@ -39,13 +39,13 @@ "devDependencies": { "@glimmer-workspace/build-support": "workspace:*", "@glimmer-workspace/env": "workspace:*", - "@types/node": "^18.18.3", + "@types/node": "^22.13.4", "babel-plugin-tester": "^11.0.4", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "mocha": "^10.2.0", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "typescript": "^5.7.3" }, "engines": { "node": ">=18.18.0" diff --git a/packages/@glimmer/vm/package.json b/packages/@glimmer/vm/package.json index 23f13bdda..60b1cc4c8 100644 --- a/packages/@glimmer/vm/package.json +++ b/packages/@glimmer/vm/package.json @@ -37,9 +37,9 @@ "devDependencies": { "@glimmer-workspace/build-support": "workspace:*", "@glimmer-workspace/env": "workspace:*", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "typescript": "^5.7.3" } } diff --git a/packages/@glimmer/wire-format/package.json b/packages/@glimmer/wire-format/package.json index 38b78384e..bf175b1a6 100644 --- a/packages/@glimmer/wire-format/package.json +++ b/packages/@glimmer/wire-format/package.json @@ -38,9 +38,9 @@ "devDependencies": { "@glimmer-workspace/build-support": "workspace:*", "@glimmer-workspace/env": "workspace:*", - "eslint": "^9.18.0", + "eslint": "^9.20.1", "publint": "^0.3.2", - "rollup": "^4.31.0-0", - "typescript": "*" + "rollup": "^4.34.8", + "typescript": "^5.7.3" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c839eed15..467d9791c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,7 +7,7 @@ settings: overrides: '@glimmer/syntax': workspace:* '@rollup/pluginutils': ^5.0.2 - '@types/node': ^20.17.10 + '@types/node': ^22.13.4 typescript: ^5.7.3 importers: @@ -21,32 +21,32 @@ importers: specifier: ^7.26.3 version: 7.26.3(@babel/core@7.26.0) '@babel/plugin-transform-runtime': - specifier: ^7.25.9 - version: 7.25.9(@babel/core@7.26.0) + specifier: ^7.26.9 + version: 7.26.9(@babel/core@7.26.0) '@babel/preset-env': - specifier: ^7.26.0 - version: 7.26.0(@babel/core@7.26.0) + specifier: ^7.26.9 + version: 7.26.9(@babel/core@7.26.0) '@babel/preset-typescript': specifier: ^7.26.0 version: 7.26.0(@babel/core@7.26.0) '@babel/runtime': - specifier: ^7.26.0 - version: 7.26.0 + specifier: ^7.26.9 + version: 7.26.9 '@babel/traverse': - specifier: ^7.26.4 - version: 7.26.4 + specifier: ^7.26.9 + version: 7.26.9 '@babel/types': - specifier: ^7.26.3 - version: 7.26.3 + specifier: ^7.26.9 + version: 7.26.9 '@eslint-community/eslint-plugin-eslint-comments': specifier: ^4.4.1 - version: 4.4.1(eslint@9.18.0(jiti@2.4.2)) + version: 4.4.1(eslint@9.20.1(jiti@2.4.2)) '@eslint/config-inspector': - specifier: ^0.7.1 - version: 0.7.1(eslint@9.18.0(jiti@2.4.2)) + specifier: ^1.0.0 + version: 1.0.0(eslint@9.20.1(jiti@2.4.2)) '@eslint/js': - specifier: 9.17.0 - version: 9.17.0 + specifier: 9.20.0 + version: 9.20.0 '@glimmer-workspace/benchmark-env': specifier: workspace:* version: link:packages/@glimmer-workspace/benchmark-env @@ -72,14 +72,14 @@ importers: specifier: ^2.0.3 version: 2.0.3 '@pnpm/workspace.find-packages': - specifier: ^1000.0.3 - version: 1000.0.3(@pnpm/logger@1000.0.0) + specifier: ^1000.0.10 + version: 1000.0.10(@pnpm/logger@1000.0.0) '@rollup/plugin-sucrase': specifier: ^5.0.2 - version: 5.0.2(rollup@4.31.0-0) + version: 5.0.2(rollup@4.34.8) '@rollup/plugin-terser': specifier: ^0.4.4 - version: 0.4.4(rollup@4.31.0-0) + version: 0.4.4(rollup@4.34.8) '@tsconfig/strictest': specifier: ^2.0.5 version: 2.0.5 @@ -105,8 +105,8 @@ importers: specifier: ^2.1.2 version: 2.1.2 '@types/node': - specifier: ^20.17.10 - version: 20.17.10 + specifier: ^22.13.4 + version: 22.13.4 '@types/preval.macro': specifier: ^3.0.2 version: 3.0.2 @@ -114,11 +114,11 @@ importers: specifier: ^2.19.12 version: 2.19.12 '@typescript-eslint/parser': - specifier: ^8.20.0 - version: 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) + specifier: ^8.24.1 + version: 8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) '@typescript-eslint/utils': - specifier: ^8.20.0 - version: 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) + specifier: ^8.24.1 + version: 8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) amd-name-resolver: specifier: ^1.3.1 version: 1.3.1 @@ -150,44 +150,44 @@ importers: specifier: ^1.1.1 version: 1.1.1 eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) eslint-config-flat-gitignore: specifier: ^1.0.0 - version: 1.0.0(eslint@9.18.0(jiti@2.4.2)) + version: 1.0.0(eslint@9.20.1(jiti@2.4.2)) eslint-config-prettier: specifier: 10.0.1 - version: 10.0.1(eslint@9.18.0(jiti@2.4.2)) + version: 10.0.1(eslint@9.20.1(jiti@2.4.2)) eslint-import-resolver-typescript: - specifier: ^3.7.0 - version: 3.7.0(eslint-plugin-import-x@4.6.1(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.18.0(jiti@2.4.2)) + specifier: ^3.8.2 + version: 3.8.2(eslint-plugin-import-x@4.6.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.20.1(jiti@2.4.2)) eslint-interactive: specifier: ^11.1.0 - version: 11.1.0(eslint@9.18.0(jiti@2.4.2)) + version: 11.1.0(eslint@9.20.1(jiti@2.4.2)) eslint-plugin-import: specifier: ^2.31.0 - version: 2.31.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-typescript@3.7.0)(eslint@9.18.0(jiti@2.4.2)) + version: 2.31.0(@typescript-eslint/parser@8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-typescript@3.8.2)(eslint@9.20.1(jiti@2.4.2)) eslint-plugin-import-x: specifier: ^4.6.1 - version: 4.6.1(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) + version: 4.6.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) eslint-plugin-jsonc: - specifier: ^2.18.2 - version: 2.18.2(eslint@9.18.0(jiti@2.4.2)) + specifier: ^2.19.1 + version: 2.19.1(eslint@9.20.1(jiti@2.4.2)) eslint-plugin-n: specifier: 17.15.1 - version: 17.15.1(eslint@9.18.0(jiti@2.4.2)) + version: 17.15.1(eslint@9.20.1(jiti@2.4.2)) eslint-plugin-qunit: specifier: ^8.1.2 - version: 8.1.2(eslint@9.18.0(jiti@2.4.2)) + version: 8.1.2(eslint@9.20.1(jiti@2.4.2)) eslint-plugin-regexp: specifier: ^2.7.0 - version: 2.7.0(eslint@9.18.0(jiti@2.4.2)) + version: 2.7.0(eslint@9.20.1(jiti@2.4.2)) eslint-plugin-simple-import-sort: specifier: 12.1.1 - version: 12.1.1(eslint@9.18.0(jiti@2.4.2)) + version: 12.1.1(eslint@9.20.1(jiti@2.4.2)) eslint-plugin-unused-imports: specifier: 4.1.4 - version: 4.1.4(@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2)) + version: 4.1.4(@typescript-eslint/eslint-plugin@8.24.1(@typescript-eslint/parser@8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2)) esyes: specifier: ^1.0.3 version: 1.0.3 @@ -195,20 +195,20 @@ importers: specifier: ^7.2.0 version: 7.2.0 fast-glob: - specifier: ^3.3.2 - version: 3.3.2 + specifier: ^3.3.3 + version: 3.3.3 glob: specifier: ^10.4.5 version: 10.4.5 globals: - specifier: ^15.14.0 - version: 15.14.0 + specifier: ^15.15.0 + version: 15.15.0 js-yaml: specifier: ^4.1.0 version: 4.1.0 knip: - specifier: ^5.41.1 - version: 5.41.1(@types/node@20.17.10)(typescript@5.7.3) + specifier: ^5.44.4 + version: 5.44.4(@types/node@22.13.4)(typescript@5.7.3) loader.js: specifier: ^4.7.0 version: 4.7.0 @@ -219,8 +219,8 @@ importers: specifier: ^4.1.5 version: 4.1.5 prettier: - specifier: ^3.4.2 - version: 3.4.2 + specifier: ^3.5.1 + version: 3.5.1 preval.macro: specifier: ^5.0.0 version: 5.0.0 @@ -231,8 +231,8 @@ importers: specifier: ^23.0.0 version: 23.0.0 qunit: - specifier: ^2.23.1 - version: 2.23.1 + specifier: ^2.24.1 + version: 2.24.1 release-plan: specifier: 0.11.0 version: 0.11.0(encoding@0.1.13) @@ -240,11 +240,11 @@ importers: specifier: ^5.0.10 version: 5.0.10 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 semver: - specifier: ^7.6.3 - version: 7.6.3 + specifier: ^7.7.1 + version: 7.7.1 testem-failure-only-reporter: specifier: ^1.0.0 version: 1.0.0(ejs@3.1.10)(handlebars@4.7.8)(underscore@1.13.7) @@ -253,43 +253,43 @@ importers: version: 3.0.0 tracerbench: specifier: ^8.0.1 - version: 8.0.1(@swc/core@1.9.3)(@types/node@20.17.10)(typescript@5.7.3) + version: 8.0.1(@swc/core@1.9.3)(@types/node@22.13.4)(typescript@5.7.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@swc/core@1.9.3)(@types/node@20.17.10)(typescript@5.7.3) + version: 10.9.2(@swc/core@1.9.3)(@types/node@22.13.4)(typescript@5.7.3) turbo: - specifier: ^2.3.3 - version: 2.3.3 + specifier: ^2.4.2 + version: 2.4.2 typescript: specifier: ^5.7.3 version: 5.7.3 typescript-eslint: - specifier: ^8.19.0 - version: 8.19.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) + specifier: ^8.24.1 + version: 8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) vite: - specifier: ^6.0.10 - version: 6.0.10(@types/node@20.17.10)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) + specifier: ^6.1.1 + version: 6.1.1(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) vitest: - specifier: ^3.0.4 - version: 3.0.4(@types/node@20.17.10)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) + specifier: ^3.0.6 + version: 3.0.6(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) zx: - specifier: ^8.3.0 - version: 8.3.0 + specifier: ^8.3.2 + version: 8.3.2 .meta-updater: dependencies: '@pnpm/find-workspace-dir': - specifier: ^1000.0.1 - version: 1000.0.1 + specifier: ^1000.0.2 + version: 1000.0.2 '@pnpm/meta-updater': specifier: ^2.0.3 version: 2.0.3 '@pnpm/read-package-json': - specifier: ^1000.0.2 - version: 1000.0.2 + specifier: ^1000.0.3 + version: 1000.0.3 globby: - specifier: ^14.0.2 - version: 14.0.2 + specifier: ^14.1.0 + version: 14.1.0 load-json-file: specifier: ^7.0.1 version: 7.0.1 @@ -303,8 +303,8 @@ importers: specifier: ^6.0.0 version: 6.0.0 zx: - specifier: ^8.3.0 - version: 8.3.0 + specifier: ^8.3.2 + version: 8.3.2 devDependencies: '@glimmer-workspace/env': specifier: workspace:* @@ -313,20 +313,20 @@ importers: specifier: workspace:* version: link:../repo-metadata '@pnpm/types': - specifier: ^1000.0.0 - version: 1000.1.0 + specifier: ^1000.1.1 + version: 1000.1.1 '@pnpm/workspace.find-packages': - specifier: ^1000.0.1 - version: 1000.0.5(@pnpm/logger@5.2.0) + specifier: ^1000.0.10 + version: 1000.0.10(@pnpm/logger@5.2.0) '@types/node': - specifier: ^20.17.10 - version: 20.17.10 + specifier: ^22.13.4 + version: 22.13.4 '@types/ramda': specifier: ^0.30.2 version: 0.30.2 type-fest: - specifier: ^4.32.0 - version: 4.32.0 + specifier: ^4.35.0 + version: 4.35.0 bin: dependencies: @@ -334,8 +334,8 @@ importers: specifier: workspace:* version: link:../repo-metadata '@pnpm/workspace.find-packages': - specifier: ^1000.0.5 - version: 1000.0.5(@pnpm/logger@1000.0.0) + specifier: ^1000.0.10 + version: 1000.0.10(@pnpm/logger@1000.0.0) '@types/glob': specifier: ^8.1.0 version: 8.1.0 @@ -343,29 +343,29 @@ importers: specifier: ^4.0.9 version: 4.0.9 '@types/node': - specifier: ^20.17.10 - version: 20.17.10 + specifier: ^22.13.4 + version: 22.13.4 '@types/puppeteer-chromium-resolver': specifier: workspace:* version: link:../packages/@types/puppeteer-chromium-resolver '@types/tar': - specifier: ^6.1.10 - version: 6.1.10 + specifier: ^6.1.13 + version: 6.1.13 chalk: - specifier: ^5.2.0 - version: 5.2.0 + specifier: ^5.4.1 + version: 5.4.1 execa: specifier: ^7.1.1 version: 7.1.1 fs-extra: - specifier: ^11.2.0 - version: 11.2.0 + specifier: ^11.3.0 + version: 11.3.0 glob: specifier: ^10.2.3 version: 10.2.3 globby: - specifier: ^14.0.2 - version: 14.0.2 + specifier: ^14.1.0 + version: 14.1.0 js-yaml: specifier: ^4.1.0 version: 4.1.0 @@ -394,24 +394,24 @@ importers: specifier: ^5.0.0 version: 5.0.0 zx: - specifier: ^8.3.0 - version: 8.3.0 + specifier: ^8.3.2 + version: 8.3.2 devDependencies: '@pnpm/types': - specifier: ^1000.1.0 - version: 1000.1.0 + specifier: ^1000.1.1 + version: 1000.1.1 '@types/fs-extra': specifier: ^11.0.4 version: 11.0.4 eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) esno: specifier: ^0.16.3 version: 0.16.3 type-fest: - specifier: ^4.32.0 - version: 4.32.0 + specifier: ^4.35.0 + version: 4.35.0 packages/@glimmer-workspace/benchmark-env: dependencies: @@ -453,14 +453,14 @@ importers: specifier: workspace:* version: link:../../@glimmer/interfaces eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -471,63 +471,63 @@ importers: specifier: workspace:* version: link:../../@glimmer/local-debug-babel-plugin '@rollup/plugin-commonjs': - specifier: ^25.0.7 - version: 25.0.7(rollup@4.31.0-0) + specifier: ^28.0.2 + version: 28.0.2(rollup@4.34.8) '@rollup/plugin-node-resolve': - specifier: ^15.2.3 - version: 15.2.3(rollup@4.31.0-0) + specifier: ^16.0.0 + version: 16.0.0(rollup@4.34.8) '@rollup/plugin-replace': - specifier: ^5.0.5 - version: 5.0.5(rollup@4.31.0-0) + specifier: ^6.0.2 + version: 6.0.2(rollup@4.34.8) '@rollup/plugin-swc': specifier: ^0.4.0 - version: 0.4.0(@swc/core@1.9.3)(rollup@4.31.0-0) + version: 0.4.0(@swc/core@1.9.3)(rollup@4.34.8) '@rollup/plugin-terser': specifier: ^0.4.4 - version: 0.4.4(rollup@4.31.0-0) + version: 0.4.4(rollup@4.34.8) '@rollup/plugin-typescript': - specifier: ^12.1.1 - version: 12.1.1(rollup@4.31.0-0)(tslib@2.8.1)(typescript@5.7.3) + specifier: ^12.1.2 + version: 12.1.2(rollup@4.34.8)(tslib@2.8.1)(typescript@5.7.3) magic-string: specifier: ^0.30.0 version: 0.30.0 postcss: - specifier: ^8.4.31 - version: 8.4.31 + specifier: ^8.5.3 + version: 8.5.3 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 rollup-plugin-dts: specifier: ^6.1.1 - version: 6.1.1(rollup@4.31.0-0)(typescript@5.7.3) + version: 6.1.1(rollup@4.34.8)(typescript@5.7.3) rollup-plugin-insert: specifier: ^1.3.2 - version: 1.3.2(rollup@4.31.0-0) + version: 1.3.2(rollup@4.34.8) rollup-plugin-polyfill-node: specifier: ^0.13.0 - version: 0.13.0(rollup@4.31.0-0) + version: 0.13.0(rollup@4.34.8) rollup-plugin-postcss: specifier: ^4.0.2 - version: 4.0.2(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.9.3)(@types/node@20.17.10)(typescript@5.7.3)) + version: 4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.9.3)(@types/node@22.13.4)(typescript@5.7.3)) tslib: specifier: ^2.8.1 version: 2.8.1 unplugin-fonts: - specifier: ^1.0.3 - version: 1.0.3(vite@5.4.10(@types/node@20.17.10)(terser@5.37.0))(webpack-sources@3.2.3) + specifier: ^1.3.1 + version: 1.3.1(vite@6.1.1(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)) vite: - specifier: ^5.4.10 - version: 5.4.10(@types/node@20.17.10)(terser@5.37.0) + specifier: ^6.1.1 + version: 6.1.1(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) zx: - specifier: ^8.2.2 - version: 8.2.2 + specifier: ^8.3.2 + version: 8.3.2 devDependencies: '@types/node': - specifier: ^20.17.10 - version: 20.17.10 + specifier: ^22.13.4 + version: 22.13.4 eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) typescript: specifier: ^5.7.3 version: 5.7.3 @@ -540,47 +540,47 @@ importers: specifier: ^3.2.0 version: 3.2.0 '@eslint/js': - specifier: ^9.18.0 - version: 9.18.0 + specifier: ^9.20.0 + version: 9.20.0 '@glimmer-workspace/repo-metadata': specifier: workspace:* version: link:../../../repo-metadata '@pnpm/workspace.find-packages': - specifier: ^1000.0.5 - version: 1000.0.5(@pnpm/logger@1000.0.0) + specifier: ^1000.0.10 + version: 1000.0.10(@pnpm/logger@1000.0.0) '@typescript-eslint/parser': - specifier: ^8.20.0 - version: 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) + specifier: ^8.24.1 + version: 8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) eslint-config-prettier: specifier: 10.0.1 - version: 10.0.1(eslint@9.18.0(jiti@2.4.2)) + version: 10.0.1(eslint@9.20.1(jiti@2.4.2)) eslint-plugin-import-x: specifier: ^4.6.1 - version: 4.6.1(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) + version: 4.6.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) eslint-plugin-jsonc: - specifier: ^2.18.2 - version: 2.18.2(eslint@9.18.0(jiti@2.4.2)) + specifier: ^2.19.1 + version: 2.19.1(eslint@9.20.1(jiti@2.4.2)) eslint-plugin-n: specifier: ^17.15.1 - version: 17.15.1(eslint@9.18.0(jiti@2.4.2)) + version: 17.15.1(eslint@9.20.1(jiti@2.4.2)) eslint-plugin-qunit: specifier: ^8.1.2 - version: 8.1.2(eslint@9.18.0(jiti@2.4.2)) + version: 8.1.2(eslint@9.20.1(jiti@2.4.2)) eslint-plugin-regexp: specifier: ^2.7.0 - version: 2.7.0(eslint@9.18.0(jiti@2.4.2)) + version: 2.7.0(eslint@9.20.1(jiti@2.4.2)) eslint-plugin-simple-import-sort: specifier: ^12.1.1 - version: 12.1.1(eslint@9.18.0(jiti@2.4.2)) + version: 12.1.1(eslint@9.20.1(jiti@2.4.2)) eslint-plugin-unused-imports: specifier: ^4.1.4 - version: 4.1.4(@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2)) + version: 4.1.4(@typescript-eslint/eslint-plugin@8.24.1(@typescript-eslint/parser@8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2)) eslint-utils: specifier: ^3.0.0 - version: 3.0.0(eslint@9.18.0(jiti@2.4.2)) + version: 3.0.0(eslint@9.20.1(jiti@2.4.2)) typescript-eslint: - specifier: ^8.20.0 - version: 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) + specifier: ^8.24.1 + version: 8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) devDependencies: '@types/eslint': specifier: 9.6.1 @@ -589,11 +589,11 @@ importers: specifier: ^3.0.5 version: 3.0.5 '@types/node': - specifier: ^20.17.10 - version: 20.17.10 + specifier: ^22.13.4 + version: 22.13.4 eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) packages/@glimmer-workspace/integration-node-tests: dependencies: @@ -604,15 +604,15 @@ importers: specifier: ^9.5.2 version: 9.5.2 prettier: - specifier: ^3.4.2 - version: 3.4.2 + specifier: ^3.5.1 + version: 3.5.1 devDependencies: '@glimmer-workspace/repo-metadata': specifier: workspace:* version: link:../../../repo-metadata vitest: - specifier: ^3.0.4 - version: 3.0.4(@types/node@20.17.10)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) + specifier: ^3.0.6 + version: 3.0.6(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) packages/@glimmer-workspace/integration-tests: dependencies: @@ -680,8 +680,8 @@ importers: specifier: ^2.1.0 version: 2.1.0 qunit: - specifier: ^2.19.4 - version: 2.19.4 + specifier: ^2.24.1 + version: 2.24.1 simple-html-tokenizer: specifier: ^0.5.11 version: 0.5.11 @@ -699,8 +699,8 @@ importers: specifier: workspace:* version: link:../../@types/js-reporters '@types/qunit': - specifier: ^2.19.9 - version: 2.19.9 + specifier: ^2.19.12 + version: 2.19.12 dom-types: specifier: ^1.1.2 version: 1.1.2 @@ -772,8 +772,8 @@ importers: specifier: workspace:* version: link:../../@glimmer/debug-util eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) packages/@glimmer/compiler: dependencies: @@ -809,17 +809,17 @@ importers: specifier: workspace:* version: link:../local-debug-flags '@types/node': - specifier: ^20.17.10 - version: 20.17.10 + specifier: ^22.13.4 + version: 22.13.4 eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -856,8 +856,8 @@ importers: specifier: workspace:* version: link:../local-debug-flags eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 @@ -881,8 +881,8 @@ importers: specifier: workspace:* version: link:../../debug-util vite: - specifier: ^5.4.10 - version: 5.4.10(@types/node@20.17.10)(terser@5.37.0) + specifier: ^6.1.1 + version: 6.1.1(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) packages/@glimmer/debug: dependencies: @@ -909,8 +909,8 @@ importers: specifier: workspace:* version: link:../local-debug-flags eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) typescript: specifier: ^5.7.3 version: 5.7.3 @@ -925,8 +925,8 @@ importers: specifier: workspace:* version: link:../local-debug-flags eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) typescript: specifier: ^5.7.3 version: 5.7.3 @@ -944,8 +944,8 @@ importers: specifier: workspace:* version: link:.. vite: - specifier: ^5.4.10 - version: 5.4.10(@types/node@20.17.10)(terser@5.37.0) + specifier: ^6.1.1 + version: 6.1.1(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) packages/@glimmer/debug/test: dependencies: @@ -972,14 +972,14 @@ importers: specifier: workspace:* version: link:../debug-util eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -1016,14 +1016,14 @@ importers: specifier: workspace:* version: link:../../@glimmer-workspace/env eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -1037,14 +1037,14 @@ importers: specifier: workspace:* version: link:../../@glimmer-workspace/env eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -1054,10 +1054,13 @@ importers: '@simple-dom/interface': specifier: ^1.4.0 version: 1.4.0 + type-fest: + specifier: ^4.35.0 + version: 4.35.0 devDependencies: eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 @@ -1070,8 +1073,8 @@ importers: packages/@glimmer/local-debug-flags: devDependencies: eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) packages/@glimmer/manager: dependencies: @@ -1110,14 +1113,14 @@ importers: specifier: workspace:* version: link:../debug-util eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -1165,17 +1168,17 @@ importers: specifier: workspace:* version: link:../compiler '@types/qunit': - specifier: ^2.19.9 - version: 2.19.9 + specifier: ^2.19.12 + version: 2.19.12 eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -1220,14 +1223,17 @@ importers: specifier: workspace:* version: link:../local-debug-flags eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 + type-fest: + specifier: ^4.35.0 + version: 4.35.0 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -1241,14 +1247,14 @@ importers: specifier: workspace:* version: link:../../@glimmer-workspace/env eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -1296,14 +1302,14 @@ importers: specifier: workspace:* version: link:../local-debug-flags eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -1339,14 +1345,14 @@ importers: specifier: workspace:* version: link:../debug-util eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -1422,14 +1428,14 @@ importers: specifier: workspace:* version: link:../local-debug-flags eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -1446,8 +1452,8 @@ importers: specifier: workspace:* version: link:../wire-format '@handlebars/parser': - specifier: ~2.0.0 - version: 2.0.0 + specifier: ~2.1.0 + version: 2.1.0 simple-html-tokenizer: specifier: ^0.5.11 version: 0.5.11 @@ -1465,14 +1471,14 @@ importers: specifier: workspace:* version: link:../local-debug-flags eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -1518,17 +1524,17 @@ importers: specifier: workspace:* version: link:../local-debug-flags '@types/qunit': - specifier: ^2.19.9 - version: 2.19.9 + specifier: ^2.19.12 + version: 2.19.12 eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -1558,14 +1564,14 @@ importers: specifier: workspace:* version: link:../debug-util eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -1595,14 +1601,14 @@ importers: specifier: workspace:* version: link:../../@glimmer-workspace/env eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -1620,14 +1626,14 @@ importers: specifier: workspace:* version: link:../../@glimmer-workspace/env '@types/node': - specifier: ^20.17.10 - version: 20.17.10 + specifier: ^22.13.4 + version: 22.13.4 babel-plugin-tester: specifier: ^11.0.4 version: 11.0.4(@babel/core@7.26.0) eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) mocha: specifier: ^10.2.0 version: 10.2.0 @@ -1635,8 +1641,8 @@ importers: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -1654,14 +1660,14 @@ importers: specifier: workspace:* version: link:../../@glimmer-workspace/env eslint: - specifier: ^9.18.0 - version: 9.18.0(jiti@2.4.2) + specifier: ^9.20.1 + version: 9.20.1(jiti@2.4.2) publint: specifier: ^0.3.2 version: 0.3.2 rollup: - specifier: ^4.31.0-0 - version: 4.31.0-0 + specifier: ^4.34.8 + version: 4.34.8 typescript: specifier: ^5.7.3 version: 5.7.3 @@ -1705,14 +1711,14 @@ importers: version: 2.7.0 devDependencies: '@pnpm/types': - specifier: ^1000.1.0 - version: 1000.1.0 + specifier: ^1000.1.1 + version: 1000.1.1 '@pnpm/workspace.find-packages': - specifier: ^1000.0.5 - version: 1000.0.5(@pnpm/logger@1000.0.0) + specifier: ^1000.0.10 + version: 1000.0.10(@pnpm/logger@1000.0.0) '@types/node': - specifier: ^20.17.10 - version: 20.17.10 + specifier: ^22.13.4 + version: 22.13.4 pkg-entry-points: specifier: ^1.1.1 version: 1.1.1 @@ -1731,6 +1737,10 @@ packages: resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==} engines: {node: '>=6.9.0'} + '@babel/compat-data@7.26.8': + resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==} + engines: {node: '>=6.9.0'} + '@babel/core@7.26.0': resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} engines: {node: '>=6.9.0'} @@ -1739,6 +1749,10 @@ packages: resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==} engines: {node: '>=6.9.0'} + '@babel/generator@7.26.9': + resolution: {integrity: sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==} + engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.25.9': resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} engines: {node: '>=6.9.0'} @@ -1747,6 +1761,10 @@ packages: resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} engines: {node: '>=6.9.0'} + '@babel/helper-compilation-targets@7.26.5': + resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==} + engines: {node: '>=6.9.0'} + '@babel/helper-create-class-features-plugin@7.25.9': resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==} engines: {node: '>=6.9.0'} @@ -1786,6 +1804,10 @@ packages: resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==} engines: {node: '>=6.9.0'} + '@babel/helper-plugin-utils@7.26.5': + resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==} + engines: {node: '>=6.9.0'} + '@babel/helper-remap-async-to-generator@7.25.9': resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==} engines: {node: '>=6.9.0'} @@ -1827,6 +1849,11 @@ packages: engines: {node: '>=6.0.0'} hasBin: true + '@babel/parser@7.26.9': + resolution: {integrity: sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==} + engines: {node: '>=6.0.0'} + hasBin: true + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9': resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==} engines: {node: '>=6.9.0'} @@ -1910,8 +1937,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-async-generator-functions@7.25.9': - resolution: {integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==} + '@babel/plugin-transform-async-generator-functions@7.26.8': + resolution: {integrity: sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1922,8 +1949,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-block-scoped-functions@7.25.9': - resolution: {integrity: sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==} + '@babel/plugin-transform-block-scoped-functions@7.26.5': + resolution: {integrity: sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2000,8 +2027,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-for-of@7.25.9': - resolution: {integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==} + '@babel/plugin-transform-for-of@7.26.9': + resolution: {integrity: sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2072,8 +2099,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-nullish-coalescing-operator@7.25.9': - resolution: {integrity: sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==} + '@babel/plugin-transform-nullish-coalescing-operator@7.26.6': + resolution: {integrity: sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2150,8 +2177,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-runtime@7.25.9': - resolution: {integrity: sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==} + '@babel/plugin-transform-runtime@7.26.9': + resolution: {integrity: sha512-Jf+8y9wXQbbxvVYTM8gO5oEF2POdNji0NMltEkG7FtmzD9PVz7/lxpqSdTvwsjTMU5HIHuDVNf2SOxLkWi+wPQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2174,14 +2201,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-template-literals@7.25.9': - resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==} + '@babel/plugin-transform-template-literals@7.26.8': + resolution: {integrity: sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typeof-symbol@7.25.9': - resolution: {integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==} + '@babel/plugin-transform-typeof-symbol@7.26.7': + resolution: {integrity: sha512-jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2220,8 +2247,8 @@ packages: resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==} deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information. - '@babel/preset-env@7.26.0': - resolution: {integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==} + '@babel/preset-env@7.26.9': + resolution: {integrity: sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2237,20 +2264,24 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/runtime@7.26.0': - resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} + '@babel/runtime@7.26.9': + resolution: {integrity: sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==} engines: {node: '>=6.9.0'} '@babel/template@7.25.9': resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} engines: {node: '>=6.9.0'} - '@babel/traverse@7.26.4': - resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==} + '@babel/template@7.26.9': + resolution: {integrity: sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==} engines: {node: '>=6.9.0'} - '@babel/types@7.26.3': - resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} + '@babel/traverse@7.26.9': + resolution: {integrity: sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.26.9': + resolution: {integrity: sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==} engines: {node: '>=6.9.0'} '@cnakazawa/watch@1.0.4': @@ -2266,12 +2297,6 @@ packages: resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} engines: {node: '>=12'} - '@esbuild/aix-ppc64@0.21.5': - resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [aix] - '@esbuild/aix-ppc64@0.23.1': resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==} engines: {node: '>=18'} @@ -2290,12 +2315,6 @@ packages: cpu: [arm64] os: [android] - '@esbuild/android-arm64@0.21.5': - resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - '@esbuild/android-arm64@0.23.1': resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==} engines: {node: '>=18'} @@ -2314,12 +2333,6 @@ packages: cpu: [arm] os: [android] - '@esbuild/android-arm@0.21.5': - resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - '@esbuild/android-arm@0.23.1': resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==} engines: {node: '>=18'} @@ -2338,12 +2351,6 @@ packages: cpu: [x64] os: [android] - '@esbuild/android-x64@0.21.5': - resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - '@esbuild/android-x64@0.23.1': resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==} engines: {node: '>=18'} @@ -2362,12 +2369,6 @@ packages: cpu: [arm64] os: [darwin] - '@esbuild/darwin-arm64@0.21.5': - resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - '@esbuild/darwin-arm64@0.23.1': resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==} engines: {node: '>=18'} @@ -2386,12 +2387,6 @@ packages: cpu: [x64] os: [darwin] - '@esbuild/darwin-x64@0.21.5': - resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - '@esbuild/darwin-x64@0.23.1': resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==} engines: {node: '>=18'} @@ -2410,12 +2405,6 @@ packages: cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-arm64@0.21.5': - resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - '@esbuild/freebsd-arm64@0.23.1': resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==} engines: {node: '>=18'} @@ -2434,12 +2423,6 @@ packages: cpu: [x64] os: [freebsd] - '@esbuild/freebsd-x64@0.21.5': - resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - '@esbuild/freebsd-x64@0.23.1': resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==} engines: {node: '>=18'} @@ -2458,12 +2441,6 @@ packages: cpu: [arm64] os: [linux] - '@esbuild/linux-arm64@0.21.5': - resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - '@esbuild/linux-arm64@0.23.1': resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==} engines: {node: '>=18'} @@ -2482,12 +2459,6 @@ packages: cpu: [arm] os: [linux] - '@esbuild/linux-arm@0.21.5': - resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - '@esbuild/linux-arm@0.23.1': resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==} engines: {node: '>=18'} @@ -2506,12 +2477,6 @@ packages: cpu: [ia32] os: [linux] - '@esbuild/linux-ia32@0.21.5': - resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - '@esbuild/linux-ia32@0.23.1': resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==} engines: {node: '>=18'} @@ -2530,12 +2495,6 @@ packages: cpu: [loong64] os: [linux] - '@esbuild/linux-loong64@0.21.5': - resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - '@esbuild/linux-loong64@0.23.1': resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==} engines: {node: '>=18'} @@ -2554,12 +2513,6 @@ packages: cpu: [mips64el] os: [linux] - '@esbuild/linux-mips64el@0.21.5': - resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - '@esbuild/linux-mips64el@0.23.1': resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==} engines: {node: '>=18'} @@ -2578,12 +2531,6 @@ packages: cpu: [ppc64] os: [linux] - '@esbuild/linux-ppc64@0.21.5': - resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - '@esbuild/linux-ppc64@0.23.1': resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==} engines: {node: '>=18'} @@ -2602,12 +2549,6 @@ packages: cpu: [riscv64] os: [linux] - '@esbuild/linux-riscv64@0.21.5': - resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - '@esbuild/linux-riscv64@0.23.1': resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==} engines: {node: '>=18'} @@ -2626,12 +2567,6 @@ packages: cpu: [s390x] os: [linux] - '@esbuild/linux-s390x@0.21.5': - resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - '@esbuild/linux-s390x@0.23.1': resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==} engines: {node: '>=18'} @@ -2650,12 +2585,6 @@ packages: cpu: [x64] os: [linux] - '@esbuild/linux-x64@0.21.5': - resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - '@esbuild/linux-x64@0.23.1': resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==} engines: {node: '>=18'} @@ -2680,12 +2609,6 @@ packages: cpu: [x64] os: [netbsd] - '@esbuild/netbsd-x64@0.21.5': - resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - '@esbuild/netbsd-x64@0.23.1': resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==} engines: {node: '>=18'} @@ -2716,12 +2639,6 @@ packages: cpu: [x64] os: [openbsd] - '@esbuild/openbsd-x64@0.21.5': - resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - '@esbuild/openbsd-x64@0.23.1': resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==} engines: {node: '>=18'} @@ -2740,12 +2657,6 @@ packages: cpu: [x64] os: [sunos] - '@esbuild/sunos-x64@0.21.5': - resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - '@esbuild/sunos-x64@0.23.1': resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==} engines: {node: '>=18'} @@ -2764,12 +2675,6 @@ packages: cpu: [arm64] os: [win32] - '@esbuild/win32-arm64@0.21.5': - resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - '@esbuild/win32-arm64@0.23.1': resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==} engines: {node: '>=18'} @@ -2788,12 +2693,6 @@ packages: cpu: [ia32] os: [win32] - '@esbuild/win32-ia32@0.21.5': - resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - '@esbuild/win32-ia32@0.23.1': resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==} engines: {node: '>=18'} @@ -2812,12 +2711,6 @@ packages: cpu: [x64] os: [win32] - '@esbuild/win32-x64@0.21.5': - resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - '@esbuild/win32-x64@0.23.1': resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==} engines: {node: '>=18'} @@ -2859,8 +2752,8 @@ packages: resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/config-inspector@0.7.1': - resolution: {integrity: sha512-80+MJay0D/Kf2ImH04UOQtnL4141KviU0KNuT34xvQZ0TQ/aAfIzKnx4cc4lxIDOLi/ITCV3BxOQkHRrDULFQw==} + '@eslint/config-inspector@1.0.0': + resolution: {integrity: sha512-fzl4OHQazPSpsT5LIoE5qQV+8m48pdLN92lPdmIZJpQpD+kZmYC5JfxRilj5vcSaVmB9klJ8s81knNyC3hG7Eg==} hasBin: true peerDependencies: eslint: ^8.50.0 || ^9.0.0 @@ -2869,16 +2762,16 @@ packages: resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/eslintrc@3.2.0': - resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} + '@eslint/core@0.11.0': + resolution: {integrity: sha512-DWUB2pksgNEb6Bz2fggIy1wh6fGgZP4Xyy/Mt0QZPiloKKXerbqq9D3SBQTlCRYOrcRPu4vuz+CGjwdfqxnoWA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.17.0': - resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==} + '@eslint/eslintrc@3.2.0': + resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.18.0': - resolution: {integrity: sha512-fK6L7rxcq6/z+AaQMtiFTkvbHkBLNlwyRxHpKawP0x3u9+NC6MQTnFW+AdpwC6gfHTW0051cokQgtTN2FqlxQA==} + '@eslint/js@9.20.0': + resolution: {integrity: sha512-iZA07H9io9Wn836aVTytRaNqh00Sad+EamwOVJT12GTLw1VGMFV/4JaME+JjLtr9fiGaoWgYnS54wrfWsSs4oQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/object-schema@2.1.5': @@ -2899,8 +2792,8 @@ packages: resolution: {integrity: sha512-7bQW+gkKa2kKZPeJf6+c6gFK9ARxQfn+FKy9ScTBppyKRWH2KzsmweXUoklqeEiHiNVWaeP5csIdsNq6w7QhzA==} engines: {node: '>=12.20'} - '@handlebars/parser@2.0.0': - resolution: {integrity: sha512-EP9uEDZv/L5Qh9IWuMUGJRfwhXJ4h1dqKTT4/3+tY0eu7sPis7xh23j61SYUnNF4vqCQvvUXpDo9Bh/+q1zASA==} + '@handlebars/parser@2.1.0': + resolution: {integrity: sha512-R14NuNaSKZ6eE9y4t0fg/1f8iKd5ZJtSOTIseGFzXINTV17XffhLG2Y0CvdKOgyVQ7+UnXi89YGzRo/xsgwHIA==} '@humanfs/core@0.19.1': resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} @@ -3122,8 +3015,8 @@ packages: resolution: {integrity: sha512-9djTcIYTeK3JpqB1EO57Bbd7hJyMhvYXCGzfMqypWgpJlpjKSgta6XrmcmqN+/NRhLO/l3AbF5hvfnXApYTq7Q==} engines: {node: '>=18.12'} - '@pnpm/catalogs.config@1000.0.1': - resolution: {integrity: sha512-xi6Ox9Z/ZG8xROyErTuBNWKGqLKlnEfZ3F6pF+wN7xTHvBMnJ2gNI0XGAYrIBkiRJ3nFaGMxVYmIHmw80CWHfA==} + '@pnpm/catalogs.config@1000.0.2': + resolution: {integrity: sha512-2GCYZwxmgw6w0bpB71VbbXapgIcSSFOF9vnS+YLyTdy8JaIYoag2XkhXP1cMu24THPRXeo/zKTyziEsqgr1u8w==} engines: {node: '>=18.12'} '@pnpm/catalogs.protocol-parser@0.1.0': @@ -3138,8 +3031,8 @@ packages: resolution: {integrity: sha512-xg7dOTLEcD8d5AcZMRYWrkSkQsl5lElCxdkeQpCEg6964H9oG71gU6gBJeJiNcaqY3RF8bWLo58ArvYWruNyrQ==} engines: {node: '>=18.12'} - '@pnpm/catalogs.resolver@1000.0.1': - resolution: {integrity: sha512-A6KdGQMYNiwBe7N4CuQXfxhHnHo1MBX+d+EiAm+CEXeVrKPhm2RmVHRcKkF+pBlr6vV/KHp9z5tF2B3+jFnnRw==} + '@pnpm/catalogs.resolver@1000.0.2': + resolution: {integrity: sha512-5xp3InFRgl6YzovSYoKs0NTalcVKRj4KkD/d0zIBsKp2cae0G/t2ZZVq3J5rS1Ytf4qkv4oe5SZWpd1oV7Hkew==} engines: {node: '>=18.12'} '@pnpm/catalogs.types@0.1.0': @@ -3150,26 +3043,16 @@ packages: resolution: {integrity: sha512-xRf72lk7xHNvbenA4sp4Of/90QDdRW0CRYT+V+EbqpUXu1xsXtedHai34cTU6VGe7C1hUukxxE9eYTtIpYrx5g==} engines: {node: '>=18.12'} - '@pnpm/cli-meta@1000.0.0': - resolution: {integrity: sha512-E3ndQbpZCR4i1Z1tVs+sBm5kPi4b9Iup2BOwOGGL9G72nnLBHZkDfVYjxFhznVhVEegrYZUNdE8yrC/KK+9J3w==} - engines: {node: '>=18.12'} - - '@pnpm/cli-meta@1000.0.1': - resolution: {integrity: sha512-0oUTbmcp5pk+TduzTiLUBEGAMPUk0GptvSAl+Q4YNuXwwg+14Iub+iaoLjU8eVSU85GzTFtHo4X+8GrWLPxwlw==} + '@pnpm/cli-meta@1000.0.2': + resolution: {integrity: sha512-zNLog8D3vG9O0waUH5Rkzo3xow/LBPoD2VW7uZ+JLauEE4oVIS59EonrR08+GVt/lAVJ3y1F8wBxKw1c/pcU5A==} engines: {node: '>=18.12'} '@pnpm/cli-meta@6.2.2': resolution: {integrity: sha512-0U0F2/ycStOJcO62/Ut7cjTtrioSB2luj3O/ozvs2THJsMlxKBcUYUeD4KMUVkcQoe5f7BKWxcYyBkYGPD8isQ==} engines: {node: '>=18.12'} - '@pnpm/cli-utils@1000.0.3': - resolution: {integrity: sha512-E2epX0W1TgkjRRnyu9KyhUfyCVquSh4zkjacgo/7C59EE6zuI89DgC8yueULWYtaine7JBJycSEFc9QzVSTREg==} - engines: {node: '>=18.12'} - peerDependencies: - '@pnpm/logger': '>=5.1.0 <1001.0.0' - - '@pnpm/cli-utils@1000.0.5': - resolution: {integrity: sha512-Di+AcCqZWb+SeeOHBClxR1HENtRYhARd3M387gMKx6Sljs0DX7DIda39yAUFOOcLyJvoRWhHKgBUV+CvdZY9UQ==} + '@pnpm/cli-utils@1000.0.10': + resolution: {integrity: sha512-iCcn7eGlKk6/oJPr1yatF5HBdrR16cdXOodrNUVWoZ8G43Y6gDR0wOw8kHs4+y3K8sxAMo4rFW5EDcMbixVO/A==} engines: {node: '>=18.12'} peerDependencies: '@pnpm/logger': '>=5.1.0 <1001.0.0' @@ -3188,12 +3071,8 @@ packages: resolution: {integrity: sha512-tV71wOtu8ULW4Fv5c7MWph3Sfle1wkT2q83qF2Cx/0J5E2dpUsClO9evAouL4fbdmPonkXJbRYL5cGHKuqxr4w==} engines: {node: '>=18.12'} - '@pnpm/config@1002.1.0': - resolution: {integrity: sha512-CSbR7tCKBdzQvDm+r34tlgT4Y52tQzG36uSoECwQHr/P+KxT1MMZtQInU8gth5xs22+soauukSFCGvxOCjH00Q==} - engines: {node: '>=18.12'} - - '@pnpm/config@1002.1.2': - resolution: {integrity: sha512-4OV0fMMiZdVoDphrGgXqXDqGOnpyYsEaTNWphtATJ0SDwlFX3KZ0itNA0RYOPXXZKmxVHDowQQgmPNUZ9VsE7g==} + '@pnpm/config@1002.3.1': + resolution: {integrity: sha512-eFu2+c91XW8+ql7yFfx9Xr7w2Z+uDdKpYpdGpP8kAA3NdZnZ1l18HLwrAdD3GoY1TWyoxI7b9uVcXEASy3r6/A==} engines: {node: '>=18.12'} '@pnpm/config@21.8.6': @@ -3204,8 +3083,8 @@ packages: resolution: {integrity: sha512-dxIXcW1F1dxIGfye2JXE7Q8WVwYB0axVzdBOkvE1WKIVR4xjB8e6k/Dkjo7DpbyfW5Vu2k21p6dyM32YLSAWoQ==} engines: {node: '>=18.12'} - '@pnpm/constants@1001.0.0': - resolution: {integrity: sha512-yg+S/e8goJoUC4CxyKAplT2fuI94G/nynshPCNkLsi69bUMim5iDMuiiiMo/LeMoOjuyfByealD3u1mqNXrl+A==} + '@pnpm/constants@1001.1.0': + resolution: {integrity: sha512-xb9dfSGi1qfUKY3r4Zy9JdC9+ZeaDxwfE7HrrGIEsBVY1hvIn6ntbR7A97z3nk44yX7vwbINNf9sizTp0WEtEw==} engines: {node: '>=18.12'} '@pnpm/constants@9.0.0': @@ -3218,14 +3097,8 @@ packages: peerDependencies: '@pnpm/logger': ^5.1.0 - '@pnpm/core-loggers@1000.1.0': - resolution: {integrity: sha512-Ep0nBICUgsz/OC61+9CFdiO+7yEczvpaVQ1v25dQjdRXTzF6bglHjJz+MQ21Td2+5JLd3bOXP9BWihKVo2qeFg==} - engines: {node: '>=18.12'} - peerDependencies: - '@pnpm/logger': '>=5.1.0 <1001.0.0' - - '@pnpm/core-loggers@1000.1.1': - resolution: {integrity: sha512-n3tXxqSAVoD3Cm3EuuzEg2W2uAZ5CcKzAKj+GVbtH8UziVbGLpWaCAGNl9qpK2j6QVJSXkl1IgzRsiNsibUqcw==} + '@pnpm/core-loggers@1000.1.2': + resolution: {integrity: sha512-jOxjLqoC8mSX+vAj9JragTeqbZBWKswb/KX2MKKv+v1hKhyNqDPtNwJFBA1xnmNnuJnJ0fuFYUDV6tivktCFxA==} engines: {node: '>=18.12'} peerDependencies: '@pnpm/logger': '>=5.1.0 <1001.0.0' @@ -3246,8 +3119,8 @@ packages: resolution: {integrity: sha512-viLJ4o3syjKiF1HVgZSnwVZlImAwQubNzdH/Ccm6lS0PZzwh94diLniSC/vBqaPgRmFkr6kspm/2vPfXA4vLsQ==} engines: {node: '>=18.12'} - '@pnpm/dedupe.issues-renderer@1000.0.0': - resolution: {integrity: sha512-7nBr1xku1MvLXIUfhAfnvf+mi7cuXrblbEdOGJ9L2UrtvP5Sq+IWKuBw8wLI0BbWrp2+j+HSgUKc8K1sqW+2Mg==} + '@pnpm/dedupe.issues-renderer@1000.0.1': + resolution: {integrity: sha512-zrCfk0HUQM8WhxCi3C0waGDKO0/gB4r3LgAUOQB4YTHPNr+m+iubznY0I5G776OqJfsPeLi4bByg4Y1wK29xlg==} engines: {node: '>=18.12'} '@pnpm/dedupe.issues-renderer@2.0.0': @@ -3262,14 +3135,8 @@ packages: resolution: {integrity: sha512-iCv/dc5dyXN/egiIu89qQn6yuLsQhiFjn0t1N+UKf4jSdMp59WFHjGh04jSsbxbGG91s6K9SQghOBW8BbZjinw==} engines: {node: '>=18.12'} - '@pnpm/default-reporter@1001.1.1': - resolution: {integrity: sha512-+bLvimNX79Qw25SW+f/4Kn/AMa5Aad+q+FhA8mmQj3fM+cCj+cyH6ql1MHKh6xmuyqxawbUGjBEEKSy0g7a8mg==} - engines: {node: '>=18.12'} - peerDependencies: - '@pnpm/logger': '>=5.1.0 <1001.0.0' - - '@pnpm/default-reporter@1001.1.3': - resolution: {integrity: sha512-urmwVYeayDtcHRO5tC9GkPfvbHKPL+B+frvJF+Gn0moSM130VzJrg0ynSi+yyRZpRi6HMcKjMqQg2GZY+AKNLA==} + '@pnpm/default-reporter@1001.3.1': + resolution: {integrity: sha512-4Zmm8QgY5vM0D2oZ1cEnYMf7VTwS4IX6Ei9ozYC9vx8k8QLHsKtUuErLzY+3Az9dQYJV++rzTpnHldGkGZQmlQ==} engines: {node: '>=18.12'} peerDependencies: '@pnpm/logger': '>=5.1.0 <1001.0.0' @@ -3284,16 +3151,12 @@ packages: resolution: {integrity: sha512-oRNq2uMkKye/8ujRAVbcW4qGL99E6bXP6BTjpN7o3IN1nBHuQ4uj/8g3PFJJMzw+80vH3QDMQUF41ABXJN0sRQ==} engines: {node: '>=18.12'} - '@pnpm/env.system-node-version@1000.0.0': - resolution: {integrity: sha512-+QxUPhwj4GreGqnBRz2wGsRyi0ukK6LUUJlaThjibxSTvRIaS0NGVlMTzakx/a0XdN5wgeIAE0rYfomLh2JFUA==} - engines: {node: '>=18.12'} - - '@pnpm/env.system-node-version@1000.0.1': - resolution: {integrity: sha512-eFn0KYC35GqA9OCPEe6MyLXtk4xOB9fle3UZL4991gxlZCKU2CbpSHkSPtH7ZxmX1EhExaw4yNDNx2M9RyL4pw==} + '@pnpm/env.system-node-version@1000.0.2': + resolution: {integrity: sha512-648LcCKAV46yJjO74Em0HoOb5IVcXnVIgMC7EOiN5+kSKP855h1v+pg0dDuLO+W4xOV9/BmL6CJ/pscniTNWgw==} engines: {node: '>=18.12'} - '@pnpm/error@1000.0.1': - resolution: {integrity: sha512-FdDMjp9ORXK/JlxwjlNF7mRohVKx5pvM01bxsVUSLFLZ9/oMBtDceWlntUTLhvr2MwYcr69mGilTojnXEbsjQA==} + '@pnpm/error@1000.0.2': + resolution: {integrity: sha512-2SfE4FFL73rE1WVIoESbqlj4sLy5nWW4M/RVdHvCRJPjlQHa9MH7m7CVJM204lz6I+eHoB+E7rL3zmpJR5wYnQ==} engines: {node: '>=18.12'} '@pnpm/error@6.0.2': @@ -3304,32 +3167,24 @@ packages: resolution: {integrity: sha512-OIYhG7HQh4zUFh2s8/6bp7glVRjNxms7bpzXVOLV7pyRa+rSYFmqJ8zDsBC64k58nuaxS85Ip+SCDjFxsFGeOg==} engines: {node: '>=18.12'} - '@pnpm/fetcher-base@1000.0.1': - resolution: {integrity: sha512-8sv14IyXE+fgtL2BHDWXHAKplEtiBYjwfSsnGk57SI6+B5F2jhGmr9/rB0v5hUx9YOygKe8eNr/quxKTEsWAbQ==} - engines: {node: '>=18.12'} - - '@pnpm/fetcher-base@1000.0.2': - resolution: {integrity: sha512-+hA4lz4xvh3O2vV7XLxD+ZeMWeYBT6YcBo4FIKNjqBZDjlMz8zriQDDz8DlSdL5zMBRULXCX+DMdJN0SU8/KVg==} + '@pnpm/fetcher-base@1000.0.3': + resolution: {integrity: sha512-jnv/FP1K7k1QF4ralk5TwHALOA5DRP8LWSYJRc7qk5O8so48E9I0H46/AXQz4ZSd36TGY5xObt1UmoNIqdTOAA==} engines: {node: '>=18.12'} '@pnpm/fetcher-base@16.0.7': resolution: {integrity: sha512-rIbfSa0XB9x75LRJsrMknmngwaxVHSSU9FL6IC2MwIE6dcrC240Daue4kzhwE/T9Iyzph6Egi/SR0VGzyBzcVA==} engines: {node: '>=18.12'} - '@pnpm/find-workspace-dir@1000.0.1': - resolution: {integrity: sha512-FBiOEB8V+xPKfErdA/N2R3WvAuNQ/CFxhTFgvWc1g+e15m51e067ATKkVqluWA0XYmz1TEbw0itwSMB7MP6DfA==} + '@pnpm/find-workspace-dir@1000.0.2': + resolution: {integrity: sha512-zhPR22Hl4JcxCesMUt7VOsy6XdJkN7yttG1x+T7XcQF4dZeOh36PpduGRhxAKv8eI9xFIdu4mcQRGIZt6leO7g==} engines: {node: '>=18.12'} '@pnpm/find-workspace-dir@7.0.3': resolution: {integrity: sha512-eGjkyHSufkHyZ66WpygWnslcRePB0U1lJg1dF3rgWqTChpregYoDyNGDzK7l9Gk+CHVgGZZS5aWp7uKKVmAAEg==} engines: {node: '>=18.12'} - '@pnpm/fs.find-packages@1000.0.1': - resolution: {integrity: sha512-mK1KUW4gS57ufy/NcpAF9DNEFMEIXU8ZYqXiEqpS7Q/aBxHLPaTpcj9rcBmDl/Nt8YKAk2BkwMz2FcVfdXkbwA==} - engines: {node: '>=18.12'} - - '@pnpm/fs.find-packages@1000.0.3': - resolution: {integrity: sha512-BojFUdVkPjP6mySaVmyNXXFoRUj9SL9MsKmCiSOXAJybIbp9ISv1ntd4rkAlkinzGPppZWsstAZhvH4vSPl0IA==} + '@pnpm/fs.find-packages@1000.0.5': + resolution: {integrity: sha512-+OGmy5jFZsaZlG6fKYrtutGl4Wa28et/djVMzCn9o6vXRuIczYMWx3niWaaEECuBkf7AleOrR5/revSWKrfteQ==} engines: {node: '>=18.12'} '@pnpm/fs.find-packages@4.0.5': @@ -3352,12 +3207,8 @@ packages: resolution: {integrity: sha512-933nhV2Prp51522poxX6Chvb7kEW3U3kzVWoqDU1+icB+QE7z/2qQ8wYHsBt4jm0Uil/sF67t77ugOr8bR63kg==} engines: {node: '>=18.12'} - '@pnpm/hooks.types@1001.0.0': - resolution: {integrity: sha512-bCuq7r5hGZchBE64X1jMV7pjsmgprZYn0veglXyRBhiciGPoHEIbS7BCFBjZ20Dj705QMUiz7lRgAzL5ldmNaA==} - engines: {node: '>=18.12'} - - '@pnpm/hooks.types@1001.0.1': - resolution: {integrity: sha512-zndLBOEd7dPcAkmxFZQd582ImCtUcA7UO5r9jw7CjL6gFUYwWq461UzK2WrCIciIH8TeXAI++dahsFwowmCr7g==} + '@pnpm/hooks.types@1001.0.2': + resolution: {integrity: sha512-mbpq/K4xWNWdGmvCWBBOwYWj1yuZIpF28Y4TfX6rFrCK2RoMrhTaO92OPp1ap7QyCSNOrRHEeDwafPBj5l0/fw==} engines: {node: '>=18.12'} '@pnpm/hooks.types@2.0.9': @@ -3368,12 +3219,8 @@ packages: resolution: {integrity: sha512-A7vUWktnhDkrIs+WmXm7AdffJVyVYJpQUEouya/DYhB+Y+tQ3BXjZ6CV0KybqLgI/8AZErgCJqFxA0GJH6QDjA==} engines: {node: '>=18.12'} - '@pnpm/lockfile.types@1001.0.0': - resolution: {integrity: sha512-ii+/83ijgVZqu7U+916Y0cz6ACQNYIfVlhT3xTGmpALDZowR0kJIfXHCZOTGbzCXDeBY7h9524LGLdylQce1EA==} - engines: {node: '>=18.12'} - - '@pnpm/lockfile.types@1001.0.1': - resolution: {integrity: sha512-S2JSDaxN7NM+GEkuC3/5czI8JvuAZgIz4voWZxVXcCubYwRusbpaaGkuQw2dCMFaI9P9vGLPTk1QXTj7vR3POg==} + '@pnpm/lockfile.types@1001.0.2': + resolution: {integrity: sha512-drx2TRYPWriUQDvFHygJ/MuacQ7BRvGvptENNX2QXAsnHx8G5ZYnF21XDc6fCkPG6f83Rw1PcHOaUHObLZbEeA==} engines: {node: '>=18.12'} '@pnpm/logger@1000.0.0': @@ -3384,12 +3231,8 @@ packages: resolution: {integrity: sha512-dCdSs2wPCweMkRLdISAKBOKSWeq/9iS9aanWgjoUkFs06KN2o5XGFg53oCXg/KbZhF9AXS3vMHPwTebzCeAEsA==} engines: {node: '>=18.12'} - '@pnpm/manifest-utils@1000.0.2': - resolution: {integrity: sha512-ocx/qfU1693qXuCC2/TTbNC9Xq7BKUDzJK22suZs4TKr5wjnT35udd0TQp6tKxO5a+zavuSBbXd2RIbMFnDIug==} - engines: {node: '>=18.12'} - - '@pnpm/manifest-utils@1000.0.3': - resolution: {integrity: sha512-hSmpH3n+RANn2wwQx22mwcw2dp25spclnX3xx8+jLB4FoXp5wj2YSGZwSMZME3pY3KuLBCi058aemJYkjOAWzQ==} + '@pnpm/manifest-utils@1000.0.4': + resolution: {integrity: sha512-rD6dcpSD1V7oQX9DGRG2tmfrWUuYN8FJb5ckqjFmebs3eR9whihA9/SGXZEhYotDeweuay2j4esdkGFGhoAx5A==} engines: {node: '>=18.12'} '@pnpm/manifest-utils@6.0.9': @@ -3421,14 +3264,8 @@ packages: resolution: {integrity: sha512-LdFkv/+4ONkQ9ZyE8ihC2L2RcPjvNcOTQq6pvvvZp8KeDYATCJeJX7gpHZF3Bx1XvUSU35dyF9Q9dS+JShtOFA==} engines: {node: '>=12'} - '@pnpm/package-is-installable@1000.0.2': - resolution: {integrity: sha512-hTDC3ThUe0MLxIm4zMLbiI2BB3mLhtqTgCF+BmNm3bVVlNZUvceyrnhLZjSRDR4Iz7cU6sG73oQK1NApWIJaxQ==} - engines: {node: '>=18.12'} - peerDependencies: - '@pnpm/logger': '>=5.1.0 <1001.0.0' - - '@pnpm/package-is-installable@1000.0.3': - resolution: {integrity: sha512-g73079JlgGo+vsrgyPv3rXMghqXL/fUsmtXO8I8UMfu/Srx0f3n7Ut6X6DpHbUtYDsGFPYRLOMnKRhdHsA9fqg==} + '@pnpm/package-is-installable@1000.0.4': + resolution: {integrity: sha512-QC59IaRiZwnGLEWR55LswJlJRWuT4TXK9v4l4ayK1SuODlIqpDz1pORGegFyNUKfyUff5JhYoEx2S5PApY7b/g==} engines: {node: '>=18.12'} peerDependencies: '@pnpm/logger': '>=5.1.0 <1001.0.0' @@ -3439,8 +3276,8 @@ packages: peerDependencies: '@pnpm/logger': ^5.1.0 - '@pnpm/parse-overrides@1000.0.1': - resolution: {integrity: sha512-dr7dBAFYsS2XS483/Z2bwk1ng8OwK4ixK3H7/RIptG1yD1GgYf4rZR1jAvQdmyuyTttKE9jSAdJLNFPo0bTRug==} + '@pnpm/parse-overrides@1000.0.2': + resolution: {integrity: sha512-NII/zHEDIqtSNkDS39TD0r6ukKdZaQPwn6EjDEHYFacgbHN2d3i261paQvm0Pm0oX4svV+5x5YWHUTIbQJItDg==} engines: {node: '>=18.12'} '@pnpm/parse-overrides@5.1.1': @@ -3463,14 +3300,8 @@ packages: resolution: {integrity: sha512-IzNrirYIcquD0tRGKkzj8q5eKh0zOVDL6rOu/sQSrlF6qWTu8YaWCI5LQoZPa1B5IGQTCJwhcoZlnGBHZyEXAg==} engines: {node: '>=18.12'} - '@pnpm/pnpmfile@1001.0.1': - resolution: {integrity: sha512-ymXERxG6g1f5/Onc7IFdirU22xLCuzryE4cL8gxwBNqcSEjs6NuOLxEgQMVSJLEbx7cIMPizpDxbFNaFQ0QYhA==} - engines: {node: '>=18.12'} - peerDependencies: - '@pnpm/logger': '>=5.1.0 <1001.0.0' - - '@pnpm/pnpmfile@1001.0.3': - resolution: {integrity: sha512-GGPb82evIB6XFPSezpw5jmPC1GTIVnssfDDcM5qDWmjQdiDSN464Z3RoWWsnroJQ9C9mLdz7DBtssFnGpMAlWQ==} + '@pnpm/pnpmfile@1001.0.4': + resolution: {integrity: sha512-WDIsjZdM9Ol8XKtWbnl7nzS9+CFnf0HAz/2xxE/ksJ1fPG2VN2hbqHTsC9Szso11axVB6NU7JdEKy49jxBepVQ==} engines: {node: '>=18.12'} peerDependencies: '@pnpm/logger': '>=5.1.0 <1001.0.0' @@ -3484,52 +3315,36 @@ packages: '@pnpm/ramda@0.28.1': resolution: {integrity: sha512-zcAG+lvU0fMziNeGXpPyCyCJYp5ZVrPElEE4t14jAmViaihohocZ+dDkcRIyAomox8pQsuZnv1EyHR+pOhmUWw==} - '@pnpm/read-package-json@1000.0.2': - resolution: {integrity: sha512-bFJFshvi+AwAGRlbEokwlLytb4nJNK0OyEG3x7ZUsqkqVFel374lU2jU/DBO9w/sx+0uNKrAxho1brzvmwhjnw==} - engines: {node: '>=18.12'} - - '@pnpm/read-project-manifest@1000.0.1': - resolution: {integrity: sha512-pEiaUPfFP4W1uFnX8WXFh7ceJWvS45hgafmkYnp2SB/ehrkP0O48rCeC/5ZbZ4eLRYu650uGFBjugRF8HKs3Zg==} + '@pnpm/read-package-json@1000.0.3': + resolution: {integrity: sha512-yEdYl5GJox8RQNovwa+rQcXUJ5xjTQ99gGNqu07uDRAMsAS9cPrMSuYx4IXa9oZ7/gqGnAZuzYTPTtKXbXHBeA==} engines: {node: '>=18.12'} - '@pnpm/read-project-manifest@1000.0.3': - resolution: {integrity: sha512-BWI0vNzXd+KJvuIhVQCij0c1YAlj43LI2ywLuXsguj8j0Bua8m3liUslu3TuH1ZHqt+9ovp3f+bRL4+tlXOKng==} + '@pnpm/read-project-manifest@1000.0.5': + resolution: {integrity: sha512-DSnPRfQ2PjcICaGbmUWoC7W28x9pssVHkQIGafd62ljF4AMWhfWyZqlnZQOmiUBHoFDtYYkEXyC6drZ2Pko6lw==} engines: {node: '>=18.12'} '@pnpm/read-project-manifest@6.0.9': resolution: {integrity: sha512-baFgIFtnGCGcWYzwDmGbRSPoolmC6l47uMXuJBRgmTVDDI/x9qJFZ8hFBugVVz4ALbPxA8ajS618WZ+gLla4/A==} engines: {node: '>=18.12'} - '@pnpm/render-peer-issues@1000.0.1': - resolution: {integrity: sha512-nzF2rPS0XKPK6CkbMzgtt9DfXx7SCbqY/EMQpcSR1ZEdxtyyni17ZN7S+42BLzcau/UmMk9XECAesU3kQ9FuUQ==} - engines: {node: '>=18.12'} - - '@pnpm/render-peer-issues@1000.0.2': - resolution: {integrity: sha512-NfPGexE1Cx2j6fxE0FYBY3Cr+GGLR+uIbgHyTEhPZZy5qBSwCmJMzU7E95kxJjMpgijU32f8TOEqtzf/x3pPrg==} + '@pnpm/render-peer-issues@1000.0.4': + resolution: {integrity: sha512-4TpIH4KRwi/tTkJQaU3/2A8/um50hdkHGjPzukdKjU837H/ZfZ0ARQQOPYR0axcuCHUov4l5gqQJ6q3Kmb26gQ==} engines: {node: '>=18.12'} '@pnpm/render-peer-issues@5.0.10': resolution: {integrity: sha512-+w/ZSaCEOToZtQXniZoQnxwjgs6bL8R/8S1UOl6jnXrPr70ZtgAORfZle/vXVdbqef3T63ZiX9F9uGOMCNTghA==} engines: {node: '>=18.12'} - '@pnpm/resolver-base@1000.1.0': - resolution: {integrity: sha512-ZV8/YGGt/zLMzUXzY2Gkckzx3SZWY/oBfSOniEJVGOZCzkWVyDuhHvovH2D5o5XA/OYEcSWmiIuBxk+HxtO1jQ==} - engines: {node: '>=18.12'} - - '@pnpm/resolver-base@1000.1.1': - resolution: {integrity: sha512-bODmHt5wMgYVU9U8Js+EM1QAKxv2lD/EIa156Ilayf6YZZ4bOAQGedKJDOIltgzAM4fKKrGkiUKWdgOmQrQ+6g==} + '@pnpm/resolver-base@1000.1.2': + resolution: {integrity: sha512-kU8vG7Tt18nIwzIpu0oWejdzg5uFPKSh6mPN/wvVNQZO1T3zcQtgILs28fY8u7ONZPHKV4lcbbEFI/KDiGewFg==} engines: {node: '>=18.12'} '@pnpm/resolver-base@13.0.4': resolution: {integrity: sha512-d6GtsaXDN1VmVdeB6ohrhwGwQfvYpEX/XkBZyRT0Hp772WabWVfaulvicwdh/8o7Rpzy7IV/2hKnDpodUY00lw==} engines: {node: '>=18.12'} - '@pnpm/store-controller-types@1000.1.0': - resolution: {integrity: sha512-ncOg+OU3OnA1oxzKMUjDErjNipbKsb56ojhR/73+pf0Gz6MvvRXizBo3TCkpi8UuGpbFdB0rPHjeVYgJbTRaeQ==} - engines: {node: '>=18.12'} - - '@pnpm/store-controller-types@1001.0.0': - resolution: {integrity: sha512-vIYRkpC/OQUc3nUXUmQMdYOff2hkX7190vcBY5m+d61Xz9HrHomSnitXmKHNqUvT5ChjZ51QZJA3wB2qYLy+ZQ==} + '@pnpm/store-controller-types@1001.0.1': + resolution: {integrity: sha512-J0RGzZKgabxTcEQigs3lTiC4qtsJ6wM7Vtcr4l5hqWfMkDuHNoWI4n3bB/VtzMQ33WPldFpWnYFNJGLNJjOHbA==} engines: {node: '>=18.12'} '@pnpm/store-controller-types@18.1.6': @@ -3544,12 +3359,8 @@ packages: resolution: {integrity: sha512-BSGvYd59kPKVTUk1InekEp+TiPnJ8650/bQyiOUFSvqHi61YipcR+E4H2i3xTnk2e+GHdGbXvEtAZbQmyxb0/g==} engines: {node: '>=18.12'} - '@pnpm/types@1000.0.0': - resolution: {integrity: sha512-txl+XYCa0tuZ+J55hp3M3g8PGmKbf371GDDWlKjDBEXmVRn484LBLx10lPfQAK8/BsMjr42CfpJpfaJrUipQVg==} - engines: {node: '>=18.12'} - - '@pnpm/types@1000.1.0': - resolution: {integrity: sha512-+F58+ZHk9vJS4NKeVIzvPGCdU9tiPs7p1egqZRBiMN6Sc55LdDUEd/ArvyuooesY1hqmapUcDsgpU2krmNFMRQ==} + '@pnpm/types@1000.1.1': + resolution: {integrity: sha512-5zrv7B+4mW/6iiYS/BrFZWbMqLHjKmaBrMcw+F8LcuMQ7p4SQX4ANoycpr1VIQpn4+xQ0ckyuadfxBttpzicbg==} engines: {node: '>=18.12'} '@pnpm/types@11.1.0': @@ -3569,14 +3380,8 @@ packages: engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true - '@pnpm/workspace.find-packages@1000.0.3': - resolution: {integrity: sha512-jE6/iX0Hh4Z6bjz9RlS32eJjDhTV81Rd2gZZ8AEN5K3VQd+7YYTAK01zD08yEpaTcXUGFhj21x2u554R+ObptA==} - engines: {node: '>=18.12'} - peerDependencies: - '@pnpm/logger': '>=5.1.0 <1001.0.0' - - '@pnpm/workspace.find-packages@1000.0.5': - resolution: {integrity: sha512-9nPWBXiOUIwkK1yQQx/TqTuthsl+FY/jWKQpcvEjc3qy5UYePbXA8fiVFj8AzdrP+2ChrmP1QmJEappoyHk38w==} + '@pnpm/workspace.find-packages@1000.0.10': + resolution: {integrity: sha512-hwCaWOpDGau7xTGBFcIiyH3tX5Ysu8qJpaA8Kx9VBCmZwUqgmkn6IjLFIGjdjVr6jpAvYqrNlV8xRcvodkfQTA==} engines: {node: '>=18.12'} peerDependencies: '@pnpm/logger': '>=5.1.0 <1001.0.0' @@ -3587,8 +3392,8 @@ packages: peerDependencies: '@pnpm/logger': ^5.1.0 - '@pnpm/workspace.read-manifest@1000.0.1': - resolution: {integrity: sha512-W45/escLD82Xss0oQYATs5GXZzet0wflnUe9SkL4KhEQUzX6jpmtoAqlxxbBccHFoeteoP6VjwT6Gmt8UFcewg==} + '@pnpm/workspace.read-manifest@1000.0.2': + resolution: {integrity: sha512-MKWL07/ZHmvOZG8UzbIBMib4EiYi8+rXpk49a8ditR2E/RsIj3p0ICKG9S2nFfIjeJCEOtxO6HDXXQIn4iYyiw==} engines: {node: '>=18.12'} '@pnpm/workspace.read-manifest@2.2.1': @@ -3599,12 +3404,8 @@ packages: resolution: {integrity: sha512-ryiFUKQfu5sYAtX/jsYRHsTHoB6p6rNBZQkXODlmMczcGeIE78cuz1xf5+xS6Dq2CayiqImuSmCiWbT5uT90Nw==} engines: {node: '>=18.12'} - '@pnpm/write-project-manifest@1000.0.0': - resolution: {integrity: sha512-uo88kwRogMHZftJuQvlvPrRNfEYv3ur1LGxTKXbRtkgwDsOa1+WxnNT7TgwPDVTUH3+qZUjhLhDxhoFi0sItlA==} - engines: {node: '>=18.12'} - - '@pnpm/write-project-manifest@1000.0.1': - resolution: {integrity: sha512-zwSV09sOGk6S9QMfy94lxDfRZK/JjWVrgVRpt+kd31Pljeu4U+arKPbfg3CiwJXy5VIkOY2W2XKtUKirrq0Qjw==} + '@pnpm/write-project-manifest@1000.0.2': + resolution: {integrity: sha512-vIwllRvCfSlaIlbE7GJwDStiwigisYI4IstouP5a1Th8nP+QutJZeqPRNCQWjaWn4XTCs0kcPWBg2sOA2D8+Mw==} engines: {node: '>=18.12'} '@pnpm/write-project-manifest@6.0.7': @@ -3620,9 +3421,9 @@ packages: engines: {node: '>=18'} hasBin: true - '@rollup/plugin-commonjs@25.0.7': - resolution: {integrity: sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==} - engines: {node: '>=14.0.0'} + '@rollup/plugin-commonjs@28.0.2': + resolution: {integrity: sha512-BEFI2EDqzl+vA1rl97IDRZ61AIwGH093d9nz8+dThxJNH8oSoB7MjWvPCX3dkaK1/RCJ/1v/R1XB15FuSs0fQw==} + engines: {node: '>=16.0.0 || 14 >= 14.17'} peerDependencies: rollup: ^2.68.0||^3.0.0||^4.0.0 peerDependenciesMeta: @@ -3638,8 +3439,8 @@ packages: rollup: optional: true - '@rollup/plugin-node-resolve@15.2.3': - resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} + '@rollup/plugin-node-resolve@16.0.0': + resolution: {integrity: sha512-0FPvAeVUT/zdWoO0jnb/V5BlBsUSNfkIOtFHzMO4H9MOklrmQFY6FduVHKucNb/aTFxvnGhj4MNj/T1oNdDfNg==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^2.78.0||^3.0.0||^4.0.0 @@ -3647,8 +3448,8 @@ packages: rollup: optional: true - '@rollup/plugin-replace@5.0.5': - resolution: {integrity: sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ==} + '@rollup/plugin-replace@6.0.2': + resolution: {integrity: sha512-7QaYCf8bqF04dOy7w/eHmJeNExxTYwvKAmlSAH/EaWWUzbT0h5sbF6bktFoX/0F/0qwng5/dWFMyf3gzaM8DsQ==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 @@ -3684,8 +3485,8 @@ packages: rollup: optional: true - '@rollup/plugin-typescript@12.1.1': - resolution: {integrity: sha512-t7O653DpfB5MbFrqPe/VcKFFkvRuFNp9qId3xq4Eth5xlyymzxNpye2z8Hrl0RIMuXTSr5GGcFpkdlMeacUiFQ==} + '@rollup/plugin-typescript@12.1.2': + resolution: {integrity: sha512-cdtSp154H5sv637uMr1a8OTWB0L1SWDSm1rDGiyfcGcvQ6cuTs4MDk2BVEBGysUWago4OJN4EQZqOTl/QY3Jgg==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^2.14.0||^3.0.0||^4.0.0 @@ -3706,290 +3507,100 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.29.1': - resolution: {integrity: sha512-ssKhA8RNltTZLpG6/QNkCSge+7mBQGUqJRisZ2MDQcEGaK93QESEgWK2iOpIDZ7k9zPVkG5AS3ksvD5ZWxmItw==} - cpu: [arm] - os: [android] - - '@rollup/rollup-android-arm-eabi@4.31.0': - resolution: {integrity: sha512-9NrR4033uCbUBRgvLcBrJofa2KY9DzxL2UKZ1/4xA/mnTNyhZCWBuD8X3tPm1n4KxcgaraOYgrFKSgwjASfmlA==} - cpu: [arm] - os: [android] - - '@rollup/rollup-android-arm-eabi@4.31.0-0': - resolution: {integrity: sha512-Sxm1qlwym2ziZZ/ELuFjEB/60CCUtoptkCV8kvMvqZneDAxRl/4wOc8p3SwevYUxbtp9PVacNLhH7IFnzErD1w==} + '@rollup/rollup-android-arm-eabi@4.34.8': + resolution: {integrity: sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.29.1': - resolution: {integrity: sha512-CaRfrV0cd+NIIcVVN/jx+hVLN+VRqnuzLRmfmlzpOzB87ajixsN/+9L5xNmkaUUvEbI5BmIKS+XTwXsHEb65Ew==} - cpu: [arm64] - os: [android] - - '@rollup/rollup-android-arm64@4.31.0': - resolution: {integrity: sha512-iBbODqT86YBFHajxxF8ebj2hwKm1k8PTBQSojSt3d1FFt1gN+xf4CowE47iN0vOSdnd+5ierMHBbu/rHc7nq5g==} + '@rollup/rollup-android-arm64@4.34.8': + resolution: {integrity: sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==} cpu: [arm64] os: [android] - '@rollup/rollup-android-arm64@4.31.0-0': - resolution: {integrity: sha512-dXA8prsULJy0lJfNUzKI47pGVJcwlnutl7wIBV4zkW7+GtY9c2KygEO2jzrXZwjVP0x3FxVB6d8mzgR9x97LXw==} - cpu: [arm64] - os: [android] - - '@rollup/rollup-darwin-arm64@4.29.1': - resolution: {integrity: sha512-2ORr7T31Y0Mnk6qNuwtyNmy14MunTAMx06VAPI6/Ju52W10zk1i7i5U3vlDRWjhOI5quBcrvhkCHyF76bI7kEw==} - cpu: [arm64] - os: [darwin] - - '@rollup/rollup-darwin-arm64@4.31.0': - resolution: {integrity: sha512-WHIZfXgVBX30SWuTMhlHPXTyN20AXrLH4TEeH/D0Bolvx9PjgZnn4H677PlSGvU6MKNsjCQJYczkpvBbrBnG6g==} - cpu: [arm64] - os: [darwin] - - '@rollup/rollup-darwin-arm64@4.31.0-0': - resolution: {integrity: sha512-S7q2ljTmslNEwEZAma6w3A3unIZ0Z52+in5RtCk6IRLFfXGSjLY785gOhbjOWDkhXKGWpwLd+FVAHmHJZhDmlg==} + '@rollup/rollup-darwin-arm64@4.34.8': + resolution: {integrity: sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.29.1': - resolution: {integrity: sha512-j/Ej1oanzPjmN0tirRd5K2/nncAhS9W6ICzgxV+9Y5ZsP0hiGhHJXZ2JQ53iSSjj8m6cRY6oB1GMzNn2EUt6Ng==} - cpu: [x64] - os: [darwin] - - '@rollup/rollup-darwin-x64@4.31.0': - resolution: {integrity: sha512-hrWL7uQacTEF8gdrQAqcDy9xllQ0w0zuL1wk1HV8wKGSGbKPVjVUv/DEwT2+Asabf8Dh/As+IvfdU+H8hhzrQQ==} + '@rollup/rollup-darwin-x64@4.34.8': + resolution: {integrity: sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==} cpu: [x64] os: [darwin] - '@rollup/rollup-darwin-x64@4.31.0-0': - resolution: {integrity: sha512-bE7qZR7k+bigEUu5iNb7UkUMMIsjoMmp7fJHjN6eihZArcOG4IW0eZZU9vFY7uXSs49e0CyzdXvI31pCyU0guA==} - cpu: [x64] - os: [darwin] - - '@rollup/rollup-freebsd-arm64@4.29.1': - resolution: {integrity: sha512-91C//G6Dm/cv724tpt7nTyP+JdN12iqeXGFM1SqnljCmi5yTXriH7B1r8AD9dAZByHpKAumqP1Qy2vVNIdLZqw==} - cpu: [arm64] - os: [freebsd] - - '@rollup/rollup-freebsd-arm64@4.31.0': - resolution: {integrity: sha512-S2oCsZ4hJviG1QjPY1h6sVJLBI6ekBeAEssYKad1soRFv3SocsQCzX6cwnk6fID6UQQACTjeIMB+hyYrFacRew==} - cpu: [arm64] - os: [freebsd] - - '@rollup/rollup-freebsd-arm64@4.31.0-0': - resolution: {integrity: sha512-t0cs4TbMoFukr+ERMicPkv0YAtajrUAotx7SQGNJaDWcHRaclPLDrZUHU11zExrqnvxf7BuU9DCcOzWxejW05Q==} + '@rollup/rollup-freebsd-arm64@4.34.8': + resolution: {integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.29.1': - resolution: {integrity: sha512-hEioiEQ9Dec2nIRoeHUP6hr1PSkXzQaCUyqBDQ9I9ik4gCXQZjJMIVzoNLBRGet+hIUb3CISMh9KXuCcWVW/8w==} - cpu: [x64] - os: [freebsd] - - '@rollup/rollup-freebsd-x64@4.31.0': - resolution: {integrity: sha512-pCANqpynRS4Jirn4IKZH4tnm2+2CqCNLKD7gAdEjzdLGbH1iO0zouHz4mxqg0uEMpO030ejJ0aA6e1PJo2xrPA==} + '@rollup/rollup-freebsd-x64@4.34.8': + resolution: {integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==} cpu: [x64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.31.0-0': - resolution: {integrity: sha512-z187r/kd5cnXAqu+2QbxnNk5OiUMkNlaJX6EGodi68ahy/sUYuYaEMNPBsogvJJnJ0FSfNPgvEwjKe9yGs3m6g==} - cpu: [x64] - os: [freebsd] - - '@rollup/rollup-linux-arm-gnueabihf@4.29.1': - resolution: {integrity: sha512-Py5vFd5HWYN9zxBv3WMrLAXY3yYJ6Q/aVERoeUFwiDGiMOWsMs7FokXihSOaT/PMWUty/Pj60XDQndK3eAfE6A==} - cpu: [arm] - os: [linux] - - '@rollup/rollup-linux-arm-gnueabihf@4.31.0': - resolution: {integrity: sha512-0O8ViX+QcBd3ZmGlcFTnYXZKGbFu09EhgD27tgTdGnkcYXLat4KIsBBQeKLR2xZDCXdIBAlWLkiXE1+rJpCxFw==} + '@rollup/rollup-linux-arm-gnueabihf@4.34.8': + resolution: {integrity: sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-gnueabihf@4.31.0-0': - resolution: {integrity: sha512-TUgxNoRNXBzNhkox5ZUI0M/XMMHOt+khCaxdLi2IjaG2l4YHwW8yXxydkny3CMjerrZkk+pKlZD3xBblm4QRGQ==} + '@rollup/rollup-linux-arm-musleabihf@4.34.8': + resolution: {integrity: sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.29.1': - resolution: {integrity: sha512-RiWpGgbayf7LUcuSNIbahr0ys2YnEERD4gYdISA06wa0i8RALrnzflh9Wxii7zQJEB2/Eh74dX4y/sHKLWp5uQ==} - cpu: [arm] + '@rollup/rollup-linux-arm64-gnu@4.34.8': + resolution: {integrity: sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==} + cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.31.0': - resolution: {integrity: sha512-w5IzG0wTVv7B0/SwDnMYmbr2uERQp999q8FMkKG1I+j8hpPX2BYFjWe69xbhbP6J9h2gId/7ogesl9hwblFwwg==} - cpu: [arm] + '@rollup/rollup-linux-arm64-musl@4.34.8': + resolution: {integrity: sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==} + cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.31.0-0': - resolution: {integrity: sha512-OvP0i2D3MtJeD10faq+AE0s1VcK1FTsw1/VELaShkdG7V2OoVco69gkibgjcRXOonOsLE+BAV+eV7wM6ZHnrFg==} - cpu: [arm] + '@rollup/rollup-linux-loongarch64-gnu@4.34.8': + resolution: {integrity: sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==} + cpu: [loong64] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.29.1': - resolution: {integrity: sha512-Z80O+taYxTQITWMjm/YqNoe9d10OX6kDh8X5/rFCMuPqsKsSyDilvfg+vd3iXIqtfmp+cnfL1UrYirkaF8SBZA==} - cpu: [arm64] + '@rollup/rollup-linux-powerpc64le-gnu@4.34.8': + resolution: {integrity: sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==} + cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.31.0': - resolution: {integrity: sha512-JyFFshbN5xwy6fulZ8B/8qOqENRmDdEkcIMF0Zz+RsfamEW+Zabl5jAb0IozP/8UKnJ7g2FtZZPEUIAlUSX8cA==} - cpu: [arm64] + '@rollup/rollup-linux-riscv64-gnu@4.34.8': + resolution: {integrity: sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==} + cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.31.0-0': - resolution: {integrity: sha512-+U5+IBKCVgjcwF3Xr23rAL2w0w6ktrvFqOh07FWXEtouhtRu99d2herQeXCNCXrfQ8sGqmWaOJUF5gv+1GsFgQ==} - cpu: [arm64] + '@rollup/rollup-linux-s390x-gnu@4.34.8': + resolution: {integrity: sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==} + cpu: [s390x] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.29.1': - resolution: {integrity: sha512-fOHRtF9gahwJk3QVp01a/GqS4hBEZCV1oKglVVq13kcK3NeVlS4BwIFzOHDbmKzt3i0OuHG4zfRP0YoG5OF/rA==} - cpu: [arm64] + '@rollup/rollup-linux-x64-gnu@4.34.8': + resolution: {integrity: sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==} + cpu: [x64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.31.0': - resolution: {integrity: sha512-kpQXQ0UPFeMPmPYksiBL9WS/BDiQEjRGMfklVIsA0Sng347H8W2iexch+IEwaR7OVSKtr2ZFxggt11zVIlZ25g==} - cpu: [arm64] + '@rollup/rollup-linux-x64-musl@4.34.8': + resolution: {integrity: sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==} + cpu: [x64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.31.0-0': - resolution: {integrity: sha512-AKePyML22xoJXLjj0zShBXjbrs5HsUOckNOIxYPocF6GKsiuQ224MZtg9LpAM8cNY4WxGmMr/3KawLMGTPEmnQ==} + '@rollup/rollup-win32-arm64-msvc@4.34.8': + resolution: {integrity: sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==} cpu: [arm64] - os: [linux] + os: [win32] - '@rollup/rollup-linux-loongarch64-gnu@4.29.1': - resolution: {integrity: sha512-5a7q3tnlbcg0OodyxcAdrrCxFi0DgXJSoOuidFUzHZ2GixZXQs6Tc3CHmlvqKAmOs5eRde+JJxeIf9DonkmYkw==} - cpu: [loong64] - os: [linux] + '@rollup/rollup-win32-ia32-msvc@4.34.8': + resolution: {integrity: sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==} + cpu: [ia32] + os: [win32] - '@rollup/rollup-linux-loongarch64-gnu@4.31.0': - resolution: {integrity: sha512-pMlxLjt60iQTzt9iBb3jZphFIl55a70wexvo8p+vVFK+7ifTRookdoXX3bOsRdmfD+OKnMozKO6XM4zR0sHRrQ==} - cpu: [loong64] - os: [linux] - - '@rollup/rollup-linux-loongarch64-gnu@4.31.0-0': - resolution: {integrity: sha512-WheyyX0x32yGw/ONFOgJ+EUhxRTPty39BPVxSuHrOh6mBRBIil40OfXT5jX16Zkn84OcbzSlPRrbidXcJOEsMg==} - cpu: [loong64] - os: [linux] - - '@rollup/rollup-linux-powerpc64le-gnu@4.29.1': - resolution: {integrity: sha512-9b4Mg5Yfz6mRnlSPIdROcfw1BU22FQxmfjlp/CShWwO3LilKQuMISMTtAu/bxmmrE6A902W2cZJuzx8+gJ8e9w==} - cpu: [ppc64] - os: [linux] - - '@rollup/rollup-linux-powerpc64le-gnu@4.31.0': - resolution: {integrity: sha512-D7TXT7I/uKEuWiRkEFbed1UUYZwcJDU4vZQdPTcepK7ecPhzKOYk4Er2YR4uHKme4qDeIh6N3XrLfpuM7vzRWQ==} - cpu: [ppc64] - os: [linux] - - '@rollup/rollup-linux-powerpc64le-gnu@4.31.0-0': - resolution: {integrity: sha512-n+MFv9mCKXR8imcBqzf+2jULEajQO0JSXCOl771JlMSKCPC4YFVvpdJQskYeMoXRbxguSDiqs6NW7S5R+mXOLw==} - cpu: [ppc64] - os: [linux] - - '@rollup/rollup-linux-riscv64-gnu@4.29.1': - resolution: {integrity: sha512-G5pn0NChlbRM8OJWpJFMX4/i8OEU538uiSv0P6roZcbpe/WfhEO+AT8SHVKfp8qhDQzaz7Q+1/ixMy7hBRidnQ==} - cpu: [riscv64] - os: [linux] - - '@rollup/rollup-linux-riscv64-gnu@4.31.0': - resolution: {integrity: sha512-wal2Tc8O5lMBtoePLBYRKj2CImUCJ4UNGJlLwspx7QApYny7K1cUYlzQ/4IGQBLmm+y0RS7dwc3TDO/pmcneTw==} - cpu: [riscv64] - os: [linux] - - '@rollup/rollup-linux-riscv64-gnu@4.31.0-0': - resolution: {integrity: sha512-RmHOwQOvhXTv+FSEwRJuirKnCalc7mTHlV3leCnXqLbn72zDeGVwQcrMR0PjwOhUHFuAKQU0H8pB2nG9aQAMXQ==} - cpu: [riscv64] - os: [linux] - - '@rollup/rollup-linux-s390x-gnu@4.29.1': - resolution: {integrity: sha512-WM9lIkNdkhVwiArmLxFXpWndFGuOka4oJOZh8EP3Vb8q5lzdSCBuhjavJsw68Q9AKDGeOOIHYzYm4ZFvmWez5g==} - cpu: [s390x] - os: [linux] - - '@rollup/rollup-linux-s390x-gnu@4.31.0': - resolution: {integrity: sha512-O1o5EUI0+RRMkK9wiTVpk2tyzXdXefHtRTIjBbmFREmNMy7pFeYXCFGbhKFwISA3UOExlo5GGUuuj3oMKdK6JQ==} - cpu: [s390x] - os: [linux] - - '@rollup/rollup-linux-s390x-gnu@4.31.0-0': - resolution: {integrity: sha512-IK04nE3xNjucyyNptv0Vb3CcJkD9lFjXBlxOsbenXIS+CL0IKpLL6cCQLbsBjxojT1S5trMUnTKHei/N+/2rdw==} - cpu: [s390x] - os: [linux] - - '@rollup/rollup-linux-x64-gnu@4.29.1': - resolution: {integrity: sha512-87xYCwb0cPGZFoGiErT1eDcssByaLX4fc0z2nRM6eMtV9njAfEE6OW3UniAoDhX4Iq5xQVpE6qO9aJbCFumKYQ==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-linux-x64-gnu@4.31.0': - resolution: {integrity: sha512-zSoHl356vKnNxwOWnLd60ixHNPRBglxpv2g7q0Cd3Pmr561gf0HiAcUBRL3S1vPqRC17Zo2CX/9cPkqTIiai1g==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-linux-x64-gnu@4.31.0-0': - resolution: {integrity: sha512-4xfIux4fgGu6r5W8kp7fF6BATP5icAnDx00vAq+zv5LGCG2USkGkb2oVUyT09cnfMWSqMaUCtxWfi4cNUpHD0A==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-linux-x64-musl@4.29.1': - resolution: {integrity: sha512-xufkSNppNOdVRCEC4WKvlR1FBDyqCSCpQeMMgv9ZyXqqtKBfkw1yfGMTUTs9Qsl6WQbJnsGboWCp7pJGkeMhKA==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-linux-x64-musl@4.31.0': - resolution: {integrity: sha512-ypB/HMtcSGhKUQNiFwqgdclWNRrAYDH8iMYH4etw/ZlGwiTVxBz2tDrGRrPlfZu6QjXwtd+C3Zib5pFqID97ZA==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-linux-x64-musl@4.31.0-0': - resolution: {integrity: sha512-xTL1xgHJU46QglkLkI2VMhCmxXFZkJVs+tkasStd3zMtXakeH4cgoyj3+TGyg3w2HKAqTkxJ8o62QYQO07Uuxg==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-win32-arm64-msvc@4.29.1': - resolution: {integrity: sha512-F2OiJ42m77lSkizZQLuC+jiZ2cgueWQL5YC9tjo3AgaEw+KJmVxHGSyQfDUoYR9cci0lAywv2Clmckzulcq6ig==} - cpu: [arm64] - os: [win32] - - '@rollup/rollup-win32-arm64-msvc@4.31.0': - resolution: {integrity: sha512-JuhN2xdI/m8Hr+aVO3vspO7OQfUFO6bKLIRTAy0U15vmWjnZDLrEgCZ2s6+scAYaQVpYSh9tZtRijApw9IXyMw==} - cpu: [arm64] - os: [win32] - - '@rollup/rollup-win32-arm64-msvc@4.31.0-0': - resolution: {integrity: sha512-I5sBb+c7mL3qQ0WzpVo9WnoWBtH6VBTJntsnJHupXZlvK0ZVkCn7hQdYEs6b05gBf9oHo7g9eCUIrHHQYl38hw==} - cpu: [arm64] - os: [win32] - - '@rollup/rollup-win32-ia32-msvc@4.29.1': - resolution: {integrity: sha512-rYRe5S0FcjlOBZQHgbTKNrqxCBUmgDJem/VQTCcTnA2KCabYSWQDrytOzX7avb79cAAweNmMUb/Zw18RNd4mng==} - cpu: [ia32] - os: [win32] - - '@rollup/rollup-win32-ia32-msvc@4.31.0': - resolution: {integrity: sha512-U1xZZXYkvdf5MIWmftU8wrM5PPXzyaY1nGCI4KI4BFfoZxHamsIe+BtnPLIvvPykvQWlVbqUXdLa4aJUuilwLQ==} - cpu: [ia32] - os: [win32] - - '@rollup/rollup-win32-ia32-msvc@4.31.0-0': - resolution: {integrity: sha512-cWFzIDwRbKsU9QjnmIKmsuC/ntr216H30gyV9Jamarbksk+CkmvNWbv/HctTHl+HzDcxXqQ+Nz/zXaJ2dvyHcQ==} - cpu: [ia32] - os: [win32] - - '@rollup/rollup-win32-x64-msvc@4.29.1': - resolution: {integrity: sha512-+10CMg9vt1MoHj6x1pxyjPSMjHTIlqs8/tBztXvPAx24SKs9jwVnKqHJumlH/IzhaPUaj3T6T6wfZr8okdXaIg==} - cpu: [x64] - os: [win32] - - '@rollup/rollup-win32-x64-msvc@4.31.0': - resolution: {integrity: sha512-ul8rnCsUumNln5YWwz0ted2ZHFhzhRRnkpBZ+YRuHoRAlUji9KChpOUOndY7uykrPEPXVbHLlsdo6v5yXo/TXw==} - cpu: [x64] - os: [win32] - - '@rollup/rollup-win32-x64-msvc@4.31.0-0': - resolution: {integrity: sha512-kWvrWPYhN3vjfQJjW1Y9j9TH3Gymq8+ITXzeOFgkPQisBU4hRNWYm5WIP99kyw14ZCNPwxY14m5DRMDVufbOsg==} - cpu: [x64] - os: [win32] + '@rollup/rollup-win32-x64-msvc@4.34.8': + resolution: {integrity: sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==} + cpu: [x64] + os: [win32] '@rtsao/scc@1.1.0': resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} @@ -4287,8 +3898,8 @@ packages: '@types/minimist@1.2.5': resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} - '@types/node@20.17.10': - resolution: {integrity: sha512-/jrvh5h6NXhEauFFexRin69nA0uHJ5gwk4iDivp/DeoEua3uwCUto6PC86IpRITBOs4+6i2I56K5x5b6WYGXHA==} + '@types/node@22.13.4': + resolution: {integrity: sha512-ywP2X0DYtX3y08eFVx5fNIw7/uIv8hYUKgXoK8oayJlLnKcRfEYCxWMVE1XagUdVtCJlZT1AU4LXEABW+L1Peg==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -4305,9 +3916,6 @@ packages: '@types/qunit@2.19.12': resolution: {integrity: sha512-II+C1wgzUia0g+tGAH+PBb4XiTm8/C/i6sN23r21NNskBYOYrv+qnW0tFQ/IxZzKVwrK4CTglf8YO3poJUclQA==} - '@types/qunit@2.19.9': - resolution: {integrity: sha512-Ym6B8Ewt1R1b0EgSqISSrAKp2Pg5MNgKK3/d2Fbls3PN7kNnucVSGaRx9Prxeo78HfQofYJMWDWLPlfAuwx7IQ==} - '@types/ramda@0.30.2': resolution: {integrity: sha512-PyzHvjCalm2BRYjAU6nIB3TprYwMNOUY/7P/N8bSzp9W/yM2YrtGtAnnVtaCNSeOZ8DzKyFDvaqQs7LnWwwmBA==} @@ -4335,37 +3943,22 @@ packages: '@types/symlink-or-copy@1.2.2': resolution: {integrity: sha512-MQ1AnmTLOncwEf9IVU+B2e4Hchrku5N67NkgcAHW0p3sdzPe0FNMANxEm6OJUzPniEQGkeT3OROLlCwZJLWFZA==} - '@types/tar@6.1.10': - resolution: {integrity: sha512-60ZO+W0tRKJ3ggdzJKp75xKVlNogKYMqGvr2bMH/+k3T0BagfYTnbmVDFMJB1BFttz6yRgP5MDGP27eh7brrqw==} + '@types/tar@6.1.13': + resolution: {integrity: sha512-IznnlmU5f4WcGTh2ltRu/Ijpmk8wiWXfF0VA4s+HPjHZgvFggk1YaIkbo5krX/zUCzWF8N/l4+W/LNxnvAJ8nw==} '@types/yauzl@2.10.3': resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} - '@typescript-eslint/eslint-plugin@8.19.0': - resolution: {integrity: sha512-NggSaEZCdSrFddbctrVjkVZvFC6KGfKfNK0CU7mNK/iKHGKbzT4Wmgm08dKpcZECBu9f5FypndoMyRHkdqfT1Q==} - 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: ^5.7.3 - - '@typescript-eslint/eslint-plugin@8.20.0': - resolution: {integrity: sha512-naduuphVw5StFfqp4Gq4WhIBE2gN1GEmMUExpJYknZJdRnc+2gDzB8Z3+5+/Kv33hPQRDGzQO/0opHE72lZZ6A==} + '@typescript-eslint/eslint-plugin@8.24.1': + resolution: {integrity: sha512-ll1StnKtBigWIGqvYDVuDmXJHVH4zLVot1yQ4fJtLpL7qacwkxJc1T0bptqw+miBQ/QfUbhl1TcQ4accW5KUyA==} 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: ^5.7.3 - '@typescript-eslint/parser@8.19.0': - resolution: {integrity: sha512-6M8taKyOETY1TKHp0x8ndycipTVgmp4xtg5QpEZzXxDhNvvHOJi5rLRkLr8SK3jTgD5l4fTlvBiRdfsuWydxBw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: ^5.7.3 - - '@typescript-eslint/parser@8.20.0': - resolution: {integrity: sha512-gKXG7A5HMyjDIedBi6bUrDcun8GIjnI8qOwVLiY3rx6T/sHP/19XLJOnIq/FgQvWLHja5JN/LSE7eklNBr612g==} + '@typescript-eslint/parser@8.24.1': + resolution: {integrity: sha512-Tqoa05bu+t5s8CTZFaGpCH2ub3QeT9YDkXbPd3uQ4SfsLoh1/vv2GEYAioPoxCWJJNsenXlC88tRjwoHNts1oQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -4375,19 +3968,12 @@ packages: resolution: {integrity: sha512-hkoJiKQS3GQ13TSMEiuNmSCvhz7ujyqD1x3ShbaETATHrck+9RaDdUbt+osXaUuns9OFwrDTTrjtwsU8gJyyRA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/scope-manager@8.20.0': - resolution: {integrity: sha512-J7+VkpeGzhOt3FeG1+SzhiMj9NzGD/M6KoGn9f4dbz3YzK9hvbhVTmLj/HiTp9DazIzJ8B4XcM80LrR9Dm1rJw==} + '@typescript-eslint/scope-manager@8.24.1': + resolution: {integrity: sha512-OdQr6BNBzwRjNEXMQyaGyZzgg7wzjYKfX2ZBV3E04hUCBDv3GQCHiz9RpqdUIiVrMgJGkXm3tcEh4vFSHreS2Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/type-utils@8.19.0': - resolution: {integrity: sha512-TZs0I0OSbd5Aza4qAMpp1cdCYVnER94IziudE3JU328YUHgWu9gwiwhag+fuLeJ2LkWLXI+F/182TbG+JaBdTg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: ^5.7.3 - - '@typescript-eslint/type-utils@8.20.0': - resolution: {integrity: sha512-bPC+j71GGvA7rVNAHAtOjbVXbLN5PkwqMvy1cwGeaxUoRQXVuKCebRoLzm+IPW/NtFFpstn1ummSIasD5t60GA==} + '@typescript-eslint/type-utils@8.24.1': + resolution: {integrity: sha512-/Do9fmNgCsQ+K4rCz0STI7lYB4phTtEXqqCAs3gZW0pnK7lWNkvWd5iW545GSmApm4AzmQXmSqXPO565B4WVrw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -4397,8 +3983,8 @@ packages: resolution: {integrity: sha512-8XQ4Ss7G9WX8oaYvD4OOLCjIQYgRQxO+qCiR2V2s2GxI9AUpo7riNwo6jDhKtTcaJjT8PY54j2Yb33kWtSJsmA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/types@8.20.0': - resolution: {integrity: sha512-cqaMiY72CkP+2xZRrFt3ExRBu0WmVitN/rYPZErA80mHjHx/Svgp8yfbzkJmDoQ/whcytOPO9/IZXnOc+wigRA==} + '@typescript-eslint/types@8.24.1': + resolution: {integrity: sha512-9kqJ+2DkUXiuhoiYIUvIYjGcwle8pcPpdlfkemGvTObzgmYfJ5d0Qm6jwb4NBXP9W1I5tss0VIAnWFumz3mC5A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@typescript-eslint/typescript-estree@8.19.0': @@ -4407,8 +3993,8 @@ packages: peerDependencies: typescript: ^5.7.3 - '@typescript-eslint/typescript-estree@8.20.0': - resolution: {integrity: sha512-Y7ncuy78bJqHI35NwzWol8E0X7XkRVS4K4P4TCyzWkOJih5NDvtoRDW4Ba9YJJoB2igm9yXDdYI/+fkiiAxPzA==} + '@typescript-eslint/typescript-estree@8.24.1': + resolution: {integrity: sha512-UPyy4MJ/0RE648DSKQe9g0VDSehPINiejjA6ElqnFaFIhI6ZEiZAkUI0D5MCk0bQcTf/LVqZStvQ6K4lPn/BRg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: ^5.7.3 @@ -4420,8 +4006,8 @@ packages: eslint: ^8.57.0 || ^9.0.0 typescript: ^5.7.3 - '@typescript-eslint/utils@8.20.0': - resolution: {integrity: sha512-dq70RUw6UK9ei7vxc4KQtBRk7qkHZv447OUZ6RPQMQl71I3NZxQJX/f32Smr+iqWrB02pHKn2yAdHBb0KNrRMA==} + '@typescript-eslint/utils@8.24.1': + resolution: {integrity: sha512-OOcg3PMMQx9EXspId5iktsI3eMaXVwlhC8BvNnX6B5w9a4dVgpkQZuU8Hy67TolKcl+iFWq0XX+jbDGN4xWxjQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -4431,15 +4017,15 @@ packages: resolution: {integrity: sha512-mCFtBbFBJDCNCWUl5y6sZSCHXw1DEFEk3c/M3nRK2a4XUB8StGFtmcEMizdjKuBzB6e/smJAAWYug3VrdLMr1w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/visitor-keys@8.20.0': - resolution: {integrity: sha512-v/BpkeeYAsPkKCkR8BDwcno0llhzWVqPOamQrAEMdpZav2Y9OVjd9dwJyBLJWwf335B5DmlifECIkZRJCaGaHA==} + '@typescript-eslint/visitor-keys@8.24.1': + resolution: {integrity: sha512-EwVHlp5l+2vp8CoqJm9KikPZgi3gbdZAtabKT9KPShGeOcJhsv4Zdo3oc8T8I0uKEmYoU4ItyxbptjF08enaxg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@vitest/expect@3.0.4': - resolution: {integrity: sha512-Nm5kJmYw6P2BxhJPkO3eKKhGYKRsnqJqf+r0yOGRKpEP+bSCBDsjXgiu1/5QFrnPMEgzfC38ZEjvCFgaNBC0Eg==} + '@vitest/expect@3.0.6': + resolution: {integrity: sha512-zBduHf/ja7/QRX4HdP1DSq5XrPgdN+jzLOwaTq/0qZjYfgETNFCKf9nOAp2j3hmom3oTbczuUzrzg9Hafh7hNg==} - '@vitest/mocker@3.0.4': - resolution: {integrity: sha512-gEef35vKafJlfQbnyOXZ0Gcr9IBUsMTyTLXsEQwuyYAerpHqvXhzdBnDFuHLpFqth3F7b6BaFr4qV/Cs1ULx5A==} + '@vitest/mocker@3.0.6': + resolution: {integrity: sha512-KPztr4/tn7qDGZfqlSPQoF2VgJcKxnDNhmfR3VgZ6Fy1bO8T9Fc1stUiTXtqz0yG24VpD00pZP5f8EOFknjNuQ==} peerDependencies: msw: ^2.4.9 vite: ^5.0.0 || ^6.0.0 @@ -4449,20 +4035,20 @@ packages: vite: optional: true - '@vitest/pretty-format@3.0.4': - resolution: {integrity: sha512-ts0fba+dEhK2aC9PFuZ9LTpULHpY/nd6jhAQ5IMU7Gaj7crPCTdCFfgvXxruRBLFS+MLraicCuFXxISEq8C93g==} + '@vitest/pretty-format@3.0.6': + resolution: {integrity: sha512-Zyctv3dbNL+67qtHfRnUE/k8qxduOamRfAL1BurEIQSyOEFffoMvx2pnDSSbKAAVxY0Ej2J/GH2dQKI0W2JyVg==} - '@vitest/runner@3.0.4': - resolution: {integrity: sha512-dKHzTQ7n9sExAcWH/0sh1elVgwc7OJ2lMOBrAm73J7AH6Pf9T12Zh3lNE1TETZaqrWFXtLlx3NVrLRb5hCK+iw==} + '@vitest/runner@3.0.6': + resolution: {integrity: sha512-JopP4m/jGoaG1+CBqubV/5VMbi7L+NQCJTu1J1Pf6YaUbk7bZtaq5CX7p+8sY64Sjn1UQ1XJparHfcvTTdu9cA==} - '@vitest/snapshot@3.0.4': - resolution: {integrity: sha512-+p5knMLwIk7lTQkM3NonZ9zBewzVp9EVkVpvNta0/PlFWpiqLaRcF4+33L1it3uRUCh0BGLOaXPPGEjNKfWb4w==} + '@vitest/snapshot@3.0.6': + resolution: {integrity: sha512-qKSmxNQwT60kNwwJHMVwavvZsMGXWmngD023OHSgn873pV0lylK7dwBTfYP7e4URy5NiBCHHiQGA9DHkYkqRqg==} - '@vitest/spy@3.0.4': - resolution: {integrity: sha512-sXIMF0oauYyUy2hN49VFTYodzEAu744MmGcPR3ZBsPM20G+1/cSW/n1U+3Yu/zHxX2bIDe1oJASOkml+osTU6Q==} + '@vitest/spy@3.0.6': + resolution: {integrity: sha512-HfOGx/bXtjy24fDlTOpgiAEJbRfFxoX3zIGagCqACkFKKZ/TTOE6gYMKXlqecvxEndKFuNHcHqP081ggZ2yM0Q==} - '@vitest/utils@3.0.4': - resolution: {integrity: sha512-8BqC1ksYsHtbWH+DfpOAKrFw3jl3Uf9J7yeFh85Pz52IWuh1hBBtyfEbRNNZNjl8H8A5yMLH9/t+k7HIKzQcZQ==} + '@vitest/utils@3.0.6': + resolution: {integrity: sha512-18ktZpf4GQFTbf9jK543uspU03Q2qya7ZGya5yiZ0Gx0nnnalBvd5ZBislbl2EhLjM8A8rt4OilqKG7QwcGkvQ==} '@xmldom/xmldom@0.8.10': resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==} @@ -4799,6 +4385,11 @@ packages: peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs3@0.11.1: + resolution: {integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-regenerator@0.6.3: resolution: {integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==} peerDependencies: @@ -5055,10 +4646,6 @@ packages: buffer@5.7.1: resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} - builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} - builtins@5.1.0: resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==} @@ -5168,8 +4755,8 @@ packages: resolution: {integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==} hasBin: true - chai@5.1.2: - resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==} + chai@5.2.0: + resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==} engines: {node: '>=12'} chalk@1.1.3: @@ -5184,10 +4771,6 @@ packages: resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} engines: {node: '>=10'} - chalk@5.2.0: - resolution: {integrity: sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} - chalk@5.4.1: resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} @@ -5442,10 +5025,6 @@ packages: resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} engines: {node: '>= 0.10.0'} - consola@3.3.3: - resolution: {integrity: sha512-Qil5KwghMzlqd51UXM0b6fyaGHtOC22scxrwrz4A2882LyUMwQjnvaedN1HAeXzphspQ6CpHkzMAWxBTUruDLg==} - engines: {node: ^14.18.0 || >=16.10.0} - console-control-strings@1.1.0: resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} @@ -5654,6 +5233,9 @@ packages: core-js-compat@3.39.0: resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==} + core-js-compat@3.40.0: + resolution: {integrity: sha512-0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ==} + core-js@2.6.12: resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. @@ -5705,8 +5287,8 @@ packages: resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} engines: {node: '>= 8'} - crossws@0.3.1: - resolution: {integrity: sha512-HsZgeVYaG+b5zA+9PbIPGq4+J/CJynJuearykPsXx4V/eMhyQ5EDVg3Ak2FBZtVXCiOLu/U7IiwDHTr9MA+IKw==} + crossws@0.3.4: + resolution: {integrity: sha512-uj0O1ETYX1Bh6uSgktfPvwDiPYGQ3aI4qVsaC/LWpkIzGj1nUYm5FK3K+t11oOlpN01lGbprFCH4wBlKdJjVgw==} crypto-random-string@2.0.0: resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} @@ -6214,11 +5796,6 @@ packages: engines: {node: '>=12'} hasBin: true - esbuild@0.21.5: - resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} - engines: {node: '>=12'} - hasBin: true - esbuild@0.23.1: resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==} engines: {node: '>=18'} @@ -6275,8 +5852,8 @@ packages: eslint-import-resolver-node@0.3.9: resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} - eslint-import-resolver-typescript@3.7.0: - resolution: {integrity: sha512-Vrwyi8HHxY97K5ebydMtffsWAn1SCR9eol49eCd5fJS4O1WV7PaAjbcjmbfJJSMz/t4Mal212Uz/fQZrOB8mow==} + eslint-import-resolver-typescript@3.8.2: + resolution: {integrity: sha512-o0nvXxsatYCDTzI1K5b3aYGQ6PjpDGJEVN86zqJw5SEewhmmggfRTotd2dqWr2t2zbeYpIEWGTCkgtUpIEIcaQ==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -6349,8 +5926,8 @@ packages: '@typescript-eslint/parser': optional: true - eslint-plugin-jsonc@2.18.2: - resolution: {integrity: sha512-SDhJiSsWt3nItl/UuIv+ti4g3m4gpGkmnUJS9UWR3TrpyNsIcnJoBRD7Kof6cM4Rk3L0wrmY5Tm3z7ZPjR2uGg==} + eslint-plugin-jsonc@2.19.1: + resolution: {integrity: sha512-MmlAOaZK1+Lg7YoCZPGRjb88ZjT+ct/KTsvcsbZdBm+w8WMzGx+XEmexk0m40P1WV9G2rFV7X3klyRGRpFXEjA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' @@ -6407,8 +5984,8 @@ packages: resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.18.0: - resolution: {integrity: sha512-+waTfRWQlSbpt3KWE+CjrPPYnbq9kfZIYUqapc0uBXyjTp8aYXZDsUH16m39Ryq3NjAVP4tjuF7KaukeqoCoaA==} + eslint@9.20.1: + resolution: {integrity: sha512-m1mM33o6dBUjxl2qb6wv6nGNwCAsns1eKtaQ4l/NPHeTvhiUPbtdfMyktxN4B3fgHIgsYh1VT3V9txblpQHq+g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -6571,8 +6148,8 @@ packages: fast-fifo@1.3.2: resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} - fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + fast-glob@3.3.3: + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} engines: {node: '>=8.6.0'} fast-json-stable-stringify@2.1.0: @@ -6607,6 +6184,14 @@ packages: fd-slicer@1.1.0: resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + fdir@6.4.3: + resolution: {integrity: sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + figures@1.7.0: resolution: {integrity: sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==} engines: {node: '>=0.10.0'} @@ -6759,8 +6344,8 @@ packages: resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} engines: {node: '>=12'} - fs-extra@11.2.0: - resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} + fs-extra@11.3.0: + resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==} engines: {node: '>=14.14'} fs-extra@4.0.3: @@ -6880,6 +6465,9 @@ packages: resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} engines: {node: '>= 0.4'} + get-tsconfig@4.10.0: + resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==} + get-tsconfig@4.8.1: resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} @@ -6966,6 +6554,10 @@ packages: resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==} engines: {node: '>=18'} + globals@15.15.0: + resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==} + engines: {node: '>=18'} + globalthis@1.0.4: resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} engines: {node: '>= 0.4'} @@ -6981,8 +6573,8 @@ packages: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} - globby@14.0.2: - resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} + globby@14.1.0: + resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==} engines: {node: '>=18'} globrex@0.1.2: @@ -7011,8 +6603,8 @@ packages: growly@1.3.0: resolution: {integrity: sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==} - h3@1.13.0: - resolution: {integrity: sha512-vFEAu/yf8UMUcB4s43OaDaigcqpQd14yanmOsn+NcRX3/guSKncyE2rOYhq8RIchgJrPSs/QiIddnTTR1ddiAg==} + h3@1.15.0: + resolution: {integrity: sha512-OsjX4JW8J4XGgCgEcad20pepFQWnuKH+OwkCJjogF3C+9AZ1iYdtB4hX6vAb5DskBiu5ljEXqApINjR8CqoCMQ==} handlebars@4.7.8: resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} @@ -7228,14 +6820,14 @@ packages: ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - ignore@5.2.4: - resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} - engines: {node: '>= 4'} - ignore@5.3.2: resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} engines: {node: '>= 4'} + ignore@7.0.3: + resolution: {integrity: sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==} + engines: {node: '>= 4'} + import-cwd@3.0.0: resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} engines: {node: '>=8'} @@ -7367,10 +6959,6 @@ packages: is-buffer@1.1.6: resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} - is-builtin-module@3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: '>=6'} - is-bun-module@1.3.0: resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==} @@ -7793,12 +7381,12 @@ packages: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} - knip@5.41.1: - resolution: {integrity: sha512-yNpCCe2REU7U3VRvMASnXSEtfEC2HmOoDW9Vp9teQ9FktJYnuagvSZD3xWq8Ru7sPABkmvbC5TVWuMzIaeADNA==} - engines: {node: '>=18.6.0'} + knip@5.44.4: + resolution: {integrity: sha512-Ryn8LwWHLId8jSK1DgtT0hmg5DbzkqAtH+Gg3vZJpmSMgGHMspej9Ag+qKTm8wsPLDjVetuEz/lIsobo0XCMvQ==} + engines: {node: '>=18.18.0'} hasBin: true peerDependencies: - '@types/node': ^20.17.10 + '@types/node': ^22.13.4 typescript: ^5.7.3 ky@1.7.4: @@ -8018,6 +7606,9 @@ packages: loupe@3.1.2: resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==} + loupe@3.1.3: + resolution: {integrity: sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==} + lower-case@2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} @@ -8192,11 +7783,6 @@ packages: engines: {node: '>=4'} hasBin: true - mime@3.0.0: - resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} - engines: {node: '>=10.0.0'} - hasBin: true - mimic-fn@1.2.0: resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==} engines: {node: '>=4'} @@ -8326,8 +7912,8 @@ packages: resolution: {integrity: sha512-IXnMcJ6ZyTuhRmJSjzvHSRhlVPiN9Jwc6e59V0bEJ0ba6OBeX2L0E+mRN1QseeOF4mM+F1Rit6Nh7o+rl2Yn/A==} engines: {node: '>0.9'} - mlly@1.7.3: - resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==} + mlly@1.7.4: + resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==} mocha@10.2.0: resolution: {integrity: sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==} @@ -8417,9 +8003,6 @@ packages: no-case@3.0.4: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} - node-fetch-native@1.6.4: - resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} - node-fetch@2.7.0: resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} engines: {node: 4.x || >=6.0.0} @@ -8432,6 +8015,9 @@ packages: node-int64@0.4.0: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + node-mock-http@1.0.0: + resolution: {integrity: sha512-0uGYQ1WQL1M5kKvGRXWQ3uZCHtLTO8hln3oBjIusM75WoesZ909uQJs/Hb946i2SS+Gsrhkaa6iAO17jRIv6DQ==} + node-modules-path@1.0.2: resolution: {integrity: sha512-6Gbjq+d7uhkO7epaKi5DNgUJn7H0gEyA4Jg0Mo1uQOi3Rk50G83LtmhhFyw0LxnAFhtlspkiiw52ISP13qzcBg==} @@ -8889,9 +8475,9 @@ packages: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} - path-type@5.0.0: - resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} - engines: {node: '>=12'} + path-type@6.0.0: + resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==} + engines: {node: '>=18'} path@0.12.7: resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} @@ -8902,6 +8488,9 @@ packages: pathe@2.0.2: resolution: {integrity: sha512-15Ztpk+nov8DR524R4BF7uEuzESgzUEAV4Ah7CUMNGXdE5ELuvxElxGXndBl32vMSsWa1jpNf22Z+Er3sKwq+w==} + pathe@2.0.3: + resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} + pathval@2.0.0: resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} engines: {node: '>= 14.16'} @@ -9183,12 +8772,8 @@ packages: postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - postcss@8.4.31: - resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} - engines: {node: ^10 || ^12 || >=14} - - postcss@8.4.49: - resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} + postcss@8.5.3: + resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} engines: {node: ^10 || ^12 || >=14} prelude-ls@1.2.1: @@ -9204,8 +8789,8 @@ packages: engines: {node: '>=10.13.0'} hasBin: true - prettier@3.4.2: - resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==} + prettier@3.5.1: + resolution: {integrity: sha512-hPpFQvHwL3Qv5AdRvBFMhnKo4tYxp0ReXiPn2bxkiohEX6mBeBwEpBSQTkD458RaaDKQMYSp4hX4UtfUTA5wDw==} engines: {node: '>=14'} hasBin: true @@ -9359,13 +8944,8 @@ packages: quick-temp@0.1.8: resolution: {integrity: sha512-YsmIFfD9j2zaFwJkzI6eMG7y0lQP7YeWzgtFgNl38pGWZBSXJooZbOWwkcRot7Vt0Fg9L23pX0tqWU3VvLDsiA==} - qunit@2.19.4: - resolution: {integrity: sha512-aqUzzUeCqlleWYKlpgfdHHw9C6KxkB9H3wNfiBg5yHqQMzy0xw/pbCRHYFkjl8MsP/t8qkTQE+JTYL71azgiew==} - engines: {node: '>=10'} - hasBin: true - - qunit@2.23.1: - resolution: {integrity: sha512-CGrsGy7NhkQmfiyOixBpbexh2PT7ekIb35uWiBi/hBNdTJF1W98UonyACFJJs8UmcP96lH+YJlX99dYZi5rZkg==} + qunit@2.24.1: + resolution: {integrity: sha512-Eu0k/5JDjx0QnqxsE1WavnDNDgL1zgMZKsMw/AoAxnsl9p4RgyLODyo2N7abZY7CEAnvl5YUqFZdkImzbgXzSg==} engines: {node: '>=10'} hasBin: true @@ -9688,18 +9268,8 @@ packages: rollup-pluginutils@2.8.2: resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} - rollup@4.29.1: - resolution: {integrity: sha512-RaJ45M/kmJUzSWDs1Nnd5DdV4eerC98idtUOVr6FfKcgxqvjwHmxc5upLF9qZU9EpsVzzhleFahrT3shLuJzIw==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true - - rollup@4.31.0: - resolution: {integrity: sha512-9cCE8P4rZLx9+PjoyqHLs31V9a9Vpvfo4qNcs6JCiGWYhw2gijSetFbH6SSy1whnkgcefnUwr8sad7tgqsGvnw==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true - - rollup@4.31.0-0: - resolution: {integrity: sha512-ZMNLBrmrr5yaIv0fqt/eWkkn+tJjtAf6YGQNZOML/VKa1QD60uTUMBvoXcu+GLGBvefXQ+9DgnS3DHXCj0RTfw==} + rollup@4.34.8: + resolution: {integrity: sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -9802,6 +9372,11 @@ packages: engines: {node: '>=10'} hasBin: true + semver@7.7.1: + resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} + engines: {node: '>=10'} + hasBin: true + send@0.19.0: resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} engines: {node: '>= 0.8.0'} @@ -10367,6 +9942,10 @@ packages: tinyexec@0.3.2: resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} + tinyglobby@0.2.12: + resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==} + engines: {node: '>=12.0.0'} + tinypool@1.0.2: resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==} engines: {node: ^18.0.0 || >=20.0.0} @@ -10452,20 +10031,14 @@ packages: resolution: {integrity: sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==} engines: {node: '>=12'} - ts-api-utils@1.4.0: - resolution: {integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==} - engines: {node: '>=16'} - peerDependencies: - typescript: ^5.7.3 - ts-api-utils@1.4.3: resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} engines: {node: '>=16'} peerDependencies: typescript: ^5.7.3 - ts-api-utils@2.0.0: - resolution: {integrity: sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==} + ts-api-utils@2.0.1: + resolution: {integrity: sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==} engines: {node: '>=18.12'} peerDependencies: typescript: ^5.7.3 @@ -10479,7 +10052,7 @@ packages: peerDependencies: '@swc/core': '>=1.2.50' '@swc/wasm': '>=1.2.50' - '@types/node': ^20.17.10 + '@types/node': ^22.13.4 typescript: ^5.7.3 peerDependenciesMeta: '@swc/core': @@ -10511,38 +10084,38 @@ packages: tunnel-agent@0.6.0: resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} - turbo-darwin-64@2.3.3: - resolution: {integrity: sha512-bxX82xe6du/3rPmm4aCC5RdEilIN99VUld4HkFQuw+mvFg6darNBuQxyWSHZTtc25XgYjQrjsV05888w1grpaA==} + turbo-darwin-64@2.4.2: + resolution: {integrity: sha512-HFfemyWB60CJtEvVQj9yby5rkkWw9fLAdLtAPGtPQoU3tKh8t/uzCAZKso2aPVbib9vGUuGbPGoGpaRXdVhj5g==} cpu: [x64] os: [darwin] - turbo-darwin-arm64@2.3.3: - resolution: {integrity: sha512-DYbQwa3NsAuWkCUYVzfOUBbSUBVQzH5HWUFy2Kgi3fGjIWVZOFk86ss+xsWu//rlEAfYwEmopigsPYSmW4X15A==} + turbo-darwin-arm64@2.4.2: + resolution: {integrity: sha512-uwSx1dsBSSFeEC0nxyx2O219FEsS/haiESaWwE9JI8mHkQK61s6w6fN2G586krKxyNam4AIxRltleL+O2Em94g==} cpu: [arm64] os: [darwin] - turbo-linux-64@2.3.3: - resolution: {integrity: sha512-eHj9OIB0dFaP6BxB88jSuaCLsOQSYWBgmhy2ErCu6D2GG6xW3b6e2UWHl/1Ho9FsTg4uVgo4DB9wGsKa5erjUA==} + turbo-linux-64@2.4.2: + resolution: {integrity: sha512-Fy/uL8z/LAYcPbm7a1LwFnTY9pIi5FAi12iuHsgB7zHjdh4eeIKS2NIg4nroAmTcUTUZ0/cVTo4bDOCUcS3aKw==} cpu: [x64] os: [linux] - turbo-linux-arm64@2.3.3: - resolution: {integrity: sha512-NmDE/NjZoDj1UWBhMtOPmqFLEBKhzGS61KObfrDEbXvU3lekwHeoPvAMfcovzswzch+kN2DrtbNIlz+/rp8OCg==} + turbo-linux-arm64@2.4.2: + resolution: {integrity: sha512-AEA0d8h5W/K6iiXfEgiNwWt0yqRL1NpBs8zQCLdc4/L7WeYeJW3sORWX8zt7xhutF/KW9gTm8ehKpiK6cCIsAA==} cpu: [arm64] os: [linux] - turbo-windows-64@2.3.3: - resolution: {integrity: sha512-O2+BS4QqjK3dOERscXqv7N2GXNcqHr9hXumkMxDj/oGx9oCatIwnnwx34UmzodloSnJpgSqjl8iRWiY65SmYoQ==} + turbo-windows-64@2.4.2: + resolution: {integrity: sha512-CybtIZ9wRgnnNFVN9En9G+rxsO+mwU81fvW4RpE8BWyNEkhQ8J28qYf4PaimueMxGHHp/28i/G7Kcdn2GAWG0g==} cpu: [x64] os: [win32] - turbo-windows-arm64@2.3.3: - resolution: {integrity: sha512-dW4ZK1r6XLPNYLIKjC4o87HxYidtRRcBeo/hZ9Wng2XM/MqqYkAyzJXJGgRMsc0MMEN9z4+ZIfnSNBrA0b08ag==} + turbo-windows-arm64@2.4.2: + resolution: {integrity: sha512-7V0yneVPL8Y3TgrkUIjw7Odmwu1tHnyIiPHFM7eFcA7U+H6hPXyCxge7nC3wOKfjhKCQqUm+Vf/k6kjmLz5G4g==} cpu: [arm64] os: [win32] - turbo@2.3.3: - resolution: {integrity: sha512-DUHWQAcC8BTiUZDRzAYGvpSpGLiaOQPfYXlCieQbwUvmml/LRGIe3raKdrOPOoiX0DYlzxs2nH6BoWJoZrj8hA==} + turbo@2.4.2: + resolution: {integrity: sha512-Qxi0ioQCxMRUCcHKHZkTnYH8e7XCpNfg9QiJcyfWIc+ZXeaCjzV5rCGlbQlTXMAtI8qgfP8fZADv3CFtPwqdPQ==} hasBin: true type-check@0.4.0: @@ -10585,8 +10158,8 @@ packages: resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} engines: {node: '>=14.16'} - type-fest@4.32.0: - resolution: {integrity: sha512-rfgpoi08xagF3JSdtJlCwMq9DGNDE0IMh3Mkpc1wUypg9vPi786AiqeBBKcqvIkq42azsBM85N490fyZjeUftw==} + type-fest@4.35.0: + resolution: {integrity: sha512-2/AwEFQDFEy30iOLjrvHDIH7e4HEWH+f1Yl1bI5XMqzuoCUqwYCdxachgsgv0og/JdVZUhbfjcJAoHj5L1753A==} engines: {node: '>=16'} type-is@1.6.18: @@ -10618,15 +10191,8 @@ packages: types-ramda@0.30.1: resolution: {integrity: sha512-1HTsf5/QVRmLzcGfldPFvkVsAdi1db1BBKzi7iW3KBUlOICg/nKnFS+jGqDJS3YD8VsWbAh7JiHeBvbsw8RPxA==} - typescript-eslint@8.19.0: - resolution: {integrity: sha512-Ni8sUkVWYK4KAcTtPjQ/UTiRk6jcsuDhPpxULapUDi8A/l8TSBk+t1GtJA1RsCzIJg0q6+J7bf35AwQigENWRQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: ^5.7.3 - - typescript-eslint@8.20.0: - resolution: {integrity: sha512-Kxz2QRFsgbWj6Xcftlw3Dd154b3cEPFqQC+qMZrMypSijPd4UanKKvoKDrJ4o8AIfZFKAF+7sMaEIR8mTElozA==} + typescript-eslint@8.24.1: + resolution: {integrity: sha512-cw3rEdzDqBs70TIcb0Gdzbt6h11BSs2pS0yaq7hDWDBtCCSei1pPSUXE9qUdQ/Wm9NgFg8mKtMt1b8fTHIl1jA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -10664,11 +10230,8 @@ packages: underscore@1.13.7: resolution: {integrity: sha512-GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g==} - undici-types@6.19.8: - resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} - - unenv@1.10.0: - resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==} + undici-types@6.20.0: + resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} unicode-canonical-property-names-ecmascript@2.0.1: resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} @@ -10727,23 +10290,18 @@ packages: resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} - unplugin-fonts@1.0.3: - resolution: {integrity: sha512-6Wq0SMhMznUx7DTkqr/ogCvWg2vFSCApHmhUcUISxqfnuME2B/KRLa6+bWyX3sbPNhYsW4zI7jvUkkmIumwenw==} + unplugin-fonts@1.3.1: + resolution: {integrity: sha512-GmaJWPAWH6lBI4fP8xKdbMZJwTgsnr8PGJOfQE52jlod8QkqSO4M529Nox2L8zYapjB5hox2wCu4N3c/LOal/A==} peerDependencies: '@nuxt/kit': ^3.0.0 - vite: ^2.0.0 || ^3.0.0 || ^4.0.0 + vite: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 peerDependenciesMeta: '@nuxt/kit': optional: true - unplugin@1.15.0: - resolution: {integrity: sha512-jTPIs63W+DUEDW207ztbaoO7cQ4p5aVaB823LSlxpsFEU3Mykwxf3ZGC/wzxFJeZlASZYgVrWeo7LgOrqJZ8RA==} - engines: {node: '>=14.0.0'} - peerDependencies: - webpack-sources: ^3 - peerDependenciesMeta: - webpack-sources: - optional: true + unplugin@2.0.0-beta.1: + resolution: {integrity: sha512-2qzQo5LN2DmUZXkWDHvGKLF5BP0WN+KthD6aPnPJ8plRBIjv4lh5O07eYcSxgO2znNw9s4MNhEO1sB+JDllDbQ==} + engines: {node: '>=18.12.0'} unset-value@1.0.0: resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} @@ -10816,48 +10374,17 @@ packages: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} - vite-node@3.0.4: - resolution: {integrity: sha512-7JZKEzcYV2Nx3u6rlvN8qdo3QV7Fxyt6hx+CCKz9fbWxdX5IvUOmTWEAxMrWxaiSf7CKGLJQ5rFu8prb/jBjOA==} + vite-node@3.0.6: + resolution: {integrity: sha512-s51RzrTkXKJrhNbUzQRsarjmAae7VmMPAsRT7lppVpIg6mK3zGthP9Hgz0YQQKuNcF+Ii7DfYk3Fxz40jRmePw==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true - vite@5.4.10: - resolution: {integrity: sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==} - engines: {node: ^18.0.0 || >=20.0.0} - hasBin: true - peerDependencies: - '@types/node': ^20.17.10 - less: '*' - lightningcss: ^1.21.0 - sass: '*' - sass-embedded: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - sass-embedded: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - - vite@6.0.10: - resolution: {integrity: sha512-MEszunEcMo6pFsfXN1GhCFQqnE25tWRH0MA4f0Q7uanACi4y1Us+ZGpTMnITwCTnYzB2b9cpmnelTlxgTBmaBA==} + vite@6.1.1: + resolution: {integrity: sha512-4GgM54XrwRfrOp297aIYspIti66k56v16ZnqHvrIM7mG+HjDlAwS7p+Srr7J6fGvEdOJ5JcQ/D9T7HhtdXDTzA==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true peerDependencies: - '@types/node': ^20.17.10 + '@types/node': ^22.13.4 jiti: '>=1.21.0' less: '*' lightningcss: ^1.21.0 @@ -10892,16 +10419,16 @@ packages: yaml: optional: true - vitest@3.0.4: - resolution: {integrity: sha512-6XG8oTKy2gnJIFTHP6LD7ExFeNLxiTkK3CfMvT7IfR8IN+BYICCf0lXUQmX7i7JoxUP8QmeP4mTnWXgflu4yjw==} + vitest@3.0.6: + resolution: {integrity: sha512-/iL1Sc5VeDZKPDe58oGK4HUFLhw6b5XdY1MYawjuSaDA4sEfYlY9HnS6aCEG26fX+MgUi7MwlduTBHHAI/OvMA==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/debug': ^4.1.12 - '@types/node': ^20.17.10 - '@vitest/browser': 3.0.4 - '@vitest/ui': 3.0.4 + '@types/node': ^22.13.4 + '@vitest/browser': 3.0.6 + '@vitest/ui': 3.0.6 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -10947,10 +10474,6 @@ packages: webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} - engines: {node: '>=10.13.0'} - webpack-virtual-modules@0.6.2: resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==} @@ -11204,13 +10727,8 @@ packages: zod@3.24.1: resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==} - zx@8.2.2: - resolution: {integrity: sha512-HSIdpU5P2ONI0nssnhsUZNCH9Sd/Z8LIFk9n8QTbu6JufzJx7qR7ajrMN21s06JqWSApcN012377iWsv8Vs5bg==} - engines: {node: '>= 12.17.0'} - hasBin: true - - zx@8.3.0: - resolution: {integrity: sha512-L8mY3yfJwo3a8ZDD6f9jZzAcRWJZYcV8GauZmBxLB/aSTwaMzMIEVpPp2Kyx+7yF0gdvuxKnMxAZRft9UCawiw==} + zx@8.3.2: + resolution: {integrity: sha512-qjTunv1NClO05jDaUjrNZfpqC9yvNCchge/bzOcQevsh1aM5qE3TG6MY24kuQKlOWx+7vNuhqO2wa9nQCIGvZA==} engines: {node: '>= 12.17.0'} hasBin: true @@ -11229,6 +10747,8 @@ snapshots: '@babel/compat-data@7.26.3': {} + '@babel/compat-data@7.26.8': {} + '@babel/core@7.26.0': dependencies: '@ampproject/remapping': 2.3.0 @@ -11239,8 +10759,8 @@ snapshots: '@babel/helpers': 7.26.0 '@babel/parser': 7.26.3 '@babel/template': 7.25.9 - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + '@babel/traverse': 7.26.9 + '@babel/types': 7.26.9 convert-source-map: 2.0.0 debug: 4.4.0(supports-color@8.1.1) gensync: 1.0.0-beta.2 @@ -11252,14 +10772,22 @@ snapshots: '@babel/generator@7.26.3': dependencies: '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + '@babel/types': 7.26.9 + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.1.0 + + '@babel/generator@7.26.9': + dependencies: + '@babel/parser': 7.26.9 + '@babel/types': 7.26.9 '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.1.0 '@babel/helper-annotate-as-pure@7.25.9': dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.26.9 '@babel/helper-compilation-targets@7.25.9': dependencies: @@ -11269,6 +10797,14 @@ snapshots: lru-cache: 5.1.1 semver: 6.3.1 + '@babel/helper-compilation-targets@7.26.5': + dependencies: + '@babel/compat-data': 7.26.8 + '@babel/helper-validator-option': 7.25.9 + browserslist: 4.24.3 + lru-cache: 5.1.1 + semver: 6.3.1 + '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 @@ -11277,7 +10813,7 @@ snapshots: '@babel/helper-optimise-call-expression': 7.25.9 '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.26.9 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -11293,7 +10829,7 @@ snapshots: dependencies: '@babel/core': 7.26.0 '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 debug: 4.4.0(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.10 @@ -11302,15 +10838,15 @@ snapshots: '@babel/helper-member-expression-to-functions@7.25.9': dependencies: - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + '@babel/traverse': 7.26.9 + '@babel/types': 7.26.9 transitivePeerDependencies: - supports-color '@babel/helper-module-imports@7.25.9': dependencies: - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + '@babel/traverse': 7.26.9 + '@babel/types': 7.26.9 transitivePeerDependencies: - supports-color @@ -11319,22 +10855,24 @@ snapshots: '@babel/core': 7.26.0 '@babel/helper-module-imports': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.26.9 transitivePeerDependencies: - supports-color '@babel/helper-optimise-call-expression@7.25.9': dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.26.9 '@babel/helper-plugin-utils@7.25.9': {} + '@babel/helper-plugin-utils@7.26.5': {} + '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-annotate-as-pure': 7.25.9 '@babel/helper-wrap-function': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.26.9 transitivePeerDependencies: - supports-color @@ -11343,14 +10881,14 @@ snapshots: '@babel/core': 7.26.0 '@babel/helper-member-expression-to-functions': 7.25.9 '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.26.9 transitivePeerDependencies: - supports-color '@babel/helper-skip-transparent-expression-wrappers@7.25.9': dependencies: - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + '@babel/traverse': 7.26.9 + '@babel/types': 7.26.9 transitivePeerDependencies: - supports-color @@ -11363,42 +10901,46 @@ snapshots: '@babel/helper-wrap-function@7.25.9': dependencies: '@babel/template': 7.25.9 - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + '@babel/traverse': 7.26.9 + '@babel/types': 7.26.9 transitivePeerDependencies: - supports-color '@babel/helpers@7.26.0': dependencies: '@babel/template': 7.25.9 - '@babel/types': 7.26.3 + '@babel/types': 7.26.9 '@babel/parser@7.26.3': dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.26.9 + + '@babel/parser@7.26.9': + dependencies: + '@babel/types': 7.26.9 '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/traverse': 7.26.9 transitivePeerDependencies: - supports-color '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0) transitivePeerDependencies: @@ -11407,8 +10949,8 @@ snapshots: '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/traverse': 7.26.9 transitivePeerDependencies: - supports-color @@ -11429,12 +10971,12 @@ snapshots: '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11450,19 +10992,19 @@ snapshots: dependencies: '@babel/core': 7.26.0 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)': + '@babel/plugin-transform-async-generator-functions@7.26.8(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.26.9 transitivePeerDependencies: - supports-color @@ -11470,26 +11012,26 @@ snapshots: dependencies: '@babel/core': 7.26.0 '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0)': + '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 transitivePeerDependencies: - supports-color @@ -11497,7 +11039,7 @@ snapshots: dependencies: '@babel/core': 7.26.0 '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 transitivePeerDependencies: - supports-color @@ -11505,10 +11047,10 @@ snapshots: dependencies: '@babel/core': 7.26.0 '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-compilation-targets': 7.26.5 + '@babel/helper-plugin-utils': 7.26.5 '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.26.9 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -11516,50 +11058,50 @@ snapshots: '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/template': 7.25.9 '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)': + '@babel/plugin-transform-for-of@7.26.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 transitivePeerDependencies: - supports-color @@ -11567,31 +11109,31 @@ snapshots: '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/helper-compilation-targets': 7.26.5 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/traverse': 7.26.9 transitivePeerDependencies: - supports-color '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)': dependencies: @@ -11613,9 +11155,9 @@ snapshots: dependencies: '@babel/core': 7.26.0 '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/traverse': 7.26.9 transitivePeerDependencies: - supports-color @@ -11623,7 +11165,7 @@ snapshots: dependencies: '@babel/core': 7.26.0 '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 transitivePeerDependencies: - supports-color @@ -11631,34 +11173,34 @@ snapshots: dependencies: '@babel/core': 7.26.0 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)': + '@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-compilation-targets': 7.26.5 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) transitivePeerDependencies: - supports-color @@ -11666,12 +11208,12 @@ snapshots: '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 transitivePeerDependencies: - supports-color @@ -11679,13 +11221,13 @@ snapshots: '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 transitivePeerDependencies: - supports-color @@ -11694,37 +11236,37 @@ snapshots: '@babel/core': 7.26.0 '@babel/helper-annotate-as-pure': 7.25.9 '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 transitivePeerDependencies: - supports-color '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 regenerator-transform: 0.15.2 '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.26.0)': + '@babel/plugin-transform-runtime@7.26.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0) babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0) babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0) @@ -11735,12 +11277,12 @@ snapshots: '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 transitivePeerDependencies: - supports-color @@ -11748,17 +11290,17 @@ snapshots: '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)': + '@babel/plugin-transform-template-literals@7.26.8(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)': + '@babel/plugin-transform-typeof-symbol@7.26.7(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0)': dependencies: @@ -11774,37 +11316,37 @@ snapshots: '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.26.5 '@babel/polyfill@7.12.1': dependencies: core-js: 2.6.12 regenerator-runtime: 0.13.11 - '@babel/preset-env@7.26.0(@babel/core@7.26.0)': + '@babel/preset-env@7.26.9(@babel/core@7.26.0)': dependencies: - '@babel/compat-data': 7.26.3 + '@babel/compat-data': 7.26.8 '@babel/core': 7.26.0 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-compilation-targets': 7.26.5 + '@babel/helper-plugin-utils': 7.26.5 '@babel/helper-validator-option': 7.25.9 '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.0) '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.0) @@ -11816,9 +11358,9 @@ snapshots: '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0) '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.0) '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.0) '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.26.0) '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.0) @@ -11831,7 +11373,7 @@ snapshots: '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.0) '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-for-of': 7.26.9(@babel/core@7.26.0) '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0) @@ -11843,7 +11385,7 @@ snapshots: '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.26.0) '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.0) @@ -11859,17 +11401,17 @@ snapshots: '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-template-literals': 7.26.8(@babel/core@7.26.0) + '@babel/plugin-transform-typeof-symbol': 7.26.7(@babel/core@7.26.0) '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.0) '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0) babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0) - babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0) + babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.0) babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0) - core-js-compat: 3.39.0 + core-js-compat: 3.40.0 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -11877,8 +11419,8 @@ snapshots: '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/types': 7.26.3 + '@babel/helper-plugin-utils': 7.26.5 + '@babel/types': 7.26.9 esutils: 2.0.3 '@babel/preset-typescript@7.26.0(@babel/core@7.26.0)': @@ -11892,7 +11434,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/runtime@7.26.0': + '@babel/runtime@7.26.9': dependencies: regenerator-runtime: 0.14.1 @@ -11900,21 +11442,27 @@ snapshots: dependencies: '@babel/code-frame': 7.26.2 '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + '@babel/types': 7.26.9 - '@babel/traverse@7.26.4': + '@babel/template@7.26.9': dependencies: '@babel/code-frame': 7.26.2 - '@babel/generator': 7.26.3 - '@babel/parser': 7.26.3 - '@babel/template': 7.25.9 - '@babel/types': 7.26.3 + '@babel/parser': 7.26.9 + '@babel/types': 7.26.9 + + '@babel/traverse@7.26.9': + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.9 + '@babel/parser': 7.26.9 + '@babel/template': 7.26.9 + '@babel/types': 7.26.9 debug: 4.4.0(supports-color@8.1.1) globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/types@7.26.3': + '@babel/types@7.26.9': dependencies: '@babel/helper-string-parser': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 @@ -11931,9 +11479,6 @@ snapshots: dependencies: '@jridgewell/trace-mapping': 0.3.9 - '@esbuild/aix-ppc64@0.21.5': - optional: true - '@esbuild/aix-ppc64@0.23.1': optional: true @@ -11943,9 +11488,6 @@ snapshots: '@esbuild/android-arm64@0.18.20': optional: true - '@esbuild/android-arm64@0.21.5': - optional: true - '@esbuild/android-arm64@0.23.1': optional: true @@ -11955,9 +11497,6 @@ snapshots: '@esbuild/android-arm@0.18.20': optional: true - '@esbuild/android-arm@0.21.5': - optional: true - '@esbuild/android-arm@0.23.1': optional: true @@ -11967,9 +11506,6 @@ snapshots: '@esbuild/android-x64@0.18.20': optional: true - '@esbuild/android-x64@0.21.5': - optional: true - '@esbuild/android-x64@0.23.1': optional: true @@ -11979,9 +11515,6 @@ snapshots: '@esbuild/darwin-arm64@0.18.20': optional: true - '@esbuild/darwin-arm64@0.21.5': - optional: true - '@esbuild/darwin-arm64@0.23.1': optional: true @@ -11991,9 +11524,6 @@ snapshots: '@esbuild/darwin-x64@0.18.20': optional: true - '@esbuild/darwin-x64@0.21.5': - optional: true - '@esbuild/darwin-x64@0.23.1': optional: true @@ -12003,9 +11533,6 @@ snapshots: '@esbuild/freebsd-arm64@0.18.20': optional: true - '@esbuild/freebsd-arm64@0.21.5': - optional: true - '@esbuild/freebsd-arm64@0.23.1': optional: true @@ -12015,9 +11542,6 @@ snapshots: '@esbuild/freebsd-x64@0.18.20': optional: true - '@esbuild/freebsd-x64@0.21.5': - optional: true - '@esbuild/freebsd-x64@0.23.1': optional: true @@ -12027,9 +11551,6 @@ snapshots: '@esbuild/linux-arm64@0.18.20': optional: true - '@esbuild/linux-arm64@0.21.5': - optional: true - '@esbuild/linux-arm64@0.23.1': optional: true @@ -12039,9 +11560,6 @@ snapshots: '@esbuild/linux-arm@0.18.20': optional: true - '@esbuild/linux-arm@0.21.5': - optional: true - '@esbuild/linux-arm@0.23.1': optional: true @@ -12051,9 +11569,6 @@ snapshots: '@esbuild/linux-ia32@0.18.20': optional: true - '@esbuild/linux-ia32@0.21.5': - optional: true - '@esbuild/linux-ia32@0.23.1': optional: true @@ -12063,9 +11578,6 @@ snapshots: '@esbuild/linux-loong64@0.18.20': optional: true - '@esbuild/linux-loong64@0.21.5': - optional: true - '@esbuild/linux-loong64@0.23.1': optional: true @@ -12075,9 +11587,6 @@ snapshots: '@esbuild/linux-mips64el@0.18.20': optional: true - '@esbuild/linux-mips64el@0.21.5': - optional: true - '@esbuild/linux-mips64el@0.23.1': optional: true @@ -12087,9 +11596,6 @@ snapshots: '@esbuild/linux-ppc64@0.18.20': optional: true - '@esbuild/linux-ppc64@0.21.5': - optional: true - '@esbuild/linux-ppc64@0.23.1': optional: true @@ -12099,9 +11605,6 @@ snapshots: '@esbuild/linux-riscv64@0.18.20': optional: true - '@esbuild/linux-riscv64@0.21.5': - optional: true - '@esbuild/linux-riscv64@0.23.1': optional: true @@ -12111,9 +11614,6 @@ snapshots: '@esbuild/linux-s390x@0.18.20': optional: true - '@esbuild/linux-s390x@0.21.5': - optional: true - '@esbuild/linux-s390x@0.23.1': optional: true @@ -12123,9 +11623,6 @@ snapshots: '@esbuild/linux-x64@0.18.20': optional: true - '@esbuild/linux-x64@0.21.5': - optional: true - '@esbuild/linux-x64@0.23.1': optional: true @@ -12138,9 +11635,6 @@ snapshots: '@esbuild/netbsd-x64@0.18.20': optional: true - '@esbuild/netbsd-x64@0.21.5': - optional: true - '@esbuild/netbsd-x64@0.23.1': optional: true @@ -12156,9 +11650,6 @@ snapshots: '@esbuild/openbsd-x64@0.18.20': optional: true - '@esbuild/openbsd-x64@0.21.5': - optional: true - '@esbuild/openbsd-x64@0.23.1': optional: true @@ -12168,9 +11659,6 @@ snapshots: '@esbuild/sunos-x64@0.18.20': optional: true - '@esbuild/sunos-x64@0.21.5': - optional: true - '@esbuild/sunos-x64@0.23.1': optional: true @@ -12180,9 +11668,6 @@ snapshots: '@esbuild/win32-arm64@0.18.20': optional: true - '@esbuild/win32-arm64@0.21.5': - optional: true - '@esbuild/win32-arm64@0.23.1': optional: true @@ -12192,9 +11677,6 @@ snapshots: '@esbuild/win32-ia32@0.18.20': optional: true - '@esbuild/win32-ia32@0.21.5': - optional: true - '@esbuild/win32-ia32@0.23.1': optional: true @@ -12204,31 +11686,28 @@ snapshots: '@esbuild/win32-x64@0.18.20': optional: true - '@esbuild/win32-x64@0.21.5': - optional: true - '@esbuild/win32-x64@0.23.1': optional: true '@esbuild/win32-x64@0.24.2': optional: true - '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.18.0(jiti@2.4.2))': + '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.20.1(jiti@2.4.2))': dependencies: escape-string-regexp: 4.0.0 - eslint: 9.18.0(jiti@2.4.2) + eslint: 9.20.1(jiti@2.4.2) ignore: 5.3.2 - '@eslint-community/eslint-utils@4.4.1(eslint@9.18.0(jiti@2.4.2))': + '@eslint-community/eslint-utils@4.4.1(eslint@9.20.1(jiti@2.4.2))': dependencies: - eslint: 9.18.0(jiti@2.4.2) + eslint: 9.20.1(jiti@2.4.2) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.1': {} - '@eslint/compat@1.2.5(eslint@9.18.0(jiti@2.4.2))': + '@eslint/compat@1.2.5(eslint@9.20.1(jiti@2.4.2))': optionalDependencies: - eslint: 9.18.0(jiti@2.4.2) + eslint: 9.20.1(jiti@2.4.2) '@eslint/config-array@0.19.1': dependencies: @@ -12238,7 +11717,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/config-inspector@0.7.1(eslint@9.18.0(jiti@2.4.2))': + '@eslint/config-inspector@1.0.0(eslint@9.20.1(jiti@2.4.2))': dependencies: '@nodelib/fs.walk': 3.0.1 bundle-require: 5.1.0(esbuild@0.24.2) @@ -12246,12 +11725,12 @@ snapshots: chokidar: 4.0.3 debug: 4.4.0(supports-color@8.1.1) esbuild: 0.24.2 - eslint: 9.18.0(jiti@2.4.2) - fast-glob: 3.3.2 + eslint: 9.20.1(jiti@2.4.2) + fast-glob: 3.3.3 find-up: 7.0.0 get-port-please: 3.1.2 - h3: 1.13.0 - mlly: 1.7.3 + h3: 1.15.0 + mlly: 1.7.4 mrmime: 2.0.0 open: 10.1.0 picocolors: 1.1.1 @@ -12265,6 +11744,10 @@ snapshots: dependencies: '@types/json-schema': 7.0.15 + '@eslint/core@0.11.0': + dependencies: + '@types/json-schema': 7.0.15 + '@eslint/eslintrc@3.2.0': dependencies: ajv: 6.12.6 @@ -12279,9 +11762,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.17.0': {} - - '@eslint/js@9.18.0': {} + '@eslint/js@9.20.0': {} '@eslint/object-schema@2.1.5': {} @@ -12296,7 +11777,7 @@ snapshots: '@gwhitney/detect-indent@7.0.1': {} - '@handlebars/parser@2.0.0': {} + '@handlebars/parser@2.1.0': {} '@humanfs/core@0.19.1': {} @@ -12358,7 +11839,7 @@ snapshots: '@manypkg/tools@1.1.2': dependencies: - fast-glob: 3.3.2 + fast-glob: 3.3.3 jju: 1.4.0 js-yaml: 4.1.0 @@ -12391,7 +11872,7 @@ snapshots: '@npmcli/fs@1.1.1': dependencies: '@gar/promisify': 1.1.3 - semver: 7.6.3 + semver: 7.7.1 '@npmcli/git@5.0.8': dependencies: @@ -12402,7 +11883,7 @@ snapshots: proc-log: 4.2.0 promise-inflight: 1.0.1 promise-retry: 2.0.1 - semver: 7.6.3 + semver: 7.7.1 which: 4.0.0 transitivePeerDependencies: - bluebird @@ -12420,7 +11901,7 @@ snapshots: json-parse-even-better-errors: 3.0.2 normalize-package-data: 6.0.2 proc-log: 4.2.0 - semver: 7.6.3 + semver: 7.7.1 transitivePeerDependencies: - bluebird @@ -12435,7 +11916,7 @@ snapshots: '@oclif/help': 1.0.15 '@oclif/parser': 3.8.17 debug: 4.4.0(supports-color@8.1.1) - semver: 7.6.3 + semver: 7.7.1 transitivePeerDependencies: - supports-color @@ -12461,7 +11942,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@oclif/core@2.16.0(@swc/core@1.9.3)(@types/node@20.17.10)(typescript@5.7.3)': + '@oclif/core@2.16.0(@swc/core@1.9.3)(@types/node@22.13.4)(typescript@5.7.3)': dependencies: '@types/cli-progress': 3.11.6 ansi-escapes: 4.3.2 @@ -12486,7 +11967,7 @@ snapshots: strip-ansi: 6.0.1 supports-color: 8.1.1 supports-hyperlinks: 2.3.0 - ts-node: 10.9.2(@swc/core@1.9.3)(@types/node@20.17.10)(typescript@5.7.3) + ts-node: 10.9.2(@swc/core@1.9.3)(@types/node@22.13.4)(typescript@5.7.3) tslib: 2.8.1 widest-line: 3.1.0 wordwrap: 1.0.0 @@ -12528,23 +12009,23 @@ snapshots: chalk: 4.1.2 tslib: 2.8.1 - '@oclif/plugin-help@5.2.20(@swc/core@1.9.3)(@types/node@20.17.10)(typescript@5.7.3)': + '@oclif/plugin-help@5.2.20(@swc/core@1.9.3)(@types/node@22.13.4)(typescript@5.7.3)': dependencies: - '@oclif/core': 2.16.0(@swc/core@1.9.3)(@types/node@20.17.10)(typescript@5.7.3) + '@oclif/core': 2.16.0(@swc/core@1.9.3)(@types/node@22.13.4)(typescript@5.7.3) transitivePeerDependencies: - '@swc/core' - '@swc/wasm' - '@types/node' - typescript - '@oclif/plugin-warn-if-update-available@2.1.1(@swc/core@1.9.3)(@types/node@20.17.10)(typescript@5.7.3)': + '@oclif/plugin-warn-if-update-available@2.1.1(@swc/core@1.9.3)(@types/node@22.13.4)(typescript@5.7.3)': dependencies: - '@oclif/core': 2.16.0(@swc/core@1.9.3)(@types/node@20.17.10)(typescript@5.7.3) + '@oclif/core': 2.16.0(@swc/core@1.9.3)(@types/node@22.13.4)(typescript@5.7.3) chalk: 4.1.2 debug: 4.4.0(supports-color@8.1.1) http-call: 5.3.0 lodash.template: 4.5.0 - semver: 7.6.3 + semver: 7.7.1 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -12640,9 +12121,9 @@ snapshots: dependencies: '@pnpm/error': 6.0.2 - '@pnpm/catalogs.config@1000.0.1': + '@pnpm/catalogs.config@1000.0.2': dependencies: - '@pnpm/error': 1000.0.1 + '@pnpm/error': 1000.0.2 '@pnpm/catalogs.protocol-parser@0.1.0': {} @@ -12653,23 +12134,18 @@ snapshots: '@pnpm/catalogs.protocol-parser': 0.1.0 '@pnpm/error': 6.0.3 - '@pnpm/catalogs.resolver@1000.0.1': + '@pnpm/catalogs.resolver@1000.0.2': dependencies: '@pnpm/catalogs.protocol-parser': 1000.0.0 - '@pnpm/error': 1000.0.1 + '@pnpm/error': 1000.0.2 '@pnpm/catalogs.types@0.1.0': {} '@pnpm/catalogs.types@1000.0.0': {} - '@pnpm/cli-meta@1000.0.0': + '@pnpm/cli-meta@1000.0.2': dependencies: - '@pnpm/types': 1000.0.0 - load-json-file: 6.2.0 - - '@pnpm/cli-meta@1000.0.1': - dependencies: - '@pnpm/types': 1000.1.0 + '@pnpm/types': 1000.1.1 load-json-file: 6.2.0 '@pnpm/cli-meta@6.2.2': @@ -12677,45 +12153,31 @@ snapshots: '@pnpm/types': 12.2.0 load-json-file: 6.2.0 - '@pnpm/cli-utils@1000.0.3(@pnpm/logger@1000.0.0)': - dependencies: - '@pnpm/cli-meta': 1000.0.0 - '@pnpm/config': 1002.1.0(@pnpm/logger@1000.0.0) - '@pnpm/default-reporter': 1001.1.1(@pnpm/logger@1000.0.0) - '@pnpm/error': 1000.0.1 - '@pnpm/logger': 1000.0.0 - '@pnpm/manifest-utils': 1000.0.2(@pnpm/logger@1000.0.0) - '@pnpm/package-is-installable': 1000.0.2(@pnpm/logger@1000.0.0) - '@pnpm/read-project-manifest': 1000.0.1 - '@pnpm/types': 1000.0.0 - chalk: 4.1.2 - load-json-file: 6.2.0 - - '@pnpm/cli-utils@1000.0.5(@pnpm/logger@1000.0.0)': + '@pnpm/cli-utils@1000.0.10(@pnpm/logger@1000.0.0)': dependencies: - '@pnpm/cli-meta': 1000.0.1 - '@pnpm/config': 1002.1.2(@pnpm/logger@1000.0.0) - '@pnpm/default-reporter': 1001.1.3(@pnpm/logger@1000.0.0) - '@pnpm/error': 1000.0.1 + '@pnpm/cli-meta': 1000.0.2 + '@pnpm/config': 1002.3.1(@pnpm/logger@1000.0.0) + '@pnpm/default-reporter': 1001.3.1(@pnpm/logger@1000.0.0) + '@pnpm/error': 1000.0.2 '@pnpm/logger': 1000.0.0 - '@pnpm/manifest-utils': 1000.0.3(@pnpm/logger@1000.0.0) - '@pnpm/package-is-installable': 1000.0.3(@pnpm/logger@1000.0.0) - '@pnpm/read-project-manifest': 1000.0.3 - '@pnpm/types': 1000.1.0 + '@pnpm/manifest-utils': 1000.0.4(@pnpm/logger@1000.0.0) + '@pnpm/package-is-installable': 1000.0.4(@pnpm/logger@1000.0.0) + '@pnpm/read-project-manifest': 1000.0.5 + '@pnpm/types': 1000.1.1 chalk: 4.1.2 load-json-file: 6.2.0 - '@pnpm/cli-utils@1000.0.5(@pnpm/logger@5.2.0)': + '@pnpm/cli-utils@1000.0.10(@pnpm/logger@5.2.0)': dependencies: - '@pnpm/cli-meta': 1000.0.1 - '@pnpm/config': 1002.1.2(@pnpm/logger@5.2.0) - '@pnpm/default-reporter': 1001.1.3(@pnpm/logger@5.2.0) - '@pnpm/error': 1000.0.1 + '@pnpm/cli-meta': 1000.0.2 + '@pnpm/config': 1002.3.1(@pnpm/logger@5.2.0) + '@pnpm/default-reporter': 1001.3.1(@pnpm/logger@5.2.0) + '@pnpm/error': 1000.0.2 '@pnpm/logger': 5.2.0 - '@pnpm/manifest-utils': 1000.0.3(@pnpm/logger@5.2.0) - '@pnpm/package-is-installable': 1000.0.3(@pnpm/logger@5.2.0) - '@pnpm/read-project-manifest': 1000.0.3 - '@pnpm/types': 1000.1.0 + '@pnpm/manifest-utils': 1000.0.4(@pnpm/logger@5.2.0) + '@pnpm/package-is-installable': 1000.0.4(@pnpm/logger@5.2.0) + '@pnpm/read-project-manifest': 1000.0.5 + '@pnpm/types': 1000.1.1 chalk: 4.1.2 load-json-file: 6.2.0 @@ -12737,50 +12199,20 @@ snapshots: '@pnpm/config.env-replace@3.0.0': {} - '@pnpm/config@1002.1.0(@pnpm/logger@1000.0.0)': - dependencies: - '@pnpm/catalogs.config': 1000.0.1 - '@pnpm/catalogs.types': 1000.0.0 - '@pnpm/config.env-replace': 3.0.0 - '@pnpm/constants': 1001.0.0 - '@pnpm/error': 1000.0.1 - '@pnpm/git-utils': 1000.0.0 - '@pnpm/matcher': 1000.0.0 - '@pnpm/npm-conf': 2.3.1 - '@pnpm/pnpmfile': 1001.0.1(@pnpm/logger@1000.0.0) - '@pnpm/read-project-manifest': 1000.0.1 - '@pnpm/types': 1000.0.0 - '@pnpm/workspace.read-manifest': 1000.0.1 - better-path-resolve: 1.0.0 - camelcase: 6.3.0 - camelcase-keys: 6.2.2 - can-write-to-dir: 1.1.1 - is-subdir: 1.2.0 - is-windows: 1.0.2 - normalize-registry-url: 2.0.0 - path-absolute: 1.0.1 - path-name: 1.0.0 - ramda: '@pnpm/ramda@0.28.1' - read-ini-file: 4.0.0 - realpath-missing: 1.1.0 - which: '@pnpm/which@3.0.1' - transitivePeerDependencies: - - '@pnpm/logger' - - '@pnpm/config@1002.1.2(@pnpm/logger@1000.0.0)': + '@pnpm/config@1002.3.1(@pnpm/logger@1000.0.0)': dependencies: - '@pnpm/catalogs.config': 1000.0.1 + '@pnpm/catalogs.config': 1000.0.2 '@pnpm/catalogs.types': 1000.0.0 '@pnpm/config.env-replace': 3.0.0 - '@pnpm/constants': 1001.0.0 - '@pnpm/error': 1000.0.1 + '@pnpm/constants': 1001.1.0 + '@pnpm/error': 1000.0.2 '@pnpm/git-utils': 1000.0.0 '@pnpm/matcher': 1000.0.0 '@pnpm/npm-conf': 3.0.0 - '@pnpm/pnpmfile': 1001.0.3(@pnpm/logger@1000.0.0) - '@pnpm/read-project-manifest': 1000.0.3 - '@pnpm/types': 1000.1.0 - '@pnpm/workspace.read-manifest': 1000.0.1 + '@pnpm/pnpmfile': 1001.0.4(@pnpm/logger@1000.0.0) + '@pnpm/read-project-manifest': 1000.0.5 + '@pnpm/types': 1000.1.1 + '@pnpm/workspace.read-manifest': 1000.0.2 better-path-resolve: 1.0.0 camelcase: 6.3.0 camelcase-keys: 6.2.2 @@ -12797,20 +12229,20 @@ snapshots: transitivePeerDependencies: - '@pnpm/logger' - '@pnpm/config@1002.1.2(@pnpm/logger@5.2.0)': + '@pnpm/config@1002.3.1(@pnpm/logger@5.2.0)': dependencies: - '@pnpm/catalogs.config': 1000.0.1 + '@pnpm/catalogs.config': 1000.0.2 '@pnpm/catalogs.types': 1000.0.0 '@pnpm/config.env-replace': 3.0.0 - '@pnpm/constants': 1001.0.0 - '@pnpm/error': 1000.0.1 + '@pnpm/constants': 1001.1.0 + '@pnpm/error': 1000.0.2 '@pnpm/git-utils': 1000.0.0 '@pnpm/matcher': 1000.0.0 '@pnpm/npm-conf': 3.0.0 - '@pnpm/pnpmfile': 1001.0.3(@pnpm/logger@5.2.0) - '@pnpm/read-project-manifest': 1000.0.3 - '@pnpm/types': 1000.1.0 - '@pnpm/workspace.read-manifest': 1000.0.1 + '@pnpm/pnpmfile': 1001.0.4(@pnpm/logger@5.2.0) + '@pnpm/read-project-manifest': 1000.0.5 + '@pnpm/types': 1000.1.1 + '@pnpm/workspace.read-manifest': 1000.0.2 better-path-resolve: 1.0.0 camelcase: 6.3.0 camelcase-keys: 6.2.2 @@ -12859,7 +12291,7 @@ snapshots: '@pnpm/constants@10.0.0': {} - '@pnpm/constants@1001.0.0': {} + '@pnpm/constants@1001.1.0': {} '@pnpm/constants@9.0.0': {} @@ -12868,20 +12300,15 @@ snapshots: '@pnpm/logger': 5.2.0 '@pnpm/types': 12.2.0 - '@pnpm/core-loggers@1000.1.0(@pnpm/logger@1000.0.0)': + '@pnpm/core-loggers@1000.1.2(@pnpm/logger@1000.0.0)': dependencies: '@pnpm/logger': 1000.0.0 - '@pnpm/types': 1000.0.0 + '@pnpm/types': 1000.1.1 - '@pnpm/core-loggers@1000.1.1(@pnpm/logger@1000.0.0)': - dependencies: - '@pnpm/logger': 1000.0.0 - '@pnpm/types': 1000.1.0 - - '@pnpm/core-loggers@1000.1.1(@pnpm/logger@5.2.0)': + '@pnpm/core-loggers@1000.1.2(@pnpm/logger@5.2.0)': dependencies: '@pnpm/logger': 5.2.0 - '@pnpm/types': 1000.1.0 + '@pnpm/types': 1000.1.1 '@pnpm/crypto.base32-hash@3.0.1': dependencies: @@ -12896,7 +12323,7 @@ snapshots: '@pnpm/crypto.polyfill@1000.0.0': {} - '@pnpm/dedupe.issues-renderer@1000.0.0': + '@pnpm/dedupe.issues-renderer@1000.0.1': dependencies: '@pnpm/dedupe.types': 1000.0.0 archy: 1.0.0 @@ -12912,41 +12339,17 @@ snapshots: '@pnpm/dedupe.types@2.0.0': {} - '@pnpm/default-reporter@1001.1.1(@pnpm/logger@1000.0.0)': - dependencies: - '@pnpm/cli-meta': 1000.0.0 - '@pnpm/config': 1002.1.0(@pnpm/logger@1000.0.0) - '@pnpm/core-loggers': 1000.1.0(@pnpm/logger@1000.0.0) - '@pnpm/dedupe.issues-renderer': 1000.0.0 - '@pnpm/dedupe.types': 1000.0.0 - '@pnpm/error': 1000.0.1 - '@pnpm/logger': 1000.0.0 - '@pnpm/render-peer-issues': 1000.0.1 - '@pnpm/types': 1000.0.0 - ansi-diff: 1.2.0 - boxen: 5.1.2 - chalk: 4.1.2 - cli-truncate: 2.1.0 - normalize-path: 3.0.0 - pretty-bytes: 5.6.0 - pretty-ms: 7.0.1 - ramda: '@pnpm/ramda@0.28.1' - rxjs: 7.8.1 - semver: 7.6.3 - stacktracey: 2.1.8 - string-length: 4.0.2 - - '@pnpm/default-reporter@1001.1.3(@pnpm/logger@1000.0.0)': + '@pnpm/default-reporter@1001.3.1(@pnpm/logger@1000.0.0)': dependencies: - '@pnpm/cli-meta': 1000.0.1 - '@pnpm/config': 1002.1.2(@pnpm/logger@1000.0.0) - '@pnpm/core-loggers': 1000.1.1(@pnpm/logger@1000.0.0) - '@pnpm/dedupe.issues-renderer': 1000.0.0 + '@pnpm/cli-meta': 1000.0.2 + '@pnpm/config': 1002.3.1(@pnpm/logger@1000.0.0) + '@pnpm/core-loggers': 1000.1.2(@pnpm/logger@1000.0.0) + '@pnpm/dedupe.issues-renderer': 1000.0.1 '@pnpm/dedupe.types': 1000.0.0 - '@pnpm/error': 1000.0.1 + '@pnpm/error': 1000.0.2 '@pnpm/logger': 1000.0.0 - '@pnpm/render-peer-issues': 1000.0.2 - '@pnpm/types': 1000.1.0 + '@pnpm/render-peer-issues': 1000.0.4 + '@pnpm/types': 1000.1.1 ansi-diff: 1.2.0 boxen: 5.1.2 chalk: 4.1.2 @@ -12956,21 +12359,21 @@ snapshots: pretty-ms: 7.0.1 ramda: '@pnpm/ramda@0.28.1' rxjs: 7.8.1 - semver: 7.6.3 + semver: 7.7.1 stacktracey: 2.1.8 string-length: 4.0.2 - '@pnpm/default-reporter@1001.1.3(@pnpm/logger@5.2.0)': + '@pnpm/default-reporter@1001.3.1(@pnpm/logger@5.2.0)': dependencies: - '@pnpm/cli-meta': 1000.0.1 - '@pnpm/config': 1002.1.2(@pnpm/logger@5.2.0) - '@pnpm/core-loggers': 1000.1.1(@pnpm/logger@5.2.0) - '@pnpm/dedupe.issues-renderer': 1000.0.0 + '@pnpm/cli-meta': 1000.0.2 + '@pnpm/config': 1002.3.1(@pnpm/logger@5.2.0) + '@pnpm/core-loggers': 1000.1.2(@pnpm/logger@5.2.0) + '@pnpm/dedupe.issues-renderer': 1000.0.1 '@pnpm/dedupe.types': 1000.0.0 - '@pnpm/error': 1000.0.1 + '@pnpm/error': 1000.0.2 '@pnpm/logger': 5.2.0 - '@pnpm/render-peer-issues': 1000.0.2 - '@pnpm/types': 1000.1.0 + '@pnpm/render-peer-issues': 1000.0.4 + '@pnpm/types': 1000.1.1 ansi-diff: 1.2.0 boxen: 5.1.2 chalk: 4.1.2 @@ -12980,7 +12383,7 @@ snapshots: pretty-ms: 7.0.1 ramda: '@pnpm/ramda@0.28.1' rxjs: 7.8.1 - semver: 7.6.3 + semver: 7.7.1 stacktracey: 2.1.8 string-length: 4.0.2 @@ -13004,7 +12407,7 @@ snapshots: pretty-ms: 7.0.1 ramda: '@pnpm/ramda@0.28.1' rxjs: 7.8.1 - semver: 7.6.3 + semver: 7.7.1 stacktracey: 2.1.8 string-length: 4.0.2 @@ -13014,21 +12417,15 @@ snapshots: execa: safe-execa@0.1.2 mem: 8.1.1 - '@pnpm/env.system-node-version@1000.0.0': - dependencies: - '@pnpm/cli-meta': 1000.0.0 - execa: safe-execa@0.1.2 - mem: 8.1.1 - - '@pnpm/env.system-node-version@1000.0.1': + '@pnpm/env.system-node-version@1000.0.2': dependencies: - '@pnpm/cli-meta': 1000.0.1 + '@pnpm/cli-meta': 1000.0.2 execa: safe-execa@0.1.2 mem: 8.1.1 - '@pnpm/error@1000.0.1': + '@pnpm/error@1000.0.2': dependencies: - '@pnpm/constants': 1001.0.0 + '@pnpm/constants': 1001.1.0 '@pnpm/error@6.0.2': dependencies: @@ -13038,16 +12435,10 @@ snapshots: dependencies: '@pnpm/constants': 10.0.0 - '@pnpm/fetcher-base@1000.0.1': + '@pnpm/fetcher-base@1000.0.3': dependencies: - '@pnpm/resolver-base': 1000.1.0 - '@pnpm/types': 1000.0.0 - '@types/ssri': 7.1.5 - - '@pnpm/fetcher-base@1000.0.2': - dependencies: - '@pnpm/resolver-base': 1000.1.1 - '@pnpm/types': 1000.1.0 + '@pnpm/resolver-base': 1000.1.2 + '@pnpm/types': 1000.1.1 '@types/ssri': 7.1.5 '@pnpm/fetcher-base@16.0.7': @@ -13056,9 +12447,9 @@ snapshots: '@pnpm/types': 12.2.0 '@types/ssri': 7.1.5 - '@pnpm/find-workspace-dir@1000.0.1': + '@pnpm/find-workspace-dir@1000.0.2': dependencies: - '@pnpm/error': 1000.0.1 + '@pnpm/error': 1000.0.2 find-up: 5.0.0 '@pnpm/find-workspace-dir@7.0.3': @@ -13066,20 +12457,12 @@ snapshots: '@pnpm/error': 6.0.3 find-up: 5.0.0 - '@pnpm/fs.find-packages@1000.0.1': - dependencies: - '@pnpm/read-project-manifest': 1000.0.1 - '@pnpm/types': 1000.0.0 - '@pnpm/util.lex-comparator': 3.0.0 - fast-glob: 3.3.2 - p-filter: 2.1.0 - - '@pnpm/fs.find-packages@1000.0.3': + '@pnpm/fs.find-packages@1000.0.5': dependencies: - '@pnpm/read-project-manifest': 1000.0.3 - '@pnpm/types': 1000.1.0 + '@pnpm/read-project-manifest': 1000.0.5 + '@pnpm/types': 1000.1.1 '@pnpm/util.lex-comparator': 3.0.0 - fast-glob: 3.3.2 + fast-glob: 3.3.3 p-filter: 2.1.0 '@pnpm/fs.find-packages@4.0.5': @@ -13087,7 +12470,7 @@ snapshots: '@pnpm/read-project-manifest': 6.0.9 '@pnpm/types': 12.2.0 '@pnpm/util.lex-comparator': 3.0.0 - fast-glob: 3.3.2 + fast-glob: 3.3.3 p-filter: 2.1.0 '@pnpm/git-utils@1000.0.0': @@ -13106,15 +12489,10 @@ snapshots: dependencies: graceful-fs: 4.2.11 - '@pnpm/hooks.types@1001.0.0': + '@pnpm/hooks.types@1001.0.2': dependencies: - '@pnpm/lockfile.types': 1001.0.0 - '@pnpm/types': 1000.0.0 - - '@pnpm/hooks.types@1001.0.1': - dependencies: - '@pnpm/lockfile.types': 1001.0.1 - '@pnpm/types': 1000.1.0 + '@pnpm/lockfile.types': 1001.0.2 + '@pnpm/types': 1000.1.1 '@pnpm/hooks.types@2.0.9': dependencies: @@ -13126,15 +12504,10 @@ snapshots: '@pnpm/patching.types': 1.0.0 '@pnpm/types': 12.2.0 - '@pnpm/lockfile.types@1001.0.0': + '@pnpm/lockfile.types@1001.0.2': dependencies: '@pnpm/patching.types': 1000.0.0 - '@pnpm/types': 1000.0.0 - - '@pnpm/lockfile.types@1001.0.1': - dependencies: - '@pnpm/patching.types': 1000.0.0 - '@pnpm/types': 1000.1.0 + '@pnpm/types': 1000.1.1 '@pnpm/logger@1000.0.0': dependencies: @@ -13146,27 +12519,19 @@ snapshots: bole: 5.0.17 ndjson: 2.0.0 - '@pnpm/manifest-utils@1000.0.2(@pnpm/logger@1000.0.0)': - dependencies: - '@pnpm/core-loggers': 1000.1.0(@pnpm/logger@1000.0.0) - '@pnpm/error': 1000.0.1 - '@pnpm/types': 1000.0.0 - transitivePeerDependencies: - - '@pnpm/logger' - - '@pnpm/manifest-utils@1000.0.3(@pnpm/logger@1000.0.0)': + '@pnpm/manifest-utils@1000.0.4(@pnpm/logger@1000.0.0)': dependencies: - '@pnpm/core-loggers': 1000.1.1(@pnpm/logger@1000.0.0) - '@pnpm/error': 1000.0.1 - '@pnpm/types': 1000.1.0 + '@pnpm/core-loggers': 1000.1.2(@pnpm/logger@1000.0.0) + '@pnpm/error': 1000.0.2 + '@pnpm/types': 1000.1.1 transitivePeerDependencies: - '@pnpm/logger' - '@pnpm/manifest-utils@1000.0.3(@pnpm/logger@5.2.0)': + '@pnpm/manifest-utils@1000.0.4(@pnpm/logger@5.2.0)': dependencies: - '@pnpm/core-loggers': 1000.1.1(@pnpm/logger@5.2.0) - '@pnpm/error': 1000.0.1 - '@pnpm/types': 1000.1.0 + '@pnpm/core-loggers': 1000.1.2(@pnpm/logger@5.2.0) + '@pnpm/error': 1000.0.2 + '@pnpm/types': 1000.1.1 transitivePeerDependencies: - '@pnpm/logger' @@ -13215,44 +12580,31 @@ snapshots: '@pnpm/network.ca-file': 1.0.2 config-chain: 1.1.13 - '@pnpm/package-is-installable@1000.0.2(@pnpm/logger@1000.0.0)': - dependencies: - '@pnpm/cli-meta': 1000.0.0 - '@pnpm/core-loggers': 1000.1.0(@pnpm/logger@1000.0.0) - '@pnpm/env.system-node-version': 1000.0.0 - '@pnpm/error': 1000.0.1 - '@pnpm/logger': 1000.0.0 - '@pnpm/types': 1000.0.0 - detect-libc: 2.0.3 - execa: safe-execa@0.1.2 - mem: 8.1.1 - semver: 7.6.3 - - '@pnpm/package-is-installable@1000.0.3(@pnpm/logger@1000.0.0)': + '@pnpm/package-is-installable@1000.0.4(@pnpm/logger@1000.0.0)': dependencies: - '@pnpm/cli-meta': 1000.0.1 - '@pnpm/core-loggers': 1000.1.1(@pnpm/logger@1000.0.0) - '@pnpm/env.system-node-version': 1000.0.1 - '@pnpm/error': 1000.0.1 + '@pnpm/cli-meta': 1000.0.2 + '@pnpm/core-loggers': 1000.1.2(@pnpm/logger@1000.0.0) + '@pnpm/env.system-node-version': 1000.0.2 + '@pnpm/error': 1000.0.2 '@pnpm/logger': 1000.0.0 - '@pnpm/types': 1000.1.0 + '@pnpm/types': 1000.1.1 detect-libc: 2.0.3 execa: safe-execa@0.1.2 mem: 8.1.1 - semver: 7.6.3 + semver: 7.7.1 - '@pnpm/package-is-installable@1000.0.3(@pnpm/logger@5.2.0)': + '@pnpm/package-is-installable@1000.0.4(@pnpm/logger@5.2.0)': dependencies: - '@pnpm/cli-meta': 1000.0.1 - '@pnpm/core-loggers': 1000.1.1(@pnpm/logger@5.2.0) - '@pnpm/env.system-node-version': 1000.0.1 - '@pnpm/error': 1000.0.1 + '@pnpm/cli-meta': 1000.0.2 + '@pnpm/core-loggers': 1000.1.2(@pnpm/logger@5.2.0) + '@pnpm/env.system-node-version': 1000.0.2 + '@pnpm/error': 1000.0.2 '@pnpm/logger': 5.2.0 - '@pnpm/types': 1000.1.0 + '@pnpm/types': 1000.1.1 detect-libc: 2.0.3 execa: safe-execa@0.1.2 mem: 8.1.1 - semver: 7.6.3 + semver: 7.7.1 '@pnpm/package-is-installable@9.0.12(@pnpm/logger@5.2.0)': dependencies: @@ -13265,13 +12617,13 @@ snapshots: detect-libc: 2.0.3 execa: safe-execa@0.1.2 mem: 8.1.1 - semver: 7.6.3 + semver: 7.7.1 - '@pnpm/parse-overrides@1000.0.1': + '@pnpm/parse-overrides@1000.0.2': dependencies: - '@pnpm/catalogs.resolver': 1000.0.1 + '@pnpm/catalogs.resolver': 1000.0.2 '@pnpm/catalogs.types': 1000.0.0 - '@pnpm/error': 1000.0.1 + '@pnpm/error': 1000.0.2 '@pnpm/parse-wanted-dependency': 1000.0.0 '@pnpm/parse-overrides@5.1.1': @@ -13293,42 +12645,29 @@ snapshots: '@pnpm/patching.types@1000.0.0': {} - '@pnpm/pnpmfile@1001.0.1(@pnpm/logger@1000.0.0)': + '@pnpm/pnpmfile@1001.0.4(@pnpm/logger@1000.0.0)': dependencies: - '@pnpm/core-loggers': 1000.1.0(@pnpm/logger@1000.0.0) + '@pnpm/core-loggers': 1000.1.2(@pnpm/logger@1000.0.0) '@pnpm/crypto.hash': 1000.0.0 - '@pnpm/error': 1000.0.1 - '@pnpm/hooks.types': 1001.0.0 - '@pnpm/lockfile.types': 1001.0.0 + '@pnpm/error': 1000.0.2 + '@pnpm/hooks.types': 1001.0.2 + '@pnpm/lockfile.types': 1001.0.2 '@pnpm/logger': 1000.0.0 - '@pnpm/store-controller-types': 1000.1.0 - '@pnpm/types': 1000.0.0 + '@pnpm/store-controller-types': 1001.0.1 + '@pnpm/types': 1000.1.1 chalk: 4.1.2 path-absolute: 1.0.1 - '@pnpm/pnpmfile@1001.0.3(@pnpm/logger@1000.0.0)': + '@pnpm/pnpmfile@1001.0.4(@pnpm/logger@5.2.0)': dependencies: - '@pnpm/core-loggers': 1000.1.1(@pnpm/logger@1000.0.0) + '@pnpm/core-loggers': 1000.1.2(@pnpm/logger@5.2.0) '@pnpm/crypto.hash': 1000.0.0 - '@pnpm/error': 1000.0.1 - '@pnpm/hooks.types': 1001.0.1 - '@pnpm/lockfile.types': 1001.0.1 - '@pnpm/logger': 1000.0.0 - '@pnpm/store-controller-types': 1001.0.0 - '@pnpm/types': 1000.1.0 - chalk: 4.1.2 - path-absolute: 1.0.1 - - '@pnpm/pnpmfile@1001.0.3(@pnpm/logger@5.2.0)': - dependencies: - '@pnpm/core-loggers': 1000.1.1(@pnpm/logger@5.2.0) - '@pnpm/crypto.hash': 1000.0.0 - '@pnpm/error': 1000.0.1 - '@pnpm/hooks.types': 1001.0.1 - '@pnpm/lockfile.types': 1001.0.1 + '@pnpm/error': 1000.0.2 + '@pnpm/hooks.types': 1001.0.2 + '@pnpm/lockfile.types': 1001.0.2 '@pnpm/logger': 5.2.0 - '@pnpm/store-controller-types': 1001.0.0 - '@pnpm/types': 1000.1.0 + '@pnpm/store-controller-types': 1001.0.1 + '@pnpm/types': 1000.1.1 chalk: 4.1.2 path-absolute: 1.0.1 @@ -13340,49 +12679,31 @@ snapshots: '@pnpm/hooks.types': 2.0.9 '@pnpm/lockfile.types': 1.0.3 '@pnpm/logger': 5.2.0 - '@pnpm/store-controller-types': 18.1.6 - '@pnpm/types': 12.2.0 - chalk: 4.1.2 - path-absolute: 1.0.1 - - '@pnpm/ramda@0.28.1': {} - - '@pnpm/read-package-json@1000.0.2': - dependencies: - '@pnpm/error': 1000.0.1 - '@pnpm/types': 1000.1.0 - load-json-file: 6.2.0 - normalize-package-data: 5.0.0 - - '@pnpm/read-project-manifest@1000.0.1': - dependencies: - '@gwhitney/detect-indent': 7.0.1 - '@pnpm/error': 1000.0.1 - '@pnpm/graceful-fs': 1000.0.0 - '@pnpm/text.comments-parser': 1000.0.0 - '@pnpm/types': 1000.0.0 - '@pnpm/write-project-manifest': 1000.0.0 - fast-deep-equal: 3.1.3 - is-windows: 1.0.2 - json5: 2.2.3 - lodash.clonedeep: 4.5.0 - parse-json: 5.2.0 - read-yaml-file: 2.1.0 - sort-keys: 4.2.0 - strip-bom: 4.0.0 + '@pnpm/store-controller-types': 18.1.6 + '@pnpm/types': 12.2.0 + chalk: 4.1.2 + path-absolute: 1.0.1 + + '@pnpm/ramda@0.28.1': {} + + '@pnpm/read-package-json@1000.0.3': + dependencies: + '@pnpm/error': 1000.0.2 + '@pnpm/types': 1000.1.1 + load-json-file: 6.2.0 + normalize-package-data: 5.0.0 - '@pnpm/read-project-manifest@1000.0.3': + '@pnpm/read-project-manifest@1000.0.5': dependencies: '@gwhitney/detect-indent': 7.0.1 - '@pnpm/error': 1000.0.1 + '@pnpm/error': 1000.0.2 '@pnpm/graceful-fs': 1000.0.0 '@pnpm/text.comments-parser': 1000.0.0 - '@pnpm/types': 1000.1.0 - '@pnpm/write-project-manifest': 1000.0.1 + '@pnpm/types': 1000.1.1 + '@pnpm/write-project-manifest': 1000.0.2 fast-deep-equal: 3.1.3 is-windows: 1.0.2 json5: 2.2.3 - lodash.clonedeep: 4.5.0 parse-json: 5.2.0 read-yaml-file: 2.1.0 sort-keys: 4.2.0 @@ -13405,27 +12726,16 @@ snapshots: sort-keys: 4.2.0 strip-bom: 4.0.0 - '@pnpm/render-peer-issues@1000.0.1': - dependencies: - '@pnpm/error': 1000.0.1 - '@pnpm/matcher': 1000.0.0 - '@pnpm/parse-overrides': 1000.0.1 - '@pnpm/types': 1000.0.0 - archy: 1.0.0 - chalk: 4.1.2 - cli-columns: 4.0.0 - semver: 7.6.3 - - '@pnpm/render-peer-issues@1000.0.2': + '@pnpm/render-peer-issues@1000.0.4': dependencies: - '@pnpm/error': 1000.0.1 + '@pnpm/error': 1000.0.2 '@pnpm/matcher': 1000.0.0 - '@pnpm/parse-overrides': 1000.0.1 - '@pnpm/types': 1000.1.0 + '@pnpm/parse-overrides': 1000.0.2 + '@pnpm/types': 1000.1.1 archy: 1.0.0 chalk: 4.1.2 cli-columns: 4.0.0 - semver: 7.6.3 + semver: 7.7.1 '@pnpm/render-peer-issues@5.0.10': dependencies: @@ -13436,31 +12746,21 @@ snapshots: archy: 1.0.0 chalk: 4.1.2 cli-columns: 4.0.0 - semver: 7.6.3 + semver: 7.7.1 - '@pnpm/resolver-base@1000.1.0': + '@pnpm/resolver-base@1000.1.2': dependencies: - '@pnpm/types': 1000.0.0 - - '@pnpm/resolver-base@1000.1.1': - dependencies: - '@pnpm/types': 1000.1.0 + '@pnpm/types': 1000.1.1 '@pnpm/resolver-base@13.0.4': dependencies: '@pnpm/types': 12.2.0 - '@pnpm/store-controller-types@1000.1.0': - dependencies: - '@pnpm/fetcher-base': 1000.0.1 - '@pnpm/resolver-base': 1000.1.0 - '@pnpm/types': 1000.0.0 - - '@pnpm/store-controller-types@1001.0.0': + '@pnpm/store-controller-types@1001.0.1': dependencies: - '@pnpm/fetcher-base': 1000.0.2 - '@pnpm/resolver-base': 1000.1.1 - '@pnpm/types': 1000.1.0 + '@pnpm/fetcher-base': 1000.0.3 + '@pnpm/resolver-base': 1000.1.2 + '@pnpm/types': 1000.1.1 '@pnpm/store-controller-types@18.1.6': dependencies: @@ -13476,9 +12776,7 @@ snapshots: dependencies: strip-comments-strings: 1.2.0 - '@pnpm/types@1000.0.0': {} - - '@pnpm/types@1000.1.0': {} + '@pnpm/types@1000.1.1': {} '@pnpm/types@11.1.0': {} @@ -13490,28 +12788,22 @@ snapshots: dependencies: isexe: 2.0.0 - '@pnpm/workspace.find-packages@1000.0.3(@pnpm/logger@1000.0.0)': - dependencies: - '@pnpm/cli-utils': 1000.0.3(@pnpm/logger@1000.0.0) - '@pnpm/fs.find-packages': 1000.0.1 - '@pnpm/logger': 1000.0.0 - '@pnpm/types': 1000.0.0 - '@pnpm/util.lex-comparator': 3.0.0 - - '@pnpm/workspace.find-packages@1000.0.5(@pnpm/logger@1000.0.0)': + '@pnpm/workspace.find-packages@1000.0.10(@pnpm/logger@1000.0.0)': dependencies: - '@pnpm/cli-utils': 1000.0.5(@pnpm/logger@1000.0.0) - '@pnpm/fs.find-packages': 1000.0.3 + '@pnpm/cli-utils': 1000.0.10(@pnpm/logger@1000.0.0) + '@pnpm/constants': 1001.1.0 + '@pnpm/fs.find-packages': 1000.0.5 '@pnpm/logger': 1000.0.0 - '@pnpm/types': 1000.1.0 + '@pnpm/types': 1000.1.1 '@pnpm/util.lex-comparator': 3.0.0 - '@pnpm/workspace.find-packages@1000.0.5(@pnpm/logger@5.2.0)': + '@pnpm/workspace.find-packages@1000.0.10(@pnpm/logger@5.2.0)': dependencies: - '@pnpm/cli-utils': 1000.0.5(@pnpm/logger@5.2.0) - '@pnpm/fs.find-packages': 1000.0.3 + '@pnpm/cli-utils': 1000.0.10(@pnpm/logger@5.2.0) + '@pnpm/constants': 1001.1.0 + '@pnpm/fs.find-packages': 1000.0.5 '@pnpm/logger': 5.2.0 - '@pnpm/types': 1000.1.0 + '@pnpm/types': 1000.1.1 '@pnpm/util.lex-comparator': 3.0.0 '@pnpm/workspace.find-packages@4.0.14(@pnpm/logger@5.2.0)': @@ -13522,10 +12814,10 @@ snapshots: '@pnpm/types': 12.2.0 '@pnpm/util.lex-comparator': 3.0.0 - '@pnpm/workspace.read-manifest@1000.0.1': + '@pnpm/workspace.read-manifest@1000.0.2': dependencies: - '@pnpm/constants': 1001.0.0 - '@pnpm/error': 1000.0.1 + '@pnpm/constants': 1001.1.0 + '@pnpm/error': 1000.0.2 read-yaml-file: 2.1.0 '@pnpm/workspace.read-manifest@2.2.1': @@ -13540,18 +12832,10 @@ snapshots: '@pnpm/error': 6.0.3 read-yaml-file: 2.1.0 - '@pnpm/write-project-manifest@1000.0.0': - dependencies: - '@pnpm/text.comments-parser': 1000.0.0 - '@pnpm/types': 1000.0.0 - json5: 2.2.3 - write-file-atomic: 5.0.1 - write-yaml-file: 5.0.0 - - '@pnpm/write-project-manifest@1000.0.1': + '@pnpm/write-project-manifest@1000.0.2': dependencies: '@pnpm/text.comments-parser': 1000.0.0 - '@pnpm/types': 1000.1.0 + '@pnpm/types': 1000.1.1 json5: 2.2.3 write-file-atomic: 5.0.1 write-yaml-file: 5.0.0 @@ -13572,259 +12856,145 @@ snapshots: extract-zip: 2.0.1 progress: 2.0.3 proxy-agent: 6.5.0 - semver: 7.6.3 + semver: 7.7.1 tar-fs: 3.0.6 unbzip2-stream: 1.4.3 yargs: 17.7.2 transitivePeerDependencies: - supports-color - '@rollup/plugin-commonjs@25.0.7(rollup@4.31.0-0)': + '@rollup/plugin-commonjs@28.0.2(rollup@4.34.8)': dependencies: - '@rollup/pluginutils': 5.1.4(rollup@4.31.0-0) + '@rollup/pluginutils': 5.1.4(rollup@4.34.8) commondir: 1.0.1 estree-walker: 2.0.2 - glob: 8.1.0 + fdir: 6.4.3(picomatch@4.0.2) is-reference: 1.2.1 magic-string: 0.30.17 + picomatch: 4.0.2 optionalDependencies: - rollup: 4.31.0-0 + rollup: 4.34.8 - '@rollup/plugin-inject@5.0.5(rollup@4.31.0-0)': + '@rollup/plugin-inject@5.0.5(rollup@4.34.8)': dependencies: - '@rollup/pluginutils': 5.1.4(rollup@4.31.0-0) + '@rollup/pluginutils': 5.1.4(rollup@4.34.8) estree-walker: 2.0.2 magic-string: 0.30.17 optionalDependencies: - rollup: 4.31.0-0 + rollup: 4.34.8 - '@rollup/plugin-node-resolve@15.2.3(rollup@4.31.0-0)': + '@rollup/plugin-node-resolve@16.0.0(rollup@4.34.8)': dependencies: - '@rollup/pluginutils': 5.1.4(rollup@4.31.0-0) + '@rollup/pluginutils': 5.1.4(rollup@4.34.8) '@types/resolve': 1.20.2 deepmerge: 4.3.1 - is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.10 optionalDependencies: - rollup: 4.31.0-0 + rollup: 4.34.8 - '@rollup/plugin-replace@5.0.5(rollup@4.31.0-0)': + '@rollup/plugin-replace@6.0.2(rollup@4.34.8)': dependencies: - '@rollup/pluginutils': 5.1.4(rollup@4.31.0-0) + '@rollup/pluginutils': 5.1.4(rollup@4.34.8) magic-string: 0.30.17 optionalDependencies: - rollup: 4.31.0-0 + rollup: 4.34.8 - '@rollup/plugin-sucrase@5.0.2(rollup@4.31.0-0)': + '@rollup/plugin-sucrase@5.0.2(rollup@4.34.8)': dependencies: - '@rollup/pluginutils': 5.1.4(rollup@4.31.0-0) + '@rollup/pluginutils': 5.1.4(rollup@4.34.8) sucrase: 3.35.0 optionalDependencies: - rollup: 4.31.0-0 + rollup: 4.34.8 - '@rollup/plugin-swc@0.4.0(@swc/core@1.9.3)(rollup@4.31.0-0)': + '@rollup/plugin-swc@0.4.0(@swc/core@1.9.3)(rollup@4.34.8)': dependencies: - '@rollup/pluginutils': 5.1.4(rollup@4.31.0-0) + '@rollup/pluginutils': 5.1.4(rollup@4.34.8) '@swc/core': 1.9.3 smob: 1.5.0 optionalDependencies: - rollup: 4.31.0-0 + rollup: 4.34.8 - '@rollup/plugin-terser@0.4.4(rollup@4.31.0-0)': + '@rollup/plugin-terser@0.4.4(rollup@4.34.8)': dependencies: serialize-javascript: 6.0.2 smob: 1.5.0 terser: 5.37.0 optionalDependencies: - rollup: 4.31.0-0 + rollup: 4.34.8 - '@rollup/plugin-typescript@12.1.1(rollup@4.31.0-0)(tslib@2.8.1)(typescript@5.7.3)': + '@rollup/plugin-typescript@12.1.2(rollup@4.34.8)(tslib@2.8.1)(typescript@5.7.3)': dependencies: - '@rollup/pluginutils': 5.1.4(rollup@4.31.0-0) + '@rollup/pluginutils': 5.1.4(rollup@4.34.8) resolve: 1.22.10 typescript: 5.7.3 optionalDependencies: - rollup: 4.31.0-0 + rollup: 4.34.8 tslib: 2.8.1 - '@rollup/pluginutils@5.1.4(rollup@4.31.0-0)': + '@rollup/pluginutils@5.1.4(rollup@4.34.8)': dependencies: '@types/estree': 1.0.6 estree-walker: 2.0.2 picomatch: 4.0.2 optionalDependencies: - rollup: 4.31.0-0 - - '@rollup/rollup-android-arm-eabi@4.29.1': - optional: true - - '@rollup/rollup-android-arm-eabi@4.31.0': - optional: true - - '@rollup/rollup-android-arm-eabi@4.31.0-0': - optional: true - - '@rollup/rollup-android-arm64@4.29.1': - optional: true - - '@rollup/rollup-android-arm64@4.31.0': - optional: true - - '@rollup/rollup-android-arm64@4.31.0-0': - optional: true - - '@rollup/rollup-darwin-arm64@4.29.1': - optional: true - - '@rollup/rollup-darwin-arm64@4.31.0': - optional: true - - '@rollup/rollup-darwin-arm64@4.31.0-0': - optional: true - - '@rollup/rollup-darwin-x64@4.29.1': - optional: true - - '@rollup/rollup-darwin-x64@4.31.0': - optional: true - - '@rollup/rollup-darwin-x64@4.31.0-0': - optional: true - - '@rollup/rollup-freebsd-arm64@4.29.1': - optional: true + rollup: 4.34.8 - '@rollup/rollup-freebsd-arm64@4.31.0': + '@rollup/rollup-android-arm-eabi@4.34.8': optional: true - '@rollup/rollup-freebsd-arm64@4.31.0-0': + '@rollup/rollup-android-arm64@4.34.8': optional: true - '@rollup/rollup-freebsd-x64@4.29.1': + '@rollup/rollup-darwin-arm64@4.34.8': optional: true - '@rollup/rollup-freebsd-x64@4.31.0': + '@rollup/rollup-darwin-x64@4.34.8': optional: true - '@rollup/rollup-freebsd-x64@4.31.0-0': + '@rollup/rollup-freebsd-arm64@4.34.8': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.29.1': + '@rollup/rollup-freebsd-x64@4.34.8': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.31.0': + '@rollup/rollup-linux-arm-gnueabihf@4.34.8': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.31.0-0': + '@rollup/rollup-linux-arm-musleabihf@4.34.8': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.29.1': + '@rollup/rollup-linux-arm64-gnu@4.34.8': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.31.0': + '@rollup/rollup-linux-arm64-musl@4.34.8': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.31.0-0': + '@rollup/rollup-linux-loongarch64-gnu@4.34.8': optional: true - '@rollup/rollup-linux-arm64-gnu@4.29.1': + '@rollup/rollup-linux-powerpc64le-gnu@4.34.8': optional: true - '@rollup/rollup-linux-arm64-gnu@4.31.0': + '@rollup/rollup-linux-riscv64-gnu@4.34.8': optional: true - '@rollup/rollup-linux-arm64-gnu@4.31.0-0': + '@rollup/rollup-linux-s390x-gnu@4.34.8': optional: true - '@rollup/rollup-linux-arm64-musl@4.29.1': + '@rollup/rollup-linux-x64-gnu@4.34.8': optional: true - '@rollup/rollup-linux-arm64-musl@4.31.0': + '@rollup/rollup-linux-x64-musl@4.34.8': optional: true - '@rollup/rollup-linux-arm64-musl@4.31.0-0': + '@rollup/rollup-win32-arm64-msvc@4.34.8': optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.29.1': + '@rollup/rollup-win32-ia32-msvc@4.34.8': optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.31.0': - optional: true - - '@rollup/rollup-linux-loongarch64-gnu@4.31.0-0': - optional: true - - '@rollup/rollup-linux-powerpc64le-gnu@4.29.1': - optional: true - - '@rollup/rollup-linux-powerpc64le-gnu@4.31.0': - optional: true - - '@rollup/rollup-linux-powerpc64le-gnu@4.31.0-0': - optional: true - - '@rollup/rollup-linux-riscv64-gnu@4.29.1': - optional: true - - '@rollup/rollup-linux-riscv64-gnu@4.31.0': - optional: true - - '@rollup/rollup-linux-riscv64-gnu@4.31.0-0': - optional: true - - '@rollup/rollup-linux-s390x-gnu@4.29.1': - optional: true - - '@rollup/rollup-linux-s390x-gnu@4.31.0': - optional: true - - '@rollup/rollup-linux-s390x-gnu@4.31.0-0': - optional: true - - '@rollup/rollup-linux-x64-gnu@4.29.1': - optional: true - - '@rollup/rollup-linux-x64-gnu@4.31.0': - optional: true - - '@rollup/rollup-linux-x64-gnu@4.31.0-0': - optional: true - - '@rollup/rollup-linux-x64-musl@4.29.1': - optional: true - - '@rollup/rollup-linux-x64-musl@4.31.0': - optional: true - - '@rollup/rollup-linux-x64-musl@4.31.0-0': - optional: true - - '@rollup/rollup-win32-arm64-msvc@4.29.1': - optional: true - - '@rollup/rollup-win32-arm64-msvc@4.31.0': - optional: true - - '@rollup/rollup-win32-arm64-msvc@4.31.0-0': - optional: true - - '@rollup/rollup-win32-ia32-msvc@4.29.1': - optional: true - - '@rollup/rollup-win32-ia32-msvc@4.31.0': - optional: true - - '@rollup/rollup-win32-ia32-msvc@4.31.0-0': - optional: true - - '@rollup/rollup-win32-x64-msvc@4.29.1': - optional: true - - '@rollup/rollup-win32-x64-msvc@4.31.0': - optional: true - - '@rollup/rollup-win32-x64-msvc@4.31.0-0': + '@rollup/rollup-win32-x64-msvc@4.34.8': optional: true '@rtsao/scc@1.1.0': {} @@ -13931,7 +13101,7 @@ snapshots: '@tracerbench/trace-event': 8.0.0 '@tracerbench/trace-model': 8.0.0 '@types/d3-hierarchy': 3.1.7 - '@types/node': 20.17.10 + '@types/node': 22.13.4 array-binsearch: 1.0.1 chalk: 4.1.2 chrome-debugging-client: 2.0.0(devtools-protocol@0.0.975963) @@ -14036,28 +13206,28 @@ snapshots: '@types/babel__core@7.20.5': dependencies: '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + '@babel/types': 7.26.9 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.6 '@types/babel__generator@7.6.8': dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.26.9 '@types/babel__template@7.4.4': dependencies: '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + '@babel/types': 7.26.9 '@types/babel__traverse@7.20.6': dependencies: - '@babel/types': 7.26.3 + '@babel/types': 7.26.9 '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 - '@types/node': 20.17.10 + '@types/node': 22.13.4 '@types/chai-as-promised@7.1.8': dependencies: @@ -14067,17 +13237,17 @@ snapshots: '@types/cli-progress@3.11.6': dependencies: - '@types/node': 20.17.10 + '@types/node': 22.13.4 '@types/connect@3.4.38': dependencies: - '@types/node': 20.17.10 + '@types/node': 22.13.4 '@types/cookie@0.4.1': {} '@types/cors@2.8.17': dependencies: - '@types/node': 20.17.10 + '@types/node': 22.13.4 '@types/d3-hierarchy@3.1.7': {} @@ -14101,7 +13271,7 @@ snapshots: '@types/express-serve-static-core@4.19.6': dependencies: - '@types/node': 20.17.10 + '@types/node': 22.13.4 '@types/qs': 6.9.17 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -14116,21 +13286,21 @@ snapshots: '@types/fs-extra@11.0.4': dependencies: '@types/jsonfile': 6.1.4 - '@types/node': 20.17.10 + '@types/node': 22.13.4 '@types/fs-extra@8.1.5': dependencies: - '@types/node': 20.17.10 + '@types/node': 22.13.4 '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.17.10 + '@types/node': 22.13.4 '@types/glob@8.1.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.17.10 + '@types/node': 22.13.4 '@types/http-errors@2.0.4': {} @@ -14142,11 +13312,11 @@ snapshots: '@types/jsonfile@6.1.4': dependencies: - '@types/node': 20.17.10 + '@types/node': 22.13.4 '@types/keyv@3.1.4': dependencies: - '@types/node': 20.17.10 + '@types/node': 22.13.4 '@types/mime@1.3.5': {} @@ -14156,9 +13326,9 @@ snapshots: '@types/minimist@1.2.5': {} - '@types/node@20.17.10': + '@types/node@22.13.4': dependencies: - undici-types: 6.19.8 + undici-types: 6.20.0 '@types/normalize-package-data@2.4.4': {} @@ -14170,8 +13340,6 @@ snapshots: '@types/qunit@2.19.12': {} - '@types/qunit@2.19.9': {} - '@types/ramda@0.30.2': dependencies: types-ramda: 0.30.1 @@ -14182,94 +13350,65 @@ snapshots: '@types/responselike@1.0.3': dependencies: - '@types/node': 20.17.10 + '@types/node': 22.13.4 '@types/rimraf@2.0.5': dependencies: '@types/glob': 8.1.0 - '@types/node': 20.17.10 + '@types/node': 22.13.4 '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 - '@types/node': 20.17.10 + '@types/node': 22.13.4 '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 - '@types/node': 20.17.10 + '@types/node': 22.13.4 '@types/send': 0.17.4 '@types/ssri@7.1.5': dependencies: - '@types/node': 20.17.10 + '@types/node': 22.13.4 '@types/symlink-or-copy@1.2.2': {} - '@types/tar@6.1.10': + '@types/tar@6.1.13': dependencies: - '@types/node': 20.17.10 + '@types/node': 22.13.4 minipass: 4.2.8 '@types/yauzl@2.10.3': dependencies: - '@types/node': 20.17.10 + '@types/node': 22.13.4 optional: true - '@typescript-eslint/eslint-plugin@8.19.0(@typescript-eslint/parser@8.19.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3)': - dependencies: - '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.19.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/scope-manager': 8.19.0 - '@typescript-eslint/type-utils': 8.19.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/utils': 8.19.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/visitor-keys': 8.19.0 - eslint: 9.18.0(jiti@2.4.2) - graphemer: 1.4.0 - ignore: 5.3.2 - natural-compare: 1.4.0 - ts-api-utils: 1.4.0(typescript@5.7.3) - typescript: 5.7.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3)': + '@typescript-eslint/eslint-plugin@8.24.1(@typescript-eslint/parser@8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/scope-manager': 8.20.0 - '@typescript-eslint/type-utils': 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/utils': 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/visitor-keys': 8.20.0 - eslint: 9.18.0(jiti@2.4.2) + '@typescript-eslint/parser': 8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) + '@typescript-eslint/scope-manager': 8.24.1 + '@typescript-eslint/type-utils': 8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) + '@typescript-eslint/utils': 8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) + '@typescript-eslint/visitor-keys': 8.24.1 + eslint: 9.20.1(jiti@2.4.2) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 - ts-api-utils: 2.0.0(typescript@5.7.3) - typescript: 5.7.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/parser@8.19.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3)': - dependencies: - '@typescript-eslint/scope-manager': 8.19.0 - '@typescript-eslint/types': 8.19.0 - '@typescript-eslint/typescript-estree': 8.19.0(typescript@5.7.3) - '@typescript-eslint/visitor-keys': 8.19.0 - debug: 4.4.0(supports-color@8.1.1) - eslint: 9.18.0(jiti@2.4.2) + ts-api-utils: 2.0.1(typescript@5.7.3) typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3)': + '@typescript-eslint/parser@8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)': dependencies: - '@typescript-eslint/scope-manager': 8.20.0 - '@typescript-eslint/types': 8.20.0 - '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.7.3) - '@typescript-eslint/visitor-keys': 8.20.0 + '@typescript-eslint/scope-manager': 8.24.1 + '@typescript-eslint/types': 8.24.1 + '@typescript-eslint/typescript-estree': 8.24.1(typescript@5.7.3) + '@typescript-eslint/visitor-keys': 8.24.1 debug: 4.4.0(supports-color@8.1.1) - eslint: 9.18.0(jiti@2.4.2) + eslint: 9.20.1(jiti@2.4.2) typescript: 5.7.3 transitivePeerDependencies: - supports-color @@ -14279,83 +13418,72 @@ snapshots: '@typescript-eslint/types': 8.19.0 '@typescript-eslint/visitor-keys': 8.19.0 - '@typescript-eslint/scope-manager@8.20.0': + '@typescript-eslint/scope-manager@8.24.1': dependencies: - '@typescript-eslint/types': 8.20.0 - '@typescript-eslint/visitor-keys': 8.20.0 - - '@typescript-eslint/type-utils@8.19.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3)': - dependencies: - '@typescript-eslint/typescript-estree': 8.19.0(typescript@5.7.3) - '@typescript-eslint/utils': 8.19.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) - debug: 4.4.0(supports-color@8.1.1) - eslint: 9.18.0(jiti@2.4.2) - ts-api-utils: 1.4.3(typescript@5.7.3) - typescript: 5.7.3 - transitivePeerDependencies: - - supports-color + '@typescript-eslint/types': 8.24.1 + '@typescript-eslint/visitor-keys': 8.24.1 - '@typescript-eslint/type-utils@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3)': + '@typescript-eslint/type-utils@8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)': dependencies: - '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.7.3) - '@typescript-eslint/utils': 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) + '@typescript-eslint/typescript-estree': 8.24.1(typescript@5.7.3) + '@typescript-eslint/utils': 8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) debug: 4.4.0(supports-color@8.1.1) - eslint: 9.18.0(jiti@2.4.2) - ts-api-utils: 2.0.0(typescript@5.7.3) + eslint: 9.20.1(jiti@2.4.2) + ts-api-utils: 2.0.1(typescript@5.7.3) typescript: 5.7.3 transitivePeerDependencies: - supports-color '@typescript-eslint/types@8.19.0': {} - '@typescript-eslint/types@8.20.0': {} + '@typescript-eslint/types@8.24.1': {} '@typescript-eslint/typescript-estree@8.19.0(typescript@5.7.3)': dependencies: '@typescript-eslint/types': 8.19.0 '@typescript-eslint/visitor-keys': 8.19.0 debug: 4.4.0(supports-color@8.1.1) - fast-glob: 3.3.2 + fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 - semver: 7.6.3 + semver: 7.7.1 ts-api-utils: 1.4.3(typescript@5.7.3) typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.20.0(typescript@5.7.3)': + '@typescript-eslint/typescript-estree@8.24.1(typescript@5.7.3)': dependencies: - '@typescript-eslint/types': 8.20.0 - '@typescript-eslint/visitor-keys': 8.20.0 + '@typescript-eslint/types': 8.24.1 + '@typescript-eslint/visitor-keys': 8.24.1 debug: 4.4.0(supports-color@8.1.1) - fast-glob: 3.3.2 + fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 - semver: 7.6.3 - ts-api-utils: 2.0.0(typescript@5.7.3) + semver: 7.7.1 + ts-api-utils: 2.0.1(typescript@5.7.3) typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.19.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3)': + '@typescript-eslint/utils@8.19.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)': dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0(jiti@2.4.2)) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1(jiti@2.4.2)) '@typescript-eslint/scope-manager': 8.19.0 '@typescript-eslint/types': 8.19.0 '@typescript-eslint/typescript-estree': 8.19.0(typescript@5.7.3) - eslint: 9.18.0(jiti@2.4.2) + eslint: 9.20.1(jiti@2.4.2) typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3)': + '@typescript-eslint/utils@8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3)': dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0(jiti@2.4.2)) - '@typescript-eslint/scope-manager': 8.20.0 - '@typescript-eslint/types': 8.20.0 - '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.7.3) - eslint: 9.18.0(jiti@2.4.2) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1(jiti@2.4.2)) + '@typescript-eslint/scope-manager': 8.24.1 + '@typescript-eslint/types': 8.24.1 + '@typescript-eslint/typescript-estree': 8.24.1(typescript@5.7.3) + eslint: 9.20.1(jiti@2.4.2) typescript: 5.7.3 transitivePeerDependencies: - supports-color @@ -14365,49 +13493,49 @@ snapshots: '@typescript-eslint/types': 8.19.0 eslint-visitor-keys: 4.2.0 - '@typescript-eslint/visitor-keys@8.20.0': + '@typescript-eslint/visitor-keys@8.24.1': dependencies: - '@typescript-eslint/types': 8.20.0 + '@typescript-eslint/types': 8.24.1 eslint-visitor-keys: 4.2.0 - '@vitest/expect@3.0.4': + '@vitest/expect@3.0.6': dependencies: - '@vitest/spy': 3.0.4 - '@vitest/utils': 3.0.4 - chai: 5.1.2 + '@vitest/spy': 3.0.6 + '@vitest/utils': 3.0.6 + chai: 5.2.0 tinyrainbow: 2.0.0 - '@vitest/mocker@3.0.4(vite@6.0.10(@types/node@20.17.10)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))': + '@vitest/mocker@3.0.6(vite@6.1.1(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))': dependencies: - '@vitest/spy': 3.0.4 + '@vitest/spy': 3.0.6 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.0.10(@types/node@20.17.10)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) + vite: 6.1.1(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) - '@vitest/pretty-format@3.0.4': + '@vitest/pretty-format@3.0.6': dependencies: tinyrainbow: 2.0.0 - '@vitest/runner@3.0.4': + '@vitest/runner@3.0.6': dependencies: - '@vitest/utils': 3.0.4 - pathe: 2.0.2 + '@vitest/utils': 3.0.6 + pathe: 2.0.3 - '@vitest/snapshot@3.0.4': + '@vitest/snapshot@3.0.6': dependencies: - '@vitest/pretty-format': 3.0.4 + '@vitest/pretty-format': 3.0.6 magic-string: 0.30.17 - pathe: 2.0.2 + pathe: 2.0.3 - '@vitest/spy@3.0.4': + '@vitest/spy@3.0.6': dependencies: tinyspy: 3.0.2 - '@vitest/utils@3.0.4': + '@vitest/utils@3.0.6': dependencies: - '@vitest/pretty-format': 3.0.4 - loupe: 3.1.2 + '@vitest/pretty-format': 3.0.6 + loupe: 3.1.3 tinyrainbow: 2.0.0 '@xmldom/xmldom@0.8.10': {} @@ -14724,7 +13852,7 @@ snapshots: meow: 9.0.0 package-json: 6.5.0 pkg-up: 3.1.0 - semver: 7.6.3 + semver: 7.7.1 transitivePeerDependencies: - supports-color @@ -14741,7 +13869,7 @@ snapshots: babel-plugin-macros@3.1.0: dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.26.9 cosmiconfig: 7.1.0 resolve: 1.22.10 @@ -14770,6 +13898,14 @@ snapshots: transitivePeerDependencies: - supports-color + babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.26.0): + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) + core-js-compat: 3.40.0 + transitivePeerDependencies: + - supports-color + babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.0): dependencies: '@babel/core': 7.26.0 @@ -14779,7 +13915,7 @@ snapshots: babel-plugin-preval@5.1.0: dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.26.9 '@types/babel__core': 7.20.5 babel-plugin-macros: 3.1.0 require-from-string: 2.0.2 @@ -14926,7 +14062,7 @@ snapshots: chalk: 5.4.1 cli-boxes: 3.0.0 string-width: 7.2.0 - type-fest: 4.32.0 + type-fest: 4.35.0 widest-line: 5.0.0 wrap-ansi: 9.0.0 @@ -15283,11 +14419,9 @@ snapshots: base64-js: 1.5.1 ieee754: 1.2.1 - builtin-modules@3.3.0: {} - builtins@5.1.0: dependencies: - semver: 7.6.3 + semver: 7.7.1 bundle-name@4.1.0: dependencies: @@ -15429,7 +14563,7 @@ snapshots: ansicolors: 0.3.2 redeyed: 2.1.1 - chai@5.1.2: + chai@5.2.0: dependencies: assertion-error: 2.0.1 check-error: 2.1.1 @@ -15456,8 +14590,6 @@ snapshots: ansi-styles: 4.3.0 supports-color: 7.2.0 - chalk@5.2.0: {} - chalk@5.4.1: {} char-regex@1.0.2: {} @@ -15506,7 +14638,7 @@ snapshots: chrome-launcher@0.13.4: dependencies: - '@types/node': 20.17.10 + '@types/node': 22.13.4 escape-string-regexp: 1.0.5 is-wsl: 2.2.0 lighthouse-logger: 1.4.2 @@ -15736,8 +14868,6 @@ snapshots: transitivePeerDependencies: - supports-color - consola@3.3.3: {} - console-control-strings@1.1.0: {} console-ui@3.1.2: @@ -15782,6 +14912,10 @@ snapshots: dependencies: browserslist: 4.24.3 + core-js-compat@3.40.0: + dependencies: + browserslist: 4.24.3 + core-js@2.6.12: {} core-js@3.39.0: {} @@ -15837,15 +14971,15 @@ snapshots: shebang-command: 2.0.0 which: 2.0.2 - crossws@0.3.1: + crossws@0.3.4: dependencies: uncrypto: 0.1.3 crypto-random-string@2.0.0: {} - css-declaration-sorter@6.4.1(postcss@8.4.31): + css-declaration-sorter@6.4.1(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 css-select@4.3.0: dependencies: @@ -15864,48 +14998,48 @@ snapshots: cssesc@3.0.0: {} - cssnano-preset-default@5.2.14(postcss@8.4.31): - dependencies: - css-declaration-sorter: 6.4.1(postcss@8.4.31) - cssnano-utils: 3.1.0(postcss@8.4.31) - postcss: 8.4.31 - postcss-calc: 8.2.4(postcss@8.4.31) - postcss-colormin: 5.3.1(postcss@8.4.31) - postcss-convert-values: 5.1.3(postcss@8.4.31) - postcss-discard-comments: 5.1.2(postcss@8.4.31) - postcss-discard-duplicates: 5.1.0(postcss@8.4.31) - postcss-discard-empty: 5.1.1(postcss@8.4.31) - postcss-discard-overridden: 5.1.0(postcss@8.4.31) - postcss-merge-longhand: 5.1.7(postcss@8.4.31) - postcss-merge-rules: 5.1.4(postcss@8.4.31) - postcss-minify-font-values: 5.1.0(postcss@8.4.31) - postcss-minify-gradients: 5.1.1(postcss@8.4.31) - postcss-minify-params: 5.1.4(postcss@8.4.31) - postcss-minify-selectors: 5.2.1(postcss@8.4.31) - postcss-normalize-charset: 5.1.0(postcss@8.4.31) - postcss-normalize-display-values: 5.1.0(postcss@8.4.31) - postcss-normalize-positions: 5.1.1(postcss@8.4.31) - postcss-normalize-repeat-style: 5.1.1(postcss@8.4.31) - postcss-normalize-string: 5.1.0(postcss@8.4.31) - postcss-normalize-timing-functions: 5.1.0(postcss@8.4.31) - postcss-normalize-unicode: 5.1.1(postcss@8.4.31) - postcss-normalize-url: 5.1.0(postcss@8.4.31) - postcss-normalize-whitespace: 5.1.1(postcss@8.4.31) - postcss-ordered-values: 5.1.3(postcss@8.4.31) - postcss-reduce-initial: 5.1.2(postcss@8.4.31) - postcss-reduce-transforms: 5.1.0(postcss@8.4.31) - postcss-svgo: 5.1.0(postcss@8.4.31) - postcss-unique-selectors: 5.1.1(postcss@8.4.31) - - cssnano-utils@3.1.0(postcss@8.4.31): - dependencies: - postcss: 8.4.31 - - cssnano@5.1.15(postcss@8.4.31): - dependencies: - cssnano-preset-default: 5.2.14(postcss@8.4.31) + cssnano-preset-default@5.2.14(postcss@8.5.3): + dependencies: + css-declaration-sorter: 6.4.1(postcss@8.5.3) + cssnano-utils: 3.1.0(postcss@8.5.3) + postcss: 8.5.3 + postcss-calc: 8.2.4(postcss@8.5.3) + postcss-colormin: 5.3.1(postcss@8.5.3) + postcss-convert-values: 5.1.3(postcss@8.5.3) + postcss-discard-comments: 5.1.2(postcss@8.5.3) + postcss-discard-duplicates: 5.1.0(postcss@8.5.3) + postcss-discard-empty: 5.1.1(postcss@8.5.3) + postcss-discard-overridden: 5.1.0(postcss@8.5.3) + postcss-merge-longhand: 5.1.7(postcss@8.5.3) + postcss-merge-rules: 5.1.4(postcss@8.5.3) + postcss-minify-font-values: 5.1.0(postcss@8.5.3) + postcss-minify-gradients: 5.1.1(postcss@8.5.3) + postcss-minify-params: 5.1.4(postcss@8.5.3) + postcss-minify-selectors: 5.2.1(postcss@8.5.3) + postcss-normalize-charset: 5.1.0(postcss@8.5.3) + postcss-normalize-display-values: 5.1.0(postcss@8.5.3) + postcss-normalize-positions: 5.1.1(postcss@8.5.3) + postcss-normalize-repeat-style: 5.1.1(postcss@8.5.3) + postcss-normalize-string: 5.1.0(postcss@8.5.3) + postcss-normalize-timing-functions: 5.1.0(postcss@8.5.3) + postcss-normalize-unicode: 5.1.1(postcss@8.5.3) + postcss-normalize-url: 5.1.0(postcss@8.5.3) + postcss-normalize-whitespace: 5.1.1(postcss@8.5.3) + postcss-ordered-values: 5.1.3(postcss@8.5.3) + postcss-reduce-initial: 5.1.2(postcss@8.5.3) + postcss-reduce-transforms: 5.1.0(postcss@8.5.3) + postcss-svgo: 5.1.0(postcss@8.5.3) + postcss-unique-selectors: 5.1.1(postcss@8.5.3) + + cssnano-utils@3.1.0(postcss@8.5.3): + dependencies: + postcss: 8.5.3 + + cssnano@5.1.15(postcss@8.5.3): + dependencies: + cssnano-preset-default: 5.2.14(postcss@8.5.3) lilconfig: 2.1.0 - postcss: 8.4.31 + postcss: 8.5.3 yaml: 1.10.2 csso@4.2.0: @@ -16263,7 +15397,7 @@ snapshots: find-up: 5.0.0 find-yarn-workspace-root: 2.0.0 fixturify-project: 2.1.1 - fs-extra: 11.2.0 + fs-extra: 11.3.0 fs-tree-diff: 2.0.1 get-caller-file: 2.0.5 git-repo-info: 2.1.1 @@ -16298,7 +15432,7 @@ snapshots: resolve-package-path: 4.0.3 safe-stable-stringify: 2.5.0 sane: 5.0.1 - semver: 7.6.3 + semver: 7.7.1 silent-error: 1.1.1 sort-package-json: 1.57.0 symlink-or-copy: 1.3.1 @@ -16393,7 +15527,7 @@ snapshots: dependencies: '@types/cookie': 0.4.1 '@types/cors': 2.8.17 - '@types/node': 20.17.10 + '@types/node': 22.13.4 accepts: 1.3.8 base64id: 2.0.0 cookie: 0.7.2 @@ -16545,32 +15679,6 @@ snapshots: '@esbuild/win32-ia32': 0.18.20 '@esbuild/win32-x64': 0.18.20 - esbuild@0.21.5: - optionalDependencies: - '@esbuild/aix-ppc64': 0.21.5 - '@esbuild/android-arm': 0.21.5 - '@esbuild/android-arm64': 0.21.5 - '@esbuild/android-x64': 0.21.5 - '@esbuild/darwin-arm64': 0.21.5 - '@esbuild/darwin-x64': 0.21.5 - '@esbuild/freebsd-arm64': 0.21.5 - '@esbuild/freebsd-x64': 0.21.5 - '@esbuild/linux-arm': 0.21.5 - '@esbuild/linux-arm64': 0.21.5 - '@esbuild/linux-ia32': 0.21.5 - '@esbuild/linux-loong64': 0.21.5 - '@esbuild/linux-mips64el': 0.21.5 - '@esbuild/linux-ppc64': 0.21.5 - '@esbuild/linux-riscv64': 0.21.5 - '@esbuild/linux-s390x': 0.21.5 - '@esbuild/linux-x64': 0.21.5 - '@esbuild/netbsd-x64': 0.21.5 - '@esbuild/openbsd-x64': 0.21.5 - '@esbuild/sunos-x64': 0.21.5 - '@esbuild/win32-arm64': 0.21.5 - '@esbuild/win32-ia32': 0.21.5 - '@esbuild/win32-x64': 0.21.5 - esbuild@0.23.1: optionalDependencies: '@esbuild/aix-ppc64': 0.23.1 @@ -16642,25 +15750,25 @@ snapshots: optionalDependencies: source-map: 0.6.1 - eslint-compat-utils@0.5.1(eslint@9.18.0(jiti@2.4.2)): + eslint-compat-utils@0.5.1(eslint@9.20.1(jiti@2.4.2)): dependencies: - eslint: 9.18.0(jiti@2.4.2) - semver: 7.6.3 + eslint: 9.20.1(jiti@2.4.2) + semver: 7.7.1 - eslint-compat-utils@0.6.4(eslint@9.18.0(jiti@2.4.2)): + eslint-compat-utils@0.6.4(eslint@9.20.1(jiti@2.4.2)): dependencies: - eslint: 9.18.0(jiti@2.4.2) - semver: 7.6.3 + eslint: 9.20.1(jiti@2.4.2) + semver: 7.7.1 - eslint-config-flat-gitignore@1.0.0(eslint@9.18.0(jiti@2.4.2)): + eslint-config-flat-gitignore@1.0.0(eslint@9.20.1(jiti@2.4.2)): dependencies: - '@eslint/compat': 1.2.5(eslint@9.18.0(jiti@2.4.2)) - eslint: 9.18.0(jiti@2.4.2) + '@eslint/compat': 1.2.5(eslint@9.20.1(jiti@2.4.2)) + eslint: 9.20.1(jiti@2.4.2) find-up-simple: 1.0.0 - eslint-config-prettier@10.0.1(eslint@9.18.0(jiti@2.4.2)): + eslint-config-prettier@10.0.1(eslint@9.20.1(jiti@2.4.2)): dependencies: - eslint: 9.18.0(jiti@2.4.2) + eslint: 9.20.1(jiti@2.4.2) eslint-import-resolver-node@0.3.9: dependencies: @@ -16670,30 +15778,29 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.7.0(eslint-plugin-import-x@4.6.1(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.18.0(jiti@2.4.2)): + eslint-import-resolver-typescript@3.8.2(eslint-plugin-import-x@4.6.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.20.1(jiti@2.4.2)): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.4.0(supports-color@8.1.1) enhanced-resolve: 5.18.0 - eslint: 9.18.0(jiti@2.4.2) - fast-glob: 3.3.2 - get-tsconfig: 4.8.1 + eslint: 9.20.1(jiti@2.4.2) + get-tsconfig: 4.10.0 is-bun-module: 1.3.0 - is-glob: 4.0.3 stable-hash: 0.0.4 + tinyglobby: 0.2.12 optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-typescript@3.7.0)(eslint@9.18.0(jiti@2.4.2)) - eslint-plugin-import-x: 4.6.1(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-typescript@3.8.2)(eslint@9.20.1(jiti@2.4.2)) + eslint-plugin-import-x: 4.6.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) transitivePeerDependencies: - supports-color - eslint-interactive@11.1.0(eslint@9.18.0(jiti@2.4.2)): + eslint-interactive@11.1.0(eslint@9.20.1(jiti@2.4.2)): dependencies: boxen: 8.0.1 chalk: 5.4.1 comlink: 4.4.2 enquirer: 2.4.1 - eslint: 9.18.0(jiti@2.4.2) + eslint: 9.20.1(jiti@2.4.2) estraverse: 5.3.0 find-cache-dir: 5.0.0 is-installed-globally: 1.0.0 @@ -16702,39 +15809,39 @@ snapshots: terminal-link: 3.0.0 yargs: 17.7.2 - eslint-json-compat-utils@0.2.1(eslint@9.18.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0): + eslint-json-compat-utils@0.2.1(eslint@9.20.1(jiti@2.4.2))(jsonc-eslint-parser@2.4.0): dependencies: - eslint: 9.18.0(jiti@2.4.2) + eslint: 9.20.1(jiti@2.4.2) esquery: 1.6.0 jsonc-eslint-parser: 2.4.0 - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@9.18.0(jiti@2.4.2)): + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.2)(eslint@9.20.1(jiti@2.4.2)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) - eslint: 9.18.0(jiti@2.4.2) + '@typescript-eslint/parser': 8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) + eslint: 9.20.1(jiti@2.4.2) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import-x@4.6.1(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.18.0(jiti@2.4.2)) + eslint-import-resolver-typescript: 3.8.2(eslint-plugin-import-x@4.6.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint-plugin-import@2.31.0)(eslint@9.20.1(jiti@2.4.2)) transitivePeerDependencies: - supports-color - eslint-plugin-es-x@7.8.0(eslint@9.18.0(jiti@2.4.2)): + eslint-plugin-es-x@7.8.0(eslint@9.20.1(jiti@2.4.2)): dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0(jiti@2.4.2)) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1(jiti@2.4.2)) '@eslint-community/regexpp': 4.12.1 - eslint: 9.18.0(jiti@2.4.2) - eslint-compat-utils: 0.5.1(eslint@9.18.0(jiti@2.4.2)) + eslint: 9.20.1(jiti@2.4.2) + eslint-compat-utils: 0.5.1(eslint@9.20.1(jiti@2.4.2)) - eslint-plugin-import-x@4.6.1(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3): + eslint-plugin-import-x@4.6.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3): dependencies: '@types/doctrine': 0.0.9 '@typescript-eslint/scope-manager': 8.19.0 - '@typescript-eslint/utils': 8.19.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) + '@typescript-eslint/utils': 8.19.0(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) debug: 4.4.0(supports-color@8.1.1) doctrine: 3.0.0 enhanced-resolve: 5.18.0 - eslint: 9.18.0(jiti@2.4.2) + eslint: 9.20.1(jiti@2.4.2) eslint-import-resolver-node: 0.3.9 get-tsconfig: 4.8.1 is-glob: 4.0.3 @@ -16746,7 +15853,7 @@ snapshots: - supports-color - typescript - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-typescript@3.7.0)(eslint@9.18.0(jiti@2.4.2)): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-typescript@3.8.2)(eslint@9.20.1(jiti@2.4.2)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -16755,9 +15862,9 @@ snapshots: array.prototype.flatmap: 1.3.3 debug: 3.2.7 doctrine: 2.1.0 - eslint: 9.18.0(jiti@2.4.2) + eslint: 9.20.1(jiti@2.4.2) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@9.18.0(jiti@2.4.2)) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.2)(eslint@9.20.1(jiti@2.4.2)) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -16769,18 +15876,18 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) + '@typescript-eslint/parser': 8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-jsonc@2.18.2(eslint@9.18.0(jiti@2.4.2)): + eslint-plugin-jsonc@2.19.1(eslint@9.20.1(jiti@2.4.2)): dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0(jiti@2.4.2)) - eslint: 9.18.0(jiti@2.4.2) - eslint-compat-utils: 0.6.4(eslint@9.18.0(jiti@2.4.2)) - eslint-json-compat-utils: 0.2.1(eslint@9.18.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1(jiti@2.4.2)) + eslint: 9.20.1(jiti@2.4.2) + eslint-compat-utils: 0.6.4(eslint@9.20.1(jiti@2.4.2)) + eslint-json-compat-utils: 0.2.1(eslint@9.20.1(jiti@2.4.2))(jsonc-eslint-parser@2.4.0) espree: 9.6.1 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.0 @@ -16789,54 +15896,54 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-n@17.15.1(eslint@9.18.0(jiti@2.4.2)): + eslint-plugin-n@17.15.1(eslint@9.20.1(jiti@2.4.2)): dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0(jiti@2.4.2)) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1(jiti@2.4.2)) enhanced-resolve: 5.18.0 - eslint: 9.18.0(jiti@2.4.2) - eslint-plugin-es-x: 7.8.0(eslint@9.18.0(jiti@2.4.2)) + eslint: 9.20.1(jiti@2.4.2) + eslint-plugin-es-x: 7.8.0(eslint@9.20.1(jiti@2.4.2)) get-tsconfig: 4.8.1 globals: 15.14.0 ignore: 5.3.2 minimatch: 9.0.5 semver: 7.6.3 - eslint-plugin-qunit@8.1.2(eslint@9.18.0(jiti@2.4.2)): + eslint-plugin-qunit@8.1.2(eslint@9.20.1(jiti@2.4.2)): dependencies: - eslint-utils: 3.0.0(eslint@9.18.0(jiti@2.4.2)) + eslint-utils: 3.0.0(eslint@9.20.1(jiti@2.4.2)) requireindex: 1.2.0 transitivePeerDependencies: - eslint - eslint-plugin-regexp@2.7.0(eslint@9.18.0(jiti@2.4.2)): + eslint-plugin-regexp@2.7.0(eslint@9.20.1(jiti@2.4.2)): dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0(jiti@2.4.2)) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1(jiti@2.4.2)) '@eslint-community/regexpp': 4.12.1 comment-parser: 1.4.1 - eslint: 9.18.0(jiti@2.4.2) + eslint: 9.20.1(jiti@2.4.2) jsdoc-type-pratt-parser: 4.1.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 scslre: 0.3.0 - eslint-plugin-simple-import-sort@12.1.1(eslint@9.18.0(jiti@2.4.2)): + eslint-plugin-simple-import-sort@12.1.1(eslint@9.20.1(jiti@2.4.2)): dependencies: - eslint: 9.18.0(jiti@2.4.2) + eslint: 9.20.1(jiti@2.4.2) - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2)): + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.24.1(@typescript-eslint/parser@8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2)): dependencies: - eslint: 9.18.0(jiti@2.4.2) + eslint: 9.20.1(jiti@2.4.2) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) + '@typescript-eslint/eslint-plugin': 8.24.1(@typescript-eslint/parser@8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) eslint-scope@8.2.0: dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 - eslint-utils@3.0.0(eslint@9.18.0(jiti@2.4.2)): + eslint-utils@3.0.0(eslint@9.20.1(jiti@2.4.2)): dependencies: - eslint: 9.18.0(jiti@2.4.2) + eslint: 9.20.1(jiti@2.4.2) eslint-visitor-keys: 2.1.0 eslint-visitor-keys@2.1.0: {} @@ -16845,14 +15952,14 @@ snapshots: eslint-visitor-keys@4.2.0: {} - eslint@9.18.0(jiti@2.4.2): + eslint@9.20.1(jiti@2.4.2): dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0(jiti@2.4.2)) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.1(jiti@2.4.2)) '@eslint-community/regexpp': 4.12.1 '@eslint/config-array': 0.19.1 - '@eslint/core': 0.10.0 + '@eslint/core': 0.11.0 '@eslint/eslintrc': 3.2.0 - '@eslint/js': 9.18.0 + '@eslint/js': 9.20.0 '@eslint/plugin-kit': 0.2.5 '@humanfs/node': 0.16.6 '@humanwhocodes/module-importer': 1.0.1 @@ -17151,7 +16258,7 @@ snapshots: fast-fifo@1.3.2: {} - fast-glob@3.3.2: + fast-glob@3.3.3: dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 @@ -17199,6 +16306,10 @@ snapshots: dependencies: pend: 1.2.0 + fdir@6.4.3(picomatch@4.0.2): + optionalDependencies: + picomatch: 4.0.2 + figures@1.7.0: dependencies: escape-string-regexp: 1.0.5 @@ -17381,7 +16492,7 @@ snapshots: jsonfile: 6.1.0 universalify: 2.0.1 - fs-extra@11.2.0: + fs-extra@11.3.0: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 @@ -17552,6 +16663,10 @@ snapshots: es-errors: 1.3.0 get-intrinsic: 1.2.6 + get-tsconfig@4.10.0: + dependencies: + resolve-pkg-maps: 1.0.0 + get-tsconfig@4.8.1: dependencies: resolve-pkg-maps: 1.0.0 @@ -17677,6 +16792,8 @@ snapshots: globals@15.14.0: {} + globals@15.15.0: {} + globalthis@1.0.4: dependencies: define-properties: 1.2.1 @@ -17689,7 +16806,7 @@ snapshots: '@types/glob': 7.2.0 array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.3.2 + fast-glob: 3.3.3 glob: 7.2.3 ignore: 5.3.2 merge2: 1.4.1 @@ -17699,19 +16816,19 @@ snapshots: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.3.2 + fast-glob: 3.3.3 ignore: 5.3.2 merge2: 1.4.1 slash: 3.0.0 - globby@14.0.2: + globby@14.1.0: dependencies: '@sindresorhus/merge-streams': 2.3.0 - fast-glob: 3.3.2 - ignore: 5.2.4 - path-type: 5.0.0 + fast-glob: 3.3.3 + ignore: 7.0.3 + path-type: 6.0.0 slash: 5.1.0 - unicorn-magic: 0.1.0 + unicorn-magic: 0.3.0 globrex@0.1.2: {} @@ -17743,18 +16860,18 @@ snapshots: growly@1.3.0: {} - h3@1.13.0: + h3@1.15.0: dependencies: cookie-es: 1.2.2 - crossws: 0.3.1 + crossws: 0.3.4 defu: 6.1.4 destr: 2.0.3 iron-webcrypto: 1.2.1 + node-mock-http: 1.0.0 ohash: 1.1.4 radix3: 1.1.2 ufo: 1.5.4 uncrypto: 0.1.3 - unenv: 1.10.0 handlebars@4.7.8: dependencies: @@ -17995,16 +17112,16 @@ snapshots: icss-replace-symbols@1.1.0: {} - icss-utils@5.1.0(postcss@8.4.31): + icss-utils@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 ieee754@1.2.1: {} - ignore@5.2.4: {} - ignore@5.3.2: {} + ignore@7.0.3: {} + import-cwd@3.0.0: dependencies: import-from: 3.0.0 @@ -18143,13 +17260,9 @@ snapshots: is-buffer@1.1.6: {} - is-builtin-module@3.2.1: - dependencies: - builtin-modules: 3.3.0 - is-bun-module@1.3.0: dependencies: - semver: 7.6.3 + semver: 7.7.1 is-callable@1.2.7: {} @@ -18233,7 +17346,7 @@ snapshots: is-language-code@3.1.0: dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.26.9 is-map@2.0.3: {} @@ -18464,7 +17577,7 @@ snapshots: acorn: 8.14.0 eslint-visitor-keys: 3.4.3 espree: 9.6.1 - semver: 7.6.3 + semver: 7.7.1 jsonfile@2.4.0: optionalDependencies: @@ -18502,14 +17615,14 @@ snapshots: kind-of@6.0.3: {} - knip@5.41.1(@types/node@20.17.10)(typescript@5.7.3): + knip@5.44.4(@types/node@22.13.4)(typescript@5.7.3): dependencies: - '@nodelib/fs.walk': 1.2.8 + '@nodelib/fs.walk': 3.0.1 '@snyk/github-codeowners': 1.1.0 - '@types/node': 20.17.10 + '@types/node': 22.13.4 easy-table: 1.2.0 enhanced-resolve: 5.18.0 - fast-glob: 3.3.2 + fast-glob: 3.3.3 jiti: 2.4.2 js-yaml: 4.1.0 minimist: 1.2.8 @@ -18760,6 +17873,8 @@ snapshots: loupe@3.1.2: {} + loupe@3.1.3: {} + lower-case@2.0.2: dependencies: tslib: 2.8.1 @@ -18972,8 +18087,6 @@ snapshots: mime@1.6.0: {} - mime@3.0.0: {} - mimic-fn@1.2.0: {} mimic-fn@2.1.0: {} @@ -19083,10 +18196,10 @@ snapshots: mktemp@0.4.0: {} - mlly@1.7.3: + mlly@1.7.4: dependencies: acorn: 8.14.0 - pathe: 1.1.2 + pathe: 2.0.2 pkg-types: 1.3.0 ufo: 1.5.4 @@ -19195,8 +18308,6 @@ snapshots: lower-case: 2.0.2 tslib: 2.8.1 - node-fetch-native@1.6.4: {} - node-fetch@2.7.0(encoding@0.1.13): dependencies: whatwg-url: 5.0.0 @@ -19205,13 +18316,15 @@ snapshots: node-int64@0.4.0: {} + node-mock-http@1.0.0: {} + node-modules-path@1.0.2: {} node-notifier@10.0.1: dependencies: growly: 1.3.0 is-wsl: 2.2.0 - semver: 7.6.3 + semver: 7.7.1 shellwords: 0.1.1 uuid: 8.3.2 which: 2.0.2 @@ -19235,27 +18348,27 @@ snapshots: dependencies: hosted-git-info: 4.1.0 is-core-module: 2.16.1 - semver: 7.6.3 + semver: 7.7.1 validate-npm-package-license: 3.0.4 normalize-package-data@4.0.1: dependencies: hosted-git-info: 5.2.1 is-core-module: 2.16.1 - semver: 7.6.3 + semver: 7.7.1 validate-npm-package-license: 3.0.4 normalize-package-data@5.0.0: dependencies: hosted-git-info: 6.1.3 is-core-module: 2.16.1 - semver: 7.6.3 + semver: 7.7.1 validate-npm-package-license: 3.0.4 normalize-package-data@6.0.2: dependencies: hosted-git-info: 7.0.2 - semver: 7.6.3 + semver: 7.7.1 validate-npm-package-license: 3.0.4 normalize-path@2.1.1: @@ -19272,7 +18385,7 @@ snapshots: npm-install-checks@6.3.0: dependencies: - semver: 7.6.3 + semver: 7.7.1 npm-normalize-package-bin@3.0.1: {} @@ -19280,14 +18393,14 @@ snapshots: dependencies: hosted-git-info: 6.1.3 proc-log: 3.0.0 - semver: 7.6.3 + semver: 7.7.1 validate-npm-package-name: 5.0.1 npm-package-arg@11.0.3: dependencies: hosted-git-info: 7.0.2 proc-log: 4.2.0 - semver: 7.6.3 + semver: 7.7.1 validate-npm-package-name: 5.0.1 npm-pick-manifest@9.1.0: @@ -19295,7 +18408,7 @@ snapshots: npm-install-checks: 6.3.0 npm-normalize-package-bin: 3.0.1 npm-package-arg: 11.0.3 - semver: 7.6.3 + semver: 7.7.1 npm-run-all@4.1.5: dependencies: @@ -19584,7 +18697,7 @@ snapshots: ky: 1.7.4 registry-auth-token: 5.0.3 registry-url: 6.0.1 - semver: 7.6.3 + semver: 7.7.1 package-json@6.5.0: dependencies: @@ -19696,7 +18809,7 @@ snapshots: path-type@4.0.0: {} - path-type@5.0.0: {} + path-type@6.0.0: {} path@0.12.7: dependencies: @@ -19707,6 +18820,8 @@ snapshots: pathe@2.0.2: {} + pathe@2.0.3: {} + pathval@2.0.0: {} pause-stream@0.0.11: @@ -19744,7 +18859,7 @@ snapshots: pkg-types@1.3.0: dependencies: confbox: 0.1.8 - mlly: 1.7.3 + mlly: 1.7.4 pathe: 1.1.2 pkg-up@3.1.0: @@ -19763,182 +18878,182 @@ snapshots: possible-typed-array-names@1.0.0: {} - postcss-calc@8.2.4(postcss@8.4.31): + postcss-calc@8.2.4(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 - postcss-colormin@5.3.1(postcss@8.4.31): + postcss-colormin@5.3.1(postcss@8.5.3): dependencies: browserslist: 4.24.3 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.31 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - postcss-convert-values@5.1.3(postcss@8.4.31): + postcss-convert-values@5.1.3(postcss@8.5.3): dependencies: browserslist: 4.24.3 - postcss: 8.4.31 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - postcss-discard-comments@5.1.2(postcss@8.4.31): + postcss-discard-comments@5.1.2(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 - postcss-discard-duplicates@5.1.0(postcss@8.4.31): + postcss-discard-duplicates@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 - postcss-discard-empty@5.1.1(postcss@8.4.31): + postcss-discard-empty@5.1.1(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 - postcss-discard-overridden@5.1.0(postcss@8.4.31): + postcss-discard-overridden@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 - postcss-load-config@3.1.4(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.9.3)(@types/node@20.17.10)(typescript@5.7.3)): + postcss-load-config@3.1.4(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.9.3)(@types/node@22.13.4)(typescript@5.7.3)): dependencies: lilconfig: 2.1.0 yaml: 1.10.2 optionalDependencies: - postcss: 8.4.31 - ts-node: 10.9.2(@swc/core@1.9.3)(@types/node@20.17.10)(typescript@5.7.3) + postcss: 8.5.3 + ts-node: 10.9.2(@swc/core@1.9.3)(@types/node@22.13.4)(typescript@5.7.3) - postcss-merge-longhand@5.1.7(postcss@8.4.31): + postcss-merge-longhand@5.1.7(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - stylehacks: 5.1.1(postcss@8.4.31) + stylehacks: 5.1.1(postcss@8.5.3) - postcss-merge-rules@5.1.4(postcss@8.4.31): + postcss-merge-rules@5.1.4(postcss@8.5.3): dependencies: browserslist: 4.24.3 caniuse-api: 3.0.0 - cssnano-utils: 3.1.0(postcss@8.4.31) - postcss: 8.4.31 + cssnano-utils: 3.1.0(postcss@8.5.3) + postcss: 8.5.3 postcss-selector-parser: 6.1.2 - postcss-minify-font-values@5.1.0(postcss@8.4.31): + postcss-minify-font-values@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - postcss-minify-gradients@5.1.1(postcss@8.4.31): + postcss-minify-gradients@5.1.1(postcss@8.5.3): dependencies: colord: 2.9.3 - cssnano-utils: 3.1.0(postcss@8.4.31) - postcss: 8.4.31 + cssnano-utils: 3.1.0(postcss@8.5.3) + postcss: 8.5.3 postcss-value-parser: 4.2.0 - postcss-minify-params@5.1.4(postcss@8.4.31): + postcss-minify-params@5.1.4(postcss@8.5.3): dependencies: browserslist: 4.24.3 - cssnano-utils: 3.1.0(postcss@8.4.31) - postcss: 8.4.31 + cssnano-utils: 3.1.0(postcss@8.5.3) + postcss: 8.5.3 postcss-value-parser: 4.2.0 - postcss-minify-selectors@5.2.1(postcss@8.4.31): + postcss-minify-selectors@5.2.1(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 postcss-selector-parser: 6.1.2 - postcss-modules-extract-imports@3.1.0(postcss@8.4.31): + postcss-modules-extract-imports@3.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 - postcss-modules-local-by-default@4.0.5(postcss@8.4.31): + postcss-modules-local-by-default@4.0.5(postcss@8.5.3): dependencies: - icss-utils: 5.1.0(postcss@8.4.31) - postcss: 8.4.31 + icss-utils: 5.1.0(postcss@8.5.3) + postcss: 8.5.3 postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 - postcss-modules-scope@3.2.0(postcss@8.4.31): + postcss-modules-scope@3.2.0(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 postcss-selector-parser: 6.1.2 - postcss-modules-values@4.0.0(postcss@8.4.31): + postcss-modules-values@4.0.0(postcss@8.5.3): dependencies: - icss-utils: 5.1.0(postcss@8.4.31) - postcss: 8.4.31 + icss-utils: 5.1.0(postcss@8.5.3) + postcss: 8.5.3 - postcss-modules@4.3.1(postcss@8.4.31): + postcss-modules@4.3.1(postcss@8.5.3): dependencies: generic-names: 4.0.0 icss-replace-symbols: 1.1.0 lodash.camelcase: 4.3.0 - postcss: 8.4.31 - postcss-modules-extract-imports: 3.1.0(postcss@8.4.31) - postcss-modules-local-by-default: 4.0.5(postcss@8.4.31) - postcss-modules-scope: 3.2.0(postcss@8.4.31) - postcss-modules-values: 4.0.0(postcss@8.4.31) + postcss: 8.5.3 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.3) + postcss-modules-local-by-default: 4.0.5(postcss@8.5.3) + postcss-modules-scope: 3.2.0(postcss@8.5.3) + postcss-modules-values: 4.0.0(postcss@8.5.3) string-hash: 1.1.3 - postcss-normalize-charset@5.1.0(postcss@8.4.31): + postcss-normalize-charset@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 - postcss-normalize-display-values@5.1.0(postcss@8.4.31): + postcss-normalize-display-values@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - postcss-normalize-positions@5.1.1(postcss@8.4.31): + postcss-normalize-positions@5.1.1(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@5.1.1(postcss@8.4.31): + postcss-normalize-repeat-style@5.1.1(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - postcss-normalize-string@5.1.0(postcss@8.4.31): + postcss-normalize-string@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@5.1.0(postcss@8.4.31): + postcss-normalize-timing-functions@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - postcss-normalize-unicode@5.1.1(postcss@8.4.31): + postcss-normalize-unicode@5.1.1(postcss@8.5.3): dependencies: browserslist: 4.24.3 - postcss: 8.4.31 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - postcss-normalize-url@5.1.0(postcss@8.4.31): + postcss-normalize-url@5.1.0(postcss@8.5.3): dependencies: normalize-url: 6.1.0 - postcss: 8.4.31 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@5.1.1(postcss@8.4.31): + postcss-normalize-whitespace@5.1.1(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 postcss-value-parser: 4.2.0 - postcss-ordered-values@5.1.3(postcss@8.4.31): + postcss-ordered-values@5.1.3(postcss@8.5.3): dependencies: - cssnano-utils: 3.1.0(postcss@8.4.31) - postcss: 8.4.31 + cssnano-utils: 3.1.0(postcss@8.5.3) + postcss: 8.5.3 postcss-value-parser: 4.2.0 - postcss-reduce-initial@5.1.2(postcss@8.4.31): + postcss-reduce-initial@5.1.2(postcss@8.5.3): dependencies: browserslist: 4.24.3 caniuse-api: 3.0.0 - postcss: 8.4.31 + postcss: 8.5.3 - postcss-reduce-transforms@5.1.0(postcss@8.4.31): + postcss-reduce-transforms@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 postcss-value-parser: 4.2.0 postcss-selector-parser@6.1.2: @@ -19946,26 +19061,20 @@ snapshots: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-svgo@5.1.0(postcss@8.4.31): + postcss-svgo@5.1.0(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 postcss-value-parser: 4.2.0 svgo: 2.8.0 - postcss-unique-selectors@5.1.1(postcss@8.4.31): + postcss-unique-selectors@5.1.1(postcss@8.5.3): dependencies: - postcss: 8.4.31 + postcss: 8.5.3 postcss-selector-parser: 6.1.2 postcss-value-parser@4.2.0: {} - postcss@8.4.31: - dependencies: - nanoid: 3.3.8 - picocolors: 1.1.1 - source-map-js: 1.2.1 - - postcss@8.4.49: + postcss@8.5.3: dependencies: nanoid: 3.3.8 picocolors: 1.1.1 @@ -19977,7 +19086,7 @@ snapshots: prettier@2.8.8: {} - prettier@3.4.2: {} + prettier@3.5.1: {} pretty-bytes@5.6.0: {} @@ -20138,13 +19247,7 @@ snapshots: rimraf: 2.7.1 underscore.string: 3.3.6 - qunit@2.19.4: - dependencies: - commander: 7.2.0 - node-watch: 0.7.3 - tiny-glob: 0.2.9 - - qunit@2.23.1: + qunit@2.24.1: dependencies: commander: 7.2.0 node-watch: 0.7.3 @@ -20303,7 +19406,7 @@ snapshots: regenerator-transform@0.15.2: dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.26.9 regex-not@1.0.2: dependencies: @@ -20369,7 +19472,7 @@ snapshots: js-yaml: 4.1.0 latest-version: 9.0.0 parse-github-repo-url: 1.4.1 - semver: 7.6.3 + semver: 7.7.1 yargs: 17.7.2 transitivePeerDependencies: - bluebird @@ -20486,36 +19589,36 @@ snapshots: glob: 11.0.1 package-json-from-dist: 1.0.1 - rollup-plugin-dts@6.1.1(rollup@4.31.0-0)(typescript@5.7.3): + rollup-plugin-dts@6.1.1(rollup@4.34.8)(typescript@5.7.3): dependencies: magic-string: 0.30.17 - rollup: 4.31.0-0 + rollup: 4.34.8 typescript: 5.7.3 optionalDependencies: '@babel/code-frame': 7.26.2 - rollup-plugin-insert@1.3.2(rollup@4.31.0-0): + rollup-plugin-insert@1.3.2(rollup@4.34.8): dependencies: magic-string: 0.25.9 - rollup: 4.31.0-0 + rollup: 4.34.8 rollup-pluginutils: 2.8.2 - rollup-plugin-polyfill-node@0.13.0(rollup@4.31.0-0): + rollup-plugin-polyfill-node@0.13.0(rollup@4.34.8): dependencies: - '@rollup/plugin-inject': 5.0.5(rollup@4.31.0-0) - rollup: 4.31.0-0 + '@rollup/plugin-inject': 5.0.5(rollup@4.34.8) + rollup: 4.34.8 - rollup-plugin-postcss@4.0.2(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.9.3)(@types/node@20.17.10)(typescript@5.7.3)): + rollup-plugin-postcss@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.9.3)(@types/node@22.13.4)(typescript@5.7.3)): dependencies: chalk: 4.1.2 concat-with-sourcemaps: 1.1.0 - cssnano: 5.1.15(postcss@8.4.31) + cssnano: 5.1.15(postcss@8.5.3) import-cwd: 3.0.0 p-queue: 6.6.2 pify: 5.0.0 - postcss: 8.4.31 - postcss-load-config: 3.1.4(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.9.3)(@types/node@20.17.10)(typescript@5.7.3)) - postcss-modules: 4.3.1(postcss@8.4.31) + postcss: 8.5.3 + postcss-load-config: 3.1.4(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.9.3)(@types/node@22.13.4)(typescript@5.7.3)) + postcss-modules: 4.3.1(postcss@8.5.3) promise.series: 0.2.0 resolve: 1.22.10 rollup-pluginutils: 2.8.2 @@ -20528,79 +19631,29 @@ snapshots: dependencies: estree-walker: 0.6.1 - rollup@4.29.1: - dependencies: - '@types/estree': 1.0.6 - optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.29.1 - '@rollup/rollup-android-arm64': 4.29.1 - '@rollup/rollup-darwin-arm64': 4.29.1 - '@rollup/rollup-darwin-x64': 4.29.1 - '@rollup/rollup-freebsd-arm64': 4.29.1 - '@rollup/rollup-freebsd-x64': 4.29.1 - '@rollup/rollup-linux-arm-gnueabihf': 4.29.1 - '@rollup/rollup-linux-arm-musleabihf': 4.29.1 - '@rollup/rollup-linux-arm64-gnu': 4.29.1 - '@rollup/rollup-linux-arm64-musl': 4.29.1 - '@rollup/rollup-linux-loongarch64-gnu': 4.29.1 - '@rollup/rollup-linux-powerpc64le-gnu': 4.29.1 - '@rollup/rollup-linux-riscv64-gnu': 4.29.1 - '@rollup/rollup-linux-s390x-gnu': 4.29.1 - '@rollup/rollup-linux-x64-gnu': 4.29.1 - '@rollup/rollup-linux-x64-musl': 4.29.1 - '@rollup/rollup-win32-arm64-msvc': 4.29.1 - '@rollup/rollup-win32-ia32-msvc': 4.29.1 - '@rollup/rollup-win32-x64-msvc': 4.29.1 - fsevents: 2.3.3 - - rollup@4.31.0: - dependencies: - '@types/estree': 1.0.6 - optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.31.0 - '@rollup/rollup-android-arm64': 4.31.0 - '@rollup/rollup-darwin-arm64': 4.31.0 - '@rollup/rollup-darwin-x64': 4.31.0 - '@rollup/rollup-freebsd-arm64': 4.31.0 - '@rollup/rollup-freebsd-x64': 4.31.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.31.0 - '@rollup/rollup-linux-arm-musleabihf': 4.31.0 - '@rollup/rollup-linux-arm64-gnu': 4.31.0 - '@rollup/rollup-linux-arm64-musl': 4.31.0 - '@rollup/rollup-linux-loongarch64-gnu': 4.31.0 - '@rollup/rollup-linux-powerpc64le-gnu': 4.31.0 - '@rollup/rollup-linux-riscv64-gnu': 4.31.0 - '@rollup/rollup-linux-s390x-gnu': 4.31.0 - '@rollup/rollup-linux-x64-gnu': 4.31.0 - '@rollup/rollup-linux-x64-musl': 4.31.0 - '@rollup/rollup-win32-arm64-msvc': 4.31.0 - '@rollup/rollup-win32-ia32-msvc': 4.31.0 - '@rollup/rollup-win32-x64-msvc': 4.31.0 - fsevents: 2.3.3 - - rollup@4.31.0-0: + rollup@4.34.8: dependencies: '@types/estree': 1.0.6 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.31.0-0 - '@rollup/rollup-android-arm64': 4.31.0-0 - '@rollup/rollup-darwin-arm64': 4.31.0-0 - '@rollup/rollup-darwin-x64': 4.31.0-0 - '@rollup/rollup-freebsd-arm64': 4.31.0-0 - '@rollup/rollup-freebsd-x64': 4.31.0-0 - '@rollup/rollup-linux-arm-gnueabihf': 4.31.0-0 - '@rollup/rollup-linux-arm-musleabihf': 4.31.0-0 - '@rollup/rollup-linux-arm64-gnu': 4.31.0-0 - '@rollup/rollup-linux-arm64-musl': 4.31.0-0 - '@rollup/rollup-linux-loongarch64-gnu': 4.31.0-0 - '@rollup/rollup-linux-powerpc64le-gnu': 4.31.0-0 - '@rollup/rollup-linux-riscv64-gnu': 4.31.0-0 - '@rollup/rollup-linux-s390x-gnu': 4.31.0-0 - '@rollup/rollup-linux-x64-gnu': 4.31.0-0 - '@rollup/rollup-linux-x64-musl': 4.31.0-0 - '@rollup/rollup-win32-arm64-msvc': 4.31.0-0 - '@rollup/rollup-win32-ia32-msvc': 4.31.0-0 - '@rollup/rollup-win32-x64-msvc': 4.31.0-0 + '@rollup/rollup-android-arm-eabi': 4.34.8 + '@rollup/rollup-android-arm64': 4.34.8 + '@rollup/rollup-darwin-arm64': 4.34.8 + '@rollup/rollup-darwin-x64': 4.34.8 + '@rollup/rollup-freebsd-arm64': 4.34.8 + '@rollup/rollup-freebsd-x64': 4.34.8 + '@rollup/rollup-linux-arm-gnueabihf': 4.34.8 + '@rollup/rollup-linux-arm-musleabihf': 4.34.8 + '@rollup/rollup-linux-arm64-gnu': 4.34.8 + '@rollup/rollup-linux-arm64-musl': 4.34.8 + '@rollup/rollup-linux-loongarch64-gnu': 4.34.8 + '@rollup/rollup-linux-powerpc64le-gnu': 4.34.8 + '@rollup/rollup-linux-riscv64-gnu': 4.34.8 + '@rollup/rollup-linux-s390x-gnu': 4.34.8 + '@rollup/rollup-linux-x64-gnu': 4.34.8 + '@rollup/rollup-linux-x64-musl': 4.34.8 + '@rollup/rollup-win32-arm64-msvc': 4.34.8 + '@rollup/rollup-win32-ia32-msvc': 4.34.8 + '@rollup/rollup-win32-x64-msvc': 4.34.8 fsevents: 2.3.3 rsvp@3.2.1: {} @@ -20708,6 +19761,8 @@ snapshots: semver@7.6.3: {} + semver@7.7.1: {} + send@0.19.0: dependencies: debug: 2.6.9 @@ -21182,10 +20237,10 @@ snapshots: styled_string@0.0.1: {} - stylehacks@5.1.1(postcss@8.4.31): + stylehacks@5.1.1(postcss@8.5.3): dependencies: browserslist: 4.24.3 - postcss: 8.4.31 + postcss: 8.5.3 postcss-selector-parser: 6.1.2 sucrase@3.35.0: @@ -21519,6 +20574,11 @@ snapshots: tinyexec@0.3.2: {} + tinyglobby@0.2.12: + dependencies: + fdir: 6.4.3(picomatch@4.0.2) + picomatch: 4.0.2 + tinypool@1.0.2: {} tinyrainbow@2.0.0: {} @@ -21576,14 +20636,14 @@ snapshots: tr46@0.0.3: {} - tracerbench@8.0.1(@swc/core@1.9.3)(@types/node@20.17.10)(typescript@5.7.3): + tracerbench@8.0.1(@swc/core@1.9.3)(@types/node@22.13.4)(typescript@5.7.3): dependencies: '@oclif/command': 1.8.36(@oclif/config@1.18.17) '@oclif/config': 1.18.17 '@oclif/errors': 1.3.6 '@oclif/parser': 3.8.17 - '@oclif/plugin-help': 5.2.20(@swc/core@1.9.3)(@types/node@20.17.10)(typescript@5.7.3) - '@oclif/plugin-warn-if-update-available': 2.1.1(@swc/core@1.9.3)(@types/node@20.17.10)(typescript@5.7.3) + '@oclif/plugin-help': 5.2.20(@swc/core@1.9.3)(@types/node@22.13.4)(typescript@5.7.3) + '@oclif/plugin-warn-if-update-available': 2.1.1(@swc/core@1.9.3)(@types/node@22.13.4)(typescript@5.7.3) '@tracerbench/core': 8.0.1 '@tracerbench/stats': 8.0.1 '@tracerbench/trace-event': 8.0.0 @@ -21639,28 +20699,24 @@ snapshots: trim-newlines@4.1.1: {} - ts-api-utils@1.4.0(typescript@5.7.3): - dependencies: - typescript: 5.7.3 - ts-api-utils@1.4.3(typescript@5.7.3): dependencies: typescript: 5.7.3 - ts-api-utils@2.0.0(typescript@5.7.3): + ts-api-utils@2.0.1(typescript@5.7.3): dependencies: typescript: 5.7.3 ts-interface-checker@0.1.13: {} - ts-node@10.9.2(@swc/core@1.9.3)(@types/node@20.17.10)(typescript@5.7.3): + ts-node@10.9.2(@swc/core@1.9.3)(@types/node@22.13.4)(typescript@5.7.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.17.10 + '@types/node': 22.13.4 acorn: 8.14.0 acorn-walk: 8.3.4 arg: 4.1.3 @@ -21705,32 +20761,32 @@ snapshots: dependencies: safe-buffer: 5.2.1 - turbo-darwin-64@2.3.3: + turbo-darwin-64@2.4.2: optional: true - turbo-darwin-arm64@2.3.3: + turbo-darwin-arm64@2.4.2: optional: true - turbo-linux-64@2.3.3: + turbo-linux-64@2.4.2: optional: true - turbo-linux-arm64@2.3.3: + turbo-linux-arm64@2.4.2: optional: true - turbo-windows-64@2.3.3: + turbo-windows-64@2.4.2: optional: true - turbo-windows-arm64@2.3.3: + turbo-windows-arm64@2.4.2: optional: true - turbo@2.3.3: + turbo@2.4.2: optionalDependencies: - turbo-darwin-64: 2.3.3 - turbo-darwin-arm64: 2.3.3 - turbo-linux-64: 2.3.3 - turbo-linux-arm64: 2.3.3 - turbo-windows-64: 2.3.3 - turbo-windows-arm64: 2.3.3 + turbo-darwin-64: 2.4.2 + turbo-darwin-arm64: 2.4.2 + turbo-linux-64: 2.4.2 + turbo-linux-arm64: 2.4.2 + turbo-windows-64: 2.4.2 + turbo-windows-arm64: 2.4.2 type-check@0.4.0: dependencies: @@ -21754,7 +20810,7 @@ snapshots: type-fest@3.13.1: {} - type-fest@4.32.0: {} + type-fest@4.35.0: {} type-is@1.6.18: dependencies: @@ -21804,22 +20860,12 @@ snapshots: dependencies: ts-toolbelt: 9.6.0 - typescript-eslint@8.19.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3): - dependencies: - '@typescript-eslint/eslint-plugin': 8.19.0(@typescript-eslint/parser@8.19.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/parser': 8.19.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/utils': 8.19.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) - eslint: 9.18.0(jiti@2.4.2) - typescript: 5.7.3 - transitivePeerDependencies: - - supports-color - - typescript-eslint@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3): + typescript-eslint@8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3): dependencies: - '@typescript-eslint/eslint-plugin': 8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/parser': 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/utils': 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) - eslint: 9.18.0(jiti@2.4.2) + '@typescript-eslint/eslint-plugin': 8.24.1(@typescript-eslint/parser@8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) + '@typescript-eslint/parser': 8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) + '@typescript-eslint/utils': 8.24.1(eslint@9.20.1(jiti@2.4.2))(typescript@5.7.3) + eslint: 9.20.1(jiti@2.4.2) typescript: 5.7.3 transitivePeerDependencies: - supports-color @@ -21854,15 +20900,7 @@ snapshots: underscore@1.13.7: {} - undici-types@6.19.8: {} - - unenv@1.10.0: - dependencies: - consola: 3.3.3 - defu: 6.1.4 - mime: 3.0.0 - node-fetch-native: 1.6.4 - pathe: 1.1.2 + undici-types@6.20.0: {} unicode-canonical-property-names-ecmascript@2.0.1: {} @@ -21908,20 +20946,16 @@ snapshots: unpipe@1.0.0: {} - unplugin-fonts@1.0.3(vite@5.4.10(@types/node@20.17.10)(terser@5.37.0))(webpack-sources@3.2.3): + unplugin-fonts@1.3.1(vite@6.1.1(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)): dependencies: - fast-glob: 3.3.2 - unplugin: 1.15.0(webpack-sources@3.2.3) - vite: 5.4.10(@types/node@20.17.10)(terser@5.37.0) - transitivePeerDependencies: - - webpack-sources + fast-glob: 3.3.3 + unplugin: 2.0.0-beta.1 + vite: 6.1.1(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) - unplugin@1.15.0(webpack-sources@3.2.3): + unplugin@2.0.0-beta.1: dependencies: acorn: 8.14.0 webpack-virtual-modules: 0.6.2 - optionalDependencies: - webpack-sources: 3.2.3 unset-value@1.0.0: dependencies: @@ -21984,13 +21018,13 @@ snapshots: vary@1.1.2: {} - vite-node@3.0.4(@types/node@20.17.10)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0): + vite-node@3.0.6(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0): dependencies: cac: 6.7.14 debug: 4.4.0(supports-color@8.1.1) es-module-lexer: 1.6.0 - pathe: 2.0.2 - vite: 6.0.10(@types/node@20.17.10)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) + pathe: 2.0.3 + vite: 6.1.1(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) transitivePeerDependencies: - '@types/node' - jiti @@ -22005,53 +21039,43 @@ snapshots: - tsx - yaml - vite@5.4.10(@types/node@20.17.10)(terser@5.37.0): - dependencies: - esbuild: 0.21.5 - postcss: 8.4.49 - rollup: 4.29.1 - optionalDependencies: - '@types/node': 20.17.10 - fsevents: 2.3.3 - terser: 5.37.0 - - vite@6.0.10(@types/node@20.17.10)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0): + vite@6.1.1(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0): dependencies: esbuild: 0.24.2 - postcss: 8.4.49 - rollup: 4.31.0 + postcss: 8.5.3 + rollup: 4.34.8 optionalDependencies: - '@types/node': 20.17.10 + '@types/node': 22.13.4 fsevents: 2.3.3 jiti: 2.4.2 terser: 5.37.0 tsx: 4.19.2 yaml: 2.7.0 - vitest@3.0.4(@types/node@20.17.10)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0): + vitest@3.0.6(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0): dependencies: - '@vitest/expect': 3.0.4 - '@vitest/mocker': 3.0.4(vite@6.0.10(@types/node@20.17.10)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)) - '@vitest/pretty-format': 3.0.4 - '@vitest/runner': 3.0.4 - '@vitest/snapshot': 3.0.4 - '@vitest/spy': 3.0.4 - '@vitest/utils': 3.0.4 - chai: 5.1.2 + '@vitest/expect': 3.0.6 + '@vitest/mocker': 3.0.6(vite@6.1.1(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)) + '@vitest/pretty-format': 3.0.6 + '@vitest/runner': 3.0.6 + '@vitest/snapshot': 3.0.6 + '@vitest/spy': 3.0.6 + '@vitest/utils': 3.0.6 + chai: 5.2.0 debug: 4.4.0(supports-color@8.1.1) expect-type: 1.1.0 magic-string: 0.30.17 - pathe: 2.0.2 + pathe: 2.0.3 std-env: 3.8.0 tinybench: 2.9.0 tinyexec: 0.3.2 tinypool: 1.0.2 tinyrainbow: 2.0.0 - vite: 6.0.10(@types/node@20.17.10)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) - vite-node: 3.0.4(@types/node@20.17.10)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) + vite: 6.1.1(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) + vite-node: 3.0.6(@types/node@22.13.4)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 20.17.10 + '@types/node': 22.13.4 transitivePeerDependencies: - jiti - less @@ -22109,9 +21133,6 @@ snapshots: webidl-conversions@3.0.1: {} - webpack-sources@3.2.3: - optional: true - webpack-virtual-modules@0.6.2: {} websocket-driver@0.7.4: @@ -22365,12 +21386,7 @@ snapshots: zod@3.24.1: {} - zx@8.2.2: - optionalDependencies: - '@types/fs-extra': 11.0.4 - '@types/node': 20.17.10 - - zx@8.3.0: + zx@8.3.2: optionalDependencies: '@types/fs-extra': 11.0.4 - '@types/node': 20.17.10 + '@types/node': 22.13.4 diff --git a/repo-metadata/package.json b/repo-metadata/package.json index f5f9a2b0c..2be2d7b8e 100644 --- a/repo-metadata/package.json +++ b/repo-metadata/package.json @@ -17,9 +17,9 @@ "yaml": "^2.7.0" }, "devDependencies": { - "@pnpm/types": "^1000.1.0", - "@pnpm/workspace.find-packages": "^1000.0.5", - "@types/node": "^22.10.6", + "@pnpm/types": "^1000.1.1", + "@pnpm/workspace.find-packages": "^1000.0.10", + "@types/node": "^22.13.4", "pkg-entry-points": "^1.1.1" } }